From e2e3e4b51d17c863d5c75e2c9bc62e3479e8e888 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 9 May 2025 15:35:38 +0200 Subject: [PATCH 01/53] Fix: inspector: fix AggregateImages.svelte --- src/UI/History/AggregateImages.svelte | 6 +++--- src/UI/Image/AttributedImage.svelte | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/UI/History/AggregateImages.svelte b/src/UI/History/AggregateImages.svelte index 020c8285a8..faf9cc8527 100644 --- a/src/UI/History/AggregateImages.svelte +++ b/src/UI/History/AggregateImages.svelte @@ -15,13 +15,13 @@ Promise.all(features.map((f) => downloader.downloadHistory(f.properties.id))) ) let imageKeys = new Set( - ...["panoramax", "image:streetsign", "image:menu"].map((k) => { + [].concat(...["panoramax", "image:streetsign", "image:menu", "toilets:wheelchair:panoramax"].map((k) => { const result: string[] = [k] for (let i = 0; i < 10; i++) { result.push(k + ":" + i) } return result - }) + })) ) let usernamesSet = new Set(onlyShowUsername) let allDiffs: Store< @@ -42,7 +42,7 @@ {:else if $addedImages.length === 0} No images added by this contributor {:else} -
+
{#each $addedImages as imgDiff}
diff --git a/src/UI/Image/AttributedImage.svelte b/src/UI/Image/AttributedImage.svelte index 33a304fc63..20a1ddf3ba 100644 --- a/src/UI/Image/AttributedImage.svelte +++ b/src/UI/Image/AttributedImage.svelte @@ -45,7 +45,7 @@ let showBigPreview = new UIEventSource(false) onDestroy( showBigPreview.addCallbackAndRun((shown) => { - state.guistate.setPreviewedImage(shown ? image : undefined) + state?.guistate?.setPreviewedImage(shown ? image : undefined) }) ) if (previewedImage) { From e7d3cb1886dc45f38f9841d3b64a2a4a87566a19 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 9 May 2025 17:20:02 +0200 Subject: [PATCH 02/53] UX: allow ',' in input of floats, kerb height now accepts pfloat instead of pnat --- assets/layers/entrance/entrance.json | 2 +- .../InputElement/Validators/FloatValidator.ts | 17 +++++++++++++++-- .../InputElement/Validators/PFloatValidator.ts | 16 ++++++++++++---- 3 files changed, 28 insertions(+), 7 deletions(-) diff --git a/assets/layers/entrance/entrance.json b/assets/layers/entrance/entrance.json index 05d576f5a5..3f95503155 100644 --- a/assets/layers/entrance/entrance.json +++ b/assets/layers/entrance/entrance.json @@ -629,7 +629,7 @@ "es": "Altura del bordillo de la puerta", "it": "Altezza del gradino della porta" }, - "type": "pnat" + "type": "pfloat" }, "mappings": [ { diff --git a/src/UI/InputElement/Validators/FloatValidator.ts b/src/UI/InputElement/Validators/FloatValidator.ts index 4ce5da81ea..2fb5bfcb4b 100644 --- a/src/UI/InputElement/Validators/FloatValidator.ts +++ b/src/UI/InputElement/Validators/FloatValidator.ts @@ -6,15 +6,28 @@ import { ValidatorType } from "../Validators" export default class FloatValidator extends Validator { inputmode: "decimal" = "decimal" as const + protected static readonly formattingHasComma = ("" + 1.42).indexOf(",") > 0 + constructor(name?: ValidatorType, explanation?: string) { super(name ?? "float", explanation ?? "A decimal number", "decimal") } - isValid(str) { + /** + * + * new FloatValidator().isValid("0,2") // => true + */ + isValid(str: string) { + console.log("Is valid?", str, FloatValidator.formattingHasComma) + if (!FloatValidator.formattingHasComma) { + str = str.replace(",", ".") + } return !isNaN(Number(str)) && !str.endsWith(".") && !str.endsWith(",") } - reformat(str): string { + reformat(str: string): string { + if (!FloatValidator.formattingHasComma) { + str = str.replace(",", ".") + } return "" + Number(str) } diff --git a/src/UI/InputElement/Validators/PFloatValidator.ts b/src/UI/InputElement/Validators/PFloatValidator.ts index cc5d108a9b..7b3c2aa713 100644 --- a/src/UI/InputElement/Validators/PFloatValidator.ts +++ b/src/UI/InputElement/Validators/PFloatValidator.ts @@ -1,14 +1,22 @@ import { Translation } from "../../i18n/Translation" import Translations from "../../i18n/Translations" -import { Validator } from "../Validator" +import FloatValidator from "./FloatValidator" -export default class PFloatValidator extends Validator { +export default class PFloatValidator extends FloatValidator { constructor() { super("pfloat", "A positive decimal number or zero") } - isValid = (str) => - !isNaN(Number(str)) && Number(str) >= 0 && !str.endsWith(".") && !str.endsWith(",") + isValid(str: string) { + if (!super.isValid(str)) { + return false + } + if (!FloatValidator.formattingHasComma) { + str = str.replace(",", ".") + } + const n = Number(str) + return n >= 0 + } getFeedback(s: string): Translation { const spr = super.getFeedback(s) From 41e501c18e6888a4b99678baf294cea325a71e7c Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 9 May 2025 22:37:25 +0200 Subject: [PATCH 03/53] Themes(elevator): Move speech output question higher, add condition on induction loop question, see #2411 --- assets/layers/elevator/elevator.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/assets/layers/elevator/elevator.json b/assets/layers/elevator/elevator.json index 4d019cadf8..761b0dfc43 100644 --- a/assets/layers/elevator/elevator.json +++ b/assets/layers/elevator/elevator.json @@ -367,7 +367,6 @@ } ] }, - "induction-loop", { "id": "tactile_writing_available", "question": { @@ -524,6 +523,16 @@ } } } + }, + { + "builtin": "induction-loop", + "override": { + "condition": { + "and+": [ + "speech_output=yes" + ] + } + } } ], "allowMove": { From cd8b614bd975bb8f0738da469bcb0cce58a9cb7a Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 9 May 2025 23:50:01 +0200 Subject: [PATCH 04/53] Themes(shops): add hairdresser specific questions --- assets/layers/food/food.json | 77 +++----------------------- assets/layers/questions/questions.json | 70 +++++++++++++++++++++++ assets/layers/shops/shops.json | 50 ++++++++++++++++- 3 files changed, 127 insertions(+), 70 deletions(-) diff --git a/assets/layers/food/food.json b/assets/layers/food/food.json index 9683e6d699..95f9e53d0d 100644 --- a/assets/layers/food/food.json +++ b/assets/layers/food/food.json @@ -708,76 +708,15 @@ } }, { - "id": "Reservation", - "condition": "takeaway!=only", - "question": { - "en": "Is a reservation required for this place?", - "nl": "Is reserveren verplicht voor deze zaak?", - "de": "Ist an diesem Ort eine Reservierung erforderlich?", - "ca": "És necessari reservar en aquest lloc?", - "fr": "Est-il nécessaire de réserver à cet endroit ?", - "pl": "Czy w tym miejscu rezerwacja jest wymagana?", - "cs": "Je pro toto místo nutná rezervace?", - "es": "¿Se requiere reserva para este lugar?", - "it": "È richiesta una prenotazione per questo posto?" - }, - "mappings": [ - { - "if": "reservation=required", - "then": { - "en": "A reservation is required at this place", - "nl": "Reserveren is verplicht voor deze zaak", - "de": "Hier ist eine Reservierung erforderlich", - "ca": "En aquest lloc cal reservar", - "fr": "Il est nécessaire de réserver à cet endroit", - "cs": "Na tomto místě je nutná rezervace", - "es": "Se requiere reserva en este lugar", - "it": "In questo posto è richiesta una prenotazione" - } + "builtin": "reservation", + "override": { + "condition": { + "and+": [ + "takeaway!=only" + ] }, - { - "if": "reservation=recommended", - "then": { - "en": "A reservation is not required, but still recommended to make sure you get a table", - "nl": "Reserveren is niet verplicht, maar wordt wel aangeraden om zeker te zijn van een tafel", - "de": "Eine Reservierung ist nicht erforderlich, wird aber empfohlen, damit Sie einen Tisch bekommen", - "ca": "No cal fer reserva, però tot i així es recomana per assegurar-vos que teniu taula", - "fr": "Une réservation n'est pas obligatoire, mais est recommandée pour être sûr d'avoir une table", - "cs": "Rezervace není nutná, ale přesto se doporučuje, abyste se ujistili, že dostanete stůl", - "es": "No se requiere reserva, pero aún así se recomienda para asegurar una mesa", - "it": "Non è richiesta una prenotazione, ma è comunque consigliata per assicurarsi un tavolo" - } - }, - { - "if": "reservation=yes", - "then": { - "en": "Reservation is possible at this place", - "nl": "Reserveren is mogelijk voor deze zaak", - "de": "Eine Reservierung ist an diesem Ort möglich", - "ca": "És possible reservar en aquest lloc", - "fr": "La réservation est possible à cet endroit", - "pl": "W tym miejscu możliwa jest rezerwacja", - "cs": "Rezervace je možná na tomto místě", - "es": "Es posible reservar en este lugar", - "it": "In questo posto è possibile prenotare" - } - }, - { - "if": "reservation=no", - "then": { - "en": "Reservation is not possible at this place", - "nl": "Reserveren is niet mogelijk voor deze zaak", - "de": "Eine Reservierung ist an diesem Ort nicht möglich", - "ca": "En aquest lloc no es pot reservar", - "fr": "Il n'est pas possible de réserver à cet endroit", - "pl": "Rezerwacja nie jest możliwa w tym miejscu", - "cs": "Rezervace na tomto místě není možná", - "es": "No es posible reservar en este lugar", - "it": "In questo posto non è possibile prenotare" - } - } - ], - "#condition": "If one can only do takeaway or deliveries, it is nonsensical to ask if a 'reservation' is possible" + "#condition": "If one can only do takeaway or deliveries, it is nonsensical to ask if a 'reservation' is possible" + } }, { "question": { diff --git a/assets/layers/questions/questions.json b/assets/layers/questions/questions.json index 06f8a87bcc..0d8733b395 100644 --- a/assets/layers/questions/questions.json +++ b/assets/layers/questions/questions.json @@ -3493,6 +3493,76 @@ "minzoom": 18 } ] + }, + { + "id": "reservation", + "question": { + "en": "Is a reservation required for this place?", + "nl": "Is reserveren verplicht voor deze zaak?", + "de": "Ist an diesem Ort eine Reservierung erforderlich?", + "ca": "És necessari reservar en aquest lloc?", + "fr": "Est-il nécessaire de réserver à cet endroit ?", + "pl": "Czy w tym miejscu rezerwacja jest wymagana?", + "cs": "Je pro toto místo nutná rezervace?", + "es": "¿Se requiere reserva para este lugar?", + "it": "È richiesta una prenotazione per questo posto?" + }, + "mappings": [ + { + "if": "reservation=required", + "then": { + "en": "A reservation is required at this place", + "nl": "Reserveren is verplicht voor deze zaak", + "de": "Hier ist eine Reservierung erforderlich", + "ca": "En aquest lloc cal reservar", + "fr": "Il est nécessaire de réserver à cet endroit", + "cs": "Na tomto místě je nutná rezervace", + "es": "Se requiere reserva en este lugar", + "it": "In questo posto è richiesta una prenotazione" + } + }, + { + "if": "reservation=recommended", + "then": { + "en": "A reservation is not required, but still recommended to make sure you get a table", + "nl": "Reserveren is niet verplicht, maar wordt wel aangeraden om zeker te zijn van een tafel", + "de": "Eine Reservierung ist nicht erforderlich, wird aber empfohlen, damit Sie einen Tisch bekommen", + "ca": "No cal fer reserva, però tot i així es recomana per assegurar-vos que teniu taula", + "fr": "Une réservation n'est pas obligatoire, mais est recommandée pour être sûr d'avoir une table", + "cs": "Rezervace není nutná, ale přesto se doporučuje, abyste se ujistili, že dostanete stůl", + "es": "No se requiere reserva, pero aún así se recomienda para asegurar una mesa", + "it": "Non è richiesta una prenotazione, ma è comunque consigliata per assicurarsi un tavolo" + } + }, + { + "if": "reservation=yes", + "then": { + "en": "Reservation is possible at this place", + "nl": "Reserveren is mogelijk voor deze zaak", + "de": "Eine Reservierung ist an diesem Ort möglich", + "ca": "És possible reservar en aquest lloc", + "fr": "La réservation est possible à cet endroit", + "pl": "W tym miejscu możliwa jest rezerwacja", + "cs": "Rezervace je možná na tomto místě", + "es": "Es posible reservar en este lugar", + "it": "In questo posto è possibile prenotare" + } + }, + { + "if": "reservation=no", + "then": { + "en": "Reservation is not possible at this place", + "nl": "Reserveren is niet mogelijk voor deze zaak", + "de": "Eine Reservierung ist an diesem Ort nicht möglich", + "ca": "En aquest lloc no es pot reservar", + "fr": "Il n'est pas possible de réserver à cet endroit", + "pl": "Rezerwacja nie jest możliwa w tym miejscu", + "cs": "Rezervace na tomto místě není možná", + "es": "No es posible reservar en este lugar", + "it": "In questo posto non è possibile prenotare" + } + } + ] } ], "allowMove": false, diff --git a/assets/layers/shops/shops.json b/assets/layers/shops/shops.json index 6b33525b9e..c0e3c86e5a 100644 --- a/assets/layers/shops/shops.json +++ b/assets/layers/shops/shops.json @@ -702,6 +702,47 @@ ] } }, + { + "id": "hairdresser-targetgroup", + "multiAnswer": true, + "question": { + "en": "In what target groups does this hairdresser specialize?" + }, + "condition": "shop=hairdresser", + "mappings": [ + { + "if": "male=yes", + "ifnot": "male=no", + "then": { + "en": "Specializes in cutting men's hair." + } + }, + { + "if": "female=yes", + "ifnot": "female=no", + "then": { + "en": "Specializes in cutting women's hair." + } + }, + { + "if": "children=yes", + "ifnot": "children=no", + "then": { + "en": "Specializes in cutting kids hair." + } + } + ] + }, + { + "builtin": "reservation", + "override": { + "condition": { + "and+": [ + "shop=hairdresser" + ] + } + } + }, { "id": "sells_new_bikes", "question": { @@ -1366,7 +1407,14 @@ } } }, - "dog-access", + { + "override": "dog-access", + "condition": { + "and+": [ + "shop!=hairdresser" + ] + } + }, "description", "toilet_at_amenity_lib.all" ], From 53a1b74bfb3a6b61dcffc420a98545996b076b1d Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sat, 10 May 2025 08:53:19 +0200 Subject: [PATCH 05/53] Chore: translation reset --- langs/layers/ca.json | 34 +++++++++++++++---------------- langs/layers/cs.json | 34 +++++++++++++++---------------- langs/layers/de.json | 34 +++++++++++++++---------------- langs/layers/en.json | 48 ++++++++++++++++++++++++++++---------------- langs/layers/es.json | 34 +++++++++++++++---------------- langs/layers/fr.json | 34 +++++++++++++++---------------- langs/layers/it.json | 34 +++++++++++++++---------------- langs/layers/nl.json | 34 +++++++++++++++---------------- langs/layers/pl.json | 22 ++++++++++---------- 9 files changed, 161 insertions(+), 147 deletions(-) diff --git a/langs/layers/ca.json b/langs/layers/ca.json index 8130a865f6..362339e790 100644 --- a/langs/layers/ca.json +++ b/langs/layers/ca.json @@ -5869,23 +5869,6 @@ "question": "Quin és el nom d'aquest negoci?", "render": "El nom d'aquest negoci és {name}" }, - "Reservation": { - "mappings": { - "0": { - "then": "En aquest lloc cal reservar" - }, - "1": { - "then": "No cal fer reserva, però tot i així es recomana per assegurar-vos que teniu taula" - }, - "2": { - "then": "És possible reservar en aquest lloc" - }, - "3": { - "then": "En aquest lloc no es pot reservar" - } - }, - "question": "És necessari reservar en aquest lloc?" - }, "Takeaway": { "mappings": { "0": { @@ -9177,6 +9160,23 @@ "repeated": { "render": "Es poden trobar múltiples objectes idèntics a les plantes {repeat_on}." }, + "reservation": { + "mappings": { + "0": { + "then": "En aquest lloc cal reservar" + }, + "1": { + "then": "No cal fer reserva, però tot i així es recomana per assegurar-vos que teniu taula" + }, + "2": { + "then": "És possible reservar en aquest lloc" + }, + "3": { + "then": "En aquest lloc no es pot reservar" + } + }, + "question": "És necessari reservar en aquest lloc?" + }, "seasonal": { "mappings": { "0": { diff --git a/langs/layers/cs.json b/langs/layers/cs.json index 5af59dce76..242571df98 100644 --- a/langs/layers/cs.json +++ b/langs/layers/cs.json @@ -5656,23 +5656,6 @@ "question": "Jak se tento podnik jmenuje?", "render": "Název tohoto podniku je {name}" }, - "Reservation": { - "mappings": { - "0": { - "then": "Na tomto místě je nutná rezervace" - }, - "1": { - "then": "Rezervace není nutná, ale přesto se doporučuje, abyste se ujistili, že dostanete stůl" - }, - "2": { - "then": "Rezervace je možná na tomto místě" - }, - "3": { - "then": "Rezervace na tomto místě není možná" - } - }, - "question": "Je pro toto místo nutná rezervace?" - }, "Takeaway": { "mappings": { "0": { @@ -8426,6 +8409,23 @@ "repeated": { "render": "V patrech {repeat_on} lze nalézt více identických objektů." }, + "reservation": { + "mappings": { + "0": { + "then": "Na tomto místě je nutná rezervace" + }, + "1": { + "then": "Rezervace není nutná, ale přesto se doporučuje, abyste se ujistili, že dostanete stůl" + }, + "2": { + "then": "Rezervace je možná na tomto místě" + }, + "3": { + "then": "Rezervace na tomto místě není možná" + } + }, + "question": "Je pro toto místo nutná rezervace?" + }, "seasonal": { "mappings": { "1": { diff --git a/langs/layers/de.json b/langs/layers/de.json index a2b3659042..548502d778 100644 --- a/langs/layers/de.json +++ b/langs/layers/de.json @@ -5847,23 +5847,6 @@ "question": "Was ist der Name dieses Unternehmens?", "render": "Dieses Unternehmen heißt {name}" }, - "Reservation": { - "mappings": { - "0": { - "then": "Hier ist eine Reservierung erforderlich" - }, - "1": { - "then": "Eine Reservierung ist nicht erforderlich, wird aber empfohlen, damit Sie einen Tisch bekommen" - }, - "2": { - "then": "Eine Reservierung ist an diesem Ort möglich" - }, - "3": { - "then": "Eine Reservierung ist an diesem Ort nicht möglich" - } - }, - "question": "Ist an diesem Ort eine Reservierung erforderlich?" - }, "Takeaway": { "mappings": { "0": { @@ -9141,6 +9124,23 @@ "repeated": { "render": "Mehrere identische Objekte können in Geschossen {repeat_on} gefunden werden." }, + "reservation": { + "mappings": { + "0": { + "then": "Hier ist eine Reservierung erforderlich" + }, + "1": { + "then": "Eine Reservierung ist nicht erforderlich, wird aber empfohlen, damit Sie einen Tisch bekommen" + }, + "2": { + "then": "Eine Reservierung ist an diesem Ort möglich" + }, + "3": { + "then": "Eine Reservierung ist an diesem Ort nicht möglich" + } + }, + "question": "Ist an diesem Ort eine Reservierung erforderlich?" + }, "seasonal": { "mappings": { "0": { diff --git a/langs/layers/en.json b/langs/layers/en.json index ea62e5db1a..b1241bcd9e 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -6117,23 +6117,6 @@ "question": "What is the name of this business?", "render": "The name of this business is {name}" }, - "Reservation": { - "mappings": { - "0": { - "then": "A reservation is required at this place" - }, - "1": { - "then": "A reservation is not required, but still recommended to make sure you get a table" - }, - "2": { - "then": "Reservation is possible at this place" - }, - "3": { - "then": "Reservation is not possible at this place" - } - }, - "question": "Is a reservation required for this place?" - }, "Takeaway": { "mappings": { "0": { @@ -9635,6 +9618,23 @@ "repeated": { "render": "Multiple, identical objects can be found on floors {repeat_on}." }, + "reservation": { + "mappings": { + "0": { + "then": "A reservation is required at this place" + }, + "1": { + "then": "A reservation is not required, but still recommended to make sure you get a table" + }, + "2": { + "then": "Reservation is possible at this place" + }, + "3": { + "then": "Reservation is not possible at this place" + } + }, + "question": "Is a reservation required for this place?" + }, "seasonal": { "mappings": { "0": { @@ -10694,6 +10694,20 @@ }, "question": "What paper formats does this shop offer?" }, + "hairdresser-targetgroup": { + "mappings": { + "0": { + "then": "Specializes in cutting men's hair." + }, + "1": { + "then": "Specializes in cutting women's hair." + }, + "2": { + "then": "Specializes in cutting kids hair." + } + }, + "question": "In what target groups does this hairdresser specialize?" + }, "id_presets.shop_types": { "override": { "+mappings": { diff --git a/langs/layers/es.json b/langs/layers/es.json index b2e6be6289..02d88b86bb 100644 --- a/langs/layers/es.json +++ b/langs/layers/es.json @@ -5511,23 +5511,6 @@ "question": "¿Cuál es el nombre de este negocio?", "render": "El nombre de este negocio es {name}" }, - "Reservation": { - "mappings": { - "0": { - "then": "Se requiere reserva en este lugar" - }, - "1": { - "then": "No se requiere reserva, pero aún así se recomienda para asegurar una mesa" - }, - "2": { - "then": "Es posible reservar en este lugar" - }, - "3": { - "then": "No es posible reservar en este lugar" - } - }, - "question": "¿Se requiere reserva para este lugar?" - }, "Takeaway": { "mappings": { "0": { @@ -8753,6 +8736,23 @@ "repeated": { "render": "Se pueden encontrar varios objetos idénticos en las plantas {repeat_on}." }, + "reservation": { + "mappings": { + "0": { + "then": "Se requiere reserva en este lugar" + }, + "1": { + "then": "No se requiere reserva, pero aún así se recomienda para asegurar una mesa" + }, + "2": { + "then": "Es posible reservar en este lugar" + }, + "3": { + "then": "No es posible reservar en este lugar" + } + }, + "question": "¿Se requiere reserva para este lugar?" + }, "seasonal": { "mappings": { "0": { diff --git a/langs/layers/fr.json b/langs/layers/fr.json index f3973e514e..1221e21d21 100644 --- a/langs/layers/fr.json +++ b/langs/layers/fr.json @@ -3780,23 +3780,6 @@ "question": "Quel est le nom de ce restaurant ?", "render": "Le nom de ce restaurant est {name}" }, - "Reservation": { - "mappings": { - "0": { - "then": "Il est nécessaire de réserver à cet endroit" - }, - "1": { - "then": "Une réservation n'est pas obligatoire, mais est recommandée pour être sûr d'avoir une table" - }, - "2": { - "then": "La réservation est possible à cet endroit" - }, - "3": { - "then": "Il n'est pas possible de réserver à cet endroit" - } - }, - "question": "Est-il nécessaire de réserver à cet endroit ?" - }, "Takeaway": { "mappings": { "0": { @@ -5437,6 +5420,23 @@ "phone": { "question": "Quel est le numéro de téléphone de {title()} ?" }, + "reservation": { + "mappings": { + "0": { + "then": "Il est nécessaire de réserver à cet endroit" + }, + "1": { + "then": "Une réservation n'est pas obligatoire, mais est recommandée pour être sûr d'avoir une table" + }, + "2": { + "then": "La réservation est possible à cet endroit" + }, + "3": { + "then": "Il n'est pas possible de réserver à cet endroit" + } + }, + "question": "Est-il nécessaire de réserver à cet endroit ?" + }, "service:electricity": { "mappings": { "0": { diff --git a/langs/layers/it.json b/langs/layers/it.json index 4aa1424884..21bc1a534e 100644 --- a/langs/layers/it.json +++ b/langs/layers/it.json @@ -6117,23 +6117,6 @@ "question": "Qual è il nome di questa attività?", "render": "Il nome di questa attività è {name}" }, - "Reservation": { - "mappings": { - "0": { - "then": "In questo posto è richiesta una prenotazione" - }, - "1": { - "then": "Non è richiesta una prenotazione, ma è comunque consigliata per assicurarsi un tavolo" - }, - "2": { - "then": "In questo posto è possibile prenotare" - }, - "3": { - "then": "In questo posto non è possibile prenotare" - } - }, - "question": "È richiesta una prenotazione per questo posto?" - }, "Takeaway": { "mappings": { "0": { @@ -9629,6 +9612,23 @@ "repeated": { "render": "Oggetti multipli e identici possono essere trovati ai piani {repeat_on}." }, + "reservation": { + "mappings": { + "0": { + "then": "In questo posto è richiesta una prenotazione" + }, + "1": { + "then": "Non è richiesta una prenotazione, ma è comunque consigliata per assicurarsi un tavolo" + }, + "2": { + "then": "In questo posto è possibile prenotare" + }, + "3": { + "then": "In questo posto non è possibile prenotare" + } + }, + "question": "È richiesta una prenotazione per questo posto?" + }, "seasonal": { "mappings": { "0": { diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 257499bdaf..30a611002f 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -5527,23 +5527,6 @@ "question": "Wat is de naam van deze eetgelegenheid?", "render": "De naam van deze eetgelegeheid is {name}" }, - "Reservation": { - "mappings": { - "0": { - "then": "Reserveren is verplicht voor deze zaak" - }, - "1": { - "then": "Reserveren is niet verplicht, maar wordt wel aangeraden om zeker te zijn van een tafel" - }, - "2": { - "then": "Reserveren is mogelijk voor deze zaak" - }, - "3": { - "then": "Reserveren is niet mogelijk voor deze zaak" - } - }, - "question": "Is reserveren verplicht voor deze zaak?" - }, "Takeaway": { "mappings": { "0": { @@ -8206,6 +8189,23 @@ "repeated": { "render": "Er zijn verschillende, identieke objecten op verdiepingen {repeat_on}." }, + "reservation": { + "mappings": { + "0": { + "then": "Reserveren is verplicht voor deze zaak" + }, + "1": { + "then": "Reserveren is niet verplicht, maar wordt wel aangeraden om zeker te zijn van een tafel" + }, + "2": { + "then": "Reserveren is mogelijk voor deze zaak" + }, + "3": { + "then": "Reserveren is niet mogelijk voor deze zaak" + } + }, + "question": "Is reserveren verplicht voor deze zaak?" + }, "seasonal": { "mappings": { "0": { diff --git a/langs/layers/pl.json b/langs/layers/pl.json index 34a076e957..56bf8b13ae 100644 --- a/langs/layers/pl.json +++ b/langs/layers/pl.json @@ -2099,17 +2099,6 @@ } } }, - "Reservation": { - "mappings": { - "2": { - "then": "W tym miejscu możliwa jest rezerwacja" - }, - "3": { - "then": "Rezerwacja nie jest możliwa w tym miejscu" - } - }, - "question": "Czy w tym miejscu rezerwacja jest wymagana?" - }, "Vegan (no friture)": { "mappings": { "0": { @@ -3379,6 +3368,17 @@ "phone": { "question": "Jaki jest numer telefonu do {title()}?" }, + "reservation": { + "mappings": { + "2": { + "then": "W tym miejscu możliwa jest rezerwacja" + }, + "3": { + "then": "Rezerwacja nie jest możliwa w tym miejscu" + } + }, + "question": "Czy w tym miejscu rezerwacja jest wymagana?" + }, "service:electricity": { "mappings": { "0": { From 7e6c11baf52ce95c31902d7edcb794f7479e416d Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sat, 10 May 2025 08:58:47 +0200 Subject: [PATCH 06/53] Fix build --- assets/layers/shops/shops.json | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/assets/layers/shops/shops.json b/assets/layers/shops/shops.json index c0e3c86e5a..03ea43f0da 100644 --- a/assets/layers/shops/shops.json +++ b/assets/layers/shops/shops.json @@ -1408,11 +1408,14 @@ } }, { - "override": "dog-access", - "condition": { - "and+": [ - "shop!=hairdresser" - ] + "id": "shop-dog-access", + "builtin": "dog-access", + "override": { + "condition": { + "and+": [ + "shop!=hairdresser" + ] + } } }, "description", From a3aba991c51b6aacdcf3058644bd00189f3bed25 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 12 May 2025 15:31:03 +0200 Subject: [PATCH 07/53] Fix: add comment on duplicate nearby images, make sure they are always deduplicated --- src/Logic/Web/NearbyImagesSearch.ts | 63 ++++++++++++++--------------- 1 file changed, 30 insertions(+), 33 deletions(-) diff --git a/src/Logic/Web/NearbyImagesSearch.ts b/src/Logic/Web/NearbyImagesSearch.ts index 066bb10cf0..298e1e552d 100644 --- a/src/Logic/Web/NearbyImagesSearch.ts +++ b/src/Logic/Web/NearbyImagesSearch.ts @@ -101,7 +101,7 @@ class P4CImageFetcher implements ImageFetcher { searchRadius, { mindate: new Date().getTime() - maxAgeSeconds, - towardscenter: false, + towardscenter: false } ) } catch (e) { @@ -152,9 +152,9 @@ class ImagesInLoadedDataFetcher implements ImageFetcher { coordinates: { lng: centerpoint[0], lat: centerpoint[1] }, provider: "OpenStreetMap", details: { - isSpherical: false, + isSpherical: false }, - osmTags: { image }, + osmTags: { image } }) } }) @@ -170,7 +170,7 @@ class ImagesFromPanoramaxFetcher implements ImageFetcher { public static readonly apiUrls: ReadonlyArray = [ "https://panoramax.openstreetmap.fr", "https://api.panoramax.xyz", - "https://panoramax.mapcomplete.org", + "https://panoramax.mapcomplete.org" ] constructor(url?: string, radius: number = 50) { @@ -191,7 +191,7 @@ class ImagesFromPanoramaxFetcher implements ImageFetcher { provider: "panoramax", direction: imageData.properties["view:azimuth"], osmTags: { - panoramax: imageData.id, + panoramax: imageData.id }, thumbUrl: imageData.assets.thumb.href, date: new Date(imageData.properties.datetime).getTime(), @@ -200,8 +200,8 @@ class ImagesFromPanoramaxFetcher implements ImageFetcher { detailsUrl: imageData.id, details: { isSpherical: - imageData.properties["exif"]["Xmp.GPano.ProjectionType"] === "equirectangular", - }, + imageData.properties["exif"]["Xmp.GPano.ProjectionType"] === "equirectangular" + } } } @@ -209,16 +209,16 @@ class ImagesFromPanoramaxFetcher implements ImageFetcher { const radiusSettings = [ { place_fov_tolerance: 180, - radius: 15, + radius: 15 }, { place_fov_tolerance: 180, - radius: 25, + radius: 25 }, { place_fov_tolerance: 90, - radius: 50, - }, + radius: 50 + } ] const promises: Promise[] = [] const maxRadius = this._radius @@ -233,7 +233,7 @@ class ImagesFromPanoramaxFetcher implements ImageFetcher { place: [lon, lat], place_distance: [prevRadius, Math.min(maxRadius, radiusSetting.radius)], place_fov_tolerance: radiusSetting.place_fov_tolerance, - limit: 50, + limit: 50 }) promises.push(promise) prevRadius = radiusSetting.radius @@ -243,6 +243,7 @@ class ImagesFromPanoramaxFetcher implements ImageFetcher { } const images = await Promise.all(promises) + // This might give duplicates, but worry not: they are deduped by the 'combinedImageFetcher' return [].concat(...images).map((i) => ImagesFromPanoramaxFetcher.convert(i)) } } @@ -276,7 +277,7 @@ class MapillaryFetcher implements ImageFetcher { boundingBox.getWest(), boundingBox.getSouth(), boundingBox.getEast(), - boundingBox.getNorth(), + boundingBox.getNorth() ].join(",") + "&access_token=" + encodeURIComponent(Constants.mapillary_client_token_v4) + @@ -322,10 +323,10 @@ class MapillaryFetcher implements ImageFetcher { coordinates: { lng: c[0], lat: c[1] }, thumbUrl: img.thumb_256_url, osmTags: { - mapillary: img.id, + mapillary: img.id }, details: { - isSpherical: this._panoramas === "only", + isSpherical: this._panoramas === "only" }, detailsUrl: Mapillary.singleton.visitUrl(img, { lon, lat }), @@ -348,7 +349,7 @@ export class CombinedFetcher { Imgur.apiUrl, ...Imgur.supportingUrls, ...MapillaryFetcher.apiUrls, - ...ImagesFromPanoramaxFetcher.apiUrls, + ...ImagesFromPanoramaxFetcher.apiUrls ] constructor(radius: number, maxage: Date, indexedFeatures: IndexedFeatureSource) { @@ -360,15 +361,15 @@ export class CombinedFetcher { new MapillaryFetcher({ max_images: 25, start_captured_at: maxage, - panoramas: "only", + panoramas: "only" }), new MapillaryFetcher({ max_images: 25, start_captured_at: maxage, - panoramas: "no", + panoramas: "no" }), new P4CImageFetcher("mapillary"), - new P4CImageFetcher("wikicommons"), + new P4CImageFetcher("wikicommons") ].map((f) => new CachedFetcher(f)) } @@ -384,22 +385,18 @@ export class CombinedFetcher { state.data[source.name] = "done" state.ping() - if (sink.data === undefined) { - sink.setData(pics) - } else { - const newList = [] - const seenIds = new Set() - for (const p4CPicture of [...sink.data, ...pics]) { - const id = p4CPicture.pictureUrl - if (seenIds.has(id)) { - continue - } - newList.push(p4CPicture) - seenIds.add(id) + const newList = [] + const seenIds = new Set() + for (const p4CPicture of [...sink.data ?? [], ...pics]) { + const id = p4CPicture.pictureUrl + if (seenIds.has(id)) { + continue } - NearbyImageUtils.sortByDistance(newList, lon, lat) - sink.setData(newList) + newList.push(p4CPicture) + seenIds.add(id) } + NearbyImageUtils.sortByDistance(newList, lon, lat) + sink.setData(newList) } catch (e) { console.error("Could not load images from", source.name, "due to", e) state.data[source.name] = "error" From 9392da0dbb95f15a91c0e39fe210681cae0d1a73 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 12 May 2025 15:38:58 +0200 Subject: [PATCH 08/53] UX: increase search radius, see #2417 --- src/Logic/Web/NearbyImagesSearch.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Logic/Web/NearbyImagesSearch.ts b/src/Logic/Web/NearbyImagesSearch.ts index 298e1e552d..544d21b742 100644 --- a/src/Logic/Web/NearbyImagesSearch.ts +++ b/src/Logic/Web/NearbyImagesSearch.ts @@ -225,7 +225,7 @@ class ImagesFromPanoramaxFetcher implements ImageFetcher { let prevRadius = 0 const nearby = this._panoramax.search({ - bbox: new BBox([[lon, lat]]).pad(0.001).toLngLatFlat() + bbox: new BBox([[lon - 0.0001, lat - 0.0001], [lon + 0.0001, lat + 0.0001]]).toLngLatFlat() }) promises.push(nearby) // We do a nearby search with bbox, see https://source.mapcomplete.org/MapComplete/MapComplete/issues/2384 for (const radiusSetting of radiusSettings) { From 7b466a1d53f574c2f2ffa411998b337bc08ba323 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 13 May 2025 16:13:05 +0200 Subject: [PATCH 09/53] UX: fix #2416, small code cleanup --- src/Logic/ImageProviders/AllImageProviders.ts | 6 +-- src/Logic/ImageProviders/ImageProvider.ts | 4 ++ src/Logic/ImageProviders/ImageUploadQueue.ts | 7 +-- src/Logic/ImageProviders/Panoramax.ts | 20 ++++++++- src/Logic/Osm/ChangesetHandler.ts | 3 ++ src/Logic/Search/FilterSearch.ts | 36 --------------- src/UI/Popup/Notes/NoteCommentElement.svelte | 3 +- src/Utils.ts | 44 ++++++++++--------- 8 files changed, 57 insertions(+), 66 deletions(-) diff --git a/src/Logic/ImageProviders/AllImageProviders.ts b/src/Logic/ImageProviders/AllImageProviders.ts index cd5042dd31..0ce8569c06 100644 --- a/src/Logic/ImageProviders/AllImageProviders.ts +++ b/src/Logic/ImageProviders/AllImageProviders.ts @@ -85,9 +85,9 @@ export default class AllImageProviders { let count = 0 const sources = [ + Panoramax.singleton, Imgur.singleton, Mapillary.singleton, - Panoramax.singleton, AllImageProviders.genericImageProvider, ] const allPrefixes = Utils.Dedup( @@ -138,8 +138,8 @@ export default class AllImageProviders { allSources.push(singleSource) } const source = Stores.fromStoresArray(allSources).map((result) => { - const all = [].concat(...result) - return Utils.DedupOnId(all, (i) => i?.id ?? i?.url) + const all = Utils.concat(result) + return Utils.DedupOnId(all, (i) => [i?.id, i?.url, i?.alt_id]) }) this._cachedImageStores[cachekey] = source return source diff --git a/src/Logic/ImageProviders/ImageProvider.ts b/src/Logic/ImageProviders/ImageProvider.ts index 570705b142..85c131104b 100644 --- a/src/Logic/ImageProviders/ImageProvider.ts +++ b/src/Logic/ImageProviders/ImageProvider.ts @@ -10,6 +10,10 @@ export interface ProvidedImage { key: string provider: ImageProvider id: string + /** + * An alternative ID, used to deduplicate some images + */ + alt_id?: string, date?: Date status?: string | "ready" /** diff --git a/src/Logic/ImageProviders/ImageUploadQueue.ts b/src/Logic/ImageProviders/ImageUploadQueue.ts index a641db33a2..aab2011027 100644 --- a/src/Logic/ImageProviders/ImageUploadQueue.ts +++ b/src/Logic/ImageProviders/ImageUploadQueue.ts @@ -47,10 +47,11 @@ export default class ImageUploadQueue { applyRemapping(oldId: string, newId: string) { let hasChange = false for (const img of this._imagesInQueue.data) { - if (img.featureId === oldId) { - img.featureId = newId - hasChange = true + if (img.featureId !== oldId) { + continue } + img.featureId = newId + hasChange = true } if (hasChange) { this._imagesInQueue.ping() diff --git a/src/Logic/ImageProviders/Panoramax.ts b/src/Logic/ImageProviders/Panoramax.ts index c44d3b9449..dcba6a1359 100644 --- a/src/Logic/ImageProviders/Panoramax.ts +++ b/src/Logic/ImageProviders/Panoramax.ts @@ -22,7 +22,15 @@ export default class PanoramaxImageProvider extends ImageProvider { 3000 ) - public defaultKeyPrefixes: string[] = ["panoramax"] + /** + * + * const url = "https://panoramax.mapcomplete.org/api/pictures/e931ce57-4591-4dd5-aa4c-595e89c37e84/hd.jpg" + * const match = url.match(PanoramaxImageProvider.isDirectLink) + * match[1] // => "e931ce57-4591-4dd5-aa4c-595e89c37e84" + */ + public static readonly isDirectLink = /https:\/\/panoramax.mapcomplete.org\/api\/pictures\/([0-9a-f-]+)\/(hd)|(sd)|(thumb).jpg/ + + public defaultKeyPrefixes: string[] = ["panoramax", "image"] public readonly name: string = "panoramax" private static knownMeta: Record< @@ -154,10 +162,18 @@ export default class PanoramaxImageProvider extends ImageProvider { } public async ExtractUrls(key: string, value: string): Promise { + const match = value.match(PanoramaxImageProvider.isDirectLink) + let alt_id = undefined + if (match) { + alt_id = value + value = match[1] // The ID + } if (!Panoramax.isId(value)) { return undefined } - return [await this.getInfo(value)] + const providedImage = await this.getInfo(value) + providedImage.alt_id = alt_id + return [providedImage] } public async getInfo(hash: string): Promise { diff --git a/src/Logic/Osm/ChangesetHandler.ts b/src/Logic/Osm/ChangesetHandler.ts index 72c3df8854..060acfc47a 100644 --- a/src/Logic/Osm/ChangesetHandler.ts +++ b/src/Logic/Osm/ChangesetHandler.ts @@ -359,6 +359,9 @@ export class ChangesetHandler { } for (const mapping of mappings) { const [oldId, newId] = mapping + if (oldId === newId) { + continue + } this.allElements?.addAlias(oldId, newId) if (newId !== undefined) { this._remappings.set(oldId, newId) diff --git a/src/Logic/Search/FilterSearch.ts b/src/Logic/Search/FilterSearch.ts index b0b737f01f..bf4b32d453 100644 --- a/src/Logic/Search/FilterSearch.ts +++ b/src/Logic/Search/FilterSearch.ts @@ -1,6 +1,5 @@ import { Utils } from "../../Utils" import Locale from "../../UI/i18n/Locale" -import Constants from "../../Models/Constants" import FilterConfig, { FilterConfigOption } from "../../Models/ThemeConfig/FilterConfig" import LayerConfig from "../../Models/ThemeConfig/LayerConfig" import LayerState from "../State/LayerState" @@ -89,41 +88,6 @@ export default class FilterSearch { } return possibleFilters } - - /** - * Create a random list of filters - */ - getSuggestions(): FilterSearchResult[] { - const result: FilterSearchResult[] = [] - for (const [id, filteredLayer] of this._state.layerState.filteredLayers) { - if (!Array.isArray(filteredLayer.layerDef.filters)) { - continue - } - if (Constants.isPriviliged(id)) { - continue - } - for (const filter of filteredLayer.layerDef.filters) { - const singleFilterResults: FilterSearchResult[] = [] - for (let i = 0; i < Math.min(filter.options.length, 5); i++) { - const option = filter.options[i] - if (option.osmTags === undefined) { - continue - } - singleFilterResults.push({ - option, - filter, - index: i, - layer: filteredLayer.layerDef, - }) - } - Utils.shuffle(singleFilterResults) - result.push(...singleFilterResults.slice(0, 3)) - } - } - Utils.shuffle(result) - return result.slice(0, 6) - } - /** * Partitions the list of filters in such a way that identically appearing filters will be in the same sublist. * diff --git a/src/UI/Popup/Notes/NoteCommentElement.svelte b/src/UI/Popup/Notes/NoteCommentElement.svelte index 1ab0b8e0ba..280fe1acf1 100644 --- a/src/UI/Popup/Notes/NoteCommentElement.svelte +++ b/src/UI/Popup/Notes/NoteCommentElement.svelte @@ -54,6 +54,7 @@
@@ -101,7 +102,7 @@ {:else} {comment.user} {/if} - {comment.date} + {comment.date ?? new Date().toISOString()}
diff --git a/src/Utils.ts b/src/Utils.ts index 280e66e1df..775fa14a79 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -175,10 +175,10 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be } public static NoNull(array: ReadonlyArray | undefined): T[] | undefined - public static NoNull(array: undefined): undefined + public static NoNull(array: undefined): undefined public static NoNull(array: ReadonlyArray): T[] public static NoNull(array: ReadonlyArray): NonNullable[] { - return array?.filter((o) => o !== undefined && o !== null) + return []>array?.filter((o) => o !== undefined && o !== null) } public static Hist(array: ReadonlyArray): Map { @@ -332,7 +332,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be * @param toKey * @constructor */ - public static DedupOnId(arr: T[], toKey?: (t: T) => string): T[] { + public static DedupOnId(arr: T[], toKey?: (t: T) => string | string[]): T[] { const uniq: T[] = [] const seen = new Set() if (toKey === undefined) { @@ -342,10 +342,21 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be if (!img) { continue } - const k = toKey(img) - if (!seen.has(k)) { - seen.add(k) - uniq.push(img) + const ks = toKey(img) + if (typeof ks === "string") { + if (!seen.has(ks)) { + seen.add(ks) + uniq.push(img) + } + } else { + const ksNoNull = Utils.NoNull(ks) + const hasBeenSeen = ksNoNull.some(k => seen.has(k)) + if (!hasBeenSeen) { + uniq.push(img) + } + for (const k of ksNoNull) { + seen.add(k) + } } } return uniq @@ -1657,7 +1668,7 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be return obj } const newObj = {} - for (let objKey in obj) { + for (const objKey in obj) { let cleanKey = objKey if (objKey.startsWith("+") || objKey.startsWith("=")) { cleanKey = objKey.substring(1) @@ -1794,19 +1805,6 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be href = href.replaceAll(/ /g, "%20") return href } - - /** Randomize array in-place using Durstenfeld shuffle algorithm - * Source: https://stackoverflow.com/questions/2450954/how-to-randomize-shuffle-a-javascript-array - * */ - static shuffle(array: any[]) { - for (let i = array.length - 1; i > 0; i--) { - const j = Math.floor(Math.random() * (i + 1)) - const temp = array[i] - array[i] = array[j] - array[j] = temp - } - } - private static emojiRegex = /[\p{Extended_Pictographic}🛰️]/u /** @@ -1826,4 +1824,8 @@ In the case that MapComplete is pointed to the testing grounds, the edit will be public static isEmojiFlag(string: string) { return /[🇦-🇿]{2}/u.test(string) // flags, see https://stackoverflow.com/questions/53360006/detect-with-regex-if-emoji-is-country-flag } + + public static concat(param: T[][]): T[] { + return [].concat(...param) + } } From 68d96063acb0e5c1299b12dc38ada4440b493958 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 13 May 2025 22:55:54 +0200 Subject: [PATCH 10/53] Fix: probably partial fix of #2407 --- src/UI/Image/UploadingImageCounter.svelte | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/UI/Image/UploadingImageCounter.svelte b/src/UI/Image/UploadingImageCounter.svelte index e094abe090..006054b410 100644 --- a/src/UI/Image/UploadingImageCounter.svelte +++ b/src/UI/Image/UploadingImageCounter.svelte @@ -28,7 +28,18 @@ if (featureId == "*") { return input.map((inp) => inp.length) } - return input.map((success) => success.filter((item) => item === featureId).length) + + return input.map((ids) => { + // 'input' contains all the ids of the _features_ for which images are being uploaded + // This id can be the temporary id (e.g. node/-1) or the new id + // We thus have to check the remappings! + const remappings = state.changes._changesetHandler._remappings + const remappedFeatureId = remappings.get(featureId) ?? featureId + return ids.filter((itemId) => itemId === featureId || + itemId === remappedFeatureId || + (remappings.get(itemId) ?? itemId === featureId) || + (remappings.get(itemId) ?? itemId === remappedFeatureId)).length + }) } let successfull = getCount(state.imageUploadManager.successfull) From 5786ff68fcae37ac6fcb6b681462e9abd4b322d1 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 13 May 2025 23:06:30 +0200 Subject: [PATCH 11/53] UI: add padding --- src/UI/Image/AttributedImage.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Image/AttributedImage.svelte b/src/UI/Image/AttributedImage.svelte index 20a1ddf3ba..14764591cc 100644 --- a/src/UI/Image/AttributedImage.svelte +++ b/src/UI/Image/AttributedImage.svelte @@ -100,7 +100,7 @@ {#if image.status !== undefined && image.status !== "ready" && image.status !== "hidden"} -
+
From f9ba3126a45314546b92de96c1213967d73543b8 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 16 May 2025 15:35:23 +0200 Subject: [PATCH 12/53] Chore: use special syntax in hospitals theme to make translations easier --- assets/layers/hospital/hospital.json | 26 ++++++++++++++++++++------ langs/layers/ca.json | 5 ++++- langs/layers/cs.json | 5 ++++- langs/layers/de.json | 5 ++++- langs/layers/en.json | 5 ++++- langs/layers/es.json | 5 ++++- langs/layers/it.json | 5 ++++- 7 files changed, 44 insertions(+), 12 deletions(-) diff --git a/assets/layers/hospital/hospital.json b/assets/layers/hospital/hospital.json index c5da00b38d..e4831ad0ae 100644 --- a/assets/layers/hospital/hospital.json +++ b/assets/layers/hospital/hospital.json @@ -179,12 +179,26 @@ "type": "opening_hours" }, "render": { - "en": "

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

", - "de": "

Öffnungszeiten für Besucher

Regelmäßige Besucher sind zu den folgenden Zeiten zugelassen: {opening_hours_table(opening_hours:visitors)}

Einige Krankenhäuser haben möglicherweise andere Öffnungszeiten. Viele Krankenhäuser erlauben Besuche auch in Notfällen.

", - "ca": "

Horari d'obertura per a visitants

S'admeten visitants habituals en els moments següents: {opening_hours_table(opening_hours:visitors)}

Algunes palntes poden tenir un horari d'obertura diferent. Molts hospitals també permeten visites en cas d'emergència.

", - "cs": "

Otevírací doba pro návštěvníky

Běžným návštěvníkům je vstup povolen v následujících časech: {opening_hours_table(opening_hours:visitors)}

Některá oddělení mohou mít jinou otevírací dobu. Mnohé nemocnice povolují návštěvy i v době pohotovosti.

", - "es": "

Horario de visita para visitantes

Los visitantes regulares están permitidos en los siguientes momentos: {opening_hours_table(opening_hours:visitors)}

Algunas varillas pueden tener horarios de apertura diferentes. Muchos hospitales también permiten visitas en caso de emergencia.

", - "it": "

Orari di apertura per i visitatori

I visitatori regolari sono ammessi nei seguenti momenti: {opening_hours_table(opening_hours:visitors)}

Alcuni reparti potrebbero avere orari di apertura diversi. Molti ospedali consentono visite anche durante le emergenze.

" + "before": { + "en": "

Opening hours for visitors

Regular visitors are allowed at the following moments: ", + "de": "

Öffnungszeiten für Besucher

Regelmäßige Besucher sind zu den folgenden Zeiten zugelassen: ", + "ca": "

Horari d'obertura per a visitants

S'admeten visitants habituals en els moments següents: ", + "cs": "

Otevírací doba pro návštěvníky

Běžným návštěvníkům je vstup povolen v následujících časech: ", + "es": "

Horario de visita para visitantes

Los visitantes regulares están permitidos en los siguientes momentos: ", + "it": "

Orari di apertura per i visitatori

I visitatori regolari sono ammessi nei seguenti momenti: " + }, + "after": { + "en": "

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

", + "de": "

Einige Krankenhäuser haben möglicherweise andere Öffnungszeiten. Viele Krankenhäuser erlauben Besuche auch in Notfällen.

", + "ca": "

Algunes palntes poden tenir un horari d'obertura diferent. Molts hospitals també permeten visites en cas d'emergència.

", + "cs": "

Některá oddělení mohou mít jinou otevírací dobu. Mnohé nemocnice povolují návštěvy i v době pohotovosti.

", + "es": "

Algunas varillas pueden tener horarios de apertura diferentes. Muchos hospitales también permiten visitas en caso de emergencia.

", + "it": "

Alcuni reparti potrebbero avere orari di apertura diversi. Molti ospedali consentono visite anche durante le emergenze.

" + }, + "special": { + "type": "opening_hours_table", + "key": "opening_hours:visitors" + } } } ], diff --git a/langs/layers/ca.json b/langs/layers/ca.json index 362339e790..e547b7122a 100644 --- a/langs/layers/ca.json +++ b/langs/layers/ca.json @@ -6443,7 +6443,10 @@ "oh-visitor": { "question": "Quan poden anar els visitants?", "questionHint": "Aquests són els horaris habituals dels visitants. Algunes plantes tenen diferents horaris de visita o poden permetre els visitants en cas d'emergència", - "render": "

Horari d'obertura per a visitants

S'admeten visitants habituals en els moments següents: {opening_hours_table(opening_hours:visitors)}

Algunes palntes poden tenir un horari d'obertura diferent. Molts hospitals també permeten visites en cas d'emergència.

" + "render": { + "after": "

Algunes palntes poden tenir un horari d'obertura diferent. Molts hospitals també permeten visites en cas d'emergència.

", + "before": "

Horari d'obertura per a visitants

S'admeten visitants habituals en els moments següents: " + } } }, "title": { diff --git a/langs/layers/cs.json b/langs/layers/cs.json index 242571df98..652b5b2e1f 100644 --- a/langs/layers/cs.json +++ b/langs/layers/cs.json @@ -6071,7 +6071,10 @@ "oh-visitor": { "question": "Kdy je povolena návštěva?", "questionHint": "Jedná se o pravidelné návštěvní hodiny. Některé oddělení mají jiné návštěvní hodiny nebo mohou povolit návštěvy v naléhavých případech", - "render": "

Otevírací doba pro návštěvníky

Běžným návštěvníkům je vstup povolen v následujících časech: {opening_hours_table(opening_hours:visitors)}

Některá oddělení mohou mít jinou otevírací dobu. Mnohé nemocnice povolují návštěvy i v době pohotovosti.

" + "render": { + "after": "

Některá oddělení mohou mít jinou otevírací dobu. Mnohé nemocnice povolují návštěvy i v době pohotovosti.

", + "before": "

Otevírací doba pro návštěvníky

Běžným návštěvníkům je vstup povolen v následujících časech: " + } } }, "title": { diff --git a/langs/layers/de.json b/langs/layers/de.json index 548502d778..e520d63933 100644 --- a/langs/layers/de.json +++ b/langs/layers/de.json @@ -6421,7 +6421,10 @@ "oh-visitor": { "question": "Wann ist der Besuch für Besucher gestattet?", "questionHint": "Dies sind die regulären Besuchszeiten. Einige Stationen haben andere Besuchszeiten oder erlauben Besucher in Notfällen", - "render": "

Öffnungszeiten für Besucher

Regelmäßige Besucher sind zu den folgenden Zeiten zugelassen: {opening_hours_table(opening_hours:visitors)}

Einige Krankenhäuser haben möglicherweise andere Öffnungszeiten. Viele Krankenhäuser erlauben Besuche auch in Notfällen.

" + "render": { + "after": "

Einige Krankenhäuser haben möglicherweise andere Öffnungszeiten. Viele Krankenhäuser erlauben Besuche auch in Notfällen.

", + "before": "

Öffnungszeiten für Besucher

Regelmäßige Besucher sind zu den folgenden Zeiten zugelassen: " + } } }, "title": { diff --git a/langs/layers/en.json b/langs/layers/en.json index b1241bcd9e..59a8845de2 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -6791,7 +6791,10 @@ "oh-visitor": { "question": "When are visitors allowed to visit?", "questionHint": "These are the regular visitor hours. Some wands have different visitor hours or might allow visitors in emergencies", - "render": "

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

" + "render": { + "after": "

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

", + "before": "

Opening hours for visitors

Regular visitors are allowed at the following moments: " + } } }, "title": { diff --git a/langs/layers/es.json b/langs/layers/es.json index 02d88b86bb..9605f131b2 100644 --- a/langs/layers/es.json +++ b/langs/layers/es.json @@ -6065,7 +6065,10 @@ "oh-visitor": { "question": "¿Cuándo se permite a los visitantes realizar visitas?", "questionHint": "Este es el horario regular de visitas. Algunas varillas tienen horarios de visita diferentes o pueden permitir visitas en caso de emergencia", - "render": "

Horario de visita para visitantes

Los visitantes regulares están permitidos en los siguientes momentos: {opening_hours_table(opening_hours:visitors)}

Algunas varillas pueden tener horarios de apertura diferentes. Muchos hospitales también permiten visitas en caso de emergencia.

" + "render": { + "after": "

Algunas varillas pueden tener horarios de apertura diferentes. Muchos hospitales también permiten visitas en caso de emergencia.

", + "before": "

Horario de visita para visitantes

Los visitantes regulares están permitidos en los siguientes momentos: " + } } }, "title": { diff --git a/langs/layers/it.json b/langs/layers/it.json index 21bc1a534e..f9dcd1f653 100644 --- a/langs/layers/it.json +++ b/langs/layers/it.json @@ -6785,7 +6785,10 @@ "oh-visitor": { "question": "Quando sono ammesse le visite?", "questionHint": "Questi sono gli orari regolari di visita. Alcuni reparti hanno orari di visita diversi o potrebbero consentire visite in caso di emergenza", - "render": "

Orari di apertura per i visitatori

I visitatori regolari sono ammessi nei seguenti momenti: {opening_hours_table(opening_hours:visitors)}

Alcuni reparti potrebbero avere orari di apertura diversi. Molti ospedali consentono visite anche durante le emergenze.

" + "render": { + "after": "

Alcuni reparti potrebbero avere orari di apertura diversi. Molti ospedali consentono visite anche durante le emergenze.

", + "before": "

Orari di apertura per i visitatori

I visitatori regolari sono ammessi nei seguenti momenti: " + } } }, "title": { From a0b7a322231462c520ddb88e0bde5e6328f6c140 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 16 May 2025 15:48:55 +0200 Subject: [PATCH 13/53] Refactoring: change order of parameters and remove parameter for Conversion.ts --- scripts/fixQuestionHint.ts | 27 +++---- scripts/generateLayerOverview.ts | 17 ++--- .../Conversion/AddContextToTranslations.ts | 3 +- .../AddPrefixToTagRenderingConfig.ts | 12 +-- .../ThemeConfig/Conversion/Conversion.ts | 56 +++++--------- .../Conversion/DetectMappingsWithImages.ts | 3 +- .../ThemeConfig/Conversion/ExpandFilter.ts | 6 +- .../ThemeConfig/Conversion/ExpandRewrite.ts | 2 +- .../Conversion/ExpandTagRendering.ts | 6 +- .../ThemeConfig/Conversion/FixImages.ts | 2 +- .../Conversion/LegacyJsonConvert.ts | 5 +- .../Conversion/MiscTagRenderingChecks.ts | 7 +- .../ThemeConfig/Conversion/PrepareLayer.ts | 76 +++++++++---------- .../ThemeConfig/Conversion/PrepareTheme.ts | 37 +++------ .../Conversion/PrevalidateLayer.ts | 10 +-- .../ThemeConfig/Conversion/ValidateTheme.ts | 2 +- .../ThemeConfig/Conversion/Validation.ts | 51 +++++-------- .../ThemeConfig/Json/LayerConfigJson.ts | 2 +- .../QuestionableTagRenderingConfigJson.ts | 23 ++++++ src/UI/Studio/EditLayerState.ts | 13 +--- 20 files changed, 147 insertions(+), 213 deletions(-) diff --git a/scripts/fixQuestionHint.ts b/scripts/fixQuestionHint.ts index 1406d2b324..bd868f109d 100644 --- a/scripts/fixQuestionHint.ts +++ b/scripts/fixQuestionHint.ts @@ -5,32 +5,26 @@ import { QuestionableTagRenderingConfigJson } from "../src/Models/ThemeConfig/Js import * as fakedom from "fake-dom" import Script from "./Script" import { FixedUiElement } from "../src/UI/Base/FixedUiElement" +import { ConversionContext } from "../src/Models/ThemeConfig/Conversion/ConversionContext" class ExtractQuestionHint extends DesugaringStep { constructor() { super( + "ExtractQuestionHint", "Tries to extract a 'questionHint' from the question", - ["question", "questionhint"], - "ExtractQuestionHint" ) } convert( - json: QuestionableTagRenderingConfigJson, - context: string - ): { - result: QuestionableTagRenderingConfigJson - errors?: string[] - warnings?: string[] - information?: string[] - } { + json: QuestionableTagRenderingConfigJson + ): QuestionableTagRenderingConfigJson { json = { ...json } if (json.question === undefined || json.questionHint !== undefined) { - return { result: json } + return json } if (typeof json.question === "string") { - return { result: json } + return json } const hint: Record = {} @@ -64,12 +58,11 @@ class ExtractQuestionHint extends DesugaringSteptagRendering, + ConversionContext.construct([], [ "While automatically extracting questionHints of " + filepath + ]) ) } } diff --git a/scripts/generateLayerOverview.ts b/scripts/generateLayerOverview.ts index 8ecc391c89..a1492af390 100644 --- a/scripts/generateLayerOverview.ts +++ b/scripts/generateLayerOverview.ts @@ -9,16 +9,12 @@ import { DoesImageExist, PrevalidateTheme, ValidateLayer, - ValidateThemeEnsemble, + ValidateThemeEnsemble } from "../src/Models/ThemeConfig/Conversion/Validation" import { Translation } from "../src/UI/i18n/Translation" import { PrepareLayer } from "../src/Models/ThemeConfig/Conversion/PrepareLayer" import { PrepareTheme } from "../src/Models/ThemeConfig/Conversion/PrepareTheme" -import { - Conversion, - DesugaringContext, - DesugaringStep, -} from "../src/Models/ThemeConfig/Conversion/Conversion" +import { Conversion, DesugaringContext, DesugaringStep } from "../src/Models/ThemeConfig/Conversion/Conversion" import { Utils } from "../src/Utils" import Script from "./Script" import { AllSharedLayers } from "../src/Customizations/AllSharedLayers" @@ -35,10 +31,7 @@ import { Translatable } from "../src/Models/ThemeConfig/Json/Translatable" import { ValidateThemeAndLayers } from "../src/Models/ThemeConfig/Conversion/ValidateThemeAndLayers" import { ExtractImages } from "../src/Models/ThemeConfig/Conversion/FixImages" import { TagRenderingConfigJson } from "../src/Models/ThemeConfig/Json/TagRenderingConfigJson" -import { - LayerConfigDependencyGraph, - LevelInfo, -} from "../src/Models/ThemeConfig/LayerConfigDependencyGraph" +import { LayerConfigDependencyGraph, LevelInfo } from "../src/Models/ThemeConfig/LayerConfigDependencyGraph" // This scripts scans 'src/assets/layers/*.json' for layer definition files and 'src/assets/themes/*.json' for theme definition files. // It spits out an overview of those to be used to load them @@ -54,7 +47,7 @@ class ParseLayer extends Conversion< private readonly _doesImageExist: DoesImageExist constructor(prepareLayer: PrepareLayer, doesImageExist: DoesImageExist) { - super("Parsed a layer from file, validates it", [], "ParseLayer") + super("ParseLayer", "Parsed a layer from file, validates it", []) this._prepareLayer = prepareLayer this._doesImageExist = doesImageExist } @@ -158,7 +151,7 @@ class LayerBuilder extends Conversion> { states: Map, sharedTagRenderings: QuestionableTagRenderingConfigJson[] ) { - super("Builds all the layers, writes them to file", [], "LayerBuilder") + super("LayerBuilder", "Builds all the layers, writes them to file", []) this._levels = levels this._dependencies = dependencies this._states = states diff --git a/src/Models/ThemeConfig/Conversion/AddContextToTranslations.ts b/src/Models/ThemeConfig/Conversion/AddContextToTranslations.ts index adbea661f8..0a9334d058 100644 --- a/src/Models/ThemeConfig/Conversion/AddContextToTranslations.ts +++ b/src/Models/ThemeConfig/Conversion/AddContextToTranslations.ts @@ -8,9 +8,8 @@ export class AddContextToTranslations extends DesugaringStep { constructor(prefix = "") { super( + "AddContextToTranslation", "Adds a '_context' to every object that is probably a translation", - ["_context"], - "AddContextToTranslation" ) this._prefix = prefix } diff --git a/src/Models/ThemeConfig/Conversion/AddPrefixToTagRenderingConfig.ts b/src/Models/ThemeConfig/Conversion/AddPrefixToTagRenderingConfig.ts index 90e3f978ad..b769ce5315 100644 --- a/src/Models/ThemeConfig/Conversion/AddPrefixToTagRenderingConfig.ts +++ b/src/Models/ThemeConfig/Conversion/AddPrefixToTagRenderingConfig.ts @@ -1,21 +1,16 @@ import { DesugaringStep } from "./Conversion" -import { ConversionContext } from "./ConversionContext" import SpecialVisualizations from "../../../UI/SpecialVisualizations" import { Translatable } from "../Json/Translatable" import { TagConfigJson } from "../Json/TagConfigJson" -import { - MappingConfigJson, - QuestionableTagRenderingConfigJson, -} from "../Json/QuestionableTagRenderingConfigJson" +import { MappingConfigJson, QuestionableTagRenderingConfigJson } from "../Json/QuestionableTagRenderingConfigJson" export default class AddPrefixToTagRenderingConfig extends DesugaringStep { private readonly _prefix: string constructor(prefix: string) { super( + "AddPrefixToTagRenderingConfig", "Adds `prefix` to _all_ keys. Used to add information about a subamenity withing a bigger amenity (e.g. toilets in a restaurant, a sauna in a water park, ...)", - ["*"], - "AddPrefixToTagRenderingConfig" ) this._prefix = prefix } @@ -106,8 +101,7 @@ export default class AddPrefixToTagRenderingConfig extends DesugaringStep, - context: ConversionContext + json: Readonly ): QuestionableTagRenderingConfigJson { let freeform = json.freeform if (freeform) { diff --git a/src/Models/ThemeConfig/Conversion/Conversion.ts b/src/Models/ThemeConfig/Conversion/Conversion.ts index 5d78757576..36702b9206 100644 --- a/src/Models/ThemeConfig/Conversion/Conversion.ts +++ b/src/Models/ThemeConfig/Conversion/Conversion.ts @@ -22,13 +22,11 @@ export interface ConversionMessage { } export abstract class Conversion { - public readonly modifiedAttributes: string[] public readonly name: string protected readonly doc: string - constructor(doc: string, modifiedAttributes: string[] = [], name: string) { - this.modifiedAttributes = modifiedAttributes - this.doc = doc + "\n\nModified attributes are\n" + modifiedAttributes.join(", ") + constructor(name: string, doc: string) { + this.doc = doc this.name = name } @@ -76,7 +74,7 @@ export class Pipe extends Conversion { private readonly _failfast: boolean constructor(step0: Conversion, step1: Conversion, failfast = false) { - super("Merges two steps with different types", [], `Pipe(${step0.name}, ${step1.name})`) + super(`Pipe(${step0.name}, ${step1.name})`, "Merges two steps with different types") this._step0 = step0 this._step1 = step1 this._failfast = failfast @@ -95,11 +93,11 @@ export class Pure extends Conversion { private readonly _f: (t: TIn) => TOut constructor(f: (t: TIn) => TOut) { - super("Wrapper around a pure function", [], "Pure") + super("Pure", "Wrapper around a pure function") this._f = f } - convert(json: TIn, context: ConversionContext): TOut { + convert(json: TIn): TOut { return this._f(json) } } @@ -109,7 +107,7 @@ export class Bypass extends DesugaringStep { private readonly _step: DesugaringStep constructor(applyIf: (t: T) => boolean, step: DesugaringStep) { - super("Applies the step on the object, if the object satisfies the predicate", [], "Bypass") + super("Bypass", "Applies the step on the object, if the object satisfies the predicate") this._applyIf = applyIf this._step = step } @@ -127,11 +125,7 @@ export class Each extends Conversion { private readonly _msg: string constructor(step: Conversion, options?: { msg?: string }) { - super( - "Applies the given step on every element of the list", - [], - "OnEach(" + step.name + ")" - ) + super("OnEach(" + step.name + ")", "Applies the given step on every element of the list") this._step = step this._msg = options?.msg } @@ -168,14 +162,13 @@ export class On extends DesugaringStep { constructor(key: string, step: Conversion | ((t: T) => Conversion)) { super( + `On(${key}, ${step.name})`, "Applies " + step.name + " onto property `" + key + "`", - [key], - `On(${key}, ${step.name})` ) if (typeof step === "function") { this.step = step } else { - this.step = (_) => step + this.step = () => step } this.key = key } @@ -196,10 +189,10 @@ export class On extends DesugaringStep { export class Pass extends Conversion { constructor(message?: string) { - super(message ?? "Does nothing, often to swap out steps in testing", [], "Pass") + super("Pass", message ?? "Does nothing, often to swap out steps in testing") } - convert(json: T, _: ConversionContext): T { + convert(json: T): T { return json } } @@ -208,11 +201,7 @@ export class Concat extends Conversion { private readonly _step: Conversion constructor(step: Conversion) { - super( - "Executes the given step, flattens the resulting list", - [], - "Concat(" + step.name + ")" - ) + super("Concat(" + step.name + ")", "Executes the given step, flattens the resulting list") this._step = step } @@ -230,11 +219,7 @@ export class FirstOf extends Conversion { private readonly _conversion: Conversion constructor(conversion: Conversion) { - super( - "Picks the first result of the conversion step", - [], - "FirstOf(" + conversion.name + ")" - ) + super("FirstOf(" + conversion.name + ")", "Picks the first result of the conversion step") this._conversion = conversion } @@ -252,7 +237,7 @@ export class Cached extends Conversion { private readonly key: string constructor(step: Conversion) { - super("Secretly caches the output for the given input", [], "cached") + super("cached", "Secretly caches the output for the given input") this._step = step this.key = "__super_secret_caching_key_" + step.name } @@ -276,11 +261,10 @@ export class Fuse extends DesugaringStep { constructor(doc: string, ...steps: DesugaringStep[]) { super( + "Fuse", (doc ?? "") + "This fused pipeline of the following steps: " + steps.map((s) => s.name).join(", "), - Utils.Dedup([].concat(...steps.map((step) => step.modifiedAttributes))), - "Fuse" ) this.steps = Utils.NoNull(steps) } @@ -318,19 +302,19 @@ export class Fuse extends DesugaringStep { } } -export class SetDefault extends DesugaringStep { - private readonly value: any +export class SetDefault extends DesugaringStep { + private readonly value: X private readonly key: string private readonly _overrideEmptyString: boolean - constructor(key: string, value: any, overrideEmptyString = false) { - super("Sets " + key + " to a default value if undefined", [], "SetDefault of " + key) + constructor(key: string, value: X, overrideEmptyString = false) { + super("SetDefault of " + key, "Sets " + key + " to a default value if undefined") this.key = key this.value = value this._overrideEmptyString = overrideEmptyString } - convert(json: T, _: ConversionContext): T { + convert(json: T): T { if (json === undefined) { return undefined } diff --git a/src/Models/ThemeConfig/Conversion/DetectMappingsWithImages.ts b/src/Models/ThemeConfig/Conversion/DetectMappingsWithImages.ts index aa9f787fb8..4dfe4c9e46 100644 --- a/src/Models/ThemeConfig/Conversion/DetectMappingsWithImages.ts +++ b/src/Models/ThemeConfig/Conversion/DetectMappingsWithImages.ts @@ -10,9 +10,8 @@ export class DetectMappingsWithImages extends DesugaringStep { constructor() { super( + "PruneFilters", "Removes all filters which are impossible, e.g. because they conflict with the base tags", - ["filter"], - "PruneFilters" ) } @@ -114,12 +113,11 @@ export class ExpandFilter extends DesugaringStep { constructor(state: DesugaringContext) { super( + "ExpandFilter", [ "Expands filters: replaces a shorthand by the value found in 'filters.json'.", "If the string is formatted 'layername.filtername, it will be looked up into that layer instead. Note that pruning should still be done", ].join(" "), - ["filter"], - "ExpandFilter" ) this._state = state } diff --git a/src/Models/ThemeConfig/Conversion/ExpandRewrite.ts b/src/Models/ThemeConfig/Conversion/ExpandRewrite.ts index 4cc6c0f25d..81f78bd12c 100644 --- a/src/Models/ThemeConfig/Conversion/ExpandRewrite.ts +++ b/src/Models/ThemeConfig/Conversion/ExpandRewrite.ts @@ -6,7 +6,7 @@ import { Utils } from "../../../Utils" export class ExpandRewrite extends Conversion, T[]> { constructor() { - super("Applies a rewrite", [], "ExpandRewrite") + super("ExpandRewrite", "Applies a rewrite", []) } /** diff --git a/src/Models/ThemeConfig/Conversion/ExpandTagRendering.ts b/src/Models/ThemeConfig/Conversion/ExpandTagRendering.ts index 4d2e4a1b09..b8738b2a37 100644 --- a/src/Models/ThemeConfig/Conversion/ExpandTagRendering.ts +++ b/src/Models/ThemeConfig/Conversion/ExpandTagRendering.ts @@ -39,11 +39,7 @@ export class ExpandTagRendering extends Conversion< addToContext?: false | boolean } ) { - super( - "Converts a tagRenderingSpec into the full tagRendering, e.g. by substituting the tagRendering by the shared-question and reusing the builtins", - [], - "ExpandTagRendering" - ) + super("ExpandTagRendering", "Converts a tagRenderingSpec into the full tagRendering, e.g. by substituting the tagRendering by the shared-question and reusing the builtins", []) this._state = state this._self = self this._options = options diff --git a/src/Models/ThemeConfig/Conversion/FixImages.ts b/src/Models/ThemeConfig/Conversion/FixImages.ts index 331e3d02e0..b8fd901005 100644 --- a/src/Models/ThemeConfig/Conversion/FixImages.ts +++ b/src/Models/ThemeConfig/Conversion/FixImages.ts @@ -28,7 +28,7 @@ export class ExtractImages extends Conversion< private _sharedTagRenderings: Set constructor(isOfficial: boolean, sharedTagRenderings: Set) { - super("Extract all images from a layoutConfig using the meta paths.", [], "ExctractImages") + super("ExctractImages", "Extract all images from a layoutConfig using the meta paths.", []) this._isOfficial = isOfficial this._sharedTagRenderings = sharedTagRenderings } diff --git a/src/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts b/src/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts index f3594a283c..1a9f9ea651 100644 --- a/src/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts +++ b/src/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts @@ -11,9 +11,8 @@ export class UpdateLegacyLayer extends DesugaringStep< > { constructor() { super( + "UpdateLegacyLayer", "Updates various attributes from the old data format to the new to provide backwards compatibility with the formats", - ["overpassTags", "source.osmtags", "tagRenderings[*].id", "mapRendering"], - "UpdateLegacyLayer" ) } @@ -259,7 +258,7 @@ export class UpdateLegacyLayer extends DesugaringStep< class UpdateLegacyTheme extends DesugaringStep { constructor() { - super("Small fixes in the theme config", ["roamingRenderings"], "UpdateLegacyTheme") + super("UpdateLegacyTheme", "Small fixes in the theme config") } convert(json: ThemeConfigJson, context: ConversionContext): ThemeConfigJson { diff --git a/src/Models/ThemeConfig/Conversion/MiscTagRenderingChecks.ts b/src/Models/ThemeConfig/Conversion/MiscTagRenderingChecks.ts index 5cc4b3ff65..05fbe2b2be 100644 --- a/src/Models/ThemeConfig/Conversion/MiscTagRenderingChecks.ts +++ b/src/Models/ThemeConfig/Conversion/MiscTagRenderingChecks.ts @@ -1,10 +1,7 @@ import { DesugaringStep } from "./Conversion" import { TagRenderingConfigJson } from "../Json/TagRenderingConfigJson" import { LayerConfigJson } from "../Json/LayerConfigJson" -import { - MappingConfigJson, - QuestionableTagRenderingConfigJson, -} from "../Json/QuestionableTagRenderingConfigJson" +import { MappingConfigJson, QuestionableTagRenderingConfigJson } from "../Json/QuestionableTagRenderingConfigJson" import { ConversionContext } from "./ConversionContext" import { Translation } from "../../../UI/i18n/Translation" import Validators from "../../../UI/InputElement/Validators" @@ -14,7 +11,7 @@ export class MiscTagRenderingChecks extends DesugaringStep { constructor() { super( + "AddFiltersFromTagRenderings", 'Inspects all the tagRenderings. If some tagRenderings have the `filter` attribute set, introduce those filters. This step might introduce shorthand filter names, thus \'ExpandFilter\' should be run afterwards. Can be disabled with "#filter":"no-auto"', - ["filter"], - "AddFiltersFromTagRenderings" ) } @@ -108,9 +95,8 @@ class AddFiltersFromTagRenderings extends DesugaringStep { class DetectInline extends DesugaringStep { constructor() { super( + "DetectInline", "If no 'inline' is set on the freeform key, it will be automatically added. If no special renderings are used, it'll be set to true", - ["freeform.inline"], - "DetectInline" ) } @@ -173,9 +159,8 @@ class DetectInline extends DesugaringStep { export class AddQuestionBox extends DesugaringStep { constructor() { super( + "AddQuestionBox", "Adds a 'questions'-object if no question element is added yet", - ["tagRenderings"], - "AddQuestionBox" ) } @@ -284,9 +269,8 @@ export class AddEditingElements extends DesugaringStep { constructor(desugaring: DesugaringContext) { super( - "Add some editing elements, such as the delete button or the move button if they are configured. These used to be handled by the feature info box, but this has been replaced by special visualisation elements", - [], - "AddEditingElements" + "AddEditingElements", + "Add some editing elements, such as the delete button or the move button if they are configured. These used to be handled by the feature info box, but this has been replaced by special visualisation elements" ) this._desugaring = desugaring this.builtinQuestions = Array.from(this._desugaring.tagRenderings?.values() ?? []) @@ -388,9 +372,8 @@ export class AddEditingElements extends DesugaringStep { export class RewriteSpecial extends DesugaringStep { constructor() { super( + "RewriteSpecial", "Converts a 'special' translation into a regular translation which uses parameters", - ["special"], - "RewriteSpecial" ) } @@ -664,7 +647,7 @@ class ExpandIconBadges extends DesugaringStep { private _expand: ExpandTagRendering constructor(state: DesugaringContext, layer: LayerConfigJson) { - super("Expands shorthand properties on iconBadges", ["iconBadges"], "ExpandIconBadges") + super("ExpandIconBadges", "Expands shorthand properties on iconBadges") this._expand = new ExpandTagRendering(state, layer) } @@ -766,9 +749,8 @@ class PreparePointRendering extends Fuse { class SetFullNodeDatabase extends DesugaringStep { constructor() { super( + "SetFullNodeDatabase", "sets the fullNodeDatabase-bit if needed", - ["fullNodeDatabase"], - "SetFullNodeDatabase" ) } @@ -795,9 +777,8 @@ class ExpandMarkerRenderings extends DesugaringStep { constructor(state: DesugaringContext, layer: LayerConfigJson) { super( + "ExpandMarkerRenderings", "Expands tagRenderings in the icons, if needed", - ["icon", "color"], - "ExpandMarkerRenderings" ) this._layer = layer this._state = state @@ -829,9 +810,8 @@ class ExpandMarkerRenderings extends DesugaringStep { class AddFavouriteBadges extends DesugaringStep { constructor() { super( + "AddFavouriteBadges", "Adds the favourite heart to the title and the rendering badges", - [], - "AddFavouriteBadges" ) } @@ -854,9 +834,8 @@ class AddFavouriteBadges extends DesugaringStep { export class AddRatingBadge extends DesugaringStep { constructor() { super( + "AddRatingBadge", "Adds the 'rating'-element if a reviews-element is used in the tagRenderings", - ["titleIcons"], - "AddRatingBadge" ) } @@ -890,9 +869,8 @@ export class AddRatingBadge extends DesugaringStep { export class AutoTitleIcon extends DesugaringStep { constructor() { super( + "AutoTitleIcon", "The auto-icon creates a (non-clickable) title icon based on a tagRendering which has icons", - ["titleIcons"], - "AutoTitleIcon" ) } @@ -967,12 +945,34 @@ export class AutoTitleIcon extends DesugaringStep { } } +class MoveUnitConfigs extends DesugaringStep { + + constructor() { + super("MoveUnitConfigs", "Looks into all the tagRenderings for a 'unitConfig', moves them to the layer level") + } + + convert(json: LayerConfigJson, context: ConversionContext): LayerConfigJson { + json = { ...json, units: [...(json.units ?? [])] } + for (const tr of json.tagRenderings ?? []) { + const qtr = (tr) + const unitConfig = qtr?.freeform?.unit + if (!unitConfig) { + continue + } + json.units.push({ + [qtr.freeform.key]: unitConfig + }) + } + return json + } + +} + class DeriveSource extends DesugaringStep { constructor() { super( + "DeriveSource", "If no source is given, automatically derives the osmTags by 'or'-ing all the preset tags", - ["source"], - "DeriveSource" ) } diff --git a/src/Models/ThemeConfig/Conversion/PrepareTheme.ts b/src/Models/ThemeConfig/Conversion/PrepareTheme.ts index 79ecbd1385..dd45c74169 100644 --- a/src/Models/ThemeConfig/Conversion/PrepareTheme.ts +++ b/src/Models/ThemeConfig/Conversion/PrepareTheme.ts @@ -1,14 +1,4 @@ -import { - Concat, - Conversion, - DesugaringContext, - DesugaringStep, - Each, - Fuse, - On, - Pass, - SetDefault, -} from "./Conversion" +import { Concat, Conversion, DesugaringContext, DesugaringStep, Each, Fuse, On, Pass, SetDefault } from "./Conversion" import { ThemeConfigJson } from "../Json/ThemeConfigJson" import { PrepareLayer, RewriteSpecial } from "./PrepareLayer" import { LayerConfigJson } from "../Json/LayerConfigJson" @@ -25,11 +15,7 @@ class SubstituteLayer extends Conversion { constructor(state: DesugaringContext) { super( + "AddDefaultLayers", "Adds the default layers, namely: " + Constants.added_by_default.join(", "), - ["layers"], - "AddDefaultLayers" ) this._state = state } @@ -225,9 +210,8 @@ export class AddDefaultLayers extends DesugaringStep { class AddContextToTranslationsInLayout extends DesugaringStep { constructor() { super( + "AddContextToTranlationsInLayout", "Adds context to translations, including the prefix 'themes:json.id'; this is to make sure terms in an 'overrides' or inline layer are linkable too", - ["_context"], - "AddContextToTranlationsInLayout" ) } @@ -244,9 +228,8 @@ class AddContextToTranslationsInLayout extends DesugaringStep { class ApplyOverrideAll extends DesugaringStep { constructor() { super( + "ApplyOverrideAll", "Applies 'overrideAll' onto every 'layer'. The 'overrideAll'-field is removed afterwards", - ["overrideAll", "layers"], - "ApplyOverrideAll" ) } @@ -296,9 +279,8 @@ class AddDependencyLayersToTheme extends DesugaringStep { constructor(state: DesugaringContext) { super( + "AddDependencyLayersToTheme", `If a layer has a dependency on another layer, these layers are added automatically on the theme. (For example: defibrillator depends on 'walls_and_buildings' to snap onto. This layer is added automatically)`, - ["layers"], - "AddDependencyLayersToTheme" ) this._state = state } @@ -456,7 +438,7 @@ class PreparePersonalTheme extends DesugaringStep { private readonly _state: DesugaringContext constructor(state: DesugaringContext) { - super("Adds every public layer to the personal theme", ["layers"], "PreparePersonalTheme") + super("PreparePersonalTheme", "Adds every public layer to the personal theme") this._state = state } @@ -479,9 +461,8 @@ class PreparePersonalTheme extends DesugaringStep { class WarnForUnsubstitutedLayersInTheme extends DesugaringStep { constructor() { super( + "WarnForUnsubstitutedLayersInTheme", "Generates a warning if a theme uses an inline layer; we recommend splitting of all layers in separate files", - ["layers"], - "WarnForUnsubstitutedLayersInTheme" ) } @@ -531,7 +512,7 @@ class PostvalidateTheme extends DesugaringStep { private readonly _state: DesugaringContext constructor(state: DesugaringContext) { - super("Various validation steps when everything is done", [], "PostvalidateTheme") + super("PostvalidateTheme", "Various validation steps when everything is done") this._state = state } diff --git a/src/Models/ThemeConfig/Conversion/PrevalidateLayer.ts b/src/Models/ThemeConfig/Conversion/PrevalidateLayer.ts index 92ac3b77fb..623e073b34 100644 --- a/src/Models/ThemeConfig/Conversion/PrevalidateLayer.ts +++ b/src/Models/ThemeConfig/Conversion/PrevalidateLayer.ts @@ -27,7 +27,7 @@ export class PrevalidateLayer extends DesugaringStep { doesImageExist: DoesImageExist, studioValidations: boolean ) { - super("Runs various checks against common mistakes for a layer", [], "PrevalidateLayer") + super("PrevalidateLayer", "Runs various checks against common mistakes for a layer") this._path = path this._isBuiltin = isBuiltin this._doesImageExist = doesImageExist @@ -57,6 +57,7 @@ export class PrevalidateLayer extends DesugaringStep { } } else { if (json.source === "special" || json.source === "special:library") { + // pass } else if (json.source && json.source["osmTags"] === undefined) { context .enters("source", "osmTags") @@ -232,11 +233,6 @@ export class PrevalidateLayer extends DesugaringStep { } } - try { - } catch (e) { - context.err("Could not validate layer due to: " + e + e.stack) - } - if (this._studioValidations) { if (!json.description) { context.enter("description").err("A description is required") @@ -358,7 +354,7 @@ export class PrevalidateLayer extends DesugaringStep { if (pointRendering.marker === undefined) { continue } - for (const icon of pointRendering?.marker) { + for (const icon of pointRendering?.marker ?? []) { const indexM = pointRendering?.marker.indexOf(icon) if (!icon.icon) { continue diff --git a/src/Models/ThemeConfig/Conversion/ValidateTheme.ts b/src/Models/ThemeConfig/Conversion/ValidateTheme.ts index 2b6949c96d..d0dad222a6 100644 --- a/src/Models/ThemeConfig/Conversion/ValidateTheme.ts +++ b/src/Models/ThemeConfig/Conversion/ValidateTheme.ts @@ -24,7 +24,7 @@ export class ValidateTheme extends DesugaringStep { isBuiltin: boolean, sharedTagRenderings?: Set ) { - super("Doesn't change anything, but emits warnings and errors", [], "ValidateTheme") + super("ValidateTheme", "Doesn't change anything, but emits warnings and errors") this._validateImage = doesImageExist this._path = path this._isBuiltin = isBuiltin diff --git a/src/Models/ThemeConfig/Conversion/Validation.ts b/src/Models/ThemeConfig/Conversion/Validation.ts index afb4ffed69..f6451a40c0 100644 --- a/src/Models/ThemeConfig/Conversion/Validation.ts +++ b/src/Models/ThemeConfig/Conversion/Validation.ts @@ -28,9 +28,8 @@ export class ValidateLanguageCompleteness extends DesugaringStep { constructor(...languages: string[]) { super( + "ValidateLanguageCompleteness", "Checks that the given object is fully translated in the specified languages", - [], - "ValidateLanguageCompleteness" ) this._languages = languages ?? ["en"] } @@ -74,7 +73,7 @@ export class DoesImageExist extends DesugaringStep { checkExistsSync: (path: string) => boolean = undefined, ignore?: Set ) { - super("Checks if an image exists", [], "DoesImageExist") + super("DoesImageExist", "Checks if an image exists") this._ignore = ignore this._knownImagePaths = knownImagePaths this.doesPathExist = checkExistsSync @@ -129,9 +128,8 @@ export class DoesImageExist extends DesugaringStep { class OverrideShadowingCheck extends DesugaringStep { constructor() { super( + "OverrideShadowingCheck", "Checks that an 'overrideAll' does not override a single override", - [], - "OverrideShadowingCheck" ) } @@ -170,7 +168,7 @@ class OverrideShadowingCheck extends DesugaringStep { class MiscThemeChecks extends DesugaringStep { constructor() { - super("Miscelleanous checks on the theme", [], "MiscThemesChecks") + super("Miscelleanous checks on the theme", "MiscThemesChecks") } convert(json: ThemeConfigJson, context: ConversionContext): ThemeConfigJson { @@ -265,9 +263,8 @@ export class PrevalidateTheme extends Fuse { export class DetectConflictingAddExtraTags extends DesugaringStep { constructor() { super( + "DetectConflictingAddExtraTags", "The `if`-part in a mapping might set some keys. Those keys are not allowed to be set in the `addExtraTags`, as this might result in conflicting values", - [], - "DetectConflictingAddExtraTags" ) } @@ -310,9 +307,8 @@ export class DetectConflictingAddExtraTags extends DesugaringStep { constructor() { super( + "DetectNonErasedKeysInMappings", "A tagRendering might set a freeform key (e.g. `name` and have an option that _should_ erase this name, e.g. `noname=yes`). Under normal circumstances, every mapping/freeform should affect all touched keys", - [], - "DetectNonErasedKeysInMappings" ) } @@ -407,9 +403,8 @@ export class DetectMappingsShadowedByCondition extends DesugaringStep> { constructor() { super( + "ValidatePossibleLinks", "Given a possible set of translations, validates that does have `rel='noopener'` set", - [], - "ValidatePossibleLinks" ) } @@ -661,9 +655,8 @@ export class CheckTranslation extends DesugaringStep { constructor(allowUndefined: boolean = false) { super( + "CheckTranslation", "Checks that a translation is valid and internally consistent", - ["*"], - "CheckTranslation" ) this._allowUndefined = allowUndefined } @@ -712,7 +705,7 @@ export class ValidateLayerConfig extends DesugaringStep { studioValidations: boolean = false, skipDefaultLayers: boolean = false ) { - super("Thin wrapper around 'ValidateLayer", [], "ValidateLayerConfig") + super("ValidateLayerConfig", "Thin wrapper around 'ValidateLayer") this.validator = new ValidateLayer( path, isBuiltin, @@ -734,7 +727,7 @@ export class ValidateLayerConfig extends DesugaringStep { export class ValidatePointRendering extends DesugaringStep { constructor() { - super("Various checks for pointRenderings", [], "ValidatePOintRendering") + super("ValidatePointRendering", "Various checks for pointRenderings") } convert(json: PointRenderingConfigJson, context: ConversionContext): PointRenderingConfigJson { @@ -777,7 +770,7 @@ export class ValidateLayer extends Conversion< studioValidations: boolean = false, skipDefaultLayers: boolean = false ) { - super("Doesn't change anything, but emits warnings and errors", [], "ValidateLayer") + super("ValidateLayer", "Doesn't change anything, but emits warnings and errors") this._prevalidation = new PrevalidateLayer( path, isBuiltin, @@ -819,7 +812,7 @@ export class ValidateLayer extends Conversion< } for (let i = 0; i < (layerConfig.calculatedTags ?? []).length; i++) { - const [_, code, __] = layerConfig.calculatedTags[i] + const code = layerConfig.calculatedTags[i][1] try { new Function("feat", "return " + code + ";") } catch (e) { @@ -894,7 +887,7 @@ export class ValidateLayer extends Conversion< export class ValidateFilter extends DesugaringStep { constructor() { - super("Detect common errors in the filters", [], "ValidateFilter") + super("ValidateFilter", "Detect common errors in the filters") } convert(filter: FilterConfigJson, context: ConversionContext): FilterConfigJson { @@ -931,9 +924,8 @@ export class DetectDuplicateFilters extends DesugaringStep<{ }> { constructor() { super( - "Tries to detect layers where a shared filter can be used (or where similar filters occur)", - [], - "DetectDuplicateFilters" + "DetectDuplicateFilters", + "Tries to detect layers where a shared filter can be used (or where similar filters occur)" ) } @@ -1041,9 +1033,8 @@ export class DetectDuplicateFilters extends DesugaringStep<{ export class DetectDuplicatePresets extends DesugaringStep { constructor() { super( + "DetectDuplicatePresets", "Detects mappings which have identical (english) names or identical mappings.", - ["presets"], - "DetectDuplicatePresets" ) } @@ -1107,11 +1098,7 @@ export class ValidateThemeEnsemble extends Conversion< > > { constructor() { - super( - "Validates that all themes together are logical, i.e. no duplicate ids exists within (overriden) themes", - [], - "ValidateThemeEnsemble" - ) + super("ValidateThemeEnsemble", "Validates that all themes together are logical, i.e. no duplicate ids exists within (overriden) themes") } convert( diff --git a/src/Models/ThemeConfig/Json/LayerConfigJson.ts b/src/Models/ThemeConfig/Json/LayerConfigJson.ts index 9a179072ac..25fc08297f 100644 --- a/src/Models/ThemeConfig/Json/LayerConfigJson.ts +++ b/src/Models/ThemeConfig/Json/LayerConfigJson.ts @@ -556,7 +556,7 @@ export interface LayerConfigJson { allowSplit?: boolean /** - * Either a list with [{"key": "unitname", "key2": {"quantity": "unitname", "denominations": ["denom", "denom"]}}] + * Either a list of unitConfigs with [{"key": "unitname", "key2": {"quantity": "unitname", "denominations": ["denom", "denom"]}}] * * Use `"inverted": true` if the amount should be _divided_ by the denomination, e.g. for charge over time (`€5/day`) * diff --git a/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts b/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts index f7d9e957a3..c27b0fed1a 100644 --- a/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts +++ b/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts @@ -290,6 +290,29 @@ export interface QuestionableTagRenderingConfigJson extends TagRenderingConfigJs * group: hidden */ helperArgs?: any + + /** + * question: what units + * + * group: hidden + * + * Note: this is actually a syntactic sugar and is translated to the unit-syntax on layer level + */ + unit?: { + /** + * What is the quantity? E.g. 'voltage', 'speed', ... + * See [builtin_units.md] for options + */ + quantity: string + /** + * The possible denominations for the quantities. E.g. For 'length', might be 'cm', 'm', 'km', ... + * If none given, will allow all the defaults + */ + denominations: string[] + + canonical?: string + inverted?: boolean + } } /** diff --git a/src/UI/Studio/EditLayerState.ts b/src/UI/Studio/EditLayerState.ts index 09301d8e5e..7c086960a7 100644 --- a/src/UI/Studio/EditLayerState.ts +++ b/src/UI/Studio/EditLayerState.ts @@ -1,12 +1,7 @@ import { ConfigMeta } from "./configMeta" import { Store, UIEventSource } from "../../Logic/UIEventSource" import { LayerConfigJson } from "../../Models/ThemeConfig/Json/LayerConfigJson" -import { - Conversion, - ConversionMessage, - DesugaringContext, - Pipe, -} from "../../Models/ThemeConfig/Conversion/Conversion" +import { Conversion, ConversionMessage, DesugaringContext, Pipe } from "../../Models/ThemeConfig/Conversion/Conversion" import { PrepareLayer } from "../../Models/ThemeConfig/Conversion/PrepareLayer" import { PrevalidateTheme, ValidateLayer } from "../../Models/ThemeConfig/Conversion/Validation" import { AllSharedLayers } from "../../Customizations/AllSharedLayers" @@ -281,11 +276,7 @@ class ContextRewritingStep extends Conversion { step: Conversion, getTagRenderings: (t: T) => TagRenderingConfigJson[] ) { - super( - "When validating a layer, the tagRenderings are first expanded. Some builtin tagRendering-calls (e.g. `contact`) will introduce _multiple_ tagRenderings, causing the count to be off. This class rewrites the error messages to fix this", - [], - "ContextRewritingStep" - ) + super("ContextRewritingStep", "When validating a layer, the tagRenderings are first expanded. Some builtin tagRendering-calls (e.g. `contact`) will introduce _multiple_ tagRenderings, causing the count to be off. This class rewrites the error messages to fix this", []) this._state = state this._step = step this._getTagRenderings = getTagRenderings From 3cad0d1c859e6aa87c648b56df9bf002f8fbedab Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 19 May 2025 18:41:36 +0200 Subject: [PATCH 14/53] UX: always show user id in studio --- src/UI/Studio/EditItemButton.svelte | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/UI/Studio/EditItemButton.svelte b/src/UI/Studio/EditItemButton.svelte index 7b8c2415f3..0628977a0c 100644 --- a/src/UI/Studio/EditItemButton.svelte +++ b/src/UI/Studio/EditItemButton.svelte @@ -32,9 +32,7 @@ {#if info.owner && info.owner !== $selfId} {#if $displayName} (made by {$displayName} - {#if window.location.host.startsWith("127.0.0.1")} - - {info.owner} - {/if} + {info.owner} ) {:else} ({info.owner}) From 06cd77a8d175b29eb4c35ddec2924dda48e18210 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 19 May 2025 23:05:37 +0200 Subject: [PATCH 15/53] Chore: regen docs --- Docs/BuiltinIndex.md | 5 + Docs/BuiltinQuestions.md | 82 +++- Docs/Layers/address.md | 17 +- Docs/Layers/adult_changing_table.md | 19 +- Docs/Layers/advertising.md | 14 +- Docs/Layers/advertising_wall_paintings.md | 14 +- Docs/Layers/aerialway.md | 13 +- Docs/Layers/all_streets.md | 4 + Docs/Layers/all_vending_machine.md | 36 +- Docs/Layers/ambulancestation.md | 19 +- Docs/Layers/animal_shelter.md | 24 +- Docs/Layers/artwork.md | 71 ++- Docs/Layers/artwork_on_wall.md | 71 ++- Docs/Layers/assembly_point.md | 10 +- Docs/Layers/assisted_repair.md | 27 +- Docs/Layers/atm.md | 16 +- Docs/Layers/bank.md | 5 + Docs/Layers/banks_with_atm.md | 5 + Docs/Layers/barrier.md | 17 +- Docs/Layers/bbq.md | 5 + Docs/Layers/beehive.md | 8 +- Docs/Layers/bench.md | 44 +- Docs/Layers/bench_at_pt.md | 7 +- .../bicycle_assisted_repair_workshop.md | 27 +- Docs/Layers/bicycle_counter.md | 17 +- Docs/Layers/bicycle_library.md | 26 +- Docs/Layers/bicycle_rental.md | 41 +- Docs/Layers/bicycle_rental_non_docking.md | 41 +- Docs/Layers/bike_cafe.md | 20 +- Docs/Layers/bike_cleaning.md | 14 +- Docs/Layers/bike_parking.md | 38 +- Docs/Layers/bike_repair_station.md | 25 +- Docs/Layers/bike_shop.md | 140 ++++-- Docs/Layers/bike_themed_object.md | 18 +- Docs/Layers/binocular.md | 11 +- Docs/Layers/birdhide.md | 8 +- Docs/Layers/brothel.md | 21 +- Docs/Layers/building.md | 20 +- Docs/Layers/buildings_with_architecture.md | 20 +- Docs/Layers/cafe_pub.md | 72 +++- Docs/Layers/campsite.md | 28 +- Docs/Layers/car_rental.md | 19 +- Docs/Layers/caravansites.md | 20 +- Docs/Layers/charge_point.md | 263 ++++++++---- Docs/Layers/charging_station.md | 301 ++++++++----- Docs/Layers/charging_station_ebikes.md | 301 ++++++++----- Docs/Layers/childcare.md | 22 +- Docs/Layers/cinema.md | 17 +- Docs/Layers/climbing_area.md | 20 +- Docs/Layers/climbing_club.md | 18 +- Docs/Layers/climbing_gym.md | 44 +- Docs/Layers/climbing_opportunity.md | 3 + Docs/Layers/climbing_route.md | 22 +- Docs/Layers/clock.md | 8 +- Docs/Layers/crossings.md | 7 +- Docs/Layers/crossings_no_traffic_lights.md | 7 +- .../cultural_places_without_etymology.md | 15 +- Docs/Layers/cycle_highways.md | 16 +- Docs/Layers/cyclestreets.md | 7 +- Docs/Layers/cycleways_and_roads.md | 22 +- Docs/Layers/cyclist_waiting_aid.md | 5 + Docs/Layers/defibrillator.md | 41 +- Docs/Layers/dentist.md | 31 +- Docs/Layers/direction.md | 2 + Docs/Layers/disaster_response.md | 10 +- Docs/Layers/doctors.md | 34 +- Docs/Layers/dog_toilet.md | 4 + Docs/Layers/dogpark.md | 15 +- Docs/Layers/drinking_water.md | 27 +- Docs/Layers/dumpstations.md | 10 +- ...ducation_institutions_without_etymology.md | 15 +- Docs/Layers/elevator.md | 43 +- Docs/Layers/elongated_coin.md | 27 +- Docs/Layers/entrance.md | 25 +- Docs/Layers/etymology.md | 15 +- Docs/Layers/excrement_bag_dispenser.md | 6 +- Docs/Layers/extinguisher.md | 7 +- Docs/Layers/facadegardens.md | 14 +- Docs/Layers/fire_station.md | 19 +- Docs/Layers/firepit.md | 5 + Docs/Layers/fitness_centre.md | 24 +- Docs/Layers/fitness_station.md | 13 +- Docs/Layers/fixme.md | 7 +- Docs/Layers/food.md | 89 +++- Docs/Layers/food_courts.md | 17 +- Docs/Layers/food_dog_friendly.md | 89 +++- Docs/Layers/food_glutenfree.md | 89 +++- Docs/Layers/food_lactosefree.md | 89 +++- Docs/Layers/friture.md | 89 +++- Docs/Layers/ghost_bike.md | 19 +- Docs/Layers/ghostsign.md | 13 +- Docs/Layers/governments.md | 16 +- Docs/Layers/grave.md | 10 +- Docs/Layers/group_campsite.md | 28 +- Docs/Layers/group_hostel.md | 26 +- Docs/Layers/guidepost.md | 14 +- Docs/Layers/hackerspace.md | 34 +- ...lth_and_social_places_without_etymology.md | 15 +- Docs/Layers/hospital.md | 31 +- Docs/Layers/hostel.md | 26 +- Docs/Layers/hydrant.md | 25 +- Docs/Layers/ice_cream.md | 20 +- Docs/Layers/icecream_glutenfree.md | 20 +- Docs/Layers/icecream_lactosefree.md | 20 +- Docs/Layers/indoors.md | 49 ++- Docs/Layers/information_board.md | 5 + Docs/Layers/insect_hotel.md | 5 + Docs/Layers/item_with_image.md | 3 + Docs/Layers/kerbs.md | 10 +- Docs/Layers/lighthouse.md | 10 +- Docs/Layers/lit_streets.md | 4 + Docs/Layers/love_hotel.md | 17 +- Docs/Layers/map.md | 8 +- Docs/Layers/maproulette.md | 5 + Docs/Layers/maproulette_challenge.md | 2 + Docs/Layers/maxspeed.md | 12 +- Docs/Layers/medical_shops.md | 140 ++++-- Docs/Layers/memorial.md | 38 +- Docs/Layers/mobility_hub.md | 13 +- Docs/Layers/mountain_rescue.md | 5 + Docs/Layers/nature_reserve.md | 35 +- Docs/Layers/not_cyclestreets.md | 7 +- Docs/Layers/note.md | 8 + Docs/Layers/observation_tower.md | 25 +- Docs/Layers/onwheels_entrance_data.md | 3 + Docs/Layers/osm_community_index.md | 4 + Docs/Layers/outdoor_seating.md | 13 +- Docs/Layers/parcel_lockers.md | 17 +- Docs/Layers/parking.md | 18 +- Docs/Layers/parking_spaces.md | 5 + Docs/Layers/parking_spaces_disabled.md | 5 + Docs/Layers/parking_ticket_machine.md | 7 +- .../parks_and_forests_without_etymology.md | 15 +- Docs/Layers/parks_without_etymology.md | 15 +- Docs/Layers/pet_shops.md | 140 ++++-- Docs/Layers/pharmacy.md | 33 +- Docs/Layers/physiotherapist.md | 31 +- Docs/Layers/picnic_table.md | 12 +- Docs/Layers/play_forest.md | 14 +- Docs/Layers/playground.md | 34 +- Docs/Layers/playground_equipment.md | 8 +- Docs/Layers/police.md | 22 +- Docs/Layers/post_offices_with_atm.md | 37 +- Docs/Layers/postboxes.md | 9 +- Docs/Layers/postoffices.md | 37 +- Docs/Layers/pt_shelter.md | 4 + Docs/Layers/public_bookcase.md | 29 +- Docs/Layers/railway_platforms.md | 9 +- Docs/Layers/rainbow_crossing_high_zoom.md | 4 + Docs/Layers/rainbow_crossings.md | 4 + Docs/Layers/reception_desk.md | 11 +- Docs/Layers/recycling.md | 32 +- Docs/Layers/route_marker.md | 5 + Docs/Layers/school.md | 40 +- Docs/Layers/scouting_group.md | 24 +- Docs/Layers/shelter.md | 7 +- Docs/Layers/shop_dog_friendly.md | 140 ++++-- Docs/Layers/shops.md | 140 ++++-- Docs/Layers/shops_glutenfree.md | 140 ++++-- Docs/Layers/shops_lactosefree.md | 140 ++++-- Docs/Layers/shops_second_hand.md | 140 ++++-- .../Layers/shops_with_climbing_shoe_repair.md | 140 ++++-- Docs/Layers/shower.md | 15 +- Docs/Layers/ski_piste.md | 5 + Docs/Layers/slow_roads.md | 6 +- Docs/Layers/souvenir_coin.md | 24 +- Docs/Layers/souvenir_note.md | 24 +- Docs/Layers/speed_camera.md | 11 +- Docs/Layers/speed_display.md | 9 +- Docs/Layers/sport_pitch.md | 20 +- Docs/Layers/sport_places_without_etymology.md | 15 +- Docs/Layers/sport_shops.md | 140 ++++-- Docs/Layers/sports_centre.md | 19 +- Docs/Layers/stairs.md | 11 +- Docs/Layers/street_lamps.md | 17 +- Docs/Layers/streets_without_etymology.md | 15 +- Docs/Layers/stripclub.md | 20 +- Docs/Layers/surveillance_camera.md | 20 +- Docs/Layers/tactile_map.md | 13 +- Docs/Layers/tactile_model.md | 16 +- Docs/Layers/tertiary_education.md | 15 +- Docs/Layers/ticket_machine.md | 12 +- Docs/Layers/ticket_validator.md | 13 +- Docs/Layers/toekomstige_fietsstraat.md | 7 +- Docs/Layers/toilet.md | 61 ++- Docs/Layers/toilet_at_amenity.md | 48 ++- Docs/Layers/tool_library.md | 23 +- Docs/Layers/tourism_accomodation.md | 26 +- .../toursistic_places_without_etymology.md | 15 +- Docs/Layers/trail.md | 13 +- Docs/Layers/transit_routes.md | 23 +- Docs/Layers/transit_stops.md | 7 +- Docs/Layers/tree_node.md | 25 +- Docs/Layers/trolley_bay.md | 4 + Docs/Layers/utility_pole.md | 3 + Docs/Layers/vending_machine.md | 36 +- Docs/Layers/vending_machine_bicycle.md | 36 +- Docs/Layers/veterinary.md | 16 +- Docs/Layers/viewpoint.md | 7 +- Docs/Layers/village_green.md | 6 + Docs/Layers/visitor_information_centre.md | 3 + Docs/Layers/walls_and_buildings.md | 1 + Docs/Layers/waste_basket.md | 5 + Docs/Layers/waste_basket_dogs.md | 5 + Docs/Layers/waste_disposal.md | 8 +- Docs/Layers/wayside_shrine.md | 33 +- Docs/Layers/windturbine.md | 21 +- Docs/SpecialRenderings.md | 8 +- Docs/TagInfo/mapcomplete_blind_osm.json | 28 +- .../TagInfo/mapcomplete_circular_economy.json | 59 ++- Docs/TagInfo/mapcomplete_climbing.json | 59 ++- Docs/TagInfo/mapcomplete_cyclofix.json | 59 ++- .../mapcomplete_disaster_response.json | 2 +- Docs/TagInfo/mapcomplete_food.json | 8 +- Docs/TagInfo/mapcomplete_fritures.json | 8 +- Docs/TagInfo/mapcomplete_glutenfree.json | 37 +- Docs/TagInfo/mapcomplete_healthcare.json | 61 ++- Docs/TagInfo/mapcomplete_indoors.json | 28 +- Docs/TagInfo/mapcomplete_lactosefree.json | 37 +- Docs/TagInfo/mapcomplete_onwheels.json | 39 +- Docs/TagInfo/mapcomplete_pets.json | 37 +- Docs/TagInfo/mapcomplete_postboxes.json | 59 ++- Docs/TagInfo/mapcomplete_shops.json | 59 ++- Docs/TagInfo/mapcomplete_ski.json | 8 +- Docs/TagInfo/mapcomplete_sports.json | 59 ++- Docs/Themes/architecture.md | 20 +- Docs/Themes/atm.md | 42 +- Docs/Themes/bag.md | 21 +- Docs/Themes/buurtnatuur.md | 63 ++- Docs/Themes/circular_economy.md | 140 ++++-- Docs/Themes/climbing.md | 140 ++++-- Docs/Themes/cycle_highways.md | 32 +- Docs/Themes/cyclenodes.md | 32 +- Docs/Themes/cyclestreets.md | 14 +- Docs/Themes/cyclofix.md | 405 ++++++++++++------ Docs/Themes/etymology.md | 120 +++++- Docs/Themes/facadegardens.md | 14 +- Docs/Themes/fritures.md | 89 +++- Docs/Themes/ghostsigns.md | 85 ++-- Docs/Themes/glutenfree.md | 249 ++++++++--- Docs/Themes/grb.md | 38 +- Docs/Themes/healthcare.md | 140 ++++-- Docs/Themes/kerbs_and_crossings.md | 7 +- Docs/Themes/lactosefree.md | 249 ++++++++--- Docs/Themes/mapcomplete-changes.md | 18 +- Docs/Themes/onwheels.md | 8 + Docs/Themes/openlovemap.md | 193 +++++++-- Docs/Themes/pets.md | 374 ++++++++++++---- Docs/Themes/postal_codes.md | 7 + Docs/Themes/rainbow_crossings.md | 4 + Docs/Themes/scouting.md | 80 +++- Docs/Themes/speelplekken.md | 21 +- Docs/Themes/sports.md | 140 ++++-- Docs/Themes/stations.md | 8 +- Docs/Themes/street_lighting.md | 4 + Docs/Themes/street_lighting_assen.md | 3 + Docs/Themes/toerisme_vlaanderen.md | 342 ++++++++++----- Docs/Themes/transit.md | 4 + Docs/Themes/uk_addresses.md | 34 +- Docs/Themes/velopark.md | 69 ++- Docs/Themes/vending_machine.md | 36 +- Docs/Themes/walkingnodes.md | 32 +- Docs/Themes/waste_assen.md | 6 + Docs/Themes/width.md | 11 +- Docs/Themes/winter_service.md | 2 + Docs/URL_Parameters.md | 2 +- Docs/builtin_units.md | 48 +++ 267 files changed, 7757 insertions(+), 2435 deletions(-) diff --git a/Docs/BuiltinIndex.md b/Docs/BuiltinIndex.md index 735fe1f698..df9f45b2f5 100644 --- a/Docs/BuiltinIndex.md +++ b/Docs/BuiltinIndex.md @@ -685,6 +685,11 @@ - souvenir_coin - souvenir_note + ### reservation + + - food + - shops + ### sugar_free - food diff --git a/Docs/BuiltinQuestions.md b/Docs/BuiltinQuestions.md index 31143a8f92..785d5b18e7 100644 --- a/Docs/BuiltinQuestions.md +++ b/Docs/BuiltinQuestions.md @@ -77,6 +77,7 @@ This is a special layer - data is not sourced from OpenStreetMap - [maxstay](#maxstay) - [name](#name) - [has_toilets](#has_toilets) + - [reservation](#reservation) ## Supported attributes @@ -120,6 +121,7 @@ This is a special layer - data is not sourced from OpenStreetMap | [maxstay](https://wiki.openstreetmap.org/wiki/Key:maxstay) | [pfloat](../SpecialInputElements.md#pfloat) | [unlimited](https://wiki.openstreetmap.org/wiki/Tag:maxstay%3Dunlimited) | | [name](https://wiki.openstreetmap.org/wiki/Key:name) | [string](../SpecialInputElements.md#string) | | | [toilets](https://wiki.openstreetmap.org/wiki/Key:toilets) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dno) [separate](https://wiki.openstreetmap.org/wiki/Tag:toilets%3Dseparate) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | ## Featureview elements and TagRenderings @@ -179,41 +181,49 @@ This is a special layer - data is not sourced from OpenStreetMap | [maxstay](#maxstay)
_(Original in [questions](./BuiltinQuestions.md#maxstay))_ | What is the maximum amount of time one is allowed to stay here?
_One can stay at most {canonical(maxstay)}_
1 options | | *[maxstay](https://wiki.osm.org/wiki/Key:maxstay)* ([pfloat](../SpecialInputElements.md#pfloat)) | | [name](#name)
_(Original in [questions](./BuiltinQuestions.md#name))_ | What is the name of this place?
_{name}_ | | *[name](https://wiki.osm.org/wiki/Key:name)* ([string](../SpecialInputElements.md#string)) | | [has_toilets](#has_toilets)
_(Original in [questions](./BuiltinQuestions.md#has_toilets))_ | Has toilets?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### images_no_blur Same as `images`, but uploaded request to disable blurring to the panoramax server _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload(,,,true)}* ### mapillary Shows a button to open Mapillary on this location _This tagrendering has no question and is thus read-only_ + *{mapillary_link()}* ### export_as_gpx Shows a button to export this feature as GPX. Especially useful for route relations _This tagrendering has no question and is thus read-only_ + *{export_as_gpx()}* ### export_as_geojson Shows a button to export this feature as geojson. Especially useful for debugging or using this in other programs _This tagrendering has no question and is thus read-only_ + *{export_as_geojson()}* ### wikipedia Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor The question is `What is the corresponding Wikidata entity?` -*{wikipedia():max-height:25rem}* is shown if `wikidata` is set + +*{wikipedia():max-height:25rem}* is shown if `wikidata` is set. - *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ @@ -221,12 +231,14 @@ The question is `What is the corresponding Wikidata entity?` ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -236,16 +248,19 @@ This tagrendering has labels ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### facebook Shows and asks for the facebook handle The question is `What is the facebook page of of {title()}?` -*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set + +*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set. ### osmlink _This tagrendering has no question and is thus read-only_ + ** - *Uploading...* is shown if with id~^(=-)$ @@ -253,7 +268,8 @@ _This tagrendering has no question and is thus read-only_ ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -264,7 +280,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -293,19 +310,22 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -313,7 +333,8 @@ The question is `What are the opening hours of {title()}?` ### opening_hours_24_7_default The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -321,7 +342,8 @@ The question is `What are the opening hours of {title()}?` ### opening_hours_by_appointment The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Only by appointment* is shown if with opening_hours="by appointment" - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ @@ -411,12 +433,14 @@ This tagrendering is only visible in the popup if the following condition is met ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### multilevels The question is `What levels does this elevator go to?` -*This elevator goes to floors {level}* is shown if `level` is set + +*This elevator goes to floors {level}* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -427,6 +451,7 @@ The question is `What levels does this elevator go to?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -436,7 +461,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -491,7 +517,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -511,14 +538,16 @@ The question is `Is this object lit or does it emit light?` ### survey_date The question is `When was this object last surveyed?` -*This object was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This object was last surveyed on {survey:date}* is shown if `survey:date` is set. - *This object was last surveyed today* is shown if with survey:date= ### check_date The question is `When was this object last checked?` -*This object was last checked on {check_date}* is shown if `check_date` is set + +*This object was last checked on {check_date}* is shown if `check_date` is set. - *This object was last checked today* is shown if with check_date= @@ -573,6 +602,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -581,6 +611,7 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### seasonal @@ -603,12 +634,14 @@ The question is `Does this facility offer showers?` ### preset_description _This tagrendering has no question and is thus read-only_ + *{preset_description()}* ### brand The question is `Is {title()} part of a bigger brand?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *Not part of a bigger brand* is shown if with nobrand=yes @@ -629,14 +662,16 @@ The question is `What kind of seating does {title()} have?` ### maxstay The question is `What is the maximum amount of time one is allowed to stay here?` -*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set + +*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set. - *There is no limit to the amount of time one can stay here* is shown if with maxstay=unlimited ### name The question is `What is the name of this place?` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### has_toilets @@ -646,6 +681,15 @@ The question is `Has {title()} toilets?` - *Has no toilets* is shown if with toilets=no - *The toilets are marked separately on the map* is shown if with toilets=separate +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + This document is autogenerated from [assets/layers/questions/questions.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/questions/questions.json) diff --git a/Docs/Layers/address.md b/Docs/Layers/address.md index 52953cd9a6..40904d4f6e 100644 --- a/Docs/Layers/address.md +++ b/Docs/Layers/address.md @@ -65,6 +65,7 @@ Elements must match **any** of the following expressions: ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -73,6 +74,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -84,7 +86,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -95,7 +98,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -104,7 +108,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -115,13 +120,15 @@ This tagrendering has labels ### fixme The question is `What should be fixed here? Please explain` -*Fixme description{fixme}* is shown if `fixme` is set + +*Fixme description{fixme}* is shown if `fixme` is set. - *No fixme - write something here to explain complicated cases* is shown if with fixme= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -131,11 +138,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/adult_changing_table.md b/Docs/Layers/adult_changing_table.md index 50586389b0..3800bc45aa 100644 --- a/Docs/Layers/adult_changing_table.md +++ b/Docs/Layers/adult_changing_table.md @@ -70,7 +70,10 @@ Elements must match **any** of the following expressions: ### height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(height)} high* is shown if `height` is set + +*The changing table is {canonical(height)} high* is shown if `height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with height=adjustable @@ -80,7 +83,10 @@ This tagrendering has labels ### adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(min_height)}* is shown if `min_height` is set + +*The lowest height of the adult changing table is {canonical(min_height)}* is shown if `min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: height=adjustable This tagrendering has labels @@ -89,7 +95,10 @@ This tagrendering has labels ### adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(max_height)}* is shown if `max_height` is set + +*The highest height of the adult changing table is {canonical(max_height)}* is shown if `max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: height=adjustable This tagrendering has labels @@ -123,6 +132,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -132,16 +142,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/advertising.md b/Docs/Layers/advertising.md index b1fd4950bb..dc0a7da1aa 100644 --- a/Docs/Layers/advertising.md +++ b/Docs/Layers/advertising.md @@ -104,12 +104,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### type The question is `Which type of advertising feature is this?` -*This is a {advertising}* is shown if `advertising` is set + +*This is a {advertising}* is shown if `advertising` is set. - *This is a billboard* is shown if with advertising=billboard - *This is a board* is shown if with advertising=board @@ -148,7 +150,8 @@ The question is `Is this object lit or does it emit light?` ### operator The question is `Who operates this feature?` -*Operated by {operator}* is shown if `operator` is set + +*Operated by {operator}* is shown if `operator` is set. ### message_type @@ -177,7 +180,8 @@ This tagrendering is only visible in the popup if the following condition is met ### ref The question is `Wich is the reference number?` -*Reference number is {ref}* is shown if `ref` is set + +*Reference number is {ref}* is shown if `ref` is set. ### historic @@ -189,6 +193,7 @@ The question is `Is this sign for a business that no longer exists or no longer ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -198,16 +203,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/advertising_wall_paintings.md b/Docs/Layers/advertising_wall_paintings.md index 175aeb89a6..58438673d6 100644 --- a/Docs/Layers/advertising_wall_paintings.md +++ b/Docs/Layers/advertising_wall_paintings.md @@ -75,12 +75,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### type The question is `Which type of advertising feature is this?` -*This is a {advertising}* is shown if `advertising` is set + +*This is a {advertising}* is shown if `advertising` is set. - *This is a billboard* is shown if with advertising=billboard - *This is a board* is shown if with advertising=board @@ -119,7 +121,8 @@ The question is `Is this object lit or does it emit light?` ### operator The question is `Who operates this feature?` -*Operated by {operator}* is shown if `operator` is set + +*Operated by {operator}* is shown if `operator` is set. ### message_type @@ -148,7 +151,8 @@ This tagrendering is only visible in the popup if the following condition is met ### ref The question is `Wich is the reference number?` -*Reference number is {ref}* is shown if `ref` is set + +*Reference number is {ref}* is shown if `ref` is set. ### historic @@ -160,6 +164,7 @@ The question is `Is this sign for a business that no longer exists or no longer ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -169,16 +174,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/aerialway.md b/Docs/Layers/aerialway.md index 03453c5688..bb62fb9986 100644 --- a/Docs/Layers/aerialway.md +++ b/Docs/Layers/aerialway.md @@ -69,6 +69,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### type @@ -90,17 +91,20 @@ The question is `What type of aerialway is this?` ### duration The question is `How long takes a single journey with this elevator?` -*A single journey takes {duration} minutes* is shown if `duration` is set + +*A single journey takes {duration} minutes* is shown if `duration` is set. ### occupancy The question is `How many people fit a single carriage?` -*{aerialway:occupancy} people fit a single carriage* is shown if `aerialway:occupancy` is set + +*{aerialway:occupancy} people fit a single carriage* is shown if `aerialway:occupancy` is set. ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -114,11 +118,13 @@ The question is `In what direction can this aerialway be taken?` ### length _This tagrendering has no question and is thus read-only_ + *This aerialway is {_length:km} kilometer long* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -128,6 +134,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/all_streets.md b/Docs/Layers/all_streets.md index 98e115443e..e389013553 100644 --- a/Docs/Layers/all_streets.md +++ b/Docs/Layers/all_streets.md @@ -48,11 +48,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -62,11 +64,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/all_vending_machine.md b/Docs/Layers/all_vending_machine.md index fd4b4d6de0..ab062f1679 100644 --- a/Docs/Layers/all_vending_machine.md +++ b/Docs/Layers/all_vending_machine.md @@ -103,11 +103,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -117,7 +119,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -131,7 +134,8 @@ This tagrendering has labels ### vending The question is `What does this vending machine sell?` -*This vending machine sells {vending}* is shown if `vending` is set + +*This vending machine sells {vending}* is shown if `vending` is set. - *Drinks are sold* is shown if with vending=drinks - *Sweets are sold* is shown if with vending=sweets @@ -166,7 +170,8 @@ The question is `What does this vending machine sell?` ### bicycle_tube_vending_machine-brand The question is `Which brand of tubes are sold here?` -*{brand} tubes are sold here* is shown if `brand` is set + +*{brand} tubes are sold here* is shown if `brand` is set. - *Continental tubes are sold here* is shown if with brand=Continental - *Schwalbe tubes are sold here* is shown if with brand=Schwalbe @@ -176,7 +181,8 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -238,7 +244,8 @@ This tagrendering is only visible in the popup if the following condition is met ### operator The question is `Who operates this vending machine?` -*This vending machine is operated by {operator}* is shown if `operator` is set + +*This vending machine is operated by {operator}* is shown if `operator` is set. ### indoor @@ -251,7 +258,8 @@ The question is `Is this vending machine indoors?` ### phone The question is `What is the phone number of the operator of this vending machine?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -261,7 +269,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -271,21 +280,24 @@ This tagrendering has labels ### charge_bicycle_tube The question is `How much does a a bicycle tube cost?` -*a bicycle tube costs {charge}* is shown if `charge` is set + +*a bicycle tube costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$ ### charge_bicycle_light The question is `How much does a bicycle light cost?` -*bicycle light costs {charge}* is shown if `charge` is set + +*bicycle light costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$ ### charge_condom The question is `How much does a a condom cost?` -*a condom costs {charge}* is shown if `charge` is set + +*a condom costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$ @@ -301,6 +313,7 @@ The question is `Is this vending machine still operational?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -310,16 +323,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/ambulancestation.md b/Docs/Layers/ambulancestation.md index 807b56505c..5dc2a3b67e 100644 --- a/Docs/Layers/ambulancestation.md +++ b/Docs/Layers/ambulancestation.md @@ -70,27 +70,32 @@ Elements must match the expression **operator:type=government - *The station is operated by a community-based, or informal organization.* is shown if with operator:type=community @@ -100,11 +105,13 @@ The question is `How is the station operator classified?` ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -114,11 +121,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/animal_shelter.md b/Docs/Layers/animal_shelter.md index b9fcb60c5b..980f0d5b61 100644 --- a/Docs/Layers/animal_shelter.md +++ b/Docs/Layers/animal_shelter.md @@ -82,22 +82,26 @@ Elements must match the expression **{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -107,7 +111,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -117,7 +122,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -136,7 +142,8 @@ The question is `What is the purpose of the animal shelter?` ### opening_hours_by_appointment The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Only by appointment* is shown if with opening_hours="by appointment" - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ @@ -145,7 +152,8 @@ The question is `What are the opening hours of {title()}?` ### boarded_animals The question is `Which animals are accepted here?` -*{animal_shelter} is kept here* is shown if `animal_shelter` is set + +*{animal_shelter} is kept here* is shown if `animal_shelter` is set. - *Dogs are kept here* is shown if with animal_shelter=dog - *Cats are kept here* is shown if with animal_shelter=cat @@ -156,6 +164,7 @@ The question is `Which animals are accepted here?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -165,16 +174,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/artwork.md b/Docs/Layers/artwork.md index 4a03b1e9a4..9b77c1e0bf 100644 --- a/Docs/Layers/artwork.md +++ b/Docs/Layers/artwork.md @@ -149,12 +149,14 @@ Elements must match the expression **artwork_type=architecture - *Mural* is shown if with artwork_type=mural @@ -177,7 +179,8 @@ This tagrendering has labels ### artwork-artist-wikidata The question is `Who made this artwork?` -*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set + +*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set. This tagrendering has labels `artwork-question` @@ -185,7 +188,8 @@ This tagrendering has labels ### artwork-artist_name The question is `Which artist created this?` -*Created by {artist_name}* is shown if `artist_name` is set + +*Created by {artist_name}* is shown if `artist_name` is set. This tagrendering has labels `artwork-question` @@ -193,7 +197,8 @@ This tagrendering has labels ### artwork-website The question is `Is there a website with more information about this artwork?` -*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set + +*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set. This tagrendering has labels `artwork-question` @@ -201,7 +206,8 @@ This tagrendering has labels ### wikipedia Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor The question is `What is the corresponding Wikidata entity?` -*{wikipedia():max-height:25rem}* is shown if `wikidata` is set + +*{wikipedia():max-height:25rem}* is shown if `wikidata` is set. - *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ @@ -209,7 +215,8 @@ The question is `What is the corresponding Wikidata entity?` ### artwork_subject The question is `What does this artwork depict?` -*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering has labels `artwork-question` @@ -224,7 +231,8 @@ The question is `Does this artwork serve as a memorial?` ### memorial-type The question is `What type of memorial is this?` -*This is a {memorial}* is shown if `memorial` is set + +*This is a {memorial}* is shown if `memorial` is set. - *This is a statue* is shown if with memorial=statue - *This is a plaque* is shown if with memorial=plaque @@ -249,7 +257,8 @@ This tagrendering has labels ### inscription The question is `What is the inscription on this memorial?` -*The inscription on this memorial reads:

{inscription}

* is shown if `inscription` is set + +*The inscription on this memorial reads:

{inscription}

* is shown if `inscription` is set. - *This memorial does not have an inscription* is shown if with not:inscription=yes @@ -260,7 +269,8 @@ This tagrendering has labels ### memorial-wikidata The question is `What is the Wikipedia page about this memorial?` -*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set + +*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: historic=memorial This tagrendering has labels @@ -270,7 +280,8 @@ This tagrendering has labels ### subject-wikidata The question is `What is the Wikipedia page about the person or event that is remembered here?` -*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: historic=memorial This tagrendering has labels @@ -311,7 +322,8 @@ This tagrendering has labels ### bench-seats The question is `How many seats does this bench have?` -*This bench has {seats} seats* is shown if `seats` is set + +*This bench has {seats} seats* is shown if `seats` is set. - *This bench does not have separated seats* is shown if with seats:separated=no @@ -322,7 +334,8 @@ This tagrendering has labels ### bench-material The question is `What is the bench (seating) made from?` -*Material: {material}* is shown if `material` is set + +*Material: {material}* is shown if `material` is set. - *The seating is made from wood* is shown if with material=wood - *The seating is made from metal* is shown if with material=metal @@ -338,7 +351,8 @@ This tagrendering has labels ### bench-direction The question is `In which direction are you looking when sitting on the bench?` -*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set + +*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=bench & two_sided!=yes This tagrendering has labels @@ -347,7 +361,8 @@ This tagrendering has labels ### bench-colour The question is `Which colour does this bench have?` -*Colour: {colour}* is shown if `colour` is set + +*Colour: {colour}* is shown if `colour` is set. - *Colour: brown* is shown if with colour=brown - *Colour: green* is shown if with colour=green @@ -365,7 +380,8 @@ This tagrendering has labels ### bench-survey:date The question is `When was this bench last surveyed?` -*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set. - *Surveyed today!* is shown if with survey:date= @@ -376,7 +392,8 @@ This tagrendering has labels ### bench-inscription The question is `Does this bench have an inscription?` -*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set + +*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set. - *This bench does not have an inscription* is shown if with not:inscription=yes - *This bench probably does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_ @@ -406,7 +423,8 @@ The question is `Does this artwork also double as wayside shrine?` ### shrine_name The question is `What's the name of this {title()}?` -*The name of this {title()} is {name}* is shown if `name` is set + +*The name of this {title()} is {name}* is shown if `name` is set. - *This shrine does not have a name* is shown if with noname=yes @@ -417,7 +435,8 @@ This tagrendering has labels ### religion The question is `To which religion is this shrine dedicated?` -*This shrine is {religion}* is shown if `religion` is set + +*This shrine is {religion}* is shown if `religion` is set. - *This is a Christian shrine* is shown if with religion=christian - *This is a Buddhist shrine* is shown if with religion=buddhist @@ -438,7 +457,8 @@ This tagrendering has labels ### denomination_christian The question is `What's the Christian denomination of this {title()}?` -*The religious denomination is {denomination}* is shown if `denomination` is set + +*The religious denomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Catholic* is shown if with denomination=catholic - *The religious subdenomination is Roman Catholic* is shown if with denomination=roman_catholic @@ -458,7 +478,8 @@ This tagrendering has labels ### denomination_muslim The question is `What's the Muslim denomination of this shrine?` -*The religious subdenomination is {denomination}* is shown if `denomination` is set + +*The religious subdenomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Shia* is shown if with denomination=shia - *The religious subdenomination is Sunni* is shown if with denomination=sunni @@ -471,7 +492,8 @@ This tagrendering has labels ### denomination_jewish The question is `What's the Jewish denomination of this shrine?` -*The religious subdenomination is {denomination}* is shown if `denomination` is set + +*The religious subdenomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Conservative* is shown if with denomination=conservative - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox @@ -485,7 +507,8 @@ This tagrendering has labels ### denomination_other The question is `What's the denomination of this shrine?` -*The denomination of this shrine is {denomination}* is shown if `denomination` is set + +*The denomination of this shrine is {denomination}* is shown if `denomination` is set. This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion!=christian & religion!=muslim & religion!=jewish & religion~.+ This tagrendering has labels @@ -494,6 +517,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -503,16 +527,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/artwork_on_wall.md b/Docs/Layers/artwork_on_wall.md index 7b097869c2..de0100d48e 100644 --- a/Docs/Layers/artwork_on_wall.md +++ b/Docs/Layers/artwork_on_wall.md @@ -152,12 +152,14 @@ The question is `Is this artwork a historic advertisement?` ### images_no_blur Same as `images`, but uploaded request to disable blurring to the panoramax server _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload(,,,true)}* ### artwork-artwork_type The question is `What is the type of this artwork?` -*This is a {artwork_type}* is shown if `artwork_type` is set + +*This is a {artwork_type}* is shown if `artwork_type` is set. - *Architecture* is shown if with artwork_type=architecture - *Mural* is shown if with artwork_type=mural @@ -180,7 +182,8 @@ This tagrendering has labels ### artwork-artist-wikidata The question is `Who made this artwork?` -*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set + +*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set. This tagrendering has labels `artwork-question` @@ -188,7 +191,8 @@ This tagrendering has labels ### artwork-artist_name The question is `Which artist created this?` -*Created by {artist_name}* is shown if `artist_name` is set + +*Created by {artist_name}* is shown if `artist_name` is set. This tagrendering has labels `artwork-question` @@ -196,7 +200,8 @@ This tagrendering has labels ### artwork-website The question is `Is there a website with more information about this artwork?` -*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set + +*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set. This tagrendering has labels `artwork-question` @@ -204,7 +209,8 @@ This tagrendering has labels ### wikipedia Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor The question is `What is the corresponding Wikidata entity?` -*{wikipedia():max-height:25rem}* is shown if `wikidata` is set + +*{wikipedia():max-height:25rem}* is shown if `wikidata` is set. - *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ @@ -212,7 +218,8 @@ The question is `What is the corresponding Wikidata entity?` ### artwork_subject The question is `What does this artwork depict?` -*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering has labels `artwork-question` @@ -227,7 +234,8 @@ The question is `Does this artwork serve as a memorial?` ### memorial-type The question is `What type of memorial is this?` -*This is a {memorial}* is shown if `memorial` is set + +*This is a {memorial}* is shown if `memorial` is set. - *This is a statue* is shown if with memorial=statue - *This is a plaque* is shown if with memorial=plaque @@ -252,7 +260,8 @@ This tagrendering has labels ### inscription The question is `What is the inscription on this memorial?` -*The inscription on this memorial reads:

{inscription}

* is shown if `inscription` is set + +*The inscription on this memorial reads:

{inscription}

* is shown if `inscription` is set. - *This memorial does not have an inscription* is shown if with not:inscription=yes @@ -263,7 +272,8 @@ This tagrendering has labels ### memorial-wikidata The question is `What is the Wikipedia page about this memorial?` -*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set + +*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: historic=memorial This tagrendering has labels @@ -273,7 +283,8 @@ This tagrendering has labels ### subject-wikidata The question is `What is the Wikipedia page about the person or event that is remembered here?` -*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: historic=memorial This tagrendering has labels @@ -314,7 +325,8 @@ This tagrendering has labels ### bench-seats The question is `How many seats does this bench have?` -*This bench has {seats} seats* is shown if `seats` is set + +*This bench has {seats} seats* is shown if `seats` is set. - *This bench does not have separated seats* is shown if with seats:separated=no @@ -325,7 +337,8 @@ This tagrendering has labels ### bench-material The question is `What is the bench (seating) made from?` -*Material: {material}* is shown if `material` is set + +*Material: {material}* is shown if `material` is set. - *The seating is made from wood* is shown if with material=wood - *The seating is made from metal* is shown if with material=metal @@ -341,7 +354,8 @@ This tagrendering has labels ### bench-direction The question is `In which direction are you looking when sitting on the bench?` -*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set + +*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=bench & two_sided!=yes This tagrendering has labels @@ -350,7 +364,8 @@ This tagrendering has labels ### bench-colour The question is `Which colour does this bench have?` -*Colour: {colour}* is shown if `colour` is set + +*Colour: {colour}* is shown if `colour` is set. - *Colour: brown* is shown if with colour=brown - *Colour: green* is shown if with colour=green @@ -368,7 +383,8 @@ This tagrendering has labels ### bench-survey:date The question is `When was this bench last surveyed?` -*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set. - *Surveyed today!* is shown if with survey:date= @@ -379,7 +395,8 @@ This tagrendering has labels ### bench-inscription The question is `Does this bench have an inscription?` -*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set + +*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set. - *This bench does not have an inscription* is shown if with not:inscription=yes - *This bench probably does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_ @@ -409,7 +426,8 @@ The question is `Does this artwork also double as wayside shrine?` ### shrine_name The question is `What's the name of this {title()}?` -*The name of this {title()} is {name}* is shown if `name` is set + +*The name of this {title()} is {name}* is shown if `name` is set. - *This shrine does not have a name* is shown if with noname=yes @@ -420,7 +438,8 @@ This tagrendering has labels ### religion The question is `To which religion is this shrine dedicated?` -*This shrine is {religion}* is shown if `religion` is set + +*This shrine is {religion}* is shown if `religion` is set. - *This is a Christian shrine* is shown if with religion=christian - *This is a Buddhist shrine* is shown if with religion=buddhist @@ -441,7 +460,8 @@ This tagrendering has labels ### denomination_christian The question is `What's the Christian denomination of this {title()}?` -*The religious denomination is {denomination}* is shown if `denomination` is set + +*The religious denomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Catholic* is shown if with denomination=catholic - *The religious subdenomination is Roman Catholic* is shown if with denomination=roman_catholic @@ -461,7 +481,8 @@ This tagrendering has labels ### denomination_muslim The question is `What's the Muslim denomination of this shrine?` -*The religious subdenomination is {denomination}* is shown if `denomination` is set + +*The religious subdenomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Shia* is shown if with denomination=shia - *The religious subdenomination is Sunni* is shown if with denomination=sunni @@ -474,7 +495,8 @@ This tagrendering has labels ### denomination_jewish The question is `What's the Jewish denomination of this shrine?` -*The religious subdenomination is {denomination}* is shown if `denomination` is set + +*The religious subdenomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Conservative* is shown if with denomination=conservative - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox @@ -488,7 +510,8 @@ This tagrendering has labels ### denomination_other The question is `What's the denomination of this shrine?` -*The denomination of this shrine is {denomination}* is shown if `denomination` is set + +*The denomination of this shrine is {denomination}* is shown if `denomination` is set. This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion!=christian & religion!=muslim & religion!=jewish & religion~.+ This tagrendering has labels @@ -497,6 +520,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -506,16 +530,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/assembly_point.md b/Docs/Layers/assembly_point.md index dbf9790723..110e1c4d38 100644 --- a/Docs/Layers/assembly_point.md +++ b/Docs/Layers/assembly_point.md @@ -62,17 +62,20 @@ Elements must match the expression **{name}* is shown if `name` is set + +*This workshop is called {name}* is shown if `name` is set. ### opening_hours_by_appointment The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Only by appointment* is shown if with
opening_hours="by appointment" - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ @@ -108,7 +112,8 @@ The question is `What are the opening hours of {title()}?` ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -118,7 +123,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -129,7 +135,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -139,12 +146,14 @@ This tagrendering has labels ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### facebook Shows and asks for the facebook handle The question is `What is the facebook page of of {title()}?` -*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set + +*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set. ### item:repair @@ -160,6 +169,7 @@ The question is `What type of items are repaired here?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -169,16 +179,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/atm.md b/Docs/Layers/atm.md index 88913072eb..2ba3d1bd78 100644 --- a/Docs/Layers/atm.md +++ b/Docs/Layers/atm.md @@ -88,11 +88,13 @@ Elements must match the expression ** *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -160,6 +165,7 @@ The question is `Does this ATM have speech output for visually impaired users?` ### speech_output_language _This tagrendering has no question and is thus read-only_ + *{language_chooser(speech_output,In which languages does this ATM have speech output?,This ATM has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This ATM has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}* This tagrendering is only visible in the popup if the following condition is met: speech_output=yes @@ -167,6 +173,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -176,16 +183,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bank.md b/Docs/Layers/bank.md index 6b3d8493c5..9a9888c650 100644 --- a/Docs/Layers/bank.md +++ b/Docs/Layers/bank.md @@ -53,6 +53,7 @@ Elements must match the expression **cycle_barrier=double | cycle_barrier=triple ### Width of opening (cyclebarrier) The question is `How wide is the smallest opening next to the barriers?` -*Width of opening: {width:opening} m* is shown if `width:opening` is set + +*Width of opening: {width:opening} m* is shown if `width:opening` is set. This tagrendering is only visible in the popup if the following condition is met: cycle_barrier=double | cycle_barrier=triple ### Overlap (cyclebarrier) The question is `How much overlap do the barriers have?` -*Overlap: {overlap} m* is shown if `overlap` is set + +*Overlap: {overlap} m* is shown if `overlap` is set. This tagrendering is only visible in the popup if the following condition is met: cycle_barrier=double | cycle_barrier=triple ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -167,16 +173,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bbq.md b/Docs/Layers/bbq.md index e4c0412be3..641476c641 100644 --- a/Docs/Layers/bbq.md +++ b/Docs/Layers/bbq.md @@ -67,6 +67,7 @@ Elements must match the expression **capacity=1 ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -80,16 +83,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bench.md b/Docs/Layers/bench.md index e8966c6961..af9cdbfde6 100644 --- a/Docs/Layers/bench.md +++ b/Docs/Layers/bench.md @@ -117,6 +117,7 @@ Elements must match the expression **seats:separated=no @@ -153,7 +155,8 @@ This tagrendering has labels ### bench-material The question is `What is the bench (seating) made from?` -*Material: {material}* is shown if `material` is set + +*Material: {material}* is shown if `material` is set. - *The seating is made from wood* is shown if with material=wood - *The seating is made from metal* is shown if with material=metal @@ -168,7 +171,8 @@ This tagrendering has labels ### bench-direction The question is `In which direction are you looking when sitting on the bench?` -*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set + +*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set. This tagrendering has labels `bench-questions` @@ -176,7 +180,8 @@ This tagrendering has labels ### bench-colour The question is `Which colour does this bench have?` -*Colour: {colour}* is shown if `colour` is set + +*Colour: {colour}* is shown if `colour` is set. - *Colour: brown* is shown if with colour=brown - *Colour: green* is shown if with colour=green @@ -193,7 +198,8 @@ This tagrendering has labels ### bench-survey:date The question is `When was this bench last surveyed?` -*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set. - *Surveyed today!* is shown if with survey:date= @@ -203,7 +209,8 @@ This tagrendering has labels ### bench-inscription The question is `Does this bench have an inscription?` -*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set + +*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set. - *This bench does not have an inscription* is shown if with not:inscription=yes - *This bench probably does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_ @@ -233,7 +240,8 @@ This tagrendering has labels ### artwork-artwork_type The question is `What is the type of this artwork?` -*This is a {artwork_type}* is shown if `artwork_type` is set + +*This is a {artwork_type}* is shown if `artwork_type` is set. - *Architecture* is shown if with artwork_type=architecture - *Mural* is shown if with artwork_type=mural @@ -257,7 +265,8 @@ This tagrendering has labels ### artwork-artist-wikidata The question is `Who made this artwork?` -*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set + +*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: tourism=artwork This tagrendering has labels @@ -266,7 +275,8 @@ This tagrendering has labels ### artwork-artist_name The question is `Which artist created this?` -*Created by {artist_name}* is shown if `artist_name` is set + +*Created by {artist_name}* is shown if `artist_name` is set. This tagrendering is only visible in the popup if the following condition is met: tourism=artwork This tagrendering has labels @@ -275,7 +285,8 @@ This tagrendering has labels ### artwork-website The question is `Is there a website with more information about this artwork?` -*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set + +*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set. This tagrendering is only visible in the popup if the following condition is met: tourism=artwork This tagrendering has labels @@ -284,7 +295,8 @@ This tagrendering has labels ### artwork_subject The question is `What does this artwork depict?` -*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: tourism=artwork This tagrendering has labels @@ -293,7 +305,8 @@ This tagrendering has labels ### memorial-wikidata The question is `What is the Wikipedia page about this memorial?` -*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set + +*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: historic=memorial This tagrendering has labels @@ -303,7 +316,8 @@ This tagrendering has labels ### subject-wikidata The question is `What is the Wikipedia page about the person or event that is remembered here?` -*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: historic=memorial This tagrendering has labels @@ -313,6 +327,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -322,16 +337,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bench_at_pt.md b/Docs/Layers/bench_at_pt.md index e602851bd0..4c077ad713 100644 --- a/Docs/Layers/bench_at_pt.md +++ b/Docs/Layers/bench_at_pt.md @@ -56,12 +56,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### bench_at_pt-name _This tagrendering has no question and is thus read-only_ -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### bench_at_pt-bench_type @@ -74,6 +76,7 @@ The question is `What kind of bench is this?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -83,11 +86,13 @@ This tagrendering has labels ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bicycle_assisted_repair_workshop.md b/Docs/Layers/bicycle_assisted_repair_workshop.md index bd8a049497..00fa9acd17 100644 --- a/Docs/Layers/bicycle_assisted_repair_workshop.md +++ b/Docs/Layers/bicycle_assisted_repair_workshop.md @@ -81,22 +81,26 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### preset_description _This tagrendering has no question and is thus read-only_ + *{preset_description()}* ### name The question is `What is the name of this repair workshop?` -*This workshop is called {name}* is shown if `name` is set + +*This workshop is called {name}* is shown if `name` is set. ### opening_hours_by_appointment The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Only by appointment* is shown if with opening_hours="by appointment" - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ @@ -105,7 +109,8 @@ The question is `What are the opening hours of {title()}?` ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -115,7 +120,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -126,7 +132,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -136,12 +143,14 @@ This tagrendering has labels ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### facebook Shows and asks for the facebook handle The question is `What is the facebook page of of {title()}?` -*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set + +*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set. ### item:repair @@ -157,6 +166,7 @@ The question is `What type of items are repaired here?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -166,16 +176,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bicycle_counter.md b/Docs/Layers/bicycle_counter.md index 55faa22ea3..db2e7c5942 100644 --- a/Docs/Layers/bicycle_counter.md +++ b/Docs/Layers/bicycle_counter.md @@ -78,6 +78,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### display @@ -91,12 +92,14 @@ The question is `Does this bicycle counter have a display showing the number of ### name The question is `What is the name of the counted location?` -*Name of the counted location: {name}* is shown if `name` is set + +*Name of the counted location: {name}* is shown if `name` is set. ### start_date The question is `When did this counter start counting?` -*This counter started counting on {start_date}* is shown if `start_date` is set + +*This counter started counting on {start_date}* is shown if `start_date` is set. ### clock @@ -108,18 +111,21 @@ The question is `Does this bicycle counter have a clock?` ### ref The question is `What is the reference number of this counter?` -*Reference number of the counter: {ref}* is shown if `ref` is set + +*Reference number of the counter: {ref}* is shown if `ref` is set. - *This counter has no reference number* is shown if with noref=yes ### website The question is `Is there a website for this bicycle counter?` -*Website of the counter: {website}* is shown if `website` is set + +*Website of the counter: {website}* is shown if `website` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -129,16 +135,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bicycle_library.md b/Docs/Layers/bicycle_library.md index e143c79b58..65cd460e7e 100644 --- a/Docs/Layers/bicycle_library.md +++ b/Docs/Layers/bicycle_library.md @@ -85,17 +85,20 @@ Elements must match the expression **{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -105,7 +108,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -115,7 +119,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -126,14 +131,16 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### bicycle_library-charge The question is `How much does lending a bicycle cost?` -*Lending a bicycle costs {charge}* is shown if `charge` is set + +*Lending a bicycle costs {charge}* is shown if `charge` is set. - *Lending a bicycle is free* is shown if with fee=no & charge= - *Lending a bicycle costs €20/year and €20 warranty* is shown if with fee=yes & charge=€20warranty + €20/year @@ -149,11 +156,13 @@ The question is `Who can loan bicycles here?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -163,16 +172,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bicycle_rental.md b/Docs/Layers/bicycle_rental.md index 40b00bf8c1..0b633fcf16 100644 --- a/Docs/Layers/bicycle_rental.md +++ b/Docs/Layers/bicycle_rental.md @@ -111,6 +111,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### bicycle_rental_type @@ -129,7 +130,8 @@ This tagrendering is only visible in the popup if the following condition is met ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -139,7 +141,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -150,7 +153,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -160,7 +164,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -189,7 +194,8 @@ The question is `Which methods of payment are accepted here?` ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -207,7 +213,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$ This tagrendering has labels @@ -216,7 +223,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$ This tagrendering has labels @@ -225,7 +233,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -234,7 +243,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$ This tagrendering has labels @@ -243,7 +253,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*mtb.*)$ This tagrendering has labels @@ -252,7 +263,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -261,7 +273,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -270,6 +283,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -279,16 +293,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bicycle_rental_non_docking.md b/Docs/Layers/bicycle_rental_non_docking.md index d2c560a8ff..3d30346fcc 100644 --- a/Docs/Layers/bicycle_rental_non_docking.md +++ b/Docs/Layers/bicycle_rental_non_docking.md @@ -99,6 +99,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### bicycle_rental_type @@ -117,7 +118,8 @@ This tagrendering is only visible in the popup if the following condition is met ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -127,7 +129,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -138,7 +141,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -148,7 +152,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -177,7 +182,8 @@ The question is `Which methods of payment are accepted here?` ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -195,7 +201,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$ This tagrendering has labels @@ -204,7 +211,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$ This tagrendering has labels @@ -213,7 +221,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -222,7 +231,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$ This tagrendering has labels @@ -231,7 +241,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*mtb.*)$ This tagrendering has labels @@ -240,7 +251,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -249,7 +261,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -258,6 +271,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -267,16 +281,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bike_cafe.md b/Docs/Layers/bike_cafe.md index c4f11ad3dd..758d8ffba8 100644 --- a/Docs/Layers/bike_cafe.md +++ b/Docs/Layers/bike_cafe.md @@ -86,12 +86,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### bike_cafe-name The question is `What is the name of this bike cafe?` -*This bike cafe is called {name}* is shown if `name` is set + +*This bike cafe is called {name}* is shown if `name` is set. ### bike_cafe-bike-pump @@ -117,7 +119,8 @@ The question is `Does this bike cafe repair bikes?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -127,7 +130,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -137,7 +141,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -148,13 +153,15 @@ This tagrendering has labels ### opening_hours The question is `When it this bike café opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -164,16 +171,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bike_cleaning.md b/Docs/Layers/bike_cleaning.md index bfc7f1f1bb..614cbd9198 100644 --- a/Docs/Layers/bike_cleaning.md +++ b/Docs/Layers/bike_cleaning.md @@ -86,12 +86,14 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -99,7 +101,8 @@ The question is `What are the opening hours of {title()}?` ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -109,7 +112,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {charge}* is shown if `charge` is set + +*Using the cleaning service costs {charge}* is shown if `charge` is set. - *This cleaning service is free to use* is shown if with fee=no - *There is a fee to use this cleaning service* is shown if with fee=yes @@ -193,6 +197,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -202,16 +207,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bike_parking.md b/Docs/Layers/bike_parking.md index 06cc9b97c4..3cb9d3116f 100644 --- a/Docs/Layers/bike_parking.md +++ b/Docs/Layers/bike_parking.md @@ -107,12 +107,14 @@ Elements must match the expression ** *Stands* is shown if with bicycle_parking=stands - *Rack with side loops* is shown if with bicycle_parking=safe_loops @@ -150,12 +152,14 @@ The question is `Is this parking covered?` ### Capacity The question is `How many bicycles fit in this bicycle parking?` -*Place for {capacity} bikes* is shown if `capacity` is set + +*Place for {capacity} bikes* is shown if `capacity` is set. ### Access The question is `Who can use this bicycle parking?` -*{access}* is shown if `access` is set + +*{access}* is shown if `access` is set. - *Publicly accessible* is shown if with access=yes - *Access is primarily for visitors to a business* is shown if with access=customers @@ -172,14 +176,16 @@ The question is `Are these bicycle parkings free to use?` ### charge The question is `How much does it cost to park your bike here?` -*Parking your bike costs {charge}* is shown if `charge` is set + +*Parking your bike costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes ### opening_hours_24_7_default The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -187,12 +193,14 @@ The question is `What are the opening hours of {title()}?` ### operator The question is `Who maintains this bicycle parking?` -*This bicycle parking is maintained by {operator}* is shown if `operator` is set + +*This bicycle parking is maintained by {operator}* is shown if `operator` is set. ### operator_phone The question is `What is the phone number of the operator of this bicycle parking?` -*{operator:phone}* is shown if `operator:phone` is set + +*{operator:phone}* is shown if `operator:phone` is set. - *{phone}* is shown if with phone~.+. _This option cannot be chosen as answer_ - *{contact:phone}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -200,7 +208,8 @@ The question is `What is the phone number of the operator of this bicycle parkin ### operator_website The question is `What is the website number of the operator of this bicycle parking?` -*{operator:website}* is shown if `operator:website` is set + +*{operator:website}* is shown if `operator:website` is set. - *{website}* is shown if with website~.+. _This option cannot be chosen as answer_ - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -208,7 +217,8 @@ The question is `What is the website number of the operator of this bicycle park ### operator_email The question is `What is the email address of the operator of this bicycle parking?` -*{operator:email}* is shown if `operator:email` is set + +*{operator:email}* is shown if `operator:email` is set. ### Cargo bike spaces? @@ -221,7 +231,8 @@ The question is `Does this bicycle parking have spots for cargo bikes?` ### Cargo bike capacity? The question is `How many cargo bicycles fit in this bicycle parking?` -*This parking fits {capacity:cargo_bike} cargo bikes* is shown if `capacity:cargo_bike` is set + +*This parking fits {capacity:cargo_bike} cargo bikes* is shown if `capacity:cargo_bike` is set. - *There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed* is shown if with cargo_bike=no @@ -230,11 +241,13 @@ This tagrendering is only visible in the popup if the following condition is met ### maxstay The question is `What is the maximum allowed parking duration?` -*A bike can be parked here for at most {canonical(maxstay)}* is shown if `maxstay` is set + +*A bike can be parked here for at most {canonical(maxstay)}* is shown if `maxstay` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -244,16 +257,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bike_repair_station.md b/Docs/Layers/bike_repair_station.md index 2051e80de2..101be49b02 100644 --- a/Docs/Layers/bike_repair_station.md +++ b/Docs/Layers/bike_repair_station.md @@ -111,6 +111,7 @@ With this email&COMMA I'd like to inform you that the bicycle pump located at ht ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### bike_repair_station-available-services @@ -133,7 +134,8 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours_24_7 The question is `When is this bicycle repair point open?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -151,7 +153,8 @@ The question is `Who is allowed to use this repair station?` ### bike_repair_station-operator The question is `Who maintains this cycle pump?` -*Maintained by {operator}* is shown if `operator` is set + +*Maintained by {operator}* is shown if `operator` is set. This tagrendering has labels `operator-info` @@ -159,7 +162,8 @@ This tagrendering has labels ### bike_repair_station-email The question is `What is the email address of the maintainer?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. This tagrendering has labels `operator-info` @@ -167,7 +171,8 @@ This tagrendering has labels ### bike_repair_station-phone The question is `What is the phone number of the maintainer?` -*{phone}* is shown if `phone` is set + +*{phone}* is shown if `phone` is set. This tagrendering has labels `operator-info` @@ -193,6 +198,7 @@ This tagrendering is only visible in the popup if the following condition is met ### send_email_about_broken_pump _This tagrendering has no question and is thus read-only_ + *{send_email(&LBRACEemail&RBRACE,Broken bicycle pump,Hello&COMMA With this email&COMMA I'd like to inform you that the bicycle pump located at https://mapcomplete.org/cyclofix?lat=&LBRACE_lat&RBRACE&lon=&LBRACE_lon&RBRACE&z=18#&LBRACEid&RBRACE is broken. @@ -204,7 +210,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_repair_station-valves The question is `What valves are supported?` -*This pump supports the following valves: {valves}* is shown if `valves` is set + +*This pump supports the following valves: {valves}* is shown if `valves` is set. - *Sclaverand/Presta (narrow-width bike tires)* is shown if with valves=sclaverand - *Dunlop* is shown if with valves=dunlop @@ -232,6 +239,7 @@ This tagrendering is only visible in the popup if the following condition is met ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -241,7 +249,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -255,6 +264,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -264,16 +274,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bike_shop.md b/Docs/Layers/bike_shop.md index 53191bb5b5..55efdc1eca 100644 --- a/Docs/Layers/bike_shop.md +++ b/Docs/Layers/bike_shop.md @@ -33,6 +33,8 @@ A shop specifically selling bicycles or related items - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -56,7 +58,7 @@ A shop specifically selling bicycles or related items - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -139,6 +141,7 @@ Elements must match **any** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -212,6 +215,8 @@ Elements must match **any** of the following expressions: | [copyshop-binding](#copyshop-binding)
_(Original in [shops](./shops.md#copyshop-binding))_ | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service)
_(Original in [shops](./shops.md#optometrist_service))_ | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter)
_(Original in [shops](./shops.md#key_cutter))_ | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup)
_(Original in [shops](./shops.md#hairdresser-targetgroup))_ | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [shops](./shops.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes)
_(Original in [shops](./shops.md#sells_new_bikes))_ | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand)
_(Original in [shops](./shops.md#bike_second_hand))_ | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes)
_(Original in [shops](./shops.md#repairs_bikes))_ | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -235,7 +240,7 @@ Elements must match **any** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [shops](./shops.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [shops](./shops.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [shops](./shops.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [shops](./shops.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [shops](./shops.md#shop-dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [shops](./shops.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [shops](./shops.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [shops](./shops.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -282,22 +287,26 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -471,7 +480,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -488,14 +498,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -505,7 +517,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -516,7 +529,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -534,6 +548,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -543,7 +558,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -594,6 +610,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -636,7 +673,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -655,7 +693,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -664,7 +703,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -673,7 +713,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -682,7 +723,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -691,7 +733,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -700,7 +743,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -709,7 +753,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -748,7 +793,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -784,7 +830,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -841,7 +888,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -854,11 +901,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -867,6 +916,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -891,6 +941,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -905,7 +956,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -925,7 +977,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -960,7 +1013,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1030,7 +1084,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1120,7 +1175,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1156,7 +1212,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1229,6 +1286,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1244,6 +1302,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1261,6 +1320,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1278,6 +1338,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1319,6 +1380,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1335,6 +1397,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1370,7 +1433,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1389,7 +1455,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1406,7 +1475,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1465,6 +1537,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1481,6 +1554,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1491,6 +1565,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1500,16 +1575,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/bike_themed_object.md b/Docs/Layers/bike_themed_object.md index 9607c1fa6a..83192ce76d 100644 --- a/Docs/Layers/bike_themed_object.md +++ b/Docs/Layers/bike_themed_object.md @@ -73,17 +73,20 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -93,7 +96,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -104,7 +108,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -114,13 +119,15 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -130,6 +137,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/binocular.md b/Docs/Layers/binocular.md index 18fd03f1f8..af5496e4c6 100644 --- a/Docs/Layers/binocular.md +++ b/Docs/Layers/binocular.md @@ -63,23 +63,27 @@ Elements must match the expression **fee=no & charge= ### binocular-direction The question is `When looking through this binocular, in what direction does one look?` -*Looks towards {direction}°* is shown if `direction` is set + +*Looks towards {direction}°* is shown if `direction` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -89,16 +93,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/birdhide.md b/Docs/Layers/birdhide.md index 7331b917bb..f60819b523 100644 --- a/Docs/Layers/birdhide.md +++ b/Docs/Layers/birdhide.md @@ -67,6 +67,7 @@ Elements must match the expression **operator=Natuurpunt - *Operated by the Agency for Nature and Forests* is shown if with operator=Agentschap Natuur en Bos @@ -98,6 +100,7 @@ The question is `Who operates this birdhide?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -107,16 +110,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/brothel.md b/Docs/Layers/brothel.md index 063274db9c..85ac2b5381 100644 --- a/Docs/Layers/brothel.md +++ b/Docs/Layers/brothel.md @@ -75,29 +75,34 @@ Elements must match the expression **opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -107,7 +112,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -118,7 +124,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -128,6 +135,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -137,16 +145,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/building.md b/Docs/Layers/building.md index 3111bab218..71d6771040 100644 --- a/Docs/Layers/building.md +++ b/Docs/Layers/building.md @@ -65,7 +65,8 @@ Elements must match the expression **building~.+** ### architecture The question is `What is the architectural style of this building?` -*{building:architecture}* is shown if `building:architecture` is set + +*{building:architecture}* is shown if `building:architecture` is set. - *Islamic architecture* is shown if with building:architecture=islamic - *Mamluk architecture* is shown if with building:architecture=mamluk @@ -105,11 +106,13 @@ The question is `What is the architectural style of this building?` ### construction_date The question is `When was this built?` -*Built in {construction_date}* is shown if `construction_date` is set + +*Built in {construction_date}* is shown if `construction_date` is set. ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -118,6 +121,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -129,7 +133,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -140,7 +145,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -149,7 +155,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -160,6 +167,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -169,11 +177,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/buildings_with_architecture.md b/Docs/Layers/buildings_with_architecture.md index d5b3eb2259..090d8b8ab6 100644 --- a/Docs/Layers/buildings_with_architecture.md +++ b/Docs/Layers/buildings_with_architecture.md @@ -69,7 +69,8 @@ Elements must match **all** of the following expressions: ### architecture The question is `What is the architectural style of this building?` -*{building:architecture}* is shown if `building:architecture` is set + +*{building:architecture}* is shown if `building:architecture` is set. - *Islamic architecture* is shown if with building:architecture=islamic - *Mamluk architecture* is shown if with building:architecture=mamluk @@ -109,11 +110,13 @@ The question is `What is the architectural style of this building?` ### construction_date The question is `When was this built?` -*Built in {construction_date}* is shown if `construction_date` is set + +*Built in {construction_date}* is shown if `construction_date` is set. ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -122,6 +125,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -133,7 +137,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -144,7 +149,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -153,7 +159,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -164,6 +171,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -173,11 +181,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/cafe_pub.md b/Docs/Layers/cafe_pub.md index 2f9040dc2f..7e554ee0f4 100644 --- a/Docs/Layers/cafe_pub.md +++ b/Docs/Layers/cafe_pub.md @@ -221,11 +221,13 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -235,7 +237,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -249,7 +252,8 @@ This tagrendering has labels ### Name The question is `What is the name of this business?` -*This business is named {name}* is shown if `name` is set + +*This business is named {name}* is shown if `name` is set. ### Classification @@ -265,14 +269,16 @@ The question is `What kind of cafe is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -282,7 +288,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -293,7 +300,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -380,7 +388,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -391,11 +400,13 @@ This tagrendering has labels ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -404,6 +415,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -428,6 +440,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -442,7 +455,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -462,7 +476,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -497,7 +512,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -567,7 +583,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -657,7 +674,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -693,7 +711,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -766,6 +785,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -781,6 +801,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -798,6 +819,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -815,6 +837,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -856,6 +879,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -872,6 +896,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -907,7 +932,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -926,7 +954,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -943,7 +974,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1002,6 +1036,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1018,6 +1053,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1028,6 +1064,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1037,16 +1074,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/campsite.md b/Docs/Layers/campsite.md index 70f58911d9..d4357c5b37 100644 --- a/Docs/Layers/campsite.md +++ b/Docs/Layers/campsite.md @@ -89,6 +89,7 @@ Elements must match the expression ** *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -116,7 +119,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -127,7 +131,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -137,7 +142,8 @@ This tagrendering has labels ### capacity_persons The question is `How many people can stay here?` -*{capacity:persons} people can stay here* is shown if `capacity:persons` is set + +*{capacity:persons} people can stay here* is shown if `capacity:persons` is set. ### fee @@ -149,12 +155,14 @@ The question is `Is there a fee?` ### charge_person_day The question is `What is the charge per person per day?` -*Charge per person per day: {charge}* is shown if `charge` is set + +*Charge per person per day: {charge}* is shown if `charge` is set. ### charge_day The question is `What is the charge per day?` -*Charge per day: {charge}* is shown if `charge` is set + +*Charge per day: {charge}* is shown if `charge` is set. ### caravansites-toilets @@ -166,21 +174,25 @@ The question is `Does this place have toilets?` ### toiletatamenitytoiletswheelchair _This tagrendering has no question and is thus read-only_ + *toilet_at_amenity.toilets-wheelchair* ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/car_rental.md b/Docs/Layers/car_rental.md index 5903e7abf9..a5b6cbf51e 100644 --- a/Docs/Layers/car_rental.md +++ b/Docs/Layers/car_rental.md @@ -71,19 +71,22 @@ Elements must match the expression **noname=yes ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -93,7 +96,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -104,7 +108,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -114,13 +119,15 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -130,11 +137,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/caravansites.md b/Docs/Layers/caravansites.md index 9b9830b888..779c3ce881 100644 --- a/Docs/Layers/caravansites.md +++ b/Docs/Layers/caravansites.md @@ -92,12 +92,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### caravansites-name The question is `What is this place called?` -*This place is called {name}* is shown if `name` is set + +*This place is called {name}* is shown if `name` is set. ### caravansites-fee @@ -109,7 +111,8 @@ The question is `Does this place charge a fee?` ### caravansites-charge The question is `How much does this place charge?` -*This place charges {charge}* is shown if `charge` is set + +*This place charges {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes @@ -123,7 +126,8 @@ The question is `Does this place have a sanitary dump station?` ### caravansites-capacity The question is `How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)` -*{capacity} campers can use this place at the same time* is shown if `capacity` is set + +*{capacity} campers can use this place at the same time* is shown if `capacity` is set. ### caravansites-internet @@ -152,7 +156,8 @@ The question is `Does this place have toilets?` ### caravansites-website The question is `Does this place have a website?` -*Official website: {website}* is shown if `website` is set + +*Official website: {website}* is shown if `website` is set. ### caravansites-long-term @@ -165,26 +170,31 @@ The question is `Does this place offer spots for long term rental?` ### caravansites-description The question is `Would you like to add a general description of this place? (Do not repeat information previously asked or shown above. Please keep it objective - opinions go into the reviews)` -*More details about this place: {description}* is shown if `description` is set + +*More details about this place: {description}* is shown if `description` is set. ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/charge_point.md b/Docs/Layers/charge_point.md index bccea4f8c2..9c5a964558 100644 --- a/Docs/Layers/charge_point.md +++ b/Docs/Layers/charge_point.md @@ -318,17 +318,20 @@ Elements must match the expression **{socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set + +*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set. This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0 This tagrendering has labels @@ -389,7 +393,8 @@ This tagrendering has labels ### plugs-amount-socket:typee The question is `How much plugs of type European wall plug with ground pin (CEE7/4 type E) are available here?` -*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set + +*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set. This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0 This tagrendering has labels @@ -398,7 +403,8 @@ This tagrendering has labels ### plugs-amount-socket:chademo The question is `How much plugs of type Chademo are available here?` -*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set + +*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0 This tagrendering has labels @@ -407,7 +413,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_cable The question is `How much plugs of type Type 1 with cable (J1772) are available here?` -*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set + +*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0 This tagrendering has labels @@ -416,7 +423,8 @@ This tagrendering has labels ### plugs-amount-socket:type1 The question is `How much plugs of type Type 1 without cable (J1772) are available here?` -*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set + +*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0 This tagrendering has labels @@ -425,7 +433,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_combo The question is `How much plugs of type Type 1 CCS (aka Type 1 Combo) are available here?` -*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set + +*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0 This tagrendering has labels @@ -434,7 +443,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger The question is `How much plugs of type Tesla Supercharger are available here?` -*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set + +*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0 This tagrendering has labels @@ -443,7 +453,8 @@ This tagrendering has labels ### plugs-amount-socket:type2 The question is `How much plugs of type Type 2 (mennekes) are available here?` -*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set + +*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0 This tagrendering has labels @@ -452,7 +463,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_combo The question is `How much plugs of type Type 2 CCS (mennekes) are available here?` -*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set + +*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0 This tagrendering has labels @@ -461,7 +473,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_cable The question is `How much plugs of type Type 2 with cable (mennekes) are available here?` -*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set + +*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0 This tagrendering has labels @@ -470,7 +483,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger_ccs The question is `How much plugs of type Tesla Supercharger CCS (a branded type2_css) are available here?` -*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set + +*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0 This tagrendering has labels @@ -479,7 +493,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination_us The question is `How much plugs of type Tesla Supercharger (destination) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -488,7 +503,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination The question is `How much plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -497,7 +513,8 @@ This tagrendering has labels ### plugs-amount-socket:USB-A The question is `How much plugs of type USB to charge phones and small electronics are available here?` -*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set + +*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set. This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0 This tagrendering has labels @@ -506,7 +523,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_3pin The question is `How much plugs of type Bosch Active Connect with 3 pins and cable are available here?` -*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set + +*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -515,7 +533,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_5pin The question is `How much plugs of type Bosch Active Connect with 5 pins and cable are available here?` -*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set + +*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -524,7 +543,8 @@ This tagrendering has labels ### plugs-amount-socket:bs1363 The question is `How much plugs of type BS1363 (Type G) are available here?` -*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set + +*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0 This tagrendering has labels @@ -533,7 +553,8 @@ This tagrendering has labels ### plugs-amount-socket:nema5_15 The question is `How much plugs of type NEMA 5-15 (Type B) are available here?` -*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set + +*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0 This tagrendering has labels @@ -542,7 +563,8 @@ This tagrendering has labels ### plugs-amount-socket:sev1011_t23 The question is `How much plugs of type SEV 1011 T23 (Type J) are available here?` -*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set + +*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set. This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0 This tagrendering has labels @@ -551,7 +573,8 @@ This tagrendering has labels ### plugs-amount-socket:as3112 The question is `How much plugs of type AS3112 (Type I) are available here?` -*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set + +*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set. This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0 This tagrendering has labels @@ -560,7 +583,8 @@ This tagrendering has labels ### plugs-amount-socket:nema_5_20 The question is `How much plugs of type NEMA 5-20 (Type B) are available here?` -*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set + +*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0 This tagrendering has labels @@ -569,17 +593,20 @@ This tagrendering has labels ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### questions-technical _This tagrendering has no question and is thus read-only_ + *

Technical questions

The questions below are very technical. Feel free to ignore them
{questions(technical)}* ### voltage-socket:schuko The question is `What voltage do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with
socket:schuko:voltage=230 @@ -590,7 +617,8 @@ This tagrendering has labels ### current-socket:schuko The question is `What current do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with socket:schuko:current=16 @@ -601,7 +629,8 @@ This tagrendering has labels ### power-output-socket:schuko The question is `What power output does a single plug of type Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with socket:schuko:output=3.6 kW @@ -612,7 +641,8 @@ This tagrendering has labels ### voltage-socket:typee The question is `What voltage do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with socket:typee:voltage=230 @@ -623,7 +653,8 @@ This tagrendering has labels ### current-socket:typee The question is `What current do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with socket:typee:current=16 @@ -634,7 +665,8 @@ This tagrendering has labels ### power-output-socket:typee The question is `What power output does a single plug of type European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with socket:typee:output=3 kW - *European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with socket:typee:output=22 kW @@ -646,7 +678,8 @@ This tagrendering has labels ### voltage-socket:chademo The question is `What voltage do the plugs with Chademo offer?` -*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set + +*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set. - *Chademo outputs 500 volt* is shown if with socket:chademo:voltage=500 @@ -657,7 +690,8 @@ This tagrendering has labels ### current-socket:chademo The question is `What current do the plugs with Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set + +*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set. - *Chademo outputs at most 120 A* is shown if with socket:chademo:current=120 @@ -668,7 +702,8 @@ This tagrendering has labels ### power-output-socket:chademo The question is `What power output does a single plug of type Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set + +*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set. - *Chademo outputs at most 50 kW* is shown if with socket:chademo:output=50 kW @@ -679,7 +714,8 @@ This tagrendering has labels ### voltage-socket:type1_cable The question is `What voltage do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set + +*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set. - *Type 1 with cable (J1772) outputs 200 volt* is shown if with socket:type1_cable:voltage=200 - *Type 1 with cable (J1772) outputs 240 volt* is shown if with socket:type1_cable:voltage=240 @@ -691,7 +727,8 @@ This tagrendering has labels ### current-socket:type1_cable The question is `What current do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set. - *Type 1 with cable (J1772) outputs at most 32 A* is shown if with socket:type1_cable:current=32 @@ -702,7 +739,8 @@ This tagrendering has labels ### power-output-socket:type1_cable The question is `What power output does a single plug of type Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set. - *Type 1 with cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1_cable:output=3.7 kW - *Type 1 with cable (J1772) outputs at most 7 kW* is shown if with socket:type1_cable:output=7 kW @@ -714,7 +752,8 @@ This tagrendering has labels ### voltage-socket:type1 The question is `What voltage do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set + +*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set. - *Type 1 without cable (J1772) outputs 200 volt* is shown if with socket:type1:voltage=200 - *Type 1 without cable (J1772) outputs 240 volt* is shown if with socket:type1:voltage=240 @@ -726,7 +765,8 @@ This tagrendering has labels ### current-socket:type1 The question is `What current do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set. - *Type 1 without cable (J1772) outputs at most 32 A* is shown if with socket:type1:current=32 @@ -737,7 +777,8 @@ This tagrendering has labels ### power-output-socket:type1 The question is `What power output does a single plug of type Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set. - *Type 1 without cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1:output=3.7 kW - *Type 1 without cable (J1772) outputs at most 6.6 kW* is shown if with socket:type1:output=6.6 kW @@ -751,7 +792,8 @@ This tagrendering has labels ### voltage-socket:type1_combo The question is `What voltage do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set + +*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set. - *Type 1 CCS (aka Type 1 Combo) outputs 400 volt* is shown if with socket:type1_combo:voltage=400 - *Type 1 CCS (aka Type 1 Combo) outputs 1000 volt* is shown if with socket:type1_combo:voltage=1000 @@ -763,7 +805,8 @@ This tagrendering has labels ### current-socket:type1_combo The question is `What current do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 A* is shown if with socket:type1_combo:current=50 - *Type 1 CCS (aka Type 1 Combo) outputs at most 125 A* is shown if with socket:type1_combo:current=125 @@ -775,7 +818,8 @@ This tagrendering has labels ### power-output-socket:type1_combo The question is `What power output does a single plug of type Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW* is shown if with socket:type1_combo:output=50 kW - *Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with socket:type1_combo:output=62.5 kW @@ -789,7 +833,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger The question is `What voltage do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set + +*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set. - *Tesla Supercharger outputs 480 volt* is shown if with socket:tesla_supercharger:voltage=480 @@ -800,7 +845,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger The question is `What current do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set. - *Tesla Supercharger outputs at most 125 A* is shown if with socket:tesla_supercharger:current=125 - *Tesla Supercharger outputs at most 350 A* is shown if with socket:tesla_supercharger:current=350 @@ -812,7 +858,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger The question is `What power output does a single plug of type Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set. - *Tesla Supercharger outputs at most 120 kW* is shown if with socket:tesla_supercharger:output=120 kW - *Tesla Supercharger outputs at most 150 kW* is shown if with socket:tesla_supercharger:output=150 kW @@ -825,7 +872,8 @@ This tagrendering has labels ### voltage-socket:type2 The question is `What voltage do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set + +*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set. - *Type 2 (mennekes) outputs 230 volt* is shown if with socket:type2:voltage=230 - *Type 2 (mennekes) outputs 400 volt* is shown if with socket:type2:voltage=400 @@ -837,7 +885,8 @@ This tagrendering has labels ### current-socket:type2 The question is `What current do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set. - *Type 2 (mennekes) outputs at most 16 A* is shown if with socket:type2:current=16 - *Type 2 (mennekes) outputs at most 32 A* is shown if with socket:type2:current=32 @@ -849,7 +898,8 @@ This tagrendering has labels ### power-output-socket:type2 The question is `What power output does a single plug of type Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set. - *Type 2 (mennekes) outputs at most 11 kW* is shown if with socket:type2:output=11 kW - *Type 2 (mennekes) outputs at most 22 kW* is shown if with socket:type2:output=22 kW @@ -861,7 +911,8 @@ This tagrendering has labels ### voltage-socket:type2_combo The question is `What voltage do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set + +*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set. - *Type 2 CCS (mennekes) outputs 500 volt* is shown if with socket:type2_combo:voltage=500 - *Type 2 CCS (mennekes) outputs 920 volt* is shown if with socket:type2_combo:voltage=920 @@ -873,7 +924,8 @@ This tagrendering has labels ### current-socket:type2_combo The question is `What current do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set. - *Type 2 CCS (mennekes) outputs at most 125 A* is shown if with socket:type2_combo:current=125 - *Type 2 CCS (mennekes) outputs at most 350 A* is shown if with socket:type2_combo:current=350 @@ -885,7 +937,8 @@ This tagrendering has labels ### power-output-socket:type2_combo The question is `What power output does a single plug of type Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set. - *Type 2 CCS (mennekes) outputs at most 50 kW* is shown if with socket:type2_combo:output=50 kW @@ -896,7 +949,8 @@ This tagrendering has labels ### voltage-socket:type2_cable The question is `What voltage do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set + +*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set. - *Type 2 with cable (mennekes) outputs 230 volt* is shown if with socket:type2_cable:voltage=230 - *Type 2 with cable (mennekes) outputs 400 volt* is shown if with socket:type2_cable:voltage=400 @@ -908,7 +962,8 @@ This tagrendering has labels ### current-socket:type2_cable The question is `What current do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set. - *Type 2 with cable (mennekes) outputs at most 16 A* is shown if with socket:type2_cable:current=16 - *Type 2 with cable (mennekes) outputs at most 32 A* is shown if with socket:type2_cable:current=32 @@ -920,7 +975,8 @@ This tagrendering has labels ### power-output-socket:type2_cable The question is `What power output does a single plug of type Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set. - *Type 2 with cable (mennekes) outputs at most 11 kW* is shown if with socket:type2_cable:output=11 kW - *Type 2 with cable (mennekes) outputs at most 22 kW* is shown if with socket:type2_cable:output=22 kW @@ -932,7 +988,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger_ccs The question is `What voltage do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs 500 volt* is shown if with socket:tesla_supercharger_ccs:voltage=500 - *Tesla Supercharger CCS (a branded type2_css) outputs 920 volt* is shown if with socket:tesla_supercharger_ccs:voltage=920 @@ -944,7 +1001,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger_ccs The question is `What current do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A* is shown if with socket:tesla_supercharger_ccs:current=125 - *Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A* is shown if with socket:tesla_supercharger_ccs:current=350 @@ -956,7 +1014,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger_ccs The question is `What power output does a single plug of type Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW* is shown if with socket:tesla_supercharger_ccs:output=50 kW @@ -967,7 +1026,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination_us The question is `What voltage do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla Supercharger (destination) outputs 480 volt* is shown if with socket:tesla_destination:voltage=480 @@ -978,7 +1038,8 @@ This tagrendering has labels ### current-socket:tesla_destination_us The question is `What current do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla Supercharger (destination) outputs at most 125 A* is shown if with socket:tesla_destination:current=125 - *Tesla Supercharger (destination) outputs at most 350 A* is shown if with socket:tesla_destination:current=350 @@ -990,7 +1051,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination_us The question is `What power output does a single plug of type Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla Supercharger (destination) outputs at most 120 kW* is shown if with socket:tesla_destination:output=120 kW - *Tesla Supercharger (destination) outputs at most 150 kW* is shown if with socket:tesla_destination:output=150 kW @@ -1003,7 +1065,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination The question is `What voltage do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with socket:tesla_destination:voltage=230 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with socket:tesla_destination:voltage=400 @@ -1015,7 +1078,8 @@ This tagrendering has labels ### current-socket:tesla_destination The question is `What current do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with socket:tesla_destination:current=16 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with socket:tesla_destination:current=32 @@ -1027,7 +1091,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination The question is `What power output does a single plug of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with socket:tesla_destination:output=11 kW - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with socket:tesla_destination:output=22 kW @@ -1039,7 +1104,8 @@ This tagrendering has labels ### voltage-socket:USB-A The question is `What voltage do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set + +*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set. - *USB to charge phones and small electronics outputs 5 volt* is shown if with socket:USB-A:voltage=5 @@ -1050,7 +1116,8 @@ This tagrendering has labels ### current-socket:USB-A The question is `What current do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set. - *USB to charge phones and small electronics outputs at most 1 A* is shown if with socket:USB-A:current=1 - *USB to charge phones and small electronics outputs at most 2 A* is shown if with socket:USB-A:current=2 @@ -1062,7 +1129,8 @@ This tagrendering has labels ### power-output-socket:USB-A The question is `What power output does a single plug of type USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set. - *USB to charge phones and small electronics outputs at most 5W* is shown if with socket:USB-A:output=5W - *USB to charge phones and small electronics outputs at most 10W* is shown if with socket:USB-A:output=10W @@ -1074,7 +1142,8 @@ This tagrendering has labels ### voltage-socket:bosch_3pin The question is `What voltage do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set + +*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1083,7 +1152,8 @@ This tagrendering has labels ### current-socket:bosch_3pin The question is `What current do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1092,7 +1162,8 @@ This tagrendering has labels ### power-output-socket:bosch_3pin The question is `What power output does a single plug of type Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1101,7 +1172,8 @@ This tagrendering has labels ### voltage-socket:bosch_5pin The question is `What voltage do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set + +*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1110,7 +1182,8 @@ This tagrendering has labels ### current-socket:bosch_5pin The question is `What current do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1119,7 +1192,8 @@ This tagrendering has labels ### power-output-socket:bosch_5pin The question is `What power output does a single plug of type Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1128,7 +1202,8 @@ This tagrendering has labels ### voltage-socket:bs1363 The question is `What voltage do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set + +*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set. - *BS1363 (Type G) outputs 230 volt* is shown if with socket:bs1363:voltage=230 @@ -1139,7 +1214,8 @@ This tagrendering has labels ### current-socket:bs1363 The question is `What current do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set. - *BS1363 (Type G) outputs at most 13 A* is shown if with socket:bs1363:current=13 @@ -1150,7 +1226,8 @@ This tagrendering has labels ### power-output-socket:bs1363 The question is `What power output does a single plug of type BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set. - *BS1363 (Type G) outputs at most 3kW* is shown if with socket:bs1363:output=3kW @@ -1161,7 +1238,8 @@ This tagrendering has labels ### voltage-socket:nema5_15 The question is `What voltage do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set + +*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set. - *NEMA 5-15 (Type B) outputs 120 volt* is shown if with socket:nema5_15:voltage=120 @@ -1172,7 +1250,8 @@ This tagrendering has labels ### current-socket:nema5_15 The question is `What current do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set. - *NEMA 5-15 (Type B) outputs at most 15 A* is shown if with socket:nema5_15:current=15 @@ -1183,7 +1262,8 @@ This tagrendering has labels ### power-output-socket:nema5_15 The question is `What power output does a single plug of type NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set. - *NEMA 5-15 (Type B) outputs at most 1.8 kW* is shown if with socket:nema5_15:output=1.8 kW @@ -1194,7 +1274,8 @@ This tagrendering has labels ### voltage-socket:sev1011_t23 The question is `What voltage do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set + +*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set. - *SEV 1011 T23 (Type J) outputs 230 volt* is shown if with socket:sev1011_t23:voltage=230 @@ -1205,7 +1286,8 @@ This tagrendering has labels ### current-socket:sev1011_t23 The question is `What current do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set. - *SEV 1011 T23 (Type J) outputs at most 16 A* is shown if with socket:sev1011_t23:current=16 @@ -1216,7 +1298,8 @@ This tagrendering has labels ### power-output-socket:sev1011_t23 The question is `What power output does a single plug of type SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set. - *SEV 1011 T23 (Type J) outputs at most 3.7 kW* is shown if with socket:sev1011_t23:output=3.7 kW @@ -1227,7 +1310,8 @@ This tagrendering has labels ### voltage-socket:as3112 The question is `What voltage do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set + +*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set. - *AS3112 (Type I) outputs 230 volt* is shown if with socket:as3112:voltage=230 @@ -1238,7 +1322,8 @@ This tagrendering has labels ### current-socket:as3112 The question is `What current do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set. - *AS3112 (Type I) outputs at most 10 A* is shown if with socket:as3112:current=10 @@ -1249,7 +1334,8 @@ This tagrendering has labels ### power-output-socket:as3112 The question is `What power output does a single plug of type AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set. - *AS3112 (Type I) outputs at most 2.3 kW* is shown if with socket:as3112:output=2.3 kW @@ -1260,7 +1346,8 @@ This tagrendering has labels ### voltage-socket:nema_5_20 The question is `What voltage do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set + +*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set. - *NEMA 5-20 (Type B) outputs 120 volt* is shown if with socket:nema_5_20:voltage=120 @@ -1271,7 +1358,8 @@ This tagrendering has labels ### current-socket:nema_5_20 The question is `What current do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set. - *NEMA 5-20 (Type B) outputs at most 20 A* is shown if with socket:nema_5_20:current=20 @@ -1282,7 +1370,8 @@ This tagrendering has labels ### power-output-socket:nema_5_20 The question is `What power output does a single plug of type NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set. - *NEMA 5-20 (Type B) outputs at most 2.4 kW* is shown if with socket:nema_5_20:output=2.4 kW @@ -1293,11 +1382,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/charging_station.md b/Docs/Layers/charging_station.md index 7be0fd0799..9eee3f3295 100644 --- a/Docs/Layers/charging_station.md +++ b/Docs/Layers/charging_station.md @@ -385,6 +385,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Type @@ -400,7 +401,8 @@ The question is `Which vehicles are allowed to charge here?` ### access The question is `Who is allowed to use this charging station?` -*Access is {access}* is shown if `access` is set + +*Access is {access}* is shown if `access` is set. - *Anyone can use this charging station (payment might be needed)* is shown if with access=yes - *Anyone can use this charging station (payment might be needed)* is shown if with access=public. _This option cannot be chosen as answer_ @@ -412,7 +414,8 @@ The question is `Who is allowed to use this charging station?` ### capacity The question is `How much vehicles can be charged here at the same time?` -*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set + +*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set. ### Available_charging_stations (generated) @@ -464,7 +467,8 @@ The question is `Which charging connections are available here?` ### plugs-amount-socket:schuko The question is `How much plugs of type Schuko wall plug without ground pin (CEE7/4 type F) are available here?` -*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set + +*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set. This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0 This tagrendering has labels @@ -473,7 +477,8 @@ This tagrendering has labels ### voltage-socket:schuko The question is `What voltage do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with socket:schuko:voltage=230 @@ -484,7 +489,8 @@ This tagrendering has labels ### current-socket:schuko The question is `What current do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with socket:schuko:current=16 @@ -495,7 +501,8 @@ This tagrendering has labels ### power-output-socket:schuko The question is `What power output does a single plug of type Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with socket:schuko:output=3.6 kW @@ -506,7 +513,8 @@ This tagrendering has labels ### plugs-amount-socket:typee The question is `How much plugs of type European wall plug with ground pin (CEE7/4 type E) are available here?` -*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set + +*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set. This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0 This tagrendering has labels @@ -515,7 +523,8 @@ This tagrendering has labels ### voltage-socket:typee The question is `What voltage do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with socket:typee:voltage=230 @@ -526,7 +535,8 @@ This tagrendering has labels ### current-socket:typee The question is `What current do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with socket:typee:current=16 @@ -537,7 +547,8 @@ This tagrendering has labels ### power-output-socket:typee The question is `What power output does a single plug of type European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with socket:typee:output=3 kW - *European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with socket:typee:output=22 kW @@ -549,7 +560,8 @@ This tagrendering has labels ### plugs-amount-socket:chademo The question is `How much plugs of type Chademo are available here?` -*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set + +*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0 This tagrendering has labels @@ -558,7 +570,8 @@ This tagrendering has labels ### voltage-socket:chademo The question is `What voltage do the plugs with Chademo offer?` -*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set + +*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set. - *Chademo outputs 500 volt* is shown if with socket:chademo:voltage=500 @@ -569,7 +582,8 @@ This tagrendering has labels ### current-socket:chademo The question is `What current do the plugs with Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set + +*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set. - *Chademo outputs at most 120 A* is shown if with socket:chademo:current=120 @@ -580,7 +594,8 @@ This tagrendering has labels ### power-output-socket:chademo The question is `What power output does a single plug of type Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set + +*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set. - *Chademo outputs at most 50 kW* is shown if with socket:chademo:output=50 kW @@ -591,7 +606,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_cable The question is `How much plugs of type Type 1 with cable (J1772) are available here?` -*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set + +*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0 This tagrendering has labels @@ -600,7 +616,8 @@ This tagrendering has labels ### voltage-socket:type1_cable The question is `What voltage do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set + +*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set. - *Type 1 with cable (J1772) outputs 200 volt* is shown if with socket:type1_cable:voltage=200 - *Type 1 with cable (J1772) outputs 240 volt* is shown if with socket:type1_cable:voltage=240 @@ -612,7 +629,8 @@ This tagrendering has labels ### current-socket:type1_cable The question is `What current do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set. - *Type 1 with cable (J1772) outputs at most 32 A* is shown if with socket:type1_cable:current=32 @@ -623,7 +641,8 @@ This tagrendering has labels ### power-output-socket:type1_cable The question is `What power output does a single plug of type Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set. - *Type 1 with cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1_cable:output=3.7 kW - *Type 1 with cable (J1772) outputs at most 7 kW* is shown if with socket:type1_cable:output=7 kW @@ -635,7 +654,8 @@ This tagrendering has labels ### plugs-amount-socket:type1 The question is `How much plugs of type Type 1 without cable (J1772) are available here?` -*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set + +*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0 This tagrendering has labels @@ -644,7 +664,8 @@ This tagrendering has labels ### voltage-socket:type1 The question is `What voltage do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set + +*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set. - *Type 1 without cable (J1772) outputs 200 volt* is shown if with socket:type1:voltage=200 - *Type 1 without cable (J1772) outputs 240 volt* is shown if with socket:type1:voltage=240 @@ -656,7 +677,8 @@ This tagrendering has labels ### current-socket:type1 The question is `What current do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set. - *Type 1 without cable (J1772) outputs at most 32 A* is shown if with socket:type1:current=32 @@ -667,7 +689,8 @@ This tagrendering has labels ### power-output-socket:type1 The question is `What power output does a single plug of type Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set. - *Type 1 without cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1:output=3.7 kW - *Type 1 without cable (J1772) outputs at most 6.6 kW* is shown if with socket:type1:output=6.6 kW @@ -681,7 +704,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_combo The question is `How much plugs of type Type 1 CCS (aka Type 1 Combo) are available here?` -*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set + +*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0 This tagrendering has labels @@ -690,7 +714,8 @@ This tagrendering has labels ### voltage-socket:type1_combo The question is `What voltage do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set + +*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set. - *Type 1 CCS (aka Type 1 Combo) outputs 400 volt* is shown if with socket:type1_combo:voltage=400 - *Type 1 CCS (aka Type 1 Combo) outputs 1000 volt* is shown if with socket:type1_combo:voltage=1000 @@ -702,7 +727,8 @@ This tagrendering has labels ### current-socket:type1_combo The question is `What current do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 A* is shown if with socket:type1_combo:current=50 - *Type 1 CCS (aka Type 1 Combo) outputs at most 125 A* is shown if with socket:type1_combo:current=125 @@ -714,7 +740,8 @@ This tagrendering has labels ### power-output-socket:type1_combo The question is `What power output does a single plug of type Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW* is shown if with socket:type1_combo:output=50 kW - *Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with socket:type1_combo:output=62.5 kW @@ -728,7 +755,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger The question is `How much plugs of type Tesla Supercharger are available here?` -*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set + +*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0 This tagrendering has labels @@ -737,7 +765,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger The question is `What voltage do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set + +*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set. - *Tesla Supercharger outputs 480 volt* is shown if with socket:tesla_supercharger:voltage=480 @@ -748,7 +777,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger The question is `What current do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set. - *Tesla Supercharger outputs at most 125 A* is shown if with socket:tesla_supercharger:current=125 - *Tesla Supercharger outputs at most 350 A* is shown if with socket:tesla_supercharger:current=350 @@ -760,7 +790,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger The question is `What power output does a single plug of type Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set. - *Tesla Supercharger outputs at most 120 kW* is shown if with socket:tesla_supercharger:output=120 kW - *Tesla Supercharger outputs at most 150 kW* is shown if with socket:tesla_supercharger:output=150 kW @@ -773,7 +804,8 @@ This tagrendering has labels ### plugs-amount-socket:type2 The question is `How much plugs of type Type 2 (mennekes) are available here?` -*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set + +*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0 This tagrendering has labels @@ -782,7 +814,8 @@ This tagrendering has labels ### voltage-socket:type2 The question is `What voltage do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set + +*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set. - *Type 2 (mennekes) outputs 230 volt* is shown if with socket:type2:voltage=230 - *Type 2 (mennekes) outputs 400 volt* is shown if with socket:type2:voltage=400 @@ -794,7 +827,8 @@ This tagrendering has labels ### current-socket:type2 The question is `What current do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set. - *Type 2 (mennekes) outputs at most 16 A* is shown if with socket:type2:current=16 - *Type 2 (mennekes) outputs at most 32 A* is shown if with socket:type2:current=32 @@ -806,7 +840,8 @@ This tagrendering has labels ### power-output-socket:type2 The question is `What power output does a single plug of type Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set. - *Type 2 (mennekes) outputs at most 11 kW* is shown if with socket:type2:output=11 kW - *Type 2 (mennekes) outputs at most 22 kW* is shown if with socket:type2:output=22 kW @@ -818,7 +853,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_combo The question is `How much plugs of type Type 2 CCS (mennekes) are available here?` -*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set + +*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0 This tagrendering has labels @@ -827,7 +863,8 @@ This tagrendering has labels ### voltage-socket:type2_combo The question is `What voltage do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set + +*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set. - *Type 2 CCS (mennekes) outputs 500 volt* is shown if with socket:type2_combo:voltage=500 - *Type 2 CCS (mennekes) outputs 920 volt* is shown if with socket:type2_combo:voltage=920 @@ -839,7 +876,8 @@ This tagrendering has labels ### current-socket:type2_combo The question is `What current do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set. - *Type 2 CCS (mennekes) outputs at most 125 A* is shown if with socket:type2_combo:current=125 - *Type 2 CCS (mennekes) outputs at most 350 A* is shown if with socket:type2_combo:current=350 @@ -851,7 +889,8 @@ This tagrendering has labels ### power-output-socket:type2_combo The question is `What power output does a single plug of type Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set. - *Type 2 CCS (mennekes) outputs at most 50 kW* is shown if with socket:type2_combo:output=50 kW @@ -862,7 +901,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_cable The question is `How much plugs of type Type 2 with cable (mennekes) are available here?` -*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set + +*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0 This tagrendering has labels @@ -871,7 +911,8 @@ This tagrendering has labels ### voltage-socket:type2_cable The question is `What voltage do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set + +*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set. - *Type 2 with cable (mennekes) outputs 230 volt* is shown if with socket:type2_cable:voltage=230 - *Type 2 with cable (mennekes) outputs 400 volt* is shown if with socket:type2_cable:voltage=400 @@ -883,7 +924,8 @@ This tagrendering has labels ### current-socket:type2_cable The question is `What current do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set. - *Type 2 with cable (mennekes) outputs at most 16 A* is shown if with socket:type2_cable:current=16 - *Type 2 with cable (mennekes) outputs at most 32 A* is shown if with socket:type2_cable:current=32 @@ -895,7 +937,8 @@ This tagrendering has labels ### power-output-socket:type2_cable The question is `What power output does a single plug of type Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set. - *Type 2 with cable (mennekes) outputs at most 11 kW* is shown if with socket:type2_cable:output=11 kW - *Type 2 with cable (mennekes) outputs at most 22 kW* is shown if with socket:type2_cable:output=22 kW @@ -907,7 +950,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger_ccs The question is `How much plugs of type Tesla Supercharger CCS (a branded type2_css) are available here?` -*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set + +*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0 This tagrendering has labels @@ -916,7 +960,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger_ccs The question is `What voltage do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs 500 volt* is shown if with socket:tesla_supercharger_ccs:voltage=500 - *Tesla Supercharger CCS (a branded type2_css) outputs 920 volt* is shown if with socket:tesla_supercharger_ccs:voltage=920 @@ -928,7 +973,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger_ccs The question is `What current do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A* is shown if with socket:tesla_supercharger_ccs:current=125 - *Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A* is shown if with socket:tesla_supercharger_ccs:current=350 @@ -940,7 +986,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger_ccs The question is `What power output does a single plug of type Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW* is shown if with socket:tesla_supercharger_ccs:output=50 kW @@ -951,7 +998,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination_us The question is `How much plugs of type Tesla Supercharger (destination) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -960,7 +1008,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination_us The question is `What voltage do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla Supercharger (destination) outputs 480 volt* is shown if with socket:tesla_destination:voltage=480 @@ -971,7 +1020,8 @@ This tagrendering has labels ### current-socket:tesla_destination_us The question is `What current do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla Supercharger (destination) outputs at most 125 A* is shown if with socket:tesla_destination:current=125 - *Tesla Supercharger (destination) outputs at most 350 A* is shown if with socket:tesla_destination:current=350 @@ -983,7 +1033,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination_us The question is `What power output does a single plug of type Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla Supercharger (destination) outputs at most 120 kW* is shown if with socket:tesla_destination:output=120 kW - *Tesla Supercharger (destination) outputs at most 150 kW* is shown if with socket:tesla_destination:output=150 kW @@ -996,7 +1047,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination The question is `How much plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -1005,7 +1057,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination The question is `What voltage do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with socket:tesla_destination:voltage=230 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with socket:tesla_destination:voltage=400 @@ -1017,7 +1070,8 @@ This tagrendering has labels ### current-socket:tesla_destination The question is `What current do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with socket:tesla_destination:current=16 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with socket:tesla_destination:current=32 @@ -1029,7 +1083,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination The question is `What power output does a single plug of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with socket:tesla_destination:output=11 kW - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with socket:tesla_destination:output=22 kW @@ -1041,7 +1096,8 @@ This tagrendering has labels ### plugs-amount-socket:USB-A The question is `How much plugs of type USB to charge phones and small electronics are available here?` -*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set + +*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set. This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0 This tagrendering has labels @@ -1050,7 +1106,8 @@ This tagrendering has labels ### voltage-socket:USB-A The question is `What voltage do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set + +*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set. - *USB to charge phones and small electronics outputs 5 volt* is shown if with socket:USB-A:voltage=5 @@ -1061,7 +1118,8 @@ This tagrendering has labels ### current-socket:USB-A The question is `What current do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set. - *USB to charge phones and small electronics outputs at most 1 A* is shown if with socket:USB-A:current=1 - *USB to charge phones and small electronics outputs at most 2 A* is shown if with socket:USB-A:current=2 @@ -1073,7 +1131,8 @@ This tagrendering has labels ### power-output-socket:USB-A The question is `What power output does a single plug of type USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set. - *USB to charge phones and small electronics outputs at most 5W* is shown if with socket:USB-A:output=5W - *USB to charge phones and small electronics outputs at most 10W* is shown if with socket:USB-A:output=10W @@ -1085,7 +1144,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_3pin The question is `How much plugs of type Bosch Active Connect with 3 pins and cable are available here?` -*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set + +*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1094,7 +1154,8 @@ This tagrendering has labels ### voltage-socket:bosch_3pin The question is `What voltage do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set + +*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1103,7 +1164,8 @@ This tagrendering has labels ### current-socket:bosch_3pin The question is `What current do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1112,7 +1174,8 @@ This tagrendering has labels ### power-output-socket:bosch_3pin The question is `What power output does a single plug of type Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1121,7 +1184,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_5pin The question is `How much plugs of type Bosch Active Connect with 5 pins and cable are available here?` -*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set + +*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1130,7 +1194,8 @@ This tagrendering has labels ### voltage-socket:bosch_5pin The question is `What voltage do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set + +*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1139,7 +1204,8 @@ This tagrendering has labels ### current-socket:bosch_5pin The question is `What current do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1148,7 +1214,8 @@ This tagrendering has labels ### power-output-socket:bosch_5pin The question is `What power output does a single plug of type Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1157,7 +1224,8 @@ This tagrendering has labels ### plugs-amount-socket:bs1363 The question is `How much plugs of type BS1363 (Type G) are available here?` -*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set + +*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0 This tagrendering has labels @@ -1166,7 +1234,8 @@ This tagrendering has labels ### voltage-socket:bs1363 The question is `What voltage do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set + +*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set. - *BS1363 (Type G) outputs 230 volt* is shown if with socket:bs1363:voltage=230 @@ -1177,7 +1246,8 @@ This tagrendering has labels ### current-socket:bs1363 The question is `What current do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set. - *BS1363 (Type G) outputs at most 13 A* is shown if with socket:bs1363:current=13 @@ -1188,7 +1258,8 @@ This tagrendering has labels ### power-output-socket:bs1363 The question is `What power output does a single plug of type BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set. - *BS1363 (Type G) outputs at most 3kW* is shown if with socket:bs1363:output=3kW @@ -1199,7 +1270,8 @@ This tagrendering has labels ### plugs-amount-socket:nema5_15 The question is `How much plugs of type NEMA 5-15 (Type B) are available here?` -*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set + +*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0 This tagrendering has labels @@ -1208,7 +1280,8 @@ This tagrendering has labels ### voltage-socket:nema5_15 The question is `What voltage do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set + +*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set. - *NEMA 5-15 (Type B) outputs 120 volt* is shown if with socket:nema5_15:voltage=120 @@ -1219,7 +1292,8 @@ This tagrendering has labels ### current-socket:nema5_15 The question is `What current do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set. - *NEMA 5-15 (Type B) outputs at most 15 A* is shown if with socket:nema5_15:current=15 @@ -1230,7 +1304,8 @@ This tagrendering has labels ### power-output-socket:nema5_15 The question is `What power output does a single plug of type NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set. - *NEMA 5-15 (Type B) outputs at most 1.8 kW* is shown if with socket:nema5_15:output=1.8 kW @@ -1241,7 +1316,8 @@ This tagrendering has labels ### plugs-amount-socket:sev1011_t23 The question is `How much plugs of type SEV 1011 T23 (Type J) are available here?` -*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set + +*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set. This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0 This tagrendering has labels @@ -1250,7 +1326,8 @@ This tagrendering has labels ### voltage-socket:sev1011_t23 The question is `What voltage do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set + +*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set. - *SEV 1011 T23 (Type J) outputs 230 volt* is shown if with socket:sev1011_t23:voltage=230 @@ -1261,7 +1338,8 @@ This tagrendering has labels ### current-socket:sev1011_t23 The question is `What current do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set. - *SEV 1011 T23 (Type J) outputs at most 16 A* is shown if with socket:sev1011_t23:current=16 @@ -1272,7 +1350,8 @@ This tagrendering has labels ### power-output-socket:sev1011_t23 The question is `What power output does a single plug of type SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set. - *SEV 1011 T23 (Type J) outputs at most 3.7 kW* is shown if with socket:sev1011_t23:output=3.7 kW @@ -1283,7 +1362,8 @@ This tagrendering has labels ### plugs-amount-socket:as3112 The question is `How much plugs of type AS3112 (Type I) are available here?` -*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set + +*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set. This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0 This tagrendering has labels @@ -1292,7 +1372,8 @@ This tagrendering has labels ### voltage-socket:as3112 The question is `What voltage do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set + +*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set. - *AS3112 (Type I) outputs 230 volt* is shown if with socket:as3112:voltage=230 @@ -1303,7 +1384,8 @@ This tagrendering has labels ### current-socket:as3112 The question is `What current do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set. - *AS3112 (Type I) outputs at most 10 A* is shown if with socket:as3112:current=10 @@ -1314,7 +1396,8 @@ This tagrendering has labels ### power-output-socket:as3112 The question is `What power output does a single plug of type AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set. - *AS3112 (Type I) outputs at most 2.3 kW* is shown if with socket:as3112:output=2.3 kW @@ -1325,7 +1408,8 @@ This tagrendering has labels ### plugs-amount-socket:nema_5_20 The question is `How much plugs of type NEMA 5-20 (Type B) are available here?` -*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set + +*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0 This tagrendering has labels @@ -1334,7 +1418,8 @@ This tagrendering has labels ### voltage-socket:nema_5_20 The question is `What voltage do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set + +*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set. - *NEMA 5-20 (Type B) outputs 120 volt* is shown if with socket:nema_5_20:voltage=120 @@ -1345,7 +1430,8 @@ This tagrendering has labels ### current-socket:nema_5_20 The question is `What current do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set. - *NEMA 5-20 (Type B) outputs at most 20 A* is shown if with socket:nema_5_20:current=20 @@ -1356,7 +1442,8 @@ This tagrendering has labels ### power-output-socket:nema_5_20 The question is `What power output does a single plug of type NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set. - *NEMA 5-20 (Type B) outputs at most 2.4 kW* is shown if with socket:nema_5_20:output=2.4 kW @@ -1367,7 +1454,8 @@ This tagrendering has labels ### OH The question is `When is this charging station opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -1385,7 +1473,8 @@ The question is `Does one have to pay to use this charging station?` ### charge The question is `How much does one have to pay to use this charging station?` -*Using this charging station costs {charge}* is shown if `charge` is set + +*Using this charging station costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes @@ -1405,7 +1494,8 @@ This tagrendering is only visible in the popup if the following condition is met ### app-name The question is `What is the name of the app used for payment?` -*Payment can be done using the app {payment:app}* is shown if `payment:app` is set + +*Payment can be done using the app {payment:app}* is shown if `payment:app` is set. This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no @@ -1425,14 +1515,16 @@ The question is `What kind of authentication is available at the charging statio ### Auth phone The question is `What's the phone number for authentication call or SMS?` -*Authenticate by calling or SMS'ing to {authentication:phone_call:number}* is shown if `authentication:phone_call:number` is set + +*Authenticate by calling or SMS'ing to {authentication:phone_call:number}* is shown if `authentication:phone_call:number` is set. This tagrendering is only visible in the popup if the following condition is met: authentication:phone_call=yes | authentication:short_message=yes ### maxstay The question is `What is the maximum amount of time one is allowed to stay here?` -*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set + +*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set. - *There is no limit to the amount of time one can stay here* is shown if with maxstay=unlimited @@ -1441,7 +1533,8 @@ This tagrendering is only visible in the popup if the following condition is met ### Network The question is `Is this charging station part of a network?` -*Part of the network {network}* is shown if `network` is set + +*Part of the network {network}* is shown if `network` is set. - *Not part of a bigger network, e.g. because the charging station is maintained by a local business* is shown if with no:network=yes - *Not part of a bigger network* is shown if with network=none. _This option cannot be chosen as answer_ @@ -1455,28 +1548,33 @@ The question is `Is this charging station part of a network?` ### Operator The question is `Who is the operator of this charging station?` -*This charging station is operated by {operator}* is shown if `operator` is set + +*This charging station is operated by {operator}* is shown if `operator` is set. - *Actually, {operator} is the network* is shown if with network= ### phone The question is `What number can one call if there is a problem with this charging station?` -*In case of problems, call {phone}* is shown if `phone` is set + +*In case of problems, call {phone}* is shown if `phone` is set. ### email The question is `What is the email address of the operator?` -*In case of problems, send an email to {email}* is shown if `email` is set + +*In case of problems, send an email to {email}* is shown if `email` is set. ### website The question is `What is the website where one can find more information about this charging station?` -*More info on {website}* is shown if `website` is set + +*More info on {website}* is shown if `website` is set. ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -1486,7 +1584,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -1500,7 +1599,8 @@ This tagrendering has labels ### ref The question is `What is the reference number of this charging station?` -*Reference number is {ref}* is shown if `ref` is set + +*Reference number is {ref}* is shown if `ref` is set. This tagrendering is only visible in the popup if the following condition is met: network~.+ @@ -1524,26 +1624,31 @@ The question is `Does one have to pay a parking fee while charging?` ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### questions-technical _This tagrendering has no question and is thus read-only_ + *

Technical questions

The questions below are very technical. Feel free to ignore them
{questions(technical)}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/charging_station_ebikes.md b/Docs/Layers/charging_station_ebikes.md index 10c0fa4aa9..9863e112a5 100644 --- a/Docs/Layers/charging_station_ebikes.md +++ b/Docs/Layers/charging_station_ebikes.md @@ -374,6 +374,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Type @@ -389,7 +390,8 @@ The question is `Which vehicles are allowed to charge here?` ### access The question is `Who is allowed to use this charging station?` -*Access is {access}* is shown if `access` is set + +*Access is {access}* is shown if `access` is set. - *Anyone can use this charging station (payment might be needed)* is shown if with access=yes - *Anyone can use this charging station (payment might be needed)* is shown if with access=public. _This option cannot be chosen as answer_ @@ -401,7 +403,8 @@ The question is `Who is allowed to use this charging station?` ### capacity The question is `How much vehicles can be charged here at the same time?` -*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set + +*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set. ### Available_charging_stations (generated) @@ -453,7 +456,8 @@ The question is `Which charging connections are available here?` ### plugs-amount-socket:schuko The question is `How much plugs of type Schuko wall plug without ground pin (CEE7/4 type F) are available here?` -*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set + +*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set. This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0 This tagrendering has labels @@ -462,7 +466,8 @@ This tagrendering has labels ### voltage-socket:schuko The question is `What voltage do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with socket:schuko:voltage=230 @@ -473,7 +478,8 @@ This tagrendering has labels ### current-socket:schuko The question is `What current do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with socket:schuko:current=16 @@ -484,7 +490,8 @@ This tagrendering has labels ### power-output-socket:schuko The question is `What power output does a single plug of type Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with socket:schuko:output=3.6 kW @@ -495,7 +502,8 @@ This tagrendering has labels ### plugs-amount-socket:typee The question is `How much plugs of type European wall plug with ground pin (CEE7/4 type E) are available here?` -*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set + +*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set. This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0 This tagrendering has labels @@ -504,7 +512,8 @@ This tagrendering has labels ### voltage-socket:typee The question is `What voltage do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with socket:typee:voltage=230 @@ -515,7 +524,8 @@ This tagrendering has labels ### current-socket:typee The question is `What current do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with socket:typee:current=16 @@ -526,7 +536,8 @@ This tagrendering has labels ### power-output-socket:typee The question is `What power output does a single plug of type European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with socket:typee:output=3 kW - *European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with socket:typee:output=22 kW @@ -538,7 +549,8 @@ This tagrendering has labels ### plugs-amount-socket:chademo The question is `How much plugs of type Chademo are available here?` -*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set + +*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0 This tagrendering has labels @@ -547,7 +559,8 @@ This tagrendering has labels ### voltage-socket:chademo The question is `What voltage do the plugs with Chademo offer?` -*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set + +*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set. - *Chademo outputs 500 volt* is shown if with socket:chademo:voltage=500 @@ -558,7 +571,8 @@ This tagrendering has labels ### current-socket:chademo The question is `What current do the plugs with Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set + +*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set. - *Chademo outputs at most 120 A* is shown if with socket:chademo:current=120 @@ -569,7 +583,8 @@ This tagrendering has labels ### power-output-socket:chademo The question is `What power output does a single plug of type Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set + +*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set. - *Chademo outputs at most 50 kW* is shown if with socket:chademo:output=50 kW @@ -580,7 +595,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_cable The question is `How much plugs of type Type 1 with cable (J1772) are available here?` -*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set + +*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0 This tagrendering has labels @@ -589,7 +605,8 @@ This tagrendering has labels ### voltage-socket:type1_cable The question is `What voltage do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set + +*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set. - *Type 1 with cable (J1772) outputs 200 volt* is shown if with socket:type1_cable:voltage=200 - *Type 1 with cable (J1772) outputs 240 volt* is shown if with socket:type1_cable:voltage=240 @@ -601,7 +618,8 @@ This tagrendering has labels ### current-socket:type1_cable The question is `What current do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set. - *Type 1 with cable (J1772) outputs at most 32 A* is shown if with socket:type1_cable:current=32 @@ -612,7 +630,8 @@ This tagrendering has labels ### power-output-socket:type1_cable The question is `What power output does a single plug of type Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set. - *Type 1 with cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1_cable:output=3.7 kW - *Type 1 with cable (J1772) outputs at most 7 kW* is shown if with socket:type1_cable:output=7 kW @@ -624,7 +643,8 @@ This tagrendering has labels ### plugs-amount-socket:type1 The question is `How much plugs of type Type 1 without cable (J1772) are available here?` -*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set + +*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0 This tagrendering has labels @@ -633,7 +653,8 @@ This tagrendering has labels ### voltage-socket:type1 The question is `What voltage do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set + +*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set. - *Type 1 without cable (J1772) outputs 200 volt* is shown if with socket:type1:voltage=200 - *Type 1 without cable (J1772) outputs 240 volt* is shown if with socket:type1:voltage=240 @@ -645,7 +666,8 @@ This tagrendering has labels ### current-socket:type1 The question is `What current do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set. - *Type 1 without cable (J1772) outputs at most 32 A* is shown if with socket:type1:current=32 @@ -656,7 +678,8 @@ This tagrendering has labels ### power-output-socket:type1 The question is `What power output does a single plug of type Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set. - *Type 1 without cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1:output=3.7 kW - *Type 1 without cable (J1772) outputs at most 6.6 kW* is shown if with socket:type1:output=6.6 kW @@ -670,7 +693,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_combo The question is `How much plugs of type Type 1 CCS (aka Type 1 Combo) are available here?` -*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set + +*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0 This tagrendering has labels @@ -679,7 +703,8 @@ This tagrendering has labels ### voltage-socket:type1_combo The question is `What voltage do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set + +*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set. - *Type 1 CCS (aka Type 1 Combo) outputs 400 volt* is shown if with socket:type1_combo:voltage=400 - *Type 1 CCS (aka Type 1 Combo) outputs 1000 volt* is shown if with socket:type1_combo:voltage=1000 @@ -691,7 +716,8 @@ This tagrendering has labels ### current-socket:type1_combo The question is `What current do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 A* is shown if with socket:type1_combo:current=50 - *Type 1 CCS (aka Type 1 Combo) outputs at most 125 A* is shown if with socket:type1_combo:current=125 @@ -703,7 +729,8 @@ This tagrendering has labels ### power-output-socket:type1_combo The question is `What power output does a single plug of type Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW* is shown if with socket:type1_combo:output=50 kW - *Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with socket:type1_combo:output=62.5 kW @@ -717,7 +744,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger The question is `How much plugs of type Tesla Supercharger are available here?` -*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set + +*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0 This tagrendering has labels @@ -726,7 +754,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger The question is `What voltage do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set + +*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set. - *Tesla Supercharger outputs 480 volt* is shown if with socket:tesla_supercharger:voltage=480 @@ -737,7 +766,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger The question is `What current do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set. - *Tesla Supercharger outputs at most 125 A* is shown if with socket:tesla_supercharger:current=125 - *Tesla Supercharger outputs at most 350 A* is shown if with socket:tesla_supercharger:current=350 @@ -749,7 +779,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger The question is `What power output does a single plug of type Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set. - *Tesla Supercharger outputs at most 120 kW* is shown if with socket:tesla_supercharger:output=120 kW - *Tesla Supercharger outputs at most 150 kW* is shown if with socket:tesla_supercharger:output=150 kW @@ -762,7 +793,8 @@ This tagrendering has labels ### plugs-amount-socket:type2 The question is `How much plugs of type Type 2 (mennekes) are available here?` -*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set + +*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0 This tagrendering has labels @@ -771,7 +803,8 @@ This tagrendering has labels ### voltage-socket:type2 The question is `What voltage do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set + +*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set. - *Type 2 (mennekes) outputs 230 volt* is shown if with socket:type2:voltage=230 - *Type 2 (mennekes) outputs 400 volt* is shown if with socket:type2:voltage=400 @@ -783,7 +816,8 @@ This tagrendering has labels ### current-socket:type2 The question is `What current do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set. - *Type 2 (mennekes) outputs at most 16 A* is shown if with socket:type2:current=16 - *Type 2 (mennekes) outputs at most 32 A* is shown if with socket:type2:current=32 @@ -795,7 +829,8 @@ This tagrendering has labels ### power-output-socket:type2 The question is `What power output does a single plug of type Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set. - *Type 2 (mennekes) outputs at most 11 kW* is shown if with socket:type2:output=11 kW - *Type 2 (mennekes) outputs at most 22 kW* is shown if with socket:type2:output=22 kW @@ -807,7 +842,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_combo The question is `How much plugs of type Type 2 CCS (mennekes) are available here?` -*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set + +*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0 This tagrendering has labels @@ -816,7 +852,8 @@ This tagrendering has labels ### voltage-socket:type2_combo The question is `What voltage do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set + +*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set. - *Type 2 CCS (mennekes) outputs 500 volt* is shown if with socket:type2_combo:voltage=500 - *Type 2 CCS (mennekes) outputs 920 volt* is shown if with socket:type2_combo:voltage=920 @@ -828,7 +865,8 @@ This tagrendering has labels ### current-socket:type2_combo The question is `What current do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set. - *Type 2 CCS (mennekes) outputs at most 125 A* is shown if with socket:type2_combo:current=125 - *Type 2 CCS (mennekes) outputs at most 350 A* is shown if with socket:type2_combo:current=350 @@ -840,7 +878,8 @@ This tagrendering has labels ### power-output-socket:type2_combo The question is `What power output does a single plug of type Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set. - *Type 2 CCS (mennekes) outputs at most 50 kW* is shown if with socket:type2_combo:output=50 kW @@ -851,7 +890,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_cable The question is `How much plugs of type Type 2 with cable (mennekes) are available here?` -*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set + +*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0 This tagrendering has labels @@ -860,7 +900,8 @@ This tagrendering has labels ### voltage-socket:type2_cable The question is `What voltage do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set + +*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set. - *Type 2 with cable (mennekes) outputs 230 volt* is shown if with socket:type2_cable:voltage=230 - *Type 2 with cable (mennekes) outputs 400 volt* is shown if with socket:type2_cable:voltage=400 @@ -872,7 +913,8 @@ This tagrendering has labels ### current-socket:type2_cable The question is `What current do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set. - *Type 2 with cable (mennekes) outputs at most 16 A* is shown if with socket:type2_cable:current=16 - *Type 2 with cable (mennekes) outputs at most 32 A* is shown if with socket:type2_cable:current=32 @@ -884,7 +926,8 @@ This tagrendering has labels ### power-output-socket:type2_cable The question is `What power output does a single plug of type Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set. - *Type 2 with cable (mennekes) outputs at most 11 kW* is shown if with socket:type2_cable:output=11 kW - *Type 2 with cable (mennekes) outputs at most 22 kW* is shown if with socket:type2_cable:output=22 kW @@ -896,7 +939,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger_ccs The question is `How much plugs of type Tesla Supercharger CCS (a branded type2_css) are available here?` -*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set + +*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0 This tagrendering has labels @@ -905,7 +949,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger_ccs The question is `What voltage do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs 500 volt* is shown if with socket:tesla_supercharger_ccs:voltage=500 - *Tesla Supercharger CCS (a branded type2_css) outputs 920 volt* is shown if with socket:tesla_supercharger_ccs:voltage=920 @@ -917,7 +962,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger_ccs The question is `What current do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A* is shown if with socket:tesla_supercharger_ccs:current=125 - *Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A* is shown if with socket:tesla_supercharger_ccs:current=350 @@ -929,7 +975,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger_ccs The question is `What power output does a single plug of type Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW* is shown if with socket:tesla_supercharger_ccs:output=50 kW @@ -940,7 +987,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination_us The question is `How much plugs of type Tesla Supercharger (destination) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -949,7 +997,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination_us The question is `What voltage do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla Supercharger (destination) outputs 480 volt* is shown if with socket:tesla_destination:voltage=480 @@ -960,7 +1009,8 @@ This tagrendering has labels ### current-socket:tesla_destination_us The question is `What current do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla Supercharger (destination) outputs at most 125 A* is shown if with socket:tesla_destination:current=125 - *Tesla Supercharger (destination) outputs at most 350 A* is shown if with socket:tesla_destination:current=350 @@ -972,7 +1022,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination_us The question is `What power output does a single plug of type Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla Supercharger (destination) outputs at most 120 kW* is shown if with socket:tesla_destination:output=120 kW - *Tesla Supercharger (destination) outputs at most 150 kW* is shown if with socket:tesla_destination:output=150 kW @@ -985,7 +1036,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination The question is `How much plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -994,7 +1046,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination The question is `What voltage do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with socket:tesla_destination:voltage=230 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with socket:tesla_destination:voltage=400 @@ -1006,7 +1059,8 @@ This tagrendering has labels ### current-socket:tesla_destination The question is `What current do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with socket:tesla_destination:current=16 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with socket:tesla_destination:current=32 @@ -1018,7 +1072,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination The question is `What power output does a single plug of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with socket:tesla_destination:output=11 kW - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with socket:tesla_destination:output=22 kW @@ -1030,7 +1085,8 @@ This tagrendering has labels ### plugs-amount-socket:USB-A The question is `How much plugs of type USB to charge phones and small electronics are available here?` -*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set + +*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set. This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0 This tagrendering has labels @@ -1039,7 +1095,8 @@ This tagrendering has labels ### voltage-socket:USB-A The question is `What voltage do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set + +*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set. - *USB to charge phones and small electronics outputs 5 volt* is shown if with socket:USB-A:voltage=5 @@ -1050,7 +1107,8 @@ This tagrendering has labels ### current-socket:USB-A The question is `What current do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set. - *USB to charge phones and small electronics outputs at most 1 A* is shown if with socket:USB-A:current=1 - *USB to charge phones and small electronics outputs at most 2 A* is shown if with socket:USB-A:current=2 @@ -1062,7 +1120,8 @@ This tagrendering has labels ### power-output-socket:USB-A The question is `What power output does a single plug of type USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set. - *USB to charge phones and small electronics outputs at most 5W* is shown if with socket:USB-A:output=5W - *USB to charge phones and small electronics outputs at most 10W* is shown if with socket:USB-A:output=10W @@ -1074,7 +1133,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_3pin The question is `How much plugs of type Bosch Active Connect with 3 pins and cable are available here?` -*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set + +*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1083,7 +1143,8 @@ This tagrendering has labels ### voltage-socket:bosch_3pin The question is `What voltage do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set + +*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1092,7 +1153,8 @@ This tagrendering has labels ### current-socket:bosch_3pin The question is `What current do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1101,7 +1163,8 @@ This tagrendering has labels ### power-output-socket:bosch_3pin The question is `What power output does a single plug of type Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1110,7 +1173,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_5pin The question is `How much plugs of type Bosch Active Connect with 5 pins and cable are available here?` -*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set + +*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1119,7 +1183,8 @@ This tagrendering has labels ### voltage-socket:bosch_5pin The question is `What voltage do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set + +*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1128,7 +1193,8 @@ This tagrendering has labels ### current-socket:bosch_5pin The question is `What current do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1137,7 +1203,8 @@ This tagrendering has labels ### power-output-socket:bosch_5pin The question is `What power output does a single plug of type Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1146,7 +1213,8 @@ This tagrendering has labels ### plugs-amount-socket:bs1363 The question is `How much plugs of type BS1363 (Type G) are available here?` -*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set + +*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0 This tagrendering has labels @@ -1155,7 +1223,8 @@ This tagrendering has labels ### voltage-socket:bs1363 The question is `What voltage do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set + +*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set. - *BS1363 (Type G) outputs 230 volt* is shown if with socket:bs1363:voltage=230 @@ -1166,7 +1235,8 @@ This tagrendering has labels ### current-socket:bs1363 The question is `What current do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set. - *BS1363 (Type G) outputs at most 13 A* is shown if with socket:bs1363:current=13 @@ -1177,7 +1247,8 @@ This tagrendering has labels ### power-output-socket:bs1363 The question is `What power output does a single plug of type BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set. - *BS1363 (Type G) outputs at most 3kW* is shown if with socket:bs1363:output=3kW @@ -1188,7 +1259,8 @@ This tagrendering has labels ### plugs-amount-socket:nema5_15 The question is `How much plugs of type NEMA 5-15 (Type B) are available here?` -*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set + +*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0 This tagrendering has labels @@ -1197,7 +1269,8 @@ This tagrendering has labels ### voltage-socket:nema5_15 The question is `What voltage do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set + +*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set. - *NEMA 5-15 (Type B) outputs 120 volt* is shown if with socket:nema5_15:voltage=120 @@ -1208,7 +1281,8 @@ This tagrendering has labels ### current-socket:nema5_15 The question is `What current do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set. - *NEMA 5-15 (Type B) outputs at most 15 A* is shown if with socket:nema5_15:current=15 @@ -1219,7 +1293,8 @@ This tagrendering has labels ### power-output-socket:nema5_15 The question is `What power output does a single plug of type NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set. - *NEMA 5-15 (Type B) outputs at most 1.8 kW* is shown if with socket:nema5_15:output=1.8 kW @@ -1230,7 +1305,8 @@ This tagrendering has labels ### plugs-amount-socket:sev1011_t23 The question is `How much plugs of type SEV 1011 T23 (Type J) are available here?` -*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set + +*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set. This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0 This tagrendering has labels @@ -1239,7 +1315,8 @@ This tagrendering has labels ### voltage-socket:sev1011_t23 The question is `What voltage do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set + +*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set. - *SEV 1011 T23 (Type J) outputs 230 volt* is shown if with socket:sev1011_t23:voltage=230 @@ -1250,7 +1327,8 @@ This tagrendering has labels ### current-socket:sev1011_t23 The question is `What current do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set. - *SEV 1011 T23 (Type J) outputs at most 16 A* is shown if with socket:sev1011_t23:current=16 @@ -1261,7 +1339,8 @@ This tagrendering has labels ### power-output-socket:sev1011_t23 The question is `What power output does a single plug of type SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set. - *SEV 1011 T23 (Type J) outputs at most 3.7 kW* is shown if with socket:sev1011_t23:output=3.7 kW @@ -1272,7 +1351,8 @@ This tagrendering has labels ### plugs-amount-socket:as3112 The question is `How much plugs of type AS3112 (Type I) are available here?` -*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set + +*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set. This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0 This tagrendering has labels @@ -1281,7 +1361,8 @@ This tagrendering has labels ### voltage-socket:as3112 The question is `What voltage do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set + +*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set. - *AS3112 (Type I) outputs 230 volt* is shown if with socket:as3112:voltage=230 @@ -1292,7 +1373,8 @@ This tagrendering has labels ### current-socket:as3112 The question is `What current do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set. - *AS3112 (Type I) outputs at most 10 A* is shown if with socket:as3112:current=10 @@ -1303,7 +1385,8 @@ This tagrendering has labels ### power-output-socket:as3112 The question is `What power output does a single plug of type AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set. - *AS3112 (Type I) outputs at most 2.3 kW* is shown if with socket:as3112:output=2.3 kW @@ -1314,7 +1397,8 @@ This tagrendering has labels ### plugs-amount-socket:nema_5_20 The question is `How much plugs of type NEMA 5-20 (Type B) are available here?` -*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set + +*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0 This tagrendering has labels @@ -1323,7 +1407,8 @@ This tagrendering has labels ### voltage-socket:nema_5_20 The question is `What voltage do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set + +*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set. - *NEMA 5-20 (Type B) outputs 120 volt* is shown if with socket:nema_5_20:voltage=120 @@ -1334,7 +1419,8 @@ This tagrendering has labels ### current-socket:nema_5_20 The question is `What current do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set. - *NEMA 5-20 (Type B) outputs at most 20 A* is shown if with socket:nema_5_20:current=20 @@ -1345,7 +1431,8 @@ This tagrendering has labels ### power-output-socket:nema_5_20 The question is `What power output does a single plug of type NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set. - *NEMA 5-20 (Type B) outputs at most 2.4 kW* is shown if with socket:nema_5_20:output=2.4 kW @@ -1356,7 +1443,8 @@ This tagrendering has labels ### OH The question is `When is this charging station opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -1374,7 +1462,8 @@ The question is `Does one have to pay to use this charging station?` ### charge The question is `How much does one have to pay to use this charging station?` -*Using this charging station costs {charge}* is shown if `charge` is set + +*Using this charging station costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes @@ -1394,7 +1483,8 @@ This tagrendering is only visible in the popup if the following condition is met ### app-name The question is `What is the name of the app used for payment?` -*Payment can be done using the app {payment:app}* is shown if `payment:app` is set + +*Payment can be done using the app {payment:app}* is shown if `payment:app` is set. This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no @@ -1414,14 +1504,16 @@ The question is `What kind of authentication is available at the charging statio ### Auth phone The question is `What's the phone number for authentication call or SMS?` -*Authenticate by calling or SMS'ing to {authentication:phone_call:number}* is shown if `authentication:phone_call:number` is set + +*Authenticate by calling or SMS'ing to {authentication:phone_call:number}* is shown if `authentication:phone_call:number` is set. This tagrendering is only visible in the popup if the following condition is met: authentication:phone_call=yes | authentication:short_message=yes ### maxstay The question is `What is the maximum amount of time one is allowed to stay here?` -*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set + +*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set. - *There is no limit to the amount of time one can stay here* is shown if with maxstay=unlimited @@ -1430,7 +1522,8 @@ This tagrendering is only visible in the popup if the following condition is met ### Network The question is `Is this charging station part of a network?` -*Part of the network {network}* is shown if `network` is set + +*Part of the network {network}* is shown if `network` is set. - *Not part of a bigger network, e.g. because the charging station is maintained by a local business* is shown if with no:network=yes - *Not part of a bigger network* is shown if with network=none. _This option cannot be chosen as answer_ @@ -1444,28 +1537,33 @@ The question is `Is this charging station part of a network?` ### Operator The question is `Who is the operator of this charging station?` -*This charging station is operated by {operator}* is shown if `operator` is set + +*This charging station is operated by {operator}* is shown if `operator` is set. - *Actually, {operator} is the network* is shown if with network= ### phone The question is `What number can one call if there is a problem with this charging station?` -*In case of problems, call {phone}* is shown if `phone` is set + +*In case of problems, call {phone}* is shown if `phone` is set. ### email The question is `What is the email address of the operator?` -*In case of problems, send an email to {email}* is shown if `email` is set + +*In case of problems, send an email to {email}* is shown if `email` is set. ### website The question is `What is the website where one can find more information about this charging station?` -*More info on {website}* is shown if `website` is set + +*More info on {website}* is shown if `website` is set. ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -1475,7 +1573,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -1489,7 +1588,8 @@ This tagrendering has labels ### ref The question is `What is the reference number of this charging station?` -*Reference number is {ref}* is shown if `ref` is set + +*Reference number is {ref}* is shown if `ref` is set. This tagrendering is only visible in the popup if the following condition is met: network~.+ @@ -1513,26 +1613,31 @@ The question is `Does one have to pay a parking fee while charging?` ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### questions-technical _This tagrendering has no question and is thus read-only_ + *

Technical questions

The questions below are very technical. Feel free to ignore them
{questions(technical)}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/childcare.md b/Docs/Layers/childcare.md index ca8ba3326f..4d08e99cd0 100644 --- a/Docs/Layers/childcare.md +++ b/Docs/Layers/childcare.md @@ -75,12 +75,14 @@ Elements must match the expression **{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -90,7 +92,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -101,7 +104,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -111,7 +115,8 @@ This tagrendering has labels ### opening_hours The question is `When is this childcare opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -120,11 +125,13 @@ This tagrendering is only visible in the popup if the following condition is met ### capacity The question is `How much kids (at most) can be enrolled here?` -*This facility has room for {capacity} kids* is shown if `capacity` is set + +*This facility has room for {capacity} kids* is shown if `capacity` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -134,16 +141,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/cinema.md b/Docs/Layers/cinema.md index 67aeb5a3ae..a0c1db4e34 100644 --- a/Docs/Layers/cinema.md +++ b/Docs/Layers/cinema.md @@ -63,17 +63,20 @@ Elements must match the expression ** *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -83,7 +86,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -94,7 +98,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -104,7 +109,8 @@ This tagrendering has labels ### wikipedia Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor The question is `What is the corresponding Wikidata entity?` -*{wikipedia():max-height:25rem}* is shown if `wikidata` is set + +*{wikipedia():max-height:25rem}* is shown if `wikidata` is set. - *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ @@ -119,6 +125,7 @@ The question is `What type of cinema is this?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -128,11 +135,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/climbing_area.md b/Docs/Layers/climbing_area.md index 58119a2223..a53ee79104 100644 --- a/Docs/Layers/climbing_area.md +++ b/Docs/Layers/climbing_area.md @@ -93,26 +93,31 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _contained_climbing_route_ids): height: 9rem; overflow: hidden; border-radius:3rem; }* ### Contained routes length hist _This tagrendering has no question and is thus read-only_ + *

Length overview

{histogram(_length_hist)}* ### Contained routes hist _This tagrendering has no question and is thus read-only_ + *

Grades overview

{histogram(_difficulty_hist)}* ### Contained_climbing_routes _This tagrendering has no question and is thus read-only_ + *

Contains {_contained_climbing_routes_count} routes

    {_contained_climbing_routes}
* This tagrendering is only visible in the popup if the following condition is met: _contained_climbing_routes~.+ @@ -120,7 +125,8 @@ This tagrendering is only visible in the popup if the following condition is met ### name The question is `What is the name of this climbing opportunity?` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. - *This climbing opportunity doesn't have a name* is shown if with noname=yes & name= @@ -135,7 +141,8 @@ The question is `What kind of climbing opportunity is this?` ### Rock type (crag/rock/cliff only) The question is `What is the rock type here?` -*The rock type is {rock}* is shown if `rock` is set + +*The rock type is {rock}* is shown if `rock` is set. - *Limestone* is shown if with rock=limestone @@ -144,19 +151,22 @@ This tagrendering is only visible in the popup if the following condition is met ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### website The question is `Is there a (unofficial) website with more informations (e.g. topos)?` -*{url}* is shown if `url` is set + +*{url}* is shown if `url` is set. This tagrendering is only visible in the popup if the following condition is met: sport=climbing & club= & office= & leisure!~^(sports_centre)$ ### fee The question is `Is a fee required to climb here?` -*A fee of {charge} should be paid for climbing here* is shown if `charge` is set + +*A fee of {charge} should be paid for climbing here* is shown if `charge` is set. - *Climbing here is free of charge* is shown if with fee=no - *Paying a fee is required to climb here* is shown if with fee=yes & charge= @@ -173,6 +183,7 @@ The question is `Is bouldering possible here?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -182,6 +193,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/climbing_club.md b/Docs/Layers/climbing_club.md index 95f75cfa7e..70e52e7ca8 100644 --- a/Docs/Layers/climbing_club.md +++ b/Docs/Layers/climbing_club.md @@ -74,12 +74,14 @@ Elements must match **any** of the following expressions: ### climbing_club-name The question is `What is the name of this climbing club or NGO?` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -89,7 +91,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -100,7 +103,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -110,13 +114,15 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -126,11 +132,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/climbing_gym.md b/Docs/Layers/climbing_gym.md index f1c65f9d12..e90bcc9a65 100644 --- a/Docs/Layers/climbing_gym.md +++ b/Docs/Layers/climbing_gym.md @@ -135,17 +135,20 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### name The question is `What is the name of this climbing gym?` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -155,7 +158,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -165,7 +169,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -176,7 +181,8 @@ This tagrendering has labels ### fee The question is `Is a fee required to climb here?` -*A fee of {charge} should be paid for climbing here* is shown if `charge` is set + +*A fee of {charge} should be paid for climbing here* is shown if `charge` is set. - *Climbing here is free of charge* is shown if with fee=no - *Paying a fee is required to climb here* is shown if with fee=yes & charge= @@ -192,13 +198,15 @@ The question is `Which methods of payment are accepted here?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### bouldering @@ -249,7 +257,8 @@ This tagrendering is only visible in the popup if the following condition is met ### auto_belay_toprope The question is `Are there auto belays for top roping here?` -*There are {climbing:autobelay:toprope} auto belay devices for top roping* is shown if `climbing:autobelay:toprope` is set + +*There are {climbing:autobelay:toprope} auto belay devices for top roping* is shown if `climbing:autobelay:toprope` is set. - *There are no auto belays for top roping* is shown if with climbing:autobelay:toprope=no - *There are a number of auto belays for top roping* is shown if with climbing:autobelay:toprope=yes @@ -261,7 +270,8 @@ This tagrendering is only visible in the popup if the following condition is met ### auto_belay_lead The question is `Are there auto belays for lead climbing here?` -*There are {climbing:autobelay:sport} auto belays for lead climbing* is shown if `climbing:autobelay:sport` is set + +*There are {climbing:autobelay:sport} auto belays for lead climbing* is shown if `climbing:autobelay:sport` is set. - *There are no auto belays for lead climbing* is shown if with climbing:autobelay:sport=no - *There is a number of auto belays for lead climbing* is shown if with climbing:autobelay:sport=yes @@ -293,24 +303,28 @@ The question is `Can one rent a climbing rope here to use in the gym?` ### average_length The question is `What is the (average) length of the routes in meters?` -*The routes are {canonical(climbing:length)} long on average* is shown if `climbing:length` is set + +*The routes are {canonical(climbing:length)} long on average* is shown if `climbing:length` is set. ### min_difficulty The question is `What is the grade of the easiest route here, according to the french classification system?` -*The lowest grade is {climbing:grade:french:min} according to the french/belgian system* is shown if `climbing:grade:french:min` is set + +*The lowest grade is {climbing:grade:french:min} according to the french/belgian system* is shown if `climbing:grade:french:min` is set. ### max_difficulty The question is `What is the highest grade route here, according to the french classification system?` -*The highest grade is {climbing:grade:french:max} according to the french/belgian system* is shown if `climbing:grade:french:max` is set + +*The highest grade is {climbing:grade:french:max} according to the french/belgian system* is shown if `climbing:grade:french:max` is set. This tagrendering is only visible in the popup if the following condition is met: club= & office= & (climbing:sport=yes | sport=climbing) & climbing!~^(route)$ ### max_bolts The question is `How many bolts do routes in {title()} have at most?` -*The sport climbing routes here have at most {climbing:bolts:max} bolts.
This is without belay stations and indicates how much quickdraws a climber needs.
* is shown if `climbing:bolts:max` is set + +*The sport climbing routes here have at most {climbing:bolts:max} bolts.
This is without belay stations and indicates how much quickdraws a climber needs.
* is shown if `climbing:bolts:max` is set. ### Speed climbing? @@ -360,7 +374,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -371,6 +386,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -380,11 +396,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/climbing_opportunity.md b/Docs/Layers/climbing_opportunity.md index fb968c7785..4e90ff2693 100644 --- a/Docs/Layers/climbing_opportunity.md +++ b/Docs/Layers/climbing_opportunity.md @@ -47,6 +47,7 @@ Elements must match **all** of the following expressions: ### climbing-opportunity-name _This tagrendering has no question and is thus read-only_ + *{name}* This tagrendering is only visible in the popup if the following condition is met: name~.+ @@ -62,6 +63,7 @@ The question is `Is climbing possible here?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -71,6 +73,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/climbing_route.md b/Docs/Layers/climbing_route.md index 8de62d2a1e..15b3aadc17 100644 --- a/Docs/Layers/climbing_route.md +++ b/Docs/Layers/climbing_route.md @@ -74,45 +74,53 @@ Elements must match the expression **noname=yes & name= ### Length The question is `How long is this climbing route (in meters)?` -*This route is {canonical(climbing:length)} long* is shown if `climbing:length` is set + +*This route is {canonical(climbing:length)} long* is shown if `climbing:length` is set. ### Difficulty The question is `What is the grade of this climbing route according to the french/belgian system?` -*The grade is {climbing:grade:french} according to the french/belgian system* is shown if `climbing:grade:french` is set + +*The grade is {climbing:grade:french} according to the french/belgian system* is shown if `climbing:grade:french` is set. ### bolts The question is `How many bolts does this route have before reaching the anchor?` -*This route has {climbing:bolts} bolts.
This is without belay stations and indicates how much quickdraws a climber needs.
* is shown if `climbing:bolts` is set + +*This route has {climbing:bolts} bolts.
This is without belay stations and indicates how much quickdraws a climber needs.
* is shown if `climbing:bolts` is set. - *This route is not bolted* is shown if with climbing:bolted=no ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### Rock type via embedded feature _This tagrendering has no question and is thus read-only_ -*The rock type is {_embedding_features_with_rock:rock} as stated on the surrounding crag* is shown if `_embedding_features_with_rock:rock` is set + +*The rock type is {_embedding_features_with_rock:rock} as stated on the surrounding crag* is shown if `_embedding_features_with_rock:rock` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -122,11 +130,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/clock.md b/Docs/Layers/clock.md index de4a256ab6..d2d3939744 100644 --- a/Docs/Layers/clock.md +++ b/Docs/Layers/clock.md @@ -89,6 +89,7 @@ Elements must match the expression **faces=1 - *This clock has two faces* is shown if with faces=2 @@ -169,6 +171,7 @@ The question is `How many faces does this clock have?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -178,16 +181,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/crossings.md b/Docs/Layers/crossings.md index 70eafb8894..fb31e3590e 100644 --- a/Docs/Layers/crossings.md +++ b/Docs/Layers/crossings.md @@ -98,6 +98,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### signals @@ -113,7 +114,8 @@ This tagrendering is only visible in the popup if the following condition is met ### markings The question is `What kind of markings does this crossing have?` -*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set + +*This crossing has {crossing:markings} markings* is shown if `crossing:markings` is set. - *This crossing has no markings* is shown if with crossing:markings=no - *This crossing has zebra markings* is shown if with crossing:markings=zebra @@ -232,6 +234,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -241,11 +244,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/crossings_no_traffic_lights.md b/Docs/Layers/crossings_no_traffic_lights.md index 6fe4a3c085..ee51ff2cca 100644 --- a/Docs/Layers/crossings_no_traffic_lights.md +++ b/Docs/Layers/crossings_no_traffic_lights.md @@ -93,6 +93,7 @@ Elements must match the expression ** *This crossing has no markings* is shown if with crossing:markings=no - *This crossing has zebra markings* is shown if with crossing:markings=zebra @@ -227,6 +229,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -236,11 +239,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/cultural_places_without_etymology.md b/Docs/Layers/cultural_places_without_etymology.md index 571df61d7f..48198e7bcd 100644 --- a/Docs/Layers/cultural_places_without_etymology.md +++ b/Docs/Layers/cultural_places_without_etymology.md @@ -69,16 +69,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/cycle_highways.md b/Docs/Layers/cycle_highways.md index 3c315a81b0..6e952ca3c2 100644 --- a/Docs/Layers/cycle_highways.md +++ b/Docs/Layers/cycle_highways.md @@ -58,17 +58,20 @@ Elements must match the expression **state=proposed & note:state= - *This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)* is shown if with state=proposed & note:state=has_highway_no @@ -79,12 +82,14 @@ The question is `What is the state of this link?` ### cycle-highway-length _This tagrendering has no question and is thus read-only_ + *This part is {_length:km}km long* ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -94,11 +99,13 @@ This tagrendering has labels ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -108,6 +115,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/cyclestreets.md b/Docs/Layers/cyclestreets.md index 930b3ce703..faf183e3c6 100644 --- a/Docs/Layers/cyclestreets.md +++ b/Docs/Layers/cyclestreets.md @@ -58,6 +58,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### is_cyclestreet @@ -87,13 +88,15 @@ This tagrendering is only visible in the popup if the following condition is met ### future_cyclestreet The question is `When will this street become a cyclestreet?` -*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set + +*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set. This tagrendering is only visible in the popup if the following condition is met: proposed:cyclestreet=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -103,11 +106,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/cycleways_and_roads.md b/Docs/Layers/cycleways_and_roads.md index 820d2e57cd..c4d247e1bc 100644 --- a/Docs/Layers/cycleways_and_roads.md +++ b/Docs/Layers/cycleways_and_roads.md @@ -127,6 +127,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Cycleway type for a road @@ -176,7 +177,8 @@ This tagrendering is only visible in the popup if the following condition is met ### Maxspeed (for road) The question is `What is the maximum speed in this street?` -*The maximum speed on this road is {maxspeed} km/h* is shown if `maxspeed` is set + +*The maximum speed on this road is {maxspeed} km/h* is shown if `maxspeed` is set. - *The maximum speed is 20 km/h* is shown if with maxspeed=20 - *The maximum speed is 30 km/h* is shown if with maxspeed=30 @@ -187,7 +189,8 @@ The question is `What is the maximum speed in this street?` ### Cycleway:surface The question is `What is the surface of the cycleway made from?` -*This cyleway is made of {cycleway:surface}* is shown if `cycleway:surface` is set + +*This cyleway is made of {cycleway:surface}* is shown if `cycleway:surface` is set. - *This cycleway is unpaved* is shown if with cycleway:surface=unpaved. _This option cannot be chosen as answer_ - *This cycleway is paved* is shown if with cycleway:surface=paved. _This option cannot be chosen as answer_ @@ -208,7 +211,8 @@ This tagrendering is only visible in the popup if the following condition is met ### incline The question is `Does {title()} have an incline?` -*This road has an slope of {incline}* is shown if `incline` is set + +*This road has an slope of {incline}* is shown if `incline` is set. - *There is (probably) no incline here* is shown if with incline=. _This option cannot be chosen as answer_ - *This road has a slope* is shown if with incline=up | incline=down | incline=yes. _This option cannot be chosen as answer_ @@ -231,7 +235,8 @@ This tagrendering is only visible in the popup if the following condition is met ### Surface of the road The question is `What is the surface of the street made from?` -*This road is made of {surface}* is shown if `surface` is set + +*This road is made of {surface}* is shown if `surface` is set. - *This cycleway is unhardened* is shown if with surface=unpaved. _This option cannot be chosen as answer_ - *This cycleway is paved* is shown if with surface=paved. _This option cannot be chosen as answer_ @@ -265,7 +270,8 @@ This tagrendering is only visible in the popup if the following condition is met ### width The question is `What is the carriage width of this road (in meters)?` -*The carriage width of this road is {width}m* is shown if `width` is set + +*The carriage width of this road is {width}m* is shown if `width` is set. ### cycleway-lane-track-traffic-signs @@ -311,7 +317,8 @@ This tagrendering is only visible in the popup if the following condition is met ### cycleways_and_roads-cycleway:buffer The question is `How wide is the gap between the cycleway and the road?` -*The buffer besides this cycleway is {cycleway:buffer} m* is shown if `cycleway:buffer` is set + +*The buffer besides this cycleway is {cycleway:buffer} m* is shown if `cycleway:buffer` is set. This tagrendering is only visible in the popup if the following condition is met: cycleway=track | cycleway=lane @@ -340,6 +347,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -349,11 +357,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/cyclist_waiting_aid.md b/Docs/Layers/cyclist_waiting_aid.md index d207a26cbe..9999ad5776 100644 --- a/Docs/Layers/cyclist_waiting_aid.md +++ b/Docs/Layers/cyclist_waiting_aid.md @@ -63,6 +63,7 @@ Elements must match the expression **direction=forward @@ -93,6 +95,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -102,11 +105,13 @@ This tagrendering has labels ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/defibrillator.md b/Docs/Layers/defibrillator.md index 179ef58f80..fefbdb66a8 100644 --- a/Docs/Layers/defibrillator.md +++ b/Docs/Layers/defibrillator.md @@ -104,6 +104,7 @@ Elements must match the expression **access=yes - *Publicly accessible* is shown if with access=public. _This option cannot be chosen as answer_ @@ -127,7 +129,8 @@ The question is `Is this defibrillator freely accessible?` ### defibrillator-level The question is `On which floor is this defibrillator located?` -*This defibrillator is on floor {level}* is shown if `level` is set + +*This defibrillator is on floor {level}* is shown if `level` is set. - *This defibrillator is on the ground floor* is shown if with level=0 - *This defibrillator is on the first floor* is shown if with level=1 @@ -137,17 +140,20 @@ This tagrendering is only visible in the popup if the following condition is met ### defibrillator-defibrillator:location The question is `Please give some explanation on where the defibrillator can be found (in the local language)` -*Extra information about the location (in the local language):
{defibrillator:location}* is shown if `defibrillator:location` is set + +*Extra information about the location (in the local language):
{defibrillator:location}* is shown if `defibrillator:location` is set. ### defibrillator-defibrillator:location:en The question is `Please give some explanation on where the defibrillator can be found (in English)` -*Extra information about the location (in English):
{defibrillator:location:en}* is shown if `defibrillator:location:en` is set + +*Extra information about the location (in English):
{defibrillator:location:en}* is shown if `defibrillator:location:en` is set. ### defibrillator-defibrillator:location:fr The question is `Please give some explanation on where the defibrillator can be found (in French)` -*Extra information about the location (in French):
{defibrillator:location:fr}* is shown if `defibrillator:location:fr` is set + +*Extra information about the location (in French):
{defibrillator:location:fr}* is shown if `defibrillator:location:fr` is set. This tagrendering is only visible in the popup if the following condition is met: _country=be | defibrillator:location:fr~.+ @@ -163,22 +169,26 @@ The question is `Is this place accessible with a wheelchair?` ### defibrillator-ref The question is `What is the official identification number of the device? (if visible on device)` -*Official identification number of the device: {ref}* is shown if `ref` is set + +*Official identification number of the device: {ref}* is shown if `ref` is set. ### defibrillator-email The question is `What is the email for questions about this defibrillator?` -*Email for questions about this defibrillator: {email}* is shown if `email` is set + +*Email for questions about this defibrillator: {email}* is shown if `email` is set. ### defibrillator-phone The question is `What is the phone number for questions about this defibrillator?` -*Telephone for questions about this defibrillator: {phone}* is shown if `phone` is set + +*Telephone for questions about this defibrillator: {phone}* is shown if `phone` is set. ### opening_hours_24_7 The question is `At what times is this defibrillator available?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -187,23 +197,27 @@ The question is `At what times is this defibrillator available?` ### defibrillator-description The question is `Is there any useful information for users that you haven't been able to describe above? (leave blank if no)` -*Additional information: {description}* is shown if `description` is set + +*Additional information: {description}* is shown if `description` is set. ### defibrillator-survey:date The question is `When was this defibrillator last surveyed?` -*This defibrillator was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This defibrillator was last surveyed on {survey:date}* is shown if `survey:date` is set. - *Checked today!* is shown if with survey:date= ### defibrillator-fixme The question is `Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)` -*Extra information for OpenStreetMap experts: {fixme}* is shown if `fixme` is set + +*Extra information for OpenStreetMap experts: {fixme}* is shown if `fixme` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -213,16 +227,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/dentist.md b/Docs/Layers/dentist.md index 719435626c..70c4c8106a 100644 --- a/Docs/Layers/dentist.md +++ b/Docs/Layers/dentist.md @@ -88,19 +88,22 @@ Elements must match the expression **opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -110,7 +113,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -121,7 +125,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -131,6 +136,7 @@ This tagrendering has labels ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -139,6 +145,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -150,7 +157,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -161,7 +169,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -170,7 +179,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -181,11 +191,13 @@ This tagrendering has labels ### name The question is `What is the name of this dentist?` -*This dentist is called {name}* is shown if `name` is set + +*This dentist is called {name}* is shown if `name` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -195,16 +207,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/direction.md b/Docs/Layers/direction.md index 0ec72f3605..d676a10b8d 100644 --- a/Docs/Layers/direction.md +++ b/Docs/Layers/direction.md @@ -38,6 +38,7 @@ Elements must match **any** of the following expressions: ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -47,6 +48,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/disaster_response.md b/Docs/Layers/disaster_response.md index 3d5f572403..b4d16ad87f 100644 --- a/Docs/Layers/disaster_response.md +++ b/Docs/Layers/disaster_response.md @@ -60,12 +60,14 @@ Elements must match the expression **{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -75,11 +77,13 @@ This tagrendering has labels ### disaster_response_name The question is `What is the name of this organization?` -*This organization is named {name}* is shown if `name` is set + +*This organization is named {name}* is shown if `name` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -89,11 +93,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/doctors.md b/Docs/Layers/doctors.md index 1f205ec685..09412e0fa5 100644 --- a/Docs/Layers/doctors.md +++ b/Docs/Layers/doctors.md @@ -93,17 +93,20 @@ Elements must match the expression **opening_hours="by appointment" - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ @@ -112,7 +115,8 @@ The question is `What are the opening hours of {title()}?` ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -122,7 +126,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -133,7 +138,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -143,6 +149,7 @@ This tagrendering has labels ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -151,6 +158,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -162,7 +170,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -173,7 +182,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -182,7 +192,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -193,7 +204,8 @@ This tagrendering has labels ### specialty The question is `What is this doctor specialized in?` -*This doctor is specialized in {healthcare:speciality}* is shown if `healthcare:speciality` is set + +*This doctor is specialized in {healthcare:speciality}* is shown if `healthcare:speciality` is set. - *This is a general practitioner* is shown if with healthcare:speciality=general - *This is a gynaecologist* is shown if with healthcare:speciality=gynaecology @@ -203,6 +215,7 @@ The question is `What is this doctor specialized in?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -212,16 +225,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/dog_toilet.md b/Docs/Layers/dog_toilet.md index 7ac83c2952..15e29ff080 100644 --- a/Docs/Layers/dog_toilet.md +++ b/Docs/Layers/dog_toilet.md @@ -51,6 +51,7 @@ Elements must match the expression ** *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -102,7 +106,8 @@ The question is `What are the opening hours of {title()}?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -126,11 +131,13 @@ The question is `Does this dog park have a separate fenced in area for small dog ### dogarea _This tagrendering has no question and is thus read-only_ + *This dogpark is {_surface:ha} ha big* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -140,11 +147,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/drinking_water.md b/Docs/Layers/drinking_water.md index d5de68a890..8049a30f9b 100644 --- a/Docs/Layers/drinking_water.md +++ b/Docs/Layers/drinking_water.md @@ -109,12 +109,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Still in use? The question is `Is this drinking water spot still operational?` -*The operational status is {operational_status}* is shown if `operational_status` is set + +*The operational status is {operational_status}* is shown if `operational_status` is set. - *This drinking water works* is shown if with operational_status= & disused:amenity= - *This drinking water is broken* is shown if with operational_status=broken @@ -165,7 +167,8 @@ The question is `Is this drinking water point available all year round?` ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *This drinking water fountain is closed this season. As such, the opening hours are not shown.* is shown if with seasonal!=no & seasonal~.+ & ((seasonal!~^(.*winter.*)$ & _now:date~^(....-(12|01|02)-..)$) | (seasonal!~^(.*spring.*)$ & _now:date~^(....-(03|04|05)-..)$) | (seasonal!~^(.*summer.*)$ & _now:date~^(....-(06|07|08)-..)$) | (seasonal!~^(.*autumn.*)$ & _now:date~^(....-(09|10|11)-..)$)). _This option cannot be chosen as answer_ - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 @@ -182,7 +185,8 @@ The question is `Does this drinking water fountain have an artistic element?` ### artwork-artwork_type The question is `What is the type of this artwork?` -*This is a {artwork_type}* is shown if `artwork_type` is set + +*This is a {artwork_type}* is shown if `artwork_type` is set. - *Architecture* is shown if with artwork_type=architecture - *Mural* is shown if with artwork_type=mural @@ -206,7 +210,8 @@ This tagrendering has labels ### artwork-artist-wikidata The question is `Who made this artwork?` -*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set + +*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: tourism=artwork This tagrendering has labels @@ -215,7 +220,8 @@ This tagrendering has labels ### artwork-artist_name The question is `Which artist created this?` -*Created by {artist_name}* is shown if `artist_name` is set + +*Created by {artist_name}* is shown if `artist_name` is set. This tagrendering is only visible in the popup if the following condition is met: tourism=artwork This tagrendering has labels @@ -224,7 +230,8 @@ This tagrendering has labels ### artwork-website The question is `Is there a website with more information about this artwork?` -*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set + +*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set. This tagrendering is only visible in the popup if the following condition is met: tourism=artwork This tagrendering has labels @@ -233,7 +240,8 @@ This tagrendering has labels ### artwork_subject The question is `What does this artwork depict?` -*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: tourism=artwork This tagrendering has labels @@ -242,6 +250,7 @@ This tagrendering has labels ### render-closest-drinking-water _This tagrendering has no question and is thus read-only_ + *There is another drinking water fountain at {_closest_other_drinking_water_distance} meters* This tagrendering is only visible in the popup if the following condition is met: _closest_other_drinking_water_id~.+ @@ -249,6 +258,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -258,16 +268,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/dumpstations.md b/Docs/Layers/dumpstations.md index bcfcb95405..66783f57de 100644 --- a/Docs/Layers/dumpstations.md +++ b/Docs/Layers/dumpstations.md @@ -78,6 +78,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### dumpstations-fee @@ -90,7 +91,8 @@ The question is `Does this place charge a fee?` ### dumpstations-charge The question is `How much does this place charge?` -*This place charges {charge}* is shown if `charge` is set + +*This place charges {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes @@ -127,11 +129,13 @@ The question is `Who can use this dump station?` ### dumpstations-network The question is `What network is this place a part of? (skip if none)` -*This station is part of network {network}* is shown if `network` is set + +*This station is part of network {network}* is shown if `network` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -141,11 +145,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/education_institutions_without_etymology.md b/Docs/Layers/education_institutions_without_etymology.md index 9dcd306ac8..c816b898c6 100644 --- a/Docs/Layers/education_institutions_without_etymology.md +++ b/Docs/Layers/education_institutions_without_etymology.md @@ -69,16 +69,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/elevator.md b/Docs/Layers/elevator.md index 66901724eb..fbb696579f 100644 --- a/Docs/Layers/elevator.md +++ b/Docs/Layers/elevator.md @@ -22,11 +22,11 @@ This layer show elevators and asks for operational status and elevator dimension - [elevator-depth](#elevator-depth) - [elevator-diameter](#elevator-diameter) - [handrail](#handrail) - - [induction-loop](#induction-loop) - [tactile_writing_available](#tactile_writing_available) - [tactile_writing_language](#tactile_writing_language) - [speech_output_available](#speech_output_available) - [speech_output](#speech_output) + - [induction-loop](#induction-loop) - [leftover-questions](#leftover-questions) - [move-button](#move-button) - [lod](#lod) @@ -65,9 +65,9 @@ Elements must match the expression ** [length](https://wiki.openstreetmap.org/wiki/Key:length) | [pfloat](../SpecialInputElements.md#pfloat) | | | [diameter](https://wiki.openstreetmap.org/wiki/Key:diameter) | [pfloat](../SpecialInputElements.md#pfloat) | | | [handrail](https://wiki.openstreetmap.org/wiki/Key:handrail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:handrail%3Dno) | -| [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) | | [tactile_writing:braille](https://wiki.openstreetmap.org/wiki/Key:tactile_writing:braille) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:tactile_writing:braille%3Dno) | | [speech_output](https://wiki.openstreetmap.org/wiki/Key:speech_output) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:speech_output%3Dno) | +| [hearing_loop](https://wiki.openstreetmap.org/wiki/Key:hearing_loop) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:hearing_loop%3Dno) | ## Featureview elements and TagRenderings @@ -82,11 +82,11 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -119,7 +121,8 @@ The question is `Does this elevator work?` ### door-width The question is `What is the width of this elevator's entrance?` -*This elevator's doors have a width of {canonical(door:width)}* is shown if `door:width` is set + +*This elevator's doors have a width of {canonical(door:width)}* is shown if `door:width` is set. ### elevator-shape @@ -131,17 +134,20 @@ The question is `What shape does this elevator have?` ### elevator-width The question is `What is the width of this elevator?` -*This elevator has a width of {canonical(width)}* is shown if `width` is set + +*This elevator has a width of {canonical(width)}* is shown if `width` is set. ### elevator-depth The question is `What is the depth of this elevator?` -*This elevator has a depth of {canonical(length)}* is shown if `length` is set + +*This elevator has a depth of {canonical(length)}* is shown if `length` is set. ### elevator-diameter The question is `What is the diameter of this elevator?` -*This elevator has a diameter of {canonical(diameter)}* is shown if `diameter` is set + +*This elevator has a diameter of {canonical(diameter)}* is shown if `diameter` is set. This tagrendering is only visible in the popup if the following condition is met: shape=circular @@ -152,13 +158,6 @@ The question is `Is there a handrail in the cabin?` - *This elevator has a handrail in the cabin* is shown if with handrail=yes - *This elevator does not have a handrail* is shown if with handrail=no -### induction-loop -An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver. -The question is `Does this place have an audio induction loop for people with reduced hearing?` - - - *This place has an audio induction loop* is shown if with hearing_loop=yes - - *This place does not have an audio induction loop* is shown if with hearing_loop=no - ### tactile_writing_available The question is `Has this elevator tactile writing?` @@ -169,6 +168,7 @@ The question is `Has this elevator tactile writing?` ### tactile_writing_language _This tagrendering has no question and is thus read-only_ + *{language_chooser(tactile_writing:braille,In which languages does this elevator have tactile writing &LPARENSbraille&RPARENS?,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}* This tagrendering is only visible in the popup if the following condition is met: tactile_writing:braille=yes @@ -183,13 +183,24 @@ The question is `Has this elevator speech output?` ### speech_output _This tagrendering has no question and is thus read-only_ + *{language_chooser(speech_output,In which languages does this elevator have speech output?,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This elevator has speech output in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}* This tagrendering is only visible in the popup if the following condition is met: speech_output=yes +### induction-loop +An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver. +The question is `Does this place have an audio induction loop for people with reduced hearing?` + + - *This place has an audio induction loop* is shown if with hearing_loop=yes + - *This place does not have an audio induction loop* is shown if with hearing_loop=no + +This tagrendering is only visible in the popup if the following condition is met: speech_output=yes + ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -199,11 +210,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/elongated_coin.md b/Docs/Layers/elongated_coin.md index 541cebe159..3e5b7e8f7f 100644 --- a/Docs/Layers/elongated_coin.md +++ b/Docs/Layers/elongated_coin.md @@ -97,12 +97,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -110,7 +112,8 @@ The question is `What are the opening hours of {title()}?` ### designs The question is `How many designs are available?` -*This penny press has {coin:design_count} designs available.* is shown if `coin:design_count` is set + +*This penny press has {coin:design_count} designs available.* is shown if `coin:design_count` is set. - *This penny press has one design available.* is shown if with coin:design_count=1 - *This penny press has two designs available.* is shown if with coin:design_count=2 @@ -140,7 +143,8 @@ The question is `Which methods of payment are accepted here?` ### coin The question is `What coin is used for pressing?` -*This penny press uses a {coin:type} coin for pressing.* is shown if `coin:type` is set + +*This penny press uses a {coin:type} coin for pressing.* is shown if `coin:type` is set. - *This penny press uses a 2 cent coin for pressing.* is shown if with coin:type=2cent - *This penny press uses a 5 cent coin for pressing.* is shown if with coin:type=5cent @@ -153,7 +157,8 @@ The question is `What coin is used for pressing?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -163,7 +168,8 @@ This tagrendering has labels ### charge The question is `How much does it cost to press a penny?` -*It costs {charge} to press a penny.* is shown if `charge` is set + +*It costs {charge} to press a penny.* is shown if `charge` is set. - *It costs 1 euro to press a penny.* is shown if with charge=1 EUR - *It costs 2 euros to press a penny.* is shown if with charge=2 EUR @@ -202,6 +208,7 @@ The question is `Is the penny press indoors?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -211,7 +218,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -225,13 +233,15 @@ This tagrendering has labels ### check_date The question is `When was this object last checked?` -*This object was last checked on {check_date}* is shown if `check_date` is set + +*This object was last checked on {check_date}* is shown if `check_date` is set. - *This object was last checked today* is shown if with check_date= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -241,16 +251,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/entrance.md b/Docs/Layers/entrance.md index 33eaea5f82..8959ccbb65 100644 --- a/Docs/Layers/entrance.md +++ b/Docs/Layers/entrance.md @@ -66,7 +66,7 @@ Elements must match **any** of the following expressions: | [door](https://wiki.openstreetmap.org/wiki/Key:door) | Multiple choice | [hinged](https://wiki.openstreetmap.org/wiki/Tag:door%3Dhinged) [revolving](https://wiki.openstreetmap.org/wiki/Tag:door%3Drevolving) [sliding](https://wiki.openstreetmap.org/wiki/Tag:door%3Dsliding) [overhead](https://wiki.openstreetmap.org/wiki/Tag:door%3Doverhead) [no](https://wiki.openstreetmap.org/wiki/Tag:door%3Dno) | | [automatic_door](https://wiki.openstreetmap.org/wiki/Key:automatic_door) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dno) [motion](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dmotion) [floor](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dfloor) [button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dbutton) [slowdown_button](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dslowdown_button) [continuous](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dcontinuous) [serviced_on_button_press](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_button_press) [serviced_on_request](https://wiki.openstreetmap.org/wiki/Tag:automatic_door%3Dserviced_on_request) | | [width](https://wiki.openstreetmap.org/wiki/Key:width) | [pfloat](../SpecialInputElements.md#pfloat) | | -| [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pnat](../SpecialInputElements.md#pnat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) | +| [kerb:height](https://wiki.openstreetmap.org/wiki/Key:kerb:height) | [pfloat](../SpecialInputElements.md#pfloat) | [0](https://wiki.openstreetmap.org/wiki/Tag:kerb:height%3D0) | | [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | [](https://wiki.openstreetmap.org/wiki/Tag:ref%3D) | ## Featureview elements and TagRenderings @@ -80,7 +80,7 @@ Elements must match **any** of the following expressions: | [Door_type](#Door_type) | What is the type of this door?
6 options | accessibility | _Multiple choice only_ | | [automatic_door](#automatic_door) | Is this door automated?
9 options | accessibility | _Multiple choice only_ | | [width](#width) | What is the width of this door/entrance?
_This door has a width of {canonical(width)}_ | accessibility | *[width](https://wiki.osm.org/wiki/Key:width)* ([pfloat](../SpecialInputElements.md#pfloat)) | -| [kerb-height](#kerb-height) | What is the height of this kerb?
_The kerb height of this door is {kerb:height}_
1 options | accessibility | *[kerb:height](https://wiki.osm.org/wiki/Key:kerb:height)* ([pnat](../SpecialInputElements.md#pnat)) | +| [kerb-height](#kerb-height) | What is the height of this kerb?
_The kerb height of this door is {kerb:height}_
1 options | accessibility | *[kerb:height](https://wiki.osm.org/wiki/Key:kerb:height)* ([pfloat](../SpecialInputElements.md#pfloat)) | | [ref](#ref) | Does this door have a reference number?
_This door has {ref} as reference number_
1 options | accessibility | *[ref](https://wiki.osm.org/wiki/Key:ref)* ([string](../SpecialInputElements.md#string)) | | [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ | | [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ | @@ -89,6 +89,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* This tagrendering has labels @@ -97,6 +98,7 @@ This tagrendering has labels ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -106,7 +108,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -168,7 +171,10 @@ This tagrendering has labels ### width The question is `What is the width of this door/entrance?` -*This door has a width of {canonical(width)}* is shown if `width` is set + +*This door has a width of {canonical(width)}* is shown if `width` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering has labels `accessibility` @@ -176,7 +182,10 @@ This tagrendering has labels ### kerb-height The question is `What is the height of this kerb?` -*The kerb height of this door is {kerb:height}* is shown if `kerb:height` is set + +*The kerb height of this door is {kerb:height}* is shown if `kerb:height` is set. + +The allowed input is of type pfloat and is in range -infinty until 0.5 (both inclusive). A warning will appear above 0.25. - *This door does not have a kerb* is shown if with kerb:height=0 @@ -186,7 +195,8 @@ This tagrendering has labels ### ref The question is `Does this door have a reference number?` -*This door has {ref} as reference number* is shown if `ref` is set + +*This door has {ref} as reference number* is shown if `ref` is set. - *No reference number* is shown if with ref= @@ -196,6 +206,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -205,11 +216,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/etymology.md b/Docs/Layers/etymology.md index 0861ca051c..8c41841edb 100644 --- a/Docs/Layers/etymology.md +++ b/Docs/Layers/etymology.md @@ -68,16 +68,19 @@ Elements must match **any** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -85,38 +88,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -124,6 +134,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/excrement_bag_dispenser.md b/Docs/Layers/excrement_bag_dispenser.md index 6f2935889c..a814153b5b 100644 --- a/Docs/Layers/excrement_bag_dispenser.md +++ b/Docs/Layers/excrement_bag_dispenser.md @@ -70,13 +70,15 @@ The question is `Does it cost money to use this dispenser?` ### check_date The question is `When was this object last checked?` -*This object was last checked on {check_date}* is shown if `check_date` is set + +*This object was last checked on {check_date}* is shown if `check_date` is set. - *This object was last checked today* is shown if with check_date= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -86,11 +88,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/extinguisher.md b/Docs/Layers/extinguisher.md index 20ca8a5805..4cc4d1ce69 100644 --- a/Docs/Layers/extinguisher.md +++ b/Docs/Layers/extinguisher.md @@ -58,7 +58,8 @@ Elements must match the expression **location=indoor - *Found outdoors.* is shown if with location=outdoor @@ -66,11 +67,13 @@ The question is `Where is it positioned?` ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -80,11 +83,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/facadegardens.md b/Docs/Layers/facadegardens.md index af9c38528e..16227ed6a1 100644 --- a/Docs/Layers/facadegardens.md +++ b/Docs/Layers/facadegardens.md @@ -80,12 +80,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### facadegardens-direction The question is `What is the orientation of the garden?` -*Orientation: {direction} (where 0=N and 90=O)* is shown if `direction` is set + +*Orientation: {direction} (where 0=N and 90=O)* is shown if `direction` is set. ### facadegardens-sunshine @@ -105,7 +107,8 @@ The question is `Is there a water barrel installed for the garden?` ### facadegardens-start_date The question is `When was the garden constructed? (a year is sufficient)` -*Construction date of the garden: {start_date}* is shown if `start_date` is set + +*Construction date of the garden: {start_date}* is shown if `start_date` is set. ### facadegardens-edible @@ -126,11 +129,13 @@ The question is `What kinds of plants grow here?` ### facadegardens-description The question is `Extra describing info about the garden (if needed and not yet described above)` -*More details: {description}* is shown if `description` is set + +*More details: {description}* is shown if `description` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -140,16 +145,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/fire_station.md b/Docs/Layers/fire_station.md index 0e1080ea6b..1fb9d084f2 100644 --- a/Docs/Layers/fire_station.md +++ b/Docs/Layers/fire_station.md @@ -70,29 +70,34 @@ Elements must match the expression **operator=Bureau of Fire Protection & operator:type=government ### station-operator The question is `How is the station operator classified?` -*The operator is a(n) {operator:type} entity.* is shown if `operator:type` is set + +*The operator is a(n) {operator:type} entity.* is shown if `operator:type` is set. - *The station is operated by the government.* is shown if with operator:type=government - *The station is operated by a community-based, or informal organization.* is shown if with operator:type=community @@ -102,11 +107,13 @@ The question is `How is the station operator classified?` ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -116,11 +123,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/firepit.md b/Docs/Layers/firepit.md index ce135b00d7..ec87aa53d2 100644 --- a/Docs/Layers/firepit.md +++ b/Docs/Layers/firepit.md @@ -63,6 +63,7 @@ Elements must match the expression **noname=yes ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -104,7 +107,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -115,7 +119,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -125,7 +130,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -141,6 +147,7 @@ The question is `Is this place accessible with a wheelchair?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -150,7 +157,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -164,11 +172,13 @@ This tagrendering has labels ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -178,11 +188,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/fitness_station.md b/Docs/Layers/fitness_station.md index f022683b73..ecb3975292 100644 --- a/Docs/Layers/fitness_station.md +++ b/Docs/Layers/fitness_station.md @@ -69,12 +69,14 @@ Elements must match the expression **noname=yes @@ -111,12 +113,14 @@ The question is `What kind of equipment does this fitness station have?` ### operator The question is `Who maintains this fitness station?` -*The fitness station is maintained by {operator}.* is shown if `operator` is set + +*The fitness station is maintained by {operator}.* is shown if `operator` is set. ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -124,6 +128,7 @@ The question is `What are the opening hours of {title()}?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -133,11 +138,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/fixme.md b/Docs/Layers/fixme.md index 9e6f160392..c0369491bc 100644 --- a/Docs/Layers/fixme.md +++ b/Docs/Layers/fixme.md @@ -53,13 +53,15 @@ Elements must match **any** of the following expressions: ### fixme The question is `What is wrong with this feature?` -*Fixme Text: {fixme}* is shown if `fixme` is set + +*Fixme Text: {fixme}* is shown if `fixme` is set. - *This issue has been resolved* is shown if with fixme= ### note _This tagrendering has no question and is thus read-only_ + *Note Text: {note}* This tagrendering is only visible in the popup if the following condition is met: note~.+ @@ -67,11 +69,13 @@ This tagrendering is only visible in the popup if the following condition is met ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -81,6 +85,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/food.md b/Docs/Layers/food.md index 61d41883a8..17358b85ef 100644 --- a/Docs/Layers/food.md +++ b/Docs/Layers/food.md @@ -33,7 +33,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [show-menu-image](#show-menu-image) - [add-menu-image](#add-menu-image) - [menu-website](#menu-website) - - [Reservation](#reservation) + - [reservation](#reservation) - [Takeaway](#takeaway) - [delivery](#delivery) - [drive-through](#drive-through) @@ -216,7 +216,7 @@ Elements must match **any** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -285,17 +285,20 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -307,14 +310,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -324,7 +329,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -335,7 +341,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -353,6 +360,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -362,7 +370,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -385,7 +394,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -410,19 +420,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -458,7 +471,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -651,7 +665,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -662,6 +677,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -670,6 +686,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -694,6 +711,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -708,7 +726,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -728,7 +747,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -763,7 +783,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -833,7 +854,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -923,7 +945,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -959,7 +982,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1032,6 +1056,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1047,6 +1072,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1064,6 +1090,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1081,6 +1108,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1122,6 +1150,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1138,6 +1167,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1173,7 +1203,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1192,7 +1225,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1209,7 +1245,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1268,6 +1307,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1284,6 +1324,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1294,6 +1335,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1303,16 +1345,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/food_courts.md b/Docs/Layers/food_courts.md index fd664f75eb..345f9b528d 100644 --- a/Docs/Layers/food_courts.md +++ b/Docs/Layers/food_courts.md @@ -71,22 +71,26 @@ Elements must match the expression **opening_hours=closed. _This option cannot be chosen as answer_ @@ -102,7 +106,8 @@ The question is `Is this place accessible with a wheelchair?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -112,7 +117,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -130,6 +136,7 @@ The question is `Is smoking allowed at {title()}?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -139,11 +146,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/food_dog_friendly.md b/Docs/Layers/food_dog_friendly.md index 6894889cb2..db589d1f03 100644 --- a/Docs/Layers/food_dog_friendly.md +++ b/Docs/Layers/food_dog_friendly.md @@ -34,7 +34,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [show-menu-image](#show-menu-image) - [add-menu-image](#add-menu-image) - [menu-website](#menu-website) - - [Reservation](#reservation) + - [reservation](#reservation) - [Takeaway](#takeaway) - [delivery](#delivery) - [drive-through](#drive-through) @@ -201,7 +201,7 @@ Elements must match **all** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -270,17 +270,20 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -292,14 +295,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -309,7 +314,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -320,7 +326,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -338,6 +345,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -347,7 +355,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -370,7 +379,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -395,19 +405,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -443,7 +456,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -636,7 +650,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -647,6 +662,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -655,6 +671,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -679,6 +696,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -693,7 +711,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -713,7 +732,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -748,7 +768,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -818,7 +839,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -908,7 +930,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -944,7 +967,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1017,6 +1041,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1032,6 +1057,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1049,6 +1075,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1066,6 +1093,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1107,6 +1135,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1123,6 +1152,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1158,7 +1188,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1177,7 +1210,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1194,7 +1230,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1253,6 +1292,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1269,6 +1309,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1279,6 +1320,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1288,16 +1330,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/food_glutenfree.md b/Docs/Layers/food_glutenfree.md index 93dbf2f248..d6cbabb450 100644 --- a/Docs/Layers/food_glutenfree.md +++ b/Docs/Layers/food_glutenfree.md @@ -35,7 +35,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [show-menu-image](#show-menu-image) - [add-menu-image](#add-menu-image) - [menu-website](#menu-website) - - [Reservation](#reservation) + - [reservation](#reservation) - [Takeaway](#takeaway) - [delivery](#delivery) - [drive-through](#drive-through) @@ -203,7 +203,7 @@ Elements must match **all** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -271,11 +271,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### gluten_free @@ -293,7 +295,8 @@ This tagrendering has labels ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -305,14 +308,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -322,7 +327,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -333,7 +339,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -351,6 +358,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -360,7 +368,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -383,7 +392,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -408,19 +418,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -456,7 +469,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -637,7 +651,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -648,6 +663,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -656,6 +672,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -680,6 +697,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -694,7 +712,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -714,7 +733,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -749,7 +769,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -819,7 +840,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -909,7 +931,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -945,7 +968,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1018,6 +1042,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1033,6 +1058,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1050,6 +1076,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1067,6 +1094,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1108,6 +1136,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1124,6 +1153,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1159,7 +1189,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1178,7 +1211,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1195,7 +1231,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1254,6 +1293,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1270,6 +1310,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1280,6 +1321,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1289,16 +1331,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/food_lactosefree.md b/Docs/Layers/food_lactosefree.md index d9a11dcc9d..e5a426e12e 100644 --- a/Docs/Layers/food_lactosefree.md +++ b/Docs/Layers/food_lactosefree.md @@ -35,7 +35,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [show-menu-image](#show-menu-image) - [add-menu-image](#add-menu-image) - [menu-website](#menu-website) - - [Reservation](#reservation) + - [reservation](#reservation) - [Takeaway](#takeaway) - [delivery](#delivery) - [drive-through](#drive-through) @@ -203,7 +203,7 @@ Elements must match **all** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -271,11 +271,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### lactose_free @@ -293,7 +295,8 @@ This tagrendering has labels ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -305,14 +308,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -322,7 +327,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -333,7 +339,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -351,6 +358,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -360,7 +368,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -383,7 +392,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -408,19 +418,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -456,7 +469,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -637,7 +651,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -648,6 +663,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -656,6 +672,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -680,6 +697,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -694,7 +712,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -714,7 +733,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -749,7 +769,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -819,7 +840,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -909,7 +931,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -945,7 +968,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1018,6 +1042,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1033,6 +1058,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1050,6 +1076,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1067,6 +1094,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1108,6 +1136,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1124,6 +1153,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1159,7 +1189,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1178,7 +1211,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1195,7 +1231,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1254,6 +1293,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1270,6 +1310,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1280,6 +1321,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1289,16 +1331,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/friture.md b/Docs/Layers/friture.md index 4508bb647d..205aaeb2d8 100644 --- a/Docs/Layers/friture.md +++ b/Docs/Layers/friture.md @@ -34,7 +34,7 @@ A layer showing restaurants and fast-food amenities (with a special rendering fo - [show-menu-image](#show-menu-image) - [add-menu-image](#add-menu-image) - [menu-website](#menu-website) - - [Reservation](#reservation) + - [reservation](#reservation) - [Takeaway](#takeaway) - [delivery](#delivery) - [drive-through](#drive-through) @@ -201,7 +201,7 @@ Elements must match **all** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -270,17 +270,20 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -292,14 +295,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -309,7 +314,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -320,7 +326,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -338,6 +345,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -347,7 +355,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -370,7 +379,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -395,19 +405,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -443,7 +456,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -636,7 +650,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -647,6 +662,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -655,6 +671,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -679,6 +696,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -693,7 +711,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -713,7 +732,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -748,7 +768,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -818,7 +839,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -908,7 +930,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -944,7 +967,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1017,6 +1041,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1032,6 +1057,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1049,6 +1075,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1066,6 +1093,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1107,6 +1135,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1123,6 +1152,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1158,7 +1188,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1177,7 +1210,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1194,7 +1230,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1253,6 +1292,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1269,6 +1309,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1279,6 +1320,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1288,16 +1330,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/ghost_bike.md b/Docs/Layers/ghost_bike.md index 8dc1a6cb18..637539ca87 100644 --- a/Docs/Layers/ghost_bike.md +++ b/Docs/Layers/ghost_bike.md @@ -75,17 +75,20 @@ Elements must match the expression **noname=yes @@ -93,21 +96,25 @@ The question is `Whom is remembered by this ghost bike?` ### ghost_bike-source The question is `On what webpage can one find more info about the ghost bike or the accident?` -*{link(More info available,&LBRACEsource&RBRACE,,,,)}* is shown if `source` is set + +*{link(More info available,&LBRACEsource&RBRACE,,,,)}* is shown if `source` is set. ### ghost_bike-inscription The question is `What is the inscription on this Ghost bike?` -*{inscription}* is shown if `inscription` is set + +*{inscription}* is shown if `inscription` is set. ### ghost_bike-start_date The question is `When was this Ghost bike installed?` -*Placed on {start_date}* is shown if `start_date` is set + +*Placed on {start_date}* is shown if `start_date` is set. ### wikidata _This tagrendering has no question and is thus read-only_ + *

Wikipedia page about the deceased person

{wikipedia(subject:wikidata)}* This tagrendering is only visible in the popup if the following condition is met: subject:wikidata~.+ @@ -115,6 +122,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -124,16 +132,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/ghostsign.md b/Docs/Layers/ghostsign.md index a711f33045..2f523db142 100644 --- a/Docs/Layers/ghostsign.md +++ b/Docs/Layers/ghostsign.md @@ -70,6 +70,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### historic @@ -82,7 +83,8 @@ The question is `Is this sign for a business that no longer exists or no longer ### type The question is `Which type of advertising feature is this?` -*This is a {advertising}* is shown if `advertising` is set + +*This is a {advertising}* is shown if `advertising` is set. - *This is a billboard* is shown if with advertising=billboard - *This is a board* is shown if with advertising=board @@ -101,16 +103,19 @@ The question is `Which type of advertising feature is this?` ### inscription The question is `What is the text on the sign?` -*The text on the sign is: {inscription}* is shown if `inscription` is set + +*The text on the sign is: {inscription}* is shown if `inscription` is set. ### brand The question is `For what business was this sign made?` -*This sign was made for: {brand}* is shown if `brand` is set + +*This sign was made for: {brand}* is shown if `brand` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -120,11 +125,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/governments.md b/Docs/Layers/governments.md index eb773de2a8..ccf79823ea 100644 --- a/Docs/Layers/governments.md +++ b/Docs/Layers/governments.md @@ -66,12 +66,14 @@ Elements must match the expression ** *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -81,7 +83,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -92,7 +95,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -102,11 +106,13 @@ This tagrendering has labels ### name The question is `What is the name of this Governmental Office?` -*This Governmental Office is called {name}* is shown if `name` is set + +*This Governmental Office is called {name}* is shown if `name` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -116,11 +122,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/grave.md b/Docs/Layers/grave.md index dd20b985f5..03d0808ee4 100644 --- a/Docs/Layers/grave.md +++ b/Docs/Layers/grave.md @@ -64,21 +64,25 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### buried:wikidata The question is `What is the Wikipedia page of the person buried here?` -*{wikipedia(buried:wikidata)}* is shown if `buried:wikidata` is set + +*{wikipedia(buried:wikidata)}* is shown if `buried:wikidata` is set. ### name The question is `What is the name of the person buried here?` -*{name} is buried here* is shown if `name` is set + +*{name} is buried here* is shown if `name` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -88,11 +92,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/group_campsite.md b/Docs/Layers/group_campsite.md index 76b63e5ee4..8a8665ba6d 100644 --- a/Docs/Layers/group_campsite.md +++ b/Docs/Layers/group_campsite.md @@ -85,6 +85,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### group_only @@ -97,12 +98,14 @@ The question is `Is this campsite exclusively for groups?` ### name The question is `What is the name of this campsite?` -*The name of this campsite is {name}* is shown if `name` is set + +*The name of this campsite is {name}* is shown if `name` is set. ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -112,7 +115,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -123,7 +127,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -133,7 +138,8 @@ This tagrendering has labels ### capacity_persons The question is `How many people can stay here?` -*{capacity:persons} people can stay here* is shown if `capacity:persons` is set + +*{capacity:persons} people can stay here* is shown if `capacity:persons` is set. ### fee @@ -145,12 +151,14 @@ The question is `Is there a fee?` ### charge_person_day The question is `What is the charge per person per day?` -*Charge per person per day: {charge}* is shown if `charge` is set + +*Charge per person per day: {charge}* is shown if `charge` is set. ### charge_day The question is `What is the charge per day?` -*Charge per day: {charge}* is shown if `charge` is set + +*Charge per day: {charge}* is shown if `charge` is set. ### caravansites-toilets @@ -162,21 +170,25 @@ The question is `Does this place have toilets?` ### toiletatamenitytoiletswheelchair _This tagrendering has no question and is thus read-only_ + *toilet_at_amenity.toilets-wheelchair* ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/group_hostel.md b/Docs/Layers/group_hostel.md index d28b932b2b..acb515c342 100644 --- a/Docs/Layers/group_hostel.md +++ b/Docs/Layers/group_hostel.md @@ -102,21 +102,25 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### name The question is `What is the name of this {title()}?` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### presettypeselect _This tagrendering has no question and is thus read-only_ + *{preset_type_select()}* ### group_only @@ -131,14 +135,16 @@ This tagrendering is only visible in the popup if the following condition is met ### brand The question is `Is {title()} part of a bigger brand?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *Not part of a bigger brand* is shown if with nobrand=yes ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -148,7 +154,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -159,7 +166,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -178,6 +186,7 @@ The question is `Is this place accessible with a wheelchair?` ### toiletatamenitytoiletswheelchair _This tagrendering has no question and is thus read-only_ + *toilet_at_amenity.toilets-wheelchair* ### internet @@ -209,7 +218,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -230,6 +240,7 @@ The question is `Are dogs allowed in this business?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -239,16 +250,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/guidepost.md b/Docs/Layers/guidepost.md index 17d2620f09..1553d779da 100644 --- a/Docs/Layers/guidepost.md +++ b/Docs/Layers/guidepost.md @@ -72,6 +72,7 @@ Elements must match the expression **noname=yes ### ref The question is `What is the reference number of this guidepost?` -*Reference number of the guidepost: {ref}* is shown if `ref` is set + +*Reference number of the guidepost: {ref}* is shown if `ref` is set. - *There is no reference number noted on this guidepost* is shown if with noref=yes ### ele The question is `What is the elevation noted on this guidepost?` -*Elevation noted on the guidepost: {ele} m* is shown if `ele` is set + +*Elevation noted on the guidepost: {ele} m* is shown if `ele` is set. - *There is no elevation noted on this guidepost* is shown if with noele=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -119,16 +124,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/hackerspace.md b/Docs/Layers/hackerspace.md index 5e93abcece..d8ee7bdf8c 100644 --- a/Docs/Layers/hackerspace.md +++ b/Docs/Layers/hackerspace.md @@ -133,11 +133,13 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -179,7 +184,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -189,7 +195,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -200,7 +207,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -210,12 +218,14 @@ This tagrendering has labels ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### opening_hours_24_7 The question is `When is this hackerspace opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -311,7 +321,8 @@ The question is `Does this hackerspace serve Club-Mate?` ### hackerspaces-start_date The question is `When was this hackerspace founded?` -*This hackerspace was founded at {start_date}* is shown if `start_date` is set + +*This hackerspace was founded at {start_date}* is shown if `start_date` is set. ### internet @@ -342,7 +353,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -353,21 +365,25 @@ This tagrendering has labels ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/health_and_social_places_without_etymology.md b/Docs/Layers/health_and_social_places_without_etymology.md index 8417b2fb3d..a021171d0c 100644 --- a/Docs/Layers/health_and_social_places_without_etymology.md +++ b/Docs/Layers/health_and_social_places_without_etymology.md @@ -69,16 +69,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/hospital.md b/Docs/Layers/hospital.md index 927dc408b1..9734e1c442 100644 --- a/Docs/Layers/hospital.md +++ b/Docs/Layers/hospital.md @@ -76,7 +76,7 @@ Elements must match **any** of the following expressions: | [housenumber](#housenumber)
_(Original in [address](./address.md#housenumber))_ | What is the number of this house?
_The house number is {addr:housenumber}_
1 options | address, hidden | *[addr:housenumber](https://wiki.osm.org/wiki/Key:addr:housenumber)* ([string](../SpecialInputElements.md#string)) | | [street](#street)
_(Original in [address](./address.md#street))_ | What street is this address located in?
_This address is in street {addr:street}_ | address, hidden | *[addr:street](https://wiki.osm.org/wiki/Key:addr:street)* ([string](../SpecialInputElements.md#string)) | | [unit](#unit)
_(Original in [address](./address.md#unit))_ | What is the unit number or letter?
_The unit number is {addr:unit}_
1 options | address, hidden | *[addr:unit](https://wiki.osm.org/wiki/Key:addr:unit)* ([string](../SpecialInputElements.md#string)) | -| [oh-visitor](#oh-visitor) | When are visitors allowed to visit?
_

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

_ | | *[opening_hours:visitors](https://wiki.osm.org/wiki/Key:opening_hours:visitors)* ([opening_hours](../SpecialInputElements.md#opening_hours)) | +| [oh-visitor](#oh-visitor) | When are visitors allowed to visit?
_

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors,,)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

_ | | *[opening_hours:visitors](https://wiki.osm.org/wiki/Key:opening_hours:visitors)* ([opening_hours](../SpecialInputElements.md#opening_hours)) | | [leftover-questions](#leftover-questions) | _{questions( ,hidden)}_ | ignore-docs, added_by_default | _Multiple choice only_ | | [move-button](#move-button) | _{move_button()}_ | | _Multiple choice only_ | | [lod](#lod)
_(Original in [questions](./BuiltinQuestions.md#lod))_ | _{linked_data_from_website()}_ | added_by_default | _Multiple choice only_ | @@ -84,7 +84,8 @@ Elements must match **any** of the following expressions: ### name The question is `What is the name of this hospital?` -*This hospital is called {name}* is shown if `name` is set + +*This hospital is called {name}* is shown if `name` is set. ### inpatient @@ -96,7 +97,8 @@ The question is `Does this facility admit inpatients?` ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -106,7 +108,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -117,7 +120,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -127,6 +131,7 @@ This tagrendering has labels ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -135,6 +140,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -146,7 +152,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -157,7 +164,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -166,7 +174,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -177,11 +186,13 @@ This tagrendering has labels ### oh-visitor The question is `When are visitors allowed to visit?` -*

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

* is shown if `opening_hours:visitors` is set + +*

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors,,)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

* is shown if `opening_hours:visitors` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -191,11 +202,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/hostel.md b/Docs/Layers/hostel.md index c746cbcacf..6efdc6d23f 100644 --- a/Docs/Layers/hostel.md +++ b/Docs/Layers/hostel.md @@ -98,21 +98,25 @@ Elements must match the expression **nobrand=yes ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -144,7 +150,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -155,7 +162,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -174,6 +182,7 @@ The question is `Is this place accessible with a wheelchair?` ### toiletatamenitytoiletswheelchair _This tagrendering has no question and is thus read-only_ + *toilet_at_amenity.toilets-wheelchair* ### internet @@ -205,7 +214,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -226,6 +236,7 @@ The question is `Are dogs allowed in this business?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -235,16 +246,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/hydrant.md b/Docs/Layers/hydrant.md index 43ccc13701..e8faf3918e 100644 --- a/Docs/Layers/hydrant.md +++ b/Docs/Layers/hydrant.md @@ -79,7 +79,8 @@ Elements must match the expression **colour=yellow - *The hydrant color is red.* is shown if with colour=red @@ -87,7 +88,8 @@ The question is `What color is the hydrant?` ### hydrant-type The question is `What type of hydrant is it?` -* Hydrant type: {fire_hydrant:type}* is shown if `fire_hydrant:type` is set + +* Hydrant type: {fire_hydrant:type}* is shown if `fire_hydrant:type` is set. - *Pillar type.* is shown if with fire_hydrant:type=pillar - *Pipe type.* is shown if with fire_hydrant:type=pipe @@ -105,17 +107,20 @@ The question is `Is this hydrant still working?` ### hydrant-diameter The question is `What is the pipe diameter of this hydrant?` -*Pipe diameter: {canonical(fire_hydrant:diameter)}* is shown if `fire_hydrant:diameter` is set + +*Pipe diameter: {canonical(fire_hydrant:diameter)}* is shown if `fire_hydrant:diameter` is set. ### hydrant-number-of-couplings The question is `How many couplings does this fire hydrant have?` -*Number of couplings: {couplings}* is shown if `couplings` is set + +*Number of couplings: {couplings}* is shown if `couplings` is set. ### hydrant-couplings The question is `What kind of couplings does this hydrant have?` -*Couplings: {couplings:type}* is shown if `couplings:type` is set + +*Couplings: {couplings:type}* is shown if `couplings:type` is set. - *Storz coupling* is shown if with couplings:type=Storz - *UNI coupling* is shown if with couplings:type=UNI @@ -124,21 +129,25 @@ The question is `What kind of couplings does this hydrant have?` ### hydrant-couplings-diameters The question is `What diameter are the couplings of this hydrant?` -*Coupling diameters: {couplings:diameters}* is shown if `couplings:diameters` is set + +*Coupling diameters: {couplings:diameters}* is shown if `couplings:diameters` is set. ### ref The question is `What is the reference number of this hydrant?` -*Reference number: {ref}* is shown if `ref` is set + +*Reference number: {ref}* is shown if `ref` is set. ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -148,11 +157,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/ice_cream.md b/Docs/Layers/ice_cream.md index 839c2a4568..2e6defe165 100644 --- a/Docs/Layers/ice_cream.md +++ b/Docs/Layers/ice_cream.md @@ -95,29 +95,34 @@ Elements must match the expression **opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -127,7 +132,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -138,7 +144,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -213,6 +220,7 @@ The question is `Is this place accessible with a wheelchair?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -222,11 +230,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/icecream_glutenfree.md b/Docs/Layers/icecream_glutenfree.md index 6a3f9a467c..e50d0f7517 100644 --- a/Docs/Layers/icecream_glutenfree.md +++ b/Docs/Layers/icecream_glutenfree.md @@ -89,11 +89,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### gluten_free @@ -111,19 +113,22 @@ This tagrendering has labels ### 1 The question is `What is the name of this ice cream parlor?` -*This ice cream parlor is named {name}* is shown if `name` is set + +*This ice cream parlor is named {name}* is shown if `name` is set. ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -133,7 +138,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -144,7 +150,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -207,6 +214,7 @@ The question is `Is this place accessible with a wheelchair?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -216,11 +224,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/icecream_lactosefree.md b/Docs/Layers/icecream_lactosefree.md index 653d60fc82..2a737ca86e 100644 --- a/Docs/Layers/icecream_lactosefree.md +++ b/Docs/Layers/icecream_lactosefree.md @@ -89,11 +89,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### lactose_free @@ -111,19 +113,22 @@ This tagrendering has labels ### 1 The question is `What is the name of this ice cream parlor?` -*This ice cream parlor is named {name}* is shown if `name` is set + +*This ice cream parlor is named {name}* is shown if `name` is set. ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -133,7 +138,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -144,7 +150,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -207,6 +214,7 @@ The question is `Is this place accessible with a wheelchair?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -216,11 +224,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/indoors.md b/Docs/Layers/indoors.md index 1360ff62db..fa001635a3 100644 --- a/Docs/Layers/indoors.md +++ b/Docs/Layers/indoors.md @@ -156,11 +156,13 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -170,7 +172,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -184,14 +187,16 @@ This tagrendering has labels ### ref The question is `What is the reference number of this room?` -*This room has the reference number {ref}* is shown if `ref` is set + +*This room has the reference number {ref}* is shown if `ref` is set. This tagrendering is only visible in the popup if the following condition is met: indoor=room | indoor=area | indoor=corridor ### name The question is `What is the name of this room?` -*This room is named {name}* is shown if `name` is set + +*This room is named {name}* is shown if `name` is set. This tagrendering is only visible in the popup if the following condition is met: indoor=room | indoor=area | indoor=corridor @@ -227,21 +232,24 @@ The question is `What type of room is this?` ### room-capacity The question is `How much people can at most fit in this room?` -*At most {capacity} people fit this room* is shown if `capacity` is set + +*At most {capacity} people fit this room* is shown if `capacity` is set. This tagrendering is only visible in the popup if the following condition is met: room=waiting | room=restaurant | room=office | room=nursery | room=conference | room=auditorium | room=chapel | room=bedroom | room=classroom ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: name:etymology!=unknown & name~.+ ### toilet-access The question is `Are these toilets publicly accessible?` -*Access is {access}* is shown if `access` is set + +*Access is {access}* is shown if `access` is set. - *Public access* is shown if with access=yes - *Only access to customers* is shown if with access=customers @@ -268,7 +276,8 @@ This tagrendering has labels ### toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {charge}* is shown if `charge` is set + +*The fee is {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=toilets & fee=yes This tagrendering has labels @@ -295,7 +304,8 @@ This tagrendering has labels ### opening_hours_24_7 The question is `When are these toilets opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -364,7 +374,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -392,7 +403,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -463,7 +475,8 @@ This tagrendering has labels ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=toilets This tagrendering has labels @@ -474,6 +487,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: amenity=toilets @@ -501,6 +515,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: amenity=toilets & (toilets:wheelchair=yes | wheelchair=yes) @@ -514,6 +529,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: amenity=toilets & (toilets:wheelchair=yes | wheelchair=yes) @@ -527,6 +543,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -560,7 +577,10 @@ This tagrendering has labels ### wheelchair-door-width The question is `What is the width of the door to the wheelchair accessible toilet?` -*The door to the wheelchair-accessible toilet is {canonical(door:width)} wide* is shown if `door:width` is set + +*The door to the wheelchair-accessible toilet is {canonical(door:width)} wide* is shown if `door:width` is set. + +The allowed input is of type pfloat and is in range 0.4 until infinity (both inclusive). A warning will appear below 0.6. This tagrendering is only visible in the popup if the following condition is met: amenity=toilets & (toilets:wheelchair=yes | toilets:wheelchair=designated | wheelchair=yes | wheelchair=designated) This tagrendering has labels @@ -572,6 +592,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: amenity=toilets @@ -599,6 +620,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: amenity=toilets @@ -611,6 +633,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;hidden)}* This tagrendering has labels @@ -620,11 +643,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/information_board.md b/Docs/Layers/information_board.md index 7a2d720755..e83d116ccb 100644 --- a/Docs/Layers/information_board.md +++ b/Docs/Layers/information_board.md @@ -52,11 +52,13 @@ Elements must match the expression **tactile_paving:colour=yellow - *The tactile paving is red.* is shown if with tactile_paving:colour=red @@ -115,13 +117,15 @@ This tagrendering is only visible in the popup if the following condition is met ### kerb-height The question is `What is the height of this kerb?` -*Kerb height: {kerb:height}* is shown if `kerb:height` is set + +*Kerb height: {kerb:height}* is shown if `kerb:height` is set. - *This kerb is flush and is lower than 1cm.* is shown if with kerb:height=0 ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -131,11 +135,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/lighthouse.md b/Docs/Layers/lighthouse.md index d87e49432e..19aad9369c 100644 --- a/Docs/Layers/lighthouse.md +++ b/Docs/Layers/lighthouse.md @@ -58,12 +58,14 @@ Elements must match the expression **{name}* is shown if `name` is set + +*This love hotel is named {name}* is shown if `name` is set. ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -94,7 +98,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -105,7 +110,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -115,6 +121,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -124,11 +131,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/map.md b/Docs/Layers/map.md index 3ede228f61..3172b0bdd2 100644 --- a/Docs/Layers/map.md +++ b/Docs/Layers/map.md @@ -73,6 +73,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### map_type @@ -97,7 +98,8 @@ The question is `What is the size of the shown area on the map?` ### map-map_source The question is `On which data is this map based?` -*This map is based on {map_source}* is shown if `map_source` is set + +*This map is based on {map_source}* is shown if `map_source` is set. - *This map is based on OpenStreetMap* is shown if with map_source=OpenStreetMap & not:map_source= @@ -121,6 +123,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -130,16 +133,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/maproulette.md b/Docs/Layers/maproulette.md index 37be9be5f9..3a5a5b6b56 100644 --- a/Docs/Layers/maproulette.md +++ b/Docs/Layers/maproulette.md @@ -67,6 +67,7 @@ _This tagrendering has no question and is thus read-only_ ### mark_fixed _This tagrendering has no question and is thus read-only_ + *{maproulette_set_status(Mark as fixed,,,,,)}* This tagrendering has labels @@ -75,6 +76,7 @@ This tagrendering has labels ### mark_duplicate _This tagrendering has no question and is thus read-only_ + *{maproulette_set_status(Mark as not found or false positive,close,,2,,)}* This tagrendering has labels @@ -83,6 +85,7 @@ This tagrendering has labels ### mark_too_hard _This tagrendering has no question and is thus read-only_ + *{maproulette_set_status(Mark as too hard,./assets/svg/not_found.svg,,6,,)}* This tagrendering has labels @@ -91,6 +94,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -100,6 +104,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/maproulette_challenge.md b/Docs/Layers/maproulette_challenge.md index 9b9ceaccb8..c22269d354 100644 --- a/Docs/Layers/maproulette_challenge.md +++ b/Docs/Layers/maproulette_challenge.md @@ -67,6 +67,7 @@ _This tagrendering has no question and is thus read-only_ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -76,6 +77,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/maxspeed.md b/Docs/Layers/maxspeed.md index e68fe39e68..8172904837 100644 --- a/Docs/Layers/maxspeed.md +++ b/Docs/Layers/maxspeed.md @@ -58,7 +58,8 @@ Elements must match **all** of the following expressions: ### maxspeed-maxspeed The question is `What is the legal maximum speed one is allowed to drive on this road?` -*The maximum allowed speed on this road is {canonical(maxspeed)}* is shown if `maxspeed` is set + +*The maximum allowed speed on this road is {canonical(maxspeed)}* is shown if `maxspeed` is set. - *This is a living street, which has a maxspeed of 20km/h* is shown if with highway=living_street & _country=be - *The maximum allowed speed on this road depends on the direction a vehicle goes* is shown if with maxspeed= & _forward_backward=yes @@ -66,20 +67,23 @@ The question is `What is the legal maximum speed one is allowed to drive on this ### maxspeed-forward The question is `What is the maximum allowed speed when travelling {direction_absolute()}?` -*The maximum allowed speed when travelling {direction_absolute()} on this road is {canonical(maxspeed:forward)}* is shown if `maxspeed:forward` is set + +*The maximum allowed speed when travelling {direction_absolute()} on this road is {canonical(maxspeed:forward)}* is shown if `maxspeed:forward` is set. This tagrendering is only visible in the popup if the following condition is met: _forward_backward=yes | maxspeed:backward~.+ | maxspeed:forward~.+ ### maxspeed-backward The question is `What is the maximum allowed speed when travelling {direction_absolute(,180)}?` -*The maximum allowed speed when travelling {direction_absolute(,180)} on this road is {canonical(maxspeed:backward)}* is shown if `maxspeed:backward` is set + +*The maximum allowed speed when travelling {direction_absolute(,180)} on this road is {canonical(maxspeed:backward)}* is shown if `maxspeed:backward` is set. This tagrendering is only visible in the popup if the following condition is met: _forward_backward=yes | maxspeed:backward~.+ | maxspeed:forward~.+ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -89,11 +93,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/medical_shops.md b/Docs/Layers/medical_shops.md index feebdadd5a..dafc681878 100644 --- a/Docs/Layers/medical_shops.md +++ b/Docs/Layers/medical_shops.md @@ -35,6 +35,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -58,7 +60,7 @@ A shop - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -141,6 +143,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -214,6 +217,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -237,7 +242,7 @@ Elements must match **all** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -284,22 +289,26 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -473,7 +482,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -490,14 +500,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -507,7 +519,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -518,7 +531,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -536,6 +550,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -545,7 +560,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -596,6 +612,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -638,7 +675,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -657,7 +695,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -666,7 +705,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -675,7 +715,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -684,7 +725,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -693,7 +735,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -702,7 +745,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -711,7 +755,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -750,7 +795,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -786,7 +832,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -843,7 +890,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -856,11 +903,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -869,6 +918,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -893,6 +943,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -907,7 +958,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -927,7 +979,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -962,7 +1015,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1032,7 +1086,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1122,7 +1177,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1158,7 +1214,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1231,6 +1288,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1246,6 +1304,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1263,6 +1322,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1280,6 +1340,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1321,6 +1382,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1337,6 +1399,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1372,7 +1435,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1391,7 +1457,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1408,7 +1477,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1467,6 +1539,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1483,6 +1556,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1493,6 +1567,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1502,16 +1577,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/memorial.md b/Docs/Layers/memorial.md index d6381c5aa1..72b530941d 100644 --- a/Docs/Layers/memorial.md +++ b/Docs/Layers/memorial.md @@ -109,12 +109,14 @@ Elements must match **any** of the following expressions: ### images_no_blur Same as `images`, but uploaded request to disable blurring to the panoramax server _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload(,,,true)}* ### memorial-type The question is `What type of memorial is this?` -*This is a {memorial}* is shown if `memorial` is set + +*This is a {memorial}* is shown if `memorial` is set. - *This is a statue* is shown if with memorial=statue - *This is a plaque* is shown if with memorial=plaque @@ -138,7 +140,8 @@ This tagrendering has labels ### inscription The question is `What is the inscription on this memorial?` -*The inscription on this memorial reads:

{inscription}

* is shown if `inscription` is set + +*The inscription on this memorial reads:

{inscription}

* is shown if `inscription` is set. - *This memorial does not have an inscription* is shown if with not:inscription=yes @@ -148,7 +151,8 @@ This tagrendering has labels ### memorial-wikidata The question is `What is the Wikipedia page about this memorial?` -*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set + +*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set. This tagrendering has labels `memorial-specific` @@ -157,7 +161,8 @@ This tagrendering has labels ### subject-wikidata The question is `What is the Wikipedia page about the person or event that is remembered here?` -*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering has labels `memorial-specific` @@ -166,7 +171,8 @@ This tagrendering has labels ### start_date The question is `When was this memorial installed?` -*Placed on {start_date}* is shown if `start_date` is set + +*Placed on {start_date}* is shown if `start_date` is set. ### bench-backrest @@ -194,7 +200,8 @@ This tagrendering has labels ### bench-seats The question is `How many seats does this bench have?` -*This bench has {seats} seats* is shown if `seats` is set + +*This bench has {seats} seats* is shown if `seats` is set. - *This bench does not have separated seats* is shown if with seats:separated=no @@ -205,7 +212,8 @@ This tagrendering has labels ### bench-material The question is `What is the bench (seating) made from?` -*Material: {material}* is shown if `material` is set + +*Material: {material}* is shown if `material` is set. - *The seating is made from wood* is shown if with material=wood - *The seating is made from metal* is shown if with material=metal @@ -221,7 +229,8 @@ This tagrendering has labels ### bench-direction The question is `In which direction are you looking when sitting on the bench?` -*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set + +*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=bench & two_sided!=yes This tagrendering has labels @@ -230,7 +239,8 @@ This tagrendering has labels ### bench-colour The question is `Which colour does this bench have?` -*Colour: {colour}* is shown if `colour` is set + +*Colour: {colour}* is shown if `colour` is set. - *Colour: brown* is shown if with colour=brown - *Colour: green* is shown if with colour=green @@ -248,7 +258,8 @@ This tagrendering has labels ### bench-survey:date The question is `When was this bench last surveyed?` -*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set. - *Surveyed today!* is shown if with survey:date= @@ -259,7 +270,8 @@ This tagrendering has labels ### bench-inscription The question is `Does this bench have an inscription?` -*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set + +*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set. - *This bench does not have an inscription* is shown if with not:inscription=yes - *This bench probably does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_ @@ -282,6 +294,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -291,16 +304,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/mobility_hub.md b/Docs/Layers/mobility_hub.md index 1bf5707523..eb3d230bc8 100644 --- a/Docs/Layers/mobility_hub.md +++ b/Docs/Layers/mobility_hub.md @@ -66,19 +66,22 @@ Elements must match the expression **noname=yes ### network The question is `To which network does this mobility hub belong to?` -*This mobility hub belongs to the network {network}* is shown if `network` is set + +*This mobility hub belongs to the network {network}* is shown if `network` is set. - *This mobility hub does not belong to a network* is shown if with nonetwork=yes - *This mobility hub belongs to the Groningen-Drenthe network* is shown if with network=Groningen-Drenthe @@ -88,7 +91,8 @@ The question is `To which network does this mobility hub belong to?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -108,6 +112,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -117,11 +122,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/mountain_rescue.md b/Docs/Layers/mountain_rescue.md index 6fc8de3d60..e070dc359d 100644 --- a/Docs/Layers/mountain_rescue.md +++ b/Docs/Layers/mountain_rescue.md @@ -51,11 +51,13 @@ Elements must match the expression **access=yes & fee= - *Not accessible* is shown if with access=no & fee= @@ -110,7 +112,8 @@ The question is `Is this nature reserve accessible to the public?` ### Operator tag The question is `Who operates this area?` -*Operated by {operator}* is shown if `operator` is set + +*Operated by {operator}* is shown if `operator` is set. - *Operated by Natuurpunt* is shown if with operator=Natuurpunt - *Operated by {operator}* is shown if with operator~^((n|N)atuurpunt.*)$. _This option cannot be chosen as answer_ @@ -119,7 +122,8 @@ The question is `Who operates this area?` ### Name tag The question is `What is the name of this area?` -*This area is named {name}* is shown if `name` is set + +*This area is named {name}* is shown if `name` is set. - *This area doesn't have a name* is shown if with noname=yes & name= @@ -136,7 +140,8 @@ This tagrendering is only visible in the popup if the following condition is met ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -146,37 +151,44 @@ This tagrendering has labels ### Curator The question is `Whom is the curator of this nature reserve?` -*{curator} is the curator of this nature reserve* is shown if `curator` is set + +*{curator} is the curator of this nature reserve* is shown if `curator` is set. ### Email The question is `What email address can one send to with questions and problems with this nature reserve?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. ### phone The question is `What phone number can one call to with questions and problems with this nature reserve?` -*{phone}* is shown if `phone` is set + +*{phone}* is shown if `phone` is set. ### Non-editable description _This tagrendering has no question and is thus read-only_ -*Extra information: {description}* is shown if `description` is set + +*Extra information: {description}* is shown if `description` is set. ### Editable description The question is `Is there some extra info?` -*Extra info: {description:0}* is shown if `description:0` is set + +*Extra info: {description:0}* is shown if `description:0` is set. ### Surface area _This tagrendering has no question and is thus read-only_ + *Surface area: {_surface:ha}Ha* ### wikipedia Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor The question is `What is the corresponding Wikidata entity?` -*{wikipedia():max-height:25rem}* is shown if `wikidata` is set + +*{wikipedia():max-height:25rem}* is shown if `wikidata` is set. - *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ @@ -184,6 +196,7 @@ The question is `What is the corresponding Wikidata entity?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -193,11 +206,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/not_cyclestreets.md b/Docs/Layers/not_cyclestreets.md index 060cd74ce7..b8cf292b1c 100644 --- a/Docs/Layers/not_cyclestreets.md +++ b/Docs/Layers/not_cyclestreets.md @@ -58,6 +58,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### is_cyclestreet @@ -87,13 +88,15 @@ This tagrendering is only visible in the popup if the following condition is met ### future_cyclestreet The question is `When will this street become a cyclestreet?` -*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set + +*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set. This tagrendering is only visible in the popup if the following condition is met: proposed:cyclestreet=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -103,11 +106,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/note.md b/Docs/Layers/note.md index dcb08114f1..d025298399 100644 --- a/Docs/Layers/note.md +++ b/Docs/Layers/note.md @@ -58,26 +58,31 @@ Elements must match the expression **date_created~.+** ### conversation _This tagrendering has no question and is thus read-only_ + *{visualize_note_comments()}* ### add_image _This tagrendering has no question and is thus read-only_ + *{add_image_to_note()}* ### comment _This tagrendering has no question and is thus read-only_ + *{add_note_comment()}* ### nearby-images _This tagrendering has no question and is thus read-only_ + *

Nearby images

The pictures below are nearby geotagged images and might be helpful to handle this note.{nearby_images(open,yes)}* ### report-contributor _This tagrendering has no question and is thus read-only_ + *Report {_first_user} for spam or inappropriate messages* This tagrendering is only visible in the popup if the following condition is met: _opened_by_anonymous_user=false @@ -85,11 +90,13 @@ This tagrendering is only visible in the popup if the following condition is met ### report-note _This tagrendering has no question and is thus read-only_ + *Report this note as spam or inappropriate* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -99,6 +106,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/observation_tower.md b/Docs/Layers/observation_tower.md index 802a391fea..3e0f6f8259 100644 --- a/Docs/Layers/observation_tower.md +++ b/Docs/Layers/observation_tower.md @@ -82,19 +82,22 @@ Elements must match the expression **noname=yes ### Height The question is `What is the height of this tower?` -*This tower is {height} high* is shown if `height` is set + +*This tower is {height} high* is shown if `height` is set. ### access @@ -106,7 +109,8 @@ The question is `Can this tower be visited?` ### Fee The question is `How much does one have to pay to enter this tower?` -*Visiting this tower costs {charge}* is shown if `charge` is set + +*Visiting this tower costs {charge}* is shown if `charge` is set. - *Free to visit* is shown if with fee=no & charge= @@ -125,7 +129,8 @@ This tagrendering is only visible in the popup if the following condition is met ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -135,7 +140,8 @@ This tagrendering has labels ### step_count The question is `How much individual steps does one have to climb to reach the top of this tower?` -*This tower has {step_count} steps to reach the top* is shown if `step_count` is set + +*This tower has {step_count} steps to reach the top* is shown if `step_count` is set. This tagrendering is only visible in the popup if the following condition is met: access=yes | access=guided @@ -151,7 +157,8 @@ This tagrendering is only visible in the popup if the following condition is met ### Operator The question is `Who maintains this tower?` -*Maintained by {operator}* is shown if `operator` is set + +*Maintained by {operator}* is shown if `operator` is set. ### wheelchair-access @@ -167,7 +174,8 @@ This tagrendering is only visible in the popup if the following condition is met ### wikipedia Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor The question is `What is the corresponding Wikidata entity?` -*{wikipedia():max-height:25rem}* is shown if `wikidata` is set + +*{wikipedia():max-height:25rem}* is shown if `wikidata` is set. - *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ @@ -175,6 +183,7 @@ The question is `What is the corresponding Wikidata entity?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -184,11 +193,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/onwheels_entrance_data.md b/Docs/Layers/onwheels_entrance_data.md index b945148d4f..4f42da8993 100644 --- a/Docs/Layers/onwheels_entrance_data.md +++ b/Docs/Layers/onwheels_entrance_data.md @@ -51,11 +51,13 @@ Elements must match **all** of the following expressions: ### _stolen_entrances _This tagrendering has no question and is thus read-only_ + *{steal(_enclosing_building,walls_and_buildings.entrance_info; walls_and_buildings.biggest_width)}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -65,6 +67,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/osm_community_index.md b/Docs/Layers/osm_community_index.md index dd593aef98..a915d42f5a 100644 --- a/Docs/Layers/osm_community_index.md +++ b/Docs/Layers/osm_community_index.md @@ -48,6 +48,7 @@ Elements must match the expression **resources~.+** ### country_name The name of the country _This tagrendering has no question and is thus read-only_ + *{nameEn} {emojiFlag}* This tagrendering is only visible in the popup if the following condition is met: level=country @@ -55,6 +56,7 @@ This tagrendering is only visible in the popup if the following condition is met ### community_links Community Links (Discord, meetups, Slack groups, IRC channels, mailing lists etc...) _This tagrendering has no question and is thus read-only_ + *{_community_links}* This tagrendering is only visible in the popup if the following condition is met: _community_links~.+ @@ -62,6 +64,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -71,6 +74,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/outdoor_seating.md b/Docs/Layers/outdoor_seating.md index bfb3049539..16ffab237e 100644 --- a/Docs/Layers/outdoor_seating.md +++ b/Docs/Layers/outdoor_seating.md @@ -84,6 +84,7 @@ Elements must match the expression ** *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -116,7 +118,8 @@ The question is `What are the opening hours of {title()}?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -152,7 +155,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -194,6 +198,7 @@ The question is `Is smoking allowed at {title()}?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -203,11 +208,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/parcel_lockers.md b/Docs/Layers/parcel_lockers.md index 207a9915ca..22615b38d9 100644 --- a/Docs/Layers/parcel_lockers.md +++ b/Docs/Layers/parcel_lockers.md @@ -77,22 +77,26 @@ Elements must match the expression ** *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -100,7 +104,8 @@ The question is `What are the opening hours of {title()}?` ### ref The question is `What is the reference number/identifier of this parcel locker?` -*This parcel locker has the reference {ref}* is shown if `ref` is set + +*This parcel locker has the reference {ref}* is shown if `ref` is set. ### mail-in @@ -120,6 +125,7 @@ The question is `Can you pick up packages from this parcel locker?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -129,16 +135,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/parking.md b/Docs/Layers/parking.md index 04c876082f..ce10b2bad6 100644 --- a/Docs/Layers/parking.md +++ b/Docs/Layers/parking.md @@ -75,11 +75,13 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -118,7 +121,8 @@ The question is `What kind of parking is this?` ### capacity-disabled The question is `How many disabled parking spots are there at this parking?` -*There are {capacity:disabled} disabled parking spots* is shown if `capacity:disabled` is set + +*There are {capacity:disabled} disabled parking spots* is shown if `capacity:disabled` is set. - *There are disabled parking spots, but it is not known how many* is shown if with capacity:disabled=yes. _This option cannot be chosen as answer_ - *There are no disabled parking spots* is shown if with capacity:disabled=no. _This option cannot be chosen as answer_ @@ -127,18 +131,21 @@ The question is `How many disabled parking spots are there at this parking?` ### capacity The question is `How many parking spots are there at this parking?` -*There are {capacity} parking spots* is shown if `capacity` is set + +*There are {capacity} parking spots* is shown if `capacity` is set. ### maxstay The question is `What is the maximum amount of time one is allowed to stay here?` -*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set + +*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set. - *There is no limit to the amount of time one can stay here* is shown if with maxstay=unlimited ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -148,16 +155,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/parking_spaces.md b/Docs/Layers/parking_spaces.md index 49323ebf25..47e34f51d5 100644 --- a/Docs/Layers/parking_spaces.md +++ b/Docs/Layers/parking_spaces.md @@ -53,6 +53,7 @@ Elements must match the expression **capacity=1 @@ -84,6 +86,7 @@ _This tagrendering has no question and is thus read-only_ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -93,11 +96,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/parking_spaces_disabled.md b/Docs/Layers/parking_spaces_disabled.md index 9c2f6b9b69..55911ab622 100644 --- a/Docs/Layers/parking_spaces_disabled.md +++ b/Docs/Layers/parking_spaces_disabled.md @@ -47,16 +47,19 @@ Elements must match the expression **noref=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -145,11 +148,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/parks_and_forests_without_etymology.md b/Docs/Layers/parks_and_forests_without_etymology.md index 89a81ff1ab..c1cff45d72 100644 --- a/Docs/Layers/parks_and_forests_without_etymology.md +++ b/Docs/Layers/parks_and_forests_without_etymology.md @@ -69,16 +69,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/parks_without_etymology.md b/Docs/Layers/parks_without_etymology.md index fdbe74233a..fca29a5e97 100644 --- a/Docs/Layers/parks_without_etymology.md +++ b/Docs/Layers/parks_without_etymology.md @@ -69,16 +69,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/pet_shops.md b/Docs/Layers/pet_shops.md index 9fd5f920f7..ce806b8b36 100644 --- a/Docs/Layers/pet_shops.md +++ b/Docs/Layers/pet_shops.md @@ -35,6 +35,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -58,7 +60,7 @@ A shop - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -136,6 +138,7 @@ Elements must match the expression ** [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -209,6 +212,8 @@ Elements must match the expression ** _(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -279,22 +284,26 @@ Elements must match the expression **
*Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -468,7 +477,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -485,14 +495,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -502,7 +514,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -513,7 +526,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -531,6 +545,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -540,7 +555,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -591,6 +607,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -633,7 +670,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -652,7 +690,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -661,7 +700,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -670,7 +710,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -679,7 +720,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -688,7 +730,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -697,7 +740,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -706,7 +750,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -745,7 +790,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -781,7 +827,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -838,7 +885,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -851,11 +898,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -864,6 +913,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -888,6 +938,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -902,7 +953,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -922,7 +974,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -957,7 +1010,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1027,7 +1081,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1117,7 +1172,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1153,7 +1209,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1226,6 +1283,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1241,6 +1299,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1258,6 +1317,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1275,6 +1335,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1316,6 +1377,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1332,6 +1394,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1367,7 +1430,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1386,7 +1452,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1403,7 +1472,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1462,6 +1534,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1478,6 +1551,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1488,6 +1562,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1497,16 +1572,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/pharmacy.md b/Docs/Layers/pharmacy.md index cc1e674f42..169b0a43f3 100644 --- a/Docs/Layers/pharmacy.md +++ b/Docs/Layers/pharmacy.md @@ -97,29 +97,34 @@ Elements must match the expression **opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -129,7 +134,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -140,7 +146,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -150,6 +157,7 @@ This tagrendering has labels ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -158,6 +166,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -169,7 +178,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -180,7 +190,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -189,7 +200,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -208,11 +220,13 @@ The question is `Which methods of payment are accepted here?` ### wheelchair _This tagrendering has no question and is thus read-only_ + *wheelchair* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -222,16 +236,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/physiotherapist.md b/Docs/Layers/physiotherapist.md index 33e05a9ca5..1605701ae9 100644 --- a/Docs/Layers/physiotherapist.md +++ b/Docs/Layers/physiotherapist.md @@ -88,17 +88,20 @@ Elements must match the expression **opening_hours="by appointment" - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ @@ -107,7 +110,8 @@ The question is `What are the opening hours of {title()}?` ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -117,7 +121,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -128,7 +133,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -138,6 +144,7 @@ This tagrendering has labels ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -146,6 +153,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -157,7 +165,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -168,7 +177,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -177,7 +187,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -188,6 +199,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -197,16 +209,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/picnic_table.md b/Docs/Layers/picnic_table.md index 8e23c71f4e..b4f5e69bdd 100644 --- a/Docs/Layers/picnic_table.md +++ b/Docs/Layers/picnic_table.md @@ -67,11 +67,13 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -95,7 +98,8 @@ This tagrendering has labels ### picnic_table-material The question is `What material is this picnic table made of?` -*This picnic table is made of {material}* is shown if `material` is set + +*This picnic table is made of {material}* is shown if `material` is set. - *This is a wooden picnic table* is shown if with material=wood - *This is a concrete picnic table* is shown if with material=concrete @@ -105,6 +109,7 @@ The question is `What material is this picnic table made of?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -114,16 +119,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/play_forest.md b/Docs/Layers/play_forest.md index 45594cd24c..15029879dd 100644 --- a/Docs/Layers/play_forest.md +++ b/Docs/Layers/play_forest.md @@ -68,12 +68,14 @@ Elements must match the expression **Agentschap Natuur en Bos* is shown if with operator~^([aA][nN][bB])$. _This option cannot be chosen as answer_ - *Dit gebied wordt beheerd door het Agentschap Natuur en Bos* is shown if with operator=Agenstchap Natuur en Bos @@ -88,31 +90,37 @@ The question is `Wanneer is deze speelzone toegankelijk?` ### play_forest-email The question is `Wie kan men emailen indien er problemen zijn met de speelzone?` -*De bevoegde dienst kan bereikt worden via {email}* is shown if `email` is set + +*De bevoegde dienst kan bereikt worden via {email}* is shown if `email` is set. ### play_forest-phone The question is `Wie kan men bellen indien er problemen zijn met de speelzone?` -*De bevoegde dienst kan getelefoneerd worden via {phone}* is shown if `phone` is set + +*De bevoegde dienst kan getelefoneerd worden via {phone}* is shown if `phone` is set. ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### play_forest-reviews _This tagrendering has no question and is thus read-only_ + *{reviews(name, play_forest)}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/playground.md b/Docs/Layers/playground.md index 5ace27b36e..0e056e7e75 100644 --- a/Docs/Layers/playground.md +++ b/Docs/Layers/playground.md @@ -104,11 +104,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### fee @@ -121,7 +123,8 @@ The question is `Does one have to pay to use this playground?` ### playground-surface The question is `Which is the surface of this playground?` -*The surface is {surface}* is shown if `surface` is set + +*The surface is {surface}* is shown if `surface` is set. - *The surface is grass* is shown if with surface=grass - *The surface is sand* is shown if with surface=sand @@ -148,7 +151,8 @@ This tagrendering has labels ### playground-min_age The question is `What is the minimum age required to access this playground?` -*Accessible to kids older than {min_age} years* is shown if `min_age` is set + +*Accessible to kids older than {min_age} years* is shown if `min_age` is set. This tagrendering has labels `extra` @@ -156,7 +160,8 @@ This tagrendering has labels ### playground-max_age The question is `What is the maximum age allowed to access this playground?` -*Accessible to kids of at most {max_age}* is shown if `max_age` is set + +*Accessible to kids of at most {max_age}* is shown if `max_age` is set. This tagrendering has labels `extra` @@ -164,7 +169,8 @@ This tagrendering has labels ### playground-operator The question is `Who operates this playground?` -*Operated by {operator}* is shown if `operator` is set + +*Operated by {operator}* is shown if `operator` is set. ### playground-access @@ -180,7 +186,8 @@ The question is `Is this playground accessible to the general public?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -190,12 +197,14 @@ This tagrendering has labels ### playground-email The question is `What is the email address of the playground maintainer?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. ### playground-phone The question is `What is the phone number of the playground maintainer?` -*{phone}* is shown if `phone` is set + +*{phone}* is shown if `phone` is set. ### Playground-wheelchair @@ -208,7 +217,8 @@ The question is `Is this playground accessible to wheelchair users?` ### playground-opening_hours The question is `When is this playground accessible?` -*{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Accessible from sunrise till sunset* is shown if with opening_hours=sunrise-sunset - *Always accessible* is shown if with opening_hours=24/7 @@ -216,33 +226,39 @@ The question is `When is this playground accessible?` ### check_date The question is `When was this object last checked?` -*This object was last checked on {check_date}* is shown if `check_date` is set + +*This object was last checked on {check_date}* is shown if `check_date` is set. - *This object was last checked today* is shown if with check_date= ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### playground-reviews _This tagrendering has no question and is thus read-only_ + *{reviews(name, playground)}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/playground_equipment.md b/Docs/Layers/playground_equipment.md index 0768939dd7..860aa98f15 100644 --- a/Docs/Layers/playground_equipment.md +++ b/Docs/Layers/playground_equipment.md @@ -62,12 +62,14 @@ Elements must match the expression **playground~.+** ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### type The question is `What kind of device is this?` -*This is a {playground}* is shown if `playground` is set + +*This is a {playground}* is shown if `playground` is set. - *This is a swing* is shown if with playground=swing - *This is a structure consisting of several connected playground devices* is shown if with playground=structure @@ -104,6 +106,7 @@ The question is `Is this device accessible by wheelchair?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -113,16 +116,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/police.md b/Docs/Layers/police.md index 5fa06bcad9..9ad5e4e87c 100644 --- a/Docs/Layers/police.md +++ b/Docs/Layers/police.md @@ -89,27 +89,32 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### police_name The question is `What is the name of this police facility?` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### presettypeselect _This tagrendering has no question and is thus read-only_ + *{preset_type_select()}* ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -119,7 +124,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -130,7 +136,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -140,7 +147,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -156,6 +164,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -165,16 +174,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/post_offices_with_atm.md b/Docs/Layers/post_offices_with_atm.md index 60d196efb0..14885334f8 100644 --- a/Docs/Layers/post_offices_with_atm.md +++ b/Docs/Layers/post_offices_with_atm.md @@ -93,12 +93,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -108,7 +110,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -119,7 +122,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -129,7 +133,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours for this post office?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -143,14 +148,16 @@ The question is `Is this a post partner?` ### post_offic_brand The question is `To which brand does this post office belong?` -*This is a {brand} post office* is shown if `brand` is set + +*This is a {brand} post office* is shown if `brand` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=post_office ### partner-brand The question is `For which brand does this location offer services?` -*This location offers services for {post_office:brand}* is shown if `post_office:brand` is set + +*This location offers services for {post_office:brand}* is shown if `post_office:brand` is set. - *This location offers services for DHL* is shown if with post_office:brand=DHL - *This location offers services for DPD* is shown if with post_office:brand=DPD @@ -166,7 +173,8 @@ This tagrendering is only visible in the popup if the following condition is met ### letter-from The question is `Can you post a letter here?` -*You can post letters with these companies: {post_office:letter_from}* is shown if `post_office:letter_from` is set + +*You can post letters with these companies: {post_office:letter_from}* is shown if `post_office:letter_from` is set. - *You can post letters here* is shown if with post_office:letter_from=yes - *You can't post letters here* is shown if with post_office:letter_from=no @@ -174,7 +182,8 @@ The question is `Can you post a letter here?` ### parcel-from The question is `Can you send a parcel here?` -*You can post parcels with these companies: {post_office:parcel_from}* is shown if `post_office:parcel_from` is set + +*You can post parcels with these companies: {post_office:parcel_from}* is shown if `post_office:parcel_from` is set. - *You can send parcels here* is shown if with post_office:parcel_from=yes - *You can't send parcels here* is shown if with post_office:parcel_from=no @@ -182,7 +191,8 @@ The question is `Can you send a parcel here?` ### parcel-pickup The question is `Can you pick up missed parcels here?` -*You can pick up parcels from these companies: {post_office:parcel_pickup}* is shown if `post_office:parcel_pickup` is set + +*You can pick up parcels from these companies: {post_office:parcel_pickup}* is shown if `post_office:parcel_pickup` is set. - *You can pick up missed parcels here* is shown if with post_office:parcel_pickup=yes - *You can't pick up missed parcels here* is shown if with post_office:parcel_pickup=no @@ -190,7 +200,8 @@ The question is `Can you pick up missed parcels here?` ### parcel-to The question is `Can you send parcels to here for pickup?` -*You can send parcels to here for pickup with these companies: {post_office:parcel_to}* is shown if `post_office:parcel_to` is set + +*You can send parcels to here for pickup with these companies: {post_office:parcel_to}* is shown if `post_office:parcel_to` is set. - *You can send parcels to here for pickup* is shown if with post_office:parcel_to=yes - *You can't send parcels to here for pickup* is shown if with post_office:parcel_to=no @@ -198,7 +209,8 @@ The question is `Can you send parcels to here for pickup?` ### stamps The question is `Can you buy stamps here?` -*You can buy stamps from companies: {post_office:stamps}* is shown if `post_office:stamps` is set + +*You can buy stamps from companies: {post_office:stamps}* is shown if `post_office:stamps` is set. - *You can buy stamps here* is shown if with post_office:stamps=yes - *You can't buy stamps here* is shown if with post_office:stamps=no @@ -214,6 +226,7 @@ The question is `Does this post office have an ATM?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -223,11 +236,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/postboxes.md b/Docs/Layers/postboxes.md index 6b0f690027..a025a2cea8 100644 --- a/Docs/Layers/postboxes.md +++ b/Docs/Layers/postboxes.md @@ -63,21 +63,25 @@ Elements must match the expression ** *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -115,7 +117,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -126,7 +129,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -136,7 +140,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours for this post office?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -150,14 +155,16 @@ The question is `Is this a post partner?` ### post_offic_brand The question is `To which brand does this post office belong?` -*This is a {brand} post office* is shown if `brand` is set + +*This is a {brand} post office* is shown if `brand` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=post_office ### partner-brand The question is `For which brand does this location offer services?` -*This location offers services for {post_office:brand}* is shown if `post_office:brand` is set + +*This location offers services for {post_office:brand}* is shown if `post_office:brand` is set. - *This location offers services for DHL* is shown if with post_office:brand=DHL - *This location offers services for DPD* is shown if with post_office:brand=DPD @@ -173,7 +180,8 @@ This tagrendering is only visible in the popup if the following condition is met ### letter-from The question is `Can you post a letter here?` -*You can post letters with these companies: {post_office:letter_from}* is shown if `post_office:letter_from` is set + +*You can post letters with these companies: {post_office:letter_from}* is shown if `post_office:letter_from` is set. - *You can post letters here* is shown if with post_office:letter_from=yes - *You can't post letters here* is shown if with post_office:letter_from=no @@ -181,7 +189,8 @@ The question is `Can you post a letter here?` ### parcel-from The question is `Can you send a parcel here?` -*You can post parcels with these companies: {post_office:parcel_from}* is shown if `post_office:parcel_from` is set + +*You can post parcels with these companies: {post_office:parcel_from}* is shown if `post_office:parcel_from` is set. - *You can send parcels here* is shown if with post_office:parcel_from=yes - *You can't send parcels here* is shown if with post_office:parcel_from=no @@ -189,7 +198,8 @@ The question is `Can you send a parcel here?` ### parcel-pickup The question is `Can you pick up missed parcels here?` -*You can pick up parcels from these companies: {post_office:parcel_pickup}* is shown if `post_office:parcel_pickup` is set + +*You can pick up parcels from these companies: {post_office:parcel_pickup}* is shown if `post_office:parcel_pickup` is set. - *You can pick up missed parcels here* is shown if with post_office:parcel_pickup=yes - *You can't pick up missed parcels here* is shown if with post_office:parcel_pickup=no @@ -197,7 +207,8 @@ The question is `Can you pick up missed parcels here?` ### parcel-to The question is `Can you send parcels to here for pickup?` -*You can send parcels to here for pickup with these companies: {post_office:parcel_to}* is shown if `post_office:parcel_to` is set + +*You can send parcels to here for pickup with these companies: {post_office:parcel_to}* is shown if `post_office:parcel_to` is set. - *You can send parcels to here for pickup* is shown if with post_office:parcel_to=yes - *You can't send parcels to here for pickup* is shown if with post_office:parcel_to=no @@ -205,7 +216,8 @@ The question is `Can you send parcels to here for pickup?` ### stamps The question is `Can you buy stamps here?` -*You can buy stamps from companies: {post_office:stamps}* is shown if `post_office:stamps` is set + +*You can buy stamps from companies: {post_office:stamps}* is shown if `post_office:stamps` is set. - *You can buy stamps here* is shown if with post_office:stamps=yes - *You can't buy stamps here* is shown if with post_office:stamps=no @@ -221,6 +233,7 @@ The question is `Does this post office have an ATM?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -230,11 +243,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/pt_shelter.md b/Docs/Layers/pt_shelter.md index 75382c03ad..23fa085243 100644 --- a/Docs/Layers/pt_shelter.md +++ b/Docs/Layers/pt_shelter.md @@ -46,11 +46,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -60,11 +62,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/public_bookcase.md b/Docs/Layers/public_bookcase.md index d97a9e6b4a..452bd98995 100644 --- a/Docs/Layers/public_bookcase.md +++ b/Docs/Layers/public_bookcase.md @@ -90,24 +90,28 @@ Elements must match the expression **noname=yes & name= ### public_bookcase-capacity The question is `How many books fit into this public bookcase?` -*{capacity} books fit in this bookcase* is shown if `capacity` is set + +*{capacity} books fit in this bookcase* is shown if `capacity` is set. ### bookcase-booktypes The question is `What kind of books can be found in this public bookcase?` -*This place mostly serves {books}* is shown if `books` is set + +*This place mostly serves {books}* is shown if `books` is set. - *Mostly children books* is shown if with books=children - *Mostly books for adults* is shown if with books=adults @@ -132,19 +136,22 @@ This tagrendering is only visible in the popup if the following condition is met ### public_bookcase-operator The question is `Who maintains this public bookcase?` -*Operated by {operator}* is shown if `operator` is set + +*Operated by {operator}* is shown if `operator` is set. ### public_bookcase-brand The question is `Is this public bookcase part of a bigger network?` -*This public bookcase is part of {brand}* is shown if `brand` is set + +*This public bookcase is part of {brand}* is shown if `brand` is set. - *This public bookcase is not part of a bigger network* is shown if with nobrand=yes ### public_bookcase-ref The question is `What is the reference number of this public bookcase?` -*The reference number of this public bookcase within {brand} is {ref}* is shown if `ref` is set + +*The reference number of this public bookcase within {brand} is {ref}* is shown if `ref` is set. - *This bookcase is not part of a bigger network* is shown if with nobrand=yes & brand= & ref= @@ -153,16 +160,19 @@ This tagrendering is only visible in the popup if the following condition is met ### public_bookcase-start_date The question is `When was this public bookcase installed?` -*Installed on {start_date}* is shown if `start_date` is set + +*Installed on {start_date}* is shown if `start_date` is set. ### public_bookcase-website The question is `Is there a website with more information about this public bookcase?` -*{link(More info on the website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set + +*{link(More info on the website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -172,16 +182,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/railway_platforms.md b/Docs/Layers/railway_platforms.md index 98f18b8357..e167734c9e 100644 --- a/Docs/Layers/railway_platforms.md +++ b/Docs/Layers/railway_platforms.md @@ -50,11 +50,13 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -78,6 +81,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -87,6 +91,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/rainbow_crossing_high_zoom.md b/Docs/Layers/rainbow_crossing_high_zoom.md index 95ac39d902..a3c956fc7d 100644 --- a/Docs/Layers/rainbow_crossing_high_zoom.md +++ b/Docs/Layers/rainbow_crossing_high_zoom.md @@ -46,6 +46,7 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -93,7 +96,8 @@ This tagrendering has labels ### desk-height The question is `What is the height of the reception desk? ` -*The height of the desk is {canonical(desk:height)}* is shown if `desk:height` is set + +*The height of the desk is {canonical(desk:height)}* is shown if `desk:height` is set. ### induction-loop An accessibility feature: induction loops are for hard-hearing persons which have an FM-receiver. @@ -105,6 +109,7 @@ The question is `Does this place have an audio induction loop for people with re ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -114,11 +119,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/recycling.md b/Docs/Layers/recycling.md index c48248e16b..827c915980 100644 --- a/Docs/Layers/recycling.md +++ b/Docs/Layers/recycling.md @@ -95,6 +95,7 @@ Elements must match the expression **noname=yes @@ -160,12 +162,14 @@ The question is `What can be recycled here?` ### operator The question is `What company operates this recycling facility?` -*This recycling facility is operated by {operator}* is shown if `operator` is set + +*This recycling facility is operated by {operator}* is shown if `operator` is set. ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -176,7 +180,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -188,7 +193,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -199,7 +205,8 @@ This tagrendering has labels ### opening_hours_24_7 The question is `What are the opening hours of this recycling facility?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -207,7 +214,8 @@ The question is `What are the opening hours of this recycling facility?` ### access The question is `Who can use this recycling facility?` -*This recycling facility can be used by {access}* is shown if `access` is set + +*This recycling facility can be used by {access}* is shown if `access` is set. - *Everyone can use this recycling facility* is shown if with access=yes - *Only residents can use this recycling facility* is shown if with access=residents @@ -216,7 +224,8 @@ The question is `Who can use this recycling facility?` ### colour The question is `What color is this recycling container?` -*This recycling container is {colour}* is shown if `colour` is set + +*This recycling container is {colour}* is shown if `colour` is set. - *This recycling container is coloured blue* is shown if with colour=blue - *This recycling container is coloured green* is shown if with colour=green @@ -231,13 +240,15 @@ This tagrendering is only visible in the popup if the following condition is met ### survey_date The question is `When was this object last surveyed?` -*This object was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This object was last surveyed on {survey:date}* is shown if `survey:date` is set. - *This object was last surveyed today* is shown if with survey:date= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -247,16 +258,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/route_marker.md b/Docs/Layers/route_marker.md index 105cf5a833..ac2b9712b0 100644 --- a/Docs/Layers/route_marker.md +++ b/Docs/Layers/route_marker.md @@ -53,6 +53,7 @@ Elements must match the expression ** *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -138,7 +141,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -149,7 +153,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -159,6 +164,7 @@ This tagrendering has labels ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -167,6 +173,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -178,7 +185,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -189,7 +197,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -198,7 +207,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -209,7 +219,8 @@ This tagrendering has labels ### capacity The question is `How much students can at most enroll in this school?` -*This school can enroll at most {capacity} students* is shown if `capacity` is set + +*This school can enroll at most {capacity} students* is shown if `capacity` is set. ### education-level-belgium @@ -269,7 +280,8 @@ The question is `Which genders can enroll at this school?` ### pedagogy The question is `What educational theory is applied on this school?` -*This school uses {pedagogy}* is shown if `pedagogy` is set + +*This school uses {pedagogy}* is shown if `pedagogy` is set. - *This school does not use a specific pedagogy* is shown if with pedagogy=mainstream - *This school uses the Montessori method of education* is shown if with pedagogy=montessori @@ -299,12 +311,14 @@ This tagrendering is only visible in the popup if the following condition is met ### school-language _This tagrendering has no question and is thus read-only_ + *{language_chooser(language,What is the main language of this school?
What language is spoken with the students in non-language related courses and with the administration?
,,&LBRACElanguage&LPARENS&RPARENS&RBRACE is the main language of this school,The following languages are used in this school:&LBRACElist&LPARENS&RPARENS&RBRACE,The main language of this school is unknown)}* ### uniform The question is `Do pupils have to wear a uniform or obey a dresscode?` -*{dress_code}* is shown if `dress_code` is set + +*{dress_code}* is shown if `dress_code` is set. - *Students must wear a uniform, which is extensively described* is shown if with dress_code=uniform - *Students must wear clothes in a specific colour scheme* is shown if with dress_code=obligated_colour @@ -317,7 +331,8 @@ The question is `Do pupils have to wear a uniform or obey a dresscode?` ### wikipedia Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor The question is `What is the corresponding Wikidata entity?` -*{wikipedia():max-height:25rem}* is shown if `wikidata` is set + +*{wikipedia():max-height:25rem}* is shown if `wikidata` is set. - *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ @@ -325,6 +340,7 @@ The question is `What is the corresponding Wikidata entity?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -334,11 +350,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/scouting_group.md b/Docs/Layers/scouting_group.md index e90b98e330..f5ae9bee33 100644 --- a/Docs/Layers/scouting_group.md +++ b/Docs/Layers/scouting_group.md @@ -74,17 +74,20 @@ Elements must match the expression ** *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -94,7 +97,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -105,7 +109,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -115,26 +120,31 @@ This tagrendering has labels ### start_date The question is `When was this group founded?` -*This group was founded at {start_date}* is shown if `start_date` is set + +*This group was founded at {start_date}* is shown if `start_date` is set. ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/shelter.md b/Docs/Layers/shelter.md index 59bf6eef02..2725e1f91e 100644 --- a/Docs/Layers/shelter.md +++ b/Docs/Layers/shelter.md @@ -52,12 +52,14 @@ Elements must match the expression **shelter_type=public_transport - *This is a shelter protecting from rain at a picnic site.* is shown if with shelter_type=picnic_shelter @@ -70,6 +72,7 @@ The question is `What kind of shelter is this?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -79,11 +82,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/shop_dog_friendly.md b/Docs/Layers/shop_dog_friendly.md index e4c85d8a33..b29e5591e8 100644 --- a/Docs/Layers/shop_dog_friendly.md +++ b/Docs/Layers/shop_dog_friendly.md @@ -34,6 +34,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -57,7 +59,7 @@ A shop - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -133,6 +135,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -206,6 +209,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -229,7 +234,7 @@ Elements must match **all** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -276,22 +281,26 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -465,7 +474,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -482,14 +492,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -499,7 +511,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -510,7 +523,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -528,6 +542,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -537,7 +552,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -588,6 +604,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -630,7 +667,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -649,7 +687,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -658,7 +697,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -667,7 +707,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -676,7 +717,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -685,7 +727,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -694,7 +737,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -703,7 +747,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -742,7 +787,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -778,7 +824,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -835,7 +882,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -848,11 +895,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -861,6 +910,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -885,6 +935,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -899,7 +950,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -919,7 +971,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -954,7 +1007,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1024,7 +1078,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1114,7 +1169,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1150,7 +1206,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1223,6 +1280,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1238,6 +1296,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1255,6 +1314,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1272,6 +1332,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1313,6 +1374,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1329,6 +1391,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1364,7 +1427,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1383,7 +1449,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1400,7 +1469,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1459,6 +1531,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1475,6 +1548,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1485,6 +1559,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1494,16 +1569,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/shops.md b/Docs/Layers/shops.md index c23ec70012..709b5305a6 100644 --- a/Docs/Layers/shops.md +++ b/Docs/Layers/shops.md @@ -33,6 +33,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -56,7 +58,7 @@ A shop - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -149,6 +151,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -222,6 +225,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -245,7 +250,7 @@ Elements must match **all** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -292,22 +297,26 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -481,7 +490,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -498,14 +508,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -515,7 +527,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -526,7 +539,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -544,6 +558,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -553,7 +568,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -604,6 +620,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -646,7 +683,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -665,7 +703,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -674,7 +713,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -683,7 +723,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -692,7 +733,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -701,7 +743,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -710,7 +753,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -719,7 +763,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -758,7 +803,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -794,7 +840,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -851,7 +898,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -864,11 +911,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -877,6 +926,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -901,6 +951,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -915,7 +966,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -935,7 +987,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -970,7 +1023,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1040,7 +1094,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1130,7 +1185,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1166,7 +1222,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1239,6 +1296,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1254,6 +1312,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1271,6 +1330,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1288,6 +1348,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1329,6 +1390,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1345,6 +1407,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1380,7 +1443,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1399,7 +1465,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1416,7 +1485,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1475,6 +1547,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1491,6 +1564,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1501,6 +1575,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1510,16 +1585,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/shops_glutenfree.md b/Docs/Layers/shops_glutenfree.md index 90cd729f4b..69c9fa5b96 100644 --- a/Docs/Layers/shops_glutenfree.md +++ b/Docs/Layers/shops_glutenfree.md @@ -35,6 +35,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -57,7 +59,7 @@ A shop - [organic](#organic) - [sugar_free](#sugar_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -135,6 +137,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -208,6 +211,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -230,7 +235,7 @@ Elements must match **all** of the following expressions: | [organic](#organic) | Does this shop offer organic products?
3 options | | _Multiple choice only_ | | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -277,11 +282,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### gluten_free @@ -299,12 +306,14 @@ This tagrendering has labels ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -478,7 +487,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -495,14 +505,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -512,7 +524,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -523,7 +536,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -541,6 +555,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -550,7 +565,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -601,6 +617,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -643,7 +680,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -662,7 +700,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -671,7 +710,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -680,7 +720,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -689,7 +730,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -698,7 +740,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -707,7 +750,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -716,7 +760,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -755,7 +800,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -791,7 +837,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -835,7 +882,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -848,11 +895,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -861,6 +910,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -885,6 +935,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -899,7 +950,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -919,7 +971,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -954,7 +1007,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1024,7 +1078,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1114,7 +1169,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1150,7 +1206,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1223,6 +1280,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1238,6 +1296,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1255,6 +1314,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1272,6 +1332,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1313,6 +1374,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1329,6 +1391,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1364,7 +1427,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1383,7 +1449,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1400,7 +1469,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1459,6 +1531,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1475,6 +1548,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1485,6 +1559,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1494,16 +1569,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/shops_lactosefree.md b/Docs/Layers/shops_lactosefree.md index 81319a4078..cbe0b0a002 100644 --- a/Docs/Layers/shops_lactosefree.md +++ b/Docs/Layers/shops_lactosefree.md @@ -35,6 +35,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -57,7 +59,7 @@ A shop - [organic](#organic) - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -135,6 +137,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -208,6 +211,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -230,7 +235,7 @@ Elements must match **all** of the following expressions: | [organic](#organic) | Does this shop offer organic products?
3 options | | _Multiple choice only_ | | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -277,11 +282,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### lactose_free @@ -299,12 +306,14 @@ This tagrendering has labels ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -478,7 +487,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -495,14 +505,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -512,7 +524,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -523,7 +536,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -541,6 +555,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -550,7 +565,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -601,6 +617,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -643,7 +680,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -662,7 +700,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -671,7 +710,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -680,7 +720,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -689,7 +730,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -698,7 +740,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -707,7 +750,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -716,7 +760,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -755,7 +800,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -791,7 +837,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -835,7 +882,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -848,11 +895,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -861,6 +910,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -885,6 +935,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -899,7 +950,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -919,7 +971,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -954,7 +1007,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1024,7 +1078,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1114,7 +1169,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1150,7 +1206,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1223,6 +1280,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1238,6 +1296,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1255,6 +1314,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1272,6 +1332,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1313,6 +1374,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1329,6 +1391,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1364,7 +1427,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1383,7 +1449,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1400,7 +1469,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1459,6 +1531,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1475,6 +1548,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1485,6 +1559,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1494,16 +1569,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/shops_second_hand.md b/Docs/Layers/shops_second_hand.md index 570217e898..c658bde504 100644 --- a/Docs/Layers/shops_second_hand.md +++ b/Docs/Layers/shops_second_hand.md @@ -34,6 +34,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -57,7 +59,7 @@ A shop - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -132,6 +134,7 @@ Elements must match **any** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -205,6 +208,8 @@ Elements must match **any** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -228,7 +233,7 @@ Elements must match **any** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -275,22 +280,26 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -464,7 +473,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -481,14 +491,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -498,7 +510,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -509,7 +522,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -527,6 +541,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -536,7 +551,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -587,6 +603,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -629,7 +666,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -648,7 +686,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -657,7 +696,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -666,7 +706,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -675,7 +716,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -684,7 +726,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -693,7 +736,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -702,7 +746,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -741,7 +786,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -777,7 +823,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -834,7 +881,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -847,11 +894,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -860,6 +909,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -884,6 +934,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -898,7 +949,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -918,7 +970,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -953,7 +1006,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1023,7 +1077,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1113,7 +1168,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1149,7 +1205,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1222,6 +1279,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1237,6 +1295,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1254,6 +1313,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1271,6 +1331,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1312,6 +1373,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1328,6 +1390,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1363,7 +1426,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1382,7 +1448,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1399,7 +1468,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1458,6 +1530,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1474,6 +1547,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1484,6 +1558,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1493,16 +1568,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/shops_with_climbing_shoe_repair.md b/Docs/Layers/shops_with_climbing_shoe_repair.md index 45fb2e1bfd..2ce176253f 100644 --- a/Docs/Layers/shops_with_climbing_shoe_repair.md +++ b/Docs/Layers/shops_with_climbing_shoe_repair.md @@ -35,6 +35,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -58,7 +60,7 @@ A shop - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -134,6 +136,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -208,6 +211,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -231,7 +236,7 @@ Elements must match **all** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -285,22 +290,26 @@ The question is `Does this shoe repair shop repair climbing shoes?` ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -474,7 +483,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -491,14 +501,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -508,7 +520,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -519,7 +532,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -537,6 +551,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -546,7 +561,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -597,6 +613,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -639,7 +676,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -658,7 +696,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -667,7 +706,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -676,7 +716,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -685,7 +726,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -694,7 +736,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -703,7 +746,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -712,7 +756,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -751,7 +796,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -787,7 +833,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -844,7 +891,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -857,11 +904,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -870,6 +919,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -894,6 +944,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -908,7 +959,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -928,7 +980,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -963,7 +1016,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1033,7 +1087,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1123,7 +1178,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1159,7 +1215,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1232,6 +1289,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1247,6 +1305,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1264,6 +1323,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1281,6 +1341,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1322,6 +1383,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1338,6 +1400,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1373,7 +1436,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1392,7 +1458,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1409,7 +1478,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1468,6 +1540,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1484,6 +1557,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1494,6 +1568,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1503,16 +1578,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/shower.md b/Docs/Layers/shower.md index c359d213e8..9ccdbacb73 100644 --- a/Docs/Layers/shower.md +++ b/Docs/Layers/shower.md @@ -84,11 +84,13 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -127,14 +130,16 @@ The question is `Is there a fee for using this shower?` ### charge The question is `How much does it cost to use this shower?` -*It costs {charge} to use this shower* is shown if `charge` is set + +*It costs {charge} to use this shower* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -175,6 +180,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -184,16 +190,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/ski_piste.md b/Docs/Layers/ski_piste.md index 4a8156711b..ffdb3eca4b 100644 --- a/Docs/Layers/ski_piste.md +++ b/Docs/Layers/ski_piste.md @@ -55,6 +55,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### piste_difficulty @@ -71,11 +72,13 @@ The question is `What is the difficulty of this piste?` ### length _This tagrendering has no question and is thus read-only_ + *This part of the ski piste is {_length:km} kilometer long* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -85,11 +88,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/slow_roads.md b/Docs/Layers/slow_roads.md index bd2c301513..51e0141903 100644 --- a/Docs/Layers/slow_roads.md +++ b/Docs/Layers/slow_roads.md @@ -57,6 +57,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### explanation @@ -73,7 +74,8 @@ _This tagrendering has no question and is thus read-only_ ### slow_roads-surface The question is `What surface does this road have?` -*The surface is {surface}* is shown if `surface` is set + +*The surface is {surface}* is shown if `surface` is set. - *The surface is grass* is shown if with surface=grass - *The surface is ground* is shown if with surface=ground @@ -94,6 +96,7 @@ The question is `Is this road lit at night?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -103,6 +106,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/souvenir_coin.md b/Docs/Layers/souvenir_coin.md index 58891b51e3..bc9040a449 100644 --- a/Docs/Layers/souvenir_coin.md +++ b/Docs/Layers/souvenir_coin.md @@ -90,12 +90,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -103,7 +105,8 @@ The question is `What are the opening hours of {title()}?` ### designs The question is `How many designs are available?` -*This machine has {coin:design_count} designs available* is shown if `coin:design_count` is set + +*This machine has {coin:design_count} designs available* is shown if `coin:design_count` is set. - *This machine has one design available* is shown if with coin:design_count=1 - *This machine has two designs available* is shown if with coin:design_count=2 @@ -125,7 +128,8 @@ The question is `Which methods of payment are accepted here?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -135,7 +139,8 @@ This tagrendering has labels ### charge The question is `How much does a souvenir coin cost?` -*A souvenir coins costs {charge}* is shown if `charge` is set + +*A souvenir coins costs {charge}* is shown if `charge` is set. - *A souvenir coin costs 2 euro* is shown if with charge=2 EUR @@ -171,6 +176,7 @@ The question is `Is this machine located indoors?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -180,7 +186,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -194,13 +201,15 @@ This tagrendering has labels ### check_date The question is `When was this object last checked?` -*This object was last checked on {check_date}* is shown if `check_date` is set + +*This object was last checked on {check_date}* is shown if `check_date` is set. - *This object was last checked today* is shown if with check_date= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -210,16 +219,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/souvenir_note.md b/Docs/Layers/souvenir_note.md index ccdc58063e..f6f8736db1 100644 --- a/Docs/Layers/souvenir_note.md +++ b/Docs/Layers/souvenir_note.md @@ -90,12 +90,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -103,7 +105,8 @@ The question is `What are the opening hours of {title()}?` ### designs The question is `How many designs are available?` -*This machine has {note:design_count} designs available.* is shown if `note:design_count` is set + +*This machine has {note:design_count} designs available.* is shown if `note:design_count` is set. - *This machine has one design available.* is shown if with note:design_count=1 - *This machine has two designs available.* is shown if with note:design_count=2 @@ -125,7 +128,8 @@ The question is `Which methods of payment are accepted here?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -135,7 +139,8 @@ This tagrendering has labels ### charge The question is `How much does a souvenir note cost?` -*A souvenir note costs {charge}* is shown if `charge` is set + +*A souvenir note costs {charge}* is shown if `charge` is set. - *A souvenir note costs 2 euro* is shown if with charge=2 EUR - *A souvenir note costs 3 euro* is shown if with charge=3 EUR @@ -172,6 +177,7 @@ The question is `Is this machine located indoors?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -181,7 +187,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -195,13 +202,15 @@ This tagrendering has labels ### check_date The question is `When was this object last checked?` -*This object was last checked on {check_date}* is shown if `check_date` is set + +*This object was last checked on {check_date}* is shown if `check_date` is set. - *This object was last checked today* is shown if with check_date= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -211,16 +220,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/speed_camera.md b/Docs/Layers/speed_camera.md index 18d7bd643f..2bdcb8446a 100644 --- a/Docs/Layers/speed_camera.md +++ b/Docs/Layers/speed_camera.md @@ -63,16 +63,19 @@ Elements must match the expression **sport=basketball - *Soccer is played here* is shown if with sport=soccer @@ -116,7 +118,8 @@ This tagrendering is only visible in the popup if the following condition is met ### sport_pitch-surface The question is `Which is the surface of this sport pitch?` -*The surface is {surface}* is shown if `surface` is set + +*The surface is {surface}* is shown if `surface` is set. - *The surface is grass* is shown if with surface=grass - *The surface is sand* is shown if with surface=sand @@ -148,17 +151,20 @@ The question is `Does one have to make an appointment to use this sport pitch?` ### sport_pitch-phone The question is `What is the phone number of the operator?` -*{phone}* is shown if `phone` is set + +*{phone}* is shown if `phone` is set. ### sport_pitch-email The question is `What is the email address of the operator?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. ### sport_pitch-opening_hours The question is `When is this pitch accessible?` -*Openingsuren: {opening_hours_table()}* is shown if `opening_hours` is set + +*Openingsuren: {opening_hours_table()}* is shown if `opening_hours` is set. - *Always accessible* is shown if with opening_hours=. _This option cannot be chosen as answer_ - *Always accessible* is shown if with opening_hours=24/7 @@ -168,21 +174,25 @@ This tagrendering is only visible in the popup if the following condition is met ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### sport-pitch-reviews _This tagrendering has no question and is thus read-only_ + *{reviews(name, sportpitch)}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/sport_places_without_etymology.md b/Docs/Layers/sport_places_without_etymology.md index 62cf529f2a..41f2aff45c 100644 --- a/Docs/Layers/sport_places_without_etymology.md +++ b/Docs/Layers/sport_places_without_etymology.md @@ -69,16 +69,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/sport_shops.md b/Docs/Layers/sport_shops.md index e95fd92a1d..c274f83c92 100644 --- a/Docs/Layers/sport_shops.md +++ b/Docs/Layers/sport_shops.md @@ -35,6 +35,8 @@ A shop - [copyshop-binding](#copyshop-binding) - [optometrist_service](#optometrist_service) - [key_cutter](#key_cutter) + - [hairdresser-targetgroup](#hairdresser-targetgroup) + - [reservation](#reservation) - [sells_new_bikes](#sells_new_bikes) - [bike_second_hand](#bike_second_hand) - [repairs_bikes](#repairs_bikes) @@ -58,7 +60,7 @@ A shop - [sugar_free](#sugar_free) - [gluten_free](#gluten_free) - [lactose_free](#lactose_free) - - [dog-access](#dog-access) + - [shop-dog-access](#shop-dog-access) - [description](#description) - [toilets-group](#toilets-group) - [grouptitle](#grouptitle) @@ -136,6 +138,7 @@ Elements must match the expression ** [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -209,6 +212,8 @@ Elements must match the expression ** _(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -279,22 +284,26 @@ Elements must match the expression **
*Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -468,7 +477,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -485,14 +495,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -502,7 +514,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -513,7 +526,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -531,6 +545,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -540,7 +555,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -591,6 +607,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -633,7 +670,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -652,7 +690,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -661,7 +700,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -670,7 +710,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -679,7 +720,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -688,7 +730,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -697,7 +740,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -706,7 +750,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -745,7 +790,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -781,7 +827,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -838,7 +885,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -851,11 +898,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -864,6 +913,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -888,6 +938,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -902,7 +953,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -922,7 +974,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -957,7 +1010,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1027,7 +1081,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1117,7 +1172,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1153,7 +1209,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1226,6 +1283,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1241,6 +1299,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1258,6 +1317,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1275,6 +1335,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1316,6 +1377,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1332,6 +1394,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1367,7 +1430,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1386,7 +1452,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1403,7 +1472,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1462,6 +1534,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1478,6 +1551,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1488,6 +1562,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1497,16 +1572,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/sports_centre.md b/Docs/Layers/sports_centre.md index 241bb888ea..a3b7a8302f 100644 --- a/Docs/Layers/sports_centre.md +++ b/Docs/Layers/sports_centre.md @@ -75,19 +75,22 @@ Elements must match the expression **opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -97,7 +100,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -107,7 +111,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -127,7 +132,8 @@ The question is `Is this place accessible with a wheelchair?` ### sport_centre-sport The question is `What sports are played at this venue?` -*Sports played here: {sport}* is shown if `sport` is set + +*Sports played here: {sport}* is shown if `sport` is set. - *Nine-pin bowling* is shown if with sport=9pin - *Ten-pin bowling* is shown if with sport=10pin @@ -261,6 +267,7 @@ The question is `What sports are played at this venue?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -270,11 +277,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/stairs.md b/Docs/Layers/stairs.md index 3c2fc281b9..e0cb79ca14 100644 --- a/Docs/Layers/stairs.md +++ b/Docs/Layers/stairs.md @@ -67,12 +67,14 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -109,6 +111,7 @@ This tagrendering is only visible in the popup if the following condition is met ### tactile_writing_language _This tagrendering has no question and is thus read-only_ + *{language_chooser(tactile_writing:braille,In which languages is there tactile writing &LPARENSbraille&RPARENS for navigation? ,These stairs have tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,These stairs have tactile writing in &LBRACElanguage&LPARENS&RPARENS&RBRACE,,)}* This tagrendering is only visible in the popup if the following condition is met: tactile_writing=yes @@ -126,7 +129,8 @@ The question is `Is there a ramp at these stairs?` ### incline The question is `What is the incline of these stairs?` -*These stairs have an incline of {incline}* is shown if `incline` is set + +*These stairs have an incline of {incline}* is shown if `incline` is set. - *The upward direction is {direction_absolute()}* is shown if with incline=up. _This option cannot be chosen as answer_ - *The downward direction is {direction_absolute()}* is shown if with incline=down. _This option cannot be chosen as answer_ @@ -134,6 +138,7 @@ The question is `What is the incline of these stairs?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -143,11 +148,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/street_lamps.md b/Docs/Layers/street_lamps.md index 5bdbc4580d..8ebd3d0417 100644 --- a/Docs/Layers/street_lamps.md +++ b/Docs/Layers/street_lamps.md @@ -84,6 +84,7 @@ Elements must match the expression **light:colour=white - *This lamp emits green light* is shown if with light:colour=green @@ -162,7 +165,8 @@ This tagrendering has labels ### count The question is `How many fixtures does this light have?` -*This lamp has {light:count} fixtures* is shown if `light:count` is set + +*This lamp has {light:count} fixtures* is shown if `light:count` is set. - *This lamp has 1 fixture* is shown if with light:count=1 - *This lamp has 2 fixtures* is shown if with light:count=2 @@ -186,7 +190,8 @@ This tagrendering has labels ### direction The question is `Where does this lamp point to?` -*This lamp points towards {light:direction}* is shown if `light:direction` is set + +*This lamp points towards {light:direction}* is shown if `light:direction` is set. This tagrendering is only visible in the popup if the following condition is met: light:count=1 This tagrendering has labels @@ -195,6 +200,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -204,16 +210,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/streets_without_etymology.md b/Docs/Layers/streets_without_etymology.md index f1eed8f758..53124eaf1f 100644 --- a/Docs/Layers/streets_without_etymology.md +++ b/Docs/Layers/streets_without_etymology.md @@ -70,16 +70,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -87,38 +90,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -126,6 +136,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/stripclub.md b/Docs/Layers/stripclub.md index cf0f07c7bf..192f87cf0d 100644 --- a/Docs/Layers/stripclub.md +++ b/Docs/Layers/stripclub.md @@ -73,29 +73,34 @@ Elements must match the expression **opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -105,7 +110,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -116,7 +122,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -126,6 +133,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -135,11 +143,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/surveillance_camera.md b/Docs/Layers/surveillance_camera.md index 2e9ebca5f0..f7674cc08c 100644 --- a/Docs/Layers/surveillance_camera.md +++ b/Docs/Layers/surveillance_camera.md @@ -91,6 +91,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### has_alpr @@ -112,14 +113,16 @@ The question is `What kind of camera is this?` ### camera_direction The question is `In which geographical direction does this camera film?` -*Films to a compass heading of {camera:direction}* is shown if `camera:direction` is set + +*Films to a compass heading of {camera:direction}* is shown if `camera:direction` is set. - *Films to a compass heading of {direction}* is shown if with camera:direction= & direction~.+. _This option cannot be chosen as answer_ ### Operator The question is `Who operates this CCTV?` -*Operated by {operator}* is shown if `operator` is set + +*Operated by {operator}* is shown if `operator` is set. ### Surveillance type: public, outdoor, indoor @@ -140,14 +143,16 @@ The question is `Is this camera located inside or outside?` ### Level The question is `On which level is this camera located?` -*Located on level {level}* is shown if `level` is set + +*Located on level {level}* is shown if `level` is set. This tagrendering is only visible in the popup if the following condition is met: (indoor=yes | surveillance=indoor) & (surveillance:type=alpr | surveillance:type=camera) & camera:type!=doorbell ### Surveillance:zone The question is `What exactly is surveilled here?` -*Surveills a {surveillance:zone}* is shown if `surveillance:zone` is set + +*Surveills a {surveillance:zone}* is shown if `surveillance:zone` is set. - *Surveills a parking* is shown if with surveillance:zone=parking - *Surveills the traffic* is shown if with surveillance:zone=traffic @@ -159,7 +164,8 @@ The question is `What exactly is surveilled here?` ### camera:mount The question is `How is this camera placed?` -*Mounting method: {camera:mount}* is shown if `camera:mount` is set + +*Mounting method: {camera:mount}* is shown if `camera:mount` is set. - *This camera is placed against a wall* is shown if with camera:mount=wall - *This camera is placed on a pole* is shown if with camera:mount=pole @@ -170,6 +176,7 @@ The question is `How is this camera placed?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -179,16 +186,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/tactile_map.md b/Docs/Layers/tactile_map.md index 939fdbeaa4..10dcca46ae 100644 --- a/Docs/Layers/tactile_map.md +++ b/Docs/Layers/tactile_map.md @@ -73,12 +73,14 @@ Elements must match the expression **braille=yes @@ -104,6 +107,7 @@ The question is `Are there embossed letters on this tactile map?` ### embossed_letters_languages _This tagrendering has no question and is thus read-only_ + *{language_chooser(tactile_writing:embossed,In which languages are the embossed letters on this tactile map?,This map has embossed letters in &LBRACElanguage&RBRACE,This map has embossed letters in &LBRACElanguage&RBRACE,,)}* This tagrendering is only visible in the popup if the following condition is met: embossed_letters=yes @@ -111,7 +115,8 @@ This tagrendering is only visible in the popup if the following condition is met ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -121,6 +126,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -130,16 +136,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/tactile_model.md b/Docs/Layers/tactile_model.md index 332c9208f1..e5a9b6ec4b 100644 --- a/Docs/Layers/tactile_model.md +++ b/Docs/Layers/tactile_model.md @@ -76,12 +76,14 @@ Elements must match the expression **braille=yes @@ -107,6 +110,7 @@ The question is `Are there embossed letters describing the model?` ### embossed_letters_languages _This tagrendering has no question and is thus read-only_ + *{language_chooser(tactile_writing:embossed_letters,In which languages are there embossed letters?,This model has embossed letters in &LBRACElanguage&LPARENS&RPARENS&RBRACE,This model has embossed letters in &LBRACElanguage&RBRACE,,)}* This tagrendering is only visible in the popup if the following condition is met: embossed_letters=yes @@ -114,12 +118,14 @@ This tagrendering is only visible in the popup if the following condition is met ### scale The question is `What scale is the model?` -*The scale of this model is {scale}.* is shown if `scale` is set + +*The scale of this model is {scale}.* is shown if `scale` is set. ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -129,6 +135,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -138,16 +145,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/tertiary_education.md b/Docs/Layers/tertiary_education.md index fd5b75126b..1518c8c77f 100644 --- a/Docs/Layers/tertiary_education.md +++ b/Docs/Layers/tertiary_education.md @@ -94,7 +94,8 @@ This tagrendering is only visible in the popup if the following condition is met ### capacity The question is `How much students can at most enroll in this school?` -*This school can enroll at most {capacity} students* is shown if `capacity` is set + +*This school can enroll at most {capacity} students* is shown if `capacity` is set. ### gender @@ -108,7 +109,8 @@ The question is `Which genders can enroll at this school?` ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -118,7 +120,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -129,7 +132,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -139,6 +143,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -148,11 +153,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/ticket_machine.md b/Docs/Layers/ticket_machine.md index 24f33bfecd..8b4e464290 100644 --- a/Docs/Layers/ticket_machine.md +++ b/Docs/Layers/ticket_machine.md @@ -77,11 +77,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -91,7 +93,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -105,7 +108,8 @@ This tagrendering has labels ### operator The question is `Who is the operator of this ticket machine?` -*This ticket machine is operated by {operator}* is shown if `operator` is set + +*This ticket machine is operated by {operator}* is shown if `operator` is set. - *Dutch Railways (NS)* is shown if with operator=Nederlandse Spoorwegen @@ -166,6 +170,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -175,16 +180,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/ticket_validator.md b/Docs/Layers/ticket_validator.md index 8258153f0e..9b15aaebf6 100644 --- a/Docs/Layers/ticket_validator.md +++ b/Docs/Layers/ticket_validator.md @@ -69,11 +69,13 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -97,6 +100,7 @@ This tagrendering has labels ### barrier _This tagrendering has no question and is thus read-only_ + *This ticket validator is part of a barrier of type {barrier}* - *This ticket validator is part of a gate* is shown if with barrier=gate @@ -106,7 +110,8 @@ This tagrendering is only visible in the popup if the following condition is met ### validator-operator The question is `Who is the operator of this ticket validator?` -*This ticket validator is operated by {operator}* is shown if `operator` is set + +*This ticket validator is operated by {operator}* is shown if `operator` is set. - *Dutch Railways (NS)* is shown if with operator=Nederlandse Spoorwegen @@ -123,6 +128,7 @@ The question is `Which methods of payment are accepted here?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -132,16 +138,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/toekomstige_fietsstraat.md b/Docs/Layers/toekomstige_fietsstraat.md index 8312ab2dd8..85e62cfc63 100644 --- a/Docs/Layers/toekomstige_fietsstraat.md +++ b/Docs/Layers/toekomstige_fietsstraat.md @@ -57,6 +57,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### is_cyclestreet @@ -86,13 +87,15 @@ This tagrendering is only visible in the popup if the following condition is met ### future_cyclestreet The question is `When will this street become a cyclestreet?` -*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set + +*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set. This tagrendering is only visible in the popup if the following condition is met: proposed:cyclestreet=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -102,11 +105,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/toilet.md b/Docs/Layers/toilet.md index a53bc91c52..4e4e2abd95 100644 --- a/Docs/Layers/toilet.md +++ b/Docs/Layers/toilet.md @@ -213,16 +213,19 @@ Elements must match the expression **location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -248,7 +252,8 @@ This tagrendering has labels ### toilet-access The question is `Are these toilets publicly accessible?` -*Access is {access}* is shown if `access` is set + +*Access is {access}* is shown if `access` is set. - *Public access* is shown if with access=yes - *Only access to customers* is shown if with access=customers @@ -273,7 +278,8 @@ This tagrendering has labels ### toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {charge}* is shown if `charge` is set + +*The fee is {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes This tagrendering has labels @@ -300,7 +306,8 @@ This tagrendering has labels ### opening_hours_24_7 The question is `When are these toilets opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -364,7 +371,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -391,7 +399,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -459,7 +468,8 @@ This tagrendering has labels ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. This tagrendering has labels `amenity-no-prefix` @@ -469,6 +479,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering has labels @@ -494,6 +505,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets:wheelchair=yes | wheelchair=yes @@ -507,6 +519,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets:wheelchair=yes | wheelchair=yes @@ -520,6 +533,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -600,7 +614,10 @@ This tagrendering has labels ### wheelchair-door-width The question is `What is the width of the door to the wheelchair accessible toilet?` -*The door to the wheelchair-accessible toilet is {canonical(door:width)} wide* is shown if `door:width` is set + +*The door to the wheelchair-accessible toilet is {canonical(door:width)} wide* is shown if `door:width` is set. + +The allowed input is of type pfloat and is in range 0.4 until infinity (both inclusive). A warning will appear below 0.6. This tagrendering is only visible in the popup if the following condition is met: toilets:wheelchair=yes | toilets:wheelchair=designated | wheelchair=yes | wheelchair=designated This tagrendering has labels @@ -612,6 +629,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering has labels @@ -623,6 +641,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes @@ -649,7 +668,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -664,7 +686,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable This tagrendering has labels @@ -677,7 +702,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable This tagrendering has labels @@ -724,6 +752,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering has labels @@ -735,7 +764,8 @@ This tagrendering has labels ### phone The question is `What number can one call in case of troubles or questions?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -745,7 +775,8 @@ This tagrendering has labels ### email The question is `What is the email address one can send to in case of troubles or questions?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -756,6 +787,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;hidden)}* This tagrendering has labels @@ -765,16 +797,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/toilet_at_amenity.md b/Docs/Layers/toilet_at_amenity.md index 9044f63d84..c7a96a807f 100644 --- a/Docs/Layers/toilet_at_amenity.md +++ b/Docs/Layers/toilet_at_amenity.md @@ -146,11 +146,13 @@ Elements must match **all** of the following expressions: ### images _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:panoramax,Add a picture of the toilets,)}* ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets:repeat_on~.+ @@ -162,7 +164,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -178,7 +181,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -205,7 +209,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets:fee=yes This tagrendering has labels @@ -261,7 +266,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering has labels `amenity-no-prefix` @@ -288,7 +294,8 @@ This tagrendering has labels ### opening_hours The question is `When is the amenity where these toilets are located open?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -338,7 +345,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -367,7 +375,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -426,6 +435,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering has labels @@ -437,6 +447,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets:wheelchair=yes | wheelchair=yes @@ -451,6 +462,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets:wheelchair=yes | wheelchair=yes @@ -465,6 +477,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -499,6 +512,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering has labels @@ -511,6 +525,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes @@ -539,7 +554,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -555,7 +573,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable This tagrendering has labels @@ -569,7 +590,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable This tagrendering has labels @@ -619,6 +643,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering has labels @@ -631,6 +656,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;hidden)}* This tagrendering has labels @@ -640,11 +666,13 @@ This tagrendering has labels ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/tool_library.md b/Docs/Layers/tool_library.md index e5c66b0291..50e6b7f85e 100644 --- a/Docs/Layers/tool_library.md +++ b/Docs/Layers/tool_library.md @@ -83,12 +83,14 @@ Elements must match the expression ** *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -98,7 +100,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -109,7 +112,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -119,12 +123,14 @@ This tagrendering has labels ### facebook Shows and asks for the facebook handle The question is `What is the facebook page of of {title()}?` -*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set + +*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set. ### opening_hours_by_appointment The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Only by appointment* is shown if with opening_hours="by appointment" - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ @@ -141,7 +147,8 @@ The question is `Is a membership required to borrow tools here?` ### membership_charge The question is `How much does a membership cost?` -*A membership costs {charge:membership}* is shown if `charge:membership` is set + +*A membership costs {charge:membership}* is shown if `charge:membership` is set. This tagrendering is only visible in the popup if the following condition is met: membership=required @@ -157,6 +164,7 @@ The question is `Is a fee asked to borrow tools?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -166,16 +174,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/tourism_accomodation.md b/Docs/Layers/tourism_accomodation.md index e622200861..799813d6ee 100644 --- a/Docs/Layers/tourism_accomodation.md +++ b/Docs/Layers/tourism_accomodation.md @@ -113,21 +113,25 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### name The question is `What is the name of this {title()}?` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### presettypeselect _This tagrendering has no question and is thus read-only_ + *{preset_type_select()}* ### group_only @@ -142,14 +146,16 @@ This tagrendering is only visible in the popup if the following condition is met ### brand The question is `Is {title()} part of a bigger brand?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *Not part of a bigger brand* is shown if with nobrand=yes ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -159,7 +165,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -170,7 +177,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -189,6 +197,7 @@ The question is `Is this place accessible with a wheelchair?` ### toiletatamenitytoiletswheelchair _This tagrendering has no question and is thus read-only_ + *toilet_at_amenity.toilets-wheelchair* ### internet @@ -220,7 +229,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -241,6 +251,7 @@ The question is `Are dogs allowed in this business?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -250,16 +261,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/toursistic_places_without_etymology.md b/Docs/Layers/toursistic_places_without_etymology.md index 910bd81691..bed77e23d9 100644 --- a/Docs/Layers/toursistic_places_without_etymology.md +++ b/Docs/Layers/toursistic_places_without_etymology.md @@ -69,16 +69,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -86,38 +89,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -125,6 +135,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/trail.md b/Docs/Layers/trail.md index f4c98add3d..308f87ad08 100644 --- a/Docs/Layers/trail.md +++ b/Docs/Layers/trail.md @@ -63,22 +63,26 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### trail-length _This tagrendering has no question and is thus read-only_ + *The trail is {_length:km} kilometers long* ### Name The question is `What is the name of this trail?` -*This trail is called {name}* is shown if `name` is set + +*This trail is called {name}* is shown if `name` is set. ### Operator tag The question is `Who maintains this trail?` -*This trail is maintained by {operator}* is shown if `operator` is set + +*This trail is maintained by {operator}* is shown if `operator` is set. - *This trail is maintained by Natuurpunt* is shown if with operator=Natuurpunt - *This trail is maintained by {operator}* is shown if with operator~^((n|N)atuurpunt.*)$. _This option cannot be chosen as answer_ @@ -86,7 +90,8 @@ The question is `Who maintains this trail?` ### Color The question is `What is the reference colour of this trail?` -*The reference colour is {colour}* is shown if `colour` is set + +*The reference colour is {colour}* is shown if `colour` is set. - *Blue trail* is shown if with colour=blue - *Red trail* is shown if with colour=red @@ -110,6 +115,7 @@ The question is `Is this trail accessible with a pushchair?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -119,6 +125,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/transit_routes.md b/Docs/Layers/transit_routes.md index 3e21b5deb4..efedfc447b 100644 --- a/Docs/Layers/transit_routes.md +++ b/Docs/Layers/transit_routes.md @@ -68,41 +68,49 @@ Elements must match **all** of the following expressions: ### name The question is `What is the name for this bus line? (i.e. Bus XX: From => Via => To)` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### from The question is `What is the starting point for this bus line?` -*This bus line begins at {from}* is shown if `from` is set + +*This bus line begins at {from}* is shown if `from` is set. ### via The question is `What is the via point for this bus line?` -*This bus line goes via {via}* is shown if `via` is set + +*This bus line goes via {via}* is shown if `via` is set. ### to The question is `What is the ending point for this bus line?` -*This bus line ends at {to}* is shown if `to` is set + +*This bus line ends at {to}* is shown if `to` is set. ### colour The question is `What is the colour for this bus line?` -*This bus line has the color {colour}* is shown if `colour` is set + +*This bus line has the color {colour}* is shown if `colour` is set. ### network The question is `What network does this bus line belong to?` -*This bus line is part of the {network} network* is shown if `network` is set + +*This bus line is part of the {network} network* is shown if `network` is set. ### operator The question is `What company operates this bus line?` -*This bus line is operated by {operator}* is shown if `operator` is set + +*This bus line is operated by {operator}* is shown if `operator` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -112,6 +120,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/transit_stops.md b/Docs/Layers/transit_stops.md index cd36037080..97b8319828 100644 --- a/Docs/Layers/transit_stops.md +++ b/Docs/Layers/transit_stops.md @@ -75,13 +75,15 @@ Elements must match the expression **noname=yes & name= ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### shelter @@ -145,6 +147,7 @@ _This tagrendering has no question and is thus read-only_ ### contained_routes _This tagrendering has no question and is thus read-only_ + *

{_contained_routes_count} routes stop at this stop

    {_contained_routes}
* This tagrendering is only visible in the popup if the following condition is met: _contained_routes~.+ @@ -152,6 +155,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -161,6 +165,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/tree_node.md b/Docs/Layers/tree_node.md index 24c99103b3..44cfd479bf 100644 --- a/Docs/Layers/tree_node.md +++ b/Docs/Layers/tree_node.md @@ -94,21 +94,25 @@ Elements must match the expression **noname=yes @@ -176,20 +183,23 @@ This tagrendering is only visible in the popup if the following condition is met ### tree_node-ref:OnroerendErfgoed The question is `What is the ID issued by Onroerend Erfgoed Flanders?` -* Onroerend Erfgoed ID: {ref:OnroerendErfgoed}* is shown if `ref:OnroerendErfgoed` is set + +* Onroerend Erfgoed ID: {ref:OnroerendErfgoed}* is shown if `ref:OnroerendErfgoed` is set. This tagrendering is only visible in the popup if the following condition is met: heritage=4 & heritage:operator=OnroerendErfgoed ### tree_node-wikidata The question is `What is the Wikidata ID for this tree?` -* Wikidata: {wikidata}* is shown if `wikidata` is set + +* Wikidata: {wikidata}* is shown if `wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: denotation=landmark | denotation=natural_monument | wikidata~.+ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -199,16 +209,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/trolley_bay.md b/Docs/Layers/trolley_bay.md index 6ecc416d71..49599913e6 100644 --- a/Docs/Layers/trolley_bay.md +++ b/Docs/Layers/trolley_bay.md @@ -106,6 +106,7 @@ _This tagrendering has no question and is thus read-only_ ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -115,16 +116,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/utility_pole.md b/Docs/Layers/utility_pole.md index 4c41ef7296..8764d2344e 100644 --- a/Docs/Layers/utility_pole.md +++ b/Docs/Layers/utility_pole.md @@ -62,6 +62,7 @@ The question is `Does this utility pole have a street lamp mounted on it?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -71,11 +72,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/vending_machine.md b/Docs/Layers/vending_machine.md index bec1d30879..6be07cc8b1 100644 --- a/Docs/Layers/vending_machine.md +++ b/Docs/Layers/vending_machine.md @@ -110,11 +110,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -124,7 +126,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -138,7 +141,8 @@ This tagrendering has labels ### vending The question is `What does this vending machine sell?` -*This vending machine sells {vending}* is shown if `vending` is set + +*This vending machine sells {vending}* is shown if `vending` is set. - *Drinks are sold* is shown if with vending=drinks - *Sweets are sold* is shown if with vending=sweets @@ -173,7 +177,8 @@ The question is `What does this vending machine sell?` ### bicycle_tube_vending_machine-brand The question is `Which brand of tubes are sold here?` -*{brand} tubes are sold here* is shown if `brand` is set + +*{brand} tubes are sold here* is shown if `brand` is set. - *Continental tubes are sold here* is shown if with brand=Continental - *Schwalbe tubes are sold here* is shown if with brand=Schwalbe @@ -183,7 +188,8 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -245,7 +251,8 @@ This tagrendering is only visible in the popup if the following condition is met ### operator The question is `Who operates this vending machine?` -*This vending machine is operated by {operator}* is shown if `operator` is set + +*This vending machine is operated by {operator}* is shown if `operator` is set. ### indoor @@ -258,7 +265,8 @@ The question is `Is this vending machine indoors?` ### phone The question is `What is the phone number of the operator of this vending machine?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -268,7 +276,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -278,21 +287,24 @@ This tagrendering has labels ### charge_bicycle_tube The question is `How much does a a bicycle tube cost?` -*a bicycle tube costs {charge}* is shown if `charge` is set + +*a bicycle tube costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$ ### charge_bicycle_light The question is `How much does a bicycle light cost?` -*bicycle light costs {charge}* is shown if `charge` is set + +*bicycle light costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$ ### charge_condom The question is `How much does a a condom cost?` -*a condom costs {charge}* is shown if `charge` is set + +*a condom costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$ @@ -308,6 +320,7 @@ The question is `Is this vending machine still operational?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -317,16 +330,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/vending_machine_bicycle.md b/Docs/Layers/vending_machine_bicycle.md index 156af68ba0..2566f16599 100644 --- a/Docs/Layers/vending_machine_bicycle.md +++ b/Docs/Layers/vending_machine_bicycle.md @@ -103,11 +103,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -117,7 +119,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -131,7 +134,8 @@ This tagrendering has labels ### vending The question is `What does this vending machine sell?` -*This vending machine sells {vending}* is shown if `vending` is set + +*This vending machine sells {vending}* is shown if `vending` is set. - *Drinks are sold* is shown if with vending=drinks - *Sweets are sold* is shown if with vending=sweets @@ -166,7 +170,8 @@ The question is `What does this vending machine sell?` ### bicycle_tube_vending_machine-brand The question is `Which brand of tubes are sold here?` -*{brand} tubes are sold here* is shown if `brand` is set + +*{brand} tubes are sold here* is shown if `brand` is set. - *Continental tubes are sold here* is shown if with brand=Continental - *Schwalbe tubes are sold here* is shown if with brand=Schwalbe @@ -176,7 +181,8 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -238,7 +244,8 @@ This tagrendering is only visible in the popup if the following condition is met ### operator The question is `Who operates this vending machine?` -*This vending machine is operated by {operator}* is shown if `operator` is set + +*This vending machine is operated by {operator}* is shown if `operator` is set. ### indoor @@ -251,7 +258,8 @@ The question is `Is this vending machine indoors?` ### phone The question is `What is the phone number of the operator of this vending machine?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -261,7 +269,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -271,21 +280,24 @@ This tagrendering has labels ### charge_bicycle_tube The question is `How much does a a bicycle tube cost?` -*a bicycle tube costs {charge}* is shown if `charge` is set + +*a bicycle tube costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$ ### charge_bicycle_light The question is `How much does a bicycle light cost?` -*bicycle light costs {charge}* is shown if `charge` is set + +*bicycle light costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$ ### charge_condom The question is `How much does a a condom cost?` -*a condom costs {charge}* is shown if `charge` is set + +*a condom costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$ @@ -301,6 +313,7 @@ The question is `Is this vending machine still operational?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -310,16 +323,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/veterinary.md b/Docs/Layers/veterinary.md index f49d54b47c..506890fdf7 100644 --- a/Docs/Layers/veterinary.md +++ b/Docs/Layers/veterinary.md @@ -69,7 +69,8 @@ Elements must match the expression **{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -79,12 +80,14 @@ This tagrendering has labels ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -94,18 +97,21 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### vetName The question is `What is the name of this veterinarian?` -*The name of this veterinarian is {name}* is shown if `name` is set + +*The name of this veterinarian is {name}* is shown if `name` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -115,11 +121,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/viewpoint.md b/Docs/Layers/viewpoint.md index 3a5d56eb81..b22949d8ef 100644 --- a/Docs/Layers/viewpoint.md +++ b/Docs/Layers/viewpoint.md @@ -59,16 +59,19 @@ Elements must match the expression **access=yes - *This bin is private* is shown if with access=no @@ -96,6 +98,7 @@ The question is `Where is this container located?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -105,16 +108,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/wayside_shrine.md b/Docs/Layers/wayside_shrine.md index 0d8d156198..3814b27b4f 100644 --- a/Docs/Layers/wayside_shrine.md +++ b/Docs/Layers/wayside_shrine.md @@ -95,12 +95,14 @@ Elements must match **any** of the following expressions: ### images_no_blur Same as `images`, but uploaded request to disable blurring to the panoramax server _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload(,,,true)}* ### shrine_name The question is `What's the name of this {title()}?` -*The name of this {title()} is {name}* is shown if `name` is set + +*The name of this {title()} is {name}* is shown if `name` is set. - *This shrine does not have a name* is shown if with noname=yes @@ -110,7 +112,8 @@ This tagrendering has labels ### inscription The question is `Is there an inscription?` -*The inscription is {inscription}* is shown if `inscription` is set + +*The inscription is {inscription}* is shown if `inscription` is set. - *No inscription* is shown if with not:inscription=yes - *The inscription is Ave Maria* is shown if with inscription=Ave Maria @@ -119,7 +122,8 @@ The question is `Is there an inscription?` ### religion The question is `To which religion is this shrine dedicated?` -*This shrine is {religion}* is shown if `religion` is set + +*This shrine is {religion}* is shown if `religion` is set. - *This is a Christian shrine* is shown if with religion=christian - *This is a Buddhist shrine* is shown if with religion=buddhist @@ -139,7 +143,8 @@ This tagrendering has labels ### denomination_christian The question is `What's the Christian denomination of this {title()}?` -*The religious denomination is {denomination}* is shown if `denomination` is set + +*The religious denomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Catholic* is shown if with denomination=catholic - *The religious subdenomination is Roman Catholic* is shown if with denomination=roman_catholic @@ -159,7 +164,8 @@ This tagrendering has labels ### denomination_muslim The question is `What's the Muslim denomination of this shrine?` -*The religious subdenomination is {denomination}* is shown if `denomination` is set + +*The religious subdenomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Shia* is shown if with denomination=shia - *The religious subdenomination is Sunni* is shown if with denomination=sunni @@ -172,7 +178,8 @@ This tagrendering has labels ### denomination_jewish The question is `What's the Jewish denomination of this shrine?` -*The religious subdenomination is {denomination}* is shown if `denomination` is set + +*The religious subdenomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Conservative* is shown if with denomination=conservative - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox @@ -186,7 +193,8 @@ This tagrendering has labels ### denomination_other The question is `What's the denomination of this shrine?` -*The denomination of this shrine is {denomination}* is shown if `denomination` is set + +*The denomination of this shrine is {denomination}* is shown if `denomination` is set. This tagrendering is only visible in the popup if the following condition is met: religion!=christian & religion!=muslim & religion!=jewish & religion~.+ This tagrendering has labels @@ -195,7 +203,8 @@ This tagrendering has labels ### subject:wikidata The question is `Who is depicted?` -*{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. - *Mother mary is depicted* is shown if with subject:wikidata=Q345 - *Jesus Christ as a child is depicted* is shown if with subject:wikidata=Q942467 @@ -207,6 +216,7 @@ This tagrendering is only visible in the popup if the following condition is met ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -216,7 +226,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -230,6 +241,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -239,16 +251,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Layers/windturbine.md b/Docs/Layers/windturbine.md index 7592697d69..dd313790db 100644 --- a/Docs/Layers/windturbine.md +++ b/Docs/Layers/windturbine.md @@ -70,41 +70,49 @@ Elements must match the expression **image
is given, the first picture URL will be added as image, the second as image:0, the third as image:1, etc... Multiple values are allowed if ';'-separated | +| image_key | image,mapillary,image,wikidata,wikimedia_commons,image,panoramax,image,image | The keys given to the images, e.g. if image is given, the first picture URL will be added as image, the second as image:0, the third as image:1, etc... Multiple values are allowed if ';'-separated | #### Example usage of plantnet_detection -`{plantnet_detection(image,mapillary,image,wikidata,wikimedia_commons,image,panoramax,image)}` +`{plantnet_detection(image,mapillary,image,wikidata,wikimedia_commons,image,panoramax,image,image)}` ### tag_apply @@ -466,11 +466,11 @@ Creates an image carousel for the given sources. An attempt will be made to gues | name | default | description | -----|-----|----- | -| image_key | image;mapillary;image;wikidata;wikimedia_commons;image;panoramax;image | The keys given to the images, e.g. if image is given, the first picture URL will be added as image, the second as image:0, the third as image:1, etc... Multiple values are allowed if ';'-separated | +| image_key | image;mapillary;image;wikidata;wikimedia_commons;image;panoramax;image;image | The keys given to the images, e.g. if image is given, the first picture URL will be added as image, the second as image:0, the third as image:1, etc... Multiple values are allowed if ';'-separated | #### Example usage of image_carousel -`{image_carousel(image;mapillary;image;wikidata;wikimedia_commons;image;panoramax;image)}` +`{image_carousel(image;mapillary;image;wikidata;wikimedia_commons;image;panoramax;image;image)}` ### image_upload diff --git a/Docs/TagInfo/mapcomplete_blind_osm.json b/Docs/TagInfo/mapcomplete_blind_osm.json index 3d2db36bff..b20c57879a 100644 --- a/Docs/TagInfo/mapcomplete_blind_osm.json +++ b/Docs/TagInfo/mapcomplete_blind_osm.json @@ -1744,20 +1744,6 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#handrail", "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, - { - "key": "hearing_loop", - "value": "yes", - "description": "hearing_loop=yes is displayed as \"This place has an audio induction loop\" by layer Elevator", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", - "icon_url": "./assets/layers/questions/audio_induction_loop.svg" - }, - { - "key": "hearing_loop", - "value": "no", - "description": "hearing_loop=no is displayed as \"This place does not have an audio induction loop\" by layer Elevator", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", - "icon_url": "./assets/layers/questions/audio_induction_loop_missing.svg" - }, { "key": "tactile_writing:braille", "value": "yes", @@ -1786,6 +1772,20 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#speech_output_available", "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, + { + "key": "hearing_loop", + "value": "yes", + "description": "hearing_loop=yes is displayed as \"This place has an audio induction loop\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop.svg" + }, + { + "key": "hearing_loop", + "value": "no", + "description": "hearing_loop=no is displayed as \"This place does not have an audio induction loop\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop_missing.svg" + }, { "key": "highway", "value": "steps", diff --git a/Docs/TagInfo/mapcomplete_circular_economy.json b/Docs/TagInfo/mapcomplete_circular_economy.json index d7d115aae8..4e1dc9e06e 100644 --- a/Docs/TagInfo/mapcomplete_circular_economy.json +++ b/Docs/TagInfo/mapcomplete_circular_economy.json @@ -2062,6 +2062,55 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Second hand shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", @@ -2524,35 +2573,35 @@ "key": "dog", "value": "yes", "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Second hand shops", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "no", "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Second hand shops", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_dog_access", "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", "value": "leashed", "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Second hand shops", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", "value": "unleashed", "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Second hand shops", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "outside", "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Second hand shops", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_second_hand.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_climbing.json b/Docs/TagInfo/mapcomplete_climbing.json index 58dc06f7e8..f9afff9459 100644 --- a/Docs/TagInfo/mapcomplete_climbing.json +++ b/Docs/TagInfo/mapcomplete_climbing.json @@ -2231,6 +2231,55 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", @@ -2617,35 +2666,35 @@ "key": "dog", "value": "yes", "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "no", "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_dog_access", "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", "value": "leashed", "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", "value": "unleashed", "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "outside", "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_with_climbing_shoe_repair.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_cyclofix.json b/Docs/TagInfo/mapcomplete_cyclofix.json index db8bed0ca2..fc6b4a0af0 100644 --- a/Docs/TagInfo/mapcomplete_cyclofix.json +++ b/Docs/TagInfo/mapcomplete_cyclofix.json @@ -1704,6 +1704,55 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#key_cutter", "icon_url": "./assets/layers/bike_shop/repair_shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" + }, + { + "key": "reservation", + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#reservation", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" + }, + { + "key": "reservation", + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#reservation", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" + }, + { + "key": "reservation", + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#reservation", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" + }, + { + "key": "reservation", + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Bike repair/shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#reservation", + "icon_url": "./assets/layers/bike_shop/repair_shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", @@ -2166,35 +2215,35 @@ "key": "dog", "value": "yes", "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Bike repair/shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "no", "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Bike repair/shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_dog_access", "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", "value": "leashed", "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Bike repair/shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", "value": "unleashed", "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Bike repair/shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "outside", "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Bike repair/shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/bike_shop.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_disaster_response.json b/Docs/TagInfo/mapcomplete_disaster_response.json index 06783945fe..333756a11c 100644 --- a/Docs/TagInfo/mapcomplete_disaster_response.json +++ b/Docs/TagInfo/mapcomplete_disaster_response.json @@ -143,7 +143,7 @@ }, { "key": "opening_hours:visitors", - "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", + "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors,,)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#oh_visitor", "icon_url": "./assets/layers/hospital/hospital.svg" }, diff --git a/Docs/TagInfo/mapcomplete_food.json b/Docs/TagInfo/mapcomplete_food.json index aeb1e31a03..8f0efc4ab6 100644 --- a/Docs/TagInfo/mapcomplete_food.json +++ b/Docs/TagInfo/mapcomplete_food.json @@ -403,28 +403,28 @@ "key": "reservation", "value": "required", "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "recommended", "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "yes", "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "no", "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_fritures.json b/Docs/TagInfo/mapcomplete_fritures.json index 438067d81c..f88c01751b 100644 --- a/Docs/TagInfo/mapcomplete_fritures.json +++ b/Docs/TagInfo/mapcomplete_fritures.json @@ -409,28 +409,28 @@ "key": "reservation", "value": "required", "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Fries shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "recommended", "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Fries shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "yes", "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Fries shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "no", "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Fries shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/friture.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_glutenfree.json b/Docs/TagInfo/mapcomplete_glutenfree.json index 1007fe6d97..2ec712cff8 100644 --- a/Docs/TagInfo/mapcomplete_glutenfree.json +++ b/Docs/TagInfo/mapcomplete_glutenfree.json @@ -436,29 +436,29 @@ { "key": "reservation", "value": "required", - "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Reservation", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "recommended", - "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Reservation", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "yes", - "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Reservation", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "no", - "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#Reservation", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_glutenfree.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { @@ -2972,6 +2972,27 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_glutenfree.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", diff --git a/Docs/TagInfo/mapcomplete_healthcare.json b/Docs/TagInfo/mapcomplete_healthcare.json index 8ca9ead5db..eda57ac349 100644 --- a/Docs/TagInfo/mapcomplete_healthcare.json +++ b/Docs/TagInfo/mapcomplete_healthcare.json @@ -272,7 +272,7 @@ }, { "key": "opening_hours:visitors", - "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", + "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors,,)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#oh_visitor", "icon_url": "./assets/layers/hospital/hospital.svg" }, @@ -1681,6 +1681,55 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", @@ -2143,35 +2192,35 @@ "key": "dog", "value": "yes", "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "no", "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", "value": "leashed", "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", "value": "unleashed", "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "outside", "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/medical_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_indoors.json b/Docs/TagInfo/mapcomplete_indoors.json index 8db8e1cf24..446f7707b6 100644 --- a/Docs/TagInfo/mapcomplete_indoors.json +++ b/Docs/TagInfo/mapcomplete_indoors.json @@ -884,20 +884,6 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#handrail", "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, - { - "key": "hearing_loop", - "value": "yes", - "description": "hearing_loop=yes is displayed as \"This place has an audio induction loop\" by layer Elevator", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", - "icon_url": "./assets/layers/questions/audio_induction_loop.svg" - }, - { - "key": "hearing_loop", - "value": "no", - "description": "hearing_loop=no is displayed as \"This place does not have an audio induction loop\" by layer Elevator", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", - "icon_url": "./assets/layers/questions/audio_induction_loop_missing.svg" - }, { "key": "tactile_writing:braille", "value": "yes", @@ -926,6 +912,20 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#speech_output_available", "icon_url": "./assets/layers/elevator/elevator_wheelchair.svg" }, + { + "key": "hearing_loop", + "value": "yes", + "description": "hearing_loop=yes is displayed as \"This place has an audio induction loop\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop.svg" + }, + { + "key": "hearing_loop", + "value": "no", + "description": "hearing_loop=no is displayed as \"This place does not have an audio induction loop\" by layer Elevator", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/elevator.md#induction_loop", + "icon_url": "./assets/layers/questions/audio_induction_loop_missing.svg" + }, { "key": "entrance", "description": "Features with this tag are displayed by layer Entrance", diff --git a/Docs/TagInfo/mapcomplete_lactosefree.json b/Docs/TagInfo/mapcomplete_lactosefree.json index ee0ecf714c..2da614c40e 100644 --- a/Docs/TagInfo/mapcomplete_lactosefree.json +++ b/Docs/TagInfo/mapcomplete_lactosefree.json @@ -436,29 +436,29 @@ { "key": "reservation", "value": "required", - "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Reservation", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "recommended", - "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Reservation", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "yes", - "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Reservation", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "no", - "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#Reservation", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_lactosefree.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { @@ -2972,6 +2972,27 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops_lactosefree.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", diff --git a/Docs/TagInfo/mapcomplete_onwheels.json b/Docs/TagInfo/mapcomplete_onwheels.json index 1c66a707a3..6f50d087aa 100644 --- a/Docs/TagInfo/mapcomplete_onwheels.json +++ b/Docs/TagInfo/mapcomplete_onwheels.json @@ -1563,29 +1563,29 @@ { "key": "reservation", "value": "required", - "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reservation", "value": "recommended", - "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reservation", "value": "yes", - "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { "key": "reservation", "value": "no", - "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layers Restaurants and fast food, Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/themes/onwheels/restaurant.svg" }, { @@ -3528,6 +3528,27 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", "icon_url": "./assets/themes/onwheels/shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/themes/onwheels/shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/themes/onwheels/shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/themes/onwheels/shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", @@ -4324,7 +4345,7 @@ }, { "key": "opening_hours:visitors", - "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", + "description": "Values of `opening_hours:visitors` are shown with \"

Opening hours for visitors

Regular visitors are allowed at the following moments: {opening_hours_table(opening_hours:visitors,,)}

Some wands might have different opening hours. Many hospitals allow visits during emergencies too.

\" and can be updated. The question is \"When are visitors allowed to visit?\" by layer Hospitals", "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/hospital.md#oh_visitor", "icon_url": "./assets/themes/onwheels/hospital.svg" }, diff --git a/Docs/TagInfo/mapcomplete_pets.json b/Docs/TagInfo/mapcomplete_pets.json index 3b5a10a61b..89f5a8aaf3 100644 --- a/Docs/TagInfo/mapcomplete_pets.json +++ b/Docs/TagInfo/mapcomplete_pets.json @@ -614,29 +614,29 @@ { "key": "reservation", "value": "required", - "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Dog friendly eateries", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Reservation", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layers Dog friendly eateries, Pet stores, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "recommended", - "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Dog friendly eateries", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Reservation", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layers Dog friendly eateries, Pet stores, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "yes", - "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Dog friendly eateries", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Reservation", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layers Dog friendly eateries, Pet stores, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "no", - "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Dog friendly eateries", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#Reservation", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layers Dog friendly eateries, Pet stores, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food_dog_friendly.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { @@ -3124,6 +3124,27 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pet_shops.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layers Pet stores, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pet_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layers Pet stores, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pet_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layers Pet stores, Dog-friendly shops", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/pet_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", diff --git a/Docs/TagInfo/mapcomplete_postboxes.json b/Docs/TagInfo/mapcomplete_postboxes.json index 10d5454b68..f9250453ea 100644 --- a/Docs/TagInfo/mapcomplete_postboxes.json +++ b/Docs/TagInfo/mapcomplete_postboxes.json @@ -1774,6 +1774,55 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", @@ -2236,35 +2285,35 @@ "key": "dog", "value": "yes", "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "no", "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", "value": "leashed", "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", "value": "unleashed", "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "outside", "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_shops.json b/Docs/TagInfo/mapcomplete_shops.json index 416b91a883..00aee6bc1c 100644 --- a/Docs/TagInfo/mapcomplete_shops.json +++ b/Docs/TagInfo/mapcomplete_shops.json @@ -1472,6 +1472,55 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", @@ -1934,35 +1983,35 @@ "key": "dog", "value": "yes", "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "no", "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", "value": "leashed", "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", "value": "unleashed", "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "outside", "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_ski.json b/Docs/TagInfo/mapcomplete_ski.json index c7cfff14e6..b7fa66cfd0 100644 --- a/Docs/TagInfo/mapcomplete_ski.json +++ b/Docs/TagInfo/mapcomplete_ski.json @@ -1812,28 +1812,28 @@ "key": "reservation", "value": "required", "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "recommended", "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "yes", "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { "key": "reservation", "value": "no", "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Restaurants and fast food", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#Reservation", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/food.md#reservation", "icon_url": "./assets/layers/food/restaurant.svg" }, { diff --git a/Docs/TagInfo/mapcomplete_sports.json b/Docs/TagInfo/mapcomplete_sports.json index 011f078049..ac55bfec2d 100644 --- a/Docs/TagInfo/mapcomplete_sports.json +++ b/Docs/TagInfo/mapcomplete_sports.json @@ -2869,6 +2869,55 @@ "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#key_cutter", "icon_url": "./assets/layers/id_presets/maki-shop.svg" }, + { + "key": "male", + "value": "yes", + "description": "male=yes is displayed as \"Specializes in cutting men's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "female", + "value": "yes", + "description": "female=yes is displayed as \"Specializes in cutting women's hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "children", + "value": "yes", + "description": "children=yes is displayed as \"Specializes in cutting kids hair.\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#hairdresser_targetgroup", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "required", + "description": "reservation=required is displayed as \"A reservation is required at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "recommended", + "description": "reservation=recommended is displayed as \"A reservation is not required, but still recommended to make sure you get a table\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "yes", + "description": "reservation=yes is displayed as \"Reservation is possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, + { + "key": "reservation", + "value": "no", + "description": "reservation=no is displayed as \"Reservation is not possible at this place\" by layer Shop", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#reservation", + "icon_url": "./assets/layers/id_presets/maki-shop.svg" + }, { "key": "service:bicycle:retail", "value": "yes", @@ -3331,35 +3380,35 @@ "key": "dog", "value": "yes", "description": "dog=yes is displayed as \"Dogs are allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "no", "description": "dog=no is displayed as \"Dogs are not allowed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/no_dogs.svg" }, { "key": "dog", "value": "leashed", "description": "dog=leashed is displayed as \"Dogs are allowed, but they have to be leashed\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_leashed.svg" }, { "key": "dog", "value": "unleashed", "description": "dog=unleashed is displayed as \"Dogs are allowed and can run around freely\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_allowed.svg" }, { "key": "dog", "value": "outside", "description": "dog=outside is displayed as \"Dogs are allowed only outside\" by layer Shop", - "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#dog_access", + "doc_url": "https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/Docs/Layers/sport_shops.md#shop_dog_access", "icon_url": "./assets/layers/questions/dogs_outside.svg" }, { diff --git a/Docs/Themes/architecture.md b/Docs/Themes/architecture.md index ea03b1d29d..cecf7cf5c8 100644 --- a/Docs/Themes/architecture.md +++ b/Docs/Themes/architecture.md @@ -91,7 +91,8 @@ Elements must match **all** of the following expressions: ### architecture The question is `What is the architectural style of this building?` -*{building:architecture}* is shown if `building:architecture` is set + +*{building:architecture}* is shown if `building:architecture` is set. - *Islamic architecture* is shown if with
building:architecture=islamic - *Mamluk architecture* is shown if with building:architecture=mamluk @@ -131,11 +132,13 @@ The question is `What is the architectural style of this building?` ### construction_date The question is `When was this built?` -*Built in {construction_date}* is shown if `construction_date` is set + +*Built in {construction_date}* is shown if `construction_date` is set. ### address_joined _This tagrendering has no question and is thus read-only_ + *{group(header,street;housenumber;unit,)}* This tagrendering has labels @@ -144,6 +147,7 @@ This tagrendering has labels ### header _This tagrendering has no question and is thus read-only_ + *{addr:street} {addr:housenumber} {addr:unit}* - *No address is known* is shown if with addr:street= & addr:unit= & addr:housenumber= @@ -155,7 +159,8 @@ This tagrendering has labels ### housenumber The question is `What is the number of this house?` -*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set + +*The house number is {addr:housenumber}* is shown if `addr:housenumber` is set. - *This building has no house number* is shown if with nohousenumber=yes @@ -166,7 +171,8 @@ This tagrendering has labels ### street The question is `What street is this address located in?` -*This address is in street {addr:street}* is shown if `addr:street` is set + +*This address is in street {addr:street}* is shown if `addr:street` is set. This tagrendering has labels `address` @@ -175,7 +181,8 @@ This tagrendering has labels ### unit The question is `What is the unit number or letter?` -*The unit number is {addr:unit}* is shown if `addr:unit` is set + +*The unit number is {addr:unit}* is shown if `addr:unit` is set. - *No unit number* is shown if with addr:unit= @@ -186,6 +193,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -195,11 +203,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/atm.md b/Docs/Themes/atm.md index dee0442032..6f0eb9f39c 100644 --- a/Docs/Themes/atm.md +++ b/Docs/Themes/atm.md @@ -121,6 +121,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### has_atm @@ -134,6 +135,7 @@ The question is `Does this bank have an ATM?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -143,16 +145,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -228,12 +233,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -243,7 +250,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -254,7 +262,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -264,7 +273,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours for this post office?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -278,14 +288,16 @@ The question is `Is this a post partner?` ### post_offic_brand The question is `To which brand does this post office belong?` -*This is a {brand} post office* is shown if `brand` is set + +*This is a {brand} post office* is shown if `brand` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=post_office ### partner-brand The question is `For which brand does this location offer services?` -*This location offers services for {post_office:brand}* is shown if `post_office:brand` is set + +*This location offers services for {post_office:brand}* is shown if `post_office:brand` is set. - *This location offers services for DHL* is shown if with post_office:brand=DHL - *This location offers services for DPD* is shown if with post_office:brand=DPD @@ -301,7 +313,8 @@ This tagrendering is only visible in the popup if the following condition is met ### letter-from The question is `Can you post a letter here?` -*You can post letters with these companies: {post_office:letter_from}* is shown if `post_office:letter_from` is set + +*You can post letters with these companies: {post_office:letter_from}* is shown if `post_office:letter_from` is set. - *You can post letters here* is shown if with post_office:letter_from=yes - *You can't post letters here* is shown if with post_office:letter_from=no @@ -309,7 +322,8 @@ The question is `Can you post a letter here?` ### parcel-from The question is `Can you send a parcel here?` -*You can post parcels with these companies: {post_office:parcel_from}* is shown if `post_office:parcel_from` is set + +*You can post parcels with these companies: {post_office:parcel_from}* is shown if `post_office:parcel_from` is set. - *You can send parcels here* is shown if with post_office:parcel_from=yes - *You can't send parcels here* is shown if with post_office:parcel_from=no @@ -317,7 +331,8 @@ The question is `Can you send a parcel here?` ### parcel-pickup The question is `Can you pick up missed parcels here?` -*You can pick up parcels from these companies: {post_office:parcel_pickup}* is shown if `post_office:parcel_pickup` is set + +*You can pick up parcels from these companies: {post_office:parcel_pickup}* is shown if `post_office:parcel_pickup` is set. - *You can pick up missed parcels here* is shown if with post_office:parcel_pickup=yes - *You can't pick up missed parcels here* is shown if with post_office:parcel_pickup=no @@ -325,7 +340,8 @@ The question is `Can you pick up missed parcels here?` ### parcel-to The question is `Can you send parcels to here for pickup?` -*You can send parcels to here for pickup with these companies: {post_office:parcel_to}* is shown if `post_office:parcel_to` is set + +*You can send parcels to here for pickup with these companies: {post_office:parcel_to}* is shown if `post_office:parcel_to` is set. - *You can send parcels to here for pickup* is shown if with post_office:parcel_to=yes - *You can't send parcels to here for pickup* is shown if with post_office:parcel_to=no @@ -333,7 +349,8 @@ The question is `Can you send parcels to here for pickup?` ### stamps The question is `Can you buy stamps here?` -*You can buy stamps from companies: {post_office:stamps}* is shown if `post_office:stamps` is set + +*You can buy stamps from companies: {post_office:stamps}* is shown if `post_office:stamps` is set. - *You can buy stamps here* is shown if with post_office:stamps=yes - *You can't buy stamps here* is shown if with post_office:stamps=no @@ -349,6 +366,7 @@ The question is `Does this post office have an ATM?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -358,11 +376,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/bag.md b/Docs/Themes/bag.md index 5ce43b97b5..e101a641b5 100644 --- a/Docs/Themes/bag.md +++ b/Docs/Themes/bag.md @@ -112,6 +112,7 @@ Elements must match the expression **building~.+** ### Reference _This tagrendering has no question and is thus read-only_ + *The reference in BAG is {ref:bag}* - *This building has no reference in the BAG* is shown if with ref:bag= @@ -119,11 +120,13 @@ _This tagrendering has no question and is thus read-only_ ### Building type The question is `What kind of building is this?` -*This building is a {building}* is shown if `building` is set + +*This building is a {building}* is shown if `building` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -133,6 +136,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -169,6 +173,7 @@ Elements must match **all** of the following expressions: ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -177,6 +182,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -227,6 +233,7 @@ Elements must match the expression **identificatie~.+** ### Import button _This tagrendering has no question and is thus read-only_ + *{import_way_button(osm_buildings,building=$_bag_obj:building; ref:bag=$_bag_obj:ref:bag; source=BAG; source:date=$_bag_obj:source:date; start_date=$_bag_obj:start_date,{"*":"Upload this building to OpenStreetMap"},,,,,,,)}* - *Didn't calculate the correct values yet. Refresh this page* is shown if with _bag_obj:building= | _bag_obj:ref:bag= @@ -236,11 +243,13 @@ _This tagrendering has no question and is thus read-only_ ### Reference _This tagrendering has no question and is thus read-only_ + *The reference in BAG is {_bag_obj:ref:bag}* ### Build year _This tagrendering has no question and is thus read-only_ + *This building was built in {_bag_obj:start_date}* - *The building was started in {_bag_obj:start_date}* is shown if with _bag_obj:in_construction=true @@ -248,6 +257,7 @@ _This tagrendering has no question and is thus read-only_ ### Building type _This tagrendering has no question and is thus read-only_ + *The building type is a {_bag_obj:building}* - *The building type will be a {_bag_obj:construction}* is shown if with _bag_obj:in_construction=true @@ -255,6 +265,7 @@ _This tagrendering has no question and is thus read-only_ ### Overlapping building _This tagrendering has no question and is thus read-only_ + *
The overlapping osm_buildings is a {_osm_obj:building} and covers {_overlap_percentage}% of the BAG building.
The BAG-building covers {_reverse_overlap_percentage}% of the OSM building

BAG geometry:

{minimap(21, id):height:10rem;border-radius:1rem;overflow:hidden}

OSM geometry:

{minimap(21,_osm_obj:id):height:10rem;border-radius:1rem;overflow:hidden}
* This tagrendering is only visible in the popup if the following condition is met: _overlaps_with~.+ @@ -262,16 +273,19 @@ This tagrendering is only visible in the popup if the following condition is met ### Building status _This tagrendering has no question and is thus read-only_ + *The current building status is {status}* ### Buidling function _This tagrendering has no question and is thus read-only_ + *The current function of the building is {gebruiksdoel}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -281,6 +295,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -318,6 +333,7 @@ Elements must match the expression **identificatie~.+** ### Import button _This tagrendering has no question and is thus read-only_ + *{import_button(osm_adresses, addr:city=$woonplaats; addr:housenumber=$_bag_obj:addr:housenumber; addr:postcode=$postcode; addr:street=$openbare_ruimte; ref:bag=$_bag_obj:ref:bag; source=BAG; source:date=$_bag_obj:source:date, Upload this adress to OpenStreetMap)}* This tagrendering is only visible in the popup if the following condition is met: _imported_osm_object_found=false @@ -325,11 +341,13 @@ This tagrendering is only visible in the popup if the following condition is met ### Address _This tagrendering has no question and is thus read-only_ + *{openbare_ruimte} {_bag_obj:addr:housenumber}, {woonplaats} {postcode}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -339,6 +357,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/buurtnatuur.md b/Docs/Themes/buurtnatuur.md index a58940b5cb..60231b20b3 100644 --- a/Docs/Themes/buurtnatuur.md +++ b/Docs/Themes/buurtnatuur.md @@ -119,12 +119,14 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Access tag The question is `Is dit gebied toegankelijk?` -*De toegankelijkheid van dit gebied is: {access:description}* is shown if `access:description` is set + +*De toegankelijkheid van dit gebied is: {access:description}* is shown if `access:description` is set. - *Dit gebied is vrij toegankelijk* is shown if with access:description= & access= & leisure=park. _This option cannot be chosen as answer_ - *Vrij toegankelijk* is shown if with access:description= & access=yes & fee= @@ -137,7 +139,8 @@ The question is `Is dit gebied toegankelijk?` ### Operator tag The question is `Wie beheert dit gebied?` -*Beheer door {operator}* is shown if `operator` is set + +*Beheer door {operator}* is shown if `operator` is set. - *Beheer door de gemeente* is shown if with leisure=park & operator=. _This option cannot be chosen as answer_ - *Dit gebied wordt beheerd door Natuurpunt* is shown if with operator=Natuurpunt @@ -148,30 +151,35 @@ The question is `Wie beheert dit gebied?` ### Non-editable description _This tagrendering has no question and is thus read-only_ -*Extra info: {description}* is shown if `description` is set + +*Extra info: {description}* is shown if `description` is set. ### Editable description The question is `Is er extra info die je kwijt wil?` -*Extra info via buurtnatuur.be: {description:0}* is shown if `description:0` is set + +*Extra info via buurtnatuur.be: {description:0}* is shown if `description:0` is set. ### Name:nl-tag The question is `Wat is de Nederlandstalige naam van dit gebied?` -*Dit gebied heet {name:nl}* is shown if `name:nl` is set + +*Dit gebied heet {name:nl}* is shown if `name:nl` is set. This tagrendering is only visible in the popup if the following condition is met: name:nl~.+ & viewpoint!~^(tourism)$ ### Name tag The question is `Wat is de naam van dit gebied?` -*Dit gebied heet {name}* is shown if `name` is set + +*Dit gebied heet {name}* is shown if `name` is set. - *Dit gebied heeft geen naam* is shown if with noname=yes & name= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -181,6 +189,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -238,12 +247,14 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Access tag The question is `Is dit gebied toegankelijk?` -*De toegankelijkheid van dit gebied is: {access:description}* is shown if `access:description` is set + +*De toegankelijkheid van dit gebied is: {access:description}* is shown if `access:description` is set. - *Dit gebied is vrij toegankelijk* is shown if with access:description= & access= & leisure=park. _This option cannot be chosen as answer_ - *Vrij toegankelijk* is shown if with access:description= & access=yes & fee= @@ -256,7 +267,8 @@ The question is `Is dit gebied toegankelijk?` ### Operator tag The question is `Wie beheert dit gebied?` -*Beheer door {operator}* is shown if `operator` is set + +*Beheer door {operator}* is shown if `operator` is set. - *Beheer door de gemeente* is shown if with leisure=park & operator=. _This option cannot be chosen as answer_ - *Dit gebied wordt beheerd door Natuurpunt* is shown if with operator=Natuurpunt @@ -267,30 +279,35 @@ The question is `Wie beheert dit gebied?` ### Non-editable description _This tagrendering has no question and is thus read-only_ -*Extra info: {description}* is shown if `description` is set + +*Extra info: {description}* is shown if `description` is set. ### Editable description The question is `Is er extra info die je kwijt wil?` -*Extra info via buurtnatuur.be: {description:0}* is shown if `description:0` is set + +*Extra info via buurtnatuur.be: {description:0}* is shown if `description:0` is set. ### Name:nl-tag The question is `Wat is de Nederlandstalige naam van dit gebied?` -*Dit gebied heet {name:nl}* is shown if `name:nl` is set + +*Dit gebied heet {name:nl}* is shown if `name:nl` is set. This tagrendering is only visible in the popup if the following condition is met: name:nl~.+ & viewpoint!~^(tourism)$ ### Name tag The question is `Wat is de naam van dit gebied?` -*Dit gebied heet {name}* is shown if `name` is set + +*Dit gebied heet {name}* is shown if `name` is set. - *Dit gebied heeft geen naam* is shown if with noname=yes & name= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -300,6 +317,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -358,12 +376,14 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Access tag The question is `Is dit gebied toegankelijk?` -*De toegankelijkheid van dit gebied is: {access:description}* is shown if `access:description` is set + +*De toegankelijkheid van dit gebied is: {access:description}* is shown if `access:description` is set. - *Dit gebied is vrij toegankelijk* is shown if with access:description= & access= & leisure=park. _This option cannot be chosen as answer_ - *Vrij toegankelijk* is shown if with access:description= & access=yes & fee= @@ -376,7 +396,8 @@ The question is `Is dit gebied toegankelijk?` ### Operator tag The question is `Wie beheert dit gebied?` -*Beheer door {operator}* is shown if `operator` is set + +*Beheer door {operator}* is shown if `operator` is set. - *Beheer door de gemeente* is shown if with leisure=park & operator=. _This option cannot be chosen as answer_ - *Dit gebied wordt beheerd door Natuurpunt* is shown if with operator=Natuurpunt @@ -387,30 +408,35 @@ The question is `Wie beheert dit gebied?` ### Non-editable description _This tagrendering has no question and is thus read-only_ -*Extra info: {description}* is shown if `description` is set + +*Extra info: {description}* is shown if `description` is set. ### Editable description The question is `Is er extra info die je kwijt wil?` -*Extra info via buurtnatuur.be: {description:0}* is shown if `description:0` is set + +*Extra info via buurtnatuur.be: {description:0}* is shown if `description:0` is set. ### Name:nl-tag The question is `Wat is de Nederlandstalige naam van dit gebied?` -*Dit gebied heet {name:nl}* is shown if `name:nl` is set + +*Dit gebied heet {name:nl}* is shown if `name:nl` is set. This tagrendering is only visible in the popup if the following condition is met: name:nl~.+ & viewpoint!~^(tourism)$ ### Name tag The question is `Wat is de naam van dit gebied?` -*Dit gebied heet {name}* is shown if `name` is set + +*Dit gebied heet {name}* is shown if `name` is set. - *Dit gebied heeft geen naam* is shown if with noname=yes & name= ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -420,6 +446,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/circular_economy.md b/Docs/Themes/circular_economy.md index e481f4c29c..f464be905e 100644 --- a/Docs/Themes/circular_economy.md +++ b/Docs/Themes/circular_economy.md @@ -61,6 +61,8 @@ Available languages: + [copyshop-binding](#copyshop-binding) + [optometrist_service](#optometrist_service) + [key_cutter](#key_cutter) + + [hairdresser-targetgroup](#hairdresser-targetgroup) + + [reservation](#reservation) + [sells_new_bikes](#sells_new_bikes) + [bike_second_hand](#bike_second_hand) + [repairs_bikes](#repairs_bikes) @@ -84,7 +86,7 @@ Available languages: + [sugar_free](#sugar_free) + [gluten_free](#gluten_free) + [lactose_free](#lactose_free) - + [dog-access](#dog-access) + + [shop-dog-access](#shop-dog-access) + [description](#description) + [toilets-group](#toilets-group) + [grouptitle](#grouptitle) @@ -167,6 +169,7 @@ Elements must match **any** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -240,6 +243,8 @@ Elements must match **any** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -263,7 +268,7 @@ Elements must match **any** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -310,22 +315,26 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -499,7 +508,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -516,14 +526,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -533,7 +545,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -544,7 +557,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -562,6 +576,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -571,7 +586,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -622,6 +638,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -664,7 +701,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -683,7 +721,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -692,7 +731,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -701,7 +741,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -710,7 +751,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -719,7 +761,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -728,7 +771,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -737,7 +781,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -776,7 +821,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -812,7 +858,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -869,7 +916,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -882,11 +929,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -895,6 +944,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -919,6 +969,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -933,7 +984,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -953,7 +1005,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -988,7 +1041,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1058,7 +1112,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1148,7 +1203,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1184,7 +1240,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1257,6 +1314,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1272,6 +1330,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1289,6 +1348,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1306,6 +1366,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1347,6 +1408,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1363,6 +1425,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1398,7 +1461,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1417,7 +1483,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1434,7 +1503,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1493,6 +1565,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1509,6 +1582,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1519,6 +1593,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1528,16 +1603,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/climbing.md b/Docs/Themes/climbing.md index 0a3b142a09..228b463051 100644 --- a/Docs/Themes/climbing.md +++ b/Docs/Themes/climbing.md @@ -67,6 +67,8 @@ Available languages: + [copyshop-binding](#copyshop-binding) + [optometrist_service](#optometrist_service) + [key_cutter](#key_cutter) + + [hairdresser-targetgroup](#hairdresser-targetgroup) + + [reservation](#reservation) + [sells_new_bikes](#sells_new_bikes) + [bike_second_hand](#bike_second_hand) + [repairs_bikes](#repairs_bikes) @@ -90,7 +92,7 @@ Available languages: + [sugar_free](#sugar_free) + [gluten_free](#gluten_free) + [lactose_free](#lactose_free) - + [dog-access](#dog-access) + + [shop-dog-access](#shop-dog-access) + [description](#description) + [toilets-group](#toilets-group) + [grouptitle](#grouptitle) @@ -174,6 +176,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -248,6 +251,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -271,7 +276,7 @@ Elements must match **all** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -325,22 +330,26 @@ The question is `Does this shoe repair shop repair climbing shoes?` ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -514,7 +523,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -531,14 +541,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -548,7 +560,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -559,7 +572,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -577,6 +591,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -586,7 +601,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -637,6 +653,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -679,7 +716,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -698,7 +736,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -707,7 +746,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -716,7 +756,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -725,7 +766,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -734,7 +776,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -743,7 +786,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -752,7 +796,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -791,7 +836,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -827,7 +873,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -884,7 +931,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -897,11 +944,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -910,6 +959,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -934,6 +984,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -948,7 +999,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -968,7 +1020,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -1003,7 +1056,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1073,7 +1127,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1163,7 +1218,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1199,7 +1255,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1272,6 +1329,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1287,6 +1345,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1304,6 +1363,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1321,6 +1381,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1362,6 +1423,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1378,6 +1440,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1413,7 +1476,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1432,7 +1498,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1449,7 +1518,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1508,6 +1580,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1524,6 +1597,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1534,6 +1608,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1543,16 +1618,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/cycle_highways.md b/Docs/Themes/cycle_highways.md index 2f9d304e9d..e18c53d036 100644 --- a/Docs/Themes/cycle_highways.md +++ b/Docs/Themes/cycle_highways.md @@ -108,17 +108,20 @@ Elements must match **all** of the following expressions: ### cycle_highways-name The question is `What is the name of this cycle highway?` -*The name is {name}* is shown if `name` is set + +*The name is {name}* is shown if `name` is set. ### cycle_highways-ref The question is `What is the reference number of this cycle highway?` -*Referentienummer is {ref}* is shown if `ref` is set + +*Referentienummer is {ref}* is shown if `ref` is set. ### cycle_highways-state The question is `What is the state of this link?` -*The current state of this link is {state}* is shown if `state` is set + +*The current state of this link is {state}* is shown if `state` is set. - *This is a proposed route which can be cycled* is shown if with state=proposed & note:state= - *This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)* is shown if with state=proposed & note:state=has_highway_no @@ -129,12 +132,14 @@ The question is `What is the state of this link?` ### cycle-highway-length _This tagrendering has no question and is thus read-only_ + *This part is {_length:km}km long* ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -144,11 +149,13 @@ This tagrendering has labels ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -158,6 +165,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -241,17 +249,20 @@ Elements must match **all** of the following expressions: ### cycle_highways-name The question is `What is the name of this cycle highway?` -*The name is {name}* is shown if `name` is set + +*The name is {name}* is shown if `name` is set. ### cycle_highways-ref The question is `What is the reference number of this cycle highway?` -*Referentienummer is {ref}* is shown if `ref` is set + +*Referentienummer is {ref}* is shown if `ref` is set. ### cycle_highways-state The question is `What is the state of this link?` -*The current state of this link is {state}* is shown if `state` is set + +*The current state of this link is {state}* is shown if `state` is set. - *This is a proposed route which can be cycled* is shown if with state=proposed & note:state= - *This is a proposed route which has missing links (thus: some parts don't even have a building permit yet)* is shown if with state=proposed & note:state=has_highway_no @@ -262,12 +273,14 @@ The question is `What is the state of this link?` ### cycle-highway-length _This tagrendering has no question and is thus read-only_ + *This part is {_length:km}km long* ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -277,11 +290,13 @@ This tagrendering has labels ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -291,6 +306,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/cyclenodes.md b/Docs/Themes/cyclenodes.md index 66e7aaf22d..0830888e44 100644 --- a/Docs/Themes/cyclenodes.md +++ b/Docs/Themes/cyclenodes.md @@ -107,18 +107,21 @@ Elements must match **all** of the following expressions: ### node2node-survey:date The question is `When was this node to node link last surveyed?` -*This node to node link was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This node to node link was last surveyed on {survey:date}* is shown if `survey:date` is set. - *This object was last surveyed today* is shown if with survey:date= ### export_as_gpx Shows a button to export this feature as GPX. Especially useful for route relations _This tagrendering has no question and is thus read-only_ + *{export_as_gpx()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -128,6 +131,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -177,30 +181,35 @@ Elements must match **any** of the following expressions: ### node-rxn_ref The question is `What is the reference number of this cycling node?` -*This cycling node has reference number {rcn_ref}* is shown if `rcn_ref` is set + +*This cycling node has reference number {rcn_ref}* is shown if `rcn_ref` is set. This tagrendering is only visible in the popup if the following condition is met: rcn_ref~.+ ### node-survey:date The question is `When was this cycle node last surveyed?` -*This cycle node was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This cycle node was last surveyed on {survey:date}* is shown if `survey:date` is set. - *This object was last surveyed today* is shown if with survey:date= ### node-expected_rcn_route_relations The question is `How many other cycle nodes does this node link to?` -*This node links to {expected_rcn_route_relations} other cycle nodes.* is shown if `expected_rcn_route_relations` is set + +*This node links to {expected_rcn_route_relations} other cycle nodes.* is shown if `expected_rcn_route_relations` is set. ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -210,6 +219,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -265,32 +275,37 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### name The question is `What is the name noted on this guidepost?` -*Name noted on the guidepost: {name}* is shown if `name` is set + +*Name noted on the guidepost: {name}* is shown if `name` is set. - *There is no name noted on this guidepost* is shown if with noname=yes ### ref The question is `What is the reference number of this guidepost?` -*Reference number of the guidepost: {ref}* is shown if `ref` is set + +*Reference number of the guidepost: {ref}* is shown if `ref` is set. - *There is no reference number noted on this guidepost* is shown if with noref=yes ### ele The question is `What is the elevation noted on this guidepost?` -*Elevation noted on the guidepost: {ele} m* is shown if `ele` is set + +*Elevation noted on the guidepost: {ele} m* is shown if `ele` is set. - *There is no elevation noted on this guidepost* is shown if with noele=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -300,16 +315,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/cyclestreets.md b/Docs/Themes/cyclestreets.md index be9692d4e2..a7e4630f96 100644 --- a/Docs/Themes/cyclestreets.md +++ b/Docs/Themes/cyclestreets.md @@ -104,6 +104,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### is_cyclestreet @@ -133,13 +134,15 @@ This tagrendering is only visible in the popup if the following condition is met ### future_cyclestreet The question is `When will this street become a cyclestreet?` -*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set + +*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set. This tagrendering is only visible in the popup if the following condition is met: proposed:cyclestreet=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -149,11 +152,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -200,6 +205,7 @@ Elements must match **any** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### is_cyclestreet @@ -229,13 +235,15 @@ This tagrendering is only visible in the popup if the following condition is met ### future_cyclestreet The question is `When will this street become a cyclestreet?` -*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set + +*This street will become a cyclestreet at {cyclestreet:start_date}* is shown if `cyclestreet:start_date` is set. This tagrendering is only visible in the popup if the following condition is met: proposed:cyclestreet=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -245,11 +253,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/cyclofix.md b/Docs/Themes/cyclofix.md index 44fbc43b4d..d0be2a311b 100644 --- a/Docs/Themes/cyclofix.md +++ b/Docs/Themes/cyclofix.md @@ -307,22 +307,26 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### preset_description _This tagrendering has no question and is thus read-only_ + *{preset_description()}* ### name The question is `What is the name of this repair workshop?` -*This workshop is called {name}* is shown if `name` is set + +*This workshop is called {name}* is shown if `name` is set. ### opening_hours_by_appointment The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Only by appointment* is shown if with opening_hours="by appointment" - *Only by appointment* is shown if with opening_hours~^("by appointment"|by appointment)$. _This option cannot be chosen as answer_ @@ -331,7 +335,8 @@ The question is `What are the opening hours of {title()}?` ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -341,7 +346,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -352,7 +358,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -362,12 +369,14 @@ This tagrendering has labels ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### facebook Shows and asks for the facebook handle The question is `What is the facebook page of of {title()}?` -*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set + +*{link(Facebook page,&LBRACEcontact:facebook&RBRACE,,,,)}
Facebook is known to harm mental health, manipulate public opinion and cause hate. Try to use healthier alternatives
* is shown if `contact:facebook` is set. ### item:repair @@ -383,6 +392,7 @@ The question is `What type of items are repaired here?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -392,16 +402,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -479,6 +492,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### bicycle_rental_type @@ -497,7 +511,8 @@ This tagrendering is only visible in the popup if the following condition is met ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -507,7 +522,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -518,7 +534,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -528,7 +545,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -557,7 +575,8 @@ The question is `Which methods of payment are accepted here?` ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -575,7 +594,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$ This tagrendering has labels @@ -584,7 +604,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$ This tagrendering has labels @@ -593,7 +614,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -602,7 +624,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$ This tagrendering has labels @@ -611,7 +634,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*mtb.*)$ This tagrendering has labels @@ -620,7 +644,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -629,7 +654,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -638,6 +664,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -647,16 +674,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -923,6 +953,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Type @@ -938,7 +969,8 @@ The question is `Which vehicles are allowed to charge here?` ### access The question is `Who is allowed to use this charging station?` -*Access is {access}* is shown if `access` is set + +*Access is {access}* is shown if `access` is set. - *Anyone can use this charging station (payment might be needed)* is shown if with access=yes - *Anyone can use this charging station (payment might be needed)* is shown if with access=public. _This option cannot be chosen as answer_ @@ -950,7 +982,8 @@ The question is `Who is allowed to use this charging station?` ### capacity The question is `How much vehicles can be charged here at the same time?` -*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set + +*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set. ### Available_charging_stations (generated) @@ -1002,7 +1035,8 @@ The question is `Which charging connections are available here?` ### plugs-amount-socket:schuko The question is `How much plugs of type Schuko wall plug without ground pin (CEE7/4 type F) are available here?` -*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set + +*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set. This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0 This tagrendering has labels @@ -1011,7 +1045,8 @@ This tagrendering has labels ### voltage-socket:schuko The question is `What voltage do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with socket:schuko:voltage=230 @@ -1022,7 +1057,8 @@ This tagrendering has labels ### current-socket:schuko The question is `What current do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with socket:schuko:current=16 @@ -1033,7 +1069,8 @@ This tagrendering has labels ### power-output-socket:schuko The question is `What power output does a single plug of type Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with socket:schuko:output=3.6 kW @@ -1044,7 +1081,8 @@ This tagrendering has labels ### plugs-amount-socket:typee The question is `How much plugs of type European wall plug with ground pin (CEE7/4 type E) are available here?` -*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set + +*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set. This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0 This tagrendering has labels @@ -1053,7 +1091,8 @@ This tagrendering has labels ### voltage-socket:typee The question is `What voltage do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with socket:typee:voltage=230 @@ -1064,7 +1103,8 @@ This tagrendering has labels ### current-socket:typee The question is `What current do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with socket:typee:current=16 @@ -1075,7 +1115,8 @@ This tagrendering has labels ### power-output-socket:typee The question is `What power output does a single plug of type European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with socket:typee:output=3 kW - *European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with socket:typee:output=22 kW @@ -1087,7 +1128,8 @@ This tagrendering has labels ### plugs-amount-socket:chademo The question is `How much plugs of type Chademo are available here?` -*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set + +*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0 This tagrendering has labels @@ -1096,7 +1138,8 @@ This tagrendering has labels ### voltage-socket:chademo The question is `What voltage do the plugs with Chademo offer?` -*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set + +*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set. - *Chademo outputs 500 volt* is shown if with socket:chademo:voltage=500 @@ -1107,7 +1150,8 @@ This tagrendering has labels ### current-socket:chademo The question is `What current do the plugs with Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set + +*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set. - *Chademo outputs at most 120 A* is shown if with socket:chademo:current=120 @@ -1118,7 +1162,8 @@ This tagrendering has labels ### power-output-socket:chademo The question is `What power output does a single plug of type Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set + +*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set. - *Chademo outputs at most 50 kW* is shown if with socket:chademo:output=50 kW @@ -1129,7 +1174,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_cable The question is `How much plugs of type Type 1 with cable (J1772) are available here?` -*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set + +*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0 This tagrendering has labels @@ -1138,7 +1184,8 @@ This tagrendering has labels ### voltage-socket:type1_cable The question is `What voltage do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set + +*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set. - *Type 1 with cable (J1772) outputs 200 volt* is shown if with socket:type1_cable:voltage=200 - *Type 1 with cable (J1772) outputs 240 volt* is shown if with socket:type1_cable:voltage=240 @@ -1150,7 +1197,8 @@ This tagrendering has labels ### current-socket:type1_cable The question is `What current do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set. - *Type 1 with cable (J1772) outputs at most 32 A* is shown if with socket:type1_cable:current=32 @@ -1161,7 +1209,8 @@ This tagrendering has labels ### power-output-socket:type1_cable The question is `What power output does a single plug of type Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set. - *Type 1 with cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1_cable:output=3.7 kW - *Type 1 with cable (J1772) outputs at most 7 kW* is shown if with socket:type1_cable:output=7 kW @@ -1173,7 +1222,8 @@ This tagrendering has labels ### plugs-amount-socket:type1 The question is `How much plugs of type Type 1 without cable (J1772) are available here?` -*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set + +*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0 This tagrendering has labels @@ -1182,7 +1232,8 @@ This tagrendering has labels ### voltage-socket:type1 The question is `What voltage do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set + +*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set. - *Type 1 without cable (J1772) outputs 200 volt* is shown if with socket:type1:voltage=200 - *Type 1 without cable (J1772) outputs 240 volt* is shown if with socket:type1:voltage=240 @@ -1194,7 +1245,8 @@ This tagrendering has labels ### current-socket:type1 The question is `What current do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set. - *Type 1 without cable (J1772) outputs at most 32 A* is shown if with socket:type1:current=32 @@ -1205,7 +1257,8 @@ This tagrendering has labels ### power-output-socket:type1 The question is `What power output does a single plug of type Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set. - *Type 1 without cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1:output=3.7 kW - *Type 1 without cable (J1772) outputs at most 6.6 kW* is shown if with socket:type1:output=6.6 kW @@ -1219,7 +1272,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_combo The question is `How much plugs of type Type 1 CCS (aka Type 1 Combo) are available here?` -*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set + +*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0 This tagrendering has labels @@ -1228,7 +1282,8 @@ This tagrendering has labels ### voltage-socket:type1_combo The question is `What voltage do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set + +*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set. - *Type 1 CCS (aka Type 1 Combo) outputs 400 volt* is shown if with socket:type1_combo:voltage=400 - *Type 1 CCS (aka Type 1 Combo) outputs 1000 volt* is shown if with socket:type1_combo:voltage=1000 @@ -1240,7 +1295,8 @@ This tagrendering has labels ### current-socket:type1_combo The question is `What current do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 A* is shown if with socket:type1_combo:current=50 - *Type 1 CCS (aka Type 1 Combo) outputs at most 125 A* is shown if with socket:type1_combo:current=125 @@ -1252,7 +1308,8 @@ This tagrendering has labels ### power-output-socket:type1_combo The question is `What power output does a single plug of type Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW* is shown if with socket:type1_combo:output=50 kW - *Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with socket:type1_combo:output=62.5 kW @@ -1266,7 +1323,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger The question is `How much plugs of type Tesla Supercharger are available here?` -*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set + +*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0 This tagrendering has labels @@ -1275,7 +1333,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger The question is `What voltage do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set + +*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set. - *Tesla Supercharger outputs 480 volt* is shown if with socket:tesla_supercharger:voltage=480 @@ -1286,7 +1345,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger The question is `What current do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set. - *Tesla Supercharger outputs at most 125 A* is shown if with socket:tesla_supercharger:current=125 - *Tesla Supercharger outputs at most 350 A* is shown if with socket:tesla_supercharger:current=350 @@ -1298,7 +1358,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger The question is `What power output does a single plug of type Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set. - *Tesla Supercharger outputs at most 120 kW* is shown if with socket:tesla_supercharger:output=120 kW - *Tesla Supercharger outputs at most 150 kW* is shown if with socket:tesla_supercharger:output=150 kW @@ -1311,7 +1372,8 @@ This tagrendering has labels ### plugs-amount-socket:type2 The question is `How much plugs of type Type 2 (mennekes) are available here?` -*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set + +*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0 This tagrendering has labels @@ -1320,7 +1382,8 @@ This tagrendering has labels ### voltage-socket:type2 The question is `What voltage do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set + +*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set. - *Type 2 (mennekes) outputs 230 volt* is shown if with socket:type2:voltage=230 - *Type 2 (mennekes) outputs 400 volt* is shown if with socket:type2:voltage=400 @@ -1332,7 +1395,8 @@ This tagrendering has labels ### current-socket:type2 The question is `What current do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set. - *Type 2 (mennekes) outputs at most 16 A* is shown if with socket:type2:current=16 - *Type 2 (mennekes) outputs at most 32 A* is shown if with socket:type2:current=32 @@ -1344,7 +1408,8 @@ This tagrendering has labels ### power-output-socket:type2 The question is `What power output does a single plug of type Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set. - *Type 2 (mennekes) outputs at most 11 kW* is shown if with socket:type2:output=11 kW - *Type 2 (mennekes) outputs at most 22 kW* is shown if with socket:type2:output=22 kW @@ -1356,7 +1421,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_combo The question is `How much plugs of type Type 2 CCS (mennekes) are available here?` -*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set + +*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0 This tagrendering has labels @@ -1365,7 +1431,8 @@ This tagrendering has labels ### voltage-socket:type2_combo The question is `What voltage do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set + +*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set. - *Type 2 CCS (mennekes) outputs 500 volt* is shown if with socket:type2_combo:voltage=500 - *Type 2 CCS (mennekes) outputs 920 volt* is shown if with socket:type2_combo:voltage=920 @@ -1377,7 +1444,8 @@ This tagrendering has labels ### current-socket:type2_combo The question is `What current do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set. - *Type 2 CCS (mennekes) outputs at most 125 A* is shown if with socket:type2_combo:current=125 - *Type 2 CCS (mennekes) outputs at most 350 A* is shown if with socket:type2_combo:current=350 @@ -1389,7 +1457,8 @@ This tagrendering has labels ### power-output-socket:type2_combo The question is `What power output does a single plug of type Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set. - *Type 2 CCS (mennekes) outputs at most 50 kW* is shown if with socket:type2_combo:output=50 kW @@ -1400,7 +1469,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_cable The question is `How much plugs of type Type 2 with cable (mennekes) are available here?` -*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set + +*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0 This tagrendering has labels @@ -1409,7 +1479,8 @@ This tagrendering has labels ### voltage-socket:type2_cable The question is `What voltage do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set + +*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set. - *Type 2 with cable (mennekes) outputs 230 volt* is shown if with socket:type2_cable:voltage=230 - *Type 2 with cable (mennekes) outputs 400 volt* is shown if with socket:type2_cable:voltage=400 @@ -1421,7 +1492,8 @@ This tagrendering has labels ### current-socket:type2_cable The question is `What current do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set. - *Type 2 with cable (mennekes) outputs at most 16 A* is shown if with socket:type2_cable:current=16 - *Type 2 with cable (mennekes) outputs at most 32 A* is shown if with socket:type2_cable:current=32 @@ -1433,7 +1505,8 @@ This tagrendering has labels ### power-output-socket:type2_cable The question is `What power output does a single plug of type Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set. - *Type 2 with cable (mennekes) outputs at most 11 kW* is shown if with socket:type2_cable:output=11 kW - *Type 2 with cable (mennekes) outputs at most 22 kW* is shown if with socket:type2_cable:output=22 kW @@ -1445,7 +1518,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger_ccs The question is `How much plugs of type Tesla Supercharger CCS (a branded type2_css) are available here?` -*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set + +*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0 This tagrendering has labels @@ -1454,7 +1528,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger_ccs The question is `What voltage do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs 500 volt* is shown if with socket:tesla_supercharger_ccs:voltage=500 - *Tesla Supercharger CCS (a branded type2_css) outputs 920 volt* is shown if with socket:tesla_supercharger_ccs:voltage=920 @@ -1466,7 +1541,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger_ccs The question is `What current do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A* is shown if with socket:tesla_supercharger_ccs:current=125 - *Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A* is shown if with socket:tesla_supercharger_ccs:current=350 @@ -1478,7 +1554,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger_ccs The question is `What power output does a single plug of type Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW* is shown if with socket:tesla_supercharger_ccs:output=50 kW @@ -1489,7 +1566,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination_us The question is `How much plugs of type Tesla Supercharger (destination) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -1498,7 +1576,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination_us The question is `What voltage do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla Supercharger (destination) outputs 480 volt* is shown if with socket:tesla_destination:voltage=480 @@ -1509,7 +1588,8 @@ This tagrendering has labels ### current-socket:tesla_destination_us The question is `What current do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla Supercharger (destination) outputs at most 125 A* is shown if with socket:tesla_destination:current=125 - *Tesla Supercharger (destination) outputs at most 350 A* is shown if with socket:tesla_destination:current=350 @@ -1521,7 +1601,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination_us The question is `What power output does a single plug of type Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla Supercharger (destination) outputs at most 120 kW* is shown if with socket:tesla_destination:output=120 kW - *Tesla Supercharger (destination) outputs at most 150 kW* is shown if with socket:tesla_destination:output=150 kW @@ -1534,7 +1615,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination The question is `How much plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -1543,7 +1625,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination The question is `What voltage do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with socket:tesla_destination:voltage=230 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with socket:tesla_destination:voltage=400 @@ -1555,7 +1638,8 @@ This tagrendering has labels ### current-socket:tesla_destination The question is `What current do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with socket:tesla_destination:current=16 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with socket:tesla_destination:current=32 @@ -1567,7 +1651,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination The question is `What power output does a single plug of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with socket:tesla_destination:output=11 kW - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with socket:tesla_destination:output=22 kW @@ -1579,7 +1664,8 @@ This tagrendering has labels ### plugs-amount-socket:USB-A The question is `How much plugs of type USB to charge phones and small electronics are available here?` -*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set + +*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set. This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0 This tagrendering has labels @@ -1588,7 +1674,8 @@ This tagrendering has labels ### voltage-socket:USB-A The question is `What voltage do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set + +*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set. - *USB to charge phones and small electronics outputs 5 volt* is shown if with socket:USB-A:voltage=5 @@ -1599,7 +1686,8 @@ This tagrendering has labels ### current-socket:USB-A The question is `What current do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set. - *USB to charge phones and small electronics outputs at most 1 A* is shown if with socket:USB-A:current=1 - *USB to charge phones and small electronics outputs at most 2 A* is shown if with socket:USB-A:current=2 @@ -1611,7 +1699,8 @@ This tagrendering has labels ### power-output-socket:USB-A The question is `What power output does a single plug of type USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set. - *USB to charge phones and small electronics outputs at most 5W* is shown if with socket:USB-A:output=5W - *USB to charge phones and small electronics outputs at most 10W* is shown if with socket:USB-A:output=10W @@ -1623,7 +1712,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_3pin The question is `How much plugs of type Bosch Active Connect with 3 pins and cable are available here?` -*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set + +*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1632,7 +1722,8 @@ This tagrendering has labels ### voltage-socket:bosch_3pin The question is `What voltage do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set + +*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1641,7 +1732,8 @@ This tagrendering has labels ### current-socket:bosch_3pin The question is `What current do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1650,7 +1742,8 @@ This tagrendering has labels ### power-output-socket:bosch_3pin The question is `What power output does a single plug of type Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1659,7 +1752,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_5pin The question is `How much plugs of type Bosch Active Connect with 5 pins and cable are available here?` -*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set + +*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1668,7 +1762,8 @@ This tagrendering has labels ### voltage-socket:bosch_5pin The question is `What voltage do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set + +*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1677,7 +1772,8 @@ This tagrendering has labels ### current-socket:bosch_5pin The question is `What current do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1686,7 +1782,8 @@ This tagrendering has labels ### power-output-socket:bosch_5pin The question is `What power output does a single plug of type Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1695,7 +1792,8 @@ This tagrendering has labels ### plugs-amount-socket:bs1363 The question is `How much plugs of type BS1363 (Type G) are available here?` -*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set + +*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0 This tagrendering has labels @@ -1704,7 +1802,8 @@ This tagrendering has labels ### voltage-socket:bs1363 The question is `What voltage do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set + +*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set. - *BS1363 (Type G) outputs 230 volt* is shown if with socket:bs1363:voltage=230 @@ -1715,7 +1814,8 @@ This tagrendering has labels ### current-socket:bs1363 The question is `What current do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set. - *BS1363 (Type G) outputs at most 13 A* is shown if with socket:bs1363:current=13 @@ -1726,7 +1826,8 @@ This tagrendering has labels ### power-output-socket:bs1363 The question is `What power output does a single plug of type BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set. - *BS1363 (Type G) outputs at most 3kW* is shown if with socket:bs1363:output=3kW @@ -1737,7 +1838,8 @@ This tagrendering has labels ### plugs-amount-socket:nema5_15 The question is `How much plugs of type NEMA 5-15 (Type B) are available here?` -*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set + +*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0 This tagrendering has labels @@ -1746,7 +1848,8 @@ This tagrendering has labels ### voltage-socket:nema5_15 The question is `What voltage do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set + +*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set. - *NEMA 5-15 (Type B) outputs 120 volt* is shown if with socket:nema5_15:voltage=120 @@ -1757,7 +1860,8 @@ This tagrendering has labels ### current-socket:nema5_15 The question is `What current do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set. - *NEMA 5-15 (Type B) outputs at most 15 A* is shown if with socket:nema5_15:current=15 @@ -1768,7 +1872,8 @@ This tagrendering has labels ### power-output-socket:nema5_15 The question is `What power output does a single plug of type NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set. - *NEMA 5-15 (Type B) outputs at most 1.8 kW* is shown if with socket:nema5_15:output=1.8 kW @@ -1779,7 +1884,8 @@ This tagrendering has labels ### plugs-amount-socket:sev1011_t23 The question is `How much plugs of type SEV 1011 T23 (Type J) are available here?` -*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set + +*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set. This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0 This tagrendering has labels @@ -1788,7 +1894,8 @@ This tagrendering has labels ### voltage-socket:sev1011_t23 The question is `What voltage do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set + +*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set. - *SEV 1011 T23 (Type J) outputs 230 volt* is shown if with socket:sev1011_t23:voltage=230 @@ -1799,7 +1906,8 @@ This tagrendering has labels ### current-socket:sev1011_t23 The question is `What current do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set. - *SEV 1011 T23 (Type J) outputs at most 16 A* is shown if with socket:sev1011_t23:current=16 @@ -1810,7 +1918,8 @@ This tagrendering has labels ### power-output-socket:sev1011_t23 The question is `What power output does a single plug of type SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set. - *SEV 1011 T23 (Type J) outputs at most 3.7 kW* is shown if with socket:sev1011_t23:output=3.7 kW @@ -1821,7 +1930,8 @@ This tagrendering has labels ### plugs-amount-socket:as3112 The question is `How much plugs of type AS3112 (Type I) are available here?` -*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set + +*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set. This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0 This tagrendering has labels @@ -1830,7 +1940,8 @@ This tagrendering has labels ### voltage-socket:as3112 The question is `What voltage do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set + +*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set. - *AS3112 (Type I) outputs 230 volt* is shown if with socket:as3112:voltage=230 @@ -1841,7 +1952,8 @@ This tagrendering has labels ### current-socket:as3112 The question is `What current do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set. - *AS3112 (Type I) outputs at most 10 A* is shown if with socket:as3112:current=10 @@ -1852,7 +1964,8 @@ This tagrendering has labels ### power-output-socket:as3112 The question is `What power output does a single plug of type AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set. - *AS3112 (Type I) outputs at most 2.3 kW* is shown if with socket:as3112:output=2.3 kW @@ -1863,7 +1976,8 @@ This tagrendering has labels ### plugs-amount-socket:nema_5_20 The question is `How much plugs of type NEMA 5-20 (Type B) are available here?` -*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set + +*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0 This tagrendering has labels @@ -1872,7 +1986,8 @@ This tagrendering has labels ### voltage-socket:nema_5_20 The question is `What voltage do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set + +*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set. - *NEMA 5-20 (Type B) outputs 120 volt* is shown if with socket:nema_5_20:voltage=120 @@ -1883,7 +1998,8 @@ This tagrendering has labels ### current-socket:nema_5_20 The question is `What current do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set. - *NEMA 5-20 (Type B) outputs at most 20 A* is shown if with socket:nema_5_20:current=20 @@ -1894,7 +2010,8 @@ This tagrendering has labels ### power-output-socket:nema_5_20 The question is `What power output does a single plug of type NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set. - *NEMA 5-20 (Type B) outputs at most 2.4 kW* is shown if with socket:nema_5_20:output=2.4 kW @@ -1905,7 +2022,8 @@ This tagrendering has labels ### OH The question is `When is this charging station opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -1923,7 +2041,8 @@ The question is `Does one have to pay to use this charging station?` ### charge The question is `How much does one have to pay to use this charging station?` -*Using this charging station costs {charge}* is shown if `charge` is set + +*Using this charging station costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes @@ -1943,7 +2062,8 @@ This tagrendering is only visible in the popup if the following condition is met ### app-name The question is `What is the name of the app used for payment?` -*Payment can be done using the app {payment:app}* is shown if `payment:app` is set + +*Payment can be done using the app {payment:app}* is shown if `payment:app` is set. This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no @@ -1963,14 +2083,16 @@ The question is `What kind of authentication is available at the charging statio ### Auth phone The question is `What's the phone number for authentication call or SMS?` -*Authenticate by calling or SMS'ing to {authentication:phone_call:number}* is shown if `authentication:phone_call:number` is set + +*Authenticate by calling or SMS'ing to {authentication:phone_call:number}* is shown if `authentication:phone_call:number` is set. This tagrendering is only visible in the popup if the following condition is met: authentication:phone_call=yes | authentication:short_message=yes ### maxstay The question is `What is the maximum amount of time one is allowed to stay here?` -*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set + +*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set. - *There is no limit to the amount of time one can stay here* is shown if with maxstay=unlimited @@ -1979,7 +2101,8 @@ This tagrendering is only visible in the popup if the following condition is met ### Network The question is `Is this charging station part of a network?` -*Part of the network {network}* is shown if `network` is set + +*Part of the network {network}* is shown if `network` is set. - *Not part of a bigger network, e.g. because the charging station is maintained by a local business* is shown if with no:network=yes - *Not part of a bigger network* is shown if with network=none. _This option cannot be chosen as answer_ @@ -1993,28 +2116,33 @@ The question is `Is this charging station part of a network?` ### Operator The question is `Who is the operator of this charging station?` -*This charging station is operated by {operator}* is shown if `operator` is set + +*This charging station is operated by {operator}* is shown if `operator` is set. - *Actually, {operator} is the network* is shown if with network= ### phone The question is `What number can one call if there is a problem with this charging station?` -*In case of problems, call {phone}* is shown if `phone` is set + +*In case of problems, call {phone}* is shown if `phone` is set. ### email The question is `What is the email address of the operator?` -*In case of problems, send an email to {email}* is shown if `email` is set + +*In case of problems, send an email to {email}* is shown if `email` is set. ### website The question is `What is the website where one can find more information about this charging station?` -*More info on {website}* is shown if `website` is set + +*More info on {website}* is shown if `website` is set. ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -2024,7 +2152,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -2038,7 +2167,8 @@ This tagrendering has labels ### ref The question is `What is the reference number of this charging station?` -*Reference number is {ref}* is shown if `ref` is set + +*Reference number is {ref}* is shown if `ref` is set. This tagrendering is only visible in the popup if the following condition is met: network~.+ @@ -2062,26 +2192,31 @@ The question is `Does one have to pay a parking fee while charging?` ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### questions-technical _This tagrendering has no question and is thus read-only_ + *

Technical questions

The questions below are very technical. Feel free to ignore them
{questions(technical)}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -2171,11 +2306,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -2185,7 +2322,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -2199,7 +2337,8 @@ This tagrendering has labels ### vending The question is `What does this vending machine sell?` -*This vending machine sells {vending}* is shown if `vending` is set + +*This vending machine sells {vending}* is shown if `vending` is set. - *Drinks are sold* is shown if with vending=drinks - *Sweets are sold* is shown if with vending=sweets @@ -2234,7 +2373,8 @@ The question is `What does this vending machine sell?` ### bicycle_tube_vending_machine-brand The question is `Which brand of tubes are sold here?` -*{brand} tubes are sold here* is shown if `brand` is set + +*{brand} tubes are sold here* is shown if `brand` is set. - *Continental tubes are sold here* is shown if with brand=Continental - *Schwalbe tubes are sold here* is shown if with brand=Schwalbe @@ -2244,7 +2384,8 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -2306,7 +2447,8 @@ This tagrendering is only visible in the popup if the following condition is met ### operator The question is `Who operates this vending machine?` -*This vending machine is operated by {operator}* is shown if `operator` is set + +*This vending machine is operated by {operator}* is shown if `operator` is set. ### indoor @@ -2319,7 +2461,8 @@ The question is `Is this vending machine indoors?` ### phone The question is `What is the phone number of the operator of this vending machine?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -2329,7 +2472,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -2339,21 +2483,24 @@ This tagrendering has labels ### charge_bicycle_tube The question is `How much does a a bicycle tube cost?` -*a bicycle tube costs {charge}* is shown if `charge` is set + +*a bicycle tube costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$ ### charge_bicycle_light The question is `How much does a bicycle light cost?` -*bicycle light costs {charge}* is shown if `charge` is set + +*bicycle light costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$ ### charge_condom The question is `How much does a a condom cost?` -*a condom costs {charge}* is shown if `charge` is set + +*a condom costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$ @@ -2369,6 +2516,7 @@ The question is `Is this vending machine still operational?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -2378,16 +2526,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/etymology.md b/Docs/Themes/etymology.md index 061899cd0e..f001f81fd5 100644 --- a/Docs/Themes/etymology.md +++ b/Docs/Themes/etymology.md @@ -228,16 +228,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -245,38 +248,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -284,6 +294,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -335,16 +346,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -352,38 +366,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -391,6 +412,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -442,16 +464,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -459,38 +484,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -498,6 +530,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -549,16 +582,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -566,38 +602,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -605,6 +648,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -656,16 +700,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -673,38 +720,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -712,6 +766,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -763,16 +818,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -780,38 +838,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -819,6 +884,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -870,16 +936,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -887,38 +956,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -926,6 +1002,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -977,16 +1054,19 @@ Elements must match **all** of the following expressions: ### etymology-images-from-wikipedia _This tagrendering has no question and is thus read-only_ + *{image_carousel(name:etymology:wikidata)}* ### wikipedia-etymology The question is `What is the Wikidata-item that this object is named after?` -*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set + +*

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}* is shown if `name:etymology:wikidata` is set. ### zoeken op inventaris onroerend erfgoed _This tagrendering has no question and is thus read-only_ + *Search on inventaris onroerend erfgoed* This tagrendering is only visible in the popup if the following condition is met: _country=be @@ -994,38 +1074,45 @@ This tagrendering is only visible in the popup if the following condition is met ### simple etymology The question is `What is this object named after?` -*Named after {name:etymology}* is shown if `name:etymology` is set + +*Named after {name:etymology}* is shown if `name:etymology` is set. - *The origin of this name is unknown in all literature* is shown if with name:etymology=unknown ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### streetsign-image-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:streetsign;panoramax:streetsign)}* ### streetsign-upload _This tagrendering has no question and is thus read-only_ + *{image_upload(image:streetsign,Add image of a street name sign,)}* ### minimap _This tagrendering has no question and is thus read-only_ + *{minimap(18, id, _same_name_ids):height:10rem}* ### etymology_multi_apply _This tagrendering has no question and is thus read-only_ + *{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}* ### wikipedia _This tagrendering has no question and is thus read-only_ + *A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}* This tagrendering is only visible in the popup if the following condition is met: wikidata~.+ @@ -1033,6 +1120,7 @@ This tagrendering is only visible in the popup if the following condition is met ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/facadegardens.md b/Docs/Themes/facadegardens.md index 1068e900f6..509331e766 100644 --- a/Docs/Themes/facadegardens.md +++ b/Docs/Themes/facadegardens.md @@ -111,12 +111,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### facadegardens-direction The question is `What is the orientation of the garden?` -*Orientation: {direction} (where 0=N and 90=O)* is shown if `direction` is set + +*Orientation: {direction} (where 0=N and 90=O)* is shown if `direction` is set. ### facadegardens-sunshine @@ -136,7 +138,8 @@ The question is `Is there a water barrel installed for the garden?` ### facadegardens-start_date The question is `When was the garden constructed? (a year is sufficient)` -*Construction date of the garden: {start_date}* is shown if `start_date` is set + +*Construction date of the garden: {start_date}* is shown if `start_date` is set. ### facadegardens-edible @@ -157,11 +160,13 @@ The question is `What kinds of plants grow here?` ### facadegardens-description The question is `Extra describing info about the garden (if needed and not yet described above)` -*More details: {description}* is shown if `description` is set + +*More details: {description}* is shown if `description` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -171,16 +176,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/fritures.md b/Docs/Themes/fritures.md index 666efbe7c3..edbd0bc693 100644 --- a/Docs/Themes/fritures.md +++ b/Docs/Themes/fritures.md @@ -56,7 +56,7 @@ Available languages: + [show-menu-image](#show-menu-image) + [add-menu-image](#add-menu-image) + [menu-website](#menu-website) - + [Reservation](#reservation) + + [reservation](#reservation) + [Takeaway](#takeaway) + [delivery](#delivery) + [drive-through](#drive-through) @@ -231,7 +231,7 @@ Elements must match **all** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -300,17 +300,20 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -322,14 +325,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -339,7 +344,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -350,7 +356,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -368,6 +375,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -377,7 +385,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -400,7 +409,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -425,19 +435,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -473,7 +486,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -666,7 +680,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -677,6 +692,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -685,6 +701,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -709,6 +726,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -723,7 +741,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -743,7 +762,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -778,7 +798,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -848,7 +869,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -938,7 +960,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -974,7 +997,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1047,6 +1071,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1062,6 +1087,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1079,6 +1105,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1096,6 +1123,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1137,6 +1165,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1153,6 +1182,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1188,7 +1218,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1207,7 +1240,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1224,7 +1260,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1283,6 +1322,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1299,6 +1339,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1309,6 +1350,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1318,16 +1360,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/ghostsigns.md b/Docs/Themes/ghostsigns.md index 37b68125c3..376fdd0234 100644 --- a/Docs/Themes/ghostsigns.md +++ b/Docs/Themes/ghostsigns.md @@ -144,12 +144,14 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### type The question is `Which type of advertising feature is this?` -*This is a {advertising}* is shown if `advertising` is set + +*This is a {advertising}* is shown if `advertising` is set. - *This is a billboard* is shown if with advertising=billboard - *This is a board* is shown if with advertising=board @@ -188,7 +190,8 @@ The question is `Is this object lit or does it emit light?` ### operator The question is `Who operates this feature?` -*Operated by {operator}* is shown if `operator` is set + +*Operated by {operator}* is shown if `operator` is set. ### message_type @@ -217,7 +220,8 @@ This tagrendering is only visible in the popup if the following condition is met ### ref The question is `Wich is the reference number?` -*Reference number is {ref}* is shown if `ref` is set + +*Reference number is {ref}* is shown if `ref` is set. ### historic @@ -229,6 +233,7 @@ The question is `Is this sign for a business that no longer exists or no longer ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -238,16 +243,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -356,12 +364,14 @@ The question is `Is this artwork a historic advertisement?` ### images_no_blur Same as `images`, but uploaded request to disable blurring to the panoramax server _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload(,,,true)}* ### artwork-artwork_type The question is `What is the type of this artwork?` -*This is a {artwork_type}* is shown if `artwork_type` is set + +*This is a {artwork_type}* is shown if `artwork_type` is set. - *Architecture* is shown if with artwork_type=architecture - *Mural* is shown if with artwork_type=mural @@ -384,7 +394,8 @@ This tagrendering has labels ### artwork-artist-wikidata The question is `Who made this artwork?` -*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set + +*This artwork was made by {wikidata_label(artist:wikidata):font-weight:bold}
{wikipedia(artist:wikidata)}* is shown if `artist:wikidata` is set. This tagrendering has labels `artwork-question` @@ -392,7 +403,8 @@ This tagrendering has labels ### artwork-artist_name The question is `Which artist created this?` -*Created by {artist_name}* is shown if `artist_name` is set + +*Created by {artist_name}* is shown if `artist_name` is set. This tagrendering has labels `artwork-question` @@ -400,7 +412,8 @@ This tagrendering has labels ### artwork-website The question is `Is there a website with more information about this artwork?` -*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set + +*{link(More information on this website,&LBRACEwebsite&RBRACE,,,,)}* is shown if `website` is set. This tagrendering has labels `artwork-question` @@ -408,7 +421,8 @@ This tagrendering has labels ### wikipedia Shows a wikipedia box with the corresponding wikipedia article; the wikidata-item link can be changed by a contributor The question is `What is the corresponding Wikidata entity?` -*{wikipedia():max-height:25rem}* is shown if `wikidata` is set + +*{wikipedia():max-height:25rem}* is shown if `wikidata` is set. - *{wikipedia():max-height:25rem}* is shown if with wikipedia~.+. _This option cannot be chosen as answer_ - *No Wikipedia page has been linked yet* is shown if with wikidata=. _This option cannot be chosen as answer_ @@ -416,7 +430,8 @@ The question is `What is the corresponding Wikidata entity?` ### artwork_subject The question is `What does this artwork depict?` -*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*This artwork depicts {wikidata_label(subject:wikidata)}{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering has labels `artwork-question` @@ -431,7 +446,8 @@ The question is `Does this artwork serve as a memorial?` ### memorial-type The question is `What type of memorial is this?` -*This is a {memorial}* is shown if `memorial` is set + +*This is a {memorial}* is shown if `memorial` is set. - *This is a statue* is shown if with memorial=statue - *This is a plaque* is shown if with memorial=plaque @@ -456,7 +472,8 @@ This tagrendering has labels ### inscription The question is `What is the inscription on this memorial?` -*The inscription on this memorial reads:

{inscription}

* is shown if `inscription` is set + +*The inscription on this memorial reads:

{inscription}

* is shown if `inscription` is set. - *This memorial does not have an inscription* is shown if with not:inscription=yes @@ -467,7 +484,8 @@ This tagrendering has labels ### memorial-wikidata The question is `What is the Wikipedia page about this memorial?` -*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set + +*

Wikipedia page about the memorial

{wikipedia(wikidata)}* is shown if `wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: historic=memorial This tagrendering has labels @@ -477,7 +495,8 @@ This tagrendering has labels ### subject-wikidata The question is `What is the Wikipedia page about the person or event that is remembered here?` -*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set + +*

Wikipedia page about the remembered event or person

{wikipedia(subject:wikidata)}* is shown if `subject:wikidata` is set. This tagrendering is only visible in the popup if the following condition is met: historic=memorial This tagrendering has labels @@ -518,7 +537,8 @@ This tagrendering has labels ### bench-seats The question is `How many seats does this bench have?` -*This bench has {seats} seats* is shown if `seats` is set + +*This bench has {seats} seats* is shown if `seats` is set. - *This bench does not have separated seats* is shown if with seats:separated=no @@ -529,7 +549,8 @@ This tagrendering has labels ### bench-material The question is `What is the bench (seating) made from?` -*Material: {material}* is shown if `material` is set + +*Material: {material}* is shown if `material` is set. - *The seating is made from wood* is shown if with material=wood - *The seating is made from metal* is shown if with material=metal @@ -545,7 +566,8 @@ This tagrendering has labels ### bench-direction The question is `In which direction are you looking when sitting on the bench?` -*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set + +*When sitting on the bench, one looks towards {direction}°.* is shown if `direction` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=bench & two_sided!=yes This tagrendering has labels @@ -554,7 +576,8 @@ This tagrendering has labels ### bench-colour The question is `Which colour does this bench have?` -*Colour: {colour}* is shown if `colour` is set + +*Colour: {colour}* is shown if `colour` is set. - *Colour: brown* is shown if with colour=brown - *Colour: green* is shown if with colour=green @@ -572,7 +595,8 @@ This tagrendering has labels ### bench-survey:date The question is `When was this bench last surveyed?` -*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This bench was last surveyed on {survey:date}* is shown if `survey:date` is set. - *Surveyed today!* is shown if with survey:date= @@ -583,7 +607,8 @@ This tagrendering has labels ### bench-inscription The question is `Does this bench have an inscription?` -*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set + +*This bench has the following inscription:

{inscription}

* is shown if `inscription` is set. - *This bench does not have an inscription* is shown if with not:inscription=yes - *This bench probably does not not have an inscription* is shown if with inscription=. _This option cannot be chosen as answer_ @@ -613,7 +638,8 @@ The question is `Does this artwork also double as wayside shrine?` ### shrine_name The question is `What's the name of this {title()}?` -*The name of this {title()} is {name}* is shown if `name` is set + +*The name of this {title()} is {name}* is shown if `name` is set. - *This shrine does not have a name* is shown if with noname=yes @@ -624,7 +650,8 @@ This tagrendering has labels ### religion The question is `To which religion is this shrine dedicated?` -*This shrine is {religion}* is shown if `religion` is set + +*This shrine is {religion}* is shown if `religion` is set. - *This is a Christian shrine* is shown if with religion=christian - *This is a Buddhist shrine* is shown if with religion=buddhist @@ -645,7 +672,8 @@ This tagrendering has labels ### denomination_christian The question is `What's the Christian denomination of this {title()}?` -*The religious denomination is {denomination}* is shown if `denomination` is set + +*The religious denomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Catholic* is shown if with denomination=catholic - *The religious subdenomination is Roman Catholic* is shown if with denomination=roman_catholic @@ -665,7 +693,8 @@ This tagrendering has labels ### denomination_muslim The question is `What's the Muslim denomination of this shrine?` -*The religious subdenomination is {denomination}* is shown if `denomination` is set + +*The religious subdenomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Shia* is shown if with denomination=shia - *The religious subdenomination is Sunni* is shown if with denomination=sunni @@ -678,7 +707,8 @@ This tagrendering has labels ### denomination_jewish The question is `What's the Jewish denomination of this shrine?` -*The religious subdenomination is {denomination}* is shown if `denomination` is set + +*The religious subdenomination is {denomination}* is shown if `denomination` is set. - *The religious subdenomination is Conservative* is shown if with denomination=conservative - *The religious subdenomination is Orthodox* is shown if with denomination=orthodox @@ -692,7 +722,8 @@ This tagrendering has labels ### denomination_other The question is `What's the denomination of this shrine?` -*The denomination of this shrine is {denomination}* is shown if `denomination` is set + +*The denomination of this shrine is {denomination}* is shown if `denomination` is set. This tagrendering is only visible in the popup if the following condition is met: historic=wayside_shrine & religion!=christian & religion!=muslim & religion!=jewish & religion~.+ This tagrendering has labels @@ -701,6 +732,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -710,16 +742,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/glutenfree.md b/Docs/Themes/glutenfree.md index a8880e022a..37ecfe1a62 100644 --- a/Docs/Themes/glutenfree.md +++ b/Docs/Themes/glutenfree.md @@ -60,7 +60,7 @@ Available languages: + [show-menu-image](#show-menu-image) + [add-menu-image](#add-menu-image) + [menu-website](#menu-website) - + [Reservation](#reservation) + + [reservation](#reservation) + [Takeaway](#takeaway) + [delivery](#delivery) + [drive-through](#drive-through) @@ -173,6 +173,8 @@ Available languages: + [copyshop-binding](#copyshop-binding) + [optometrist_service](#optometrist_service) + [key_cutter](#key_cutter) + + [hairdresser-targetgroup](#hairdresser-targetgroup) + + [reservation](#reservation) + [sells_new_bikes](#sells_new_bikes) + [bike_second_hand](#bike_second_hand) + [repairs_bikes](#repairs_bikes) @@ -195,7 +197,7 @@ Available languages: + [organic](#organic) + [sugar_free](#sugar_free) + [lactose_free](#lactose_free) - + [dog-access](#dog-access) + + [shop-dog-access](#shop-dog-access) + [description](#description) + [toilets-group](#toilets-group) + [grouptitle](#grouptitle) @@ -349,7 +351,7 @@ Elements must match **all** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -417,11 +419,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### gluten_free @@ -439,7 +443,8 @@ This tagrendering has labels ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -451,14 +456,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -468,7 +475,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -479,7 +487,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -497,6 +506,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -506,7 +516,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -529,7 +540,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -554,19 +566,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -602,7 +617,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -783,7 +799,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -794,6 +811,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -802,6 +820,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -826,6 +845,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -840,7 +860,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -860,7 +881,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -895,7 +917,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -965,7 +988,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1055,7 +1079,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1091,7 +1116,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1164,6 +1190,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1179,6 +1206,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1196,6 +1224,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1213,6 +1242,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1254,6 +1284,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1270,6 +1301,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1305,7 +1337,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1324,7 +1359,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1341,7 +1379,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1400,6 +1441,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1416,6 +1458,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1426,6 +1469,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1435,16 +1479,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -1604,11 +1651,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### gluten_free @@ -1626,19 +1675,22 @@ This tagrendering has labels ### 1 The question is `What is the name of this ice cream parlor?` -*This ice cream parlor is named {name}* is shown if `name` is set + +*This ice cream parlor is named {name}* is shown if `name` is set. ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -1648,7 +1700,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -1659,7 +1712,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -1722,6 +1776,7 @@ The question is `Is this place accessible with a wheelchair?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -1731,11 +1786,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -1806,6 +1863,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -1879,6 +1937,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -1901,7 +1961,7 @@ Elements must match **all** of the following expressions: | [organic](#organic) | Does this shop offer organic products?
3 options | | _Multiple choice only_ | | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -1948,11 +2008,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### gluten_free @@ -1970,12 +2032,14 @@ This tagrendering has labels ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -2149,7 +2213,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -2166,14 +2231,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -2183,7 +2250,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -2194,7 +2262,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -2212,6 +2281,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -2221,7 +2291,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -2272,6 +2343,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -2314,7 +2406,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -2333,7 +2426,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -2342,7 +2436,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -2351,7 +2446,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -2360,7 +2456,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -2369,7 +2466,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -2378,7 +2476,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -2387,7 +2486,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -2426,7 +2526,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -2462,7 +2563,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -2506,7 +2608,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -2519,11 +2621,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -2532,6 +2636,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -2556,6 +2661,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -2570,7 +2676,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -2590,7 +2697,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -2625,7 +2733,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -2695,7 +2804,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -2785,7 +2895,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -2821,7 +2932,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -2894,6 +3006,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -2909,6 +3022,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -2926,6 +3040,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -2943,6 +3058,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -2984,6 +3100,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -3000,6 +3117,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -3035,7 +3153,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -3054,7 +3175,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -3071,7 +3195,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -3130,6 +3257,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -3146,6 +3274,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -3156,6 +3285,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -3165,16 +3295,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/grb.md b/Docs/Themes/grb.md index 586c20f362..d1e6d2b0b4 100644 --- a/Docs/Themes/grb.md +++ b/Docs/Themes/grb.md @@ -120,7 +120,8 @@ Elements must match **all** of the following expressions: ### building type The question is `What kind of building is this?` -*The building type is {building}* is shown if `building` is set + +*The building type is {building}* is shown if `building` is set. - *A normal house* is shown if with building=house - *A house detached from other building* is shown if with building=detached @@ -135,25 +136,29 @@ The question is `What kind of building is this?` ### grb-housenumber The question is `Wat is het huisnummer?` -*Het huisnummer is {addr:housenumber}* is shown if `addr:housenumber` is set + +*Het huisnummer is {addr:housenumber}* is shown if `addr:housenumber` is set. - *Geen huisnummer* is shown if with not:addr:housenumber=yes & addr:housenumber= ### grb-unit The question is `Wat is de wooneenheid-aanduiding?` -*De wooneenheid-aanduiding is {addr:unit} * is shown if `addr:unit` is set + +*De wooneenheid-aanduiding is {addr:unit} * is shown if `addr:unit` is set. - *Geen wooneenheid-nummer* is shown if with addr:unit= ### grb-street The question is `Wat is de straat?` -*De straat is {addr:street}* is shown if `addr:street` is set + +*De straat is {addr:street}* is shown if `addr:street` is set. ### grb-reference _This tagrendering has no question and is thus read-only_ + *Has been imported from GRB, reference number is {source:geometry:ref}* This tagrendering is only visible in the popup if the following condition is met: source:geometry:ref~.+ @@ -161,23 +166,27 @@ This tagrendering is only visible in the popup if the following condition is met ### grb-fixme The question is `Wat zegt de fixme?` -*De fixme is {fixme}* is shown if `fixme` is set + +*De fixme is {fixme}* is shown if `fixme` is set. - *Geen fixme* is shown if with fixme= ### grb-min-level The question is `Hoeveel verdiepingen ontbreken?` -*Dit gebouw begint maar op de {building:min_level} verdieping* is shown if `building:min_level` is set + +*Dit gebouw begint maar op de {building:min_level} verdieping* is shown if `building:min_level` is set. ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -187,6 +196,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -245,6 +255,7 @@ Elements must match **all** of the following expressions: ### Import-button _This tagrendering has no question and is thus read-only_ + *{import_way_button(osm_buildings_no_points,building=$building;man_made=$man_made; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref; addr:street=$addr:street; addr:housenumber=$addr:housenumber; building:min_level=$_building:min_level, Upload this building to OpenStreetMap,,_is_part_of_building=true,1,_moveable=true)}* - *Did not yet calculate the metatags... Reopen this popup* is shown if with _grb_ref= @@ -255,11 +266,13 @@ _This tagrendering has no question and is thus read-only_ ### Building info _This tagrendering has no question and is thus read-only_ + *This is a {building} detected by {detection_method}* ### overlapping building address _This tagrendering has no question and is thus read-only_ + *The overlapping openstreetmap-building has no address information at all* - *The overlapping openstreetmap-building has address {_osm_obj:addr:street} {_osm_obj:addr:housenumber}* is shown if with _osm_obj:addr:street~.+ & _osm_obj:addr:housenumber~.+ @@ -270,6 +283,7 @@ _This tagrendering has no question and is thus read-only_ ### grb_address_diff _This tagrendering has no question and is thus read-only_ + *
The overlapping openstreetmap-building has a different address then this GRB-object: {addr:street} {addr:housenumber}
{tag_apply(addr:street=$addr:street; addr:housenumber=$addr:housenumber,Copy the GRB-address onto the OSM-object,,_osm_obj:id)}* This tagrendering is only visible in the popup if the following condition is met: (addr:street!= | addr:housenumber!=) & _osm_obj:id~.+ & addr:street~.+ & addr:housenumber~.+ @@ -277,6 +291,7 @@ This tagrendering is only visible in the popup if the following condition is met ### overlapping building id _This tagrendering has no question and is thus read-only_ + *The overlapping openstreetmap-building has id {_osm_obj:id}* This tagrendering is only visible in the popup if the following condition is met: _osm_obj:id~.+ @@ -284,6 +299,7 @@ This tagrendering is only visible in the popup if the following condition is met ### overlapping building type _This tagrendering has no question and is thus read-only_ + *The overlapping building is a {_osm_obj:building} and covers {_overlap_percentage}% of the GRB building.
The GRB-building covers {_reverse_overlap_percentage}% of the OSM building
The OSM-building is based on GRB-data from {_osm_obj:source:date}.* This tagrendering is only visible in the popup if the following condition is met: _osm_obj:id~.+ @@ -291,6 +307,7 @@ This tagrendering is only visible in the popup if the following condition is met ### overlapping building map _This tagrendering has no question and is thus read-only_ + *

GRB geometry:

{minimap(21, id):height:10rem;border-radius:1rem;overflow:hidden}

OSM geometry:

{minimap(21,_osm_obj:id):height:10rem;border-radius:1rem;overflow:hidden}* This tagrendering is only visible in the popup if the following condition is met: _osm_obj:id~.+ @@ -298,6 +315,7 @@ This tagrendering is only visible in the popup if the following condition is met ### apply-id _This tagrendering has no question and is thus read-only_ + *{tag_apply(source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref,Mark the OSM-building as imported,,_osm_obj:id)}* This tagrendering is only visible in the popup if the following condition is met: _imported!=yes & _overlaps_with~.+ @@ -305,6 +323,7 @@ This tagrendering is only visible in the popup if the following condition is met ### apply-building-type _This tagrendering has no question and is thus read-only_ + *{tag_apply(building=$building,Use the building type from GRB,,_osm_obj:id)}* This tagrendering is only visible in the popup if the following condition is met: _osm_obj:building=yes & _overlaps_with~.+ & building!=yes @@ -312,6 +331,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -321,6 +341,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -352,6 +373,7 @@ Elements must match the expression ** [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -254,6 +257,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -277,7 +282,7 @@ Elements must match **all** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -324,22 +329,26 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -513,7 +522,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -530,14 +540,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -547,7 +559,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -558,7 +571,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -576,6 +590,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -585,7 +600,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -636,6 +652,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -678,7 +715,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -697,7 +735,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -706,7 +745,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -715,7 +755,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -724,7 +765,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -733,7 +775,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -742,7 +785,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -751,7 +795,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -790,7 +835,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -826,7 +872,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -883,7 +930,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -896,11 +943,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -909,6 +958,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -933,6 +983,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -947,7 +998,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -967,7 +1019,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -1002,7 +1055,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1072,7 +1126,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1162,7 +1217,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1198,7 +1254,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1271,6 +1328,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1286,6 +1344,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1303,6 +1362,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1320,6 +1380,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1361,6 +1422,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1377,6 +1439,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1412,7 +1475,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1431,7 +1497,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1448,7 +1517,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1507,6 +1579,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1523,6 +1596,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1533,6 +1607,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1542,16 +1617,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/kerbs_and_crossings.md b/Docs/Themes/kerbs_and_crossings.md index d69588f86a..3d8e3bb68b 100644 --- a/Docs/Themes/kerbs_and_crossings.md +++ b/Docs/Themes/kerbs_and_crossings.md @@ -125,6 +125,7 @@ Elements must match the expression ** *This crossing has no markings* is shown if with crossing:markings=no - *This crossing has zebra markings* is shown if with crossing:markings=zebra @@ -259,6 +261,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -268,11 +271,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/lactosefree.md b/Docs/Themes/lactosefree.md index 1563de2d6e..de45dffa47 100644 --- a/Docs/Themes/lactosefree.md +++ b/Docs/Themes/lactosefree.md @@ -57,7 +57,7 @@ Available languages: + [show-menu-image](#show-menu-image) + [add-menu-image](#add-menu-image) + [menu-website](#menu-website) - + [Reservation](#reservation) + + [reservation](#reservation) + [Takeaway](#takeaway) + [delivery](#delivery) + [drive-through](#drive-through) @@ -170,6 +170,8 @@ Available languages: + [copyshop-binding](#copyshop-binding) + [optometrist_service](#optometrist_service) + [key_cutter](#key_cutter) + + [hairdresser-targetgroup](#hairdresser-targetgroup) + + [reservation](#reservation) + [sells_new_bikes](#sells_new_bikes) + [bike_second_hand](#bike_second_hand) + [repairs_bikes](#repairs_bikes) @@ -192,7 +194,7 @@ Available languages: + [organic](#organic) + [sugar_free](#sugar_free) + [gluten_free](#gluten_free) - + [dog-access](#dog-access) + + [shop-dog-access](#shop-dog-access) + [description](#description) + [toilets-group](#toilets-group) + [grouptitle](#grouptitle) @@ -346,7 +348,7 @@ Elements must match **all** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -414,11 +416,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### lactose_free @@ -436,7 +440,8 @@ This tagrendering has labels ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -448,14 +453,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -465,7 +472,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -476,7 +484,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -494,6 +503,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -503,7 +513,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -526,7 +537,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -551,19 +563,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -599,7 +614,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -780,7 +796,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -791,6 +808,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -799,6 +817,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -823,6 +842,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -837,7 +857,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -857,7 +878,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -892,7 +914,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -962,7 +985,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1052,7 +1076,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1088,7 +1113,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1161,6 +1187,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1176,6 +1203,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1193,6 +1221,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1210,6 +1239,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1251,6 +1281,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1267,6 +1298,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1302,7 +1334,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1321,7 +1356,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1338,7 +1376,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1397,6 +1438,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1413,6 +1455,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1423,6 +1466,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1432,16 +1476,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -1601,11 +1648,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### lactose_free @@ -1623,19 +1672,22 @@ This tagrendering has labels ### 1 The question is `What is the name of this ice cream parlor?` -*This ice cream parlor is named {name}* is shown if `name` is set + +*This ice cream parlor is named {name}* is shown if `name` is set. ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -1645,7 +1697,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -1656,7 +1709,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -1719,6 +1773,7 @@ The question is `Is this place accessible with a wheelchair?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -1728,11 +1783,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -1803,6 +1860,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -1876,6 +1934,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -1898,7 +1958,7 @@ Elements must match **all** of the following expressions: | [organic](#organic) | Does this shop offer organic products?
3 options | | _Multiple choice only_ | | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -1945,11 +2005,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### lactose_free @@ -1967,12 +2029,14 @@ This tagrendering has labels ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -2146,7 +2210,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -2163,14 +2228,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -2180,7 +2247,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -2191,7 +2259,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -2209,6 +2278,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -2218,7 +2288,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -2269,6 +2340,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -2311,7 +2403,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -2330,7 +2423,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -2339,7 +2433,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -2348,7 +2443,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -2357,7 +2453,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -2366,7 +2463,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -2375,7 +2473,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -2384,7 +2483,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -2423,7 +2523,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -2459,7 +2560,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -2503,7 +2605,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -2516,11 +2618,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -2529,6 +2633,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -2553,6 +2658,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -2567,7 +2673,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -2587,7 +2694,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -2622,7 +2730,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -2692,7 +2801,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -2782,7 +2892,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -2818,7 +2929,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -2891,6 +3003,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -2906,6 +3019,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -2923,6 +3037,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -2940,6 +3055,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -2981,6 +3097,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -2997,6 +3114,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -3032,7 +3150,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -3051,7 +3172,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -3068,7 +3192,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -3127,6 +3254,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -3143,6 +3271,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -3153,6 +3282,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -3162,16 +3292,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/mapcomplete-changes.md b/Docs/Themes/mapcomplete-changes.md index 1330f61084..047386cb85 100644 --- a/Docs/Themes/mapcomplete-changes.md +++ b/Docs/Themes/mapcomplete-changes.md @@ -92,27 +92,32 @@ Elements must match the expression **editor~.+** ### show_changeset_id _This tagrendering has no question and is thus read-only_ + *Changeset {id}* ### contributor The question is `What contributor did make this change?` -*Change made by {user}* is shown if `user` is set + +*Change made by {user}* is shown if `user` is set. ### theme-id The question is `What theme was used to make this change?` -*Change with theme {theme}* is shown if `theme` is set + +*Change with theme {theme}* is shown if `theme` is set. ### locale The question is `What locale (language) was this change made in?` -*User locale is {locale}* is shown if `locale` is set + +*User locale is {locale}* is shown if `locale` is set. ### host The question is `What host (website) was this change made with?` -*Change with with {host}* is shown if `host` is set + +*Change with with {host}* is shown if `host` is set. - *waldbrand-app.de* is shown if with host=www.waldbrand-app.de. _This option cannot be chosen as answer_ - *Develop* is shown if with host~^(https:\/\/pietervdvn.github.io\/mc\/develop\/.*)$. _This option cannot be chosen as answer_ @@ -127,11 +132,13 @@ The question is `With what platform was the change made?` ### version The question is `What version of MapComplete was used to make this change?` -*Made with {editor}* is shown if `editor` is set + +*Made with {editor}* is shown if `editor` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -141,6 +148,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/onwheels.md b/Docs/Themes/onwheels.md index a2271e5f8a..8f109672da 100644 --- a/Docs/Themes/onwheels.md +++ b/Docs/Themes/onwheels.md @@ -108,11 +108,13 @@ Elements must match **all** of the following expressions: ### _stolen_entrances _This tagrendering has no question and is thus read-only_ + *{steal(_enclosing_building,walls_and_buildings.entrance_info; walls_and_buildings.biggest_width)}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -122,6 +124,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -157,16 +160,19 @@ Elements must match the expression ** [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -294,6 +297,8 @@ Elements must match the expression ** _(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -366,22 +371,26 @@ Elements must match the expression **
*Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -555,7 +564,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -572,14 +582,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -589,7 +601,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -600,7 +613,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -618,6 +632,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -627,7 +642,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -678,6 +694,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -720,7 +757,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -739,7 +777,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -748,7 +787,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -757,7 +797,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -766,7 +807,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -775,7 +817,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -784,7 +827,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -793,7 +837,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -832,7 +877,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -868,7 +914,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -925,7 +972,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -938,11 +985,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -951,6 +1000,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -975,6 +1025,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -989,7 +1040,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -1009,7 +1061,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -1044,7 +1097,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1114,7 +1168,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1204,7 +1259,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1240,7 +1296,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1313,6 +1370,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1328,6 +1386,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1345,6 +1404,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1362,6 +1422,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1403,6 +1464,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1419,6 +1481,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1454,7 +1517,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1473,7 +1539,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1490,7 +1559,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1549,6 +1621,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1565,6 +1638,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1592,6 +1666,7 @@ The question is `Does {title()} have a private video booth?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1601,16 +1676,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -1907,11 +1985,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -1921,7 +2001,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -1935,7 +2016,8 @@ This tagrendering has labels ### vending The question is `What does this vending machine sell?` -*This vending machine sells {vending}* is shown if `vending` is set + +*This vending machine sells {vending}* is shown if `vending` is set. - *Drinks are sold* is shown if with vending=drinks - *Sweets are sold* is shown if with vending=sweets @@ -1970,7 +2052,8 @@ The question is `What does this vending machine sell?` ### bicycle_tube_vending_machine-brand The question is `Which brand of tubes are sold here?` -*{brand} tubes are sold here* is shown if `brand` is set + +*{brand} tubes are sold here* is shown if `brand` is set. - *Continental tubes are sold here* is shown if with brand=Continental - *Schwalbe tubes are sold here* is shown if with brand=Schwalbe @@ -1980,7 +2063,8 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -2042,7 +2126,8 @@ This tagrendering is only visible in the popup if the following condition is met ### operator The question is `Who operates this vending machine?` -*This vending machine is operated by {operator}* is shown if `operator` is set + +*This vending machine is operated by {operator}* is shown if `operator` is set. ### indoor @@ -2055,7 +2140,8 @@ The question is `Is this vending machine indoors?` ### phone The question is `What is the phone number of the operator of this vending machine?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -2065,7 +2151,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -2075,21 +2162,24 @@ This tagrendering has labels ### charge_bicycle_tube The question is `How much does a a bicycle tube cost?` -*a bicycle tube costs {charge}* is shown if `charge` is set + +*a bicycle tube costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$ ### charge_bicycle_light The question is `How much does a bicycle light cost?` -*bicycle light costs {charge}* is shown if `charge` is set + +*bicycle light costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$ ### charge_condom The question is `How much does a a condom cost?` -*a condom costs {charge}* is shown if `charge` is set + +*a condom costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$ @@ -2112,6 +2202,7 @@ The question is `Does {title()} have a private video booth?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -2121,16 +2212,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -2207,17 +2301,20 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -2227,7 +2324,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -2238,7 +2336,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -2255,7 +2354,8 @@ The question is `What type of cinema is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -2269,6 +2369,7 @@ The question is `Does {title()} have a private video booth?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -2278,11 +2379,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/pets.md b/Docs/Themes/pets.md index 5ae802b25d..76ae89865c 100644 --- a/Docs/Themes/pets.md +++ b/Docs/Themes/pets.md @@ -66,7 +66,7 @@ Available languages: + [show-menu-image](#show-menu-image) + [add-menu-image](#add-menu-image) + [menu-website](#menu-website) - + [Reservation](#reservation) + + [reservation](#reservation) + [Takeaway](#takeaway) + [delivery](#delivery) + [drive-through](#drive-through) @@ -157,6 +157,8 @@ Available languages: + [copyshop-binding](#copyshop-binding) + [optometrist_service](#optometrist_service) + [key_cutter](#key_cutter) + + [hairdresser-targetgroup](#hairdresser-targetgroup) + + [reservation](#reservation) + [sells_new_bikes](#sells_new_bikes) + [bike_second_hand](#bike_second_hand) + [repairs_bikes](#repairs_bikes) @@ -180,7 +182,7 @@ Available languages: + [sugar_free](#sugar_free) + [gluten_free](#gluten_free) + [lactose_free](#lactose_free) - + [dog-access](#dog-access) + + [shop-dog-access](#shop-dog-access) + [description](#description) + [toilets-group](#toilets-group) + [grouptitle](#grouptitle) @@ -247,6 +249,8 @@ Available languages: + [copyshop-binding](#copyshop-binding) + [optometrist_service](#optometrist_service) + [key_cutter](#key_cutter) + + [hairdresser-targetgroup](#hairdresser-targetgroup) + + [reservation](#reservation) + [sells_new_bikes](#sells_new_bikes) + [bike_second_hand](#bike_second_hand) + [repairs_bikes](#repairs_bikes) @@ -270,7 +274,7 @@ Available languages: + [sugar_free](#sugar_free) + [gluten_free](#gluten_free) + [lactose_free](#lactose_free) - + [dog-access](#dog-access) + + [shop-dog-access](#shop-dog-access) + [description](#description) + [toilets-group](#toilets-group) + [grouptitle](#grouptitle) @@ -433,7 +437,7 @@ Elements must match **all** of the following expressions: | [show-menu-image](#show-menu-image) | _{image_carousel(image:menu)}_ | | _Multiple choice only_ | | [add-menu-image](#add-menu-image) | _{image_upload(image:menu,Add an image from the menu,)}_ | | _Multiple choice only_ | | [menu-website](#menu-website) | On what webpage is the menu published?
_{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}_ | | *[website:menu](https://wiki.osm.org/wiki/Key:website:menu)* ([url](../SpecialInputElements.md#url)) | -| [Reservation](#Reservation) | Is a reservation required for this place?
4 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [Takeaway](#Takeaway) | Does this place offer take-away?
3 options | | _Multiple choice only_ | | [delivery](#delivery) | Does deliver food to your home?
2 options | | _Multiple choice only_ | | [drive-through](#drive-through) | Does this fast-food restaurant have a drive-through?
2 options | | _Multiple choice only_ | @@ -502,17 +506,20 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### Name The question is `What is the name of this business?` -*The name of this business is {name}* is shown if `name` is set + +*The name of this business is {name}* is shown if `name` is set. ### Fastfood vs restaurant @@ -524,14 +531,16 @@ The question is `What type of business is this?` ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -541,7 +550,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -552,7 +562,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -570,6 +581,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -579,7 +591,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -602,7 +615,8 @@ The question is `Is this place accessible with a wheelchair?` ### Cuisine The question is `What kind of food is served here?` -*This place mostly serves {cuisine}* is shown if `cuisine` is set + +*This place mostly serves {cuisine}* is shown if `cuisine` is set. - *Pizzeria* is shown if with cuisine=pizza - *Friture* is shown if with cuisine=friture @@ -627,19 +641,22 @@ The question is `What kind of food is served here?` ### show-menu-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:menu)}* ### add-menu-image _This tagrendering has no question and is thus read-only_ + *{image_upload(image:menu,Add an image from the menu,)}* ### menu-website The question is `On what webpage is the menu published?` -*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set -### Reservation +*{link(Consult the menu,&LBRACEwebsite:menu&RBRACE,,,,)}* is shown if `website:menu` is set. + +### reservation The question is `Is a reservation required for this place?` @@ -675,7 +692,8 @@ This tagrendering is only visible in the popup if the following condition is met ### drive-through-opening_hours The question is `What are the opening hours of the drive-through?` -*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set + +*

Drive-through opening hours

{opening_hours_table(opening_hours:drive_through)}* is shown if `opening_hours:drive_through` is set. - *The opening hours of the drive-through are the same as the restaurant* is shown if with opening_hours:drive_through= @@ -868,7 +886,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -879,6 +898,7 @@ This tagrendering has labels ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -887,6 +907,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -911,6 +932,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -925,7 +947,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -945,7 +968,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -980,7 +1004,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1050,7 +1075,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1140,7 +1166,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1176,7 +1203,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1249,6 +1277,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1264,6 +1293,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1281,6 +1311,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1298,6 +1329,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1339,6 +1371,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1355,6 +1388,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1390,7 +1424,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1409,7 +1446,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1426,7 +1466,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1485,6 +1528,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1501,6 +1545,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1511,6 +1556,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1520,16 +1566,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -1667,6 +1716,7 @@ Elements must match the expression ** [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -1740,6 +1790,8 @@ Elements must match the expression ** _(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -1810,22 +1862,26 @@ Elements must match the expression **
*Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -1999,7 +2055,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -2016,14 +2073,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -2033,7 +2092,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -2044,7 +2104,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -2062,6 +2123,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -2071,7 +2133,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -2122,6 +2185,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -2164,7 +2248,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -2183,7 +2268,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -2192,7 +2278,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -2201,7 +2288,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -2210,7 +2298,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -2219,7 +2308,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -2228,7 +2318,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -2237,7 +2328,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -2276,7 +2368,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -2312,7 +2405,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -2369,7 +2463,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -2382,11 +2476,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -2395,6 +2491,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -2419,6 +2516,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -2433,7 +2531,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -2453,7 +2552,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -2488,7 +2588,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -2558,7 +2659,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -2648,7 +2750,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -2684,7 +2787,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -2757,6 +2861,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -2772,6 +2877,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -2789,6 +2895,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -2806,6 +2913,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -2847,6 +2955,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -2863,6 +2972,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -2898,7 +3008,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -2917,7 +3030,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -2934,7 +3050,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -2993,6 +3112,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -3009,6 +3129,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -3019,6 +3140,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -3028,16 +3150,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -3285,6 +3410,7 @@ Elements must match **all** of the following expressions: | [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -3358,6 +3484,8 @@ Elements must match **all** of the following expressions: | [copyshop-binding](#copyshop-binding) | Does this shop offer a binding service?
2 options | | _Multiple choice only_ | | [optometrist_service](#optometrist_service) | Are medical services available here?
2 options | | _Multiple choice only_ | | [key_cutter](#key_cutter) | Does this shop offer key cutting?
3 options | | _Multiple choice only_ | +| [hairdresser-targetgroup](#hairdresser-targetgroup) | In what target groups does this hairdresser specialize?
3 options | | _Multiple choice only_ | +| [reservation](#reservation)
_(Original in [questions](./BuiltinQuestions.md#reservation))_ | Is a reservation required for this place?
4 options | | _Multiple choice only_ | | [sells_new_bikes](#sells_new_bikes) | Does this shop sell bikes?
2 options | | _Multiple choice only_ | | [bike_second_hand](#bike_second_hand) | Does this shop sell second-hand bikes?
3 options | | _Multiple choice only_ | | [repairs_bikes](#repairs_bikes) | Does this shop repair bikes?
4 options | | _Multiple choice only_ | @@ -3381,7 +3509,7 @@ Elements must match **all** of the following expressions: | [sugar_free](#sugar_free)
_(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -3428,22 +3556,26 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### shops-name The question is `What is the name of this shop?` -*This shop is called {name}* is shown if `name` is set + +*This shop is called {name}* is shown if `name` is set. ### shop_types The question is `What kind of shop is this?` -*This is a {shop}* is shown if `shop` is set + +*This is a {shop}* is shown if `shop` is set. - *Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -3617,7 +3749,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -3634,14 +3767,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -3651,7 +3786,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -3662,7 +3798,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -3680,6 +3817,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -3689,7 +3827,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -3740,6 +3879,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -3782,7 +3942,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -3801,7 +3962,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -3810,7 +3972,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -3819,7 +3982,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -3828,7 +3992,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -3837,7 +4002,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -3846,7 +4012,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -3855,7 +4022,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -3894,7 +4062,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -3930,7 +4099,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -3987,7 +4157,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -4000,11 +4170,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -4013,6 +4185,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -4037,6 +4210,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -4051,7 +4225,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -4071,7 +4246,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -4106,7 +4282,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -4176,7 +4353,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -4266,7 +4444,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -4302,7 +4481,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -4375,6 +4555,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -4390,6 +4571,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -4407,6 +4589,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -4424,6 +4607,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -4465,6 +4649,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -4481,6 +4666,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -4516,7 +4702,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -4535,7 +4724,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -4552,7 +4744,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -4611,6 +4806,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -4627,6 +4823,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -4637,6 +4834,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -4646,16 +4844,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -4917,6 +5118,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### waste-basket-waste-types @@ -4944,6 +5146,7 @@ The question is `Does this waste basket have a dispenser for dog excrement bags? ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -4953,16 +5156,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/postal_codes.md b/Docs/Themes/postal_codes.md index ebccf73498..0f0c024fe1 100644 --- a/Docs/Themes/postal_codes.md +++ b/Docs/Themes/postal_codes.md @@ -85,11 +85,13 @@ Elements must match **any** of the following expressions: ### postal_code _This tagrendering has no question and is thus read-only_ + *The postal code is {postal_code}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -99,6 +101,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -132,6 +135,7 @@ Elements must match **all** of the following expressions: ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -140,6 +144,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -172,6 +177,7 @@ Elements must match **any** of the following expressions: ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -181,6 +187,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/rainbow_crossings.md b/Docs/Themes/rainbow_crossings.md index dc7f495be0..f5df13f17d 100644 --- a/Docs/Themes/rainbow_crossings.md +++ b/Docs/Themes/rainbow_crossings.md @@ -78,6 +78,7 @@ Elements must match the expression ** *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -186,7 +189,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -197,7 +201,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -207,7 +212,8 @@ This tagrendering has labels ### capacity_persons The question is `How many people can stay here?` -*{capacity:persons} people can stay here* is shown if `capacity:persons` is set + +*{capacity:persons} people can stay here* is shown if `capacity:persons` is set. ### fee @@ -219,12 +225,14 @@ The question is `Is there a fee?` ### charge_person_day The question is `What is the charge per person per day?` -*Charge per person per day: {charge}* is shown if `charge` is set + +*Charge per person per day: {charge}* is shown if `charge` is set. ### charge_day The question is `What is the charge per day?` -*Charge per day: {charge}* is shown if `charge` is set + +*Charge per day: {charge}* is shown if `charge` is set. ### caravansites-toilets @@ -236,21 +244,25 @@ The question is `Does this place have toilets?` ### toiletatamenitytoiletswheelchair _This tagrendering has no question and is thus read-only_ + *toilet_at_amenity.toilets-wheelchair* ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### mastodon Shows and asks for the mastodon handle The question is `What is the Mastodon-handle of {title()}?` -*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set + +*{fediverse_link(contact:mastodon)}* is shown if `contact:mastodon` is set. ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -352,21 +364,25 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### name The question is `What is the name of this {title()}?` -*{name}* is shown if `name` is set + +*{name}* is shown if `name` is set. ### presettypeselect _This tagrendering has no question and is thus read-only_ + *{preset_type_select()}* ### group_only @@ -381,14 +397,16 @@ This tagrendering is only visible in the popup if the following condition is met ### brand The question is `Is {title()} part of a bigger brand?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *Not part of a bigger brand* is shown if with nobrand=yes ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -398,7 +416,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -409,7 +428,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -428,6 +448,7 @@ The question is `Is this place accessible with a wheelchair?` ### toiletatamenitytoiletswheelchair _This tagrendering has no question and is thus read-only_ + *toilet_at_amenity.toilets-wheelchair* ### internet @@ -459,7 +480,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -480,6 +502,7 @@ The question is `Are dogs allowed in this business?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -489,16 +512,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -584,21 +610,25 @@ Elements must match the expression **nobrand=yes ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -630,7 +662,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -641,7 +674,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -660,6 +694,7 @@ The question is `Is this place accessible with a wheelchair?` ### toiletatamenitytoiletswheelchair _This tagrendering has no question and is thus read-only_ + *toilet_at_amenity.toilets-wheelchair* ### internet @@ -691,7 +726,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -712,6 +748,7 @@ The question is `Are dogs allowed in this business?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -721,16 +758,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/speelplekken.md b/Docs/Themes/speelplekken.md index e0d5f5a44f..7c40d04ecb 100644 --- a/Docs/Themes/speelplekken.md +++ b/Docs/Themes/speelplekken.md @@ -88,11 +88,13 @@ Elements must match the expression *** is shown if `_video:id` is set + +** is shown if `_video:id` is set. ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -102,6 +104,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -154,11 +157,13 @@ Elements must match **all** of the following expressions: ### has-video _This tagrendering has no question and is thus read-only_ -** is shown if `_video:id` is set + +** is shown if `_video:id` is set. ### walk-length _This tagrendering has no question and is thus read-only_ + *Deze wandeling is {_length:km}km lang* ### walk-type @@ -173,31 +178,37 @@ _This tagrendering has no question and is thus read-only_ ### walk-description The question is `Geef een korte beschrijving van de wandeling (max 255 tekens)` -*

Korte beschrijving:

{description}* is shown if `description` is set + +*

Korte beschrijving:

{description}* is shown if `description` is set. ### walk-operator The question is `Wie beheert deze wandeling en plaatst dus de signalisatiebordjes?` -*Signalisatie geplaatst door {operator}* is shown if `operator` is set + +*Signalisatie geplaatst door {operator}* is shown if `operator` is set. ### walk-operator-email The question is `Naar wie kan men emailen bij problemen rond signalisatie?` -*Bij problemen met signalisatie kan men emailen naar
{operator:email}* is shown if `operator:email` is set + +*Bij problemen met signalisatie kan men emailen naar {operator:email}* is shown if `operator:email` is set. ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### reviews Shows the reviews module (including the possibility to leave a review) _This tagrendering has no question and is thus read-only_ + *{create_review()}{list_reviews()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/sports.md b/Docs/Themes/sports.md index 7e927a6651..3b6fcfad68 100644 --- a/Docs/Themes/sports.md +++ b/Docs/Themes/sports.md @@ -62,6 +62,8 @@ Available languages: + [copyshop-binding](#copyshop-binding) + [optometrist_service](#optometrist_service) + [key_cutter](#key_cutter) + + [hairdresser-targetgroup](#hairdresser-targetgroup) + + [reservation](#reservation) + [sells_new_bikes](#sells_new_bikes) + [bike_second_hand](#bike_second_hand) + [repairs_bikes](#repairs_bikes) @@ -85,7 +87,7 @@ Available languages: + [sugar_free](#sugar_free) + [gluten_free](#gluten_free) + [lactose_free](#lactose_free) - + [dog-access](#dog-access) + + [shop-dog-access](#shop-dog-access) + [description](#description) + [toilets-group](#toilets-group) + [grouptitle](#grouptitle) @@ -171,6 +173,7 @@ Elements must match the expression ** [level](https://wiki.openstreetmap.org/wiki/Key:level) | [float](../SpecialInputElements.md#float) | [0](https://wiki.openstreetmap.org/wiki/Tag:level%3D0) [1](https://wiki.openstreetmap.org/wiki/Tag:level%3D1) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) | | [service:binding](https://wiki.openstreetmap.org/wiki/Key:service:binding) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:binding%3Dno) | | [healthcare](https://wiki.openstreetmap.org/wiki/Key:healthcare) | Multiple choice | [optometrist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Doptometrist) [audiologist](https://wiki.openstreetmap.org/wiki/Tag:healthcare%3Daudiologist) | +| [reservation](https://wiki.openstreetmap.org/wiki/Key:reservation) | Multiple choice | [required](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drequired) [recommended](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Drecommended) [yes](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:reservation%3Dno) | | [service:bicycle:retail](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:retail) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:retail%3Dno) | | [service:bicycle:second_hand](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:second_hand) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Dno) [only](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:second_hand%3Donly) | | [service:bicycle:repair](https://wiki.openstreetmap.org/wiki/Key:service:bicycle:repair) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dno) [only_sold](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Donly_sold) [brand](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:repair%3Dbrand) | @@ -244,6 +247,8 @@ Elements must match the expression ** _(Original in [questions](./BuiltinQuestions.md#sugar_free))_ | Does this shop have a sugar free offering?
4 options | diets | _Multiple choice only_ | | [gluten_free](#gluten_free)
_(Original in [questions](./BuiltinQuestions.md#gluten_free))_ | Does this shop have a gluten free offering?
4 options | diets | _Multiple choice only_ | | [lactose_free](#lactose_free)
_(Original in [questions](./BuiltinQuestions.md#lactose_free))_ | Does have a lactose-free offering?
4 options | diets | _Multiple choice only_ | -| [dog-access](#dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | +| [shop-dog-access](#shop-dog-access)
_(Original in [questions](./BuiltinQuestions.md#dog-access))_ | Are dogs allowed in this business?
5 options | | _Multiple choice only_ | | [description](#description)
_(Original in [questions](./BuiltinQuestions.md#description))_ | Is there still some relevant info that the previous questions did not cover? Feel free to add it here.
_{description}_ | | *[description](https://wiki.osm.org/wiki/Key:description)* ([text](../SpecialInputElements.md#text)) | | [toilets-group](#toilets-group)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#toilets-group))_ | _{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}_ | all | _Multiple choice only_ | | [grouptitle](#grouptitle)
_(Original in [toilet_at_amenity_lib](./toilet_at_amenity_lib.md#grouptitle))_ | _Toilet information_
1 options | all, hidden | _Multiple choice only_ | @@ -314,22 +319,26 @@ Elements must match the expression **
*Bicycle rental shop* is shown if with shop=bicycle_rental - *Farm Supply Shop* is shown if with shop=agrarian @@ -503,7 +512,8 @@ This tagrendering has labels ### brand The question is `What is the brand of this shop?` -*Part of {brand}* is shown if `brand` is set + +*Part of {brand}* is shown if `brand` is set. - *This shop does not have a specific brand, it is not part of a bigger chain* is shown if with not:brand=yes @@ -520,14 +530,16 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -537,7 +549,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -548,7 +561,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -566,6 +580,7 @@ The question is `Which methods of payment are accepted here?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -575,7 +590,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -626,6 +642,27 @@ The question is `Does this shop offer key cutting?` This tagrendering is only visible in the popup if the following condition is met: craft=key_cutting | shop=shoe_repair | shop=diy | shop=doityourself | shop=home_improvement | shop=hardware | shop=locksmith | shop=repair | service:key_cutting~.+ +### hairdresser-targetgroup + +The question is `In what target groups does this hairdresser specialize?` + + - *Specializes in cutting men's hair.* is shown if with male=yes. Unselecting this answer will add male=no + - *Specializes in cutting women's hair.* is shown if with female=yes. Unselecting this answer will add female=no + - *Specializes in cutting kids hair.* is shown if with children=yes. Unselecting this answer will add children=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + +### reservation + +The question is `Is a reservation required for this place?` + + - *A reservation is required at this place* is shown if with reservation=required + - *A reservation is not required, but still recommended to make sure you get a table* is shown if with reservation=recommended + - *Reservation is possible at this place* is shown if with reservation=yes + - *Reservation is not possible at this place* is shown if with reservation=no + +This tagrendering is only visible in the popup if the following condition is met: shop=hairdresser + ### sells_new_bikes The question is `Does this shop sell bikes?` @@ -668,7 +705,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -687,7 +725,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*city_bike.*)$ This tagrendering has labels @@ -696,7 +735,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*ebike.*)$ This tagrendering has labels @@ -705,7 +745,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -714,7 +755,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bmx.*)$ This tagrendering has labels @@ -723,7 +765,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*mtb.*)$ This tagrendering has labels @@ -732,7 +775,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -741,7 +785,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: (service:bicycle:rental=yes | bicycle_rental~.+) & rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -780,7 +825,8 @@ This tagrendering is only visible in the popup if the following condition is met ### bike_cleaning-service_bicycle_cleaning_charge The question is `How much does it cost to use the cleaning service?` -*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set + +*Using the cleaning service costs {service:bicycle:cleaning:charge}* is shown if `service:bicycle:cleaning:charge` is set. - *The cleaning service is free to use* is shown if with service:bicycle:cleaning:fee=no - *Free to use* is shown if with service:bicycle:cleaning:fee=yes & service:bicycle:cleaning:charge=. _This option cannot be chosen as answer_ @@ -816,7 +862,8 @@ This tagrendering has labels ### internet-ssid The question is `What is the network name for the wireless internet access?` -*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set + +*The network name is {internet_access:ssid}* is shown if `internet_access:ssid` is set. - *Telekom* is shown if with internet_access:ssid=Telekom @@ -873,7 +920,7 @@ This tagrendering is only visible in the popup if the following condition is met This tagrendering has labels `diets` -### dog-access +### shop-dog-access The question is `Are dogs allowed in this business?` @@ -886,11 +933,13 @@ The question is `Are dogs allowed in this business?` ### description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{description}* is shown if `description` is set + +*{description}* is shown if `description` is set. ### toilets-group _This tagrendering has no question and is thus read-only_ + *{group(grouptitle,toilet-questions,wheelchair;wheelchair-title;adult-changing-table)}* This tagrendering has labels @@ -899,6 +948,7 @@ This tagrendering has labels ### grouptitle _This tagrendering has no question and is thus read-only_ + *Toilet information* - *Does not have toilets* is shown if with toilets=no @@ -923,6 +973,7 @@ This tagrendering has labels ### toilets_repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {toilets:repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:repeat_on~.+ @@ -937,7 +988,8 @@ This tagrendering has labels ### toilets_single_level The question is `On what level is this feature located?` -*Located on the {toilets:level}th floor* is shown if `toilets:level` is set + +*Located on the {toilets:level}th floor* is shown if `toilets:level` is set. - *Located underground* is shown if with toilets:location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with toilets:level=0 @@ -957,7 +1009,8 @@ This tagrendering has labels ### toilets_toilet-access The question is `Are these toilets publicly accessible?` -*Access is {toilets:access}* is shown if `toilets:access` is set + +*Access is {toilets:access}* is shown if `toilets:access` is set. - *Public access* is shown if with toilets:access=yes - *Only access to customers* is shown if with toilets:access=customers @@ -992,7 +1045,8 @@ This tagrendering has labels ### toilets_toilet-charge The question is `How much does one have to pay for these toilets?` -*The fee is {toilets:charge}* is shown if `toilets:charge` is set + +*The fee is {toilets:charge}* is shown if `toilets:charge` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes & toilets:fee=yes This tagrendering has labels @@ -1062,7 +1116,8 @@ This tagrendering has labels ### toilets_description The question is `Is there still some relevant info that the previous questions did not cover? Feel free to add it here.` -*{toilets:description}* is shown if `toilets:description` is set + +*{toilets:description}* is shown if `toilets:description` is set. This tagrendering is only visible in the popup if the following condition is met: toilets=yes This tagrendering has labels @@ -1152,7 +1207,8 @@ This tagrendering has labels ### menstrual_products_location The question is `Where are the free menstrual products located?` -*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set + +*The menstrual products are located in {toilets:menstrual_products:location}* is shown if `toilets:menstrual_products:location` is set. - *The free, menstrual products are located in the toilet for women* is shown if with toilets:menstrual_products:location=female_toilet - *The free, menstrual products are located in the toilet for men* is shown if with toilets:menstrual_products:location=male_toilet @@ -1188,7 +1244,8 @@ This tagrendering has labels ### toilet-changing_table:location The question is `Where is the changing table located?` -*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set + +*A changing table is located at {changing_table:location}* is shown if `changing_table:location` is set. - *A changing table is in the toilet for women* is shown if with changing_table:location=female_toilet - *A changing table is in the toilet for men* is shown if with changing_table:location=male_toilet @@ -1261,6 +1318,7 @@ This tagrendering has labels ### wheelchair-group _This tagrendering has no question and is thus read-only_ + *{group(wheelchair-title,wheelchair;adult-changing-table,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1276,6 +1334,7 @@ This tagrendering has labels ### wheelchair-picture-carousel _This tagrendering has no question and is thus read-only_ + *{image_carousel(toilets:wheelchair:panoramax;toilets:wheelchair:image;toilets:wheelchair:mapillary)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1293,6 +1352,7 @@ This tagrendering has labels ### wheelchair-picture _This tagrendering has no question and is thus read-only_ + *{image_upload(toilets:wheelchair:panoramax,Add a picture of the wheelchair accessible toilet,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes & (toilets:wheelchair=yes | wheelchair=yes) @@ -1310,6 +1370,7 @@ This tagrendering has labels ### wheelchair-title _This tagrendering has no question and is thus read-only_ + *Wheelchair accessible toilet* - *Wheelchair accessibility features* is shown if with wheelchair=designated | toilets:wheelchair=designated @@ -1351,6 +1412,7 @@ This tagrendering has labels ### questions-wheelchair _This tagrendering has no question and is thus read-only_ + *{questions(wheelchair,,)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1367,6 +1429,7 @@ This tagrendering has labels ### adult_changing_table_title _This tagrendering has no question and is thus read-only_ + *Adult changing table* This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & toilets=yes @@ -1402,7 +1465,10 @@ This tagrendering has labels ### changing_table_adult_height The question is `What is the height of the adult changing table?` -*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set + +*The changing table is {canonical(changing_table:adult:height)} high* is shown if `changing_table:adult:height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. - *The changing table is adjustable in height* is shown if with changing_table:adult:height=adjustable @@ -1421,7 +1487,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-min_height The question is `What is the lowest height the adult changing table can be moved to?` -*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set + +*The lowest height of the adult changing table is {canonical(changing_table:adult:min_height)}* is shown if `changing_table:adult:min_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1438,7 +1507,10 @@ This tagrendering has labels ### changing_table_adult_adult-changing-table-max_height The question is `What is the highest height the adult changing table can be moved to?` -*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set + +*The highest height of the adult changing table is {canonical(changing_table:adult:max_height)}* is shown if `changing_table:adult:max_height` is set. + +The allowed input is of type pfloat and is in range 0.4 until 2 (both inclusive). A warning will appear if the value is outside of 0.8 and 1.7. This tagrendering is only visible in the popup if the following condition is met: changing_table:adult=yes & changing_table:adult:height=adjustable & toilets=yes This tagrendering has labels @@ -1497,6 +1569,7 @@ This tagrendering has labels ### questions-adult-changing-table _This tagrendering has no question and is thus read-only_ + *{questions(adult-changing-table,,yes)}* This tagrendering is only visible in the popup if the following condition is met: toilets=yes @@ -1513,6 +1586,7 @@ This tagrendering has labels ### toilet-question-box _This tagrendering has no question and is thus read-only_ + *{questions(toilet-questions,,)}* This tagrendering has labels @@ -1523,6 +1597,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,wheelchair;adult-changing-table;toilet-questions;hidden)}* This tagrendering has labels @@ -1532,16 +1607,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/stations.md b/Docs/Themes/stations.md index c85cd97090..73ce27ec25 100644 --- a/Docs/Themes/stations.md +++ b/Docs/Themes/stations.md @@ -145,6 +145,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### type @@ -159,6 +160,7 @@ The question is `What kind of departures board is this?` ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -168,7 +170,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -182,6 +185,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -191,11 +195,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/street_lighting.md b/Docs/Themes/street_lighting.md index 375ae25d73..2a803f0882 100644 --- a/Docs/Themes/street_lighting.md +++ b/Docs/Themes/street_lighting.md @@ -88,6 +88,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### lit @@ -102,6 +103,7 @@ The question is `Is this street lit?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -111,11 +113,13 @@ This tagrendering has labels ### split_button _This tagrendering has no question and is thus read-only_ + *{split_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/street_lighting_assen.md b/Docs/Themes/street_lighting_assen.md index fbd63aad7d..153bec5d1c 100644 --- a/Docs/Themes/street_lighting_assen.md +++ b/Docs/Themes/street_lighting_assen.md @@ -60,11 +60,13 @@ Elements must match the expression **Lichtmastnummer~.+** ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -74,6 +76,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/toerisme_vlaanderen.md b/Docs/Themes/toerisme_vlaanderen.md index 49d8f30b45..5faa650764 100644 --- a/Docs/Themes/toerisme_vlaanderen.md +++ b/Docs/Themes/toerisme_vlaanderen.md @@ -433,6 +433,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### Type @@ -448,7 +449,8 @@ The question is `Which vehicles are allowed to charge here?` ### access The question is `Who is allowed to use this charging station?` -*Access is {access}* is shown if `access` is set + +*Access is {access}* is shown if `access` is set. - *Anyone can use this charging station (payment might be needed)* is shown if with access=yes - *Anyone can use this charging station (payment might be needed)* is shown if with access=public. _This option cannot be chosen as answer_ @@ -460,7 +462,8 @@ The question is `Who is allowed to use this charging station?` ### capacity The question is `How much vehicles can be charged here at the same time?` -*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set + +*{capacity} vehicles can be charged here at the same time* is shown if `capacity` is set. ### Available_charging_stations (generated) @@ -512,7 +515,8 @@ The question is `Which charging connections are available here?` ### plugs-amount-socket:schuko The question is `How much plugs of type Schuko wall plug without ground pin (CEE7/4 type F) are available here?` -*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set + +*There are {socket:schuko} plugs of type Schuko wall plug without ground pin (CEE7/4 type F) available here* is shown if `socket:schuko` is set. This tagrendering is only visible in the popup if the following condition is met: socket:schuko~.+ & socket:schuko!=0 This tagrendering has labels @@ -521,7 +525,8 @@ This tagrendering has labels ### voltage-socket:schuko The question is `What voltage do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs {canonical(socket:schuko:voltage)}* is shown if `socket:schuko:voltage` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt* is shown if with socket:schuko:voltage=230 @@ -532,7 +537,8 @@ This tagrendering has labels ### current-socket:schuko The question is `What current do the plugs with Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:current)}* is shown if `socket:schuko:current` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A* is shown if with socket:schuko:current=16 @@ -543,7 +549,8 @@ This tagrendering has labels ### power-output-socket:schuko The question is `What power output does a single plug of type Schuko wall plug without ground pin (CEE7/4 type F) offer?` -*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set + +*Schuko wall plug without ground pin (CEE7/4 type F) outputs at most {canonical(socket:schuko:output)}* is shown if `socket:schuko:output` is set. - *Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kW* is shown if with socket:schuko:output=3.6 kW @@ -554,7 +561,8 @@ This tagrendering has labels ### plugs-amount-socket:typee The question is `How much plugs of type European wall plug with ground pin (CEE7/4 type E) are available here?` -*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set + +*There are {socket:typee} plugs of type European wall plug with ground pin (CEE7/4 type E) available here* is shown if `socket:typee` is set. This tagrendering is only visible in the popup if the following condition is met: socket:typee~.+ & socket:typee!=0 This tagrendering has labels @@ -563,7 +571,8 @@ This tagrendering has labels ### voltage-socket:typee The question is `What voltage do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs {canonical(socket:typee:voltage)}* is shown if `socket:typee:voltage` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs 230 volt* is shown if with socket:typee:voltage=230 @@ -574,7 +583,8 @@ This tagrendering has labels ### current-socket:typee The question is `What current do the plugs with European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:current)}* is shown if `socket:typee:current` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A* is shown if with socket:typee:current=16 @@ -585,7 +595,8 @@ This tagrendering has labels ### power-output-socket:typee The question is `What power output does a single plug of type European wall plug with ground pin (CEE7/4 type E) offer?` -*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set + +*European wall plug with ground pin (CEE7/4 type E) outputs at most {canonical(socket:typee:output)}* is shown if `socket:typee:output` is set. - *European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kW* is shown if with socket:typee:output=3 kW - *European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kW* is shown if with socket:typee:output=22 kW @@ -597,7 +608,8 @@ This tagrendering has labels ### plugs-amount-socket:chademo The question is `How much plugs of type Chademo are available here?` -*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set + +*There are {socket:chademo} plugs of type Chademo available here* is shown if `socket:chademo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:chademo~.+ & socket:chademo!=0 This tagrendering has labels @@ -606,7 +618,8 @@ This tagrendering has labels ### voltage-socket:chademo The question is `What voltage do the plugs with Chademo offer?` -*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set + +*Chademo outputs {canonical(socket:chademo:voltage)}* is shown if `socket:chademo:voltage` is set. - *Chademo outputs 500 volt* is shown if with socket:chademo:voltage=500 @@ -617,7 +630,8 @@ This tagrendering has labels ### current-socket:chademo The question is `What current do the plugs with Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set + +*Chademo outputs at most {canonical(socket:chademo:current)}* is shown if `socket:chademo:current` is set. - *Chademo outputs at most 120 A* is shown if with socket:chademo:current=120 @@ -628,7 +642,8 @@ This tagrendering has labels ### power-output-socket:chademo The question is `What power output does a single plug of type Chademo offer?` -*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set + +*Chademo outputs at most {canonical(socket:chademo:output)}* is shown if `socket:chademo:output` is set. - *Chademo outputs at most 50 kW* is shown if with socket:chademo:output=50 kW @@ -639,7 +654,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_cable The question is `How much plugs of type Type 1 with cable (J1772) are available here?` -*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set + +*There are {socket:type1_cable} plugs of type Type 1 with cable (J1772) available here* is shown if `socket:type1_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_cable~.+ & socket:type1_cable!=0 This tagrendering has labels @@ -648,7 +664,8 @@ This tagrendering has labels ### voltage-socket:type1_cable The question is `What voltage do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set + +*Type 1 with cable (J1772) outputs {canonical(socket:type1_cable:voltage)}* is shown if `socket:type1_cable:voltage` is set. - *Type 1 with cable (J1772) outputs 200 volt* is shown if with socket:type1_cable:voltage=200 - *Type 1 with cable (J1772) outputs 240 volt* is shown if with socket:type1_cable:voltage=240 @@ -660,7 +677,8 @@ This tagrendering has labels ### current-socket:type1_cable The question is `What current do the plugs with Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:current)}* is shown if `socket:type1_cable:current` is set. - *Type 1 with cable (J1772) outputs at most 32 A* is shown if with socket:type1_cable:current=32 @@ -671,7 +689,8 @@ This tagrendering has labels ### power-output-socket:type1_cable The question is `What power output does a single plug of type Type 1 with cable (J1772) offer?` -*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set + +*Type 1 with cable (J1772) outputs at most {canonical(socket:type1_cable:output)}* is shown if `socket:type1_cable:output` is set. - *Type 1 with cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1_cable:output=3.7 kW - *Type 1 with cable (J1772) outputs at most 7 kW* is shown if with socket:type1_cable:output=7 kW @@ -683,7 +702,8 @@ This tagrendering has labels ### plugs-amount-socket:type1 The question is `How much plugs of type Type 1 without cable (J1772) are available here?` -*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set + +*There are {socket:type1} plugs of type Type 1 without cable (J1772) available here* is shown if `socket:type1` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1~.+ & socket:type1!=0 This tagrendering has labels @@ -692,7 +712,8 @@ This tagrendering has labels ### voltage-socket:type1 The question is `What voltage do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set + +*Type 1 without cable (J1772) outputs {canonical(socket:type1:voltage)}* is shown if `socket:type1:voltage` is set. - *Type 1 without cable (J1772) outputs 200 volt* is shown if with socket:type1:voltage=200 - *Type 1 without cable (J1772) outputs 240 volt* is shown if with socket:type1:voltage=240 @@ -704,7 +725,8 @@ This tagrendering has labels ### current-socket:type1 The question is `What current do the plugs with Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:current)}* is shown if `socket:type1:current` is set. - *Type 1 without cable (J1772) outputs at most 32 A* is shown if with socket:type1:current=32 @@ -715,7 +737,8 @@ This tagrendering has labels ### power-output-socket:type1 The question is `What power output does a single plug of type Type 1 without cable (J1772) offer?` -*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set + +*Type 1 without cable (J1772) outputs at most {canonical(socket:type1:output)}* is shown if `socket:type1:output` is set. - *Type 1 without cable (J1772) outputs at most 3.7 kW* is shown if with socket:type1:output=3.7 kW - *Type 1 without cable (J1772) outputs at most 6.6 kW* is shown if with socket:type1:output=6.6 kW @@ -729,7 +752,8 @@ This tagrendering has labels ### plugs-amount-socket:type1_combo The question is `How much plugs of type Type 1 CCS (aka Type 1 Combo) are available here?` -*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set + +*There are {socket:type1_combo} plugs of type Type 1 CCS (aka Type 1 Combo) available here* is shown if `socket:type1_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type1_combo~.+ & socket:type1_combo!=0 This tagrendering has labels @@ -738,7 +762,8 @@ This tagrendering has labels ### voltage-socket:type1_combo The question is `What voltage do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set + +*Type 1 CCS (aka Type 1 Combo) outputs {canonical(socket:type1_combo:voltage)}* is shown if `socket:type1_combo:voltage` is set. - *Type 1 CCS (aka Type 1 Combo) outputs 400 volt* is shown if with socket:type1_combo:voltage=400 - *Type 1 CCS (aka Type 1 Combo) outputs 1000 volt* is shown if with socket:type1_combo:voltage=1000 @@ -750,7 +775,8 @@ This tagrendering has labels ### current-socket:type1_combo The question is `What current do the plugs with Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:current)}* is shown if `socket:type1_combo:current` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 A* is shown if with socket:type1_combo:current=50 - *Type 1 CCS (aka Type 1 Combo) outputs at most 125 A* is shown if with socket:type1_combo:current=125 @@ -762,7 +788,8 @@ This tagrendering has labels ### power-output-socket:type1_combo The question is `What power output does a single plug of type Type 1 CCS (aka Type 1 Combo) offer?` -*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set + +*Type 1 CCS (aka Type 1 Combo) outputs at most {canonical(socket:type1_combo:output)}* is shown if `socket:type1_combo:output` is set. - *Type 1 CCS (aka Type 1 Combo) outputs at most 50 kW* is shown if with socket:type1_combo:output=50 kW - *Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kW* is shown if with socket:type1_combo:output=62.5 kW @@ -776,7 +803,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger The question is `How much plugs of type Tesla Supercharger are available here?` -*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set + +*There are {socket:tesla_supercharger} plugs of type Tesla Supercharger available here* is shown if `socket:tesla_supercharger` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger~.+ & socket:tesla_supercharger!=0 This tagrendering has labels @@ -785,7 +813,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger The question is `What voltage do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set + +*Tesla Supercharger outputs {canonical(socket:tesla_supercharger:voltage)}* is shown if `socket:tesla_supercharger:voltage` is set. - *Tesla Supercharger outputs 480 volt* is shown if with socket:tesla_supercharger:voltage=480 @@ -796,7 +825,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger The question is `What current do the plugs with Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:current)}* is shown if `socket:tesla_supercharger:current` is set. - *Tesla Supercharger outputs at most 125 A* is shown if with socket:tesla_supercharger:current=125 - *Tesla Supercharger outputs at most 350 A* is shown if with socket:tesla_supercharger:current=350 @@ -808,7 +838,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger The question is `What power output does a single plug of type Tesla Supercharger offer?` -*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set + +*Tesla Supercharger outputs at most {canonical(socket:tesla_supercharger:output)}* is shown if `socket:tesla_supercharger:output` is set. - *Tesla Supercharger outputs at most 120 kW* is shown if with socket:tesla_supercharger:output=120 kW - *Tesla Supercharger outputs at most 150 kW* is shown if with socket:tesla_supercharger:output=150 kW @@ -821,7 +852,8 @@ This tagrendering has labels ### plugs-amount-socket:type2 The question is `How much plugs of type Type 2 (mennekes) are available here?` -*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set + +*There are {socket:type2} plugs of type Type 2 (mennekes) available here* is shown if `socket:type2` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2~.+ & socket:type2!=0 This tagrendering has labels @@ -830,7 +862,8 @@ This tagrendering has labels ### voltage-socket:type2 The question is `What voltage do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set + +*Type 2 (mennekes) outputs {canonical(socket:type2:voltage)}* is shown if `socket:type2:voltage` is set. - *Type 2 (mennekes) outputs 230 volt* is shown if with socket:type2:voltage=230 - *Type 2 (mennekes) outputs 400 volt* is shown if with socket:type2:voltage=400 @@ -842,7 +875,8 @@ This tagrendering has labels ### current-socket:type2 The question is `What current do the plugs with Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:current)}* is shown if `socket:type2:current` is set. - *Type 2 (mennekes) outputs at most 16 A* is shown if with socket:type2:current=16 - *Type 2 (mennekes) outputs at most 32 A* is shown if with socket:type2:current=32 @@ -854,7 +888,8 @@ This tagrendering has labels ### power-output-socket:type2 The question is `What power output does a single plug of type Type 2 (mennekes) offer?` -*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set + +*Type 2 (mennekes) outputs at most {canonical(socket:type2:output)}* is shown if `socket:type2:output` is set. - *Type 2 (mennekes) outputs at most 11 kW* is shown if with socket:type2:output=11 kW - *Type 2 (mennekes) outputs at most 22 kW* is shown if with socket:type2:output=22 kW @@ -866,7 +901,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_combo The question is `How much plugs of type Type 2 CCS (mennekes) are available here?` -*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set + +*There are {socket:type2_combo} plugs of type Type 2 CCS (mennekes) available here* is shown if `socket:type2_combo` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_combo~.+ & socket:type2_combo!=0 This tagrendering has labels @@ -875,7 +911,8 @@ This tagrendering has labels ### voltage-socket:type2_combo The question is `What voltage do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set + +*Type 2 CCS (mennekes) outputs {canonical(socket:type2_combo:voltage)}* is shown if `socket:type2_combo:voltage` is set. - *Type 2 CCS (mennekes) outputs 500 volt* is shown if with socket:type2_combo:voltage=500 - *Type 2 CCS (mennekes) outputs 920 volt* is shown if with socket:type2_combo:voltage=920 @@ -887,7 +924,8 @@ This tagrendering has labels ### current-socket:type2_combo The question is `What current do the plugs with Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:current)}* is shown if `socket:type2_combo:current` is set. - *Type 2 CCS (mennekes) outputs at most 125 A* is shown if with socket:type2_combo:current=125 - *Type 2 CCS (mennekes) outputs at most 350 A* is shown if with socket:type2_combo:current=350 @@ -899,7 +937,8 @@ This tagrendering has labels ### power-output-socket:type2_combo The question is `What power output does a single plug of type Type 2 CCS (mennekes) offer?` -*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set + +*Type 2 CCS (mennekes) outputs at most {canonical(socket:type2_combo:output)}* is shown if `socket:type2_combo:output` is set. - *Type 2 CCS (mennekes) outputs at most 50 kW* is shown if with socket:type2_combo:output=50 kW @@ -910,7 +949,8 @@ This tagrendering has labels ### plugs-amount-socket:type2_cable The question is `How much plugs of type Type 2 with cable (mennekes) are available here?` -*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set + +*There are {socket:type2_cable} plugs of type Type 2 with cable (mennekes) available here* is shown if `socket:type2_cable` is set. This tagrendering is only visible in the popup if the following condition is met: socket:type2_cable~.+ & socket:type2_cable!=0 This tagrendering has labels @@ -919,7 +959,8 @@ This tagrendering has labels ### voltage-socket:type2_cable The question is `What voltage do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set + +*Type 2 with cable (mennekes) outputs {canonical(socket:type2_cable:voltage)}* is shown if `socket:type2_cable:voltage` is set. - *Type 2 with cable (mennekes) outputs 230 volt* is shown if with socket:type2_cable:voltage=230 - *Type 2 with cable (mennekes) outputs 400 volt* is shown if with socket:type2_cable:voltage=400 @@ -931,7 +972,8 @@ This tagrendering has labels ### current-socket:type2_cable The question is `What current do the plugs with Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:current)}* is shown if `socket:type2_cable:current` is set. - *Type 2 with cable (mennekes) outputs at most 16 A* is shown if with socket:type2_cable:current=16 - *Type 2 with cable (mennekes) outputs at most 32 A* is shown if with socket:type2_cable:current=32 @@ -943,7 +985,8 @@ This tagrendering has labels ### power-output-socket:type2_cable The question is `What power output does a single plug of type Type 2 with cable (mennekes) offer?` -*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set + +*Type 2 with cable (mennekes) outputs at most {canonical(socket:type2_cable:output)}* is shown if `socket:type2_cable:output` is set. - *Type 2 with cable (mennekes) outputs at most 11 kW* is shown if with socket:type2_cable:output=11 kW - *Type 2 with cable (mennekes) outputs at most 22 kW* is shown if with socket:type2_cable:output=22 kW @@ -955,7 +998,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_supercharger_ccs The question is `How much plugs of type Tesla Supercharger CCS (a branded type2_css) are available here?` -*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set + +*There are {socket:tesla_supercharger_ccs} plugs of type Tesla Supercharger CCS (a branded type2_css) available here* is shown if `socket:tesla_supercharger_ccs` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_supercharger_ccs~.+ & socket:tesla_supercharger_ccs!=0 This tagrendering has labels @@ -964,7 +1008,8 @@ This tagrendering has labels ### voltage-socket:tesla_supercharger_ccs The question is `What voltage do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs {canonical(socket:tesla_supercharger_ccs:voltage)}* is shown if `socket:tesla_supercharger_ccs:voltage` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs 500 volt* is shown if with socket:tesla_supercharger_ccs:voltage=500 - *Tesla Supercharger CCS (a branded type2_css) outputs 920 volt* is shown if with socket:tesla_supercharger_ccs:voltage=920 @@ -976,7 +1021,8 @@ This tagrendering has labels ### current-socket:tesla_supercharger_ccs The question is `What current do the plugs with Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:current)}* is shown if `socket:tesla_supercharger_ccs:current` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A* is shown if with socket:tesla_supercharger_ccs:current=125 - *Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A* is shown if with socket:tesla_supercharger_ccs:current=350 @@ -988,7 +1034,8 @@ This tagrendering has labels ### power-output-socket:tesla_supercharger_ccs The question is `What power output does a single plug of type Tesla Supercharger CCS (a branded type2_css) offer?` -*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set + +*Tesla Supercharger CCS (a branded type2_css) outputs at most {canonical(socket:tesla_supercharger_ccs:output)}* is shown if `socket:tesla_supercharger_ccs:output` is set. - *Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kW* is shown if with socket:tesla_supercharger_ccs:output=50 kW @@ -999,7 +1046,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination_us The question is `How much plugs of type Tesla Supercharger (destination) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla Supercharger (destination) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -1008,7 +1056,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination_us The question is `What voltage do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla Supercharger (destination) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla Supercharger (destination) outputs 480 volt* is shown if with socket:tesla_destination:voltage=480 @@ -1019,7 +1068,8 @@ This tagrendering has labels ### current-socket:tesla_destination_us The question is `What current do the plugs with Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla Supercharger (destination) outputs at most 125 A* is shown if with socket:tesla_destination:current=125 - *Tesla Supercharger (destination) outputs at most 350 A* is shown if with socket:tesla_destination:current=350 @@ -1031,7 +1081,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination_us The question is `What power output does a single plug of type Tesla Supercharger (destination) offer?` -*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla Supercharger (destination) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla Supercharger (destination) outputs at most 120 kW* is shown if with socket:tesla_destination:output=120 kW - *Tesla Supercharger (destination) outputs at most 150 kW* is shown if with socket:tesla_destination:output=150 kW @@ -1044,7 +1095,8 @@ This tagrendering has labels ### plugs-amount-socket:tesla_destination The question is `How much plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) are available here?` -*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set + +*There are {socket:tesla_destination} plugs of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) available here* is shown if `socket:tesla_destination` is set. This tagrendering is only visible in the popup if the following condition is met: socket:tesla_destination~.+ & socket:tesla_destination!=0 This tagrendering has labels @@ -1053,7 +1105,8 @@ This tagrendering has labels ### voltage-socket:tesla_destination The question is `What voltage do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs {canonical(socket:tesla_destination:voltage)}* is shown if `socket:tesla_destination:voltage` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt* is shown if with socket:tesla_destination:voltage=230 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt* is shown if with socket:tesla_destination:voltage=400 @@ -1065,7 +1118,8 @@ This tagrendering has labels ### current-socket:tesla_destination The question is `What current do the plugs with Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:current)}* is shown if `socket:tesla_destination:current` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A* is shown if with socket:tesla_destination:current=16 - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A* is shown if with socket:tesla_destination:current=32 @@ -1077,7 +1131,8 @@ This tagrendering has labels ### power-output-socket:tesla_destination The question is `What power output does a single plug of type Tesla supercharger (destination) (A Type 2 with cable branded as tesla) offer?` -*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set + +*Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most {canonical(socket:tesla_destination:output)}* is shown if `socket:tesla_destination:output` is set. - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kW* is shown if with socket:tesla_destination:output=11 kW - *Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kW* is shown if with socket:tesla_destination:output=22 kW @@ -1089,7 +1144,8 @@ This tagrendering has labels ### plugs-amount-socket:USB-A The question is `How much plugs of type USB to charge phones and small electronics are available here?` -*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set + +*There are {socket:USB-A} plugs of type USB to charge phones and small electronics available here* is shown if `socket:USB-A` is set. This tagrendering is only visible in the popup if the following condition is met: socket:USB-A~.+ & socket:USB-A!=0 This tagrendering has labels @@ -1098,7 +1154,8 @@ This tagrendering has labels ### voltage-socket:USB-A The question is `What voltage do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set + +*USB to charge phones and small electronics outputs {canonical(socket:USB-A:voltage)}* is shown if `socket:USB-A:voltage` is set. - *USB to charge phones and small electronics outputs 5 volt* is shown if with socket:USB-A:voltage=5 @@ -1109,7 +1166,8 @@ This tagrendering has labels ### current-socket:USB-A The question is `What current do the plugs with USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:current)}* is shown if `socket:USB-A:current` is set. - *USB to charge phones and small electronics outputs at most 1 A* is shown if with socket:USB-A:current=1 - *USB to charge phones and small electronics outputs at most 2 A* is shown if with socket:USB-A:current=2 @@ -1121,7 +1179,8 @@ This tagrendering has labels ### power-output-socket:USB-A The question is `What power output does a single plug of type USB to charge phones and small electronics offer?` -*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set + +*USB to charge phones and small electronics outputs at most {canonical(socket:USB-A:output)}* is shown if `socket:USB-A:output` is set. - *USB to charge phones and small electronics outputs at most 5W* is shown if with socket:USB-A:output=5W - *USB to charge phones and small electronics outputs at most 10W* is shown if with socket:USB-A:output=10W @@ -1133,7 +1192,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_3pin The question is `How much plugs of type Bosch Active Connect with 3 pins and cable are available here?` -*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set + +*There are {socket:bosch_3pin} plugs of type Bosch Active Connect with 3 pins and cable available here* is shown if `socket:bosch_3pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1142,7 +1202,8 @@ This tagrendering has labels ### voltage-socket:bosch_3pin The question is `What voltage do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set + +*Bosch Active Connect with 3 pins and cable outputs {canonical(socket:bosch_3pin:voltage)}* is shown if `socket:bosch_3pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1151,7 +1212,8 @@ This tagrendering has labels ### current-socket:bosch_3pin The question is `What current do the plugs with Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:current)}* is shown if `socket:bosch_3pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1160,7 +1222,8 @@ This tagrendering has labels ### power-output-socket:bosch_3pin The question is `What power output does a single plug of type Bosch Active Connect with 3 pins and cable offer?` -*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set + +*Bosch Active Connect with 3 pins and cable outputs at most {canonical(socket:bosch_3pin:output)}* is shown if `socket:bosch_3pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_3pin~.+ & socket:bosch_3pin!=0 This tagrendering has labels @@ -1169,7 +1232,8 @@ This tagrendering has labels ### plugs-amount-socket:bosch_5pin The question is `How much plugs of type Bosch Active Connect with 5 pins and cable are available here?` -*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set + +*There are {socket:bosch_5pin} plugs of type Bosch Active Connect with 5 pins and cable available here* is shown if `socket:bosch_5pin` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1178,7 +1242,8 @@ This tagrendering has labels ### voltage-socket:bosch_5pin The question is `What voltage do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set + +*Bosch Active Connect with 5 pins and cable outputs {canonical(socket:bosch_5pin:voltage)}* is shown if `socket:bosch_5pin:voltage` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1187,7 +1252,8 @@ This tagrendering has labels ### current-socket:bosch_5pin The question is `What current do the plugs with Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:current)}* is shown if `socket:bosch_5pin:current` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1196,7 +1262,8 @@ This tagrendering has labels ### power-output-socket:bosch_5pin The question is `What power output does a single plug of type Bosch Active Connect with 5 pins and cable offer?` -*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set + +*Bosch Active Connect with 5 pins and cable outputs at most {canonical(socket:bosch_5pin:output)}* is shown if `socket:bosch_5pin:output` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bosch_5pin~.+ & socket:bosch_5pin!=0 This tagrendering has labels @@ -1205,7 +1272,8 @@ This tagrendering has labels ### plugs-amount-socket:bs1363 The question is `How much plugs of type BS1363 (Type G) are available here?` -*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set + +*There are {socket:bs1363} plugs of type BS1363 (Type G) available here* is shown if `socket:bs1363` is set. This tagrendering is only visible in the popup if the following condition is met: socket:bs1363~.+ & socket:bs1363!=0 This tagrendering has labels @@ -1214,7 +1282,8 @@ This tagrendering has labels ### voltage-socket:bs1363 The question is `What voltage do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set + +*BS1363 (Type G) outputs {canonical(socket:bs1363:voltage)}* is shown if `socket:bs1363:voltage` is set. - *BS1363 (Type G) outputs 230 volt* is shown if with socket:bs1363:voltage=230 @@ -1225,7 +1294,8 @@ This tagrendering has labels ### current-socket:bs1363 The question is `What current do the plugs with BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:current)}* is shown if `socket:bs1363:current` is set. - *BS1363 (Type G) outputs at most 13 A* is shown if with socket:bs1363:current=13 @@ -1236,7 +1306,8 @@ This tagrendering has labels ### power-output-socket:bs1363 The question is `What power output does a single plug of type BS1363 (Type G) offer?` -*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set + +*BS1363 (Type G) outputs at most {canonical(socket:bs1363:output)}* is shown if `socket:bs1363:output` is set. - *BS1363 (Type G) outputs at most 3kW* is shown if with socket:bs1363:output=3kW @@ -1247,7 +1318,8 @@ This tagrendering has labels ### plugs-amount-socket:nema5_15 The question is `How much plugs of type NEMA 5-15 (Type B) are available here?` -*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set + +*There are {socket:nema5_15} plugs of type NEMA 5-15 (Type B) available here* is shown if `socket:nema5_15` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema5_15~.+ & socket:nema5_15!=0 This tagrendering has labels @@ -1256,7 +1328,8 @@ This tagrendering has labels ### voltage-socket:nema5_15 The question is `What voltage do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set + +*NEMA 5-15 (Type B) outputs {canonical(socket:nema5_15:voltage)}* is shown if `socket:nema5_15:voltage` is set. - *NEMA 5-15 (Type B) outputs 120 volt* is shown if with socket:nema5_15:voltage=120 @@ -1267,7 +1340,8 @@ This tagrendering has labels ### current-socket:nema5_15 The question is `What current do the plugs with NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:current)}* is shown if `socket:nema5_15:current` is set. - *NEMA 5-15 (Type B) outputs at most 15 A* is shown if with socket:nema5_15:current=15 @@ -1278,7 +1352,8 @@ This tagrendering has labels ### power-output-socket:nema5_15 The question is `What power output does a single plug of type NEMA 5-15 (Type B) offer?` -*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set + +*NEMA 5-15 (Type B) outputs at most {canonical(socket:nema5_15:output)}* is shown if `socket:nema5_15:output` is set. - *NEMA 5-15 (Type B) outputs at most 1.8 kW* is shown if with socket:nema5_15:output=1.8 kW @@ -1289,7 +1364,8 @@ This tagrendering has labels ### plugs-amount-socket:sev1011_t23 The question is `How much plugs of type SEV 1011 T23 (Type J) are available here?` -*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set + +*There are {socket:sev1011_t23} plugs of type SEV 1011 T23 (Type J) available here* is shown if `socket:sev1011_t23` is set. This tagrendering is only visible in the popup if the following condition is met: socket:sev1011_t23~.+ & socket:sev1011_t23!=0 This tagrendering has labels @@ -1298,7 +1374,8 @@ This tagrendering has labels ### voltage-socket:sev1011_t23 The question is `What voltage do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set + +*SEV 1011 T23 (Type J) outputs {canonical(socket:sev1011_t23:voltage)}* is shown if `socket:sev1011_t23:voltage` is set. - *SEV 1011 T23 (Type J) outputs 230 volt* is shown if with socket:sev1011_t23:voltage=230 @@ -1309,7 +1386,8 @@ This tagrendering has labels ### current-socket:sev1011_t23 The question is `What current do the plugs with SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:current)}* is shown if `socket:sev1011_t23:current` is set. - *SEV 1011 T23 (Type J) outputs at most 16 A* is shown if with socket:sev1011_t23:current=16 @@ -1320,7 +1398,8 @@ This tagrendering has labels ### power-output-socket:sev1011_t23 The question is `What power output does a single plug of type SEV 1011 T23 (Type J) offer?` -*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set + +*SEV 1011 T23 (Type J) outputs at most {canonical(socket:sev1011_t23:output)}* is shown if `socket:sev1011_t23:output` is set. - *SEV 1011 T23 (Type J) outputs at most 3.7 kW* is shown if with socket:sev1011_t23:output=3.7 kW @@ -1331,7 +1410,8 @@ This tagrendering has labels ### plugs-amount-socket:as3112 The question is `How much plugs of type AS3112 (Type I) are available here?` -*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set + +*There are {socket:as3112} plugs of type AS3112 (Type I) available here* is shown if `socket:as3112` is set. This tagrendering is only visible in the popup if the following condition is met: socket:as3112~.+ & socket:as3112!=0 This tagrendering has labels @@ -1340,7 +1420,8 @@ This tagrendering has labels ### voltage-socket:as3112 The question is `What voltage do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set + +*AS3112 (Type I) outputs {canonical(socket:as3112:voltage)}* is shown if `socket:as3112:voltage` is set. - *AS3112 (Type I) outputs 230 volt* is shown if with socket:as3112:voltage=230 @@ -1351,7 +1432,8 @@ This tagrendering has labels ### current-socket:as3112 The question is `What current do the plugs with AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:current)}* is shown if `socket:as3112:current` is set. - *AS3112 (Type I) outputs at most 10 A* is shown if with socket:as3112:current=10 @@ -1362,7 +1444,8 @@ This tagrendering has labels ### power-output-socket:as3112 The question is `What power output does a single plug of type AS3112 (Type I) offer?` -*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set + +*AS3112 (Type I) outputs at most {canonical(socket:as3112:output)}* is shown if `socket:as3112:output` is set. - *AS3112 (Type I) outputs at most 2.3 kW* is shown if with socket:as3112:output=2.3 kW @@ -1373,7 +1456,8 @@ This tagrendering has labels ### plugs-amount-socket:nema_5_20 The question is `How much plugs of type NEMA 5-20 (Type B) are available here?` -*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set + +*There are {socket:nema_5_20} plugs of type NEMA 5-20 (Type B) available here* is shown if `socket:nema_5_20` is set. This tagrendering is only visible in the popup if the following condition is met: socket:nema_5_20~.+ & socket:nema_5_20!=0 This tagrendering has labels @@ -1382,7 +1466,8 @@ This tagrendering has labels ### voltage-socket:nema_5_20 The question is `What voltage do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set + +*NEMA 5-20 (Type B) outputs {canonical(socket:nema_5_20:voltage)}* is shown if `socket:nema_5_20:voltage` is set. - *NEMA 5-20 (Type B) outputs 120 volt* is shown if with socket:nema_5_20:voltage=120 @@ -1393,7 +1478,8 @@ This tagrendering has labels ### current-socket:nema_5_20 The question is `What current do the plugs with NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:current)}* is shown if `socket:nema_5_20:current` is set. - *NEMA 5-20 (Type B) outputs at most 20 A* is shown if with socket:nema_5_20:current=20 @@ -1404,7 +1490,8 @@ This tagrendering has labels ### power-output-socket:nema_5_20 The question is `What power output does a single plug of type NEMA 5-20 (Type B) offer?` -*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set + +*NEMA 5-20 (Type B) outputs at most {canonical(socket:nema_5_20:output)}* is shown if `socket:nema_5_20:output` is set. - *NEMA 5-20 (Type B) outputs at most 2.4 kW* is shown if with socket:nema_5_20:output=2.4 kW @@ -1415,7 +1502,8 @@ This tagrendering has labels ### OH The question is `When is this charging station opened?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -1433,7 +1521,8 @@ The question is `Does one have to pay to use this charging station?` ### charge The question is `How much does one have to pay to use this charging station?` -*Using this charging station costs {charge}* is shown if `charge` is set + +*Using this charging station costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes @@ -1453,7 +1542,8 @@ This tagrendering is only visible in the popup if the following condition is met ### app-name The question is `What is the name of the app used for payment?` -*Payment can be done using the app {payment:app}* is shown if `payment:app` is set + +*Payment can be done using the app {payment:app}* is shown if `payment:app` is set. This tagrendering is only visible in the popup if the following condition is met: payment:app~.+ & payment:app!=no @@ -1473,14 +1563,16 @@ The question is `What kind of authentication is available at the charging statio ### Auth phone The question is `What's the phone number for authentication call or SMS?` -*Authenticate by calling or SMS'ing to {authentication:phone_call:number}* is shown if `authentication:phone_call:number` is set + +*Authenticate by calling or SMS'ing to {authentication:phone_call:number}* is shown if `authentication:phone_call:number` is set. This tagrendering is only visible in the popup if the following condition is met: authentication:phone_call=yes | authentication:short_message=yes ### maxstay The question is `What is the maximum amount of time one is allowed to stay here?` -*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set + +*One can stay at most {canonical(maxstay)}* is shown if `maxstay` is set. - *There is no limit to the amount of time one can stay here* is shown if with maxstay=unlimited @@ -1489,7 +1581,8 @@ This tagrendering is only visible in the popup if the following condition is met ### Network The question is `Is this charging station part of a network?` -*Part of the network {network}* is shown if `network` is set + +*Part of the network {network}* is shown if `network` is set. - *Not part of a bigger network, e.g. because the charging station is maintained by a local business* is shown if with no:network=yes - *Not part of a bigger network* is shown if with network=none. _This option cannot be chosen as answer_ @@ -1503,28 +1596,33 @@ The question is `Is this charging station part of a network?` ### Operator The question is `Who is the operator of this charging station?` -*This charging station is operated by {operator}* is shown if `operator` is set + +*This charging station is operated by {operator}* is shown if `operator` is set. - *Actually, {operator} is the network* is shown if with network= ### phone The question is `What number can one call if there is a problem with this charging station?` -*In case of problems, call {phone}* is shown if `phone` is set + +*In case of problems, call {phone}* is shown if `phone` is set. ### email The question is `What is the email address of the operator?` -*In case of problems, send an email to {email}* is shown if `email` is set + +*In case of problems, send an email to {email}* is shown if `email` is set. ### website The question is `What is the website where one can find more information about this charging station?` -*More info on {website}* is shown if `website` is set + +*More info on {website}* is shown if `website` is set. ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -1534,7 +1632,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -1548,7 +1647,8 @@ This tagrendering has labels ### ref The question is `What is the reference number of this charging station?` -*Reference number is {ref}* is shown if `ref` is set + +*Reference number is {ref}* is shown if `ref` is set. This tagrendering is only visible in the popup if the following condition is met: network~.+ @@ -1572,26 +1672,31 @@ The question is `Does one have to pay a parking fee while charging?` ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### questions-technical _This tagrendering has no question and is thus read-only_ + *

Technical questions

The questions below are very technical. Feel free to ignore them
{questions(technical)}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -1684,6 +1789,7 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### bicycle_rental_type @@ -1702,7 +1808,8 @@ This tagrendering is only visible in the popup if the following condition is met ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -1712,7 +1819,8 @@ This tagrendering has labels ### email The question is `What is the email address of {title()}?` -*{email}* is shown if `email` is set + +*{email}* is shown if `email` is set. - *{contact:email}* is shown if with contact:email~.+. _This option cannot be chosen as answer_ - *{operator:email}* is shown if with operator:email~.+. _This option cannot be chosen as answer_ @@ -1723,7 +1831,8 @@ This tagrendering has labels ### phone The question is `What is the phone number of {title()}?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -1733,7 +1842,8 @@ This tagrendering has labels ### opening_hours The question is `What are the opening hours of {title()}?` -*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

Opening hours

{opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -1762,7 +1872,8 @@ The question is `Which methods of payment are accepted here?` ### bicycle-types The question is `What kind of bicycles and accessories are rented here?` -*{rental} is rented here* is shown if `rental` is set + +*{rental} is rented here* is shown if `rental` is set. - *Normal city bikes can be rented here* is shown if with rental=city_bike - *Electrical bikes can be rented here* is shown if with rental=ebike @@ -1780,7 +1891,8 @@ This tagrendering has labels ### rental-capacity-city_bike The question is `How many city bikes can be rented here?` -*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set + +*{capacity:city_bike} city bikes can be rented here* is shown if `capacity:city_bike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*city_bike.*)$ This tagrendering has labels @@ -1789,7 +1901,8 @@ This tagrendering has labels ### rental-capacity-ebike The question is `How many electrical bikes can be rented here?` -*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set + +*{capacity:ebike} electrical bikes can be rented here* is shown if `capacity:ebike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*ebike.*)$ This tagrendering has labels @@ -1798,7 +1911,8 @@ This tagrendering has labels ### rental-capacity-kid_bike The question is `How many bikes for children can be rented here?` -*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set + +*{capacity:kid_bike} bikes for children can be rented here* is shown if `capacity:kid_bike` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*kid_bike.*)$ This tagrendering has labels @@ -1807,7 +1921,8 @@ This tagrendering has labels ### rental-capacity-bmx The question is `How many BMX bikes can be rented here?` -*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set + +*{capacity:bmx} BMX bikes can be rented here* is shown if `capacity:bmx` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bmx.*)$ This tagrendering has labels @@ -1816,7 +1931,8 @@ This tagrendering has labels ### rental-capacity-mtb The question is `How many mountainbikes can be rented here?` -*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set + +*{capacity:mtb} mountainbikes can be rented here* is shown if `capacity:mtb` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*mtb.*)$ This tagrendering has labels @@ -1825,7 +1941,8 @@ This tagrendering has labels ### rental-capacity-bicycle_pannier The question is `How many bicycle panniers can be rented here?` -*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set + +*{capacity:bicycle_pannier} bicycle panniers can be rented here* is shown if `capacity:bicycle_pannier` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*bicycle_pannier.*)$ This tagrendering has labels @@ -1834,7 +1951,8 @@ This tagrendering has labels ### rental-capacity-tandem_bicycle The question is `How many tandem can be rented here?` -*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set + +*{capacity:tandem_bicycle} tandem can be rented here* is shown if `capacity:tandem_bicycle` is set. This tagrendering is only visible in the popup if the following condition is met: rental~^(.*tandem_bicycle.*)$ This tagrendering has labels @@ -1843,6 +1961,7 @@ This tagrendering has labels ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -1852,16 +1971,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/transit.md b/Docs/Themes/transit.md index fad8b694f6..3d29eaaaa8 100644 --- a/Docs/Themes/transit.md +++ b/Docs/Themes/transit.md @@ -83,11 +83,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -97,11 +99,13 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/uk_addresses.md b/Docs/Themes/uk_addresses.md index bd39206022..2bd33f3c80 100644 --- a/Docs/Themes/uk_addresses.md +++ b/Docs/Themes/uk_addresses.md @@ -128,11 +128,13 @@ Elements must match **all** of the following expressions: ### uk_addresses_explanation _This tagrendering has no question and is thus read-only_ + *We think there should be an address here. Please click below to add it.* ### uk_addresses_embedding_outline _This tagrendering has no question and is thus read-only_ + *Warning: This point lies within a building or area for which we already have an address. You should only add this address if it is different.
The number and street name we have for the existing address is {_embedding_object:addr:housenumber} {_embedding_object:addr:street}* - *Warning: The property boundary containing this point already contains at least one recorded address. You should only add this address if it is different.* is shown if with _embedding_object:id=true @@ -143,11 +145,13 @@ This tagrendering is only visible in the popup if the following condition is met ### uk_addresses_import_button _This tagrendering has no question and is thus read-only_ + *{import_button(address,urpn_count=$urpn_count;ref:GB:uprn=$ref:GB:uprn$,Add this address,./assets/themes/uk_addresses/housenumber_add.svg,,,,,)}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -157,6 +161,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -233,11 +238,13 @@ Elements must match **any** of the following expressions: ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### preview _This tagrendering has no question and is thus read-only_ + *
The envelope below shows the address that we have recorded. You can change this by answering any remaining questions above, or by clicking the pencil icons below. We do not need you to provide a recipient's name or any of the parts shown in [blue].
{addr:unit} {addr:housename}
{addr:housenumber} {addr:street}
{addr:parentstreet}
[Suburb]
[Town]
[Postal code]
* - *
The envelope below shows the address that we have recorded. You can change this by answering any remaining questions above, or by clicking the pencil icons below. We do not need you to provide a recipient's name or any of the parts shown in [blue].
{addr:unit} {addr:housename}
{addr:housenumber} {addr:substreet}
{addr:street}
{addr:parentstreet}
[Suburb]
[Town]
[Postal code]
* is shown if with addr:substreet~.+ @@ -245,7 +252,8 @@ _This tagrendering has no question and is thus read-only_ ### uk_addresses_unit The question is `What is the sub-unit for this address? ` -*
Sub-unit (e.g. 1, Flat 2, Unit C)
{addr:unit}
* is shown if `addr:unit` is set + +*
Sub-unit (e.g. 1, Flat 2, Unit C)
{addr:unit}
* is shown if `addr:unit` is set. - *
Sub-unit (e.g. 1, Flat 2, Unit C)
There is no sub-unit within this address
* is shown if with not:addr:unit=yes. _This option cannot be chosen as answer_ - *There is no sub-unit within this address* is shown if with not:addr:unit=yes @@ -256,7 +264,8 @@ This tagrendering is only visible in the popup if the following condition is met ### uk_addresses_housename The question is `What is the house or building name for this address?` -*
House or building name
{addr:housename}
* is shown if `addr:housename` is set + +*
House or building name
{addr:housename}
* is shown if `addr:housename` is set. - *
House or building name
This building has no housename
* is shown if with nohousename=yes & addr:housename=. _This option cannot be chosen as answer_ - *This building has no housename* is shown if with nohousename=yes & addr:housename= @@ -265,7 +274,8 @@ The question is `What is the house or building name for this address?` ### uk_addresses_housenumber The question is `What is the house or building number for this address?` -*
Number (e.g. 1, 1A, 2)
{addr:housenumber}
* is shown if `addr:housenumber` is set + +*
Number (e.g. 1, 1A, 2)
{addr:housenumber}
* is shown if `addr:housenumber` is set. - *
Number (e.g. 1, 1A, 2)
This building has no house number
* is shown if with nohousenumber=yes. _This option cannot be chosen as answer_ - *This building has no house number* is shown if with nohousenumber=yes @@ -273,7 +283,8 @@ The question is `What is the house or building number for this address?` ### uk_addresses_placename The question is `What is the place or locality for this address?` -*
Place (e.g. Castle Mews, West Business Park)
{addr:substreet}
* is shown if `addr:substreet` is set + +*
Place (e.g. Castle Mews, West Business Park)
{addr:substreet}
* is shown if `addr:substreet` is set. - *
Place (e.g. Castle Mews, West Business Park)
No extra place name is given or needed
* is shown if with not:addr:substreet=yes. _This option cannot be chosen as answer_ - *No extra place name is given or needed* is shown if with not:addr:substreet=yes @@ -282,7 +293,8 @@ The question is `What is the place or locality for this address?` ### uk_addresses_placename_with_parent The question is `What is the place or locality for this address?` -*
Place (e.g. Castle Mews, West Business Park)
{addr:substreet}
* is shown if `addr:substreet` is set + +*
Place (e.g. Castle Mews, West Business Park)
{addr:substreet}
* is shown if `addr:substreet` is set. - *
Place (e.g. Castle Mews, West Business Park)
No extra place name is given or needed
* is shown if with not:addr:substreet=yes. _This option cannot be chosen as answer_ - *No extra place name is given or needed* is shown if with not:addr:substreet=yes @@ -293,7 +305,8 @@ This tagrendering is only visible in the popup if the following condition is met ### uk_addresses_street The question is `What is the street name for this address?` -*
Street name
{addr:street}
* is shown if `addr:street` is set + +*
Street name
{addr:street}
* is shown if `addr:street` is set. - *
Street name
{_closest_street:0:name}
* is shown if with addr:street=. _This option cannot be chosen as answer_ - *
Street name
{_closest_street:1:name}
* is shown if with addr:street=. _This option cannot be chosen as answer_ @@ -305,7 +318,8 @@ The question is `What is the street name for this address?` ### uk_addresses_parentstreet The question is `What is the parent street name for this address?` -*
Parent street name
{addr:parentstreet}
* is shown if `addr:parentstreet` is set + +*
Parent street name
{addr:parentstreet}
* is shown if `addr:parentstreet` is set. - *
Parent street name
No parent street name is needed within this address
* is shown if with not:addr:parentstreet=yes. _This option cannot be chosen as answer_ - *No parent street name is needed within this address* is shown if with not:addr:parentstreet=yes @@ -322,23 +336,27 @@ This tagrendering is only visible in the popup if the following condition is met ### fixme The question is `Please explain what the address is so that someone else can look at it` -*This address is complicated. We have recorded the following description: {fixme:addr}* is shown if `fixme:addr` is set + +*This address is complicated. We have recorded the following description: {fixme:addr}* is shown if `fixme:addr` is set. - *Complicated address? Please click the pencil and write some text to describe the situation. You can also add a photo below if that helps* is shown if with fixme:addr=. _This option cannot be chosen as answer_ ### address-sign-image _This tagrendering has no question and is thus read-only_ + *{image_carousel(image:address)}
{image_upload(image:address, Too complex? Add a photo of the address)}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/velopark.md b/Docs/Themes/velopark.md index 3ca04ed42e..315695cf43 100644 --- a/Docs/Themes/velopark.md +++ b/Docs/Themes/velopark.md @@ -155,13 +155,15 @@ Elements must match the expression **mr_taskId~.+** ### velopark-ref The question is `What is the URL of the data path within Velopark?` -*This bicycle parking is on OpenStreetMap and is linked to Velopark:{link(&LBRACEref:velopark&RBRACE,&LBRACEref:velopark&RBRACE,,,,)}* is shown if `ref:velopark` is set + +*This bicycle parking is on OpenStreetMap and is linked to Velopark:{link(&LBRACEref:velopark&RBRACE,&LBRACEref:velopark&RBRACE,,,,)}* is shown if `ref:velopark` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=bicycle_parking ### comparison_tool _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website(ref:velopark,no,https://data.velopark.be,,no)}* This tagrendering is only visible in the popup if the following condition is met: mr_taskId= & ref:velopark~^(https:\/\/data.velopark.be\/data\/.*)$ @@ -169,26 +171,31 @@ This tagrendering is only visible in the popup if the following condition is met ### login _This tagrendering has no question and is thus read-only_ + *{login_button(,)}* ### is_linked _This tagrendering has no question and is thus read-only_ -*{link(Matched with bicycle parking &LBRACE_osm_parkings_with_this_velopark_ref&RBRACE,#&LBRACE_osm_parkings_with_this_velopark_ref&RBRACE,,,,)}* is shown if `_osm_parkings_with_this_velopark_ref` is set + +*{link(Matched with bicycle parking &LBRACE_osm_parkings_with_this_velopark_ref&RBRACE,#&LBRACE_osm_parkings_with_this_velopark_ref&RBRACE,,,,)}* is shown if `_osm_parkings_with_this_velopark_ref` is set. ### velopark-link _This tagrendering has no question and is thus read-only_ + *This is data from Velopark. {link(See on velopark &LPARENSwebpage&RPARENS,https://www.velopark.be/static/data/&LBRACEmr_velopark_id&RBRACE,,,,)}* ### show-data-velopark _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website(ref:velopark,no,https://data.velopark.be,readonly,no)}* ### closest_parkings _This tagrendering has no question and is thus read-only_ + *

Nearby parkings

There are {_nearby_bicycle_parkings:count} bicycle parkings within {_distance_cutoff}m known in OpenStreetMap.* - *

No nearby parkings

There are no bicycle parkings in OpenStreetMap known within {_distance_cutoff}m* is shown if with _nearby_bicycle_parkings:count=0 @@ -196,6 +203,7 @@ _This tagrendering has no question and is thus read-only_ ### list_nearby_bike_parkings _This tagrendering has no question and is thus read-only_ + *Choose below which bicycle parking you want to link.{multi(_nearby_bicycle_parkings:props,&LBRACEid&RBRACE &LPARENS&LBRACE_distance&RBRACEm&COMMA &LBRACE_velopark:id&RBRACE&COMMA place for &LBRACEcapacity&RBRACE&COMMA covered: &LBRACEcovered&RBRACE&RPARENS &LBRACEminimap&LPARENS20&COMMAid&COMMA_mr_id&RPARENS&RBRACE &LBRACEtag_apply&LPARENSref:velopark=$_ref&COMMALink this object.&COMMAlink&COMMAid&COMMA_mr_id&RPARENS&RBRACE,p-2 m-1 my-4 border-2 border-dashed border-black)}* This tagrendering is only visible in the popup if the following condition is met: _nearby_bicycle_parkings:count>0 & mr_taskStatus=Created @@ -203,6 +211,7 @@ This tagrendering is only visible in the popup if the following condition is met ### title_create_new _This tagrendering has no question and is thus read-only_ + *

Add a parking to OpenStreetMap

Use this if the bicycle parking is missing in OpenStreetMap (there is no blue or green pin)* This tagrendering is only visible in the popup if the following condition is met: mr_taskStatus=Created @@ -210,6 +219,7 @@ This tagrendering is only visible in the popup if the following condition is met ### import_point _This tagrendering has no question and is thus read-only_ + *{import_button(bike_parking_with_velopark_ref bike_parking,amenity=bicycle_parking;ref:velopark=$ref:velopark,Create a new bicycle parking in OSM. This parking will have the link&COMMA you'll be able to copy the attributes in the next step,,,,,mr_taskId,yes)}* This tagrendering is only visible in the popup if the following condition is met: mr_taskStatus=Created @@ -217,6 +227,7 @@ This tagrendering is only visible in the popup if the following condition is met ### title_manually_copy _This tagrendering has no question and is thus read-only_ + *

Manually link

Does the bicycle parking exist in OpenStreetMap but is it further then 25m away? Then:
  1. Copy the following URL: {ref:velopark}
  2. Select the correct bicycle parking on the map
  3. Paste the URL into the question What is the URL of the data path in Velopark?
  4. Mark this item as handled with the button below:
  5. * This tagrendering is only visible in the popup if the following condition is met: mr_taskStatus=Created @@ -224,6 +235,7 @@ This tagrendering is only visible in the popup if the following condition is met ### close_mr _This tagrendering has no question and is thus read-only_ + *{maproulette_set_status(Mark this item as linked manually. Use this if you did apply the reference via copy-paste or via another editor,,,1,,)}* This tagrendering is only visible in the popup if the following condition is met: mr_taskStatus=Created @@ -231,6 +243,7 @@ This tagrendering is only visible in the popup if the following condition is met ### title_error _This tagrendering has no question and is thus read-only_ + *

    Closing without importing or linking

    * This tagrendering is only visible in the popup if the following condition is met: mr_taskStatus=Created @@ -238,6 +251,7 @@ This tagrendering is only visible in the popup if the following condition is met ### close_mr_incorrect _This tagrendering has no question and is thus read-only_ + *{maproulette_set_status(Mark this item as incorrect or too hard to solve &LPARENSduplicate&COMMA does not exist anymore&COMMA contradictory data&COMMA not placeable from aerial imagery&RPARENS,invalid,,6,,Is this point incorrect or is it difficult to solve? Please provide some feedback below)}* This tagrendering is only visible in the popup if the following condition is met: mr_taskStatus=Created @@ -245,21 +259,25 @@ This tagrendering is only visible in the popup if the following condition is met ### title_debug _This tagrendering has no question and is thus read-only_ + *

    Extra information

    * ### velopark-data-link _This tagrendering has no question and is thus read-only_ + *{link(Inspect raw data on velopark.be,&LBRACEref:velopark&RBRACE,,,,)}* ### nearby_images _This tagrendering has no question and is thus read-only_ + *{nearby_images(,readonly)}* ### no_save_needed _This tagrendering has no question and is thus read-only_ + *Changes are automatically saved. You can simply close this popup with the cross at the upper-right* This tagrendering is only visible in the popup if the following condition is met: id~^(node\/*)$ | id~^(way\/*)$ | id~^(relation\/*)$ @@ -267,6 +285,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -276,6 +295,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -369,13 +389,15 @@ Elements must match **all** of the following expressions: ### velopark-ref The question is `What is the URL of the data path within Velopark?` -*This bicycle parking is on OpenStreetMap and is linked to Velopark:{link(&LBRACEref:velopark&RBRACE,&LBRACEref:velopark&RBRACE,,,,)}* is shown if `ref:velopark` is set + +*This bicycle parking is on OpenStreetMap and is linked to Velopark:{link(&LBRACEref:velopark&RBRACE,&LBRACEref:velopark&RBRACE,,,,)}* is shown if `ref:velopark` is set. This tagrendering is only visible in the popup if the following condition is met: amenity=bicycle_parking ### comparison_tool _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website(ref:velopark,no,https://data.velopark.be,,no)}* This tagrendering is only visible in the popup if the following condition is met: mr_taskId= & ref:velopark~^(https:\/\/data.velopark.be\/data\/.*)$ @@ -383,22 +405,26 @@ This tagrendering is only visible in the popup if the following condition is met ### questions-intro _This tagrendering has no question and is thus read-only_ + *The question(s) below inquiry about attributes that are not yet known in OpenStreetMap* ### questions Show the questions block at this location _This tagrendering has no question and is thus read-only_ + *{questions()}* ### osm-block-title _This tagrendering has no question and is thus read-only_ + *

    Attributes from OpenStreetMap

    Editing below will make changes directly in OpenStreetMap* ### Bicycle parking type The question is `What is the type of this bicycle parking?` -*This is a bicycle parking of the type: {bicycle_parking}* is shown if `bicycle_parking` is set + +*This is a bicycle parking of the type: {bicycle_parking}* is shown if `bicycle_parking` is set. - *Stands* is shown if with bicycle_parking=stands - *Rack with side loops* is shown if with bicycle_parking=safe_loops @@ -436,12 +462,14 @@ The question is `Is this parking covered?` ### Capacity The question is `How many bicycles fit in this bicycle parking?` -*Place for {capacity} bikes* is shown if `capacity` is set + +*Place for {capacity} bikes* is shown if `capacity` is set. ### Access The question is `Who can use this bicycle parking?` -*{access}* is shown if `access` is set + +*{access}* is shown if `access` is set. - *Publicly accessible* is shown if with access=yes - *Access is primarily for visitors to a business* is shown if with access=customers @@ -458,14 +486,16 @@ The question is `Are these bicycle parkings free to use?` ### charge The question is `How much does it cost to park your bike here?` -*Parking your bike costs {charge}* is shown if `charge` is set + +*Parking your bike costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: fee=yes ### opening_hours_24_7_default The question is `What are the opening hours of {title()}?` -*

    Opening hours

    {opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

    Opening hours

    {opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -473,12 +503,14 @@ The question is `What are the opening hours of {title()}?` ### operator The question is `Who maintains this bicycle parking?` -*This bicycle parking is maintained by {operator}* is shown if `operator` is set + +*This bicycle parking is maintained by {operator}* is shown if `operator` is set. ### operator_phone The question is `What is the phone number of the operator of this bicycle parking?` -*{operator:phone}* is shown if `operator:phone` is set + +*{operator:phone}* is shown if `operator:phone` is set. - *{phone}* is shown if with phone~.+. _This option cannot be chosen as answer_ - *{contact:phone}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -486,7 +518,8 @@ The question is `What is the phone number of the operator of this bicycle parkin ### operator_website The question is `What is the website number of the operator of this bicycle parking?` -*{operator:website}* is shown if `operator:website` is set + +*{operator:website}* is shown if `operator:website` is set. - *{website}* is shown if with website~.+. _This option cannot be chosen as answer_ - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -494,7 +527,8 @@ The question is `What is the website number of the operator of this bicycle park ### operator_email The question is `What is the email address of the operator of this bicycle parking?` -*{operator:email}* is shown if `operator:email` is set + +*{operator:email}* is shown if `operator:email` is set. ### Cargo bike spaces? @@ -507,7 +541,8 @@ The question is `Does this bicycle parking have spots for cargo bikes?` ### Cargo bike capacity? The question is `How many cargo bicycles fit in this bicycle parking?` -*This parking fits {capacity:cargo_bike} cargo bikes* is shown if `capacity:cargo_bike` is set + +*This parking fits {capacity:cargo_bike} cargo bikes* is shown if `capacity:cargo_bike` is set. - *There are no dedicated spaces for cargo bikes here or parking cargo bikes here is not allowed* is shown if with cargo_bike=no @@ -516,26 +551,31 @@ This tagrendering is only visible in the popup if the following condition is met ### maxstay The question is `What is the maximum allowed parking duration?` -*A bike can be parked here for at most {canonical(maxstay)}* is shown if `maxstay` is set + +*A bike can be parked here for at most {canonical(maxstay)}* is shown if `maxstay` is set. ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -544,6 +584,7 @@ This tagrendering has labels ### no_save_needed _This tagrendering has no question and is thus read-only_ + *Changes are automatically saved. You can simply close this popup with the cross at the upper-right* This tagrendering is only visible in the popup if the following condition is met: id~^(node\/*)$ | id~^(way\/*)$ | id~^(relation\/*)$ diff --git a/Docs/Themes/vending_machine.md b/Docs/Themes/vending_machine.md index bed84b7a79..d1d9314798 100644 --- a/Docs/Themes/vending_machine.md +++ b/Docs/Themes/vending_machine.md @@ -137,11 +137,13 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### repeated _This tagrendering has no question and is thus read-only_ + *Multiple, identical objects can be found on floors {repeat_on}.* This tagrendering is only visible in the popup if the following condition is met: repeat_on~.+ @@ -151,7 +153,8 @@ This tagrendering has labels ### single_level The question is `On what level is this feature located?` -*Located on the {level}th floor* is shown if `level` is set + +*Located on the {level}th floor* is shown if `level` is set. - *Located underground* is shown if with location=underground. _This option cannot be chosen as answer_ - *Located on the ground floor* is shown if with level=0 @@ -165,7 +168,8 @@ This tagrendering has labels ### vending The question is `What does this vending machine sell?` -*This vending machine sells {vending}* is shown if `vending` is set + +*This vending machine sells {vending}* is shown if `vending` is set. - *Drinks are sold* is shown if with vending=drinks - *Sweets are sold* is shown if with vending=sweets @@ -200,7 +204,8 @@ The question is `What does this vending machine sell?` ### bicycle_tube_vending_machine-brand The question is `Which brand of tubes are sold here?` -*{brand} tubes are sold here* is shown if `brand` is set + +*{brand} tubes are sold here* is shown if `brand` is set. - *Continental tubes are sold here* is shown if with brand=Continental - *Schwalbe tubes are sold here* is shown if with brand=Schwalbe @@ -210,7 +215,8 @@ This tagrendering is only visible in the popup if the following condition is met ### opening_hours_24_7 The question is `What are the opening hours of {title()}?` -*

    Opening hours

    {opening_hours_table(opening_hours)}* is shown if `opening_hours` is set + +*

    Opening hours

    {opening_hours_table(opening_hours)}* is shown if `opening_hours` is set. - *24/7 opened (including holidays)* is shown if with opening_hours=24/7 - *Marked as closed for an unspecified time* is shown if with opening_hours=closed. _This option cannot be chosen as answer_ @@ -272,7 +278,8 @@ This tagrendering is only visible in the popup if the following condition is met ### operator The question is `Who operates this vending machine?` -*This vending machine is operated by {operator}* is shown if `operator` is set + +*This vending machine is operated by {operator}* is shown if `operator` is set. ### indoor @@ -285,7 +292,8 @@ The question is `Is this vending machine indoors?` ### phone The question is `What is the phone number of the operator of this vending machine?` -*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set + +*{link(&LBRACEphone&RBRACE,tel:&LBRACEphone&RBRACE,,,,)}* is shown if `phone` is set. - *{link(&LBRACEcontact:phone&RBRACE,tel:&LBRACEcontact:phone&RBRACE,,,,)}* is shown if with contact:phone~.+. _This option cannot be chosen as answer_ @@ -295,7 +303,8 @@ This tagrendering has labels ### website The question is `What is the website of {title()}?` -*{website}* is shown if `website` is set + +*{website}* is shown if `website` is set. - *{contact:website}* is shown if with contact:website~.+. _This option cannot be chosen as answer_ @@ -305,21 +314,24 @@ This tagrendering has labels ### charge_bicycle_tube The question is `How much does a a bicycle tube cost?` -*a bicycle tube costs {charge}* is shown if `charge` is set + +*a bicycle tube costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_tube.*)$ ### charge_bicycle_light The question is `How much does a bicycle light cost?` -*bicycle light costs {charge}* is shown if `charge` is set + +*bicycle light costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*bicycle_light.*)$ ### charge_condom The question is `How much does a a condom cost?` -*a condom costs {charge}* is shown if `charge` is set + +*a condom costs {charge}* is shown if `charge` is set. This tagrendering is only visible in the popup if the following condition is met: vending~^(.*condom.*)$ @@ -335,6 +347,7 @@ The question is `Is this vending machine still operational?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -344,16 +357,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/walkingnodes.md b/Docs/Themes/walkingnodes.md index d231de5c3c..5ec24cf5ab 100644 --- a/Docs/Themes/walkingnodes.md +++ b/Docs/Themes/walkingnodes.md @@ -101,18 +101,21 @@ Elements must match **all** of the following expressions: ### node2node-survey:date The question is `When was this node to node link last surveyed?` -*This node to node link was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This node to node link was last surveyed on {survey:date}* is shown if `survey:date` is set. - *This object was last surveyed today* is shown if with survey:date= ### export_as_gpx Shows a button to export this feature as GPX. Especially useful for route relations _This tagrendering has no question and is thus read-only_ + *{export_as_gpx()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -122,6 +125,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -171,30 +175,35 @@ Elements must match **any** of the following expressions: ### node-rwn_ref The question is `What is the reference number of this walking node?` -*This walking node has reference number {rwn_ref}* is shown if `rwn_ref` is set + +*This walking node has reference number {rwn_ref}* is shown if `rwn_ref` is set. This tagrendering is only visible in the popup if the following condition is met: rwn_ref~.+ ### survey_date The question is `When was this walking node last surveyed?` -*This walking node was last surveyed on {survey:date}* is shown if `survey:date` is set + +*This walking node was last surveyed on {survey:date}* is shown if `survey:date` is set. - *This object was last surveyed today* is shown if with survey:date= ### node-expected_rwn_route_relations The question is `How many other walking nodes does this node link to?` -*This node links to {expected_rwn_route_relations} other walking nodes.* is shown if `expected_rwn_route_relations` is set + +*This node links to {expected_rwn_route_relations} other walking nodes.* is shown if `expected_rwn_route_relations` is set. ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -204,6 +213,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -259,32 +269,37 @@ Elements must match **all** of the following expressions: ### images This block shows the known images which are linked with the `image`-keys, but also via `mapillary` and `wikidata` and shows the button to upload new images _This tagrendering has no question and is thus read-only_ + *{image_carousel()}{image_upload()}* ### name The question is `What is the name noted on this guidepost?` -*Name noted on the guidepost: {name}* is shown if `name` is set + +*Name noted on the guidepost: {name}* is shown if `name` is set. - *There is no name noted on this guidepost* is shown if with noname=yes ### ref The question is `What is the reference number of this guidepost?` -*Reference number of the guidepost: {ref}* is shown if `ref` is set + +*Reference number of the guidepost: {ref}* is shown if `ref` is set. - *There is no reference number noted on this guidepost* is shown if with noref=yes ### ele The question is `What is the elevation noted on this guidepost?` -*Elevation noted on the guidepost: {ele} m* is shown if `ele` is set + +*Elevation noted on the guidepost: {ele} m* is shown if `ele` is set. - *There is no elevation noted on this guidepost* is shown if with noele=yes ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -294,16 +309,19 @@ This tagrendering has labels ### move-button _This tagrendering has no question and is thus read-only_ + *{move_button()}* ### delete-button _This tagrendering has no question and is thus read-only_ + *{delete_button()}* ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/waste_assen.md b/Docs/Themes/waste_assen.md index b31936c0c1..06c1306f10 100644 --- a/Docs/Themes/waste_assen.md +++ b/Docs/Themes/waste_assen.md @@ -71,11 +71,13 @@ Elements must match the expression **OBJECTID~.+** ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -85,6 +87,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels @@ -121,11 +124,13 @@ Elements must match the expression **OBJECTID~.+** ### all_tags Shows a table with all the tags of the feature _This tagrendering has no question and is thus read-only_ + *{all_tags()}* ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -135,6 +140,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/width.md b/Docs/Themes/width.md index a871a678d9..4fc176d176 100644 --- a/Docs/Themes/width.md +++ b/Docs/Themes/width.md @@ -79,11 +79,13 @@ Elements must match the expression **width:carriageway~.+** ### carriageway_width The question is `Hoe breed is deze straat?` -*Deze straat is {width:carriageway}m breed* is shown if `width:carriageway` is set + +*Deze straat is {width:carriageway}m breed* is shown if `width:carriageway` is set. ### too_little_width _This tagrendering has no question and is thus read-only_ + *Deze straat heeft {_width:difference}m te weinig. De ruimte die nodig zou zijn is:* - *Deze straat is breed genoeg:* is shown if with _width:difference~^(-.*)$ | _width:difference=0 @@ -91,6 +93,7 @@ _This tagrendering has no question and is thus read-only_ ### needed_for_cars _This tagrendering has no question and is thus read-only_ + *{_width:needed:cars}m voor het autoverkeer* - *{_width:needed:cars}m voor het éénrichtings-autoverkeer* is shown if with oneway=yes @@ -99,11 +102,13 @@ _This tagrendering has no question and is thus read-only_ ### needed_for_parking _This tagrendering has no question and is thus read-only_ + *{_width:needed:parking}m voor het geparkeerde wagens* ### needed_for_cyclists _This tagrendering has no question and is thus read-only_ + *{_width:needed:cyclists}m voor fietsers* - *Fietsers hebben hier een vrijliggend fietspad en worden dus niet meegerekend* is shown if with bicycle=use_sidepath @@ -112,6 +117,7 @@ _This tagrendering has no question and is thus read-only_ ### needed_for_pedestrians _This tagrendering has no question and is thus read-only_ + *{_width:needed:pedestrians}m voor voetgangers* - *{_width:needed:pedestrians}m voor voetgangers: er zijn hier geen voetpaden* is shown if with sidewalk=none | sidewalk=no @@ -120,6 +126,7 @@ _This tagrendering has no question and is thus read-only_ ### total_width_needed _This tagrendering has no question and is thus read-only_ + *{_width:needed:total}m nodig in het totaal* ### has_sidewalks @@ -136,6 +143,7 @@ This tagrendering is only visible in the popup if the following condition is met ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -145,6 +153,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/Themes/winter_service.md b/Docs/Themes/winter_service.md index 0d4f9e82f7..3a1f071a59 100644 --- a/Docs/Themes/winter_service.md +++ b/Docs/Themes/winter_service.md @@ -77,6 +77,7 @@ The question is `Is this road serviced (e.g. cleared of snow) in winter?` ### leftover-questions _This tagrendering has no question and is thus read-only_ + *{questions( ,hidden)}* This tagrendering has labels @@ -86,6 +87,7 @@ This tagrendering has labels ### lod _This tagrendering has no question and is thus read-only_ + *{linked_data_from_website()}* This tagrendering has labels diff --git a/Docs/URL_Parameters.md b/Docs/URL_Parameters.md index f850334b4c..74ae143e15 100644 --- a/Docs/URL_Parameters.md +++ b/Docs/URL_Parameters.md @@ -419,7 +419,7 @@ The default value is _false_ The mode the application starts in, e.g. 'map', 'dashboard' or 'statistics' -This documentation is defined in the source code at [generateDocs.ts](ervdvn/git2/MapComplete/scripts/generateDocs.ts#L455) +This documentation is defined in the source code at [generateDocs.ts](ervdvn/git2/MapComplete/scripts/generateDocs.ts#L463) The default value is _map_ diff --git a/Docs/builtin_units.md b/Docs/builtin_units.md index f2641f2622..d1af260a65 100644 --- a/Docs/builtin_units.md +++ b/Docs/builtin_units.md @@ -99,6 +99,10 @@ Units #### MW +Validator is *float* + +1MW = 1000000MW + Alternative denominations: - megawatts @@ -106,6 +110,10 @@ Alternative denominations: #### kW +Validator is *float* + +1kW = 1000MW + Alternative denominations: - kilowatts @@ -113,6 +121,8 @@ Alternative denominations: #### W +Validator is *float* + Alternative denominations: - watts @@ -120,6 +130,10 @@ Alternative denominations: #### GW +Validator is *float* + +1GW = 1000000000MW + Alternative denominations: - gigawatts @@ -129,6 +143,8 @@ Alternative denominations: #### V +Validator is *float* + Alternative denominations: - v @@ -140,6 +156,8 @@ Alternative denominations: #### A +Validator is *float* + Alternative denominations: - a @@ -151,6 +169,8 @@ Alternative denominations: #### m +Validator is *float* + *Default denomination* Alternative denominations: @@ -160,6 +180,10 @@ Alternative denominations: #### cm +Validator is *float* + +1cm = 0.01m + Alternative denominations: - centimeter @@ -168,6 +192,10 @@ Alternative denominations: #### mm +Validator is *float* + +1mm = 0.001m + Alternative denominations: - millimeter @@ -175,6 +203,10 @@ Alternative denominations: #### ft +Validator is *float* + +1ft = 0.3048m + Alternative denominations: - feet @@ -184,6 +216,8 @@ Alternative denominations: #### kmh +Validator is *float* + Alternative denominations: - km/u @@ -192,6 +226,8 @@ Alternative denominations: #### mph +Validator is *float* + Default denomination in the following countries: - gb @@ -207,6 +243,8 @@ Alternative denominations: #### minutes +Validator is *float* + Alternative denominations: - m @@ -217,6 +255,8 @@ Alternative denominations: #### hours +Validator is *float* + Alternative denominations: - h @@ -228,6 +268,8 @@ Alternative denominations: #### days +Validator is *float* + Alternative denominations: - dys @@ -236,9 +278,15 @@ Alternative denominations: #### weeks +Validator is *float* + #### months +Validator is *float* + #### years +Validator is *float* + This document is autogenerated from [assets/layers/unit/unit.json](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/assets/layers/unit/unit.json), [src/Models/ThemeConfig/Json/UnitConfigJson.ts](https://source.mapcomplete.org/MapComplete/MapComplete/src/branch/develop/src/Models/ThemeConfig/Json/UnitConfigJson.ts) From e71a80732e96d247c584cee81038b635012e7989 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 20 May 2025 00:32:53 +0200 Subject: [PATCH 16/53] Studio: add space in button --- src/UI/Studio/EditItemButton.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Studio/EditItemButton.svelte b/src/UI/Studio/EditItemButton.svelte index 0628977a0c..444646d3fc 100644 --- a/src/UI/Studio/EditItemButton.svelte +++ b/src/UI/Studio/EditItemButton.svelte @@ -31,7 +31,7 @@ {info.id} {#if info.owner && info.owner !== $selfId} {#if $displayName} - (made by {$displayName} + (made by {$displayName}   {info.owner} ) {:else} From 1e0ac3febf06272a5978a87cceeb281929356936 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 20 May 2025 00:34:39 +0200 Subject: [PATCH 17/53] Themes(toilets): add an allowed range to some freeform inputs, allow to specify 'units' in the freeform, add the possibility to convert units --- .../adult_changing_table.json | 76 +++++++++++-------- assets/layers/entrance/entrance.json | 48 +++++++----- assets/layers/toilet/toilet.json | 30 ++++---- assets/layers/unit/unit.json | 18 +++-- langs/en.json | 6 ++ scripts/generateDocs.ts | 10 ++- src/Models/Denomination.ts | 29 ++++--- .../ThemeConfig/Conversion/PrepareLayer.ts | 2 + .../QuestionableTagRenderingConfigJson.ts | 10 +++ src/Models/ThemeConfig/Json/UnitConfigJson.ts | 8 +- src/Models/ThemeConfig/TagRenderingConfig.ts | 44 +++++++++-- src/Models/Unit.ts | 19 ++++- src/UI/InputElement/ValidatedInput.svelte | 61 +++++++++++++-- .../InputElement/Validators/FloatValidator.ts | 7 +- .../Popup/TagRendering/FreeformInput.svelte | 2 + .../TagRendering/TagRenderingQuestion.svelte | 3 +- 16 files changed, 270 insertions(+), 103 deletions(-) diff --git a/assets/layers/adult_changing_table/adult_changing_table.json b/assets/layers/adult_changing_table/adult_changing_table.json index f32be1606e..03781d6206 100644 --- a/assets/layers/adult_changing_table/adult_changing_table.json +++ b/assets/layers/adult_changing_table/adult_changing_table.json @@ -79,7 +79,20 @@ ], "freeform": { "key": "height", - "type": "pfloat" + "type": "pfloat", + "unit": { + "quantity": "distance", + "denominations": [ + "m", + "cm" + ] + }, + "range": { + "warnBelow": 0.8, + "warnAbove": 1.7, + "min": 0.4, + "max": 2 + } }, "render": { "en": "The changing table is {canonical(height)} high", @@ -104,7 +117,20 @@ }, "freeform": { "key": "min_height", - "type": "pfloat" + "type": "pfloat", + "unit": { + "quantity": "distance", + "denominations": [ + "m", + "cm" + ] + }, + "range": { + "warnBelow": 0.8, + "warnAbove": 1.7, + "min": 0.4, + "max": 2 + } }, "render": { "en": "The lowest height of the adult changing table is {canonical(min_height)}", @@ -134,7 +160,20 @@ }, "freeform": { "key": "max_height", - "type": "pfloat" + "type": "pfloat", + "unit": { + "quantity": "distance", + "denominations": [ + "m", + "cm" + ] + }, + "range": { + "warnBelow": 0.8, + "warnAbove": 1.7, + "min": 0.4, + "max": 2 + } }, "render": { "en": "The highest height of the adult changing table is {canonical(max_height)}", @@ -226,34 +265,5 @@ "en": "Adult changing table", "nl": "Verzorgingstafel voor volwassenen", "it": "Fasciatoio per adulti" - }, - "units": [ - { - "adult:height": { - "quantity": "distance", - "denominations": [ - "m", - "cm" - ] - } - }, - { - "adult:min_height": { - "quantity": "distance", - "denominations": [ - "m", - "cm" - ] - } - }, - { - "adult:max_height": { - "quantity": "distance", - "denominations": [ - "m", - "cm" - ] - } - } - ] + } } diff --git a/assets/layers/entrance/entrance.json b/assets/layers/entrance/entrance.json index 3f95503155..296dc45c58 100644 --- a/assets/layers/entrance/entrance.json +++ b/assets/layers/entrance/entrance.json @@ -588,7 +588,20 @@ }, "freeform": { "key": "width", - "type": "pfloat" + "type": "pfloat", + "unit": { + "quantity": "distance", + "canonical": "m", + "denominations": [ + "cm" + ] + }, + "range": { + "warnBelow": 0.8, + "warnAbove": 1.7, + "min": 0.4, + "max": 2 + } } }, { @@ -629,7 +642,18 @@ "es": "Altura del bordillo de la puerta", "it": "Altezza del gradino della porta" }, - "type": "pfloat" + "type": "pfloat", + "unit": { + "quantity": "distance", + "canonical": "m", + "denominations": [ + "cm" + ] + }, + "range": { + "warnAbove": 0.25, + "max": 0.5 + } }, "mappings": [ { @@ -720,23 +744,5 @@ "allowMove": { "enableImproveAccuracy": true, "enableRelocation": false - }, - "units": [ - { - "kerb:height": { - "quantity": "distance", - "canonical": "m", - "denominations": [ - "cm" - ] - }, - "width": { - "quantity": "distance", - "canonical": "m", - "denominations": [ - "cm" - ] - } - } - ] + } } diff --git a/assets/layers/toilet/toilet.json b/assets/layers/toilet/toilet.json index 91c6087704..f9be205a91 100644 --- a/assets/layers/toilet/toilet.json +++ b/assets/layers/toilet/toilet.json @@ -1534,7 +1534,7 @@ }, "render": { "en": "The door to the wheelchair-accessible toilet is {canonical(door:width)} wide", - "nl": "De deur naar de rolstoeltoegankelijke toilet is {canonical(door:width)} wide", + "nl": "De deur naar de rolstoeltoegankelijke toilet is {canonical(door:width)}", "fr": "La porte des toilettes accessibles aux fauteuils roulants a une large de {canonical(door:width)}", "de": "Die Tür zur rollstuhlgerechten Toilette ist {canonical(door:width)} breit", "da": "Døren til det kørestolsvenlige toilet er {canonical(door:width)} bred", @@ -1545,7 +1545,20 @@ }, "freeform": { "key": "door:width", - "type": "pfloat" + "type": "pfloat", + "unit": { + "quantity": "distance", + "denominations": [ + "m", + "cm" + ] + }, + "range": { + "warnBelow": 0.6, + "min": 0.4, + "warnAbove": 2, + "max": 4 + } } }, { @@ -1734,16 +1747,5 @@ "allowMove": { "enableRelocation": false, "enableImproveAccuracy": true - }, - "units": [ - { - "door:width": { - "quantity": "distance", - "denominations": [ - "m", - "cm" - ] - } - } - ] + } } diff --git a/assets/layers/unit/unit.json b/assets/layers/unit/unit.json index 194af9e280..9aad86f5a9 100644 --- a/assets/layers/unit/unit.json +++ b/assets/layers/unit/unit.json @@ -36,7 +36,8 @@ "da": "{quantity} Megawatt", "cs": "{quantity} megawatty", "es": "{quantity} megavatios" - } + }, + "factorToCanonical": 1000000 }, { "canonicalDenomination": "kW", @@ -60,7 +61,8 @@ "da": "{quantity} Kilowatt", "cs": "{quantity} kilowatty", "es": "{quantity} kilovatios" - } + }, + "factorToCanonical": 1000 }, { "canonicalDenomination": "W", @@ -106,7 +108,8 @@ "cs": "{quantity} gigawatty", "zh_Hant": "{quantity} 千兆瓦", "es": "{quantity} gigavatios" - } + }, + "factorToCanonical": 1000000000 } ], "eraseInvalidValues": true @@ -231,7 +234,8 @@ "hu": "egy centiméter", "es": "un centímetro", "it": "one centimeter" - } + }, + "factorToCanonical": 0.01 }, { "canonicalDenomination": "mm", @@ -259,7 +263,8 @@ "hu": "egy milliméter", "es": "un milímetro", "it": "one millimeter" - } + }, + "factorToCanonical": 0.001 }, { "canonicalDenomination": "ft", @@ -283,7 +288,8 @@ "nb_NO": "{quantity} fot", "pa_PK": "{quantity} ؜ فوٹ", "hu": "{quantity} láb" - } + }, + "factorToCanonical": 0.3048 } ] }, diff --git a/langs/en.json b/langs/en.json index aee22b63c0..36e88bed16 100644 --- a/langs/en.json +++ b/langs/en.json @@ -858,6 +858,12 @@ "description": "a number", "feedback": "This is not a number" }, + "generic": { + "suspiciouslyHigh": "This value is suspiciously high. Are you sure it is correct?", + "suspiciouslyLow": "This value is suspiciously low. Are you sure it is correct?", + "tooHigh": "This value is too high - the highest allowed value is {max}", + "tooLow": "This value is too low - the lowest allowed value is {min}" + }, "id": { "description": "an identifier", "invalidCharacter": "An id can only contain letters, digits and underscores", diff --git a/scripts/generateDocs.ts b/scripts/generateDocs.ts index 6a09cb28ac..f85da064c7 100644 --- a/scripts/generateDocs.ts +++ b/scripts/generateDocs.ts @@ -280,11 +280,19 @@ export class GenerateDocs extends Script { "Units ", "## " + layer.id, ] - for (const unit of layer.units) { els.push("### " + unit.quantity) + const defaultUnit = unit.getDefaultDenomination(() => undefined) for (const denomination of unit.denominations) { els.push("#### " + denomination.canonical) + if (denomination.validator) { + els.push(`Validator is *${denomination.validator.name}*`) + } + + if (denomination.factorToCanonical) { + els.push(`1${denomination.canonical} = ${denomination.factorToCanonical}${defaultUnit.canonical}`) + } + if (denomination.useIfNoUnitGiven === true) { els.push("*Default denomination*") } else if ( diff --git a/src/Models/Denomination.ts b/src/Models/Denomination.ts index 94b9abfe54..6de24f3f7d 100644 --- a/src/Models/Denomination.ts +++ b/src/Models/Denomination.ts @@ -16,7 +16,12 @@ export class Denomination { public readonly alternativeDenominations: string[] public readonly human: TypedTranslation<{ quantity: string }> public readonly humanSingular?: Translation - private readonly _validator: Validator + public readonly validator: Validator + /** + * IF a conversion to the canonical value is possible, this is the factor. + * E.g. for "cm", the factor is 0.01, as "1cm = 0.01m" + */ + public readonly factorToCanonical?: number private constructor( canonical: string, @@ -27,7 +32,8 @@ export class Denomination { alternativeDenominations: string[], _human: TypedTranslation<{ quantity: string }>, _humanSingular: Translation, - validator: Validator + validator: Validator, + factorToCanonical: number ) { this.canonical = canonical this._canonicalSingular = _canonicalSingular @@ -37,7 +43,8 @@ export class Denomination { this.alternativeDenominations = alternativeDenominations this.human = _human this.humanSingular = _humanSingular - this._validator = validator + this.validator = validator + this.factorToCanonical = factorToCanonical } public static fromJson(json: DenominationConfigJson, validator: Validator, context: string) { @@ -73,7 +80,8 @@ export class Denomination { json.alternativeDenomination?.map((v) => v.trim()) ?? [], humanTexts, Translations.T(json.humanSingular, context + "humanSingular"), - validator + validator, + json.factorToCanonical ) } @@ -87,7 +95,8 @@ export class Denomination { this.alternativeDenominations, this.human, this.humanSingular, - this._validator + this.validator, + this.factorToCanonical ) } @@ -101,7 +110,8 @@ export class Denomination { [this.canonical, ...this.alternativeDenominations], this.human, this.humanSingular, - this._validator + this.validator, + this.factorToCanonical ) } @@ -217,10 +227,10 @@ export class Denomination { return null } - if (!this._validator.isValid(value.trim())) { + if (!this.validator.isValid(value.trim())) { return null } - return this._validator.reformat(value.trim()) + return this.validator.reformat(value.trim()) } withValidator(validator: Validator) { @@ -233,7 +243,8 @@ export class Denomination { this.alternativeDenominations, this.human, this.humanSingular, - validator + validator, + this.factorToCanonical ) } } diff --git a/src/Models/ThemeConfig/Conversion/PrepareLayer.ts b/src/Models/ThemeConfig/Conversion/PrepareLayer.ts index b33b76e1de..0fe8b64417 100644 --- a/src/Models/ThemeConfig/Conversion/PrepareLayer.ts +++ b/src/Models/ThemeConfig/Conversion/PrepareLayer.ts @@ -962,6 +962,7 @@ class MoveUnitConfigs extends DesugaringStep { json.units.push({ [qtr.freeform.key]: unitConfig }) + // Note: we do not delete the config - this way, if the tagRendering is imported in another layer, the unit comes along } return json } @@ -1052,6 +1053,7 @@ export class PrepareLayer extends Fuse { ), new AddFiltersFromTagRenderings(), new ExpandFilter(state), + new MoveUnitConfigs(), new PruneFilters() ) } diff --git a/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts b/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts index c27b0fed1a..50bbedff0c 100644 --- a/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts +++ b/src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson.ts @@ -312,6 +312,16 @@ export interface QuestionableTagRenderingConfigJson extends TagRenderingConfigJs canonical?: string inverted?: boolean + }, + /** + * question: In what range should the value be? + * For example, a door width under 65cm is suspicious, under 40cm it is a mistake. + */ + range?: { + min?: number, + warnBelow?: number, + warnAbove?: number + max?: number } } diff --git a/src/Models/ThemeConfig/Json/UnitConfigJson.ts b/src/Models/ThemeConfig/Json/UnitConfigJson.ts index 8ac5d25c32..82af97da71 100644 --- a/src/Models/ThemeConfig/Json/UnitConfigJson.ts +++ b/src/Models/ThemeConfig/Json/UnitConfigJson.ts @@ -85,7 +85,8 @@ export default interface UnitConfigJson { * When a default input method should be used, this can be specified by setting the canonical denomination here, e.g. * `defaultInput: "cm"`. This must be a denomination which appears in the applicableUnits */ - defaultInput?: string + defaultInput?: string, + } export interface DenominationConfigJson { @@ -154,4 +155,9 @@ export interface DenominationConfigJson { * E.g.: `50 mph` instad of `50mph` */ addSpace?: boolean + + /** + * If the canonical unit (e.g. 1m) is multiplied with the factorToCanonical (0.01) you will get the current unit (1cm) + */ + factorToCanonical?: number } diff --git a/src/Models/ThemeConfig/TagRenderingConfig.ts b/src/Models/ThemeConfig/TagRenderingConfig.ts index dbdcac8f0c..56ab043a44 100644 --- a/src/Models/ThemeConfig/TagRenderingConfig.ts +++ b/src/Models/ThemeConfig/TagRenderingConfig.ts @@ -5,10 +5,7 @@ import { TagUtils } from "../../Logic/Tags/TagUtils" import { And } from "../../Logic/Tags/And" import { Utils } from "../../Utils" import { Tag } from "../../Logic/Tags/Tag" -import { - MappingConfigJson, - QuestionableTagRenderingConfigJson, -} from "./Json/QuestionableTagRenderingConfigJson" +import { MappingConfigJson, QuestionableTagRenderingConfigJson } from "./Json/QuestionableTagRenderingConfigJson" import Validators, { ValidatorType } from "../../UI/InputElement/Validators" import { TagRenderingConfigJson } from "./Json/TagRenderingConfigJson" import { RegexTag } from "../../Logic/Tags/RegexTag" @@ -20,6 +17,7 @@ import MarkdownUtils from "../../Utils/MarkdownUtils" import { UploadableTag } from "../../Logic/Tags/TagTypes" import LayerConfig from "./LayerConfig" import ComparingTag from "../../Logic/Tags/ComparingTag" +import { Unit } from "../Unit" export interface Mapping { readonly if: UploadableTag @@ -41,6 +39,12 @@ export interface Mapping { readonly priorityIf?: TagsFilter } +export interface ValueRange { + min?: number, + max?: number, + warnBelow?: number, + warnAbove?: number +} /*** * The parsed version of TagRenderingConfigJSON * Identical data, but with some methods and validation @@ -79,6 +83,7 @@ export default class TagRenderingConfig { readonly default?: string readonly postfixDistinguished?: string readonly args?: any + readonly range: ValueRange } public readonly multiAnswer: boolean @@ -233,6 +238,7 @@ export default class TagRenderingConfig { default: json.freeform.default, postfixDistinguished: json.freeform.postfixDistinguished?.trim(), args: json.freeform.helperArgs, + range: json.freeform.range } if (json.freeform["extraTags"] !== undefined) { throw `Freeform.extraTags is defined. This should probably be 'freeform.addExtraTag' (at ${context})` @@ -787,7 +793,8 @@ export default class TagRenderingConfig { freeformValue: string | undefined, singleSelectedMapping: number, multiSelectedMapping: boolean[] | undefined, - currentProperties: Record + currentProperties: Record, + unit?: Unit ): UploadableTag[] { if (typeof freeformValue === "string") { freeformValue = freeformValue?.trim() @@ -795,7 +802,14 @@ export default class TagRenderingConfig { const validator = Validators.get(this.freeform?.type) if (validator && freeformValue) { - freeformValue = validator.reformat(freeformValue, () => currentProperties["_country"]) + // We try to reformat; but a unit might annoy us here + if (unit) { + const [valueNoUnit, denom] = unit.findDenomination(freeformValue, () => currentProperties["_country"]) + const formatted = validator.reformat(valueNoUnit, () => currentProperties["_country"]) + freeformValue = formatted + denom.canonical + } else { + freeformValue = validator.reformat(freeformValue, () => currentProperties["_country"]) + } } if (freeformValue === "") { freeformValue = undefined @@ -918,9 +932,23 @@ export default class TagRenderingConfig { GenerateDocumentation(lang: string = "en"): string { let freeform: string = undefined if (this.render) { - freeform = "*" + this.render.textFor(lang) + "*" + freeform = "\n*" + this.render.textFor(lang) + "*" if (this.freeform?.key) { - freeform += " is shown if `" + this.freeform.key + "` is set" + freeform += " is shown if `" + this.freeform.key + "` is set." + } + if (this.question && this.freeform.range) { + freeform += "\n\nThe allowed input is of type " + (this.freeform.type ?? "string") + if (this.freeform.range) { + const r = this.freeform.range + freeform += ` and is in range ${r.min ?? "-infinty"} until ${r.max ?? "infinity"} (both inclusive).` + if (r.warnAbove && r.warnBelow) { + freeform += ` A warning will appear if the value is outside of ${r.warnBelow} and ${r.warnAbove}.` + } else if (r.warnBelow) { + freeform += ` A warning will appear below ${r.warnBelow}.` + } else if (r.warnAbove) { + freeform += ` A warning will appear above ${r.warnAbove}.` + } + } } } diff --git a/src/Models/Unit.ts b/src/Models/Unit.ts index 4bdb7117be..311e661336 100644 --- a/src/Models/Unit.ts +++ b/src/Models/Unit.ts @@ -5,6 +5,7 @@ import unit from "../../assets/layers/unit/unit.json" import TagRenderingConfig from "./ThemeConfig/TagRenderingConfig" import Validators, { ValidatorType } from "../UI/InputElement/Validators" import { Validator } from "../UI/InputElement/Validator" +import FloatValidator from "../UI/InputElement/Validators/FloatValidator" export class Unit { private static allUnits = this.initUnits() @@ -334,10 +335,11 @@ export class Unit { return [undefined, undefined] } - asHumanLongValue(value: string, country: () => string): BaseUIElement | string { + asHumanLongValue(value: string | number, country: () => string): BaseUIElement | string { if (value === undefined) { return undefined } + value = "" + value const [stripped, denom] = this.findDenomination(value, country) const human = denom?.human if (this.inverted) { @@ -393,4 +395,19 @@ export class Unit { } return this.denominations[0] } + + /** + * Gets the value in the canonical denomination; + * e.g. "1cm -> 0.01" as it is 0.01meter + * @param v + */ + public valueInCanonical(value: string, country: () => string): number { + const denom = this.findDenomination(value, country) + if (!denom) { + return undefined + } + const [v, d] = denom + const vf = new FloatValidator().reformat(v) + return Number(vf) * (d.factorToCanonical ?? 1) + } } diff --git a/src/UI/InputElement/ValidatedInput.svelte b/src/UI/InputElement/ValidatedInput.svelte index 9bf029daaa..4fc47f7524 100644 --- a/src/UI/InputElement/ValidatedInput.svelte +++ b/src/UI/InputElement/ValidatedInput.svelte @@ -4,12 +4,17 @@ import Validators from "./Validators" import { ExclamationIcon } from "@rgossiaux/svelte-heroicons/solid" import { Translation } from "../i18n/Translation" + import { createEventDispatcher, onDestroy } from "svelte" import { Validator } from "./Validator" import { Unit } from "../../Models/Unit" import UnitInput from "../Popup/UnitInput.svelte" import { Utils } from "../../Utils" import { twMerge } from "tailwind-merge" + import type { ValueRange } from "../../Models/ThemeConfig/TagRenderingConfig" + import Translations from "../i18n/Translations" + import FloatValidator from "./Validators/FloatValidator" + import BaseUIElement from "../BaseUIElement" export let type: ValidatorType export let feedback: UIEventSource | undefined = undefined @@ -18,6 +23,7 @@ export let placeholder: string | Translation | undefined = undefined export let autofocus: boolean = false export let unit: Unit = undefined + export let range: ValueRange = undefined /** * Valid state, exported to the calling component */ @@ -42,7 +48,7 @@ function initValueAndDenom() { if (unit && value.data) { - const [v, denom] = unit?.findDenomination(value.data, getCountry) + const [v, denom] = unit.findDenomination(value.data, getCountry) if (denom) { unvalidatedText.setData(v) selectedUnit.setData(denom.canonical) @@ -62,7 +68,6 @@ } } initValueAndDenom() - $: { // The type changed -> reset some values validator = Validators.get(type ?? "string") @@ -77,6 +82,41 @@ initValueAndDenom() } + const t = Translations.t.validation.generic + + /** + * Side effect: sets the feedback, returns true/false if valid + * @param canonicalValue + */ + function validateRange(canonicalValue: number): boolean { + if (!range) { + return true + } + if (canonicalValue < range.warnBelow) { + feedback.set(t.suspiciouslyLow) + } + if (canonicalValue > range.warnAbove) { + feedback.set(t.suspiciouslyHigh) + } + if (canonicalValue > range.max) { + let max: number | string | BaseUIElement = range.max + if (unit) { + max = unit.asHumanLongValue(max) + } + feedback.set(t.tooHigh.Subs({ max })) + return false + } + if (canonicalValue < range.min) { + let min: number | string | BaseUIElement = range.min + if (unit) { + min = unit.asHumanLongValue(min) + } + feedback.set(t.tooLow.Subs({ min })) + return false + } + return true + } + function setValues() { // Update the value stores const v = unvalidatedText.data @@ -92,13 +132,22 @@ } if (selectedUnit.data) { - value.setData(unit.toOsm(v, selectedUnit.data)) + const canonicalValue = unit.valueInCanonical(v + selectedUnit.data) + if (validateRange(canonicalValue)) { + value.setData(unit.toOsm(v, selectedUnit.data)) + } else { + value.set(undefined) + } } else { - value.setData(v) + if (validateRange(v)) { + value.setData(v) + } else { + value.set(undefined) + } } } - onDestroy(unvalidatedText.addCallbackAndRun((_) => setValues())) + onDestroy(unvalidatedText.addCallbackAndRun(() => setValues())) if (unit === undefined) { onDestroy( value.addCallbackAndRunD((fromUpstream) => { @@ -110,7 +159,7 @@ } else { // Handled by the UnitInput } - onDestroy(selectedUnit.addCallback((_) => setValues())) + onDestroy(selectedUnit.addCallback(() => setValues())) if (validator === undefined) { throw ( "Not a valid type (no validator found) for type '" + diff --git a/src/UI/InputElement/Validators/FloatValidator.ts b/src/UI/InputElement/Validators/FloatValidator.ts index 2fb5bfcb4b..81f000ff78 100644 --- a/src/UI/InputElement/Validators/FloatValidator.ts +++ b/src/UI/InputElement/Validators/FloatValidator.ts @@ -17,7 +17,6 @@ export default class FloatValidator extends Validator { * new FloatValidator().isValid("0,2") // => true */ isValid(str: string) { - console.log("Is valid?", str, FloatValidator.formattingHasComma) if (!FloatValidator.formattingHasComma) { str = str.replace(",", ".") } @@ -28,7 +27,11 @@ export default class FloatValidator extends Validator { if (!FloatValidator.formattingHasComma) { str = str.replace(",", ".") } - return "" + Number(str) + let formatted = "" + Number(str) + if (str.startsWith("0") && str.length > 1 && str.indexOf(".") < 0) { + formatted = "0" + formatted + } + return formatted } getFeedback(s: string): Translation { diff --git a/src/UI/Popup/TagRendering/FreeformInput.svelte b/src/UI/Popup/TagRendering/FreeformInput.svelte index e806ceb85e..23e7bacac0 100644 --- a/src/UI/Popup/TagRendering/FreeformInput.svelte +++ b/src/UI/Popup/TagRendering/FreeformInput.svelte @@ -53,6 +53,7 @@ type={config.freeform.type} {placeholder} {value} + range={config.freeform.range} /> {:else if InputHelpers.hideInputField.indexOf(config.freeform.type) < 0} @@ -66,6 +67,7 @@ {placeholder} {value} {unvalidatedText} + range={config.freeform.range} /> {/if} diff --git a/src/UI/Popup/TagRendering/TagRenderingQuestion.svelte b/src/UI/Popup/TagRendering/TagRenderingQuestion.svelte index f565f9fdda..f34f190fae 100644 --- a/src/UI/Popup/TagRendering/TagRenderingQuestion.svelte +++ b/src/UI/Popup/TagRendering/TagRenderingQuestion.svelte @@ -221,7 +221,8 @@ $freeformInput, selectedMapping, checkedMappings, - tags.data + tags.data, + unit ) if (featureSwitchIsDebugging?.data) { console.log( From 205bb3c94209bbb69e4ac22549c287babedc08a4 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 20 May 2025 00:40:33 +0200 Subject: [PATCH 18/53] UX: fix #2425 --- src/UI/Popup/NothingKnown.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/Popup/NothingKnown.svelte b/src/UI/Popup/NothingKnown.svelte index 8759018c54..c974df9408 100644 --- a/src/UI/Popup/NothingKnown.svelte +++ b/src/UI/Popup/NothingKnown.svelte @@ -15,7 +15,7 @@ let hasKnownQuestion = tags.mapD((t) => knowableRenderings.some((tr) => tr.IsKnown(t))) -{#if !$hasKnownQuestion} +{#if !$hasKnownQuestion && knowableRenderings?.length > 0} {text} From ee0f81ada58c58a9c5c69d75427d10e42e391aed Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 20 May 2025 01:48:46 +0200 Subject: [PATCH 19/53] UX: add link to reviews page, fix #2423 --- assets/layers/questions/questions.json | 2 +- langs/ca.json | 1 - langs/cs.json | 1 - langs/da.json | 1 - langs/de.json | 1 - langs/en.json | 2 +- langs/es.json | 1 - langs/fr.json | 1 - langs/hu.json | 1 - langs/id.json | 1 - langs/it.json | 1 - langs/ja.json | 1 - langs/layers/nl.json | 4 ++-- langs/nb_NO.json | 1 - langs/nl.json | 1 - langs/pl.json | 1 - langs/pt.json | 1 - langs/pt_BR.json | 1 - langs/ru.json | 1 - langs/zh_Hant.json | 1 - src/UI/Reviews/AllReviews.svelte | 26 +++++++++++++++----------- 21 files changed, 19 insertions(+), 32 deletions(-) diff --git a/assets/layers/questions/questions.json b/assets/layers/questions/questions.json index 0d8733b395..e28c0cfe2f 100644 --- a/assets/layers/questions/questions.json +++ b/assets/layers/questions/questions.json @@ -3474,7 +3474,7 @@ "if": "toilets=no", "then": { "en": "Has no toilets", - "nl": "Heeft geenad toiletten", + "nl": "Heeft geen toiletten", "it": "Non ha servizi igienici" } }, diff --git a/langs/ca.json b/langs/ca.json index 77cc6585e7..388c3c734c 100644 --- a/langs/ca.json +++ b/langs/ca.json @@ -566,7 +566,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Ressenya afiliada)", - "attribution": "Les ressenyes funcionen gràcies a Mangrove Reviews i estan disponibles sota CC-BY 4.0.", "i_am_affiliated": "Tinc alguna filiació amb aquest objecte", "i_am_affiliated_explanation": "Marqueu si sou propietari, creador, empleat,…", "no_reviews_yet": "No hi ha revisions encara. Sigues el primer a escriure'n una i ajuda al negoci i a les dades lliures!", diff --git a/langs/cs.json b/langs/cs.json index 3c7ca88303..3e84879592 100644 --- a/langs/cs.json +++ b/langs/cs.json @@ -750,7 +750,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Recenze od zaměstnance)", - "attribution": "Od Mangrove Reviews", "averageRating": "Průměrné hodnocení {n} hvězdiček", "i_am_affiliated": "Jsem spojen s tímto objektem", "i_am_affiliated_explanation": "Zkontrolujte, zda jste vlastníkem, tvůrcem, zaměstnancem, …", diff --git a/langs/da.json b/langs/da.json index c9bfbf1619..09b556dc91 100644 --- a/langs/da.json +++ b/langs/da.json @@ -440,7 +440,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Tilknyttet anmeldelse)", - "attribution": "Anmeldelserne er baseret på Mangrove Reviews og er tilgængelige under CC-BY 4.0.", "i_am_affiliated": "Jeg er tilknyttet dette objekt
    Tjek, om du er ejer, skaber, ansat, ...", "no_reviews_yet": "Der er ingen anmeldelser endnu. Vær den første til at skrive en og hjælpe åbne data og forretningen!", "saved": "Anmeldelse gemt. Tak for at bidrage!", diff --git a/langs/de.json b/langs/de.json index 9c5b8ea042..627f94c3b0 100644 --- a/langs/de.json +++ b/langs/de.json @@ -750,7 +750,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Partner-Rezension)", - "attribution": "Von Mangrove Reviews", "averageRating": "Mittlere Bewertung von {n} Sternen", "i_am_affiliated": "Ich bin mit diesem Objekt vertraut", "i_am_affiliated_explanation": "Auswählen, wenn Sie Eigentümer, Ersteller, Angestellter, … sind.", diff --git a/langs/en.json b/langs/en.json index 36e88bed16..3258dd2ea7 100644 --- a/langs/en.json +++ b/langs/en.json @@ -782,7 +782,7 @@ }, "reviews": { "affiliated_reviewer_warning": "(Affiliated review)", - "attribution": "By Mangrove Reviews", + "attribution": "By Mangrove.reviews", "averageRating": "Average rating of {n} stars", "i_am_affiliated": "I am affiliated with this object", "i_am_affiliated_explanation": "Check if you are an owner, creator, employee, …", diff --git a/langs/es.json b/langs/es.json index 1e7803697d..ce828b61b1 100644 --- a/langs/es.json +++ b/langs/es.json @@ -718,7 +718,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Reseña afiliada)", - "attribution": "Por Mangrove Reviews", "averageRating": "Calificación promedio de {n} estrellas", "i_am_affiliated": "Estoy afiliado con este objeto", "i_am_affiliated_explanation": "Verifica si eres propietario, creador, empleado,…", diff --git a/langs/fr.json b/langs/fr.json index 552caffe4b..08d0de24ab 100644 --- a/langs/fr.json +++ b/langs/fr.json @@ -463,7 +463,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Avis affilié)", - "attribution": "Les avis sont fournis par Mangrove Reviews et sont disponibles sous licence CC-BY 4.0.", "i_am_affiliated": "Je suis affilié à cet objet
    Cochez si vous en êtes le propriétaire, créateur, employé, …", "no_reviews_yet": "Il n'y a pas encore d'avis. Soyez le premier à en écrire un et aidez le lieu et les données ouvertes !", "reviews_bug": "Certains de vos avis sont manquants ? Certains ne sont pas visible à cause d'un bug.", diff --git a/langs/hu.json b/langs/hu.json index 06bcc35556..7e565c21ea 100644 --- a/langs/hu.json +++ b/langs/hu.json @@ -721,7 +721,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Kapcsolódó személy értékelése)", - "attribution": "A Mangrove Reviews által", "averageRating": "Átlagos értékelés: {n} csillag", "i_am_affiliated": "Kapcsolatban állok ezzel a létesítménnyel", "i_am_affiliated_explanation": "Annak ellenőrzése, hogy tulajdonos, létrehozó, alkalmazott stb. vagy-e.", diff --git a/langs/id.json b/langs/id.json index fbd25faf76..dc283996d1 100644 --- a/langs/id.json +++ b/langs/id.json @@ -141,7 +141,6 @@ "noteLayerDoEnable": "Aktifkan lapisan yang menunjukkan catatan" }, "reviews": { - "attribution": "Ulasan didukung oleh Mangrove Reviews dan tersedia di bawah CC-BY 4.0.", "saved": " Ulasan disimpan. Terima kasih sudah berbagi! ", "saving_review": "Menyimpan…", "title": "{count} ulasan", diff --git a/langs/it.json b/langs/it.json index 89492b0289..c7d2a1475e 100644 --- a/langs/it.json +++ b/langs/it.json @@ -773,7 +773,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Recensione di un affiliato)", - "attribution": "Le recensioni sono fornite da Mangrove Reviews e sono disponibili con licenza CC-BY 4.0.", "averageRating": "Valutazione media di {n} stelle", "i_am_affiliated": "Sono associato con questo oggetto
    Spunta se sei il proprietario, creatore, dipendente, etc.", "i_am_affiliated_explanation": "Spunta se sei il proprietario, creatore, dipendente, ecc.", diff --git a/langs/ja.json b/langs/ja.json index ca647b647a..050e90734e 100644 --- a/langs/ja.json +++ b/langs/ja.json @@ -110,7 +110,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(関係者のレビュー)", - "attribution": "レビューは、Mangrove Reviews and are available under CC-BY 4.0で公開されます。", "i_am_affiliated": "わたしは、この対象物の関係者です
    所有者、作成者、従業員などの有無を確認します", "no_reviews_yet": "まだレビューはありません。最初に書き込みを行い、データとビジネスのオープン化を支援しましょう!", "saved": "レビューが保存されました。共有ありがとう!", diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 30a611002f..a92e944667 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -7996,7 +7996,7 @@ "then": "Heeft toiletten" }, "1": { - "then": "Heeft geenad toiletten" + "then": "Heeft geen toiletten" }, "2": { "then": "De toiletten zijn als alleenstaand punt op de kaart aangeduid" @@ -10252,7 +10252,7 @@ }, "wheelchair-door-width": { "question": "Hoe breed is de deur van de rolstoeltoegankelijke toilet?", - "render": "De deur naar de rolstoeltoegankelijke toilet is {canonical(door:width)} wide" + "render": "De deur naar de rolstoeltoegankelijke toilet is {canonical(door:width)}" }, "wheelchair-picture": { "render": { diff --git a/langs/nb_NO.json b/langs/nb_NO.json index 9331ea01ba..8cb22af6ce 100644 --- a/langs/nb_NO.json +++ b/langs/nb_NO.json @@ -349,7 +349,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Tilknyttet vurdering)", - "attribution": "Vurderinger er muliggjort av Mangrove Reviews og er tilgjengelige som CC-BY 4.0.", "i_am_affiliated": "Jeg har en tilknytning til dette objektet
    Sjekk om du er eier, skaper, ansatt, …", "no_reviews_yet": "Ingen vurderinger enda. Vær først til å skrive en og hjelp åpen data og bevegelsen.", "saved": "Vurdering lagret. Takk for at du deler din mening.", diff --git a/langs/nl.json b/langs/nl.json index 57e0b6fa86..d4308e6fc0 100644 --- a/langs/nl.json +++ b/langs/nl.json @@ -725,7 +725,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Recensie door betrokkene)", - "attribution": "Via Mangrove Reviews", "averageRating": "Gemiddelde score van {n} sterren", "i_am_affiliated": "Ik ben persoonlijk betrokken", "i_am_affiliated_explanation": "Vink aan als je een eigenaar, maker, werknemer … bent.", diff --git a/langs/pl.json b/langs/pl.json index b5742ab6aa..9fce4706e3 100644 --- a/langs/pl.json +++ b/langs/pl.json @@ -501,7 +501,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Recenzja powiązana)", - "attribution": "Recenzje są obsługiwane przez Recenzje Mangrove i są dostępne na licencji CC-BY 4.0.", "i_am_affiliated": "Jestem powiązany z tym obiektem", "i_am_affiliated_explanation": "Zaznacz, jeśli jesteś właścicielem, twórcą, pracownikiem,…", "no_reviews_yet": "Nie ma jeszcze recenzji. Bądź pierwszym, który je napisze i pomóż otworzyć dane i biznes!", diff --git a/langs/pt.json b/langs/pt.json index 447cc49ccd..616869f3d2 100644 --- a/langs/pt.json +++ b/langs/pt.json @@ -637,7 +637,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(avaliação de afiliado)", - "attribution": "As avaliações são fornecidas por Mangrove Reviews e estão disponíveis sob a licença CC-BY 4.0.", "averageRating": "Classificação média de {n} estrelas", "i_am_affiliated": "Estou associado a este objeto", "i_am_affiliated_explanation": "Marque caso seja proprietário, criador, empregado…", diff --git a/langs/pt_BR.json b/langs/pt_BR.json index 4486821316..214d692c72 100644 --- a/langs/pt_BR.json +++ b/langs/pt_BR.json @@ -127,7 +127,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Revisão de afiliados)", - "attribution": "As resenhas são fornecidas por Mangrove Reviews e estão disponíveis em CC-BY 4.0.", "i_am_affiliated": "Eu sou afiliado a este objeto

    Verifique se você é proprietário, criador, funcionário, …
    ", "no_reviews_yet": "Não há comentários ainda. Seja o primeiro a escrever um e ajude a abrir os dados e os negócios!", "saved": "Comentário salvo. Obrigado por compartilhar!", diff --git a/langs/ru.json b/langs/ru.json index 2376aa766c..c84b230171 100644 --- a/langs/ru.json +++ b/langs/ru.json @@ -185,7 +185,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(Отзыв лица, связанного с заведением)", - "attribution": "Отзывы созданы на основе Mangrove Reviews и доступны под лицензией CC-BY 4.0.", "i_am_affiliated": "Я связан с этим объектом
    Отметьте если вы создатель, владелец, работник, …", "no_reviews_yet": "Пока нет отзывов. Оставьте первый отзыв и помогите открытым данным и бизнесу!", "saved": " Отзыв сохранен. Спасибо, что поделились! ", diff --git a/langs/zh_Hant.json b/langs/zh_Hant.json index a9028dfb0c..92c7de0384 100644 --- a/langs/zh_Hant.json +++ b/langs/zh_Hant.json @@ -750,7 +750,6 @@ }, "reviews": { "affiliated_reviewer_warning": "(關係者審核)", - "attribution": "透過 Mangrove Reviews", "averageRating": "平均評分 {n} 顆星", "i_am_affiliated": "我是這物件的相關關係者", "i_am_affiliated_explanation": "檢查你是否是店主、創造者或是員工…", diff --git a/src/UI/Reviews/AllReviews.svelte b/src/UI/Reviews/AllReviews.svelte index 8194dd5191..8480c8fa87 100644 --- a/src/UI/Reviews/AllReviews.svelte +++ b/src/UI/Reviews/AllReviews.svelte @@ -3,34 +3,33 @@ import SingleReview from "./SingleReview.svelte" import { Utils } from "../../Utils" import StarsBar from "./StarsBar.svelte" + import type { Review } from "mangrove-reviews-typescript" import Translations from "../i18n/Translations" import Tr from "../Base/Tr.svelte" import ReviewPrivacyShield from "./ReviewPrivacyShield.svelte" import ThemeViewState from "../../Models/ThemeViewState" - + import type { Store } from "../../Logic/UIEventSource" /** * An element showing all reviews */ export let reviews: FeatureReviews export let state: ThemeViewState - let average = reviews.average - let _reviews = [] - reviews.reviews.addCallbackAndRunD((r) => { - _reviews = Utils.NoNull(r) - }) + let allReviews: Store<(Review & { + madeByLoggedInUser: Store + })[]> = reviews.reviews.map((r) => Utils.NoNull(r)) let test = state.featureSwitches.featureSwitchIsTesting let debug = state.featureSwitches.featureSwitchIsDebugging - let subject = reviews.subjectUri + let subject: Store = reviews.subjectUri
    - {#if _reviews.length > 1} + {#if $allReviews.length > 1} {/if} - {#if _reviews.length > 0} - {#each _reviews as review} + {#if $allReviews.length > 0} + {#each $allReviews as review} {/each} {:else} @@ -39,7 +38,12 @@
    {/if}
    - + + +
    {#if $debug || $test} {$subject} From 3afa20692249f0e9b13fae141daf3fbaf4972d79 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 20 May 2025 02:10:19 +0200 Subject: [PATCH 20/53] Fix tests --- test/Models/ThemeConfig/Conversion/PrepareLayer.spec.ts | 8 ++++---- test/Models/ThemeConfig/Conversion/PrepareTheme.spec.ts | 6 +++++- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/test/Models/ThemeConfig/Conversion/PrepareLayer.spec.ts b/test/Models/ThemeConfig/Conversion/PrepareLayer.spec.ts index d5cb97e435..d3e564b556 100644 --- a/test/Models/ThemeConfig/Conversion/PrepareLayer.spec.ts +++ b/test/Models/ThemeConfig/Conversion/PrepareLayer.spec.ts @@ -1,10 +1,9 @@ import { LayerConfigJson } from "../../../../src/Models/ThemeConfig/Json/LayerConfigJson" import LineRenderingConfigJson from "../../../../src/Models/ThemeConfig/Json/LineRenderingConfigJson" +import { PrepareLayer, RewriteSpecial } from "../../../../src/Models/ThemeConfig/Conversion/PrepareLayer" import { - PrepareLayer, - RewriteSpecial, -} from "../../../../src/Models/ThemeConfig/Conversion/PrepareLayer" -import { QuestionableTagRenderingConfigJson } from "../../../../src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson" + QuestionableTagRenderingConfigJson +} from "../../../../src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson" import RewritableConfigJson from "../../../../src/Models/ThemeConfig/Json/RewritableConfigJson" import { describe, expect, it } from "vitest" @@ -104,6 +103,7 @@ describe("PrepareLayer", () => { }, ], titleIcons: [{ render: "icons.defaults", id: "iconsdefaults" }], + units: [] } expect(result).toEqual(expected) diff --git a/test/Models/ThemeConfig/Conversion/PrepareTheme.spec.ts b/test/Models/ThemeConfig/Conversion/PrepareTheme.spec.ts index 9164124bb1..212b6b8136 100644 --- a/test/Models/ThemeConfig/Conversion/PrepareTheme.spec.ts +++ b/test/Models/ThemeConfig/Conversion/PrepareTheme.spec.ts @@ -10,7 +10,9 @@ import { Tag } from "../../../../src/Logic/Tags/Tag" import { DesugaringContext } from "../../../../src/Models/ThemeConfig/Conversion/Conversion" import { And } from "../../../../src/Logic/Tags/And" import { describe, expect, it } from "vitest" -import { QuestionableTagRenderingConfigJson } from "../../../../src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson" +import { + QuestionableTagRenderingConfigJson +} from "../../../../src/Models/ThemeConfig/Json/QuestionableTagRenderingConfigJson" import Constants from "../../../../src/Models/Constants" import { ConversionContext } from "../../../../src/Models/ThemeConfig/Conversion/ConversionContext" import { MinimalTagRenderingConfigJson } from "../../../../src/Models/ThemeConfig/Json/TagRenderingConfigJson" @@ -153,6 +155,7 @@ describe("PrepareTheme", () => { }, ], lineRendering: [{ width: 1 }], + units: [] } const sharedLayers = constructSharedLayers() sharedLayers.set("layer-example", testLayer) @@ -210,6 +213,7 @@ describe("PrepareTheme", () => { ], lineRendering: [{ width: 1 }], titleIcons: [], + units: [] }) }) }) From cdd5003aed8a81024b19322af941ccf7ec9fb7dd Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Wed, 21 May 2025 12:52:00 +0200 Subject: [PATCH 21/53] Themes(food): add 'spanish' as option --- assets/layers/food/food.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/assets/layers/food/food.json b/assets/layers/food/food.json index 95f9e53d0d..f2bcd8a807 100644 --- a/assets/layers/food/food.json +++ b/assets/layers/food/food.json @@ -649,6 +649,13 @@ "cs": "Podávají se zde jídla z mořských plodů", "it": "Qui vengono serviti piatti di pesce" } + }, + { + "if": "cuisine=spanish", + "icon": "\uD83C\uDDEA\uD83C\uDDF8", + "then": { + "en": "Spanish dishes are served here" + } } ], "id": "Cuisine", From f03877b570e569c8ef9ca716edb39e5f9e6852b2 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 22 May 2025 00:37:25 +0200 Subject: [PATCH 22/53] Themes(windpumps): add windpump layer --- assets/layers/questions/questions.json | 12 +++ assets/layers/windpump/license_info.json | 40 +++++++++ assets/layers/windpump/tjasker.jpg | Bin 0 -> 30644 bytes assets/layers/windpump/tjasker.jpg.license | 2 + assets/layers/windpump/windpump.json | 76 ++++++++++++++++++ assets/layers/windpump/windpump.svg | 4 + assets/layers/windpump/windpump.svg.license | 2 + assets/layers/windpump/windpump_1.jpg | Bin 0 -> 48829 bytes assets/layers/windpump/windpump_1.jpg.license | 2 + assets/layers/windpump/windpump_2.jpg | Bin 0 -> 802968 bytes assets/layers/windpump/windpump_2.jpg.license | 2 + .../openwindpowermap/openwindpowermap.json | 12 ++- 12 files changed, 150 insertions(+), 2 deletions(-) create mode 100644 assets/layers/windpump/license_info.json create mode 100644 assets/layers/windpump/tjasker.jpg create mode 100644 assets/layers/windpump/tjasker.jpg.license create mode 100644 assets/layers/windpump/windpump.json create mode 100644 assets/layers/windpump/windpump.svg create mode 100644 assets/layers/windpump/windpump.svg.license create mode 100644 assets/layers/windpump/windpump_1.jpg create mode 100644 assets/layers/windpump/windpump_1.jpg.license create mode 100644 assets/layers/windpump/windpump_2.jpg create mode 100644 assets/layers/windpump/windpump_2.jpg.license diff --git a/assets/layers/questions/questions.json b/assets/layers/questions/questions.json index e28c0cfe2f..4c5f2e3a0e 100644 --- a/assets/layers/questions/questions.json +++ b/assets/layers/questions/questions.json @@ -3563,6 +3563,18 @@ } } ] + }, + { + "id": "ref", + "question": { + "en": "What is the reference number?" + }, + "render": { + "en": "The reference number is {ref}" + }, + "freeform": { + "key": "ref" + } } ], "allowMove": false, diff --git a/assets/layers/windpump/license_info.json b/assets/layers/windpump/license_info.json new file mode 100644 index 0000000000..038eb72106 --- /dev/null +++ b/assets/layers/windpump/license_info.json @@ -0,0 +1,40 @@ +[ + { + "path": "tjasker.jpg", + "license": "CC-BY-SA 3.0 Unported", + "authors": [ + "TUFOWKTM" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Tjasker_Sanpoel_04.JPG" + ] + }, + { + "path": "windpump.svg", + "license": "CC0-1.0", + "authors": [ + "quincylvania" + ], + "sources": [ + "https://github.com/rapideditor/temaki/blob/main/icons/windpump.svg" + ] + }, + { + "path": "windpump_1.jpg", + "license": "CC-BY-SA 4.0", + "authors": [ + "Ben Franske" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Windpump.jpg" + ] + }, + { + "path": "windpump_2.jpg", + "license": "CC0-1.0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + } +] \ No newline at end of file diff --git a/assets/layers/windpump/tjasker.jpg b/assets/layers/windpump/tjasker.jpg new file mode 100644 index 0000000000000000000000000000000000000000..0f8453d32ee18b7a84c25d2d12a73e377c924d73 GIT binary patch literal 30644 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

    0M!uhc3G8yz+@QY@y4S~6~Y=yx{7y7sQjgYyOp9 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�{O6=PVdIg!EL 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 PvstVeq~erNA7}sBMrb-( literal 0 HcmV?d00001 diff --git a/assets/layers/windpump/tjasker.jpg.license b/assets/layers/windpump/tjasker.jpg.license new file mode 100644 index 0000000000..07cec83508 --- /dev/null +++ b/assets/layers/windpump/tjasker.jpg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: TUFOWKTM +SPDX-License-Identifier: CC-BY-SA 3.0 Unported \ No newline at end of file diff --git a/assets/layers/windpump/windpump.json b/assets/layers/windpump/windpump.json new file mode 100644 index 0000000000..21358614d0 --- /dev/null +++ b/assets/layers/windpump/windpump.json @@ -0,0 +1,76 @@ +{ + "id": "windpump", + "presets": [ + { + "tags": [ + "man_made=windpump" + ], + "title": "a windpump", + "description": { + "en": "A wind pump is a kind of windmill that is used for pumping natural gas or water." + }, + "exampleImages": [ + "./assets/layers/windpump/windpump_1.jpg", + "./assets/layers/windpump/windpump_2.jpg", + "./assets/layers/windpump/tjasker.jpg" + + ] + } + ], + "name": { + "en": "Windpumps", + "nl": "Pompen op windenergie" + }, + "title": { + "mappings": [ + { + "if": "name~*", + "then": { + "en": "Windpump {ref}" + } + } + ], + "render": { + "en": "Windpump {ref}" + } + }, + "tagRenderings": [ + "images", + { + "id": "operator", + "question": { + "en": "Who operates this windpump?" + }, + "render": { + "en": "Operated by {operator}" + }, + "freeform": { + "key": "operator" + } + }, + "ref", + "wikipedia" + ], + "pointRendering": [ + { + "location": [ + "point", + "centroid" + ], + "anchor": "bottom", + "marker": [ + { + "icon": "circle", + "color": "white" + }, + { + "icon": "./assets/layers/windpump/windpump.svg" + } + ] + } + ], + "allowMove": { + "enableImproveAccuracy": true, + "enableRelocation": false + } +} diff --git a/assets/layers/windpump/windpump.svg b/assets/layers/windpump/windpump.svg new file mode 100644 index 0000000000..6823907afa --- /dev/null +++ b/assets/layers/windpump/windpump.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/layers/windpump/windpump.svg.license b/assets/layers/windpump/windpump.svg.license new file mode 100644 index 0000000000..2fae30bcfd --- /dev/null +++ b/assets/layers/windpump/windpump.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: quincylvania +SPDX-License-Identifier: CC0-1.0 \ No newline at end of file diff --git a/assets/layers/windpump/windpump_1.jpg b/assets/layers/windpump/windpump_1.jpg new file mode 100644 index 0000000000000000000000000000000000000000..415db74fd5c7094938c03c59acd23e636f856ab7 GIT binary patch literal 48829 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 z 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

    B5o;?X`&i08vFbGf1Xx+jekC8RPQLInz4L z7AmCkBd7AcX9{;VaJxC8_tFRzW}P_mW8zxs~>y4xo4A@R6Jq6@PyP%iBf@rqMj5@@mEca$77Z@N>e7{PaGAbA2S|8 z4LdasB8?zAGo>{)*_4HqqB9@Gz|l%83q~X|Q$f?L?rzSU@A=->>)zMv-uv%83%C2( z>&LU!diGvxKhOJl_PcxU#sSyph^Pnv0s#OB_ygWOfwHz2u|ETVsHhEqBLDzMumtwL z2mo9`^53)z03aZC|H^+~3#8%T`PTbtAdLXezktUo2=tFS@7u3|*#AM_18I*x>2Z+u z{j-i8NRz;}Zs2(mJc2-aHF#bE4|lu&@Ht!YpMKdV{xvpNu!FyR`7c`Wo)MV-8W$J2 zeLDbz9om<1faHhUbto@)AHW1l-jC+r=cKG7d4&fK9m4r-3h>)RA_G7?`#|1-T-+!7 zvNPVF4rFH^$O8a0P*?G<@oxqB*Z)ZegEZmGe~m5ReW%rM00y4?{Qdo0tL*@1kd6TB zxPkP0`NV_tsz3AhfHb7$U-cp2{OnHsi~oKwA9~99k5L{3X{S^F;tw_lod2wo3+7j! zvIC%C9?1^?YC!rue;$~B>d$YXSocT%sz0ya_y4}#zsui`_+!58*-YBxw;7;?6y@wo|NKB6ZvTNyb~b(8^tGGoaO@2Fy4_o1 z{bF;%4`i{KyxapxJl4*1-skDmjCCQwI9gF)(czrK2lDpeiVh#j<^~qg*Zsjf5TxH{ zZ(fJ{qe|ZA^mTh;<8k3fau49ho5-8|J_eU}f&V&?M{dSvfr)>O_>%*8MPK*lPzwtS zHx&kKI+B~YnM9>hH~aZ-_V@o7tno3oI6H4&(Z|_b{J%N;^#C_Lmz|TxK9Y@l&vD=W zBl&ssbzuL04D0~7nfx!l|0fZ=FZn|T|E`+H{_Ovz>id#EtG;g)7|$*`aA?n8*@q8g zbHRS;>quJzNb7L_Df{$)EAtN^ZC!_Z&mu7D@V?9gyV)6eS^sYGpKRsIs0|p zw~Y#Ald8GpyGuW|U;gPz$JL*2-M-V^qv`GYMW-M7ZFuC~{RdB;8jQbBm?q87W@hKC zw)urui%ak41p%P{nilx~|8ib#;JoZ$FenWEeqIo}LhyjP!R*(P99D%U!1r<7*ZB(^ zQDHUbE_ONL0}@}Z-k*Ed`2!#FlfTTopV}WY`+qjEivLeD`(G3L&%7Q0E>O_caf7-6 zA;7}&xQiWW`1G|*NyFZQB6o2;@ixHeqSGx?hra06WE}QBkI%g!&m&hl9?GzipL0i5 zb|;Un{pBKEFc2_Y*U{S-l3WCHe>*~Ls;YgXSIc48Ru)9dVk0;bz3$}02;S@X`xsz9 zAI&tT<6BeNfMIlbhJ}XXjpu+Fi8=1RS!-Yhv@&`mXeCsV_|&Fk+4e zcEgtv-wc-MgcT*3x@ytFvM(f*0>2EkHA>UbKQ>&1c2fm|((`{;WKm|RlCd?vx#j56!*ctVAJ(5HanKp`YL6r*WPW(4qyfTclXV$sr?YEM~-tXP|zn@f6D zOl>}aZ{j2p`@Cf&hI>XAUdP+b_0g(%Pa7os0LfI0jczXS z@-Mp{54&mjMrIXonwPH{ z)1?{ayHqf-C5a?hI=mse&-7HruUx&mmhb=?0xt@8MZoG!dL zc5}qO$Jj(yV1B+4J(<;(vMpoWB}12yPO&T{V#_cJwPyq=cBA9xGRNr`8@AGSigWGh zVs6J9;z@zl$0Yg<7^W`I#Y_H4OJCBDxvt1xXx?+`j>~U~9Ug?-l_c?}Z5&p5MMQ}S z-IP|r@++@TuoH@;>3aGkzM<@_5-+|Z3?&d2U&q6;L*dv;wneS+JQGeSOU zl1)f32Jiude_-=IxjrY3`>5J2l$LL5@`V&;;#-IAR+RP=%A-G_Wd;ucVuZe?MrLz& z@eVa7dGq!GqI|L&=R}K5VScRKOq&T!z0nYzl@$i3n#Hx7e-#IPCY0S6%9Pbsx^Q3R zH#VauDnfb{*+SKmPhxxgg+iG>PoE3!DxA3VE^WxMzbmyOwm#1{-M&6v)MnpQhvL2gHgj4e&0N%p3<5DRdft<%%vobhpJ{T}gxgf( zh6_~1{ylE7e(vB#u14-{R;bb4zP-kos$?F2>((Vc8xf%QYF~DNR5#bCB(i1PEy{y;IC;5JK{=pf~Yx#2LZoeWp`L{#_RlBe9QW9q%fbkDt z9tApzJKXLaAsEbMeDK-d;jHbLGuG|Q~keber;HUf$?{tP0 zTIq}h@I!C1p!AbaX(oo=!jaA_#*^1l%_H0YjU8)##^H>c(kh{}P_}HfW zY_W|uuXqP!TnP)BSN0U+q;&uzqIfb;k9M=+=TtL&KI0q_H>yiZu$UQ+pn`(2l7%wT ztBG1Mvf21r=f&do@Z#+XH0KFuEaL)1b&zeNAe7&oejroi0T)QQ# z9+{*uu+oQ&rvl?0owU@Znqk>)6~$zU<+Rs`tx&ugHXEm_mKw{p_+kw+ij0AB<)>@D z1^hzR1oYEX{i3|p7%Z<22KgB~7mZ99>D;D5rOh#l5n772JlYBSl1kt18JBvaeN`w0 zzdDUvm2Ks7b@k$0uK2C>Xxcj<8eqfj4yHFN>2!D}Tr%>qdt>D|l119_qS$(FH@KJ& zFaBK6g3i3ji)UXoPqUsOCrP_<5Z860^wB0Fd}U?fUY!CyKBZY#L6Z4L^0Fve2L)7A zprz@retU20^7RXj3a3F6>UmD-o5`NLBF=VA31Gncyk3fr$PF4~`Ine3Z^V|CoMNY> z^v1`rzLg>=J@jJ{q|uSfL9**Zc3y~`M%S|TqlG>2;hLXk^c02KswKOm$Z~TaN?5+e zlN2+xu$_pu4sdoAK&uELO5a|q<gRKKWCuyU_!lu&)UF{W=IWowboeJDoEm50W(3^y?Ny|Q6j`Zz=?QwMdR;)z_8+_h5of^@RWvwK;cEW zg_)ZZI*yRFcmA9pkVOQ=L-!bHI$0>V@N`}t7jgsR9ij$;^5jso2d9d|+{rTq4=KiT zx#sAdSeN~LcTA!q9wj$HJEmioDbuVTidIhsGNoWo(T>k^BeJ+hLk!VWs!eWhvqYB9 zklS^|1C*tByQ*3QPv?GRnYg1s`y>?ZQ}qi!yfh*t85wL~nrWOI&TyV5Z|tszhJHQ2hFB=y!n2-3n$eXu4Ppu!d-ekF3`Ic#SxqikBdn zgmWwrEUI~j2y61XD*wb43luM)I&+ET$*jnDBo8R?Ljo>?Ik7H*Gp}@+FUf$;VXS0- zwaq#mho|W>rI5a-d_2B}A7yI_`GwkNx^OUzmwC16(tJi+=;oGjRIA=7VAi`52tJu%sgf>fzCc8uPB!=POG+h~z^qd{qOQ0o4 zIaRIRreVITs4B&a^WY4c(gnOS`)U)s zZ7K|M%Ei0&a)3u<%+A&d)$9A_n0?}6tK31FvC#D6;Q`L8q*s`Y=CLFXItR2>tiagZ zpv@BdaYM@+V)RR<7CRRub~H2KNfp~Y9hKA1AW9Pj-ywH^SfU*QuDw(p9vzVd7AT>= zn>ET0kZbwgXHYKyT&9E>fkayvy#`ulGbl}~sX<9L;nr~Ci%nk3Nt{{PP<8UH(o#-j zQbftT2IbXA+cmb;)#^Q%#Jh5tV%0>mfy9mrtes*Nizyn{UtN9lf_an&HQ>#5wQAH&1=?!G~DkDS9(K zurv#!g*nIYuseYsfQVN{K2~+cuKS${wZx1*Zhf*VXAP=t!Si5(cZ>E3^Sc65m68d^ zV0uc1#J5Rm`1ws^*hHxbqu9%8`tHe(E3b2h>&4u<*p9dDPe#U)d~-#1yfX65s^}x> zW9c0#L}yVmw zY;hM_()H^`!)V;O_VT-|EuUt9C-cqygD?oCm)Dc4SKR(KYDIL*>2}&vDC#tHG7q`d|W}(OOj>#pfdpdDKPOE!0E+SqBzp0XDZ^F zN{OlC5bmhg+gg5ZE?2Ll$>LOp^i0q=*{=S~4_Ovi$;b_O2Mj9@xrlOzh!15C&A6=a zp*ld@xfVBPesCOcmmv>+&p)Axzdmb^F^;E`pZXVTe__jAouCcTC)HU#(9wH|?j7aF zD3YnVebmWfRnEuA+EeiG$4VS)%)L8=Aeb!bhaFyNJ1^XKlNueppN)ib!&Llt*?DP`VPT)wTAJv&8Kk7dPZX4 zo2)}0Old)6hjM5}3nxEnFtCg+2q%*zdS^wk3FUC-@K7#NSKZpLF|nr96UP$+#cx98 z4u>0mDoNt^Q7uuU%NuU*E7Dxv49IRKL|#Na^^1#;x9k-Cwa@aTnNk9DESg zqYl&oP#ykwUuQrhRh5yc3e^u+%N|*QtBIjT?0%_(L+}D`JFFruE{T=OG|`(OtgUmJ zIaRte9X=!`Hj3t^rTT>ruwrDV!&lBbt@I$lgKzZMr&5$%+|3l-HmFbD(;s#Zu>m8u z>LA2onGU6dFvatz1Z%)Q-i2fegtVqZBNDXz{ zCyQyk$`lugR5~xuxPai;S^z*?l7V1HJ&2@e&ad^jW|9q|)CA8!<8S;Y)s0eqE~kH; zj1^Fol9+ia2T{6|FaYO>d(M3?*zi*%=W*rN5qlOi^6%ss>F1{F>KzZs8cwp*EOe$g zYKjF+b!qimTq)yo+T_}FPxx>(V#+FqOcv3=-mS*m5(%rz$7E(WGoA%56d?0w)1p-%eI z17fIns!1qJbald2vMD{3;5S(i6cG zhkHWlkuigI;*Lo+sb(_3GJM9;*XZdB&=K~&mdE5wb3?RaAK^0KJMYQva3Sfzi9>n< z_$3J=rzl?SfNVUijzNz+l=L%Xxp`cgjsk?j5ftBRY%V&|>tT^9?J3`5R9s?htYAG^ z)c-s`ANF}N2#h8dMnGTOSX?iWXb zXIwOJl21jC?>y4`c4o`kB&~dkc^d=dO|;+Zz3{8pfuXoB&`{~5#EYhy#Uy4IwyYh8 z-+0>Gpu}fv4X7wd%!ERPkG|;`H_SEJoiX5>zzuW!A}rr5i9K}qFT9Dy{jBNqNB@A} zviGFT3>@6v6W8*cWpqT>^iV@9P^DePyG9MLh-ZC7U#L3QKhM{g!m)18B2oM_;}uLJ z2!g~}SX4l;Y~E_J)O`eH1)vBt6SCzAdu|iWG9*#T%rxGetAl)GtGjz3i~Nx2=~##pb@}JPVt4}xA!2!nZqp+V_^Vha=pbm`K96-5 z*6lN`s{q7tN_^fj`=0hyqJhr;p6J#FU`-Y#1ANry;W)%*4G+;=W#S-{h+B;C%vArR4H)YnGS7YJB!<2Fg4k=s#&>% zKj1Vq#iGd?V)WN$n8n%z#?ngK%#e;BP<13awfGGYk>z?8)Rcp**4J-}@y$(hBh-1- zCPoh_lo=29%D?XA5XZ~C5SX{5zu4h*TPHXC&7= zxn9jq`R4#k=unG@YMiAd>ET4d|QJ4vPbACh3|GY(n3ZAbQ;U4l5+tX}PGe z1>J;*hzx&F?R+0v(_yoOd-3MYm5g&txF=~k0x_29r5=Rx7r)d%A4%_|6)G@3GpsHz zA*ddOIp{T>f${f!s)G`j7L*%h)>L)aeJW)wPgh8p?q)`?FHrHG4!m9bo<6v)mXC}P zgeH36tM>A!z#Cq?Iwm83L34gRss3sYcuOegDGm8VLqa?(mW}8Aw zTll{115RJB#t?qcf=|m*;&;lG81!-8(Kwaw_ZSd;B2e&^Ie@r$ncaD*XgwdHl0{zL zkndC0J~(!IfNl=wjuZq9LIhF}Qv|dL(>wYS%Qu(Lb#D>C>_Sq&tqen5>|D8)@=UR9 zAIkv4y1Y(wg=neP)l3)$ZK9vtloKGaHCA7RI#kzp75}pE-PqTp6T%S!IR`E5Thd*8 zRt(GtW2m;Cz(icGs9A-`Eg4EbZf3cJ8SB+=DROwlR+))z2C;JELcgCxWN3&HEtV*CL`u}bSQfVAO>)OVKco? z?)t@}{gSkFoPGb0)Z}owEiyrBGe$c^osoxP#RZxxj$^rk_0H2v@^NtQTEpDdHiLv|lfs*vf&+SS~ z@D>%fM$q+w$di>Lc@8yeDsDz6oVpIaL{bp9E9}=JJx?U{!!G7h=~+-5q)Qv4%Voz= zDgE}T4DxEErK4$8+v*)6+ytiLDRSIPQbfaly5M97l@woZM9o z+%cTu>3bN;v((zcm^bd+G3Rw~7XVqTtoDMp8Y(3q z46%U`He1v?Nn~%eGmWCWAauBLb4uZYvWNOMk5B3|huWshb%`WxCt+_G_W|FoENLL5 z9-oHjTp4r~^pVgzw*%{`nj{M|^4ESMo-m|Kmsl)}mDxoSL-4&Nv*09{x`+i@?C8u8?O~*LM-T|!b zASxwVQv}GiuOA4?u*x?Pd$l&jI#GJHACYU;Tn5%7L8KVp@U|0+5PBcm_C0T|4+W@j z1rq{`PVhDs`+D$0RK`-CLgUGsS2`nzid=YD)*95yhk{1WV!6wLVxQ2$NI~x1+ap@V z)ep^+507&eb=62J*45WHW?v|bt2-kVbHtC@zn50~!#S*;Ku+jKSq8Wj^`eoEY*AWz z8!;Gpm>-2U0b(^Ow?5l6lgAkui-!hr``0E+mb@{L>BNiBi8q`CsR7_l^{+cpY9GHFu&FAF z$1^RlfJ6^lBazeI9K3bg(XH9EVsS!v+N{4xo>kR%bo+_0g6`0;;}1_c1l7TPY?@{{ z(ejELeZ4v&=io1^8E9>^-O|Stz@HN>w*!`jR*@?rznG{vda5K{#VaeF^qF7gFjhW@ zJkpF(1$|`@bi)ZRj3S%4GP{_rX_Lcn*qJVCQ?&zEv@{`Q(FIcpS6@)zO}s%!O%oYkXGq>h&^?Iyxbx(GGCVZ3bbC-!puK5o;@2#2EeatAlr&@l#9 zKchW}jCs3dx82t82w=U8X8?U%V>_#X&ng|eEZv(PAxhRzeiAMIm9t8XuWM$$CJduh5?ye3^C}c^9^;V zYEHKwDyImo?1_krdk6eI$g_%dwW*CJO|P1f!@BVL^%aO9P9#*d{>(Xo>N2nm`&zg9 zSLpJ0v2qz?nH^@8)4sfg6^SxC>G1{```J|jVf6+A6uZ!p-R%>x7MF=FYyrPBFi=&` zp^}AM_Ree##;Z}ZGxhgF>*N-(Y-l1zY@ic!;&QVdGVY`mEWIIKgG^NfC0&$qL%rn2 zAucd@7HbQxeFtnN&g} zn}yTSyYYND{UrV3sQ~RkKYHA+LxS#&$L|nsKFgxhIf?#nHUyY;$8l)w&_wOBn$tsy z8Zt-*C`z-mtUU#WTNPzO-4-)d7yHzPM`zW+rGbNLKmULSwK85VFDWO2fgPl1xQ|h| z55>1_a^Eha;X&2yS*1nBozkyn3Xl8)k zGL|7tGf+{wvO^|84{XaKSeP2gz=o;)l1a5|iS0SjpCom$_9;HD0iVg0 zTY7N@5%N3<>WU=a8s&sif`>-3NnOFUkk1R8(n>Pv+^7L06|-zs*q)vo_bN+Rw)~Y} zOlR~$rSVblMNtwQPVreVohPD=kXH-ewIK*pO-d$ON$}y+SROTE-5y`|rO>1aX;=gt z12>1Cf)M5uuCEQ zKpR?>&N-w(lT_z*vygC;+A_Ag?O2@ZZV*VmCSfV;0`jC?=_N@=nhaAK6 zBjU0fPJ0MIE9&Y%k+4_Z83=CB$7yqqq>S5 z1o=7t?Jf)kV*%Is9>i7|sey-ZGS>`pqaKgSCyqahU5gw*l!%KO3*u;VG0(Un&~@=@ z;Ds%1W9G6w?uj@Qn+Qfhq@|yS89~n$|3j(Z)v7GaGipe5Hb)XBZqTkyzxQx^fiCu5}cs#{4^TBC*8BGecXxezY=~9uev!b zq4Zh?HaK0o$9oxhDB+sivokQU1QMFMY%|qe`XQ(Qf-}BOY)yI=q~Dh2)`dU6iGil^ z=K5oMPPb#Ds3!Q>e)08rYq#IlD9saAUyA1)ucyuXj}0&|o^P6=e1>_L4=q=pNSTZ4 z84m^ViRKxc*-3`-h10r0i}z6QBkp;1!#8jG&_ zwR8}=$8{y)!V}H;pmXD(2DmK+yPxj@)mJ6QV7)`5uL~Z}fMG$FDewj7JW=1y9V+$J zgp{B1%QdkmPV-7asJDxGZ`1@UK-Rmgrs&1{TU;Xj(p< z6XED-j>|<-8e7B4*Ek%*U4&ti0%hgSNrM3887J02%afnG^L`nnY%Ly7M95$3Ut&&# zoP;^)2bU6Oq^}1ZB15MlC|aM)^MEh?=Gq;4@jKv`YL{&>gANWsl|T*^ClSr;;4|Um zbm-t~{g2`kK3<>)CWr0R6WPjQPn{ykh$lq`!2Q*romXdwiypFAWXwNzkso9;NB#D* zkl`c?T!VyF=|tJ66Y!tl=XWv-!?D5!)xo1SDqN?`4b46w{@N0M3N1pEUCubk)t`@e zyfr6|qHb~09x4$Z43IVqACtQrYNMEkh4q@(swyP~_soy9;|f8QT0Fg7{iOl@)~iD? zJ2VT?oR9tSW*B|ad6bt)C9lZXe#J*x7TiAWpF^rTSnUfPcKLRQ0ygK1U;ZZIe3|jUjKMUOE~s5Jw{yr$RAm`Bsm667`b)5`2Wxznt(djco=>e_xIb7V!F9N%H@+-<8aZO ztd#gE*D@@5A(K}fbhM06`*HXh{}pc1!lpu-;d1mZpi)R0*(e3EJ${;aTf)eV5U<+j zheHZMuuxe9r9ri1`!BVCG?%SpFJk!}1nET0sLx!Dd2!GVDiW7__edcFbZYFVQlW278MQ(xjh6oaj*MRNdwr^xfCqJ=LPEB|AI%Xfwk#r@!%W zdA$ZmqiV`tsW#Ix>prPEf-BpJ!*2;rzY-SafC#$#qt8!Hy_RT7Hu2e2oMD-mGAQZ^ z)SVqD$vg)JwczsL4rhWN-MP#8)YUboWJY%^^j`XV&smC#*Vn2q)daKd9~GaVzp8dX zCf9DFVrv+wNFFB@@>H?k?N$DC>{xLx%p^+sM;b3(s^4RsEPkqNLvSsur3G7)h^w_b z(>z)FxgRQhq!p!-J)|@i{wm_^5S4NnjucS4jAx+H)BO~FE-Pw*e7FmLAp{!_5h3S0 zC%rdCCZk`MaHC1$`!9TnkO4?fsd=0GNFBI}@lrRPU<>C5r*5*fpZdxtT~G;{`|5em zW>@`kOHjI1Nzr<~$5CEa@vANfZBiqHDATr=};!e=Y}t`OGqQPNClQd|yo zffoNaIO^6SHX|`(uUy$h1K~suI?^09xKz5`e!ew5=9_;;vf^&oLpsJYv2WWmF+L@U zAda1PJ~qOJoe=VopgqNS!wm-`MCspMuuB6V)VHI7O-etyr#P|prr{yg365Fnk+dcYNxt|XdHv9f?kC(A&VNpDwi z)d!4YlLd&KG|7Jx4zUfY-{9*>ShM)vX?R8?n^%hUuew$ zTVNsFK#a+QrXbcZNgl zGY(RhKwYvAa1*a&AYpW~xS^)naa>Y$@E>Rmy77WP z4|H7?Wh00Ap*|TCb$@G~WUp`yG|Flr8-C){$arf2%^|F2#{<>U z+=p=T*S%f8|ExRm0EyMLA>g#n&df9&xn)&l!ab{$8v)k;21k%ggNz}9^Z zz*BEn&-YIClXH=PXb>n7J*_rP!oL_Cd&8y) zSCUiJAX*SQQcZo~yW%)Jy)vm6`!=lFbQyBB7xXA1%Li&*(($xHas!VaQN9MqF|=BC zh}rVDpQ@nRaE5bWZr0SP>#|y*PPiBkZSbx-xUYBm(HWeVG~XP%KMpSd6+tA6D`eg$ zG$A`FvynVDb#FpLG!Vw(h|0)%as3`Os=FKtQ8{MZsUkpUM zKZ1P}&@^rMYF+-gurB+d3YYe@DcgauG<2lPXu_j_yN@pid0wpQsdMatU)~gGxRMM6 za-aF);S|`sNr{GVUnTHM=D_%BL&f`$^Wmze=Bl1*Fi@8h3-Bwb+RIP~iwZ7owhzgq zLdo5G%AFbBw?Qv+!T|D6zPgcZG4IOpxQ2PoOFV7$vTl30ToQl#vG_7>EeKZ1p`%sF zoL{r8{Qzhm?#cmUFtt3u<14(^P}=HV>v9V#jw`#`f?Vq?>~R1!ofV?DpVEmMaVP1) z$@(vS;-LleT3mkjwj-$_YvXWp;)hiSKj|^_(3_F#)^(&9ypzKm35yd-b&n$$=^_<( zPF^GKsX9_t-;AeDy?Vno8ofy3p|gKMqA}Au67IX)^S_Om?%w1VMQ8tBdNE3bh=PtK zT_c1xjv=GBzIiULs26IXttbV+m4(!Q*m3+AlmI^;gqhOnqz=#Lr{kblQ|0arcmBq} z33|!TdEACj*2>wcC&6dsA}sQ(focVPG8hj5&0Qz-3XmO5U#EQF_qUh*u>7h14?VxE z3lNFi9-U3{)-_R$uWh!*BT0g1Mc+Qzzt*+SfSUSxN+fH4*$Bd5$vJWRGzT|rbXzQ5 z4y@Z1KeqHbX-?Zj3>p8F%>Pm#6pUOkg-1k`o=E-%vr-@wx4ZIqcRAm$+=cEkc~zX= z?Fq+Urf`mrbHO(E%$iii&P&I=;$o_KNxi>FjnL8My40KypU0$Xw5@+Y0t;1k8sD*G4h6{EFZ7ZC0?S@U2Hq+BxbSi z!+nw*spF+=Lshti;iO6J{IX?rWN3E)rR#0&%?b%GNGTdw`EMBoc{8I^&NsJ+w$P- zLr0TfF3#csEEYN&dOWx6l_Cs>WMeg;ml2IDR^j0lawnft9=e)`dEEQwieUBhkFoh5KFmr zls@!r@83fKp4gfVzv%P-GI!EXtCe1*kF5o5~f5&$k@^utq!EB=g8IK|7goK8VhKax-)& zQxN*Wps4j}kUs7v7{PmgF0U)N{T2l@n_z2UCaJjgH_ZHmtVGZ3!po>~7%W554@<+& zmTvbotDlO}slcF}w1PV_T$_fqDZ*<8btYU%JoE}@O#kDl4>6|UMz8Bg3kzR!3S2Qc zapAIdJA_}rNL|bmP+^`quJMj`w7Y{XFm#d+LY3p8TlzbtkACje@Uh zIiJ}>2f@af0jeDC(50d2yG+1>sZzul#h85bvm7mb?h`vx8;DQmHBBvkWsc@;YYp#* zn;UxM4km)iCo!YBYf5X5_V*ZE=*G8D;RMSk9#B~%Ok69iN~E_$P*835sOfk+ ziE!H1C>db!_JbcGbkWWCmLvQ*p9J|~iSQb;jBOdjx-}%Hr5Yq7=c(M9t{3oOIV$Qn z{LqY;tv-A^eTyq?rq@%O%=^iKskw3R*XTRyf*0(_FT|zKwp70ikUXfbsi~2eWvA;weWzgeX+`%YdPL(of71@|(HPPak59|J}Zte+))l%W2rFiCec}O$|7eY|A zp7$G{1HJRSK@b1!^Z|eHL$R7Z>U7LxG4zq_e08ZWk@QOu;ibyBWUw~zBNK+DjURE< z&$B+_^spkz>&fEIBE$OH3m9>6xA#;@zO8u`z|h2R_r++F#6z%O3e4`dwBY))`KDNgBgJ*!SpNKI%5@BCg0&MhTAYzD*&2SOJa( zRnGz=JHOJBZ!yS#gW4wp2?B}Lkt%X|umJ@+BEdZp@pfm%s?vbPM95$nRS7>g4Qdf+ zY+*N%f)!=zB;NmIBPh_SXdtPJN(Vn#b1gD@HPvD_!^O*qUaC5PO&LHwVN%Ew9zXVz zZ5Y}bARZEYU!F^E*0fT{ofO(qJmfALLd8`SfhMN3WKG!Z0`Q3||BywG#d$4yHXBBi zAmXFQAQ`KPLTaBjx@dl)?lx^f4(r8&RsmFu2tGkp{Z7!gDSF|9Z+szlX7s3k3{6yH zp<^~<;y zE*R7J-6wxJUPR{&GJIw#gAkGA{6jXw?DvSenwwu>kq0B5<@j^VtbKwSK@5R@jW-zk z!M+JEu|5^*X4`Tp}{{W@|Fn1-WmEInG_o zYld_feAdLXcwEN#)*!KPxL#C12Be3_joVP^6zki(=YSvh!HY(GT?&4V2RIE-REKSb zM^eCm!d}U42Xw)SB&J0&SXumpBd8gv3ts@W&V9JZ<7k}TGlDrkJ|yLU+tks_3+3+H zZ|`4+K$@7v1QCD3--X#B$)BrQf3Ga`e0_3SlsA9wIM@70x*Ok0oe-thcaT%iw{J-~ z5fB_0)JzLoj{m^I2{8Wm_@^tbMj8>+8#{z<7-=58Pt0k)Ys8q10@j`lY zPZW*QPjOilIV(>MFR1VIiw*MF;TpIgw?hQa2k8vX6wO@A3MYObvNuuIC=w3c?E)PV z1TsV@5RNDTeW)0zQWCv4ZJl8{l+0KnVRLG8Xo9E6hPG7ZU~?&Se_mn%@L9DifX|f6 z)d#ee2NE=$V%{M=#mjsof>s%cdthp#S4lJM^Br`X(Trds(~ zbXHj;x)-&I)78E1lH z0#zIR_l`u!f|-Fm6}kFzhR0CJ|3T5&$0d2T|NlZ%)J!XBK>_OU7gAgEffXny<~K!4 zP;{#`Z)f3ByvvFBh-oO*Hi!7wT^S-x5#46lJuBU2VI^prV&K%Jl@k())Kt_o_5Pjv zqyNg6FT?9P&*SrXzYq5QjQsq#E4`MY*F*}RilDbI+JoZWfZQ)=d_4`@;)YQ3x+^R`E;1%=6jjRp#CaX|$xR_>appCU4Y2 z$0JsD9`qxlOt@+xj_GUp7xX$pEy$em#%yEqqsaI=@H>~>AwK~wY(B(*vXEIO7)3(n z2$4iyG)v!It}j>JOt7j({s-;M?d?)~kA!>F37n!fyGlNuM1UsFi^Dg-{2kkTX zZMcSk!>wnGR_lb&@Ba1G*p<`s_JL1SR7}ZHnA~c`((8p8g|X5M;=$!t#OyOFbEpG6WyMon2MMQh;2WOHc(8RgtNx7CWQy*9&HMoUyS-RW50yQ9eQbXVHypYfbQn8eC?V;XMp@N(-lOP~BI49H6grHn?$4z~SVEv|(|ww^{YSRRE9^7Q^Hq!L^8glv98}?Hlo~Ku=9(hf`T8M zZhyU}+%JRGNi+A zX?1$~IhO#obUV0T{0q8@$9v?g5m|-&vIK7r6Qs-P)tKl`!Rv|aippH`3zCq7vW)Bu zS_-r0vuz}-1nyfe69`ZW16&Rf+5VC?NVy=F_)uv4@c1PxFcwq+x)qawoEw~DJe;I8 z`?=&bBwGO5jJ$GOLbbtLl z{^5!)b$BP?Z++2WsVvM6BD)_cQ(wAI6~w{}!AAYh#bnbBZ&;rD7cHLSNuaH>nnQYy zDjJs6--h=|SffY~gIyd)QwB$%+?+uUx_%!&*_CAh%W zDQ~2_qVdg^L+Y@wV{_7F#ikdnN}P0_8~lyF-BD`8WyQ*#w{etcQ%QVM@>~OKK;Y!i z1?Fi%gZcq?0Gj*J`rMlvCG8r^VOc?#0KjC62HF&6XXpU0-PE$rf$Ch64S9^O4m`6z zSL^+dld^iMc)xf&<`lEx|IUu6X`5}Og0j@u$~@F^-vMRnz_qXK!XHN+d}Obs%yvip z`a+pnIw+OYBONZZ?g$#(62egn*#F&#(`yrGa|dDm3!KV=C`cBfM#SrI5w!ewF}=a- zssBCJu{IZ?O~{pxXHh7|7$Hg|3mhCf>V`tuRKIcMOJgLi@dNfDs*gk4$C9bIKz%rt z(wq-3OAYM-Pr#zTTESe*I z=o;!mA02e-78UTh#Rj;Ztmx14Fbobr4x6;dg)Y(`#^lNX9P!a=4dlCkJGY02K$#ij z4_{0P*cVZ~B)r7kIcrIUUUz*m)pRq!W>nvXheRwe~<0LiVm~9tCiC2NhPy5;!ASXWtVZo#bOu-0 zzm|>|WYuGDn7NwJkTWf>5g~L9W+Ui9jiyN(d2md+U=iuA{w51p02JbDB7VV8a^iGy zrEfRsKFTEF{<^`=JFUM}t9h?CNLHP;Y*zJ!_2)YaCaZ6~3je+41I-`3aK0XyJ#nSs zZm@z{@M5F$J)Hb6qnPc|aI$vQ^*A>kUPteKo0}9k4x!(3bW6D+!+JbmlVSCZY zpN^6ES}c)_eh6O!RTR(xU;RnDSJFGZU&LzcL!5sl;w16der&t5Y_P$t*!7F!DbzxA zj~s-#{SOEm#+Uej2XPgf4(y4bXM~u>RLv+3-=THyJz5n*&k3<^TjWY+B*fr1&^H+ zXngWAoNRf$*#mMhVa3t_w)L836__Xb{NUq*Ln4r{o%-&om+8!6kE29zy4#- zXup;3MA63azMtpJ*R<3BO5#by45xd-@sc z-od|4PwN27L?)vqr1s%-7Us!aNVHHu%&!=bEPlxyaq;uXuF!)$g2RaxPf4%(&ZRX2V@F?o+h;yl@ZbO_+8@Qg`lrAGOp8`T$AOH@YFyEI4M65 z*)5ARzJXD#ioJD>0YJ+#R-B$rZ2#RQsLh~F@aFVx;KPI{&2hSeZI(P|yf6;Klhof& zJ<+Pjaq(ky9{7rEVS(PV39Xnd_m?d~;cbaY8*z4MOI1yU5RL~ErfUNR+7AyC!E8={ z+oQ`%3KF2<5_TS*iu)7V?O(BGezX;k>^NK4^E=$N$Cb}VHgTJ-*ldXzR)HCF6 zZ;Y|1On0gLSQvs(jJUm9Uw2loA_F-`!x{3dtWB5_pJ^EFj1X_32Y-7#wrZNao31s) zrnkc84Yz3AF4l0}i72i^5 zYz;D%?lsP2q3c>7xH8AH6jU6mZ&5kj+l5}THdX-&K&z`O?=~7MX({~??)_D$MWpk~ zTfLUJ!=cL@Dx8JDg3%Mzgh1Hpnjcq{J>34@_ElGQ#Of-0<`oOBBy%a0a!9EX?a66AamGXoIn?2PaKK&GxED{!0+e3E=!H;Y5 zt19_S+oUDj#CJaJ%V0X2%1wLNjMqJtZBmsd9j0Q=NtZi&@dX_nc zXdj0~KHMVdRFmb&v~JtU>Mt*{Y`(MWj?six)!39H6i_0sLbRw%JY!+lpMNan(U}xf zUof1a6*%;J!y0`M=N?pjg?+`m5;XWAs9|+NxP_CJ&P8mlssOWM{&45+5Q|FAhz@75 zQg_J4VwvfFEX3`P&c(;Jc7HYaP9Fy`L(G;?pS65vwzx{mIv$pDG8v&Cn3O8BK5m7~ zl1}2|!qba1KRZ}`Ht1c9JLeogLK>$Zz8!_4VB6iyD< z6LF%-F#m3{7$XTxWN(Kn4JFxvxia-n++!zH!K_HG+9!f4AsUmisf(oH{?{hu$8fjN z6q*?}_Gs~XE6QqS1Ocwe79Z5sFrVRaE;0bj8wa98aGkz%7q$;*%V-r;=S75sVve!v z504kb&NJRMtnX1}uT@AF!e$;;Oh-{Ab>)p0sII3CibKMxoU`nUuL25@4`^YIYt5`b zSPRHw(4BB5LU2U<&*-ZmO-r7vtz@PLJ8j$k$kt6(;C;&dixW}3*o83OSeg1eJB^#D zM{9@*dM4Ouv!qGjW|uy1$dC5z%Fmzo)=+QKydl9lcf__Ff(GEeVq=o2d5z2XA7pu_ z?;S5FAUYTg7W!6MNY8k-O?9%@xc;vYQ}b-e_6*ip0Nc61#!uFcn8@qgNBka~b!%6T z>E_2DwQlt@5x6MQ7S?IW;5-njJimy>Nc;!cFcGc+bn%P8wM0)6mBq()pjBF{+;%D; zE$Bt5x5^+Lut%JotiF+t+oOulbT9QV0m`-W7l79fB*xK7x45)-e{{M$T)@mpF6);; zi0kIJaaAp9WG}6scs^D9*VaJbnn@|VUipABLF56Q8l_Uuw%#CI(NV6 zw(WRkJ&G`F2|2LyS%mgw2-%`qR%j3s5HC4mibSIn`B6N6l7KP|Rea+yAJM#jO(P*H z989zMPEJQSHi(aaQ9>mUn*cRn+soL{JnGOsut0V-fnb$C*=);~`30Pmc8uk% z0@FAwbItO`+u?lfSwy zpLd13AOF1MVWcrJgB!Gr(qN>z%NPz)_3$QBz}^(fpyYu&z#KnsT7$g-FE2M%@aZ6 z{l255pMK3Fc%*Z4t(u|B?byI~J1;(1#^Xtu%g6;;cl*{L!J(5p_C40nYG(Ru>WEa&_WT5%yQ>^{-I`nUTH7 z@4|2Y;K0BMx+A&A+6UuH7|pJ%gWh}S@K)+VY{u*GF`2aiv#3#$AaalPZX_@IFDzx2 zIq~wfXTs;UxWOSNPr_qkwx#Dz(UCd_6u#oso*R3&;#gE^VO&NozD!W~fIpJiFxo?% zX!!KM=pwBWSl;Z8-~;o}sMT1sU*Mm@2YxJYvIf<(n)u{KkyU#ZlEO@L@*- zD(tP6`s8laM(+3Hp(CcdFPUAm0M3w%-fJu7v^Sg(7IYXo9pkCrJp4QS^lD7I)UXm$ z>;j?8C5N1qT+54^(~hvQF*i*Dk8WrrwtL~^JM$30nYiVRBia%&6@HF)Sn^wjYfB)P zKpkIwl8y?097YMMzVeE$J{MV)7Pp@A*KjAy=#yMk$zzU=%m)ZlG`|nOP#$M@kf(q% zPSC7%!DX2ej>SuT41?` zq9Lh3;6x`InhZ5I561am2zo(z3PR=1C@3pT@ed-}&y^QIQ+fCNqmE?KoNC{UY2w>GK)!e*3DcNy9=+9l-c~^|=Y48(KZP7@o{dlhs0+^#D&$ymqDL;Bg z@MQRIqyr7yQf^&zOtU9ardj=g$uzT5*<-oGgGwepVqmV)m+e>XKghw?oQP&&I5+n6 zq{MIc;1FoU@Mg0)YE-1oi4GKF^5fi^-(NI$Eh|jd8*K_G)CuV>G?u0KETSwrQkJJQ zh;jUwh5m4y)gTEI@S~5_OAucP!YCNy0H9c3=&C3dNoNz7F<_FBSqSL{sq-iSdu}K2 zc5MzU_n_rzkfj52CA;wCF5KXGlYA|;sPt4X*+9_M94pZIKK)OqmYpwI#D#bX7K&m| zhMT-ZqdIArYZC$aM^+cg+7~!e7pnG+vyuFkJSU$UOdcpff3qfV;sJ6Tq*cyyBcM#vIg5HH>PCUU@^Pp{ z@NOf_kNilQ8}|})HP%Cad!LP zXL0(-tCKY@M{9C9B8g})ZoB*fncQow|LUBc^x7orY@%k#Zz=NG+ZXXQg&=!=S`)D9 z1f?Lj^(fmIasE=nvTEsvgPj+pMi~U|WTm73a-A=#qv8qZkvSWp^*5_$Z(n>3k!RUJ1MchVPyQRd(x2N&SF%C~72wDt8 zQD$eu2EvaRbvr+GOXF)^vM|p3=nbe|#QVj(ijq&gd5de{q>RGMg>Hdakr&jyBdhFN z(C4-ir2=s?^2CWsp8_tnH8@^oef`P6q?gmdks#&G?QRj^?UP0r%W$Z#zV`iTsmyUz zmxe-+R4lJWg=tvmm*Jh-l}Wyv);=5ZPJ`+v`o5K|Wh%D?B%`%>0C0LiDvLCxEXJzX z*b^#+&C(skS=NTVg9a(M4URA3zORY!+Nzf?%J=WU%rRCpN&~%%g0K1a)+#XVb%;y0 zb<-R#lh3le$`J^hwf`@zZ9(d7n2RI$qWT5!a@;C5fFp(YPR1UUQ$-!~YU3>puTD_- z{I4~lA|oI7A`<%detpT2M45jm5mDD)6COINB|)zjO)UgOQ3;b3+7I+(0&&^#YtXo& zfJ{qGq^tQFbkjxXmA{$YwDOB&4?_ON-p7T=Q1i75a<^d$fcogJLscUU2-(Q0{usR6 z&yKwA-yaamw9gRmOTMf2ST6u6TO)B(qUi;?u^ysKdC$XE(11bY{*(uLZJrdZ`-eod zws34`HVi3U1-^k*Yuc!E$$%UpBo@BEvr)ixV|Kn!MaMk+r!CynDBHd+#``4-QZlg6h+pj!P zsbSqHHH{nTjG4Tg2Gfjtw}1Angc$-o5$|UffMIf$X$36&Ssn0vX!or_#1M!;A%yw) z^J=2kysIJPa1X~h|5k%GtstFiOoB0F^68bsZpREqS%$;7rcj2*l=2&nD{2B%})%73=}YS&Xc=Ijj`m3+TIl5 zBS6`k89l!Lkb8Yhi{zXK_d;Qz)JocR^sm7I4*7I)N$vNvu3%l&?~rj`@JW&VSXuPB zfP?qFSF%9@enrUo>NFea0W&|9JGg#W>HSwFlhXWu@iO(L*gJkK{wM8QGyJuKP8si< z3rXu&rg(aJLn0I`OQoOkmu4yVIj*wLm}qnZX>J8L?|c}&z&8!@cn{-Z-}^=7Ox9@u zTe#yM!=QlPzxlhQuM7FpCp4ziT?ZEdzCe;;#u5 zaM!9}CWIf6{T6$$YKqqj@c4l_@b~vR1xT~{^OWGvGBDg&aTjYx=E@?!v-#9bd5>7w zS&*`K_-Spah5$kZx2Es9f|<8HjJV%i+PaE;?8s-I1*|@4`dmH{VK(bZJEkRha%q)j zg8RI|s%&*8e>iBgPDiG9*zy3V56At%B~zEyx!YUMLm`-x7rcZiY0}C9;s_dT(*2ak zK*P%vxXuUwVP&cFV+LhyP*GTjSre)&m-vMFzSV!D>Rp^Dc5Pk*9gAK4LB~&E3*HT$ zhf6mO*2MYtj7J~dlEfEpA;t>B3V&M&iHuiJ`e={UR z6I1TJedMJ@iV?`Fh2mt|LJ0is`?zm!GnRI0UNRE1UnWq!;+iB_KWjZ2UzB}PXJMHGt&Mi zbU%IVR%E?%dizA#F9OqD($>m6aGQ5Q6O@tJ;n&x=!b~jpcj>~AoLiQF%r=lPx^$RT zW2ia!wr8p!B?V;=gYM_vnfEBzrjb$R0cbG-@*W#d%Q zzgt_hF)KA8Wr~k56DlV-wiljj|}f~;LV9?ME+@oKUnbil3)GF8>Y^!ow>oG^lBhxOIG zjgD?`6Z300`vUmS8=ktlw|G($Idzc;xjG(9N($_#QsYwh?lH;RAC6peF3bp+s6kM= zFgeQBaTjha|7o*B+5t?-zg_(H#HwF>k;-v7r;3GL`F%^i&W<4JwJN9v8tXKB9CuZ# zfPBj417qWyWhP29Fnr$u!Mu2G@yG4wsTsM}$t&Rmibr~W?5zO~9>@o#BBoO9eQ+Zd zb7Z|V(Wt8!lkhEJ_UYkiSAX38usn}!Xdy{_SMy^p`q`7aJylpgeigmvbEWcchCs@D z+VCYo%y|l0s9!5@huHASu3HXUdu_zq91U;enLS8oJnV`3kS*tqKOJ(;L@MW3KM`Il zXeZ1A834AGh(JwC+Gm-G2>fCbRwxXEmM5q{FWOuNZF_L{@e(In7$1F7$D88!ZIkhw$6e+yRUIq<&vvCedzvN1E@}lq}j7{*eoz(Y7tb<^O`WO zZ(XA|gh|R^wIB%6g_)GqiZI@yvIAnlY3oFk!98Jc+h$NAd)5>>xg*_cuI`99de>Jc z$^HH{^gMH)=Pb}cezNIm+2$@0eYCfYX%7s|?k&zE1QZl^4Dp`r zyLInp62`<8hBjUr8(}QpFT1*=OoCt4z}+vW{yT^d`bsSyGw{U$tL&_vF3s_5dLRM# zo&1I8T&mBDq&ds-MfagAoBJJuYxiY97MZ$+X`k*wuIGNJ@=SqFhEY5OTWi?q;UTYx z-Gx`>o}Qf@^8N117wOcx<4y)L$njpzY9L*uJ<~oo;QWI}ryJ6q>2>vcrCZYZ`t5-d zS!2xz4FR+`BU@hY6&HI4S8VqjFXw}wT|%DiI=2xvFfNq^#L1Iw%TmSrj-nob7Bh=5 ztgFg_jhDMFXd`o?{TNz7A|lP_5QRmt05Bc`<5|3}opX;Dt;Mm-%RF{Rv-^9d*5U8*cVduA@XU8z^ z0!TH^DLZ~rb{;f?)3u4Lq3<^P7WC(0DwtYA^KxUcTwFj_8g7KxJ~8e{4C#`KO*e-w zLuIKM<&HD?CyV}Ce1FrgH=?{_Me~DK>>{iRk8Fe9eMs0kKvw&NDByUi=>}ILNzVx0 z6J{5oCB1ikQ>FLlVsH!jMqpZ(6^J4K2RSssO77L)BRW{kESg^)w7@8gj$6$Hd0lYG zGz;I{?Gf**nyemwgFvncpGFl9j+MWKOyl7sitH?^I^3Fk9r;DHVC&YwEDcGW z-~xTTpKK5>c9V>S{~~_RnCqRPdH13>;?85XWCZFY5mqW^JAF3=UhbOe7fvP{6et78 zEyXf>I|v~QkAyzd1lM|Mz@XwY1@DZl7_L)z^oIZp zpsLaDAAKX=3VLR~1XMS1SNmENA+{UBw#$tYdvB`&h?a}Pv74bicYhZz4Al-Un~%gu zL3(6exMT|xS)P7B1($=aQk5_uku7v_{kv~hE)^cu4YM_FT)bBN2q%s0>D8uP>E6W@ zaImG0BD@JTJ4JjnpX(u8=?gyP&xjqWeeyo;d@`9dKDN+98ardmTq2dui|2!#KCu06 zz@=eHG4o9LIx5Ver>m!L&$hTs!qckIPu->bHFN&b8WCwFRJ3YL0xj*Anffx5hKhNuJKsapZm_jwEgKK|v2yUAU=$M`C^oVs}gp#z~peykRn%QwY$+&ED`IX}o@5n2LR=?dd zJu#?#q9z@@$FeJZ2eKMGT2Tl995-y%VAz)ojl5Y_7v~?uWsk#49`FSBkTnT|iwWnB zu$x}{1v^Fi_cQrppIkcmaX$=!iJdD4p=d5<11aZ$ny%k&j6iqh1aOgvIen94Pq!^YMcOxPx^hn1rCcJ&O=l1sa6&_qwteF@Bjs8f>bJE#kz;FG{Y zq2xz*C=;U4y|jx&M{=5Gg^lBBhlGbCjiWCBqrc^a7Bu6yLOrQ-$MpE4rU zj9Iz^E4ZgfC+an8I!U)EYC8DOgxsWm3MarvxGpjsO_>tJ`bE&7Reh1g9GmEcY1Xvt z3v}Uj*m647n*SQDOQm~Klak5=VW*Rocs$ZqODK9;GsdICw|$WoymQB0K7;8PTxN6W z^Bds;fQ6d8R@u|0Mg(BCXus$#py9>dFfr_lhb2A{Uh@H2&HM9{aNdp@rU+rCZ@ECg zxRnSz2=JA-@9`S!xybY*JbiofFRK!rrE|KkzqqD^H#Of8 zb;;#k(u@Lc8|=Mj6i9zZ^dCgokW6)h^~HnI`y0PNslvEL;D-<9jtY5Cg}8eS0iQ};*U#Gp&ls|ILvi`W`vzLXOg{2bgw{PS`yd&!Fap9F@tSf>CpoG-d-R0x5BNozAk!QL zT9_0s!QiNaq5XB#?!K`t{><^Cdu1JnrtZM|p}#2RyQn$K=8!{hFX?IxJ+#fxY+ORF zcNhmRWG^*176C+pB>5aJEg;tm9VwvRH{s_yjB6|}l3an`YJ#4JPzVY}gW<`om@S`u zYnE6S-@S+#5_Wian3@cv+2xFSHN^X*7D)6$koc9}Y+T}B9`w$>R?G4oqRlh-?t=)FHG>rnj za~+^sP@_~PcTMGieC$mMgcB7-`8e}6k?~2ZP|B!y?(KkmMn=I8fPx2Sa}EUPp#*zY z3ju9X>MH-=y<#Mywa+eM7!JDB) z`BwP!f^A|y`5jk$`52%$qZJ{pJz_DhKYyWnx33iUtduHhlNQzz@72;l`{O@^wEsc1 z`&dfSuj$7O3k@F5Kzj_iQo&0SvoJ&BG9g^;&rHbmv}+`E>dA}wzJ1R{6nL`|Hn^ZG zZD`*3tg-kZeJ#AH(Q1+EB{01EdMcAYQa6k&Ioy5)d^BT`5WK8V&B-b>M zaQbS0*P9tY1G^e`1%DSgw%-*+g4FKBnLt?7rrWpr7)L9^k1W@x#Q{>ily1y4A!o=_ zez{7Hhl`;GqR|%Un+cmL=IaDL+2!W~&c)BWV!Z*P7F50JR&d&231O6_?I@DLlzU45f+HuV@^$CQQ%qv!_VX$N7;Wb32a^n-J0YGgEdEaN zC_jYe|5opWi-^^3_jip|HJZF!6K)^f^!|GZ%3-m7zZ95yl}WbQUa?N|`Rm-VPj3Nx zimj=0w=2a~42~1lrADd!|DepAMo%(DL(Nfg@WDgkFVoXmEku)&4f-BET`JRUN;t&? zZ-LKdBIUqk1EN$YoxB<&449Ku&q!Td_>l-2pYH6zL79O$VzbJ_{c!`dEug@m{#01N z&d)dR6&vvL4H)raUvQd#(QHi=*dlP{V%@L$r{!2BSp}{gc}6zo*664?Qsn`;tBc_u z2BI)oxaxL_$6EW6V#>xPqQ{FZ93QYyZCsoqb=p9rE0)W_{ zhEKW?eLcf}Ab&}I!*SNa#*~LYS9sn0uy+ah9m+m#9QG7A$Xf?JqEQX+4aLn=Bb@rw$+4&vQ%$>zY(#9gu%S2U4dg$xuifrL$W zz&Yo~O}?d-x$E4HF*5v(@{;j?P)L+Rr~pRaOg0zOfSfWtFmXcm7{sR&HF3D`G;i3~ zGMER4T7pW-*WY=!LAoHAtB8W3(FPgFxr@omN+G`(h|_oFPBhsU24C9e7tXgTtNZhD z)-zy7mP@@$u7=WRfM18QoA+~o{R)7(%=|&OlOF9;zE6wWO&!hj-ItSDZ+_ggr92=9 zEEQ3q2+EG;$Svtyh5yFDGS=H0x%uI6BQbA^g$D=`IMO^WU7y;$T_c0wv z?Fhib?-j~A*16&XIqQ28l;CuCAjfh@RR-5DHjGM(9q|=xzlzznY-bm`mi+zr|Ai;y zXDXXK>RvMO%^(2pFKB9a_#uL#RgxNBcG~-fJ<%f1*rsOyl-W%L0w!E-I!}tTVsgfT z5EL`lp8_L~<${*Ge>#77pyrECsTk}gkp#_}x*^Z89Ot<)wl9TR_COZ)Tp)Ni5FQWt z(l?`?6}{bgWNzAgxYvMQo{kV{Uv@+4Dj986U-+gUF<6ohuNuYZ64$}*7l(c_Hc#RH z47CUf$W|>;mXcVEfIU1ZpW8fkYi&gEcYmdJwaPe`ye>^u< zCUp|;i!i;!{t)exXLCNfUYrr^l)kJr9Tr>1o#N9}cu}9TZNE!^yD930h7FqzIa5Dp zj=4o4SQUv#SzuMvhrJpQ`u~(`Tlfju(A1wh{wFm3EQ5@*&UbiKR52>v3leo6+d7?K zA2It`@3DWgJ(OrQG$GxgZ?dqf;Z1!|rh(k>uL|6YYhL;30=5g%d4t^S62}`!+{o;b zO8KKj^hbE^8rMlbSM)0arS$Fz{)lxvs%YyMZ<=iq$<)HO*U6=A_03-Hz(Wuv0s%FU zC^TzOX7-uKWpplMd~RiM#x^khH3i-h>e1tY0d9>SPs406NekWdSFBEty_IxeGvim< z6CWkF?AB?3$E@Aq$0|^(Ja#d6&HP4<8FyaadvI4`Q*A33c6=B6=>H4zKe}xU*7LD< zjO2>O68SkA+SskQ6PUB><-WfMw($BsGJx@a;KEeC-uZfjF`7NV>&0@fc6F^V*0~qY zN^yCOE05}4vi06S3HF7+&Hcm-(Ayb|_VEj2-9|n26$yin&&*TO;3%~}6Jvm^i;bXT zQ!yBO`6X3U^5u2NbU}l>z-l}ch=N1qVceg5Ep;4v-3bTWdDu#HI05VX^y^o->H@B# zv8bEG5PGB2IxJxnbKUW1@F=V01{7zo^fh!(IAM7BQzHBz9p-04|^=RwU$$24ci_Sp1UWi;2lMTyLaM-{j(+O`(mM zxN4j|Wzi#cz!v|KY*^8^=5_U9=}?x{s=$68+!75XM3`lRex`doozM}Jp1+gr*fl*H zeYjOLXMTFwtDwLeFZ6w@yWlks3mQBylAl77)Kewa?OlXM*3IMbu)&zJug*sMUd!L& zZ>|YD(mJl6lReyBV{gxwN>3FF#7TCy^rUMUkeWWr&RU)iSfm-&NgVqf zfxQemWwlzO_Fg3aa4_|u%V)QGvCXW#l`LJg*ln#Fa!#~?%^o?J=nTM?vV_4a9^(sO zx+OGLXfPAS|1r=BRY3m^jKtQNz|~XYY~;)*0Y@;QsPbxpSgmRo5X?)qCaid1H4Wl#q_&sHXy-Z&77FCi{BvScuxsSDP9; z@P-!&OLOsGd16){z4`I~^V~0fr>l#teQurL6&I#D;4y`9ND>BYql^cy8rPvq7ry}Q zw1f8l?4Y0{$d<4%cV;bjgwV*V$$n13PQltA%3dT`7fqxquYk63-&h8CR(tmg5@Urb zOVMlu*v9czKbXM`5DeadiB0-@#8DUxv?=3i?`9HiDuQj7!P9X7zJE>@M#TB{_M*(Q zv9?ADeHmDp?EMxDXINLO zNO-+AvvBvGb=!`ljTtw9ZyQa`v?@7XbL-w;sw}`D;1=re02Fg7^Hv8-2lNaL0U2NE z=b)j=K#hk`@wDzP&6mN6qKlxFtR75%xY-NiRNXBS_4uiVYDFbOgkZcrB- z;OK@@0VX;z6Xb+P@$eghnsi_@tVUVHs|!r{u&zi7SO?-*9kY|TjSw%Zy?4o@KVXg# zmn1b75Y3u%kH0q@cR?HHL<8&#y@>A`*9<%vc-4xHre z1XfKaEQ!9Qs%M?MGsthxNvVOn#|%68g6}l!WNVdU8y@;d#5N%jb}da9WKe)wEeNcYpyIc&4n3o zF5thv&l{afzT-kNgn{|@$>5J@FysXXt-V48=!_A0xTI5q{{A(E@!QYf07|;xlSkco z1NaE*5BO1ZB#7-0i)g`y*P&1W@;&ozo zSO(b9_N*B;&g)wD-hA-_+8TVEOXp3cCUmk434Z)ztIM&LH~t2m1lS?e}z7 zQ;3$NoC~^GzN}J##!F%nC@%0n@(^cE7W*){2o~75b*Ch?0t*%^D`TajU4(0n|H`)zL6onF~bqfVJg`$|8UK3sM^~d@Y@rOBr_wh&~$h7uFk&Z7neW3;Gk4<{F}t z`gXyGYKy~wR>Ike(srJLGc-2}%ohs3C?tj3lngRor)>+KI5{KoH@!*=P#Z$au*rXg+dl{jcy zy!-P^Ppc&1u{B}E+dYLETt~y+e*QGmYiY{+ggAL6Za+M7K|c?K&2y0t%bKqP+w`jf zyS=5G;gjHfZX<9N)Sh_*a+=6IVNy00jKMZ-7b39c&+n6)YxenfHC@ev-x0*!dGIj6 z1T>9}J}>I<+dYr)CAZ(#Xa<&*>9?Y$wO{q*+&))(FINH7w{*{4H}OCzGnKxXcJc2z z^+h2T3cWo6^-eppJ`);uEZbY_q#R{9V}|{TJyUw!O0rv ze-NhRbLinE%*LtmTUxI|s6&2G}R>c>;MPT!*j=T<`;J&|nPcUab+|%-Hh?ZvOd7^Dg4v_!% z`;cv8MW$g3+n4N=9_-BCBYc!7AwGN=zqq8(-bByRuNNB#!P2_Is`aY^z8|(lm6nwOiQ=tuAhNJAgEd|WHl1UYQw-;Wv<4ajxq!I z$lAT{iJDvLYyc4|GV4`f=5AT6WW?H7ahE!cL>@S?SD0Qvr1t}!SmiA9D@XzA+v)D8 z-i2LV{ghR zvYMD{bRn)fAC&TkfidTI2`~bo>rp)>B^XYxWC-Ty2+ZQ_;k&fl)hBlmXx!U|HDR`& z<2o@sK3Vb`IMToXv})^vSU?J^ynsWQZi(zb4Abtnd|bHX5-!MnodOF(uuO-$meKXH zwE;>OxXpp+^Gfdw_a`5}!nFL@E-$cEfh6Ra>6=eTO;xYCHsdDwbl*o`G@GMNNX{vs zeN4d&mWB0xCJW4uhJkaIE_1r>NOb5KrwAHDEjU?0cLz)5oi`{7N*C2Qu=f^=KvJSK zue{$q`)@%?mkJ<>BlQHZOiba$6V)jWU|f%Y%|dkZsQ6@2DZD(~{rJC~=X76i_S9HG1?Oh%k>yJk& zxA~=m*(LfzEsJAjWnqA^pV;riBu_Tkp7sG!S^GHIvkubw{V?$5?Pq*v=@2=MJA(fI z6rFoOl4sw?Z$w4SAj=vWprucUZRV*01;tvTrl44>Ip<^Hrua4kNmEQk>GT-ku~kG! zQ#@?hVe6nPOKXC*6bF`0txQNnGf$vt>fUSr^;ak1zOU=|`+h$kW4{29J{O~#vz_LE zcJsE*vB{MuT4wvg^maRz!3eOiKilQ%Mh=J0s8fvbMMBAOmKy%Z1HymNVR4CufXwwI zOL*7;EOGq~n0)q0WdnL>h*>cqrX7ug{^akw)dv~KFmc6nNlp?|9Eu7)gO-1>B-yx>bJ5?P}AwF%*V(x!^&ZGgU!` z-hsQ&_D1|m5l?hNRg?)rVq@0?lVE~>!R1V|*PBRG91q!u5cj~wc+}N1Ghx^|H;l>p zs!$nB)|9H^OJg{V1ypQs1GrkUg6`CcfH}DV#_i?=YI;6*P2d;Dv0Wm|na7pv9Uq|L zci?2RB_2rxoTqgI;?)sP$;ZH0=$Ko>!8O0L#0%q*%c(qR;tb(rI=2P9bwcUBp(v1I zyzyCqqy*lMMI;auc?razJ0IXatt00fF?pdfl@pdaY1~!s>g^ia=uoP{dKg#G^*hRV zJ&T7+FPs6yR9~{R5~K|bCG0;i5P(zIVHWovbNebZ8xI%`>!inxMVW!c&m>J4X+h){ zbs}(P2@?EuXX+1bQMBwTVE}>s2U56i==PBs6s`$<;}gsuER)i639pDtr259QXRXf{ z(BMCW9ayC;=0>%&cPs~VUk(@jt>lTbMzqV8tHZdJ#wxc_L`224G~G7`znb5fR zHwsC`&m3f4z>D%M1WpBSisPaiDJ0`dnKkO(Y8Z!;jq8CqVQ@Z^5!s!A$wyet+b${@ zj?kOhk=0&iPX^!?qOou5ixt$OnPA6v7dbz*j&$qr}wHjzWmuJ8!8E- zlh*^;1G_6w^WN%zSkJWmMc2K#!nQ34rccrRcigs3f}L;o^{?{%Jx7YksK3^VpHigU zmdSebXDyH6^7QvCq^J(M5t z+uV29$DSpd>xY0utFCctNn0BCN3<$N+GAW>H@?u#?Lk%?GuI!jPvn-1D=w4QsYxJc zjsm;U`X5ZN^X+DX!e8E@d&K?}3b0W~IY8}P^L^?@nlwhN*)YTj9I1x;JM@T!4WA{3 z{@Iw@?fLje*b;w#^HoNKoi!#Cuo?>XuMx3iuTlZ}!!2lVSV2$*BzH4ejV{~nQXo;e zz^^o>q>1d3aChsr+tm(+vh=*Go)Nd-3 zqpk|eK|P8>D~XDJPL%hWf(K|4Sk33?#XT$1Xz&hObSQ0Is;_3rRcTRSEg9t4aPn;F zzLWk*1(lkLso;+436%o9G0gZe7RKSKhY2?7CbI%TpqP#i2;(j%wHMZrQ5IOw-W^ zLXk6+ke=0IlDk~Iw!}scxqxzkusB9yeQCMx=mU|aEH9CB0NYrD)1g%nJAWX?EOMzg zRKike;(V(DU&zlXk10IxDCd|WzFd?%CBLHr^Re;ry+B_2IHxRYsWbRZ?c3<+#N^)Q zZ82paZW}c3X52eaJ032$q%Y1hIV>>ETPiRvjJj(04nt|%maa#_8>t}!{v7_S+7X5u zoCm8x`RoVwl0z#vY2*5W%v890x{oS#hkh#9F4H<|vPE8Cs%{YpkbZ9pz)>UExm4gL zd}FGaFi=#f4bb<#0g`x5fVozO?~CPl2iP-V)?r=VgdHDnJx!~H1O26EPD~rAP{+vS z`(-564SsAZgaVhX08BFe?$_|+C;rAH#fEu;ErxTpfoz{6VWTP5K-J~?*-gr_M@tuV zG*BDXa>R_$GmG=Ps&D^M!tq-s&>8WtiKtdgGI2yolP`I|7`qpyBeJoJ8i#I&F2YV& z7tKILValaeoq^-8FYyI5k_wdE?4a~n6_ZV;bkrDD8NvI;4C>|1=v7Oh7mq$i#E5%j zk2Mu$C>?Okwu%A$S>qu4Nx-3akU^?p^EdBFAqk=RUY;RZpc$z`9D*=8-&d@m8XBzD z9>YulK!HqFQ5nRVniV5Fjcdg z{kq~V5QUwPSaF|D9$RKZuCM};o;f7!3K$V(BH(@9Tjw3uhUR-lCLL=->k5RGaR5{p zWLka4Yp|GZI#WyM?JXfyk(|Z??JU}NHDZx`?X3gyYx{87aS05fGE4qTHClbkTD1Ca zOWxl5PL$j_Rb=TXBtPvfVj)JV!NEz}_^R;V-yefqJ`ZgIr9U2kUg(p7?o4Kb9W~UX z=PN8rFX#|A@A}uP;EO#fXeJ=mM_3@XO0`T%G=K`q@s8FBCdL5bQXs?wjI5AfT7Y?i z-VZH<8oTmCVMQTvsOZP{@E!K^kA&7NlmAjW zE$xmR*GS3s=fTkNvmy0j_5qjW<3HNqn$-SgoM|dB!+&+A^DjNgZzSpU21;P;6ohCd;tkU16xyx1 zk&?Q!D#_IY+m^NBie9E8a^((eT?PrTV%F0Gwa;W+Q1i2WAWFs;LG*Oq%ZdW=0?1xV zrzaw!3)J*Nf%CI$ECVnmKmgucyK~y!!892fpes5+1&rUqfc(nY{*s|>jI<~+t&4BB z!B5;bKe?y-eQ3z5UjLt0@rs`>#x7l#@|o{dUx3U36N5ZONB33gJ}n)yM;gp4e~0z+rNKn&m;KG`_}{ z+r3Qq16K=H10mQPt;Lp&zZJZ`dLMEBaRc!tPDpHnWS}w+b)PKG8!7&rpWI)mc8NpG z%*kysah2z{3*a|{3Ts^j;c)z2p9-P4C*J038!{NA22g9!>fpF5-_sgL$`i?$WX1lD zzf0F-n>sx(v)cY@usR*$=YWt3CO0?bcaPK?kYS`%=lC8_MJZr|(R|vkD9dFVe7md9 zMalvwJ1GOS&q|Pt%_TzF##y;F?lRopdkC|`$6CK8jO z)|>%18e&@@n%H8fiSoaRz~~CuuV5~_wUUIU2|96psg7)c(5|QY&jg^JR2}M|73{LNi7Fxub7T{r-%6w?ySHzxVEpq^?jIH6hrMC^-r>-8-v5Qb@^ zJZBZ!(6IMD&|l&1XncBPcMrhMbr>h;Mr8<=Fc9iDFc^E!;D&As1H%G0b1hd4KKUXS zP~)+ISc}npo4midk)B(ZL}_w~E7``YQ~>u5HzbLgNp>;py~EF__YOlF@ONRpPvQOL zs~jerls+E_oP(IvPpW5@Q4ySTP7|F`pODYf)E8@f=>2{LudDyQU=#;x@4*Jh(_-_^ zFSa_^gcF^>7VC$O7W8^AjbA~*pyqncgXz9~gGq-t0kO}sumP+f)9f03p8pZdTY7AerH?WvJYebsxCy(iz|s2PEvzmbUW(YoZ{~puz+w1dSu!W ztu2n&J+4JK&NN!GYENh*L^(Y?)CJKPpBvI@uENZ!H5Hg4)|BG;vv-GKWk{a^N7#&1 zD}W4?kB$$hO1|VkV^gTk9aPTzghkOPSbbQ_drIBt0Z*rvaT!7XT^5G1=BFLc zP~G5#YagZlj!G9Sl-K0U5DrX=N%H_3%3+7=aYD*?v(&>vZ)otK{vqz0jIj3U%R4qi z_v;-atUq+}JDSTEJC8mOCALM~sf^@1?~p9S&SM zU8OU*evCuPu+HsgJCyleDUd;0`f*XiBJ1$A@!uDcRPu2n?SvWFC_i&@{{h7EeXSAE zev(wtkPhGLKLyh#4GSDCLIZUTh(;j&@FD{6_9=syH`onR1p#>jdD-W+u!N}09aVla z0KDD^avr*tS1`~kv1wnqbBXkMKsWqX=oz4{xSN;Q!v7Q~!vZeDynVtCpZ=2O2N8Uuw%P|IKSoziXeEAK z`6vHUT6tRp$|__P+;%6d+R;fkAut}>#)X#BQ{1qP z)}p09Sobj+3^HIygFat~v}VIvjXlRY3B;gHQl72=fE}kx!c^61@D1BG;&T7Gr-+2V{x`sIi6en-KsXN_H&9Hgf_%a>`FS+v$ot zrzN5ttHem!#=2F#;s9P7T0aLkCBLuh^cY%%zi||fPiiV~yussb5D_!4YuNH(x!D7g zEPLF5wbePj_kisJ{%c;?LwJu%YQjSuVE7wKi=cR&6fEds3kCyBWGz*VP*8ZKgUcTO zSMN1c`v!i~vFVj`3M`&GM){gWeX^!H{A@Nx4{B7t$2l~)e+HsgbJ5j)2%rhpH-SBk z%3oMx<0e}j)-ogo?_IF?@M~ipzEve%OH?RBh#()7495~)eaaZ$opjS%rFCos`=8YW zgamR=Jht8~<&gVgj>OxxbL+O}2vgN#3esc!rTT(y%wp_WJW+2)wKIT*Uf;a@#7`_} zC{e=`zQGa|cqii0r`Y2%B=2MN7du?a0)X{l2zat8t_GHaak|WQUcQ@w4M5hE2VDXY z-ArrW00UTcJf|*=!VvT~5xYBp7(@#op6e(3C7BjG$81}j9E^xR=h)bxL^XsV68NU!!i7*P zmAn>5IZwWk!}PT@hx&og zlD}4DKR-!r3boWNvEOmKXN^T!PHr~{Z^IJ=(abMBA0`64M>Wt1tFi2r|NcAbDIWi* z`5k-uhZeI_r(2k5TWg=I6*N0jy?6_7iF3Ri-dryUQn4%pb z1E%M>z>B@3kdyCe9l8(tH(CVfAfemZ4c9|+s03ePP8Lh?xR*+d4(l4a}G1aOWfOyxDqv5C{0Ho#XH$aJ^oTec#b2axu)Tx%r zHDSsuf8^2(yDhsN6PvBl_7@)c!!sGbGx`UUQ%(jRt}2e z4BiKBq|H=7=47X9M;9OPm?sc7`8!b03Xk|pO?rMeU#i!NIk1Va&nhDCUo;+gR2l!%Z~rxMt@%nMdP6(NrxQ4hB_>yj?~bAe3Ctz4z4oyjsvVqhIZLo7*DU-j8cbBi9pYo#(DkUb6! zM`Pv{Gwmz5J$s(LbAw~+TQjG-4T`W^Gt@B(d-!u%>NlUCLyv2~i50v`=qa~+K!xHn zr%6@n0hnd>7d>{I$nwfKkR%u>49wwveQ*CsICRXh>OYO6InhYks2^k1EVnDLC<^pK z;ftD|WkPfPmxr3jVxPUYsp^EBeeeBGTVmD?YH#0f>X=|S800OTUW03SANRev9pBup zf)Y9O)gFvAzCQMOqCJ<2;TrpYeCO_cEu&xw z=_9Oc-`8wgZ5O;P0y-bcA(<^Tb*@%j^c<#uiWy4Ml!D%V1GL3Dl+I9WKNFc7R=-2m z^Ta#A1lD=>c(m?X*J^lOP)%XBTc*w=N9B3A`UYm=rJ7{dk@HPpfhfqUZHC-%*1`6s z>g8M?`al5?Nox{KSSx7hq>7xO08_yId(#>I*NEebvAcRw;AoY*fmD?;h-e6l6*otD zh;n3s%vHW?{KNqnwd-GXo5q<(7Q(<=XvAfkt~=WAKfvY~7tS7uW!AKM1-^tQ zpoP3{-g1L$_jm^dj2qJb9x6&{1uyM!=1nK_Voyad0uP~-CHmt7%j{>_>UfNlNkCwZ zndLv&WZ{Jqk%^(a*4hbUw?U-wO*&>EOKdjd>kt4uUF}lCHY}C*mo|=iSINNeI5*76 zzp>>XXk90sgg}%R!4}TYvwwym(*s6IL`duG@x4;fO2v6WHZ}!j_hAslipZk)O@_3( zyJ#v{rBoYhN`63eV5T}17)rr4W0a@07C^pWM$#5|l(_U;l-dd54oENEuvUKvSBsyi za#Av|x2dd-A?L3a_{S)98}FX3tSF7}D;K8|ylsbAuPbo;TNMf&SNKnWUQ{DVTxBIz#wKGEWv#3oi>dPDa^tvf2Xc zbwsnjWP>0J>$CfKM-|B>?q7rQT7Lr?d~%pJ{%cVuPE+=5(E^1~n?DosC82?3yfD}q zIA(iT;0~yZyp2lWMR~3^(#U zZH{md6anbjyMkIH4#YDsV(Rd9FA~Srt%lD$GsG1z^6vbl#!|wsogJhH9xnK{xI@Wp z84ouHm)4ZOxmKGD+C2?cTeiKz4;mVXJJo9V>nniO-+-93&+xY$^_ro~klKhcMk1*O z;H2Ulal-mKPyId4md+Q_oxnjZ(-)DD6OBl#JWtrj*RT*W#w|I*1Ao&E zm^j>7ZZ9PW+@0ydfPWxa&oS6~I)ZWNbp>1)K_%IdFp1H?!`;l)nt-`2sOBrUvb`4J;WQ2XjxYv65nam>mgdCMl4SzjqfQOc4%~o zV?N#nZ}wm!$T>_MsddQ%4W6yq@D??lU&LkpscvvXT`84hHkDkZq_~%Aq1d9U56w$P z3;nv{BeC6?hd}!nuL#88E(f2t;;HjNianY*!Sp}v!flre(iw1YqhzA4ARN~p+A;Kr z>C5pBob#WZ5i@k5FiKWXg;mKbskmjXitR40SmIP`pXiepqc=D^CgU5z)_F3H{xOzwZi% zTlB5eJU@Kl>4nvv8<*HSN?VAgmio|aieNG<5XtL5cgE9g;A8gz()++!ro#hiUTBHP z-l3T9wg2ohea`WkU&|PO7R0XCSwi_&5unrMf8U}p0lDEKV)@NY{^fFm>rkwX9g>my zOP{snAQ7b9yMqo1%RzKlTa*IL_Ma>2IRBj!*>HDLLX$g}PI5)%nJyV_&>~~F>E~No zEhID&xLxK4f~@#by-gRX%{T706BuD#Z_Y8iRsgZ&|FJAt))I$}+Y$&iV?GPc+4NUx zehTw|+l`#=ma{i(-xElN&DCz$N0+Nz`K&koU~^WMi#usqYK@~>u5xSET<;CyYscyoG!8Xp?JmRBsV zxxdRhJs|dXmnWB{piZ3B6BGQ>ch4RM1y{gWiw@i4Qw+Km!4 z4XRn6iEvR?S)=SQRoo8!VM!vs27HmAz$SzEE&)2$<{Bd)Z9X>&4`kg0Ih9<`uSCd} z%<-_;9+bkrd(Hi8SmQ>hB&*&j^JYkSco%UQkWN5cw?{{2I`r@Wh9pC`xg^;Y2*7OG zorYNBZJtvAFsxN|imNl)9XZWFCN8%Ygyw)~Qy6jc1sYszt0FV4hzM7pFXgXT7v|F9 zvc6Th0qXAhmQm0@-P})S+a9}`aEW)i|Dka`rswpo^KD{ zq9fii)`)O^fWsku_RiBY`DgQFQ7OxwpUeH~VSy+E*Moi{DiAGxmA0p@WFhxXxW%e$N!$5yczh5sx>nLE!mF)PW?|j4EZqf-4NJ@I{slB~K^$lKBSD3;2LOc4Y zP(WMn5-G)i{tV!S4Ogk%fOWyLKSa+07%|#xi{g+ffk(Bpp98X>{>()eAaec?V6QC{ zpla*oUZCzNaHhds4gN>|b5`|^3HgEPsAd8n0HX%IwzG6twF1VI`Aslk1=?c1U4i;0 zBf<-wnG@|D8p>z>1G#9M@zHc%+g8D)E)Ic8328$+A+$x*hYsx)AONgpJh_mCST!It zh7Y{C>7V2vdod>6{VNzMdfj<@YH_hBEepbkrsWJp_At^TsvxZU^ zWOy7Q4EYC&spRigC)~Ljh?ztKga3PH5XMMnp7UCranAQAek$CNcBabPw3yRtzUc4A{{F z_ub=sg%chiPNCtyI~4d{kVV4aKFZgAa}&fxhQQlSZZGU&^D#08Hl^|2Tnj<=1Ex-T-i=V_| z&gI!Hw;NmuwGrKwGG+@6@gg3w3MQiC4zrv{lSM(&7~|kbc^M_>j-wOytXknpv@}(H z&`%*EcKLckF6Uv~ubapK60?>=(+3Ca?#Wn;e*9m>S0_`w-riYb3&ar}t2#QjgoXtx z2&DIp{C(oLJz(q?5u$dTo}fFyMJ8jEWyt}wsy5Zmp$P$1rv4w)qyubAfC0mcQ&=Ww zetVKVs0WY7ERj?$aS0#Cz#3;)7NyP|N%3V9Ez7(K)IT#i37BpRnAZ9fbTeVWf09a6 z-NpWHn3Dfr=;~9rJJ*1^TEqf>-ar|*EhMTh%^T@$s~EE;>|4uI)zxN$!3r(@#km+q z`#KD>jHCmN31I$AivHgnv-+0&E7otK5?_>&235YLu(>Uu2bRlt8*?o14t!i)uZS-I zESd&agk|2N3ci%txNwSiM0AWqQmp=S4bA_lbhfwWulB{`)q7c|A)- z(h0Sr-CL18MhrUX?a)YhW!_a|HsHqHv9L%Fbm4O>aoLEQ&6_~eF0K@|dR%OZXUBgg z4y9qrBM!L9e!5zztU!hvKQf!-Ef1ytHlt*(ay=u{bMq>WDRaz@H{e`#obBYxtHr51 zW9%1X9#W)PGyLp~2h-&Y5u5k_XThLk^4O6Jgc?Lo)Ud>s}U! zIZ=;zpKlOXVCJv{6)|n0x>ZfTvqtvQI?)U?uRvJZTQDL#)WLMqhE)KONG2Q(=(gq; z((Y0Y0AAhtkO4EXjm+&B%NZ8zkTsgx2xOSCSMuWv0UsRMV713hs)p^^m?kM?iI&G-o#7sAa?>tWK$rxrE@09b#@|*CvuSTm`Q?AACMoCm&#t(NJB#=g;CH{ zz%Iyp;+Kaa-j1cX`8PhrAffut_cIv@f43_RU4Y-x+h<%$hp-E^ z9)>p{{cbZx3X=6$!TUhOVqVapOmUiT0d2l$U%(<2v#obcaf?&q%@Z_wh}?2(i@IS; zP;5b)*W{Jpv;JD3M0JEXXtS~MT?9XIwm4#E@@$;e12f*Uzxf~w01VbQF9mC6=-De3nh^LBdmzjmnWc`@BnsPGCPP>@ zt*Y@5^}D@GuIA1ys9mJR7ja5o{{Mhjz^&eKof6muD_8DrBDG^Z+;^qhIBFmOuYX-m zIlUV47X&7Wd%A>D{Yu7`9CHl_zzq}R=sru?%B7m=0dyxhNj5B@)&CM^ov5n|j!T0k zv@ff_!(DcKz0>ZegI$2oJ!)+I^!ISZ+_+Q&|B;Aryy5x}M68}@+nPK+5tfC~!q7r- zmGxyUBm$FCvH?q{7)1f4>bD_ZSo_E*DXzSN7CG>y3=4>Eb@GZ!=jQ*10jUhjWH%#Y z0Q|LyyPnf5XI~dy-zAXFVLkc+*QUM|f++BP?9V%>A}SE>9z2PE?jw@z*|^F>*HjNV zsX-P@$xr9?*9_l=iDqn6PL4nAK$Lg~et&(Ui;6~QC8465O+ghO0@oaY%dY;qXD1>B zJF9)EAR#nY3ZIH;Gxd$veW-e!+iQ{i5X5^et2@Xqe_g598(b7|hn{^!kivV3oo-)d zE3LE4zx=WR<+i!}Sqokkpk*SN=R&FNW0d+YzjPSo58pta=~>jELANt^nsJE~k@vL< zi%|IgK{YSFm`w{)@p_APuffPnP1o)I6YODb1vs&T3uAsSZ=l;3*yQFxeooBu0|bko zOGnwm+liyxafbITU9U!V>mF$=Hx+Z{(9c)6r`i`sYQ7v-Ihu+QrtPl9K%(Wx)HA<4 z>`gVe#95w56418qEIZ(&3OX&VZ&&9L>qiJ*-h2o7i~`dK5{4P6+4|r9eg6Pg8<6tarAwKhku{o|mz7GUj;{IXu+`UeKpu(PAXP^bXb)jO#hl zLeAY|x9fJ~HwKHVdR;B%@bx2V^swN;EuY1h=Yi}00IpXOYgKn{>JN?cooIlmQ*buh zIKmc(FGBV?+CHwpYKwP3^779IU;+0y>}s%$m}R&*sr+B(5+K2`$;l`uH(6zulsM4| zCBx-%YX`ASwF(aoi)qksSHR1@-G0L7`G=4mcI{q=*GPlvVWb{Ua zyg^8^4Q{t4VhjT$k^vYLhxoQuhJ20qSw-61(FUGdC>u%%*Y7+G& zwz!(=0%)i_^v#1eTP|))x6ZdqSTGoipriN^IE1s>LUgmtkI3{X?R9i0;qVt%{2{GI z{FtHeN=J1nef^@yaBh=Aikiv9Ckg2NF80jvRvD2-+ zgE74|9HdiMegH?$1qIgTjfyuOGLQehp?_k~DC zysmi@#iyM-9dR;ATszZ^NdAZ(JIju!s>47{63( zOY-Md(z#(-KzkxG0K=u!IU$T>4C{+G0V^=Z2Pg#{q1uhh02)nl&m1mH4@iD3Y;7^U z=TYGqDp#gRKa_XuB==QwC-_;6cXz`JCO^*7SI_bdMQL1Fj#;7q*XfdN_fSlWIKHP1 z&(dQ5H+(VZBu^C0yp?z%=%@2-S7iAL4=kMzilVU5TwcWRtt+?9)$aCiz|+bKzPgh{ zo|c)Oyk~~1U6Zt5PyIdl=5^_BVs3APmp6mzqkSp&YI8>dQalKCC|zTuxSai`J_M2% zkxLr!AF<(T?C(j;p)||rP5CkADrj2mh|3xevwfunEKAl z5zTFoL!SlT4)NRikh$6n6*;H7Y6ULrB&SEgP0on;6?Cnx%qIA}YjGXiJ@(c&C8(gg zpY7g#0o1T_e~-PlxHh|{_>u`^+A%tG%Y41Fy`WLgl5FIBpgJ~o@w5trbhcl>;&u#` zniZZf0Nq5eq}@-^9dpJIH%>M-2k;o>$=w|G$M&t_M-@+yAoA^wYPLjzlnKF`7MXP1 zUsp&ZZNAX~b=v@x?u|WL&sS{(rxy!ZdcNmprMoLw!LR(y??MbNnyS$pq-iQWYsfHL zpR&GWDqvVFH}p1DTViHq1ll`u_5L>&bBNNUMWg(*~X<4Rn41#=;Ce2&UI+Ogw)9x z&7QM8!xs^Vh3ADN;wGrC4BooyrTB$s(Y z>4k$3qk*)pIL2Hf(&5X;86ZTpXm=boz%@-2Wom4z(UuvCE_ya;sOML0cQgeEcb92f zO2ki#6WH8Bp7sX8k!&x%>fwYrR%3wRt$4WtaU*Ms+zJ~MQxJO4f-%On=IgEJs<5*K zi!THpHWGn$Z%shnCHbv>Zc)NPTo3f-l2Ggu5V!%4E)0PuVUTRVB=7zV z(zDF9_l6LFr^vP_C>IBS9L9Z1p|)jy>-`j9Vq^<^2+`D5z<;LY%%6tGT?k} zKR_*wFGSL#+`Mx4d^5w-R`S!ImX1#r9S=Et_Pk(H_E7tBb2j8Y)EftVIo zF}W35Cd8kpUY*iNY4d3ixUEv%jrRzpEZW850>p%PQpB#cu&z*#ncD-z?c6FS*I99o z=F)^v;uW;-D}s!>z&xAI6{_p&!^Ty(LXmm=qr?kyZ<7zN*Fw_0t_AV(`pNcIqvXQj zc6D@aVC)F%9U(hOTwSzbZI%+1=K1j?wlR1cn4?%DTyxnx1mR1-m(FGXnf96M$_0)} z?S|`lBF`AU=-m@Wz9x3Gi$Re^E9*U4TY=&r_Ix8;^5e62x6xhCZ5wlr{bJz-Q`)@G>2{Qg5(|1Xjq8_wC5|GF#_bn@^jj(m_l;nW z2R-Cdl}4QCN_a!giQbH-6gMBV*#WMvaZDl6Y_4zmax-~dNtpk#0BPP7O#+5%*K%p} zsY7xrQVW3dgh5Fh!Yg1Mk$Dpp>DN!2Mt#Gonsnf$XzPClGd&uhUA3ukZs~XCalp&; z49Bi^Lq1GI#aTRMI8B(U5V+T-+Q-4C+)#N|u%t}};;>|&jL(m4d;@}^=J9s4{KxBl z*xV>99ymrD!_*0n?j(!p?D$BwQ%t{5ne7PtjZ^s-zMw`XnTOAVQ4VF4!pV=I`@O6~ zpDCRTLx~QPdu1o3 z;DfZ=rzGUxASRCSs*OxgNAiK*ac9$0Sa~>f9YzVvs3|Y;1soCtBu#E`#iny3Ex+i! z;nPu5NQ+!#7L=<<)o?C(|5gaen|ys`EZeCzQQQ}FrfA3P3jNwQ$iG$8)~6Q}iX z>;o~0VzseJ892jk783$yY|Z*^pyE~CsztO9Ney>tvNMg7uPbF0(2zBUSXg% z-EpWu;#b~{;zLZZpf050o3XL3L!V+Eh>0MSTm3dnNmFdH#9gibdt3^C^I8%HVEq6{ zb(0@zS;m2>fq-^eqEDLvpDEiINhOqjo-*y_;JK zj!UXwpB0zX%nw;Z%Y@7CYor^?j&lK3Sw#dl{*#zwAf_k*zDaG>krk|VtvYs*w9W2KlYPosMrwxac+`&{WR=HGA8FQVT<}5 zgDeI!DxEv4`5+iC*rEfIHuY-4}*cMlH&jUtm zg*R9xEiz>x#`5mt;LSWkob0qgB(2SHUY~C5@kP5O@*%U%aE%BID>1utf$2m&Q?M@& zYvfq-#n}oQZZ`lULjmh#uu(QBir^|fG>)-3f2-e7kKoCPiD0*Fec)d(oyCxOxB}J+ zj{eqX(yc>j4IXCGkd`ME3;QeV3q~2-uaU#Wk3g48SFg-QS6lKX>4^Vh-G$SK=ak;O z-MFgYvvO3za;KM%G~L7FsN4va@o93N_NC01ld|HcnTjO!(_UUAjpmrDJKXggc0QfURGvaq9?{Oj+q^S6y|e?x z%G&fZX)2OSMD*X}mG3XTJ|h7kn74+ zJ}U2yuH|sH>zrc|L{!1MwZAEOFRw^h?#ZCEyiPh~2tEY`9wp0s_Lgy#QU2Thfxan9 z*XwbV6j-`7?a;t%t^FFH^x{T3>Gc^)T&8_#8PbnxM?zQ{URLNoeK3r%sj7D&PM@0V zoRJT8xSqGYPE|)KT{K7gg0Fu)vw6nXPo}#IPC1Xy`gdnam*3}T7vN|$5!A5Dy9*-t z=`_43mOGn_K@t`4TVufyt9Hp6$VNBK&c+I0uNiUWs*z=oUdxG2{|EZ( zaBREn2JhyNXpA`EMbtN;=a?G2)-A@uYIfp}-MIK7TPQc%A zncY!I2(;z8c$fF)X$!+}ZOctWmh8ix@@Uzsh7VVoB>0rSi?3~=yqWSe{W~3U(mD3r z@cOD~S(V6V78Ixc`ok0gjgUM3WHnicFziwO^wp}auntu!`QfbiYU(p3#jlNWI7Yns zvuzbWZ~l{IDSP1=3K?o|)jwe^gA{WL31j-;ndW~sLV$o5#Rx@6*jVbf;8U8;l%m1pOYwBL~EQ(7@wA z4VA9_WsS}F-gg@?GSpFJ4IFn#;U>+T=&yNq@cQAwTvD~qT0e2P`4==vCyEi_`1|8C zJ+l#b_}$RMN7BK?^IMgrL%aM218xC^cl&56`imVJUBqe|hC!0Y+Md`!K)4jI7vkh&q#)Rpt1tU6iiuW7>CsL=lLpC6c+;guGQ zzpl0kAp`7Z3kF9C^?=*+Awqm6+S;4@riAdZiwM$ZA?0H^-%Al_lfeQkY@-3+^@uvA zGBsOA{$Wv*Y$=`bz@FB@U8hBP{?OlU9~*0VUBqCG$dG9TcLtFeboFEx`)|v2Kr>2O zJPxka!twFY^g!KRLhywxFjZm-q)dlYC%Qva2{occ`y3{wI2BsO>*9c4u}aI>zT6OU zx;G@ZbWc+=Qqd=>7rW_*_)mwgNRuDGrQUE`n=>26{g|WC14B!A4=y0%8a#9L-#VgP zR~TfR2p^0F+#7d4QGvMz>`Y=?$+3V5TtaNu1%U)k3pR=XP)&2yEfcC{2-OM>h}pym z`owsM`^vWf?qcjO#~?X~VYaFU@FWp$ZUF-!#YY&W`g20UZKsEzO=D~lWOjQkxOFna zJkhpA!=TUcMjhq5TId`4QuzY}k2&Q2$= z0UWfGag9-3AnTDeeDzkw7m_rswmb^iDl!`+X<2BpfkJr4?c8Ki<4&JH#U(9%8WHi6 zatS<@TW}nA$e~vzyz4r6bYu7!-(GW}1%6W_eR}iSdn>Cf3|B^}gI%L_7SnBNM98Y` zn=n%ITuu4!e#+3CZUpK60?1l{tn|MCligvcw+Z#FTxu70Kt{-CC?x^qrQ*}lrZg$i zH}%PIsTw|Wt@uP@bh_=N*w*nXg%|DLroxEUP0~A*&=v{9X`GtqfnJ));k{`;DqQ8lQq670iy@4O0$gl52Uv*3S0#(h2;-!oB^B)N4b)^EUjeC>Hd6X3RNS7bz zeFw+@>vla!?^5s2Q`OH^yX4eRvHWg}^2!E;)tS6IieDe~Bu;{MD9NRmsL;8=9WnOl z;d4MiF$&a#mO~uk%AL#43^yA{w_BZBCW~xI|3FD|a`;Aiz%pBr7q2VgsuOB8qU2jT zfX!ildeyq}Uqeyo&`ik6zABI$bn)5+uDLLb%h3pwtBkiBW^QxR&&vFY*aEGfMf}K= zR3Q85;>SH$t`efKp`kq1isM^V?IX|Ndc62fQZjtH4GMqYge~@;_z1i-ac6g8y?HOC z|8?2H1BwX100aNj4#=!zpK*kDQBqd*l~?vQ)s&IcAzE_m@wGXumle}u-h>3frQIie zSdExoGFH!)dGj;^pemFRfnuWr1cb!_F|x)ZF8oMAKD`2RFm>goD8Y3kp^%@;|EsjT zd-|mS5N^bMqo_F4D|p?%lez+#2NWyz^)b>ZD0gmnK?_DY9by7+QA6=X0IL9d0l$gJ zj?eS%ObzM{rN(G@p}rh!4QnBuRut=t+$fY0mJvjEJ1CRe73{e`!SCa26ygy#0%@xk z&DSTcYFDzKtWwtIBe7v=7!IbdltBF&%}A>=IlRs9B1naTV$?S#zI?V*>hE{BE#mZg}UOcs#Ib}yAiNk0YD(( z()`bB><#^edvkC-={bVjTsEaRr~(@HD|mSY0N<8V+~6RIxT?IoIKh;ZOw?;IR_#m1 zsu815)c^%vtGx#L7-L>xRIa-dgu7rLR+)~@2YEtl54CfDZh>duI`Vhj8QvUkwzJ; z*dHc~k2Vm$3`+AW^1@WZe0pao^_d1^?0c}-%#X9!&;f#l{#P0`Uw+{P3Z|cs^bmJb z{fXN>$4qiBnC>wnVvob6DO-c&+e_s63Fd?eGzl+&d$?e;9q)}|BVf$^p;gg6TE?tB zU=O(E%3Q)zV#l~~Z-G<9Fj?nw*mlx7$yNw_rN96S?;JXS+1;Nf7sI>QH#L=V1 zy^X>WzVjc~IKc2O;i&14<5Gv_Rahghgxh6xFyZM1o@kx0SHgMMfhAPEgG`H>532uG z>~l`g6;5lUlx!v8GR914R3J!j(9mewVhbOqf*;nDGB_^Lm4(rKaDq-$cZaPs!IwPX zP7|s;c7PXuw!fm_0qB38L%!|d@PMvN&l8FRyJ=2v@x$4ObOgNr@-BOQhB6T3`)et= zM!s~>?EhL?2I^dPK`hnHggaW9U(bB4uv~1?w9-h6-2!UBvQOmrziOL)%5vS--tPUY zdXf_^t3o6(C1KTF?~%=IUQ`p}rYf` z1XMYwxo_ECp+mQ;>LMb=rL``bv~GbXPmlCOO!n zwOz+;S8g3C#;$;w*oL4@7x(6j=b!m~)8YD~iu3a~8i`*J$S(7l%Ul1va~{|G^xp7m zbd~Rg)#N|tueMuC7nASH*R$2q>s01(oKuq<=J?1h-iL2RjVFS?zgV2(Q@-zo)BW6E zL2l3X1O2^jx-;tW;gaWh`&&qDd;O)KL5F~|ab`%6JdnA0RZ z+@AicSGvfSG@9;-KYZ@Tja}&sx_Ohm<>incncmC1s4&#s;GxR%BYEoMKOVV`ygIz9 z(T0p!nOOJ-dVIn3;}gGD{r8Vz{(%ZJUw<}r@sBI6lb_E2ki743nB6psJio0N31}S$j_7B5LBzZ=QAxv60yPD#?O-mA=9$d34l3}JJ$EhgE(JDu9S=wGwAv^EqPYr{V|X9pfAz8T?Pq5LLR6uhuMUsNfZl)|G{S zdExiO*+@48xmYegG*6qEuO9C;DM)a!2Lb^vD6(;6$(Bch9$(#(1-diI*NjRV`R%_g zakY!g4Td^A0K=>erF;8;m3Fxh)Wl1MX%u7QWDfx8@>eR>m8`a5T@sbPE`LnMRY)t1 zrQwAkZc^ZNzqnd~tjOEK^ zEnRB0%~J^qDz!XNf~Qq8SC)QKT$zYROhv8S9D>JHj*wC$YaZIH^jns$6m3%soVqk6 zA(7Bb#bfGz*M9#%kGkWA>w3RmujjMW@@d}<$g(lI4v6!f_Th6v`<=Hq5h{t*O)CI(1VB4i4vq<|NJUiG0VVus1QW`sNAy@5wC%y%go03%BzXnFZd z2Od7MLN!KrpEzp04HWU&O}{*stMe{UTCUhhy3QQv3m-f>fghje+j8- zaZwd#crm0DO_QkTG4AYTgY31Dr=^$e?YO~0C-5KVfC|TfJP8~QMcN92mE6tb8kmj1 zyw}eV)(+XLuBe2K@Xq)DXxn$r1EiUYkYbyjEHYe9PG1RH_2q$-g%Al4fm!nt5aJ63 z7^FpFI#L&>Xq~Eo*M<7|an2Tq)wvpD^B$CG8kH&4LKjX9gzZ4sG*@YarJ(93p*f&J z2Ep9Mc8j#Xd{iVU>gqAt3C#@f#yFVNt|^}n8RP;2$HyHw3d^CRnnz;}N1!aE{-&eX zo>QpZ94Ouczz*zf>odvPW`b)~wD1iW$YB;Mxr@~m64$6CjVq+|BjJ$xD2@}y!O_Kc zM@zd0B>uhC>k1au;^McXLU-hG3bEVTT!rr%&!Nb)-FBG-&p!B7J1an}XGNY_S#XUu z&&uQ7r~-1mXipG7hde;b>fJ%1yJ}g!MQT%Sg7p+6k8|)v+?k5l)W|~LGaa$GVrPP_ zUIGUcfNIWe^Ml;EA@n;>4tFMKZ$wnQQ$?*uO5B?}1~kDIs^?i|U((q1`af1capGzR z8*IU!aI&gh6xmdNZELqnvNzdOjCW7Og}@F)3T6g``ewoIq~efpAr_ zLFgHx!8%pF!qP;&*AcC)-;m>H_9gbORK z>^BA)>;ZWd(B`PbyV^0jHgrV_PycoRKNa%<+$}6~ax$9q z;wh=Cf`8Nu!enOZd(3744|&+q*g-;eXAK7$Y~itkDz4`r{R~fBti%MOTw!*G(PH~n z<8mTlbxCYdXaRXJZ3Sc3fZ$>!1Pqz&fC%9jUK(fg^yZzF#XAcizpiLDR0$d1qWx%D z6|SHCG3$(a<~kgeLDr`0$9^(fu%sW=p9*vGwP@?=cAXPgy3bI3P*y)Xn5YPdaswq1OA4V85j+PeR}P&J zHdPJQLF(v2;6(XIsLoc9RQq?2xbWi`7N=Ht=cmjdL*W~phCbAN;L^U2fRyYv(4MTW zgeYf>dWJ!9WNq(6-=~*Q=XCi@){xtCtB*yQJz;Bqya?zhU>etK{1;;W(TrG=maLX{ zTs-vkCGQWr%htVml3Qw3XH`qTZeZ=uNC#vJ$D&bxg6UP+w){<8@q=Mpv~>Pq-CcemNGIg}y62mIRI zkPBRT>F=;VR2Uhxk+a!EW+x)w{pHf+aln`fI#zk+(H@GK5243hUwgJa^1aoP-RGUW zto)zpmjzwX?zgP|`1)UH?AgtXQva7F1HJi69_yx4HI1k7o;w-VnPV#7t182!!B<~_ z>E2>|LSVcPm^KTvcKU(rt4?J|LiLN#96+Y zD!OF~noeGBr}|t{tjb*7KAl+Dm0d-uICc1|OPfX&4_tDP?2v4NekCw}8`I_i!OglT zx4$sL5x-W`I#a&Uw71-3;bplgmfXF+S<_;0hRgCnIw@vE4Pcj*8!*~~niCyAw75A# z>rCn1J?8ZX?^&3^SlkYdY+zT>4-v%a{*s-)4dIGE1Ex zp^Lvjzx7~K)n{Ee^$ z-WpClpQKs+7h2J}T+z%`#}QP(Z{niy6ajxSzb6&^L0?Jrt6;Y`?c*OO=-pdvyaVjB zz^zTk@3>87PRVnInY8D&=Zvy}(My9%l(NrQm&00to&s81<>EqEg3YW+hvo@qFIYgQ z?2hCmyi2X(25%|iW)iC=jAK^4{wVtqEdXze_Sbl_4+FFt+JR-=Nod~y)A7Sx_;;oP zG~@z%606$-K;0D&?QH>($x^U#?wU=tXX&r48zL-0p45*2vJ`}H01XB(0H%Zv9LMDr z)FnC4)e(rQ*V#Ggp@Y9k?%B|V4g=lyIyJIk&%k-p3)U* z{e|?{s=PDrnpGIj(vhDg7%*kgs62a)DXY2N7AZ8`lHIl7Dv^+5_f56ognf@2D(_f6 zm`o5d?ZSbZ+~Zm8;l~1{Aoxe}p7X6~RtNk*0IpMHsq*ZbEM_ayLpkxO;NuaZ^P~BK zXfs8f3l356#XQ7JC0Ht6tj{D!HhVb%b&yV1K@DV9&<`>s*5-m&Lg%ctMC6#7UrP|0 zPHA;V-xO(mFP>?KG3n%H@jf44D#LSF7=s`sq75RO;TZLz7|85QYqm%e`0XyH@_xP`z<81SC zf{S-Mrdbt<)Xdj~4TcdBy?gU6QXNfHlG>f;Gc8NE0H?@_aHk%RKwqF`Z`Ks)tNC$z z48~>#qg|^az{ey)L!pN$t45z@Uo-k69L8Fidc&*RLJz059}N#Jm>16+-PJujI$(yPJX zTdO*}z5bf2Dl$NX9R>bu=xuSDI{E=dgEw+58LItqa-maXWOX2Y z%Lq3LF6ZSvB-gNt6cSemO7ptufKL@|;Wdq4!w_vFX1pzI$nL#9zVYcZR9_r>9xYmZ zUIS<{kwPDTFr+Kdey~4m$0IYANGjX{xCjVu)_5z`mzq1#UN!*3Mm1KHEcZdT^5-Ym zX6#(;Q2Al+=f(mXTc*&V;h+%vSiqj6g=+*Vg)0oCz)MBuR+PY44?%ed=tx9=oEJ~6 z9fm;L%}jcGtBU&(dUYxW2qOgXu32tnVu2=1z^G zht>0dV`=Q{B-oxpb14eY;9cmT#PMjb97+i)N8uU1;So4FH!@q!+1{EfqdN6jGTNE* z6D+^y=+CV3(31i{hOTuPb$t>T(B5e{Ur7YlPZpOs3eG>SMp6x7J#?q+tb==mW#5fe zfMH(1OND7u>=b}ywlVWX>N1F9yjj&o&(7A ze<4mCG48wk&EsxehF5VjUHb*z8U_UKu!uSJ-QYiIyS1PHUy8*;%;*_&M2M8y9r=j) z`p?I|Cs~Dzlz#0SpL{aFHfDQF+ny$pAU;bR({XuMA#qQYG9nruD>CcZ#Q#%}<2$mj zHPOEF_;=57_JsDh?8lb>eA=+}!P=b%Kbsqjqy`7)R$Tw-7bd@Mz_hmF6Cwq5b9einpKu zI_dxloWC9T;3W(5H_in(cgX{nl#t%YTh(!fSy!MEVVeGKLyQO6NrAq(W}*v->{D3> z`t{h)Z{S%Bv)S@liduz#PgqhGYy&43>#ZZG^%oZVC7 zG?CM!X|)pp0FwjRg5EEl1I10cz|sM>i<2&xJLbd^dQa&`C*q^YerUI694O`I zI4r4v3p2^{>EGW$L=QhK*}>QpZ$v<=RBU+@ST;s>RmTi3yXbNrtrniagOp{$a{*IBT9COCPH~;PCc`E)pyMQ0qd~ z!bFBWa0U2j7kgb|3k!h>iZ+?J} zzP`~xF(~ua>w3?X7zDm)_M*n0=c+9K#2 z!10*FPvYlND+NWlpN?KBvBT64U?kLU{l+p?)jgBa9TO-*_K3+?7?Bc79r z9W;Q)upQV!a20>#6h5BmmB)cn&eeHzm4-N;{gVJ$K}9JZxhir2<1WXC9nB4d0hKuL zsZcapKh{uvtZCC&nszxP-hDmvnY!0&k0G?6l9$-wil%*+$FCD01M(dM>Y*agVwYi* z>*$*ZnjV_#)8u;yfG<_K8HAZ6<_NodgE2Kr==;DyX1#v4+?0p`gQgvINdLRPgWG%; zX{^xgs8wv-&27<-fSLWe z;3vpH^Uz(MJqxS}csAJcLM2@yL$Wiatr9m=K}|U(-Ngw_9{>5paEvXIPOC(}BW>!P z7ny%_NQ2igcuIgG{D$n51DmjiN+yZp1tRsPcIdhRtG}#ydO0Y!OLv4jQ^IRBzliNz z_GM8eisdB91#8d-vbS=RoFC(Cga&OS?9#9Or@4`6Yh_gQ#~R-^ZMa@I2`n3{bG>c#~H$=?_P*wETKp8~wnc>vT490PIuT|~gPLTGf_3+56%cya64rfhwJJ@QP z^mh({pK4zw9k-b&l@}sq&))jJdRRH8)wn5Z$Vo@-?tn=%Z!+8> z$J-FD&&tq?(8yL(33xZkBzVOV3j0TWwm1Rl_fv z5%8Jndz*Tg(#*!~)=FW5Q@7`V*HVH-Z!~|d`|#kr4Q9Obz+cSV0o@7z#4oHiuaAT| zew0d4rb|2m<;f>dX`QJ|M%>+Al7l((Ml zSRY*4TbWvpN%<}{>%>)`c$eQyJ$+@FCk_uMt{j(UGE;9CCdT_)On0t>Di2oNS@%Z{ ztry$j7Fm&{-b?6|!}}JxtmL()ygtkboX&Gu10(m$?_MPa(~z&PG+p_z?SHll)|S`r z70t$HID3=5I__0|mQ{KuI3;rFK7akeiJ#!bjt~h}(evm>J4t5OP{~5$#~%Z?p7eie zh>FUZu`0{FQn@N9Dqo#lE5kjT`k(Swi@UBvf46EY_MHD0`ntp*m5d!FHIqwkD)$`%5=9#;471z5Vrl4e%>#-Es#Wc{2b#$bJ}XXY%(2bfrWB z{K|$Xbu|9&SEm}+^A!1DTp15xY~`C>dO=`DkJYc*8_r3o6lUi8HD3fNns3FNMVXduV&nC^t%`1N)s$-_4min7NzzOb|}AO{Gg?*NAWhsh8CV zo&m!TtIgFNzWU4AkL>lt;kd<>5S}+e;`#*WG}$5cF;gf@=hTgB(m%l^nj@x~Y#TWgqmzPEivGq}=}N{+$5Jwa=;j zH>58OL|HrqXDdU5rOg}kD?w)wdN^*Z@L>X~KE#hL?8xy!VHdkU+mLOuyApv=0QRU_ zQx{`XA$HyS18p0(h{`MxO3`_ed6AGl+rE

    !B0DYd)LW{#78&smFmKYUu!qEh0{y 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

    xBMO}PtmG;y{zIi+ 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%0D>^4C`@OKH{ti)SsFoKWeCcTV?<7v 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

    1RHLqV+~x~s+rlRA=9zz*IFZG6 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�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 z

    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∾hLk3w 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

    ELz`b3tSj7z9%4F$U(BV?r* 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 z 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

    u9>;BH;UPX4=v8s1EE1R2d4ro!gofWFu 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�lZiX*5ngM^MY0p1C2LuS&mhp~(;J9eH7S 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 Y<3evN%m*WTbtlx<2JwH_nHE3)**WuDwg3PC literal 0 HcmV?d00001 diff --git a/assets/layers/windpump/windpump_2.jpg.license b/assets/layers/windpump/windpump_2.jpg.license new file mode 100644 index 0000000000..ed02883002 --- /dev/null +++ b/assets/layers/windpump/windpump_2.jpg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Pieter Vander Vennet +SPDX-License-Identifier: CC0-1.0 \ No newline at end of file diff --git a/assets/themes/openwindpowermap/openwindpowermap.json b/assets/themes/openwindpowermap/openwindpowermap.json index f26c055f72..bfdf7530be 100644 --- a/assets/themes/openwindpowermap/openwindpowermap.json +++ b/assets/themes/openwindpowermap/openwindpowermap.json @@ -45,6 +45,14 @@ "Seppe Santens" ], "layers": [ - "windturbine" + { + "builtin": [ + "windturbine", + "windpump" + ], + "override": { + "minzoom": 10 + } + } ] -} \ No newline at end of file +} From 33ec7c0d0eebf4274dcc28855bf27d5390809608 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 22 May 2025 00:45:03 +0200 Subject: [PATCH 23/53] Chore: lint themes --- .../adult_changing_table.json | 58 ++-- .../charging_station/charging_station.json | 278 +++++++++--------- .../excrement_bag_dispenser.json | 70 ++--- assets/layers/food/food.json | 2 +- assets/layers/grab_rail/grab_rail.json | 4 + assets/layers/mobility_hub/mobility_hub.json | 152 +++++----- .../toilet_at_amenity_lib.json | 28 +- assets/layers/windpump/windpump.json | 67 +++-- .../mapcomplete-changes.json | 23 +- 9 files changed, 341 insertions(+), 341 deletions(-) diff --git a/assets/layers/adult_changing_table/adult_changing_table.json b/assets/layers/adult_changing_table/adult_changing_table.json index 03781d6206..0d96b83b80 100644 --- a/assets/layers/adult_changing_table/adult_changing_table.json +++ b/assets/layers/adult_changing_table/adult_changing_table.json @@ -1,5 +1,14 @@ { "id": "adult_changing_table", + "name": { + "en": "Adult changing tables", + "nl": "Verzorgingstafels voor volwassenen", + "it": "Fasciatoi per adulti" + }, + "description": { + "en": "An adult changing table is a bench where adult people can be placed on. They are often used by adults with a severe motoric handicap", + "it": "Un fasciatoio per adulti è una panca su cui possono essere posizionate persone adulte. Sono spesso utilizzati da adulti con gravi disabilità motorie" + }, "source": { "osmTags": { "or": [ @@ -10,33 +19,12 @@ ] } }, - "description": { - "en": "An adult changing table is a bench where adult people can be placed on. They are often used by adults with a severe motoric handicap", - "it": "Un fasciatoio per adulti è una panca su cui possono essere posizionate persone adulte. Sono spesso utilizzati da adulti con gravi disabilità motorie" - }, "minzoom": 6, - "allowMove": { - "enableRelocation": false, - "enableImproveAccuracy": true + "title": { + "en": "Adult changing table", + "nl": "Verzorgingstafel voor volwassenen", + "it": "Fasciatoio per adulti" }, - "deletion": true, - "name": { - "en": "Adult changing tables", - "nl": "Verzorgingstafels voor volwassenen", - "it": "Fasciatoi per adulti" - }, - "presets": [ - { - "title": { - "en": "an adult changing table", - "nl": "een verzorgingstafel voor volwassenen", - "it": "un fasciatoio per adulti" - }, - "tags": [ - "amenity=adult_changing_table" - ] - } - ], "pointRendering": [ { "location": [ @@ -51,6 +39,18 @@ ] } ], + "presets": [ + { + "title": { + "en": "an adult changing table", + "nl": "een verzorgingstafel voor volwassenen", + "it": "un fasciatoio per adulti" + }, + "tags": [ + "amenity=adult_changing_table" + ] + } + ], "tagRenderings": [ { "id": "height", @@ -261,9 +261,9 @@ ] } ], - "title": { - "en": "Adult changing table", - "nl": "Verzorgingstafel voor volwassenen", - "it": "Fasciatoio per adulti" + "deletion": true, + "allowMove": { + "enableRelocation": false, + "enableImproveAccuracy": true } } diff --git a/assets/layers/charging_station/charging_station.json b/assets/layers/charging_station/charging_station.json index 114ba2553f..677695add8 100644 --- a/assets/layers/charging_station/charging_station.json +++ b/assets/layers/charging_station/charging_station.json @@ -10,7 +10,16 @@ "it": "Stazioni di ricarica", "uk": "Зарядні станції" }, - "minzoom": 10, + "description": { + "en": "A charging station", + "nl": "Oplaadpunten", + "ca": "Una estació de càrrega", + "cs": "Nabíjecí stanice", + "de": "Eine Ladestation", + "es": "Un punto de carga", + "fr": "Une station de recharge", + "it": "Una stazione di ricarica" + }, "source": { "osmTags": { "and": [ @@ -25,6 +34,7 @@ ] } }, + "minzoom": 10, "title": { "render": { "en": "Charging station", @@ -85,17 +95,119 @@ } ] }, - "description": { - "en": "A charging station", - "nl": "Oplaadpunten", - "ca": "Una estació de càrrega", - "cs": "Nabíjecí stanice", - "de": "Eine Ladestation", - "es": "Un punto de carga", - "fr": "Une station de recharge", - "it": "Una stazione di ricarica" - }, - "#": "no-question-hint-check", + "pointRendering": [ + { + "location": [ + "point", + "centroid" + ], + "marker": [ + { + "icon": "pin", + "color": "#fff" + }, + { + "icon": { + "render": "./assets/themes/charging_stations/plug.svg", + "mappings": [ + { + "if": "bicycle=yes", + "then": "./assets/themes/charging_stations/bicycle.svg" + }, + { + "if": { + "or": [ + "car=yes", + "motorcar=yes" + ] + }, + "then": "./assets/themes/charging_stations/car.svg" + } + ] + } + } + ], + "iconBadges": [ + { + "if": { + "or": [ + "disused:amenity=charging_station", + "operational_status=broken" + ] + }, + "then": "close:#c22;" + }, + { + "if": { + "or": [ + "proposed:amenity=charging_station", + "planned:amenity=charging_station" + ] + }, + "then": "./assets/layers/charging_station/under_construction.svg" + }, + { + "if": { + "and": [ + "bicycle=yes", + { + "or": [ + "motorcar=yes", + "car=yes" + ] + } + ] + }, + "then": "circle:#fff;./assets/themes/charging_stations/car.svg" + } + ], + "anchor": "bottom", + "iconSize": "50,50" + } + ], + "lineRendering": [ + { + "color": "black", + "width": 2, + "fillColor": "#80808080" + } + ], + "presets": [ + { + "tags": [ + "amenity=charging_station", + "motorcar=no", + "bicycle=yes" + ], + "title": { + "en": "charging station for electrical bikes", + "nl": "oplaadpunt voor elektrische fietsen", + "ca": "Estació de càrrega de bicicletes elèctriques", + "cs": "nabíjecí stanice pro elektrokola", + "de": "Ladestation für Elektrofahrräder", + "es": "punto de carga para bicicletas eléctricas", + "it": "stazione di ricarica per biciclette elettriche", + "uk": "зарядна станція для електровелосипедів" + } + }, + { + "tags": [ + "amenity=charging_station", + "motorcar=yes", + "bicycle=no" + ], + "title": { + "en": "charging station for cars", + "nl": "oplaadstation voor elektrische auto's", + "ca": "estació de càrrega per a cotxes", + "cs": "nabíjecí stanice pro auta", + "de": "Ladestation für Autos", + "es": "punto de carga para coches", + "it": "stazione di ricarica per auto", + "uk": "зарядна станція для автомобілів" + } + } + ], "tagRenderings": [ "images", { @@ -3399,119 +3511,6 @@ } } ], - "lineRendering": [ - { - "color": "black", - "width": 2, - "fillColor": "#80808080" - } - ], - "pointRendering": [ - { - "location": [ - "point", - "centroid" - ], - "marker": [ - { - "icon": "pin", - "color": "#fff" - }, - { - "icon": { - "render": "./assets/themes/charging_stations/plug.svg", - "mappings": [ - { - "if": "bicycle=yes", - "then": "./assets/themes/charging_stations/bicycle.svg" - }, - { - "if": { - "or": [ - "car=yes", - "motorcar=yes" - ] - }, - "then": "./assets/themes/charging_stations/car.svg" - } - ] - } - } - ], - "iconBadges": [ - { - "if": { - "or": [ - "disused:amenity=charging_station", - "operational_status=broken" - ] - }, - "then": "close:#c22;" - }, - { - "if": { - "or": [ - "proposed:amenity=charging_station", - "planned:amenity=charging_station" - ] - }, - "then": "./assets/layers/charging_station/under_construction.svg" - }, - { - "if": { - "and": [ - "bicycle=yes", - { - "or": [ - "motorcar=yes", - "car=yes" - ] - } - ] - }, - "then": "circle:#fff;./assets/themes/charging_stations/car.svg" - } - ], - "anchor": "bottom", - "iconSize": "50,50" - } - ], - "presets": [ - { - "tags": [ - "amenity=charging_station", - "motorcar=no", - "bicycle=yes" - ], - "title": { - "en": "charging station for electrical bikes", - "nl": "oplaadpunt voor elektrische fietsen", - "ca": "Estació de càrrega de bicicletes elèctriques", - "cs": "nabíjecí stanice pro elektrokola", - "de": "Ladestation für Elektrofahrräder", - "es": "punto de carga para bicicletas eléctricas", - "it": "stazione di ricarica per biciclette elettriche", - "uk": "зарядна станція для електровелосипедів" - } - }, - { - "tags": [ - "amenity=charging_station", - "motorcar=yes", - "bicycle=no" - ], - "title": { - "en": "charging station for cars", - "nl": "oplaadstation voor elektrische auto's", - "ca": "estació de càrrega per a cotxes", - "cs": "nabíjecí stanice pro auta", - "de": "Ladestation für Autos", - "es": "punto de carga para coches", - "it": "stazione di ricarica per auto", - "uk": "зарядна станція для автомобілів" - } - } - ], "filter": [ { "id": "vehicle-type", @@ -3855,6 +3854,19 @@ ] } ], + "deletion": { + "softDeletionTags": { + "and": [ + "amenity=", + "disused:amenity=charging_station" + ] + }, + "neededChangesets": 10 + }, + "allowMove": { + "enableRelocation": false, + "enableImproveAccuracy": true + }, "units": [ { "maxstay": { @@ -4049,17 +4061,5 @@ } } ], - "allowMove": { - "enableRelocation": false, - "enableImproveAccuracy": true - }, - "deletion": { - "softDeletionTags": { - "and": [ - "amenity=", - "disused:amenity=charging_station" - ] - }, - "neededChangesets": 10 - } -} \ No newline at end of file + "#": "no-question-hint-check" +} diff --git a/assets/layers/excrement_bag_dispenser/excrement_bag_dispenser.json b/assets/layers/excrement_bag_dispenser/excrement_bag_dispenser.json index 60fa35a944..617e8d41f4 100644 --- a/assets/layers/excrement_bag_dispenser/excrement_bag_dispenser.json +++ b/assets/layers/excrement_bag_dispenser/excrement_bag_dispenser.json @@ -23,6 +23,40 @@ "it": "Distributore di sacchetti per escrementi" } }, + "pointRendering": [ + { + "location": [ + "point", + "centroid" + ], + "marker": [ + { + "icon": "square", + "color": "white" + }, + { + "icon": "./assets/layers/excrement_bag_dispenser/excrement_bags.svg" + } + ], + "iconSize": "30,30" + } + ], + "presets": [ + { + "tags": [ + "amenity=vending_machine", + "vending=excrement_bags" + ], + "title": { + "en": "an excrement bag dispenser", + "it": "un distributore di sacchetti per escrementi" + }, + "description": { + "en": "A stand-alone dispenser giving out bags for animal waste.", + "it": "Un distributore autonomo che fornisce sacchetti per rifiuti animali." + } + } + ], "tagRenderings": [ { "id": "fee", @@ -56,42 +90,8 @@ }, "check_date" ], - "presets": [ - { - "tags": [ - "amenity=vending_machine", - "vending=excrement_bags" - ], - "title": { - "en": "an excrement bag dispenser", - "it": "un distributore di sacchetti per escrementi" - }, - "description": { - "en": "A stand-alone dispenser giving out bags for animal waste.", - "it": "Un distributore autonomo che fornisce sacchetti per rifiuti animali." - } - } - ], - "pointRendering": [ - { - "location": [ - "point", - "centroid" - ], - "marker": [ - { - "icon": "square", - "color": "white" - }, - { - "icon": "./assets/layers/excrement_bag_dispenser/excrement_bags.svg" - } - ], - "iconSize": "30,30" - } - ], "allowMove": { "enableImproveAccuracy": true, "enableRelocation": true } -} \ No newline at end of file +} diff --git a/assets/layers/food/food.json b/assets/layers/food/food.json index f2bcd8a807..626335a840 100644 --- a/assets/layers/food/food.json +++ b/assets/layers/food/food.json @@ -652,7 +652,7 @@ }, { "if": "cuisine=spanish", - "icon": "\uD83C\uDDEA\uD83C\uDDF8", + "icon": "🇪🇸", "then": { "en": "Spanish dishes are served here" } diff --git a/assets/layers/grab_rail/grab_rail.json b/assets/layers/grab_rail/grab_rail.json index f9057eac61..23d780fd6b 100644 --- a/assets/layers/grab_rail/grab_rail.json +++ b/assets/layers/grab_rail/grab_rail.json @@ -5,6 +5,10 @@ "it": "Un maniglione è un supporto per aiutare le persone con mobilità ridotta o disabilità motoria. Li aiuta a trasferirsi dalla sedia a rotelle al water, a stare in piedi sotto la doccia, a chiudere una porta, ... " }, "source": "special:library", + "pointRendering": [], + "lineRendering": [ + {} + ], "tagRenderings": [ { "id": "has_grab_rail_lr", diff --git a/assets/layers/mobility_hub/mobility_hub.json b/assets/layers/mobility_hub/mobility_hub.json index 64f14e7496..c6053e6d8b 100644 --- a/assets/layers/mobility_hub/mobility_hub.json +++ b/assets/layers/mobility_hub/mobility_hub.json @@ -1,6 +1,36 @@ { - "credits": "Robin van der Linde", + "id": "mobility_hub", + "name": { + "en": "Mobility Hubs", + "nl": "Mobiliteitshubs", + "it": "Hub di mobilità" + }, + "description": { + "en": "Mobility hubs are places where different kinds of transit meet, making it easy to switch between them. These places are usually part of a larger network or system.", + "nl": "Mobiliteitshubs zijn plaatsen waar verschillende soorten vervoer bij elkaar komen, waardoor het makkelijk is om te wisselen van vervoer. Deze plaatsen maken meestal deel uit van een groter netwerk of systeem.", + "it": "Gli hub di mobilità sono luoghi dove diversi tipi di trasporto si incontrano, rendendo facile il passaggio da uno all'altro. Questi luoghi sono solitamente parte di una rete o sistema più ampio." + }, + "source": { + "osmTags": "amenity=mobility_hub" + }, "minzoom": 8, + "title": { + "render": { + "en": "Mobility hub", + "nl": "Mobiliteitshub", + "it": "Hub di mobilità" + }, + "mappings": [ + { + "if": "name~.*", + "then": { + "en": "Mobility hub {name}", + "nl": "Mobiliteitshub {name}", + "it": "Hub di mobilità {name}" + } + } + ] + }, "pointRendering": [ { "location": [ @@ -55,6 +85,47 @@ } } ], + "lineRendering": [ + { + "width": 1, + "color": { + "render": "#00b26b", + "mappings": [ + { + "if": "network=Groningen-Drenthe", + "then": "#0077db" + }, + { + "if": "network=Jelbi", + "then": "#f0d722" + } + ] + } + } + ], + "presets": [ + { + "title": { + "en": "a mobility hub", + "nl": "een mobiliteitshub", + "it": "un hub di mobilità" + }, + "tags": [ + "amenity=mobility_hub", + "tourism=information" + ], + "description": { + "en": "A mobility hub which is marked by a physical sign, usually with a logo.", + "nl": "Een mobiliteitshub die gemarkeerd is door een fysiek bord, meestal met een logo.", + "it": "Un hub di mobilità che è contrassegnato da un segnale fisico, solitamente con un logo." + }, + "exampleImages": [ + "./assets/layers/mobility_hub/hub-gd-sign.jpg", + "./assets/layers/mobility_hub/hoppin.jpg", + "./assets/layers/mobility_hub/Mobil.punkt.jpg" + ] + } + ], "tagRenderings": [ "images", { @@ -224,81 +295,10 @@ "condition": "_geometry:type=Point" } ], - "lineRendering": [ - { - "width": 1, - "color": { - "render": "#00b26b", - "mappings": [ - { - "if": "network=Groningen-Drenthe", - "then": "#0077db" - }, - { - "if": "network=Jelbi", - "then": "#f0d722" - } - ] - } - } - ], - "credits:uid": 5093765, - "id": "mobility_hub", - "name": { - "en": "Mobility Hubs", - "nl": "Mobiliteitshubs", - "it": "Hub di mobilità" - }, - "source": { - "osmTags": "amenity=mobility_hub" - }, - "description": { - "en": "Mobility hubs are places where different kinds of transit meet, making it easy to switch between them. These places are usually part of a larger network or system.", - "nl": "Mobiliteitshubs zijn plaatsen waar verschillende soorten vervoer bij elkaar komen, waardoor het makkelijk is om te wisselen van vervoer. Deze plaatsen maken meestal deel uit van een groter netwerk of systeem.", - "it": "Gli hub di mobilità sono luoghi dove diversi tipi di trasporto si incontrano, rendendo facile il passaggio da uno all'altro. Questi luoghi sono solitamente parte di una rete o sistema più ampio." - }, - "title": { - "render": { - "en": "Mobility hub", - "nl": "Mobiliteitshub", - "it": "Hub di mobilità" - }, - "mappings": [ - { - "if": "name~.*", - "then": { - "en": "Mobility hub {name}", - "nl": "Mobiliteitshub {name}", - "it": "Hub di mobilità {name}" - } - } - ] - }, - "presets": [ - { - "title": { - "en": "a mobility hub", - "nl": "een mobiliteitshub", - "it": "un hub di mobilità" - }, - "tags": [ - "amenity=mobility_hub", - "tourism=information" - ], - "description": { - "en": "A mobility hub which is marked by a physical sign, usually with a logo.", - "nl": "Een mobiliteitshub die gemarkeerd is door een fysiek bord, meestal met een logo.", - "it": "Un hub di mobilità che è contrassegnato da un segnale fisico, solitamente con un logo." - }, - "exampleImages": [ - "./assets/layers/mobility_hub/hub-gd-sign.jpg", - "./assets/layers/mobility_hub/hoppin.jpg", - "./assets/layers/mobility_hub/Mobil.punkt.jpg" - ] - } - ], "allowMove": { "enableImproveAccuracy": true, "enableRelocation": false - } -} \ No newline at end of file + }, + "credits": "Robin van der Linde", + "credits:uid": 5093765 +} diff --git a/assets/layers/toilet_at_amenity_lib/toilet_at_amenity_lib.json b/assets/layers/toilet_at_amenity_lib/toilet_at_amenity_lib.json index 7c79877b0a..c1c0b5acc2 100644 --- a/assets/layers/toilet_at_amenity_lib/toilet_at_amenity_lib.json +++ b/assets/layers/toilet_at_amenity_lib/toilet_at_amenity_lib.json @@ -2,6 +2,19 @@ "id": "toilet_at_amenity_lib", "description": "Special layer which makes it easy to add, as a group, information about toilets to any POI", "source": "special:library", + "pointRendering": [ + { + "location": [ + "centroid", + "point" + ], + "marker": [ + { + "icon": "circle" + } + ] + } + ], "tagRenderings": [ { "id": "toilets-group", @@ -80,18 +93,5 @@ } } ], - "allowMove": false, - "pointRendering": [ - { - "location": [ - "centroid", - "point" - ], - "marker": [ - { - "icon": "circle" - } - ] - } - ] + "allowMove": false } diff --git a/assets/layers/windpump/windpump.json b/assets/layers/windpump/windpump.json index 21358614d0..1014e90b20 100644 --- a/assets/layers/windpump/windpump.json +++ b/assets/layers/windpump/windpump.json @@ -1,22 +1,5 @@ { "id": "windpump", - "presets": [ - { - "tags": [ - "man_made=windpump" - ], - "title": "a windpump", - "description": { - "en": "A wind pump is a kind of windmill that is used for pumping natural gas or water." - }, - "exampleImages": [ - "./assets/layers/windpump/windpump_1.jpg", - "./assets/layers/windpump/windpump_2.jpg", - "./assets/layers/windpump/tjasker.jpg" - - ] - } - ], "name": { "en": "Windpumps", "nl": "Pompen op windenergie" @@ -34,23 +17,6 @@ "en": "Windpump {ref}" } }, - "tagRenderings": [ - "images", - { - "id": "operator", - "question": { - "en": "Who operates this windpump?" - }, - "render": { - "en": "Operated by {operator}" - }, - "freeform": { - "key": "operator" - } - }, - "ref", - "wikipedia" - ], "pointRendering": [ { "location": [ @@ -69,6 +35,39 @@ ] } ], + "presets": [ + { + "tags": [ + "man_made=windpump" + ], + "title": "a windpump", + "description": { + "en": "A wind pump is a kind of windmill that is used for pumping natural gas or water." + }, + "exampleImages": [ + "./assets/layers/windpump/windpump_1.jpg", + "./assets/layers/windpump/windpump_2.jpg", + "./assets/layers/windpump/tjasker.jpg" + ] + } + ], + "tagRenderings": [ + "images", + { + "id": "operator", + "question": { + "en": "Who operates this windpump?" + }, + "render": { + "en": "Operated by {operator}" + }, + "freeform": { + "key": "operator" + } + }, + "ref", + "wikipedia" + ], "allowMove": { "enableImproveAccuracy": true, "enableRelocation": false diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.json index 0188616a0e..18d93f66a8 100644 --- a/assets/themes/mapcomplete-changes/mapcomplete-changes.json +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.json @@ -10,16 +10,6 @@ "ko": "MapComplete로 이루어진 변경 사항", "it": "Modifiche fatte con MapComplete" }, - "shortDescription": { - "en": "Shows changes made by MapComplete", - "de": "Zeigt die von MapComplete vorgenommenen Änderungen an", - "cs": "Zobrazuje změny provedené nástrojem MapComplete", - "es": "Muestra los cambios realizados por MapComplete", - "fr": "Afficher les modifications faites avec MapComplete", - "nl": "Toont wijzigingen gemaakt met MapComplete", - "ko": "MapComplete를 통해 이루어진 변경 사항을 표시합니다", - "it": "Mostra le modifiche fatte con MapComplete" - }, "description": { "en": "This maps shows all the changes made with MapComplete", "de": "Diese Karte zeigt alle mit MapComplete vorgenommenen Änderungen", @@ -31,11 +21,18 @@ "ko": "이 지도는 MapComplete를 사용하여 이루어진 모든 변경 사항을 표시합니다", "it": "Questa mappa mostra tutte le modifiche effettuate con MapComplete" }, + "shortDescription": { + "en": "Shows changes made by MapComplete", + "de": "Zeigt die von MapComplete vorgenommenen Änderungen an", + "cs": "Zobrazuje změny provedené nástrojem MapComplete", + "es": "Muestra los cambios realizados por MapComplete", + "fr": "Afficher les modifications faites avec MapComplete", + "nl": "Toont wijzigingen gemaakt met MapComplete", + "ko": "MapComplete를 통해 이루어진 변경 사항을 표시합니다", + "it": "Mostra le modifiche fatte con MapComplete" + }, "icon": "./assets/svg/logo.svg", "hideFromOverview": true, - "startLat": 0, - "startLon": 0, - "startZoom": 1, "layers": [ { "id": "mapcomplete-changes", From 0e91656dd68a8c1a687200e623ddb6b94811f350 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 22 May 2025 01:21:45 +0200 Subject: [PATCH 24/53] Themes(aircraft): add historical aircraft layer and theme, https://en.osm.town/@pietervdvn/114491536018069317 --- .../historic_aircraft/historic_aircraft.json | 110 ++++++++++++++++++ .../historic_aircraft/historic_aircraft.json | 13 +++ assets/themes/memorials/memorials.json | 3 +- src/UI/Search/ActiveFilters.svelte | 3 +- 4 files changed, 127 insertions(+), 2 deletions(-) create mode 100644 assets/layers/historic_aircraft/historic_aircraft.json create mode 100644 assets/themes/historic_aircraft/historic_aircraft.json diff --git a/assets/layers/historic_aircraft/historic_aircraft.json b/assets/layers/historic_aircraft/historic_aircraft.json new file mode 100644 index 0000000000..47736014d8 --- /dev/null +++ b/assets/layers/historic_aircraft/historic_aircraft.json @@ -0,0 +1,110 @@ +{ + "id": "historic_aircraft", + "name": { + "en": "Historic aircraft" + }, + "source": { + "osmTags": { + "or": [ + "historic=aircraft", + "memorial=aircraft" + ] + } + }, + "minzoom": 5, + "title": { + "render": { + "en": "Historic aircraft" + } + }, + "pointRendering": [ + { + "location": [ + "point", + "centroid" + ], + "marker": [ + { + "icon": "circle", + "color": "white" + }, + { + "icon": "airport" + } + ] + } + ], + "lineRendering": [ + { + "width": 1, + "color": "blue" + } + ], + "presets": [ + { + "title": { + "en": "a aircraft on a permanent location" + }, + "description": { + "en": "A (historic) aircraft permanently installed on a location, e.g. in a museum, as artwork or as memorial." + }, + "tags": [ + "historic=aircraft" + ] + } + ], + "tagRenderings": [ + "images", + { + "question": { + "en": "What type of model is this aircraft?" + }, + "id": "model", + "freeform": { + "key": "model:wikidata", + "type": "wikidata" + }, + "render": { + "en": "{wikipedia(model:wikidata)}" + } + }, + { + "id": "is_memorial", + "question": { + "en": "Does this aircraft also serve as a memorial?" + }, + "mappings": [ + { + "if": "memorial=aircraft", + "then": { + "en": "Serves as a memorial" + } + }, + { + "if": "not:memorial=yes", + "alsoShowIf": "memorial=", + "then": { + "en": "Does not serve as a memorial" + } + } + ] + }, + { + "builtin": "memorial.memorial-questions", + "override": { + "condition": { + "and+": [ + "memorial~*" + ] + } + } + } + ], + "deletion": true, + "allowMove": { + "enableImproveAccuracy": true, + "enableRelocation": false + }, + "credits": "Pieter Vander Vennet", + "credits:uid": 3818858 +} diff --git a/assets/themes/historic_aircraft/historic_aircraft.json b/assets/themes/historic_aircraft/historic_aircraft.json new file mode 100644 index 0000000000..8a18a82a99 --- /dev/null +++ b/assets/themes/historic_aircraft/historic_aircraft.json @@ -0,0 +1,13 @@ +{ + "id": "historic_aircraft", + "title": { + "en": "Historic aircraft" + }, + "description": { + "en": "A map showing all historic, permanently installed aircraft. The aircraft can be in a museum, an artwork or a memorial." + }, + "icon": "airport", + "layers": [ + "historic_aircraft" + ] +} diff --git a/assets/themes/memorials/memorials.json b/assets/themes/memorials/memorials.json index 42510ef33f..14758fcf55 100644 --- a/assets/themes/memorials/memorials.json +++ b/assets/themes/memorials/memorials.json @@ -41,7 +41,8 @@ { "builtin": [ "bench", - "artwork" + "artwork", + "historic_aircraft" ], "override": { "minzoom": 18 diff --git a/src/UI/Search/ActiveFilters.svelte b/src/UI/Search/ActiveFilters.svelte index bd6c6b4a60..68b559bed3 100644 --- a/src/UI/Search/ActiveFilters.svelte +++ b/src/UI/Search/ActiveFilters.svelte @@ -14,12 +14,13 @@ import Locale from "../i18n/Locale" import DefaultIcon from "../Map/DefaultIcon.svelte" + import { WithSearchState } from "../../Models/ThemeViewState/WithSearchState" export let activeFilters: (FilterSearchResult & ActiveFilter)[] let language = Locale.language let mergedActiveFilters = FilterSearch.mergeSemiIdenticalLayers(activeFilters, $language) $: mergedActiveFilters = FilterSearch.mergeSemiIdenticalLayers(activeFilters, $language) - export let state: SpecialVisualizationState + export let state: WithSearchState let loading = false const t = Translations.t.general.search From 567f77fb2b90a2fa0951e2ea3f307bb4522b3a57 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 23 May 2025 18:03:07 +0200 Subject: [PATCH 25/53] Scripts: add error message in case of incorrect ID --- scripts/generateLayerOverview.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/scripts/generateLayerOverview.ts b/scripts/generateLayerOverview.ts index a1492af390..c1949be31d 100644 --- a/scripts/generateLayerOverview.ts +++ b/scripts/generateLayerOverview.ts @@ -203,6 +203,9 @@ class LayerBuilder extends Conversion> { context = context.inOperation("building Layer " + id).enters("layer", id) const config = this._layerConfigJsons.get(id) + if (config.id !== id) { + context.err("Invalid ID: expected", id, "but got", id) + } const prepped = this.prepareLayer.convert(config, context) this._loadedIds.add(id) this._desugaringState.sharedLayers.set(id, prepped) @@ -760,11 +763,15 @@ class LayerOverviewUtils extends Script { ScriptUtils.erasableLog( `Parsing layerConfig ${i + 1}/${allPaths.length}: ${path} ` ) + const expectedId = path.match(/.*\/([a-z_0-9]+).json/)[1] try { const data = JSON.parse(readFileSync(path, "utf8")) results.push(data) + if (data.id !== expectedId) { + throw "Wrong ID or location for file " + path + "; expected " + expectedId + " but got " + data.id + } } catch (e) { - throw "Could not parse layer file " + path + throw "Could not parse layer file " + path + " due to " + e } } From a591a44c1a334417f91e00af68d004c57e5e92d0 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 23 May 2025 18:03:23 +0200 Subject: [PATCH 26/53] Themes(historic_rolling_stock): create rolling stock theme --- .../historic_rolling_stock.json | 192 ++++++++++++++++++ .../historic_rolling_stock/license_info.json | 32 +++ .../historic_rolling_stock/minecart.svg | 5 + .../minecart.svg.license | 2 + .../historic_rolling_stock/railway_car.svg | 120 +++++++++++ .../railway_car.svg.license | 2 + .../steam_locomotive.svg | 44 ++++ .../steam_locomotive.svg.license | 2 + .../historic_rolling_stock.json | 13 ++ 9 files changed, 412 insertions(+) create mode 100644 assets/layers/historic_rolling_stock/historic_rolling_stock.json create mode 100644 assets/layers/historic_rolling_stock/license_info.json create mode 100644 assets/layers/historic_rolling_stock/minecart.svg create mode 100644 assets/layers/historic_rolling_stock/minecart.svg.license create mode 100644 assets/layers/historic_rolling_stock/railway_car.svg create mode 100644 assets/layers/historic_rolling_stock/railway_car.svg.license create mode 100644 assets/layers/historic_rolling_stock/steam_locomotive.svg create mode 100644 assets/layers/historic_rolling_stock/steam_locomotive.svg.license create mode 100644 assets/themes/historic_rolling_stock/historic_rolling_stock.json diff --git a/assets/layers/historic_rolling_stock/historic_rolling_stock.json b/assets/layers/historic_rolling_stock/historic_rolling_stock.json new file mode 100644 index 0000000000..fdbf4f60b9 --- /dev/null +++ b/assets/layers/historic_rolling_stock/historic_rolling_stock.json @@ -0,0 +1,192 @@ +{ + "id": "historic_rolling_stock", + "name": { + "en": "Historic rolling stock" + }, + "description": { + "en": "Historic rolling stock (such as locomotives, railway cars and wagons) which are permanently placed at a location" + }, + "source": { + "osmTags": { + "or": [ + "historic=locomotive", + "memorial=locomotive", + "historic=railway_car", + "memorial=railway_car", + "historic=minecart", + "memorial=mincart" + ] + } + }, + "minzoom": 5, + "title": { + "render": { + "en": "Historic rolling stock" + }, + "mappings": [ + { + "if": { + "or": [ + "historic=locomotive", + "memorial=locomotive" + ] + }, + "then": { + "en": "Historic locomotive" + } + }, + { + "if": { + "or": [ + "historic=railway_car", + "memorial=railway_car" + ] + }, + "then": { + "en": "Historic railway car" + } + }, + { + "if": { + "or": [ + "historic=minecart", + "memorial=minecart" + ] + }, + "then": { + "en": "Historic minecart" + } + } + ] + }, + "pointRendering": [ + { + "location": [ + "point", + "centroid" + ], + "marker": [ + { + "icon": "circle", + "color": "white" + }, + { + "icon": { + "mappings": [ + { + "if": { + "or": [ + "historic=locomotive", + "memorial=locomotive" + ] + }, + "then": "./assets/layers/historic_rolling_stock/steam_locomotive.svg" + }, + { + "if": { + "or": [ + "historic=minecart", + "memorial=minecart" + ] + }, + "then": "./assets/layers/historic_rolling_stock/minecart.svg" + }, + { + "if": { + "or": [ + "historic=railway_car", + "memorial=railway_car" + ] + }, + "then": "./assets/layers/historic_rolling_stock/railway_car.svg" + } + ] + } + } + ] + } + ], + "lineRendering": [ + { + "width": 1, + "color": "blue" + } + ], + "presets": [ + { + "title": { + "en": "a locomotive on a permanent location" + }, + "description": { + "en": "A (historic) locomotive permanently installed on a location, e.g. in a museum, as artwork or as memorial." + }, + "tags": [ + "historic=locomotive" + ] + }, + { + "title": { + "en": "a railway car on a permanent location" + }, + "description": { + "en": "A decommissioned railway car permanently installed on a location, e.g. in a museum, as artwork or as memorial." + }, + "tags": [ + "historic=railway_car" + ] + }, + { + "title": { + "en": "a minecart on a permanent location" + }, + "description": { + "en": "A (historic) minecart permanently installed on a location, e.g. in a museum, as artwork or as memorial." + }, + "tags": [ + "historic=minecart" + ] + } + ], + "tagRenderings": [ + "images", + { + "id": "is_memorial", + "question": { + "en": "Does this also serve as a memorial?" + }, + "mappings": [ + { + "if": "memorial:={historic}", + "alsoShowIf": "memorial~*", + "then": { + "en": "Serves as a memorial" + } + }, + { + "if": "not:memorial=yes", + "alsoShowIf": "memorial=", + "then": { + "en": "Does not serve as a memorial" + } + } + ] + }, + { + "builtin": "memorial.memorial-questions", + "override": { + "condition": { + "and+": [ + "memorial~*" + ] + } + } + } + ], + "deletion": true, + "allowMove": { + "enableImproveAccuracy": true, + "enableRelocation": false + }, + "credits": "Pieter Vander Vennet", + "credits:uid": 3818858 +} diff --git a/assets/layers/historic_rolling_stock/license_info.json b/assets/layers/historic_rolling_stock/license_info.json new file mode 100644 index 0000000000..0520aeab34 --- /dev/null +++ b/assets/layers/historic_rolling_stock/license_info.json @@ -0,0 +1,32 @@ +[ + { + "path": "minecart.svg", + "license": "MIT License", + "authors": [ + "Bootstrap UI Icons" + ], + "sources": [ + "https://www.svgrepo.com/svg/345008/minecart-loaded" + ] + }, + { + "path": "railway_car.svg", + "license": "Public Domain", + "authors": [ + "Pixabay" + ], + "sources": [ + "https://svgsilh.com/image/159763.html" + ] + }, + { + "path": "steam_locomotive.svg", + "license": "Public Domain", + "authors": [ + " Icooon Mono" + ], + "sources": [ + "https://www.svgrepo.com/svg/480876/steam-locomotive" + ] + } +] \ No newline at end of file diff --git a/assets/layers/historic_rolling_stock/minecart.svg b/assets/layers/historic_rolling_stock/minecart.svg new file mode 100644 index 0000000000..c6ffd17f23 --- /dev/null +++ b/assets/layers/historic_rolling_stock/minecart.svg @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/assets/layers/historic_rolling_stock/minecart.svg.license b/assets/layers/historic_rolling_stock/minecart.svg.license new file mode 100644 index 0000000000..aaf826a152 --- /dev/null +++ b/assets/layers/historic_rolling_stock/minecart.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Bootstrap UI Icons +SPDX-License-Identifier: MIT License \ No newline at end of file diff --git a/assets/layers/historic_rolling_stock/railway_car.svg b/assets/layers/historic_rolling_stock/railway_car.svg new file mode 100644 index 0000000000..9df4c8e7a6 --- /dev/null +++ b/assets/layers/historic_rolling_stock/railway_car.svg @@ -0,0 +1,120 @@ + + + + + + + +Created by potrace 1.15, written by Peter Selinger 2001-2017 + + + + + + + + + + + + + diff --git a/assets/layers/historic_rolling_stock/railway_car.svg.license b/assets/layers/historic_rolling_stock/railway_car.svg.license new file mode 100644 index 0000000000..191415e0d5 --- /dev/null +++ b/assets/layers/historic_rolling_stock/railway_car.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Pixabay +SPDX-License-Identifier: Public Domain \ No newline at end of file diff --git a/assets/layers/historic_rolling_stock/steam_locomotive.svg b/assets/layers/historic_rolling_stock/steam_locomotive.svg new file mode 100644 index 0000000000..3e4896aebb --- /dev/null +++ b/assets/layers/historic_rolling_stock/steam_locomotive.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/historic_rolling_stock/steam_locomotive.svg.license b/assets/layers/historic_rolling_stock/steam_locomotive.svg.license new file mode 100644 index 0000000000..83a777a435 --- /dev/null +++ b/assets/layers/historic_rolling_stock/steam_locomotive.svg.license @@ -0,0 +1,2 @@ +SPDX-FileCopyrightText: Icooon Mono +SPDX-License-Identifier: Public Domain \ No newline at end of file diff --git a/assets/themes/historic_rolling_stock/historic_rolling_stock.json b/assets/themes/historic_rolling_stock/historic_rolling_stock.json new file mode 100644 index 0000000000..8af8708a32 --- /dev/null +++ b/assets/themes/historic_rolling_stock/historic_rolling_stock.json @@ -0,0 +1,13 @@ +{ + "id": "historic_rolling_stock", + "title": { + "en": "Historic rolling stock" + }, + "description": { + "en": "A map showing all historic, permanently installed rolling stock, such as locomitives and railway carriages, e.g. in a museum, an artwork or a memorial." + }, + "icon": "./assets/layers/historic_rolling_stock/historic_rolling_stock.svg", + "layers": [ + "historic_rolling_stock" + ] +} From 70004d7dd72be7031cde47ec06163a0686c50250 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sat, 24 May 2025 02:04:32 +0200 Subject: [PATCH 27/53] UX(nearby_features): place nearby panorama markers at nearly the right place --- src/Logic/GeoOperations.ts | 7 ++++--- src/UI/Image/photoSphereViewerWrapper.ts | 22 +++++++++++++++++++--- 2 files changed, 23 insertions(+), 6 deletions(-) diff --git a/src/Logic/GeoOperations.ts b/src/Logic/GeoOperations.ts index d31481c637..8981ff4297 100644 --- a/src/Logic/GeoOperations.ts +++ b/src/Logic/GeoOperations.ts @@ -10,11 +10,12 @@ import { MultiPolygon, Point, Polygon, - Position, + Position } from "geojson" import { Tiles } from "../Models/TileRange" import { Utils } from "../Utils" -;("use strict") + +("use strict") export class GeoOperations { private static readonly _earthRadius: number = 6378137 @@ -106,7 +107,7 @@ export class GeoOperations { * @param lonlat0 * @param lonlat1 */ - static distanceBetween(lonlat0: [number, number], lonlat1: [number, number] | Position) { + static distanceBetween(lonlat0: [number, number] | Coord | Position, lonlat1: [number, number] | Position | Coord) { return turf.distance(lonlat0, lonlat1, { units: "meters" }) } diff --git a/src/UI/Image/photoSphereViewerWrapper.ts b/src/UI/Image/photoSphereViewerWrapper.ts index a8b4f76616..d8068e9335 100644 --- a/src/UI/Image/photoSphereViewerWrapper.ts +++ b/src/UI/Image/photoSphereViewerWrapper.ts @@ -42,12 +42,26 @@ export class PhotoSphereViewerWrapper { public calculatePitch(feature: Feature): number { const coors = this.imageInfo.geometry.coordinates const distance = GeoOperations.distanceBetween( - <[number, number]>coors, + coors, GeoOperations.centerpointCoordinates(feature) ) // In: -pi/2 up to pi/2 - const alpha = Math.atan(distance / 4) // in radians + /* + . + Eye + . / | + . / PITCH | + . / | (Height = y = ~2m) + . / | + ./ ALPHA | + +..... (x = distance) .... + + */ + const height = 3 + // We want to know PITCH = 90 - alpha. + // + // tan(alpha) = height / distance (we rescale so that distance -> 1) + // alpha = atan(height / distance) + const alpha = Math.atan(height / distance) // in radians const degrees = (alpha * 360) / (2 * Math.PI) return -degrees } @@ -86,6 +100,7 @@ export class PhotoSphereViewerWrapper { const northOffs = imageInfo.properties.northOffset this.nearbyFeatures = nearbyFeatures this.clearHotspots() + const centralImageLocation = this.imageInfo.geometry.coordinates for (const f of nearbyFeatures ?? []) { if (f.properties.gotoPanorama?.properties?.url === this.imageInfo.properties.url) { continue // This is the current panorama, no need to show it @@ -97,12 +112,13 @@ export class PhotoSphereViewerWrapper { } else if (!isNaN(f.properties.pitch)) { pitch = f.properties.pitch } + const distance = Math.round(GeoOperations.distanceBetween(centralImageLocation, GeoOperations.centerpointCoordinates(f))) this.viewer.addHotSpot( { type: f.properties.gotoPanorama !== undefined ? "scene" : "info", yaw: (yaw - northOffs) % 360, pitch, - text: f.properties.name, + text: f.properties.name + " (" + distance + "m)", clickHandlerFunc: () => { this.setPanorama(f.properties.gotoPanorama) }, From f673b540e53c144ca19d69cf8d7794c89dc3b14d Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sat, 24 May 2025 02:05:24 +0200 Subject: [PATCH 28/53] Themes(historic_aircraft): make build work --- assets/themes/historic_aircraft/historic_aircraft.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/themes/historic_aircraft/historic_aircraft.json b/assets/themes/historic_aircraft/historic_aircraft.json index 8a18a82a99..f8d03c2811 100644 --- a/assets/themes/historic_aircraft/historic_aircraft.json +++ b/assets/themes/historic_aircraft/historic_aircraft.json @@ -6,7 +6,7 @@ "description": { "en": "A map showing all historic, permanently installed aircraft. The aircraft can be in a museum, an artwork or a memorial." }, - "icon": "airport", + "icon": "./assets/svg/airport.svg", "layers": [ "historic_aircraft" ] From 3d90e143d6e9b5c334c58cab1598274ce386b7ce Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sat, 24 May 2025 02:05:39 +0200 Subject: [PATCH 29/53] Themes(rolling_stock): more questions --- .../historic_rolling_stock.json | 17 ++++++++++++++++- .../historic_rolling_stock.json | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/assets/layers/historic_rolling_stock/historic_rolling_stock.json b/assets/layers/historic_rolling_stock/historic_rolling_stock.json index fdbf4f60b9..37f5d8fa6f 100644 --- a/assets/layers/historic_rolling_stock/historic_rolling_stock.json +++ b/assets/layers/historic_rolling_stock/historic_rolling_stock.json @@ -103,7 +103,8 @@ ] } } - ] + ], + "anchor": "bottom" } ], "lineRendering": [ @@ -149,6 +150,20 @@ ], "tagRenderings": [ "images", + "wikipedia", + { + "id": "model", + "question": { + "en": "What is the model of this rolling stock?" + }, + "render": { + "en": "Model {model}" + }, + "freeform": { + "key": "model" + }, + "condition": "model:wikidata=" + }, { "id": "is_memorial", "question": { diff --git a/assets/themes/historic_rolling_stock/historic_rolling_stock.json b/assets/themes/historic_rolling_stock/historic_rolling_stock.json index 8af8708a32..600885db49 100644 --- a/assets/themes/historic_rolling_stock/historic_rolling_stock.json +++ b/assets/themes/historic_rolling_stock/historic_rolling_stock.json @@ -6,7 +6,7 @@ "description": { "en": "A map showing all historic, permanently installed rolling stock, such as locomitives and railway carriages, e.g. in a museum, an artwork or a memorial." }, - "icon": "./assets/layers/historic_rolling_stock/historic_rolling_stock.svg", + "icon": "./assets/layers/historic_rolling_stock/steam_locomotive.svg", "layers": [ "historic_rolling_stock" ] From 01510728c09742f409b8e9869bbe96ff49b33439 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Sat, 24 May 2025 02:06:00 +0200 Subject: [PATCH 30/53] Chore: translation sync --- langs/layers/en.json | 103 +++++++++++++++++++++++++++++++++++++++++++ langs/layers/nl.json | 3 ++ langs/themes/en.json | 8 ++++ 3 files changed, 114 insertions(+) diff --git a/langs/layers/en.json b/langs/layers/en.json index 59a8845de2..4f30eef992 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -6074,6 +6074,9 @@ "18": { "then": "Seafood dishes are served here" }, + "19": { + "then": "Spanish dishes are served here" + }, "2": { "then": "Serves mainly pasta" }, @@ -6768,6 +6771,80 @@ "render": "Hackerspace" } }, + "historic_aircraft": { + "name": "Historic aircraft", + "presets": { + "0": { + "description": "A (historic) aircraft permanently installed on a location, e.g. in a museum, as artwork or as memorial.", + "title": "a aircraft on a permanent location" + } + }, + "tagRenderings": { + "is_memorial": { + "mappings": { + "0": { + "then": "Serves as a memorial" + }, + "1": { + "then": "Does not serve as a memorial" + } + }, + "question": "Does this aircraft also serve as a memorial?" + }, + "model": { + "question": "What type of model is this aircraft?", + "render": "{wikipedia(model:wikidata)}" + } + }, + "title": { + "render": "Historic aircraft" + } + }, + "historic_rolling_stock": { + "description": "Historic rolling stock (such as locomotives, railway cars and wagons) which are permanently placed at a location", + "name": "Historic rolling stock", + "presets": { + "0": { + "description": "A (historic) locomotive permanently installed on a location, e.g. in a museum, as artwork or as memorial.", + "title": "a locomotive on a permanent location" + }, + "1": { + "description": "A decommissioned railway car permanently installed on a location, e.g. in a museum, as artwork or as memorial.", + "title": "a railway car on a permanent location" + }, + "2": { + "description": "A (historic) minecart permanently installed on a location, e.g. in a museum, as artwork or as memorial.", + "title": "a minecart on a permanent location" + } + }, + "tagRenderings": { + "is_memorial": { + "mappings": { + "0": { + "then": "Serves as a memorial" + }, + "1": { + "then": "Does not serve as a memorial" + } + }, + "question": "Does this also serve as a memorial?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Historic locomotive" + }, + "1": { + "then": "Historic railway car" + }, + "2": { + "then": "Historic minecart" + } + }, + "render": "Historic rolling stock" + } + }, "hospital": { "description": "A layer showing hospital grounds", "name": "Hospitals", @@ -9618,6 +9695,10 @@ "after": "Scan this code to open this location on another device" } }, + "ref": { + "question": "What is the reference number?", + "render": "The reference number is {ref}" + }, "repeated": { "render": "Multiple, identical objects can be found on floors {repeat_on}." }, @@ -14617,6 +14698,28 @@ } } }, + "windpump": { + "name": "Windpumps", + "presets": { + "0": { + "description": "A wind pump is a kind of windmill that is used for pumping natural gas or water." + } + }, + "tagRenderings": { + "operator": { + "question": "Who operates this windpump?", + "render": "Operated by {operator}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Windpump {ref}" + } + }, + "render": "Windpump {ref}" + } + }, "windturbine": { "description": "Modern windmills generating electricity", "name": "wind turbine", diff --git a/langs/layers/nl.json b/langs/layers/nl.json index a92e944667..79d24b3c11 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -11592,6 +11592,9 @@ "render": "Afvalbak" } }, + "windpump": { + "name": "Pompen op windenergie" + }, "windturbine": { "description": "Windturbines (moderne windmolens die elektriciteit genereren)", "name": "windturbine", diff --git a/langs/themes/en.json b/langs/themes/en.json index 23769bab33..4e78d069b6 100644 --- a/langs/themes/en.json +++ b/langs/themes/en.json @@ -684,6 +684,14 @@ }, "title": "Healthcare" }, + "historic_aircraft": { + "description": "A map showing all historic, permanently installed aircraft. The aircraft can be in a museum, an artwork or a memorial.", + "title": "Historic aircraft" + }, + "historic_rolling_stock": { + "description": "A map showing all historic, permanently installed rolling stock, such as locomitives and railway carriages, e.g. in a museum, an artwork or a memorial.", + "title": "Historic rolling stock" + }, "hotels": { "description": "On this map, you'll find hotels in your area", "title": "Hotels" From a44a04a79d7a7d578db03a18df1cacac4b68f49c Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 27 May 2025 22:11:54 +0200 Subject: [PATCH 31/53] Translations: remove 'map of' wording in layer title --- langs/layers/en.json | 10 +++++----- langs/layers/nl.json | 10 +++++----- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/langs/layers/en.json b/langs/layers/en.json index 4f30eef992..fb4d67fb59 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -423,7 +423,7 @@ }, "ambulancestation": { "description": "An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.", - "name": "Map of ambulance stations", + "name": "Ambulance stations", "presets": { "0": { "description": "Add an ambulance station to the map", @@ -5511,7 +5511,7 @@ }, "extinguisher": { "description": "Map layer to show fire extinguishers.", - "name": "Map of fire extinguishers", + "name": "Fire extinguishers", "presets": { "0": { "description": "A fire extinguisher is a small, portable device used to stop a fire", @@ -5703,7 +5703,7 @@ }, "fire_station": { "description": "Map layer to show fire stations.", - "name": "Map of fire stations", + "name": "Fire stations", "presets": { "0": { "description": "A fire station is a place where the fire trucks and firefighters are located when not in operation.", @@ -6880,7 +6880,7 @@ }, "hydrant": { "description": "Map layer to show fire hydrants.", - "name": "Map of hydrants", + "name": "Hydrants", "presets": { "0": { "description": "A hydrant is a connection point where firefighters can tap water. It might be located underground.", @@ -14763,4 +14763,4 @@ "render": "wind turbine" } } -} \ No newline at end of file +} diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 79d24b3c11..567db56ce9 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -409,7 +409,7 @@ }, "ambulancestation": { "description": "Een ambulancestation is een plaats waar ambulances, medisch materiaal, persoonlijk beschermingsmateriaal en aanverwanten worden bewaard.", - "name": "Kaart van ambulancestations", + "name": "Ambulancestations", "presets": { "0": { "description": "Voeg een ambulancestation toe aan de kaart", @@ -5140,7 +5140,7 @@ }, "extinguisher": { "description": "Kaartlaag met brandblussers.", - "name": "Kaart van brandblussers", + "name": "Brandblussers", "presets": { "0": { "description": "Een brandblusser is een klein, draagbaar apparaat om een brand te blussen", @@ -5269,7 +5269,7 @@ }, "fire_station": { "description": "Kaartlaag die de brandweerstations toont.", - "name": "Kaart van de brandweerstations", + "name": "Brandweerstations", "presets": { "0": { "description": "Een brandweerstation is een plaats waar brandweerwagens en brandweerlieden gebaseerd zijn.", @@ -6010,7 +6010,7 @@ }, "hydrant": { "description": "Kaartlaag met brandkranen.", - "name": "Kaart van brandkranen", + "name": "Brandkranen", "presets": { "0": { "description": "Een brandkraan is een kraan waar brandweerlieden een brandslang kunnen aansluiten. Soms zit deze ondergronds.", @@ -11638,4 +11638,4 @@ "render": "windturbine" } } -} \ No newline at end of file +} From e5be391a00af2f5c1d1ed6e39f0db43715580f31 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 29 May 2025 02:19:37 +0200 Subject: [PATCH 32/53] Add test --- src/Logic/Web/NameSuggestionIndex.ts | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/Logic/Web/NameSuggestionIndex.ts b/src/Logic/Web/NameSuggestionIndex.ts index 354b87dbea..0bd828301a 100644 --- a/src/Logic/Web/NameSuggestionIndex.ts +++ b/src/Logic/Web/NameSuggestionIndex.ts @@ -361,7 +361,7 @@ export default class NameSuggestionIndex { return nsi.generateMappings(key, tags, country, center, options) } - private static readonly brandPrefix = ["name", "alt_name", "operator", "brand"] as const + private static readonly brandPrefix = ["name", "alt_name", "operator", "brand", "official_name"] as const /** * An NSI-item might have tags such as `name=X`, `alt_name=brand X`, `brand=X`, `brand:wikidata`, `shop=Y`, `service:abc=yes` @@ -370,6 +370,14 @@ export default class NameSuggestionIndex { * This method is a heuristic which attempts to move all the brand-related tags into an `or` but still requiring the `shop` and other tags * * (More of an extension method on NSIItem) + * + * const item = { + * displayName: "test", + * id: "test", + * locationSet: {include: ["BE"],exclude: []}, + * tags: {name:"XYZ", brand:"XYZ", alt_name: "ABC",official_name:"Association Brusselse Chou"} + * } + * NameSuggestionIndex.asFilterTags(item) // => {or: ["alt_name=ABC", "brand=XYZ","name=XYZ","official_name=Association Brusselse Chou"]} */ static asFilterTags( item: NSIItem From 93c613aa89924304705fc3959580caca69a63ed4 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 29 May 2025 22:20:42 +0200 Subject: [PATCH 33/53] Docs: use variable home directory --- Docs/SettingUpPSQL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Docs/SettingUpPSQL.md b/Docs/SettingUpPSQL.md index df8cda4460..e30bfead2d 100644 --- a/Docs/SettingUpPSQL.md +++ b/Docs/SettingUpPSQL.md @@ -2,7 +2,7 @@ ## Setting up the SQL-server (only once): -`sudo docker run --name some-postgis -e POSTGRES_PASSWORD=password -e POSTGRES_USER=user -d -p 5444:5432 -v /home/pietervdvn/data/pgsql/:/var/lib/postgresql/data postgis/postgis` +`sudo docker run --name some-postgis -e POSTGRES_PASSWORD=password -e POSTGRES_USER=user -d -p 5444:5432 -v ~/data/pgsql/:/var/lib/postgresql/data postgis/postgis` Increase the max number of connections. osm2pgsql needs connection one per table (and a few more), and since we are making one table per layer in MapComplete, this amounts to a lot. From a90387c4f3f78418eebd67cf48c80dfd22dfc87c Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Thu, 29 May 2025 23:26:59 +0200 Subject: [PATCH 34/53] UX: allow to share login tokens via QR-code for educational context --- assets/layers/usersettings/usersettings.json | 42 ++++++++++++++++ src/Logic/Osm/OsmConnection.ts | 23 +++++++-- src/Logic/State/UserSettingsMetaTagging.ts | 48 ++++--------------- .../ThemeViewState/WithUserRelatedState.ts | 2 + src/UI/Popup/QrCode.svelte | 38 ++++++++++++--- .../SettingsVisualisations.ts | 18 +++++++ 6 files changed, 123 insertions(+), 48 deletions(-) diff --git a/assets/layers/usersettings/usersettings.json b/assets/layers/usersettings/usersettings.json index 7eefabe8d0..d8e7b7d1b9 100644 --- a/assets/layers/usersettings/usersettings.json +++ b/assets/layers/usersettings/usersettings.json @@ -1531,6 +1531,48 @@ } } }, + { + "id": "share-login-title", + "render": { + "en": "

    Login via QR code

    " + } + }, + { + "id": "share-login-explanation", + "render": { + "en": "With the below QR-code, you can login on another device without having to share your password" + } + }, + { + "id": "share-login-group", + "render": { + "special": { + "type": "group", + "header": "share-login-group-title", + "labels": "share-login-qr" + } + } + }, + { + "id": "share-login-group-title", + "labels": [ + "hidden" + ], + "render": { + "en": "Allow to log in and act as {_name}" + } + }, + { + "id": "share-login-qr", + "labels": [ + "hidden" + ], + "render": { + "special": { + "type": "qr_login" + } + } + }, { "id": "debug-title", "render": { diff --git a/src/Logic/Osm/OsmConnection.ts b/src/Logic/Osm/OsmConnection.ts index 9c1ef7b741..d3297978f8 100644 --- a/src/Logic/Osm/OsmConnection.ts +++ b/src/Logic/Osm/OsmConnection.ts @@ -154,7 +154,8 @@ export class OsmConnection { constructor(options?: { dryRun?: Store fakeUser?: false | boolean - oauth_token?: UIEventSource + oauth_token?: UIEventSource, + shared_cookie?: string, // Used to keep multiple changesets open and to write to the correct changeset singlePage?: boolean attemptLogin?: boolean @@ -205,6 +206,10 @@ export class OsmConnection { this._dryRun = options.dryRun ?? new UIEventSource(false) + if (options?.shared_cookie) { + this.setToken(options?.shared_cookie) + } + this.updateAuthObject(false) AndroidPolyfill.inAndroid.addCallback(() => { this.updateAuthObject(false) @@ -600,6 +605,9 @@ export class OsmConnection { }) } + /** + * Gets the login token. Sharing this will allow to mimic the user session on another device + */ public getToken(): string { // https://www.openstreetmap.orgoauth2_access_token let prefix = this.Backend() @@ -608,12 +616,20 @@ export class OsmConnection { } return ( QueryParameters.GetQueryParameter(prefix + "oauth_token", undefined).data ?? - window.localStorage.getItem(this._oauth_config.url + "oauth2_access_token") + window.localStorage.getItem(this.getLoginCookieName()) ) } + public setToken(token: string) { + window.localStorage.setItem(this.getLoginCookieName(), token) + } + + private getLoginCookieName() { + return this._oauth_config.url + "oauth2_access_token" + } + private async loginAndroidPolyfill() { - const key = "https://www.openstreetmap.orgoauth2_access_token" + const key = this.getLoginCookieName() if (localStorage.getItem(key)) { // We are probably already logged in return @@ -629,6 +645,7 @@ export class OsmConnection { } await this.loadUserInfo() } + private updateAuthObject(autoLogin: boolean) { let redirect_uri = Utils.runningFromConsole ? "https://mapcomplete.org/land.html" diff --git a/src/Logic/State/UserSettingsMetaTagging.ts b/src/Logic/State/UserSettingsMetaTagging.ts index 6e568c5c32..33a5ae85b5 100644 --- a/src/Logic/State/UserSettingsMetaTagging.ts +++ b/src/Logic/State/UserSettingsMetaTagging.ts @@ -1,42 +1,14 @@ import { Utils } from "../../Utils" /** This code is autogenerated - do not edit. Edit ./assets/layers/usersettings/usersettings.json instead */ export class ThemeMetaTagging { - public static readonly themeName = "usersettings" + public static readonly themeName = "usersettings" - public metaTaggging_for_usersettings(feat: { properties: Record }) { - Utils.AddLazyProperty(feat.properties, "_mastodon_candidate_md", () => - feat.properties._description - .match(/\[[^\]]*\]\((.*(mastodon|en.osm.town).*)\).*/) - ?.at(1) - ) - Utils.AddLazyProperty( - feat.properties, - "_d", - () => feat.properties._description?.replace(/</g, "<")?.replace(/>/g, ">") ?? "" - ) - Utils.AddLazyProperty(feat.properties, "_mastodon_candidate_a", () => - ((feat) => { - const e = document.createElement("div") - e.innerHTML = feat.properties._d - return Array.from(e.getElementsByTagName("a")).filter( - (a) => a.href.match(/mastodon|en.osm.town/) !== null - )[0]?.href - })(feat) - ) - Utils.AddLazyProperty(feat.properties, "_mastodon_link", () => - ((feat) => { - const e = document.createElement("div") - e.innerHTML = feat.properties._d - return Array.from(e.getElementsByTagName("a")).filter( - (a) => a.getAttribute("rel")?.indexOf("me") >= 0 - )[0]?.href - })(feat) - ) - Utils.AddLazyProperty( - feat.properties, - "_mastodon_candidate", - () => feat.properties._mastodon_candidate_md ?? feat.properties._mastodon_candidate_a - ) - feat.properties["__current_backgroun"] = "initial_value" - } -} + public metaTaggging_for_usersettings(feat: {properties: Record}) { + Utils.AddLazyProperty(feat.properties, '_mastodon_candidate_md', () => feat.properties._description.match(/\[[^\]]*\]\((.*(mastodon|en.osm.town).*)\).*/)?.at(1) ) + Utils.AddLazyProperty(feat.properties, '_d', () => feat.properties._description?.replace(/</g,'<')?.replace(/>/g,'>') ?? '' ) + Utils.AddLazyProperty(feat.properties, '_mastodon_candidate_a', () => (feat => {const e = document.createElement('div');e.innerHTML = feat.properties._d;return Array.from(e.getElementsByTagName("a")).filter(a => a.href.match(/mastodon|en.osm.town/) !== null)[0]?.href }) (feat) ) + Utils.AddLazyProperty(feat.properties, '_mastodon_link', () => (feat => {const e = document.createElement('div');e.innerHTML = feat.properties._d;return Array.from(e.getElementsByTagName("a")).filter(a => a.getAttribute("rel")?.indexOf('me') >= 0)[0]?.href})(feat) ) + Utils.AddLazyProperty(feat.properties, '_mastodon_candidate', () => feat.properties._mastodon_candidate_md ?? feat.properties._mastodon_candidate_a ) + feat.properties['__current_backgroun'] = 'initial_value' + } +} \ No newline at end of file diff --git a/src/Models/ThemeViewState/WithUserRelatedState.ts b/src/Models/ThemeViewState/WithUserRelatedState.ts index edece3ad05..319881077a 100644 --- a/src/Models/ThemeViewState/WithUserRelatedState.ts +++ b/src/Models/ThemeViewState/WithUserRelatedState.ts @@ -37,9 +37,11 @@ export class WithUserRelatedState { } this.theme = theme this.featureSwitches = new FeatureSwitchState(theme) + this.osmConnection = new OsmConnection({ dryRun: this.featureSwitches.featureSwitchIsTesting, fakeUser: this.featureSwitches.featureSwitchFakeUser.data, + shared_cookie: QueryParameters.GetQueryParameter("shared_oauth_cookie", undefined, "Used to share a session with another device - this saves logging in at another device").data, oauth_token: QueryParameters.GetQueryParameter( "oauth_token", undefined, diff --git a/src/UI/Popup/QrCode.svelte b/src/UI/Popup/QrCode.svelte index f1c12d172e..e6d02fd870 100644 --- a/src/UI/Popup/QrCode.svelte +++ b/src/UI/Popup/QrCode.svelte @@ -13,16 +13,38 @@ export let state: SpecialVisualizationState export let tags: UIEventSource> export let feature: Feature - - let [lon, lat] = GeoOperations.centerpointCoordinates(feature) + export let extraUrlParams: Record = {} const includeLayout = window.location.pathname.split("/").at(-1).startsWith("theme") - const layout = includeLayout ? "layout=" + state.theme.id + "&" : "" let id: Store = tags.mapD((tags) => tags.id) - let url = id.mapD( + extraUrlParams["z"] ??= 15 + if (includeLayout) { + extraUrlParams["layout"] ??= state.theme.id + } + if (feature) { + const [lon, lat] = GeoOperations.centerpointCoordinates(feature) + extraUrlParams["lon"] ??= "" + lon + extraUrlParams["lat"] ??= "" + lat + } else if (state?.mapProperties?.location?.data) { + const l = state?.mapProperties?.location?.data + extraUrlParams["lon"] ??= "" + l.lon + extraUrlParams["lat"] ??= "" + l.lat + } + + const params = [] + for (const key in extraUrlParams) { + console.log(key, "-->", extraUrlParams[key]) + params.push(key + "=" + encodeURIComponent(extraUrlParams[key])) + } + let url = id.map((id) => { + if (id) { + return "#" + id + } else { + return "" + } + }).map( (id) => - `${window.location.protocol}//${window.location.host}${window.location.pathname}?${layout}lat=${lat}&lon=${lon}&z=15` + - `#${id}` + `${window.location.protocol}//${window.location.host}${window.location.pathname}?${params.join("&")}${id}` ) function toggleSize() { @@ -32,9 +54,11 @@ size.setData(smallSize) } } + + url.addCallbackAndRunD(url => console.log("URL IS", url)) -{#if $id.startsWith("node/-")} +{#if $id?.startsWith("node/-")} {:else} diff --git a/src/UI/SpecialVisualisations/SettingsVisualisations.ts b/src/UI/SpecialVisualisations/SettingsVisualisations.ts index d81bc36900..183dd7ef0a 100644 --- a/src/UI/SpecialVisualisations/SettingsVisualisations.ts +++ b/src/UI/SpecialVisualisations/SettingsVisualisations.ts @@ -14,6 +14,9 @@ import LanguageUtils from "../../Utils/LanguageUtils" import LanguagePicker from "../InputElement/LanguagePicker.svelte" import PendingChangesIndicator from "../BigComponents/PendingChangesIndicator.svelte" import { Utils } from "../../Utils" +import { Feature } from "geojson" +import LayerConfig from "../../Models/ThemeConfig/LayerConfig" +import QrCode from "../Popup/QrCode.svelte" export class SettingsVisualisations { public static initList(): SpecialVisualizationSvelte[] { @@ -146,6 +149,21 @@ export class SettingsVisualisations { }) }, }, + { + funcName: "qr_login", + args: [], + docs: "A QR-code which shares the current URL and adds the login token. Anyone with this login token will have the same permissions as you currently have. Logging out from this session will also log them out", + group: "settings", + constr(state: SpecialVisualizationState, tags: UIEventSource>, argument: string[], feature: Feature, layer: LayerConfig): SvelteUIElement { + const shared_oauth_cookie = state.osmConnection.getToken() + return new SvelteUIElement(QrCode, { + state, + tags, + feature, + extraUrlParams: { shared_oauth_cookie } + }) + } + }, { funcName: "logout", From e48fed8d345d798fbbaffd10a5f1fb5ec751fc90 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 30 May 2025 00:19:02 +0200 Subject: [PATCH 35/53] UX: put text next to QR-code, regenerate all translations --- .../ambulancestation/ambulancestation.json | 4 +- assets/layers/extinguisher/extinguisher.json | 4 +- assets/layers/fire_station/fire_station.json | 4 +- assets/layers/hydrant/hydrant.json | 4 +- assets/layers/questions/questions.json | 6 +-- assets/layers/usersettings/usersettings.json | 25 ++++++++++-- .../mapcomplete-changes.json | 31 ++++++++++----- langs/layers/ca.json | 2 +- langs/layers/cs.json | 2 +- langs/layers/da.json | 2 +- langs/layers/de.json | 2 +- langs/layers/en.json | 39 ++++++++++++++++--- langs/layers/es.json | 2 +- langs/layers/hu.json | 2 +- langs/layers/it.json | 2 +- langs/layers/nl.json | 12 +++--- langs/layers/sl.json | 2 +- langs/layers/uk.json | 2 +- src/UI/Popup/QrCode.svelte | 25 ++++++++---- .../SettingsVisualisations.ts | 12 +++++- .../UISpecialVisualisations.ts | 12 +++++- 21 files changed, 139 insertions(+), 57 deletions(-) diff --git a/assets/layers/ambulancestation/ambulancestation.json b/assets/layers/ambulancestation/ambulancestation.json index 0cca6d819a..1a6b1414e5 100644 --- a/assets/layers/ambulancestation/ambulancestation.json +++ b/assets/layers/ambulancestation/ambulancestation.json @@ -1,14 +1,14 @@ { "id": "ambulancestation", "name": { - "en": "Map of ambulance stations", + "en": "Ambulance stations", "ja": "救急ステーションの地図", "ru": "Карта станций скорой помощи", "fr": "Couche des ambulances", "de": "Rettungswachen", "it": "Carta delle stazioni delle ambulanze", "hu": "Mentőállomás-térkép", - "nl": "Kaart van ambulancestations", + "nl": "Ambulancestations", "zh_Hans": "救护车站地图", "id": "Peta stasiun ambulans", "es": "Mapa de estaciones de ambulancias", diff --git a/assets/layers/extinguisher/extinguisher.json b/assets/layers/extinguisher/extinguisher.json index 592753b56e..9fba18de02 100644 --- a/assets/layers/extinguisher/extinguisher.json +++ b/assets/layers/extinguisher/extinguisher.json @@ -1,14 +1,14 @@ { "id": "extinguisher", "name": { - "en": "Map of fire extinguishers", + "en": "Fire extinguishers", "ja": "消火器の地図です。", "nb_NO": "Kart over brannhydranter", "ru": "Карта огнетушителей.", "fr": "Couche des extincteurs", "de": "Feuerlöscher", "it": "Mappa degli estintori", - "nl": "Kaart van brandblussers", + "nl": "Brandblussers", "es": "Mapa de extintores", "ca": "Mapa d'extintors", "pl": "Mapa gaśnic", diff --git a/assets/layers/fire_station/fire_station.json b/assets/layers/fire_station/fire_station.json index f6dec3e432..4cf34e4f82 100644 --- a/assets/layers/fire_station/fire_station.json +++ b/assets/layers/fire_station/fire_station.json @@ -1,14 +1,14 @@ { "id": "fire_station", "name": { - "en": "Map of fire stations", + "en": "Fire stations", "ja": "消防署の地図", "nb_NO": "Kart over brannstasjoner", "it": "Mappa delle caserme dei vigili del fuoco", "ru": "Карта пожарных частей", "fr": "Couche des stations de pompiers", "de": "Feuerwachen", - "nl": "Kaart van de brandweerstations", + "nl": "Brandweerstations", "es": "Mapa de estaciones de bomberos", "ca": "Mapa de parcs de bombers", "cs": "Mapa požárních stanic" diff --git a/assets/layers/hydrant/hydrant.json b/assets/layers/hydrant/hydrant.json index 6ed86cc7c4..a68c44b52e 100644 --- a/assets/layers/hydrant/hydrant.json +++ b/assets/layers/hydrant/hydrant.json @@ -1,7 +1,7 @@ { "id": "hydrant", "name": { - "en": "Map of hydrants", + "en": "Hydrants", "ja": "消火栓の地図", "zh_Hant": "消防栓地圖", "nb_NO": "Kart over brannhydranter", @@ -9,7 +9,7 @@ "fr": "Carte des bornes incendie", "de": "Hydranten", "it": "Mappa degli idranti", - "nl": "Kaart van brandkranen", + "nl": "Brandkranen", "es": "Mapa de bocas de incendio", "ca": "Mapa d'hidrants", "cs": "Mapa hydrantů", diff --git a/assets/layers/questions/questions.json b/assets/layers/questions/questions.json index 4c5f2e3a0e..6ba8076f77 100644 --- a/assets/layers/questions/questions.json +++ b/assets/layers/questions/questions.json @@ -3084,9 +3084,8 @@ "classes": "flex items-center gap-x-2", "render": { "special": { - "type": "qr_code" - }, - "after": { + "type": "qr_code", + "text": { "en": "Scan this code to open this location on another device", "nl": "Scan deze code om deze locatie op een ander apparaat te zien", "de": "QR Code scannen, um diesen Ort auf einem anderen Gerät zu öffnen", @@ -3098,6 +3097,7 @@ "cs": "Naskenováním tohoto kódu otevřete toto umístění na jiném zařízení", "ca": "Escaneja aquest codi per obrir aquesta ubicació en un altre dispositiu", "it": "Scansiona questo codice per aprire questa posizione su un altro dispositivo" + } } } }, diff --git a/assets/layers/usersettings/usersettings.json b/assets/layers/usersettings/usersettings.json index d8e7b7d1b9..41c2c813a0 100644 --- a/assets/layers/usersettings/usersettings.json +++ b/assets/layers/usersettings/usersettings.json @@ -1549,7 +1549,7 @@ "special": { "type": "group", "header": "share-login-group-title", - "labels": "share-login-qr" + "labels": "share-login-content" } } }, @@ -1565,11 +1565,30 @@ { "id": "share-login-qr", "labels": [ - "hidden" + "hidden", + "share-login-content" ], "render": { "special": { - "type": "qr_login" + "type": "qr_login", + "text": "Everyone with this QR-code can act as {_name}", + "textClass": "alert h-fit" + } + } + }, + { + "id": "share-login-revoke", + "labels": [ + "hidden", + "share-login-content" + ], + "render": { + "special": { + "type": "link", + "href": "https://www.openstreetmap.org/oauth2/authorized_applications", + "text": { + "en": "You can revoke access here" + } } } }, diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.json index 18d93f66a8..a6952adf0c 100644 --- a/assets/themes/mapcomplete-changes/mapcomplete-changes.json +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.json @@ -10,6 +10,16 @@ "ko": "MapComplete로 이루어진 변경 사항", "it": "Modifiche fatte con MapComplete" }, + "shortDescription": { + "en": "Shows changes made by MapComplete", + "de": "Zeigt die von MapComplete vorgenommenen Änderungen an", + "cs": "Zobrazuje změny provedené nástrojem MapComplete", + "es": "Muestra los cambios realizados por MapComplete", + "fr": "Afficher les modifications faites avec MapComplete", + "nl": "Toont wijzigingen gemaakt met MapComplete", + "ko": "MapComplete를 통해 이루어진 변경 사항을 표시합니다", + "it": "Mostra le modifiche fatte con MapComplete" + }, "description": { "en": "This maps shows all the changes made with MapComplete", "de": "Diese Karte zeigt alle mit MapComplete vorgenommenen Änderungen", @@ -21,18 +31,11 @@ "ko": "이 지도는 MapComplete를 사용하여 이루어진 모든 변경 사항을 표시합니다", "it": "Questa mappa mostra tutte le modifiche effettuate con MapComplete" }, - "shortDescription": { - "en": "Shows changes made by MapComplete", - "de": "Zeigt die von MapComplete vorgenommenen Änderungen an", - "cs": "Zobrazuje změny provedené nástrojem MapComplete", - "es": "Muestra los cambios realizados por MapComplete", - "fr": "Afficher les modifications faites avec MapComplete", - "nl": "Toont wijzigingen gemaakt met MapComplete", - "ko": "MapComplete를 통해 이루어진 변경 사항을 표시합니다", - "it": "Mostra le modifiche fatte con MapComplete" - }, "icon": "./assets/svg/logo.svg", "hideFromOverview": true, + "startLat": 0, + "startLon": 0, + "startZoom": 1, "layers": [ { "id": "mapcomplete-changes", @@ -426,6 +429,14 @@ "if": "theme=healthcare", "then": "./assets/layers/doctors/doctors.svg" }, + { + "if": "theme=historic_aircraft", + "then": "./assets/svg/airport.svg" + }, + { + "if": "theme=historic_rolling_stock", + "then": "./assets/layers/historic_rolling_stock/steam_locomotive.svg" + }, { "if": "theme=hotels", "then": "./assets/layers/tourism_accomodation/hotel.svg" diff --git a/langs/layers/ca.json b/langs/layers/ca.json index e547b7122a..48771cd1fd 100644 --- a/langs/layers/ca.json +++ b/langs/layers/ca.json @@ -9157,7 +9157,7 @@ }, "qr_code": { "render": { - "after": "Escaneja aquest codi per obrir aquesta ubicació en un altre dispositiu" + "text": "Escaneja aquest codi per obrir aquesta ubicació en un altre dispositiu" } }, "repeated": { diff --git a/langs/layers/cs.json b/langs/layers/cs.json index 652b5b2e1f..073ea9ef5b 100644 --- a/langs/layers/cs.json +++ b/langs/layers/cs.json @@ -8406,7 +8406,7 @@ }, "qr_code": { "render": { - "after": "Naskenováním tohoto kódu otevřete toto umístění na jiném zařízení" + "text": "Naskenováním tohoto kódu otevřete toto umístění na jiném zařízení" } }, "repeated": { diff --git a/langs/layers/da.json b/langs/layers/da.json index 758e715ba9..7da7e5f181 100644 --- a/langs/layers/da.json +++ b/langs/layers/da.json @@ -1835,7 +1835,7 @@ }, "qr_code": { "render": { - "after": "Skan denne kode for at åbne dette sted på en anden enhed" + "text": "Skan denne kode for at åbne dette sted på en anden enhed" } }, "service:electricity": { diff --git a/langs/layers/de.json b/langs/layers/de.json index e520d63933..a17fe641e1 100644 --- a/langs/layers/de.json +++ b/langs/layers/de.json @@ -9121,7 +9121,7 @@ }, "qr_code": { "render": { - "after": "QR Code scannen, um diesen Ort auf einem anderen Gerät zu öffnen" + "text": "QR Code scannen, um diesen Ort auf einem anderen Gerät zu öffnen" } }, "repeated": { diff --git a/langs/layers/en.json b/langs/layers/en.json index fb4d67fb59..a4b10a5243 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -423,7 +423,7 @@ }, "ambulancestation": { "description": "An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.", - "name": "Ambulance stations", + "name": "Ambulance stations", "presets": { "0": { "description": "Add an ambulance station to the map", @@ -2401,6 +2401,20 @@ "Name": { "question": "What is the name of this business?", "render": "This business is named {name}" + }, + "pub_reusable_packaging": { + "mappings": { + "0": { + "then": "Accepts reusable cups" + }, + "1": { + "then": "Does not accept reusable cups" + }, + "2": { + "then": "Only serves to people who bring reusable cups" + } + }, + "question": "Does {title()} accept bring-your-own reusable cups?" } }, "title": { @@ -5511,7 +5525,7 @@ }, "extinguisher": { "description": "Map layer to show fire extinguishers.", - "name": "Fire extinguishers", + "name": "Fire extinguishers", "presets": { "0": { "description": "A fire extinguisher is a small, portable device used to stop a fire", @@ -5703,7 +5717,7 @@ }, "fire_station": { "description": "Map layer to show fire stations.", - "name": "Fire stations", + "name": "Fire stations", "presets": { "0": { "description": "A fire station is a place where the fire trucks and firefighters are located when not in operation.", @@ -6828,6 +6842,10 @@ } }, "question": "Does this also serve as a memorial?" + }, + "model": { + "question": "What is the model of this rolling stock?", + "render": "Model {model}" } }, "title": { @@ -6880,7 +6898,7 @@ }, "hydrant": { "description": "Map layer to show fire hydrants.", - "name": "Hydrants", + "name": "Hydrants", "presets": { "0": { "description": "A hydrant is a connection point where firefighters can tap water. It might be located underground.", @@ -9692,7 +9710,7 @@ }, "qr_code": { "render": { - "after": "Scan this code to open this location on another device" + "text": "Scan this code to open this location on another device" } }, "ref": { @@ -13833,6 +13851,15 @@ } } }, + "share-login-explanation": { + "render": "With the below QR-code, you can login on another device without having to share your password" + }, + "share-login-group-title": { + "render": "Allow to log in and act as {_name}" + }, + "share-login-title": { + "render": "

    Login via QR code

    " + }, "show_crosshair": { "mappings": { "0": { @@ -14763,4 +14790,4 @@ "render": "wind turbine" } } -} +} \ No newline at end of file diff --git a/langs/layers/es.json b/langs/layers/es.json index 9605f131b2..1220dfbf81 100644 --- a/langs/layers/es.json +++ b/langs/layers/es.json @@ -8733,7 +8733,7 @@ }, "qr_code": { "render": { - "after": "Escanea este código para abrir esta ubicación en otro dispositivo" + "text": "Escanea este código para abrir esta ubicación en otro dispositivo" } }, "repeated": { diff --git a/langs/layers/hu.json b/langs/layers/hu.json index e1865e8597..335c18606a 100644 --- a/langs/layers/hu.json +++ b/langs/layers/hu.json @@ -944,7 +944,7 @@ }, "qr_code": { "render": { - "after": "Szkenneld be ezt a kódot, hogy egy másik eszközön is meg tudd nyitni a helyet" + "text": "Szkenneld be ezt a kódot, hogy egy másik eszközön is meg tudd nyitni a helyet" } }, "service:electricity": { diff --git a/langs/layers/it.json b/langs/layers/it.json index f9dcd1f653..bd5d244f2c 100644 --- a/langs/layers/it.json +++ b/langs/layers/it.json @@ -9609,7 +9609,7 @@ }, "qr_code": { "render": { - "after": "Scansiona questo codice per aprire questa posizione su un altro dispositivo" + "text": "Scansiona questo codice per aprire questa posizione su un altro dispositivo" } }, "repeated": { diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 567db56ce9..5b4ad76f7d 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -409,7 +409,7 @@ }, "ambulancestation": { "description": "Een ambulancestation is een plaats waar ambulances, medisch materiaal, persoonlijk beschermingsmateriaal en aanverwanten worden bewaard.", - "name": "Ambulancestations", + "name": "Ambulancestations", "presets": { "0": { "description": "Voeg een ambulancestation toe aan de kaart", @@ -5140,7 +5140,7 @@ }, "extinguisher": { "description": "Kaartlaag met brandblussers.", - "name": "Brandblussers", + "name": "Brandblussers", "presets": { "0": { "description": "Een brandblusser is een klein, draagbaar apparaat om een brand te blussen", @@ -5269,7 +5269,7 @@ }, "fire_station": { "description": "Kaartlaag die de brandweerstations toont.", - "name": "Brandweerstations", + "name": "Brandweerstations", "presets": { "0": { "description": "Een brandweerstation is een plaats waar brandweerwagens en brandweerlieden gebaseerd zijn.", @@ -6010,7 +6010,7 @@ }, "hydrant": { "description": "Kaartlaag met brandkranen.", - "name": "Brandkranen", + "name": "Brandkranen", "presets": { "0": { "description": "Een brandkraan is een kraan waar brandweerlieden een brandslang kunnen aansluiten. Soms zit deze ondergronds.", @@ -8183,7 +8183,7 @@ }, "qr_code": { "render": { - "after": "Scan deze code om deze locatie op een ander apparaat te zien" + "text": "Scan deze code om deze locatie op een ander apparaat te zien" } }, "repeated": { @@ -11638,4 +11638,4 @@ "render": "windturbine" } } -} +} \ No newline at end of file diff --git a/langs/layers/sl.json b/langs/layers/sl.json index 7c7b1b751b..81995b125f 100644 --- a/langs/layers/sl.json +++ b/langs/layers/sl.json @@ -239,7 +239,7 @@ }, "qr_code": { "render": { - "after": "Skenirajte to kodo, da odprete ta kraj na drugi napravi" + "text": "Skenirajte to kodo, da odprete ta kraj na drugi napravi" } }, "single_level": { diff --git a/langs/layers/uk.json b/langs/layers/uk.json index 2975bcd8c6..bd8fb4ca77 100644 --- a/langs/layers/uk.json +++ b/langs/layers/uk.json @@ -1919,7 +1919,7 @@ }, "qr_code": { "render": { - "after": "Відскануйте цей код, щоб відкрити це місце на іншому пристрої" + "text": "Відскануйте цей код, щоб відкрити це місце на іншому пристрої" } }, "share": { diff --git a/src/UI/Popup/QrCode.svelte b/src/UI/Popup/QrCode.svelte index e6d02fd870..f8fd21f891 100644 --- a/src/UI/Popup/QrCode.svelte +++ b/src/UI/Popup/QrCode.svelte @@ -1,19 +1,20 @@ {#if $id?.startsWith("node/-")} {:else} - + toggleSize()} src={new Qr($url).toImageElement($size)} style={`width: ${$size}px; height: ${$size}px`} /> + {#if sideText} +
    { $sideTextSub}
    + {/if} +
{/if} diff --git a/src/UI/SpecialVisualisations/SettingsVisualisations.ts b/src/UI/SpecialVisualisations/SettingsVisualisations.ts index 183dd7ef0a..26f3fea791 100644 --- a/src/UI/SpecialVisualisations/SettingsVisualisations.ts +++ b/src/UI/SpecialVisualisations/SettingsVisualisations.ts @@ -151,15 +151,23 @@ export class SettingsVisualisations { }, { funcName: "qr_login", - args: [], + args: [{ + name: "text", + doc: "Extra text on the side of the QR-code" + }, { + name: "textClass", + doc: "CSS class of the the side text" + }], docs: "A QR-code which shares the current URL and adds the login token. Anyone with this login token will have the same permissions as you currently have. Logging out from this session will also log them out", group: "settings", constr(state: SpecialVisualizationState, tags: UIEventSource>, argument: string[], feature: Feature, layer: LayerConfig): SvelteUIElement { const shared_oauth_cookie = state.osmConnection.getToken() + const sideText = argument[0] + const sideTextClass = argument[1] ?? "" return new SvelteUIElement(QrCode, { state, tags, - feature, + sideText, sideTextClass, extraUrlParams: { shared_oauth_cookie } }) } diff --git a/src/UI/SpecialVisualisations/UISpecialVisualisations.ts b/src/UI/SpecialVisualisations/UISpecialVisualisations.ts index 1414c27325..4dc248b09d 100644 --- a/src/UI/SpecialVisualisations/UISpecialVisualisations.ts +++ b/src/UI/SpecialVisualisations/UISpecialVisualisations.ts @@ -174,7 +174,13 @@ export class UISpecialVisualisations { }, { funcName: "qr_code", - args: [], + args: [{ + name: "text", + doc: "Extra text on the side of the QR-code" + }, { + name: "textClass", + doc: "CSS class of the the side text" + }], group: "default", docs: "Generates a QR-code to share the selected object", constr( @@ -183,7 +189,9 @@ export class UISpecialVisualisations { argument: string[], feature: Feature ): SvelteUIElement { - return new SvelteUIElement(QrCode, { state, tags, feature }) + const sideText = argument[0] + const sideTextClass = argument[1] ?? "" + return new SvelteUIElement(QrCode, { state, tags, feature, sideText, sideTextClass }) }, }, { From 5bf8c9108e603f1f85b8746a56ac97d9b714aea2 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 30 May 2025 00:28:38 +0200 Subject: [PATCH 36/53] Chore: translation sync --- assets/layers/questions/questions.json | 22 +++++++++++----------- langs/layers/ca.json | 4 +++- langs/layers/cs.json | 4 +++- langs/layers/da.json | 4 +++- langs/layers/de.json | 4 +++- langs/layers/en.json | 11 ++++++++++- langs/layers/es.json | 4 +++- langs/layers/hu.json | 4 +++- langs/layers/it.json | 4 +++- langs/layers/nl.json | 4 +++- langs/layers/sl.json | 4 +++- langs/layers/uk.json | 4 +++- 12 files changed, 51 insertions(+), 22 deletions(-) diff --git a/assets/layers/questions/questions.json b/assets/layers/questions/questions.json index 6ba8076f77..a85373e649 100644 --- a/assets/layers/questions/questions.json +++ b/assets/layers/questions/questions.json @@ -3086,17 +3086,17 @@ "special": { "type": "qr_code", "text": { - "en": "Scan this code to open this location on another device", - "nl": "Scan deze code om deze locatie op een ander apparaat te zien", - "de": "QR Code scannen, um diesen Ort auf einem anderen Gerät zu öffnen", - "sl": "Skenirajte to kodo, da odprete ta kraj na drugi napravi", - "da": "Skan denne kode for at åbne dette sted på en anden enhed", - "hu": "Szkenneld be ezt a kódot, hogy egy másik eszközön is meg tudd nyitni a helyet", - "uk": "Відскануйте цей код, щоб відкрити це місце на іншому пристрої", - "es": "Escanea este código para abrir esta ubicación en otro dispositivo", - "cs": "Naskenováním tohoto kódu otevřete toto umístění na jiném zařízení", - "ca": "Escaneja aquest codi per obrir aquesta ubicació en un altre dispositiu", - "it": "Scansiona questo codice per aprire questa posizione su un altro dispositivo" + "en": "Scan this code to open this location on another device", + "nl": "Scan deze code om deze locatie op een ander apparaat te zien", + "de": "QR Code scannen, um diesen Ort auf einem anderen Gerät zu öffnen", + "sl": "Skenirajte to kodo, da odprete ta kraj na drugi napravi", + "da": "Skan denne kode for at åbne dette sted på en anden enhed", + "hu": "Szkenneld be ezt a kódot, hogy egy másik eszközön is meg tudd nyitni a helyet", + "uk": "Відскануйте цей код, щоб відкрити це місце на іншому пристрої", + "es": "Escanea este código para abrir esta ubicación en otro dispositivo", + "cs": "Naskenováním tohoto kódu otevřete toto umístění na jiném zařízení", + "ca": "Escaneja aquest codi per obrir aquesta ubicació en un altre dispositiu", + "it": "Scansiona questo codice per aprire questa posizione su un altro dispositivo" } } } diff --git a/langs/layers/ca.json b/langs/layers/ca.json index 48771cd1fd..aad9665dd6 100644 --- a/langs/layers/ca.json +++ b/langs/layers/ca.json @@ -9157,7 +9157,9 @@ }, "qr_code": { "render": { - "text": "Escaneja aquest codi per obrir aquesta ubicació en un altre dispositiu" + "special": { + "text": "Escaneja aquest codi per obrir aquesta ubicació en un altre dispositiu" + } } }, "repeated": { diff --git a/langs/layers/cs.json b/langs/layers/cs.json index 073ea9ef5b..79cdc8f2dd 100644 --- a/langs/layers/cs.json +++ b/langs/layers/cs.json @@ -8406,7 +8406,9 @@ }, "qr_code": { "render": { - "text": "Naskenováním tohoto kódu otevřete toto umístění na jiném zařízení" + "special": { + "text": "Naskenováním tohoto kódu otevřete toto umístění na jiném zařízení" + } } }, "repeated": { diff --git a/langs/layers/da.json b/langs/layers/da.json index 7da7e5f181..44ac318970 100644 --- a/langs/layers/da.json +++ b/langs/layers/da.json @@ -1835,7 +1835,9 @@ }, "qr_code": { "render": { - "text": "Skan denne kode for at åbne dette sted på en anden enhed" + "special": { + "text": "Skan denne kode for at åbne dette sted på en anden enhed" + } } }, "service:electricity": { diff --git a/langs/layers/de.json b/langs/layers/de.json index a17fe641e1..deb382aa7a 100644 --- a/langs/layers/de.json +++ b/langs/layers/de.json @@ -9121,7 +9121,9 @@ }, "qr_code": { "render": { - "text": "QR Code scannen, um diesen Ort auf einem anderen Gerät zu öffnen" + "special": { + "text": "QR Code scannen, um diesen Ort auf einem anderen Gerät zu öffnen" + } } }, "repeated": { diff --git a/langs/layers/en.json b/langs/layers/en.json index a4b10a5243..fab0ae1e0d 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -9710,7 +9710,9 @@ }, "qr_code": { "render": { - "text": "Scan this code to open this location on another device" + "special": { + "text": "Scan this code to open this location on another device" + } } }, "ref": { @@ -13857,6 +13859,13 @@ "share-login-group-title": { "render": "Allow to log in and act as {_name}" }, + "share-login-revoke": { + "render": { + "special": { + "text": "You can revoke access here" + } + } + }, "share-login-title": { "render": "

Login via QR code

" }, diff --git a/langs/layers/es.json b/langs/layers/es.json index 1220dfbf81..dcd0f5b7c1 100644 --- a/langs/layers/es.json +++ b/langs/layers/es.json @@ -8733,7 +8733,9 @@ }, "qr_code": { "render": { - "text": "Escanea este código para abrir esta ubicación en otro dispositivo" + "special": { + "text": "Escanea este código para abrir esta ubicación en otro dispositivo" + } } }, "repeated": { diff --git a/langs/layers/hu.json b/langs/layers/hu.json index 335c18606a..2c27ae9c1a 100644 --- a/langs/layers/hu.json +++ b/langs/layers/hu.json @@ -944,7 +944,9 @@ }, "qr_code": { "render": { - "text": "Szkenneld be ezt a kódot, hogy egy másik eszközön is meg tudd nyitni a helyet" + "special": { + "text": "Szkenneld be ezt a kódot, hogy egy másik eszközön is meg tudd nyitni a helyet" + } } }, "service:electricity": { diff --git a/langs/layers/it.json b/langs/layers/it.json index bd5d244f2c..922fa403fe 100644 --- a/langs/layers/it.json +++ b/langs/layers/it.json @@ -9609,7 +9609,9 @@ }, "qr_code": { "render": { - "text": "Scansiona questo codice per aprire questa posizione su un altro dispositivo" + "special": { + "text": "Scansiona questo codice per aprire questa posizione su un altro dispositivo" + } } }, "repeated": { diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 5b4ad76f7d..500333af25 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -8183,7 +8183,9 @@ }, "qr_code": { "render": { - "text": "Scan deze code om deze locatie op een ander apparaat te zien" + "special": { + "text": "Scan deze code om deze locatie op een ander apparaat te zien" + } } }, "repeated": { diff --git a/langs/layers/sl.json b/langs/layers/sl.json index 81995b125f..85ff995ca9 100644 --- a/langs/layers/sl.json +++ b/langs/layers/sl.json @@ -239,7 +239,9 @@ }, "qr_code": { "render": { - "text": "Skenirajte to kodo, da odprete ta kraj na drugi napravi" + "special": { + "text": "Skenirajte to kodo, da odprete ta kraj na drugi napravi" + } } }, "single_level": { diff --git a/langs/layers/uk.json b/langs/layers/uk.json index bd8fb4ca77..b1165b7971 100644 --- a/langs/layers/uk.json +++ b/langs/layers/uk.json @@ -1919,7 +1919,9 @@ }, "qr_code": { "render": { - "text": "Відскануйте цей код, щоб відкрити це місце на іншому пристрої" + "special": { + "text": "Відскануйте цей код, щоб відкрити це місце на іншому пристрої" + } } }, "share": { From f689d66047d03333f6e81fdd33cb5bfaf928b003 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 30 May 2025 00:29:03 +0200 Subject: [PATCH 37/53] Chore: fix test --- src/Models/ThemeConfig/Conversion/PrepareLayer.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Models/ThemeConfig/Conversion/PrepareLayer.ts b/src/Models/ThemeConfig/Conversion/PrepareLayer.ts index 0fe8b64417..1ff54ab40b 100644 --- a/src/Models/ThemeConfig/Conversion/PrepareLayer.ts +++ b/src/Models/ThemeConfig/Conversion/PrepareLayer.ts @@ -400,7 +400,7 @@ export class RewriteSpecial extends DesugaringStep { * RewriteSpecial.convertIfNeeded({"special": {"type":"image_carousel"}}, ConversionContext.test()) // => {'*': "{image_carousel()}"} * * // should add a class to the special element - * RewriteSpecial.convertIfNeeded({"special": {"type":"qr_code"}, class:"inline"}, ConversionContext.test()) // => {'*': "{qr_code():inline}"} + * RewriteSpecial.convertIfNeeded({"special": {"type":"qr_code"}, class:"inline"}, ConversionContext.test()) // => {'*': "{qr_code(,):inline}"} * * // should handle special case with a parameter * RewriteSpecial.convertIfNeeded({"special": {"type":"image_carousel", "image_key": "some_image_key"}}, ConversionContext.test()) // => {'*': "{image_carousel(some_image_key)}"} From 5a4636cc4bd9993ce72b9c690dfd4421e9cae708 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 30 May 2025 00:42:58 +0200 Subject: [PATCH 38/53] Fix: fix shared cookie on homepage --- src/UI/AllThemesGui.svelte | 1 + 1 file changed, 1 insertion(+) diff --git a/src/UI/AllThemesGui.svelte b/src/UI/AllThemesGui.svelte index 9994fa06af..68b466b032 100644 --- a/src/UI/AllThemesGui.svelte +++ b/src/UI/AllThemesGui.svelte @@ -29,6 +29,7 @@ const featureSwitches = new OsmConnectionFeatureSwitches() const osmConnection = new OsmConnection({ fakeUser: featureSwitches.featureSwitchFakeUser.data, + shared_cookie: QueryParameters.GetQueryParameter("shared_oauth_cookie", undefined, "Used to share a session with another device - this saves logging in at another device").data, oauth_token: QueryParameters.GetQueryParameter( "oauth_token", undefined, From b8530ba8505601b72532c3545995211048f6f544 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Fri, 30 May 2025 15:10:48 +0200 Subject: [PATCH 39/53] UX: add link to QR-codes --- src/UI/Popup/QrCode.svelte | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/UI/Popup/QrCode.svelte b/src/UI/Popup/QrCode.svelte index f8fd21f891..2072cf0f08 100644 --- a/src/UI/Popup/QrCode.svelte +++ b/src/UI/Popup/QrCode.svelte @@ -65,7 +65,9 @@ {:else} -
+ {/if} From 10e0262a0dd65415183d01d895ab976691cb7ae5 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 2 Jun 2025 00:42:35 +0200 Subject: [PATCH 40/53] Fix: fix problem of pending preference parts --- src/Logic/Osm/OsmPreferences.ts | 5 ++-- src/UI/Test.svelte | 43 +++++++++++++++------------------ src/test.ts | 14 +---------- 3 files changed, 24 insertions(+), 38 deletions(-) diff --git a/src/Logic/Osm/OsmPreferences.ts b/src/Logic/Osm/OsmPreferences.ts index 58d2bc3024..527d873cff 100644 --- a/src/Logic/Osm/OsmPreferences.ts +++ b/src/Logic/Osm/OsmPreferences.ts @@ -269,9 +269,10 @@ export class OsmPreferences { if (!this.osmConnection.isLoggedIn.data) { return } + // _All_ keys are deleted first, to avoid pending parts + const keysToDelete = OsmPreferences.keysStartingWith(this.seenKeys, k) + await Promise.all(keysToDelete.map((k) => this.deleteKeyDirectly(k))) if (v === null || v === undefined || v === "" || v === "undefined" || v === "null") { - const keysToDelete = OsmPreferences.keysStartingWith(this.seenKeys, k) - await Promise.all(keysToDelete.map((k) => this.deleteKeyDirectly(k))) return } diff --git a/src/UI/Test.svelte b/src/UI/Test.svelte index 94d7e3bd0b..f7876b7aeb 100644 --- a/src/UI/Test.svelte +++ b/src/UI/Test.svelte @@ -1,31 +1,28 @@ - - - -
+

Settings test

+Logged in as {$ud} + +Current value of pref is {$pref} + + + diff --git a/src/test.ts b/src/test.ts index 6d92ed5f35..711b154ab9 100644 --- a/src/test.ts +++ b/src/test.ts @@ -1,17 +1,5 @@ -import { Mapillary } from "./Logic/ImageProviders/Mapillary" import Test from "./UI/Test.svelte" const target = document.getElementById("maindiv") target.innerHTML = "" -/* -let imgId = "8af265ba-3521-4c46-b2a9-c072215c1de3" -let panoramax = new PanoramaxXYZ() -panoramax.imageInfo(imgId).then((imageInfo: ImageData) => { - console.log("IMG INFO: ", imageInfo) - new Test({ target, props: { imageInfo } }) -})*/ - -let pkey = 1199645818028177 -new Mapillary().DownloadImageInfo(pkey).then((imageInfo) => { - new Test({ target, props: { imageInfo } }) -}) +new Test({ target }) From b9293dc2c964653fe5856e4017178cc58f6b92f0 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 2 Jun 2025 16:08:55 +0200 Subject: [PATCH 41/53] UI: don't allow cylindrical images for now, see #2424 --- .../ImageProviders/ImageUploadManager.ts | 16 ++- src/Logic/ImageProviders/Panoramax.ts | 105 ++++++++++-------- src/UI/Base/FileSelector.svelte | 1 - src/UI/Image/UploadImage.svelte | 2 +- src/UI/Test.svelte | 31 ++---- 5 files changed, 80 insertions(+), 75 deletions(-) diff --git a/src/Logic/ImageProviders/ImageUploadManager.ts b/src/Logic/ImageProviders/ImageUploadManager.ts index 2b5de74d61..437015b82d 100644 --- a/src/Logic/ImageProviders/ImageUploadManager.ts +++ b/src/Logic/ImageProviders/ImageUploadManager.ts @@ -13,6 +13,7 @@ import ImageUploadQueue, { ImageUploadArguments } from "./ImageUploadQueue" import { GeoOperations } from "../GeoOperations" import NoteCommentElement from "../../UI/Popup/Notes/NoteCommentElement" import OsmObjectDownloader from "../Osm/OsmObjectDownloader" +import ExifReader from "exifreader" /** * The ImageUploadManager has a @@ -81,7 +82,7 @@ export class ImageUploadManager { this._reportError = reportError } - public canBeUploaded(file: File): true | { error: Translation } { + public async canBeUploaded(file: File): Promise { const sizeInBytes = file.size if (sizeInBytes > this._uploader.maxFileSizeInMegabytes * 1000000) { const error = Translations.t.image.toBig.Subs({ @@ -94,12 +95,19 @@ export class ImageUploadManager { if (ext !== "jpg" && ext !== "jpeg") { return { error: new Translation({ en: "Only JPG-files are allowed" }) } } + + const tags = await ExifReader.load(file) + if (tags.ProjectionType.value === "cylindrical") { + return { error: new Translation({ en: "Cylindrical images (typically created by a Panorama-app) are not supported" }) } + } + return true } /** * Uploads the given image, applies the correct title and license for the known user. * Will then add this image to the OSM-feature or the OSM-note automatically, based on the ID of the feature. + * Does _not_ check 'canBeUploaded' * Note: the image will actually be added to the queue. If the image-upload fails, this will be attempted when visiting MC again * @param file a jpg file to upload * @param tagsStore The tags of the feature @@ -117,10 +125,6 @@ export class ImageUploadManager { ignoreGPS: boolean | false } ): void { - const canBeUploaded = this.canBeUploaded(file) - if (canBeUploaded !== true) { - throw canBeUploaded.error - } const tags: OsmTags = tagsStore.data const featureId = tags.id @@ -286,7 +290,7 @@ export class ImageUploadManager { let absoluteUrl: string try { - ;({ key, value, absoluteUrl } = await this._uploader.uploadImage( + ({ key, value, absoluteUrl } = await this._uploader.uploadImage( blob, location, author, diff --git a/src/Logic/ImageProviders/Panoramax.ts b/src/Logic/ImageProviders/Panoramax.ts index dcba6a1359..15fc7c1819 100644 --- a/src/Logic/ImageProviders/Panoramax.ts +++ b/src/Logic/ImageProviders/Panoramax.ts @@ -51,7 +51,7 @@ export default class PanoramaxImageProvider extends ImageProvider { new SvelteUIElement(Panoramax_bw), p.createViewLink({ imageId: img?.id, - location, + location }), true ) @@ -65,14 +65,14 @@ export default class PanoramaxImageProvider extends ImageProvider { const p = new Panoramax(host) return p.createViewLink({ imageId: img?.id, - location, + location }) } public addKnownMeta(meta: ImageData, url?: string) { PanoramaxImageProvider.knownMeta[meta.id] = { data: Promise.resolve({ data: meta, url }), - time: new Date(), + time: new Date() } } @@ -125,7 +125,7 @@ export default class PanoramaxImageProvider extends ImageProvider { status: meta.properties["geovisio:status"], rotation: Number(meta.properties["view:azimuth"]), isSpherical: meta.properties.exif["Xmp.GPano.ProjectionType"] === "equirectangular", - date: new Date(meta.properties.datetime), + date: new Date(meta.properties.datetime) } } @@ -156,7 +156,7 @@ export default class PanoramaxImageProvider extends ImageProvider { const promise: Promise<{ data: ImageData; url: string }> = this.getInfoForUncached(id) PanoramaxImageProvider.knownMeta[id] = { time: new Date(), - data: promise, + data: promise } return await promise } @@ -215,7 +215,7 @@ export default class PanoramaxImageProvider extends ImageProvider { return { artist: meta.data.providers.at(-1).name, // We take the last provider, as that one probably contain the username of the uploader date: new Date(meta.data.properties["datetime"]), - licenseShortName: meta.data.properties["geovisio:license"], + licenseShortName: meta.data.properties["geovisio:license"] } } @@ -247,8 +247,8 @@ export default class PanoramaxImageProvider extends ImageProvider { properties: { url, northOffset, - pitchOffset, - }, + pitchOffset + } } } } @@ -263,6 +263,7 @@ export class PanoramaxUploader implements ImageUploader { this.panoramax = new AuthorizedPanoramax(url, token) } + async uploadImage( blob: File, currentGps: [number, number], @@ -282,53 +283,63 @@ export class PanoramaxUploader implements ImageUploader { datetime ??= new Date().toISOString() try { const tags = await ExifReader.load(blob) - const [[latD], [latM], [latS, latSDenom]] = < - [[number, number], [number, number], [number, number]] - >tags?.GPSLatitude?.value - const [[lonD], [lonM], [lonS, lonSDenom]] = < - [[number, number], [number, number], [number, number]] - >tags?.GPSLongitude?.value + if (tags.ProjectionType.value === "cylindrical") { + throw "Unsupported image format: cylindrical images (panorama images) are currently not supported" + } + if (tags?.GPSLatitude?.value && tags?.GPSLongitude?.value) { - const exifLat = latD + latM / 60 + latS / (3600 * latSDenom) - const exifLon = lonD + lonM / 60 + lonS / (3600 * lonSDenom) - if ( - typeof exifLat === "number" && - !isNaN(exifLat) && - typeof exifLon === "number" && - !isNaN(exifLon) && - !(exifLat === 0 && exifLon === 0) - ) { - lat = exifLat - lon = exifLon - if (tags?.GPSLatitudeRef?.value?.[0] === "S") { - lat *= -1 - } - if (tags?.GPSLongitudeRef?.value?.[0] === "W") { - lon *= -1 + const [[latD], [latM], [latS, latSDenom]] = < + [[number, number], [number, number], [number, number]] + >tags?.GPSLatitude?.value + const [[lonD], [lonM], [lonS, lonSDenom]] = < + [[number, number], [number, number], [number, number]] + >tags?.GPSLongitude?.value + + const exifLat = latD + latM / 60 + latS / (3600 * latSDenom) + const exifLon = lonD + lonM / 60 + lonS / (3600 * lonSDenom) + if ( + typeof exifLat === "number" && + !isNaN(exifLat) && + typeof exifLon === "number" && + !isNaN(exifLon) && + !(exifLat === 0 && exifLon === 0) + ) { + lat = exifLat + lon = exifLon + if (tags?.GPSLatitudeRef?.value?.[0] === "S") { + lat *= -1 + } + if (tags?.GPSLongitudeRef?.value?.[0] === "W") { + lon *= -1 + } } } - const [date, time] = ( + const dateTime = ( tags.DateTime.value[0] ?? tags.DateTimeOriginal.value[0] ?? tags.GPSDateStamp ?? tags.CreateDate ?? tags["Date Created"] - ).split(" ") - const exifDatetime = new Date(date.replaceAll(":", "-") + "T" + time) - if (exifDatetime.getFullYear() === 1970) { - // The data probably got reset to the epoch - // we don't use the value - console.log( - "Datetime from picture is probably invalid:", - exifDatetime, - "using 'now' instead" - ) - } else { - datetime = exifDatetime.toISOString() + )?.split(" ") + if (dateTime) { + const [date, time] = dateTime + const exifDatetime = new Date(date.replaceAll(":", "-") + "T" + time) + if (exifDatetime.getFullYear() === 1970) { + // The data probably got reset to the epoch + // we don't use the value + console.log( + "Datetime from picture is probably invalid:", + exifDatetime, + "using 'now' instead" + ) + } else { + datetime = exifDatetime.toISOString() + } + } - console.log("Tags are", tags) + } catch (e) { - console.warn("Could not read EXIF-tags") + console.warn("Could not read EXIF-tags due to", e) } const p = this.panoramax @@ -345,7 +356,7 @@ export class PanoramaxUploader implements ImageUploader { indexInSequence: sequence["stats:items"].count + 1, // stats:items is '1'-indexed, so .count is also the last index exifOverride: { Artist: author, - }, + } } if (progress) { options.onProgress = (e: ProgressEvent) => { @@ -362,7 +373,7 @@ export class PanoramaxUploader implements ImageUploader { return { key: "panoramax", value: img.id, - absoluteUrl: img.assets.hd.href, + absoluteUrl: img.assets.hd.href } } } diff --git a/src/UI/Base/FileSelector.svelte b/src/UI/Base/FileSelector.svelte index 28351fafb9..99f5e6a2cd 100644 --- a/src/UI/Base/FileSelector.svelte +++ b/src/UI/Base/FileSelector.svelte @@ -1,6 +1,5 @@ -

Settings test

-Logged in as {$ud} + accept(fileList.detail)} accept="image/jpg">Select file -Current value of pref is {$pref} - - - +{$txt} From ab88afc3979c14ebfccb40cacd418148f078f3ac Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 2 Jun 2025 16:09:10 +0200 Subject: [PATCH 42/53] Themes(stations): show elevators on a lower zoom level --- assets/themes/stations/stations.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/assets/themes/stations/stations.json b/assets/themes/stations/stations.json index 9362f000d5..84ab703685 100644 --- a/assets/themes/stations/stations.json +++ b/assets/themes/stations/stations.json @@ -251,7 +251,6 @@ { "builtin": [ "entrance", - "elevator", "waste_basket", "atm", "clock" @@ -260,6 +259,14 @@ "minzoom": 18 } }, + { + "builtin": [ + "elevator" + ], + "override": { + "minzoom": 16 + } + }, { "builtin": "bench", "override": { From 56020adc2f60a23eafbb033bbb08954c69121914 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 2 Jun 2025 17:03:07 +0200 Subject: [PATCH 43/53] Refactoring: port AutoApplyButton to svelte --- src/UI/Base/Loading.ts | 4 + src/UI/Popup/AutoApplyButton.svelte | 179 +++++++++ src/UI/Popup/AutoApplyButton.ts | 341 ------------------ src/UI/Popup/AutoApplyButtonVis.ts | 124 +++++++ .../ImportButtons/ConflateImportButtonViz.ts | 2 +- .../Popup/ImportButtons/WayImportButtonViz.ts | 2 +- src/UI/Popup/TagApplyButton.ts | 2 +- src/UI/SpecialVisualizations.ts | 17 +- 8 files changed, 318 insertions(+), 353 deletions(-) create mode 100644 src/UI/Popup/AutoApplyButton.svelte delete mode 100644 src/UI/Popup/AutoApplyButton.ts create mode 100644 src/UI/Popup/AutoApplyButtonVis.ts diff --git a/src/UI/Base/Loading.ts b/src/UI/Base/Loading.ts index dcdae595d6..7c76174a1e 100644 --- a/src/UI/Base/Loading.ts +++ b/src/UI/Base/Loading.ts @@ -3,6 +3,10 @@ import Translations from "../i18n/Translations" import BaseUIElement from "../BaseUIElement" import SvelteUIElement from "./SvelteUIElement" import { default as LoadingSvg } from "../../assets/svg/Loading.svelte" + +/** + * @deprecated + */ export default class Loading extends Combine { constructor(msg?: BaseUIElement | string) { const t = Translations.W(msg) ?? Translations.t.general.loading diff --git a/src/UI/Popup/AutoApplyButton.svelte b/src/UI/Popup/AutoApplyButton.svelte new file mode 100644 index 0000000000..b732183c5c --- /dev/null +++ b/src/UI/Popup/AutoApplyButton.svelte @@ -0,0 +1,179 @@ + + +{#if !state.theme.official && !state.featureSwitchIsTesting.data} +
The auto-apply button is only available in official themes (or in testing mode)
+ + +{:else if ids === undefined} + Gathering which elements support auto-apply... +{:else if tagRenderingConfig === undefined} +
Target tagrendering {options.targetTagRendering} not found"
+{:else if $ids.length === 0} +
No elements found to perform action
+{:else if $buttonState.error !== undefined} +
+ +
Something went wrong
+
{$buttonState.error}
+
+{:else if $buttonState === "done"} +
All done!
+{:else if $buttonState === "running"} + + Applying changes, currently at {$appliedNumberOfFeatures} / {$ids.length} + +{:else if $buttonState === "idle"} +
+ + +
+ +
+ + +
+{:else} +
Not supposed to show this... AutoApplyButton has invalid buttonstate: {$buttonState}
+{/if} + + + + + diff --git a/src/UI/Popup/AutoApplyButton.ts b/src/UI/Popup/AutoApplyButton.ts deleted file mode 100644 index 851b7bc219..0000000000 --- a/src/UI/Popup/AutoApplyButton.ts +++ /dev/null @@ -1,341 +0,0 @@ -import BaseUIElement from "../BaseUIElement" -import { Stores, UIEventSource } from "../../Logic/UIEventSource" -import { SubtleButton } from "../Base/SubtleButton" -import Img from "../Base/Img" -import { FixedUiElement } from "../Base/FixedUiElement" -import Combine from "../Base/Combine" -import Link from "../Base/Link" -import { Utils } from "../../Utils" -import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource" -import { VariableUiElement } from "../Base/VariableUIElement" -import Loading from "../Base/Loading" -import Translations from "../i18n/Translations" -import ThemeConfig from "../../Models/ThemeConfig/ThemeConfig" -import { Changes } from "../../Logic/Osm/Changes" -import { UIElement } from "../UIElement" -import FilteredLayer from "../../Models/FilteredLayer" -import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig" -import Lazy from "../Base/Lazy" -import { SpecialVisualization, SpecialVisualizationState } from "../SpecialVisualization" -import { IndexedFeatureSource } from "../../Logic/FeatureSource/FeatureSource" -import { MapLibreAdaptor } from "../Map/MapLibreAdaptor" -import ShowDataLayer from "../Map/ShowDataLayer" -import SvelteUIElement from "../Base/SvelteUIElement" -import MaplibreMap from "../Map/MaplibreMap.svelte" -import SpecialVisualizations from "../SpecialVisualizations" -import { Feature } from "geojson" - -export interface AutoAction extends SpecialVisualization { - supportsAutoAction: boolean - - applyActionOn( - feature: Feature, - state: { - theme: ThemeConfig - changes: Changes - indexedFeatures: IndexedFeatureSource - }, - tagSource: UIEventSource, - argument: string[] - ): Promise -} - -/** - * @deprecated - */ -class ApplyButton extends UIElement { - private readonly icon: string - private readonly text: string - private readonly targetTagRendering: string - private readonly target_layer_id: string - private readonly state: SpecialVisualizationState - private readonly target_feature_ids: string[] - private readonly buttonState = new UIEventSource< - "idle" | "running" | "done" | { error: string } - >("idle") - private readonly layer: FilteredLayer - private readonly tagRenderingConfig: TagRenderingConfig - private readonly appliedNumberOfFeatures = new UIEventSource(0) - - constructor( - state: SpecialVisualizationState, - target_feature_ids: string[], - options: { - target_layer_id: string - targetTagRendering: string - text: string - icon: string - } - ) { - super() - this.state = state - this.target_feature_ids = target_feature_ids - this.target_layer_id = options.target_layer_id - this.targetTagRendering = options.targetTagRendering - this.text = options.text - this.icon = options.icon - this.layer = this.state.layerState.filteredLayers.get(this.target_layer_id) - this.tagRenderingConfig = this.layer.layerDef.tagRenderings.find( - (tr) => tr.id === this.targetTagRendering - ) - } - - protected InnerRender(): string | BaseUIElement { - if (this.target_feature_ids.length === 0) { - return new FixedUiElement("No elements found to perform action") - } - - if (this.tagRenderingConfig === undefined) { - return new FixedUiElement( - "Target tagrendering " + this.targetTagRendering + " not found" - ).SetClass("alert") - } - const self = this - const button = new SubtleButton(new Img(this.icon), this.text).onClick(() => { - this.buttonState.setData("running") - window.setTimeout(() => { - self.Run() - }, 50) - }) - - const explanation = new Combine([ - "The following objects will be updated: ", - ...this.target_feature_ids.map( - (id) => new Combine([new Link(id, "https:/ /openstreetmap.org/" + id, true), ", "]) - ), - ]).SetClass("subtle") - - const mlmap = new UIEventSource(undefined) - const mla = new MapLibreAdaptor(mlmap, { - rasterLayer: this.state.mapProperties.rasterLayer, - }) - mla.allowZooming.setData(false) - mla.allowMoving.setData(false) - - const previewMap = new SvelteUIElement(MaplibreMap, { - mapProperties: mla, - map: mlmap, - }).SetClass("h-48") - - const features = this.target_feature_ids.map((id) => - this.state.indexedFeatures.featuresById.data.get(id) - ) - - new ShowDataLayer(mlmap, { - features: StaticFeatureSource.fromGeojson(features), - zoomToFeatures: true, - layer: this.layer.layerDef, - }) - - return new VariableUiElement( - this.buttonState.map((st) => { - if (st === "idle") { - return new Combine([button, previewMap, explanation]) - } - if (st === "done") { - return new FixedUiElement("All done!").SetClass("thanks") - } - if (st === "running") { - return new Loading( - new VariableUiElement( - this.appliedNumberOfFeatures.map((appliedTo) => { - return ( - "Applying changes, currently at " + - appliedTo + - "/" + - this.target_feature_ids.length - ) - }) - ) - ) - } - const error = st.error - return new Combine([ - new FixedUiElement("Something went wrong...").SetClass("alert"), - new FixedUiElement(error).SetClass("subtle"), - ]).SetClass("flex flex-col") - }) - ) - } - - /** - * Actually applies all the changes... - */ - private async Run() { - try { - console.log("Applying auto-action on " + this.target_feature_ids.length + " features") - const appliedOn: string[] = [] - for (let i = 0; i < this.target_feature_ids.length; i++) { - const targetFeatureId = this.target_feature_ids[i] - const feature = this.state.indexedFeatures.featuresById.data.get(targetFeatureId) - const featureTags = this.state.featureProperties.getStore(targetFeatureId) - const rendering = this.tagRenderingConfig.GetRenderValue(featureTags.data).txt - const specialRenderings = Utils.NoNull( - SpecialVisualizations.constructSpecification(rendering) - ).filter((v) => typeof v !== "string" && v.func["supportsAutoAction"] === true) - - if (specialRenderings.length == 0) { - console.warn( - "AutoApply: feature " + - targetFeatureId + - " got a rendering without supported auto actions:", - rendering - ) - } - - for (const specialRendering of specialRenderings) { - if (typeof specialRendering === "string") { - continue - } - const action = specialRendering.func - await action.applyActionOn( - feature, - this.state, - featureTags, - specialRendering.args - ) - } - appliedOn.push(targetFeatureId) - if (i % 50 === 0) { - await this.state.changes.flushChanges("Auto button: intermediate save") - } - this.appliedNumberOfFeatures.setData(i + 1) - } - console.log("Flushing changes...") - await this.state.changes.flushChanges("Auto button: done") - this.buttonState.setData("done") - console.log( - "Applied changes onto", - appliedOn.length, - "items, unique IDs:", - new Set(appliedOn).size - ) - } catch (e) { - console.error("Error while running autoApply: ", e) - this.buttonState.setData({ error: e }) - } - } -} - -export default class AutoApplyButton implements SpecialVisualization { - public readonly docs: string - public readonly funcName: string = "auto_apply" - public readonly needsUrls = [] - - public readonly args: { - name: string - defaultValue?: string - doc: string - required?: boolean - }[] = [ - { - name: "target_layer", - doc: "The layer that the target features will reside in", - required: true, - }, - { - name: "target_feature_ids", - doc: "The key, of which the value contains a list of ids", - required: true, - }, - { - name: "tag_rendering_id", - doc: "The ID of the tagRendering containing the autoAction. This tagrendering will be calculated. The embedded actions will be executed", - required: true, - }, - { - name: "text", - doc: "The text to show on the button", - required: true, - }, - { - name: "icon", - doc: "The icon to show on the button", - defaultValue: "./assets/svg/robot.svg", - }, - ] - - constructor(allSpecialVisualisations: SpecialVisualization[]) { - this.docs = AutoApplyButton.generateDocs( - allSpecialVisualisations - .filter((sv) => sv["supportsAutoAction"] === true) - .map((sv) => sv.funcName) - ) - } - - private static generateDocs(supportedActions: string[]): string { - return ` - A button to run many actions for many features at once. - To effectively use this button, you'll need some ingredients: - - 1. A target layer with features for which an action is defined in a tag rendering. The following special visualisations support an autoAction: ${supportedActions.join( - ", " - )} - 2. A host feature to place the auto-action on. This can be a big outline (such as a city). Another good option for this is the layer [current_view](./BuiltinLayers.md#current_view) - 3. Then, use a calculated tag on the host feature to determine the overlapping object ids - 4. At last, add this component` - } - - constr( - state: SpecialVisualizationState, - tagSource: UIEventSource>, - argument: string[] - ): BaseUIElement { - try { - if (!state.theme.official && !state.featureSwitchIsTesting.data) { - const t = Translations.t.general.add.import - return new Combine([ - new FixedUiElement( - "The auto-apply button is only available in official themes (or in testing mode)" - ).SetClass("alert"), - t.howToTest, - ]) - } - - const target_layer_id = argument[0] - const targetTagRendering = argument[2] - const text = argument[3] - const icon = argument[4] - const options = { - target_layer_id, - targetTagRendering, - text, - icon, - } - - return new Lazy(() => { - const to_parse = new UIEventSource(undefined) - // Very ugly hack: read the value every 500ms - Stores.Chronic(500, () => to_parse.data === undefined).addCallback(() => { - let applicable = tagSource.data[argument[1]] - if (typeof applicable === "string") { - applicable = JSON.parse(applicable) - } - to_parse.setData(applicable) - }) - - const loading = new Loading("Gathering which elements support auto-apply... ") - return new VariableUiElement( - Stores.ListStabilized(to_parse).map((ids) => { - if (ids === undefined) { - return loading - } - - if (typeof ids === "string") { - ids = JSON.parse(ids) - } - return new ApplyButton(state, ids, options) - }) - ) - }) - } catch (e) { - return new FixedUiElement( - "Could not generate a auto_apply-button for key " + argument[0] + " due to " + e - ).SetClass("alert") - } - } - - getLayerDependencies(args: string[]): string[] { - return [args[0]] - } -} diff --git a/src/UI/Popup/AutoApplyButtonVis.ts b/src/UI/Popup/AutoApplyButtonVis.ts new file mode 100644 index 0000000000..df19c8b24e --- /dev/null +++ b/src/UI/Popup/AutoApplyButtonVis.ts @@ -0,0 +1,124 @@ +import { Store, Stores, UIEventSource } from "../../Logic/UIEventSource" +import ThemeConfig from "../../Models/ThemeConfig/ThemeConfig" +import { Changes } from "../../Logic/Osm/Changes" +import { SpecialVisualization, SpecialVisualizationState, SpecialVisualizationSvelte } from "../SpecialVisualization" +import { IndexedFeatureSource } from "../../Logic/FeatureSource/FeatureSource" +import SvelteUIElement from "../Base/SvelteUIElement" +import { Feature } from "geojson" +import AutoApplyButton from "./AutoApplyButton.svelte" + +export interface AutoAction extends SpecialVisualization { + supportsAutoAction: boolean + + applyActionOn( + feature: Feature, + state: { + theme: ThemeConfig + changes: Changes + indexedFeatures: IndexedFeatureSource + }, + tagSource: UIEventSource>, + argument: string[] + ): Promise +} + +export default class AutoApplyButtonVis implements SpecialVisualizationSvelte { + public readonly docs: string + public readonly funcName: string = "auto_apply" + public readonly needsUrls = [] + public readonly group = "import" + public readonly args: { + name: string + defaultValue?: string + doc: string + required?: boolean + }[] = [ + { + name: "target_layer", + doc: "The layer that the target features will reside in", + required: true, + }, + { + name: "target_feature_ids", + doc: "The key, of which the value contains a list of ids", + required: true, + }, + { + name: "tag_rendering_id", + doc: "The ID of the tagRendering containing the autoAction. This tagrendering will be calculated. The embedded actions will be executed", + required: true, + }, + { + name: "text", + doc: "The text to show on the button", + required: true, + }, + { + name: "icon", + doc: "The icon to show on the button", + defaultValue: "./assets/svg/robot.svg", + }, + ] + + constructor(allSpecialVisualisations: SpecialVisualization[]) { + this.docs = AutoApplyButtonVis.generateDocs( + allSpecialVisualisations + .filter((sv) => sv["supportsAutoAction"] === true) + .map((sv) => sv.funcName) + ) + } + + private static generateDocs(supportedActions: string[]): string { + return ` + A button to run many actions for many features at once. + To effectively use this button, you'll need some ingredients: + + 1. A target layer with features for which an action is defined in a tag rendering. The following special visualisations support an autoAction: ${supportedActions.join( + ", " + )} + 2. A host feature to place the auto-action on. This can be a big outline (such as a city). Another good option for this is the layer [current_view](./BuiltinLayers.md#current_view) + 3. Then, use a calculated tag on the host feature to determine the overlapping object ids + 4. At last, add this component` + } + + constr( + state: SpecialVisualizationState, + tagSource: UIEventSource>, + argument: string[] + ): SvelteUIElement { + const target_layer_id = argument[0] + const targetTagRendering = argument[2] + const text = argument[3] + const icon = argument[4] + const options = { + target_layer_id, + targetTagRendering, + text, + icon + } + + const to_parse: UIEventSource = new UIEventSource(undefined) + Stores.Chronic(500, () => to_parse.data === undefined).map(() => { + const applicable = tagSource.data[argument[1]] + if (typeof applicable === "string") { + return JSON.parse(applicable) + } else { + return applicable + } + }).addCallbackAndRunD(data => { + to_parse.set(data) + }) + + const stableIds: Store = Stores.ListStabilized(to_parse).map((ids) => { + if (typeof ids === "string") { + ids = JSON.parse(ids) + } + return ids.map(id => id) + }) + return new SvelteUIElement(AutoApplyButton, { state, ids: stableIds, options }) + } + + getLayerDependencies(args: string[]): string[] { + return [args[0]] + } +} diff --git a/src/UI/Popup/ImportButtons/ConflateImportButtonViz.ts b/src/UI/Popup/ImportButtons/ConflateImportButtonViz.ts index b53ef1c00a..b8ea4f0625 100644 --- a/src/UI/Popup/ImportButtons/ConflateImportButtonViz.ts +++ b/src/UI/Popup/ImportButtons/ConflateImportButtonViz.ts @@ -8,7 +8,7 @@ import { Utils } from "../../../Utils" import SvelteUIElement from "../../Base/SvelteUIElement" import WayImportFlow from "./WayImportFlow.svelte" import ConflateImportFlowState from "./ConflateImportFlowState" -import { AutoAction } from "../AutoApplyButton" +import { AutoAction } from "../AutoApplyButtonVis" import { IndexedFeatureSource } from "../../../Logic/FeatureSource/FeatureSource" import { Changes } from "../../../Logic/Osm/Changes" import ThemeConfig from "../../../Models/ThemeConfig/ThemeConfig" diff --git a/src/UI/Popup/ImportButtons/WayImportButtonViz.ts b/src/UI/Popup/ImportButtons/WayImportButtonViz.ts index 954633eca2..2e3bbdb139 100644 --- a/src/UI/Popup/ImportButtons/WayImportButtonViz.ts +++ b/src/UI/Popup/ImportButtons/WayImportButtonViz.ts @@ -1,5 +1,5 @@ import { SpecialVisualization, SpecialVisualizationState } from "../../SpecialVisualization" -import { AutoAction } from "../AutoApplyButton" +import { AutoAction } from "../AutoApplyButtonVis" import { Feature, LineString, Polygon } from "geojson" import { UIEventSource } from "../../../Logic/UIEventSource" import BaseUIElement from "../../BaseUIElement" diff --git a/src/UI/Popup/TagApplyButton.ts b/src/UI/Popup/TagApplyButton.ts index 61679a56f3..2b8fc11644 100644 --- a/src/UI/Popup/TagApplyButton.ts +++ b/src/UI/Popup/TagApplyButton.ts @@ -1,4 +1,4 @@ -import { AutoAction } from "./AutoApplyButton" +import { AutoAction } from "./AutoApplyButtonVis" import Translations from "../i18n/Translations" import { VariableUiElement } from "../Base/VariableUIElement" import BaseUIElement from "../BaseUIElement" diff --git a/src/UI/SpecialVisualizations.ts b/src/UI/SpecialVisualizations.ts index cef1681e11..db01c4ada9 100644 --- a/src/UI/SpecialVisualizations.ts +++ b/src/UI/SpecialVisualizations.ts @@ -1,11 +1,7 @@ import { FixedUiElement } from "./Base/FixedUiElement" import BaseUIElement from "./BaseUIElement" import { default as FeatureTitle } from "./Popup/Title.svelte" -import { - RenderingSpecification, - SpecialVisualization, - SpecialVisualizationState, -} from "./SpecialVisualization" +import { RenderingSpecification, SpecialVisualization, SpecialVisualizationState } from "./SpecialVisualization" import { HistogramViz } from "./Popup/HistogramViz" import { UploadToOsmViz } from "./Popup/UploadToOsmViz" import { MultiApplyViz } from "./Popup/MultiApplyViz" @@ -15,7 +11,7 @@ import { VariableUiElement } from "./Base/VariableUIElement" import { Translation } from "./i18n/Translation" import Translations from "./i18n/Translations" import OpeningHoursVisualization from "./OpeningHours/OpeningHoursVisualization" -import AutoApplyButton from "./Popup/AutoApplyButton" +import AutoApplyButtonVis from "./Popup/AutoApplyButtonVis" import { LanguageElement } from "./Popup/LanguageElement/LanguageElement" import SvelteUIElement from "./Base/SvelteUIElement" import { Feature, LineString } from "geojson" @@ -40,8 +36,11 @@ import { UISpecialVisualisations } from "./SpecialVisualisations/UISpecialVisual import { SettingsVisualisations } from "./SpecialVisualisations/SettingsVisualisations" import { ReviewSpecialVisualisations } from "./SpecialVisualisations/ReviewSpecialVisualisations" import { DataImportSpecialVisualisations } from "./SpecialVisualisations/DataImportSpecialVisualisations" -import TagrenderingManipulationSpecialVisualisations from "./SpecialVisualisations/TagrenderingManipulationSpecialVisualisations" -import { WebAndCommunicationSpecialVisualisations } from "./SpecialVisualisations/WebAndCommunicationSpecialVisualisations" +import TagrenderingManipulationSpecialVisualisations + from "./SpecialVisualisations/TagrenderingManipulationSpecialVisualisations" +import { + WebAndCommunicationSpecialVisualisations +} from "./SpecialVisualisations/WebAndCommunicationSpecialVisualisations" import ClearGPSHistory from "./BigComponents/ClearGPSHistory.svelte" import AllFeaturesStatistics from "./Statistics/AllFeaturesStatistics.svelte" @@ -609,7 +608,7 @@ export default class SpecialVisualizations { }, ] - specialVisualizations.push(new AutoApplyButton(specialVisualizations)) + specialVisualizations.push(new AutoApplyButtonVis(specialVisualizations)) const regex = /[a-zA-Z_]+/ const invalid = specialVisualizations From 3b2c2462c5c544538d4b215e34cdec3314ff61c2 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Mon, 2 Jun 2025 17:19:55 +0200 Subject: [PATCH 44/53] Refactoring: port Parts of OHVis to svelte --- src/UI/Base/Combine.ts | 3 + .../OpeningHours/OpeningHoursVisualization.ts | 65 ++----------------- .../OpeningHoursRangeElement.svelte | 31 +++++++++ .../Visualisation/SpecialCase.svelte | 24 +++++++ 4 files changed, 65 insertions(+), 58 deletions(-) create mode 100644 src/UI/OpeningHours/Visualisation/OpeningHoursRangeElement.svelte create mode 100644 src/UI/OpeningHours/Visualisation/SpecialCase.svelte diff --git a/src/UI/Base/Combine.ts b/src/UI/Base/Combine.ts index 2ef8b6585f..92691efe0b 100644 --- a/src/UI/Base/Combine.ts +++ b/src/UI/Base/Combine.ts @@ -2,6 +2,9 @@ import { FixedUiElement } from "./FixedUiElement" import { Utils } from "../../Utils" import BaseUIElement from "../BaseUIElement" +/** + * @deprecated + */ export default class Combine extends BaseUIElement { private readonly uiElements: BaseUIElement[] diff --git a/src/UI/OpeningHours/OpeningHoursVisualization.ts b/src/UI/OpeningHours/OpeningHoursVisualization.ts index 1648d9b6a5..c98e866639 100644 --- a/src/UI/OpeningHours/OpeningHoursVisualization.ts +++ b/src/UI/OpeningHours/OpeningHoursVisualization.ts @@ -7,10 +7,13 @@ import BaseUIElement from "../BaseUIElement" import Toggle from "../Input/Toggle" import { VariableUiElement } from "../Base/VariableUIElement" import Table from "../Base/Table" -import { Translation, TypedTranslation } from "../i18n/Translation" +import { Translation } from "../i18n/Translation" import Loading from "../Base/Loading" import opening_hours from "opening_hours" import Locale from "../i18n/Locale" +import SpecialCase from "./Visualisation/SpecialCase.svelte" +import SvelteUIElement from "../Base/SvelteUIElement" +import OpeningHoursRangeElement from "./Visualisation/OpeningHoursRangeElement.svelte" export default class OpeningHoursVisualization extends Toggle { private static readonly weekdays: Translation[] = [ @@ -79,7 +82,7 @@ export default class OpeningHoursVisualization extends Toggle { return OpeningHoursVisualization.ConstructVizTable(oh, ranges, lastMonday) } // The special case that range is completely empty - return OpeningHoursVisualization.ShowSpecialCase(oh) + return new SvelteUIElement(SpecialCase, { oh }) } private static ConstructVizTable( @@ -130,13 +133,13 @@ export default class OpeningHoursVisualization extends Toggle { day.SetClass("w-full h-full flex") const rangesForDay = ranges[i].map((range) => - OpeningHoursVisualization.CreateRangeElem( + new SvelteUIElement(OpeningHoursRangeElement, { availableArea, earliestOpen, latestclose, range, isWeekstable - ) + }) ) const allRanges = new Combine([ ...OpeningHoursVisualization.CreateLinesAtChangeHours( @@ -172,37 +175,6 @@ export default class OpeningHoursVisualization extends Toggle { ) } - private static CreateRangeElem( - availableArea: number, - earliestOpen: number, - latestclose: number, - range: { - isOpen: boolean - isSpecial: boolean - comment: string - startDate: Date - endDate: Date - }, - isWeekstable: boolean - ): BaseUIElement { - const textToShow = - range.comment ?? (isWeekstable ? "" : range.startDate.toLocaleDateString()) - - if (!range.isOpen && !range.isSpecial) { - return new FixedUiElement(textToShow).SetClass("ohviz-day-off") - } - - const startOfDay: Date = new Date(range.startDate) - startOfDay.setHours(0, 0, 0, 0) - const startpoint = (range.startDate.getTime() - startOfDay.getTime()) / 1000 - earliestOpen - // prettier-ignore - const width = (100 * (range.endDate.getTime() - range.startDate.getTime()) / 1000) / (latestclose - earliestOpen) - const startPercentage = (100 * startpoint) / availableArea - return new FixedUiElement(textToShow) - .SetStyle(`left:${startPercentage}%; width:${width}%`) - .SetClass("ohviz-range") - } - private static CreateLinesAtChangeHours( changeHours: number[], availableArea: number, @@ -280,27 +252,4 @@ export default class OpeningHoursVisualization extends Toggle { const headerHeight = showHigherUsed ? "4rem" : "2rem" return [headerElem, headerHeight] } - - /* - * Visualizes any special case: e.g. not open for a long time, 24/7 open, ... - * */ - private static ShowSpecialCase(oh: opening_hours) { - const nextChange = oh.getNextChange() - if (nextChange !== undefined) { - const nowOpen = oh.getState(new Date()) - const t = Translations.t.general.opening_hours - const tr: TypedTranslation<{ date }> = nowOpen ? t.open_until : t.closed_until - const date = nextChange.toLocaleString() - return tr.Subs({ date }) - } - const comment = oh.getComment() ?? oh.getUnknown() - if (typeof comment === "string") { - return new FixedUiElement(comment) - } - - if (oh.getState()) { - return Translations.t.general.opening_hours.open_24_7.Clone() - } - return Translations.t.general.opening_hours.closed_permanently.Clone() - } } diff --git a/src/UI/OpeningHours/Visualisation/OpeningHoursRangeElement.svelte b/src/UI/OpeningHours/Visualisation/OpeningHoursRangeElement.svelte new file mode 100644 index 0000000000..cab67ee298 --- /dev/null +++ b/src/UI/OpeningHours/Visualisation/OpeningHoursRangeElement.svelte @@ -0,0 +1,31 @@ + + +{#if !range.isOpen && !range.isSpecial} +
{textToShow}
+{:else} +
{textToShow}
+{/if} diff --git a/src/UI/OpeningHours/Visualisation/SpecialCase.svelte b/src/UI/OpeningHours/Visualisation/SpecialCase.svelte new file mode 100644 index 0000000000..ad74b91a22 --- /dev/null +++ b/src/UI/OpeningHours/Visualisation/SpecialCase.svelte @@ -0,0 +1,24 @@ + + +{#if nextChange !== undefined} + +{:else if typeof comment === "string"} +
{comment}
+{:else if oh.getState()} + +{:else} + +{/if} From cc96df94e90e6497d034baedc8f6411f1edcf46c Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 02:12:51 +0200 Subject: [PATCH 45/53] Refactoring: port opening hours visualisation to svelte --- src/UI/Base/Loading.ts | 22 -- src/UI/Base/MapControlButton.svelte | 4 +- src/UI/Base/Tr.svelte | 1 - src/UI/Input/Toggle.ts | 3 +- src/UI/OpeningHours/OpeningHours.ts | 46 ++++ .../OpeningHours/OpeningHoursVisualization.ts | 255 ------------------ .../Visualisation/OpeningHours.svelte | 34 +++ .../Visualisation/OpeningHoursHeader.svelte | 38 +++ .../OpeningHoursRangeElement.svelte | 2 +- .../OpeningHoursWithError.svelte | 28 ++ .../RegularOpeningHoursTable.svelte | 129 +++++++++ src/UI/SpecialVisualizations.ts | 13 +- 12 files changed, 290 insertions(+), 285 deletions(-) delete mode 100644 src/UI/Base/Loading.ts delete mode 100644 src/UI/OpeningHours/OpeningHoursVisualization.ts create mode 100644 src/UI/OpeningHours/Visualisation/OpeningHours.svelte create mode 100644 src/UI/OpeningHours/Visualisation/OpeningHoursHeader.svelte create mode 100644 src/UI/OpeningHours/Visualisation/OpeningHoursWithError.svelte create mode 100644 src/UI/OpeningHours/Visualisation/RegularOpeningHoursTable.svelte diff --git a/src/UI/Base/Loading.ts b/src/UI/Base/Loading.ts deleted file mode 100644 index 7c76174a1e..0000000000 --- a/src/UI/Base/Loading.ts +++ /dev/null @@ -1,22 +0,0 @@ -import Combine from "./Combine" -import Translations from "../i18n/Translations" -import BaseUIElement from "../BaseUIElement" -import SvelteUIElement from "./SvelteUIElement" -import { default as LoadingSvg } from "../../assets/svg/Loading.svelte" - -/** - * @deprecated - */ -export default class Loading extends Combine { - constructor(msg?: BaseUIElement | string) { - const t = Translations.W(msg) ?? Translations.t.general.loading - t.SetClass("pl-2") - super([ - new SvelteUIElement(LoadingSvg) - .SetClass("animate-spin self-center") - .SetStyle("width: 1.5rem; height: 1.5rem; min-width: 1.5rem;"), - t, - ]) - this.SetClass("flex p-1") - } -} diff --git a/src/UI/Base/MapControlButton.svelte b/src/UI/Base/MapControlButton.svelte index 43fac4cc1f..56f6a51d0b 100644 --- a/src/UI/Base/MapControlButton.svelte +++ b/src/UI/Base/MapControlButton.svelte @@ -2,8 +2,8 @@ import { createEventDispatcher } from "svelte" import { twJoin } from "tailwind-merge" import { Translation } from "../i18n/Translation" - import { ariaLabel, ariaLabelStore } from "../../Utils/ariaLabel" - import { ImmutableStore, Store, UIEventSource } from "../../Logic/UIEventSource" + import { ariaLabelStore } from "../../Utils/ariaLabel" + import { ImmutableStore, Store } from "../../Logic/UIEventSource" /** * A round button with an icon and possible a small text, which hovers above the map diff --git a/src/UI/Base/Tr.svelte b/src/UI/Base/Tr.svelte index 82cb74c3d7..cfc4901bf1 100644 --- a/src/UI/Base/Tr.svelte +++ b/src/UI/Base/Tr.svelte @@ -5,7 +5,6 @@ import { Translation } from "../i18n/Translation" import WeblateLink from "./WeblateLink.svelte" import { Store } from "../../Logic/UIEventSource" - import FromHtml from "./FromHtml.svelte" import { Utils } from "../../Utils" export let t: Translation diff --git a/src/UI/Input/Toggle.ts b/src/UI/Input/Toggle.ts index 6bc1394bf3..21bef1c1cc 100644 --- a/src/UI/Input/Toggle.ts +++ b/src/UI/Input/Toggle.ts @@ -1,8 +1,9 @@ -import { Store, UIEventSource } from "../../Logic/UIEventSource" +import { Store } from "../../Logic/UIEventSource" import BaseUIElement from "../BaseUIElement" import { VariableUiElement } from "../Base/VariableUIElement" /** + * @deprecated * The 'Toggle' is a UIElement showing either one of two elements, depending on the state. * It can be used to implement e.g. checkboxes or collapsible elements */ diff --git a/src/UI/OpeningHours/OpeningHours.ts b/src/UI/OpeningHours/OpeningHours.ts index 9596f8240f..9a8f4b341b 100644 --- a/src/UI/OpeningHours/OpeningHours.ts +++ b/src/UI/OpeningHours/OpeningHours.ts @@ -967,6 +967,52 @@ changes // => [[36000,61200], ["10:00", "17:00"]] } return oh } + + + /** + * + * @param changeHours number of seconds 'till the start of the day, assuming sorted + * @param changeHourText + * @param maxDiff minimum required seconds between two items to be in the same group + * + * OH.partitionOHForDistance([0, 15, 3615], ["start", "15s", "1h15s"]) // => [{changeHours: [0, 3615], changeTexts: ["start", "1h15s"]}, {changeHours: [15], changeTexts: ["15 seconds"]}}] + * + */ + public static partitionOHForDistance(changeHours: number[], changeHourText: string[], maxDiff = 3600): { + changeHours: number[], + changeTexts: string[] + }[] { + const partitionedHours: { changeHours: number[], changeTexts: string[] }[] = [ + { changeHours: [changeHours[0]], changeTexts: [changeHourText[0]] } + ] + for (let i = 1 /*skip the first one, inited ^*/; i < changeHours.length; i++) { + const moment = changeHours[i] + const text = changeHourText[i] + let depth = 0 + while (depth < partitionedHours.length) { + const candidate = partitionedHours[depth] + const lastMoment = candidate.changeHours.at(-1) + const diff = moment - lastMoment + if (diff >= maxDiff) { + candidate.changeHours.push(moment) + candidate.changeTexts.push(text) + break + } + depth++ + } + if (depth == partitionedHours.length) { + // No candidate found - make a new list + partitionedHours.push({ + changeTexts: [text], + changeHours: [moment] + }) + } + + } + + + return partitionedHours + } } export class ToTextualDescription { diff --git a/src/UI/OpeningHours/OpeningHoursVisualization.ts b/src/UI/OpeningHours/OpeningHoursVisualization.ts deleted file mode 100644 index c98e866639..0000000000 --- a/src/UI/OpeningHours/OpeningHoursVisualization.ts +++ /dev/null @@ -1,255 +0,0 @@ -import { UIEventSource } from "../../Logic/UIEventSource" -import Combine from "../Base/Combine" -import { FixedUiElement } from "../Base/FixedUiElement" -import { OH, OpeningRange, ToTextualDescription } from "./OpeningHours" -import Translations from "../i18n/Translations" -import BaseUIElement from "../BaseUIElement" -import Toggle from "../Input/Toggle" -import { VariableUiElement } from "../Base/VariableUIElement" -import Table from "../Base/Table" -import { Translation } from "../i18n/Translation" -import Loading from "../Base/Loading" -import opening_hours from "opening_hours" -import Locale from "../i18n/Locale" -import SpecialCase from "./Visualisation/SpecialCase.svelte" -import SvelteUIElement from "../Base/SvelteUIElement" -import OpeningHoursRangeElement from "./Visualisation/OpeningHoursRangeElement.svelte" - -export default class OpeningHoursVisualization extends Toggle { - private static readonly weekdays: Translation[] = [ - Translations.t.general.weekdays.abbreviations.monday, - Translations.t.general.weekdays.abbreviations.tuesday, - Translations.t.general.weekdays.abbreviations.wednesday, - Translations.t.general.weekdays.abbreviations.thursday, - Translations.t.general.weekdays.abbreviations.friday, - Translations.t.general.weekdays.abbreviations.saturday, - Translations.t.general.weekdays.abbreviations.sunday, - ] - - constructor( - tags: UIEventSource>, - key: string, - prefix = "", - postfix = "" - ) { - const openingHoursStore = OH.CreateOhObjectStore(tags, key, prefix, postfix) - const ohTable = new VariableUiElement( - openingHoursStore.map((opening_hours_obj) => { - if (opening_hours_obj === undefined) { - return new FixedUiElement("No opening hours defined with key " + key).SetClass( - "alert" - ) - } - - if (opening_hours_obj === "error") { - return Translations.t.general.opening_hours.error_loading - } - - const applicableWeek = OH.createRangesForApplicableWeek(opening_hours_obj) - const textual = ToTextualDescription.createTextualDescriptionFor( - opening_hours_obj, - applicableWeek.ranges - ) - const vis = OpeningHoursVisualization.CreateFullVisualisation( - opening_hours_obj, - applicableWeek.ranges, - applicableWeek.startingMonday - ) - Locale.language.mapD((lng) => { - console.debug("Setting OH description to", lng, textual) - vis.ConstructElement().ariaLabel = textual?.textFor(lng) - }) - return vis - }) - ) - - super( - ohTable, - new Loading(Translations.t.general.opening_hours.loadingCountry), - tags.map((tgs) => tgs._country !== undefined) - ) - this.SetClass("no-weblate") - } - - private static CreateFullVisualisation( - oh: opening_hours, - ranges: OpeningRange[][], - lastMonday: Date - ): BaseUIElement { - // First, a small sanity check. The business might be permanently closed, 24/7 opened or be another special case - if (ranges.some((range) => range.length > 0)) { - // The normal case: we have items for the coming days - return OpeningHoursVisualization.ConstructVizTable(oh, ranges, lastMonday) - } - // The special case that range is completely empty - return new SvelteUIElement(SpecialCase, { oh }) - } - - private static ConstructVizTable( - oh: any, - ranges: { - isOpen: boolean - isSpecial: boolean - comment: string - startDate: Date - endDate: Date - }[][], - rangeStart: Date - ): BaseUIElement { - const isWeekstable: boolean = oh.isWeekStable() - const [changeHours, changeHourText] = OH.allChangeMoments(ranges) - const today = new Date() - today.setHours(0, 0, 0, 0) - - const todayIndex = Math.ceil( - (today.getTime() - rangeStart.getTime()) / (1000 * 60 * 60 * 24) - ) - // By default, we always show the range between 8 - 19h, in order to give a stable impression - // Ofc, a bigger range is used if needed - const earliestOpen = Math.min(8 * 60 * 60, ...changeHours) - let latestclose = Math.max(...changeHours) - // We always make sure there is 30m of leeway in order to give enough room for the closing entry - latestclose = Math.max(19 * 60 * 60, latestclose + 30 * 60) - const availableArea = latestclose - earliestOpen - - /* - * The OH-visualisation is a table, consisting of 8 rows and 2 columns: - * The first row is a header row (which is NOT passed as header but just as a normal row!) containing empty for the first column and one object giving all the end times - * The other rows are one for each weekday: the first element showing 'mo', 'tu', ..., the second element containing the bars. - * Note that the bars are actually an embedded
spanning the full width, containing multiple sub-elements - * */ - - const [header, headerHeight] = OpeningHoursVisualization.ConstructHeaderElement( - availableArea, - changeHours, - changeHourText, - earliestOpen - ) - - const weekdays = [] - const weekdayStyles = [] - for (let i = 0; i < 7; i++) { - const day = OpeningHoursVisualization.weekdays[i].Clone() - day.SetClass("w-full h-full flex") - - const rangesForDay = ranges[i].map((range) => - new SvelteUIElement(OpeningHoursRangeElement, { - availableArea, - earliestOpen, - latestclose, - range, - isWeekstable - }) - ) - const allRanges = new Combine([ - ...OpeningHoursVisualization.CreateLinesAtChangeHours( - changeHours, - availableArea, - earliestOpen - ), - ...rangesForDay, - ]).SetClass("w-full block") - - let extraStyle = "" - if (todayIndex == i) { - extraStyle = "background-color: var(--subtle-detail-color);" - allRanges.SetClass("ohviz-today") - } else if (i >= 5) { - extraStyle = "background-color: rgba(230, 231, 235, 1);" - } - weekdays.push([day, allRanges]) - weekdayStyles.push([ - "padding-left: 0.5em;" + extraStyle, - `position: relative;` + extraStyle, - ]) - } - return new Table(undefined, [[" ", header], ...weekdays], { - contentStyle: [ - ["width: 5%", `position: relative; height: ${headerHeight}`], - ...weekdayStyles, - ], - }) - .SetClass("w-full") - .SetStyle( - "border-collapse: collapse; word-break; word-break: normal; word-wrap: normal" - ) - } - - private static CreateLinesAtChangeHours( - changeHours: number[], - availableArea: number, - earliestOpen: number - ): BaseUIElement[] { - const allLines: BaseUIElement[] = [] - for (const changeMoment of changeHours) { - const offset = (100 * (changeMoment - earliestOpen)) / availableArea - if (offset < 0 || offset > 100) { - continue - } - const el = new FixedUiElement("").SetStyle(`left:${offset}%;`).SetClass("ohviz-line") - allLines.push(el) - } - return allLines - } - - /** - * The OH-Visualization header element, a single bar with hours - * @param availableArea - * @param changeHours - * @param changeHourText - * @param earliestOpen - * @constructor - * @private - */ - private static ConstructHeaderElement( - availableArea: number, - changeHours: number[], - changeHourText: string[], - earliestOpen: number - ): [BaseUIElement, string] { - const header: BaseUIElement[] = [] - - header.push( - ...OpeningHoursVisualization.CreateLinesAtChangeHours( - changeHours, - availableArea, - earliestOpen - ) - ) - - let showHigher = false - let showHigherUsed = false - for (let i = 0; i < changeHours.length; i++) { - const changeMoment = changeHours[i] - const offset = (100 * (changeMoment - earliestOpen)) / availableArea - if (offset < 0 || offset > 100) { - continue - } - - if (i > 0 && (changeMoment - changeHours[i - 1]) / (60 * 60) < 2) { - // Quite close to the previous value - // We alternate the heights - showHigherUsed = true - showHigher = !showHigher - } else { - showHigher = false - } - - const el = new Combine([ - new FixedUiElement(changeHourText[i]) - .SetClass( - "relative bg-white pl-1 pr-1 h-3 font-sm rounded-xl border-2 border-black border-opacity-50" - ) - .SetStyle("left: -50%; word-break:initial"), - ]) - .SetStyle(`left:${offset}%;margin-top: ${showHigher ? "1.4rem;" : "0.1rem"}`) - .SetClass("block absolute top-0 m-0 h-full box-border ohviz-time-indication") - header.push(el) - } - const headerElem = new Combine(header) - .SetClass(`w-full absolute block ${showHigherUsed ? "h-16" : "h-8"}`) - .SetStyle("margin-top: -1rem") - const headerHeight = showHigherUsed ? "4rem" : "2rem" - return [headerElem, headerHeight] - } -} diff --git a/src/UI/OpeningHours/Visualisation/OpeningHours.svelte b/src/UI/OpeningHours/Visualisation/OpeningHours.svelte new file mode 100644 index 0000000000..712fb77676 --- /dev/null +++ b/src/UI/OpeningHours/Visualisation/OpeningHours.svelte @@ -0,0 +1,34 @@ + +
+ + {#if ranges.some((range) => range.length > 0)} + + + {:else} + + + {/if} +
diff --git a/src/UI/OpeningHours/Visualisation/OpeningHoursHeader.svelte b/src/UI/OpeningHours/Visualisation/OpeningHoursHeader.svelte new file mode 100644 index 0000000000..d56502c476 --- /dev/null +++ b/src/UI/OpeningHours/Visualisation/OpeningHoursHeader.svelte @@ -0,0 +1,38 @@ + + +
+ {#each changeHours as changeMoment, i} + {#if calcOffset(changeMoment) >= 0 && calcOffset(changeMoment) <= 100} +
+
+ {changeHourText[i]} +
+
+ {/if} + {/each} +
diff --git a/src/UI/OpeningHours/Visualisation/OpeningHoursRangeElement.svelte b/src/UI/OpeningHours/Visualisation/OpeningHoursRangeElement.svelte index cab67ee298..3f1db45843 100644 --- a/src/UI/OpeningHours/Visualisation/OpeningHoursRangeElement.svelte +++ b/src/UI/OpeningHours/Visualisation/OpeningHoursRangeElement.svelte @@ -19,7 +19,7 @@ startOfDay.setHours(0, 0, 0, 0) let startpoint = (range.startDate.getTime() - startOfDay.getTime()) / 1000 - earliestOpen // prettier-ignore - let width = (100 * (range.endDate.getTime() - range.startDate.getTime()) / 1000) / (latestclose - earliestOpen) + let width = (100 * (range.endDate.getTime() - range.startDate.getTime()) / 1000) / availableArea let startPercentage = (100 * startpoint) / availableArea diff --git a/src/UI/OpeningHours/Visualisation/OpeningHoursWithError.svelte b/src/UI/OpeningHours/Visualisation/OpeningHoursWithError.svelte new file mode 100644 index 0000000000..e9f9934708 --- /dev/null +++ b/src/UI/OpeningHours/Visualisation/OpeningHoursWithError.svelte @@ -0,0 +1,28 @@ + + + +{#if $tags._country === undefined} + + + +{:else if $opening_hours_obj === undefined} +
No opening hours defined with key {key}
+{:else if $opening_hours_obj === "error"} + +{:else} + +{/if} diff --git a/src/UI/OpeningHours/Visualisation/RegularOpeningHoursTable.svelte b/src/UI/OpeningHours/Visualisation/RegularOpeningHoursTable.svelte new file mode 100644 index 0000000000..9f6c287a3f --- /dev/null +++ b/src/UI/OpeningHours/Visualisation/RegularOpeningHoursTable.svelte @@ -0,0 +1,129 @@ + +
+ {#each allChangeMoments as moment} +
+
+
+
+ +
+
+
+
+ {/each} + + + {#each weekdayHeaders as weekdayHeader} + + + + + {/each} + + {#each weekdays as weekday, i} + = 5}> + + + + + {/each} + + {#each weekendDayHeaders as weekdayHeader} + + + + + {/each} +
+ +
+ + +
+ {#each ranges[i] as range} + + {/each} +
+
+ +
+
diff --git a/src/UI/SpecialVisualizations.ts b/src/UI/SpecialVisualizations.ts index db01c4ada9..96f58b5ea0 100644 --- a/src/UI/SpecialVisualizations.ts +++ b/src/UI/SpecialVisualizations.ts @@ -5,12 +5,11 @@ import { RenderingSpecification, SpecialVisualization, SpecialVisualizationState import { HistogramViz } from "./Popup/HistogramViz" import { UploadToOsmViz } from "./Popup/UploadToOsmViz" import { MultiApplyViz } from "./Popup/MultiApplyViz" -import { UIEventSource } from "../Logic/UIEventSource" +import { Store, UIEventSource } from "../Logic/UIEventSource" import AllTagsPanel from "./Popup/AllTagsPanel/AllTagsPanel.svelte" import { VariableUiElement } from "./Base/VariableUIElement" import { Translation } from "./i18n/Translation" import Translations from "./i18n/Translations" -import OpeningHoursVisualization from "./OpeningHours/OpeningHoursVisualization" import AutoApplyButtonVis from "./Popup/AutoApplyButtonVis" import { LanguageElement } from "./Popup/LanguageElement/LanguageElement" import SvelteUIElement from "./Base/SvelteUIElement" @@ -43,6 +42,9 @@ import { } from "./SpecialVisualisations/WebAndCommunicationSpecialVisualisations" import ClearGPSHistory from "./BigComponents/ClearGPSHistory.svelte" import AllFeaturesStatistics from "./Statistics/AllFeaturesStatistics.svelte" +import OpeningHoursWithError from "./OpeningHours/Visualisation/OpeningHoursWithError.svelte" +import { OH } from "./OpeningHours/OpeningHours" +import opening_hours from "opening_hours" export default class SpecialVisualizations { public static specialVisualizations: SpecialVisualization[] = SpecialVisualizations.initList() @@ -276,7 +278,12 @@ export default class SpecialVisualizations { "A normal opening hours table can be invoked with `{opening_hours_table()}`. A table for e.g. conditional access with opening hours can be `{opening_hours_table(access:conditional, no @ &LPARENS, &RPARENS)}`", constr: (state, tagSource: UIEventSource, args) => { const [key, prefix, postfix] = args - return new OpeningHoursVisualization(tagSource, key, prefix, postfix) + const openingHoursStore: Store = OH.CreateOhObjectStore(tagSource, key, prefix, postfix) + return new SvelteUIElement(OpeningHoursWithError, { + tags: tagSource, + key, + opening_hours_obj: openingHoursStore + }) }, }, { From 08db091537bb925a275cd2ab5e78213d6a13db9e Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 02:18:26 +0200 Subject: [PATCH 46/53] Chore: remove unused code --- src/UI/Base/Table.ts | 54 +++++------------------------------------ src/UI/BaseUIElement.ts | 10 -------- 2 files changed, 6 insertions(+), 58 deletions(-) diff --git a/src/UI/Base/Table.ts b/src/UI/Base/Table.ts index d6632f30b1..0c37065ac9 100644 --- a/src/UI/Base/Table.ts +++ b/src/UI/Base/Table.ts @@ -1,27 +1,26 @@ import BaseUIElement from "../BaseUIElement" import { Utils } from "../../Utils" import Translations from "../i18n/Translations" -import { UIEventSource } from "../../Logic/UIEventSource" +/** + * @deprecated + */ export default class Table extends BaseUIElement { private readonly _header: BaseUIElement[] private readonly _contents: BaseUIElement[][] private readonly _contentStyle: string[][] - private readonly _sortable: boolean constructor( header: (BaseUIElement | string)[], contents: (BaseUIElement | string)[][], options?: { contentStyle?: string[][] - sortable?: false | boolean } ) { super() this._contentStyle = options?.contentStyle ?? [["min-width: 9rem"]] this._header = header?.map(Translations.W) this._contents = contents.map((row) => row.map(Translations.W)) - this._sortable = options?.sortable ?? false } AsMarkdown(): string { @@ -46,26 +45,8 @@ export default class Table extends BaseUIElement { protected InnerConstructElement(): HTMLElement { const table = document.createElement("table") - /** - * Sortmode: i: sort column i ascending; - * if i is negative : sort column (-i - 1) descending - */ - const sortmode = new UIEventSource(undefined) - const self = this const headerElems = Utils.NoNull( - (this._header ?? []).map((elem, i) => { - if (self._sortable) { - elem.onClick(() => { - const current = sortmode.data - if (current == i) { - sortmode.setData(-1 - i) - } else { - sortmode.setData(i) - } - }) - } - return elem.ConstructElement() - }) + (this._header ?? []).map((elem) => elem.ConstructElement()) ) if (headerElems.length > 0) { const thead = document.createElement("thead") @@ -81,11 +62,11 @@ export default class Table extends BaseUIElement { } for (let i = 0; i < this._contents.length; i++) { - let row = this._contents[i] + const row = this._contents[i] const tr = document.createElement("tr") for (let j = 0; j < row.length; j++) { try { - let elem = row[j] + const elem = row[j] if (elem?.ConstructElement === undefined) { continue } @@ -114,29 +95,6 @@ export default class Table extends BaseUIElement { table.appendChild(tr) } - sortmode.addCallback((sortCol) => { - if (sortCol === undefined) { - return - } - const descending = sortCol < 0 - const col = descending ? -sortCol - 1 : sortCol - let rows: HTMLTableRowElement[] = Array.from(table.rows) - rows.splice(0, 1) // remove header row - rows = rows.sort((a, b) => { - const ac = a.cells[col]?.textContent?.toLowerCase() - const bc = b.cells[col]?.textContent?.toLowerCase() - if (ac === bc) { - return 0 - } - return ac < bc !== descending ? -1 : 1 - }) - for (let j = rows.length; j > 1; j--) { - table.deleteRow(j) - } - for (const row of rows) { - table.appendChild(row) - } - }) return table } diff --git a/src/UI/BaseUIElement.ts b/src/UI/BaseUIElement.ts index a6026d3967..05cfa1ab24 100644 --- a/src/UI/BaseUIElement.ts +++ b/src/UI/BaseUIElement.ts @@ -50,16 +50,6 @@ export default abstract class BaseUIElement { return this } - - public ScrollIntoView() { - if (this._constructedHtmlElement === undefined) { - return - } - this._constructedHtmlElement?.scrollIntoView({ - behavior: "smooth", - block: "start", - }) - } /** * Adds all the relevant classes, space separated */ From b059c765dccac902c30851fb54e70e9644d73371 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 20:58:45 +0200 Subject: [PATCH 47/53] Scripts: update scripts to run on hetzner-access build servers --- .forgejo/workflows/daily_data_maintenance.yml | 2 +- .forgejo/workflows/deploy_hosted.yml | 2 +- .forgejo/workflows/deploy_single_theme.yml | 2 +- .forgejo/workflows/monthly_data_maintenance.yml | 2 +- .forgejo/workflows/on_release.yml | 2 +- .forgejo/workflows/update_database.yml | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/daily_data_maintenance.yml b/.forgejo/workflows/daily_data_maintenance.yml index 995c4ee8f7..b494d876e0 100644 --- a/.forgejo/workflows/daily_data_maintenance.yml +++ b/.forgejo/workflows/daily_data_maintenance.yml @@ -5,7 +5,7 @@ on: jobs: create_community_index: - runs-on: [ ubuntu-latest, hetzner-access ] + runs-on: [ hetzner-access ] steps: - uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: ./.forgejo/setup diff --git a/.forgejo/workflows/deploy_hosted.yml b/.forgejo/workflows/deploy_hosted.yml index 14570f07d5..be75487f91 100644 --- a/.forgejo/workflows/deploy_hosted.yml +++ b/.forgejo/workflows/deploy_hosted.yml @@ -7,7 +7,7 @@ on: jobs: deploy_on_hosted: - runs-on: [ubuntu-latest, hetzner-access] + runs-on: [ hetzner-access ] steps: - uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: ./.forgejo/setup diff --git a/.forgejo/workflows/deploy_single_theme.yml b/.forgejo/workflows/deploy_single_theme.yml index 3946081c2f..1bd65d75b6 100644 --- a/.forgejo/workflows/deploy_single_theme.yml +++ b/.forgejo/workflows/deploy_single_theme.yml @@ -5,7 +5,7 @@ on: jobs: deploy_single_theme: - runs-on: [ ubuntu-latest, hetzner-access ] + runs-on: [ hetzner-access ] steps: - uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: ./.forgejo/setup diff --git a/.forgejo/workflows/monthly_data_maintenance.yml b/.forgejo/workflows/monthly_data_maintenance.yml index 5b88a92371..8ca23fb807 100644 --- a/.forgejo/workflows/monthly_data_maintenance.yml +++ b/.forgejo/workflows/monthly_data_maintenance.yml @@ -5,7 +5,7 @@ on: jobs: update_nsi_logos: - runs-on: [ ubuntu-latest, hetzner-access ] + runs-on: [ hetzner-access ] steps: - uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: ./.forgejo/setup diff --git a/.forgejo/workflows/on_release.yml b/.forgejo/workflows/on_release.yml index d605696d97..83e4c6631f 100644 --- a/.forgejo/workflows/on_release.yml +++ b/.forgejo/workflows/on_release.yml @@ -5,7 +5,7 @@ on: jobs: build_android: - runs-on: ubuntu-latest + runs-on: hetzner-access steps: - uses: https://source.mapcomplete.org/actions/checkout@v4 diff --git a/.forgejo/workflows/update_database.yml b/.forgejo/workflows/update_database.yml index 958bd1f4ea..360c0d7f3f 100644 --- a/.forgejo/workflows/update_database.yml +++ b/.forgejo/workflows/update_database.yml @@ -6,7 +6,7 @@ on: jobs: daily_data_maintenance: - runs-on: [ lain ] + runs-on: [ osm-cache ] steps: - uses: https://source.mapcomplete.org/actions/checkout@v4 - uses: ./.forgejo/setup From 469165c6ff76df08e758f11e3db56e3f2cc6d781 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 21:04:15 +0200 Subject: [PATCH 48/53] Chore: reset translations --- langs/themes/ca.json | 2 +- langs/themes/cs.json | 2 +- langs/themes/da.json | 2 +- langs/themes/de.json | 2 +- langs/themes/en.json | 2 +- langs/themes/es.json | 2 +- langs/themes/fr.json | 2 +- langs/themes/it.json | 2 +- langs/themes/ko.json | 2 +- langs/themes/nb_NO.json | 2 +- langs/themes/nl.json | 2 +- langs/themes/pl.json | 2 +- langs/themes/zh_Hant.json | 2 +- 13 files changed, 13 insertions(+), 13 deletions(-) diff --git a/langs/themes/ca.json b/langs/themes/ca.json index b3945108b1..a90b94d7e9 100644 --- a/langs/themes/ca.json +++ b/langs/themes/ca.json @@ -831,7 +831,7 @@ "stations": { "description": "Veure, editar i afegir detalls a una estació de tren", "layers": { - "16": { + "17": { "description": "Pantalles que mostren els trens que sortiran de l'estació", "name": "Taulers de sortides", "presets": { diff --git a/langs/themes/cs.json b/langs/themes/cs.json index 7ee290b4a5..a9bf15c612 100644 --- a/langs/themes/cs.json +++ b/langs/themes/cs.json @@ -1189,7 +1189,7 @@ "stations": { "description": "Zobrazení, úprava a přidání podrobností o vlakovém nádraží", "layers": { - "16": { + "17": { "description": "Zobrazuje vlaky odjíždějící z této stanice", "name": "Odjezdové tabule", "presets": { diff --git a/langs/themes/da.json b/langs/themes/da.json index 143de74828..a6d285f69e 100644 --- a/langs/themes/da.json +++ b/langs/themes/da.json @@ -659,7 +659,7 @@ }, "stations": { "layers": { - "16": { + "17": { "name": "Afgangstavler", "presets": { "0": { diff --git a/langs/themes/de.json b/langs/themes/de.json index 7d73d8cecb..0b7ce9a070 100644 --- a/langs/themes/de.json +++ b/langs/themes/de.json @@ -1170,7 +1170,7 @@ "stations": { "description": "Bahnhofsdetails ansehen, bearbeiten und hinzufügen", "layers": { - "16": { + "17": { "description": "Anzeigen der Züge, die von diesem Bahnhof abfahren", "name": "Abfahrtstafeln", "presets": { diff --git a/langs/themes/en.json b/langs/themes/en.json index 4e78d069b6..ecbde5d37d 100644 --- a/langs/themes/en.json +++ b/langs/themes/en.json @@ -1231,7 +1231,7 @@ "stations": { "description": "View, edit and add details to a train station", "layers": { - "16": { + "17": { "description": "Displays showing the trains that will leave from this station", "name": "Departures boards", "presets": { diff --git a/langs/themes/es.json b/langs/themes/es.json index 28c19e01b6..4d5c2bd9d4 100644 --- a/langs/themes/es.json +++ b/langs/themes/es.json @@ -1114,7 +1114,7 @@ "stations": { "description": "Ver, editar y agregar detalles a una estación de tren", "layers": { - "16": { + "17": { "description": "Pantallas que muestran los trenes que saldrán de esta estación", "name": "Tableros de salidas", "presets": { diff --git a/langs/themes/fr.json b/langs/themes/fr.json index 1035857e68..84a1c658fe 100644 --- a/langs/themes/fr.json +++ b/langs/themes/fr.json @@ -914,7 +914,7 @@ "stations": { "description": "Voir, modifier et ajouter des détails à une gare ferroviaire", "layers": { - "16": { + "17": { "description": "Panneau affichant les trains au départ depuis cette gare", "name": "Panneaux des départs", "presets": { diff --git a/langs/themes/it.json b/langs/themes/it.json index f1820875fe..e5546596f6 100644 --- a/langs/themes/it.json +++ b/langs/themes/it.json @@ -1214,7 +1214,7 @@ "stations": { "description": "Visualizza, modifica e aggiungi dettagli a una stazione ferroviaria", "layers": { - "16": { + "17": { "description": "Display che mostrano i treni che partiranno da questa stazione", "name": "Tabelloni delle partenze", "presets": { diff --git a/langs/themes/ko.json b/langs/themes/ko.json index 6885dd8aa3..fa8f534c79 100644 --- a/langs/themes/ko.json +++ b/langs/themes/ko.json @@ -1100,7 +1100,7 @@ "stations": { "description": "기차역 보기, 세부사항 편집 또는 추가하기", "layers": { - "16": { + "17": { "description": "이 역에서 출발하는 기차를 보여주는 안내 전광판", "name": "출발 안내 전광판", "presets": { diff --git a/langs/themes/nb_NO.json b/langs/themes/nb_NO.json index 9d0d67a790..18e2a4e131 100644 --- a/langs/themes/nb_NO.json +++ b/langs/themes/nb_NO.json @@ -393,7 +393,7 @@ }, "stations": { "layers": { - "16": { + "17": { "tagRenderings": { "type": { "mappings": { diff --git a/langs/themes/nl.json b/langs/themes/nl.json index eb65c691fa..d9fee23dc2 100644 --- a/langs/themes/nl.json +++ b/langs/themes/nl.json @@ -1234,7 +1234,7 @@ "stations": { "description": "Bekijk, bewerk en voeg details to aan een treinstation", "layers": { - "16": { + "17": { "description": "Schermen die treinen tonen die van dit station vertrekken", "name": "Vertrektijdenborden", "presets": { diff --git a/langs/themes/pl.json b/langs/themes/pl.json index 699d12bbd2..4734da57a5 100644 --- a/langs/themes/pl.json +++ b/langs/themes/pl.json @@ -787,7 +787,7 @@ "stations": { "description": "Przeglądaj, edytuj i dodawaj szczegóły do stacji kolejowej", "layers": { - "16": { + "17": { "description": "Ekrany wyświetlające pokazujące pociągi, które odjadą z tej stacji", "name": "Tablice odjazdów", "presets": { diff --git a/langs/themes/zh_Hant.json b/langs/themes/zh_Hant.json index cb0d369cbb..7f4a255e83 100644 --- a/langs/themes/zh_Hant.json +++ b/langs/themes/zh_Hant.json @@ -750,7 +750,7 @@ }, "stations": { "layers": { - "16": { + "17": { "name": "出發板", "presets": { "0": { From bad4a3514cb9592d10505cab88bdabe77bebd05e Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 21:24:29 +0200 Subject: [PATCH 49/53] Fix tests --- src/UI/OpeningHours/OpeningHours.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/OpeningHours/OpeningHours.ts b/src/UI/OpeningHours/OpeningHours.ts index 9a8f4b341b..22caa928e0 100644 --- a/src/UI/OpeningHours/OpeningHours.ts +++ b/src/UI/OpeningHours/OpeningHours.ts @@ -975,7 +975,7 @@ changes // => [[36000,61200], ["10:00", "17:00"]] * @param changeHourText * @param maxDiff minimum required seconds between two items to be in the same group * - * OH.partitionOHForDistance([0, 15, 3615], ["start", "15s", "1h15s"]) // => [{changeHours: [0, 3615], changeTexts: ["start", "1h15s"]}, {changeHours: [15], changeTexts: ["15 seconds"]}}] + * OH.partitionOHForDistance([0, 15, 3615], ["start", "15s", "1h15s"]) // => [{changeHours: [0, 3615], changeTexts: ["start", "1h15s"]}, {changeHours: [15], changeTexts: ["15 seconds"]}] * */ public static partitionOHForDistance(changeHours: number[], changeHourText: string[], maxDiff = 3600): { From b9640220914db7577ddc8fa2e970b8e17c6fd5ce Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 21:37:15 +0200 Subject: [PATCH 50/53] (Attempt to) fix tests --- .forgejo/workflows/deploy_hosted.yml | 5 +- package-lock.json | 2082 +++++++++++++++++++++++--- src/UI/OpeningHours/OpeningHours.ts | 2 +- 3 files changed, 1912 insertions(+), 177 deletions(-) diff --git a/.forgejo/workflows/deploy_hosted.yml b/.forgejo/workflows/deploy_hosted.yml index be75487f91..e08cc08e62 100644 --- a/.forgejo/workflows/deploy_hosted.yml +++ b/.forgejo/workflows/deploy_hosted.yml @@ -26,11 +26,8 @@ jobs: - name: Run tests run: | - # This is the same as `npm run test`, but `vitest` doesn't want to run within npm :shrug: export NODE_OPTIONS="--max-old-space-size=8192" - npm run clean:tests - npm run generate:doctests 2>&1 | grep -v "No doctests found in" - vitest --run test && npm run clean:tests + npm run test shell: bash - name: Build files diff --git a/package-lock.json b/package-lock.json index d6449c7565..4c0c52b7c3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -133,7 +133,7 @@ "typescript": "^4.7.4", "vite": "^4.5.9", "vite-node": "^3.0.5", - "vitest": "^3.0.5" + "vitest": "^3.2.1" } }, "node_modules/@aashutoshrathi/word-wrap": { @@ -4960,6 +4960,278 @@ "node": ">=14.0" } }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.25.5.tgz", + "integrity": "sha512-9o3TMmpmftaCMepOdA5k/yDw8SfInyzWWTjYTFCX3kPSDJMROQTb8jg+h9Cnwnmm1vOzvxN7gIfB5V2ewpjtGA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.25.5.tgz", + "integrity": "sha512-AdJKSPeEHgi7/ZhuIPtcQKr5RQdo6OO2IL87JkianiMYMPbCtot9fxPbrMiBADOWWm3T2si9stAiVsGbTQFkbA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.25.5.tgz", + "integrity": "sha512-VGzGhj4lJO+TVGV1v8ntCZWJktV7SGCs3Pn1GRWI1SBFtRALoomm8k5E9Pmwg3HOAal2VDc2F9+PM/rEY6oIDg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.25.5.tgz", + "integrity": "sha512-D2GyJT1kjvO//drbRT3Hib9XPwQeWd9vZoBJn+bu/lVsOZ13cqNdDeqIF/xQ5/VmWvMduP6AmXvylO/PIc2isw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.25.5.tgz", + "integrity": "sha512-GtaBgammVvdF7aPIgH2jxMDdivezgFu6iKpmT+48+F8Hhg5J/sfnDieg0aeG/jfSvkYQU2/pceFPDKlqZzwnfQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.25.5.tgz", + "integrity": "sha512-1iT4FVL0dJ76/q1wd7XDsXrSW+oLoquptvh4CLR4kITDtqi2e/xwXwdCVH8hVHU43wgJdsq7Gxuzcs6Iq/7bxQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.5.tgz", + "integrity": "sha512-nk4tGP3JThz4La38Uy/gzyXtpkPW8zSAmoUhK9xKKXdBCzKODMc2adkB2+8om9BDYugz+uGV7sLmpTYzvmz6Sw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.25.5.tgz", + "integrity": "sha512-PrikaNjiXdR2laW6OIjlbeuCPrPaAl0IwPIaRv+SMV8CiM8i2LqVUHFC1+8eORgWyY7yhQY+2U2fA55mBzReaw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.25.5.tgz", + "integrity": "sha512-cPzojwW2okgh7ZlRpcBEtsX7WBuqbLrNXqLU89GxWbNt6uIg78ET82qifUy3W6OVww6ZWobWub5oqZOVtwolfw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.25.5.tgz", + "integrity": "sha512-Z9kfb1v6ZlGbWj8EJk9T6czVEjjq2ntSYLY2cw6pAZl4oKtfgQuS4HOq41M/BcoLPzrUbNd+R4BXFyH//nHxVg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.25.5.tgz", + "integrity": "sha512-sQ7l00M8bSv36GLV95BVAdhJ2QsIbCuCjh/uYrWiMQSUuV+LpXwIqhgJDcvMTj+VsQmqAHL2yYaasENvJ7CDKA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.25.5.tgz", + "integrity": "sha512-0ur7ae16hDUC4OL5iEnDb0tZHDxYmuQyhKhsPBV8f99f6Z9KQM02g33f93rNH5A30agMS46u2HP6qTdEt6Q1kg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.25.5.tgz", + "integrity": "sha512-kB/66P1OsHO5zLz0i6X0RxlQ+3cu0mkxS3TKFvkb5lin6uwZ/ttOkP3Z8lfR9mJOBk14ZwZ9182SIIWFGNmqmg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.25.5.tgz", + "integrity": "sha512-UZCmJ7r9X2fe2D6jBmkLBMQetXPXIsZjQJCjgwpVDz+YMcS6oFR27alkgGv3Oqkv07bxdvw7fyB71/olceJhkQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.25.5.tgz", + "integrity": "sha512-kTxwu4mLyeOlsVIFPfQo+fQJAV9mh24xL+y+Bm6ej067sYANjyEw1dNHmvoqxJUCMnkBdKpvOn0Ahql6+4VyeA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.25.5.tgz", + "integrity": "sha512-K2dSKTKfmdh78uJ3NcWFiqyRrimfdinS5ErLSn3vluHNeHVnBAFWC8a4X5N+7FgVE1EjXS1QDZbpqZBjfrqMTQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=18" + } + }, "node_modules/@esbuild/linux-x64": { "version": "0.18.20", "cpu": [ @@ -4975,6 +5247,142 @@ "node": ">=12" } }, + "node_modules/@esbuild/netbsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.5.tgz", + "integrity": "sha512-pwHtMP9viAy1oHPvgxtOv+OkduK5ugofNTVDilIzBLpoWAM16r7b/mxBvfpuQDpRQFMfuVr5aLcn4yveGvBZvw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.25.5.tgz", + "integrity": "sha512-WOb5fKrvVTRMfWFNCroYWWklbnXH0Q5rZppjq0vQIdlsQKuw6mdSihwSo4RV/YdQ5UCKKvBy7/0ZZYLBZKIbwQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.5.tgz", + "integrity": "sha512-7A208+uQKgTxHd0G0uqZO8UjK2R0DDb4fDmERtARjSHWxqMTye4Erz4zZafx7Di9Cv+lNHYuncAkiGFySoD+Mw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.25.5.tgz", + "integrity": "sha512-G4hE405ErTWraiZ8UiSoesH8DaCsMm0Cay4fsFWOOUcz8b8rC6uCvnagr+gnioEjWn0wC+o1/TAHt+It+MpIMg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.25.5.tgz", + "integrity": "sha512-l+azKShMy7FxzY0Rj4RCt5VD/q8mG/e+mDivgspo+yL8zW7qEwctQ6YqKX34DTEleFAvCIUviCFX1SDZRSyMQA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.25.5.tgz", + "integrity": "sha512-O2S7SNZzdcFG7eFKgvwUEZ2VG9D/sn/eIiz8XRZ1Q/DO5a3s76Xv0mdBzVM5j5R639lXQmPmSo0iRpHqUUrsxw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.25.5.tgz", + "integrity": "sha512-onOJ02pqs9h1iMJ1PQphR+VZv8qBMQ77Klcsqv9CNW2w6yLqoURLcgERAIurY6QE63bbLuqgP9ATqajFLK5AMQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.25.5.tgz", + "integrity": "sha512-TXv6YnJ8ZMVdX+SXWVBo/0p8LTcrUYngpWjvm91TMjjBQii7Oz11Lw5lbDV5Y0TzuhSJHwiH4hEtC1I42mMS0g==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=18" + } + }, "node_modules/@eslint-community/eslint-utils": { "version": "4.4.0", "dev": true, @@ -6029,10 +6437,220 @@ } } }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.41.1.tgz", + "integrity": "sha512-NELNvyEWZ6R9QMkiytB4/L4zSEaBC03KIXEghptLGLZWJ6VPrL63ooZQCOnlx36aQPGhzuOMwDerC1Eb2VmrLw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.41.1.tgz", + "integrity": "sha512-DXdQe1BJ6TK47ukAoZLehRHhfKnKg9BjnQYUu9gzhI8Mwa1d2fzxA1aw2JixHVl403bwp1+/o/NhhHtxWJBgEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.41.1.tgz", + "integrity": "sha512-5afxvwszzdulsU2w8JKWwY8/sJOLPzf0e1bFuvcW5h9zsEg+RQAojdW0ux2zyYAz7R8HvvzKCjLNJhVq965U7w==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.41.1.tgz", + "integrity": "sha512-egpJACny8QOdHNNMZKf8xY0Is6gIMz+tuqXlusxquWu3F833DcMwmGM7WlvCO9sB3OsPjdC4U0wHw5FabzCGZg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.41.1.tgz", + "integrity": "sha512-DBVMZH5vbjgRk3r0OzgjS38z+atlupJ7xfKIDJdZZL6sM6wjfDNo64aowcLPKIx7LMQi8vybB56uh1Ftck/Atg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.41.1.tgz", + "integrity": "sha512-3FkydeohozEskBxNWEIbPfOE0aqQgB6ttTkJ159uWOFn42VLyfAiyD9UK5mhu+ItWzft60DycIN1Xdgiy8o/SA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.41.1.tgz", + "integrity": "sha512-wC53ZNDgt0pqx5xCAgNunkTzFE8GTgdZ9EwYGVcg+jEjJdZGtq9xPjDnFgfFozQI/Xm1mh+D9YlYtl+ueswNEg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.41.1.tgz", + "integrity": "sha512-jwKCca1gbZkZLhLRtsrka5N8sFAaxrGz/7wRJ8Wwvq3jug7toO21vWlViihG85ei7uJTpzbXZRcORotE+xyrLA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.41.1.tgz", + "integrity": "sha512-g0UBcNknsmmNQ8V2d/zD2P7WWfJKU0F1nu0k5pW4rvdb+BIqMm8ToluW/eeRmxCared5dD76lS04uL4UaNgpNA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.41.1.tgz", + "integrity": "sha512-XZpeGB5TKEZWzIrj7sXr+BEaSgo/ma/kCgrZgL0oo5qdB1JlTzIYQKel/RmhT6vMAvOdM2teYlAaOGJpJ9lahg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.41.1.tgz", + "integrity": "sha512-bkCfDJ4qzWfFRCNt5RVV4DOw6KEgFTUZi2r2RuYhGWC8WhCA8lCAJhDeAmrM/fdiAH54m0mA0Vk2FGRPyzI+tw==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.41.1.tgz", + "integrity": "sha512-3mr3Xm+gvMX+/8EKogIZSIEF0WUu0HL9di+YWlJpO8CQBnoLAEL/roTCxuLncEdgcfJcvA4UMOf+2dnjl4Ut1A==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.41.1.tgz", + "integrity": "sha512-3rwCIh6MQ1LGrvKJitQjZFuQnT2wxfU+ivhNBzmxXTXPllewOF7JR1s2vMX/tWtUYFgphygxjqMl76q4aMotGw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.41.1.tgz", + "integrity": "sha512-LdIUOb3gvfmpkgFZuccNa2uYiqtgZAz3PTzjuM5bH3nvuy9ty6RGc/Q0+HDFrHrizJGVpjnTZ1yS5TNNjFlklw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.41.1.tgz", + "integrity": "sha512-oIE6M8WC9ma6xYqjvPhzZYk6NbobIURvP/lEbh7FWplcMO6gn7MM2yHKA1eC/GvYwzNKK/1LYgqzdkZ8YFxR8g==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, "node_modules/@rollup/rollup-linux-x64-gnu": { - "version": "4.34.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.4.tgz", - "integrity": "sha512-JGejzEfVzqc/XNiCKZj14eb6s5w8DdWlnQ5tWUbs99kkdvfq9btxxVX97AaxiUX7xJTKFA0LwoS0KU8C2faZRg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.41.1.tgz", + "integrity": "sha512-cWBOvayNvA+SyeQMp79BHPK8ws6sHSsYnK5zDcsC3Hsxr1dgTABKjMnMslPq1DvZIp6uO7kIWhiGwaTdR4Og9A==", "cpu": [ "x64" ], @@ -6044,9 +6662,9 @@ ] }, "node_modules/@rollup/rollup-linux-x64-musl": { - "version": "4.34.4", - "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.34.4.tgz", - "integrity": "sha512-/iFIbhzeyZZy49ozAWJ1ZR2KW6ZdYUbQXLT4O5n1cRZRoTpwExnHLjlurDXXPKEGxiAg0ujaR9JDYKljpr2fDg==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.41.1.tgz", + "integrity": "sha512-y5CbN44M+pUCdGDlZFzGGBSKCA4A/J2ZH4edTYSSxFg7ce1Xt3GtydbVKWLlzL+INfFIZAEg1ZV6hh9+QQf9YQ==", "cpu": [ "x64" ], @@ -6057,6 +6675,48 @@ "linux" ] }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.41.1.tgz", + "integrity": "sha512-lZkCxIrjlJlMt1dLO/FbpZbzt6J/A8p4DnqzSa4PWqPEUUUnzXLeki/iyPLfV0BmHItlYgHUqJe+3KiyydmiNQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.41.1.tgz", + "integrity": "sha512-+psFT9+pIh2iuGsxFYYa/LhS5MFKmuivRsx9iPJWNSGbh2XVEjk90fmpUEjCnILPEPJnikAU6SFDiEUyOv90Pg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.41.1.tgz", + "integrity": "sha512-Wq2zpapRYLfi4aKxf2Xff0tN+7slj2d4R87WEzqw7ZLsVvO5zwYCIuEGSZYiK41+GlwUo1HiR+GdkLEJnCKTCw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, "node_modules/@rubensworks/saxes": { "version": "6.0.1", "license": "ISC", @@ -10662,9 +11322,9 @@ } }, "node_modules/@types/chai": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.0.1.tgz", - "integrity": "sha512-5T8ajsg3M/FOncpLYW7sdOcD6yf4+722sze/tc4KQV0P8Z2rAr3SAuHCIkYmYpt8VbcQlnz8SxlOlPQYefe4cA==", + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/@types/chai/-/chai-5.2.2.tgz", + "integrity": "sha512-8kB30R7Hwqf40JPiKhVzodJs2Qc1ZJ5zuT3uzw5Hq/dhNCl3G3l83jfpdI1e20BP348+fV7VIL/+FxaXkqBmWg==", "dev": true, "license": "MIT", "dependencies": { @@ -11286,15 +11946,16 @@ } }, "node_modules/@vitest/expect": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.0.5.tgz", - "integrity": "sha512-nNIOqupgZ4v5jWuQx2DSlHLEs7Q4Oh/7AYwNyE+k0UQzG7tSmjPXShUikn1mpNGzYEN2jJbTvLejwShMitovBA==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@vitest/expect/-/expect-3.2.1.tgz", + "integrity": "sha512-FqS/BnDOzV6+IpxrTg5GQRyLOCtcJqkwMwcS8qGCI2IyRVDwPAtutztaf1CjtPHlZlWtl1yUPCd7HM0cNiDOYw==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/spy": "3.0.5", - "@vitest/utils": "3.0.5", - "chai": "^5.1.2", + "@types/chai": "^5.2.2", + "@vitest/spy": "3.2.1", + "@vitest/utils": "3.2.1", + "chai": "^5.2.0", "tinyrainbow": "^2.0.0" }, "funding": { @@ -11302,9 +11963,9 @@ } }, "node_modules/@vitest/pretty-format": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.0.5.tgz", - "integrity": "sha512-CjUtdmpOcm4RVtB+up8r2vVDLR16Mgm/bYdkGFe3Yj/scRfCpbSi2W/BDSDcFK7ohw8UXvjMbOp9H4fByd/cOA==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@vitest/pretty-format/-/pretty-format-3.2.1.tgz", + "integrity": "sha512-xBh1X2GPlOGBupp6E1RcUQWIxw0w/hRLd3XyBS6H+dMdKTAqHDNsIR2AnJwPA3yYe9DFy3VUKTe3VRTrAiQ01g==", "dev": true, "license": "MIT", "dependencies": { @@ -11315,29 +11976,29 @@ } }, "node_modules/@vitest/runner": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.0.5.tgz", - "integrity": "sha512-BAiZFityFexZQi2yN4OX3OkJC6scwRo8EhRB0Z5HIGGgd2q+Nq29LgHU/+ovCtd0fOfXj5ZI6pwdlUmC5bpi8A==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@vitest/runner/-/runner-3.2.1.tgz", + "integrity": "sha512-kygXhNTu/wkMYbwYpS3z/9tBe0O8qpdBuC3dD/AW9sWa0LE/DAZEjnHtWA9sIad7lpD4nFW1yQ+zN7mEKNH3yA==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/utils": "3.0.5", - "pathe": "^2.0.2" + "@vitest/utils": "3.2.1", + "pathe": "^2.0.3" }, "funding": { "url": "https://opencollective.com/vitest" } }, "node_modules/@vitest/snapshot": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.0.5.tgz", - "integrity": "sha512-GJPZYcd7v8QNUJ7vRvLDmRwl+a1fGg4T/54lZXe+UOGy47F9yUfE18hRCtXL5aHN/AONu29NGzIXSVFh9K0feA==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@vitest/snapshot/-/snapshot-3.2.1.tgz", + "integrity": "sha512-5xko/ZpW2Yc65NVK9Gpfg2y4BFvcF+At7yRT5AHUpTg9JvZ4xZoyuRY4ASlmNcBZjMslV08VRLDrBOmUe2YX3g==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/pretty-format": "3.0.5", + "@vitest/pretty-format": "3.2.1", "magic-string": "^0.30.17", - "pathe": "^2.0.2" + "pathe": "^2.0.3" }, "funding": { "url": "https://opencollective.com/vitest" @@ -11354,27 +12015,27 @@ } }, "node_modules/@vitest/spy": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.0.5.tgz", - "integrity": "sha512-5fOzHj0WbUNqPK6blI/8VzZdkBlQLnT25knX0r4dbZI9qoZDf3qAdjoMmDcLG5A83W6oUUFJgUd0EYBc2P5xqg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@vitest/spy/-/spy-3.2.1.tgz", + "integrity": "sha512-Nbfib34Z2rfcJGSetMxjDCznn4pCYPZOtQYox2kzebIJcgH75yheIKd5QYSFmR8DIZf2M8fwOm66qSDIfRFFfQ==", "dev": true, "license": "MIT", "dependencies": { - "tinyspy": "^3.0.2" + "tinyspy": "^4.0.3" }, "funding": { "url": "https://opencollective.com/vitest" } }, "node_modules/@vitest/utils": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.0.5.tgz", - "integrity": "sha512-N9AX0NUoUtVwKwy21JtwzaqR5L5R5A99GAbrHfCCXK1lp593i/3AZAXhSP43wRQuxYsflrdzEfXZFo1reR1Nkg==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@vitest/utils/-/utils-3.2.1.tgz", + "integrity": "sha512-KkHlGhePEKZSub5ViknBcN5KEF+u7dSUr9NW8QsVICusUojrgrOnnY3DEWWO877ax2Pyopuk2qHmt+gkNKnBVw==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/pretty-format": "3.0.5", - "loupe": "^3.1.2", + "@vitest/pretty-format": "3.2.1", + "loupe": "^3.1.3", "tinyrainbow": "^2.0.0" }, "funding": { @@ -12169,9 +12830,9 @@ "license": "Apache-2.0" }, "node_modules/chai": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/chai/-/chai-5.1.2.tgz", - "integrity": "sha512-aGtmf24DW6MLHHG5gCx4zaI3uBq3KRtxeVs0DjFH6Z0rDNbsvTxFASFvdj79pxjxZ8/5u3PIiN3IwEIQkiiuPw==", + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chai/-/chai-5.2.0.tgz", + "integrity": "sha512-mCuXncKXk5iCLhfhwTc0izo0gtEmpz5CtG2y8GiOINBlMVS6v8TMRc5TaLWKS6692m9+dVVfzgeVxR5UxWHTYw==", "dev": true, "license": "MIT", "dependencies": { @@ -13688,9 +14349,9 @@ } }, "node_modules/es-module-lexer": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", - "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.7.0.tgz", + "integrity": "sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==", "dev": true, "license": "MIT" }, @@ -13752,6 +14413,363 @@ "@esbuild/win32-x64": "0.18.20" } }, + "node_modules/esbuild/node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/escalade": { "version": "3.1.1", "license": "MIT", @@ -14221,9 +15239,9 @@ } }, "node_modules/expect-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.1.0.tgz", - "integrity": "sha512-bFi65yM+xZgk+u/KRIpekdSYkTB5W1pEf0Lt8Q8Msh7b+eQ7LXVtIB1Bkm4fvclDEL1b2CZkMhv2mOeF8tMdkA==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/expect-type/-/expect-type-1.2.1.tgz", + "integrity": "sha512-/kP8CAwxzLVEeFrMm4kMmy4CCDlpipyA7MYLVrdJIkV0fYF0UaigQHRsxHiuY/GEea+bh4KSv3TIlgr+2UL6bw==", "dev": true, "license": "Apache-2.0", "engines": { @@ -14788,6 +15806,20 @@ "version": "1.0.0", "license": "ISC" }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", @@ -22127,9 +23159,9 @@ } }, "node_modules/pathe": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.2.tgz", - "integrity": "sha512-15Ztpk+nov8DR524R4BF7uEuzESgzUEAV4Ah7CUMNGXdE5ELuvxElxGXndBl32vMSsWa1jpNf22Z+Er3sKwq+w==", + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-2.0.3.tgz", + "integrity": "sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==", "dev": true, "license": "MIT" }, @@ -22373,9 +23405,9 @@ "integrity": "sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==" }, "node_modules/postcss": { - "version": "8.5.1", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz", - "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.4.tgz", + "integrity": "sha512-QSa9EBe+uwlGTFmHsPKokv3B/oEMQZxfqW0QqNCyhpa6mB1afzulwn8hihglqAb2pOw+BJgNlmXQ8la2VeHB7w==", "funding": [ { "type": "opencollective", @@ -22390,8 +23422,9 @@ "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "dependencies": { - "nanoid": "^3.3.8", + "nanoid": "^3.3.11", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, @@ -22539,15 +23572,16 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" }, "node_modules/postcss/node_modules/nanoid": { - "version": "3.3.8", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", - "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", + "version": "3.3.11", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.11.tgz", + "integrity": "sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/ai" } ], + "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -24913,10 +25947,11 @@ "license": "MIT" }, "node_modules/std-env": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.8.0.tgz", - "integrity": "sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==", - "dev": true + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.9.0.tgz", + "integrity": "sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==", + "dev": true, + "license": "MIT" }, "node_modules/stream-buffers": { "version": "2.2.0", @@ -25768,10 +26803,55 @@ "dev": true, "license": "MIT" }, + "node_modules/tinyglobby": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/tinyglobby/-/tinyglobby-0.2.14.tgz", + "integrity": "sha512-tX5e7OM1HnYr2+a2C/4V0htOcSQcoSTH9KgJnVvNm5zm/cyEWKJ7j7YutsH9CxMdtOkkLFy2AHrMci9IM8IPZQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "fdir": "^6.4.4", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=12.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/SuperchupuDev" + } + }, + "node_modules/tinyglobby/node_modules/fdir": { + "version": "6.4.5", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.5.tgz", + "integrity": "sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, + "node_modules/tinyglobby/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, "node_modules/tinypool": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.0.2.tgz", - "integrity": "sha512-al6n+QEANGFOMf/dmUMsuS5/r9B06uwlyNjZZql/zv8J7ybHCgoihBNORZCY2mzUuAnomQa2JdhyHKzZxPCrFA==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/tinypool/-/tinypool-1.1.0.tgz", + "integrity": "sha512-7CotroY9a8DKsKprEy/a14aCCm8jYVmR7aFy4fpkZM8sdpNJbKkixuNjgM50yCmip2ezc8z4N7k3oe2+rfRJCQ==", "dev": true, "license": "MIT", "engines": { @@ -25794,9 +26874,9 @@ } }, "node_modules/tinyspy": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-3.0.2.tgz", - "integrity": "sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==", + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/tinyspy/-/tinyspy-4.0.3.tgz", + "integrity": "sha512-t2T/WLB2WRgZ9EpE4jgPJ9w+i66UZfDc8wHh0xrwiRNN+UwH98GIJkTeZqX9rg0i0ptwzqW+uYeIF0T4F8LR7A==", "dev": true, "license": "MIT", "engines": { @@ -26894,17 +27974,17 @@ } }, "node_modules/vite-node": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.0.5.tgz", - "integrity": "sha512-02JEJl7SbtwSDJdYS537nU6l+ktdvcREfLksk/NDAqtdKWGqHl+joXzEubHROmS3E6pip+Xgu2tFezMu75jH7A==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-3.2.1.tgz", + "integrity": "sha512-V4EyKQPxquurNJPtQJRZo8hKOoKNBRIhxcDbQFPFig0JdoWcUhwRgK8yoCXXrfYVPKS6XwirGHPszLnR8FbjCA==", "dev": true, "license": "MIT", "dependencies": { "cac": "^6.7.14", - "debug": "^4.4.0", - "es-module-lexer": "^1.6.0", - "pathe": "^2.0.2", - "vite": "^5.0.0 || ^6.0.0" + "debug": "^4.4.1", + "es-module-lexer": "^1.7.0", + "pathe": "^2.0.3", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" }, "bin": { "vite-node": "vite-node.mjs" @@ -26916,6 +27996,278 @@ "url": "https://opencollective.com/vitest" } }, + "node_modules/vite-node/node_modules/@esbuild/aix-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.21.5.tgz", + "integrity": "sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "aix" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.21.5.tgz", + "integrity": "sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.21.5.tgz", + "integrity": "sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/android-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.21.5.tgz", + "integrity": "sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/darwin-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.21.5.tgz", + "integrity": "sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/darwin-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.21.5.tgz", + "integrity": "sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/freebsd-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.21.5.tgz", + "integrity": "sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/freebsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.21.5.tgz", + "integrity": "sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-arm": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.21.5.tgz", + "integrity": "sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.21.5.tgz", + "integrity": "sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.21.5.tgz", + "integrity": "sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-loong64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.21.5.tgz", + "integrity": "sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-mips64el": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.21.5.tgz", + "integrity": "sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-ppc64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.21.5.tgz", + "integrity": "sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-riscv64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.21.5.tgz", + "integrity": "sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/linux-s390x": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.21.5.tgz", + "integrity": "sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, "node_modules/vite-node/node_modules/@esbuild/linux-x64": { "version": "0.21.5", "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz", @@ -26933,6 +28285,304 @@ "node": ">=12" } }, + "node_modules/vite-node/node_modules/@esbuild/netbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.21.5.tgz", + "integrity": "sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/openbsd-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.21.5.tgz", + "integrity": "sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/sunos-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.21.5.tgz", + "integrity": "sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-arm64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.21.5.tgz", + "integrity": "sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-ia32": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.21.5.tgz", + "integrity": "sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@esbuild/win32-x64": { + "version": "0.21.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.21.5.tgz", + "integrity": "sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite-node/node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.34.6.tgz", + "integrity": "sha512-+GcCXtOQoWuC7hhX1P00LqjjIiS/iOouHXhMdiDSnq/1DGTox4SpUvO52Xm+div6+106r+TcvOeo/cxvyEyTgg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-android-arm64": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.34.6.tgz", + "integrity": "sha512-E8+2qCIjciYUnCa1AiVF1BkRgqIGW9KzJeesQqVfyRITGQN+dFuoivO0hnro1DjT74wXLRZ7QF8MIbz+luGaJA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.34.6.tgz", + "integrity": "sha512-z9Ib+OzqN3DZEjX7PDQMHEhtF+t6Mi2z/ueChQPLS/qUMKY7Ybn5A2ggFoKRNRh1q1T03YTQfBTQCJZiepESAg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-darwin-x64": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.34.6.tgz", + "integrity": "sha512-PShKVY4u0FDAR7jskyFIYVyHEPCPnIQY8s5OcXkdU8mz3Y7eXDJPdyM/ZWjkYdR2m0izD9HHWA8sGcXn+Qrsyg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.34.6.tgz", + "integrity": "sha512-YSwyOqlDAdKqs0iKuqvRHLN4SrD2TiswfoLfvYXseKbL47ht1grQpq46MSiQAx6rQEN8o8URtpXARCpqabqxGQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.34.6.tgz", + "integrity": "sha512-HEP4CgPAY1RxXwwL5sPFv6BBM3tVeLnshF03HMhJYCNc6kvSqBgTMmsEjb72RkZBAWIqiPUyF1JpEBv5XT9wKQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.34.6.tgz", + "integrity": "sha512-88fSzjC5xeH9S2Vg3rPgXJULkHcLYMkh8faix8DX4h4TIAL65ekwuQMA/g2CXq8W+NJC43V6fUpYZNjaX3+IIg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.34.6.tgz", + "integrity": "sha512-wM4ztnutBqYFyvNeR7Av+reWI/enK9tDOTKNF+6Kk2Q96k9bwhDDOlnCUNRPvromlVXo04riSliMBs/Z7RteEg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.34.6.tgz", + "integrity": "sha512-9RyprECbRa9zEjXLtvvshhw4CMrRa3K+0wcp3KME0zmBe1ILmvcVHnypZ/aIDXpRyfhSYSuN4EPdCCj5Du8FIA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.34.6.tgz", + "integrity": "sha512-qTmklhCTyaJSB05S+iSovfo++EwnIEZxHkzv5dep4qoszUMX5Ca4WM4zAVUMbfdviLgCSQOu5oU8YoGk1s6M9Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-linux-loongarch64-gnu": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.34.6.tgz", + "integrity": "sha512-4Qmkaps9yqmpjY5pvpkfOerYgKNUGzQpFxV6rnS7c/JfYbDSU0y6WpbbredB5cCpLFGJEqYX40WUmxMkwhWCjw==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-linux-powerpc64le-gnu": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.34.6.tgz", + "integrity": "sha512-Zsrtux3PuaxuBTX/zHdLaFmcofWGzaWW1scwLU3ZbW/X+hSsFbz9wDIp6XvnT7pzYRl9MezWqEqKy7ssmDEnuQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.34.6.tgz", + "integrity": "sha512-aK+Zp+CRM55iPrlyKiU3/zyhgzWBxLVrw2mwiQSYJRobCURb781+XstzvA8Gkjg/hbdQFuDw44aUOxVQFycrAg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.34.6.tgz", + "integrity": "sha512-WoKLVrY9ogmaYPXwTH326+ErlCIgMmsoRSx6bO+l68YgJnlOXhygDYSZe/qbUJCSiCiZAQ+tKm88NcWuUXqOzw==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, "node_modules/vite-node/node_modules/@rollup/rollup-linux-x64-gnu": { "version": "4.34.6", "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.34.6.tgz", @@ -26961,11 +28611,54 @@ "linux" ] }, - "node_modules/vite-node/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "node_modules/vite-node/node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.34.6.tgz", + "integrity": "sha512-3/q1qUsO/tLqGBaD4uXsB6coVGB3usxw3qyeVb59aArCgedSF66MPdgRStUd7vbZOsko/CgVaY5fo2vkvPLWiA==", + "cpu": [ + "arm64" + ], "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.34.6.tgz", + "integrity": "sha512-oLHxuyywc6efdKVTxvc0135zPrRdtYVjtVD5GUm55I3ODxhU/PwkQFD97z16Xzxa1Fz0AEe4W/2hzRtd+IfpOA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/vite-node/node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.34.6", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.34.6.tgz", + "integrity": "sha512-0PVwmgzZ8+TZ9oGBmdZoQVXflbvuwzN/HRclujpl4N/q3i+y0lqLw8n1bXA8ru3sApDjlmONaNAuYr38y1Kr9w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/vite-node/node_modules/debug": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", + "dev": true, + "license": "MIT", "dependencies": { "ms": "^2.1.3" }, @@ -27021,7 +28714,8 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "dev": true, + "license": "MIT" }, "node_modules/vite-node/node_modules/rollup": { "version": "4.34.6", @@ -27136,31 +28830,34 @@ } }, "node_modules/vitest": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.0.5.tgz", - "integrity": "sha512-4dof+HvqONw9bvsYxtkfUp2uHsTN9bV2CZIi1pWgoFpL1Lld8LA1ka9q/ONSsoScAKG7NVGf2stJTI7XRkXb2Q==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/vitest/-/vitest-3.2.1.tgz", + "integrity": "sha512-VZ40MBnlE1/V5uTgdqY3DmjUgZtIzsYq758JGlyQrv5syIsaYcabkfPkEuWML49Ph0D/SoqpVFd0dyVTr551oA==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/expect": "3.0.5", - "@vitest/mocker": "3.0.5", - "@vitest/pretty-format": "^3.0.5", - "@vitest/runner": "3.0.5", - "@vitest/snapshot": "3.0.5", - "@vitest/spy": "3.0.5", - "@vitest/utils": "3.0.5", - "chai": "^5.1.2", - "debug": "^4.4.0", - "expect-type": "^1.1.0", + "@types/chai": "^5.2.2", + "@vitest/expect": "3.2.1", + "@vitest/mocker": "3.2.1", + "@vitest/pretty-format": "^3.2.1", + "@vitest/runner": "3.2.1", + "@vitest/snapshot": "3.2.1", + "@vitest/spy": "3.2.1", + "@vitest/utils": "3.2.1", + "chai": "^5.2.0", + "debug": "^4.4.1", + "expect-type": "^1.2.1", "magic-string": "^0.30.17", - "pathe": "^2.0.2", - "std-env": "^3.8.0", + "pathe": "^2.0.3", + "picomatch": "^4.0.2", + "std-env": "^3.9.0", "tinybench": "^2.9.0", "tinyexec": "^0.3.2", - "tinypool": "^1.0.2", + "tinyglobby": "^0.2.14", + "tinypool": "^1.1.0", "tinyrainbow": "^2.0.0", - "vite": "^5.0.0 || ^6.0.0", - "vite-node": "3.0.5", + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0", + "vite-node": "3.2.1", "why-is-node-running": "^2.3.0" }, "bin": { @@ -27176,8 +28873,8 @@ "@edge-runtime/vm": "*", "@types/debug": "^4.1.12", "@types/node": "^18.0.0 || ^20.0.0 || >=22.0.0", - "@vitest/browser": "3.0.5", - "@vitest/ui": "3.0.5", + "@vitest/browser": "3.2.1", + "@vitest/ui": "3.2.1", "happy-dom": "*", "jsdom": "*" }, @@ -27206,9 +28903,9 @@ } }, "node_modules/vitest/node_modules/@esbuild/linux-x64": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.24.2.tgz", - "integrity": "sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.25.5.tgz", + "integrity": "sha512-uhj8N2obKTE6pSZ+aMUbqq+1nXxNjZIIjCjGLfsWvVpy7gKCOL6rsY1MhRh9zLtUtAI7vpgLMK6DxjO8Qm9lJw==", "cpu": [ "x64" ], @@ -27222,14 +28919,21 @@ "node": ">=18" } }, + "node_modules/vitest/node_modules/@types/estree": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.7.tgz", + "integrity": "sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==", + "dev": true, + "license": "MIT" + }, "node_modules/vitest/node_modules/@vitest/mocker": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.0.5.tgz", - "integrity": "sha512-CLPNBFBIE7x6aEGbIjaQAX03ZZlBMaWwAjBdMkIf/cAn6xzLTiM3zYqO/WAbieEjsAZir6tO71mzeHZoodThvw==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@vitest/mocker/-/mocker-3.2.1.tgz", + "integrity": "sha512-OXxMJnx1lkB+Vl65Re5BrsZEHc90s5NMjD23ZQ9NlU7f7nZiETGoX4NeKZSmsKjseuMq2uOYXdLOeoM0pJU+qw==", "dev": true, "license": "MIT", "dependencies": { - "@vitest/spy": "3.0.5", + "@vitest/spy": "3.2.1", "estree-walker": "^3.0.3", "magic-string": "^0.30.17" }, @@ -27238,7 +28942,7 @@ }, "peerDependencies": { "msw": "^2.4.9", - "vite": "^5.0.0 || ^6.0.0" + "vite": "^5.0.0 || ^6.0.0 || ^7.0.0-0" }, "peerDependenciesMeta": { "msw": { @@ -27250,10 +28954,11 @@ } }, "node_modules/vitest/node_modules/debug": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", - "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz", + "integrity": "sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==", "dev": true, + "license": "MIT", "dependencies": { "ms": "^2.1.3" }, @@ -27267,9 +28972,9 @@ } }, "node_modules/vitest/node_modules/esbuild": { - "version": "0.24.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.24.2.tgz", - "integrity": "sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==", + "version": "0.25.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.25.5.tgz", + "integrity": "sha512-P8OtKZRv/5J5hhz0cUAdu/cLuPIKXpQl1R9pZtvmHWQvrAUVd0UNIPT4IB4W3rNOqVO0rlqHmCIbSwxh/c9yUQ==", "dev": true, "hasInstallScript": true, "license": "MIT", @@ -27280,31 +28985,31 @@ "node": ">=18" }, "optionalDependencies": { - "@esbuild/aix-ppc64": "0.24.2", - "@esbuild/android-arm": "0.24.2", - "@esbuild/android-arm64": "0.24.2", - "@esbuild/android-x64": "0.24.2", - "@esbuild/darwin-arm64": "0.24.2", - "@esbuild/darwin-x64": "0.24.2", - "@esbuild/freebsd-arm64": "0.24.2", - "@esbuild/freebsd-x64": "0.24.2", - "@esbuild/linux-arm": "0.24.2", - "@esbuild/linux-arm64": "0.24.2", - "@esbuild/linux-ia32": "0.24.2", - "@esbuild/linux-loong64": "0.24.2", - "@esbuild/linux-mips64el": "0.24.2", - "@esbuild/linux-ppc64": "0.24.2", - "@esbuild/linux-riscv64": "0.24.2", - "@esbuild/linux-s390x": "0.24.2", - "@esbuild/linux-x64": "0.24.2", - "@esbuild/netbsd-arm64": "0.24.2", - "@esbuild/netbsd-x64": "0.24.2", - "@esbuild/openbsd-arm64": "0.24.2", - "@esbuild/openbsd-x64": "0.24.2", - "@esbuild/sunos-x64": "0.24.2", - "@esbuild/win32-arm64": "0.24.2", - "@esbuild/win32-ia32": "0.24.2", - "@esbuild/win32-x64": "0.24.2" + "@esbuild/aix-ppc64": "0.25.5", + "@esbuild/android-arm": "0.25.5", + "@esbuild/android-arm64": "0.25.5", + "@esbuild/android-x64": "0.25.5", + "@esbuild/darwin-arm64": "0.25.5", + "@esbuild/darwin-x64": "0.25.5", + "@esbuild/freebsd-arm64": "0.25.5", + "@esbuild/freebsd-x64": "0.25.5", + "@esbuild/linux-arm": "0.25.5", + "@esbuild/linux-arm64": "0.25.5", + "@esbuild/linux-ia32": "0.25.5", + "@esbuild/linux-loong64": "0.25.5", + "@esbuild/linux-mips64el": "0.25.5", + "@esbuild/linux-ppc64": "0.25.5", + "@esbuild/linux-riscv64": "0.25.5", + "@esbuild/linux-s390x": "0.25.5", + "@esbuild/linux-x64": "0.25.5", + "@esbuild/netbsd-arm64": "0.25.5", + "@esbuild/netbsd-x64": "0.25.5", + "@esbuild/openbsd-arm64": "0.25.5", + "@esbuild/openbsd-x64": "0.25.5", + "@esbuild/sunos-x64": "0.25.5", + "@esbuild/win32-arm64": "0.25.5", + "@esbuild/win32-ia32": "0.25.5", + "@esbuild/win32-x64": "0.25.5" } }, "node_modules/vitest/node_modules/estree-walker": { @@ -27317,6 +29022,21 @@ "@types/estree": "^1.0.0" } }, + "node_modules/vitest/node_modules/fdir": { + "version": "6.4.5", + "resolved": "https://registry.npmjs.org/fdir/-/fdir-6.4.5.tgz", + "integrity": "sha512-4BG7puHpVsIYxZUbiUE3RqGloLaSSwzYie5jvasC4LWuBWzZawynvYouhjbQKw2JuIGYdm0DzIxl8iVidKlUEw==", + "dev": true, + "license": "MIT", + "peerDependencies": { + "picomatch": "^3 || ^4" + }, + "peerDependenciesMeta": { + "picomatch": { + "optional": true + } + } + }, "node_modules/vitest/node_modules/magic-string": { "version": "0.30.17", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.17.tgz", @@ -27331,16 +29051,30 @@ "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", - "dev": true + "dev": true, + "license": "MIT" + }, + "node_modules/vitest/node_modules/picomatch": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.2.tgz", + "integrity": "sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } }, "node_modules/vitest/node_modules/rollup": { - "version": "4.34.4", - "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.34.4.tgz", - "integrity": "sha512-spF66xoyD7rz3o08sHP7wogp1gZ6itSq22SGa/IZTcUDXDlOyrShwMwkVSB+BUxFRZZCUYqdb3KWDEOMVQZxuw==", + "version": "4.41.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.41.1.tgz", + "integrity": "sha512-cPmwD3FnFv8rKMBc1MxWCwVQFxwf1JEmSX3iQXrRVVG15zerAIXRjMFVWnd5Q5QvgKF7Aj+5ykXFhUl+QGnyOw==", "dev": true, "license": "MIT", "dependencies": { - "@types/estree": "1.0.6" + "@types/estree": "1.0.7" }, "bin": { "rollup": "dist/bin/rollup" @@ -27350,38 +29084,42 @@ "npm": ">=8.0.0" }, "optionalDependencies": { - "@rollup/rollup-android-arm-eabi": "4.34.4", - "@rollup/rollup-android-arm64": "4.34.4", - "@rollup/rollup-darwin-arm64": "4.34.4", - "@rollup/rollup-darwin-x64": "4.34.4", - "@rollup/rollup-freebsd-arm64": "4.34.4", - "@rollup/rollup-freebsd-x64": "4.34.4", - "@rollup/rollup-linux-arm-gnueabihf": "4.34.4", - "@rollup/rollup-linux-arm-musleabihf": "4.34.4", - "@rollup/rollup-linux-arm64-gnu": "4.34.4", - "@rollup/rollup-linux-arm64-musl": "4.34.4", - "@rollup/rollup-linux-loongarch64-gnu": "4.34.4", - "@rollup/rollup-linux-powerpc64le-gnu": "4.34.4", - "@rollup/rollup-linux-riscv64-gnu": "4.34.4", - "@rollup/rollup-linux-s390x-gnu": "4.34.4", - "@rollup/rollup-linux-x64-gnu": "4.34.4", - "@rollup/rollup-linux-x64-musl": "4.34.4", - "@rollup/rollup-win32-arm64-msvc": "4.34.4", - "@rollup/rollup-win32-ia32-msvc": "4.34.4", - "@rollup/rollup-win32-x64-msvc": "4.34.4", + "@rollup/rollup-android-arm-eabi": "4.41.1", + "@rollup/rollup-android-arm64": "4.41.1", + "@rollup/rollup-darwin-arm64": "4.41.1", + "@rollup/rollup-darwin-x64": "4.41.1", + "@rollup/rollup-freebsd-arm64": "4.41.1", + "@rollup/rollup-freebsd-x64": "4.41.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.41.1", + "@rollup/rollup-linux-arm-musleabihf": "4.41.1", + "@rollup/rollup-linux-arm64-gnu": "4.41.1", + "@rollup/rollup-linux-arm64-musl": "4.41.1", + "@rollup/rollup-linux-loongarch64-gnu": "4.41.1", + "@rollup/rollup-linux-powerpc64le-gnu": "4.41.1", + "@rollup/rollup-linux-riscv64-gnu": "4.41.1", + "@rollup/rollup-linux-riscv64-musl": "4.41.1", + "@rollup/rollup-linux-s390x-gnu": "4.41.1", + "@rollup/rollup-linux-x64-gnu": "4.41.1", + "@rollup/rollup-linux-x64-musl": "4.41.1", + "@rollup/rollup-win32-arm64-msvc": "4.41.1", + "@rollup/rollup-win32-ia32-msvc": "4.41.1", + "@rollup/rollup-win32-x64-msvc": "4.41.1", "fsevents": "~2.3.2" } }, "node_modules/vitest/node_modules/vite": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/vite/-/vite-6.1.0.tgz", - "integrity": "sha512-RjjMipCKVoR4hVfPY6GQTgveinjNuyLw+qruksLDvA5ktI1150VmcMBKmQaEWJhg/j6Uaf6dNCNA0AfdzUb/hQ==", + "version": "6.3.5", + "resolved": "https://registry.npmjs.org/vite/-/vite-6.3.5.tgz", + "integrity": "sha512-cZn6NDFE7wdTpINgs++ZJ4N49W2vRp8LCKrn3Ob1kYNtOo21vfDoaV5GzBfLU4MovSAB8uNRm4jgzVQZ+mBzPQ==", "dev": true, "license": "MIT", "dependencies": { - "esbuild": "^0.24.2", - "postcss": "^8.5.1", - "rollup": "^4.30.1" + "esbuild": "^0.25.0", + "fdir": "^6.4.4", + "picomatch": "^4.0.2", + "postcss": "^8.5.3", + "rollup": "^4.34.9", + "tinyglobby": "^0.2.13" }, "bin": { "vite": "bin/vite.js" @@ -27445,9 +29183,9 @@ } }, "node_modules/vitest/node_modules/yaml": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", - "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.8.0.tgz", + "integrity": "sha512-4lLa/EcQCB0cJkyts+FpIRx5G/llPxfP6VQU5KByHEhLxY3IJCH0f0Hy1MHI8sClTvsIb8qwRJ6R/ZdlDJ/leQ==", "dev": true, "license": "ISC", "optional": true, @@ -27456,7 +29194,7 @@ "yaml": "bin.mjs" }, "engines": { - "node": ">= 14" + "node": ">= 14.6" } }, "node_modules/vt-pbf": { diff --git a/src/UI/OpeningHours/OpeningHours.ts b/src/UI/OpeningHours/OpeningHours.ts index 22caa928e0..0b900dbb52 100644 --- a/src/UI/OpeningHours/OpeningHours.ts +++ b/src/UI/OpeningHours/OpeningHours.ts @@ -975,7 +975,7 @@ changes // => [[36000,61200], ["10:00", "17:00"]] * @param changeHourText * @param maxDiff minimum required seconds between two items to be in the same group * - * OH.partitionOHForDistance([0, 15, 3615], ["start", "15s", "1h15s"]) // => [{changeHours: [0, 3615], changeTexts: ["start", "1h15s"]}, {changeHours: [15], changeTexts: ["15 seconds"]}] + * OH.partitionOHForDistance([0, 15, 3615], ["start", "15s", "1h15s"]) // => [{changeHours: [0, 3615], changeTexts: ["start", "1h15s"]}, {changeHours: [15], changeTexts: ["15s"]}] * */ public static partitionOHForDistance(changeHours: number[], changeHourText: string[], maxDiff = 3600): { From a858a858793285b0f052ff9408412aa265857f9d Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 22:04:18 +0200 Subject: [PATCH 51/53] Chore: update dep --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b1324a9cc1..ac0bf24997 100644 --- a/package.json +++ b/package.json @@ -296,6 +296,6 @@ "typescript": "^4.7.4", "vite": "^4.5.9", "vite-node": "^3.0.5", - "vitest": "^3.0.5" + "vitest": "^3.2.1" } } From 4744471495309f7e2e6ec748528ab0fd6dc977f8 Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 23:47:29 +0200 Subject: [PATCH 52/53] Fix: regenerate NSI-logos, should fix regression reported in #2300 --- assets/layers/nsi_brand/nsi_brand.json | 59684 ++++++++-------- assets/layers/nsi_operator/nsi_operator.json | 41185 +++++------ scripts/nsiLogos.ts | 10 +- .../ThemeConfig/Conversion/Conversion.ts | 4 +- .../ThemeConfig/Conversion/FixImages.ts | 7 +- .../ThemeConfig/Conversion/ValidateTheme.ts | 8 +- .../ThemeConfig/Conversion/Validation.ts | 3 + 7 files changed, 50745 insertions(+), 50156 deletions(-) diff --git a/assets/layers/nsi_brand/nsi_brand.json b/assets/layers/nsi_brand/nsi_brand.json index 38a4a7470b..791888e514 100644 --- a/assets/layers/nsi_brand/nsi_brand.json +++ b/assets/layers/nsi_brand/nsi_brand.json @@ -1,7 +1,7 @@ { "id": "nsi_brand", "description": { - "en": "Exposes part of the NSI to reuse in other themes, e.g. for rendering" + "en": "Exposes part of the NSI to reuse in other themes, e.g. for rendering. Automatically generated and never directly loaded in a theme. Generated with scripts/nsiLogos.ts" }, "source": "special:library", "pointRendering": null, @@ -22,7 +22,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7eleven-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7eleven-445a61.jpg" }, { "if": { @@ -36,7 +36,7 @@ } ] }, - "then": "./assets/data/nsi/logos/76-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/76-445a61.jpg" }, { "if": { @@ -50,7 +50,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8ahuit-2974c2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/8ahuit-2974c2.svg" }, { "if": { @@ -64,7 +64,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aegean-d67647.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aegean-d67647.jpg" }, { "if": { @@ -78,7 +78,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afriquia-3f3fea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/afriquia-3f3fea.jpg" }, { "if": { @@ -96,7 +96,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afriquia-3f0b55.png" + "then": "https://data.mapcomplete.org/nsi//logos/afriquia-3f0b55.png" }, { "if": { @@ -110,7 +110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrola-bb3c05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrola-bb3c05.jpg" }, { "if": { @@ -124,7 +124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airliquide-ff109b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airliquide-ff109b.jpg" }, { "if": { @@ -138,7 +138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alcampo-80ab21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alcampo-80ab21.jpg" }, { "if": { @@ -152,7 +152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ale-6d0925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ale-6d0925.jpg" }, { "if": { @@ -166,7 +166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alexela-19c48c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alexela-19c48c.jpg" }, { "if": { @@ -180,22 +180,22 @@ } ] }, - "then": "./assets/data/nsi/logos/alliedpetroleum-34a242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliedpetroleum-34a242.jpg" }, { "if": { "and": [ "advertising=totem", - "official_name=Aloha Petroleum Ltd", { "or": [ "brand=Aloha Petroleum", - "brand:wikidata=Q4734197" + "brand:wikidata=Q4734197", + "official_name=Aloha Petroleum Ltd" ] } ] }, - "then": "./assets/data/nsi/logos/alohapetroleum-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alohapetroleum-647198.jpg" }, { "if": { @@ -209,7 +209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alon-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alon-647198.jpg" }, { "if": { @@ -223,7 +223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alpet-c19ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alpet-c19ddd.jpg" }, { "if": { @@ -237,7 +237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alvesbandeira-a8414b.png" + "then": "https://data.mapcomplete.org/nsi//logos/alvesbandeira-a8414b.png" }, { "if": { @@ -251,7 +251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amic-68a939.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amic-68a939.jpg" }, { "if": { @@ -265,7 +265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amoco-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/amoco-647198.png" }, { "if": { @@ -279,7 +279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ampol-a31042.png" + "then": "https://data.mapcomplete.org/nsi//logos/ampol-a31042.png" }, { "if": { @@ -293,22 +293,22 @@ } ] }, - "then": "./assets/data/nsi/logos/amseroil-875bd4.png" + "then": "https://data.mapcomplete.org/nsi//logos/amseroil-875bd4.png" }, { "if": { "and": [ "advertising=totem", - "official_name=Administración Nacional de Combustibles, Alcoholes y Portland", { "or": [ "brand=ANCAP", - "brand:wikidata=Q2824522" + "brand:wikidata=Q2824522", + "official_name=Administración Nacional de Combustibles, Alcoholes y Portland" ] } ] }, - "then": "./assets/data/nsi/logos/ancap-7348bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/ancap-7348bd.png" }, { "if": { @@ -322,7 +322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anp-b3069c.png" + "then": "https://data.mapcomplete.org/nsi//logos/anp-b3069c.png" }, { "if": { @@ -336,7 +336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applegreen-b83ef5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/applegreen-b83ef5.jpg" }, { "if": { @@ -350,7 +350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aral-7ed995.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aral-7ed995.jpg" }, { "if": { @@ -364,7 +364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arco-59b659.png" + "then": "https://data.mapcomplete.org/nsi//logos/arco-59b659.png" }, { "if": { @@ -378,7 +378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/argos-ac4a89.png" + "then": "https://data.mapcomplete.org/nsi//logos/argos-ac4a89.png" }, { "if": { @@ -393,7 +393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/as24-e95b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/as24-e95b1e.jpg" }, { "if": { @@ -407,7 +407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asda-4d1df5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asda-4d1df5.jpg" }, { "if": { @@ -421,7 +421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asdaexpress-4d1df5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asdaexpress-4d1df5.jpg" }, { "if": { @@ -435,7 +435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/astronenergy-617aa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/astronenergy-617aa2.jpg" }, { "if": { @@ -449,7 +449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atem-6d0925.png" + "then": "https://data.mapcomplete.org/nsi//logos/atem-6d0925.png" }, { "if": { @@ -463,7 +463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchan-9efa8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchan-9efa8b.png" }, { "if": { @@ -481,7 +481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autolpgas-4e8c26.png" + "then": "https://data.mapcomplete.org/nsi//logos/autolpgas-4e8c26.png" }, { "if": { @@ -495,7 +495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avanti-96ce31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avanti-96ce31.jpg" }, { "if": { @@ -509,7 +509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avia-49ca55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avia-49ca55.jpg" }, { "if": { @@ -523,7 +523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avin-d67647.png" + "then": "https://data.mapcomplete.org/nsi//logos/avin-d67647.png" }, { "if": { @@ -537,7 +537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axion-2a066e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axion-2a066e.jpg" }, { "if": { @@ -551,7 +551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aygaz-b13929.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aygaz-b13929.svg" }, { "if": { @@ -565,7 +565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aytemiz-b13929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aytemiz-b13929.jpg" }, { "if": { @@ -579,7 +579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/azpetrol-4f303c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/azpetrol-4f303c.jpg" }, { "if": { @@ -593,7 +593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ballenoil-80ab21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ballenoil-80ab21.jpg" }, { "if": { @@ -607,22 +607,22 @@ } ] }, - "then": "./assets/data/nsi/logos/balticpetroleum-3ba831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/balticpetroleum-3ba831.jpg" }, { "if": { "and": [ "advertising=totem", - "official_name=Bahrain Petroleum Company", { "or": [ "brand=Bapco", - "brand:wikidata=Q803640" + "brand:wikidata=Q803640", + "official_name=Bahrain Petroleum Company" ] } ] }, - "then": "./assets/data/nsi/logos/bapco-2d08a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bapco-2d08a5.jpg" }, { "if": { @@ -636,7 +636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bennettspetroleum-8c9f2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bennettspetroleum-8c9f2e.jpg" }, { "if": { @@ -650,7 +650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benzina-3a612c.png" + "then": "https://data.mapcomplete.org/nsi//logos/benzina-3a612c.png" }, { "if": { @@ -664,7 +664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berkman-ac4a89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berkman-ac4a89.jpg" }, { "if": { @@ -678,7 +678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beyfin-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beyfin-445a61.jpg" }, { "if": { @@ -692,7 +692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bft-3c3d38.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bft-3c3d38.svg" }, { "if": { @@ -706,7 +706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bharatpetroleum-96166f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bharatpetroleum-96166f.jpg" }, { "if": { @@ -720,7 +720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bhpetrol-3bf252.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bhpetrol-3bf252.jpg" }, { "if": { @@ -734,7 +734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bi1-df7908.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bi1-df7908.jpg" }, { "if": { @@ -748,7 +748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biomax-966bd3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biomax-966bd3.jpg" }, { "if": { @@ -762,7 +762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bjswholesaleclub-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bjswholesaleclub-647198.jpg" }, { "if": { @@ -776,7 +776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonarea-80ab21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonarea-80ab21.jpg" }, { "if": { @@ -790,7 +790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-8315ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-8315ff.jpg" }, { "if": { @@ -804,7 +804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/br-6d0925.png" + "then": "https://data.mapcomplete.org/nsi//logos/br-6d0925.png" }, { "if": { @@ -818,7 +818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bucees-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/bucees-647198.png" }, { "if": { @@ -832,22 +832,22 @@ } ] }, - "then": "./assets/data/nsi/logos/bvs-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bvs-b3069c.jpg" }, { "if": { "and": [ "advertising=totem", - "official_name=Bob Wayne's Oil Company", { "or": [ "brand=BWOC", - "brand:wikidata=Q4836845" + "brand:wikidata=Q4836845", + "official_name=Bob Wayne's Oil Company" ] } ] }, - "then": "./assets/data/nsi/logos/bwoc-4d1df5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bwoc-4d1df5.jpg" }, { "if": { @@ -861,7 +861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byrnedairy-c92709.png" + "then": "https://data.mapcomplete.org/nsi//logos/byrnedairy-c92709.png" }, { "if": { @@ -875,7 +875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caltex-0f1005.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caltex-0f1005.jpg" }, { "if": { @@ -889,7 +889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadiantire-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadiantire-e93e09.jpg" }, { "if": { @@ -903,7 +903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-ff109b.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-ff109b.png" }, { "if": { @@ -917,7 +917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carroll-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carroll-647198.jpg" }, { "if": { @@ -931,7 +931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caseysgeneralstore-ff109b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caseysgeneralstore-ff109b.svg" }, { "if": { @@ -945,7 +945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casino-2974c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casino-2974c2.jpg" }, { "if": { @@ -959,7 +959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cefco-d016fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/cefco-d016fa.png" }, { "if": { @@ -973,22 +973,22 @@ } ] }, - "then": "./assets/data/nsi/logos/cenex-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/cenex-647198.png" }, { "if": { "and": [ "advertising=totem", - "official_name=Certified Oil", { "or": [ "brand=Certified", - "brand:wikidata=Q100148356" + "brand:wikidata=Q100148356", + "official_name=Certified Oil" ] } ] }, - "then": "./assets/data/nsi/logos/certified-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/certified-647198.jpg" }, { "if": { @@ -1002,7 +1002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/challenge-34a242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/challenge-34a242.jpg" }, { "if": { @@ -1018,7 +1018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/champion-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/champion-875bd4.jpg" }, { "if": { @@ -1032,7 +1032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chevron-ff109b.png" + "then": "https://data.mapcomplete.org/nsi//logos/chevron-ff109b.png" }, { "if": { @@ -1046,7 +1046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chipo-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chipo-b3069c.jpg" }, { "if": { @@ -1060,7 +1060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-ff109b.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-ff109b.png" }, { "if": { @@ -1074,7 +1074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citgo-445a61.png" + "then": "https://data.mapcomplete.org/nsi//logos/citgo-445a61.png" }, { "if": { @@ -1088,7 +1088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clark-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/clark-647198.png" }, { "if": { @@ -1102,7 +1102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/classic-3c3d38.png" + "then": "https://data.mapcomplete.org/nsi//logos/classic-3c3d38.png" }, { "if": { @@ -1116,7 +1116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federatedcooperatives-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/federatedcooperatives-e93e09.jpg" }, { "if": { @@ -1130,7 +1130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conoco-647198.svg" + "then": "https://data.mapcomplete.org/nsi//logos/conoco-647198.svg" }, { "if": { @@ -1144,7 +1144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copec-65694b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/copec-65694b.svg" }, { "if": { @@ -1158,7 +1158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copetrol-b51e06.png" + "then": "https://data.mapcomplete.org/nsi//logos/copetrol-b51e06.png" }, { "if": { @@ -1172,7 +1172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosan-6d0925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosan-6d0925.jpg" }, { "if": { @@ -1186,7 +1186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costantin-996b0f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costantin-996b0f.svg" }, { "if": { @@ -1200,7 +1200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcogasoline-d249ff.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcogasoline-d249ff.svg" }, { "if": { @@ -1214,7 +1214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/couchetard-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/couchetard-e93e09.jpg" }, { "if": { @@ -1228,7 +1228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crodux-3bc7ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crodux-3bc7ea.jpg" }, { "if": { @@ -1242,7 +1242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cumberlandfarms-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cumberlandfarms-647198.jpg" }, { "if": { @@ -1256,7 +1256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cupet-95b8b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/cupet-95b8b7.png" }, { "if": { @@ -1270,7 +1270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dalioil-bb7061.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dalioil-bb7061.jpg" }, { "if": { @@ -1284,7 +1284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dats24-ee11ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dats24-ee11ab.jpg" }, { "if": { @@ -1301,7 +1301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delek-30ed24.svg" + "then": "https://data.mapcomplete.org/nsi//logos/delek-30ed24.svg" }, { "if": { @@ -1315,7 +1315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delta-e44cfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delta-e44cfd.jpg" }, { "if": { @@ -1329,7 +1329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deltasonic-7d9a59.png" + "then": "https://data.mapcomplete.org/nsi//logos/deltasonic-7d9a59.png" }, { "if": { @@ -1343,7 +1343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dk-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dk-647198.jpg" }, { "if": { @@ -1357,7 +1357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/domo-e93e09.svg" + "then": "https://data.mapcomplete.org/nsi//logos/domo-e93e09.svg" }, { "if": { @@ -1371,7 +1371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dyneff-778820.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dyneff-778820.svg" }, { "if": { @@ -1387,7 +1387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecopetrol-ea0204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecopetrol-ea0204.jpg" }, { "if": { @@ -1401,7 +1401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecooil-10e4f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ecooil-10e4f0.png" }, { "if": { @@ -1415,7 +1415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eko-e93e09.jpg" }, { "if": { @@ -1429,7 +1429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-66fbaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/eko-66fbaf.png" }, { "if": { @@ -1443,7 +1443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-06f404.png" + "then": "https://data.mapcomplete.org/nsi//logos/eko-06f404.png" }, { "if": { @@ -1457,7 +1457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-d67647.png" + "then": "https://data.mapcomplete.org/nsi//logos/eko-d67647.png" }, { "if": { @@ -1473,7 +1473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-ea0204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eko-ea0204.jpg" }, { "if": { @@ -1487,7 +1487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-1cc55f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eko-1cc55f.jpg" }, { "if": { @@ -1501,7 +1501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elan-fdee9c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elan-fdee9c.svg" }, { "if": { @@ -1519,7 +1519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emarat-1e6f11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emarat-1e6f11.jpg" }, { "if": { @@ -1537,7 +1537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneos-525bb3.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneos-525bb3.png" }, { "if": { @@ -1551,7 +1551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enercoop-996b0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/enercoop-996b0f.png" }, { "if": { @@ -1565,7 +1565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energas-996b0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/energas-996b0f.png" }, { "if": { @@ -1579,7 +1579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enerpetroli-996b0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enerpetroli-996b0f.jpg" }, { "if": { @@ -1593,7 +1593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engen-24d8dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engen-24d8dd.jpg" }, { "if": { @@ -1607,7 +1607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eni-59f06a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eni-59f06a.jpg" }, { "if": { @@ -1621,7 +1621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmarket-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enmarket-647198.jpg" }, { "if": { @@ -1635,7 +1635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equador-6d0925.png" + "then": "https://data.mapcomplete.org/nsi//logos/equador-6d0925.png" }, { "if": { @@ -1649,7 +1649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esclatoil-80ab21.png" + "then": "https://data.mapcomplete.org/nsi//logos/esclatoil-80ab21.png" }, { "if": { @@ -1663,7 +1663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-cd0860.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-cd0860.jpg" }, { "if": { @@ -1677,7 +1677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essoexpress-8ffe48.svg" + "then": "https://data.mapcomplete.org/nsi//logos/essoexpress-8ffe48.svg" }, { "if": { @@ -1691,7 +1691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurooil-bb27a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurooil-bb27a8.jpg" }, { "if": { @@ -1705,7 +1705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/europam-996b0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/europam-996b0f.png" }, { "if": { @@ -1720,7 +1720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everfuel-b750b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/everfuel-b750b3.jpg" }, { "if": { @@ -1734,7 +1734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exxon-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exxon-647198.jpg" }, { "if": { @@ -1748,7 +1748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fasgas-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fasgas-e93e09.jpg" }, { "if": { @@ -1762,7 +1762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fietenolie-ac4a89.png" + "then": "https://data.mapcomplete.org/nsi//logos/fietenolie-ac4a89.png" }, { "if": { @@ -1776,7 +1776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firezone-ac4a89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firezone-ac4a89.jpg" }, { "if": { @@ -1794,7 +1794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyers-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flyers-647198.jpg" }, { "if": { @@ -1808,7 +1808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyingj-5708fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/flyingj-5708fd.png" }, { "if": { @@ -1822,7 +1822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyingv-10e4f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/flyingv-10e4f0.png" }, { "if": { @@ -1836,7 +1836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/food4less-5cd599.png" + "then": "https://data.mapcomplete.org/nsi//logos/food4less-5cd599.png" }, { "if": { @@ -1850,7 +1850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodsco-a57e8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/foodsco-a57e8e.png" }, { "if": { @@ -1866,7 +1866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fragaoil-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fragaoil-875bd4.jpg" }, { "if": { @@ -1880,7 +1880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredmeyer-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/fredmeyer-647198.png" }, { "if": { @@ -1894,7 +1894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freietankstelle-3c3d38.svg" + "then": "https://data.mapcomplete.org/nsi//logos/freietankstelle-3c3d38.svg" }, { "if": { @@ -1908,7 +1908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/friendlyexpress-cab956.png" + "then": "https://data.mapcomplete.org/nsi//logos/friendlyexpress-cab956.png" }, { "if": { @@ -1922,7 +1922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gas-34a242.png" + "then": "https://data.mapcomplete.org/nsi//logos/gas-34a242.png" }, { "if": { @@ -1936,7 +1936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/g500-34b7e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/g500-34b7e4.png" }, { "if": { @@ -1950,7 +1950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galp-9b7c40.png" + "then": "https://data.mapcomplete.org/nsi//logos/galp-9b7c40.png" }, { "if": { @@ -1964,7 +1964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gas-bb7061.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gas-bb7061.jpg" }, { "if": { @@ -1980,7 +1980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gazprom-ea0204.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gazprom-ea0204.svg" }, { "if": { @@ -1994,7 +1994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giant-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/giant-647198.png" }, { "if": { @@ -2008,7 +2008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giap-996b0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/giap-996b0f.png" }, { "if": { @@ -2022,7 +2022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/global-2f5b89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/global-2f5b89.svg" }, { "if": { @@ -2036,7 +2036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globaloil-30e129.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globaloil-30e129.jpg" }, { "if": { @@ -2050,7 +2050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globus-a74bf8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globus-a74bf8.jpg" }, { "if": { @@ -2066,7 +2066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gloryoil-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gloryoil-875bd4.jpg" }, { "if": { @@ -2081,7 +2081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gnp-996b0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gnp-996b0f.jpg" }, { "if": { @@ -2095,7 +2095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goil-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goil-875bd4.jpg" }, { "if": { @@ -2109,7 +2109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gomart-746494.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gomart-746494.jpg" }, { "if": { @@ -2123,7 +2123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenoil-3f0b55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenoil-3f0b55.jpg" }, { "if": { @@ -2137,7 +2137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulf-4150d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gulf-4150d7.jpg" }, { "if": { @@ -2151,7 +2151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gull-34a242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gull-34a242.jpg" }, { "if": { @@ -2166,7 +2166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heb-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heb-647198.jpg" }, { "if": { @@ -2180,7 +2180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haffners-25824a.png" + "then": "https://data.mapcomplete.org/nsi//logos/haffners-25824a.png" }, { "if": { @@ -2194,7 +2194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harnois-e93e09.png" + "then": "https://data.mapcomplete.org/nsi//logos/harnois-e93e09.png" }, { "if": { @@ -2208,7 +2208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harvestenergy-4d1df5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harvestenergy-4d1df5.jpg" }, { "if": { @@ -2222,7 +2222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hele-91aeef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hele-91aeef.jpg" }, { "if": { @@ -2236,7 +2236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hem-3c3d38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hem-3c3d38.jpg" }, { "if": { @@ -2250,7 +2250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hess-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hess-647198.jpg" }, { "if": { @@ -2264,7 +2264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hidrosina-34b7e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hidrosina-34b7e4.jpg" }, { "if": { @@ -2278,7 +2278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/highs-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/highs-647198.png" }, { "if": { @@ -2292,7 +2292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoferdiskont-ab390b.png" + "then": "https://data.mapcomplete.org/nsi//logos/hoferdiskont-ab390b.png" }, { "if": { @@ -2306,7 +2306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holiday-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holiday-647198.jpg" }, { "if": { @@ -2320,7 +2320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holidayoil-1196cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/holidayoil-1196cc.png" }, { "if": { @@ -2334,22 +2334,22 @@ } ] }, - "then": "./assets/data/nsi/logos/hoyer-3c3d38.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hoyer-3c3d38.svg" }, { "if": { "and": [ "advertising=totem", - "official_name=Hindustan Petroleum", { "or": [ "brand=Hindustan Petroleum", - "brand:wikidata=Q1619375" + "brand:wikidata=Q1619375", + "official_name=Hindustan Petroleum" ] } ] }, - "then": "./assets/data/nsi/logos/hindustanpetroleum-96166f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hindustanpetroleum-96166f.jpg" }, { "if": { @@ -2363,7 +2363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/husky-e93e09.png" + "then": "https://data.mapcomplete.org/nsi//logos/husky-e93e09.png" }, { "if": { @@ -2377,7 +2377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyveegas-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyveegas-647198.jpg" }, { "if": { @@ -2391,7 +2391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdoex-80ab21.png" + "then": "https://data.mapcomplete.org/nsi//logos/iberdoex-80ab21.png" }, { "if": { @@ -2405,7 +2405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/igas-ea0204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/igas-ea0204.jpg" }, { "if": { @@ -2419,7 +2419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/igl-96166f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/igl-96166f.jpg" }, { "if": { @@ -2433,7 +2433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ina-245676.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ina-245676.jpg" }, { "if": { @@ -2447,7 +2447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianoil-96166f.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianoil-96166f.png" }, { "if": { @@ -2461,7 +2461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inglesgasexpress-8d7006.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inglesgasexpress-8d7006.jpg" }, { "if": { @@ -2475,7 +2475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ingo-09da86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ingo-09da86.jpg" }, { "if": { @@ -2489,7 +2489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogy-bb27a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/innogy-bb27a8.jpg" }, { "if": { @@ -2506,7 +2506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/insaoil-ea0204.png" + "then": "https://data.mapcomplete.org/nsi//logos/insaoil-ea0204.png" }, { "if": { @@ -2520,7 +2520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarche-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarche-445a61.jpg" }, { "if": { @@ -2534,7 +2534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inver-ad86e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inver-ad86e1.jpg" }, { "if": { @@ -2548,7 +2548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ip-445a61.png" + "then": "https://data.mapcomplete.org/nsi//logos/ip-445a61.png" }, { "if": { @@ -2562,7 +2562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipiranga-6d0925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ipiranga-6d0925.jpg" }, { "if": { @@ -2576,7 +2576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irving-5708fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irving-5708fd.jpg" }, { "if": { @@ -2590,7 +2590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jet-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jet-445a61.jpg" }, { "if": { @@ -2604,7 +2604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jetti-10e4f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jetti-10e4f0.jpg" }, { "if": { @@ -2618,7 +2618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jiobp-96166f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jiobp-96166f.jpg" }, { "if": { @@ -2633,7 +2633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kangarooexpress-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/kangarooexpress-647198.png" }, { "if": { @@ -2647,7 +2647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kastrati-33fa20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kastrati-33fa20.jpg" }, { "if": { @@ -2661,7 +2661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keropetrol-996b0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/keropetrol-996b0f.png" }, { "if": { @@ -2675,7 +2675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingsoopers-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/kingsoopers-647198.png" }, { "if": { @@ -2689,7 +2689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klo-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klo-b3069c.jpg" }, { "if": { @@ -2703,7 +2703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krist-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/krist-647198.png" }, { "if": { @@ -2717,7 +2717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kroger-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/kroger-647198.png" }, { "if": { @@ -2731,7 +2731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kumandgo-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kumandgo-647198.jpg" }, { "if": { @@ -2745,7 +2745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikfill-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/kwikfill-647198.png" }, { "if": { @@ -2759,7 +2759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikshop-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwikshop-647198.jpg" }, { "if": { @@ -2773,7 +2773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikstar-43ec8b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kwikstar-43ec8b.svg" }, { "if": { @@ -2787,7 +2787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwiktrip-fa9947.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kwiktrip-fa9947.svg" }, { "if": { @@ -2801,7 +2801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liberty-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liberty-647198.jpg" }, { "if": { @@ -2815,7 +2815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loafnjug-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loafnjug-647198.jpg" }, { "if": { @@ -2829,7 +2829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loves-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/loves-647198.png" }, { "if": { @@ -2843,7 +2843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-aff9d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-aff9d5.jpg" }, { "if": { @@ -2857,7 +2857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macewen-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macewen-e93e09.jpg" }, { "if": { @@ -2871,7 +2871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mapco-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mapco-647198.jpg" }, { "if": { @@ -2885,7 +2885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathon-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marathon-445a61.jpg" }, { "if": { @@ -2899,7 +2899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshal-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshal-b3069c.jpg" }, { "if": { @@ -2913,7 +2913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maverik-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maverik-647198.jpg" }, { "if": { @@ -2927,7 +2927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxol-1c08dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxol-1c08dd.jpg" }, { "if": { @@ -2941,7 +2941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meijer-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meijer-647198.jpg" }, { "if": { @@ -2955,7 +2955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meroil-80ab21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meroil-80ab21.jpg" }, { "if": { @@ -2969,7 +2969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-c8c400.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-c8c400.svg" }, { "if": { @@ -2983,7 +2983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropetroleum-a31042.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropetroleum-a31042.jpg" }, { "if": { @@ -2997,7 +2997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrol-bb3c05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/migrol-bb3c05.jpg" }, { "if": { @@ -3011,7 +3011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobil-bad4ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobil-bad4ad.jpg" }, { "if": { @@ -3025,7 +3025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moeve-9b7c40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moeve-9b7c40.jpg" }, { "if": { @@ -3039,7 +3039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moil-b13929.png" + "then": "https://data.mapcomplete.org/nsi//logos/moil-b13929.png" }, { "if": { @@ -3053,7 +3053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mol-ff109b.png" + "then": "https://data.mapcomplete.org/nsi//logos/mol-ff109b.png" }, { "if": { @@ -3067,7 +3067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morrisons-4d1df5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morrisons-4d1df5.jpg" }, { "if": { @@ -3081,7 +3081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motto-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/motto-b3069c.jpg" }, { "if": { @@ -3095,7 +3095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/murphyexpress-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/murphyexpress-647198.png" }, { "if": { @@ -3109,7 +3109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/murphyusa-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/murphyusa-647198.png" }, { "if": { @@ -3123,7 +3123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/n1-144e8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/n1-144e8a.png" }, { "if": { @@ -3137,7 +3137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nafte-80ab21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nafte-80ab21.jpg" }, { "if": { @@ -3153,7 +3153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nasona-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nasona-875bd4.jpg" }, { "if": { @@ -3167,7 +3167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nayara-96166f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nayara-96166f.jpg" }, { "if": { @@ -3181,7 +3181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neste-ff109b.png" + "then": "https://data.mapcomplete.org/nsi//logos/neste-ff109b.png" }, { "if": { @@ -3195,7 +3195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordoel-3c3d38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordoel-3c3d38.jpg" }, { "if": { @@ -3209,7 +3209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nouria-355b7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/nouria-355b7e.png" }, { "if": { @@ -3223,7 +3223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/np-59a262.png" + "then": "https://data.mapcomplete.org/nsi//logos/np-59a262.png" }, { "if": { @@ -3237,7 +3237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/npd-34a242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/npd-34a242.jpg" }, { "if": { @@ -3251,7 +3251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oil-ff109b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/oil-ff109b.svg" }, { "if": { @@ -3267,7 +3267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oilibya-11febf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oilibya-11febf.jpg" }, { "if": { @@ -3281,7 +3281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ok-ac4a89.png" + "then": "https://data.mapcomplete.org/nsi//logos/ok-ac4a89.png" }, { "if": { @@ -3295,7 +3295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okq8-ea9d91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okq8-ea9d91.jpg" }, { "if": { @@ -3309,7 +3309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olerex-19c48c.png" + "then": "https://data.mapcomplete.org/nsi//logos/olerex-19c48c.png" }, { "if": { @@ -3323,7 +3323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olis-144e8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/olis-144e8a.jpg" }, { "if": { @@ -3337,7 +3337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omv-ff109b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omv-ff109b.jpg" }, { "if": { @@ -3351,7 +3351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opet-b13929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opet-b13929.jpg" }, { "if": { @@ -3365,7 +3365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orkan-144e8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orkan-144e8a.jpg" }, { "if": { @@ -3379,7 +3379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlen-5e42d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlen-5e42d4.jpg" }, { "if": { @@ -3393,7 +3393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlenexpress-7e45f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlenexpress-7e45f4.jpg" }, { "if": { @@ -3407,7 +3407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otr-a31042.png" + "then": "https://data.mapcomplete.org/nsi//logos/otr-a31042.png" }, { "if": { @@ -3421,7 +3421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxxo-ff109b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxxo-ff109b.jpg" }, { "if": { @@ -3437,7 +3437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacific-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacific-875bd4.jpg" }, { "if": { @@ -3451,7 +3451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificpride-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificpride-647198.jpg" }, { "if": { @@ -3465,7 +3465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paknsavefuel-34a242.png" + "then": "https://data.mapcomplete.org/nsi//logos/paknsavefuel-34a242.png" }, { "if": { @@ -3479,7 +3479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parallel-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parallel-b3069c.jpg" }, { "if": { @@ -3493,7 +3493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pecsa-c91af4.png" + "then": "https://data.mapcomplete.org/nsi//logos/pecsa-c91af4.png" }, { "if": { @@ -3507,7 +3507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pemex-34b7e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/pemex-34b7e4.png" }, { "if": { @@ -3521,7 +3521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pertamina-37a57e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pertamina-37a57e.jpg" }, { "if": { @@ -3536,7 +3536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petro-5708fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petro-5708fd.jpg" }, { "if": { @@ -3550,7 +3550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroseven-34b7e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroseven-34b7e4.jpg" }, { "if": { @@ -3564,7 +3564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrocanada-e93e09.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petrocanada-e93e09.svg" }, { "if": { @@ -3578,7 +3578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrot-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrot-e93e09.jpg" }, { "if": { @@ -3592,7 +3592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroecuador-477c71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroecuador-477c71.jpg" }, { "if": { @@ -3606,7 +3606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrol-e97370.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petrol-e97370.svg" }, { "if": { @@ -3620,7 +3620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrolofisi-ff109b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrolofisi-ff109b.jpg" }, { "if": { @@ -3634,7 +3634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrolimex-ff109b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrolimex-ff109b.jpg" }, { "if": { @@ -3648,7 +3648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrolina-66fbaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrolina-66fbaf.png" }, { "if": { @@ -3662,7 +3662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrom-3f0b55.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrom-3f0b55.png" }, { "if": { @@ -3676,7 +3676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrom-b4e784.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrom-b4e784.png" }, { "if": { @@ -3690,7 +3690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petron-e61a3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petron-e61a3f.jpg" }, { "if": { @@ -3704,7 +3704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petronas-ff109b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petronas-ff109b.jpg" }, { "if": { @@ -3718,7 +3718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petronor-80ab21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petronor-80ab21.jpg" }, { "if": { @@ -3732,7 +3732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroperu-c91af4.png" + "then": "https://data.mapcomplete.org/nsi//logos/petroperu-c91af4.png" }, { "if": { @@ -3746,7 +3746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroprix-9b7c40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroprix-9b7c40.jpg" }, { "if": { @@ -3760,7 +3760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrosol-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrosol-875bd4.jpg" }, { "if": { @@ -3774,7 +3774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phillips66-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phillips66-647198.jpg" }, { "if": { @@ -3788,7 +3788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phoenix-10e4f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/phoenix-10e4f0.png" }, { "if": { @@ -3803,7 +3803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pilot-5708fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/pilot-5708fd.png" }, { "if": { @@ -3817,7 +3817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pioneer-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pioneer-e93e09.jpg" }, { "if": { @@ -3831,7 +3831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/power-dbb9dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/power-dbb9dc.jpg" }, { "if": { @@ -3845,7 +3845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/preem-a1e918.png" + "then": "https://data.mapcomplete.org/nsi//logos/preem-a1e918.png" }, { "if": { @@ -3859,7 +3859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primax-477c71.png" + "then": "https://data.mapcomplete.org/nsi//logos/primax-477c71.png" }, { "if": { @@ -3873,7 +3873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primax-c91af4.png" + "then": "https://data.mapcomplete.org/nsi//logos/primax-c91af4.png" }, { "if": { @@ -3887,7 +3887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prio-a8414b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prio-a8414b.jpg" }, { "if": { @@ -3901,7 +3901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pt-f2ecb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pt-f2ecb6.jpg" }, { "if": { @@ -3915,7 +3915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ptt-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ptt-445a61.jpg" }, { "if": { @@ -3929,7 +3929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puma-445a61.svg" + "then": "https://data.mapcomplete.org/nsi//logos/puma-445a61.svg" }, { "if": { @@ -3943,7 +3943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/q1-3c3d38.png" + "then": "https://data.mapcomplete.org/nsi//logos/q1-3c3d38.png" }, { "if": { @@ -3957,7 +3957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/q8-aa562b.png" + "then": "https://data.mapcomplete.org/nsi//logos/q8-aa562b.png" }, { "if": { @@ -3971,7 +3971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/q8easy-062984.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/q8easy-062984.jpg" }, { "if": { @@ -3985,7 +3985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qazaqoil-cac4e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qazaqoil-cac4e0.jpg" }, { "if": { @@ -3999,7 +3999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qiknez-717302.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qiknez-717302.jpg" }, { "if": { @@ -4013,7 +4013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickchek-647198.svg" + "then": "https://data.mapcomplete.org/nsi//logos/quickchek-647198.svg" }, { "if": { @@ -4028,7 +4028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quiktrip-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quiktrip-445a61.jpg" }, { "if": { @@ -4042,7 +4042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/racetrac-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/racetrac-445a61.jpg" }, { "if": { @@ -4056,7 +4056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raceway-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raceway-647198.jpg" }, { "if": { @@ -4072,7 +4072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rdpetroleum-34a242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rdpetroleum-34a242.jpg" }, { "if": { @@ -4086,7 +4086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/realk-bb7061.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/realk-bb7061.jpg" }, { "if": { @@ -4100,7 +4100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/refinor-2d76fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/refinor-2d76fb.jpg" }, { "if": { @@ -4114,7 +4114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reliance-96166f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reliance-96166f.jpg" }, { "if": { @@ -4128,7 +4128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rendichicas-34b7e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rendichicas-34b7e4.jpg" }, { "if": { @@ -4142,7 +4142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repsol-ff109b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/repsol-ff109b.jpg" }, { "if": { @@ -4156,7 +4156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/retitalia-996b0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/retitalia-996b0f.jpg" }, { "if": { @@ -4170,7 +4170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/revoil-d67647.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/revoil-d67647.jpg" }, { "if": { @@ -4184,7 +4184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodes-4f6200.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodes-4f6200.jpg" }, { "if": { @@ -4198,7 +4198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rodoil-6d0925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rodoil-6d0925.jpg" }, { "if": { @@ -4212,7 +4212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rottenrobbie-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/rottenrobbie-647198.png" }, { "if": { @@ -4226,7 +4226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalfarms-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalfarms-647198.jpg" }, { "if": { @@ -4240,7 +4240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rubis-445a61.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rubis-445a61.svg" }, { "if": { @@ -4254,7 +4254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rutters-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rutters-647198.jpg" }, { "if": { @@ -4268,7 +4268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soil-b6aff4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/soil-b6aff4.svg" }, { "if": { @@ -4282,7 +4282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safeway-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safeway-445a61.jpg" }, { "if": { @@ -4296,7 +4296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sainsburys-4d1df5.png" + "then": "https://data.mapcomplete.org/nsi//logos/sainsburys-4d1df5.png" }, { "if": { @@ -4310,7 +4310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samsclub-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samsclub-647198.jpg" }, { "if": { @@ -4324,7 +4324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanmarcopetroli-996b0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanmarcopetroli-996b0f.png" }, { "if": { @@ -4338,7 +4338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sasol-30e129.png" + "then": "https://data.mapcomplete.org/nsi//logos/sasol-30e129.png" }, { "if": { @@ -4352,7 +4352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbtank-3c3d38.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sbtank-3c3d38.svg" }, { "if": { @@ -4366,7 +4366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seaoil-10e4f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/seaoil-10e4f0.png" }, { "if": { @@ -4380,7 +4380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheetz-e7b9d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/sheetz-e7b9d2.png" }, { "if": { @@ -4394,7 +4394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-bad4ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-bad4ad.jpg" }, { "if": { @@ -4408,7 +4408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shellexpress-1ce709.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shellexpress-1ce709.jpg" }, { "if": { @@ -4422,7 +4422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shiptech-960b09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shiptech-960b09.jpg" }, { "if": { @@ -4436,7 +4436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sim-6d0925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sim-6d0925.jpg" }, { "if": { @@ -4450,7 +4450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinclair-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinclair-647198.jpg" }, { "if": { @@ -4464,7 +4464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinooil-cac4e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinooil-cac4e0.jpg" }, { "if": { @@ -4478,7 +4478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovnaft-7c2ff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/slovnaft-7c2ff1.png" }, { "if": { @@ -4492,7 +4492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartfuels-10e4f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smartfuels-10e4f0.jpg" }, { "if": { @@ -4506,7 +4506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/socar-563cec.png" + "then": "https://data.mapcomplete.org/nsi//logos/socar-563cec.png" }, { "if": { @@ -4520,7 +4520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sokimex-163c4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sokimex-163c4a.jpg" }, { "if": { @@ -4534,7 +4534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sol-688308.png" + "then": "https://data.mapcomplete.org/nsi//logos/sol-688308.png" }, { "if": { @@ -4548,7 +4548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonangol-43a0e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sonangol-43a0e7.svg" }, { "if": { @@ -4562,7 +4562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonic-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonic-e93e09.jpg" }, { "if": { @@ -4576,7 +4576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedway-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedway-647198.jpg" }, { "if": { @@ -4590,7 +4590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spinx-18231d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spinx-18231d.jpg" }, { "if": { @@ -4604,7 +4604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sprint-3c3d38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sprint-3c3d38.jpg" }, { "if": { @@ -4618,7 +4618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/st1-d45232.png" + "then": "https://data.mapcomplete.org/nsi//logos/st1-d45232.png" }, { "if": { @@ -4632,7 +4632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/star-3c3d38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/star-3c3d38.jpg" }, { "if": { @@ -4648,7 +4648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staroil-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/staroil-875bd4.jpg" }, { "if": { @@ -4662,7 +4662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclerc-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclerc-445a61.jpg" }, { "if": { @@ -4676,7 +4676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statoil-352456.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/statoil-352456.jpg" }, { "if": { @@ -4690,7 +4690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stewarts-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stewarts-647198.jpg" }, { "if": { @@ -4704,7 +4704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stopandshop-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stopandshop-647198.jpg" }, { "if": { @@ -4718,7 +4718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunoco-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/sunoco-647198.png" }, { "if": { @@ -4732,7 +4732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunpet-b13929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunpet-b13929.jpg" }, { "if": { @@ -4746,7 +4746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superu-2974c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superu-2974c2.jpg" }, { "if": { @@ -4760,22 +4760,22 @@ } ] }, - "then": "./assets/data/nsi/logos/systemeu-df7908.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/systemeu-df7908.jpg" }, { "if": { "and": [ "advertising=totem", - "official_name=TravelCenters of America", { "or": [ "brand=TA", - "brand:wikidata=Q7835892" + "brand:wikidata=Q7835892", + "official_name=TravelCenters of America" ] } ] }, - "then": "./assets/data/nsi/logos/ta-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ta-647198.jpg" }, { "if": { @@ -4789,7 +4789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamautohof-3a612c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamautohof-3a612c.jpg" }, { "if": { @@ -4803,7 +4803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamoil-09758b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamoil-09758b.jpg" }, { "if": { @@ -4817,7 +4817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamoilexpress-ac4a89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamoilexpress-ac4a89.jpg" }, { "if": { @@ -4831,7 +4831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tango-09963b.png" + "then": "https://data.mapcomplete.org/nsi//logos/tango-09963b.png" }, { "if": { @@ -4845,7 +4845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanka-ea9d91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tanka-ea9d91.jpg" }, { "if": { @@ -4859,7 +4859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanker-bb7061.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tanker-bb7061.jpg" }, { "if": { @@ -4873,7 +4873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tankpool24-836245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tankpool24-836245.jpg" }, { "if": { @@ -4887,7 +4887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanqyou-ac4a89.png" + "then": "https://data.mapcomplete.org/nsi//logos/tanqyou-ac4a89.png" }, { "if": { @@ -4901,7 +4901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teboil-7aaf7f.png" + "then": "https://data.mapcomplete.org/nsi//logos/teboil-7aaf7f.png" }, { "if": { @@ -4915,7 +4915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tela-163c4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tela-163c4a.jpg" }, { "if": { @@ -4931,7 +4931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenergy-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telenergy-875bd4.jpg" }, { "if": { @@ -4945,7 +4945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tempo-e93e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tempo-e93e09.jpg" }, { "if": { @@ -4959,7 +4959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/termo-b13929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/termo-b13929.jpg" }, { "if": { @@ -4973,7 +4973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terpel-6bcba4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terpel-6bcba4.jpg" }, { "if": { @@ -4987,7 +4987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terribles-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terribles-647198.jpg" }, { "if": { @@ -5001,7 +5001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesco-133242.png" + "then": "https://data.mapcomplete.org/nsi//logos/tesco-133242.png" }, { "if": { @@ -5015,7 +5015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesoro-647198.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tesoro-647198.svg" }, { "if": { @@ -5029,7 +5029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texaco-f86d48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texaco-f86d48.jpg" }, { "if": { @@ -5043,7 +5043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thorntons-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/thorntons-647198.png" }, { "if": { @@ -5057,7 +5057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tinq-dd31d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tinq-dd31d7.jpg" }, { "if": { @@ -5071,7 +5071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirexpetrol-48997e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tirexpetrol-48997e.jpg" }, { "if": { @@ -5085,22 +5085,22 @@ } ] }, - "then": "./assets/data/nsi/logos/tomthumb-4189c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomthumb-4189c0.jpg" }, { "if": { "and": [ "advertising=totem", - "official_name=Tedcastles Oil Products", { "or": [ "brand=Top", - "brand:wikidata=Q7693933" + "brand:wikidata=Q7693933", + "official_name=Tedcastles Oil Products" ] } ] }, - "then": "./assets/data/nsi/logos/top-dba262.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/top-dba262.jpg" }, { "if": { @@ -5116,22 +5116,22 @@ } ] }, - "then": "./assets/data/nsi/logos/topoil-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topoil-875bd4.jpg" }, { "if": { "and": [ "advertising=totem", - "official_name=Tops Gasoline", { "or": [ "brand=Tops", - "brand:wikidata=Q7825137" + "brand:wikidata=Q7825137", + "official_name=Tops Gasoline" ] } ] }, - "then": "./assets/data/nsi/logos/tops-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tops-647198.jpg" }, { "if": { @@ -5147,7 +5147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/total-4ffea6.png" + "then": "https://data.mapcomplete.org/nsi//logos/total-4ffea6.png" }, { "if": { @@ -5161,7 +5161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalenergies-39bce9.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalenergies-39bce9.png" }, { "if": { @@ -5176,7 +5176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truezero-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/truezero-647198.png" }, { "if": { @@ -5190,7 +5190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkeyhill-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkeyhill-647198.jpg" }, { "if": { @@ -5204,7 +5204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkiyepetrolleri-b13929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkiyepetrolleri-b13929.jpg" }, { "if": { @@ -5218,7 +5218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turmol-96ce31.png" + "then": "https://data.mapcomplete.org/nsi//logos/turmol-96ce31.png" }, { "if": { @@ -5232,7 +5232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/u-2974c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/u-2974c2.jpg" }, { "if": { @@ -5246,7 +5246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugo-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ugo-b3069c.jpg" }, { "if": { @@ -5261,7 +5261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniteddairyfarmers-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uniteddairyfarmers-647198.jpg" }, { "if": { @@ -5275,7 +5275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ufa-d2e1c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ufa-d2e1c8.svg" }, { "if": { @@ -5293,7 +5293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrnafta-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrnafta-b3069c.jpg" }, { "if": { @@ -5307,7 +5307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ultramar-445a61.png" + "then": "https://data.mapcomplete.org/nsi//logos/ultramar-445a61.png" }, { "if": { @@ -5321,7 +5321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/united-a31042.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/united-a31042.jpg" }, { "if": { @@ -5335,7 +5335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uno-a15c89.png" + "then": "https://data.mapcomplete.org/nsi//logos/uno-a15c89.png" }, { "if": { @@ -5349,7 +5349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unox-38cbf4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unox-38cbf4.jpg" }, { "if": { @@ -5363,7 +5363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/upg-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/upg-b3069c.jpg" }, { "if": { @@ -5377,7 +5377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usagasoline-647198.svg" + "then": "https://data.mapcomplete.org/nsi//logos/usagasoline-647198.svg" }, { "if": { @@ -5391,7 +5391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valero-445a61.png" + "then": "https://data.mapcomplete.org/nsi//logos/valero-445a61.png" }, { "if": { @@ -5405,7 +5405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vegacarburanti-996b0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/vegacarburanti-996b0f.png" }, { "if": { @@ -5419,7 +5419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viada-7c2943.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/viada-7c2943.jpg" }, { "if": { @@ -5433,7 +5433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virsi-bac13d.png" + "then": "https://data.mapcomplete.org/nsi//logos/virsi-bac13d.png" }, { "if": { @@ -5447,7 +5447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vito-2974c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vito-2974c2.jpg" }, { "if": { @@ -5461,7 +5461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vmpetroleum-ea0204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vmpetroleum-ea0204.jpg" }, { "if": { @@ -5475,7 +5475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waitomo-34a242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waitomo-34a242.jpg" }, { "if": { @@ -5489,7 +5489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmart-445a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmart-445a61.jpg" }, { "if": { @@ -5503,7 +5503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wawa-c92643.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wawa-c92643.jpg" }, { "if": { @@ -5517,7 +5517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weis-647198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weis-647198.jpg" }, { "if": { @@ -5531,7 +5531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wesco-647198.png" + "then": "https://data.mapcomplete.org/nsi//logos/wesco-647198.png" }, { "if": { @@ -5545,7 +5545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfalen-3c3d38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westfalen-3c3d38.jpg" }, { "if": { @@ -5559,7 +5559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winxo-3f0b55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winxo-3f0b55.jpg" }, { "if": { @@ -5573,7 +5573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wog-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wog-b3069c.jpg" }, { "if": { @@ -5587,7 +5587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ypf-2d76fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ypf-2d76fb.jpg" }, { "if": { @@ -5601,7 +5601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yx-38cbf4.png" + "then": "https://data.mapcomplete.org/nsi//logos/yx-38cbf4.png" }, { "if": { @@ -5615,7 +5615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/z-34a242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/z-34a242.jpg" }, { "if": { @@ -5631,7 +5631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zen-875bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zen-875bd4.jpg" }, { "if": { @@ -5645,7 +5645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zgraiffeisen-3c3d38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zgraiffeisen-3c3d38.jpg" }, { "if": { @@ -5659,7 +5659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziz-3f0b55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ziz-3f0b55.jpg" }, { "if": { @@ -5673,7 +5673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a9320e-d67647.png" + "then": "https://data.mapcomplete.org/nsi//logos/a9320e-d67647.png" }, { "if": { @@ -5687,7 +5687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1b5559-d67647.png" + "then": "https://data.mapcomplete.org/nsi//logos/1b5559-d67647.png" }, { "if": { @@ -5705,7 +5705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avias-b3069c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avias-b3069c.svg" }, { "if": { @@ -5723,7 +5723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bashneft-16dca8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bashneft-16dca8.jpg" }, { "if": { @@ -5737,7 +5737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ed92ce-c011c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ed92ce-c011c3.jpg" }, { "if": { @@ -5753,7 +5753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benita-ea0204.png" + "then": "https://data.mapcomplete.org/nsi//logos/benita-ea0204.png" }, { "if": { @@ -5767,7 +5767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/69e648-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/69e648-b3069c.jpg" }, { "if": { @@ -5781,7 +5781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/0b910f-dec76e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/0b910f-dec76e.jpg" }, { "if": { @@ -5797,7 +5797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knezpetrol-1cc55f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knezpetrol-1cc55f.jpg" }, { "if": { @@ -5815,7 +5815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ef63bd-cac4e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ef63bd-cac4e0.jpg" }, { "if": { @@ -5833,7 +5833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-0d2801.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-0d2801.jpg" }, { "if": { @@ -5851,7 +5851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-ea0204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-ea0204.jpg" }, { "if": { @@ -5865,7 +5865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c21137-09b245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c21137-09b245.jpg" }, { "if": { @@ -5883,7 +5883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/market-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/market-b3069c.jpg" }, { "if": { @@ -5901,7 +5901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neftmagistral-16dca8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neftmagistral-16dca8.jpg" }, { "if": { @@ -5917,7 +5917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nispetrol-1cc55f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nispetrol-1cc55f.jpg" }, { "if": { @@ -5935,7 +5935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okko-b3069c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okko-b3069c.jpg" }, { "if": { @@ -5951,7 +5951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okta-09b245.png" + "then": "https://data.mapcomplete.org/nsi//logos/okta-09b245.png" }, { "if": { @@ -5965,7 +5965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/637ba4-ea0204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/637ba4-ea0204.jpg" }, { "if": { @@ -5983,7 +5983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrol-ea0204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrol-ea0204.jpg" }, { "if": { @@ -6001,7 +6001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thepetersburgfuelcompany-16dca8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thepetersburgfuelcompany-16dca8.jpg" }, { "if": { @@ -6017,7 +6017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rompetrol-ea0204.png" + "then": "https://data.mapcomplete.org/nsi//logos/rompetrol-ea0204.png" }, { "if": { @@ -6035,7 +6035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosneft-16dca8.png" + "then": "https://data.mapcomplete.org/nsi//logos/rosneft-16dca8.png" }, { "if": { @@ -6053,7 +6053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surgutneftegas-16dca8.gif" + "then": "https://data.mapcomplete.org/nsi//logos/surgutneftegas-16dca8.gif" }, { "if": { @@ -6071,7 +6071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tatneft-16dca8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tatneft-16dca8.jpg" }, { "if": { @@ -6092,7 +6092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulf-4e8c26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gulf-4e8c26.jpg" }, { "if": { @@ -6110,7 +6110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekopetrol-4e8c26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekopetrol-4e8c26.jpg" }, { "if": { @@ -6133,7 +6133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-4e8c26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-4e8c26.jpg" }, { "if": { @@ -6153,7 +6153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neogas-4e8c26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neogas-4e8c26.jpg" }, { "if": { @@ -6171,7 +6171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portal-4e8c26.png" + "then": "https://data.mapcomplete.org/nsi//logos/portal-4e8c26.png" }, { "if": { @@ -6189,7 +6189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rompetrol-4e8c26.png" + "then": "https://data.mapcomplete.org/nsi//logos/rompetrol-4e8c26.png" }, { "if": { @@ -6210,7 +6210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/socar-4e8c26.png" + "then": "https://data.mapcomplete.org/nsi//logos/socar-4e8c26.png" }, { "if": { @@ -6228,7 +6228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/connect-4e8c26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/connect-4e8c26.jpg" }, { "if": { @@ -6246,7 +6246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doralon-30ed24.png" + "then": "https://data.mapcomplete.org/nsi//logos/doralon-30ed24.png" }, { "if": { @@ -6264,7 +6264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonol-30ed24.png" + "then": "https://data.mapcomplete.org/nsi//logos/sonol-30ed24.png" }, { "if": { @@ -6282,7 +6282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paz-30ed24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paz-30ed24.jpg" }, { "if": { @@ -6300,7 +6300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adnoc-44b58a.png" + "then": "https://data.mapcomplete.org/nsi//logos/adnoc-44b58a.png" }, { "if": { @@ -6318,7 +6318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aramco-b07de9.png" + "then": "https://data.mapcomplete.org/nsi//logos/aramco-b07de9.png" }, { "if": { @@ -6336,7 +6336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldrees-b07de9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aldrees-b07de9.jpg" }, { "if": { @@ -6354,7 +6354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emarat-2e14a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emarat-2e14a2.jpg" }, { "if": { @@ -6372,7 +6372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enoc-a1d67d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enoc-a1d67d.jpg" }, { "if": { @@ -6390,7 +6390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petromin-b07de9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petromin-b07de9.svg" }, { "if": { @@ -6413,7 +6413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pakistanstateoil-2e14a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pakistanstateoil-2e14a2.jpg" }, { "if": { @@ -6431,7 +6431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/total-a1d67d.png" + "then": "https://data.mapcomplete.org/nsi//logos/total-a1d67d.png" }, { "if": { @@ -6449,7 +6449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sasco-b07de9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sasco-b07de9.jpg" }, { "if": { @@ -6467,7 +6467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-ad9852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-ad9852.jpg" }, { "if": { @@ -6489,7 +6489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-2e14a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-2e14a2.jpg" }, { "if": { @@ -6507,7 +6507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agil-2df895.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agil-2df895.jpg" }, { "if": { @@ -6525,7 +6525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naft-b07de9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naft-b07de9.jpg" }, { "if": { @@ -6543,7 +6543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-f2ecb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-f2ecb6.jpg" }, { "if": { @@ -6561,7 +6561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangchak-f2ecb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bangchak-f2ecb6.jpg" }, { "if": { @@ -6579,7 +6579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ptt-f2ecb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ptt-f2ecb6.jpg" }, { "if": { @@ -6597,7 +6597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-f2ecb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-f2ecb6.jpg" }, { "if": { @@ -6615,7 +6615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyundaioilbank-b6aff4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hyundaioilbank-b6aff4.svg" }, { "if": { @@ -6633,7 +6633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kygnus-525bb3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kygnus-525bb3.svg" }, { "if": { @@ -6651,13 +6651,12 @@ } ] }, - "then": "./assets/data/nsi/logos/costcogasoline-525bb3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcogasoline-525bb3.svg" }, { "if": { "and": [ "advertising=totem", - "official_name=コスモ石油", { "or": [ "brand=コスモ", @@ -6665,12 +6664,13 @@ "brand:ja=コスモ", "brand:wikidata=Q2498318", "name:en=Cosmo", - "name:ja=コスモ" + "name:ja=コスモ", + "official_name=コスモ石油" ] } ] }, - "then": "./assets/data/nsi/logos/cosmo-525bb3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cosmo-525bb3.svg" }, { "if": { @@ -6688,7 +6688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinopec-24568b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinopec-24568b.jpg" }, { "if": { @@ -6706,7 +6706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrochina-24568b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrochina-24568b.jpg" }, { "if": { @@ -6728,7 +6728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinopec-7f9d5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinopec-7f9d5e.jpg" }, { "if": { @@ -6750,7 +6750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrochina-7f9d5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrochina-7f9d5e.jpg" }, { "if": { @@ -6768,7 +6768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idemitsu-525bb3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/idemitsu-525bb3.svg" }, { "if": { @@ -6786,7 +6786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/formosapetrochemicalcorporation-77fe4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/formosapetrochemicalcorporation-77fe4a.jpg" }, { "if": { @@ -6804,7 +6804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpccorporationtaiwan-77fe4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpccorporationtaiwan-77fe4a.jpg" }, { "if": { @@ -6822,7 +6822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcogasoline-77fe4a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcogasoline-77fe4a.svg" }, { "if": { @@ -6840,7 +6840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/showashell-525bb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/showashell-525bb3.jpg" }, { "if": { @@ -6856,7 +6856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dogtopia-03770a.png" + "then": "https://data.mapcomplete.org/nsi//logos/dogtopia-03770a.png" }, { "if": { @@ -6872,7 +6872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petshotel-03770a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petshotel-03770a.jpg" }, { "if": { @@ -6888,7 +6888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petsuites-a2c409.png" + "then": "https://data.mapcomplete.org/nsi//logos/petsuites-a2c409.png" }, { "if": { @@ -6903,23 +6903,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bluecrossrehomingcentre-ae7821.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluecrossrehomingcentre-ae7821.jpg" }, { "if": { "and": [ "amenity=animal_shelter", - "official_name=Société protectrice des animaux", { "or": [ "brand=SPA", "brand:wikidata=Q47391644", - "name=SPA" + "name=SPA", + "official_name=Société protectrice des animaux" ] } ] }, - "then": "./assets/data/nsi/logos/spa-89458d.png" + "then": "https://data.mapcomplete.org/nsi//logos/spa-89458d.png" }, { "if": { @@ -6935,7 +6935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aurodomus-4d8c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aurodomus-4d8c03.jpg" }, { "if": { @@ -6949,7 +6949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banco24horas-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banco24horas-a02d2b.jpg" }, { "if": { @@ -6964,7 +6964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bitcoindepot-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bitcoindepot-93d3a2.jpg" }, { "if": { @@ -6978,7 +6978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chime-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/chime-93d3a2.png" }, { "if": { @@ -6992,7 +6992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaunionpay-7886cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/chinaunionpay-7886cb.png" }, { "if": { @@ -7007,7 +7007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coinflip-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coinflip-93d3a2.jpg" }, { "if": { @@ -7023,7 +7023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coinhub-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/coinhub-93d3a2.png" }, { "if": { @@ -7038,7 +7038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coinsource-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coinsource-93d3a2.jpg" }, { "if": { @@ -7052,7 +7052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschepost-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschepost-fb8bf5.jpg" }, { "if": { @@ -7066,7 +7066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easypay-e5108a.png" + "then": "https://data.mapcomplete.org/nsi//logos/easypay-e5108a.png" }, { "if": { @@ -7082,7 +7082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euronet-d5d850.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/euronet-d5d850.jpg" }, { "if": { @@ -7098,7 +7098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geldmaat-5333ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/geldmaat-5333ab.png" }, { "if": { @@ -7112,7 +7112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hitachi-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hitachi-ad0527.jpg" }, { "if": { @@ -7127,7 +7127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertyx-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libertyx-93d3a2.jpg" }, { "if": { @@ -7143,7 +7143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meps-bc168a.png" + "then": "https://data.mapcomplete.org/nsi//logos/meps-bc168a.png" }, { "if": { @@ -7159,7 +7159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moneyget-7535fc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/moneyget-7535fc.svg" }, { "if": { @@ -7173,7 +7173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldmutual-ff45b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/oldmutual-ff45b4.png" }, { "if": { @@ -7187,7 +7187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postoffice-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postoffice-396707.jpg" }, { "if": { @@ -7203,7 +7203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postamat-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postamat-64483a.jpg" }, { "if": { @@ -7218,7 +7218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postomat-ba97f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postomat-ba97f3.jpg" }, { "if": { @@ -7233,7 +7233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockitcoin-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rockitcoin-93d3a2.jpg" }, { "if": { @@ -7249,7 +7249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sainsburysbank-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sainsburysbank-396707.jpg" }, { "if": { @@ -7263,7 +7263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tescobank-396707.png" + "then": "https://data.mapcomplete.org/nsi//logos/tescobank-396707.png" }, { "if": { @@ -7281,7 +7281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tinkoffbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tinkoffbank-da35c8.jpg" }, { "if": { @@ -7302,7 +7302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chunghwapost-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chunghwapost-9a6797.jpg" }, { "if": { @@ -7318,7 +7318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1stsecuritybank-686806.png" + "then": "https://data.mapcomplete.org/nsi//logos/1stsecuritybank-686806.png" }, { "if": { @@ -7339,24 +7339,24 @@ } ] }, - "then": "./assets/data/nsi/logos/3bank-4fcc55.png" + "then": "https://data.mapcomplete.org/nsi//logos/3bank-4fcc55.png" }, { "if": { "and": [ "amenity=atm", - "official_name=365.bank, a.s.", { "or": [ "brand=365.bank", "brand:wikidata=Q7237158", + "official_name=365.bank, a.s.", "operator=365.bank", "operator:wikidata=Q7237158" ] } ] }, - "then": "./assets/data/nsi/logos/365bank-6843ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/365bank-6843ee.png" }, { "if": { @@ -7373,24 +7373,24 @@ } ] }, - "then": "./assets/data/nsi/logos/aargauischekantonalbank-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aargauischekantonalbank-ba97f3.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=ABANCA Corporación Bancaria", { "or": [ "brand=Abanca", "brand:wikidata=Q9598744", + "official_name=ABANCA Corporación Bancaria", "operator=Abanca", "operator:wikidata=Q9598744" ] } ] }, - "then": "./assets/data/nsi/logos/abanca-3f27ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/abanca-3f27ef.png" }, { "if": { @@ -7406,7 +7406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aboundcreditunion-6603b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aboundcreditunion-6603b3.jpg" }, { "if": { @@ -7423,7 +7423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/absa-843442.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/absa-843442.jpg" }, { "if": { @@ -7439,7 +7439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/absa-997829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/absa-997829.jpg" }, { "if": { @@ -7457,7 +7457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abudhabicommercialbank-878fb9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/abudhabicommercialbank-878fb9.svg" }, { "if": { @@ -7479,7 +7479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acba-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acba-056506.jpg" }, { "if": { @@ -7495,7 +7495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accessbank-04aa13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accessbank-04aa13.jpg" }, { "if": { @@ -7511,7 +7511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/activobank-9411e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/activobank-9411e1.jpg" }, { "if": { @@ -7527,7 +7527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/addikobank-bd7eed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/addikobank-bd7eed.svg" }, { "if": { @@ -7543,7 +7543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/affinbank-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/affinbank-bc168a.jpg" }, { "if": { @@ -7559,7 +7559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/affinitycreditunion-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/affinitycreditunion-ddac74.jpg" }, { "if": { @@ -7575,7 +7575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/africanbank-997829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/africanbank-997829.jpg" }, { "if": { @@ -7591,7 +7591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agibank-a02d2b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agibank-a02d2b.svg" }, { "if": { @@ -7607,7 +7607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrambanka-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrambanka-4d8c03.png" }, { "if": { @@ -7623,26 +7623,26 @@ } ] }, - "then": "./assets/data/nsi/logos/agribank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/agribank-93d3a2.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", - "official_name:en=Vietnam Bank for Agriculture and Rural Development", - "official_name:vi=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", { "or": [ "brand=Agribank", "brand:wikidata=Q1924723", + "official_name=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", + "official_name:en=Vietnam Bank for Agriculture and Rural Development", + "official_name:vi=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", "operator=Agribank", "operator:wikidata=Q1924723" ] } ] }, - "then": "./assets/data/nsi/logos/agribank-cfdb1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agribank-cfdb1a.jpg" }, { "if": { @@ -7658,7 +7658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agribank-7adf11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agribank-7adf11.jpg" }, { "if": { @@ -7674,24 +7674,24 @@ } ] }, - "then": "./assets/data/nsi/logos/agrobank-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrobank-bc168a.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Allied Irish Banks", { "or": [ "brand=AIB", "brand:wikidata=Q1642179", + "official_name=Allied Irish Banks", "operator=AIB", "operator:wikidata=Q1642179" ] } ] }, - "then": "./assets/data/nsi/logos/aib-e569c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/aib-e569c1.png" }, { "if": { @@ -7710,7 +7710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aikbank-4fcc55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aikbank-4fcc55.jpg" }, { "if": { @@ -7726,7 +7726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airbank-767782.png" + "then": "https://data.mapcomplete.org/nsi//logos/airbank-767782.png" }, { "if": { @@ -7742,7 +7742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akbank-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akbank-6f1d1d.jpg" }, { "if": { @@ -7758,7 +7758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akfinansbank-a0e164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akfinansbank-a0e164.jpg" }, { "if": { @@ -7774,7 +7774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktia-6eeb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aktia-6eeb13.jpg" }, { "if": { @@ -7790,7 +7790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alandsbanken-6eeb13.png" + "then": "https://data.mapcomplete.org/nsi//logos/alandsbanken-6eeb13.png" }, { "if": { @@ -7806,7 +7806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aliorbank-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aliorbank-53bcca.jpg" }, { "if": { @@ -7822,7 +7822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allahabadbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allahabadbank-ad0527.jpg" }, { "if": { @@ -7838,7 +7838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliancebank-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliancebank-bc168a.jpg" }, { "if": { @@ -7856,7 +7856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allianz-e5108a.png" + "then": "https://data.mapcomplete.org/nsi//logos/allianz-e5108a.png" }, { "if": { @@ -7876,7 +7876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliedbank-c8ef8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliedbank-c8ef8c.jpg" }, { "if": { @@ -7892,7 +7892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliedbank-f377ee.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alliedbank-f377ee.svg" }, { "if": { @@ -7908,7 +7908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/almoraurbancooperativebanklimited-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/almoraurbancooperativebanklimited-ad0527.jpg" }, { "if": { @@ -7924,7 +7924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alphabank-39c6ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/alphabank-39c6ab.png" }, { "if": { @@ -7940,7 +7940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alternasavings-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alternasavings-ddac74.jpg" }, { "if": { @@ -7956,7 +7956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alternatifbank-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alternatifbank-6f1d1d.jpg" }, { "if": { @@ -7972,7 +7972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambank-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ambank-bc168a.jpg" }, { "if": { @@ -7988,7 +7988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amegybankoftexas-18eb57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amegybankoftexas-18eb57.jpg" }, { "if": { @@ -8004,7 +8004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amen-74adc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amen-74adc2.jpg" }, { "if": { @@ -8026,7 +8026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameriabank-056506.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameriabank-056506.png" }, { "if": { @@ -8043,7 +8043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americafirstcreditunion-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americafirstcreditunion-93d3a2.jpg" }, { "if": { @@ -8059,24 +8059,24 @@ } ] }, - "then": "./assets/data/nsi/logos/amerisbank-42e885.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amerisbank-42e885.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=AMP Limited", { "or": [ "brand=AMP", "brand:wikidata=Q295261", + "official_name=AMP Limited", "operator=AMP", "operator:wikidata=Q295261" ] } ] }, - "then": "./assets/data/nsi/logos/amp-53bc34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amp-53bc34.jpg" }, { "if": { @@ -8092,7 +8092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anadolubank-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anadolubank-6f1d1d.jpg" }, { "if": { @@ -8108,7 +8108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andhrabank-ad0527.svg" + "then": "https://data.mapcomplete.org/nsi//logos/andhrabank-ad0527.svg" }, { "if": { @@ -8128,7 +8128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andhrapradeshgrameenavikasbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andhrapradeshgrameenavikasbank-ad0527.jpg" }, { "if": { @@ -8144,24 +8144,24 @@ } ] }, - "then": "./assets/data/nsi/logos/androscogginbank-e408c9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/androscogginbank-e408c9.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=Australia and New Zealand Banking Group Limited", { "or": [ "brand=ANZ", "brand:wikidata=Q714641", + "official_name=Australia and New Zealand Banking Group Limited", "operator=ANZ", "operator:wikidata=Q714641" ] } ] }, - "then": "./assets/data/nsi/logos/anz-53bc34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anz-53bc34.jpg" }, { "if": { @@ -8178,7 +8178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appenzellerkantonalbank-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/appenzellerkantonalbank-ba97f3.svg" }, { "if": { @@ -8194,7 +8194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applebank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/applebank-93d3a2.jpg" }, { "if": { @@ -8216,7 +8216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/araratbank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/araratbank-056506.jpg" }, { "if": { @@ -8238,7 +8238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ardshinbank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ardshinbank-056506.jpg" }, { "if": { @@ -8254,7 +8254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/argenta-854f43.png" + "then": "https://data.mapcomplete.org/nsi//logos/argenta-854f43.png" }, { "if": { @@ -8280,7 +8280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armbusinessbank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armbusinessbank-056506.jpg" }, { "if": { @@ -8306,7 +8306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armeconombank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armeconombank-056506.jpg" }, { "if": { @@ -8328,7 +8328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armswissbank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armswissbank-056506.jpg" }, { "if": { @@ -8344,7 +8344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arvestbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arvestbank-93d3a2.jpg" }, { "if": { @@ -8360,7 +8360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asbbank-6bd214.png" + "then": "https://data.mapcomplete.org/nsi//logos/asbbank-6bd214.png" }, { "if": { @@ -8376,7 +8376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asbank-a0e164.png" + "then": "https://data.mapcomplete.org/nsi//logos/asbank-a0e164.png" }, { "if": { @@ -8393,7 +8393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asiaunitedbank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asiaunitedbank-f377ee.jpg" }, { "if": { @@ -8413,7 +8413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/askaribank-ed31a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/askaribank-ed31a6.jpg" }, { "if": { @@ -8429,7 +8429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/assamgraminvikashbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/assamgraminvikashbank-ad0527.jpg" }, { "if": { @@ -8445,24 +8445,24 @@ } ] }, - "then": "./assets/data/nsi/logos/associatedbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/associatedbank-93d3a2.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Alberta Treasury Branches", { "or": [ "brand=ATB Financial", "brand:wikidata=Q298762", + "official_name=Alberta Treasury Branches", "operator=ATB Financial", "operator:wikidata=Q298762" ] } ] }, - "then": "./assets/data/nsi/logos/atbfinancial-6bfb2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atbfinancial-6bfb2d.jpg" }, { "if": { @@ -8478,7 +8478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlanticunionbank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/atlanticunionbank-93d3a2.png" }, { "if": { @@ -8498,7 +8498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/attijariwafabank-e568eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/attijariwafabank-e568eb.png" }, { "if": { @@ -8514,7 +8514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausmallfinancebank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausmallfinancebank-ad0527.jpg" }, { "if": { @@ -8530,7 +8530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axa-2f6feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axa-2f6feb.jpg" }, { "if": { @@ -8546,7 +8546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axisbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axisbank-ad0527.jpg" }, { "if": { @@ -8562,41 +8562,41 @@ } ] }, - "then": "./assets/data/nsi/logos/baccredomatic-9c7dd6.png" + "then": "https://data.mapcomplete.org/nsi//logos/baccredomatic-9c7dd6.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Angolano de Investimentos", { "or": [ "brand=BAI", "brand:wikidata=Q806172", + "official_name=Banco Angolano de Investimentos", "operator=BAI", "operator:wikidata=Q806172" ] } ] }, - "then": "./assets/data/nsi/logos/bai-d8c228.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bai-d8c228.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Grupo Financiero Banamex", { "or": [ "brand=Banamex", "brand:wikidata=Q749474", + "official_name=Grupo Financiero Banamex", "operator=Banamex", "operator:wikidata=Q749474" ] } ] }, - "then": "./assets/data/nsi/logos/banamex-8c8932.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banamex-8c8932.svg" }, { "if": { @@ -8612,24 +8612,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bancaagricolapopolarediragusa-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancaagricolapopolarediragusa-64483a.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Cassa di Risparmio di Asti", { "or": [ "brand=Banca di Asti", "brand:wikidata=Q3661919", + "official_name=Cassa di Risparmio di Asti", "operator=Banca di Asti", "operator:wikidata=Q3661919" ] } ] }, - "then": "./assets/data/nsi/logos/bancadiasti-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancadiasti-64483a.jpg" }, { "if": { @@ -8645,7 +8645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancagenerali-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancagenerali-64483a.jpg" }, { "if": { @@ -8661,7 +8661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancamarch-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancamarch-b48e80.jpg" }, { "if": { @@ -8677,7 +8677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancamediolanum-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancamediolanum-64483a.jpg" }, { "if": { @@ -8693,7 +8693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancapopolaredisondrio-64483a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bancapopolaredisondrio-64483a.svg" }, { "if": { @@ -8709,7 +8709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancasella-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancasella-64483a.png" }, { "if": { @@ -8725,7 +8725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancatransilvania-1de605.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancatransilvania-1de605.jpg" }, { "if": { @@ -8741,41 +8741,41 @@ } ] }, - "then": "./assets/data/nsi/logos/bancaribe-f50cd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancaribe-f50cd1.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banca dello Stato del Cantone Ticino", { "or": [ "brand=BancaStato", "brand:wikidata=Q806158", + "official_name=Banca dello Stato del Cantone Ticino", "operator=BancaStato", "operator:wikidata=Q806158" ] } ] }, - "then": "./assets/data/nsi/logos/bancastato-79920e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancastato-79920e.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Agrario de Colombia", { "or": [ "brand=Banco Agrario", "brand:wikidata=Q20013358", + "official_name=Banco Agrario de Colombia", "operator=Banco Agrario", "operator:wikidata=Q20013358" ] } ] }, - "then": "./assets/data/nsi/logos/bancoagrario-850243.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoagrario-850243.jpg" }, { "if": { @@ -8791,7 +8791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoavvillas-850243.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoavvillas-850243.jpg" }, { "if": { @@ -8807,7 +8807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoazteca-6e6832.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoazteca-6e6832.jpg" }, { "if": { @@ -8823,7 +8823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancobicentenario-f50cd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancobicentenario-f50cd1.png" }, { "if": { @@ -8839,7 +8839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancobisa-caae63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancobisa-caae63.jpg" }, { "if": { @@ -8855,25 +8855,25 @@ } ] }, - "then": "./assets/data/nsi/logos/bancobmg-a02d2b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bancobmg-a02d2b.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Português de Investimento", "short_name=BPI", { "or": [ "brand=Banco BPI", "brand:wikidata=Q537886", + "official_name=Banco Português de Investimento", "operator=Banco BPI", "operator:wikidata=Q537886" ] } ] }, - "then": "./assets/data/nsi/logos/bancobpi-9411e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancobpi-9411e1.png" }, { "if": { @@ -8889,7 +8889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancobpm-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancobpm-64483a.jpg" }, { "if": { @@ -8905,24 +8905,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bancocajasocial-850243.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancocajasocial-850243.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Ciudad de Buenos Aires", { "or": [ "brand=Banco Ciudad", "brand:wikidata=Q4856204", + "official_name=Banco Ciudad de Buenos Aires", "operator=Banco Ciudad", "operator:wikidata=Q4856204" ] } ] }, - "then": "./assets/data/nsi/logos/bancociudad-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancociudad-b67a7c.jpg" }, { "if": { @@ -8938,7 +8938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancocontinental-d0d073.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancocontinental-d0d073.jpg" }, { "if": { @@ -8954,7 +8954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoctt-9411e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoctt-9411e1.png" }, { "if": { @@ -8970,7 +8970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodaamazonia-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodaamazonia-a02d2b.jpg" }, { "if": { @@ -8986,7 +8986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodebogota-850243.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodebogota-850243.jpg" }, { "if": { @@ -9003,7 +9003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brb-a02d2b.png" + "then": "https://data.mapcomplete.org/nsi//logos/brb-a02d2b.png" }, { "if": { @@ -9019,25 +9019,25 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodechile-914056.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodechile-914056.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de la Provincia de Córdoba S.A.", "short_name=Bancor", { "or": [ "brand=Banco de Córdoba", "brand:wikidata=Q5718071", + "official_name=Banco de la Provincia de Córdoba S.A.", "operator=Banco de Córdoba", "operator:wikidata=Q5718071" ] } ] }, - "then": "./assets/data/nsi/logos/bancodecordoba-6b467f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodecordoba-6b467f.jpg" }, { "if": { @@ -9053,7 +9053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodecreditoycomercio-94b01c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodecreditoycomercio-94b01c.jpg" }, { "if": { @@ -9069,7 +9069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodedesarrollobanrural-40d5b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodedesarrollobanrural-40d5b9.jpg" }, { "if": { @@ -9087,7 +9087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodefomentoangola-d8c228.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodefomentoangola-d8c228.png" }, { "if": { @@ -9103,7 +9103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodelanacion-98e68c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodelanacion-98e68c.png" }, { "if": { @@ -9119,7 +9119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodeoccidente-850243.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodeoccidente-850243.png" }, { "if": { @@ -9135,7 +9135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodeoccidente-925355.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodeoccidente-925355.jpg" }, { "if": { @@ -9151,7 +9151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodevenezuela-f50cd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodevenezuela-f50cd1.jpg" }, { "if": { @@ -9167,7 +9167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodelaustro-67d8b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodelaustro-67d8b6.jpg" }, { "if": { @@ -9183,7 +9183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodelbienestar-8c8932.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodelbienestar-8c8932.jpg" }, { "if": { @@ -9199,7 +9199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodesio-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodesio-64483a.png" }, { "if": { @@ -9215,7 +9215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodisardegna-64483a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodisardegna-64483a.svg" }, { "if": { @@ -9231,7 +9231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodobrasil-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodobrasil-a02d2b.jpg" }, { "if": { @@ -9248,7 +9248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodonordeste-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodonordeste-a02d2b.jpg" }, { "if": { @@ -9264,24 +9264,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoeconomico-caae63.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoeconomico-caae63.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco del Estado de Chile", { "or": [ "brand=Banco Estado", "brand:wikidata=Q5718188", + "official_name=Banco del Estado de Chile", "operator=Banco Estado", "operator:wikidata=Q5718188" ] } ] }, - "then": "./assets/data/nsi/logos/bancoestado-914056.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoestado-914056.jpg" }, { "if": { @@ -9297,7 +9297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancofalabella-b9bb6a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bancofalabella-b9bb6a.svg" }, { "if": { @@ -9313,24 +9313,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bancofassil-caae63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancofassil-caae63.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco para el Fomento a Iniciativas Económicas", { "or": [ "brand=Banco Fie", "brand:wikidata=Q81782924", + "official_name=Banco para el Fomento a Iniciativas Económicas", "operator=Banco Fie", "operator:wikidata=Q81782924" ] } ] }, - "then": "./assets/data/nsi/logos/bancofie-caae63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancofie-caae63.jpg" }, { "if": { @@ -9347,7 +9347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancofondocomun-f50cd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancofondocomun-f50cd1.jpg" }, { "if": { @@ -9363,7 +9363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancogandtcontinental-1466f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancogandtcontinental-1466f5.png" }, { "if": { @@ -9380,7 +9380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoganadero-caae63.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoganadero-caae63.png" }, { "if": { @@ -9396,7 +9396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bwbank-a6d133.png" + "then": "https://data.mapcomplete.org/nsi//logos/bwbank-a6d133.png" }, { "if": { @@ -9412,7 +9412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoindustrial-b67a7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoindustrial-b67a7c.png" }, { "if": { @@ -9428,7 +9428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancointernacional-914056.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancointernacional-914056.jpg" }, { "if": { @@ -9444,7 +9444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancointernacional-67d8b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancointernacional-67d8b6.png" }, { "if": { @@ -9461,7 +9461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancomercantilsantacruz-caae63.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancomercantilsantacruz-caae63.png" }, { "if": { @@ -9477,7 +9477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancomercantildobrasil-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancomercantildobrasil-a02d2b.jpg" }, { "if": { @@ -9493,42 +9493,42 @@ } ] }, - "then": "./assets/data/nsi/logos/bancometropolitano-94b01c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancometropolitano-94b01c.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de la Nación Argentina", { "or": [ "brand=Banco Nación", "brand:wikidata=Q2883376", + "official_name=Banco de la Nación Argentina", "operator=Banco Nación", "operator:wikidata=Q2883376" ] } ] }, - "then": "./assets/data/nsi/logos/banconacion-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banconacion-b67a7c.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Nacional de Costa Rica", "short_name=BNCR", { "or": [ "brand=Banco Nacional de Costa Rica", "brand:wikidata=Q2917708", + "official_name=Banco Nacional de Costa Rica", "operator=Banco Nacional de Costa Rica", "operator:wikidata=Q2917708" ] } ] }, - "then": "./assets/data/nsi/logos/banconacionaldecostarica-a6d133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banconacionaldecostarica-a6d133.jpg" }, { "if": { @@ -9545,7 +9545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banconacionaldebolivia-caae63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banconacionaldebolivia-caae63.jpg" }, { "if": { @@ -9562,24 +9562,24 @@ } ] }, - "then": "./assets/data/nsi/logos/banconacionaldecredito-f50cd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banconacionaldecredito-f50cd1.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Popular Pastor", { "or": [ "brand=Banco Pastor", "brand:wikidata=Q806193", + "official_name=Banco Popular Pastor", "operator=Banco Pastor", "operator:wikidata=Q806193" ] } ] }, - "then": "./assets/data/nsi/logos/bancopastor-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancopastor-b48e80.jpg" }, { "if": { @@ -9595,7 +9595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancopatagonia-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancopatagonia-b67a7c.jpg" }, { "if": { @@ -9611,7 +9611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancopichincha-89e930.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancopichincha-89e930.jpg" }, { "if": { @@ -9627,7 +9627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancopopular-850243.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancopopular-850243.png" }, { "if": { @@ -9643,24 +9643,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bancopopulardeahorro-94b01c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancopopulardeahorro-94b01c.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de la Provincia de Buenos Aires", { "or": [ "brand=Banco Provincia", "brand:wikidata=Q4856209", + "official_name=Banco de la Provincia de Buenos Aires", "operator=Banco Provincia", "operator:wikidata=Q4856209" ] } ] }, - "then": "./assets/data/nsi/logos/bancoprovincia-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoprovincia-b67a7c.jpg" }, { "if": { @@ -9676,13 +9676,12 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoprovinciadeneuquen-b67a7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoprovinciadeneuquen-b67a7c.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de Sabadell, S.A.", { "or": [ "brand=Banco Sabadell", @@ -9691,13 +9690,14 @@ "brand:wikidata=Q762330", "name:ca=Banc Sabadell", "name:es=Banco Sabadell", + "official_name=Banco de Sabadell, S.A.", "operator=Banco Sabadell", "operator:wikidata=Q762330" ] } ] }, - "then": "./assets/data/nsi/logos/bancosabadell-b48e80.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancosabadell-b48e80.png" }, { "if": { @@ -9713,41 +9713,41 @@ } ] }, - "then": "./assets/data/nsi/logos/bancosafra-a02d2b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancosafra-a02d2b.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Nuevo Banco de Santa Fe", { "or": [ "brand=Banco Santa Fe", "brand:wikidata=Q6046871", + "official_name=Nuevo Banco de Santa Fe", "operator=Banco Santa Fe", "operator:wikidata=Q6046871" ] } ] }, - "then": "./assets/data/nsi/logos/bancosantafe-b67a7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancosantafe-b67a7c.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Santander Group", { "or": [ "brand=Banco Santander", "brand:wikidata=Q6496310", + "official_name=Santander Group", "operator=Banco Santander", "operator:wikidata=Q6496310" ] } ] }, - "then": "./assets/data/nsi/logos/bancosantander-0380b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancosantander-0380b8.jpg" }, { "if": { @@ -9763,41 +9763,41 @@ } ] }, - "then": "./assets/data/nsi/logos/bancosol-d8c228.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancosol-d8c228.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Solidario", { "or": [ "brand=Banco Sol", "brand:wikidata=Q62118746", + "official_name=Banco Solidario", "operator=Banco Sol", "operator:wikidata=Q62118746" ] } ] }, - "then": "./assets/data/nsi/logos/bancosol-caae63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancosol-caae63.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de la Unión", { "or": [ "brand=Banco Unión", "brand:wikidata=Q72315494", + "official_name=Banco de la Unión", "operator=Banco Unión", "operator:wikidata=Q72315494" ] } ] }, - "then": "./assets/data/nsi/logos/bancounion-caae63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancounion-caae63.jpg" }, { "if": { @@ -9813,7 +9813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancolombia-850243.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancolombia-850243.png" }, { "if": { @@ -9829,7 +9829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancomeeva-850243.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancomeeva-850243.jpg" }, { "if": { @@ -9845,7 +9845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandhanbank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/bandhanbank-ad0527.png" }, { "if": { @@ -9861,7 +9861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banesco-f50cd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banesco-f50cd1.jpg" }, { "if": { @@ -9877,24 +9877,24 @@ } ] }, - "then": "./assets/data/nsi/logos/banese-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banese-a02d2b.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco do Estado do Espírito Santo", { "or": [ "brand=Banestes", "brand:wikidata=Q4854848", + "official_name=Banco do Estado do Espírito Santo", "operator=Banestes", "operator:wikidata=Q4854848" ] } ] }, - "then": "./assets/data/nsi/logos/banestes-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banestes-a02d2b.jpg" }, { "if": { @@ -9910,7 +9910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangkokbank-cf5c86.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bangkokbank-cf5c86.svg" }, { "if": { @@ -9926,7 +9926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangorsavingsbank-9ae6ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/bangorsavingsbank-9ae6ff.png" }, { "if": { @@ -9942,7 +9942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bank1saar-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bank1saar-fb8bf5.jpg" }, { "if": { @@ -9962,7 +9962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankalhabib-ed31a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankalhabib-ed31a6.png" }, { "if": { @@ -9982,7 +9982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2f0a35-c2e240.png" + "then": "https://data.mapcomplete.org/nsi//logos/2f0a35-c2e240.png" }, { "if": { @@ -10002,7 +10002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankalfalah-d0578d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankalfalah-d0578d.png" }, { "if": { @@ -10018,7 +10018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankbjb-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankbjb-16476e.jpg" }, { "if": { @@ -10034,7 +10034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankpolskiejspoldzielczosci-53bcca.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankpolskiejspoldzielczosci-53bcca.png" }, { "if": { @@ -10050,7 +10050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankbukopin-16476e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bankbukopin-16476e.svg" }, { "if": { @@ -10066,7 +10066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankcentralasia-16476e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bankcentralasia-16476e.svg" }, { "if": { @@ -10082,7 +10082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankdanamon-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankdanamon-16476e.jpg" }, { "if": { @@ -10098,7 +10098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankislam-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankislam-bc168a.jpg" }, { "if": { @@ -10114,7 +10114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankjago-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankjago-16476e.jpg" }, { "if": { @@ -10130,7 +10130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmandiri-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmandiri-16476e.jpg" }, { "if": { @@ -10146,7 +10146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmega-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmega-16476e.jpg" }, { "if": { @@ -10162,7 +10162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmuamalat-465f88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmuamalat-465f88.jpg" }, { "if": { @@ -10180,7 +10180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofafrica-843442.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofafrica-843442.png" }, { "if": { @@ -10196,7 +10196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofamerica-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofamerica-93d3a2.jpg" }, { "if": { @@ -10212,7 +10212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofbaroda-83b186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofbaroda-83b186.jpg" }, { "if": { @@ -10228,7 +10228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofceylon-960663.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofceylon-960663.jpg" }, { "if": { @@ -10244,7 +10244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofcommerce-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofcommerce-f377ee.jpg" }, { "if": { @@ -10263,7 +10263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofcyprus-524a78.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofcyprus-524a78.png" }, { "if": { @@ -10279,7 +10279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofhawaii-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofhawaii-93d3a2.jpg" }, { "if": { @@ -10295,7 +10295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofindia-83b186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofindia-83b186.jpg" }, { "if": { @@ -10311,7 +10311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofireland-e569c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofireland-e569c1.jpg" }, { "if": { @@ -10327,7 +10327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofmaharashtra-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofmaharashtra-ad0527.png" }, { "if": { @@ -10343,7 +10343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofnewhampshire-e19454.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofnewhampshire-e19454.jpg" }, { "if": { @@ -10359,7 +10359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofnewzealand-6bd214.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofnewzealand-6bd214.jpg" }, { "if": { @@ -10375,7 +10375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofscotland-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofscotland-396707.jpg" }, { "if": { @@ -10391,7 +10391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofthesierra-f9d961.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofthesierra-f9d961.png" }, { "if": { @@ -10407,7 +10407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankozk-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankozk-93d3a2.jpg" }, { "if": { @@ -10423,7 +10423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankpekao-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankpekao-53bcca.jpg" }, { "if": { @@ -10439,7 +10439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankpermata-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankpermata-16476e.jpg" }, { "if": { @@ -10455,14 +10455,12 @@ } ] }, - "then": "./assets/data/nsi/logos/bankrakyat-bc168a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankrakyat-bc168a.png" }, { "if": { "and": [ "amenity=atm", - "official_name:kk=«Bank RBK» АҚ", - "official_name:ru=АО «Bank RBK»", { "or": [ "brand=Bank RBK", @@ -10470,13 +10468,15 @@ "name:en=Bank RBK", "name:kk=РБК Банкі", "name:ru=Банк РБК", + "official_name:kk=«Bank RBK» АҚ", + "official_name:ru=АО «Bank RBK»", "operator=Bank RBK", "operator:wikidata=Q21843640" ] } ] }, - "then": "./assets/data/nsi/logos/bankrbk-228817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankrbk-228817.jpg" }, { "if": { @@ -10493,7 +10493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksimpanannasional-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banksimpanannasional-bc168a.jpg" }, { "if": { @@ -10510,7 +10510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksyariahindonesia-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banksyariahindonesia-16476e.jpg" }, { "if": { @@ -10526,7 +10526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bank99-fc110f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bank99-fc110f.jpg" }, { "if": { @@ -10543,7 +10543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankakombetaretregtare-038d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankakombetaretregtare-038d28.jpg" }, { "if": { @@ -10559,7 +10559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankakovanica-4d8c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankakovanica-4d8c03.jpg" }, { "if": { @@ -10575,7 +10575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankia-b48e80.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bankia-b48e80.svg" }, { "if": { @@ -10591,7 +10591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankinter-3f27ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankinter-3f27ef.png" }, { "if": { @@ -10607,7 +10607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankwest-8509c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankwest-8509c1.jpg" }, { "if": { @@ -10623,7 +10623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankwest-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankwest-93d3a2.jpg" }, { "if": { @@ -10639,7 +10639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bannerbank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/bannerbank-93d3a2.png" }, { "if": { @@ -10655,7 +10655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banorte-8c8932.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banorte-8c8932.jpg" }, { "if": { @@ -10671,7 +10671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banpais-925355.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banpais-925355.jpg" }, { "if": { @@ -10687,7 +10687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banqueatlantique-d61c57.png" + "then": "https://data.mapcomplete.org/nsi//logos/banqueatlantique-d61c57.png" }, { "if": { @@ -10710,7 +10710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaledefribourg-5f720b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaledefribourg-5f720b.svg" }, { "if": { @@ -10727,7 +10727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaledegeneve-097ff6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaledegeneve-097ff6.svg" }, { "if": { @@ -10744,7 +10744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaledujura-eaf18e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaledujura-eaf18e.svg" }, { "if": { @@ -10767,7 +10767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaleduvalais-79e460.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaleduvalais-79e460.svg" }, { "if": { @@ -10784,7 +10784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaleneuchateloise-d187a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaleneuchateloise-d187a2.jpg" }, { "if": { @@ -10801,7 +10801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonalevaudoise-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonalevaudoise-ba97f3.svg" }, { "if": { @@ -10817,7 +10817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquedefrance-134295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquedefrance-134295.jpg" }, { "if": { @@ -10833,7 +10833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquelaurentienne-ddac74.png" + "then": "https://data.mapcomplete.org/nsi//logos/banquelaurentienne-ddac74.png" }, { "if": { @@ -10849,15 +10849,12 @@ } ] }, - "then": "./assets/data/nsi/logos/banquemisr-443494.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquemisr-443494.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banque Nationale du Canada", - "official_name:en=National Bank of Canada", - "official_name:fr=Banque Nationale du Canada", "short_name:en=NBC", "short_name:fr=BNC", { @@ -10868,13 +10865,16 @@ "brand:wikidata=Q634298", "name:en=National Bank", "name:fr=Banque Nationale", + "official_name=Banque Nationale du Canada", + "official_name:en=National Bank of Canada", + "official_name:fr=Banque Nationale du Canada", "operator=Banque Nationale", "operator:wikidata=Q634298" ] } ] }, - "then": "./assets/data/nsi/logos/nationalbank-de364b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbank-de364b.jpg" }, { "if": { @@ -10890,7 +10890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquepalatine-2f8fb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/banquepalatine-2f8fb0.png" }, { "if": { @@ -10906,7 +10906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquepopulaire-134295.png" + "then": "https://data.mapcomplete.org/nsi//logos/banquepopulaire-134295.png" }, { "if": { @@ -10926,7 +10926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquepopulaire-2e486a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquepopulaire-2e486a.jpg" }, { "if": { @@ -10942,7 +10942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquepopulairegrandouest-2f8fb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquepopulairegrandouest-2f8fb0.jpg" }, { "if": { @@ -10958,7 +10958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banregio-8c8932.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banregio-8c8932.jpg" }, { "if": { @@ -10974,7 +10974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banrisul-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banrisul-a02d2b.jpg" }, { "if": { @@ -10990,7 +10990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banrural-33bba5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banrural-33bba5.jpg" }, { "if": { @@ -11006,7 +11006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barclays-53ff29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barclays-53ff29.jpg" }, { "if": { @@ -11023,7 +11023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basellandschaftlichekantonalbank-ba97f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/basellandschaftlichekantonalbank-ba97f3.png" }, { "if": { @@ -11040,7 +11040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baslerkantonalbank-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/baslerkantonalbank-ba97f3.svg" }, { "if": { @@ -11056,24 +11056,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bawagpsk-fc110f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bawagpsk-fc110f.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=Branch Banking and Trust Company", { "or": [ "brand=BB&T", "brand:wikidata=Q95984154", + "official_name=Branch Banking and Trust Company", "operator=BB&T", "operator:wikidata=Q95984154" ] } ] }, - "then": "./assets/data/nsi/logos/bbandt-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbandt-93d3a2.jpg" }, { "if": { @@ -11089,42 +11089,42 @@ } ] }, - "then": "./assets/data/nsi/logos/bbbank-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbbank-fb8bf5.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Bilbao Vizcaya Argentaria", { "or": [ "brand=BBVA", "brand:wikidata=Q806189", + "official_name=Banco Bilbao Vizcaya Argentaria", "operator=BBVA", "operator:wikidata=Q806189" ] } ] }, - "then": "./assets/data/nsi/logos/bbva-9f580f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bbva-9f580f.png" }, { "if": { "and": [ "amenity=atm", - "official_name=BBVA USA", { "or": [ "alt_name=BBVA Compass", "brand=BBVA", "brand:wikidata=Q4835088", + "official_name=BBVA USA", "operator=BBVA", "operator:wikidata=Q4835088" ] } ] }, - "then": "./assets/data/nsi/logos/bbva-93d3a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bbva-93d3a2.svg" }, { "if": { @@ -11140,7 +11140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbvaargentina-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbvaargentina-b67a7c.jpg" }, { "if": { @@ -11156,7 +11156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbvamexico-8c8932.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbvamexico-8c8932.jpg" }, { "if": { @@ -11172,7 +11172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbvaperu-98e68c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bbvaperu-98e68c.png" }, { "if": { @@ -11188,30 +11188,29 @@ } ] }, - "then": "./assets/data/nsi/logos/bbvaprovincial-f50cd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbvaprovincial-f50cd1.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banca di Credito Cooperativo di Roma", { "or": [ "brand=BCC Roma", "brand:wikidata=Q25060394", + "official_name=Banca di Credito Cooperativo di Roma", "operator=BCC Roma", "operator:wikidata=Q25060394" ] } ] }, - "then": "./assets/data/nsi/logos/bccroma-b6231a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bccroma-b6231a.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banque et Caisse d'Épargne de l'État", { "or": [ "alt_name=S-Bank", @@ -11219,64 +11218,65 @@ "alt_name:lb=Spuerkeess", "brand=BCEE", "brand:wikidata=Q668996", + "official_name=Banque et Caisse d'Épargne de l'État", "operator=BCEE", "operator:wikidata=Q668996" ] } ] }, - "then": "./assets/data/nsi/logos/bcee-8c9eca.png" + "then": "https://data.mapcomplete.org/nsi//logos/bcee-8c9eca.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de Crédito e Inversiones", { "or": [ "brand=BCI", "brand:wikidata=Q2882083", + "official_name=Banco de Crédito e Inversiones", "operator=BCI", "operator:wikidata=Q2882083" ] } ] }, - "then": "./assets/data/nsi/logos/bci-914056.png" + "then": "https://data.mapcomplete.org/nsi//logos/bci-914056.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Comercial e de Investimentos", { "or": [ "brand=BCI", "brand:wikidata=Q9645132", + "official_name=Banco Comercial e de Investimentos", "operator=BCI", "operator:wikidata=Q9645132" ] } ] }, - "then": "./assets/data/nsi/logos/bci-36ddf9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bci-36ddf9.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de Crédito de Bolivia", { "or": [ "brand=BCP", "brand:wikidata=Q16826675", + "official_name=Banco de Crédito de Bolivia", "operator=BCP", "operator:wikidata=Q16826675" ] } ] }, - "then": "./assets/data/nsi/logos/bcp-caae63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcp-caae63.jpg" }, { "if": { @@ -11292,113 +11292,113 @@ } ] }, - "then": "./assets/data/nsi/logos/bcp-2f8fb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/bcp-2f8fb0.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de Crédito del Perú", { "or": [ "brand=BCP", "brand:wikidata=Q4854124", + "official_name=Banco de Crédito del Perú", "operator=BCP", "operator:wikidata=Q4854124" ] } ] }, - "then": "./assets/data/nsi/logos/bcp-98e68c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcp-98e68c.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banca Comercială Română", { "or": [ "brand=BCR", "brand:wikidata=Q806149", + "official_name=Banca Comercială Română", "operator=BCR", "operator:wikidata=Q806149" ] } ] }, - "then": "./assets/data/nsi/logos/bcr-1de605.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcr-1de605.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de Costa Rica", { "or": [ "brand=BCR", "brand:wikidata=Q6951632", + "official_name=Banco de Costa Rica", "operator=BCR", "operator:wikidata=Q6951632" ] } ] }, - "then": "./assets/data/nsi/logos/bcr-5cb8d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcr-5cb8d1.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Business Development Bank of Canada", { "or": [ "brand=BDC", "brand:wikidata=Q2883027", + "official_name=Business Development Bank of Canada", "operator=BDC", "operator:wikidata=Q2883027" ] } ] }, - "then": "./assets/data/nsi/logos/bdc-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdc-ddac74.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=بنك التنمية المحلية", - "official_name:ar=بنك التنمية المحلية", - "official_name:fr=Banque de Développement Local", { "or": [ "brand=بنك التنمية المحلية", "brand:ar=بنك التنمية المحلية", "brand:fr=Banque de Développement Local", "brand:wikidata=Q64410371", + "official_name=بنك التنمية المحلية", + "official_name:ar=بنك التنمية المحلية", + "official_name:fr=Banque de Développement Local", "operator=بنك التنمية المحلية", "operator:wikidata=Q64410371" ] } ] }, - "then": "./assets/data/nsi/logos/cebee2-f957e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cebee2-f957e0.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banque du Développement du Mali", { "or": [ "brand=BDM", "brand:wikidata=Q2883022", + "official_name=Banque du Développement du Mali", "operator=BDM", "operator:wikidata=Q2883022" ] } ] }, - "then": "./assets/data/nsi/logos/bdm-3ba76d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdm-3ba76d.jpg" }, { "if": { @@ -11414,7 +11414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bdmbanca-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdmbanca-64483a.jpg" }, { "if": { @@ -11431,7 +11431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bdo-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdo-f377ee.jpg" }, { "if": { @@ -11447,7 +11447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bdonetworkbank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdonetworkbank-f377ee.jpg" }, { "if": { @@ -11467,7 +11467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bea-f957e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bea-f957e0.jpg" }, { "if": { @@ -11483,7 +11483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/becu-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/becu-93d3a2.png" }, { "if": { @@ -11499,7 +11499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belfius-8a4913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belfius-8a4913.jpg" }, { "if": { @@ -11515,7 +11515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bendigobank-8509c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bendigobank-8509c1.jpg" }, { "if": { @@ -11531,29 +11531,29 @@ } ] }, - "then": "./assets/data/nsi/logos/beobank-8a4913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beobank-8a4913.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bereke Bank JSC", - "official_name:en=Bereke Bank JSC", - "official_name:kk=«Bereke Bank» АҚ", - "official_name:ru=АО «Bereke Bank»", { "or": [ "brand=Bereke Bank", "brand:wikidata=Q4153367", "name:en=Bereke Bank", "name:ru=Береке Банк", + "official_name=Bereke Bank JSC", + "official_name:en=Bereke Bank JSC", + "official_name:kk=«Bereke Bank» АҚ", + "official_name:ru=АО «Bereke Bank»", "operator=Bereke Bank", "operator:wikidata=Q4153367" ] } ] }, - "then": "./assets/data/nsi/logos/berekebank-228817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berekebank-228817.jpg" }, { "if": { @@ -11569,7 +11569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinervolksbank-fb8bf5.png" + "then": "https://data.mapcomplete.org/nsi//logos/berlinervolksbank-fb8bf5.png" }, { "if": { @@ -11592,7 +11592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bernerkantonalbank-ba97f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bernerkantonalbank-ba97f3.jpg" }, { "if": { @@ -11608,24 +11608,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bglbnpparibas-8c9eca.png" + "then": "https://data.mapcomplete.org/nsi//logos/bglbnpparibas-8c9eca.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banque internationale arabe de Tunisie", { "or": [ "brand=BIAT", "brand:wikidata=Q690739", + "official_name=Banque internationale arabe de Tunisie", "operator=BIAT", "operator:wikidata=Q690739" ] } ] }, - "then": "./assets/data/nsi/logos/biat-74adc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biat-74adc2.jpg" }, { "if": { @@ -11641,26 +11641,26 @@ } ] }, - "then": "./assets/data/nsi/logos/bicici-b783ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bicici-b783ed.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Ngân hàng Đầu tư và Phát triển Việt Nam", - "official_name:en=Bank for Investment and Development of Vietnam", - "official_name:vi=Ngân hàng Đầu tư và Phát triển Việt Nam", { "or": [ "brand=BIDV", "brand:wikidata=Q1003180", + "official_name=Ngân hàng Đầu tư và Phát triển Việt Nam", + "official_name:en=Bank for Investment and Development of Vietnam", + "official_name:vi=Ngân hàng Đầu tư và Phát triển Việt Nam", "operator=BIDV", "operator:wikidata=Q1003180" ] } ] }, - "then": "./assets/data/nsi/logos/bidv-cfdb1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bidv-cfdb1a.jpg" }, { "if": { @@ -11676,41 +11676,41 @@ } ] }, - "then": "./assets/data/nsi/logos/bidvestbank-997829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bidvestbank-997829.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banque Internationale à Luxembourg", { "or": [ "brand=BIL", "brand:wikidata=Q2883404", + "official_name=Banque Internationale à Luxembourg", "operator=BIL", "operator:wikidata=Q2883404" ] } ] }, - "then": "./assets/data/nsi/logos/bil-8c9eca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bil-8c9eca.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank für Kärnten und Steiermark", { "or": [ "brand=BKS Bank", "brand:wikidata=Q796136", + "official_name=Bank für Kärnten und Steiermark", "operator=BKS Bank", "operator:wikidata=Q796136" ] } ] }, - "then": "./assets/data/nsi/logos/bksbank-fc110f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bksbank-fc110f.svg" }, { "if": { @@ -11726,15 +11726,12 @@ } ] }, - "then": "./assets/data/nsi/logos/bluefederalcreditunion-7e60b6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bluefederalcreditunion-7e60b6.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=البنك المغربي للتجارة الخارجية", - "official_name:ar=البنك المغربي للتجارة الخارجية", - "official_name:en=Moroccan Bank of Foreign Commerce", { "or": [ "brand=BMCE Bank", @@ -11743,13 +11740,16 @@ "brand:wikidata=Q2300433", "name:ar=البنك المغربي للتجارة الخارجية", "name:en=BMCE Bank", + "official_name=البنك المغربي للتجارة الخارجية", + "official_name:ar=البنك المغربي للتجارة الخارجية", + "official_name:en=Moroccan Bank of Foreign Commerce", "operator=BMCE Bank", "operator:wikidata=Q2300433" ] } ] }, - "then": "./assets/data/nsi/logos/bmcebank-c2e240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmcebank-c2e240.jpg" }, { "if": { @@ -11769,41 +11769,41 @@ } ] }, - "then": "./assets/data/nsi/logos/bmci-c2e240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmci-c2e240.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Mare Nostrum", { "or": [ "brand=BMN", "brand:wikidata=Q3754900", + "official_name=Banco Mare Nostrum", "operator=BMN", "operator:wikidata=Q3754900" ] } ] }, - "then": "./assets/data/nsi/logos/bmn-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmn-b48e80.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank of Montreal", { "or": [ "brand=BMO", "brand:wikidata=Q806693", + "official_name=Bank of Montreal", "operator=BMO", "operator:wikidata=Q806693" ] } ] }, - "then": "./assets/data/nsi/logos/bmo-ddac74.png" + "then": "https://data.mapcomplete.org/nsi//logos/bmo-ddac74.png" }, { "if": { @@ -11819,24 +11819,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bmo-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/bmo-93d3a2.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banque nationale d'Algérie", { "or": [ "brand=BNA", "brand:wikidata=Q2883410", + "official_name=Banque nationale d'Algérie", "operator=BNA", "operator:wikidata=Q2883410" ] } ] }, - "then": "./assets/data/nsi/logos/bna-f957e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bna-f957e0.jpg" }, { "if": { @@ -11852,58 +11852,58 @@ } ] }, - "then": "./assets/data/nsi/logos/bna-74adc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bna-74adc2.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banque Nationale de Développement Agricole", { "or": [ "brand=BNDA", "brand:wikidata=Q30594734", + "official_name=Banque Nationale de Développement Agricole", "operator=BNDA", "operator:wikidata=Q30594734" ] } ] }, - "then": "./assets/data/nsi/logos/bnda-3ba76d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnda-3ba76d.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank Negara Indonesia", { "or": [ "brand=BNI", "brand:wikidata=Q2882611", + "official_name=Bank Negara Indonesia", "operator=BNI", "operator:wikidata=Q2882611" ] } ] }, - "then": "./assets/data/nsi/logos/bni-d4d2b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bni-d4d2b6.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banca Nazionale del Lavoro", { "or": [ "brand=BNL", "brand:wikidata=Q2201225", + "official_name=Banca Nazionale del Lavoro", "operator=BNL", "operator:wikidata=Q2201225" ] } ] }, - "then": "./assets/data/nsi/logos/bnl-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bnl-64483a.png" }, { "if": { @@ -11919,7 +11919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnpparibas-2d9890.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bnpparibas-2d9890.svg" }, { "if": { @@ -11935,7 +11935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnpparibasbankpolska-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnpparibasbankpolska-53bcca.jpg" }, { "if": { @@ -11951,109 +11951,109 @@ } ] }, - "then": "./assets/data/nsi/logos/bnpparibasfortis-8a4913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnpparibasfortis-8a4913.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank of China", { "or": [ "brand=BOC", "brand:wikidata=Q790068", + "official_name=Bank of China", "operator=BOC", "operator:wikidata=Q790068" ] } ] }, - "then": "./assets/data/nsi/logos/boc-d5d850.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boc-d5d850.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank of Melbourne", { "or": [ "brand=BOM", "brand:wikidata=Q4856151", + "official_name=Bank of Melbourne", "operator=BOM", "operator:wikidata=Q4856151" ] } ] }, - "then": "./assets/data/nsi/logos/bom-8509c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bom-8509c1.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank of Queensland", { "or": [ "brand=BOQ", "brand:wikidata=Q4856173", + "official_name=Bank of Queensland", "operator=BOQ", "operator:wikidata=Q4856173" ] } ] }, - "then": "./assets/data/nsi/logos/boq-8509c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boq-8509c1.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco de Poupança e Crédito", { "or": [ "brand=BPC", "brand:wikidata=Q4854132", + "official_name=Banco de Poupança e Crédito", "operator=BPC", "operator:wikidata=Q4854132" ] } ] }, - "then": "./assets/data/nsi/logos/bpc-d8c228.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpc-d8c228.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banca Popolare dell'Emilia Romagna", { "or": [ "brand=BPER Banca", "brand:wikidata=Q806167", + "official_name=Banca Popolare dell'Emilia Romagna", "operator=BPER Banca", "operator:wikidata=Q806167" ] } ] }, - "then": "./assets/data/nsi/logos/bperbanca-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bperbanca-64483a.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank of the Philippine Islands", { "or": [ "brand=BPI", "brand:wikidata=Q2501256", + "official_name=Bank of the Philippine Islands", "operator=BPI", "operator:wikidata=Q2501256" ] } ] }, - "then": "./assets/data/nsi/logos/bpi-5ced8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpi-5ced8e.jpg" }, { "if": { @@ -12069,7 +12069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bradesco-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bradesco-a02d2b.jpg" }, { "if": { @@ -12085,96 +12085,96 @@ } ] }, - "then": "./assets/data/nsi/logos/brd-1de605.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brd-1de605.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banque régionale d'escompte et de dépôts", { "or": [ "brand=BRED", "brand:wikidata=Q2877455", + "official_name=Banque régionale d'escompte et de dépôts", "operator=BRED", "operator:wikidata=Q2877455" ] } ] }, - "then": "./assets/data/nsi/logos/bred-134295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bred-134295.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank Rakyat Indonesia", { "or": [ "brand=BRI", "brand:wikidata=Q623042", + "official_name=Bank Rakyat Indonesia", "operator=BRI", "operator:wikidata=Q623042" ] } ] }, - "then": "./assets/data/nsi/logos/bri-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bri-16476e.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank Tabungan Negara", { "or": [ "brand=BTN", "brand:en=BTN", "brand:id=BTN", "brand:wikidata=Q12474534", + "official_name=Bank Tabungan Negara", "operator=BTN", "operator:wikidata=Q12474534" ] } ] }, - "then": "./assets/data/nsi/logos/btn-16476e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/btn-16476e.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank BTPN", { "or": [ "brand=BTPN", "brand:en=BTPN", "brand:id=BTPN", "brand:wikidata=Q12474535", + "official_name=Bank BTPN", "operator=BTPN", "operator:wikidata=Q12474535" ] } ] }, - "then": "./assets/data/nsi/logos/btpn-16476e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/btpn-16476e.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank für Tirol und Vorarlberg", { "or": [ "brand=BTV", "brand:wikidata=Q806665", + "official_name=Bank für Tirol und Vorarlberg", "operator=BTV", "operator:wikidata=Q806665" ] } ] }, - "then": "./assets/data/nsi/logos/btv-8f6c73.png" + "then": "https://data.mapcomplete.org/nsi//logos/btv-8f6c73.png" }, { "if": { @@ -12190,7 +12190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budapestbank-681c6d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/budapestbank-681c6d.svg" }, { "if": { @@ -12206,7 +12206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buseybank-25700e.png" + "then": "https://data.mapcomplete.org/nsi//logos/buseybank-25700e.png" }, { "if": { @@ -12222,7 +12222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bwbank-fb8bf5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bwbank-fb8bf5.png" }, { "if": { @@ -12238,7 +12238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bylinebank-ce0e38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bylinebank-ce0e38.jpg" }, { "if": { @@ -12254,7 +12254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cadencebank-4b4e36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cadencebank-4b4e36.jpg" }, { "if": { @@ -12270,7 +12270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caissedepargne-2f6feb.png" + "then": "https://data.mapcomplete.org/nsi//logos/caissedepargne-2f6feb.png" }, { "if": { @@ -12286,7 +12286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixaeconomicafederal-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixaeconomicafederal-a02d2b.jpg" }, { "if": { @@ -12303,7 +12303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixageraldedepositos-49554e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixageraldedepositos-49554e.jpg" }, { "if": { @@ -12320,7 +12320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixaontinyent-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixaontinyent-b48e80.jpg" }, { "if": { @@ -12336,7 +12336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixapopular-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixapopular-b48e80.jpg" }, { "if": { @@ -12352,7 +12352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixabank-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixabank-b48e80.jpg" }, { "if": { @@ -12368,7 +12368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajaespana-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cajaespana-b48e80.jpg" }, { "if": { @@ -12384,7 +12384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajarural-b48e80.png" + "then": "https://data.mapcomplete.org/nsi//logos/cajarural-b48e80.png" }, { "if": { @@ -12400,7 +12400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajaruraldearagon-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cajaruraldearagon-b48e80.jpg" }, { "if": { @@ -12416,7 +12416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajaruraldejaen-b48e80.png" + "then": "https://data.mapcomplete.org/nsi//logos/cajaruraldejaen-b48e80.png" }, { "if": { @@ -12432,7 +12432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajamar-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cajamar-b48e80.jpg" }, { "if": { @@ -12448,7 +12448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajasur-b48e80.png" + "then": "https://data.mapcomplete.org/nsi//logos/cajasur-b48e80.png" }, { "if": { @@ -12465,7 +12465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calbank-843442.png" + "then": "https://data.mapcomplete.org/nsi//logos/calbank-843442.png" }, { "if": { @@ -12481,7 +12481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiacoastcreditunion-f9d961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiacoastcreditunion-f9d961.jpg" }, { "if": { @@ -12497,7 +12497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camdennationalbank-9ae6ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camdennationalbank-9ae6ff.jpg" }, { "if": { @@ -12513,7 +12513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadianwesternbank-ddac74.png" + "then": "https://data.mapcomplete.org/nsi//logos/canadianwesternbank-ddac74.png" }, { "if": { @@ -12529,7 +12529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canandaiguanationalbankandtrust-85c59a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canandaiguanationalbankandtrust-85c59a.jpg" }, { "if": { @@ -12557,7 +12557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canarabank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canarabank-ad0527.jpg" }, { "if": { @@ -12573,7 +12573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalbank-5df443.png" + "then": "https://data.mapcomplete.org/nsi//logos/capitalbank-5df443.png" }, { "if": { @@ -12589,7 +12589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalone-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalone-93d3a2.jpg" }, { "if": { @@ -12605,7 +12605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalsmallfinancebank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalsmallfinancebank-ad0527.jpg" }, { "if": { @@ -12621,7 +12621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitecbank-997829.svg" + "then": "https://data.mapcomplete.org/nsi//logos/capitecbank-997829.svg" }, { "if": { @@ -12637,7 +12637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casden-134295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casden-134295.jpg" }, { "if": { @@ -12653,7 +12653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catalunyacaixa-b48e80.svg" + "then": "https://data.mapcomplete.org/nsi//logos/catalunyacaixa-b48e80.svg" }, { "if": { @@ -12669,7 +12669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cathaybank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cathaybank-93d3a2.jpg" }, { "if": { @@ -12685,7 +12685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cbao-bac240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cbao-bac240.jpg" }, { "if": { @@ -12701,7 +12701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccf-2f8fb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ccf-2f8fb0.jpg" }, { "if": { @@ -12717,7 +12717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cecbank-1de605.png" + "then": "https://data.mapcomplete.org/nsi//logos/cecbank-1de605.png" }, { "if": { @@ -12733,16 +12733,12 @@ } ] }, - "then": "./assets/data/nsi/logos/centennialbank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/centennialbank-93d3a2.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank CenterCredit JSC", - "official_name:en=Bank CenterCredit JSC", - "official_name:kk=«Банк ЦентрКредит» АҚ", - "official_name:ru=АО «Банк ЦентрКредит»", { "or": [ "brand=Bank CenterCredit", @@ -12750,13 +12746,17 @@ "name:en=Bank CenterCredit", "name:kk=Банк ЦентрКредит", "name:ru=Банк ЦентрКредит", + "official_name=Bank CenterCredit JSC", + "official_name:en=Bank CenterCredit JSC", + "official_name:kk=«Банк ЦентрКредит» АҚ", + "official_name:ru=АО «Банк ЦентрКредит»", "operator=Bank CenterCredit", "operator:wikidata=Q806624" ] } ] }, - "then": "./assets/data/nsi/logos/bankcentercredit-228817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankcentercredit-228817.jpg" }, { "if": { @@ -12772,7 +12772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralbank-5249e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralbank-5249e2.png" }, { "if": { @@ -12788,7 +12788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralbankofindia-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralbankofindia-ad0527.jpg" }, { "if": { @@ -12804,7 +12804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskasporitelna-767782.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceskasporitelna-767782.jpg" }, { "if": { @@ -12820,7 +12820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chase-83b186.png" + "then": "https://data.mapcomplete.org/nsi//logos/chase-83b186.png" }, { "if": { @@ -12836,7 +12836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinabanksavings-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinabanksavings-f377ee.jpg" }, { "if": { @@ -12853,7 +12853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaconstructionbank-3780b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-3780b1.jpg" }, { "if": { @@ -12869,7 +12869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinabank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinabank-f377ee.jpg" }, { "if": { @@ -12885,7 +12885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cibbank-681c6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cibbank-681c6d.jpg" }, { "if": { @@ -12901,7 +12901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cibc-ddac74.png" + "then": "https://data.mapcomplete.org/nsi//logos/cibc-ddac74.png" }, { "if": { @@ -12917,7 +12917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cic-2f8fb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cic-2f8fb0.png" }, { "if": { @@ -12937,7 +12937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cihbank-c2e240.png" + "then": "https://data.mapcomplete.org/nsi//logos/cihbank-c2e240.png" }, { "if": { @@ -12953,7 +12953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cimbbank-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cimbbank-bc168a.jpg" }, { "if": { @@ -12969,7 +12969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cimbniaga-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cimbniaga-16476e.jpg" }, { "if": { @@ -12988,7 +12988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citadelebank-ea222c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citadelebank-ea222c.jpg" }, { "if": { @@ -13005,7 +13005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citibank-3f6fd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citibank-3f6fd4.jpg" }, { "if": { @@ -13022,44 +13022,44 @@ } ] }, - "then": "./assets/data/nsi/logos/citizensbank-0bad27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citizensbank-0bad27.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Citizens National Bank", "short_name=Citizens", { "or": [ "alt_name=Citizens Bank of Kentucky", "brand=Citizens Bank", "brand:wikidata=Q5122711", + "official_name=Citizens National Bank", "operator=Citizens Bank", "operator:wikidata=Q5122711" ] } ] }, - "then": "./assets/data/nsi/logos/citizensbank-a1f4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/citizensbank-a1f4cf.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Citizens Bank International Ltd.", "short_name=Citizens", { "or": [ "brand=Citizens Bank International", "brand:wikidata=Q13186934", + "official_name=Citizens Bank International Ltd.", "operator=Citizens Bank International", "operator:wikidata=Q13186934" ] } ] }, - "then": "./assets/data/nsi/logos/citizensbankinternational-1b6814.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citizensbankinternational-1b6814.jpg" }, { "if": { @@ -13075,24 +13075,24 @@ } ] }, - "then": "./assets/data/nsi/logos/citynationalbank-7f15af.png" + "then": "https://data.mapcomplete.org/nsi//logos/citynationalbank-7f15af.png" }, { "if": { "and": [ "amenity=atm", - "official_name=City National Bank of Florida", { "or": [ "brand=City National Bank", "brand:wikidata=Q16958644", + "official_name=City National Bank of Florida", "operator=City National Bank", "operator:wikidata=Q16958644" ] } ] }, - "then": "./assets/data/nsi/logos/citynationalbank-29a210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citynationalbank-29a210.jpg" }, { "if": { @@ -13108,7 +13108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citynationalbank-12b850.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citynationalbank-12b850.jpg" }, { "if": { @@ -13124,7 +13124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/civibank-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/civibank-64483a.png" }, { "if": { @@ -13146,24 +13146,40 @@ } ] }, - "then": "./assets/data/nsi/logos/cnep-f957e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cnep-f957e0.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Coast Capital Savings Federal Credit Union", { "or": [ "brand=Coast Capital Savings", "brand:wikidata=Q5138088", + "official_name=Coast Capital Savings Federal Credit Union", "operator=Coast Capital Savings", "operator:wikidata=Q5138088" ] } ] }, - "then": "./assets/data/nsi/logos/coastcapitalsavings-ddac74.png" + "then": "https://data.mapcomplete.org/nsi//logos/coastcapitalsavings-ddac74.png" + }, + { + "if": { + "and": [ + "amenity=atm", + { + "or": [ + "brand=Columbia Bank", + "brand:wikidata=Q62084096", + "operator=Columbia Bank", + "operator:wikidata=Q62084096" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/columbiabank-f73770.jpg" }, { "if": { @@ -13179,7 +13195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comericabank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comericabank-93d3a2.jpg" }, { "if": { @@ -13199,7 +13215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cominbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cominbank-968b58.jpg" }, { "if": { @@ -13215,7 +13231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commercebank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/commercebank-93d3a2.png" }, { "if": { @@ -13231,7 +13247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commercialbankofceylon-960663.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commercialbankofceylon-960663.jpg" }, { "if": { @@ -13249,7 +13265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commercialbankofethiopia-b796ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commercialbankofethiopia-b796ca.jpg" }, { "if": { @@ -13265,7 +13281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commerzbank-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commerzbank-fb8bf5.jpg" }, { "if": { @@ -13281,7 +13297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthbank-83b186.png" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthbank-83b186.png" }, { "if": { @@ -13297,7 +13313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communitybank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communitybank-93d3a2.jpg" }, { "if": { @@ -13313,7 +13329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityfirstcreditunion-1c09a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communityfirstcreditunion-1c09a7.jpg" }, { "if": { @@ -13329,7 +13345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumerscreditunion-09683f.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumerscreditunion-09683f.png" }, { "if": { @@ -13345,7 +13361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumerscreditunion-9aa6fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumerscreditunion-9aa6fc.png" }, { "if": { @@ -13367,7 +13383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conversebank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conversebank-056506.jpg" }, { "if": { @@ -13383,7 +13399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corporationbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/corporationbank-ad0527.jpg" }, { "if": { @@ -13401,7 +13417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpa-f957e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cpa-f957e0.png" }, { "if": { @@ -13417,24 +13433,24 @@ } ] }, - "then": "./assets/data/nsi/logos/crdbbank-14cdb2.png" + "then": "https://data.mapcomplete.org/nsi//logos/crdbbank-14cdb2.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Credito Emiliano", { "or": [ "brand=Credem", "brand:wikidata=Q3696881", + "official_name=Credito Emiliano", "operator=Credem", "operator:wikidata=Q3696881" ] } ] }, - "then": "./assets/data/nsi/logos/credem-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/credem-64483a.png" }, { "if": { @@ -13450,7 +13466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/credicoop-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/credicoop-b67a7c.jpg" }, { "if": { @@ -13466,7 +13482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditagricole-bcd54e.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditagricole-bcd54e.png" }, { "if": { @@ -13486,7 +13502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/77b207-c2e240.png" + "then": "https://data.mapcomplete.org/nsi//logos/77b207-c2e240.png" }, { "if": { @@ -13502,7 +13518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditagricole-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditagricole-64483a.png" }, { "if": { @@ -13518,7 +13534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditcooperatif-2f8fb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creditcooperatif-2f8fb0.jpg" }, { "if": { @@ -13538,7 +13554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baf583-c2e240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baf583-c2e240.jpg" }, { "if": { @@ -13554,7 +13570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditdunord-2f8fb0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/creditdunord-2f8fb0.svg" }, { "if": { @@ -13570,7 +13586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditmaritime-134295.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditmaritime-134295.png" }, { "if": { @@ -13586,7 +13602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditmutuel-2f6feb.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditmutuel-2f6feb.png" }, { "if": { @@ -13602,7 +13618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditmutueldebretagne-2f8fb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditmutueldebretagne-2f8fb0.png" }, { "if": { @@ -13618,7 +13634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditsuisse-ba97f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creditsuisse-ba97f3.jpg" }, { "if": { @@ -13634,7 +13650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditoagricola-9411e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditoagricola-9411e1.png" }, { "if": { @@ -13650,7 +13666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditwestbank-a0e164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creditwestbank-a0e164.jpg" }, { "if": { @@ -13666,7 +13682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crelan-8a4913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crelan-8a4913.jpg" }, { "if": { @@ -13682,7 +13698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crnogorskakomercijalnabanka-0bf2d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crnogorskakomercijalnabanka-0bf2d9.jpg" }, { "if": { @@ -13698,24 +13714,24 @@ } ] }, - "then": "./assets/data/nsi/logos/croatiabanka-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/croatiabanka-4d8c03.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Catholic Syrian Bank", { "or": [ "brand=CSB Bank", "brand:wikidata=Q5053244", + "official_name=Catholic Syrian Bank", "operator=CSB Bank", "operator:wikidata=Q5053244" ] } ] }, - "then": "./assets/data/nsi/logos/csbbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csbbank-ad0527.jpg" }, { "if": { @@ -13731,7 +13747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csob-58e2e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csob-58e2e6.jpg" }, { "if": { @@ -13747,7 +13763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danskebank-a2bade.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/danskebank-a2bade.jpg" }, { "if": { @@ -13763,7 +13779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davivienda-ad7b0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/davivienda-ad7b0d.jpg" }, { "if": { @@ -13779,7 +13795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dayspringbank-e62620.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dayspringbank-e62620.jpg" }, { "if": { @@ -13795,7 +13811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbank-e5108a.png" + "then": "https://data.mapcomplete.org/nsi//logos/dbank-e5108a.png" }, { "if": { @@ -13811,7 +13827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbp-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dbp-f377ee.jpg" }, { "if": { @@ -13827,7 +13843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbsbankindia-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/dbsbankindia-ad0527.png" }, { "if": { @@ -13843,7 +13859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/degussabank-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/degussabank-fb8bf5.jpg" }, { "if": { @@ -13859,7 +13875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denizbank-2f6feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/denizbank-2f6feb.jpg" }, { "if": { @@ -13875,7 +13891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/desjardins-ddac74.png" + "then": "https://data.mapcomplete.org/nsi//logos/desjardins-ddac74.png" }, { "if": { @@ -13891,7 +13907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebank-83b186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebank-83b186.jpg" }, { "if": { @@ -13907,7 +13923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhanlaxmibank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/dhanlaxmibank-ad0527.png" }, { "if": { @@ -13924,7 +13940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/digitalfederalcreditunion-a6ea74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/digitalfederalcreditunion-a6ea74.jpg" }, { "if": { @@ -13940,7 +13956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dnb-3693fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dnb-3693fd.jpg" }, { "if": { @@ -13956,7 +13972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollarbank-425d54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dollarbank-425d54.jpg" }, { "if": { @@ -13978,7 +13994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dubaiislamicbank-4e81d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dubaiislamicbank-4e81d9.jpg" }, { "if": { @@ -13998,7 +14014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastwestbank-c14adf.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastwestbank-c14adf.png" }, { "if": { @@ -14014,7 +14030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easternbank-a6ea74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easternbank-a6ea74.jpg" }, { "if": { @@ -14030,7 +14046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastwestunibank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastwestunibank-f377ee.jpg" }, { "if": { @@ -14047,7 +14063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecobank-843442.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecobank-843442.jpg" }, { "if": { @@ -14063,7 +14079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/educatorscreditunion-2d3cec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/educatorscreditunion-2d3cec.jpg" }, { "if": { @@ -14079,7 +14095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emiratesnbd-a44f4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emiratesnbd-a44f4b.jpg" }, { "if": { @@ -14095,7 +14111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitassmallfinancebank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/equitassmallfinancebank-ad0527.png" }, { "if": { @@ -14111,7 +14127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-39f68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-39f68b.jpg" }, { "if": { @@ -14127,7 +14143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-cb8d4d.png" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-cb8d4d.png" }, { "if": { @@ -14143,7 +14159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-f04c00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-f04c00.jpg" }, { "if": { @@ -14159,7 +14175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-0cfb4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-0cfb4b.jpg" }, { "if": { @@ -14175,7 +14191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-14cdb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-14cdb2.jpg" }, { "if": { @@ -14191,7 +14207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-624ccc.png" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-624ccc.png" }, { "if": { @@ -14207,7 +14223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erstebank-1343ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erstebank-1343ca.jpg" }, { "if": { @@ -14223,7 +14239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esafsmallfinancebank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esafsmallfinancebank-ad0527.jpg" }, { "if": { @@ -14239,7 +14255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eslfederalcreditunion-85c59a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eslfederalcreditunion-85c59a.jpg" }, { "if": { @@ -14255,7 +14271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurobank-4fcc55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurobank-4fcc55.jpg" }, { "if": { @@ -14271,7 +14287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurobank-f234fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurobank-f234fb.jpg" }, { "if": { @@ -14287,7 +14303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/europabank-8a4913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/europabank-8a4913.jpg" }, { "if": { @@ -14309,7 +14325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evocabank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evocabank-056506.jpg" }, { "if": { @@ -14325,7 +14341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmersnationalbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmersnationalbank-93d3a2.jpg" }, { "if": { @@ -14347,7 +14363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastbank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastbank-056506.jpg" }, { "if": { @@ -14363,7 +14379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federalbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/federalbank-ad0527.jpg" }, { "if": { @@ -14379,7 +14395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fibabanka-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fibabanka-6f1d1d.jpg" }, { "if": { @@ -14400,7 +14416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fibank-e5108a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fibank-e5108a.jpg" }, { "if": { @@ -14416,7 +14432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ficohsa-3c5276.png" + "then": "https://data.mapcomplete.org/nsi//logos/ficohsa-3c5276.png" }, { "if": { @@ -14433,7 +14449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-843442.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-843442.jpg" }, { "if": { @@ -14449,7 +14465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-6623a1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-6623a1.svg" }, { "if": { @@ -14465,7 +14481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-82e895.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-82e895.png" }, { "if": { @@ -14481,7 +14497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-d66204.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-d66204.png" }, { "if": { @@ -14497,7 +14513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-bfc54c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-bfc54c.svg" }, { "if": { @@ -14513,7 +14529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-f95bbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-f95bbc.png" }, { "if": { @@ -14529,7 +14545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-17cbf7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-17cbf7.svg" }, { "if": { @@ -14545,7 +14561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybankandtrust-79138c.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybankandtrust-79138c.png" }, { "if": { @@ -14562,7 +14578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fifththirdbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fifththirdbank-93d3a2.jpg" }, { "if": { @@ -14578,7 +14594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fineco-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/fineco-64483a.png" }, { "if": { @@ -14594,7 +14610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fintro-8a4913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fintro-8a4913.jpg" }, { "if": { @@ -14610,7 +14626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiobanka-58e2e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiobanka-58e2e6.jpg" }, { "if": { @@ -14630,7 +14646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstabudhabibank-a44f4b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/firstabudhabibank-a44f4b.svg" }, { "if": { @@ -14646,7 +14662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstbank-ff9fe1.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstbank-ff9fe1.png" }, { "if": { @@ -14662,7 +14678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstbank-2e2bd2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstbank-2e2bd2.jpg" }, { "if": { @@ -14679,7 +14695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstbank-cb0b6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstbank-cb0b6c.jpg" }, { "if": { @@ -14695,7 +14711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcitizensbank-1ff3d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstcitizensbank-1ff3d8.jpg" }, { "if": { @@ -14711,7 +14727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcitizensbank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstcitizensbank-93d3a2.png" }, { "if": { @@ -14727,7 +14743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcommonwealthbank-d1eed2.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstcommonwealthbank-d1eed2.png" }, { "if": { @@ -14743,7 +14759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcommunitycreditunion-50220c.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstcommunitycreditunion-50220c.png" }, { "if": { @@ -14759,7 +14775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstfinancialbank-a035b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstfinancialbank-a035b2.jpg" }, { "if": { @@ -14775,7 +14791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firsthorizonbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firsthorizonbank-93d3a2.jpg" }, { "if": { @@ -14791,7 +14807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstinterstatebancsystem-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstinterstatebancsystem-93d3a2.jpg" }, { "if": { @@ -14809,7 +14825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstnationalbank-843442.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstnationalbank-843442.jpg" }, { "if": { @@ -14825,7 +14841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstnationalbankoflongisland-85c59a.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstnationalbankoflongisland-85c59a.png" }, { "if": { @@ -14841,7 +14857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstnationalbankofscotia-d93ebb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstnationalbankofscotia-d93ebb.jpg" }, { "if": { @@ -14857,7 +14873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstsecuritybank-0e6416.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstsecuritybank-0e6416.jpg" }, { "if": { @@ -14873,7 +14889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstsecuritybank-4fe039.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstsecuritybank-4fe039.jpg" }, { "if": { @@ -14889,7 +14905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-b94a54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-b94a54.jpg" }, { "if": { @@ -14905,7 +14921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-68c916.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-68c916.jpg" }, { "if": { @@ -14921,7 +14937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-09683f.png" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-09683f.png" }, { "if": { @@ -14937,7 +14953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-9aa6fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-9aa6fc.jpg" }, { "if": { @@ -14953,7 +14969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-6d98c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-6d98c2.jpg" }, { "if": { @@ -14969,7 +14985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-18eb57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-18eb57.jpg" }, { "if": { @@ -14985,7 +15001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firsttechfederalcreditunion-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firsttechfederalcreditunion-93d3a2.jpg" }, { "if": { @@ -15002,7 +15018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstunitedbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstunitedbank-93d3a2.jpg" }, { "if": { @@ -15019,7 +15035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstwestcreditunion-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstwestcreditunion-ddac74.jpg" }, { "if": { @@ -15037,7 +15053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstbankofnigeria-843442.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstbankofnigeria-843442.jpg" }, { "if": { @@ -15053,41 +15069,41 @@ } ] }, - "then": "./assets/data/nsi/logos/flagstarbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flagstarbank-93d3a2.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=First National Bank", { "or": [ "brand=FNB", "brand:wikidata=Q3072956", + "official_name=First National Bank", "operator=FNB", "operator:wikidata=Q3072956" ] } ] }, - "then": "./assets/data/nsi/logos/fnb-2eaa9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fnb-2eaa9a.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=First National Bank of Omaha", { "or": [ "brand=FNBO", "brand:wikidata=Q5453412", + "official_name=First National Bank of Omaha", "operator=FNBO", "operator:wikidata=Q5453412" ] } ] }, - "then": "./assets/data/nsi/logos/fnbo-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fnbo-93d3a2.jpg" }, { "if": { @@ -15103,27 +15119,27 @@ } ] }, - "then": "./assets/data/nsi/logos/fortebank-228817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortebank-228817.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name:kk=«Банк Фридом Финанс Қазақстан» АҚ", - "official_name:ru=АО «Банк Фридом Финанс Казахстан»", { "or": [ "brand=Freedom Bank", "brand:wikidata=Q21843099", "name:en=Freedom Bank", "name:ru=Фридом Банк", + "official_name:kk=«Банк Фридом Финанс Қазақстан» АҚ", + "official_name:ru=АО «Банк Фридом Финанс Казахстан»", "operator=Freedom Bank", "operator:wikidata=Q21843099" ] } ] }, - "then": "./assets/data/nsi/logos/freedombank-228817.png" + "then": "https://data.mapcomplete.org/nsi//logos/freedombank-228817.png" }, { "if": { @@ -15139,7 +15155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frostbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frostbank-93d3a2.jpg" }, { "if": { @@ -15155,7 +15171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galicia-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/galicia-b67a7c.jpg" }, { "if": { @@ -15171,7 +15187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/garantibankasi-3780b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/garantibankasi-3780b1.jpg" }, { "if": { @@ -15189,7 +15205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gcbbank-843442.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gcbbank-843442.jpg" }, { "if": { @@ -15205,7 +15221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/germanamerican-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/germanamerican-93d3a2.jpg" }, { "if": { @@ -15221,7 +15237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/getinbank-53bcca.png" + "then": "https://data.mapcomplete.org/nsi//logos/getinbank-53bcca.png" }, { "if": { @@ -15238,7 +15254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glarnerkantonalbank-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/glarnerkantonalbank-ba97f3.svg" }, { "if": { @@ -15254,7 +15270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globalcreditunion-ce67eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globalcreditunion-ce67eb.jpg" }, { "if": { @@ -15270,7 +15286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gnbsudameris-850243.png" + "then": "https://data.mapcomplete.org/nsi//logos/gnbsudameris-850243.png" }, { "if": { @@ -15286,7 +15302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/golden1creditunion-f9d961.png" + "then": "https://data.mapcomplete.org/nsi//logos/golden1creditunion-f9d961.png" }, { "if": { @@ -15309,7 +15325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/graubundnerkantonalbank-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/graubundnerkantonalbank-ba97f3.svg" }, { "if": { @@ -15325,7 +15341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenstatecreditunion-897a9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenstatecreditunion-897a9e.jpg" }, { "if": { @@ -15341,24 +15357,24 @@ } ] }, - "then": "./assets/data/nsi/logos/groupama-01bd3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupama-01bd3b.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Guaranty Trust Bank", { "or": [ "brand=GT Bank", "brand:wikidata=Q579747", + "official_name=Guaranty Trust Bank", "operator=GT Bank", "operator:wikidata=Q579747" ] } ] }, - "then": "./assets/data/nsi/logos/gtbank-55d972.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gtbank-55d972.jpg" }, { "if": { @@ -15374,7 +15390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulfcoastbankandtrust-82e895.png" + "then": "https://data.mapcomplete.org/nsi//logos/gulfcoastbankandtrust-82e895.png" }, { "if": { @@ -15390,7 +15406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halifax-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halifax-396707.jpg" }, { "if": { @@ -15408,14 +15424,12 @@ } ] }, - "then": "./assets/data/nsi/logos/halkbank-4fcc55.svg" + "then": "https://data.mapcomplete.org/nsi//logos/halkbank-4fcc55.svg" }, { "if": { "and": [ "amenity=atm", - "official_name:kk=«Қазақстан Халық Банкі» АҚ", - "official_name:ru=АО «Народный Банк Казахстана»", "old_name=Народный банк", { "or": [ @@ -15424,13 +15438,15 @@ "name:en=Halyk Bank", "name:kk=Халық Банкі", "name:ru=Халык банк", + "official_name:kk=«Қазақстан Халық Банкі» АҚ", + "official_name:ru=АО «Народный Банк Казахстана»", "operator=Halyk Bank", "operator:wikidata=Q1046186" ] } ] }, - "then": "./assets/data/nsi/logos/halykbank-89b827.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halykbank-89b827.jpg" }, { "if": { @@ -15447,7 +15463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamburgersparkasse-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamburgersparkasse-fb8bf5.jpg" }, { "if": { @@ -15463,7 +15479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hancockwhitney-cfedfe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hancockwhitney-cfedfe.jpg" }, { "if": { @@ -15479,7 +15495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handelsbanken-6789c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/handelsbanken-6789c7.png" }, { "if": { @@ -15496,7 +15512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hattonnationalbank-960663.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hattonnationalbank-960663.jpg" }, { "if": { @@ -15512,7 +15528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiianfirstbank-bc3288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiianfirstbank-bc3288.jpg" }, { "if": { @@ -15532,7 +15548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hblbank-ed31a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/hblbank-ed31a6.png" }, { "if": { @@ -15549,24 +15565,24 @@ } ] }, - "then": "./assets/data/nsi/logos/hdfcbank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/hdfcbank-ad0527.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Heartland Bank and Trust Company", { "or": [ "brand=Heartland Bank", "brand:wikidata=Q109870322", + "official_name=Heartland Bank and Trust Company", "operator=Heartland Bank", "operator:wikidata=Q109870322" ] } ] }, - "then": "./assets/data/nsi/logos/heartlandbank-09683f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heartlandbank-09683f.jpg" }, { "if": { @@ -15582,7 +15598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heritagebank-8509c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heritagebank-8509c1.jpg" }, { "if": { @@ -15598,7 +15614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heritagebank-07627b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heritagebank-07627b.jpg" }, { "if": { @@ -15614,7 +15630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heritagebank-f95bbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heritagebank-f95bbc.jpg" }, { "if": { @@ -15630,7 +15646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heritagebank-f7c6e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heritagebank-f7c6e0.jpg" }, { "if": { @@ -15646,7 +15662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hnb-960663.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hnb-960663.jpg" }, { "if": { @@ -15662,7 +15678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homecreditbank-228817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homecreditbank-228817.jpg" }, { "if": { @@ -15678,7 +15694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homestreetbank-9527f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homestreetbank-9527f3.jpg" }, { "if": { @@ -15698,7 +15714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongleongbank-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongleongbank-bc168a.jpg" }, { "if": { @@ -15714,7 +15730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/horizoncreditunion-e9287c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/horizoncreditunion-e9287c.jpg" }, { "if": { @@ -15731,7 +15747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hrvatskapostanskabanka-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/hrvatskapostanskabanka-4d8c03.png" }, { "if": { @@ -15747,7 +15763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbc-e19463.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsbc-e19463.jpg" }, { "if": { @@ -15769,7 +15785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbc-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsbc-056506.jpg" }, { "if": { @@ -15785,7 +15801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbcuk-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsbcuk-396707.jpg" }, { "if": { @@ -15801,7 +15817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntingtonbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntingtonbank-93d3a2.jpg" }, { "if": { @@ -15817,7 +15833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hypovereinsbank-fb8bf5.png" + "then": "https://data.mapcomplete.org/nsi//logos/hypovereinsbank-fb8bf5.png" }, { "if": { @@ -15833,7 +15849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ibercaja-b48e80.png" + "then": "https://data.mapcomplete.org/nsi//logos/ibercaja-b48e80.png" }, { "if": { @@ -15853,7 +15869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrialbankofkorea-cfe76c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/industrialbankofkorea-cfe76c.svg" }, { "if": { @@ -15869,7 +15885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icbc-5e71de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icbc-5e71de.jpg" }, { "if": { @@ -15886,7 +15902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icicibank-4fa341.png" + "then": "https://data.mapcomplete.org/nsi//logos/icicibank-4fa341.png" }, { "if": { @@ -15905,7 +15921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idbank-056506.png" + "then": "https://data.mapcomplete.org/nsi//logos/idbank-056506.png" }, { "if": { @@ -15922,7 +15938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idbibank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idbibank-ad0527.jpg" }, { "if": { @@ -15938,7 +15954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ideabank-1de605.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ideabank-1de605.jpg" }, { "if": { @@ -15958,7 +15974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ideabank-968b58.png" + "then": "https://data.mapcomplete.org/nsi//logos/ideabank-968b58.png" }, { "if": { @@ -15974,7 +15990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idfcfirstbank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/idfcfirstbank-ad0527.png" }, { "if": { @@ -15990,7 +16006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iktisatbank-a0e164.png" + "then": "https://data.mapcomplete.org/nsi//logos/iktisatbank-a0e164.png" }, { "if": { @@ -16006,7 +16022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imexbanka-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/imexbanka-4d8c03.png" }, { "if": { @@ -16022,7 +16038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inbursa-8c8932.png" + "then": "https://data.mapcomplete.org/nsi//logos/inbursa-8c8932.png" }, { "if": { @@ -16042,7 +16058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indiapostpaymentsbank-ad0527.svg" + "then": "https://data.mapcomplete.org/nsi//logos/indiapostpaymentsbank-ad0527.svg" }, { "if": { @@ -16058,7 +16074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianbank-ad0527.jpg" }, { "if": { @@ -16074,7 +16090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianoverseasbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianoverseasbank-ad0527.jpg" }, { "if": { @@ -16090,7 +16106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indusindbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indusindbank-ad0527.jpg" }, { "if": { @@ -16112,7 +16128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inecobank-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inecobank-056506.jpg" }, { "if": { @@ -16128,7 +16144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ing-83b186.png" + "then": "https://data.mapcomplete.org/nsi//logos/ing-83b186.png" }, { "if": { @@ -16144,7 +16160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ingbankslaski-53bcca.png" + "then": "https://data.mapcomplete.org/nsi//logos/ingbankslaski-53bcca.png" }, { "if": { @@ -16160,7 +16176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interbank-98e68c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/interbank-98e68c.jpg" }, { "if": { @@ -16176,7 +16192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interbank-674035.svg" + "then": "https://data.mapcomplete.org/nsi//logos/interbank-674035.svg" }, { "if": { @@ -16192,7 +16208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/internationalassetbank-e5108a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/internationalassetbank-e5108a.jpg" }, { "if": { @@ -16208,7 +16224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intesasanpaolo-f49ff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/intesasanpaolo-f49ff1.png" }, { "if": { @@ -16224,7 +16240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/db7b15-184f05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/db7b15-184f05.jpg" }, { "if": { @@ -16244,7 +16260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iranzaminbank-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iranzaminbank-243651.jpg" }, { "if": { @@ -16260,7 +16276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isbank-ceff81.svg" + "then": "https://data.mapcomplete.org/nsi//logos/isbank-ceff81.svg" }, { "if": { @@ -16276,7 +16292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istarskakreditnabankaumag-4d8c03.svg" + "then": "https://data.mapcomplete.org/nsi//logos/istarskakreditnabankaumag-4d8c03.svg" }, { "if": { @@ -16292,7 +16308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itauunibanco-bbb1a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itauunibanco-bbb1a4.jpg" }, { "if": { @@ -16308,7 +16324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itaucorpbanca-2999f5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itaucorpbanca-2999f5.svg" }, { "if": { @@ -16324,7 +16340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jandtbanka-9a90af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jandtbanka-9a90af.jpg" }, { "if": { @@ -16340,7 +16356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/janasmallfinancebank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/janasmallfinancebank-ad0527.jpg" }, { "if": { @@ -16361,7 +16377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jabank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jabank-52efab.svg" }, { "if": { @@ -16377,7 +16393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jusan-228817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jusan-228817.jpg" }, { "if": { @@ -16393,7 +16409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jyskebank-198cfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jyskebank-198cfd.jpg" }, { "if": { @@ -16409,7 +16425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kandhbank-681c6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/kandhbank-681c6d.png" }, { "if": { @@ -16429,7 +16445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karafarinbank-243651.svg" + "then": "https://data.mapcomplete.org/nsi//logos/karafarinbank-243651.svg" }, { "if": { @@ -16445,7 +16461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlovackabanka-4d8c03.svg" + "then": "https://data.mapcomplete.org/nsi//logos/karlovackabanka-4d8c03.svg" }, { "if": { @@ -16461,7 +16477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karnatakabank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karnatakabank-ad0527.jpg" }, { "if": { @@ -16477,7 +16493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karnatakagraminbank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/karnatakagraminbank-ad0527.png" }, { "if": { @@ -16494,7 +16510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karnatakavikasgrameenabank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karnatakavikasgrameenabank-ad0527.jpg" }, { "if": { @@ -16510,7 +16526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karurvysyabank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/karurvysyabank-ad0527.png" }, { "if": { @@ -16526,7 +16542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kasastefczyka-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kasastefczyka-53bcca.jpg" }, { "if": { @@ -16542,7 +16558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kbc-a224e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kbc-a224e8.jpg" }, { "if": { @@ -16558,7 +16574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kbzbank-4d84db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kbzbank-4d84db.jpg" }, { "if": { @@ -16578,7 +16594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kbkookminbank-cfe76c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kbkookminbank-cfe76c.png" }, { "if": { @@ -16594,7 +16610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentbank-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentbank-4d8c03.png" }, { "if": { @@ -16610,7 +16626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralagraminbank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/keralagraminbank-ad0527.png" }, { "if": { @@ -16626,7 +16642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keybank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/keybank-93d3a2.png" }, { "if": { @@ -16642,7 +16658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiwibank-6bd214.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiwibank-6bd214.jpg" }, { "if": { @@ -16658,7 +16674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komercijalnabanka-afa18c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komercijalnabanka-afa18c.jpg" }, { "if": { @@ -16674,7 +16690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komercnibanka-767782.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komercnibanka-767782.jpg" }, { "if": { @@ -16690,7 +16706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koopbank-a0e164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koopbank-a0e164.jpg" }, { "if": { @@ -16706,7 +16722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kotakmahindrabank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/kotakmahindrabank-ad0527.png" }, { "if": { @@ -16726,7 +16742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kredobank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kredobank-968b58.jpg" }, { "if": { @@ -16742,7 +16758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kutxabank-b48e80.png" + "then": "https://data.mapcomplete.org/nsi//logos/kutxabank-b48e80.png" }, { "if": { @@ -16758,7 +16774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuveytturk-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kuveytturk-6f1d1d.jpg" }, { "if": { @@ -16774,7 +16790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/labanquepostale-134295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/labanquepostale-134295.jpg" }, { "if": { @@ -16790,7 +16806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacaixa-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacaixa-b48e80.jpg" }, { "if": { @@ -16806,7 +16822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laboralkutxa-b48e80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laboralkutxa-b48e80.jpg" }, { "if": { @@ -16823,7 +16839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakemichigancreditunion-95c887.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lakemichigancreditunion-95c887.jpg" }, { "if": { @@ -16839,7 +16855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landbank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landbank-f377ee.jpg" }, { "if": { @@ -16855,7 +16871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landmarkcreditunion-2d3cec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landmarkcreditunion-2d3cec.jpg" }, { "if": { @@ -16871,7 +16887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lbs-fb8bf5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lbs-fb8bf5.svg" }, { "if": { @@ -16887,25 +16903,25 @@ } ] }, - "then": "./assets/data/nsi/logos/lcl-134295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lcl-134295.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=LCNB National Bank", { "or": [ "alt_name=Lebanon Citizens National Bank", "brand=LCNB", "brand:wikidata=Q65095575", + "official_name=LCNB National Bank", "operator=LCNB", "operator:wikidata=Q65095575" ] } ] }, - "then": "./assets/data/nsi/logos/lcnb-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lcnb-93d3a2.jpg" }, { "if": { @@ -16921,7 +16937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leedsbuildingsociety-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leedsbuildingsociety-396707.jpg" }, { "if": { @@ -16937,7 +16953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liberbank-b48e80.svg" + "then": "https://data.mapcomplete.org/nsi//logos/liberbank-b48e80.svg" }, { "if": { @@ -16953,7 +16969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertybank-7bb27b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libertybank-7bb27b.jpg" }, { "if": { @@ -16969,7 +16985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lighthousecreditunion-e19454.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lighthousecreditunion-e19454.svg" }, { "if": { @@ -16985,7 +17001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/limasolturkkooperatifbankasi-a0e164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/limasolturkkooperatifbankasi-a0e164.jpg" }, { "if": { @@ -17001,7 +17017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lloydsbank-119e30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lloydsbank-119e30.jpg" }, { "if": { @@ -17017,7 +17033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luminorbank-82bd77.png" + "then": "https://data.mapcomplete.org/nsi//logos/luminorbank-82bd77.png" }, { "if": { @@ -17034,7 +17050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luzernerkantonalbank-ba97f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luzernerkantonalbank-ba97f3.jpg" }, { "if": { @@ -17050,7 +17066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandtbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandtbank-93d3a2.jpg" }, { "if": { @@ -17066,7 +17082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macro-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macro-b67a7c.jpg" }, { "if": { @@ -17086,7 +17102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madhyanchalgraminbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madhyanchalgraminbank-ad0527.jpg" }, { "if": { @@ -17102,7 +17118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marinecreditunion-2d3cec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marinecreditunion-2d3cec.jpg" }, { "if": { @@ -17120,7 +17136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mashreq-878fb9.png" + "then": "https://data.mapcomplete.org/nsi//logos/mashreq-878fb9.png" }, { "if": { @@ -17136,7 +17152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maybank-2f6feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maybank-2f6feb.jpg" }, { "if": { @@ -17152,7 +17168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mbank-ede12f.png" + "then": "https://data.mapcomplete.org/nsi//logos/mbank-ede12f.png" }, { "if": { @@ -17168,7 +17184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mbhbank-681c6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mbhbank-681c6d.jpg" }, { "if": { @@ -17184,7 +17200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcb-4d5a9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcb-4d5a9a.jpg" }, { "if": { @@ -17204,7 +17220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcb-a8db09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcb-a8db09.jpg" }, { "if": { @@ -17224,7 +17240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meezanbank-ed31a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meezanbank-ed31a6.jpg" }, { "if": { @@ -17241,7 +17257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meridiancreditunion-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meridiancreditunion-ddac74.jpg" }, { "if": { @@ -17257,7 +17273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metairiebank-82e895.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metairiebank-82e895.jpg" }, { "if": { @@ -17273,7 +17289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrobank-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metrobank-396707.jpg" }, { "if": { @@ -17289,7 +17305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrobank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metrobank-f377ee.jpg" }, { "if": { @@ -17307,7 +17323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/219d89-cfe76c.png" + "then": "https://data.mapcomplete.org/nsi//logos/219d89-cfe76c.png" }, { "if": { @@ -17323,7 +17339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mibanco-98e68c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mibanco-98e68c.jpg" }, { "if": { @@ -17339,7 +17355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midfirstbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midfirstbank-93d3a2.jpg" }, { "if": { @@ -17361,7 +17377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrosbank-ba97f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/migrosbank-ba97f3.png" }, { "if": { @@ -17377,24 +17393,24 @@ } ] }, - "then": "./assets/data/nsi/logos/millenniumbank-53bcca.svg" + "then": "https://data.mapcomplete.org/nsi//logos/millenniumbank-53bcca.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Comercial Português", { "or": [ "brand=Millennium bcp", "brand:wikidata=Q118581", + "official_name=Banco Comercial Português", "operator=Millennium bcp", "operator:wikidata=Q118581" ] } ] }, - "then": "./assets/data/nsi/logos/millenniumbcp-9411e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/millenniumbcp-9411e1.png" }, { "if": { @@ -17410,7 +17426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missionfederalcreditunion-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missionfederalcreditunion-93d3a2.jpg" }, { "if": { @@ -17426,7 +17442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mittelbrandenburgischesparkasse-fb8bf5.png" + "then": "https://data.mapcomplete.org/nsi//logos/mittelbrandenburgischesparkasse-fb8bf5.png" }, { "if": { @@ -17442,7 +17458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mizoramruralbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mizoramruralbank-ad0527.jpg" }, { "if": { @@ -17458,7 +17474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mkbbank-681c6d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mkbbank-681c6d.svg" }, { "if": { @@ -17474,7 +17490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moldindconbank-7a75e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moldindconbank-7a75e5.jpg" }, { "if": { @@ -17490,7 +17506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moldovaagroindbank-7a75e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moldovaagroindbank-7a75e5.jpg" }, { "if": { @@ -17506,7 +17522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monetamoneybank-767782.svg" + "then": "https://data.mapcomplete.org/nsi//logos/monetamoneybank-767782.svg" }, { "if": { @@ -17522,7 +17538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montedeipaschidisiena-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montedeipaschidisiena-64483a.jpg" }, { "if": { @@ -17538,7 +17554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montepio-9411e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/montepio-9411e1.png" }, { "if": { @@ -17554,7 +17570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mountainamericacreditunion-35eca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mountainamericacreditunion-35eca1.jpg" }, { "if": { @@ -17574,7 +17590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtbbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtbbank-968b58.jpg" }, { "if": { @@ -17590,7 +17606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nab-8509c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nab-8509c1.jpg" }, { "if": { @@ -17606,15 +17622,12 @@ } ] }, - "then": "./assets/data/nsi/logos/nasafederalcreditunion-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/nasafederalcreditunion-93d3a2.png" }, { "if": { "and": [ "amenity=atm", - "official_name=National Bank of Canada", - "official_name:en=National Bank of Canada", - "official_name:fr=Banque Nationale du Canada", { "or": [ "brand=National Bank", @@ -17623,13 +17636,16 @@ "brand:wikidata=Q634298", "name:en=National Bank", "name:fr=Banque Nationale", + "official_name=National Bank of Canada", + "official_name:en=National Bank of Canada", + "official_name:fr=Banque Nationale du Canada", "operator=National Bank", "operator:wikidata=Q634298" ] } ] }, - "then": "./assets/data/nsi/logos/nationalbank-53b5c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbank-53b5c4.jpg" }, { "if": { @@ -17647,7 +17663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalinvestmentbank-843442.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalinvestmentbank-843442.jpg" }, { "if": { @@ -17663,7 +17679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationwide-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationwide-396707.jpg" }, { "if": { @@ -17679,7 +17695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natwest-8cfc37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/natwest-8cfc37.jpg" }, { "if": { @@ -17695,7 +17711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/navyfederalcreditunion-2f6feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/navyfederalcreditunion-2f6feb.jpg" }, { "if": { @@ -17711,7 +17727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbtbank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/nbtbank-93d3a2.png" }, { "if": { @@ -17727,7 +17743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neareastbank-a0e164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neareastbank-a0e164.jpg" }, { "if": { @@ -17743,7 +17759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nedbank-2f6feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nedbank-2f6feb.jpg" }, { "if": { @@ -17759,7 +17775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nestbank-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nestbank-53bcca.jpg" }, { "if": { @@ -17779,7 +17795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhbank-cfe76c.png" + "then": "https://data.mapcomplete.org/nsi//logos/nhbank-cfe76c.png" }, { "if": { @@ -17795,7 +17811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nicoletnationalbank-54f474.png" + "then": "https://data.mapcomplete.org/nsi//logos/nicoletnationalbank-54f474.png" }, { "if": { @@ -17812,7 +17828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nidwaldnerkantonalbank-ba97f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/nidwaldnerkantonalbank-ba97f3.png" }, { "if": { @@ -17828,7 +17844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nlb-3c4621.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nlb-3c4621.jpg" }, { "if": { @@ -17845,7 +17861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nmbbank-1b6814.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nmbbank-1b6814.jpg" }, { "if": { @@ -17862,7 +17878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nmbbank-14cdb2.png" + "then": "https://data.mapcomplete.org/nsi//logos/nmbbank-14cdb2.png" }, { "if": { @@ -17878,7 +17894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordostseesparkasse-54c314.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordostseesparkasse-54c314.jpg" }, { "if": { @@ -17894,7 +17910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordea-b6011c.png" + "then": "https://data.mapcomplete.org/nsi//logos/nordea-b6011c.png" }, { "if": { @@ -17910,7 +17926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestbank-dd05cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/northwestbank-dd05cf.png" }, { "if": { @@ -17926,7 +17942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novobanco-3f27ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novobanco-3f27ef.jpg" }, { "if": { @@ -17942,16 +17958,12 @@ } ] }, - "then": "./assets/data/nsi/logos/nsb-960663.png" + "then": "https://data.mapcomplete.org/nsi//logos/nsb-960663.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Nurbank JSC", - "official_name:en=Nurbank JSC", - "official_name:kk=«Нұрбанк» АҚ", - "official_name:ru=АО «Нурбанк»", { "or": [ "brand=Nurbank", @@ -17959,13 +17971,17 @@ "name:en=Nurbank", "name:kk=Нурбанк", "name:ru=Нурбанк", + "official_name=Nurbank JSC", + "official_name:en=Nurbank JSC", + "official_name:kk=«Нұрбанк» АҚ", + "official_name:ru=АО «Нурбанк»", "operator=Nurbank", "operator:wikidata=Q1638772" ] } ] }, - "then": "./assets/data/nsi/logos/nurbank-228817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nurbank-228817.jpg" }, { "if": { @@ -17982,7 +17998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nusenda-78b862.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nusenda-78b862.jpg" }, { "if": { @@ -17998,7 +18014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oberbank-54e4c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oberbank-54e4c0.jpg" }, { "if": { @@ -18015,24 +18031,24 @@ } ] }, - "then": "./assets/data/nsi/logos/obwaldnerkantonalbank-ba97f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obwaldnerkantonalbank-ba97f3.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Bank OCBC NISP", { "or": [ "brand=OCBC", "brand:wikidata=Q19724214", + "official_name=Bank OCBC NISP", "operator=OCBC", "operator:wikidata=Q19724214" ] } ] }, - "then": "./assets/data/nsi/logos/ocbc-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocbc-16476e.jpg" }, { "if": { @@ -18052,7 +18068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocbcbank-2b05e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocbcbank-2b05e9.jpg" }, { "if": { @@ -18068,7 +18084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/occidentaldedescuento-f50cd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/occidentaldedescuento-f50cd1.png" }, { "if": { @@ -18085,7 +18101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/occu-50220c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/occu-50220c.jpg" }, { "if": { @@ -18101,7 +18117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odeabank-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/odeabank-6f1d1d.jpg" }, { "if": { @@ -18121,7 +18137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odishagramyabank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/odishagramyabank-ad0527.png" }, { "if": { @@ -18138,7 +18154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7e41fb-184f05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7e41fb-184f05.jpg" }, { "if": { @@ -18154,7 +18170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldnationalbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldnationalbank-93d3a2.jpg" }, { "if": { @@ -18170,7 +18186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldsecondnationalbank-09683f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldsecondnationalbank-09683f.jpg" }, { "if": { @@ -18187,7 +18203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldenburgischelandesbank-fb8bf5.png" + "then": "https://data.mapcomplete.org/nsi//logos/oldenburgischelandesbank-fb8bf5.png" }, { "if": { @@ -18204,7 +18220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onpoint-686806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onpoint-686806.jpg" }, { "if": { @@ -18221,7 +18237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oriental-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oriental-93d3a2.jpg" }, { "if": { @@ -18237,7 +18253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orientalbankofcommerce-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orientalbankofcommerce-ad0527.jpg" }, { "if": { @@ -18253,7 +18269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osuuspankki-6eeb13.png" + "then": "https://data.mapcomplete.org/nsi//logos/osuuspankki-6eeb13.png" }, { "if": { @@ -18270,7 +18286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbank-52756a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbank-52756a.jpg" }, { "if": { @@ -18290,7 +18306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbank-968b58.svg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbank-968b58.svg" }, { "if": { @@ -18306,7 +18322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbanka-4d8c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbanka-4d8c03.jpg" }, { "if": { @@ -18325,7 +18341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbank-4fcc55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbank-4fcc55.jpg" }, { "if": { @@ -18341,7 +18357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paninbank-16476e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paninbank-16476e.jpg" }, { "if": { @@ -18357,7 +18373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/partnerbanka-4d8c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/partnerbanka-4d8c03.jpg" }, { "if": { @@ -18373,24 +18389,24 @@ } ] }, - "then": "./assets/data/nsi/logos/pbcom-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pbcom-f377ee.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=President's Choice Financial", { "or": [ "brand=PC Financial", "brand:wikidata=Q7241126", + "official_name=President's Choice Financial", "operator=PC Financial", "operator:wikidata=Q7241126" ] } ] }, - "then": "./assets/data/nsi/logos/pcfinancial-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pcfinancial-ddac74.jpg" }, { "if": { @@ -18408,7 +18424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penfedcreditunion-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penfedcreditunion-93d3a2.jpg" }, { "if": { @@ -18425,7 +18441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psecu-17cbf7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/psecu-17cbf7.jpg" }, { "if": { @@ -18441,7 +18457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peoplesunitedbank-7bb27b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peoplesunitedbank-7bb27b.jpg" }, { "if": { @@ -18457,7 +18473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peoplesbank-bc6619.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peoplesbank-bc6619.jpg" }, { "if": { @@ -18473,7 +18489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/permanenttsb-7aac0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/permanenttsb-7aac0a.jpg" }, { "if": { @@ -18489,7 +18505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/philippinebusinessbank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/philippinebusinessbank-f377ee.jpg" }, { "if": { @@ -18505,7 +18521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinnaclebank-495a05.png" + "then": "https://data.mapcomplete.org/nsi//logos/pinnaclebank-495a05.png" }, { "if": { @@ -18525,7 +18541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piraeusbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piraeusbank-968b58.jpg" }, { "if": { @@ -18541,24 +18557,24 @@ } ] }, - "then": "./assets/data/nsi/logos/pkobp-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pkobp-53bcca.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Philippine National Bank", { "or": [ "brand=PNB", "brand:wikidata=Q1657971", + "official_name=Philippine National Bank", "operator=PNB", "operator:wikidata=Q1657971" ] } ] }, - "then": "./assets/data/nsi/logos/pnb-f377ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/pnb-f377ee.png" }, { "if": { @@ -18574,7 +18590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pncbank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/pncbank-93d3a2.png" }, { "if": { @@ -18590,26 +18606,26 @@ } ] }, - "then": "./assets/data/nsi/logos/podravskabanka-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/podravskabanka-4d8c03.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Banco Popular de Puerto Rico", "short_name=BPPR", { "or": [ "alt_name=Banco Popular", "brand=Popular", "brand:wikidata=Q7229656", + "official_name=Banco Popular de Puerto Rico", "operator=Popular", "operator:wikidata=Q7229656" ] } ] }, - "then": "./assets/data/nsi/logos/popular-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popular-93d3a2.jpg" }, { "if": { @@ -18631,7 +18647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postanskastedionica-4fcc55.png" + "then": "https://data.mapcomplete.org/nsi//logos/postanskastedionica-4fcc55.png" }, { "if": { @@ -18647,7 +18663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postbank-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postbank-fb8bf5.jpg" }, { "if": { @@ -18663,7 +18679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postovabanka-6843ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/postovabanka-6843ee.png" }, { "if": { @@ -18679,7 +18695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primabanka-6843ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/primabanka-6843ee.png" }, { "if": { @@ -18695,7 +18711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privatbanka-6843ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/privatbanka-6843ee.png" }, { "if": { @@ -18712,7 +18728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privrednabankazagreb-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/privrednabankazagreb-4d8c03.png" }, { "if": { @@ -18728,7 +18744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-5cd6db.png" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-5cd6db.png" }, { "if": { @@ -18746,7 +18762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-32e64b.png" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-32e64b.png" }, { "if": { @@ -18766,7 +18782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-968b58.jpg" }, { "if": { @@ -18785,7 +18801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-4fcc55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-4fcc55.jpg" }, { "if": { @@ -18801,7 +18817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/produbanco-67d8b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/produbanco-67d8b6.jpg" }, { "if": { @@ -18817,7 +18833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/producersbank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/producersbank-f377ee.jpg" }, { "if": { @@ -18833,7 +18849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prosperitybank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prosperitybank-93d3a2.jpg" }, { "if": { @@ -18849,7 +18865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/providentbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/providentbank-93d3a2.jpg" }, { "if": { @@ -18865,7 +18881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prvastavebnasporitelna-6843ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prvastavebnasporitelna-6843ee.jpg" }, { "if": { @@ -18881,7 +18897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psbank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/psbank-f377ee.jpg" }, { "if": { @@ -18901,7 +18917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicbank-bc168a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicbank-bc168a.jpg" }, { "if": { @@ -18917,7 +18933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puduvaibharathiargramabank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puduvaibharathiargramabank-ad0527.jpg" }, { "if": { @@ -18937,7 +18953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/punjabandsindbank-ad0527.svg" + "then": "https://data.mapcomplete.org/nsi//logos/punjabandsindbank-ad0527.svg" }, { "if": { @@ -18953,7 +18969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/punjabnationalbank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/punjabnationalbank-ad0527.png" }, { "if": { @@ -18969,7 +18985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qnbfinansbank-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qnbfinansbank-6f1d1d.jpg" }, { "if": { @@ -18985,7 +19001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rabobank-f970f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rabobank-f970f3.jpg" }, { "if": { @@ -19001,7 +19017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisen-8c9eca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisen-8c9eca.jpg" }, { "if": { @@ -19017,7 +19033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisen-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisen-ba97f3.svg" }, { "if": { @@ -19033,7 +19049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-4d8c03.png" }, { "if": { @@ -19049,7 +19065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-681c6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-681c6d.jpg" }, { "if": { @@ -19065,7 +19081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisen-fc110f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisen-fc110f.svg" }, { "if": { @@ -19081,7 +19097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-1de605.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-1de605.jpg" }, { "if": { @@ -19097,7 +19113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-038d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-038d28.jpg" }, { "if": { @@ -19119,7 +19135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-968b58.jpg" }, { "if": { @@ -19135,7 +19151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbankpolska-53bcca.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbankpolska-53bcca.svg" }, { "if": { @@ -19151,7 +19167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbanka-6843ee.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbanka-6843ee.svg" }, { "if": { @@ -19167,7 +19183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-4fcc55.png" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-4fcc55.png" }, { "if": { @@ -19183,7 +19199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-767782.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-767782.jpg" }, { "if": { @@ -19199,7 +19215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisen-64483a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisen-64483a.svg" }, { "if": { @@ -19219,13 +19235,12 @@ } ] }, - "then": "./assets/data/nsi/logos/rakbank-a44f4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/rakbank-a44f4b.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Royal Bank of Canada", { "or": [ "brand=RBC", @@ -19234,13 +19249,14 @@ "brand:wikidata=Q735261", "name:en=RBC Royal Bank", "name:fr=RBC Banque Royale", + "official_name=Royal Bank of Canada", "operator=RBC", "operator:wikidata=Q735261" ] } ] }, - "then": "./assets/data/nsi/logos/rbcroyalbank-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rbcroyalbank-ddac74.jpg" }, { "if": { @@ -19256,41 +19272,41 @@ } ] }, - "then": "./assets/data/nsi/logos/rblbank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/rblbank-ad0527.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Royal Bank of Scotland", { "or": [ "brand=RBS", "brand:wikidata=Q160126", + "official_name=Royal Bank of Scotland", "operator=RBS", "operator:wikidata=Q160126" ] } ] }, - "then": "./assets/data/nsi/logos/rbs-1729b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rbs-1729b5.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Rizal Commercial Banking Corporation", { "or": [ "brand=RCBC", "brand:wikidata=Q7339070", + "official_name=Rizal Commercial Banking Corporation", "operator=RCBC", "operator:wikidata=Q7339070" ] } ] }, - "then": "./assets/data/nsi/logos/rcbc-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rcbc-f377ee.jpg" }, { "if": { @@ -19306,7 +19322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regiobank-5333ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/regiobank-5333ab.svg" }, { "if": { @@ -19322,7 +19338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionsbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regionsbank-93d3a2.jpg" }, { "if": { @@ -19338,7 +19354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reisebank-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reisebank-fb8bf5.jpg" }, { "if": { @@ -19354,7 +19370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repcobank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/repcobank-ad0527.jpg" }, { "if": { @@ -19371,24 +19387,24 @@ } ] }, - "then": "./assets/data/nsi/logos/republicbank-843442.png" + "then": "https://data.mapcomplete.org/nsi//logos/republicbank-843442.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Republic Bank & Trust Company", { "or": [ "brand=Republic Bank", "brand:wikidata=Q7314387", + "official_name=Republic Bank & Trust Company", "operator=Republic Bank", "operator:wikidata=Q7314387" ] } ] }, - "then": "./assets/data/nsi/logos/republicbank-10254d.png" + "then": "https://data.mapcomplete.org/nsi//logos/republicbank-10254d.png" }, { "if": { @@ -19404,7 +19420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/republica-78a393.png" + "then": "https://data.mapcomplete.org/nsi//logos/republica-78a393.png" }, { "if": { @@ -19420,7 +19436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhbbank-309a65.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhbbank-309a65.jpg" }, { "if": { @@ -19436,7 +19452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinhessensparkasse-cc91ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rheinhessensparkasse-cc91ba.jpg" }, { "if": { @@ -19452,7 +19468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robinsonsbank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robinsonsbank-f377ee.jpg" }, { "if": { @@ -19468,7 +19484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rocklandtrust-77ec0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rocklandtrust-77ec0f.jpg" }, { "if": { @@ -19484,7 +19500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roguecreditunion-2c2e8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roguecreditunion-2c2e8a.jpg" }, { "if": { @@ -19500,7 +19516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalbusinessbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalbusinessbank-93d3a2.jpg" }, { "if": { @@ -19516,7 +19532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spankki-6eeb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spankki-6eeb13.jpg" }, { "if": { @@ -19532,7 +19548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacombank-2f6feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacombank-2f6feb.jpg" }, { "if": { @@ -19548,7 +19564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salemfivebank-d66204.png" + "then": "https://data.mapcomplete.org/nsi//logos/salemfivebank-d66204.png" }, { "if": { @@ -19564,7 +19580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samoborskabanka-4d8c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/samoborskabanka-4d8c03.png" }, { "if": { @@ -19580,7 +19596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sampathbank-960663.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sampathbank-960663.jpg" }, { "if": { @@ -19597,7 +19613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegocountycreditunion-f9d961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegocountycreditunion-f9d961.jpg" }, { "if": { @@ -19613,7 +19629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santander-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santander-fb8bf5.jpg" }, { "if": { @@ -19629,7 +19645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santander-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santander-53bcca.jpg" }, { "if": { @@ -19645,7 +19661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santander-396707.png" + "then": "https://data.mapcomplete.org/nsi//logos/santander-396707.png" }, { "if": { @@ -19661,7 +19677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santander-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santander-93d3a2.jpg" }, { "if": { @@ -19677,7 +19693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santanderconsumerbank-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santanderconsumerbank-53bcca.jpg" }, { "if": { @@ -19693,7 +19709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santanderrio-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santanderrio-b67a7c.jpg" }, { "if": { @@ -19709,7 +19725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santandertotta-9411e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/santandertotta-9411e1.png" }, { "if": { @@ -19725,7 +19741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sberbank-6ad715.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sberbank-6ad715.jpg" }, { "if": { @@ -19745,7 +19761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbishinseibank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sbishinseibank-52efab.svg" }, { "if": { @@ -19761,7 +19777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbsbank-6bd214.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sbsbank-6bd214.jpg" }, { "if": { @@ -19778,7 +19794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schaffhauserkantonalbank-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schaffhauserkantonalbank-ba97f3.svg" }, { "if": { @@ -19795,7 +19811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schwyzerkantonalbank-ba97f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schwyzerkantonalbank-ba97f3.jpg" }, { "if": { @@ -19811,7 +19827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scotiabank-2f6feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scotiabank-2f6feb.jpg" }, { "if": { @@ -19827,7 +19843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquescotia-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquescotia-ddac74.jpg" }, { "if": { @@ -19845,7 +19861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2a04be-cfe76c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2a04be-cfe76c.jpg" }, { "if": { @@ -19861,7 +19877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seb-7527a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/seb-7527a2.png" }, { "if": { @@ -19877,7 +19893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/securitybank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/securitybank-f377ee.jpg" }, { "if": { @@ -19894,7 +19910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/securityservicefederalcreditunion-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/securityservicefederalcreditunion-93d3a2.png" }, { "if": { @@ -19910,7 +19926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sekerbank-254ed3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sekerbank-254ed3.jpg" }, { "if": { @@ -19926,7 +19942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selfhelpfederalcreditunion-f52673.png" + "then": "https://data.mapcomplete.org/nsi//logos/selfhelpfederalcreditunion-f52673.png" }, { "if": { @@ -19948,7 +19964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sensebank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sensebank-968b58.jpg" }, { "if": { @@ -19964,7 +19980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicecreditunion-e9e430.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicecreditunion-e9e430.jpg" }, { "if": { @@ -19981,7 +19997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servuscreditunion-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servuscreditunion-ddac74.jpg" }, { "if": { @@ -19997,7 +20013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seylanbank-960663.png" + "then": "https://data.mapcomplete.org/nsi//logos/seylanbank-960663.png" }, { "if": { @@ -20017,7 +20033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharjahislamicbank-a44f4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sharjahislamicbank-a44f4b.jpg" }, { "if": { @@ -20033,7 +20049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoreunitedbank-89554d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoreunitedbank-89554d.jpg" }, { "if": { @@ -20049,7 +20065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sicoob-a02d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sicoob-a02d2b.jpg" }, { "if": { @@ -20065,7 +20081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sicredi-a02d2b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sicredi-a02d2b.png" }, { "if": { @@ -20081,7 +20097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simmonsbank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/simmonsbank-93d3a2.png" }, { "if": { @@ -20097,7 +20113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skbbanka-c633d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/skbbanka-c633d2.png" }, { "if": { @@ -20113,7 +20129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skiptonbuildingsociety-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skiptonbuildingsociety-396707.jpg" }, { "if": { @@ -20129,7 +20145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slatinskabanka-4d8c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slatinskabanka-4d8c03.jpg" }, { "if": { @@ -20145,7 +20161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskasporitelna-6843ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskasporitelna-6843ee.jpg" }, { "if": { @@ -20161,7 +20177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snsbank-5333ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snsbank-5333ab.jpg" }, { "if": { @@ -20177,7 +20193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sg-2f8fb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/sg-2f8fb0.png" }, { "if": { @@ -20194,7 +20210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societegenerale-843442.png" + "then": "https://data.mapcomplete.org/nsi//logos/societegenerale-843442.png" }, { "if": { @@ -20214,7 +20230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/576e54-c2e240.png" + "then": "https://data.mapcomplete.org/nsi//logos/576e54-c2e240.png" }, { "if": { @@ -20232,7 +20248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societegeneralecotedivoire-b783ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/societegeneralecotedivoire-b783ed.png" }, { "if": { @@ -20248,7 +20264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southindianbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southindianbank-ad0527.jpg" }, { "if": { @@ -20264,7 +20280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southstatebank-e1eaf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southstatebank-e1eaf2.jpg" }, { "if": { @@ -20280,7 +20296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southernbank-39c83a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southernbank-39c83a.jpg" }, { "if": { @@ -20296,7 +20312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southernbank-9b6e92.png" + "then": "https://data.mapcomplete.org/nsi//logos/southernbank-9b6e92.png" }, { "if": { @@ -20312,7 +20328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabank-eb9668.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabank-eb9668.jpg" }, { "if": { @@ -20328,7 +20344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabank-fc110f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabank-fc110f.jpg" }, { "if": { @@ -20344,7 +20360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabankbadenwurttemberg-f84ca7.png" + "then": "https://data.mapcomplete.org/nsi//logos/spardabankbadenwurttemberg-f84ca7.png" }, { "if": { @@ -20360,7 +20376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabankberlin-f2a41d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabankberlin-f2a41d.jpg" }, { "if": { @@ -20376,7 +20392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabankhamburg-ff8f99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabankhamburg-ff8f99.jpg" }, { "if": { @@ -20392,7 +20408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabankhessen-47fbe2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabankhessen-47fbe2.jpg" }, { "if": { @@ -20408,26 +20424,26 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabanksudwest-36c3e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabanksudwest-36c3e3.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Südtiroler Sparkasse – Cassa di Risparmio di Bolzano", { "or": [ "brand=Sparkasse - Cassa di Risparmio", "brand:wikidata=Q3661920", "name:de=Sparkasse", "name:it=Cassa di Risparmio", + "official_name=Südtiroler Sparkasse – Cassa di Risparmio di Bolzano", "operator=Sparkasse - Cassa di Risparmio", "operator:wikidata=Q3661920" ] } ] }, - "then": "./assets/data/nsi/logos/sparkassecassadirisparmio-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkassecassadirisparmio-64483a.jpg" }, { "if": { @@ -20443,7 +20459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkasse-fc110f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkasse-fc110f.svg" }, { "if": { @@ -20459,7 +20475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkassen-292760.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkassen-292760.jpg" }, { "if": { @@ -20476,7 +20492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stgallerkantonalbank-ba97f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stgallerkantonalbank-ba97f3.jpg" }, { "if": { @@ -20492,7 +20508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stgeorge-8509c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stgeorge-8509c1.jpg" }, { "if": { @@ -20508,7 +20524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stanbicbank-71787f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stanbicbank-71787f.jpg" }, { "if": { @@ -20525,7 +20541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardbank-843442.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/standardbank-843442.jpg" }, { "if": { @@ -20542,7 +20558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardchartered-843442.png" + "then": "https://data.mapcomplete.org/nsi//logos/standardchartered-843442.png" }, { "if": { @@ -20559,7 +20575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statebankofindiacalifornia-f9d961.png" + "then": "https://data.mapcomplete.org/nsi//logos/statebankofindiacalifornia-f9d961.png" }, { "if": { @@ -20576,7 +20592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statebankofindia-42021d.png" + "then": "https://data.mapcomplete.org/nsi//logos/statebankofindia-42021d.png" }, { "if": { @@ -20593,7 +20609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateemployeescreditunion-5990bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-5990bb.jpg" }, { "if": { @@ -20610,7 +20626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateemployeescreditunion-78b862.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-78b862.jpg" }, { "if": { @@ -20627,7 +20643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateemployeescreditunion-693cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-693cad.png" }, { "if": { @@ -20643,7 +20659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/summitcreditunion-2d3cec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/summitcreditunion-2d3cec.jpg" }, { "if": { @@ -20659,7 +20675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suncoastcreditunion-1c09a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/suncoastcreditunion-1c09a7.png" }, { "if": { @@ -20675,7 +20691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suncorp-8509c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suncorp-8509c1.jpg" }, { "if": { @@ -20691,7 +20707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suntrust-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suntrust-93d3a2.jpg" }, { "if": { @@ -20707,7 +20723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supervielle-b67a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supervielle-b67a7c.jpg" }, { "if": { @@ -20723,7 +20739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swedbank-ab2e60.png" + "then": "https://data.mapcomplete.org/nsi//logos/swedbank-ab2e60.png" }, { "if": { @@ -20739,7 +20755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydbank-ea875f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sydbank-ea875f.jpg" }, { "if": { @@ -20755,7 +20771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/syndicatebank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/syndicatebank-ad0527.jpg" }, { "if": { @@ -20771,7 +20787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synovus-1b5c6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/synovus-1b5c6b.png" }, { "if": { @@ -20787,7 +20803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamilnadmercantilebanklimited-ad0527.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tamilnadmercantilebanklimited-ad0527.svg" }, { "if": { @@ -20803,7 +20819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tangerine-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tangerine-ddac74.jpg" }, { "if": { @@ -20819,7 +20835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/targobank-3246f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/targobank-3246f9.jpg" }, { "if": { @@ -20835,7 +20851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tatrabanka-6843ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tatrabanka-6843ee.jpg" }, { "if": { @@ -20851,7 +20867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tbibank-7ff203.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tbibank-7ff203.jpg" }, { "if": { @@ -20868,7 +20884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/td-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/td-ddac74.jpg" }, { "if": { @@ -20885,7 +20901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tdbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tdbank-93d3a2.jpg" }, { "if": { @@ -20901,7 +20917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teb-254ed3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teb-254ed3.jpg" }, { "if": { @@ -20917,7 +20933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/techcombank-cfdb1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/techcombank-cfdb1a.png" }, { "if": { @@ -20933,7 +20949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecooperativebank-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecooperativebank-396707.jpg" }, { "if": { @@ -20949,7 +20965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecumberland-9feecb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecumberland-9feecb.jpg" }, { "if": { @@ -20965,7 +20981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thenottingham-1fd8e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thenottingham-1fd8e4.jpg" }, { "if": { @@ -20982,7 +20998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thurgauerkantonalbank-ba97f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/thurgauerkantonalbank-ba97f3.png" }, { "if": { @@ -20999,7 +21015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tompkinscommunitybank-60f9d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tompkinscommunitybank-60f9d8.jpg" }, { "if": { @@ -21021,7 +21037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tripuragraminbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tripuragraminbank-ad0527.jpg" }, { "if": { @@ -21037,7 +21053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truist-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truist-93d3a2.jpg" }, { "if": { @@ -21053,7 +21069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsb-6bd214.png" + "then": "https://data.mapcomplete.org/nsi//logos/tsb-6bd214.png" }, { "if": { @@ -21069,7 +21085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsb-396707.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsb-396707.jpg" }, { "if": { @@ -21085,7 +21101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkiyefinans-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkiyefinans-6f1d1d.jpg" }, { "if": { @@ -21101,7 +21117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkiyeisbankasi-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkiyeisbankasi-6f1d1d.jpg" }, { "if": { @@ -21117,24 +21133,24 @@ } ] }, - "then": "./assets/data/nsi/logos/usbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usbank-93d3a2.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=United Bank for Africa", { "or": [ "brand=UBA", "brand:wikidata=Q513457", + "official_name=United Bank for Africa", "operator=UBA", "operator:wikidata=Q513457" ] } ] }, - "then": "./assets/data/nsi/logos/uba-69edd8.png" + "then": "https://data.mapcomplete.org/nsi//logos/uba-69edd8.png" }, { "if": { @@ -21150,7 +21166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubs-2f6feb.png" + "then": "https://data.mapcomplete.org/nsi//logos/ubs-2f6feb.png" }, { "if": { @@ -21166,7 +21182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucobank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucobank-ad0527.jpg" }, { "if": { @@ -21183,7 +21199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucpbsavingsbank-f377ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucpbsavingsbank-f377ee.jpg" }, { "if": { @@ -21203,26 +21219,26 @@ } ] }, - "then": "./assets/data/nsi/logos/ugb-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ugb-968b58.jpg" }, { "if": { "and": [ "amenity=atm", - "official_name=Union internationale de banques", { "or": [ "brand=UIB", "brand:wikidata=Q3550305", "name:ar=الاتحاد الدولي للبنوك", "name:en=UIB", + "official_name=Union internationale de banques", "operator=UIB", "operator:wikidata=Q3550305" ] } ] }, - "then": "./assets/data/nsi/logos/uib-74adc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uib-74adc2.jpg" }, { "if": { @@ -21238,7 +21254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ujjivansmallfinancebank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ujjivansmallfinancebank-ad0527.jpg" }, { "if": { @@ -21258,7 +21274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrsibbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrsibbank-968b58.jpg" }, { "if": { @@ -21274,7 +21290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ulsterbank-e569c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ulsterbank-e569c1.jpg" }, { "if": { @@ -21290,7 +21306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umbbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umbbank-93d3a2.jpg" }, { "if": { @@ -21306,7 +21322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umpquabank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umpquabank-93d3a2.jpg" }, { "if": { @@ -21326,24 +21342,24 @@ } ] }, - "then": "./assets/data/nsi/logos/unexbank-968b58.png" + "then": "https://data.mapcomplete.org/nsi//logos/unexbank-968b58.png" }, { "if": { "and": [ "amenity=atm", - "official_name=UNI Coopération financière", { "or": [ "brand=UNI", "brand:wikidata=Q2933348", + "official_name=UNI Coopération financière", "operator=UNI", "operator:wikidata=Q2933348" ] } ] }, - "then": "./assets/data/nsi/logos/uni-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uni-ddac74.jpg" }, { "if": { @@ -21365,7 +21381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unibank-056506.png" + "then": "https://data.mapcomplete.org/nsi//logos/unibank-056506.png" }, { "if": { @@ -21382,7 +21398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicajabanco-b48e80.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unicajabanco-b48e80.svg" }, { "if": { @@ -21398,7 +21414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicreditbank-3ecec5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unicreditbank-3ecec5.jpg" }, { "if": { @@ -21416,7 +21432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicreditbulbank-e5108a.png" + "then": "https://data.mapcomplete.org/nsi//logos/unicreditbulbank-e5108a.png" }, { "if": { @@ -21433,7 +21449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbank-93d3a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unionbank-93d3a2.svg" }, { "if": { @@ -21449,7 +21465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbankofindia-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/unionbankofindia-ad0527.png" }, { "if": { @@ -21465,7 +21481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionsavingsbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unionsavingsbank-93d3a2.jpg" }, { "if": { @@ -21481,7 +21497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbank-f377ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/unionbank-f377ee.png" }, { "if": { @@ -21497,7 +21513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedbank-7bb27b.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedbank-7bb27b.png" }, { "if": { @@ -21513,7 +21529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedbank-b1562d.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedbank-b1562d.png" }, { "if": { @@ -21529,7 +21545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedcommunitybank-b39253.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedcommunitybank-b39253.jpg" }, { "if": { @@ -21546,7 +21562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitus-686806.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitus-686806.png" }, { "if": { @@ -21566,7 +21582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universalbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universalbank-968b58.jpg" }, { "if": { @@ -21583,7 +21599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityfederalcreditunion-18eb57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityfederalcreditunion-18eb57.jpg" }, { "if": { @@ -21603,7 +21619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uob-441a96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uob-441a96.jpg" }, { "if": { @@ -21620,24 +21636,24 @@ } ] }, - "then": "./assets/data/nsi/logos/urnerkantonalbank-ba97f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/urnerkantonalbank-ba97f3.svg" }, { "if": { "and": [ "amenity=atm", - "official_name=United Services Automobile Association", { "or": [ "brand=USAA", "brand:wikidata=Q7865722", + "official_name=United Services Automobile Association", "operator=USAA", "operator:wikidata=Q7865722" ] } ] }, - "then": "./assets/data/nsi/logos/usaa-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usaa-93d3a2.jpg" }, { "if": { @@ -21653,7 +21669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uttarakhandgraminbank-ad0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/uttarakhandgraminbank-ad0527.png" }, { "if": { @@ -21669,7 +21685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uwcreditunion-2d3cec.png" + "then": "https://data.mapcomplete.org/nsi//logos/uwcreditunion-2d3cec.png" }, { "if": { @@ -21685,7 +21701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vakifkatilim-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vakifkatilim-6f1d1d.jpg" }, { "if": { @@ -21701,7 +21717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vakifbank-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vakifbank-6f1d1d.jpg" }, { "if": { @@ -21717,24 +21733,24 @@ } ] }, - "then": "./assets/data/nsi/logos/valiant-ba97f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/valiant-ba97f3.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Vancouver City Savings Credit Union", { "or": [ "brand=Vancity", "brand:wikidata=Q7914085", + "official_name=Vancouver City Savings Credit Union", "operator=Vancity", "operator:wikidata=Q7914085" ] } ] }, - "then": "./assets/data/nsi/logos/vancity-ddac74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vancity-ddac74.jpg" }, { "if": { @@ -21750,7 +21766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velobank-53bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velobank-53bcca.jpg" }, { "if": { @@ -21766,7 +21782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/victoriabank-7a75e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/victoriabank-7a75e5.jpg" }, { "if": { @@ -21782,7 +21798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vietcombank-cfdb1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vietcombank-cfdb1a.jpg" }, { "if": { @@ -21798,7 +21814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vietinbank-cfdb1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/vietinbank-cfdb1a.png" }, { "if": { @@ -21814,7 +21830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginmoney-396707.png" + "then": "https://data.mapcomplete.org/nsi//logos/virginmoney-396707.png" }, { "if": { @@ -21830,26 +21846,26 @@ } ] }, - "then": "./assets/data/nsi/logos/vivibanca-64483a.png" + "then": "https://data.mapcomplete.org/nsi//logos/vivibanca-64483a.png" }, { "if": { "and": [ "amenity=atm", - "official_name=Südtiroler Volksbank - Banca Popolare dell'Alto Adige", - "official_name:de=Südtiroler Volksbank", - "official_name:it=Banca Popolare dell'Alto Adige", { "or": [ "brand=Volksbank", "brand:wikidata=Q3633728", + "official_name=Südtiroler Volksbank - Banca Popolare dell'Alto Adige", + "official_name:de=Südtiroler Volksbank", + "official_name:it=Banca Popolare dell'Alto Adige", "operator=Volksbank", "operator:wikidata=Q3633728" ] } ] }, - "then": "./assets/data/nsi/logos/volksbank-64483a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volksbank-64483a.jpg" }, { "if": { @@ -21865,7 +21881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volksbank-fc110f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/volksbank-fc110f.svg" }, { "if": { @@ -21881,7 +21897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volksbankkolnbonneg-fb8bf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volksbankkolnbonneg-fb8bf5.jpg" }, { "if": { @@ -21898,7 +21914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vseobecnauverovabanka-6843ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/vseobecnauverovabanka-6843ee.png" }, { "if": { @@ -21920,7 +21936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vtb-056506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vtb-056506.jpg" }, { "if": { @@ -21937,7 +21953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wafdbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wafdbank-93d3a2.jpg" }, { "if": { @@ -21953,7 +21969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/websterbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/websterbank-93d3a2.jpg" }, { "if": { @@ -21969,7 +21985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellsfargo-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellsfargo-93d3a2.jpg" }, { "if": { @@ -21985,7 +22001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wesbanco-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wesbanco-93d3a2.jpg" }, { "if": { @@ -22001,7 +22017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westconsincreditunion-2d3cec.png" + "then": "https://data.mapcomplete.org/nsi//logos/westconsincreditunion-2d3cec.png" }, { "if": { @@ -22017,7 +22033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernunion-b183ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westernunion-b183ae.jpg" }, { "if": { @@ -22033,7 +22049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westpac-53bc34.png" + "then": "https://data.mapcomplete.org/nsi//logos/westpac-53bc34.png" }, { "if": { @@ -22049,7 +22065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodforestnationalbank-93d3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/woodforestnationalbank-93d3a2.png" }, { "if": { @@ -22065,7 +22081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wsfsbank-21e4b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/wsfsbank-21e4b8.png" }, { "if": { @@ -22081,7 +22097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yapikredi-6f1d1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yapikredi-6f1d1d.jpg" }, { "if": { @@ -22097,7 +22113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yesbank-ad0527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yesbank-ad0527.jpg" }, { "if": { @@ -22116,7 +22132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yettelbank-4fcc55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yettelbank-4fcc55.jpg" }, { "if": { @@ -22132,7 +22148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yorkshirebuildingsociety-396707.png" + "then": "https://data.mapcomplete.org/nsi//logos/yorkshirebuildingsociety-396707.png" }, { "if": { @@ -22149,7 +22165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zagrebackabanka-4d8c03.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zagrebackabanka-4d8c03.svg" }, { "if": { @@ -22165,7 +22181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zenithbank-a665db.png" + "then": "https://data.mapcomplete.org/nsi//logos/zenithbank-a665db.png" }, { "if": { @@ -22181,7 +22197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zionsbank-93d3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zionsbank-93d3a2.jpg" }, { "if": { @@ -22197,7 +22213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziraatbankasi-254ed3.png" + "then": "https://data.mapcomplete.org/nsi//logos/ziraatbankasi-254ed3.png" }, { "if": { @@ -22213,7 +22229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziraatkatilim-6f1d1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/ziraatkatilim-6f1d1d.png" }, { "if": { @@ -22229,7 +22245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zugerkantonalbank-ba97f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zugerkantonalbank-ba97f3.jpg" }, { "if": { @@ -22246,7 +22262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zurcherkantonalbank-ba97f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/zurcherkantonalbank-ba97f3.png" }, { "if": { @@ -22266,7 +22282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalbankofgreece-650be4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbankofgreece-650be4.jpg" }, { "if": { @@ -22289,7 +22305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piraeusbank-650be4.png" + "then": "https://data.mapcomplete.org/nsi//logos/piraeusbank-650be4.png" }, { "if": { @@ -22309,7 +22325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abank-968b58.jpg" }, { "if": { @@ -22329,7 +22345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/absolutbank-da35c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/absolutbank-da35c8.png" }, { "if": { @@ -22351,7 +22367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/absolutbank-18595f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/absolutbank-18595f.svg" }, { "if": { @@ -22371,7 +22387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avangardbank-da35c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/avangardbank-da35c8.png" }, { "if": { @@ -22391,7 +22407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asianpacificbank-da35c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/asianpacificbank-da35c8.png" }, { "if": { @@ -22411,7 +22427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akbarsbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akbarsbank-da35c8.jpg" }, { "if": { @@ -22431,7 +22447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accordbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accordbank-968b58.jpg" }, { "if": { @@ -22453,7 +22469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfabank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfabank-18595f.jpg" }, { "if": { @@ -22473,7 +22489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfabank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfabank-da35c8.jpg" }, { "if": { @@ -22489,7 +22505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/27e679-03a30b.png" + "then": "https://data.mapcomplete.org/nsi//logos/27e679-03a30b.png" }, { "if": { @@ -22511,7 +22527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vtbbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vtbbank-18595f.jpg" }, { "if": { @@ -22533,7 +22549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankdabrabyt-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankdabrabyt-18595f.jpg" }, { "if": { @@ -22553,7 +22569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankcreditdnipro-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankcreditdnipro-968b58.jpg" }, { "if": { @@ -22573,7 +22589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banklviv-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banklviv-968b58.jpg" }, { "if": { @@ -22593,7 +22609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pivdennybank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pivdennybank-968b58.jpg" }, { "if": { @@ -22615,7 +22631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resheniebank-18595f.png" + "then": "https://data.mapcomplete.org/nsi//logos/resheniebank-18595f.png" }, { "if": { @@ -22635,7 +22651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofsaintpetersburg-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofsaintpetersburg-da35c8.jpg" }, { "if": { @@ -22655,7 +22671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dskbank-e5108a.png" + "then": "https://data.mapcomplete.org/nsi//logos/dskbank-e5108a.png" }, { "if": { @@ -22677,7 +22693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belagroprombank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belagroprombank-18595f.jpg" }, { "if": { @@ -22699,7 +22715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belarusbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belarusbank-18595f.jpg" }, { "if": { @@ -22722,7 +22738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belveb-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belveb-18595f.jpg" }, { "if": { @@ -22744,7 +22760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belgazprombank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belgazprombank-18595f.jpg" }, { "if": { @@ -22766,7 +22782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belinvestbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belinvestbank-18595f.jpg" }, { "if": { @@ -22786,7 +22802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandnbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandnbank-da35c8.jpg" }, { "if": { @@ -22808,7 +22824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnbbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnbbank-18595f.jpg" }, { "if": { @@ -22830,7 +22846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bsbbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bsbbank-18595f.jpg" }, { "if": { @@ -22852,7 +22868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/btabank-18595f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/btabank-18595f.svg" }, { "if": { @@ -22872,7 +22888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/btabank-968b58.svg" + "then": "https://data.mapcomplete.org/nsi//logos/btabank-968b58.svg" }, { "if": { @@ -22893,7 +22909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bacb-e5108a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bacb-e5108a.jpg" }, { "if": { @@ -22913,7 +22929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vostochnybank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vostochnybank-da35c8.jpg" }, { "if": { @@ -22933,7 +22949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vtbbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vtbbank-da35c8.jpg" }, { "if": { @@ -22953,7 +22969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gazprombank-da35c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gazprombank-da35c8.svg" }, { "if": { @@ -22969,7 +22985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3b7e11-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3b7e11-da35c8.jpg" }, { "if": { @@ -22989,7 +23005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zenit-da35c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/zenit-da35c8.png" }, { "if": { @@ -23008,7 +23024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/investbank-e5108a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/investbank-e5108a.jpg" }, { "if": { @@ -23028,7 +23044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrialbank-968b58.png" + "then": "https://data.mapcomplete.org/nsi//logos/industrialbank-968b58.png" }, { "if": { @@ -23044,7 +23060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a53bba-32e64b.png" + "then": "https://data.mapcomplete.org/nsi//logos/a53bba-32e64b.png" }, { "if": { @@ -23064,7 +23080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cominvestbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cominvestbank-968b58.jpg" }, { "if": { @@ -23084,7 +23100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditbankofmoscow-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creditbankofmoscow-da35c8.jpg" }, { "if": { @@ -23106,7 +23122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtbank-18595f.jpg" }, { "if": { @@ -23126,7 +23142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtsbank-da35c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/mtsbank-da35c8.png" }, { "if": { @@ -23144,7 +23160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nlbtutunskabanka-32e64b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nlbtutunskabanka-32e64b.svg" }, { "if": { @@ -23164,7 +23180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubb-e5108a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ubb-e5108a.jpg" }, { "if": { @@ -23186,7 +23202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedbulgarianbank-e5108a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedbulgarianbank-e5108a.jpg" }, { "if": { @@ -23206,7 +23222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalbank-e5108a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalbank-e5108a.jpg" }, { "if": { @@ -23222,7 +23238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ce06bd-da35c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ce06bd-da35c8.png" }, { "if": { @@ -23243,7 +23259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbank-da35c8.jpg" }, { "if": { @@ -23263,7 +23279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oschadbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oschadbank-968b58.jpg" }, { "if": { @@ -23285,7 +23301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paritetbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paritetbank-18595f.jpg" }, { "if": { @@ -23305,7 +23321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postbank-da35c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/postbank-da35c8.png" }, { "if": { @@ -23323,7 +23339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postbank-e5108a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postbank-e5108a.jpg" }, { "if": { @@ -23343,7 +23359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pravexbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pravexbank-968b58.jpg" }, { "if": { @@ -23363,7 +23379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privatbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/privatbank-968b58.jpg" }, { "if": { @@ -23383,7 +23399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pridnestroviansavingsbank-7a75e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pridnestroviansavingsbank-7a75e5.jpg" }, { "if": { @@ -23407,7 +23423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/priorbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/priorbank-18595f.jpg" }, { "if": { @@ -23427,7 +23443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-e5108a.png" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-e5108a.png" }, { "if": { @@ -23447,7 +23463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/promsvyazbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/promsvyazbank-da35c8.jpg" }, { "if": { @@ -23467,7 +23483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstukrainianinternationalbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstukrainianinternationalbank-968b58.jpg" }, { "if": { @@ -23487,7 +23503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-da35c8.jpg" }, { "if": { @@ -23507,7 +23523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rgsbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rgsbank-da35c8.jpg" }, { "if": { @@ -23527,7 +23543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renaissancecredit-da35c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/renaissancecredit-da35c8.svg" }, { "if": { @@ -23543,7 +23559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f27cb2-da35c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/f27cb2-da35c8.svg" }, { "if": { @@ -23563,7 +23579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosbank-da35c8.jpg" }, { "if": { @@ -23586,7 +23602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gbdbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gbdbank-18595f.jpg" }, { "if": { @@ -23606,7 +23622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russianstandardbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/russianstandardbank-da35c8.jpg" }, { "if": { @@ -23628,7 +23644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sberbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sberbank-18595f.jpg" }, { "if": { @@ -23648,7 +23664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sberbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sberbank-da35c8.jpg" }, { "if": { @@ -23668,7 +23684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sovcombank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sovcombank-da35c8.jpg" }, { "if": { @@ -23690,7 +23706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statusbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/statusbank-18595f.jpg" }, { "if": { @@ -23706,7 +23722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c62c01-32e64b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c62c01-32e64b.jpg" }, { "if": { @@ -23722,7 +23738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/67eeb1-32e64b.png" + "then": "https://data.mapcomplete.org/nsi//logos/67eeb1-32e64b.png" }, { "if": { @@ -23742,7 +23758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tascombank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tascombank-968b58.jpg" }, { "if": { @@ -23764,7 +23780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technobank-18595f.png" + "then": "https://data.mapcomplete.org/nsi//logos/technobank-18595f.png" }, { "if": { @@ -23784,7 +23800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statebank-ebb8d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/statebank-ebb8d3.jpg" }, { "if": { @@ -23804,7 +23820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukreximbank-968b58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukreximbank-968b58.jpg" }, { "if": { @@ -23822,7 +23838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unibank-32e64b.png" + "then": "https://data.mapcomplete.org/nsi//logos/unibank-32e64b.png" }, { "if": { @@ -23842,7 +23858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uralsibbank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uralsibbank-da35c8.jpg" }, { "if": { @@ -23864,7 +23880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uralbankforreconstructionanddevelopment-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uralbankforreconstructionanddevelopment-da35c8.jpg" }, { "if": { @@ -23884,7 +23900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/khanbank-ebb8d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/khanbank-ebb8d3.jpg" }, { "if": { @@ -23904,7 +23920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homecreditandfinancebank-da35c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homecreditandfinancebank-da35c8.jpg" }, { "if": { @@ -23926,7 +23942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralcooperativebank-e5108a.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralcooperativebank-e5108a.png" }, { "if": { @@ -23948,7 +23964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralcooperativebank-32e64b.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralcooperativebank-32e64b.png" }, { "if": { @@ -23970,7 +23986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zepterbank-18595f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zepterbank-18595f.jpg" }, { "if": { @@ -23988,7 +24004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkassen-32e64b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkassen-32e64b.jpg" }, { "if": { @@ -24011,7 +24027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basisbank-9cc31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/basisbank-9cc31f.jpg" }, { "if": { @@ -24034,7 +24050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cartubank-9cc31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cartubank-9cc31f.jpg" }, { "if": { @@ -24059,7 +24075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziraatbank-9cc31f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ziraatbank-9cc31f.png" }, { "if": { @@ -24085,7 +24101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tbcbank-9cc31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tbcbank-9cc31f.jpg" }, { "if": { @@ -24111,7 +24127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isbank-a7d7a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isbank-a7d7a7.jpg" }, { "if": { @@ -24137,7 +24153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/credobank-9cc31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/credobank-9cc31f.jpg" }, { "if": { @@ -24160,7 +24176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liberty-9cc31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liberty-9cc31f.jpg" }, { "if": { @@ -24183,7 +24199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-9cc31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-9cc31f.jpg" }, { "if": { @@ -24207,7 +24223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solo-9cc31f.png" + "then": "https://data.mapcomplete.org/nsi//logos/solo-9cc31f.png" }, { "if": { @@ -24230,7 +24246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terabank-9cc31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terabank-9cc31f.jpg" }, { "if": { @@ -24256,7 +24272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halykbank-9cc31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halykbank-9cc31f.jpg" }, { "if": { @@ -24277,7 +24293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbankofisrael-f1b480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unionbankofisrael-f1b480.jpg" }, { "if": { @@ -24297,7 +24313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankdiscount-f1b480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankdiscount-f1b480.jpg" }, { "if": { @@ -24317,7 +24333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankhapoalim-f1b480.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bankhapoalim-f1b480.svg" }, { "if": { @@ -24337,7 +24353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankyahav-f1b480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankyahav-f1b480.jpg" }, { "if": { @@ -24357,7 +24373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofjerusalem-f1b480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofjerusalem-f1b480.jpg" }, { "if": { @@ -24377,7 +24393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankleumi-f1b480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankleumi-f1b480.jpg" }, { "if": { @@ -24397,7 +24413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstinternationalbankofisrael-f1b480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstinternationalbankofisrael-f1b480.jpg" }, { "if": { @@ -24417,7 +24433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmizrahitefahot-f1b480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmizrahitefahot-f1b480.jpg" }, { "if": { @@ -24438,7 +24454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saudinationalbank-fc7317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saudinationalbank-fc7317.jpg" }, { "if": { @@ -24458,7 +24474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alawwalbank-fc7317.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alawwalbank-fc7317.svg" }, { "if": { @@ -24479,7 +24495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saudibritishbank-fc7317.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saudibritishbank-fc7317.svg" }, { "if": { @@ -24500,7 +24516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquesaudifransi-fc7317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquesaudifransi-fc7317.jpg" }, { "if": { @@ -24521,7 +24537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saudiinvestmentbank-fc7317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saudiinvestmentbank-fc7317.jpg" }, { "if": { @@ -24542,7 +24558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arabnationalbank-fc7317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arabnationalbank-fc7317.jpg" }, { "if": { @@ -24563,7 +24579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arabtunisianbank-74adc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arabtunisianbank-74adc2.jpg" }, { "if": { @@ -24583,7 +24599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalbankofalgeria-f957e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbankofalgeria-f957e0.jpg" }, { "if": { @@ -24603,7 +24619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayandehbank-243651.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayandehbank-243651.png" }, { "if": { @@ -24623,7 +24639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbank-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enbank-243651.jpg" }, { "if": { @@ -24643,7 +24659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankpasargad-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankpasargad-243651.jpg" }, { "if": { @@ -24659,7 +24675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/667eb5-243651.svg" + "then": "https://data.mapcomplete.org/nsi//logos/667eb5-243651.svg" }, { "if": { @@ -24675,7 +24691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9d24d1-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9d24d1-243651.jpg" }, { "if": { @@ -24695,7 +24711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/refahbank-243651.svg" + "then": "https://data.mapcomplete.org/nsi//logos/refahbank-243651.svg" }, { "if": { @@ -24715,7 +24731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samanbank-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samanbank-243651.jpg" }, { "if": { @@ -24735,7 +24751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksepah-243651.png" + "then": "https://data.mapcomplete.org/nsi//logos/banksepah-243651.png" }, { "if": { @@ -24755,7 +24771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarmayehbank-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sarmayehbank-243651.jpg" }, { "if": { @@ -24775,7 +24791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinabank-243651.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sinabank-243651.svg" }, { "if": { @@ -24795,7 +24811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shahrbank-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shahrbank-243651.jpg" }, { "if": { @@ -24815,7 +24831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksaderatiran-243651.png" + "then": "https://data.mapcomplete.org/nsi//logos/banksaderatiran-243651.png" }, { "if": { @@ -24835,7 +24851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankkeshavarziiran-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankkeshavarziiran-243651.jpg" }, { "if": { @@ -24855,7 +24871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmaskan-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmaskan-243651.jpg" }, { "if": { @@ -24876,7 +24892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankalbilad-fc7317.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankalbilad-fc7317.png" }, { "if": { @@ -24897,7 +24913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankaljazira-fc7317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankaljazira-fc7317.jpg" }, { "if": { @@ -24917,7 +24933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riyadbank-fc7317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/riyadbank-fc7317.jpg" }, { "if": { @@ -24937,7 +24953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arabinternationalbankoftunisia-74adc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arabinternationalbankoftunisia-74adc2.jpg" }, { "if": { @@ -24957,7 +24973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postbankofiran-243651.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postbankofiran-243651.jpg" }, { "if": { @@ -24977,7 +24993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jsbank-ed31a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jsbank-ed31a6.jpg" }, { "if": { @@ -24997,7 +25013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societegenerale-de4691.png" + "then": "https://data.mapcomplete.org/nsi//logos/societegenerale-de4691.png" }, { "if": { @@ -25020,7 +25036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alinmabank-fc7317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alinmabank-fc7317.jpg" }, { "if": { @@ -25036,7 +25052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/333979-5b8686.png" + "then": "https://data.mapcomplete.org/nsi//logos/333979-5b8686.png" }, { "if": { @@ -25056,7 +25072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2e6f93-74adc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2e6f93-74adc2.jpg" }, { "if": { @@ -25079,7 +25095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalbankofpakistan-ed31a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbankofpakistan-ed31a6.jpg" }, { "if": { @@ -25103,7 +25119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedbanklimited-ed31a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedbanklimited-ed31a6.png" }, { "if": { @@ -25123,7 +25139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agranibank-9cdc0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agranibank-9cdc0f.jpg" }, { "if": { @@ -25143,7 +25159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grameenbank-9cdc0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grameenbank-9cdc0f.jpg" }, { "if": { @@ -25163,7 +25179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/janatabanklimited-9cdc0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/janatabanklimited-9cdc0f.png" }, { "if": { @@ -25183,7 +25199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangladeshkrishibank-9cdc0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bangladeshkrishibank-9cdc0f.jpg" }, { "if": { @@ -25203,7 +25219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonalibank-9cdc0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/sonalibank-9cdc0f.png" }, { "if": { @@ -25224,7 +25240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofayudhya-9d348a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofayudhya-9d348a.jpg" }, { "if": { @@ -25244,7 +25260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangkokbank-9d348a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bangkokbank-9d348a.svg" }, { "if": { @@ -25264,7 +25280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krungthaibank-9d348a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krungthaibank-9d348a.jpg" }, { "if": { @@ -25284,7 +25300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kasikornbank-9d348a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kasikornbank-9d348a.jpg" }, { "if": { @@ -25305,7 +25321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tmbthanachartbank-9d348a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tmbthanachartbank-9d348a.jpg" }, { "if": { @@ -25325,7 +25341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siamcommercialbank-9d348a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siamcommercialbank-9d348a.jpg" }, { "if": { @@ -25345,7 +25361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentsavingsbank-9d348a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentsavingsbank-9d348a.jpg" }, { "if": { @@ -25365,7 +25381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nonghyupbank-cfe76c.png" + "then": "https://data.mapcomplete.org/nsi//logos/nonghyupbank-cfe76c.png" }, { "if": { @@ -25385,7 +25401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shinhanbank-cfe76c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shinhanbank-cfe76c.jpg" }, { "if": { @@ -25405,7 +25421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wooribank-cfe76c.png" + "then": "https://data.mapcomplete.org/nsi//logos/wooribank-cfe76c.png" }, { "if": { @@ -25425,7 +25441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kebhanabank-cfe76c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kebhanabank-cfe76c.jpg" }, { "if": { @@ -25445,7 +25461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeonbank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aeonbank-52efab.svg" }, { "if": { @@ -25465,7 +25481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surugabank-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surugabank-52efab.jpg" }, { "if": { @@ -25485,7 +25501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sevenbank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sevenbank-52efab.svg" }, { "if": { @@ -25505,7 +25521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mizuhobank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mizuhobank-52efab.svg" }, { "if": { @@ -25525,7 +25541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/japanpostbank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/japanpostbank-52efab.svg" }, { "if": { @@ -25545,7 +25561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resonabank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/resonabank-52efab.svg" }, { "if": { @@ -25565,7 +25581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sumitomomitsuitrustbank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sumitomomitsuitrustbank-52efab.svg" }, { "if": { @@ -25586,7 +25602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sumitomomitsuibankingcorporation-52efab.png" + "then": "https://data.mapcomplete.org/nsi//logos/sumitomomitsuibankingcorporation-52efab.png" }, { "if": { @@ -25606,7 +25622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitsubishiufjtrustandbankingcorporation-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mitsubishiufjtrustandbankingcorporation-52efab.svg" }, { "if": { @@ -25626,7 +25642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mufgbank-52efab.png" + "then": "https://data.mapcomplete.org/nsi//logos/mufgbank-52efab.png" }, { "if": { @@ -25650,7 +25666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shanghaicommercialandsavingsbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shanghaicommercialandsavingsbank-9a6797.jpg" }, { "if": { @@ -25675,7 +25691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shanghaicommercialbank-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shanghaicommercialbank-e57d9a.jpg" }, { "if": { @@ -25695,7 +25711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shanghaipudongdevelopmentbank-7886cb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shanghaipudongdevelopmentbank-7886cb.svg" }, { "if": { @@ -25715,7 +25731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofeastasia-a6154f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofeastasia-a6154f.jpg" }, { "if": { @@ -25739,7 +25755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaciticbankinternational-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaciticbankinternational-e57d9a.jpg" }, { "if": { @@ -25759,7 +25775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaciticbank-a6154f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaciticbank-a6154f.jpg" }, { "if": { @@ -25781,7 +25797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrialandcommercialbankofchina-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/industrialandcommercialbankofchina-52efab.jpg" }, { "if": { @@ -25801,7 +25817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrialandcommercialbankofchina-e9a054.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/industrialandcommercialbankofchina-e9a054.jpg" }, { "if": { @@ -25821,7 +25837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaconstructionbank-e9a054.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-e9a054.jpg" }, { "if": { @@ -25841,7 +25857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaminshengbank-7886cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/chinaminshengbank-7886cb.png" }, { "if": { @@ -25861,7 +25877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postalsavingsbankofchina-7886cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postalsavingsbankofchina-7886cb.jpg" }, { "if": { @@ -25881,7 +25897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofchina-e9a054.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofchina-e9a054.jpg" }, { "if": { @@ -25905,7 +25921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctbcbank-9a6797.png" + "then": "https://data.mapcomplete.org/nsi//logos/ctbcbank-9a6797.png" }, { "if": { @@ -25929,7 +25945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icbcasia-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icbcasia-e57d9a.jpg" }, { "if": { @@ -25955,7 +25971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaconstructionbank-a6c792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-a6c792.jpg" }, { "if": { @@ -25979,7 +25995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccbasia-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ccbasia-e57d9a.jpg" }, { "if": { @@ -26005,7 +26021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofchina-a6c792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofchina-a6c792.jpg" }, { "if": { @@ -26029,7 +26045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofchinahongkong-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofchinahongkong-e57d9a.jpg" }, { "if": { @@ -26052,7 +26068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofcommunications-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofcommunications-e57d9a.jpg" }, { "if": { @@ -26072,7 +26088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofcommunications-a6154f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofcommunications-a6154f.jpg" }, { "if": { @@ -26095,7 +26111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingstownbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingstownbank-9a6797.jpg" }, { "if": { @@ -26116,7 +26132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keiyobank-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keiyobank-52efab.jpg" }, { "if": { @@ -26136,7 +26152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyotochuoshinkinbank-52efab.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyotochuoshinkinbank-52efab.png" }, { "if": { @@ -26156,7 +26172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofkyoto-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofkyoto-52efab.jpg" }, { "if": { @@ -26176,7 +26192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iyobank-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iyobank-52efab.jpg" }, { "if": { @@ -26200,7 +26216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yuantacommercialbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yuantacommercialbank-9a6797.jpg" }, { "if": { @@ -26224,7 +26240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megainternationalcommercialbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megainternationalcommercialbank-9a6797.jpg" }, { "if": { @@ -26244,7 +26260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hachijunibank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hachijunibank-52efab.svg" }, { "if": { @@ -26268,7 +26284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kgicommercialbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kgicommercialbank-9a6797.jpg" }, { "if": { @@ -26292,7 +26308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chonghingbank-aa3d3d.png" + "then": "https://data.mapcomplete.org/nsi//logos/chonghingbank-aa3d3d.png" }, { "if": { @@ -26312,7 +26328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northpacificbank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/northpacificbank-52efab.svg" }, { "if": { @@ -26332,7 +26348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jurokubank-52efab.png" + "then": "https://data.mapcomplete.org/nsi//logos/jurokubank-52efab.png" }, { "if": { @@ -26352,7 +26368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chibabank-52efab.png" + "then": "https://data.mapcomplete.org/nsi//logos/chibabank-52efab.png" }, { "if": { @@ -26372,7 +26388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nantobank-3b4db7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nantobank-3b4db7.jpg" }, { "if": { @@ -26396,7 +26412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taichungbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taichungbank-9a6797.jpg" }, { "if": { @@ -26420,7 +26436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taipeifubonbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taipeifubonbank-9a6797.jpg" }, { "if": { @@ -26444,7 +26460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taishininternationalbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taishininternationalbank-9a6797.jpg" }, { "if": { @@ -26468,7 +26484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwancooperativebank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwancooperativebank-9a6797.jpg" }, { "if": { @@ -26488,7 +26504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shokochukinbank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shokochukinbank-52efab.svg" }, { "if": { @@ -26508,7 +26524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cathaybank-5a3a19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cathaybank-5a3a19.jpg" }, { "if": { @@ -26532,7 +26548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cathayunitedbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cathayunitedbank-9a6797.jpg" }, { "if": { @@ -26552,7 +26568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saitamaresonabank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saitamaresonabank-52efab.svg" }, { "if": { @@ -26575,7 +26591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamashinkinbank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tamashinkinbank-52efab.svg" }, { "if": { @@ -26599,7 +26615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dahsingbank-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dahsingbank-e57d9a.jpg" }, { "if": { @@ -26623,7 +26639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicbankhongkong-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicbankhongkong-e57d9a.jpg" }, { "if": { @@ -26643,7 +26659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2997e9-a6c792.svg" + "then": "https://data.mapcomplete.org/nsi//logos/2997e9-a6c792.svg" }, { "if": { @@ -26665,7 +26681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taifungbank-a6c792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taifungbank-a6c792.jpg" }, { "if": { @@ -26689,7 +26705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entiecommercialbank-9a6797.svg" + "then": "https://data.mapcomplete.org/nsi//logos/entiecommercialbank-9a6797.svg" }, { "if": { @@ -26709,7 +26725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamanashichuobank-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamanashichuobank-52efab.jpg" }, { "if": { @@ -26733,7 +26749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icbc-a6c792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icbc-a6c792.jpg" }, { "if": { @@ -26753,7 +26769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joyobank-52efab.png" + "then": "https://data.mapcomplete.org/nsi//logos/joyobank-52efab.png" }, { "if": { @@ -26773,7 +26789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinganbank-7886cb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pinganbank-7886cb.svg" }, { "if": { @@ -26797,7 +26813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/changhwabank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/changhwabank-9a6797.jpg" }, { "if": { @@ -26821,7 +26837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hangsengbank-aa3d3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hangsengbank-aa3d3d.jpg" }, { "if": { @@ -26841,7 +26857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aichibank-52efab.png" + "then": "https://data.mapcomplete.org/nsi//logos/aichibank-52efab.png" }, { "if": { @@ -26861,7 +26877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofjapan-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofjapan-52efab.jpg" }, { "if": { @@ -26881,7 +26897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbsbanktaiwan-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dbsbanktaiwan-9a6797.jpg" }, { "if": { @@ -26905,7 +26921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbs-aa3d3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dbs-aa3d3d.jpg" }, { "if": { @@ -26929,7 +26945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbs-e9a054.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dbs-e9a054.jpg" }, { "if": { @@ -26953,7 +26969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofeastasia-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofeastasia-e57d9a.jpg" }, { "if": { @@ -26977,7 +26993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofpanshin-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofpanshin-9a6797.jpg" }, { "if": { @@ -26997,7 +27013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/musashinobank-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/musashinobank-52efab.jpg" }, { "if": { @@ -27021,7 +27037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksinopac-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banksinopac-9a6797.jpg" }, { "if": { @@ -27041,7 +27057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardcharteredtaiwan-9a6797.png" + "then": "https://data.mapcomplete.org/nsi//logos/standardcharteredtaiwan-9a6797.png" }, { "if": { @@ -27065,7 +27081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardchartered-e57d9a.png" + "then": "https://data.mapcomplete.org/nsi//logos/standardchartered-e57d9a.png" }, { "if": { @@ -27085,7 +27101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardchartered-a6154f.png" + "then": "https://data.mapcomplete.org/nsi//logos/standardchartered-a6154f.png" }, { "if": { @@ -27107,7 +27123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbcbanktaiwan-9a6797.png" + "then": "https://data.mapcomplete.org/nsi//logos/hsbcbanktaiwan-9a6797.png" }, { "if": { @@ -27129,7 +27145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lusointernationalbanking-a6c792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lusointernationalbanking-a6c792.jpg" }, { "if": { @@ -27153,7 +27169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esuncommercialbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esuncommercialbank-9a6797.jpg" }, { "if": { @@ -27177,7 +27193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taipeistarbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taipeistarbank-9a6797.jpg" }, { "if": { @@ -27193,7 +27209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c48abb-52efab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c48abb-52efab.jpg" }, { "if": { @@ -27217,7 +27233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangkokbank-e57d9a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bangkokbank-e57d9a.svg" }, { "if": { @@ -27239,7 +27255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welllinkbank-a6c792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welllinkbank-a6c792.jpg" }, { "if": { @@ -27263,7 +27279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcommercialbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstcommercialbank-9a6797.jpg" }, { "if": { @@ -27287,7 +27303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbankoftaiwan-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unionbankoftaiwan-9a6797.jpg" }, { "if": { @@ -27311,7 +27327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanbusinessbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanbusinessbank-9a6797.jpg" }, { "if": { @@ -27336,7 +27352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landbankoftaiwan-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landbankoftaiwan-9a6797.jpg" }, { "if": { @@ -27360,7 +27376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shinkongcommercialbank-9a6797.png" + "then": "https://data.mapcomplete.org/nsi//logos/shinkongcommercialbank-9a6797.png" }, { "if": { @@ -27385,7 +27401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankoftaiwan-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankoftaiwan-9a6797.jpg" }, { "if": { @@ -27410,7 +27426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citibank-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citibank-e57d9a.jpg" }, { "if": { @@ -27436,7 +27452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocbcbank-a6c792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocbcbank-a6c792.jpg" }, { "if": { @@ -27460,7 +27476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocbcbank-e57d9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocbcbank-e57d9a.jpg" }, { "if": { @@ -27484,7 +27500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huanancommercialbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huanancommercialbank-9a6797.jpg" }, { "if": { @@ -27504,7 +27520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinkiosakabank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kinkiosakabank-52efab.svg" }, { "if": { @@ -27528,7 +27544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fareasterninternationalbank-9a6797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fareasterninternationalbank-9a6797.jpg" }, { "if": { @@ -27552,7 +27568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbc-aa3d3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsbc-aa3d3d.jpg" }, { "if": { @@ -27572,7 +27588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kagoshimabank-52efab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kagoshimabank-52efab.svg" }, { "if": { @@ -27587,7 +27603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1stsecuritybank-181391.png" + "then": "https://data.mapcomplete.org/nsi//logos/1stsecuritybank-181391.png" }, { "if": { @@ -27607,23 +27623,23 @@ } ] }, - "then": "./assets/data/nsi/logos/3bank-e9ea45.png" + "then": "https://data.mapcomplete.org/nsi//logos/3bank-e9ea45.png" }, { "if": { "and": [ "amenity=bank", - "official_name=365.bank, a.s.", { "or": [ "brand=365.bank", "brand:wikidata=Q7237158", - "name=365.bank" + "name=365.bank", + "official_name=365.bank, a.s." ] } ] }, - "then": "./assets/data/nsi/logos/365bank-6a1dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/365bank-6a1dfb.jpg" }, { "if": { @@ -27639,39 +27655,39 @@ } ] }, - "then": "./assets/data/nsi/logos/aargauischekantonalbank-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aargauischekantonalbank-74b036.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=ABANCA Corporación Bancaria", { "or": [ "brand=Abanca", "brand:wikidata=Q9598744", - "name=Abanca" + "name=Abanca", + "official_name=ABANCA Corporación Bancaria" ] } ] }, - "then": "./assets/data/nsi/logos/abanca-151324.png" + "then": "https://data.mapcomplete.org/nsi//logos/abanca-151324.png" }, { "if": { "and": [ "amenity=bank", - "official_name=ABN AMRO Bank N.V.", { "or": [ "brand=ABN AMRO", "brand:wikidata=Q287471", - "name=ABN AMRO" + "name=ABN AMRO", + "official_name=ABN AMRO Bank N.V." ] } ] }, - "then": "./assets/data/nsi/logos/abnamro-fb21a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/abnamro-fb21a8.png" }, { "if": { @@ -27686,7 +27702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abnamromeespierson-fb21a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/abnamromeespierson-fb21a8.png" }, { "if": { @@ -27701,7 +27717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aboundcreditunion-1458de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aboundcreditunion-1458de.jpg" }, { "if": { @@ -27719,7 +27735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/absa-9d35ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/absa-9d35ea.jpg" }, { "if": { @@ -27734,7 +27750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/absa-50d637.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/absa-50d637.jpg" }, { "if": { @@ -27751,7 +27767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abudhabicommercialbank-b21eb1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/abudhabicommercialbank-b21eb1.svg" }, { "if": { @@ -27772,7 +27788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acba-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acba-9c44ae.jpg" }, { "if": { @@ -27787,7 +27803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accessbank-155277.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accessbank-155277.jpg" }, { "if": { @@ -27802,7 +27818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/activobank-4028ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/activobank-4028ed.jpg" }, { "if": { @@ -27817,7 +27833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/addikobank-975383.svg" + "then": "https://data.mapcomplete.org/nsi//logos/addikobank-975383.svg" }, { "if": { @@ -27832,7 +27848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/affinbank-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/affinbank-8ab35f.jpg" }, { "if": { @@ -27847,7 +27863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/affinitycreditunion-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/affinitycreditunion-e1345b.jpg" }, { "if": { @@ -27862,7 +27878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/africanbank-50d637.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/africanbank-50d637.jpg" }, { "if": { @@ -27877,7 +27893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agibank-0ed44d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agibank-0ed44d.svg" }, { "if": { @@ -27892,7 +27908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrambanka-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrambanka-6f3d3b.png" }, { "if": { @@ -27907,25 +27923,25 @@ } ] }, - "then": "./assets/data/nsi/logos/agribank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/agribank-ea2e2d.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", - "official_name:en=Vietnam Bank for Agriculture and Rural Development", - "official_name:vi=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", { "or": [ "brand=Agribank", "brand:wikidata=Q1924723", - "name=Agribank" + "name=Agribank", + "official_name=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", + "official_name:en=Vietnam Bank for Agriculture and Rural Development", + "official_name:vi=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam" ] } ] }, - "then": "./assets/data/nsi/logos/agribank-a28d32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agribank-a28d32.jpg" }, { "if": { @@ -27940,7 +27956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agribank-ce50d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agribank-ce50d7.jpg" }, { "if": { @@ -27955,23 +27971,23 @@ } ] }, - "then": "./assets/data/nsi/logos/agrobank-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrobank-8ab35f.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Allied Irish Banks", { "or": [ "brand=AIB", "brand:wikidata=Q1642179", - "name=AIB" + "name=AIB", + "official_name=Allied Irish Banks" ] } ] }, - "then": "./assets/data/nsi/logos/aib-018fb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/aib-018fb8.png" }, { "if": { @@ -27989,7 +28005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aikbanka-e9ea45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aikbanka-e9ea45.jpg" }, { "if": { @@ -28004,7 +28020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airbank-7d13c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/airbank-7d13c0.png" }, { "if": { @@ -28019,7 +28035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akbank-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akbank-a30806.jpg" }, { "if": { @@ -28034,7 +28050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akfinansbank-c9effc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akfinansbank-c9effc.jpg" }, { "if": { @@ -28049,7 +28065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktia-22526e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aktia-22526e.jpg" }, { "if": { @@ -28064,7 +28080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alandsbanken-22526e.png" + "then": "https://data.mapcomplete.org/nsi//logos/alandsbanken-22526e.png" }, { "if": { @@ -28079,7 +28095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aliorbank-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aliorbank-68054b.jpg" }, { "if": { @@ -28094,7 +28110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allahabadbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allahabadbank-34f411.jpg" }, { "if": { @@ -28109,7 +28125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliancebank-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliancebank-8ab35f.jpg" }, { "if": { @@ -28126,7 +28142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allianz-126296.png" + "then": "https://data.mapcomplete.org/nsi//logos/allianz-126296.png" }, { "if": { @@ -28145,7 +28161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliedbank-4c5401.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliedbank-4c5401.jpg" }, { "if": { @@ -28160,7 +28176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliedbank-431f82.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alliedbank-431f82.svg" }, { "if": { @@ -28175,7 +28191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/almoraurbancooperativebanklimited-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/almoraurbancooperativebanklimited-34f411.jpg" }, { "if": { @@ -28190,7 +28206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alphabank-438bef.png" + "then": "https://data.mapcomplete.org/nsi//logos/alphabank-438bef.png" }, { "if": { @@ -28205,7 +28221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alternasavings-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alternasavings-e1345b.jpg" }, { "if": { @@ -28220,7 +28236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alternatifbank-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alternatifbank-a30806.jpg" }, { "if": { @@ -28235,7 +28251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambank-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ambank-8ab35f.jpg" }, { "if": { @@ -28250,7 +28266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amegybank-718014.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amegybank-718014.jpg" }, { "if": { @@ -28265,7 +28281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amen-367f6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amen-367f6f.jpg" }, { "if": { @@ -28286,7 +28302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameriabank-9c44ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameriabank-9c44ae.png" }, { "if": { @@ -28302,7 +28318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americafirstcreditunion-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americafirstcreditunion-ea2e2d.jpg" }, { "if": { @@ -28317,23 +28333,23 @@ } ] }, - "then": "./assets/data/nsi/logos/amerisbank-246182.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amerisbank-246182.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=AMP Limited", { "or": [ "brand=AMP", "brand:wikidata=Q295261", - "name=AMP" + "name=AMP", + "official_name=AMP Limited" ] } ] }, - "then": "./assets/data/nsi/logos/amp-510934.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amp-510934.jpg" }, { "if": { @@ -28348,7 +28364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anadolubank-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anadolubank-a30806.jpg" }, { "if": { @@ -28363,7 +28379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andhrabank-34f411.svg" + "then": "https://data.mapcomplete.org/nsi//logos/andhrabank-34f411.svg" }, { "if": { @@ -28382,7 +28398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andhrapradeshgrameenavikasbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andhrapradeshgrameenavikasbank-34f411.jpg" }, { "if": { @@ -28397,23 +28413,23 @@ } ] }, - "then": "./assets/data/nsi/logos/androscogginbank-b5f099.svg" + "then": "https://data.mapcomplete.org/nsi//logos/androscogginbank-b5f099.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=Australia and New Zealand Banking Group Limited", { "or": [ "brand=ANZ", "brand:wikidata=Q714641", - "name=ANZ" + "name=ANZ", + "official_name=Australia and New Zealand Banking Group Limited" ] } ] }, - "then": "./assets/data/nsi/logos/anz-510934.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anz-510934.jpg" }, { "if": { @@ -28429,7 +28445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appenzellerkantonalbank-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/appenzellerkantonalbank-74b036.svg" }, { "if": { @@ -28444,7 +28460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applebank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/applebank-ea2e2d.jpg" }, { "if": { @@ -28465,7 +28481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/araratbank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/araratbank-9c44ae.jpg" }, { "if": { @@ -28486,7 +28502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ardshinbank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ardshinbank-9c44ae.jpg" }, { "if": { @@ -28501,7 +28517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/argenta-c47d60.png" + "then": "https://data.mapcomplete.org/nsi//logos/argenta-c47d60.png" }, { "if": { @@ -28526,7 +28542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armbusinessbank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armbusinessbank-9c44ae.jpg" }, { "if": { @@ -28551,7 +28567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armeconombank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armeconombank-9c44ae.jpg" }, { "if": { @@ -28572,7 +28588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armswissbank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armswissbank-9c44ae.jpg" }, { "if": { @@ -28587,7 +28603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arvestbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arvestbank-ea2e2d.jpg" }, { "if": { @@ -28602,7 +28618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asbbank-279fc5.png" + "then": "https://data.mapcomplete.org/nsi//logos/asbbank-279fc5.png" }, { "if": { @@ -28617,7 +28633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asbank-c9effc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asbank-c9effc.jpg" }, { "if": { @@ -28633,7 +28649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asiaunitedbank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asiaunitedbank-431f82.jpg" }, { "if": { @@ -28652,7 +28668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/askaribank-da5806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/askaribank-da5806.jpg" }, { "if": { @@ -28667,7 +28683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/assamgraminvikashbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/assamgraminvikashbank-34f411.jpg" }, { "if": { @@ -28682,23 +28698,23 @@ } ] }, - "then": "./assets/data/nsi/logos/associatedbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/associatedbank-ea2e2d.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Alberta Treasury Branches", { "or": [ "brand=ATB Financial", "brand:wikidata=Q298762", - "name=ATB Financial" + "name=ATB Financial", + "official_name=Alberta Treasury Branches" ] } ] }, - "then": "./assets/data/nsi/logos/atbfinancial-5e244f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atbfinancial-5e244f.jpg" }, { "if": { @@ -28713,7 +28729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlanticunionbank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/atlanticunionbank-ea2e2d.png" }, { "if": { @@ -28731,7 +28747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/attijariwafabank-c1cae6.png" + "then": "https://data.mapcomplete.org/nsi//logos/attijariwafabank-c1cae6.png" }, { "if": { @@ -28746,7 +28762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausmallfinancebank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausmallfinancebank-34f411.jpg" }, { "if": { @@ -28761,7 +28777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axa-b7a026.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axa-b7a026.jpg" }, { "if": { @@ -28776,7 +28792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axisbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axisbank-34f411.jpg" }, { "if": { @@ -28791,39 +28807,39 @@ } ] }, - "then": "./assets/data/nsi/logos/baccredomatic-a7c666.png" + "then": "https://data.mapcomplete.org/nsi//logos/baccredomatic-a7c666.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Angolano de Investimentos", { "or": [ "brand=BAI", "brand:wikidata=Q806172", - "name=BAI" + "name=BAI", + "official_name=Banco Angolano de Investimentos" ] } ] }, - "then": "./assets/data/nsi/logos/bai-706633.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bai-706633.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Grupo Financiero Banamex", { "or": [ "brand=Banamex", "brand:wikidata=Q749474", - "name=Banamex" + "name=Banamex", + "official_name=Grupo Financiero Banamex" ] } ] }, - "then": "./assets/data/nsi/logos/banamex-574575.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banamex-574575.svg" }, { "if": { @@ -28838,23 +28854,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bancaagricolapopolarediragusa-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancaagricolapopolarediragusa-7b36b5.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Cassa di Risparmio di Asti", { "or": [ "brand=Banca di Asti", "brand:wikidata=Q3661919", - "name=Banca di Asti" + "name=Banca di Asti", + "official_name=Cassa di Risparmio di Asti" ] } ] }, - "then": "./assets/data/nsi/logos/bancadiasti-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancadiasti-7b36b5.jpg" }, { "if": { @@ -28869,7 +28885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancagenerali-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancagenerali-7b36b5.jpg" }, { "if": { @@ -28884,7 +28900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancamarch-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancamarch-ce59ab.jpg" }, { "if": { @@ -28899,7 +28915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancamediolanum-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancamediolanum-7b36b5.jpg" }, { "if": { @@ -28914,7 +28930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancapopolaredisondrio-7b36b5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bancapopolaredisondrio-7b36b5.svg" }, { "if": { @@ -28929,7 +28945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancasella-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancasella-7b36b5.png" }, { "if": { @@ -28944,7 +28960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancatransilvania-9a9a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancatransilvania-9a9a30.jpg" }, { "if": { @@ -28959,39 +28975,39 @@ } ] }, - "then": "./assets/data/nsi/logos/bancaribe-0269b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancaribe-0269b0.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banca dello Stato del Cantone Ticino", { "or": [ "brand=BancaStato", "brand:wikidata=Q806158", - "name=BancaStato" + "name=BancaStato", + "official_name=Banca dello Stato del Cantone Ticino" ] } ] }, - "then": "./assets/data/nsi/logos/bancastato-72646c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancastato-72646c.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Agrario de Colombia", { "or": [ "brand=Banco Agrario", "brand:wikidata=Q20013358", - "name=Banco Agrario" + "name=Banco Agrario", + "official_name=Banco Agrario de Colombia" ] } ] }, - "then": "./assets/data/nsi/logos/bancoagrario-d049bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoagrario-d049bf.jpg" }, { "if": { @@ -29006,7 +29022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoavvillas-d049bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoavvillas-d049bf.jpg" }, { "if": { @@ -29021,7 +29037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoazteca-a695fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoazteca-a695fe.jpg" }, { "if": { @@ -29036,7 +29052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancobicentenario-0269b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancobicentenario-0269b0.png" }, { "if": { @@ -29051,7 +29067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancobisa-66977e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancobisa-66977e.jpg" }, { "if": { @@ -29066,24 +29082,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bancobmg-0ed44d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bancobmg-0ed44d.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Português de Investimento", "short_name=BPI", { "or": [ "brand=Banco BPI", "brand:wikidata=Q537886", - "name=Banco BPI" + "name=Banco BPI", + "official_name=Banco Português de Investimento" ] } ] }, - "then": "./assets/data/nsi/logos/bancobpi-4028ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancobpi-4028ed.png" }, { "if": { @@ -29098,7 +29114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancobpm-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancobpm-7b36b5.jpg" }, { "if": { @@ -29113,23 +29129,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bancocajasocial-d049bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancocajasocial-d049bf.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Ciudad de Buenos Aires", { "or": [ "brand=Banco Ciudad", "brand:wikidata=Q4856204", - "name=Banco Ciudad" + "name=Banco Ciudad", + "official_name=Banco Ciudad de Buenos Aires" ] } ] }, - "then": "./assets/data/nsi/logos/bancociudad-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancociudad-841353.jpg" }, { "if": { @@ -29144,7 +29160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancocontinental-82a931.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancocontinental-82a931.jpg" }, { "if": { @@ -29159,7 +29175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoctt-4028ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoctt-4028ed.png" }, { "if": { @@ -29174,7 +29190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodaamazonia-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodaamazonia-0ed44d.jpg" }, { "if": { @@ -29189,7 +29205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodebogota-d049bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodebogota-d049bf.jpg" }, { "if": { @@ -29205,7 +29221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodebrasilia-0ed44d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodebrasilia-0ed44d.png" }, { "if": { @@ -29220,24 +29236,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodechile-dbf1ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodechile-dbf1ad.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de la Provincia de Córdoba S.A.", "short_name=Bancor", { "or": [ "brand=Banco de Córdoba", "brand:wikidata=Q5718071", - "name=Banco de Córdoba" + "name=Banco de Córdoba", + "official_name=Banco de la Provincia de Córdoba S.A." ] } ] }, - "then": "./assets/data/nsi/logos/bancodecordoba-2c68df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodecordoba-2c68df.jpg" }, { "if": { @@ -29252,7 +29268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodecreditoycomercio-23df77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodecreditoycomercio-23df77.jpg" }, { "if": { @@ -29267,7 +29283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodedesarrollobanrural-2713d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodedesarrollobanrural-2713d7.jpg" }, { "if": { @@ -29284,7 +29300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodefomentoangola-706633.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodefomentoangola-706633.png" }, { "if": { @@ -29299,7 +29315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodelanacion-e2ab80.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodelanacion-e2ab80.png" }, { "if": { @@ -29314,7 +29330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodeoccidente-d049bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodeoccidente-d049bf.png" }, { "if": { @@ -29329,7 +29345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodeoccidente-321983.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodeoccidente-321983.jpg" }, { "if": { @@ -29344,7 +29360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodevenezuela-0269b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodevenezuela-0269b0.jpg" }, { "if": { @@ -29359,7 +29375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodelaustro-01e191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodelaustro-01e191.jpg" }, { "if": { @@ -29374,7 +29390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodelbienestar-574575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodelbienestar-574575.jpg" }, { "if": { @@ -29389,7 +29405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodesio-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancodesio-7b36b5.png" }, { "if": { @@ -29404,7 +29420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodisardegna-7b36b5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodisardegna-7b36b5.svg" }, { "if": { @@ -29419,7 +29435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodobrasil-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodobrasil-0ed44d.jpg" }, { "if": { @@ -29435,7 +29451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodonordeste-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodonordeste-0ed44d.jpg" }, { "if": { @@ -29450,23 +29466,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoeconomico-66977e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoeconomico-66977e.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco del Estado de Chile", { "or": [ "brand=Banco Estado", "brand:wikidata=Q5718188", - "name=Banco Estado" + "name=Banco Estado", + "official_name=Banco del Estado de Chile" ] } ] }, - "then": "./assets/data/nsi/logos/bancoestado-dbf1ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoestado-dbf1ad.jpg" }, { "if": { @@ -29481,7 +29497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancofalabella-7e72a9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bancofalabella-7e72a9.svg" }, { "if": { @@ -29496,23 +29512,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bancofassil-66977e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancofassil-66977e.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco para el Fomento a Iniciativas Económicas", { "or": [ "brand=Banco Fie", "brand:wikidata=Q81782924", - "name=Banco Fie" + "name=Banco Fie", + "official_name=Banco para el Fomento a Iniciativas Económicas" ] } ] }, - "then": "./assets/data/nsi/logos/bancofie-66977e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancofie-66977e.jpg" }, { "if": { @@ -29528,7 +29544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancofondocomun-0269b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancofondocomun-0269b0.jpg" }, { "if": { @@ -29543,7 +29559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancogandtcontinental-4ca2cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancogandtcontinental-4ca2cd.png" }, { "if": { @@ -29559,7 +29575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoganadero-66977e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoganadero-66977e.png" }, { "if": { @@ -29574,7 +29590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancogeneral-865fd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancogeneral-865fd1.png" }, { "if": { @@ -29589,7 +29605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoindustrial-841353.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoindustrial-841353.png" }, { "if": { @@ -29604,7 +29620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancointernacional-dbf1ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancointernacional-dbf1ad.jpg" }, { "if": { @@ -29619,7 +29635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancointernacional-01e191.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancointernacional-01e191.png" }, { "if": { @@ -29635,7 +29651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancomercantilsantacruz-66977e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancomercantilsantacruz-66977e.png" }, { "if": { @@ -29650,7 +29666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancomercantildobrasil-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancomercantildobrasil-0ed44d.jpg" }, { "if": { @@ -29665,40 +29681,40 @@ } ] }, - "then": "./assets/data/nsi/logos/bancometropolitano-23df77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancometropolitano-23df77.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de la Nación Argentina", { "or": [ "brand=Banco Nación", "brand:wikidata=Q2883376", - "name=Banco Nación" + "name=Banco Nación", + "official_name=Banco de la Nación Argentina" ] } ] }, - "then": "./assets/data/nsi/logos/banconacion-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banconacion-841353.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Nacional de Costa Rica", "short_name=BNCR", { "or": [ "brand=Banco Nacional de Costa Rica", "brand:wikidata=Q2917708", - "name=Banco Nacional" + "name=Banco Nacional", + "official_name=Banco Nacional de Costa Rica" ] } ] }, - "then": "./assets/data/nsi/logos/banconacional-865fd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banconacional-865fd1.jpg" }, { "if": { @@ -29714,7 +29730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banconacionaldebolivia-66977e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banconacionaldebolivia-66977e.jpg" }, { "if": { @@ -29730,23 +29746,23 @@ } ] }, - "then": "./assets/data/nsi/logos/banconacionaldecredito-0269b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banconacionaldecredito-0269b0.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Popular Pastor", { "or": [ "brand=Banco Pastor", "brand:wikidata=Q806193", - "name=Banco Pastor" + "name=Banco Pastor", + "official_name=Banco Popular Pastor" ] } ] }, - "then": "./assets/data/nsi/logos/bancopastor-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancopastor-ce59ab.jpg" }, { "if": { @@ -29761,7 +29777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancopatagonia-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancopatagonia-841353.jpg" }, { "if": { @@ -29776,7 +29792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancopichincha-6de7b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancopichincha-6de7b0.jpg" }, { "if": { @@ -29791,7 +29807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancopopular-d049bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancopopular-d049bf.png" }, { "if": { @@ -29806,23 +29822,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bancopopulardeahorro-23df77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancopopulardeahorro-23df77.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de la Provincia de Buenos Aires", { "or": [ "brand=Banco Provincia", "brand:wikidata=Q4856209", - "name=Banco Provincia" + "name=Banco Provincia", + "official_name=Banco de la Provincia de Buenos Aires" ] } ] }, - "then": "./assets/data/nsi/logos/bancoprovincia-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancoprovincia-841353.jpg" }, { "if": { @@ -29837,13 +29853,12 @@ } ] }, - "then": "./assets/data/nsi/logos/bancoprovinciadeneuquen-841353.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancoprovinciadeneuquen-841353.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de Sabadell, S.A.", { "or": [ "brand=Banco Sabadell", @@ -29852,12 +29867,13 @@ "brand:wikidata=Q762330", "name=Banco Sabadell", "name:ca=Banc Sabadell", - "name:es=Banco Sabadell" + "name:es=Banco Sabadell", + "official_name=Banco de Sabadell, S.A." ] } ] }, - "then": "./assets/data/nsi/logos/bancosabadell-ce59ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancosabadell-ce59ab.png" }, { "if": { @@ -29872,39 +29888,39 @@ } ] }, - "then": "./assets/data/nsi/logos/bancosafra-0ed44d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancosafra-0ed44d.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Nuevo Banco de Santa Fe", { "or": [ "brand=Banco Santa Fe", "brand:wikidata=Q6046871", - "name=Banco Santa Fe" + "name=Banco Santa Fe", + "official_name=Nuevo Banco de Santa Fe" ] } ] }, - "then": "./assets/data/nsi/logos/bancosantafe-841353.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancosantafe-841353.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Santander Group", { "or": [ "brand=Banco Santander", "brand:wikidata=Q6496310", - "name=Banco Santander" + "name=Banco Santander", + "official_name=Santander Group" ] } ] }, - "then": "./assets/data/nsi/logos/bancosantander-77aaa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancosantander-77aaa4.jpg" }, { "if": { @@ -29919,39 +29935,39 @@ } ] }, - "then": "./assets/data/nsi/logos/bancosol-706633.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancosol-706633.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Solidario", { "or": [ "brand=Banco Sol", "brand:wikidata=Q62118746", - "name=Banco Sol" + "name=Banco Sol", + "official_name=Banco Solidario" ] } ] }, - "then": "./assets/data/nsi/logos/bancosol-66977e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancosol-66977e.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de la Unión", { "or": [ "brand=Banco Unión", "brand:wikidata=Q72315494", - "name=Banco Unión" + "name=Banco Unión", + "official_name=Banco de la Unión" ] } ] }, - "then": "./assets/data/nsi/logos/bancounion-66977e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancounion-66977e.jpg" }, { "if": { @@ -29966,7 +29982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancolombia-d049bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancolombia-d049bf.png" }, { "if": { @@ -29981,7 +29997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancomeeva-d049bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancomeeva-d049bf.jpg" }, { "if": { @@ -29996,7 +30012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandhanbank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/bandhanbank-34f411.png" }, { "if": { @@ -30011,7 +30027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banesco-0269b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banesco-0269b0.jpg" }, { "if": { @@ -30026,23 +30042,23 @@ } ] }, - "then": "./assets/data/nsi/logos/banese-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banese-0ed44d.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco do Estado do Espírito Santo", { "or": [ "brand=Banestes", "brand:wikidata=Q4854848", - "name=Banestes" + "name=Banestes", + "official_name=Banco do Estado do Espírito Santo" ] } ] }, - "then": "./assets/data/nsi/logos/banestes-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banestes-0ed44d.jpg" }, { "if": { @@ -30057,7 +30073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangkokbank-d07a84.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bangkokbank-d07a84.svg" }, { "if": { @@ -30072,7 +30088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangorsavingsbank-af5f1b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bangorsavingsbank-af5f1b.png" }, { "if": { @@ -30087,7 +30103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bank1saar-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bank1saar-1180cf.jpg" }, { "if": { @@ -30106,7 +30122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankalhabib-da5806.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankalhabib-da5806.png" }, { "if": { @@ -30125,7 +30141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2f0a35-11534a.png" + "then": "https://data.mapcomplete.org/nsi//logos/2f0a35-11534a.png" }, { "if": { @@ -30143,7 +30159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankalfalah-a78d37.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankalfalah-a78d37.png" }, { "if": { @@ -30158,7 +30174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankbjb-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankbjb-aa7852.jpg" }, { "if": { @@ -30173,7 +30189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankbps-68054b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankbps-68054b.png" }, { "if": { @@ -30188,7 +30204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankbukopin-aa7852.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bankbukopin-aa7852.svg" }, { "if": { @@ -30203,7 +30219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankcentralasia-aa7852.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bankcentralasia-aa7852.svg" }, { "if": { @@ -30218,7 +30234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankdanamon-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankdanamon-aa7852.jpg" }, { "if": { @@ -30233,7 +30249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankislam-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankislam-8ab35f.jpg" }, { "if": { @@ -30248,7 +30264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankjago-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankjago-aa7852.jpg" }, { "if": { @@ -30263,7 +30279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmandiri-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmandiri-aa7852.jpg" }, { "if": { @@ -30278,7 +30294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmega-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmega-aa7852.jpg" }, { "if": { @@ -30293,7 +30309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmuamalat-74c287.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmuamalat-74c287.jpg" }, { "if": { @@ -30312,7 +30328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofafrica-9d35ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofafrica-9d35ea.png" }, { "if": { @@ -30327,7 +30343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofamerica-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofamerica-ea2e2d.jpg" }, { "if": { @@ -30342,7 +30358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofbaroda-2a7aac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofbaroda-2a7aac.jpg" }, { "if": { @@ -30357,7 +30373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofceylon-358381.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofceylon-358381.jpg" }, { "if": { @@ -30372,7 +30388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofcommerce-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofcommerce-431f82.jpg" }, { "if": { @@ -30390,7 +30406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofcyprus-fe69e8.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofcyprus-fe69e8.png" }, { "if": { @@ -30405,7 +30421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofhawaii-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofhawaii-ea2e2d.jpg" }, { "if": { @@ -30420,7 +30436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofindia-2a7aac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofindia-2a7aac.jpg" }, { "if": { @@ -30435,7 +30451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofireland-018fb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofireland-018fb8.jpg" }, { "if": { @@ -30450,7 +30466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofmaharashtra-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofmaharashtra-34f411.png" }, { "if": { @@ -30465,7 +30481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofnewhampshire-02b74e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofnewhampshire-02b74e.jpg" }, { "if": { @@ -30480,7 +30496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofnewzealand-279fc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofnewzealand-279fc5.jpg" }, { "if": { @@ -30495,7 +30511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofscotland-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofscotland-e1e9d0.jpg" }, { "if": { @@ -30510,7 +30526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofthesierra-cf92b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofthesierra-cf92b8.png" }, { "if": { @@ -30525,7 +30541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankozk-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankozk-ea2e2d.jpg" }, { "if": { @@ -30540,7 +30556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankpekao-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankpekao-68054b.jpg" }, { "if": { @@ -30555,7 +30571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankpermata-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankpermata-aa7852.jpg" }, { "if": { @@ -30570,14 +30586,12 @@ } ] }, - "then": "./assets/data/nsi/logos/bankrakyat-8ab35f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankrakyat-8ab35f.png" }, { "if": { "and": [ "amenity=bank", - "official_name:kk=«Bank RBK» АҚ", - "official_name:ru=АО «Bank RBK»", { "or": [ "brand=Bank RBK", @@ -30585,12 +30599,14 @@ "name=Bank RBK", "name:en=Bank RBK", "name:kk=РБК Банкі", - "name:ru=Банк РБК" + "name:ru=Банк РБК", + "official_name:kk=«Bank RBK» АҚ", + "official_name:ru=АО «Bank RBK»" ] } ] }, - "then": "./assets/data/nsi/logos/bankrbk-033b31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankrbk-033b31.jpg" }, { "if": { @@ -30606,7 +30622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksimpanannasional-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banksimpanannasional-8ab35f.jpg" }, { "if": { @@ -30622,7 +30638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksyariahindonesia-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banksyariahindonesia-aa7852.jpg" }, { "if": { @@ -30637,7 +30653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bank99-694ab5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bank99-694ab5.jpg" }, { "if": { @@ -30653,7 +30669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankakombetaretregtare-c53f64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankakombetaretregtare-c53f64.jpg" }, { "if": { @@ -30668,7 +30684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankakovanica-6f3d3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankakovanica-6f3d3b.jpg" }, { "if": { @@ -30683,7 +30699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankia-ce59ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bankia-ce59ab.svg" }, { "if": { @@ -30698,7 +30714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankinghub-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankinghub-e1e9d0.jpg" }, { "if": { @@ -30713,7 +30729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankinter-151324.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankinter-151324.png" }, { "if": { @@ -30728,7 +30744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankwest-f304bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankwest-f304bd.jpg" }, { "if": { @@ -30743,7 +30759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankwest-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankwest-ea2e2d.jpg" }, { "if": { @@ -30758,7 +30774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bannerbank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bannerbank-ea2e2d.png" }, { "if": { @@ -30773,7 +30789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banorte-574575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banorte-574575.jpg" }, { "if": { @@ -30788,7 +30804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banpais-321983.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banpais-321983.jpg" }, { "if": { @@ -30803,7 +30819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banqueatlantique-dc0023.png" + "then": "https://data.mapcomplete.org/nsi//logos/banqueatlantique-dc0023.png" }, { "if": { @@ -30825,7 +30841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaledefribourg-67b150.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaledefribourg-67b150.svg" }, { "if": { @@ -30841,7 +30857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaledegeneve-e338fc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaledegeneve-e338fc.svg" }, { "if": { @@ -30857,7 +30873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaledujura-54afa2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaledujura-54afa2.svg" }, { "if": { @@ -30879,7 +30895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaleduvalais-43dddb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaleduvalais-43dddb.svg" }, { "if": { @@ -30895,7 +30911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonaleneuchateloise-9b416d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonaleneuchateloise-9b416d.jpg" }, { "if": { @@ -30911,7 +30927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquecantonalevaudoise-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/banquecantonalevaudoise-74b036.svg" }, { "if": { @@ -30926,7 +30942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquedefrance-ad79d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquedefrance-ad79d4.jpg" }, { "if": { @@ -30941,7 +30957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquelaurentienne-e1345b.png" + "then": "https://data.mapcomplete.org/nsi//logos/banquelaurentienne-e1345b.png" }, { "if": { @@ -30956,15 +30972,12 @@ } ] }, - "then": "./assets/data/nsi/logos/banquemisr-bbd826.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquemisr-bbd826.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banque Nationale du Canada", - "official_name:en=National Bank of Canada", - "official_name:fr=Banque Nationale du Canada", "short_name:en=NBC", "short_name:fr=BNC", { @@ -30975,12 +30988,15 @@ "brand:wikidata=Q634298", "name=Banque Nationale", "name:en=National Bank", - "name:fr=Banque Nationale" + "name:fr=Banque Nationale", + "official_name=Banque Nationale du Canada", + "official_name:en=National Bank of Canada", + "official_name:fr=Banque Nationale du Canada" ] } ] }, - "then": "./assets/data/nsi/logos/banquenationale-ff5d57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquenationale-ff5d57.jpg" }, { "if": { @@ -30995,7 +31011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquepalatine-b30a91.png" + "then": "https://data.mapcomplete.org/nsi//logos/banquepalatine-b30a91.png" }, { "if": { @@ -31010,7 +31026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquepopulaire-ad79d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/banquepopulaire-ad79d4.png" }, { "if": { @@ -31028,7 +31044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquepopulaire-4fc013.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquepopulaire-4fc013.jpg" }, { "if": { @@ -31043,7 +31059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquepopulairegrandouest-b30a91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquepopulairegrandouest-b30a91.jpg" }, { "if": { @@ -31058,7 +31074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banregio-574575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banregio-574575.jpg" }, { "if": { @@ -31073,7 +31089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banrisul-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banrisul-0ed44d.jpg" }, { "if": { @@ -31088,7 +31104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banrural-e6a553.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banrural-e6a553.jpg" }, { "if": { @@ -31103,7 +31119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barclays-d3e17e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barclays-d3e17e.jpg" }, { "if": { @@ -31119,7 +31135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basellandschaftlichekantonalbank-74b036.png" + "then": "https://data.mapcomplete.org/nsi//logos/basellandschaftlichekantonalbank-74b036.png" }, { "if": { @@ -31135,7 +31151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baslerkantonalbank-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/baslerkantonalbank-74b036.svg" }, { "if": { @@ -31150,23 +31166,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bawagpsk-694ab5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bawagpsk-694ab5.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=Branch Banking and Trust Company", { "or": [ "brand=BB&T", "brand:wikidata=Q95984154", - "name=BB&T" + "name=BB&T", + "official_name=Branch Banking and Trust Company" ] } ] }, - "then": "./assets/data/nsi/logos/bbandt-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbandt-ea2e2d.jpg" }, { "if": { @@ -31181,40 +31197,40 @@ } ] }, - "then": "./assets/data/nsi/logos/bbbank-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbbank-1180cf.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Bilbao Vizcaya Argentaria", { "or": [ "brand=BBVA", "brand:wikidata=Q806189", - "name=BBVA" + "name=BBVA", + "official_name=Banco Bilbao Vizcaya Argentaria" ] } ] }, - "then": "./assets/data/nsi/logos/bbva-3d410b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bbva-3d410b.png" }, { "if": { "and": [ "amenity=bank", - "official_name=BBVA USA", { "or": [ "alt_name=BBVA Compass", "brand=BBVA", "brand:wikidata=Q4835088", - "name=BBVA" + "name=BBVA", + "official_name=BBVA USA" ] } ] }, - "then": "./assets/data/nsi/logos/bbva-ea2e2d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bbva-ea2e2d.svg" }, { "if": { @@ -31229,7 +31245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbvaargentina-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbvaargentina-841353.jpg" }, { "if": { @@ -31244,7 +31260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbvamexico-574575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbvamexico-574575.jpg" }, { "if": { @@ -31259,7 +31275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbvaperu-e2ab80.png" + "then": "https://data.mapcomplete.org/nsi//logos/bbvaperu-e2ab80.png" }, { "if": { @@ -31274,29 +31290,28 @@ } ] }, - "then": "./assets/data/nsi/logos/bbvaprovincial-0269b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbvaprovincial-0269b0.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banca di Credito Cooperativo di Roma", { "or": [ "brand=BCC Roma", "brand:wikidata=Q25060394", - "name=BCC Roma" + "name=BCC Roma", + "official_name=Banca di Credito Cooperativo di Roma" ] } ] }, - "then": "./assets/data/nsi/logos/bccroma-427c59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bccroma-427c59.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banque et Caisse d'Épargne de l'État", { "or": [ "alt_name=S-Bank", @@ -31304,60 +31319,61 @@ "alt_name:lb=Spuerkeess", "brand=BCEE", "brand:wikidata=Q668996", - "name=BCEE" + "name=BCEE", + "official_name=Banque et Caisse d'Épargne de l'État" ] } ] }, - "then": "./assets/data/nsi/logos/bcee-d335b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/bcee-d335b6.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de Crédito e Inversiones", { "or": [ "brand=BCI", "brand:wikidata=Q2882083", - "name=BCI" + "name=BCI", + "official_name=Banco de Crédito e Inversiones" ] } ] }, - "then": "./assets/data/nsi/logos/bci-dbf1ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/bci-dbf1ad.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Comercial e de Investimentos", { "or": [ "brand=BCI", "brand:wikidata=Q9645132", - "name=BCI" + "name=BCI", + "official_name=Banco Comercial e de Investimentos" ] } ] }, - "then": "./assets/data/nsi/logos/bci-1f1dae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bci-1f1dae.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de Crédito de Bolivia", { "or": [ "brand=BCP", "brand:wikidata=Q16826675", - "name=BCP" + "name=BCP", + "official_name=Banco de Crédito de Bolivia" ] } ] }, - "then": "./assets/data/nsi/logos/bcp-66977e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcp-66977e.jpg" }, { "if": { @@ -31372,107 +31388,107 @@ } ] }, - "then": "./assets/data/nsi/logos/bcp-b30a91.png" + "then": "https://data.mapcomplete.org/nsi//logos/bcp-b30a91.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de Crédito del Perú", { "or": [ "brand=BCP", "brand:wikidata=Q4854124", - "name=BCP" + "name=BCP", + "official_name=Banco de Crédito del Perú" ] } ] }, - "then": "./assets/data/nsi/logos/bcp-e2ab80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcp-e2ab80.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banca Comercială Română", { "or": [ "brand=BCR", "brand:wikidata=Q806149", - "name=BCR" + "name=BCR", + "official_name=Banca Comercială Română" ] } ] }, - "then": "./assets/data/nsi/logos/bcr-9a9a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcr-9a9a30.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de Costa Rica", { "or": [ "brand=BCR", "brand:wikidata=Q6951632", - "name=BCR" + "name=BCR", + "official_name=Banco de Costa Rica" ] } ] }, - "then": "./assets/data/nsi/logos/bcr-8702f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcr-8702f4.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Business Development Bank of Canada", { "or": [ "brand=BDC", "brand:wikidata=Q2883027", - "name=BDC" + "name=BDC", + "official_name=Business Development Bank of Canada" ] } ] }, - "then": "./assets/data/nsi/logos/bdc-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdc-e1345b.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=بنك التنمية المحلية", - "official_name:ar=بنك التنمية المحلية", - "official_name:fr=Banque de Développement Local", { "or": [ "brand=بنك التنمية المحلية", "brand:ar=بنك التنمية المحلية", "brand:fr=Banque de Développement Local", "brand:wikidata=Q64410371", - "name=BDL" + "name=BDL", + "official_name=بنك التنمية المحلية", + "official_name:ar=بنك التنمية المحلية", + "official_name:fr=Banque de Développement Local" ] } ] }, - "then": "./assets/data/nsi/logos/bdl-47c9bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/bdl-47c9bd.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banque du Développement du Mali", { "or": [ "brand=BDM", "brand:wikidata=Q2883022", - "name=BDM" + "name=BDM", + "official_name=Banque du Développement du Mali" ] } ] }, - "then": "./assets/data/nsi/logos/bdm-edd991.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdm-edd991.jpg" }, { "if": { @@ -31487,7 +31503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bdmbanca-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdmbanca-7b36b5.jpg" }, { "if": { @@ -31503,7 +31519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bdo-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdo-431f82.jpg" }, { "if": { @@ -31518,7 +31534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bdonetworkbank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdonetworkbank-431f82.jpg" }, { "if": { @@ -31536,7 +31552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bea-47c9bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bea-47c9bd.jpg" }, { "if": { @@ -31551,7 +31567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/becu-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/becu-ea2e2d.png" }, { "if": { @@ -31566,7 +31582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belfius-96da90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belfius-96da90.jpg" }, { "if": { @@ -31581,7 +31597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bendigobank-f304bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bendigobank-f304bd.jpg" }, { "if": { @@ -31596,28 +31612,28 @@ } ] }, - "then": "./assets/data/nsi/logos/beobank-96da90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beobank-96da90.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bereke Bank JSC", - "official_name:en=Bereke Bank JSC", - "official_name:kk=«Bereke Bank» АҚ", - "official_name:ru=АО «Bereke Bank»", { "or": [ "brand=Bereke Bank", "brand:wikidata=Q4153367", "name=Bereke Bank", "name:en=Bereke Bank", - "name:ru=Береке Банк" + "name:ru=Береке Банк", + "official_name=Bereke Bank JSC", + "official_name:en=Bereke Bank JSC", + "official_name:kk=«Bereke Bank» АҚ", + "official_name:ru=АО «Bereke Bank»" ] } ] }, - "then": "./assets/data/nsi/logos/berekebank-033b31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berekebank-033b31.jpg" }, { "if": { @@ -31632,7 +31648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinervolksbank-1180cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/berlinervolksbank-1180cf.png" }, { "if": { @@ -31654,7 +31670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bernerkantonalbank-74b036.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bernerkantonalbank-74b036.jpg" }, { "if": { @@ -31669,23 +31685,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bglbnpparibas-d335b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/bglbnpparibas-d335b6.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banque internationale arabe de Tunisie", { "or": [ "brand=BIAT", "brand:wikidata=Q690739", - "name=BIAT" + "name=BIAT", + "official_name=Banque internationale arabe de Tunisie" ] } ] }, - "then": "./assets/data/nsi/logos/biat-367f6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biat-367f6f.jpg" }, { "if": { @@ -31700,25 +31716,25 @@ } ] }, - "then": "./assets/data/nsi/logos/bicici-720a42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bicici-720a42.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Ngân hàng Đầu tư và Phát triển Việt Nam", - "official_name:en=Bank for Investment and Development of Vietnam", - "official_name:vi=Ngân hàng Đầu tư và Phát triển Việt Nam", { "or": [ "brand=BIDV", "brand:wikidata=Q1003180", - "name=BIDV" + "name=BIDV", + "official_name=Ngân hàng Đầu tư và Phát triển Việt Nam", + "official_name:en=Bank for Investment and Development of Vietnam", + "official_name:vi=Ngân hàng Đầu tư và Phát triển Việt Nam" ] } ] }, - "then": "./assets/data/nsi/logos/bidv-a28d32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bidv-a28d32.jpg" }, { "if": { @@ -31733,39 +31749,39 @@ } ] }, - "then": "./assets/data/nsi/logos/bidvestbank-50d637.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bidvestbank-50d637.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banque Internationale à Luxembourg", { "or": [ "brand=BIL", "brand:wikidata=Q2883404", - "name=BIL" + "name=BIL", + "official_name=Banque Internationale à Luxembourg" ] } ] }, - "then": "./assets/data/nsi/logos/bil-d335b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bil-d335b6.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank für Kärnten und Steiermark", { "or": [ "brand=BKS Bank", "brand:wikidata=Q796136", - "name=BKS Bank" + "name=BKS Bank", + "official_name=Bank für Kärnten und Steiermark" ] } ] }, - "then": "./assets/data/nsi/logos/bksbank-694ab5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bksbank-694ab5.svg" }, { "if": { @@ -31780,15 +31796,12 @@ } ] }, - "then": "./assets/data/nsi/logos/bluefederalcreditunion-406be7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bluefederalcreditunion-406be7.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=البنك المغربي للتجارة الخارجية", - "official_name:ar=البنك المغربي للتجارة الخارجية", - "official_name:en=Moroccan Bank of Foreign Commerce", { "or": [ "brand=BMCE Bank", @@ -31796,12 +31809,15 @@ "brand:en=BMCE Bank", "brand:wikidata=Q2300433", "name:ar=البنك المغربي للتجارة الخارجية", - "name:en=BMCE Bank" + "name:en=BMCE Bank", + "official_name=البنك المغربي للتجارة الخارجية", + "official_name:ar=البنك المغربي للتجارة الخارجية", + "official_name:en=Moroccan Bank of Foreign Commerce" ] } ] }, - "then": "./assets/data/nsi/logos/bmcebank-11534a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmcebank-11534a.jpg" }, { "if": { @@ -31819,39 +31835,39 @@ } ] }, - "then": "./assets/data/nsi/logos/bmci-11534a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmci-11534a.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Mare Nostrum", { "or": [ "brand=BMN", "brand:wikidata=Q3754900", - "name=BMN" + "name=BMN", + "official_name=Banco Mare Nostrum" ] } ] }, - "then": "./assets/data/nsi/logos/bmn-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmn-ce59ab.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank of Montreal", { "or": [ "brand=BMO", "brand:wikidata=Q806693", - "name=BMO" + "name=BMO", + "official_name=Bank of Montreal" ] } ] }, - "then": "./assets/data/nsi/logos/bmo-e1345b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bmo-e1345b.png" }, { "if": { @@ -31866,23 +31882,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bmo-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bmo-ea2e2d.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banque nationale d'Algérie", { "or": [ "brand=BNA", "brand:wikidata=Q2883410", - "name=BNA" + "name=BNA", + "official_name=Banque nationale d'Algérie" ] } ] }, - "then": "./assets/data/nsi/logos/bna-47c9bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bna-47c9bd.jpg" }, { "if": { @@ -31897,55 +31913,55 @@ } ] }, - "then": "./assets/data/nsi/logos/bna-367f6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bna-367f6f.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banque Nationale de Développement Agricole", { "or": [ "brand=BNDA", "brand:wikidata=Q30594734", - "name=BNDA" + "name=BNDA", + "official_name=Banque Nationale de Développement Agricole" ] } ] }, - "then": "./assets/data/nsi/logos/bnda-edd991.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnda-edd991.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank Negara Indonesia", { "or": [ "brand=BNI", "brand:wikidata=Q2882611", - "name=BNI" + "name=BNI", + "official_name=Bank Negara Indonesia" ] } ] }, - "then": "./assets/data/nsi/logos/bni-27dfb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bni-27dfb6.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banca Nazionale del Lavoro", { "or": [ "brand=BNL", "brand:wikidata=Q2201225", - "name=BNL" + "name=BNL", + "official_name=Banca Nazionale del Lavoro" ] } ] }, - "then": "./assets/data/nsi/logos/bnl-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bnl-7b36b5.png" }, { "if": { @@ -31960,7 +31976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnpparibas-5bc033.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bnpparibas-5bc033.svg" }, { "if": { @@ -31975,7 +31991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnpparibaspolska-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnpparibaspolska-68054b.jpg" }, { "if": { @@ -31990,103 +32006,103 @@ } ] }, - "then": "./assets/data/nsi/logos/bnpparibasfortis-96da90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnpparibasfortis-96da90.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank of China", { "or": [ "brand=BOC", "brand:wikidata=Q790068", - "name=BOC" + "name=BOC", + "official_name=Bank of China" ] } ] }, - "then": "./assets/data/nsi/logos/boc-df101c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boc-df101c.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank of Melbourne", { "or": [ "brand=BOM", "brand:wikidata=Q4856151", - "name=BOM" + "name=BOM", + "official_name=Bank of Melbourne" ] } ] }, - "then": "./assets/data/nsi/logos/bom-f304bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bom-f304bd.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank of Queensland", { "or": [ "brand=BOQ", "brand:wikidata=Q4856173", - "name=BOQ" + "name=BOQ", + "official_name=Bank of Queensland" ] } ] }, - "then": "./assets/data/nsi/logos/boq-f304bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boq-f304bd.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco de Poupança e Crédito", { "or": [ "brand=BPC", "brand:wikidata=Q4854132", - "name=BPC" + "name=BPC", + "official_name=Banco de Poupança e Crédito" ] } ] }, - "then": "./assets/data/nsi/logos/bpc-706633.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpc-706633.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banca Popolare dell'Emilia Romagna", { "or": [ "brand=BPER Banca", "brand:wikidata=Q806167", - "name=BPER Banca" + "name=BPER Banca", + "official_name=Banca Popolare dell'Emilia Romagna" ] } ] }, - "then": "./assets/data/nsi/logos/bperbanca-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bperbanca-7b36b5.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank of the Philippine Islands", { "or": [ "brand=BPI", "brand:wikidata=Q2501256", - "name=BPI" + "name=BPI", + "official_name=Bank of the Philippine Islands" ] } ] }, - "then": "./assets/data/nsi/logos/bpi-1f11c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpi-1f11c5.jpg" }, { "if": { @@ -32101,7 +32117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bradesco-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bradesco-0ed44d.jpg" }, { "if": { @@ -32116,91 +32132,91 @@ } ] }, - "then": "./assets/data/nsi/logos/brd-9a9a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brd-9a9a30.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banque régionale d'escompte et de dépôts", { "or": [ "brand=BRED", "brand:wikidata=Q2877455", - "name=BRED" + "name=BRED", + "official_name=Banque régionale d'escompte et de dépôts" ] } ] }, - "then": "./assets/data/nsi/logos/bred-ad79d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bred-ad79d4.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank Rakyat Indonesia", { "or": [ "brand=BRI", "brand:wikidata=Q623042", - "name=BRI" + "name=BRI", + "official_name=Bank Rakyat Indonesia" ] } ] }, - "then": "./assets/data/nsi/logos/bri-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bri-aa7852.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank Tabungan Negara", { "or": [ "brand=BTN", "brand:en=BTN", "brand:id=BTN", "brand:wikidata=Q12474534", - "name=BTN" + "name=BTN", + "official_name=Bank Tabungan Negara" ] } ] }, - "then": "./assets/data/nsi/logos/btn-aa7852.svg" + "then": "https://data.mapcomplete.org/nsi//logos/btn-aa7852.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank BTPN", { "or": [ "brand=BTPN", "brand:en=BTPN", "brand:id=BTPN", "brand:wikidata=Q12474535", - "name=BTPN" + "name=BTPN", + "official_name=Bank BTPN" ] } ] }, - "then": "./assets/data/nsi/logos/btpn-aa7852.svg" + "then": "https://data.mapcomplete.org/nsi//logos/btpn-aa7852.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank für Tirol und Vorarlberg", { "or": [ "brand=BTV", "brand:wikidata=Q806665", - "name=BTV" + "name=BTV", + "official_name=Bank für Tirol und Vorarlberg" ] } ] }, - "then": "./assets/data/nsi/logos/btv-9ffa74.png" + "then": "https://data.mapcomplete.org/nsi//logos/btv-9ffa74.png" }, { "if": { @@ -32215,7 +32231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budapestbank-60884a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/budapestbank-60884a.svg" }, { "if": { @@ -32230,7 +32246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buseybank-8fb7e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/buseybank-8fb7e1.png" }, { "if": { @@ -32245,7 +32261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bwbank-1180cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/bwbank-1180cf.png" }, { "if": { @@ -32260,7 +32276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bylinebank-2c73b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bylinebank-2c73b9.jpg" }, { "if": { @@ -32275,7 +32291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cadencebank-e05e09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cadencebank-e05e09.jpg" }, { "if": { @@ -32290,7 +32306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caissedepargne-b7a026.png" + "then": "https://data.mapcomplete.org/nsi//logos/caissedepargne-b7a026.png" }, { "if": { @@ -32305,7 +32321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixaeconomicafederal-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixaeconomicafederal-0ed44d.jpg" }, { "if": { @@ -32321,7 +32337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixageraldedepositos-74f292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixageraldedepositos-74f292.jpg" }, { "if": { @@ -32337,7 +32353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixaontinyent-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixaontinyent-ce59ab.jpg" }, { "if": { @@ -32352,7 +32368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixapopular-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixapopular-ce59ab.jpg" }, { "if": { @@ -32367,7 +32383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caixabank-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caixabank-ce59ab.jpg" }, { "if": { @@ -32382,7 +32398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajaespana-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cajaespana-ce59ab.jpg" }, { "if": { @@ -32397,7 +32413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajarural-ce59ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/cajarural-ce59ab.png" }, { "if": { @@ -32412,7 +32428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajaruraldearagon-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cajaruraldearagon-ce59ab.jpg" }, { "if": { @@ -32427,7 +32443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajaruraldejaen-ce59ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/cajaruraldejaen-ce59ab.png" }, { "if": { @@ -32442,7 +32458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajamar-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cajamar-ce59ab.jpg" }, { "if": { @@ -32457,7 +32473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cajasur-ce59ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/cajasur-ce59ab.png" }, { "if": { @@ -32475,7 +32491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calbank-9d35ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/calbank-9d35ea.png" }, { "if": { @@ -32490,7 +32506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiacoastcreditunion-cf92b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiacoastcreditunion-cf92b8.jpg" }, { "if": { @@ -32505,7 +32521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camdennationalbank-af5f1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camdennationalbank-af5f1b.jpg" }, { "if": { @@ -32520,7 +32536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadianwesternbank-e1345b.png" + "then": "https://data.mapcomplete.org/nsi//logos/canadianwesternbank-e1345b.png" }, { "if": { @@ -32535,7 +32551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canandaiguanationalbankandtrust-51c67b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canandaiguanationalbankandtrust-51c67b.jpg" }, { "if": { @@ -32562,7 +32578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canarabank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canarabank-34f411.jpg" }, { "if": { @@ -32577,7 +32593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalbank-4b3cf2.png" + "then": "https://data.mapcomplete.org/nsi//logos/capitalbank-4b3cf2.png" }, { "if": { @@ -32592,7 +32608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalone-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalone-ea2e2d.jpg" }, { "if": { @@ -32607,7 +32623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalsmallfinancebank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalsmallfinancebank-34f411.jpg" }, { "if": { @@ -32622,7 +32638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitecbank-50d637.svg" + "then": "https://data.mapcomplete.org/nsi//logos/capitecbank-50d637.svg" }, { "if": { @@ -32637,7 +32653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casden-ad79d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casden-ad79d4.jpg" }, { "if": { @@ -32652,7 +32668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catalunyacaixa-ce59ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/catalunyacaixa-ce59ab.svg" }, { "if": { @@ -32667,7 +32683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cathaybank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cathaybank-ea2e2d.jpg" }, { "if": { @@ -32682,7 +32698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cbao-a33d3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cbao-a33d3b.jpg" }, { "if": { @@ -32697,7 +32713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccf-b30a91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ccf-b30a91.jpg" }, { "if": { @@ -32712,7 +32728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cecbank-9a9a30.png" + "then": "https://data.mapcomplete.org/nsi//logos/cecbank-9a9a30.png" }, { "if": { @@ -32727,16 +32743,12 @@ } ] }, - "then": "./assets/data/nsi/logos/centennialbank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/centennialbank-ea2e2d.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank CenterCredit JSC", - "official_name:en=Bank CenterCredit JSC", - "official_name:kk=«Банк ЦентрКредит» АҚ", - "official_name:ru=АО «Банк ЦентрКредит»", { "or": [ "brand=Bank CenterCredit", @@ -32744,12 +32756,16 @@ "name=Bank CenterCredit", "name:en=Bank CenterCredit", "name:kk=Банк ЦентрКредит", - "name:ru=Банк ЦентрКредит" + "name:ru=Банк ЦентрКредит", + "official_name=Bank CenterCredit JSC", + "official_name:en=Bank CenterCredit JSC", + "official_name:kk=«Банк ЦентрКредит» АҚ", + "official_name:ru=АО «Банк ЦентрКредит»" ] } ] }, - "then": "./assets/data/nsi/logos/bankcentercredit-033b31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankcentercredit-033b31.jpg" }, { "if": { @@ -32764,7 +32780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralbank-43524a.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralbank-43524a.png" }, { "if": { @@ -32779,7 +32795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralbankofindia-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralbankofindia-34f411.jpg" }, { "if": { @@ -32794,7 +32810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskasporitelna-7d13c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceskasporitelna-7d13c0.jpg" }, { "if": { @@ -32809,7 +32825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chase-2a7aac.png" + "then": "https://data.mapcomplete.org/nsi//logos/chase-2a7aac.png" }, { "if": { @@ -32824,7 +32840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinabanksavings-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinabanksavings-431f82.jpg" }, { "if": { @@ -32840,7 +32856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaconstructionbank-4dfec6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-4dfec6.jpg" }, { "if": { @@ -32855,7 +32871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinabank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinabank-431f82.jpg" }, { "if": { @@ -32870,7 +32886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cibbank-60884a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cibbank-60884a.jpg" }, { "if": { @@ -32885,7 +32901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cibc-e1345b.png" + "then": "https://data.mapcomplete.org/nsi//logos/cibc-e1345b.png" }, { "if": { @@ -32900,7 +32916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cic-b30a91.png" + "then": "https://data.mapcomplete.org/nsi//logos/cic-b30a91.png" }, { "if": { @@ -32918,7 +32934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cihbank-11534a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cihbank-11534a.png" }, { "if": { @@ -32933,7 +32949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cimbbank-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cimbbank-8ab35f.jpg" }, { "if": { @@ -32948,7 +32964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cimbniaga-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cimbniaga-aa7852.jpg" }, { "if": { @@ -32966,7 +32982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citadele-2d4942.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citadele-2d4942.jpg" }, { "if": { @@ -32982,7 +32998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citibank-4bddfc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citibank-4bddfc.jpg" }, { "if": { @@ -32998,42 +33014,42 @@ } ] }, - "then": "./assets/data/nsi/logos/citizensbank-8621dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citizensbank-8621dd.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Citizens National Bank", "short_name=Citizens", { "or": [ "alt_name=Citizens Bank of Kentucky", "brand=Citizens Bank", "brand:wikidata=Q5122711", - "name=Citizens Bank" + "name=Citizens Bank", + "official_name=Citizens National Bank" ] } ] }, - "then": "./assets/data/nsi/logos/citizensbank-485d4a.png" + "then": "https://data.mapcomplete.org/nsi//logos/citizensbank-485d4a.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Citizens Bank International Ltd.", "short_name=Citizens", { "or": [ "brand=Citizens Bank International", "brand:wikidata=Q13186934", - "name=Citizens Bank" + "name=Citizens Bank", + "official_name=Citizens Bank International Ltd." ] } ] }, - "then": "./assets/data/nsi/logos/citizensbank-b0fe63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citizensbank-b0fe63.jpg" }, { "if": { @@ -33048,23 +33064,23 @@ } ] }, - "then": "./assets/data/nsi/logos/citynationalbank-2ff887.png" + "then": "https://data.mapcomplete.org/nsi//logos/citynationalbank-2ff887.png" }, { "if": { "and": [ "amenity=bank", - "official_name=City National Bank of Florida", { "or": [ "brand=City National Bank", "brand:wikidata=Q16958644", - "name=City National Bank" + "name=City National Bank", + "official_name=City National Bank of Florida" ] } ] }, - "then": "./assets/data/nsi/logos/citynationalbank-622ed0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citynationalbank-622ed0.jpg" }, { "if": { @@ -33079,7 +33095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citynationalbank-3abc7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citynationalbank-3abc7d.jpg" }, { "if": { @@ -33094,7 +33110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/civibank-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/civibank-7b36b5.png" }, { "if": { @@ -33115,23 +33131,38 @@ } ] }, - "then": "./assets/data/nsi/logos/cnep-47c9bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/cnep-47c9bd.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Coast Capital Savings Federal Credit Union", { "or": [ "brand=Coast Capital Savings", "brand:wikidata=Q5138088", - "name=Coast Capital Savings" + "name=Coast Capital Savings", + "official_name=Coast Capital Savings Federal Credit Union" ] } ] }, - "then": "./assets/data/nsi/logos/coastcapitalsavings-e1345b.png" + "then": "https://data.mapcomplete.org/nsi//logos/coastcapitalsavings-e1345b.png" + }, + { + "if": { + "and": [ + "amenity=bank", + { + "or": [ + "brand=Columbia Bank", + "brand:wikidata=Q62084096", + "name=Columbia Bank" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/columbiabank-fb7447.jpg" }, { "if": { @@ -33146,7 +33177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comericabank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comericabank-ea2e2d.jpg" }, { "if": { @@ -33165,7 +33196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cominbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cominbank-c8dc19.jpg" }, { "if": { @@ -33180,7 +33211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commercebank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/commercebank-ea2e2d.png" }, { "if": { @@ -33195,7 +33226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commercialbankofceylon-358381.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commercialbankofceylon-358381.jpg" }, { "if": { @@ -33212,7 +33243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commercialbankofethiopia-60242d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commercialbankofethiopia-60242d.jpg" }, { "if": { @@ -33227,7 +33258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commerzbank-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commerzbank-1180cf.jpg" }, { "if": { @@ -33242,7 +33273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthbank-2a7aac.png" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthbank-2a7aac.png" }, { "if": { @@ -33257,7 +33288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communitybank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communitybank-ea2e2d.jpg" }, { "if": { @@ -33272,7 +33303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityfirstcreditunion-9ffb0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communityfirstcreditunion-9ffb0f.jpg" }, { "if": { @@ -33287,7 +33318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumerscreditunion-6bd15c.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumerscreditunion-6bd15c.png" }, { "if": { @@ -33302,7 +33333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumerscreditunion-6ca06a.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumerscreditunion-6ca06a.png" }, { "if": { @@ -33323,7 +33354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conversebank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conversebank-9c44ae.jpg" }, { "if": { @@ -33338,7 +33369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corporationbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/corporationbank-34f411.jpg" }, { "if": { @@ -33355,7 +33386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpa-47c9bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/cpa-47c9bd.png" }, { "if": { @@ -33370,23 +33401,23 @@ } ] }, - "then": "./assets/data/nsi/logos/crdbbank-e14cdd.png" + "then": "https://data.mapcomplete.org/nsi//logos/crdbbank-e14cdd.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Credito Emiliano", { "or": [ "brand=Credem", "brand:wikidata=Q3696881", - "name=Credem" + "name=Credem", + "official_name=Credito Emiliano" ] } ] }, - "then": "./assets/data/nsi/logos/credem-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/credem-7b36b5.png" }, { "if": { @@ -33401,7 +33432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/credicoop-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/credicoop-841353.jpg" }, { "if": { @@ -33416,7 +33447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditagricole-e0f11e.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditagricole-e0f11e.png" }, { "if": { @@ -33435,7 +33466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/77b207-11534a.png" + "then": "https://data.mapcomplete.org/nsi//logos/77b207-11534a.png" }, { "if": { @@ -33450,7 +33481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditagricole-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditagricole-7b36b5.png" }, { "if": { @@ -33465,7 +33496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditcooperatif-b30a91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creditcooperatif-b30a91.jpg" }, { "if": { @@ -33484,7 +33515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baf583-11534a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baf583-11534a.jpg" }, { "if": { @@ -33499,7 +33530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditdunord-b30a91.svg" + "then": "https://data.mapcomplete.org/nsi//logos/creditdunord-b30a91.svg" }, { "if": { @@ -33514,7 +33545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditmaritime-ad79d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditmaritime-ad79d4.png" }, { "if": { @@ -33529,7 +33560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditmutuel-b7a026.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditmutuel-b7a026.png" }, { "if": { @@ -33544,7 +33575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditmutueldebretagne-b30a91.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditmutueldebretagne-b30a91.png" }, { "if": { @@ -33559,7 +33590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditsuisse-74b036.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creditsuisse-74b036.jpg" }, { "if": { @@ -33574,7 +33605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditoagricola-4028ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditoagricola-4028ed.png" }, { "if": { @@ -33589,7 +33620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditwestbank-c9effc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creditwestbank-c9effc.jpg" }, { "if": { @@ -33604,7 +33635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crelan-96da90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crelan-96da90.jpg" }, { "if": { @@ -33619,7 +33650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crnogorskakomercijalnabanka-529d4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crnogorskakomercijalnabanka-529d4b.jpg" }, { "if": { @@ -33634,23 +33665,23 @@ } ] }, - "then": "./assets/data/nsi/logos/croatiabanka-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/croatiabanka-6f3d3b.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Catholic Syrian Bank", { "or": [ "brand=CSB Bank", "brand:wikidata=Q5053244", - "name=CSB Bank" + "name=CSB Bank", + "official_name=Catholic Syrian Bank" ] } ] }, - "then": "./assets/data/nsi/logos/csbbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csbbank-34f411.jpg" }, { "if": { @@ -33665,7 +33696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csob-dde967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csob-dde967.jpg" }, { "if": { @@ -33680,7 +33711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danskebank-c75d31.png" + "then": "https://data.mapcomplete.org/nsi//logos/danskebank-c75d31.png" }, { "if": { @@ -33695,7 +33726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davivienda-0357a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/davivienda-0357a0.jpg" }, { "if": { @@ -33710,7 +33741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dayspringbank-4f9ba3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dayspringbank-4f9ba3.jpg" }, { "if": { @@ -33725,7 +33756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbank-126296.png" + "then": "https://data.mapcomplete.org/nsi//logos/dbank-126296.png" }, { "if": { @@ -33740,7 +33771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbp-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dbp-431f82.jpg" }, { "if": { @@ -33755,7 +33786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbsbankindia-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/dbsbankindia-34f411.png" }, { "if": { @@ -33770,7 +33801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/degussabank-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/degussabank-1180cf.jpg" }, { "if": { @@ -33785,7 +33816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denizbank-b7a026.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/denizbank-b7a026.jpg" }, { "if": { @@ -33800,7 +33831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/desjardins-e1345b.png" + "then": "https://data.mapcomplete.org/nsi//logos/desjardins-e1345b.png" }, { "if": { @@ -33815,7 +33846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebank-2a7aac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebank-2a7aac.jpg" }, { "if": { @@ -33830,7 +33861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhanlaxmibank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/dhanlaxmibank-34f411.png" }, { "if": { @@ -33846,7 +33877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/digitalfederalcreditunion-f376c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/digitalfederalcreditunion-f376c6.jpg" }, { "if": { @@ -33860,7 +33891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dnb-825b55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dnb-825b55.jpg" }, { "if": { @@ -33875,7 +33906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollarbank-824f9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dollarbank-824f9e.jpg" }, { "if": { @@ -33896,7 +33927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dubaiislamicbank-bd7e2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dubaiislamicbank-bd7e2a.jpg" }, { "if": { @@ -33915,7 +33946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastwestbank-a566ac.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastwestbank-a566ac.png" }, { "if": { @@ -33930,7 +33961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easternbank-f376c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easternbank-f376c6.jpg" }, { "if": { @@ -33945,7 +33976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastwestunibank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastwestunibank-431f82.jpg" }, { "if": { @@ -33963,7 +33994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecobank-9d35ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecobank-9d35ea.jpg" }, { "if": { @@ -33978,7 +34009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/educatorscreditunion-347d8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/educatorscreditunion-347d8f.jpg" }, { "if": { @@ -33993,7 +34024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emiratesnbd-d9ce9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emiratesnbd-d9ce9c.jpg" }, { "if": { @@ -34008,7 +34039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitassmallfinancebank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/equitassmallfinancebank-34f411.png" }, { "if": { @@ -34023,7 +34054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-0eac7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-0eac7f.jpg" }, { "if": { @@ -34038,7 +34069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-8efa9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-8efa9d.png" }, { "if": { @@ -34053,7 +34084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-41c6c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-41c6c3.jpg" }, { "if": { @@ -34068,7 +34099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-158a0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-158a0b.jpg" }, { "if": { @@ -34083,7 +34114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-e14cdd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-e14cdd.jpg" }, { "if": { @@ -34098,7 +34129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equitybank-72d450.png" + "then": "https://data.mapcomplete.org/nsi//logos/equitybank-72d450.png" }, { "if": { @@ -34113,7 +34144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erstebank-d01b30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erstebank-d01b30.jpg" }, { "if": { @@ -34128,7 +34159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esafsmallfinancebank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esafsmallfinancebank-34f411.jpg" }, { "if": { @@ -34143,7 +34174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eslfederalcreditunion-51c67b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eslfederalcreditunion-51c67b.jpg" }, { "if": { @@ -34158,7 +34189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurobank-e9ea45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurobank-e9ea45.jpg" }, { "if": { @@ -34173,7 +34204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurobank-158d7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurobank-158d7a.jpg" }, { "if": { @@ -34188,7 +34219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/europabank-96da90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/europabank-96da90.jpg" }, { "if": { @@ -34209,7 +34240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evocabank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evocabank-9c44ae.jpg" }, { "if": { @@ -34224,7 +34255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmersnationalbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmersnationalbank-ea2e2d.jpg" }, { "if": { @@ -34245,7 +34276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastbank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastbank-9c44ae.jpg" }, { "if": { @@ -34260,7 +34291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federalbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/federalbank-34f411.jpg" }, { "if": { @@ -34275,7 +34306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fibabanka-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fibabanka-a30806.jpg" }, { "if": { @@ -34295,7 +34326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fibank-126296.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fibank-126296.jpg" }, { "if": { @@ -34310,7 +34341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ficohsa-47ab19.png" + "then": "https://data.mapcomplete.org/nsi//logos/ficohsa-47ab19.png" }, { "if": { @@ -34328,7 +34359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-9d35ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-9d35ea.jpg" }, { "if": { @@ -34343,7 +34374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-40cba0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-40cba0.svg" }, { "if": { @@ -34358,7 +34389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-2214b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-2214b7.png" }, { "if": { @@ -34373,7 +34404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-1bf72c.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-1bf72c.png" }, { "if": { @@ -34388,7 +34419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-5f055b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-5f055b.svg" }, { "if": { @@ -34403,7 +34434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-db0de1.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-db0de1.png" }, { "if": { @@ -34418,7 +34449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybank-7bc61e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybank-7bc61e.svg" }, { "if": { @@ -34433,7 +34464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelitybankandtrust-9c627e.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelitybankandtrust-9c627e.png" }, { "if": { @@ -34449,7 +34480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fifththirdbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fifththirdbank-ea2e2d.jpg" }, { "if": { @@ -34464,7 +34495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fineco-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/fineco-7b36b5.png" }, { "if": { @@ -34479,7 +34510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fintro-96da90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fintro-96da90.jpg" }, { "if": { @@ -34494,7 +34525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiobanka-dde967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiobanka-dde967.jpg" }, { "if": { @@ -34513,7 +34544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstabudhabibank-d9ce9c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/firstabudhabibank-d9ce9c.svg" }, { "if": { @@ -34528,7 +34559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstbank-96a776.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstbank-96a776.png" }, { "if": { @@ -34543,7 +34574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstbank-9794e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstbank-9794e6.jpg" }, { "if": { @@ -34559,7 +34590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstbank-b6cd24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstbank-b6cd24.jpg" }, { "if": { @@ -34574,7 +34605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcitizensbank-ffbbe8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstcitizensbank-ffbbe8.jpg" }, { "if": { @@ -34589,7 +34620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcitizensbank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstcitizensbank-ea2e2d.png" }, { "if": { @@ -34604,7 +34635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcommonwealthbank-b6467d.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstcommonwealthbank-b6467d.png" }, { "if": { @@ -34619,7 +34650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcommunitycreditunion-4ac31a.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstcommunitycreditunion-4ac31a.png" }, { "if": { @@ -34634,7 +34665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstfinancialbank-c8207a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstfinancialbank-c8207a.jpg" }, { "if": { @@ -34649,7 +34680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firsthorizonbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firsthorizonbank-ea2e2d.jpg" }, { "if": { @@ -34664,7 +34695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstinterstatebank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstinterstatebank-ea2e2d.jpg" }, { "if": { @@ -34683,7 +34714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstnationalbank-9d35ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstnationalbank-9d35ea.jpg" }, { "if": { @@ -34698,7 +34729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstnationalbankoflongisland-51c67b.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstnationalbankoflongisland-51c67b.png" }, { "if": { @@ -34713,7 +34744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstnationalbankofscotia-9d21b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstnationalbankofscotia-9d21b1.jpg" }, { "if": { @@ -34728,7 +34759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstsecuritybank-76df1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstsecuritybank-76df1a.jpg" }, { "if": { @@ -34743,7 +34774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstsecuritybank-d96d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstsecuritybank-d96d23.jpg" }, { "if": { @@ -34758,7 +34789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-fa34d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-fa34d1.jpg" }, { "if": { @@ -34773,7 +34804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-12ddb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-12ddb3.jpg" }, { "if": { @@ -34788,7 +34819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-6bd15c.png" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-6bd15c.png" }, { "if": { @@ -34803,7 +34834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-6ca06a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-6ca06a.jpg" }, { "if": { @@ -34818,7 +34849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-f6b900.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-f6b900.jpg" }, { "if": { @@ -34833,7 +34864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststatebank-718014.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firststatebank-718014.jpg" }, { "if": { @@ -34848,7 +34879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firsttechfederalcreditunion-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firsttechfederalcreditunion-ea2e2d.jpg" }, { "if": { @@ -34864,7 +34895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstunitedbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstunitedbank-ea2e2d.jpg" }, { "if": { @@ -34880,7 +34911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstwestcreditunion-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstwestcreditunion-e1345b.jpg" }, { "if": { @@ -34898,7 +34929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstbankghana-9d35ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstbankghana-9d35ea.jpg" }, { "if": { @@ -34913,39 +34944,39 @@ } ] }, - "then": "./assets/data/nsi/logos/flagstarbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flagstarbank-ea2e2d.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=First National Bank", { "or": [ "brand=FNB", "brand:wikidata=Q3072956", - "name=FNB" + "name=FNB", + "official_name=First National Bank" ] } ] }, - "then": "./assets/data/nsi/logos/fnb-154feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fnb-154feb.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=First National Bank of Omaha", { "or": [ "brand=FNBO", "brand:wikidata=Q5453412", - "name=FNBO" + "name=FNBO", + "official_name=First National Bank of Omaha" ] } ] }, - "then": "./assets/data/nsi/logos/fnbo-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fnbo-ea2e2d.jpg" }, { "if": { @@ -34960,26 +34991,26 @@ } ] }, - "then": "./assets/data/nsi/logos/fortebank-033b31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortebank-033b31.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name:kk=«Банк Фридом Финанс Қазақстан» АҚ", - "official_name:ru=АО «Банк Фридом Финанс Казахстан»", { "or": [ "brand=Freedom Bank", "brand:wikidata=Q21843099", "name=Freedom Bank", "name:en=Freedom Bank", - "name:ru=Фридом Банк" + "name:ru=Фридом Банк", + "official_name:kk=«Банк Фридом Финанс Қазақстан» АҚ", + "official_name:ru=АО «Банк Фридом Финанс Казахстан»" ] } ] }, - "then": "./assets/data/nsi/logos/freedombank-033b31.png" + "then": "https://data.mapcomplete.org/nsi//logos/freedombank-033b31.png" }, { "if": { @@ -34994,7 +35025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frostbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frostbank-ea2e2d.jpg" }, { "if": { @@ -35009,7 +35040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galicia-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/galicia-841353.jpg" }, { "if": { @@ -35024,7 +35055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/garantibankasi-4dfec6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/garantibankasi-4dfec6.jpg" }, { "if": { @@ -35043,7 +35074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gcbbank-9d35ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gcbbank-9d35ea.jpg" }, { "if": { @@ -35058,7 +35089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/germanamerican-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/germanamerican-ea2e2d.jpg" }, { "if": { @@ -35073,7 +35104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/getinbank-68054b.png" + "then": "https://data.mapcomplete.org/nsi//logos/getinbank-68054b.png" }, { "if": { @@ -35089,7 +35120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glarnerkantonalbank-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/glarnerkantonalbank-74b036.svg" }, { "if": { @@ -35104,7 +35135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globalcreditunion-8159d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globalcreditunion-8159d3.jpg" }, { "if": { @@ -35119,7 +35150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gnbsudameris-d049bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/gnbsudameris-d049bf.png" }, { "if": { @@ -35134,7 +35165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/golden1creditunion-cf92b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/golden1creditunion-cf92b8.png" }, { "if": { @@ -35156,7 +35187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/graubundnerkantonalbank-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/graubundnerkantonalbank-74b036.svg" }, { "if": { @@ -35171,7 +35202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenstatecreditunion-9a0c47.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenstatecreditunion-9a0c47.jpg" }, { "if": { @@ -35186,23 +35217,23 @@ } ] }, - "then": "./assets/data/nsi/logos/groupama-c6d1da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupama-c6d1da.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Guaranty Trust Bank", { "or": [ "brand=GT Bank", "brand:wikidata=Q579747", - "name=GT Bank" + "name=GT Bank", + "official_name=Guaranty Trust Bank" ] } ] }, - "then": "./assets/data/nsi/logos/gtbank-b3c39a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gtbank-b3c39a.jpg" }, { "if": { @@ -35217,7 +35248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulfcoastbankandtrust-2214b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/gulfcoastbankandtrust-2214b7.png" }, { "if": { @@ -35232,7 +35263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halifax-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halifax-e1e9d0.jpg" }, { "if": { @@ -35249,14 +35280,12 @@ } ] }, - "then": "./assets/data/nsi/logos/halkbank-e9ea45.svg" + "then": "https://data.mapcomplete.org/nsi//logos/halkbank-e9ea45.svg" }, { "if": { "and": [ "amenity=bank", - "official_name:kk=«Қазақстан Халық Банкі» АҚ", - "official_name:ru=АО «Народный Банк Казахстана»", "old_name=Народный банк", { "or": [ @@ -35265,12 +35294,14 @@ "name=Halyk Bank", "name:en=Halyk Bank", "name:kk=Халық Банкі", - "name:ru=Халык банк" + "name:ru=Халык банк", + "official_name:kk=«Қазақстан Халық Банкі» АҚ", + "official_name:ru=АО «Народный Банк Казахстана»" ] } ] }, - "then": "./assets/data/nsi/logos/halykbank-93fd52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halykbank-93fd52.jpg" }, { "if": { @@ -35286,7 +35317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamburgersparkasse-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamburgersparkasse-1180cf.jpg" }, { "if": { @@ -35301,7 +35332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hancockwhitney-78aa9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hancockwhitney-78aa9a.jpg" }, { "if": { @@ -35316,7 +35347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handelsbanken-1834eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/handelsbanken-1834eb.png" }, { "if": { @@ -35332,7 +35363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hattonnationalbank-358381.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hattonnationalbank-358381.jpg" }, { "if": { @@ -35347,7 +35378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiianfirstbank-ae6ba2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiianfirstbank-ae6ba2.jpg" }, { "if": { @@ -35366,7 +35397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hblbank-da5806.png" + "then": "https://data.mapcomplete.org/nsi//logos/hblbank-da5806.png" }, { "if": { @@ -35382,23 +35413,23 @@ } ] }, - "then": "./assets/data/nsi/logos/hdfcbank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/hdfcbank-34f411.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Heartland Bank and Trust Company", { "or": [ "brand=Heartland Bank", "brand:wikidata=Q109870322", - "name=Heartland Bank" + "name=Heartland Bank", + "official_name=Heartland Bank and Trust Company" ] } ] }, - "then": "./assets/data/nsi/logos/heartlandbank-6bd15c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heartlandbank-6bd15c.jpg" }, { "if": { @@ -35413,7 +35444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heritagebank-f304bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heritagebank-f304bd.jpg" }, { "if": { @@ -35428,7 +35459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heritagebank-6787e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heritagebank-6787e9.jpg" }, { "if": { @@ -35443,7 +35474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heritagebank-db0de1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heritagebank-db0de1.jpg" }, { "if": { @@ -35458,7 +35489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heritagebank-c20fa5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heritagebank-c20fa5.jpg" }, { "if": { @@ -35473,7 +35504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hnb-358381.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hnb-358381.jpg" }, { "if": { @@ -35488,7 +35519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homecreditbank-033b31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homecreditbank-033b31.jpg" }, { "if": { @@ -35503,7 +35534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homestreetbank-80e3ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homestreetbank-80e3ed.jpg" }, { "if": { @@ -35522,7 +35553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongleongbank-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongleongbank-8ab35f.jpg" }, { "if": { @@ -35537,7 +35568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/horizoncreditunion-420495.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/horizoncreditunion-420495.jpg" }, { "if": { @@ -35553,7 +35584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hrvatskapostanskabanka-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/hrvatskapostanskabanka-6f3d3b.png" }, { "if": { @@ -35568,7 +35599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbc-e7b32e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsbc-e7b32e.jpg" }, { "if": { @@ -35589,7 +35620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbc-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsbc-9c44ae.jpg" }, { "if": { @@ -35604,7 +35635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbcuk-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsbcuk-e1e9d0.jpg" }, { "if": { @@ -35619,7 +35650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntingtonbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntingtonbank-ea2e2d.jpg" }, { "if": { @@ -35634,7 +35665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hypovereinsbank-1180cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/hypovereinsbank-1180cf.png" }, { "if": { @@ -35649,7 +35680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ibercaja-ce59ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/ibercaja-ce59ab.png" }, { "if": { @@ -35668,7 +35699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrialbankofkorea-10d607.svg" + "then": "https://data.mapcomplete.org/nsi//logos/industrialbankofkorea-10d607.svg" }, { "if": { @@ -35683,7 +35714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icbc-6e2e2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icbc-6e2e2c.jpg" }, { "if": { @@ -35699,7 +35730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icicibank-4f7c25.png" + "then": "https://data.mapcomplete.org/nsi//logos/icicibank-4f7c25.png" }, { "if": { @@ -35717,7 +35748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idbank-9c44ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/idbank-9c44ae.png" }, { "if": { @@ -35733,7 +35764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idbibank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idbibank-34f411.jpg" }, { "if": { @@ -35748,7 +35779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ideabank-9a9a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ideabank-9a9a30.jpg" }, { "if": { @@ -35767,7 +35798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ideabank-c8dc19.png" + "then": "https://data.mapcomplete.org/nsi//logos/ideabank-c8dc19.png" }, { "if": { @@ -35782,7 +35813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idfcfirstbank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/idfcfirstbank-34f411.png" }, { "if": { @@ -35797,7 +35828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iktisatbank-c9effc.png" + "then": "https://data.mapcomplete.org/nsi//logos/iktisatbank-c9effc.png" }, { "if": { @@ -35812,7 +35843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imexbanka-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/imexbanka-6f3d3b.png" }, { "if": { @@ -35827,7 +35858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inbursa-574575.png" + "then": "https://data.mapcomplete.org/nsi//logos/inbursa-574575.png" }, { "if": { @@ -35846,7 +35877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indiapostpaymentsbank-34f411.svg" + "then": "https://data.mapcomplete.org/nsi//logos/indiapostpaymentsbank-34f411.svg" }, { "if": { @@ -35861,7 +35892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianbank-34f411.jpg" }, { "if": { @@ -35876,7 +35907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianoverseasbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianoverseasbank-34f411.jpg" }, { "if": { @@ -35891,7 +35922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indusindbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indusindbank-34f411.jpg" }, { "if": { @@ -35912,7 +35943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inecobank-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inecobank-9c44ae.jpg" }, { "if": { @@ -35927,7 +35958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ing-2a7aac.png" + "then": "https://data.mapcomplete.org/nsi//logos/ing-2a7aac.png" }, { "if": { @@ -35942,7 +35973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ingbankslaski-68054b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ingbankslaski-68054b.png" }, { "if": { @@ -35957,7 +35988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interbank-e2ab80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/interbank-e2ab80.jpg" }, { "if": { @@ -35972,7 +36003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interbank-18c2ac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/interbank-18c2ac.svg" }, { "if": { @@ -35987,7 +36018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/internationalassetbank-126296.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/internationalassetbank-126296.jpg" }, { "if": { @@ -36002,7 +36033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intesasanpaolo-efe23b.png" + "then": "https://data.mapcomplete.org/nsi//logos/intesasanpaolo-efe23b.png" }, { "if": { @@ -36017,7 +36048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/db7b15-99790d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/db7b15-99790d.jpg" }, { "if": { @@ -36036,7 +36067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iranzaminbank-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iranzaminbank-cdfa72.jpg" }, { "if": { @@ -36051,7 +36082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isbank-b4c574.svg" + "then": "https://data.mapcomplete.org/nsi//logos/isbank-b4c574.svg" }, { "if": { @@ -36066,7 +36097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istarskakreditnabankaumag-6f3d3b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/istarskakreditnabankaumag-6f3d3b.svg" }, { "if": { @@ -36081,7 +36112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itau-1923f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itau-1923f1.jpg" }, { "if": { @@ -36096,7 +36127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itau-891146.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itau-891146.svg" }, { "if": { @@ -36111,7 +36142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jandtbanka-9e9a79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jandtbanka-9e9a79.jpg" }, { "if": { @@ -36126,7 +36157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/janasmallfinancebank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/janasmallfinancebank-34f411.jpg" }, { "if": { @@ -36146,7 +36177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jabank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jabank-d7a9e7.svg" }, { "if": { @@ -36161,7 +36192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jusan-033b31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jusan-033b31.jpg" }, { "if": { @@ -36176,7 +36207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jyskebank-cc27e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jyskebank-cc27e5.jpg" }, { "if": { @@ -36191,7 +36222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kandhbank-60884a.png" + "then": "https://data.mapcomplete.org/nsi//logos/kandhbank-60884a.png" }, { "if": { @@ -36210,7 +36241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karafarinbank-cdfa72.svg" + "then": "https://data.mapcomplete.org/nsi//logos/karafarinbank-cdfa72.svg" }, { "if": { @@ -36225,7 +36256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlovackabanka-6f3d3b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/karlovackabanka-6f3d3b.svg" }, { "if": { @@ -36240,7 +36271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karnatakabank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karnatakabank-34f411.jpg" }, { "if": { @@ -36255,7 +36286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karnatakagraminbank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/karnatakagraminbank-34f411.png" }, { "if": { @@ -36271,7 +36302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karnatakavikasgrameenabank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karnatakavikasgrameenabank-34f411.jpg" }, { "if": { @@ -36286,7 +36317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karurvysyabank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/karurvysyabank-34f411.png" }, { "if": { @@ -36301,7 +36332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kasastefczyka-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kasastefczyka-68054b.jpg" }, { "if": { @@ -36316,7 +36347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kbc-09ee8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kbc-09ee8b.jpg" }, { "if": { @@ -36331,7 +36362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kbzbank-ac4544.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kbzbank-ac4544.jpg" }, { "if": { @@ -36350,7 +36381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kbkookminbank-10d607.png" + "then": "https://data.mapcomplete.org/nsi//logos/kbkookminbank-10d607.png" }, { "if": { @@ -36365,7 +36396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentbank-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentbank-6f3d3b.png" }, { "if": { @@ -36380,7 +36411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralagraminbank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/keralagraminbank-34f411.png" }, { "if": { @@ -36395,7 +36426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keybank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/keybank-ea2e2d.png" }, { "if": { @@ -36410,7 +36441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiwibank-279fc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiwibank-279fc5.jpg" }, { "if": { @@ -36425,7 +36456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komercijalnabanka-0c399e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komercijalnabanka-0c399e.jpg" }, { "if": { @@ -36440,7 +36471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komercnibanka-7d13c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komercnibanka-7d13c0.jpg" }, { "if": { @@ -36455,7 +36486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koopbank-c9effc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koopbank-c9effc.jpg" }, { "if": { @@ -36470,7 +36501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kotakmahindrabank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/kotakmahindrabank-34f411.png" }, { "if": { @@ -36489,7 +36520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kredobank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kredobank-c8dc19.jpg" }, { "if": { @@ -36504,7 +36535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kutxabank-ce59ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/kutxabank-ce59ab.png" }, { "if": { @@ -36519,7 +36550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuveytturk-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kuveytturk-a30806.jpg" }, { "if": { @@ -36534,7 +36565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/labanquepostale-ad79d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/labanquepostale-ad79d4.jpg" }, { "if": { @@ -36549,7 +36580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacaixa-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacaixa-ce59ab.jpg" }, { "if": { @@ -36564,7 +36595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laboralkutxa-ce59ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laboralkutxa-ce59ab.jpg" }, { "if": { @@ -36580,7 +36611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakemichigancreditunion-985922.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lakemichigancreditunion-985922.jpg" }, { "if": { @@ -36595,7 +36626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landbank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landbank-431f82.jpg" }, { "if": { @@ -36610,7 +36641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landmarkcreditunion-347d8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landmarkcreditunion-347d8f.jpg" }, { "if": { @@ -36625,7 +36656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lbs-1180cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lbs-1180cf.svg" }, { "if": { @@ -36640,24 +36671,24 @@ } ] }, - "then": "./assets/data/nsi/logos/lcl-ad79d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lcl-ad79d4.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=LCNB National Bank", { "or": [ "alt_name=Lebanon Citizens National Bank", "brand=LCNB", "brand:wikidata=Q65095575", - "name=LCNB" + "name=LCNB", + "official_name=LCNB National Bank" ] } ] }, - "then": "./assets/data/nsi/logos/lcnb-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lcnb-ea2e2d.jpg" }, { "if": { @@ -36672,7 +36703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leedsbuildingsociety-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leedsbuildingsociety-e1e9d0.jpg" }, { "if": { @@ -36687,7 +36718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liberbank-ce59ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/liberbank-ce59ab.svg" }, { "if": { @@ -36702,7 +36733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertybank-9baf35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libertybank-9baf35.jpg" }, { "if": { @@ -36717,7 +36748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lighthousecreditunion-02b74e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lighthousecreditunion-02b74e.svg" }, { "if": { @@ -36732,7 +36763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/limasolturkkooperatifbankasi-c9effc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/limasolturkkooperatifbankasi-c9effc.jpg" }, { "if": { @@ -36747,7 +36778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lloydsbank-28a61d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lloydsbank-28a61d.jpg" }, { "if": { @@ -36762,7 +36793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luminorbank-3ce14c.png" + "then": "https://data.mapcomplete.org/nsi//logos/luminorbank-3ce14c.png" }, { "if": { @@ -36778,7 +36809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luzernerkantonalbank-74b036.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luzernerkantonalbank-74b036.jpg" }, { "if": { @@ -36793,7 +36824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandtbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandtbank-ea2e2d.jpg" }, { "if": { @@ -36808,7 +36839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macro-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macro-841353.jpg" }, { "if": { @@ -36827,7 +36858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madhyanchalgraminbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madhyanchalgraminbank-34f411.jpg" }, { "if": { @@ -36842,7 +36873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marinecreditunion-347d8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marinecreditunion-347d8f.jpg" }, { "if": { @@ -36859,7 +36890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mashreq-b21eb1.png" + "then": "https://data.mapcomplete.org/nsi//logos/mashreq-b21eb1.png" }, { "if": { @@ -36874,7 +36905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maybank-b7a026.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maybank-b7a026.jpg" }, { "if": { @@ -36889,7 +36920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mbank-b95c32.png" + "then": "https://data.mapcomplete.org/nsi//logos/mbank-b95c32.png" }, { "if": { @@ -36904,7 +36935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mbhbank-60884a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mbhbank-60884a.jpg" }, { "if": { @@ -36919,7 +36950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcb-93215e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcb-93215e.jpg" }, { "if": { @@ -36938,7 +36969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcb-57526d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcb-57526d.jpg" }, { "if": { @@ -36957,7 +36988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meezanbank-da5806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meezanbank-da5806.jpg" }, { "if": { @@ -36972,7 +37003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercantil-b7a026.png" + "then": "https://data.mapcomplete.org/nsi//logos/mercantil-b7a026.png" }, { "if": { @@ -36988,7 +37019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meridiancreditunion-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meridiancreditunion-e1345b.jpg" }, { "if": { @@ -37003,7 +37034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metairiebank-2214b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metairiebank-2214b7.jpg" }, { "if": { @@ -37018,7 +37049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrobank-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metrobank-e1e9d0.jpg" }, { "if": { @@ -37033,7 +37064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrobank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metrobank-431f82.jpg" }, { "if": { @@ -37050,7 +37081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/219d89-10d607.png" + "then": "https://data.mapcomplete.org/nsi//logos/219d89-10d607.png" }, { "if": { @@ -37065,7 +37096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mibanco-e2ab80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mibanco-e2ab80.jpg" }, { "if": { @@ -37080,7 +37111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midfirstbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midfirstbank-ea2e2d.jpg" }, { "if": { @@ -37101,7 +37132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrosbank-74b036.png" + "then": "https://data.mapcomplete.org/nsi//logos/migrosbank-74b036.png" }, { "if": { @@ -37116,23 +37147,23 @@ } ] }, - "then": "./assets/data/nsi/logos/millenniumbank-68054b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/millenniumbank-68054b.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Comercial Português", { "or": [ "brand=Millennium bcp", "brand:wikidata=Q118581", - "name=Millennium bcp" + "name=Millennium bcp", + "official_name=Banco Comercial Português" ] } ] }, - "then": "./assets/data/nsi/logos/millenniumbcp-4028ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/millenniumbcp-4028ed.png" }, { "if": { @@ -37147,7 +37178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missionfederalcreditunion-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missionfederalcreditunion-ea2e2d.jpg" }, { "if": { @@ -37162,7 +37193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mittelbrandenburgischesparkasse-1180cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/mittelbrandenburgischesparkasse-1180cf.png" }, { "if": { @@ -37177,7 +37208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mizoramruralbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mizoramruralbank-34f411.jpg" }, { "if": { @@ -37192,7 +37223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mkbbank-60884a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mkbbank-60884a.svg" }, { "if": { @@ -37207,7 +37238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moldindconbank-59fea4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moldindconbank-59fea4.jpg" }, { "if": { @@ -37222,7 +37253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moldovaagroindbank-59fea4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moldovaagroindbank-59fea4.jpg" }, { "if": { @@ -37237,7 +37268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monetamoneybank-7d13c0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/monetamoneybank-7d13c0.svg" }, { "if": { @@ -37252,7 +37283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monobank-c8dc19.png" + "then": "https://data.mapcomplete.org/nsi//logos/monobank-c8dc19.png" }, { "if": { @@ -37267,7 +37298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montedeipaschidisiena-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montedeipaschidisiena-7b36b5.jpg" }, { "if": { @@ -37282,7 +37313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montepio-4028ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/montepio-4028ed.png" }, { "if": { @@ -37297,7 +37328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mountainamericacreditunion-1d85ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mountainamericacreditunion-1d85ab.jpg" }, { "if": { @@ -37316,7 +37347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtbbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtbbank-c8dc19.jpg" }, { "if": { @@ -37331,7 +37362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nab-f304bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nab-f304bd.jpg" }, { "if": { @@ -37346,15 +37377,12 @@ } ] }, - "then": "./assets/data/nsi/logos/nasafederalcreditunion-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/nasafederalcreditunion-ea2e2d.png" }, { "if": { "and": [ "amenity=bank", - "official_name=National Bank of Canada", - "official_name:en=National Bank of Canada", - "official_name:fr=Banque Nationale du Canada", { "or": [ "brand=National Bank", @@ -37363,12 +37391,15 @@ "brand:wikidata=Q634298", "name=National Bank", "name:en=National Bank", - "name:fr=Banque Nationale" + "name:fr=Banque Nationale", + "official_name=National Bank of Canada", + "official_name:en=National Bank of Canada", + "official_name:fr=Banque Nationale du Canada" ] } ] }, - "then": "./assets/data/nsi/logos/nationalbank-9178f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbank-9178f2.jpg" }, { "if": { @@ -37387,7 +37418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalinvestmentbank-9d35ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalinvestmentbank-9d35ea.jpg" }, { "if": { @@ -37402,7 +37433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationwide-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationwide-e1e9d0.jpg" }, { "if": { @@ -37417,7 +37448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natwest-6bb648.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/natwest-6bb648.jpg" }, { "if": { @@ -37432,7 +37463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/navyfederalcreditunion-b7a026.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/navyfederalcreditunion-b7a026.jpg" }, { "if": { @@ -37447,7 +37478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbtbank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/nbtbank-ea2e2d.png" }, { "if": { @@ -37462,7 +37493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neareastbank-c9effc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neareastbank-c9effc.jpg" }, { "if": { @@ -37477,7 +37508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nedbank-b7a026.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nedbank-b7a026.jpg" }, { "if": { @@ -37492,7 +37523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nestbank-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nestbank-68054b.jpg" }, { "if": { @@ -37511,7 +37542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhbank-10d607.png" + "then": "https://data.mapcomplete.org/nsi//logos/nhbank-10d607.png" }, { "if": { @@ -37526,7 +37557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nicoletnationalbank-625518.png" + "then": "https://data.mapcomplete.org/nsi//logos/nicoletnationalbank-625518.png" }, { "if": { @@ -37542,7 +37573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nidwaldnerkantonalbank-74b036.png" + "then": "https://data.mapcomplete.org/nsi//logos/nidwaldnerkantonalbank-74b036.png" }, { "if": { @@ -37557,7 +37588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nlb-c48f09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nlb-c48f09.jpg" }, { "if": { @@ -37573,7 +37604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nmbbank-b0fe63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nmbbank-b0fe63.jpg" }, { "if": { @@ -37589,7 +37620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nmbbank-e14cdd.png" + "then": "https://data.mapcomplete.org/nsi//logos/nmbbank-e14cdd.png" }, { "if": { @@ -37604,7 +37635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordostseesparkasse-a957a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordostseesparkasse-a957a3.jpg" }, { "if": { @@ -37619,7 +37650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordea-5e8542.png" + "then": "https://data.mapcomplete.org/nsi//logos/nordea-5e8542.png" }, { "if": { @@ -37634,7 +37665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestbank-7df23e.png" + "then": "https://data.mapcomplete.org/nsi//logos/northwestbank-7df23e.png" }, { "if": { @@ -37649,7 +37680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novobanco-151324.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novobanco-151324.jpg" }, { "if": { @@ -37664,16 +37695,12 @@ } ] }, - "then": "./assets/data/nsi/logos/nsb-358381.png" + "then": "https://data.mapcomplete.org/nsi//logos/nsb-358381.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Nurbank JSC", - "official_name:en=Nurbank JSC", - "official_name:kk=«Нұрбанк» АҚ", - "official_name:ru=АО «Нурбанк»", { "or": [ "brand=Nurbank", @@ -37681,12 +37708,16 @@ "name=Nurbank", "name:en=Nurbank", "name:kk=Нурбанк", - "name:ru=Нурбанк" + "name:ru=Нурбанк", + "official_name=Nurbank JSC", + "official_name:en=Nurbank JSC", + "official_name:kk=«Нұрбанк» АҚ", + "official_name:ru=АО «Нурбанк»" ] } ] }, - "then": "./assets/data/nsi/logos/nurbank-033b31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nurbank-033b31.jpg" }, { "if": { @@ -37702,7 +37733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nusenda-1e2f31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nusenda-1e2f31.jpg" }, { "if": { @@ -37717,7 +37748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oberbank-f71288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oberbank-f71288.jpg" }, { "if": { @@ -37733,23 +37764,23 @@ } ] }, - "then": "./assets/data/nsi/logos/obwaldnerkantonalbank-74b036.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obwaldnerkantonalbank-74b036.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Bank OCBC NISP", { "or": [ "brand=OCBC", "brand:wikidata=Q19724214", - "name=OCBC" + "name=OCBC", + "official_name=Bank OCBC NISP" ] } ] }, - "then": "./assets/data/nsi/logos/ocbc-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocbc-aa7852.jpg" }, { "if": { @@ -37768,7 +37799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocbcbank-ae45e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocbcbank-ae45e2.jpg" }, { "if": { @@ -37783,7 +37814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/occidentaldedescuento-0269b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/occidentaldedescuento-0269b0.png" }, { "if": { @@ -37799,7 +37830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/occu-4ac31a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/occu-4ac31a.jpg" }, { "if": { @@ -37814,7 +37845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odeabank-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/odeabank-a30806.jpg" }, { "if": { @@ -37833,7 +37864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odishagramyabank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/odishagramyabank-34f411.png" }, { "if": { @@ -37849,7 +37880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7e41fb-99790d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7e41fb-99790d.jpg" }, { "if": { @@ -37864,7 +37895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldnationalbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldnationalbank-ea2e2d.jpg" }, { "if": { @@ -37879,7 +37910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldsecondnationalbank-6bd15c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldsecondnationalbank-6bd15c.jpg" }, { "if": { @@ -37895,7 +37926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldenburgischelandesbank-1180cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/oldenburgischelandesbank-1180cf.png" }, { "if": { @@ -37911,7 +37942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onpoint-181391.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onpoint-181391.jpg" }, { "if": { @@ -37927,7 +37958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oriental-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oriental-ea2e2d.jpg" }, { "if": { @@ -37942,7 +37973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orientalbankofcommerce-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orientalbankofcommerce-34f411.jpg" }, { "if": { @@ -37957,7 +37988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osuuspankki-22526e.png" + "then": "https://data.mapcomplete.org/nsi//logos/osuuspankki-22526e.png" }, { "if": { @@ -37973,7 +38004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbank-2ef74c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbank-2ef74c.jpg" }, { "if": { @@ -37992,7 +38023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbank-c8dc19.svg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbank-c8dc19.svg" }, { "if": { @@ -38007,7 +38038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbanka-6f3d3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbanka-6f3d3b.jpg" }, { "if": { @@ -38025,7 +38056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbanka-e9ea45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbanka-e9ea45.jpg" }, { "if": { @@ -38040,7 +38071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paninbank-aa7852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paninbank-aa7852.jpg" }, { "if": { @@ -38055,7 +38086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/partnerbanka-6f3d3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/partnerbanka-6f3d3b.jpg" }, { "if": { @@ -38070,23 +38101,23 @@ } ] }, - "then": "./assets/data/nsi/logos/pbcom-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pbcom-431f82.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=President's Choice Financial", { "or": [ "brand=PC Financial", "brand:wikidata=Q7241126", - "name=PC Financial" + "name=PC Financial", + "official_name=President's Choice Financial" ] } ] }, - "then": "./assets/data/nsi/logos/pcfinancial-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pcfinancial-e1345b.jpg" }, { "if": { @@ -38103,7 +38134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penfedcreditunion-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penfedcreditunion-ea2e2d.jpg" }, { "if": { @@ -38119,7 +38150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psecu-7bc61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/psecu-7bc61e.jpg" }, { "if": { @@ -38134,7 +38165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peoplesunitedbank-9baf35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peoplesunitedbank-9baf35.jpg" }, { "if": { @@ -38149,7 +38180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peoplesbank-35da18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peoplesbank-35da18.jpg" }, { "if": { @@ -38164,7 +38195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/permanenttsb-030d9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/permanenttsb-030d9e.jpg" }, { "if": { @@ -38179,7 +38210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/philippinebusinessbank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/philippinebusinessbank-431f82.jpg" }, { "if": { @@ -38194,7 +38225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinnaclebank-ebf4c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/pinnaclebank-ebf4c6.png" }, { "if": { @@ -38213,7 +38244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piraeusbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piraeusbank-c8dc19.jpg" }, { "if": { @@ -38228,23 +38259,23 @@ } ] }, - "then": "./assets/data/nsi/logos/pkobp-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pkobp-68054b.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Philippine National Bank", { "or": [ "brand=PNB", "brand:wikidata=Q1657971", - "name=PNB" + "name=PNB", + "official_name=Philippine National Bank" ] } ] }, - "then": "./assets/data/nsi/logos/pnb-431f82.png" + "then": "https://data.mapcomplete.org/nsi//logos/pnb-431f82.png" }, { "if": { @@ -38259,7 +38290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pncbank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/pncbank-ea2e2d.png" }, { "if": { @@ -38274,25 +38305,25 @@ } ] }, - "then": "./assets/data/nsi/logos/podravskabanka-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/podravskabanka-6f3d3b.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Banco Popular de Puerto Rico", "short_name=BPPR", { "or": [ "alt_name=Banco Popular", "brand=Popular", "brand:wikidata=Q7229656", - "name=Popular" + "name=Popular", + "official_name=Banco Popular de Puerto Rico" ] } ] }, - "then": "./assets/data/nsi/logos/popular-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popular-ea2e2d.jpg" }, { "if": { @@ -38313,7 +38344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postanskastedionica-e9ea45.png" + "then": "https://data.mapcomplete.org/nsi//logos/postanskastedionica-e9ea45.png" }, { "if": { @@ -38328,7 +38359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postbank-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postbank-1180cf.jpg" }, { "if": { @@ -38343,7 +38374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postovabanka-6a1dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postovabanka-6a1dfb.jpg" }, { "if": { @@ -38358,7 +38389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primabanka-6a1dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/primabanka-6a1dfb.png" }, { "if": { @@ -38373,7 +38404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privatbanka-6a1dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/privatbanka-6a1dfb.png" }, { "if": { @@ -38389,7 +38420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privrednabankazagreb-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/privrednabankazagreb-6f3d3b.png" }, { "if": { @@ -38404,7 +38435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-f3fcbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-f3fcbc.png" }, { "if": { @@ -38421,7 +38452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-39118c.png" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-39118c.png" }, { "if": { @@ -38440,7 +38471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-c8dc19.jpg" }, { "if": { @@ -38458,7 +38489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbanka-e9ea45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbanka-e9ea45.jpg" }, { "if": { @@ -38473,7 +38504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/produbanco-01e191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/produbanco-01e191.jpg" }, { "if": { @@ -38488,7 +38519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/producersbank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/producersbank-431f82.jpg" }, { "if": { @@ -38503,7 +38534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prosperitybank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prosperitybank-ea2e2d.jpg" }, { "if": { @@ -38518,7 +38549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/providentbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/providentbank-ea2e2d.jpg" }, { "if": { @@ -38533,7 +38564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prvastavebnasporitelna-6a1dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prvastavebnasporitelna-6a1dfb.jpg" }, { "if": { @@ -38548,7 +38579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psbank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/psbank-431f82.jpg" }, { "if": { @@ -38567,7 +38598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicbank-8ab35f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicbank-8ab35f.jpg" }, { "if": { @@ -38582,7 +38613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puduvaibharathiargramabank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puduvaibharathiargramabank-34f411.jpg" }, { "if": { @@ -38601,7 +38632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/punjabandsindbank-34f411.svg" + "then": "https://data.mapcomplete.org/nsi//logos/punjabandsindbank-34f411.svg" }, { "if": { @@ -38616,7 +38647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/punjabnationalbank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/punjabnationalbank-34f411.png" }, { "if": { @@ -38631,7 +38662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qnbfinansbank-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qnbfinansbank-a30806.jpg" }, { "if": { @@ -38646,7 +38677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rabobank-c61987.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rabobank-c61987.jpg" }, { "if": { @@ -38661,7 +38692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisen-d335b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisen-d335b6.jpg" }, { "if": { @@ -38676,7 +38707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisen-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisen-74b036.svg" }, { "if": { @@ -38691,7 +38722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-6f3d3b.png" }, { "if": { @@ -38706,7 +38737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-60884a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-60884a.jpg" }, { "if": { @@ -38721,7 +38752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-694ab5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-694ab5.svg" }, { "if": { @@ -38736,7 +38767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-9a9a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-9a9a30.jpg" }, { "if": { @@ -38751,7 +38782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-c53f64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-c53f64.jpg" }, { "if": { @@ -38772,7 +38803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-c8dc19.jpg" }, { "if": { @@ -38787,7 +38818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbankpolska-68054b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbankpolska-68054b.svg" }, { "if": { @@ -38802,7 +38833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbanka-6a1dfb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbanka-6a1dfb.svg" }, { "if": { @@ -38817,7 +38848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-e9ea45.png" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-e9ea45.png" }, { "if": { @@ -38832,7 +38863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-7d13c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-7d13c0.jpg" }, { "if": { @@ -38847,7 +38878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisen-7b36b5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisen-7b36b5.svg" }, { "if": { @@ -38866,13 +38897,12 @@ } ] }, - "then": "./assets/data/nsi/logos/rakbank-d9ce9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/rakbank-d9ce9c.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Royal Bank of Canada", { "or": [ "brand=RBC", @@ -38881,12 +38911,13 @@ "brand:wikidata=Q735261", "name=RBC", "name:en=RBC Royal Bank", - "name:fr=RBC Banque Royale" + "name:fr=RBC Banque Royale", + "official_name=Royal Bank of Canada" ] } ] }, - "then": "./assets/data/nsi/logos/rbc-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rbc-e1345b.jpg" }, { "if": { @@ -38901,39 +38932,39 @@ } ] }, - "then": "./assets/data/nsi/logos/rblbank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/rblbank-34f411.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Royal Bank of Scotland", { "or": [ "brand=RBS", "brand:wikidata=Q160126", - "name=RBS" + "name=RBS", + "official_name=Royal Bank of Scotland" ] } ] }, - "then": "./assets/data/nsi/logos/rbs-23753a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rbs-23753a.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Rizal Commercial Banking Corporation", { "or": [ "brand=RCBC", "brand:wikidata=Q7339070", - "name=RCBC" + "name=RCBC", + "official_name=Rizal Commercial Banking Corporation" ] } ] }, - "then": "./assets/data/nsi/logos/rcbc-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rcbc-431f82.jpg" }, { "if": { @@ -38948,7 +38979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regiobank-fb21a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/regiobank-fb21a8.svg" }, { "if": { @@ -38963,7 +38994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionsbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regionsbank-ea2e2d.jpg" }, { "if": { @@ -38978,7 +39009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reisebank-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reisebank-1180cf.jpg" }, { "if": { @@ -38993,7 +39024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repcobank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/repcobank-34f411.jpg" }, { "if": { @@ -39011,23 +39042,23 @@ } ] }, - "then": "./assets/data/nsi/logos/republicbank-9d35ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/republicbank-9d35ea.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Republic Bank & Trust Company", { "or": [ "brand=Republic Bank", "brand:wikidata=Q7314387", - "name=Republic Bank" + "name=Republic Bank", + "official_name=Republic Bank & Trust Company" ] } ] }, - "then": "./assets/data/nsi/logos/republicbank-6552d3.png" + "then": "https://data.mapcomplete.org/nsi//logos/republicbank-6552d3.png" }, { "if": { @@ -39042,7 +39073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/republica-146753.png" + "then": "https://data.mapcomplete.org/nsi//logos/republica-146753.png" }, { "if": { @@ -39057,7 +39088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhbbank-ea52df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhbbank-ea52df.jpg" }, { "if": { @@ -39073,7 +39104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkasse-a144f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkasse-a144f5.jpg" }, { "if": { @@ -39088,7 +39119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robinsonsbank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robinsonsbank-431f82.jpg" }, { "if": { @@ -39103,7 +39134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rocklandtrust-893667.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rocklandtrust-893667.jpg" }, { "if": { @@ -39118,7 +39149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roguecreditunion-05b4aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roguecreditunion-05b4aa.jpg" }, { "if": { @@ -39133,7 +39164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalbusinessbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalbusinessbank-ea2e2d.jpg" }, { "if": { @@ -39148,7 +39179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spankki-22526e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spankki-22526e.jpg" }, { "if": { @@ -39163,7 +39194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacombank-b7a026.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacombank-b7a026.jpg" }, { "if": { @@ -39178,7 +39209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salemfivebank-1bf72c.png" + "then": "https://data.mapcomplete.org/nsi//logos/salemfivebank-1bf72c.png" }, { "if": { @@ -39193,7 +39224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samoborskabanka-6f3d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/samoborskabanka-6f3d3b.png" }, { "if": { @@ -39208,7 +39239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sampathbank-358381.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sampathbank-358381.jpg" }, { "if": { @@ -39224,7 +39255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegocountycreditunion-cf92b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegocountycreditunion-cf92b8.jpg" }, { "if": { @@ -39239,7 +39270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santander-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santander-1180cf.jpg" }, { "if": { @@ -39254,7 +39285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santander-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santander-68054b.jpg" }, { "if": { @@ -39269,7 +39300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santander-e1e9d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/santander-e1e9d0.png" }, { "if": { @@ -39284,7 +39315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santander-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santander-ea2e2d.jpg" }, { "if": { @@ -39299,7 +39330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santanderconsumerbank-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santanderconsumerbank-68054b.jpg" }, { "if": { @@ -39314,7 +39345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santanderrio-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santanderrio-841353.jpg" }, { "if": { @@ -39329,7 +39360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santandertotta-4028ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/santandertotta-4028ed.png" }, { "if": { @@ -39344,7 +39375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sberbank-4ff616.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sberbank-4ff616.jpg" }, { "if": { @@ -39363,7 +39394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbishinseibank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sbishinseibank-d7a9e7.svg" }, { "if": { @@ -39378,7 +39409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbsbank-279fc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sbsbank-279fc5.jpg" }, { "if": { @@ -39394,7 +39425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schaffhauserkantonalbank-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schaffhauserkantonalbank-74b036.svg" }, { "if": { @@ -39410,7 +39441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schwyzerkantonalbank-74b036.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schwyzerkantonalbank-74b036.jpg" }, { "if": { @@ -39425,7 +39456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scotiabank-b7a026.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scotiabank-b7a026.jpg" }, { "if": { @@ -39440,7 +39471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquescotia-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquescotia-e1345b.jpg" }, { "if": { @@ -39457,7 +39488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2a04be-10d607.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2a04be-10d607.jpg" }, { "if": { @@ -39472,7 +39503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seb-e3cf16.png" + "then": "https://data.mapcomplete.org/nsi//logos/seb-e3cf16.png" }, { "if": { @@ -39487,7 +39518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/securitybank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/securitybank-431f82.jpg" }, { "if": { @@ -39503,7 +39534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/securityservicefederalcreditunion-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/securityservicefederalcreditunion-ea2e2d.png" }, { "if": { @@ -39518,7 +39549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sekerbank-f79a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sekerbank-f79a7c.jpg" }, { "if": { @@ -39533,7 +39564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selfhelpfederalcreditunion-8dbd99.png" + "then": "https://data.mapcomplete.org/nsi//logos/selfhelpfederalcreditunion-8dbd99.png" }, { "if": { @@ -39555,7 +39586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sensebank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sensebank-c8dc19.jpg" }, { "if": { @@ -39570,7 +39601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicecreditunion-f961e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicecreditunion-f961e2.jpg" }, { "if": { @@ -39586,7 +39617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servuscreditunion-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servuscreditunion-e1345b.jpg" }, { "if": { @@ -39601,7 +39632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seylanbank-358381.png" + "then": "https://data.mapcomplete.org/nsi//logos/seylanbank-358381.png" }, { "if": { @@ -39620,7 +39651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharjahislamicbank-d9ce9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sharjahislamicbank-d9ce9c.jpg" }, { "if": { @@ -39635,7 +39666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoreunitedbank-57aa5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoreunitedbank-57aa5c.jpg" }, { "if": { @@ -39650,7 +39681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sicoob-0ed44d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sicoob-0ed44d.jpg" }, { "if": { @@ -39665,7 +39696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sicredi-0ed44d.png" + "then": "https://data.mapcomplete.org/nsi//logos/sicredi-0ed44d.png" }, { "if": { @@ -39680,7 +39711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simmonsbank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/simmonsbank-ea2e2d.png" }, { "if": { @@ -39695,7 +39726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skbbanka-30392e.png" + "then": "https://data.mapcomplete.org/nsi//logos/skbbanka-30392e.png" }, { "if": { @@ -39710,7 +39741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skiptonbuildingsociety-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skiptonbuildingsociety-e1e9d0.jpg" }, { "if": { @@ -39725,7 +39756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slatinskabanka-6f3d3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slatinskabanka-6f3d3b.jpg" }, { "if": { @@ -39740,7 +39771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskasporitelna-6a1dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskasporitelna-6a1dfb.jpg" }, { "if": { @@ -39755,7 +39786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snsbank-fb21a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snsbank-fb21a8.jpg" }, { "if": { @@ -39770,7 +39801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sg-b30a91.png" + "then": "https://data.mapcomplete.org/nsi//logos/sg-b30a91.png" }, { "if": { @@ -39788,7 +39819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societegenerale-9d35ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/societegenerale-9d35ea.png" }, { "if": { @@ -39807,7 +39838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/576e54-11534a.png" + "then": "https://data.mapcomplete.org/nsi//logos/576e54-11534a.png" }, { "if": { @@ -39824,7 +39855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societegeneralecotedivoire-720a42.png" + "then": "https://data.mapcomplete.org/nsi//logos/societegeneralecotedivoire-720a42.png" }, { "if": { @@ -39839,7 +39870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southindianbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southindianbank-34f411.jpg" }, { "if": { @@ -39854,7 +39885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southstatebank-7bc186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southstatebank-7bc186.jpg" }, { "if": { @@ -39869,7 +39900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southernbank-c8bf03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southernbank-c8bf03.jpg" }, { "if": { @@ -39884,7 +39915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southernbank-fd5937.png" + "then": "https://data.mapcomplete.org/nsi//logos/southernbank-fd5937.png" }, { "if": { @@ -39899,7 +39930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabank-a7f91c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabank-a7f91c.jpg" }, { "if": { @@ -39914,7 +39945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabank-694ab5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabank-694ab5.jpg" }, { "if": { @@ -39929,7 +39960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabankbadenwurttemberg-5068f2.png" + "then": "https://data.mapcomplete.org/nsi//logos/spardabankbadenwurttemberg-5068f2.png" }, { "if": { @@ -39944,7 +39975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabankberlin-d82d38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabankberlin-d82d38.jpg" }, { "if": { @@ -39959,7 +39990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabankhamburg-b869bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabankhamburg-b869bd.jpg" }, { "if": { @@ -39974,7 +40005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabankhessen-9ffcae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabankhessen-9ffcae.jpg" }, { "if": { @@ -39989,25 +40020,25 @@ } ] }, - "then": "./assets/data/nsi/logos/spardabanksudwest-75cfbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spardabanksudwest-75cfbb.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Südtiroler Sparkasse – Cassa di Risparmio di Bolzano", { "or": [ "brand=Sparkasse - Cassa di Risparmio", "brand:wikidata=Q3661920", "name=Sparkasse - Cassa di Risparmio", "name:de=Sparkasse", - "name:it=Cassa di Risparmio" + "name:it=Cassa di Risparmio", + "official_name=Südtiroler Sparkasse – Cassa di Risparmio di Bolzano" ] } ] }, - "then": "./assets/data/nsi/logos/sparkassecassadirisparmio-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkassecassadirisparmio-7b36b5.jpg" }, { "if": { @@ -40022,7 +40053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkasse-694ab5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkasse-694ab5.svg" }, { "if": { @@ -40037,7 +40068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkassen-f2a422.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkassen-f2a422.jpg" }, { "if": { @@ -40053,7 +40084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stgallerkantonalbank-74b036.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stgallerkantonalbank-74b036.jpg" }, { "if": { @@ -40068,7 +40099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stgeorge-f304bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stgeorge-f304bd.jpg" }, { "if": { @@ -40083,7 +40114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stanbicbank-b79c2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stanbicbank-b79c2d.jpg" }, { "if": { @@ -40100,7 +40131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stanbicbank-9d35ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stanbicbank-9d35ea.jpg" }, { "if": { @@ -40115,7 +40146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardbank-2a7aac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/standardbank-2a7aac.jpg" }, { "if": { @@ -40133,7 +40164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardchartered-9d35ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/standardchartered-9d35ea.png" }, { "if": { @@ -40149,7 +40180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statebankofindiacalifornia-cf92b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/statebankofindiacalifornia-cf92b8.png" }, { "if": { @@ -40165,7 +40196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statebankofindia-981cfe.png" + "then": "https://data.mapcomplete.org/nsi//logos/statebankofindia-981cfe.png" }, { "if": { @@ -40181,7 +40212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateemployeescreditunion-06946f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-06946f.jpg" }, { "if": { @@ -40197,7 +40228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateemployeescreditunion-1e2f31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-1e2f31.jpg" }, { "if": { @@ -40213,7 +40244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateemployeescreditunion-cc7b9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-cc7b9c.png" }, { "if": { @@ -40228,7 +40259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/summitcreditunion-347d8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/summitcreditunion-347d8f.jpg" }, { "if": { @@ -40243,7 +40274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suncoastcreditunion-9ffb0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/suncoastcreditunion-9ffb0f.png" }, { "if": { @@ -40258,7 +40289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suncorp-f304bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suncorp-f304bd.jpg" }, { "if": { @@ -40273,7 +40304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suntrust-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suntrust-ea2e2d.jpg" }, { "if": { @@ -40288,7 +40319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supervielle-841353.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supervielle-841353.jpg" }, { "if": { @@ -40303,7 +40334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swedbank-2cd0b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/swedbank-2cd0b2.png" }, { "if": { @@ -40318,7 +40349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydbank-9eeba7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sydbank-9eeba7.jpg" }, { "if": { @@ -40333,7 +40364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/syndicatebank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/syndicatebank-34f411.jpg" }, { "if": { @@ -40348,7 +40379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synovus-ffe122.png" + "then": "https://data.mapcomplete.org/nsi//logos/synovus-ffe122.png" }, { "if": { @@ -40363,7 +40394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamilnadmercantilebanklimited-34f411.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tamilnadmercantilebanklimited-34f411.svg" }, { "if": { @@ -40378,7 +40409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tangerine-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tangerine-e1345b.jpg" }, { "if": { @@ -40393,7 +40424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/targobank-236711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/targobank-236711.jpg" }, { "if": { @@ -40408,7 +40439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tatrabanka-6a1dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tatrabanka-6a1dfb.jpg" }, { "if": { @@ -40423,7 +40454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tbibank-1ad94e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tbibank-1ad94e.jpg" }, { "if": { @@ -40439,7 +40470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/td-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/td-e1345b.jpg" }, { "if": { @@ -40455,7 +40486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tdbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tdbank-ea2e2d.jpg" }, { "if": { @@ -40470,7 +40501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teb-f79a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teb-f79a7c.jpg" }, { "if": { @@ -40485,7 +40516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/techcombank-a28d32.png" + "then": "https://data.mapcomplete.org/nsi//logos/techcombank-a28d32.png" }, { "if": { @@ -40500,7 +40531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecooperativebank-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecooperativebank-e1e9d0.jpg" }, { "if": { @@ -40515,7 +40546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecumberland-ef8e70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecumberland-ef8e70.jpg" }, { "if": { @@ -40530,7 +40561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thenottingham-390947.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thenottingham-390947.jpg" }, { "if": { @@ -40546,7 +40577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thurgauerkantonalbank-74b036.png" + "then": "https://data.mapcomplete.org/nsi//logos/thurgauerkantonalbank-74b036.png" }, { "if": { @@ -40562,7 +40593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tompkinscommunitybank-0e1628.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tompkinscommunitybank-0e1628.jpg" }, { "if": { @@ -40583,7 +40614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tripuragraminbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tripuragraminbank-34f411.jpg" }, { "if": { @@ -40598,7 +40629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truist-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truist-ea2e2d.jpg" }, { "if": { @@ -40613,7 +40644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsb-279fc5.png" + "then": "https://data.mapcomplete.org/nsi//logos/tsb-279fc5.png" }, { "if": { @@ -40628,7 +40659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsb-e1e9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsb-e1e9d0.jpg" }, { "if": { @@ -40643,7 +40674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkiyefinans-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkiyefinans-a30806.jpg" }, { "if": { @@ -40658,7 +40689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkiyeisbankasi-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkiyeisbankasi-a30806.jpg" }, { "if": { @@ -40673,23 +40704,23 @@ } ] }, - "then": "./assets/data/nsi/logos/usbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usbank-ea2e2d.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=United Bank for Africa", { "or": [ "brand=UBA", "brand:wikidata=Q513457", - "name=UBA" + "name=UBA", + "official_name=United Bank for Africa" ] } ] }, - "then": "./assets/data/nsi/logos/uba-95540f.png" + "then": "https://data.mapcomplete.org/nsi//logos/uba-95540f.png" }, { "if": { @@ -40704,7 +40735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubs-b7a026.png" + "then": "https://data.mapcomplete.org/nsi//logos/ubs-b7a026.png" }, { "if": { @@ -40719,7 +40750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucobank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucobank-34f411.jpg" }, { "if": { @@ -40735,7 +40766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucpbsavingsbank-431f82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucpbsavingsbank-431f82.jpg" }, { "if": { @@ -40754,25 +40785,25 @@ } ] }, - "then": "./assets/data/nsi/logos/ugb-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ugb-c8dc19.jpg" }, { "if": { "and": [ "amenity=bank", - "official_name=Union internationale de banques", { "or": [ "brand=UIB", "brand:wikidata=Q3550305", "name=UIB", "name:ar=الاتحاد الدولي للبنوك", - "name:en=UIB" + "name:en=UIB", + "official_name=Union internationale de banques" ] } ] }, - "then": "./assets/data/nsi/logos/uib-367f6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uib-367f6f.jpg" }, { "if": { @@ -40787,7 +40818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ujjivansmallfinancebank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ujjivansmallfinancebank-34f411.jpg" }, { "if": { @@ -40806,7 +40837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrsibbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrsibbank-c8dc19.jpg" }, { "if": { @@ -40821,7 +40852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ulsterbank-018fb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ulsterbank-018fb8.jpg" }, { "if": { @@ -40836,7 +40867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umbbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umbbank-ea2e2d.jpg" }, { "if": { @@ -40851,7 +40882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umpquabank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umpquabank-ea2e2d.jpg" }, { "if": { @@ -40870,23 +40901,23 @@ } ] }, - "then": "./assets/data/nsi/logos/unexbank-c8dc19.png" + "then": "https://data.mapcomplete.org/nsi//logos/unexbank-c8dc19.png" }, { "if": { "and": [ "amenity=bank", - "official_name=UNI Coopération financière", { "or": [ "brand=UNI", "brand:wikidata=Q2933348", - "name=UNI" + "name=UNI", + "official_name=UNI Coopération financière" ] } ] }, - "then": "./assets/data/nsi/logos/uni-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uni-e1345b.jpg" }, { "if": { @@ -40907,7 +40938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unibank-9c44ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/unibank-9c44ae.png" }, { "if": { @@ -40923,7 +40954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicajabanco-ce59ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unicajabanco-ce59ab.svg" }, { "if": { @@ -40938,7 +40969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicreditbank-ff6e1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unicreditbank-ff6e1c.jpg" }, { "if": { @@ -40955,7 +40986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicreditbulbank-126296.png" + "then": "https://data.mapcomplete.org/nsi//logos/unicreditbulbank-126296.png" }, { "if": { @@ -40971,7 +41002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbank-ea2e2d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unionbank-ea2e2d.svg" }, { "if": { @@ -40986,7 +41017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbankofindia-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/unionbankofindia-34f411.png" }, { "if": { @@ -41001,7 +41032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionsavingsbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unionsavingsbank-ea2e2d.jpg" }, { "if": { @@ -41016,7 +41047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbank-431f82.png" + "then": "https://data.mapcomplete.org/nsi//logos/unionbank-431f82.png" }, { "if": { @@ -41031,7 +41062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedbank-9baf35.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedbank-9baf35.png" }, { "if": { @@ -41046,7 +41077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedbank-d6a32a.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedbank-d6a32a.png" }, { "if": { @@ -41061,7 +41092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedcommunitybank-6749f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedcommunitybank-6749f1.jpg" }, { "if": { @@ -41077,7 +41108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitus-181391.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitus-181391.png" }, { "if": { @@ -41096,7 +41127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universalbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universalbank-c8dc19.jpg" }, { "if": { @@ -41112,7 +41143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityfederalcreditunion-718014.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityfederalcreditunion-718014.jpg" }, { "if": { @@ -41131,7 +41162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uob-dadccc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uob-dadccc.jpg" }, { "if": { @@ -41147,23 +41178,23 @@ } ] }, - "then": "./assets/data/nsi/logos/urnerkantonalbank-74b036.svg" + "then": "https://data.mapcomplete.org/nsi//logos/urnerkantonalbank-74b036.svg" }, { "if": { "and": [ "amenity=bank", - "official_name=United Services Automobile Association", { "or": [ "brand=USAA", "brand:wikidata=Q7865722", - "name=USAA" + "name=USAA", + "official_name=United Services Automobile Association" ] } ] }, - "then": "./assets/data/nsi/logos/usaa-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usaa-ea2e2d.jpg" }, { "if": { @@ -41178,7 +41209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uttarakhandgraminbank-34f411.png" + "then": "https://data.mapcomplete.org/nsi//logos/uttarakhandgraminbank-34f411.png" }, { "if": { @@ -41193,7 +41224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uwcreditunion-347d8f.png" + "then": "https://data.mapcomplete.org/nsi//logos/uwcreditunion-347d8f.png" }, { "if": { @@ -41208,7 +41239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vakifkatilim-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vakifkatilim-a30806.jpg" }, { "if": { @@ -41223,7 +41254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vakifbank-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vakifbank-a30806.jpg" }, { "if": { @@ -41238,23 +41269,23 @@ } ] }, - "then": "./assets/data/nsi/logos/valiant-74b036.png" + "then": "https://data.mapcomplete.org/nsi//logos/valiant-74b036.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Vancouver City Savings Credit Union", { "or": [ "brand=Vancity", "brand:wikidata=Q7914085", - "name=Vancity" + "name=Vancity", + "official_name=Vancouver City Savings Credit Union" ] } ] }, - "then": "./assets/data/nsi/logos/vancity-e1345b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vancity-e1345b.jpg" }, { "if": { @@ -41269,7 +41300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velobank-68054b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velobank-68054b.jpg" }, { "if": { @@ -41284,7 +41315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/victoriabank-59fea4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/victoriabank-59fea4.jpg" }, { "if": { @@ -41299,7 +41330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vietcombank-a28d32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vietcombank-a28d32.jpg" }, { "if": { @@ -41314,7 +41345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vietinbank-a28d32.png" + "then": "https://data.mapcomplete.org/nsi//logos/vietinbank-a28d32.png" }, { "if": { @@ -41329,7 +41360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginmoney-e1e9d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/virginmoney-e1e9d0.png" }, { "if": { @@ -41344,25 +41375,25 @@ } ] }, - "then": "./assets/data/nsi/logos/vivibanca-7b36b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/vivibanca-7b36b5.png" }, { "if": { "and": [ "amenity=bank", - "official_name=Südtiroler Volksbank - Banca Popolare dell'Alto Adige", - "official_name:de=Südtiroler Volksbank", - "official_name:it=Banca Popolare dell'Alto Adige", { "or": [ "brand=Volksbank", "brand:wikidata=Q3633728", - "name=Volksbank" + "name=Volksbank", + "official_name=Südtiroler Volksbank - Banca Popolare dell'Alto Adige", + "official_name:de=Südtiroler Volksbank", + "official_name:it=Banca Popolare dell'Alto Adige" ] } ] }, - "then": "./assets/data/nsi/logos/volksbank-7b36b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volksbank-7b36b5.jpg" }, { "if": { @@ -41377,7 +41408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volksbank-694ab5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/volksbank-694ab5.svg" }, { "if": { @@ -41392,7 +41423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volksbankkolnbonneg-1180cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volksbankkolnbonneg-1180cf.jpg" }, { "if": { @@ -41408,7 +41439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vseobecnauverovabanka-6a1dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/vseobecnauverovabanka-6a1dfb.png" }, { "if": { @@ -41429,7 +41460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vtb-9c44ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vtb-9c44ae.jpg" }, { "if": { @@ -41445,7 +41476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wafdbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wafdbank-ea2e2d.jpg" }, { "if": { @@ -41460,7 +41491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/websterbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/websterbank-ea2e2d.jpg" }, { "if": { @@ -41475,7 +41506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellsfargo-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellsfargo-ea2e2d.jpg" }, { "if": { @@ -41490,7 +41521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wesbanco-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wesbanco-ea2e2d.jpg" }, { "if": { @@ -41505,7 +41536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westconsincreditunion-347d8f.png" + "then": "https://data.mapcomplete.org/nsi//logos/westconsincreditunion-347d8f.png" }, { "if": { @@ -41520,7 +41551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernunion-c846ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westernunion-c846ae.jpg" }, { "if": { @@ -41535,7 +41566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westpac-510934.png" + "then": "https://data.mapcomplete.org/nsi//logos/westpac-510934.png" }, { "if": { @@ -41550,7 +41581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodforestnationalbank-ea2e2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/woodforestnationalbank-ea2e2d.png" }, { "if": { @@ -41565,7 +41596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wsfsbank-ecc1eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/wsfsbank-ecc1eb.png" }, { "if": { @@ -41580,7 +41611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yapikredi-a30806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yapikredi-a30806.jpg" }, { "if": { @@ -41595,7 +41626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yesbank-34f411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yesbank-34f411.jpg" }, { "if": { @@ -41613,7 +41644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yettelbank-e9ea45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yettelbank-e9ea45.jpg" }, { "if": { @@ -41628,7 +41659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yorkshirebuildingsociety-e1e9d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/yorkshirebuildingsociety-e1e9d0.png" }, { "if": { @@ -41644,7 +41675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zagrebackabanka-6f3d3b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zagrebackabanka-6f3d3b.svg" }, { "if": { @@ -41659,7 +41690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zenithbank-603eac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zenithbank-603eac.jpg" }, { "if": { @@ -41674,7 +41705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zionsbank-ea2e2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zionsbank-ea2e2d.jpg" }, { "if": { @@ -41689,7 +41720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziraatbankasi-f79a7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ziraatbankasi-f79a7c.png" }, { "if": { @@ -41704,7 +41735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziraatkatilim-a30806.png" + "then": "https://data.mapcomplete.org/nsi//logos/ziraatkatilim-a30806.png" }, { "if": { @@ -41719,7 +41750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zugerkantonalbank-74b036.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zugerkantonalbank-74b036.jpg" }, { "if": { @@ -41735,7 +41766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zurcherkantonalbank-74b036.png" + "then": "https://data.mapcomplete.org/nsi//logos/zurcherkantonalbank-74b036.png" }, { "if": { @@ -41754,7 +41785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalbankofgreece-f14c4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbankofgreece-f14c4e.jpg" }, { "if": { @@ -41776,7 +41807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piraeusbank-f14c4e.png" + "then": "https://data.mapcomplete.org/nsi//logos/piraeusbank-f14c4e.png" }, { "if": { @@ -41795,7 +41826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abank-c8dc19.jpg" }, { "if": { @@ -41814,7 +41845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/absolutbank-0eb427.png" + "then": "https://data.mapcomplete.org/nsi//logos/absolutbank-0eb427.png" }, { "if": { @@ -41835,7 +41866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/absolutbank-4aad73.svg" + "then": "https://data.mapcomplete.org/nsi//logos/absolutbank-4aad73.svg" }, { "if": { @@ -41854,7 +41885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avangardbank-0eb427.png" + "then": "https://data.mapcomplete.org/nsi//logos/avangardbank-0eb427.png" }, { "if": { @@ -41873,7 +41904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asianpacificbank-0eb427.png" + "then": "https://data.mapcomplete.org/nsi//logos/asianpacificbank-0eb427.png" }, { "if": { @@ -41892,7 +41923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akbarsbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akbarsbank-0eb427.jpg" }, { "if": { @@ -41911,7 +41942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accordbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accordbank-c8dc19.jpg" }, { "if": { @@ -41932,7 +41963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfabank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfabank-4aad73.jpg" }, { "if": { @@ -41951,7 +41982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfabank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfabank-0eb427.jpg" }, { "if": { @@ -41966,7 +41997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/27e679-cf89ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/27e679-cf89ba.png" }, { "if": { @@ -41987,7 +42018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vtbbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vtbbank-4aad73.jpg" }, { "if": { @@ -42008,7 +42039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankdabrabyt-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankdabrabyt-4aad73.jpg" }, { "if": { @@ -42027,7 +42058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankcreditdnipro-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankcreditdnipro-c8dc19.jpg" }, { "if": { @@ -42046,7 +42077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banklviv-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banklviv-c8dc19.jpg" }, { "if": { @@ -42065,7 +42096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pivdennybank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pivdennybank-c8dc19.jpg" }, { "if": { @@ -42086,7 +42117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resheniebank-4aad73.png" + "then": "https://data.mapcomplete.org/nsi//logos/resheniebank-4aad73.png" }, { "if": { @@ -42105,7 +42136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofsaintpetersburg-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofsaintpetersburg-0eb427.jpg" }, { "if": { @@ -42124,7 +42155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dskbank-126296.png" + "then": "https://data.mapcomplete.org/nsi//logos/dskbank-126296.png" }, { "if": { @@ -42145,7 +42176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belagroprombank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belagroprombank-4aad73.jpg" }, { "if": { @@ -42166,7 +42197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belarusbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belarusbank-4aad73.jpg" }, { "if": { @@ -42188,7 +42219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belveb-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belveb-4aad73.jpg" }, { "if": { @@ -42209,7 +42240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belgazprombank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belgazprombank-4aad73.jpg" }, { "if": { @@ -42230,7 +42261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belinvestbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belinvestbank-4aad73.jpg" }, { "if": { @@ -42249,7 +42280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandnbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandnbank-0eb427.jpg" }, { "if": { @@ -42270,7 +42301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnbbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnbbank-4aad73.jpg" }, { "if": { @@ -42291,7 +42322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bsbbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bsbbank-4aad73.jpg" }, { "if": { @@ -42312,7 +42343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/btabank-4aad73.svg" + "then": "https://data.mapcomplete.org/nsi//logos/btabank-4aad73.svg" }, { "if": { @@ -42331,7 +42362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/btabank-c8dc19.svg" + "then": "https://data.mapcomplete.org/nsi//logos/btabank-c8dc19.svg" }, { "if": { @@ -42351,7 +42382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bacb-126296.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bacb-126296.jpg" }, { "if": { @@ -42370,7 +42401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vostochnybank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vostochnybank-0eb427.jpg" }, { "if": { @@ -42389,7 +42420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vtbbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vtbbank-0eb427.jpg" }, { "if": { @@ -42408,7 +42439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gazprombank-0eb427.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gazprombank-0eb427.svg" }, { "if": { @@ -42423,7 +42454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3b7e11-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3b7e11-0eb427.jpg" }, { "if": { @@ -42442,7 +42473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zenit-0eb427.png" + "then": "https://data.mapcomplete.org/nsi//logos/zenit-0eb427.png" }, { "if": { @@ -42460,7 +42491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/investbank-126296.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/investbank-126296.jpg" }, { "if": { @@ -42479,7 +42510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrialbank-c8dc19.png" + "then": "https://data.mapcomplete.org/nsi//logos/industrialbank-c8dc19.png" }, { "if": { @@ -42494,7 +42525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a53bba-39118c.png" + "then": "https://data.mapcomplete.org/nsi//logos/a53bba-39118c.png" }, { "if": { @@ -42513,7 +42544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cominvestbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cominvestbank-c8dc19.jpg" }, { "if": { @@ -42532,7 +42563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditbankofmoscow-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creditbankofmoscow-0eb427.jpg" }, { "if": { @@ -42553,7 +42584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtbank-4aad73.jpg" }, { "if": { @@ -42572,7 +42603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtsbank-0eb427.png" + "then": "https://data.mapcomplete.org/nsi//logos/mtsbank-0eb427.png" }, { "if": { @@ -42589,7 +42620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nlbtutunskabanka-39118c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nlbtutunskabanka-39118c.svg" }, { "if": { @@ -42607,7 +42638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubb-126296.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ubb-126296.jpg" }, { "if": { @@ -42628,7 +42659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedbulgarianbank-126296.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedbulgarianbank-126296.jpg" }, { "if": { @@ -42647,7 +42678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalbank-126296.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalbank-126296.jpg" }, { "if": { @@ -42662,7 +42693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ce06bd-0eb427.png" + "then": "https://data.mapcomplete.org/nsi//logos/ce06bd-0eb427.png" }, { "if": { @@ -42682,7 +42713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbank-0eb427.jpg" }, { "if": { @@ -42701,7 +42732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oschadbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oschadbank-c8dc19.jpg" }, { "if": { @@ -42722,7 +42753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paritetbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paritetbank-4aad73.jpg" }, { "if": { @@ -42741,7 +42772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postbank-0eb427.png" + "then": "https://data.mapcomplete.org/nsi//logos/postbank-0eb427.png" }, { "if": { @@ -42758,7 +42789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postbank-126296.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postbank-126296.jpg" }, { "if": { @@ -42777,7 +42808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pravexbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pravexbank-c8dc19.jpg" }, { "if": { @@ -42796,7 +42827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privatbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/privatbank-c8dc19.jpg" }, { "if": { @@ -42815,7 +42846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pridnestroviansavingsbank-59fea4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pridnestroviansavingsbank-59fea4.jpg" }, { "if": { @@ -42838,7 +42869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/priorbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/priorbank-4aad73.jpg" }, { "if": { @@ -42857,7 +42888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-126296.png" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-126296.png" }, { "if": { @@ -42876,7 +42907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/promsvyazbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/promsvyazbank-0eb427.jpg" }, { "if": { @@ -42895,7 +42926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstukrainianinternationalbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstukrainianinternationalbank-c8dc19.jpg" }, { "if": { @@ -42914,7 +42945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-0eb427.jpg" }, { "if": { @@ -42933,7 +42964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rgsbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rgsbank-0eb427.jpg" }, { "if": { @@ -42952,7 +42983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renaissancecredit-0eb427.svg" + "then": "https://data.mapcomplete.org/nsi//logos/renaissancecredit-0eb427.svg" }, { "if": { @@ -42967,7 +42998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f27cb2-0eb427.svg" + "then": "https://data.mapcomplete.org/nsi//logos/f27cb2-0eb427.svg" }, { "if": { @@ -42986,7 +43017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosbank-0eb427.jpg" }, { "if": { @@ -43008,7 +43039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gbdbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gbdbank-4aad73.jpg" }, { "if": { @@ -43027,7 +43058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russianstandardbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/russianstandardbank-0eb427.jpg" }, { "if": { @@ -43048,7 +43079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sberbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sberbank-4aad73.jpg" }, { "if": { @@ -43067,7 +43098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sberbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sberbank-0eb427.jpg" }, { "if": { @@ -43086,7 +43117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sovcombank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sovcombank-0eb427.jpg" }, { "if": { @@ -43107,7 +43138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statusbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/statusbank-4aad73.jpg" }, { "if": { @@ -43122,7 +43153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c62c01-39118c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c62c01-39118c.jpg" }, { "if": { @@ -43137,7 +43168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/67eeb1-39118c.png" + "then": "https://data.mapcomplete.org/nsi//logos/67eeb1-39118c.png" }, { "if": { @@ -43156,7 +43187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tascombank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tascombank-c8dc19.jpg" }, { "if": { @@ -43177,7 +43208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technobank-4aad73.png" + "then": "https://data.mapcomplete.org/nsi//logos/technobank-4aad73.png" }, { "if": { @@ -43196,7 +43227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statebank-031586.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/statebank-031586.jpg" }, { "if": { @@ -43215,7 +43246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukreximbank-c8dc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukreximbank-c8dc19.jpg" }, { "if": { @@ -43232,7 +43263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unibank-39118c.png" + "then": "https://data.mapcomplete.org/nsi//logos/unibank-39118c.png" }, { "if": { @@ -43251,7 +43282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uralsibbank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uralsibbank-0eb427.jpg" }, { "if": { @@ -43272,7 +43303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uralbankforreconstructionanddevelopment-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uralbankforreconstructionanddevelopment-0eb427.jpg" }, { "if": { @@ -43291,7 +43322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/khanbank-031586.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/khanbank-031586.jpg" }, { "if": { @@ -43310,7 +43341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homecreditandfinancebank-0eb427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homecreditandfinancebank-0eb427.jpg" }, { "if": { @@ -43331,7 +43362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralcooperativebank-126296.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralcooperativebank-126296.png" }, { "if": { @@ -43352,7 +43383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralcooperativebank-39118c.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralcooperativebank-39118c.png" }, { "if": { @@ -43373,7 +43404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zepterbank-4aad73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zepterbank-4aad73.jpg" }, { "if": { @@ -43390,7 +43421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkassen-39118c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkassen-39118c.jpg" }, { "if": { @@ -43412,7 +43443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basisbank-293074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/basisbank-293074.jpg" }, { "if": { @@ -43434,7 +43465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cartubank-293074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cartubank-293074.jpg" }, { "if": { @@ -43458,7 +43489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziraatbank-293074.png" + "then": "https://data.mapcomplete.org/nsi//logos/ziraatbank-293074.png" }, { "if": { @@ -43483,7 +43514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tbcbank-293074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tbcbank-293074.jpg" }, { "if": { @@ -43509,7 +43540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isbank-088e7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isbank-088e7d.jpg" }, { "if": { @@ -43534,7 +43565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/credobank-293074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/credobank-293074.jpg" }, { "if": { @@ -43556,7 +43587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liberty-293074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liberty-293074.jpg" }, { "if": { @@ -43578,7 +43609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procreditbank-293074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procreditbank-293074.jpg" }, { "if": { @@ -43601,7 +43632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solo-293074.png" + "then": "https://data.mapcomplete.org/nsi//logos/solo-293074.png" }, { "if": { @@ -43623,7 +43654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terabank-293074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terabank-293074.jpg" }, { "if": { @@ -43649,7 +43680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halykbank-293074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halykbank-293074.jpg" }, { "if": { @@ -43669,7 +43700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbankofisrael-563f7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unionbankofisrael-563f7f.jpg" }, { "if": { @@ -43688,7 +43719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankdiscount-563f7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankdiscount-563f7f.jpg" }, { "if": { @@ -43707,7 +43738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankhapoalim-563f7f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bankhapoalim-563f7f.svg" }, { "if": { @@ -43726,7 +43757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankyahav-563f7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankyahav-563f7f.jpg" }, { "if": { @@ -43745,7 +43776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofjerusalem-563f7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofjerusalem-563f7f.jpg" }, { "if": { @@ -43764,7 +43795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankleumi-563f7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankleumi-563f7f.jpg" }, { "if": { @@ -43783,7 +43814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstinternationalbankofisrael-563f7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstinternationalbankofisrael-563f7f.jpg" }, { "if": { @@ -43802,7 +43833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmizrahitefahot-563f7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmizrahitefahot-563f7f.jpg" }, { "if": { @@ -43822,7 +43853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saudinationalbank-8f3bad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saudinationalbank-8f3bad.jpg" }, { "if": { @@ -43841,7 +43872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alawwalbank-8f3bad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alawwalbank-8f3bad.svg" }, { "if": { @@ -43861,7 +43892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saudibritishbank-8f3bad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saudibritishbank-8f3bad.svg" }, { "if": { @@ -43881,7 +43912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquesaudifransi-8f3bad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquesaudifransi-8f3bad.jpg" }, { "if": { @@ -43901,7 +43932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saudiinvestmentbank-8f3bad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saudiinvestmentbank-8f3bad.jpg" }, { "if": { @@ -43921,7 +43952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arabnationalbank-8f3bad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arabnationalbank-8f3bad.jpg" }, { "if": { @@ -43941,7 +43972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arabtunisianbank-367f6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arabtunisianbank-367f6f.jpg" }, { "if": { @@ -43960,7 +43991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalbankofalgeria-47c9bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbankofalgeria-47c9bd.jpg" }, { "if": { @@ -43979,7 +44010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayandehbank-cdfa72.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayandehbank-cdfa72.png" }, { "if": { @@ -43998,7 +44029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbank-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enbank-cdfa72.jpg" }, { "if": { @@ -44017,7 +44048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankpasargad-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankpasargad-cdfa72.jpg" }, { "if": { @@ -44032,7 +44063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/667eb5-cdfa72.svg" + "then": "https://data.mapcomplete.org/nsi//logos/667eb5-cdfa72.svg" }, { "if": { @@ -44047,7 +44078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9d24d1-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9d24d1-cdfa72.jpg" }, { "if": { @@ -44066,7 +44097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/refahbank-cdfa72.svg" + "then": "https://data.mapcomplete.org/nsi//logos/refahbank-cdfa72.svg" }, { "if": { @@ -44085,7 +44116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samanbank-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samanbank-cdfa72.jpg" }, { "if": { @@ -44104,7 +44135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksepah-cdfa72.png" + "then": "https://data.mapcomplete.org/nsi//logos/banksepah-cdfa72.png" }, { "if": { @@ -44123,7 +44154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarmayehbank-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sarmayehbank-cdfa72.jpg" }, { "if": { @@ -44142,7 +44173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinabank-cdfa72.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sinabank-cdfa72.svg" }, { "if": { @@ -44161,7 +44192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shahrbank-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shahrbank-cdfa72.jpg" }, { "if": { @@ -44180,7 +44211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksaderatiran-cdfa72.png" + "then": "https://data.mapcomplete.org/nsi//logos/banksaderatiran-cdfa72.png" }, { "if": { @@ -44199,7 +44230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankkeshavarziiran-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankkeshavarziiran-cdfa72.jpg" }, { "if": { @@ -44218,7 +44249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankmaskan-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankmaskan-cdfa72.jpg" }, { "if": { @@ -44238,7 +44269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankalbilad-8f3bad.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankalbilad-8f3bad.png" }, { "if": { @@ -44258,7 +44289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankaljazira-8f3bad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankaljazira-8f3bad.jpg" }, { "if": { @@ -44277,7 +44308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riyadbank-8f3bad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/riyadbank-8f3bad.jpg" }, { "if": { @@ -44296,7 +44327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arabinternationalbankoftunisia-367f6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arabinternationalbankoftunisia-367f6f.jpg" }, { "if": { @@ -44315,7 +44346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postbankofiran-cdfa72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postbankofiran-cdfa72.jpg" }, { "if": { @@ -44334,7 +44365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jsbank-da5806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jsbank-da5806.jpg" }, { "if": { @@ -44353,7 +44384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societegenerale-3601cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/societegenerale-3601cd.png" }, { "if": { @@ -44375,7 +44406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alinmabank-8f3bad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alinmabank-8f3bad.jpg" }, { "if": { @@ -44390,7 +44421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/333979-c05ba5.png" + "then": "https://data.mapcomplete.org/nsi//logos/333979-c05ba5.png" }, { "if": { @@ -44409,7 +44440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2e6f93-367f6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2e6f93-367f6f.jpg" }, { "if": { @@ -44431,7 +44462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalbankofpakistan-da5806.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbankofpakistan-da5806.jpg" }, { "if": { @@ -44454,7 +44485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedbanklimited-da5806.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedbanklimited-da5806.png" }, { "if": { @@ -44473,7 +44504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agranibank-240b09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agranibank-240b09.jpg" }, { "if": { @@ -44492,7 +44523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grameenbank-240b09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grameenbank-240b09.jpg" }, { "if": { @@ -44511,7 +44542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/janatabanklimited-240b09.png" + "then": "https://data.mapcomplete.org/nsi//logos/janatabanklimited-240b09.png" }, { "if": { @@ -44530,7 +44561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangladeshkrishibank-240b09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bangladeshkrishibank-240b09.jpg" }, { "if": { @@ -44549,7 +44580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonalibank-240b09.png" + "then": "https://data.mapcomplete.org/nsi//logos/sonalibank-240b09.png" }, { "if": { @@ -44569,7 +44600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofayudhya-3229f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofayudhya-3229f1.jpg" }, { "if": { @@ -44588,7 +44619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangkokbank-3229f1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bangkokbank-3229f1.svg" }, { "if": { @@ -44607,7 +44638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krungthaibank-3229f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krungthaibank-3229f1.jpg" }, { "if": { @@ -44626,7 +44657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kasikornbank-3229f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kasikornbank-3229f1.jpg" }, { "if": { @@ -44646,7 +44677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tmbthanachartbank-3229f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tmbthanachartbank-3229f1.jpg" }, { "if": { @@ -44665,7 +44696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siamcommercialbank-3229f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siamcommercialbank-3229f1.jpg" }, { "if": { @@ -44684,7 +44715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentsavingsbank-3229f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentsavingsbank-3229f1.jpg" }, { "if": { @@ -44703,7 +44734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nonghyupbank-10d607.png" + "then": "https://data.mapcomplete.org/nsi//logos/nonghyupbank-10d607.png" }, { "if": { @@ -44722,7 +44753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shinhanbank-10d607.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shinhanbank-10d607.jpg" }, { "if": { @@ -44741,7 +44772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wooribank-10d607.png" + "then": "https://data.mapcomplete.org/nsi//logos/wooribank-10d607.png" }, { "if": { @@ -44760,7 +44791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kebhanabank-10d607.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kebhanabank-10d607.jpg" }, { "if": { @@ -44779,7 +44810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeonbank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aeonbank-d7a9e7.svg" }, { "if": { @@ -44798,7 +44829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surugabank-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surugabank-d7a9e7.jpg" }, { "if": { @@ -44817,7 +44848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sevenbank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sevenbank-d7a9e7.svg" }, { "if": { @@ -44836,7 +44867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mizuhobank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mizuhobank-d7a9e7.svg" }, { "if": { @@ -44855,7 +44886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/japanpostbank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/japanpostbank-d7a9e7.svg" }, { "if": { @@ -44874,7 +44905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resonabank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/resonabank-d7a9e7.svg" }, { "if": { @@ -44893,7 +44924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sumitomomitsuitrustbank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sumitomomitsuitrustbank-d7a9e7.svg" }, { "if": { @@ -44913,7 +44944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sumitomomitsuibankingcorporation-d7a9e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/sumitomomitsuibankingcorporation-d7a9e7.png" }, { "if": { @@ -44932,7 +44963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitsubishiufjtrustandbankingcorporation-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mitsubishiufjtrustandbankingcorporation-d7a9e7.svg" }, { "if": { @@ -44951,7 +44982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mufgbank-d7a9e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/mufgbank-d7a9e7.png" }, { "if": { @@ -44974,7 +45005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shanghaicommercialandsavingsbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shanghaicommercialandsavingsbank-47d9e2.jpg" }, { "if": { @@ -44998,7 +45029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shanghaicommercialbank-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shanghaicommercialbank-442838.jpg" }, { "if": { @@ -45017,7 +45048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shanghaipudongdevelopmentbank-da74c0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shanghaipudongdevelopmentbank-da74c0.svg" }, { "if": { @@ -45036,7 +45067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofeastasia-267261.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofeastasia-267261.jpg" }, { "if": { @@ -45059,7 +45090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaciticbankinternational-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaciticbankinternational-442838.jpg" }, { "if": { @@ -45078,7 +45109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaciticbank-267261.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaciticbank-267261.jpg" }, { "if": { @@ -45099,7 +45130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrialandcommercialbankofchina-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/industrialandcommercialbankofchina-d7a9e7.jpg" }, { "if": { @@ -45118,7 +45149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrialandcommercialbankofchina-d2dfa9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/industrialandcommercialbankofchina-d2dfa9.jpg" }, { "if": { @@ -45137,7 +45168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaconstructionbank-d2dfa9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-d2dfa9.jpg" }, { "if": { @@ -45156,7 +45187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaminshengbank-da74c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/chinaminshengbank-da74c0.png" }, { "if": { @@ -45175,7 +45206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postalsavingsbankofchina-da74c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postalsavingsbankofchina-da74c0.jpg" }, { "if": { @@ -45194,7 +45225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofchina-d2dfa9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofchina-d2dfa9.jpg" }, { "if": { @@ -45217,7 +45248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctbcbank-47d9e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/ctbcbank-47d9e2.png" }, { "if": { @@ -45240,7 +45271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icbcasia-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icbcasia-442838.jpg" }, { "if": { @@ -45265,7 +45296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaconstructionbank-fa24a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-fa24a7.jpg" }, { "if": { @@ -45288,7 +45319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccbasia-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ccbasia-442838.jpg" }, { "if": { @@ -45313,7 +45344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofchina-fa24a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofchina-fa24a7.jpg" }, { "if": { @@ -45336,7 +45367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofchinahongkong-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofchinahongkong-442838.jpg" }, { "if": { @@ -45358,7 +45389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofcommunications-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofcommunications-442838.jpg" }, { "if": { @@ -45377,7 +45408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofcommunications-267261.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofcommunications-267261.jpg" }, { "if": { @@ -45399,7 +45430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingstownbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingstownbank-47d9e2.jpg" }, { "if": { @@ -45419,7 +45450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keiyobank-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keiyobank-d7a9e7.jpg" }, { "if": { @@ -45438,7 +45469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyotochuoshinkinbank-d7a9e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyotochuoshinkinbank-d7a9e7.png" }, { "if": { @@ -45457,7 +45488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofkyoto-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofkyoto-d7a9e7.jpg" }, { "if": { @@ -45476,7 +45507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iyobank-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iyobank-d7a9e7.jpg" }, { "if": { @@ -45499,7 +45530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yuantacommercialbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yuantacommercialbank-47d9e2.jpg" }, { "if": { @@ -45522,7 +45553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megainternationalcommercialbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megainternationalcommercialbank-47d9e2.jpg" }, { "if": { @@ -45541,7 +45572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hachijunibank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hachijunibank-d7a9e7.svg" }, { "if": { @@ -45564,7 +45595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kgicommercialbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kgicommercialbank-47d9e2.jpg" }, { "if": { @@ -45587,7 +45618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chonghingbank-075cf6.png" + "then": "https://data.mapcomplete.org/nsi//logos/chonghingbank-075cf6.png" }, { "if": { @@ -45606,7 +45637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northpacificbank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/northpacificbank-d7a9e7.svg" }, { "if": { @@ -45625,7 +45656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jurokubank-d7a9e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/jurokubank-d7a9e7.png" }, { "if": { @@ -45644,7 +45675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chibabank-d7a9e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/chibabank-d7a9e7.png" }, { "if": { @@ -45663,7 +45694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nantobank-e30a8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nantobank-e30a8e.jpg" }, { "if": { @@ -45686,7 +45717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taichungbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taichungbank-47d9e2.jpg" }, { "if": { @@ -45709,7 +45740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taipeifubonbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taipeifubonbank-47d9e2.jpg" }, { "if": { @@ -45732,7 +45763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taishininternationalbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taishininternationalbank-47d9e2.jpg" }, { "if": { @@ -45755,7 +45786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwancooperativebank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwancooperativebank-47d9e2.jpg" }, { "if": { @@ -45774,7 +45805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shokochukinbank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shokochukinbank-d7a9e7.svg" }, { "if": { @@ -45793,7 +45824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cathaybank-f11880.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cathaybank-f11880.jpg" }, { "if": { @@ -45816,7 +45847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cathayunitedbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cathayunitedbank-47d9e2.jpg" }, { "if": { @@ -45835,7 +45866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saitamaresonabank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saitamaresonabank-d7a9e7.svg" }, { "if": { @@ -45857,7 +45888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamashinkinbank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tamashinkinbank-d7a9e7.svg" }, { "if": { @@ -45880,7 +45911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dahsingbank-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dahsingbank-442838.jpg" }, { "if": { @@ -45903,7 +45934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicbankhongkong-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicbankhongkong-442838.jpg" }, { "if": { @@ -45922,7 +45953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2997e9-fa24a7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/2997e9-fa24a7.svg" }, { "if": { @@ -45943,7 +45974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taifungbank-fa24a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taifungbank-fa24a7.jpg" }, { "if": { @@ -45966,7 +45997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entiecommercialbank-47d9e2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/entiecommercialbank-47d9e2.svg" }, { "if": { @@ -45985,7 +46016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamanashichuobank-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamanashichuobank-d7a9e7.jpg" }, { "if": { @@ -46008,7 +46039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icbc-fa24a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icbc-fa24a7.jpg" }, { "if": { @@ -46027,7 +46058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joyobank-d7a9e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/joyobank-d7a9e7.png" }, { "if": { @@ -46046,7 +46077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinganbank-da74c0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pinganbank-da74c0.svg" }, { "if": { @@ -46069,7 +46100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/changhwabank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/changhwabank-47d9e2.jpg" }, { "if": { @@ -46092,7 +46123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hangsengbank-075cf6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hangsengbank-075cf6.jpg" }, { "if": { @@ -46111,7 +46142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aichibank-d7a9e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/aichibank-d7a9e7.png" }, { "if": { @@ -46130,7 +46161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofjapan-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofjapan-d7a9e7.jpg" }, { "if": { @@ -46149,7 +46180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbsbanktaiwan-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dbsbanktaiwan-47d9e2.jpg" }, { "if": { @@ -46172,7 +46203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbs-075cf6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dbs-075cf6.jpg" }, { "if": { @@ -46195,7 +46226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbs-d2dfa9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dbs-d2dfa9.jpg" }, { "if": { @@ -46218,7 +46249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofeastasia-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofeastasia-442838.jpg" }, { "if": { @@ -46241,7 +46272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofpanshin-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankofpanshin-47d9e2.jpg" }, { "if": { @@ -46260,7 +46291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/musashinobank-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/musashinobank-d7a9e7.jpg" }, { "if": { @@ -46283,7 +46314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksinopac-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banksinopac-47d9e2.jpg" }, { "if": { @@ -46302,7 +46333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardcharteredtaiwan-47d9e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/standardcharteredtaiwan-47d9e2.png" }, { "if": { @@ -46325,7 +46356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardchartered-442838.png" + "then": "https://data.mapcomplete.org/nsi//logos/standardchartered-442838.png" }, { "if": { @@ -46344,7 +46375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standardchartered-267261.png" + "then": "https://data.mapcomplete.org/nsi//logos/standardchartered-267261.png" }, { "if": { @@ -46365,7 +46396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbcbanktaiwan-47d9e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/hsbcbanktaiwan-47d9e2.png" }, { "if": { @@ -46386,7 +46417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lusointernationalbanking-fa24a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lusointernationalbanking-fa24a7.jpg" }, { "if": { @@ -46409,7 +46440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esuncommercialbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esuncommercialbank-47d9e2.jpg" }, { "if": { @@ -46432,7 +46463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taipeistarbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taipeistarbank-47d9e2.jpg" }, { "if": { @@ -46447,7 +46478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c48abb-d7a9e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c48abb-d7a9e7.jpg" }, { "if": { @@ -46470,7 +46501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangkokbank-442838.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bangkokbank-442838.svg" }, { "if": { @@ -46491,7 +46522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welllinkbank-fa24a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welllinkbank-fa24a7.jpg" }, { "if": { @@ -46514,7 +46545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstcommercialbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstcommercialbank-47d9e2.jpg" }, { "if": { @@ -46537,7 +46568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionbankoftaiwan-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unionbankoftaiwan-47d9e2.jpg" }, { "if": { @@ -46560,7 +46591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanbusinessbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanbusinessbank-47d9e2.jpg" }, { "if": { @@ -46584,7 +46615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landbankoftaiwan-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landbankoftaiwan-47d9e2.jpg" }, { "if": { @@ -46607,7 +46638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shinkongcommercialbank-47d9e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/shinkongcommercialbank-47d9e2.png" }, { "if": { @@ -46631,7 +46662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankoftaiwan-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bankoftaiwan-47d9e2.jpg" }, { "if": { @@ -46655,7 +46686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citibank-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citibank-442838.jpg" }, { "if": { @@ -46680,7 +46711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocbcbank-fa24a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocbcbank-fa24a7.jpg" }, { "if": { @@ -46703,7 +46734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocbcbank-442838.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocbcbank-442838.jpg" }, { "if": { @@ -46726,7 +46757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huanancommercialbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huanancommercialbank-47d9e2.jpg" }, { "if": { @@ -46745,7 +46776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinkiosakabank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kinkiosakabank-d7a9e7.svg" }, { "if": { @@ -46768,7 +46799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fareasterninternationalbank-47d9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fareasterninternationalbank-47d9e2.jpg" }, { "if": { @@ -46791,7 +46822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsbc-075cf6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsbc-075cf6.jpg" }, { "if": { @@ -46810,7 +46841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kagoshimabank-d7a9e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kagoshimabank-d7a9e7.svg" }, { "if": { @@ -46826,7 +46857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allbarone-60d62f.png" + "then": "https://data.mapcomplete.org/nsi//logos/allbarone-60d62f.png" }, { "if": { @@ -46842,7 +46873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barlouie-f5e33a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barlouie-f5e33a.jpg" }, { "if": { @@ -46858,7 +46889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barrio-f3bc39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barrio-f3bc39.jpg" }, { "if": { @@ -46874,7 +46905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beatone-60d62f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beatone-60d62f.jpg" }, { "if": { @@ -46889,7 +46920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coyoteugly-163d6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coyoteugly-163d6e.jpg" }, { "if": { @@ -46906,7 +46937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flightclub-dd725d.png" + "then": "https://data.mapcomplete.org/nsi//logos/flightclub-dd725d.png" }, { "if": { @@ -46921,7 +46952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pianavyshnia-1dc747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pianavyshnia-1dc747.jpg" }, { "if": { @@ -46936,7 +46967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pijalniawodkiipiwa-ca2c56.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pijalniawodkiipiwa-ca2c56.svg" }, { "if": { @@ -46951,7 +46982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pijanawisnia-ca2c56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pijanawisnia-ca2c56.jpg" }, { "if": { @@ -46967,7 +46998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/revolution-60d62f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/revolution-60d62f.jpg" }, { "if": { @@ -46982,7 +47013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vagabond-149b5d.png" + "then": "https://data.mapcomplete.org/nsi//logos/vagabond-149b5d.png" }, { "if": { @@ -46997,7 +47028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vinovolo-197df4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vinovolo-197df4.jpg" }, { "if": { @@ -47013,7 +47044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2db45d-10ce3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2db45d-10ce3b.jpg" }, { "if": { @@ -47032,7 +47063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bareast-63b5b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bareast-63b5b7.jpg" }, { "if": { @@ -47050,7 +47081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biketower-f70454.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biketower-f70454.jpg" }, { "if": { @@ -47067,7 +47098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tobike-a9bfcc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tobike-a9bfcc.jpg" }, { "if": { @@ -47085,7 +47116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aarhuskommune-578125.png" + "then": "https://data.mapcomplete.org/nsi//logos/aarhuskommune-578125.png" }, { "if": { @@ -47106,7 +47137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambici-ec9ce2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ambici-ec9ce2.svg" }, { "if": { @@ -47125,7 +47156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/antiksmartway-3e2129.png" + "then": "https://data.mapcomplete.org/nsi//logos/antiksmartway-3e2129.png" }, { "if": { @@ -47144,7 +47175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avelo-05ea99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avelo-05ea99.jpg" }, { "if": { @@ -47162,7 +47193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baecobici-01b149.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baecobici-01b149.jpg" }, { "if": { @@ -47190,7 +47221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/batumvelo-c6bd00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/batumvelo-c6bd00.jpg" }, { "if": { @@ -47212,16 +47243,13 @@ } ] }, - "then": "./assets/data/nsi/logos/baywheels-2a665b.png" + "then": "https://data.mapcomplete.org/nsi//logos/baywheels-2a665b.png" }, { "if": { "and": [ "amenity=bicycle_rental", "fee=yes", - "official_name=横浜コミュニティサイクル", - "official_name:en=Yokohama Bike Share", - "official_name:ja=横浜コミュニティサイクル", { "or": [ "brand=baybike", @@ -47231,6 +47259,9 @@ "name=baybike", "name:en=baybike", "name:ja=ベイバイク", + "official_name=横浜コミュニティサイクル", + "official_name:en=Yokohama Bike Share", + "official_name:ja=横浜コミュニティサイクル", "operator=baybike", "operator:en=baybike", "operator:ja=ベイバイク", @@ -47240,7 +47271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baybike-813eb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baybike-813eb7.jpg" }, { "if": { @@ -47258,7 +47289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bcycle-97ea79.png" + "then": "https://data.mapcomplete.org/nsi//logos/bcycle-97ea79.png" }, { "if": { @@ -47277,7 +47308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belfastbikes-a358c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belfastbikes-a358c0.jpg" }, { "if": { @@ -47295,7 +47326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bergenbysykkel-e79826.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bergenbysykkel-e79826.svg" }, { "if": { @@ -47311,7 +47342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beryl-b88dc4.png" + "then": "https://data.mapcomplete.org/nsi//logos/beryl-b88dc4.png" }, { "if": { @@ -47329,7 +47360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bicicas-f59a8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bicicas-f59a8b.png" }, { "if": { @@ -47347,7 +47378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bicikelj-3dc1ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bicikelj-3dc1ae.jpg" }, { "if": { @@ -47367,7 +47398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bicimad-f59a8b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bicimad-f59a8b.svg" }, { "if": { @@ -47387,7 +47418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bicing-1df649.png" + "then": "https://data.mapcomplete.org/nsi//logos/bicing-1df649.png" }, { "if": { @@ -47403,7 +47434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biciquito-3e9425.svg" + "then": "https://data.mapcomplete.org/nsi//logos/biciquito-3e9425.svg" }, { "if": { @@ -47422,7 +47453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bicloo-fb0739.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bicloo-fb0739.jpg" }, { "if": { @@ -47440,7 +47471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikesharetoronto-843836.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikesharetoronto-843836.jpg" }, { "if": { @@ -47457,7 +47488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikemi-2861f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikemi-2861f8.jpg" }, { "if": { @@ -47472,7 +47503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikenow-a162ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikenow-a162ac.jpg" }, { "if": { @@ -47490,7 +47521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikesantiago-70bf31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikesantiago-70bf31.jpg" }, { "if": { @@ -47511,7 +47542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biketown-b463a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biketown-b463a6.jpg" }, { "if": { @@ -47530,7 +47561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biketown-c3d163.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biketown-c3d163.jpg" }, { "if": { @@ -47549,7 +47580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikeu-4d145c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bikeu-4d145c.png" }, { "if": { @@ -47569,7 +47600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biki-1f7ada.png" + "then": "https://data.mapcomplete.org/nsi//logos/biki-1f7ada.png" }, { "if": { @@ -47589,7 +47620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biki-f59a8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biki-f59a8b.jpg" }, { "if": { @@ -47610,7 +47641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bixi-3eadaa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bixi-3eadaa.jpg" }, { "if": { @@ -47628,7 +47659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluebike-18cad7.png" + "then": "https://data.mapcomplete.org/nsi//logos/bluebike-18cad7.png" }, { "if": { @@ -47649,7 +47680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluebikes-b3cb11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluebikes-b3cb11.jpg" }, { "if": { @@ -47669,7 +47700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boseh-2db6d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boseh-2db6d2.jpg" }, { "if": { @@ -47687,7 +47718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bublrbikes-f2dea6.png" + "then": "https://data.mapcomplete.org/nsi//logos/bublrbikes-f2dea6.png" }, { "if": { @@ -47705,7 +47736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bycyklen-e198ac.png" + "then": "https://data.mapcomplete.org/nsi//logos/bycyklen-e198ac.png" }, { "if": { @@ -47723,7 +47754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oslobysykkel-e79826.png" + "then": "https://data.mapcomplete.org/nsi//logos/oslobysykkel-e79826.png" }, { "if": { @@ -47741,7 +47772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cvelo-d06f5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cvelo-d06f5d.jpg" }, { "if": { @@ -47760,7 +47791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/callabike-937152.png" + "then": "https://data.mapcomplete.org/nsi//logos/callabike-937152.png" }, { "if": { @@ -47782,7 +47813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalbikeshare-f7b29d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalbikeshare-f7b29d.jpg" }, { "if": { @@ -47799,7 +47830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carvelo2go-61df48.svg" + "then": "https://data.mapcomplete.org/nsi//logos/carvelo2go-61df48.svg" }, { "if": { @@ -47821,7 +47852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citibike-6b7d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citibike-6b7d28.jpg" }, { "if": { @@ -47842,7 +47873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cogo-919639.png" + "then": "https://data.mapcomplete.org/nsi//logos/cogo-919639.png" }, { "if": { @@ -47864,7 +47895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/datebike-813eb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/datebike-813eb7.jpg" }, { "if": { @@ -47885,7 +47916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/divvy-6b0679.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/divvy-6b0679.jpg" }, { "if": { @@ -47902,7 +47933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donkeyrepublic-c32b83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donkeyrepublic-c32b83.jpg" }, { "if": { @@ -47919,7 +47950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecobici-0c0e40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecobici-0c0e40.jpg" }, { "if": { @@ -47937,7 +47968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/explorebikeshare-6206fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/explorebikeshare-6206fb.png" }, { "if": { @@ -47954,7 +47985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flotte-937152.png" + "then": "https://data.mapcomplete.org/nsi//logos/flotte-937152.png" }, { "if": { @@ -47973,7 +48004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/folifillarit-5c40d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/folifillarit-5c40d5.jpg" }, { "if": { @@ -47989,7 +48020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gira-e6d7a6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gira-e6d7a6.svg" }, { "if": { @@ -48007,7 +48038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamiltonbikeshare-3eadaa.png" + "then": "https://data.mapcomplete.org/nsi//logos/hamiltonbikeshare-3eadaa.png" }, { "if": { @@ -48034,7 +48065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hellocycling-813eb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hellocycling-813eb7.jpg" }, { "if": { @@ -48053,7 +48084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houstonbcycle-bf6a4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/houstonbcycle-bf6a4b.png" }, { "if": { @@ -48070,7 +48101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ivelo-8ba172.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ivelo-8ba172.jpg" }, { "if": { @@ -48089,7 +48120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idecycle-d06f5d.png" + "then": "https://data.mapcomplete.org/nsi//logos/idecycle-d06f5d.png" }, { "if": { @@ -48108,7 +48139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indego-d5d8a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indego-d5d8a9.jpg" }, { "if": { @@ -48127,7 +48158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianapacersbikeshare-a05471.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianapacersbikeshare-a05471.jpg" }, { "if": { @@ -48145,7 +48176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justeatcycles-f9bbc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/justeatcycles-f9bbc5.jpg" }, { "if": { @@ -48162,7 +48193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komunikacjamiejskawszczecinku-4d145c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/komunikacjamiejskawszczecinku-4d145c.svg" }, { "if": { @@ -48180,7 +48211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubelskirowermiejski-76b763.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lubelskirowermiejski-76b763.svg" }, { "if": { @@ -48201,7 +48232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lyftbike-94cb92.png" + "then": "https://data.mapcomplete.org/nsi//logos/lyftbike-94cb92.png" }, { "if": { @@ -48220,7 +48251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrobikeshare-c0ce12.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metrobikeshare-c0ce12.svg" }, { "if": { @@ -48239,7 +48270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolradruhr-130ced.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolradruhr-130ced.jpg" }, { "if": { @@ -48260,7 +48291,26 @@ } ] }, - "then": "./assets/data/nsi/logos/metrorower-044cb3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metrorower-044cb3.svg" + }, + { + "if": { + "and": [ + "amenity=bicycle_rental", + "network=Métrovélo", + "network:wikidata=Q3333896", + { + "or": [ + "brand=Métrovélo", + "brand:wikidata=Q3333896", + "operator=Cykleo", + "operator:type=private", + "operator:wikidata=Q109250587" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/metrovelo-d06f5d.png" }, { "if": { @@ -48278,7 +48328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mevo-022cbd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mevo-022cbd.svg" }, { "if": { @@ -48297,7 +48347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mibicitubici-ffc303.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mibicitubici-ffc303.jpg" }, { "if": { @@ -48315,7 +48365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mibici-e0aaa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mibici-e0aaa7.jpg" }, { "if": { @@ -48334,7 +48384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobi-3eadaa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobi-3eadaa.jpg" }, { "if": { @@ -48350,7 +48400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mogo-e32d72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mogo-e32d72.jpg" }, { "if": { @@ -48369,7 +48419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/molbubi-7b42f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/molbubi-7b42f4.png" }, { "if": { @@ -48388,7 +48438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mvgrad-122f49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mvgrad-122f49.jpg" }, { "if": { @@ -48407,7 +48457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mvgmeinrad-db5602.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mvgmeinrad-db5602.jpg" }, { "if": { @@ -48429,7 +48479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nextbike-a162ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nextbike-a162ac.jpg" }, { "if": { @@ -48447,7 +48497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nextbike-aad226.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nextbike-aad226.jpg" }, { "if": { @@ -48464,7 +48514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nextbike-063331.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nextbike-063331.jpg" }, { "if": { @@ -48484,7 +48534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ovfiets-8def75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ovfiets-8def75.jpg" }, { "if": { @@ -48505,7 +48555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peacehealthrides-f8e6b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peacehealthrides-f8e6b8.jpg" }, { "if": { @@ -48523,7 +48573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publibike-53b479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publibike-53b479.jpg" }, { "if": { @@ -48541,7 +48591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publibike-9ea11b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publibike-9ea11b.jpg" }, { "if": { @@ -48559,7 +48609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publibike-0bf680.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publibike-0bf680.jpg" }, { "if": { @@ -48577,7 +48627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publibike-61be25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publibike-61be25.jpg" }, { "if": { @@ -48595,7 +48645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publibike-04d31e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publibike-04d31e.jpg" }, { "if": { @@ -48613,7 +48663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publibike-31ea02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publibike-31ea02.jpg" }, { "if": { @@ -48631,7 +48681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publibike-a8de7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publibike-a8de7e.jpg" }, { "if": { @@ -48650,7 +48700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redbike-fb884c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redbike-fb884c.jpg" }, { "if": { @@ -48669,7 +48719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santandercycles-977a2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/santandercycles-977a2d.png" }, { "if": { @@ -48688,7 +48738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santandercycles-fa09d1.png" + "then": "https://data.mapcomplete.org/nsi//logos/santandercycles-fa09d1.png" }, { "if": { @@ -48707,7 +48757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santandercyclesmk-a6b443.png" + "then": "https://data.mapcomplete.org/nsi//logos/santandercyclesmk-a6b443.png" }, { "if": { @@ -48726,7 +48776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sevici-e72e4e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sevici-e72e4e.png" }, { "if": { @@ -48745,7 +48795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sigo-937152.png" + "then": "https://data.mapcomplete.org/nsi//logos/sigo-937152.png" }, { "if": { @@ -48763,7 +48813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovnaftbajk-3e2129.png" + "then": "https://data.mapcomplete.org/nsi//logos/slovnaftbajk-3e2129.png" }, { "if": { @@ -48782,7 +48832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtradhamburg-937152.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtradhamburg-937152.png" }, { "if": { @@ -48801,7 +48851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/star-d06f5d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/star-d06f5d.svg" }, { "if": { @@ -48820,7 +48870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/styrandstall-bc0237.png" + "then": "https://data.mapcomplete.org/nsi//logos/styrandstall-bc0237.png" }, { "if": { @@ -48840,7 +48890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swapfiets-76ee17.png" + "then": "https://data.mapcomplete.org/nsi//logos/swapfiets-76ee17.png" }, { "if": { @@ -48857,7 +48907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taipeicitygovernment-1bb859.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taipeicitygovernment-1bb859.jpg" }, { "if": { @@ -48875,7 +48925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tarheelbikes-b77896.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tarheelbikes-b77896.svg" }, { "if": { @@ -48892,7 +48942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tfibikes-afbce7.png" + "then": "https://data.mapcomplete.org/nsi//logos/tfibikes-afbce7.png" }, { "if": { @@ -48910,7 +48960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tink-937152.png" + "then": "https://data.mapcomplete.org/nsi//logos/tink-937152.png" }, { "if": { @@ -48935,7 +48985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torrebici-f59a8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/torrebici-f59a8b.png" }, { "if": { @@ -48954,7 +49004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vlille-d06f5d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vlille-d06f5d.svg" }, { "if": { @@ -48973,7 +49023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vagrad-55ffd4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vagrad-55ffd4.svg" }, { "if": { @@ -48993,7 +49043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valenbisi-630ce5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/valenbisi-630ce5.svg" }, { "if": { @@ -49012,7 +49062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veloh-5de2c3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/veloh-5de2c3.svg" }, { "if": { @@ -49029,7 +49079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velhop-f1e41c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velhop-f1e41c.jpg" }, { "if": { @@ -49049,7 +49099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velibmetropole-d44bc5.png" + "then": "https://data.mapcomplete.org/nsi//logos/velibmetropole-d44bc5.png" }, { "if": { @@ -49069,7 +49119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velo-18cad7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velo-18cad7.jpg" }, { "if": { @@ -49088,7 +49138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velov-59fa9e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/velov-59fa9e.svg" }, { "if": { @@ -49107,7 +49157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velocityaachen-937152.png" + "then": "https://data.mapcomplete.org/nsi//logos/velocityaachen-937152.png" }, { "if": { @@ -49124,7 +49174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velospot-61df48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velospot-61df48.jpg" }, { "if": { @@ -49143,7 +49193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velostanlib-c77569.svg" + "then": "https://data.mapcomplete.org/nsi//logos/velostanlib-c77569.svg" }, { "if": { @@ -49162,7 +49212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velotoulouse-84a6ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/velotoulouse-84a6ff.png" }, { "if": { @@ -49182,7 +49232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veturilo-196f80.png" + "then": "https://data.mapcomplete.org/nsi//logos/veturilo-196f80.png" }, { "if": { @@ -49201,7 +49251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villo-cb30df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villo-cb30df.jpg" }, { "if": { @@ -49220,7 +49270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienmobilrad-9cd234.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wienmobilrad-9cd234.svg" }, { "if": { @@ -49239,7 +49289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yelo-d06f5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yelo-d06f5d.jpg" }, { "if": { @@ -49257,7 +49307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yulu-6d1b20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yulu-6d1b20.jpg" }, { "if": { @@ -49275,7 +49325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zagster-97ea79.png" + "then": "https://data.mapcomplete.org/nsi//logos/zagster-97ea79.png" }, { "if": { @@ -49297,7 +49347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velobike-e8a367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velobike-e8a367.jpg" }, { "if": { @@ -49325,7 +49375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seoulbike-3cba94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seoulbike-3cba94.jpg" }, { "if": { @@ -49350,7 +49400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daichari-813eb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daichari-813eb7.jpg" }, { "if": { @@ -49375,7 +49425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/docomobikeshare-813eb7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/docomobikeshare-813eb7.svg" }, { "if": { @@ -49394,7 +49444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alansariexchange-7792bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alansariexchange-7792bb.jpg" }, { "if": { @@ -49409,7 +49459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cadeca-bd5e7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cadeca-bd5e7d.jpg" }, { "if": { @@ -49424,7 +49474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/confidencecambio-b1f712.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/confidencecambio-b1f712.jpg" }, { "if": { @@ -49439,7 +49489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daycambio-b1f712.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daycambio-b1f712.jpg" }, { "if": { @@ -49454,7 +49504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurochange-236adc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurochange-236adc.jpg" }, { "if": { @@ -49469,7 +49519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exclusivechange-216703.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exclusivechange-216703.jpg" }, { "if": { @@ -49484,7 +49534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nmmoney-236adc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nmmoney-236adc.jpg" }, { "if": { @@ -49499,7 +49549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/no1currency-f53601.png" + "then": "https://data.mapcomplete.org/nsi//logos/no1currency-f53601.png" }, { "if": { @@ -49518,7 +49568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pocketchange-f742ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/pocketchange-f742ee.png" }, { "if": { @@ -49533,7 +49583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reisebank-442fa6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reisebank-442fa6.jpg" }, { "if": { @@ -49548,7 +49598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sainsburysbanktravelmoney-236adc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sainsburysbanktravelmoney-236adc.jpg" }, { "if": { @@ -49563,7 +49613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/travelmoneyoz-840d20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/travelmoneyoz-840d20.jpg" }, { "if": { @@ -49578,7 +49628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/travelex-fab709.png" + "then": "https://data.mapcomplete.org/nsi//logos/travelex-fab709.png" }, { "if": { @@ -49597,7 +49647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belarusbank-126d17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belarusbank-126d17.jpg" }, { "if": { @@ -49612,7 +49662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1d4d46-dba32e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1d4d46-dba32e.jpg" }, { "if": { @@ -49637,7 +49687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valuto-db9fb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valuto-db9fb2.jpg" }, { "if": { @@ -49654,7 +49704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arabica-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arabica-e1ef51.jpg" }, { "if": { @@ -49671,7 +49721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/49thparallelcoffeeroasters-aa8067.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/49thparallelcoffeeroasters-aa8067.jpg" }, { "if": { @@ -49688,7 +49738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5togo-24f015.png" + "then": "https://data.mapcomplete.org/nsi//logos/5togo-24f015.png" }, { "if": { @@ -49705,7 +49755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7leavescafe-32992d.png" + "then": "https://data.mapcomplete.org/nsi//logos/7leavescafe-32992d.png" }, { "if": { @@ -49723,7 +49773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ef3f02-07c6ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/ef3f02-07c6ab.png" }, { "if": { @@ -49744,7 +49794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/957ff6-f1b18f.png" + "then": "https://data.mapcomplete.org/nsi//logos/957ff6-f1b18f.png" }, { "if": { @@ -49765,7 +49815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/947985-b3d618.png" + "then": "https://data.mapcomplete.org/nsi//logos/947985-b3d618.png" }, { "if": { @@ -49782,7 +49832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aida-42834c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aida-42834c.jpg" }, { "if": { @@ -49799,7 +49849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtcoffee-ff9b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtcoffee-ff9b1e.jpg" }, { "if": { @@ -49817,7 +49867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anneandmax-4a052f.png" + "then": "https://data.mapcomplete.org/nsi//logos/anneandmax-4a052f.png" }, { "if": { @@ -49838,7 +49888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arcaffe-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arcaffe-10eb89.jpg" }, { "if": { @@ -49855,7 +49905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aroma-6ea26d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aroma-6ea26d.jpg" }, { "if": { @@ -49872,7 +49922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aromaespressobar-1ae0cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/aromaespressobar-1ae0cd.png" }, { "if": { @@ -49889,7 +49939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aromajoes-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aromajoes-243cad.jpg" }, { "if": { @@ -49906,7 +49956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aromakava-d74022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aromakava-d74022.jpg" }, { "if": { @@ -49923,7 +49973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asdacafe-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asdacafe-a89223.jpg" }, { "if": { @@ -49940,7 +49990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/attendant-eb3447.png" + "then": "https://data.mapcomplete.org/nsi//logos/attendant-eb3447.png" }, { "if": { @@ -49957,7 +50007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bagelsandbeans-4a052f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bagelsandbeans-4a052f.jpg" }, { "if": { @@ -49974,7 +50024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bagginscoffee-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bagginscoffee-1c12ef.jpg" }, { "if": { @@ -49991,7 +50041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bakersbaristas-ff9b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bakersbaristas-ff9b1e.jpg" }, { "if": { @@ -50008,7 +50058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bambu-243cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/bambu-243cad.png" }, { "if": { @@ -50025,7 +50075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barista-56abeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barista-56abeb.jpg" }, { "if": { @@ -50042,7 +50092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baristi-2f3766.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baristi-2f3766.jpg" }, { "if": { @@ -50059,7 +50109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bengongstea-27c575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bengongstea-27c575.jpg" }, { "if": { @@ -50077,7 +50127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/betterbuzzcoffee-19c2e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/betterbuzzcoffee-19c2e6.jpg" }, { "if": { @@ -50094,7 +50144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biggbycoffee-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biggbycoffee-243cad.jpg" }, { "if": { @@ -50111,7 +50161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackcanyon-0e73cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackcanyon-0e73cd.jpg" }, { "if": { @@ -50128,7 +50178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackrockcoffee-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackrockcoffee-243cad.jpg" }, { "if": { @@ -50145,7 +50195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blacksheepcoffee-9244ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/blacksheepcoffee-9244ab.png" }, { "if": { @@ -50162,7 +50212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blankstreetcoffee-db9177.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blankstreetcoffee-db9177.jpg" }, { "if": { @@ -50180,7 +50230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bloomsyard-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bloomsyard-eb3447.jpg" }, { "if": { @@ -50201,7 +50251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluebottlecoffee-7856c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/bluebottlecoffee-7856c0.png" }, { "if": { @@ -50218,7 +50268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boscoffee-054740.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boscoffee-054740.jpg" }, { "if": { @@ -50235,7 +50285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobandberts-ff9b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobandberts-ff9b1e.jpg" }, { "if": { @@ -50252,7 +50302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobaguys-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobaguys-243cad.jpg" }, { "if": { @@ -50270,7 +50320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bombaycuttingchai-12649c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bombaycuttingchai-12649c.jpg" }, { "if": { @@ -50287,7 +50337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonafide-ba14cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonafide-ba14cf.jpg" }, { "if": { @@ -50304,7 +50354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boostjuice-2ad454.png" + "then": "https://data.mapcomplete.org/nsi//logos/boostjuice-2ad454.png" }, { "if": { @@ -50321,7 +50371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bootleggercoffeecompany-9d066f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bootleggercoffeecompany-9d066f.jpg" }, { "if": { @@ -50338,7 +50388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bostonteaparty-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bostonteaparty-a89223.jpg" }, { "if": { @@ -50355,7 +50405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/braganzatea-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/braganzatea-243cad.jpg" }, { "if": { @@ -50372,7 +50422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bridgehead-aa8067.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bridgehead-aa8067.jpg" }, { "if": { @@ -50388,7 +50438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buenasmigas-4351d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buenasmigas-4351d9.jpg" }, { "if": { @@ -50405,7 +50455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafeamazon-ea0f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafeamazon-ea0f6a.jpg" }, { "if": { @@ -50422,7 +50472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafecappuccino-42834c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafecappuccino-42834c.jpg" }, { "if": { @@ -50439,7 +50489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafecoffeeday-93bf5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafecoffeeday-93bf5b.jpg" }, { "if": { @@ -50456,7 +50506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafedepot-aa8067.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafedepot-aa8067.jpg" }, { "if": { @@ -50473,7 +50523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafedumonde-63d1a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cafedumonde-63d1a0.png" }, { "if": { @@ -50490,7 +50540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafeextrablatt-c024da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafeextrablatt-c024da.jpg" }, { "if": { @@ -50507,7 +50557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafefrei-b37b54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafefrei-b37b54.jpg" }, { "if": { @@ -50524,7 +50574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafejoyeux-39ab79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafejoyeux-39ab79.jpg" }, { "if": { @@ -50541,7 +50591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafemartinez-2da85d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafemartinez-2da85d.jpg" }, { "if": { @@ -50558,7 +50608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafeoma-6b7f50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafeoma-6b7f50.jpg" }, { "if": { @@ -50575,7 +50625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafepuntadelcielo-2f3766.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafepuntadelcielo-2f3766.jpg" }, { "if": { @@ -50592,7 +50642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caffenero-0d98f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caffenero-0d98f2.jpg" }, { "if": { @@ -50609,7 +50659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caffepascucci-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caffepascucci-e1ef51.jpg" }, { "if": { @@ -50626,7 +50676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caffespettacolo-54dc58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caffespettacolo-54dc58.jpg" }, { "if": { @@ -50649,7 +50699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caffebene-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caffebene-7d270d.jpg" }, { "if": { @@ -50666,7 +50716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calipress-482b3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/calipress-482b3e.png" }, { "if": { @@ -50683,7 +50733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/campussuite-c024da.png" + "then": "https://data.mapcomplete.org/nsi//logos/campussuite-c024da.png" }, { "if": { @@ -50700,7 +50750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cariboucoffee-d73092.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cariboucoffee-d73092.jpg" }, { "if": { @@ -50717,7 +50767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casadopaodequeijo-1d07e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casadopaodequeijo-1d07e0.jpg" }, { "if": { @@ -50734,7 +50784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chaayos-656fa1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chaayos-656fa1.jpg" }, { "if": { @@ -50751,7 +50801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chagee-c961b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chagee-c961b9.jpg" }, { "if": { @@ -50768,7 +50818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chaiiwala-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chaiiwala-a89223.jpg" }, { "if": { @@ -50785,7 +50835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/changeplease-418c6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/changeplease-418c6b.jpg" }, { "if": { @@ -50802,7 +50852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chaodoi-b6dfae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chaodoi-b6dfae.jpg" }, { "if": { @@ -50819,7 +50869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chatime-859a55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chatime-859a55.jpg" }, { "if": { @@ -50836,7 +50886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chatramue-0932fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chatramue-0932fe.jpg" }, { "if": { @@ -50853,7 +50903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chocolatecompany-4a052f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chocolatecompany-4a052f.jpg" }, { "if": { @@ -50870,7 +50920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ciboespresso-70e4e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/ciboespresso-70e4e4.png" }, { "if": { @@ -50887,7 +50937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleaneatz-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cleaneatz-243cad.jpg" }, { "if": { @@ -50905,7 +50955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocofreshteaandjuice-615ca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocofreshteaandjuice-615ca1.jpg" }, { "if": { @@ -50926,7 +50976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocofreshteaandjuice-60211c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocofreshteaandjuice-60211c.jpg" }, { "if": { @@ -50943,7 +50993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeecompany-4a052f.png" + "then": "https://data.mapcomplete.org/nsi//logos/coffeecompany-4a052f.png" }, { "if": { @@ -50960,7 +51010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeeculture-b3bd97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coffeeculture-b3bd97.jpg" }, { "if": { @@ -50977,7 +51027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeeculture-3d1dae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coffeeculture-3d1dae.jpg" }, { "if": { @@ -50994,7 +51044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeefellows-6873ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coffeefellows-6873ad.jpg" }, { "if": { @@ -51011,7 +51061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeehouse-7a8d18.png" + "then": "https://data.mapcomplete.org/nsi//logos/coffeehouse-7a8d18.png" }, { "if": { @@ -51028,7 +51078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeeisland-7939ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/coffeeisland-7939ef.png" }, { "if": { @@ -51045,7 +51095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeelab-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coffeelab-e1ef51.jpg" }, { "if": { @@ -51062,7 +51112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeelike-9c7c7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coffeelike-9c7c7f.jpg" }, { "if": { @@ -51079,7 +51129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeerepublic-e1ef51.png" + "then": "https://data.mapcomplete.org/nsi//logos/coffeerepublic-e1ef51.png" }, { "if": { @@ -51096,7 +51146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeetime-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coffeetime-e1ef51.jpg" }, { "if": { @@ -51113,7 +51163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffee1-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coffee1-a89223.jpg" }, { "if": { @@ -51130,7 +51180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coffeeshopcompany-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coffeeshopcompany-e1ef51.jpg" }, { "if": { @@ -51151,7 +51201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cofix-5bbbf0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cofix-5bbbf0.png" }, { "if": { @@ -51172,7 +51222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cofizz-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cofizz-10eb89.jpg" }, { "if": { @@ -51188,7 +51238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colicci-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colicci-eb3447.jpg" }, { "if": { @@ -51205,7 +51255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/columbuscafeandco-d3efe9.png" + "then": "https://data.mapcomplete.org/nsi//logos/columbuscafeandco-d3efe9.png" }, { "if": { @@ -51223,7 +51273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/congcaphe-6f4c59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/congcaphe-6f4c59.jpg" }, { "if": { @@ -51240,7 +51290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornerbakery-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornerbakery-243cad.jpg" }, { "if": { @@ -51257,7 +51307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costa-93bf5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/costa-93bf5b.jpg" }, { "if": { @@ -51275,7 +51325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costadrivethru-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/costadrivethru-e1ef51.jpg" }, { "if": { @@ -51292,7 +51342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countrystyle-aa8067.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/countrystyle-aa8067.jpg" }, { "if": { @@ -51311,7 +51361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dingtea-12bfe8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dingtea-12bfe8.jpg" }, { "if": { @@ -51334,7 +51384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dingtea-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dingtea-0cf217.jpg" }, { "if": { @@ -51351,7 +51401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dome-d33fa1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dome-d33fa1.jpg" }, { "if": { @@ -51368,7 +51418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doppioespresso-4a052f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doppioespresso-4a052f.jpg" }, { "if": { @@ -51385,7 +51435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duckbillcookiesandcoffee-1d07e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duckbillcookiesandcoffee-1d07e0.jpg" }, { "if": { @@ -51402,7 +51452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunnbrotherscoffee-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunnbrotherscoffee-243cad.jpg" }, { "if": { @@ -51419,7 +51469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dutchbroscoffee-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dutchbroscoffee-243cad.jpg" }, { "if": { @@ -51436,7 +51486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/einsteinkaffee-c024da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/einsteinkaffee-c024da.jpg" }, { "if": { @@ -51454,7 +51504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elandn-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elandn-e1ef51.jpg" }, { "if": { @@ -51471,7 +51521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equatorialcoffee-9d066f.png" + "then": "https://data.mapcomplete.org/nsi//logos/equatorialcoffee-9d066f.png" }, { "if": { @@ -51488,7 +51538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/espressohouse-99eace.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/espressohouse-99eace.jpg" }, { "if": { @@ -51505,7 +51555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/espressolab-e2a804.png" + "then": "https://data.mapcomplete.org/nsi//logos/espressolab-e2a804.png" }, { "if": { @@ -51523,7 +51573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurocafe-6ea26d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurocafe-6ea26d.jpg" }, { "if": { @@ -51540,7 +51590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fcbcoffee-418c6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fcbcoffee-418c6b.jpg" }, { "if": { @@ -51557,7 +51607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/figaro-d8802f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/figaro-d8802f.jpg" }, { "if": { @@ -51576,7 +51626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyinghorsecoffee-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flyinghorsecoffee-eb3447.jpg" }, { "if": { @@ -51593,7 +51643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forecoffee-4ccab9.png" + "then": "https://data.mapcomplete.org/nsi//logos/forecoffee-4ccab9.png" }, { "if": { @@ -51610,25 +51660,25 @@ } ] }, - "then": "./assets/data/nsi/logos/franscafe-1d07e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/franscafe-1d07e0.jpg" }, { "if": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=Gloria Jean's Coffees", "takeaway=yes", { "or": [ "brand=Gloria Jean's", "brand:wikidata=Q2666365", - "name=Gloria Jean's" + "name=Gloria Jean's", + "official_name=Gloria Jean's Coffees" ] } ] }, - "then": "./assets/data/nsi/logos/gloriajeans-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gloriajeans-e1ef51.jpg" }, { "if": { @@ -51650,7 +51700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gongcha-fd99aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gongcha-fd99aa.jpg" }, { "if": { @@ -51667,7 +51717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/graoespresso-1d07e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/graoespresso-1d07e0.png" }, { "if": { @@ -51684,7 +51734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greencaffenero-391a99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greencaffenero-391a99.jpg" }, { "if": { @@ -51701,7 +51751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grind-5c7288.png" + "then": "https://data.mapcomplete.org/nsi//logos/grind-5c7288.png" }, { "if": { @@ -51718,7 +51768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happylemon-859a55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happylemon-859a55.jpg" }, { "if": { @@ -51735,7 +51785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harrishoole-418c6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harrishoole-418c6b.jpg" }, { "if": { @@ -51752,7 +51802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/havanna-ffe1b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/havanna-ffe1b3.jpg" }, { "if": { @@ -51769,7 +51819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hermanoscolombiancoffeeroasters-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hermanoscolombiancoffeeroasters-eb3447.jpg" }, { "if": { @@ -51790,7 +51840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heytea-3ecb75.png" + "then": "https://data.mapcomplete.org/nsi//logos/heytea-3ecb75.png" }, { "if": { @@ -51808,7 +51858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/highlandscoffee-fd99aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/highlandscoffee-fd99aa.jpg" }, { "if": { @@ -51825,7 +51875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honeydew-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honeydew-243cad.jpg" }, { "if": { @@ -51842,7 +51892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoppercoffee-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoppercoffee-eb3447.jpg" }, { "if": { @@ -51859,7 +51909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hudsonscoffee-f5c0bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hudsonscoffee-f5c0bd.jpg" }, { "if": { @@ -51876,7 +51926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikeacafe-f21598.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikeacafe-f21598.jpg" }, { "if": { @@ -51893,7 +51943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/insomnia-180c7a.png" + "then": "https://data.mapcomplete.org/nsi//logos/insomnia-180c7a.png" }, { "if": { @@ -51910,7 +51960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itsbobatime-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itsbobatime-243cad.jpg" }, { "if": { @@ -51927,7 +51977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/izycoffee-16b565.png" + "then": "https://data.mapcomplete.org/nsi//logos/izycoffee-16b565.png" }, { "if": { @@ -51944,7 +51994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jamaicablue-941da9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jamaicablue-941da9.jpg" }, { "if": { @@ -51961,7 +52011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/janjijiwa-4ccab9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/janjijiwa-4ccab9.jpg" }, { "if": { @@ -51978,7 +52028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/javahouse-226f44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/javahouse-226f44.jpg" }, { "if": { @@ -51996,7 +52046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jazentea-6ea26d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jazentea-6ea26d.jpg" }, { "if": { @@ -52013,7 +52063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jjbean-aa8067.png" + "then": "https://data.mapcomplete.org/nsi//logos/jjbean-aa8067.png" }, { "if": { @@ -52030,7 +52080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joeandthejuice-ff94db.png" + "then": "https://data.mapcomplete.org/nsi//logos/joeandthejuice-ff94db.png" }, { "if": { @@ -52048,7 +52098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juanvaldezcafe-ff94db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juanvaldezcafe-ff94db.jpg" }, { "if": { @@ -52065,7 +52115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juliusmeinl-d9fed5.png" + "then": "https://data.mapcomplete.org/nsi//logos/juliusmeinl-d9fed5.png" }, { "if": { @@ -52082,7 +52132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kahvedunyasi-9278bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kahvedunyasi-9278bc.jpg" }, { "if": { @@ -52099,7 +52149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitanda-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitanda-243cad.jpg" }, { "if": { @@ -52117,7 +52167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kopikenangan-4ccab9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kopikenangan-4ccab9.jpg" }, { "if": { @@ -52134,7 +52184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kungfutea-e1ef51.png" + "then": "https://data.mapcomplete.org/nsi//logos/kungfutea-e1ef51.png" }, { "if": { @@ -52151,7 +52201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuzina-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kuzina-1c12ef.jpg" }, { "if": { @@ -52169,7 +52219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacolombecoffeeroasters-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacolombecoffeeroasters-243cad.jpg" }, { "if": { @@ -52186,7 +52236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lavazza-e1ef51.png" + "then": "https://data.mapcomplete.org/nsi//logos/lavazza-e1ef51.png" }, { "if": { @@ -52203,7 +52253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lepainquotidien-ff94db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lepainquotidien-ff94db.jpg" }, { "if": { @@ -52220,7 +52270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luckincoffee-93bf5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luckincoffee-93bf5b.jpg" }, { "if": { @@ -52238,7 +52288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandscafe-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandscafe-a89223.jpg" }, { "if": { @@ -52255,7 +52305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mado-e2a804.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mado-e2a804.jpg" }, { "if": { @@ -52272,7 +52322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mangomangodessert-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mangomangodessert-243cad.jpg" }, { "if": { @@ -52289,7 +52339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manolobakes-4351d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manolobakes-4351d9.jpg" }, { "if": { @@ -52306,7 +52356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matchacafemaiko-005405.png" + "then": "https://data.mapcomplete.org/nsi//logos/matchacafemaiko-005405.png" }, { "if": { @@ -52323,7 +52373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mattoespresso-df2cdd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mattoespresso-df2cdd.jpg" }, { "if": { @@ -52342,7 +52392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxbrenner-15f3f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxbrenner-15f3f0.jpg" }, { "if": { @@ -52359,7 +52409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxxcoffee-4ccab9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxxcoffee-4ccab9.jpg" }, { "if": { @@ -52376,7 +52426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mccafe-e1ef51.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mccafe-e1ef51.svg" }, { "if": { @@ -52400,7 +52450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meamacollect-cf8cd3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meamacollect-cf8cd3.jpg" }, { "if": { @@ -52417,7 +52467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michelspatisserie-d7a541.png" + "then": "https://data.mapcomplete.org/nsi//logos/michelspatisserie-d7a541.png" }, { "if": { @@ -52434,7 +52484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mikel-349bad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mikel-349bad.jpg" }, { "if": { @@ -52451,7 +52501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mikucha-b6dfae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mikucha-b6dfae.jpg" }, { "if": { @@ -52472,7 +52522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mixue-f440b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mixue-f440b6.jpg" }, { "if": { @@ -52489,7 +52539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mooboo-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mooboo-a89223.jpg" }, { "if": { @@ -52506,7 +52556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morrisonscafe-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morrisonscafe-a89223.jpg" }, { "if": { @@ -52523,7 +52573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/movenpickcafe-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/movenpickcafe-7d270d.jpg" }, { "if": { @@ -52548,7 +52598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrbrowncafe-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrbrowncafe-7d270d.jpg" }, { "if": { @@ -52565,7 +52615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrwish-7d270d.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrwish-7d270d.png" }, { "if": { @@ -52582,7 +52632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muffinbreak-66b6c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/muffinbreak-66b6c2.png" }, { "if": { @@ -52599,7 +52649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muggandbean-72fcd2.png" + "then": "https://data.mapcomplete.org/nsi//logos/muggandbean-72fcd2.png" }, { "if": { @@ -52616,7 +52666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muzzbuzz-4c3c5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/muzzbuzz-4c3c5a.png" }, { "if": { @@ -52633,7 +52683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neroexpress-4a2ca5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neroexpress-4a2ca5.jpg" }, { "if": { @@ -52650,7 +52700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/notes-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/notes-eb3447.jpg" }, { "if": { @@ -52667,7 +52717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuhealthfood-9d066f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nuhealthfood-9d066f.jpg" }, { "if": { @@ -52685,7 +52735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuttea-485ab4.png" + "then": "https://data.mapcomplete.org/nsi//logos/nuttea-485ab4.png" }, { "if": { @@ -52702,7 +52752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obriens-20e9d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obriens-20e9d6.jpg" }, { "if": { @@ -52719,7 +52769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldtownwhitecoffee-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldtownwhitecoffee-e1ef51.jpg" }, { "if": { @@ -52740,7 +52790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onezotapioca-859a55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onezotapioca-859a55.jpg" }, { "if": { @@ -52757,7 +52807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ozsut-e2a804.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ozsut-e2a804.jpg" }, { "if": { @@ -52774,7 +52824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patisserievalerie-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/patisserievalerie-a89223.jpg" }, { "if": { @@ -52793,7 +52843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pausa-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pausa-a89223.jpg" }, { "if": { @@ -52810,7 +52860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peetscoffee-243cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/peetscoffee-243cad.png" }, { "if": { @@ -52827,7 +52877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perkyblenders-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perkyblenders-eb3447.jpg" }, { "if": { @@ -52844,7 +52894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petitpret-a89223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petitpret-a89223.jpg" }, { "if": { @@ -52861,7 +52911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pieface-70e4e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pieface-70e4e4.jpg" }, { "if": { @@ -52878,7 +52928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pjscoffeeofneworleans-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pjscoffeeofneworleans-243cad.jpg" }, { "if": { @@ -52895,7 +52945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/platocoffee-9d066f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/platocoffee-9d066f.jpg" }, { "if": { @@ -52913,7 +52963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pointcoffee-4ccab9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pointcoffee-4ccab9.jpg" }, { "if": { @@ -52930,7 +52980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prime-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prime-1c12ef.jpg" }, { "if": { @@ -52951,7 +53001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickly-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quickly-e1ef51.jpg" }, { "if": { @@ -52968,7 +53018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/realfruitbubbletea-aa8067.png" + "then": "https://data.mapcomplete.org/nsi//logos/realfruitbubbletea-aa8067.png" }, { "if": { @@ -52985,7 +53035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redemptionroasters-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redemptionroasters-eb3447.jpg" }, { "if": { @@ -53002,7 +53052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reidomate-1d07e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reidomate-1d07e0.jpg" }, { "if": { @@ -53019,7 +53069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robertharris-3d1dae.png" + "then": "https://data.mapcomplete.org/nsi//logos/robertharris-3d1dae.png" }, { "if": { @@ -53040,7 +53090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royaltea-2403e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royaltea-2403e7.jpg" }, { "if": { @@ -53057,7 +53107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandp-b6dfae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandp-b6dfae.jpg" }, { "if": { @@ -53074,7 +53124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintespresso-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintespresso-eb3447.jpg" }, { "if": { @@ -53091,7 +53141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scooterscoffee-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scooterscoffee-243cad.jpg" }, { "if": { @@ -53108,7 +53158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlecoffeecompany-d9a901.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seattlecoffeecompany-d9a901.jpg" }, { "if": { @@ -53125,7 +53175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlesbestcoffee-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seattlesbestcoffee-e1ef51.jpg" }, { "if": { @@ -53142,7 +53192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secondcup-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/secondcup-e1ef51.jpg" }, { "if": { @@ -53159,7 +53209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/segafredo-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/segafredo-e1ef51.jpg" }, { "if": { @@ -53178,7 +53228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharetea-a284fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sharetea-a284fa.jpg" }, { "if": { @@ -53198,7 +53248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharetea-aa818b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sharetea-aa818b.jpg" }, { "if": { @@ -53217,7 +53267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharetea-ed30b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sharetea-ed30b2.jpg" }, { "if": { @@ -53236,7 +53286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skuratovcoffee-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skuratovcoffee-1c12ef.jpg" }, { "if": { @@ -53253,7 +53303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedycafe-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedycafe-243cad.jpg" }, { "if": { @@ -53270,7 +53320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stansdonutsandcoffee-da6469.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stansdonutsandcoffee-da6469.jpg" }, { "if": { @@ -53293,25 +53343,25 @@ } ] }, - "then": "./assets/data/nsi/logos/starbucks-95edc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starbucks-95edc3.jpg" }, { "if": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=Starbucks Coffee", "takeaway=yes", { "or": [ "brand=Starbucks", "brand:wikidata=Q37158", - "name=Starbucks" + "name=Starbucks", + "official_name=Starbucks Coffee" ] } ] }, - "then": "./assets/data/nsi/logos/starbucks-795f60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starbucks-795f60.jpg" }, { "if": { @@ -53328,7 +53378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starbucksreserve-7b6aac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/starbucksreserve-7b6aac.svg" }, { "if": { @@ -53345,7 +53395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starscoffee-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starscoffee-1c12ef.jpg" }, { "if": { @@ -53362,7 +53412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stopcafe-7e9986.png" + "then": "https://data.mapcomplete.org/nsi//logos/stopcafe-7e9986.png" }, { "if": { @@ -53379,7 +53429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storestreetespresso-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/storestreetespresso-eb3447.jpg" }, { "if": { @@ -53396,7 +53446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/streamercoffeecompany-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/streamercoffeecompany-0cf217.jpg" }, { "if": { @@ -53413,7 +53463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stumptowncoffeeroasters-a41f70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stumptowncoffeeroasters-a41f70.jpg" }, { "if": { @@ -53434,7 +53484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sulbing-77c68b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sulbing-77c68b.png" }, { "if": { @@ -53451,7 +53501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surfcoffee-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surfcoffee-1c12ef.jpg" }, { "if": { @@ -53472,7 +53522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sweethoneydessert-6ea26d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sweethoneydessert-6ea26d.jpg" }, { "if": { @@ -53490,7 +53540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/t4teaforu-e1ef51.png" + "then": "https://data.mapcomplete.org/nsi//logos/t4teaforu-e1ef51.png" }, { "if": { @@ -53507,7 +53557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tapiocaexpress-243cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/tapiocaexpress-243cad.png" }, { "if": { @@ -53524,7 +53574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tastea-87bfec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tastea-87bfec.jpg" }, { "if": { @@ -53541,7 +53591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tealive-2aa1ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tealive-2aa1ef.jpg" }, { "if": { @@ -53558,7 +53608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tescocafe-a89223.png" + "then": "https://data.mapcomplete.org/nsi//logos/tescocafe-a89223.png" }, { "if": { @@ -53575,7 +53625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebarn-72cbb9.png" + "then": "https://data.mapcomplete.org/nsi//logos/thebarn-72cbb9.png" }, { "if": { @@ -53592,7 +53642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebean-1d96ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebean-1d96ac.jpg" }, { "if": { @@ -53609,7 +53659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecoffee-f04833.svg" + "then": "https://data.mapcomplete.org/nsi//logos/thecoffee-f04833.svg" }, { "if": { @@ -53626,7 +53676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecoffeebeanandtealeaf-ff94db.png" + "then": "https://data.mapcomplete.org/nsi//logos/thecoffeebeanandtealeaf-ff94db.png" }, { "if": { @@ -53643,7 +53693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecoffeeclub-19ebdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecoffeeclub-19ebdf.jpg" }, { "if": { @@ -53661,7 +53711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecoffeehouse-fd99aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/thecoffeehouse-fd99aa.svg" }, { "if": { @@ -53678,7 +53728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegentlemenbaristas-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegentlemenbaristas-eb3447.jpg" }, { "if": { @@ -53695,7 +53745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegrumpybaker-482b3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegrumpybaker-482b3e.jpg" }, { "if": { @@ -53712,7 +53762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehumanbean-243cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehumanbean-243cad.jpg" }, { "if": { @@ -53729,7 +53779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thelinskonditori-46f791.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thelinskonditori-46f791.jpg" }, { "if": { @@ -53746,7 +53796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigersugar-859a55.png" + "then": "https://data.mapcomplete.org/nsi//logos/tigersugar-859a55.png" }, { "if": { @@ -53763,7 +53813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timhortons-ff94db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/timhortons-ff94db.jpg" }, { "if": { @@ -53780,7 +53830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toastbox-ccae53.png" + "then": "https://data.mapcomplete.org/nsi//logos/toastbox-ccae53.png" }, { "if": { @@ -53797,7 +53847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tobysestate-5dc2d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tobysestate-5dc2d4.jpg" }, { "if": { @@ -53818,7 +53868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomntoms-16c022.png" + "then": "https://data.mapcomplete.org/nsi//logos/tomntoms-16c022.png" }, { "if": { @@ -53835,25 +53885,25 @@ } ] }, - "then": "./assets/data/nsi/logos/tomorocoffee-f6b874.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomorocoffee-f6b874.jpg" }, { "if": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=TOSTAO' Café & Pan", "takeaway=yes", { "or": [ "brand=Tostao'", "brand:wikidata=Q60632476", - "name=Tostao'" + "name=Tostao'", + "official_name=TOSTAO' Café & Pan" ] } ] }, - "then": "./assets/data/nsi/logos/tostao-6b7f50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tostao-6b7f50.jpg" }, { "if": { @@ -53870,7 +53920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tptea-243cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/tptea-243cad.png" }, { "if": { @@ -53887,7 +53937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/travelerscoffee-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/travelerscoffee-1c12ef.jpg" }, { "if": { @@ -53906,7 +53956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trungnguyencoffee-fd99aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/trungnguyencoffee-fd99aa.png" }, { "if": { @@ -53923,7 +53973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/urbanbaristas-eb3447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/urbanbaristas-eb3447.jpg" }, { "if": { @@ -53940,7 +53990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vidaecaffe-79a73c.png" + "then": "https://data.mapcomplete.org/nsi//logos/vidaecaffe-79a73c.png" }, { "if": { @@ -53957,7 +54007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watchhouse-289991.png" + "then": "https://data.mapcomplete.org/nsi//logos/watchhouse-289991.png" }, { "if": { @@ -53974,7 +54024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wavescoffeehouse-aa8067.png" + "then": "https://data.mapcomplete.org/nsi//logos/wavescoffeehouse-aa8067.png" }, { "if": { @@ -53991,7 +54041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waynescoffee-460348.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waynescoffee-460348.jpg" }, { "if": { @@ -54010,7 +54060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wildandthemoon-50ce08.png" + "then": "https://data.mapcomplete.org/nsi//logos/wildandthemoon-50ce08.png" }, { "if": { @@ -54027,7 +54077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wildbeancafe-e1ef51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wildbeancafe-e1ef51.jpg" }, { "if": { @@ -54044,7 +54094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wonderwaffel-5db831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wonderwaffel-5db831.jpg" }, { "if": { @@ -54065,7 +54115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xingfutang-a90eeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xingfutang-a90eeb.jpg" }, { "if": { @@ -54082,7 +54132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yakunkayatoast-ccae53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yakunkayatoast-ccae53.jpg" }, { "if": { @@ -54103,7 +54153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yifangtea-a90eeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yifangtea-a90eeb.jpg" }, { "if": { @@ -54121,7 +54171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yourcoffeehub-eb3447.png" + "then": "https://data.mapcomplete.org/nsi//logos/yourcoffeehub-eb3447.png" }, { "if": { @@ -54138,7 +54188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zarraffascoffee-70e4e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zarraffascoffee-70e4e4.jpg" }, { "if": { @@ -54155,7 +54205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zuscoffee-5f28be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zuscoffee-5f28be.jpg" }, { "if": { @@ -54176,7 +54226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikeacafe-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikeacafe-1c12ef.jpg" }, { "if": { @@ -54197,7 +54247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishbakery-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/britishbakery-1c12ef.jpg" }, { "if": { @@ -54214,7 +54264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b847e5-1c12ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/b847e5-1c12ef.png" }, { "if": { @@ -54235,7 +54285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doubleb-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doubleb-1c12ef.jpg" }, { "if": { @@ -54258,7 +54308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kafeteria-e777fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kafeteria-e777fa.jpg" }, { "if": { @@ -54275,7 +54325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/14d894-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/14d894-1c12ef.jpg" }, { "if": { @@ -54296,7 +54346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lvivhandmadechocolate-d74022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lvivhandmadechocolate-d74022.jpg" }, { "if": { @@ -54314,7 +54364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b38de2-1c12ef.svg" + "then": "https://data.mapcomplete.org/nsi//logos/b38de2-1c12ef.svg" }, { "if": { @@ -54332,7 +54382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/852353-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/852353-1c12ef.jpg" }, { "if": { @@ -54349,7 +54399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ad3ee0-d74022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ad3ee0-d74022.jpg" }, { "if": { @@ -54366,7 +54416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/54c425-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/54c425-1c12ef.jpg" }, { "if": { @@ -54387,7 +54437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shokoladnitsa-1c12ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shokoladnitsa-1c12ef.jpg" }, { "if": { @@ -54408,7 +54458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stolle-d874f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stolle-d874f4.jpg" }, { "if": { @@ -54432,7 +54482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diroma-cf8cd3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diroma-cf8cd3.jpg" }, { "if": { @@ -54453,7 +54503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aromaespressobar-10eb89.png" + "then": "https://data.mapcomplete.org/nsi//logos/aromaespressobar-10eb89.png" }, { "if": { @@ -54474,7 +54524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landwer-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landwer-10eb89.jpg" }, { "if": { @@ -54498,7 +54548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sicafe-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sicafe-10eb89.jpg" }, { "if": { @@ -54520,7 +54570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafejoe-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafejoe-10eb89.jpg" }, { "if": { @@ -54541,7 +54591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gregcafe-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gregcafe-10eb89.jpg" }, { "if": { @@ -54562,7 +54612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafenimrod-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafenimrod-10eb89.jpg" }, { "if": { @@ -54583,7 +54633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafecafe-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafecafe-10eb89.jpg" }, { "if": { @@ -54604,7 +54654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roladin-10eb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roladin-10eb89.jpg" }, { "if": { @@ -54625,7 +54675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timhortons-2ad4e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/timhortons-2ad4e1.jpg" }, { "if": { @@ -54646,7 +54696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/javatime-f27832.png" + "then": "https://data.mapcomplete.org/nsi//logos/javatime-f27832.png" }, { "if": { @@ -54667,16 +54717,13 @@ } ] }, - "then": "./assets/data/nsi/logos/drcafe-f27832.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drcafe-f27832.jpg" }, { "if": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=ستاربكس كافية", - "official_name:ar=ستاربكس كافية", - "official_name:en=Starbucks Coffee", "takeaway=yes", { "or": [ @@ -54686,12 +54733,15 @@ "brand:wikidata=Q37158", "name=ستاربكس", "name:ar=ستاربكس", - "name:en=Starbucks" + "name:en=Starbucks", + "official_name=ستاربكس كافية", + "official_name:ar=ستاربكس كافية", + "official_name:en=Starbucks Coffee" ] } ] }, - "then": "./assets/data/nsi/logos/starbucks-0dcee5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starbucks-0dcee5.jpg" }, { "if": { @@ -54712,7 +54762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cariboucoffee-9bd633.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cariboucoffee-9bd633.jpg" }, { "if": { @@ -54733,7 +54783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halfmillion-f27832.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halfmillion-f27832.jpg" }, { "if": { @@ -54754,7 +54804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafeamazon-b6dfae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafeamazon-b6dfae.jpg" }, { "if": { @@ -54777,7 +54827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gongcha-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gongcha-77c68b.jpg" }, { "if": { @@ -54798,7 +54848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dalkommcoffee-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dalkommcoffee-77c68b.jpg" }, { "if": { @@ -54819,7 +54869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theventi-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theventi-77c68b.jpg" }, { "if": { @@ -54840,7 +54890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mammothcoffee-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mammothcoffee-77c68b.jpg" }, { "if": { @@ -54862,7 +54912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megacoffee-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megacoffee-77c68b.jpg" }, { "if": { @@ -54883,7 +54933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banapresso-77c68b.png" + "then": "https://data.mapcomplete.org/nsi//logos/banapresso-77c68b.png" }, { "if": { @@ -54904,7 +54954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paikscoffee-77c68b.png" + "then": "https://data.mapcomplete.org/nsi//logos/paikscoffee-77c68b.png" }, { "if": { @@ -54925,7 +54975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starbucks-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starbucks-77c68b.jpg" }, { "if": { @@ -54946,7 +54996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yogerpresso-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yogerpresso-77c68b.jpg" }, { "if": { @@ -54967,7 +55017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ediyacoffee-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ediyacoffee-77c68b.jpg" }, { "if": { @@ -54988,7 +55038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caffebene-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caffebene-77c68b.jpg" }, { "if": { @@ -55009,7 +55059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanadacoffee-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vanadacoffee-77c68b.jpg" }, { "if": { @@ -55030,7 +55080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/composecoffee-77c68b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/composecoffee-77c68b.svg" }, { "if": { @@ -55051,7 +55101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atwosomeplace-77c68b.png" + "then": "https://data.mapcomplete.org/nsi//logos/atwosomeplace-77c68b.png" }, { "if": { @@ -55074,7 +55124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huilaushan-77c68b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huilaushan-77c68b.jpg" }, { "if": { @@ -55095,7 +55145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/excelsiorcafe-0cf217.png" + "then": "https://data.mapcomplete.org/nsi//logos/excelsiorcafe-0cf217.png" }, { "if": { @@ -55116,7 +55166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafedecrie-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafedecrie-0cf217.jpg" }, { "if": { @@ -55137,7 +55187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafeveloce-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafeveloce-0cf217.jpg" }, { "if": { @@ -55158,7 +55208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komedascoffee-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komedascoffee-0cf217.jpg" }, { "if": { @@ -55180,16 +55230,13 @@ } ] }, - "then": "./assets/data/nsi/logos/saintmarccafe-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintmarccafe-0cf217.jpg" }, { "if": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=スターバックスコーヒー", - "official_name:en=Starbucks Coffee", - "official_name:ja=スターバックスコーヒー", "takeaway=yes", { "or": [ @@ -55199,12 +55246,15 @@ "brand:wikidata=Q37158", "name=スターバックス", "name:en=Starbucks", - "name:ja=スターバックス" + "name:ja=スターバックス", + "official_name=スターバックスコーヒー", + "official_name:en=Starbucks Coffee", + "official_name:ja=スターバックスコーヒー" ] } ] }, - "then": "./assets/data/nsi/logos/starbucks-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starbucks-0cf217.jpg" }, { "if": { @@ -55225,7 +55275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tullyscoffee-0cf217.png" + "then": "https://data.mapcomplete.org/nsi//logos/tullyscoffee-0cf217.png" }, { "if": { @@ -55247,16 +55297,13 @@ } ] }, - "then": "./assets/data/nsi/logos/doutorcoffeeshop-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doutorcoffeeshop-0cf217.jpg" }, { "if": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=喫茶室ルノアール", - "official_name:en=Ginza Renoir", - "official_name:ja=喫茶室ルノアール", "takeaway=yes", { "or": [ @@ -55266,12 +55313,15 @@ "brand:wikidata=Q11649991", "name=ルノアール", "name:en=Renoir", - "name:ja=ルノアール" + "name:ja=ルノアール", + "official_name=喫茶室ルノアール", + "official_name:en=Ginza Renoir", + "official_name:ja=喫茶室ルノアール" ] } ] }, - "then": "./assets/data/nsi/logos/renoir-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renoir-0cf217.jpg" }, { "if": { @@ -55292,7 +55342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aniceholiday-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aniceholiday-7d270d.jpg" }, { "if": { @@ -55313,7 +55363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yifangtea-59dcf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yifangtea-59dcf2.jpg" }, { "if": { @@ -55335,7 +55385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yifangtea-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yifangtea-7d270d.jpg" }, { "if": { @@ -55356,7 +55406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trinitea3-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trinitea3-7d270d.jpg" }, { "if": { @@ -55377,7 +55427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ueshimacoffeehouse-7f2f5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ueshimacoffeehouse-7f2f5a.png" }, { "if": { @@ -55398,7 +55448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onezotapioca-783c92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onezotapioca-783c92.jpg" }, { "if": { @@ -55419,7 +55469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wootea-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wootea-7d270d.jpg" }, { "if": { @@ -55438,7 +55488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafeamazon-3300f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafeamazon-3300f4.jpg" }, { "if": { @@ -55461,7 +55511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hachiyotea-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hachiyotea-7d270d.jpg" }, { "if": { @@ -55482,7 +55532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naptea-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naptea-7d270d.jpg" }, { "if": { @@ -55503,7 +55553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costa-3300f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/costa-3300f4.jpg" }, { "if": { @@ -55524,7 +55574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heytea-823e31.png" + "then": "https://data.mapcomplete.org/nsi//logos/heytea-823e31.png" }, { "if": { @@ -55545,7 +55595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heytea-b3d618.png" + "then": "https://data.mapcomplete.org/nsi//logos/heytea-b3d618.png" }, { "if": { @@ -55570,7 +55620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuttea-b3d618.png" + "then": "https://data.mapcomplete.org/nsi//logos/nuttea-b3d618.png" }, { "if": { @@ -55591,7 +55641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daming-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daming-7d270d.jpg" }, { "if": { @@ -55612,7 +55662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenrenstea-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tenrenstea-7d270d.jpg" }, { "if": { @@ -55633,7 +55683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenrenstea-59dcf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tenrenstea-59dcf2.jpg" }, { "if": { @@ -55654,7 +55704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificcoffee-2d7d61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificcoffee-2d7d61.jpg" }, { "if": { @@ -55675,7 +55725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificcoffee-b3d618.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificcoffee-b3d618.jpg" }, { "if": { @@ -55696,7 +55746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nayuki-3300f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/nayuki-3300f4.png" }, { "if": { @@ -55719,7 +55769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komedacoffeeshop-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komedacoffeeshop-7d270d.jpg" }, { "if": { @@ -55741,7 +55791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xingfutang-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xingfutang-7d270d.jpg" }, { "if": { @@ -55763,7 +55813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xingfutang-59dcf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xingfutang-59dcf2.jpg" }, { "if": { @@ -55784,7 +55834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happylemon-aa349e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happylemon-aa349e.jpg" }, { "if": { @@ -55805,7 +55855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickly-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quickly-7d270d.jpg" }, { "if": { @@ -55827,7 +55877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chatime-3300f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chatime-3300f4.jpg" }, { "if": { @@ -55850,7 +55900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoshinocoffee-7f2f5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/hoshinocoffee-7f2f5a.png" }, { "if": { @@ -55871,7 +55921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starbucks-b3d618.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starbucks-b3d618.jpg" }, { "if": { @@ -55893,7 +55943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starbucks-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starbucks-7d270d.jpg" }, { "if": { @@ -55918,7 +55968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chunshuitang-880fa5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chunshuitang-880fa5.jpg" }, { "if": { @@ -55939,7 +55989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bengongstea-823e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bengongstea-823e31.jpg" }, { "if": { @@ -55960,7 +56010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chingshin-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chingshin-7d270d.jpg" }, { "if": { @@ -55981,7 +56031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kohikan-0cf217.png" + "then": "https://data.mapcomplete.org/nsi//logos/kohikan-0cf217.png" }, { "if": { @@ -56005,7 +56055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truedan-7f2f5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truedan-7f2f5a.jpg" }, { "if": { @@ -56027,7 +56077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truedan-59dcf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truedan-59dcf2.jpg" }, { "if": { @@ -56048,7 +56098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luckincoffee-3300f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luckincoffee-3300f4.jpg" }, { "if": { @@ -56069,7 +56119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jiawencing-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jiawencing-7d270d.jpg" }, { "if": { @@ -56090,7 +56140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigersugar-2851bb.png" + "then": "https://data.mapcomplete.org/nsi//logos/tigersugar-2851bb.png" }, { "if": { @@ -56111,7 +56161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigersugar-59dcf2.png" + "then": "https://data.mapcomplete.org/nsi//logos/tigersugar-59dcf2.png" }, { "if": { @@ -56132,7 +56182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etea-59dcf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etea-59dcf2.jpg" }, { "if": { @@ -56155,7 +56205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tptea-7d270d.png" + "then": "https://data.mapcomplete.org/nsi//logos/tptea-7d270d.png" }, { "if": { @@ -56180,7 +56230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tptea-59dcf2.png" + "then": "https://data.mapcomplete.org/nsi//logos/tptea-59dcf2.png" }, { "if": { @@ -56201,7 +56251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chabaidao-bd86e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chabaidao-bd86e2.jpg" }, { "if": { @@ -56222,7 +56272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chapanda-59dcf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chapanda-59dcf2.jpg" }, { "if": { @@ -56243,7 +56293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teaandmagichand-7d270d.png" + "then": "https://data.mapcomplete.org/nsi//logos/teaandmagichand-7d270d.png" }, { "if": { @@ -56264,7 +56314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dingtea-f1b18f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dingtea-f1b18f.jpg" }, { "if": { @@ -56285,7 +56335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mixuebingcheng-bd86e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mixuebingcheng-bd86e2.jpg" }, { "if": { @@ -56306,7 +56356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mixueicecreamandtea-59dcf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mixueicecreamandtea-59dcf2.jpg" }, { "if": { @@ -56330,7 +56380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baristacoffee-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baristacoffee-7d270d.jpg" }, { "if": { @@ -56351,7 +56401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huilaushan-f1b18f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huilaushan-f1b18f.jpg" }, { "if": { @@ -56372,7 +56422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huilaushan-b3d618.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huilaushan-b3d618.jpg" }, { "if": { @@ -56395,7 +56445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gongcha-0cf217.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gongcha-0cf217.jpg" }, { "if": { @@ -56421,7 +56471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gongcha-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gongcha-7d270d.jpg" }, { "if": { @@ -56442,7 +56492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gongcha-b3d618.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gongcha-b3d618.jpg" }, { "if": { @@ -56468,7 +56518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gongcha-823e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gongcha-823e31.jpg" }, { "if": { @@ -56489,7 +56539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisacoffee-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louisacoffee-7d270d.jpg" }, { "if": { @@ -56510,7 +56560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milkshop-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milkshop-7d270d.jpg" }, { "if": { @@ -56531,7 +56581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chagee-823e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chagee-823e31.jpg" }, { "if": { @@ -56552,7 +56602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chagee-59dcf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chagee-59dcf2.jpg" }, { "if": { @@ -56569,7 +56619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e7db71-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/e7db71-7d270d.jpg" }, { "if": { @@ -56591,7 +56641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hechaloutea-7d270d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hechaloutea-7d270d.jpg" }, { "if": { @@ -56612,7 +56662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macu-7d270d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/macu-7d270d.svg" }, { "if": { @@ -56627,7 +56677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/99rent-f36412.png" + "then": "https://data.mapcomplete.org/nsi//logos/99rent-f36412.png" }, { "if": { @@ -56642,7 +56692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ada-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ada-d9531a.jpg" }, { "if": { @@ -56657,7 +56707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alamo-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alamo-d9531a.jpg" }, { "if": { @@ -56672,7 +56722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apex-f8249a.png" + "then": "https://data.mapcomplete.org/nsi//logos/apex-f8249a.png" }, { "if": { @@ -56687,7 +56737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arnoldclarkcarandvanrental-94e308.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arnoldclarkcarandvanrental-94e308.jpg" }, { "if": { @@ -56702,23 +56752,23 @@ } ] }, - "then": "./assets/data/nsi/logos/autohopper-76827b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autohopper-76827b.jpg" }, { "if": { "and": [ "amenity=car_rental", - "official_name=Avis Car Rental", { "or": [ "brand=Avis", "brand:wikidata=Q791136", - "name=Avis" + "name=Avis", + "official_name=Avis Car Rental" ] } ] }, - "then": "./assets/data/nsi/logos/avis-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avis-d9531a.jpg" }, { "if": { @@ -56733,23 +56783,23 @@ } ] }, - "then": "./assets/data/nsi/logos/buchbinder-407895.png" + "then": "https://data.mapcomplete.org/nsi//logos/buchbinder-407895.png" }, { "if": { "and": [ "amenity=car_rental", - "official_name=Budget Rent a Car", { "or": [ "brand=Budget", "brand:wikidata=Q1001437", - "name=Budget" + "name=Budget", + "official_name=Budget Rent a Car" ] } ] }, - "then": "./assets/data/nsi/logos/budget-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budget-d9531a.jpg" }, { "if": { @@ -56764,7 +56814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budgettruckrental-d50162.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budgettruckrental-d50162.jpg" }, { "if": { @@ -56779,7 +56829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cargo-8fb45c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cargo-8fb45c.png" }, { "if": { @@ -56794,7 +56844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollarcarrental-d50162.png" + "then": "https://data.mapcomplete.org/nsi//logos/dollarcarrental-d50162.png" }, { "if": { @@ -56809,23 +56859,23 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclerclocation-8fb45c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclerclocation-8fb45c.jpg" }, { "if": { "and": [ "amenity=car_rental", - "official_name=Enterprise Rent-A-Car", { "or": [ "brand=Enterprise", "brand:wikidata=Q17085454", - "name=Enterprise" + "name=Enterprise", + "official_name=Enterprise Rent-A-Car" ] } ] }, - "then": "./assets/data/nsi/logos/enterprise-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enterprise-d9531a.jpg" }, { "if": { @@ -56840,7 +56890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euromobil-76827b.png" + "then": "https://data.mapcomplete.org/nsi//logos/euromobil-76827b.png" }, { "if": { @@ -56855,7 +56905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/europcar-802794.png" + "then": "https://data.mapcomplete.org/nsi//logos/europcar-802794.png" }, { "if": { @@ -56870,7 +56920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/garentaday-48a8d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/garentaday-48a8d7.jpg" }, { "if": { @@ -56885,7 +56935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenmotion-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenmotion-d9531a.jpg" }, { "if": { @@ -56900,7 +56950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hertz-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hertz-d9531a.jpg" }, { "if": { @@ -56915,7 +56965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jucy-fde8ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jucy-fde8ea.jpg" }, { "if": { @@ -56930,7 +56980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/localiza-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/localiza-d9531a.jpg" }, { "if": { @@ -56945,23 +56995,23 @@ } ] }, - "then": "./assets/data/nsi/logos/movida-7721c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/movida-7721c7.jpg" }, { "if": { "and": [ "amenity=car_rental", - "official_name=National Car Rental", { "or": [ "brand=National", "brand:wikidata=Q1424142", - "name=National" + "name=National", + "official_name=National Car Rental" ] } ] }, - "then": "./assets/data/nsi/logos/national-6ebae1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/national-6ebae1.jpg" }, { "if": { @@ -56976,7 +57026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opelrent-608338.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opelrent-608338.jpg" }, { "if": { @@ -56991,7 +57041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/payless-d9531a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/payless-d9531a.svg" }, { "if": { @@ -57006,7 +57056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/practical-9ff876.png" + "then": "https://data.mapcomplete.org/nsi//logos/practical-9ff876.png" }, { "if": { @@ -57021,7 +57071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redspotcarrentals-ba918c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redspotcarrentals-ba918c.jpg" }, { "if": { @@ -57036,7 +57086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rentacar-8fb45c.png" + "then": "https://data.mapcomplete.org/nsi//logos/rentacar-8fb45c.png" }, { "if": { @@ -57051,7 +57101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sixt-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sixt-d9531a.jpg" }, { "if": { @@ -57070,7 +57120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skrentacar-1f06f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/skrentacar-1f06f0.png" }, { "if": { @@ -57085,7 +57135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starcar-608338.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starcar-608338.jpg" }, { "if": { @@ -57100,23 +57150,23 @@ } ] }, - "then": "./assets/data/nsi/logos/thrifty-d9531a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thrifty-d9531a.jpg" }, { "if": { "and": [ "amenity=car_rental", - "official_name=U-Save Car & Truck Rental", { "or": [ "brand=U-Save", "brand:wikidata=Q123005345", - "name=U-Save" + "name=U-Save", + "official_name=U-Save Car & Truck Rental" ] } ] }, - "then": "./assets/data/nsi/logos/usave-c212fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usave-c212fd.jpg" }, { "if": { @@ -57131,7 +57181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucar-8fb45c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucar-8fb45c.jpg" }, { "if": { @@ -57146,7 +57196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unidas-7721c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unidas-7721c7.jpg" }, { "if": { @@ -57165,7 +57215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotterentacar-1f06f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotterentacar-1f06f0.jpg" }, { "if": { @@ -57184,7 +57234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orixrentacar-f05847.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orixrentacar-f05847.jpg" }, { "if": { @@ -57203,7 +57253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyotarentacar-f05847.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toyotarentacar-f05847.jpg" }, { "if": { @@ -57222,7 +57272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niconicorentacar-f05847.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niconicorentacar-f05847.jpg" }, { "if": { @@ -57241,7 +57291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chailease-9fc5e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chailease-9fc5e0.jpg" }, { "if": { @@ -57260,7 +57310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotaileasing-9fc5e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotaileasing-9fc5e0.jpg" }, { "if": { @@ -57279,7 +57329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ponyrentacar-9fc5e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ponyrentacar-9fc5e0.png" }, { "if": { @@ -57298,7 +57348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nissanrentacar-f05847.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nissanrentacar-f05847.jpg" }, { "if": { @@ -57317,7 +57367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carplus-9fc5e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carplus-9fc5e0.jpg" }, { "if": { @@ -57336,7 +57386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chihhangcarrental-9fc5e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chihhangcarrental-9fc5e0.jpg" }, { "if": { @@ -57353,7 +57403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobil-205356.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobil-205356.jpg" }, { "if": { @@ -57370,7 +57420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobil-f851cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobil-f851cd.jpg" }, { "if": { @@ -57387,7 +57437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobil-3038c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobil-3038c5.jpg" }, { "if": { @@ -57404,7 +57454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobil-c2ae2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobil-c2ae2a.jpg" }, { "if": { @@ -57421,7 +57471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobil-5a8828.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobil-5a8828.jpg" }, { "if": { @@ -57438,7 +57488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobil-545eb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobil-545eb6.jpg" }, { "if": { @@ -57455,7 +57505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobil-fd587a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobil-fd587a.jpg" }, { "if": { @@ -57472,7 +57522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobilsudbaden-ff69c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobilsudbaden-ff69c7.jpg" }, { "if": { @@ -57489,7 +57539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmobil-9bf665.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmobil-9bf665.jpg" }, { "if": { @@ -57505,7 +57555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teilauto-c26449.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teilauto-c26449.jpg" }, { "if": { @@ -57520,7 +57570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alltown-cac12f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alltown-cac12f.jpg" }, { "if": { @@ -57535,7 +57585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aral-78fe7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aral-78fe7d.jpg" }, { "if": { @@ -57550,7 +57600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aralsuperwash-26327d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aralsuperwash-26327d.jpg" }, { "if": { @@ -57565,7 +57615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/as24-d24fa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/as24-d24fa4.jpg" }, { "if": { @@ -57581,7 +57631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluebeacon-244496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluebeacon-244496.jpg" }, { "if": { @@ -57596,7 +57646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-43b899.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-43b899.jpg" }, { "if": { @@ -57611,7 +57661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brownbearcarwash-244496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brownbearcarwash-244496.jpg" }, { "if": { @@ -57626,7 +57676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chevron-43b899.png" + "then": "https://data.mapcomplete.org/nsi//logos/chevron-43b899.png" }, { "if": { @@ -57641,7 +57691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-43b899.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-43b899.png" }, { "if": { @@ -57656,7 +57706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubcarwash-d2c834.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubcarwash-d2c834.jpg" }, { "if": { @@ -57671,7 +57721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costco-244496.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costco-244496.svg" }, { "if": { @@ -57686,7 +57736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/darner-95225d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/darner-95225d.jpg" }, { "if": { @@ -57701,7 +57751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deltasoniccarwash-afae69.png" + "then": "https://data.mapcomplete.org/nsi//logos/deltasoniccarwash-afae69.png" }, { "if": { @@ -57716,7 +57766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ehrle-316c1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ehrle-316c1a.png" }, { "if": { @@ -57731,7 +57781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elefanteazul-99bbad.png" + "then": "https://data.mapcomplete.org/nsi//logos/elefanteazul-99bbad.png" }, { "if": { @@ -57746,7 +57796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elephantbleu-6a6dda.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elephantbleu-6a6dda.jpg" }, { "if": { @@ -57761,7 +57811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-5d96a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-5d96a3.jpg" }, { "if": { @@ -57776,7 +57826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essotigerwash-26327d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essotigerwash-26327d.jpg" }, { "if": { @@ -57791,7 +57841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globus-f2c690.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globus-f2c690.jpg" }, { "if": { @@ -57806,7 +57856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldennozzlecarwash-cac12f.png" + "then": "https://data.mapcomplete.org/nsi//logos/goldennozzlecarwash-cac12f.png" }, { "if": { @@ -57822,7 +57872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hebcarwash-244496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hebcarwash-244496.jpg" }, { "if": { @@ -57838,7 +57888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imocarwash-43b899.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imocarwash-43b899.jpg" }, { "if": { @@ -57853,7 +57903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarche-5d96a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarche-5d96a3.jpg" }, { "if": { @@ -57868,7 +57918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaadycarwash-4e367a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaadycarwash-4e367a.jpg" }, { "if": { @@ -57883,7 +57933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karcher-43b899.svg" + "then": "https://data.mapcomplete.org/nsi//logos/karcher-43b899.svg" }, { "if": { @@ -57898,7 +57948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwiktrip-3ffd21.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kwiktrip-3ffd21.svg" }, { "if": { @@ -57913,7 +57963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrolcarwash-4c245c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/migrolcarwash-4c245c.jpg" }, { "if": { @@ -57928,7 +57978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mistercarwash-244496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mistercarwash-244496.jpg" }, { "if": { @@ -57943,7 +57993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobil-43b899.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobil-43b899.jpg" }, { "if": { @@ -57958,7 +58008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/modwash-244496.png" + "then": "https://data.mapcomplete.org/nsi//logos/modwash-244496.png" }, { "if": { @@ -57973,7 +58023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrwash-26327d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrwash-26327d.jpg" }, { "if": { @@ -57988,7 +58038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omv-43b899.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omv-43b899.jpg" }, { "if": { @@ -58003,7 +58053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlen-c680df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlen-c680df.jpg" }, { "if": { @@ -58018,7 +58068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penovyraj-3482c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penovyraj-3482c3.jpg" }, { "if": { @@ -58033,7 +58083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrocanada-9ea365.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petrocanada-9ea365.svg" }, { "if": { @@ -58048,7 +58098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickquackcarwash-244496.png" + "then": "https://data.mapcomplete.org/nsi//logos/quickquackcarwash-244496.png" }, { "if": { @@ -58063,7 +58113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-a01e11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-a01e11.jpg" }, { "if": { @@ -58078,7 +58128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovnaft-9d2a81.png" + "then": "https://data.mapcomplete.org/nsi//logos/slovnaft-9d2a81.png" }, { "if": { @@ -58093,7 +58143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soapynoble-244496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/soapynoble-244496.jpg" }, { "if": { @@ -58108,7 +58158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superwash-244496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superwash-244496.jpg" }, { "if": { @@ -58124,7 +58174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/take5carwash-d518c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/take5carwash-d518c0.png" }, { "if": { @@ -58139,7 +58189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terribles-244496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terribles-244496.jpg" }, { "if": { @@ -58154,7 +58204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tidalwaveautospa-244496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tidalwaveautospa-244496.jpg" }, { "if": { @@ -58169,7 +58219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waves-d2c834.png" + "then": "https://data.mapcomplete.org/nsi//logos/waves-d2c834.png" }, { "if": { @@ -58184,7 +58234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancocasino-efca36.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancocasino-efca36.png" }, { "if": { @@ -58199,7 +58249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codere-3dfd07.png" + "then": "https://data.mapcomplete.org/nsi//logos/codere-3dfd07.png" }, { "if": { @@ -58214,7 +58264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hollandcasino-cf45c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hollandcasino-cf45c0.jpg" }, { "if": { @@ -58229,7 +58279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luckia-5a89e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/luckia-5a89e4.svg" }, { "if": { @@ -58244,7 +58294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olympiccasino-7eadd8.png" + "then": "https://data.mapcomplete.org/nsi//logos/olympiccasino-7eadd8.png" }, { "if": { @@ -58259,7 +58309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmsbet-cfc6fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmsbet-cfc6fe.jpg" }, { "if": { @@ -58274,7 +58324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topsport-c593f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/topsport-c593f4.png" }, { "if": { @@ -58289,7 +58339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/believ-cc3397.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/believ-cc3397.jpg" }, { "if": { @@ -58305,7 +58355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bppulse-ed9b3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bppulse-ed9b3b.jpg" }, { "if": { @@ -58319,7 +58369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargy-cc3397.png" + "then": "https://data.mapcomplete.org/nsi//logos/chargy-cc3397.png" }, { "if": { @@ -58336,7 +58386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargy-e87a7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chargy-e87a7c.jpg" }, { "if": { @@ -58351,7 +58401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eviny-054d0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/eviny-054d0f.png" }, { "if": { @@ -58365,7 +58415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indigo-fd0ca8.png" + "then": "https://data.mapcomplete.org/nsi//logos/indigo-fd0ca8.png" }, { "if": { @@ -58379,7 +58429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ionity-b625d6.png" + "then": "https://data.mapcomplete.org/nsi//logos/ionity-b625d6.png" }, { "if": { @@ -58393,7 +58443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kople-054d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kople-054d0f.jpg" }, { "if": { @@ -58408,7 +58458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mer-36d5f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/mer-36d5f6.png" }, { "if": { @@ -58424,7 +58474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/molplugee-ce45cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/molplugee-ce45cd.png" }, { "if": { @@ -58441,7 +58491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowercharger-9dbcd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowercharger-9dbcd7.jpg" }, { "if": { @@ -58458,7 +58508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowerdestination-9dbcd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowerdestination-9dbcd7.jpg" }, { "if": { @@ -58475,7 +58525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowerswap-9dbcd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowerswap-9dbcd7.jpg" }, { "if": { @@ -58491,7 +58541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/openloop-dd8b2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/openloop-dd8b2e.jpg" }, { "if": { @@ -58505,7 +58555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plugit-4d533b.png" + "then": "https://data.mapcomplete.org/nsi//logos/plugit-4d533b.png" }, { "if": { @@ -58519,7 +58569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerboxone-391bca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerboxone-391bca.jpg" }, { "if": { @@ -58536,7 +58586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerdot-f718d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/powerdot-f718d2.png" }, { "if": { @@ -58550,7 +58600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivianadventurenetwork-d2b245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rivianadventurenetwork-d2b245.jpg" }, { "if": { @@ -58564,7 +58614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivianwaypoints-d2b245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rivianwaypoints-d2b245.jpg" }, { "if": { @@ -58580,7 +58630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesladestinationcharger-67e574.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tesladestinationcharger-67e574.svg" }, { "if": { @@ -58595,7 +58645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teslasupercharger-054d0f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/teslasupercharger-054d0f.svg" }, { "if": { @@ -58612,7 +58662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubitricity-ef5e60.png" + "then": "https://data.mapcomplete.org/nsi//logos/ubitricity-ef5e60.png" }, { "if": { @@ -58627,7 +58677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wink-59a92d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wink-59a92d.jpg" }, { "if": { @@ -58643,7 +58693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zsedrive-8610f2.png" + "then": "https://data.mapcomplete.org/nsi//logos/zsedrive-8610f2.png" }, { "if": { @@ -58662,7 +58712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xpengsupercharger-07dd34.png" + "then": "https://data.mapcomplete.org/nsi//logos/xpengsupercharger-07dd34.png" }, { "if": { @@ -58681,7 +58731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teld-07dd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teld-07dd34.jpg" }, { "if": { @@ -58699,7 +58749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowerswap-07dd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowerswap-07dd34.jpg" }, { "if": { @@ -58717,7 +58767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowerdestination-07dd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowerdestination-07dd34.jpg" }, { "if": { @@ -58735,7 +58785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowercharger-07dd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowercharger-07dd34.jpg" }, { "if": { @@ -58749,7 +58799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeiterwohlfahrt-284c2e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-284c2e.svg" }, { "if": { @@ -58764,7 +58814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/busybees-e7c9ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/busybees-e7c9ca.jpg" }, { "if": { @@ -58778,7 +58828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesroteskreuz-284c2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-284c2e.jpg" }, { "if": { @@ -58793,7 +58843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kidango-fd7b3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kidango-fd7b3f.jpg" }, { "if": { @@ -58802,18 +58852,18 @@ "amenity=childcare", "grades=PK", "nursery=yes", - "official_name=Kids 'R' Kids Learning Academies", "preschool=yes", { "or": [ "brand=Kids 'R' Kids", "brand:wikidata=Q65560342", - "name=Kids 'R' Kids" + "name=Kids 'R' Kids", + "official_name=Kids 'R' Kids Learning Academies" ] } ] }, - "then": "./assets/data/nsi/logos/kidsrkids-fd7b3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kidsrkids-fd7b3f.jpg" }, { "if": { @@ -58828,7 +58878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merryhillpreschool-fd7b3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/merryhillpreschool-fd7b3f.jpg" }, { "if": { @@ -58843,7 +58893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nfamilyclub-de54b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/nfamilyclub-de54b7.png" }, { "if": { @@ -58858,7 +58908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ymcachildcare-fd7b3f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ymcachildcare-fd7b3f.png" }, { "if": { @@ -58877,7 +58927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globalkids-46ae55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globalkids-46ae55.jpg" }, { "if": { @@ -58896,7 +58946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chibikkoland-46ae55.png" + "then": "https://data.mapcomplete.org/nsi//logos/chibikkoland-46ae55.png" }, { "if": { @@ -58915,7 +58965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/popolar-46ae55.png" + "then": "https://data.mapcomplete.org/nsi//logos/popolar-46ae55.png" }, { "if": { @@ -58934,7 +58984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/109cinemas-35c174.png" + "then": "https://data.mapcomplete.org/nsi//logos/109cinemas-35c174.png" }, { "if": { @@ -58949,7 +58999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alamodrafthousecinema-a7c63e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alamodrafthousecinema-a7c63e.jpg" }, { "if": { @@ -58964,7 +59014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amc-71ff56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amc-71ff56.jpg" }, { "if": { @@ -58979,7 +59029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caribbeancinemas-77ba3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caribbeancinemas-77ba3f.jpg" }, { "if": { @@ -58995,7 +59045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centurytheatres-a7c63e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centurytheatres-a7c63e.jpg" }, { "if": { @@ -59010,7 +59060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cgrcinemas-24fd45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cgrcinemas-24fd45.jpg" }, { "if": { @@ -59029,7 +59079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cgvcinema-d2999b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cgvcinema-d2999b.jpg" }, { "if": { @@ -59044,7 +59094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinecenter-276738.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinecenter-276738.jpg" }, { "if": { @@ -59059,7 +59109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinemacity-2b5fb2.png" + "then": "https://data.mapcomplete.org/nsi//logos/cinemacity-2b5fb2.png" }, { "if": { @@ -59074,7 +59124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinemanos-97a9e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinemanos-97a9e2.jpg" }, { "if": { @@ -59090,7 +59140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinemaxxi-ee9238.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinemaxxi-ee9238.jpg" }, { "if": { @@ -59105,7 +59155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinemark-dc12dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinemark-dc12dc.jpg" }, { "if": { @@ -59120,7 +59170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinemax-396cc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinemax-396cc7.jpg" }, { "if": { @@ -59135,7 +59185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinemaxx-49be64.png" + "then": "https://data.mapcomplete.org/nsi//logos/cinemaxx-49be64.png" }, { "if": { @@ -59150,7 +59200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinemex-217d43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinemex-217d43.jpg" }, { "if": { @@ -59165,7 +59215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cineplanet-7fe2a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cineplanet-7fe2a4.jpg" }, { "if": { @@ -59180,7 +59230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cineplex-4ad1c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/cineplex-4ad1c3.png" }, { "if": { @@ -59195,7 +59245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cineplex-00435d.png" + "then": "https://data.mapcomplete.org/nsi//logos/cineplex-00435d.png" }, { "if": { @@ -59210,7 +59260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cineplexx-8f1bb5.png" + "then": "https://data.mapcomplete.org/nsi//logos/cineplexx-8f1bb5.png" }, { "if": { @@ -59225,7 +59275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinepolis-dc12dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinepolis-dc12dc.jpg" }, { "if": { @@ -59240,7 +59290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinesa-408f25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinesa-408f25.jpg" }, { "if": { @@ -59255,7 +59305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinestar-a7029a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cinestar-a7029a.png" }, { "if": { @@ -59270,7 +59320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cineville-24fd45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cineville-24fd45.jpg" }, { "if": { @@ -59285,7 +59335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cineworld-5b33a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cineworld-5b33a1.jpg" }, { "if": { @@ -59304,7 +59354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cgvcinema-963a2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cgvcinema-963a2a.jpg" }, { "if": { @@ -59319,7 +59369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/curzon-5b33a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/curzon-5b33a1.jpg" }, { "if": { @@ -59334,7 +59384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eventcinemas-402915.png" + "then": "https://data.mapcomplete.org/nsi//logos/eventcinemas-402915.png" }, { "if": { @@ -59349,7 +59399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everyman-5b33a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/everyman-5b33a1.jpg" }, { "if": { @@ -59365,7 +59415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenscreencinemas-ee5a85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenscreencinemas-ee5a85.jpg" }, { "if": { @@ -59381,7 +59431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harkinstheatres-a7c63e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harkinstheatres-a7c63e.jpg" }, { "if": { @@ -59396,7 +59446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hautetcourt-24fd45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hautetcourt-24fd45.jpg" }, { "if": { @@ -59411,7 +59461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helios-696d99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/helios-696d99.jpg" }, { "if": { @@ -59426,7 +59476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoyts-402915.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoyts-402915.jpg" }, { "if": { @@ -59442,7 +59492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inoxleisure-41b2b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inoxleisure-41b2b7.jpg" }, { "if": { @@ -59457,7 +59507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imc-668c40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imc-668c40.jpg" }, { "if": { @@ -59472,7 +59522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinepolis-bc363a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kinepolis-bc363a.jpg" }, { "if": { @@ -59487,7 +59537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinozarogiem-696d99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kinozarogiem-696d99.jpg" }, { "if": { @@ -59502,7 +59552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landmarkcinemas-4ad1c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landmarkcinemas-4ad1c3.jpg" }, { "if": { @@ -59518,7 +59568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landmarktheatres-a7c63e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landmarktheatres-a7c63e.jpg" }, { "if": { @@ -59533,7 +59583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lesecransdeparis-24fd45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lesecransdeparis-24fd45.jpg" }, { "if": { @@ -59549,7 +59599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotusfivestar-ee5a85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotusfivestar-ee5a85.jpg" }, { "if": { @@ -59564,7 +59614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/majestic-24fd45.png" + "then": "https://data.mapcomplete.org/nsi//logos/majestic-24fd45.png" }, { "if": { @@ -59579,7 +59629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/majorcineplex-4fe5f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/majorcineplex-4fe5f1.jpg" }, { "if": { @@ -59595,7 +59645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marcuscinema-a7c63e.png" + "then": "https://data.mapcomplete.org/nsi//logos/marcuscinema-a7c63e.png" }, { "if": { @@ -59611,7 +59661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mbocinemas-ee5a85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mbocinemas-ee5a85.jpg" }, { "if": { @@ -59626,7 +59676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megarama-2d2421.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megarama-2d2421.jpg" }, { "if": { @@ -59640,7 +59690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merlincinemas-5b33a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/merlincinemas-5b33a1.png" }, { "if": { @@ -59655,7 +59705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mk2-65cef4.png" + "then": "https://data.mapcomplete.org/nsi//logos/mk2-65cef4.png" }, { "if": { @@ -59670,7 +59720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/movietavern-a7c63e.png" + "then": "https://data.mapcomplete.org/nsi//logos/movietavern-a7c63e.png" }, { "if": { @@ -59685,7 +59735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moviecom-82f832.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moviecom-82f832.jpg" }, { "if": { @@ -59700,7 +59750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/multicine-276738.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/multicine-276738.jpg" }, { "if": { @@ -59716,7 +59766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/multikino-f97ba6.png" + "then": "https://data.mapcomplete.org/nsi//logos/multikino-f97ba6.png" }, { "if": { @@ -59731,7 +59781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/numetro-06ed22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/numetro-06ed22.jpg" }, { "if": { @@ -59746,7 +59796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odeon-031144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/odeon-031144.jpg" }, { "if": { @@ -59761,7 +59811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omniplex-668c40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omniplex-668c40.jpg" }, { "if": { @@ -59776,7 +59826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palacecinemas-1a8a27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palacecinemas-1a8a27.jpg" }, { "if": { @@ -59791,7 +59841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pathe-484389.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pathe-484389.jpg" }, { "if": { @@ -59806,7 +59856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pathegaumont-22090e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pathegaumont-22090e.jpg" }, { "if": { @@ -59820,7 +59870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picturehousecinemas-5b33a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/picturehousecinemas-5b33a1.jpg" }, { "if": { @@ -59836,13 +59886,12 @@ } ] }, - "then": "./assets/data/nsi/logos/pvrcinemas-41b2b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pvrcinemas-41b2b7.jpg" }, { "if": { "and": [ "amenity=cinema", - "official_name=CGV Cinemas Vietnam", { "or": [ "brand=rạp chiếu phim CGV", @@ -59851,12 +59900,13 @@ "brand:wikidata=Q5012261", "name=rạp chiếu phim CGV", "name:en=CGV Cinema", - "name:vi=rạp chiếu phim CGV" + "name:vi=rạp chiếu phim CGV", + "official_name=CGV Cinemas Vietnam" ] } ] }, - "then": "./assets/data/nsi/logos/rapchieuphimcgv-360d00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rapchieuphimcgv-360d00.jpg" }, { "if": { @@ -59871,7 +59921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reelcinema-5b33a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reelcinema-5b33a1.jpg" }, { "if": { @@ -59887,7 +59937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regalcinemas-a7c63e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regalcinemas-a7c63e.jpg" }, { "if": { @@ -59902,7 +59952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renoir-408f25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renoir-408f25.jpg" }, { "if": { @@ -59917,7 +59967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottcinemas-9af70b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scottcinemas-9af70b.jpg" }, { "if": { @@ -59933,7 +59983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/showcasecinemas-481888.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/showcasecinemas-481888.jpg" }, { "if": { @@ -59948,7 +59998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sterkinekor-794bcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sterkinekor-794bcb.jpg" }, { "if": { @@ -59964,7 +60014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tgvcinemas-ee5a85.png" + "then": "https://data.mapcomplete.org/nsi//logos/tgvcinemas-ee5a85.png" }, { "if": { @@ -59979,7 +60029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thespacecinema-2446c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thespacecinema-2446c8.jpg" }, { "if": { @@ -59999,7 +60049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tohocinemas-35c174.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tohocinemas-35c174.jpg" }, { "if": { @@ -60014,7 +60064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uci-9c82de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uci-9c82de.jpg" }, { "if": { @@ -60030,7 +60080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucikinowelt-00435d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucikinowelt-00435d.jpg" }, { "if": { @@ -60045,7 +60095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugc-259e3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ugc-259e3e.png" }, { "if": { @@ -60060,7 +60110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villagecinemas-1a8a27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villagecinemas-1a8a27.jpg" }, { "if": { @@ -60075,7 +60125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vue-05c111.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vue-05c111.jpg" }, { "if": { @@ -60090,7 +60140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vue-484389.png" + "then": "https://data.mapcomplete.org/nsi//logos/vue-484389.png" }, { "if": { @@ -60105,7 +60155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walliscinemas-1a8a27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walliscinemas-1a8a27.jpg" }, { "if": { @@ -60120,7 +60170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yelmo-408f25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yelmo-408f25.jpg" }, { "if": { @@ -60141,7 +60191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cavea-91a71a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cavea-91a71a.jpg" }, { "if": { @@ -60160,7 +60210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeoncinema-35c174.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aeoncinema-35c174.jpg" }, { "if": { @@ -60179,7 +60229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedcinemas-35c174.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedcinemas-35c174.png" }, { "if": { @@ -60198,7 +60248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambassadortheatres-4205fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/ambassadortheatres-4205fd.png" }, { "if": { @@ -60217,7 +60267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vieshowcinemas-4205fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vieshowcinemas-4205fd.jpg" }, { "if": { @@ -60236,7 +60286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shinkongcinemas-4205fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shinkongcinemas-4205fd.jpg" }, { "if": { @@ -60255,7 +60305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mclcinema-74d7ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/mclcinema-74d7ca.png" }, { "if": { @@ -60274,7 +60324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/broadwaycircuit-03b75b.png" + "then": "https://data.mapcomplete.org/nsi//logos/broadwaycircuit-03b75b.png" }, { "if": { @@ -60293,7 +60343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/broadwaycircuit-d2999b.png" + "then": "https://data.mapcomplete.org/nsi//logos/broadwaycircuit-d2999b.png" }, { "if": { @@ -60312,7 +60362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/showtimecinemas-4205fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/showtimecinemas-4205fd.jpg" }, { "if": { @@ -60331,7 +60381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emperorcinemas-03b75b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emperorcinemas-03b75b.jpg" }, { "if": { @@ -60346,7 +60396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/advocatehealthcare-b56bf7.png" + "then": "https://data.mapcomplete.org/nsi//logos/advocatehealthcare-b56bf7.png" }, { "if": { @@ -60361,7 +60411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agel-4f1f63.png" + "then": "https://data.mapcomplete.org/nsi//logos/agel-4f1f63.png" }, { "if": { @@ -60379,7 +60429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carbonhealth-a594ec.png" + "then": "https://data.mapcomplete.org/nsi//logos/carbonhealth-a594ec.png" }, { "if": { @@ -60395,7 +60445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gohealthurgentcare-b3ff53.png" + "then": "https://data.mapcomplete.org/nsi//logos/gohealthurgentcare-b3ff53.png" }, { "if": { @@ -60412,7 +60462,23 @@ } ] }, - "then": "./assets/data/nsi/logos/iqlaservision-f10d23.png" + "then": "https://data.mapcomplete.org/nsi//logos/iqlaservision-f10d23.png" + }, + { + "if": { + "and": [ + "amenity=clinic", + "healthcare=dialysis", + "healthcare:speciality=nephrology", + { + "or": [ + "brand=KfH", + "brand:wikidata=Q1740377" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/kfh-5fb5d4.jpg" }, { "if": { @@ -60429,7 +60495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasikmd-a4b770.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lasikmd-a4b770.svg" }, { "if": { @@ -60446,7 +60512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasikplus-b3ff53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lasikplus-b3ff53.jpg" }, { "if": { @@ -60464,7 +60530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mdnowurgentcare-81c39b.png" + "then": "https://data.mapcomplete.org/nsi//logos/mdnowurgentcare-81c39b.png" }, { "if": { @@ -60479,7 +60545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternmedicine-7453f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternmedicine-7453f3.png" }, { "if": { @@ -60496,7 +60562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nvision-b3ff53.png" + "then": "https://data.mapcomplete.org/nsi//logos/nvision-b3ff53.png" }, { "if": { @@ -60512,7 +60578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sentara-9e9fc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sentara-9e9fc2.jpg" }, { "if": { @@ -60529,7 +60595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suttersurgerycenter-6bb225.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suttersurgerycenter-6bb225.jpg" }, { "if": { @@ -60546,7 +60612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thelasikvisioninstitute-b3ff53.png" + "then": "https://data.mapcomplete.org/nsi//logos/thelasikvisioninstitute-b3ff53.png" }, { "if": { @@ -60563,7 +60629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tlclasereyecenters-b3ff53.png" + "then": "https://data.mapcomplete.org/nsi//logos/tlclasereyecenters-b3ff53.png" }, { "if": { @@ -60580,7 +60646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/touchstoneimaging-50ed08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/touchstoneimaging-50ed08.jpg" }, { "if": { @@ -60595,7 +60661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veinclinicsofamerica-12a747.png" + "then": "https://data.mapcomplete.org/nsi//logos/veinclinicsofamerica-12a747.png" }, { "if": { @@ -60610,7 +60676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akademiedeutschepop-7c5a79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akademiedeutschepop-7c5a79.jpg" }, { "if": { @@ -60625,7 +60691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comcave-7c5a79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comcave-7c5a79.jpg" }, { "if": { @@ -60640,7 +60706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saeinstitute-7a11fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/saeinstitute-7a11fb.png" }, { "if": { @@ -60655,7 +60721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesroteskreuz-b90b9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-b90b9c.jpg" }, { "if": { @@ -60669,23 +60735,23 @@ } ] }, - "then": "./assets/data/nsi/logos/pilares-75e088.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pilares-75e088.jpg" }, { "if": { "and": [ "amenity=community_centre", - "official_name=The Royal British Legion", { "or": [ "brand=The Royal British Legion", "brand:wikidata=Q1621811", - "name=British Legion" + "name=British Legion", + "official_name=The Royal British Legion" ] } ] }, - "then": "./assets/data/nsi/logos/britishlegion-805bd2.png" + "then": "https://data.mapcomplete.org/nsi//logos/britishlegion-805bd2.png" }, { "if": { @@ -60700,7 +60766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etcvenues-e6785d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etcvenues-e6785d.jpg" }, { "if": { @@ -60716,7 +60782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altimadental-4d0a29.png" + "then": "https://data.mapcomplete.org/nsi//logos/altimadental-4d0a29.png" }, { "if": { @@ -60732,7 +60798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aspendental-708bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aspendental-708bdc.jpg" }, { "if": { @@ -60748,7 +60814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightnowdental-708bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightnowdental-708bdc.jpg" }, { "if": { @@ -60764,7 +60830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bupadentalcare-475ab9.png" + "then": "https://data.mapcomplete.org/nsi//logos/bupadentalcare-475ab9.png" }, { "if": { @@ -60780,7 +60846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/castledental-708bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/castledental-708bdc.jpg" }, { "if": { @@ -60796,7 +60862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comfortdental-708bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comfortdental-708bdc.jpg" }, { "if": { @@ -60812,7 +60878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/damiradentalstudios-475ab9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/damiradentalstudios-475ab9.jpg" }, { "if": { @@ -60828,7 +60894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dentix-1194d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/dentix-1194d5.png" }, { "if": { @@ -60844,7 +60910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/distriktstandvarden-a3d4a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/distriktstandvarden-a3d4a5.png" }, { "if": { @@ -60860,7 +60926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koolsmiles-708bdc.png" + "then": "https://data.mapcomplete.org/nsi//logos/koolsmiles-708bdc.png" }, { "if": { @@ -60876,7 +60942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meindentist-d9b135.png" + "then": "https://data.mapcomplete.org/nsi//logos/meindentist-d9b135.png" }, { "if": { @@ -60892,7 +60958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meritdental-708bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meritdental-708bdc.jpg" }, { "if": { @@ -60908,7 +60974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midwestdental-708bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midwestdental-708bdc.jpg" }, { "if": { @@ -60924,7 +60990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monarchdental-708bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monarchdental-708bdc.jpg" }, { "if": { @@ -60940,7 +61006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mondovidental-708bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mondovidental-708bdc.jpg" }, { "if": { @@ -60956,7 +61022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mydentist-475ab9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mydentist-475ab9.jpg" }, { "if": { @@ -60972,7 +61038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitaldent-23a76b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitaldent-23a76b.jpg" }, { "if": { @@ -60989,7 +61055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westerndental-e883ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westerndental-e883ee.jpg" }, { "if": { @@ -61006,7 +61072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westerndentalkids-2924e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westerndentalkids-2924e1.jpg" }, { "if": { @@ -61026,7 +61092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whiteessence-287a03.png" + "then": "https://data.mapcomplete.org/nsi//logos/whiteessence-287a03.png" }, { "if": { @@ -61042,7 +61108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/willamettedentalgroup-cbc6dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/willamettedentalgroup-cbc6dc.png" }, { "if": { @@ -61059,7 +61125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minuteclinic-e57666.png" + "then": "https://data.mapcomplete.org/nsi//logos/minuteclinic-e57666.png" }, { "if": { @@ -61076,7 +61142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pointvision-0fcd2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/pointvision-0fcd2d.png" }, { "if": { @@ -61093,7 +61159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rediclinic-e57666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rediclinic-e57666.jpg" }, { "if": { @@ -61109,7 +61175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sentara-b1bdb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sentara-b1bdb7.jpg" }, { "if": { @@ -61126,7 +61192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sutterwalkincare-b04fc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sutterwalkincare-b04fc4.jpg" }, { "if": { @@ -61143,7 +61209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walgreenshealthcareclinic-e57666.png" + "then": "https://data.mapcomplete.org/nsi//logos/walgreenshealthcareclinic-e57666.png" }, { "if": { @@ -61158,7 +61224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecf-7fb17b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ecf-7fb17b.png" }, { "if": { @@ -61173,7 +61239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pointcode-50cd0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pointcode-50cd0e.jpg" }, { "if": { @@ -61188,7 +61254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/youngdriversofcanada-b5a395.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/youngdriversofcanada-b5a395.jpg" }, { "if": { @@ -61205,7 +61271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andpizza-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andpizza-4d2ff4.jpg" }, { "if": { @@ -61222,7 +61288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/241pizza-e49d2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/241pizza-e49d2e.png" }, { "if": { @@ -61239,7 +61305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4fingerscrispychicken-aadea7.png" + "then": "https://data.mapcomplete.org/nsi//logos/4fingerscrispychicken-aadea7.png" }, { "if": { @@ -61256,7 +61322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aandw-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aandw-e49d2e.jpg" }, { "if": { @@ -61273,7 +61339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aandw-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aandw-4d2ff4.jpg" }, { "if": { @@ -61290,7 +61356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acaiconcept-989340.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acaiconcept-989340.jpg" }, { "if": { @@ -61307,7 +61373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aladinfoods-1fab0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aladinfoods-1fab0a.jpg" }, { "if": { @@ -61324,7 +61390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alice-8391d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alice-8391d7.jpg" }, { "if": { @@ -61341,7 +61407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alohapokeco-6b3f2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alohapokeco-6b3f2b.jpg" }, { "if": { @@ -61358,7 +61424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amatos-862b87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amatos-862b87.jpg" }, { "if": { @@ -61375,7 +61441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americandeli-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/americandeli-4d2ff4.png" }, { "if": { @@ -61392,7 +61458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andoks-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andoks-33d36e.jpg" }, { "if": { @@ -61409,7 +61475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/angelsburger-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/angelsburger-33d36e.jpg" }, { "if": { @@ -61426,7 +61492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anytyme-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anytyme-60a83c.jpg" }, { "if": { @@ -61443,7 +61509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apachepizza-1b23ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apachepizza-1b23ec.jpg" }, { "if": { @@ -61460,7 +61526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbys-3c08fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/arbys-3c08fb.png" }, { "if": { @@ -61477,7 +61543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arcticcircle-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arcticcircle-4d2ff4.jpg" }, { "if": { @@ -61494,7 +61560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asiahung-6ea233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asiahung-6ea233.jpg" }, { "if": { @@ -61511,7 +61577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aubonpain-9652cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aubonpain-9652cd.jpg" }, { "if": { @@ -61528,7 +61594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auntieannes-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/auntieannes-658eea.jpg" }, { "if": { @@ -61545,7 +61611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbops-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/bbops-4d2ff4.png" }, { "if": { @@ -61562,7 +61628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backyardburgers-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backyardburgers-4d2ff4.jpg" }, { "if": { @@ -61579,7 +61645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bafangdumpling-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bafangdumpling-4d2ff4.jpg" }, { "if": { @@ -61596,7 +61662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bafrakebab-3eab78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bafrakebab-3eab78.jpg" }, { "if": { @@ -61613,7 +61679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bagelcorner-11ef38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bagelcorner-11ef38.jpg" }, { "if": { @@ -61630,7 +61696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bageterieboulevard-57c7d8.png" + "then": "https://data.mapcomplete.org/nsi//logos/bageterieboulevard-57c7d8.png" }, { "if": { @@ -61647,25 +61713,25 @@ } ] }, - "then": "./assets/data/nsi/logos/baguetteandbaguette-8d41ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baguetteandbaguette-8d41ca.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Baja Fresh Mexican Grill", "takeaway=yes", { "or": [ "brand=Baja Fresh", "brand:wikidata=Q2880019", - "name=Baja Fresh" + "name=Baja Fresh", + "official_name=Baja Fresh Mexican Grill" ] } ] }, - "then": "./assets/data/nsi/logos/bajafresh-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/bajafresh-4d2ff4.png" }, { "if": { @@ -61682,7 +61748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baliwag-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baliwag-33d36e.jpg" }, { "if": { @@ -61699,7 +61765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barberitos-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barberitos-4d2ff4.jpg" }, { "if": { @@ -61716,7 +61782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barburrito-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barburrito-e49d2e.jpg" }, { "if": { @@ -61733,7 +61799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barburrito-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barburrito-45095e.jpg" }, { "if": { @@ -61750,7 +61816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basilbox-72d462.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/basilbox-72d462.jpg" }, { "if": { @@ -61767,7 +61833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baydoner-8ef00c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baydoner-8ef00c.jpg" }, { "if": { @@ -61784,7 +61850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bembos-654705.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bembos-654705.jpg" }, { "if": { @@ -61801,7 +61867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bento-44927b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bento-44927b.png" }, { "if": { @@ -61818,7 +61884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlindonerkebap-3eab78.png" + "then": "https://data.mapcomplete.org/nsi//logos/berlindonerkebap-3eab78.png" }, { "if": { @@ -61835,7 +61901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bettysburgers-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bettysburgers-d43c69.jpg" }, { "if": { @@ -61852,7 +61918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigapplebagels-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigapplebagels-4d2ff4.jpg" }, { "if": { @@ -61868,7 +61934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigbite-86f814.png" + "then": "https://data.mapcomplete.org/nsi//logos/bigbite-86f814.png" }, { "if": { @@ -61885,7 +61951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigfernand-8ddd61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigfernand-8ddd61.jpg" }, { "if": { @@ -61902,7 +61968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/billytacos-b4e8f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/billytacos-b4e8f3.jpg" }, { "if": { @@ -61919,7 +61985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biscuitville-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/biscuitville-4d2ff4.png" }, { "if": { @@ -61936,7 +62002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackjackpizza-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/blackjackpizza-4d2ff4.png" }, { "if": { @@ -61953,7 +62019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blakeslotaburger-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/blakeslotaburger-4d2ff4.png" }, { "if": { @@ -61970,7 +62036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blimpie-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blimpie-4d2ff4.jpg" }, { "if": { @@ -61987,7 +62053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluestardonuts-1e4066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluestardonuts-1e4066.jpg" }, { "if": { @@ -62004,7 +62070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e1f395-1fab0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/e1f395-1fab0a.png" }, { "if": { @@ -62021,7 +62087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boardandbrew-2b51a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/boardandbrew-2b51a7.png" }, { "if": { @@ -62038,7 +62104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobs-02d9fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobs-02d9fb.jpg" }, { "if": { @@ -62055,25 +62121,25 @@ } ] }, - "then": "./assets/data/nsi/logos/bobablastic-c26124.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobablastic-c26124.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=chicken", - "official_name=Bojangles' Famous Chicken 'n Biscuits", "takeaway=yes", { "or": [ "brand=Bojangles'", "brand:wikidata=Q891163", - "name=Bojangles'" + "name=Bojangles'", + "official_name=Bojangles' Famous Chicken 'n Biscuits" ] } ] }, - "then": "./assets/data/nsi/logos/bojangles-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bojangles-4d2ff4.jpg" }, { "if": { @@ -62090,7 +62156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boojum-1b23ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boojum-1b23ec.jpg" }, { "if": { @@ -62107,7 +62173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boosterjuice-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boosterjuice-e49d2e.jpg" }, { "if": { @@ -62124,7 +62190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bostonmarket-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/bostonmarket-4d2ff4.png" }, { "if": { @@ -62141,7 +62207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bramladage-60a83c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bramladage-60a83c.png" }, { "if": { @@ -62159,7 +62225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/braums-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/braums-4d2ff4.jpg" }, { "if": { @@ -62176,7 +62242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brezelkonig-157c6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brezelkonig-157c6b.jpg" }, { "if": { @@ -62196,7 +62262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bronsonsburgers-8bf212.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bronsonsburgers-8bf212.jpg" }, { "if": { @@ -62214,7 +62280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brueggersbagels-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brueggersbagels-4d2ff4.jpg" }, { "if": { @@ -62231,7 +62297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brutbutcher-11ef38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brutbutcher-11ef38.jpg" }, { "if": { @@ -62248,7 +62314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bubbakoosburritos-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bubbakoosburritos-4d2ff4.jpg" }, { "if": { @@ -62265,7 +62331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bufkes-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bufkes-60a83c.jpg" }, { "if": { @@ -62282,7 +62348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buona-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buona-4d2ff4.jpg" }, { "if": { @@ -62299,7 +62365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-6ff656.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-6ff656.jpg" }, { "if": { @@ -62316,7 +62382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgermachine-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgermachine-33d36e.jpg" }, { "if": { @@ -62333,7 +62399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerurge-d43c69.png" + "then": "https://data.mapcomplete.org/nsi//logos/burgerurge-d43c69.png" }, { "if": { @@ -62350,7 +62416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerfi-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerfi-4d2ff4.jpg" }, { "if": { @@ -62367,7 +62433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerfuel-ba88db.png" + "then": "https://data.mapcomplete.org/nsi//logos/burgerfuel-ba88db.png" }, { "if": { @@ -62388,7 +62454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerim-dbdcb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerim-dbdcb8.jpg" }, { "if": { @@ -62405,7 +62471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerim-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerim-4d2ff4.jpg" }, { "if": { @@ -62423,7 +62489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerme-29392a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerme-29392a.jpg" }, { "if": { @@ -62440,7 +62506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgermeister-6ea233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgermeister-6ea233.jpg" }, { "if": { @@ -62462,7 +62528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgersbar-dbdcb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgersbar-dbdcb8.jpg" }, { "if": { @@ -62479,7 +62545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerville-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerville-4d2ff4.jpg" }, { "if": { @@ -62496,7 +62562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burritocompany-6ea233.png" + "then": "https://data.mapcomplete.org/nsi//logos/burritocompany-6ea233.png" }, { "if": { @@ -62513,7 +62579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bushschicken-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bushschicken-4d2ff4.jpg" }, { "if": { @@ -62530,7 +62596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafeyumm-647c80.png" + "then": "https://data.mapcomplete.org/nsi//logos/cafeyumm-647c80.png" }, { "if": { @@ -62547,7 +62613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafezupas-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafezupas-4d2ff4.jpg" }, { "if": { @@ -62564,7 +62630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiafishgrill-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/californiafishgrill-4d2ff4.png" }, { "if": { @@ -62581,7 +62647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiasandwiches-72d462.png" + "then": "https://data.mapcomplete.org/nsi//logos/californiasandwiches-72d462.png" }, { "if": { @@ -62598,7 +62664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/callapizza-6ea233.png" + "then": "https://data.mapcomplete.org/nsi//logos/callapizza-6ea233.png" }, { "if": { @@ -62615,7 +62681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caprinospizza-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caprinospizza-45095e.jpg" }, { "if": { @@ -62632,25 +62698,25 @@ } ] }, - "then": "./assets/data/nsi/logos/capriottis-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/capriottis-4d2ff4.png" }, { "if": { "and": [ "amenity=fast_food", "cuisine=seafood", - "official_name=Captain D's Seafood Kitchen", "takeaway=yes", { "or": [ "brand=Captain D's", "brand:wikidata=Q5036616", - "name=Captain D's" + "name=Captain D's", + "official_name=Captain D's Seafood Kitchen" ] } ] }, - "then": "./assets/data/nsi/logos/captainds-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/captainds-4d2ff4.png" }, { "if": { @@ -62667,7 +62733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carlsjr-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carlsjr-9b2018.jpg" }, { "if": { @@ -62684,7 +62750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chamastacos-11ef38.png" + "then": "https://data.mapcomplete.org/nsi//logos/chamastacos-11ef38.png" }, { "if": { @@ -62701,7 +62767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/champschicken-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/champschicken-4d2ff4.png" }, { "if": { @@ -62718,7 +62784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charleysphillysteaks-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/charleysphillysteaks-4d2ff4.jpg" }, { "if": { @@ -62735,7 +62801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/checkers-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/checkers-9b2018.jpg" }, { "if": { @@ -62753,7 +62819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cheezzypizza-0ae65d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cheezzypizza-0ae65d.jpg" }, { "if": { @@ -62770,7 +62836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chefette-40578b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chefette-40578b.jpg" }, { "if": { @@ -62787,7 +62853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chesters-e5e868.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chesters-e5e868.jpg" }, { "if": { @@ -62804,7 +62870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chezashton-e49d2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/chezashton-e49d2e.png" }, { "if": { @@ -62821,7 +62887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chickfila-437ecc.png" + "then": "https://data.mapcomplete.org/nsi//logos/chickfila-437ecc.png" }, { "if": { @@ -62838,7 +62904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chickencottage-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chickencottage-45095e.jpg" }, { "if": { @@ -62855,7 +62921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chickenexpress-aef212.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chickenexpress-aef212.jpg" }, { "if": { @@ -62872,7 +62938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chickenrepublic-3eb11d.png" + "then": "https://data.mapcomplete.org/nsi//logos/chickenrepublic-3eb11d.png" }, { "if": { @@ -62889,7 +62955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chickensaladchick-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chickensaladchick-4d2ff4.jpg" }, { "if": { @@ -62907,7 +62973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chickenshop-8bf212.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chickenshop-8bf212.jpg" }, { "if": { @@ -62925,7 +62991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chickenstreet-f60ed0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chickenstreet-f60ed0.jpg" }, { "if": { @@ -62942,7 +63008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chickentreat-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chickentreat-d43c69.jpg" }, { "if": { @@ -62960,7 +63026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chigoxflip-034122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chigoxflip-034122.jpg" }, { "if": { @@ -62977,7 +63043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chilango-1abd07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chilango-1abd07.jpg" }, { "if": { @@ -62994,7 +63060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinainbox-ffb863.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinainbox-ffb863.jpg" }, { "if": { @@ -63011,25 +63077,25 @@ } ] }, - "then": "./assets/data/nsi/logos/chinawok-76be89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinawok-76be89.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Chipotle Mexican Grill", "takeaway=yes", { "or": [ "brand=Chipotle", "brand:wikidata=Q465751", - "name=Chipotle" + "name=Chipotle", + "official_name=Chipotle Mexican Grill" ] } ] }, - "then": "./assets/data/nsi/logos/chipotle-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chipotle-9b2018.jpg" }, { "if": { @@ -63046,7 +63112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chookstogo-33d36e.png" + "then": "https://data.mapcomplete.org/nsi//logos/chookstogo-33d36e.png" }, { "if": { @@ -63063,7 +63129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chopchop-72e24f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chopchop-72e24f.jpg" }, { "if": { @@ -63080,7 +63146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chopstix-2dcf5d.png" + "then": "https://data.mapcomplete.org/nsi//logos/chopstix-2dcf5d.png" }, { "if": { @@ -63097,7 +63163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chopt-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chopt-4d2ff4.jpg" }, { "if": { @@ -63114,7 +63180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chowking-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chowking-33d36e.jpg" }, { "if": { @@ -63131,7 +63197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/churchschicken-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/churchschicken-9b2018.jpg" }, { "if": { @@ -63150,7 +63216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cigkoftem-7c8ccc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cigkoftem-7c8ccc.jpg" }, { "if": { @@ -63167,7 +63233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cinnabon-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cinnabon-9b2018.jpg" }, { "if": { @@ -63184,7 +63250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/classcroute-77e135.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/classcroute-77e135.jpg" }, { "if": { @@ -63201,7 +63267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleanjuice-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cleanjuice-4d2ff4.jpg" }, { "if": { @@ -63218,7 +63284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocodimama-1abd07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocodimama-1abd07.jpg" }, { "if": { @@ -63235,7 +63301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cojean-11ef38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cojean-11ef38.jpg" }, { "if": { @@ -63252,7 +63318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cookdoor-5f7df6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cookdoor-5f7df6.jpg" }, { "if": { @@ -63269,7 +63335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cookout-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cookout-4d2ff4.jpg" }, { "if": { @@ -63286,25 +63352,25 @@ } ] }, - "then": "./assets/data/nsi/logos/cosi-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosi-4d2ff4.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Costa Vida Fresh Mexican Grill", "takeaway=yes", { "or": [ "brand=Costa Vida", "brand:wikidata=Q108403192", - "name=Costa Vida" + "name=Costa Vida", + "official_name=Costa Vida Fresh Mexican Grill" ] } ] }, - "then": "./assets/data/nsi/logos/costavida-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/costavida-4d2ff4.jpg" }, { "if": { @@ -63321,7 +63387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcofoodcourt-2909a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcofoodcourt-2909a2.svg" }, { "if": { @@ -63338,7 +63404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cotesushi-11ef38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cotesushi-11ef38.jpg" }, { "if": { @@ -63355,7 +63421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cousinssubs-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cousinssubs-4d2ff4.jpg" }, { "if": { @@ -63373,25 +63439,25 @@ } ] }, - "then": "./assets/data/nsi/logos/crosstown-1abd07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crosstown-1abd07.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=pizza", - "official_name=Crust Gourmet Pizza Bar", "takeaway=yes", { "or": [ "brand=Crust", "brand:wikidata=Q100792715", - "name=Crust" + "name=Crust", + "official_name=Crust Gourmet Pizza Bar" ] } ] }, - "then": "./assets/data/nsi/logos/crust-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crust-d43c69.jpg" }, { "if": { @@ -63408,7 +63474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cultures-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cultures-e49d2e.jpg" }, { "if": { @@ -63425,7 +63491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/culvers-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/culvers-4d2ff4.jpg" }, { "if": { @@ -63442,7 +63508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dangelogrilledsandwiches-ea8dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dangelogrilledsandwiches-ea8dd1.jpg" }, { "if": { @@ -63459,7 +63525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dairyqueen-9b2018.png" + "then": "https://data.mapcomplete.org/nsi//logos/dairyqueen-9b2018.png" }, { "if": { @@ -63476,7 +63542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danielsdonuts-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/danielsdonuts-d43c69.jpg" }, { "if": { @@ -63493,7 +63559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daveshotchicken-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daveshotchicken-4d2ff4.jpg" }, { "if": { @@ -63510,7 +63576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daylightdonuts-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daylightdonuts-4d2ff4.jpg" }, { "if": { @@ -63527,7 +63593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deananddavid-f9c825.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deananddavid-f9c825.jpg" }, { "if": { @@ -63544,7 +63610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/debonairspizza-10dad6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/debonairspizza-10dad6.jpg" }, { "if": { @@ -63561,7 +63627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deltaco-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deltaco-4d2ff4.jpg" }, { "if": { @@ -63578,7 +63644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deliway-68a7b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deliway-68a7b8.jpg" }, { "if": { @@ -63596,7 +63662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dig-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dig-4d2ff4.jpg" }, { "if": { @@ -63613,7 +63679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/districttaco-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/districttaco-4d2ff4.jpg" }, { "if": { @@ -63630,7 +63696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doghaus-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doghaus-4d2ff4.jpg" }, { "if": { @@ -63647,7 +63713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominos-609f2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dominos-609f2a.jpg" }, { "if": { @@ -63664,7 +63730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donc-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donc-33d36e.jpg" }, { "if": { @@ -63681,7 +63747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b373c6-50e0ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/b373c6-50e0ae.jpg" }, { "if": { @@ -63698,7 +63764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donutking-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donutking-d43c69.jpg" }, { "if": { @@ -63715,7 +63781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doughnuttime-1abd07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doughnuttime-1abd07.jpg" }, { "if": { @@ -63732,7 +63798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dqgrillandchill-d2abf0.png" + "then": "https://data.mapcomplete.org/nsi//logos/dqgrillandchill-d2abf0.png" }, { "if": { @@ -63749,7 +63815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duckdonuts-6333a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duckdonuts-6333a9.jpg" }, { "if": { @@ -63767,7 +63833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunkin-e46fb5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunkin-e46fb5.jpg" }, { "if": { @@ -63784,7 +63850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunkincoffee-34e6e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunkincoffee-34e6e8.jpg" }, { "if": { @@ -63805,7 +63871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunkindonuts-65b4e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunkindonuts-65b4e8.jpg" }, { "if": { @@ -63822,7 +63888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastofchicagopizza-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastofchicagopizza-4d2ff4.jpg" }, { "if": { @@ -63839,7 +63905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eazie-60a83c.png" + "then": "https://data.mapcomplete.org/nsi//logos/eazie-60a83c.png" }, { "if": { @@ -63857,7 +63923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eddyspizza-0ae65d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eddyspizza-0ae65d.jpg" }, { "if": { @@ -63874,7 +63940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eegees-22d252.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eegees-22d252.jpg" }, { "if": { @@ -63891,7 +63957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eggslut-26c4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eggslut-26c4d5.jpg" }, { "if": { @@ -63909,25 +63975,25 @@ } ] }, - "then": "./assets/data/nsi/logos/einsteinbrosbagels-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/einsteinbrosbagels-4d2ff4.png" }, { "if": { "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=Hamburguesas El Corral", "takeaway=yes", { "or": [ "brand=El Corral", "brand:wikidata=Q4703422", - "name=El Corral" + "name=El Corral", + "official_name=Hamburguesas El Corral" ] } ] }, - "then": "./assets/data/nsi/logos/elcorral-9bc101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elcorral-9bc101.jpg" }, { "if": { @@ -63944,7 +64010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elpolloloco-bca76b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elpolloloco-bca76b.jpg" }, { "if": { @@ -63961,7 +64027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elrinconsito-7f5bd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elrinconsito-7f5bd1.jpg" }, { "if": { @@ -63978,7 +64044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elevationburger-203491.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elevationburger-203491.jpg" }, { "if": { @@ -63995,25 +64061,25 @@ } ] }, - "then": "./assets/data/nsi/logos/epicwingsnthings-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epicwingsnthings-4d2ff4.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=sandwich", - "official_name=Erbert & Gerbert's Sandwich Shop", "takeaway=yes", { "or": [ "brand=Erbert & Gerbert's", "brand:wikidata=Q5385097", - "name=Erbert & Gerbert's" + "name=Erbert & Gerbert's", + "official_name=Erbert & Gerbert's Sandwich Shop" ] } ] }, - "then": "./assets/data/nsi/logos/erbertandgerberts-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erbertandgerberts-4d2ff4.jpg" }, { "if": { @@ -64030,7 +64096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eriksdelicafe-ffd771.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eriksdelicafe-ffd771.jpg" }, { "if": { @@ -64047,7 +64113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esteler77-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esteler77-9b2018.jpg" }, { "if": { @@ -64064,7 +64130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everbowl-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/everbowl-4d2ff4.png" }, { "if": { @@ -64081,7 +64147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everest-6b115c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/everest-6b115c.jpg" }, { "if": { @@ -64098,7 +64164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergreens-c26124.png" + "then": "https://data.mapcomplete.org/nsi//logos/evergreens-c26124.png" }, { "if": { @@ -64116,7 +64182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exki-a3472e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exki-a3472e.jpg" }, { "if": { @@ -64133,7 +64199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/extrawurst-6ea233.png" + "then": "https://data.mapcomplete.org/nsi//logos/extrawurst-6ea233.png" }, { "if": { @@ -64150,7 +64216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/extremepita-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/extremepita-d2abf0.jpg" }, { "if": { @@ -64167,7 +64233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/extremepizza-9b2018.png" + "then": "https://data.mapcomplete.org/nsi//logos/extremepizza-9b2018.png" }, { "if": { @@ -64185,7 +64251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ezellschicken-c26124.png" + "then": "https://data.mapcomplete.org/nsi//logos/ezellschicken-c26124.png" }, { "if": { @@ -64202,7 +64268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmerboys-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmerboys-4d2ff4.png" }, { "if": { @@ -64220,25 +64286,25 @@ } ] }, - "then": "./assets/data/nsi/logos/fasfuburgers-d62fc7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fasfuburgers-d62fc7.svg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Fat Bastard Burrito Co.", "takeaway=yes", { "or": [ "brand=Fat Bastard Burrito", "brand:wikidata=Q123865546", - "name=Fat Bastard Burrito" + "name=Fat Bastard Burrito", + "official_name=Fat Bastard Burrito Co." ] } ] }, - "then": "./assets/data/nsi/logos/fatbastardburrito-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fatbastardburrito-e49d2e.jpg" }, { "if": { @@ -64255,7 +64321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fatburger-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fatburger-d2abf0.jpg" }, { "if": { @@ -64272,7 +64338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/favoritechickenandribs-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/favoritechickenandribs-45095e.jpg" }, { "if": { @@ -64289,7 +64355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fazolis-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/fazolis-4d2ff4.png" }, { "if": { @@ -64306,7 +64372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/febo-60a83c.png" + "then": "https://data.mapcomplete.org/nsi//logos/febo-60a83c.png" }, { "if": { @@ -64323,7 +64389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/figarospizza-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/figarospizza-9b2018.jpg" }, { "if": { @@ -64340,7 +64406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fireawaypizza-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fireawaypizza-658eea.jpg" }, { "if": { @@ -64357,7 +64423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firehousesubs-d2abf0.png" + "then": "https://data.mapcomplete.org/nsi//logos/firehousesubs-d2abf0.png" }, { "if": { @@ -64374,7 +64440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fishaways-7fdf05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fishaways-7fdf05.jpg" }, { "if": { @@ -64391,25 +64457,25 @@ } ] }, - "then": "./assets/data/nsi/logos/fishbowl-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fishbowl-d43c69.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=Five Guys Burgers and Fries", "takeaway=yes", { "or": [ "brand=Five Guys", "brand:wikidata=Q1131810", - "name=Five Guys" + "name=Five Guys", + "official_name=Five Guys Burgers and Fries" ] } ] }, - "then": "./assets/data/nsi/logos/fiveguys-c83461.png" + "then": "https://data.mapcomplete.org/nsi//logos/fiveguys-c83461.png" }, { "if": { @@ -64427,7 +64493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fivestarchicken-aba431.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fivestarchicken-aba431.jpg" }, { "if": { @@ -64444,7 +64510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flippinpizza-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flippinpizza-4d2ff4.jpg" }, { "if": { @@ -64462,7 +64528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flowerburger-4e7c43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flowerburger-4e7c43.jpg" }, { "if": { @@ -64479,7 +64545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodmaster-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodmaster-60a83c.jpg" }, { "if": { @@ -64496,7 +64562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fostersfreeze-ffd771.png" + "then": "https://data.mapcomplete.org/nsi//logos/fostersfreeze-ffd771.png" }, { "if": { @@ -64513,7 +64579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fourstarpizza-f334ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fourstarpizza-f334ca.jpg" }, { "if": { @@ -64530,7 +64596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franksnburgers-33d36e.png" + "then": "https://data.mapcomplete.org/nsi//logos/franksnburgers-33d36e.png" }, { "if": { @@ -64547,7 +64613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frasses-72e24f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frasses-72e24f.jpg" }, { "if": { @@ -64564,25 +64630,25 @@ } ] }, - "then": "./assets/data/nsi/logos/freddyfresh-6ea233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freddyfresh-6ea233.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=ice_cream;burger", - "official_name=Freddy's Frozen Custard & Steakburgers", "takeaway=yes", { "or": [ "brand=Freddy's", "brand:wikidata=Q5496837", - "name=Freddy's" + "name=Freddy's", + "official_name=Freddy's Frozen Custard & Steakburgers" ] } ] }, - "then": "./assets/data/nsi/logos/freddys-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freddys-4d2ff4.jpg" }, { "if": { @@ -64599,7 +64665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freebirds-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freebirds-4d2ff4.jpg" }, { "if": { @@ -64616,7 +64682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshens-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshens-4d2ff4.jpg" }, { "if": { @@ -64633,7 +64699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshslicepizza-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshslicepizza-e49d2e.jpg" }, { "if": { @@ -64651,7 +64717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frisby-9bc101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frisby-9bc101.jpg" }, { "if": { @@ -64668,7 +64734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frittenwerk-6ea233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frittenwerk-6ea233.jpg" }, { "if": { @@ -64685,7 +64751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gladalle-11ef38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gladalle-11ef38.jpg" }, { "if": { @@ -64702,7 +64768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gabrielpizza-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gabrielpizza-e49d2e.jpg" }, { "if": { @@ -64719,7 +64785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galitos-00ffa4.png" + "then": "https://data.mapcomplete.org/nsi//logos/galitos-00ffa4.png" }, { "if": { @@ -64736,7 +64802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/germandonerkebab-85aed8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/germandonerkebab-85aed8.jpg" }, { "if": { @@ -64753,7 +64819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ginospizza-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ginospizza-e49d2e.jpg" }, { "if": { @@ -64770,7 +64836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gioninospizzeria-f9b143.png" + "then": "https://data.mapcomplete.org/nsi//logos/gioninospizzeria-f9b143.png" }, { "if": { @@ -64787,7 +64853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giraffas-ffb863.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giraffas-ffb863.jpg" }, { "if": { @@ -64804,7 +64870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giraffestop-c9a924.png" + "then": "https://data.mapcomplete.org/nsi//logos/giraffestop-c9a924.png" }, { "if": { @@ -64822,7 +64888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldstarchili-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldstarchili-4d2ff4.jpg" }, { "if": { @@ -64839,7 +64905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenchick-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenchick-4d2ff4.jpg" }, { "if": { @@ -64856,7 +64922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenkrust-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenkrust-d2abf0.jpg" }, { "if": { @@ -64874,25 +64940,25 @@ } ] }, - "then": "./assets/data/nsi/logos/golivadapav-aba431.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/golivadapav-aba431.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=burger;ice_cream", - "official_name=Good Times Burgers & Frozen Custard", "takeaway=yes", { "or": [ "brand=Good Times", "brand:wikidata=Q5583024", - "name=Good Times" + "name=Good Times", + "official_name=Good Times Burgers & Frozen Custard" ] } ] }, - "then": "./assets/data/nsi/logos/goodtimes-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodtimes-4d2ff4.jpg" }, { "if": { @@ -64910,7 +64976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goschsylt-6ea233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goschsylt-6ea233.jpg" }, { "if": { @@ -64928,7 +64994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gourmetburgerkitchen-2db3d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gourmetburgerkitchen-2db3d2.jpg" }, { "if": { @@ -64945,7 +65011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatamericancookies-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/greatamericancookies-4d2ff4.png" }, { "if": { @@ -64962,7 +65028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatwraps-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/greatwraps-4d2ff4.png" }, { "if": { @@ -64979,7 +65045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenwich-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenwich-33d36e.jpg" }, { "if": { @@ -64996,7 +65062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greggs-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greggs-45095e.jpg" }, { "if": { @@ -65013,7 +65079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grilld-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grilld-d43c69.jpg" }, { "if": { @@ -65030,7 +65096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guthries-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guthries-4d2ff4.jpg" }, { "if": { @@ -65047,7 +65113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guzmanygomez-2f4cab.png" + "then": "https://data.mapcomplete.org/nsi//logos/guzmanygomez-2f4cab.png" }, { "if": { @@ -65064,7 +65130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/habibs-4b8fdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/habibs-4b8fdf.jpg" }, { "if": { @@ -65083,7 +65149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halalfriedchicken-7b9471.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halalfriedchicken-7b9471.jpg" }, { "if": { @@ -65101,7 +65167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haldirams-aba431.png" + "then": "https://data.mapcomplete.org/nsi//logos/haldirams-aba431.png" }, { "if": { @@ -65118,7 +65184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hangryjoeshotchicken-10afbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hangryjoeshotchicken-10afbb.jpg" }, { "if": { @@ -65135,7 +65201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hardees-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hardees-9b2018.jpg" }, { "if": { @@ -65152,7 +65218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haroldschickenshack-f76ba8.png" + "then": "https://data.mapcomplete.org/nsi//logos/haroldschickenshack-f76ba8.png" }, { "if": { @@ -65169,7 +65235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harryramsdens-2dcf5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harryramsdens-2dcf5d.jpg" }, { "if": { @@ -65186,7 +65252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harveys-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harveys-e49d2e.jpg" }, { "if": { @@ -65203,7 +65269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hell-6fb486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hell-6fb486.jpg" }, { "if": { @@ -65220,7 +65286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/herocertifiedburgers-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/herocertifiedburgers-e49d2e.jpg" }, { "if": { @@ -65237,7 +65303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hesburger-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hesburger-9b2018.jpg" }, { "if": { @@ -65255,26 +65321,26 @@ } ] }, - "then": "./assets/data/nsi/logos/hokben-034122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hokben-034122.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=american", - "official_name=The Honey Baked Ham Company", "takeaway=yes", { "or": [ "alt_name=HoneyBaked Ham", "brand=Honey Baked Ham", "brand:wikidata=Q5893363", - "name=Honey Baked Ham" + "name=Honey Baked Ham", + "official_name=The Honey Baked Ham Company" ] } ] }, - "then": "./assets/data/nsi/logos/honeybakedham-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/honeybakedham-4d2ff4.png" }, { "if": { @@ -65291,7 +65357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hopdoddyburgerbar-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hopdoddyburgerbar-4d2ff4.jpg" }, { "if": { @@ -65308,7 +65374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotdogonastick-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotdogonastick-4d2ff4.jpg" }, { "if": { @@ -65326,7 +65392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotheadburritos-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotheadburritos-4d2ff4.jpg" }, { "if": { @@ -65343,7 +65409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hungryhowies-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hungryhowies-4d2ff4.jpg" }, { "if": { @@ -65360,7 +65426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hungryjacks-d43c69.png" + "then": "https://data.mapcomplete.org/nsi//logos/hungryjacks-d43c69.png" }, { "if": { @@ -65377,25 +65443,25 @@ } ] }, - "then": "./assets/data/nsi/logos/huntbrotherspizza-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntbrotherspizza-4d2ff4.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=burger;fries;ice_cream", - "official_name=Hwy55 Burgers, Shakes & Fries", "takeaway=yes", { "or": [ "brand=Hwy55", "brand:wikidata=Q17183098", - "name=Hwy55" + "name=Hwy55", + "official_name=Hwy55 Burgers, Shakes & Fries" ] } ] }, - "then": "./assets/data/nsi/logos/hwy55-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hwy55-4d2ff4.jpg" }, { "if": { @@ -65413,7 +65479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikesloveandsandwiches-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikesloveandsandwiches-4d2ff4.jpg" }, { "if": { @@ -65430,7 +65496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikeabistro-713634.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikeabistro-713634.jpg" }, { "if": { @@ -65449,7 +65515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikearestaurant-f1d275.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikearestaurant-f1d275.jpg" }, { "if": { @@ -65466,7 +65532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/immergrun-6ea233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/immergrun-6ea233.jpg" }, { "if": { @@ -65483,7 +65549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imospizza-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imospizza-4d2ff4.jpg" }, { "if": { @@ -65500,7 +65566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innoutburger-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/innoutburger-4d2ff4.jpg" }, { "if": { @@ -65517,7 +65583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/islandpoke-421c9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/islandpoke-421c9e.jpg" }, { "if": { @@ -65534,7 +65600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itsu-56a2ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itsu-56a2ff.jpg" }, { "if": { @@ -65552,7 +65618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/izzosillegalburrito-6a04a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/izzosillegalburrito-6a04a1.jpg" }, { "if": { @@ -65570,7 +65636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jco-67fcce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jco-67fcce.jpg" }, { "if": { @@ -65587,7 +65653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jackinthebox-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jackinthebox-4d2ff4.jpg" }, { "if": { @@ -65604,7 +65670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacks-4d2ff4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jacks-4d2ff4.svg" }, { "if": { @@ -65622,7 +65688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jamba-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/jamba-4d2ff4.png" }, { "if": { @@ -65639,7 +65705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jenospizza-9bc101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jenospizza-9bc101.jpg" }, { "if": { @@ -65657,25 +65723,25 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseymikessubs-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseymikessubs-4d2ff4.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=sandwich", - "official_name=Jimmy John's Gourmet Sandwiches", "takeaway=yes", { "or": [ "brand=Jimmy John's", "brand:wikidata=Q1689380", - "name=Jimmy John's" + "name=Jimmy John's", + "official_name=Jimmy John's Gourmet Sandwiches" ] } ] }, - "then": "./assets/data/nsi/logos/jimmyjohns-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/jimmyjohns-4d2ff4.png" }, { "if": { @@ -65692,7 +65758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jimmythegreek-bf41de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jimmythegreek-bf41de.jpg" }, { "if": { @@ -65709,7 +65775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnnysburgercompany-60a83c.png" + "then": "https://data.mapcomplete.org/nsi//logos/johnnysburgercompany-60a83c.png" }, { "if": { @@ -65726,7 +65792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jollibee-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jollibee-9b2018.jpg" }, { "if": { @@ -65743,7 +65809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juiceitup-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juiceitup-4d2ff4.jpg" }, { "if": { @@ -65760,7 +65826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juicepress-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/juicepress-4d2ff4.png" }, { "if": { @@ -65777,7 +65843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juiceland-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/juiceland-4d2ff4.png" }, { "if": { @@ -65794,7 +65860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jumboking-aba431.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jumboking-aba431.jpg" }, { "if": { @@ -65811,7 +65877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jumpjuice-f334ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jumpjuice-f334ca.jpg" }, { "if": { @@ -65828,7 +65894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jureskogs-72e24f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jureskogs-72e24f.jpg" }, { "if": { @@ -65845,7 +65911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justsalad-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/justsalad-4d2ff4.jpg" }, { "if": { @@ -65862,25 +65928,25 @@ } ] }, - "then": "./assets/data/nsi/logos/kaatizone-aba431.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaatizone-aba431.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=kebab", - "official_name=Kebab Turki Baba Rafi", "takeaway=yes", { "or": [ "brand=KBTR", "brand:wikidata=Q6382370", - "name=KBTR" + "name=KBTR", + "official_name=Kebab Turki Baba Rafi" ] } ] }, - "then": "./assets/data/nsi/logos/kbtr-9b2018.png" + "then": "https://data.mapcomplete.org/nsi//logos/kbtr-9b2018.png" }, { "if": { @@ -65897,7 +65963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kebabking-3eab78.png" + "then": "https://data.mapcomplete.org/nsi//logos/kebabking-3eab78.png" }, { "if": { @@ -65914,7 +65980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kebhouze-65215d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kebhouze-65215d.jpg" }, { "if": { @@ -65931,7 +65997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kellyscajungrill-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kellyscajungrill-4d2ff4.jpg" }, { "if": { @@ -65948,7 +66014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kernelspopcorn-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kernelspopcorn-e49d2e.jpg" }, { "if": { @@ -65981,7 +66047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kfc-c522e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kfc-c522e4.jpg" }, { "if": { @@ -65999,7 +66065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kfc-434b12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kfc-434b12.jpg" }, { "if": { @@ -66016,7 +66082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kilimanjaro-3eb11d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kilimanjaro-3eb11d.jpg" }, { "if": { @@ -66033,7 +66099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingofdonair-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingofdonair-e49d2e.jpg" }, { "if": { @@ -66050,7 +66116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingtaco-ffd771.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingtaco-ffd771.jpg" }, { "if": { @@ -66067,7 +66133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kippie-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kippie-60a83c.jpg" }, { "if": { @@ -66084,7 +66150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kochloffel-af032a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kochloffel-af032a.jpg" }, { "if": { @@ -66101,7 +66167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kokoriko-9bc101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kokoriko-9bc101.jpg" }, { "if": { @@ -66118,7 +66184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kokoro-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kokoro-45095e.jpg" }, { "if": { @@ -66135,7 +66201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komagene-8ef00c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komagene-8ef00c.jpg" }, { "if": { @@ -66152,7 +66218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kotipizza-3dd6de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kotipizza-3dd6de.jpg" }, { "if": { @@ -66169,7 +66235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krispykreme-fd6225.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krispykreme-fd6225.jpg" }, { "if": { @@ -66186,7 +66252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krispykrunchychicken-bca76b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krispykrunchychicken-bca76b.jpg" }, { "if": { @@ -66205,7 +66271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krowarzywa-3eab78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krowarzywa-3eab78.jpg" }, { "if": { @@ -66222,25 +66288,25 @@ } ] }, - "then": "./assets/data/nsi/logos/krystal-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krystal-4d2ff4.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=sushi", - "official_name=Kura Revolving Sushi Bar", "takeaway=yes", { "or": [ "brand=Kura Sushi", "brand:wikidata=Q6445491", - "name=Kura Sushi" + "name=Kura Sushi", + "official_name=Kura Revolving Sushi Bar" ] } ] }, - "then": "./assets/data/nsi/logos/kurasushi-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kurasushi-4d2ff4.jpg" }, { "if": { @@ -66257,7 +66323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwalitaria-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwalitaria-60a83c.jpg" }, { "if": { @@ -66275,7 +66341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lartigiano-6b115c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lartigiano-6b115c.jpg" }, { "if": { @@ -66292,7 +66358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landldriveinn-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landldriveinn-4d2ff4.jpg" }, { "if": { @@ -66309,7 +66375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landlhawaiianbarbecue-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landlhawaiianbarbecue-4d2ff4.jpg" }, { "if": { @@ -66326,7 +66392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/labelleprovince-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/labelleprovince-e49d2e.jpg" }, { "if": { @@ -66344,7 +66410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laboiteapizza-e4dee6.png" + "then": "https://data.mapcomplete.org/nsi//logos/laboiteapizza-e4dee6.png" }, { "if": { @@ -66361,7 +66427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacroissanterie-affad8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacroissanterie-affad8.jpg" }, { "if": { @@ -66379,7 +66445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laluchasangucheriacriolla-1a06c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laluchasangucheriacriolla-1a06c0.jpg" }, { "if": { @@ -66396,7 +66462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapiadineria-b4e8f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/lapiadineria-b4e8f3.png" }, { "if": { @@ -66413,7 +66479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasalsa-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lasalsa-4d2ff4.jpg" }, { "if": { @@ -66430,7 +66496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafleurrestaurant-e49d2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/lafleurrestaurant-e49d2e.png" }, { "if": { @@ -66447,7 +66513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laredotacocompany-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/laredotacocompany-4d2ff4.png" }, { "if": { @@ -66464,7 +66530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laughingplanet-959927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laughingplanet-959927.jpg" }, { "if": { @@ -66481,7 +66547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lekiosqueapizzas-1781f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lekiosqueapizzas-1781f3.jpg" }, { "if": { @@ -66498,7 +66564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/letacosdelyon-508db0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/letacosdelyon-508db0.jpg" }, { "if": { @@ -66515,7 +66581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leesfamousrecipechicken-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leesfamousrecipechicken-d2abf0.jpg" }, { "if": { @@ -66532,7 +66598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leessandwiches-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/leessandwiches-4d2ff4.png" }, { "if": { @@ -66549,7 +66615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lemonsharkpoke-44dd3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lemonsharkpoke-44dd3c.png" }, { "if": { @@ -66566,7 +66632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leon-04566a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leon-04566a.jpg" }, { "if": { @@ -66583,7 +66649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lesburgersdepapa-11ef38.png" + "then": "https://data.mapcomplete.org/nsi//logos/lesburgersdepapa-11ef38.png" }, { "if": { @@ -66600,7 +66666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlebigburger-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/littlebigburger-4d2ff4.jpg" }, { "if": { @@ -66617,7 +66683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlecaesars-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/littlecaesars-9b2018.jpg" }, { "if": { @@ -66636,7 +66702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/locoburrito-c56583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/locoburrito-c56583.jpg" }, { "if": { @@ -66653,7 +66719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lolanenas-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lolanenas-33d36e.jpg" }, { "if": { @@ -66670,7 +66736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longjohnsilvers-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longjohnsilvers-9b2018.jpg" }, { "if": { @@ -66688,7 +66754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lordofthefries-183b7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/lordofthefries-183b7d.png" }, { "if": { @@ -66705,7 +66771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotsapizza-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotsapizza-33d36e.jpg" }, { "if": { @@ -66722,7 +66788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotteria-9b2018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotteria-9b2018.jpg" }, { "if": { @@ -66739,7 +66805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisianafamousfriedchicken-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/louisianafamousfriedchicken-4d2ff4.png" }, { "if": { @@ -66756,7 +66822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lvivcroissants-1b3cb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lvivcroissants-1b3cb0.jpg" }, { "if": { @@ -66773,7 +66839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maloa-accea8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maloa-accea8.jpg" }, { "if": { @@ -66790,7 +66856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/makby-381458.png" + "then": "https://data.mapcomplete.org/nsi//logos/makby-381458.png" }, { "if": { @@ -66808,7 +66874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malvon-d3d66f.png" + "then": "https://data.mapcomplete.org/nsi//logos/malvon-d3d66f.png" }, { "if": { @@ -66825,7 +66891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manchuwok-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manchuwok-d2abf0.jpg" }, { "if": { @@ -66842,7 +66908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manginasal-33d36e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manginasal-33d36e.svg" }, { "if": { @@ -66859,7 +66925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manhattanbagel-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manhattanbagel-4d2ff4.jpg" }, { "if": { @@ -66876,7 +66942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marcospizza-c4364d.png" + "then": "https://data.mapcomplete.org/nsi//logos/marcospizza-c4364d.png" }, { "if": { @@ -66894,7 +66960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marrybrown-9b2018.png" + "then": "https://data.mapcomplete.org/nsi//logos/marrybrown-9b2018.png" }, { "if": { @@ -66912,7 +66978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marugameudon-a3c3a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marugameudon-a3c3a3.jpg" }, { "if": { @@ -66929,7 +66995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marybrowns-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marybrowns-e49d2e.jpg" }, { "if": { @@ -66946,7 +67012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/max-829f63.png" + "then": "https://data.mapcomplete.org/nsi//logos/max-829f63.png" }, { "if": { @@ -66963,7 +67029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-d24be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-d24be7.jpg" }, { "if": { @@ -66980,7 +67046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediterraneo-654705.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mediterraneo-654705.jpg" }, { "if": { @@ -66997,7 +67063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megamatte-ffb863.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megamatte-ffb863.jpg" }, { "if": { @@ -67014,7 +67080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mendocinofarms-c19f86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mendocinofarms-c19f86.jpg" }, { "if": { @@ -67033,7 +67099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mesonsandwiches-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mesonsandwiches-4d2ff4.jpg" }, { "if": { @@ -67050,7 +67116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mesopotamia-6566c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mesopotamia-6566c7.jpg" }, { "if": { @@ -67067,7 +67133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miamigrill-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miamigrill-4d2ff4.jpg" }, { "if": { @@ -67084,7 +67150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mightytaco-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mightytaco-4d2ff4.jpg" }, { "if": { @@ -67101,25 +67167,25 @@ } ] }, - "then": "./assets/data/nsi/logos/migrostakeaway-2fcd78.png" + "then": "https://data.mapcomplete.org/nsi//logos/migrostakeaway-2fcd78.png" }, { "if": { "and": [ "amenity=fast_food", "cuisine=sandwich", - "official_name=Milio's Sandwiches", "takeaway=yes", { "or": [ "brand=Milio's", "brand:wikidata=Q6851893", - "name=Milio's" + "name=Milio's", + "official_name=Milio's Sandwiches" ] } ] }, - "then": "./assets/data/nsi/logos/milios-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milios-4d2ff4.jpg" }, { "if": { @@ -67136,7 +67202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minuteburger-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minuteburger-33d36e.jpg" }, { "if": { @@ -67153,7 +67219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missmillies-1abd07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missmillies-1abd07.jpg" }, { "if": { @@ -67178,7 +67244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/misterdonut-60a4d5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/misterdonut-60a4d5.svg" }, { "if": { @@ -67195,7 +67261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mizzonispizza-f334ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mizzonispizza-f334ca.jpg" }, { "if": { @@ -67212,7 +67278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mleczarniajerozolimska-3eab78.png" + "then": "https://data.mapcomplete.org/nsi//logos/mleczarniajerozolimska-3eab78.png" }, { "if": { @@ -67229,7 +67295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/momen-f39225.png" + "then": "https://data.mapcomplete.org/nsi//logos/momen-f39225.png" }, { "if": { @@ -67246,7 +67312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mochachos-7fdf05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mochachos-7fdf05.jpg" }, { "if": { @@ -67263,7 +67329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mochinut-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mochinut-4d2ff4.jpg" }, { "if": { @@ -67280,7 +67346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/modpizza-9cbad3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/modpizza-9cbad3.jpg" }, { "if": { @@ -67297,7 +67363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moesitaliansandwiches-3bfec2.png" + "then": "https://data.mapcomplete.org/nsi//logos/moesitaliansandwiches-3bfec2.png" }, { "if": { @@ -67315,7 +67381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moessouthwestgrill-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moessouthwestgrill-4d2ff4.jpg" }, { "if": { @@ -67332,7 +67398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mooyah-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mooyah-4d2ff4.jpg" }, { "if": { @@ -67349,7 +67415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mostaza-c1cb89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mostaza-c1cb89.jpg" }, { "if": { @@ -67366,7 +67432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrbiggs-282078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrbiggs-282078.jpg" }, { "if": { @@ -67383,7 +67449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrhero-f9b143.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrhero-f9b143.jpg" }, { "if": { @@ -67400,7 +67466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrliempo-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrliempo-33d36e.jpg" }, { "if": { @@ -67418,7 +67484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrpizza-c56583.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrpizza-c56583.png" }, { "if": { @@ -67435,7 +67501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrsub-658eea.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrsub-658eea.png" }, { "if": { @@ -67452,7 +67518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrbeastburger-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrbeastburger-4d2ff4.png" }, { "if": { @@ -67469,7 +67535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muchasgraciasmexicanfood-c26124.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/muchasgraciasmexicanfood-c26124.jpg" }, { "if": { @@ -67486,7 +67552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muchoburrito-437ecc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/muchoburrito-437ecc.jpg" }, { "if": { @@ -67503,7 +67569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nathans-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/nathans-4d2ff4.png" }, { "if": { @@ -67521,7 +67587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neat-70efcc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neat-70efcc.jpg" }, { "if": { @@ -67538,7 +67604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nekterjuicebar-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/nekterjuicebar-4d2ff4.png" }, { "if": { @@ -67557,7 +67623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newdeli-dbdcb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newdeli-dbdcb8.jpg" }, { "if": { @@ -67574,7 +67640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkfries-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkfries-e49d2e.jpg" }, { "if": { @@ -67591,7 +67657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkpizza-29392a.png" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkpizza-29392a.png" }, { "if": { @@ -67609,7 +67675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nextlevelburger-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nextlevelburger-4d2ff4.jpg" }, { "if": { @@ -67626,25 +67692,25 @@ } ] }, - "then": "./assets/data/nsi/logos/nickthegreek-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nickthegreek-4d2ff4.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=bagel", - "official_name=Noah's New York Bagels", "takeaway=yes", { "or": [ "brand=Noah's Bagels", "brand:wikidata=Q64517373", - "name=Noah's Bagels" + "name=Noah's Bagels", + "official_name=Noah's New York Bagels" ] } ] }, - "then": "./assets/data/nsi/logos/noahsbagels-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noahsbagels-4d2ff4.jpg" }, { "if": { @@ -67661,7 +67727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noodlebox-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noodlebox-d43c69.jpg" }, { "if": { @@ -67678,7 +67744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noodlecanteen-3a7e06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noodlecanteen-3a7e06.jpg" }, { "if": { @@ -67695,7 +67761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noodleking-94178c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noodleking-94178c.jpg" }, { "if": { @@ -67712,7 +67778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordsee-da5f5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordsee-da5f5f.jpg" }, { "if": { @@ -67729,7 +67795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norkys-654705.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norkys-654705.jpg" }, { "if": { @@ -67746,7 +67812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/numpang-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/numpang-4d2ff4.jpg" }, { "if": { @@ -67763,7 +67829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otacos-33c697.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/otacos-33c697.jpg" }, { "if": { @@ -67780,7 +67846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oakberryacaibowls-5bb50d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oakberryacaibowls-5bb50d.jpg" }, { "if": { @@ -67797,7 +67863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ochaya-5e80eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ochaya-5e80eb.jpg" }, { "if": { @@ -67816,7 +67882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldchangkee-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldchangkee-658eea.jpg" }, { "if": { @@ -67837,7 +67903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oliverssupersandwiches-9f9722.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oliverssupersandwiches-9f9722.jpg" }, { "if": { @@ -67855,7 +67921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ooweevegan-1abd07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ooweevegan-1abd07.jpg" }, { "if": { @@ -67872,7 +67938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oporto-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oporto-d43c69.jpg" }, { "if": { @@ -67889,7 +67955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangejulius-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orangejulius-d2abf0.jpg" }, { "if": { @@ -67907,43 +67973,43 @@ } ] }, - "then": "./assets/data/nsi/logos/osmows-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osmows-d2abf0.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=P. Terry's Burger Stand", "takeaway=yes", { "or": [ "brand=P. Terry's", "brand:wikidata=Q19903521", - "name=P. Terry's" + "name=P. Terry's", + "official_name=P. Terry's Burger Stand" ] } ] }, - "then": "./assets/data/nsi/logos/pterrys-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pterrys-4d2ff4.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=Pal's Sudden Service", "takeaway=yes", { "or": [ "brand=Pal's", "brand:wikidata=Q7126094", - "name=Pal's" + "name=Pal's", + "official_name=Pal's Sudden Service" ] } ] }, - "then": "./assets/data/nsi/logos/pals-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pals-4d2ff4.jpg" }, { "if": { @@ -67960,7 +68026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panago-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panago-e49d2e.jpg" }, { "if": { @@ -67977,7 +68043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pandaexpress-658eea.png" + "then": "https://data.mapcomplete.org/nsi//logos/pandaexpress-658eea.png" }, { "if": { @@ -67995,7 +68061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panerabread-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panerabread-d2abf0.jpg" }, { "if": { @@ -68012,7 +68078,24 @@ } ] }, - "then": "./assets/data/nsi/logos/panos-2bde2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panos-2bde2f.jpg" + }, + { + "if": { + "and": [ + "amenity=fast_food", + "cuisine=sandwich", + "takeaway=yes", + { + "or": [ + "brand=Pans & Company", + "brand:wikidata=Q11697586", + "name=Pans & Company" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/pansandcompany-b2cd69.png" }, { "if": { @@ -68029,25 +68112,25 @@ } ] }, - "then": "./assets/data/nsi/logos/papajohns-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/papajohns-658eea.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=pizza", - "official_name=Papa Murphy's Take 'N' Bake Pizza", "takeaway=only", { "or": [ "brand=Papa Murphy's", "brand:wikidata=Q7132349", - "name=Papa Murphy's" + "name=Papa Murphy's", + "official_name=Papa Murphy's Take 'N' Bake Pizza" ] } ] }, - "then": "./assets/data/nsi/logos/papamurphys-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/papamurphys-d2abf0.jpg" }, { "if": { @@ -68065,7 +68148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/papaspizza-0ae65d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/papaspizza-0ae65d.jpg" }, { "if": { @@ -68082,7 +68165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pdq-f02697.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pdq-f02697.jpg" }, { "if": { @@ -68099,7 +68182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pennstation-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pennstation-4d2ff4.jpg" }, { "if": { @@ -68116,7 +68199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepes-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pepes-45095e.jpg" }, { "if": { @@ -68133,7 +68216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepperonis-1e257d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pepperonis-1e257d.jpg" }, { "if": { @@ -68151,7 +68234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfk-32490c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pfk-32490c.jpg" }, { "if": { @@ -68168,7 +68251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phillypretzelfactory-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phillypretzelfactory-4d2ff4.jpg" }, { "if": { @@ -68185,7 +68268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pitapit-658eea.png" + "then": "https://data.mapcomplete.org/nsi//logos/pitapit-658eea.png" }, { "if": { @@ -68203,7 +68286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pitaya-9eb450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pitaya-9eb450.jpg" }, { "if": { @@ -68220,7 +68303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizza73-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizza73-e49d2e.jpg" }, { "if": { @@ -68237,7 +68320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzabolis-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzabolis-4d2ff4.jpg" }, { "if": { @@ -68254,7 +68337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzacapers-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzacapers-d43c69.jpg" }, { "if": { @@ -68271,7 +68354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzaday-50e0ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzaday-50e0ae.jpg" }, { "if": { @@ -68288,7 +68371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzagogo-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzagogo-45095e.jpg" }, { "if": { @@ -68306,7 +68389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzahutdelivery-ff7864.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzahutdelivery-ff7864.png" }, { "if": { @@ -68324,7 +68407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzahutdelivery-45095e.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzahutdelivery-45095e.png" }, { "if": { @@ -68341,7 +68424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzahutexpress-658eea.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzahutexpress-658eea.png" }, { "if": { @@ -68358,7 +68441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzainn-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzainn-658eea.jpg" }, { "if": { @@ -68375,7 +68458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzalab-1fab0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzalab-1fab0a.png" }, { "if": { @@ -68392,7 +68475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzamax-6ea233.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzamax-6ea233.png" }, { "if": { @@ -68409,7 +68492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzamax-f334ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzamax-f334ca.jpg" }, { "if": { @@ -68426,7 +68509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzamovil-34e6e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzamovil-34e6e8.jpg" }, { "if": { @@ -68443,7 +68526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzanova-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzanova-658eea.jpg" }, { "if": { @@ -68460,7 +68543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzapai-11ef38.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzapai-11ef38.png" }, { "if": { @@ -68477,7 +68560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzaperfect-7fdf05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzaperfect-7fdf05.jpg" }, { "if": { @@ -68494,7 +68577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzapizza-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzapizza-e49d2e.jpg" }, { "if": { @@ -68511,7 +68594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzasalvatore-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzasalvatore-e49d2e.jpg" }, { "if": { @@ -68528,7 +68611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzaschmizza-c26124.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzaschmizza-c26124.jpg" }, { "if": { @@ -68544,7 +68627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzaunion-8bf212.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzaunion-8bf212.png" }, { "if": { @@ -68561,7 +68644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzabakeren-4d7dcd.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzabakeren-4d7dcd.png" }, { "if": { @@ -68578,7 +68661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzaville-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzaville-e49d2e.jpg" }, { "if": { @@ -68595,7 +68678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/planetsmoothie-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/planetsmoothie-4d2ff4.png" }, { "if": { @@ -68612,7 +68695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/playabowls-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/playabowls-4d2ff4.jpg" }, { "if": { @@ -68629,7 +68712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pokawa-6a2ed9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pokawa-6a2ed9.jpg" }, { "if": { @@ -68646,7 +68729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pokebros-eebea8.png" + "then": "https://data.mapcomplete.org/nsi//logos/pokebros-eebea8.png" }, { "if": { @@ -68663,7 +68746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pokehouse-b87c08.png" + "then": "https://data.mapcomplete.org/nsi//logos/pokehouse-b87c08.png" }, { "if": { @@ -68680,7 +68763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pollocampero-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pollocampero-658eea.jpg" }, { "if": { @@ -68697,7 +68780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pollogranjero-916d19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pollogranjero-916d19.jpg" }, { "if": { @@ -68714,7 +68797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pollogranjero-41b0d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pollogranjero-41b0d1.jpg" }, { "if": { @@ -68731,7 +68814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pollotropical-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pollotropical-658eea.jpg" }, { "if": { @@ -68748,7 +68831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pommedepain-508db0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pommedepain-508db0.jpg" }, { "if": { @@ -68765,25 +68848,25 @@ } ] }, - "then": "./assets/data/nsi/logos/pommesfreunde-2a245c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pommesfreunde-2a245c.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=chicken", - "official_name=Popeyes Louisiana Kitchen", "takeaway=yes", { "or": [ "brand=Popeyes", "brand:wikidata=Q1330910", - "name=Popeyes" + "name=Popeyes", + "official_name=Popeyes Louisiana Kitchen" ] } ] }, - "then": "./assets/data/nsi/logos/popeyes-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popeyes-658eea.jpg" }, { "if": { @@ -68800,7 +68883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portofsubs-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portofsubs-4d2ff4.jpg" }, { "if": { @@ -68817,7 +68900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portillos-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/portillos-4d2ff4.png" }, { "if": { @@ -68834,25 +68917,25 @@ } ] }, - "then": "./assets/data/nsi/logos/potatocorner-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potatocorner-658eea.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=sandwich", - "official_name=Potbelly Sandwich Works", "takeaway=yes", { "or": [ "brand=Potbelly", "brand:wikidata=Q7234777", - "name=Potbelly" + "name=Potbelly", + "official_name=Potbelly Sandwich Works" ] } ] }, - "then": "./assets/data/nsi/logos/potbelly-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potbelly-4d2ff4.jpg" }, { "if": { @@ -68869,7 +68952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pressedjuicery-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pressedjuicery-4d2ff4.jpg" }, { "if": { @@ -68886,7 +68969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/presto-9bc101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/presto-9bc101.jpg" }, { "if": { @@ -68904,7 +68987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pretamanger-4f61b1.png" + "then": "https://data.mapcomplete.org/nsi//logos/pretamanger-4f61b1.png" }, { "if": { @@ -68921,7 +69004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pretzelmaker-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pretzelmaker-4d2ff4.jpg" }, { "if": { @@ -68938,43 +69021,43 @@ } ] }, - "then": "./assets/data/nsi/logos/pure-8bf212.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pure-8bf212.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Qdoba Mexican Eats", "takeaway=yes", { "or": [ "brand=Qdoba", "brand:wikidata=Q1363885", - "name=Qdoba" + "name=Qdoba", + "official_name=Qdoba Mexican Eats" ] } ] }, - "then": "./assets/data/nsi/logos/qdoba-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qdoba-d2abf0.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Quesada Burritos & Tacos", "takeaway=yes", { "or": [ "brand=Quesada", "brand:wikidata=Q66070360", - "name=Quesada" + "name=Quesada", + "official_name=Quesada Burritos & Tacos" ] } ] }, - "then": "./assets/data/nsi/logos/quesada-e49d2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/quesada-e49d2e.png" }, { "if": { @@ -68991,7 +69074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quick-9fdafe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quick-9fdafe.jpg" }, { "if": { @@ -69008,25 +69091,25 @@ } ] }, - "then": "./assets/data/nsi/logos/quiznos-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quiznos-658eea.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=chicken", - "official_name=Raising Cane's Chicken Fingers", "takeaway=yes", { "or": [ "brand=Raising Cane's", "brand:wikidata=Q7285144", - "name=Raising Cane's" + "name=Raising Cane's", + "official_name=Raising Cane's Chicken Fingers" ] } ] }, - "then": "./assets/data/nsi/logos/raisingcanes-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raisingcanes-4d2ff4.jpg" }, { "if": { @@ -69043,7 +69126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rallys-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rallys-4d2ff4.jpg" }, { "if": { @@ -69060,7 +69143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redrooster-d43c69.png" + "then": "https://data.mapcomplete.org/nsi//logos/redrooster-d43c69.png" }, { "if": { @@ -69077,7 +69160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/risachicken-6ea233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/risachicken-6ea233.jpg" }, { "if": { @@ -69095,7 +69178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robeks-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robeks-4d2ff4.jpg" }, { "if": { @@ -69113,7 +69196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robinsdonuts-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robinsdonuts-e49d2e.jpg" }, { "if": { @@ -69130,7 +69213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rodilla-34e6e8.png" + "then": "https://data.mapcomplete.org/nsi//logos/rodilla-34e6e8.png" }, { "if": { @@ -69147,7 +69230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rokys-654705.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rokys-654705.jpg" }, { "if": { @@ -69164,7 +69247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rolld-d43c69.png" + "then": "https://data.mapcomplete.org/nsi//logos/rolld-d43c69.png" }, { "if": { @@ -69181,25 +69264,25 @@ } ] }, - "then": "./assets/data/nsi/logos/romanspizza-054529.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romanspizza-054529.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=pizza", - "official_name=Rosati's Authentic Chicago Pizza", "takeaway=yes", { "or": [ "brand=Rosati's", "brand:wikidata=Q65052579", - "name=Rosati's" + "name=Rosati's", + "official_name=Rosati's Authentic Chicago Pizza" ] } ] }, - "then": "./assets/data/nsi/logos/rosatis-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosatis-4d2ff4.jpg" }, { "if": { @@ -69216,7 +69299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royrogers-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/royrogers-4d2ff4.png" }, { "if": { @@ -69233,25 +69316,25 @@ } ] }, - "then": "./assets/data/nsi/logos/royaldonuts-6ea233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royaldonuts-6ea233.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Rubio's Coastal Grill", "takeaway=yes", { "or": [ "brand=Rubio's", "brand:wikidata=Q7376154", - "name=Rubio's" + "name=Rubio's", + "official_name=Rubio's Coastal Grill" ] } ] }, - "then": "./assets/data/nsi/logos/rubios-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rubios-4d2ff4.jpg" }, { "if": { @@ -69268,7 +69351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rubysdiner-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/rubysdiner-4d2ff4.png" }, { "if": { @@ -69285,7 +69368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/runza-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/runza-4d2ff4.jpg" }, { "if": { @@ -69302,7 +69385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rushbowls-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rushbowls-4d2ff4.jpg" }, { "if": { @@ -69319,7 +69402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salspizza-3a7e06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salspizza-3a7e06.jpg" }, { "if": { @@ -69336,7 +69419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saladandgo-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saladandgo-4d2ff4.jpg" }, { "if": { @@ -69353,7 +69436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saladworks-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saladworks-4d2ff4.jpg" }, { "if": { @@ -69371,7 +69454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salsaritasfreshmexicangrill-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salsaritasfreshmexicangrill-4d2ff4.jpg" }, { "if": { @@ -69388,7 +69471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandwichqbano-9bc101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandwichqbano-9bc101.jpg" }, { "if": { @@ -69405,7 +69488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saravanaabhavan-9b2018.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saravanaabhavan-9b2018.svg" }, { "if": { @@ -69422,7 +69505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarkujapan-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/sarkujapan-4d2ff4.png" }, { "if": { @@ -69439,7 +69522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarpinospizzeria-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sarpinospizzeria-4d2ff4.jpg" }, { "if": { @@ -69456,7 +69539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sausagesaloon-080667.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sausagesaloon-080667.jpg" }, { "if": { @@ -69473,7 +69556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbarro-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sbarro-658eea.jpg" }, { "if": { @@ -69490,7 +69573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schlotzskys-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schlotzskys-4d2ff4.jpg" }, { "if": { @@ -69507,7 +69590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schnitz-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schnitz-d43c69.jpg" }, { "if": { @@ -69524,7 +69607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretrecipe-541408.png" + "then": "https://data.mapcomplete.org/nsi//logos/secretrecipe-541408.png" }, { "if": { @@ -69542,7 +69625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shabutogo-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shabutogo-60a83c.jpg" }, { "if": { @@ -69559,7 +69642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shakeshack-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shakeshack-658eea.jpg" }, { "if": { @@ -69576,7 +69659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shakeaway-3bfa70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shakeaway-3bfa70.jpg" }, { "if": { @@ -69593,7 +69676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shipleydonuts-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shipleydonuts-4d2ff4.jpg" }, { "if": { @@ -69610,7 +69693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sibylla-bdca1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sibylla-bdca1d.jpg" }, { "if": { @@ -69627,7 +69710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simplesimonspizza-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/simplesimonspizza-4d2ff4.jpg" }, { "if": { @@ -69644,7 +69727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slapfish-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slapfish-4d2ff4.jpg" }, { "if": { @@ -69661,7 +69744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slimchickens-5b2e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slimchickens-5b2e82.jpg" }, { "if": { @@ -69678,7 +69761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smashburger-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smashburger-d2abf0.jpg" }, { "if": { @@ -69695,7 +69778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smileys-6ea233.png" + "then": "https://data.mapcomplete.org/nsi//logos/smileys-6ea233.png" }, { "if": { @@ -69712,7 +69795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smokinjoes-d1dde8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smokinjoes-d1dde8.jpg" }, { "if": { @@ -69729,7 +69812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smoothieking-d0a8c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smoothieking-d0a8c2.jpg" }, { "if": { @@ -69746,7 +69829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smullers-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smullers-60a83c.jpg" }, { "if": { @@ -69763,7 +69846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snarfssandwiches-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snarfssandwiches-4d2ff4.jpg" }, { "if": { @@ -69781,7 +69864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonic-658eea.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sonic-658eea.svg" }, { "if": { @@ -69798,7 +69881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soulorigin-d43c69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/soulorigin-d43c69.jpg" }, { "if": { @@ -69815,7 +69898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spareribexpress-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spareribexpress-60a83c.jpg" }, { "if": { @@ -69832,7 +69915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/specialtys-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/specialtys-4d2ff4.png" }, { "if": { @@ -69849,7 +69932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spizzico-7eb3e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spizzico-7eb3e4.jpg" }, { "if": { @@ -69866,7 +69949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spoleto-ffb863.png" + "then": "https://data.mapcomplete.org/nsi//logos/spoleto-ffb863.png" }, { "if": { @@ -69883,7 +69966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sthubertexpress-e49d2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sthubertexpress-e49d2e.png" }, { "if": { @@ -69900,7 +69983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steaknshake-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steaknshake-4d2ff4.jpg" }, { "if": { @@ -69917,7 +70000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steakescape-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/steakescape-4d2ff4.png" }, { "if": { @@ -69934,7 +70017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steers-7fdf05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steers-7fdf05.jpg" }, { "if": { @@ -69951,7 +70034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/subway-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/subway-658eea.jpg" }, { "if": { @@ -69968,7 +70051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sukihana-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sukihana-4d2ff4.jpg" }, { "if": { @@ -69985,7 +70068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sumosalad-474d0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sumosalad-474d0a.jpg" }, { "if": { @@ -70002,7 +70085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superchix-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superchix-4d2ff4.jpg" }, { "if": { @@ -70019,7 +70102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supermacs-2dcf5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supermacs-2dcf5d.jpg" }, { "if": { @@ -70036,7 +70119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushishop-e49d2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sushishop-e49d2e.png" }, { "if": { @@ -70053,7 +70136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushishop-ac545e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushishop-ac545e.jpg" }, { "if": { @@ -70070,7 +70153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushistory-091bb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushistory-091bb1.jpg" }, { "if": { @@ -70087,7 +70170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushidog-8bf212.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushidog-8bf212.jpg" }, { "if": { @@ -70104,7 +70187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushipoint-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushipoint-60a83c.jpg" }, { "if": { @@ -70125,7 +70208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/susuandsons-dbdcb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/susuandsons-dbdcb8.jpg" }, { "if": { @@ -70142,7 +70225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sweetgreen-4d2ff4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sweetgreen-4d2ff4.svg" }, { "if": { @@ -70160,7 +70243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swingkitchen-157c6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swingkitchen-157c6b.jpg" }, { "if": { @@ -70177,7 +70260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacobar-72e24f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacobar-72e24f.jpg" }, { "if": { @@ -70194,7 +70277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacobell-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacobell-658eea.jpg" }, { "if": { @@ -70211,7 +70294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacobellcantina-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacobellcantina-4d2ff4.jpg" }, { "if": { @@ -70228,7 +70311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacobueno-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacobueno-4d2ff4.jpg" }, { "if": { @@ -70245,7 +70328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacocabana-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacocabana-4d2ff4.jpg" }, { "if": { @@ -70262,7 +70345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacocasa-1ab7d8.png" + "then": "https://data.mapcomplete.org/nsi//logos/tacocasa-1ab7d8.png" }, { "if": { @@ -70279,7 +70362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacodelmar-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacodelmar-d2abf0.jpg" }, { "if": { @@ -70296,7 +70379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacojohns-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacojohns-4d2ff4.jpg" }, { "if": { @@ -70313,7 +70396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacomayo-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacomayo-4d2ff4.jpg" }, { "if": { @@ -70330,7 +70413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacomundo-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacomundo-60a83c.jpg" }, { "if": { @@ -70347,7 +70430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacopalenque-bca76b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacopalenque-bca76b.jpg" }, { "if": { @@ -70364,7 +70447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacotime-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacotime-d2abf0.jpg" }, { "if": { @@ -70381,7 +70464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacotime-7f5bd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacotime-7f5bd1.jpg" }, { "if": { @@ -70401,7 +70484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tashirpizza-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tashirpizza-90e404.jpg" }, { "if": { @@ -70419,7 +70502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasteefriedchicken-3eb11d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tasteefriedchicken-3eb11d.jpg" }, { "if": { @@ -70436,7 +70519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tavukdunyasi-8ef00c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tavukdunyasi-8ef00c.jpg" }, { "if": { @@ -70454,7 +70537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tazikismediterraneancafe-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/tazikismediterraneancafe-4d2ff4.png" }, { "if": { @@ -70471,7 +70554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tedshotdogs-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tedshotdogs-4d2ff4.jpg" }, { "if": { @@ -70488,7 +70571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teddysbiggerburgers-7b6848.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teddysbiggerburgers-7b6848.jpg" }, { "if": { @@ -70505,7 +70588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telepizza-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telepizza-658eea.jpg" }, { "if": { @@ -70523,7 +70606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/templeofseitan-8bf212.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/templeofseitan-8bf212.jpg" }, { "if": { @@ -70540,7 +70623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tendergreens-ffd771.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tendergreens-ffd771.jpg" }, { "if": { @@ -70557,7 +70640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teriyakiexperience-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teriyakiexperience-e49d2e.jpg" }, { "if": { @@ -70574,7 +70657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teriyakimadness-53d9d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teriyakimadness-53d9d9.jpg" }, { "if": { @@ -70592,7 +70675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texschickenandburgers-577b43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texschickenandburgers-577b43.jpg" }, { "if": { @@ -70610,7 +70693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texaschicken-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texaschicken-658eea.jpg" }, { "if": { @@ -70627,7 +70710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thaiexpress-d2abf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thaiexpress-d2abf0.jpg" }, { "if": { @@ -70644,7 +70727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thaiexpress-6f8102.png" + "then": "https://data.mapcomplete.org/nsi//logos/thaiexpress-6f8102.png" }, { "if": { @@ -70662,7 +70745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thechickenriceshop-658eea.png" + "then": "https://data.mapcomplete.org/nsi//logos/thechickenriceshop-658eea.png" }, { "if": { @@ -70679,7 +70762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thefishandchipco-7fdf05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thefishandchipco-7fdf05.jpg" }, { "if": { @@ -70696,7 +70779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theflamebroiler-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theflamebroiler-4d2ff4.jpg" }, { "if": { @@ -70715,7 +70798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegoodburger-34e6e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegoodburger-34e6e8.jpg" }, { "if": { @@ -70734,7 +70817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehabitburgergrill-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehabitburgergrill-4d2ff4.jpg" }, { "if": { @@ -70752,7 +70835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehalalguys-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehalalguys-4d2ff4.jpg" }, { "if": { @@ -70770,7 +70853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thepizzacompany-abbb1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thepizzacompany-abbb1f.jpg" }, { "if": { @@ -70787,7 +70870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theyardmilkshakebar-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theyardmilkshakebar-4d2ff4.jpg" }, { "if": { @@ -70808,7 +70891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tkkfriedchicken-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tkkfriedchicken-4d2ff4.jpg" }, { "if": { @@ -70825,7 +70908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/togos-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/togos-4d2ff4.jpg" }, { "if": { @@ -70842,7 +70925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokyotokyo-33d36e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokyotokyo-33d36e.jpg" }, { "if": { @@ -70859,7 +70942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tommisburgerjoint-db46fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tommisburgerjoint-db46fe.jpg" }, { "if": { @@ -70876,7 +70959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topperspizza-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topperspizza-e49d2e.jpg" }, { "if": { @@ -70893,7 +70976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topspizza-1abd07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topspizza-1abd07.jpg" }, { "if": { @@ -70910,7 +70993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torchystacos-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torchystacos-4d2ff4.jpg" }, { "if": { @@ -70927,7 +71010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tropicalsmoothiecafe-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tropicalsmoothiecafe-4d2ff4.jpg" }, { "if": { @@ -70944,7 +71027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tubbys-d6ff93.png" + "then": "https://data.mapcomplete.org/nsi//logos/tubbys-d6ff93.png" }, { "if": { @@ -70961,7 +71044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tudorsbiscuitworld-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tudorsbiscuitworld-4d2ff4.jpg" }, { "if": { @@ -70979,7 +71062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkis-94178c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/turkis-94178c.svg" }, { "if": { @@ -70996,7 +71079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuttipizza-11ef38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuttipizza-11ef38.jpg" }, { "if": { @@ -71013,7 +71096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/twohands-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/twohands-4d2ff4.jpg" }, { "if": { @@ -71030,7 +71113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugo-9b6fa9.png" + "then": "https://data.mapcomplete.org/nsi//logos/ugo-9b6fa9.png" }, { "if": { @@ -71047,7 +71130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ulingroasters-33d36e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ulingroasters-33d36e.png" }, { "if": { @@ -71065,7 +71148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/urbanplates-ffd771.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/urbanplates-ffd771.jpg" }, { "if": { @@ -71087,7 +71170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ustadonerci-4d8bc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ustadonerci-4d8bc5.jpg" }, { "if": { @@ -71104,7 +71187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valentine-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valentine-e49d2e.jpg" }, { "if": { @@ -71122,7 +71205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veggiegrill-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veggiegrill-4d2ff4.jpg" }, { "if": { @@ -71139,7 +71222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verhage-60a83c.png" + "then": "https://data.mapcomplete.org/nsi//logos/verhage-60a83c.png" }, { "if": { @@ -71156,7 +71239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/victoricos-c26124.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/victoricos-c26124.jpg" }, { "if": { @@ -71173,7 +71256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villamadina-e49d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villamadina-e49d2e.jpg" }, { "if": { @@ -71190,7 +71273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vocellipizza-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vocellipizza-4d2ff4.jpg" }, { "if": { @@ -71207,7 +71290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voodoodoughnut-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/voodoodoughnut-4d2ff4.jpg" }, { "if": { @@ -71224,7 +71307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wabagrill-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/wabagrill-4d2ff4.png" }, { "if": { @@ -71242,7 +71325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wahoosfishtaco-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wahoosfishtaco-4d2ff4.jpg" }, { "if": { @@ -71259,7 +71342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wasabi-7f8d78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wasabi-7f8d78.jpg" }, { "if": { @@ -71276,7 +71359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waybackburgers-658eea.png" + "then": "https://data.mapcomplete.org/nsi//logos/waybackburgers-658eea.png" }, { "if": { @@ -71293,7 +71376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wendys-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wendys-658eea.jpg" }, { "if": { @@ -71310,7 +71393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westcornwallpastyco-d78b85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westcornwallpastyco-d78b85.jpg" }, { "if": { @@ -71327,7 +71410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wetzelspretzels-d2abf0.png" + "then": "https://data.mapcomplete.org/nsi//logos/wetzelspretzels-d2abf0.png" }, { "if": { @@ -71344,7 +71427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whataburger-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whataburger-4d2ff4.jpg" }, { "if": { @@ -71361,7 +71444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whichwich-536de9.png" + "then": "https://data.mapcomplete.org/nsi//logos/whichwich-536de9.png" }, { "if": { @@ -71378,7 +71461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whitecastle-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whitecastle-4d2ff4.jpg" }, { "if": { @@ -71395,7 +71478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienerschnitzel-4d2ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienerschnitzel-4d2ff4.png" }, { "if": { @@ -71412,7 +71495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wimpy-658eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wimpy-658eea.jpg" }, { "if": { @@ -71429,7 +71512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winchellsdonuthouse-96f2d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winchellsdonuthouse-96f2d5.jpg" }, { "if": { @@ -71446,7 +71529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wingstop-72c67c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wingstop-72c67c.jpg" }, { "if": { @@ -71463,7 +71546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wingstreet-1c2e03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wingstreet-1c2e03.jpg" }, { "if": { @@ -71480,7 +71563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wokaholic-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wokaholic-4d2ff4.jpg" }, { "if": { @@ -71497,7 +71580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woktogo-60a83c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woktogo-60a83c.jpg" }, { "if": { @@ -71514,7 +71597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woktowalk-f5ada9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woktowalk-f5ada9.jpg" }, { "if": { @@ -71531,7 +71614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wowmomo-aba431.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wowmomo-aba431.jpg" }, { "if": { @@ -71548,7 +71631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wrapchic-45095e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wrapchic-45095e.jpg" }, { "if": { @@ -71565,7 +71648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xianfamousfoods-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xianfamousfoods-4d2ff4.jpg" }, { "if": { @@ -71583,7 +71666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yardsalepizza-8bf212.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yardsalepizza-8bf212.jpg" }, { "if": { @@ -71601,7 +71684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yolk-8bf212.png" + "then": "https://data.mapcomplete.org/nsi//logos/yolk-8bf212.png" }, { "if": { @@ -71621,7 +71704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yoshinoya-ffe475.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yoshinoya-ffe475.jpg" }, { "if": { @@ -71638,7 +71721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/youmesushi-1abd07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/youmesushi-1abd07.jpg" }, { "if": { @@ -71655,7 +71738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yumyumdonuts-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yumyumdonuts-4d2ff4.jpg" }, { "if": { @@ -71672,7 +71755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeats-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeats-4d2ff4.jpg" }, { "if": { @@ -71689,7 +71772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zahirkebab-3eab78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zahirkebab-3eab78.jpg" }, { "if": { @@ -71706,25 +71789,25 @@ } ] }, - "then": "./assets/data/nsi/logos/zambrero-ee9f0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zambrero-ee9f0e.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=chicken", - "official_name=Zaxby's Chicken Fingers & Buffalo Wings", "takeaway=yes", { "or": [ "brand=Zaxby's", "brand:wikidata=Q8067525", - "name=Zaxby's" + "name=Zaxby's", + "official_name=Zaxby's Chicken Fingers & Buffalo Wings" ] } ] }, - "then": "./assets/data/nsi/logos/zaxbys-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zaxbys-4d2ff4.jpg" }, { "if": { @@ -71741,7 +71824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zerodegrees-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zerodegrees-4d2ff4.jpg" }, { "if": { @@ -71758,7 +71841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zippys-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zippys-4d2ff4.jpg" }, { "if": { @@ -71775,7 +71858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoeskitchen-4d2ff4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zoeskitchen-4d2ff4.jpg" }, { "if": { @@ -71795,7 +71878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/57e3ef-6b115c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/57e3ef-6b115c.jpg" }, { "if": { @@ -71816,7 +71899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gregorys-2c3287.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gregorys-2c3287.jpg" }, { "if": { @@ -71833,7 +71916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ed92ce-381458.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ed92ce-381458.jpg" }, { "if": { @@ -71854,7 +71937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-e25654.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-e25654.jpg" }, { "if": { @@ -71875,7 +71958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vkusnoitochka-7582d1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vkusnoitochka-7582d1.svg" }, { "if": { @@ -71896,7 +71979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dodopizza-e25654.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dodopizza-e25654.jpg" }, { "if": { @@ -71917,7 +72000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominos-23683e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dominos-23683e.jpg" }, { "if": { @@ -71938,7 +72021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurokebab-7582d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurokebab-7582d1.jpg" }, { "if": { @@ -71959,7 +72042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kroshkakartoshka-7582d1.png" + "then": "https://data.mapcomplete.org/nsi//logos/kroshkakartoshka-7582d1.png" }, { "if": { @@ -71980,7 +72063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/papajohns-23683e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/papajohns-23683e.jpg" }, { "if": { @@ -72004,7 +72087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puzatahata-50e0ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puzatahata-50e0ae.jpg" }, { "if": { @@ -72025,7 +72108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robinsdobin-7582d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robinsdobin-7582d1.jpg" }, { "if": { @@ -72046,7 +72129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russkiyappetit-7582d1.png" + "then": "https://data.mapcomplete.org/nsi//logos/russkiyappetit-7582d1.png" }, { "if": { @@ -72067,7 +72150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stardogs-7582d1.png" + "then": "https://data.mapcomplete.org/nsi//logos/stardogs-7582d1.png" }, { "if": { @@ -72088,7 +72171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiwok-7582d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiwok-7582d1.jpg" }, { "if": { @@ -72109,7 +72192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushishop-7582d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushishop-7582d1.jpg" }, { "if": { @@ -72130,7 +72213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teremok-7582d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teremok-7582d1.jpg" }, { "if": { @@ -72152,7 +72235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-90e404.jpg" }, { "if": { @@ -72173,7 +72256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunkindonuts-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunkindonuts-90e404.jpg" }, { "if": { @@ -72198,7 +72281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/degusto-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/degusto-90e404.jpg" }, { "if": { @@ -72219,7 +72302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wendys-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wendys-90e404.jpg" }, { "if": { @@ -72241,7 +72324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kfc-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kfc-90e404.jpg" }, { "if": { @@ -72265,7 +72348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-90e404.jpg" }, { "if": { @@ -72287,7 +72370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macshaurma-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macshaurma-90e404.jpg" }, { "if": { @@ -72308,7 +72391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/subway-90e404.png" + "then": "https://data.mapcomplete.org/nsi//logos/subway-90e404.png" }, { "if": { @@ -72330,7 +72413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tempo-90e404.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tempo-90e404.jpg" }, { "if": { @@ -72351,7 +72434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agadir-dbdcb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/agadir-dbdcb8.png" }, { "if": { @@ -72372,7 +72455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-dbdcb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-dbdcb8.jpg" }, { "if": { @@ -72393,7 +72476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adhaetzemexpress-dbdcb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/adhaetzemexpress-dbdcb8.png" }, { "if": { @@ -72416,7 +72499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzaprego-dbdcb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzaprego-dbdcb8.png" }, { "if": { @@ -72439,7 +72522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzashemesh-dbdcb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzashemesh-dbdcb8.jpg" }, { "if": { @@ -72460,7 +72543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albaik-060f89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albaik-060f89.jpg" }, { "if": { @@ -72481,7 +72564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altazaj-7c76bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altazaj-7c76bb.jpg" }, { "if": { @@ -72502,7 +72585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunkindonuts-07d3e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunkindonuts-07d3e5.jpg" }, { "if": { @@ -72523,7 +72606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kfc-15a250.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kfc-15a250.jpg" }, { "if": { @@ -72544,7 +72627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shawarmer-ade864.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shawarmer-ade864.jpg" }, { "if": { @@ -72565,7 +72648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krispykrem-e5f89b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krispykrem-e5f89b.jpg" }, { "if": { @@ -72586,7 +72669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kudu-1b3be3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kudu-1b3be3.jpg" }, { "if": { @@ -72607,7 +72690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-19c993.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-19c993.jpg" }, { "if": { @@ -72628,7 +72711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/herfy-5a6b9f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/herfy-5a6b9f.jpg" }, { "if": { @@ -72651,7 +72734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyochon-c56583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kyochon-c56583.jpg" }, { "if": { @@ -72672,7 +72755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotteria-c56583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotteria-c56583.jpg" }, { "if": { @@ -72693,7 +72776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/momstouch-c56583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/momstouch-c56583.jpg" }, { "if": { @@ -72714,7 +72797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-c56583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-c56583.jpg" }, { "if": { @@ -72735,7 +72818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-c56583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-c56583.jpg" }, { "if": { @@ -72756,7 +72839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krispykreme-c56583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krispykreme-c56583.jpg" }, { "if": { @@ -72779,7 +72862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/horngrueyjensandwich-c56583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/horngrueyjensandwich-c56583.jpg" }, { "if": { @@ -72800,7 +72883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wendys-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wendys-3e7699.jpg" }, { "if": { @@ -72821,16 +72904,13 @@ } ] }, - "then": "./assets/data/nsi/logos/kappasushi-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/kappasushi-3e7699.png" }, { "if": { "and": [ "amenity=fast_food", "cuisine=sushi", - "official_name=無添くら寿司", - "official_name:en=Muten Kura Sushi", - "official_name:ja=無添くら寿司", "takeaway=yes", { "or": [ @@ -72841,12 +72921,15 @@ "brand:wikidata=Q6445491", "name=くら寿司", "name:en=Kura Sushi", - "name:ja=くら寿司" + "name:ja=くら寿司", + "official_name=無添くら寿司", + "official_name:en=Muten Kura Sushi", + "official_name:ja=無添くら寿司" ] } ] }, - "then": "./assets/data/nsi/logos/kurasushi-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kurasushi-3e7699.jpg" }, { "if": { @@ -72868,7 +72951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krispykremedoughnuts-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krispykremedoughnuts-3e7699.jpg" }, { "if": { @@ -72890,7 +72973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kfc-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kfc-3e7699.jpg" }, { "if": { @@ -72912,7 +72995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gogocurry-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gogocurry-3e7699.jpg" }, { "if": { @@ -72933,7 +73016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/subway-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/subway-3e7699.png" }, { "if": { @@ -72956,7 +73039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sukiya-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sukiya-60a4d5.jpg" }, { "if": { @@ -72979,16 +73062,13 @@ } ] }, - "then": "./assets/data/nsi/logos/sukiya-9f9722.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sukiya-9f9722.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=sushi", - "official_name=あきんどスシロー", - "official_name:en=Akindo Sushiro", - "official_name:ja=あきんどスシロー", "takeaway=yes", { "or": [ @@ -72999,12 +73079,15 @@ "name=スシロー", "name:en=Sushiro", "name:ja=スシロー", - "name:zh=壽司郎" + "name:zh=壽司郎", + "official_name=あきんどスシロー", + "official_name:en=Akindo Sushiro", + "official_name:ja=あきんどスシロー" ] } ] }, - "then": "./assets/data/nsi/logos/sushiro-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiro-3e7699.jpg" }, { "if": { @@ -73025,7 +73108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chiyodasushi-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/chiyodasushi-3e7699.png" }, { "if": { @@ -73049,7 +73132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominospizza-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dominospizza-3e7699.jpg" }, { "if": { @@ -73070,7 +73153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dondontei-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dondontei-3e7699.jpg" }, { "if": { @@ -73091,7 +73174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nakau-3e7699.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nakau-3e7699.svg" }, { "if": { @@ -73112,7 +73195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-3e7699.jpg" }, { "if": { @@ -73134,7 +73217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamasushi-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamasushi-3e7699.jpg" }, { "if": { @@ -73157,7 +73240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamasushi-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamasushi-60a4d5.jpg" }, { "if": { @@ -73178,7 +73261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzala-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzala-3e7699.jpg" }, { "if": { @@ -73199,7 +73282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzahut-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzahut-3e7699.png" }, { "if": { @@ -73220,7 +73303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstkitchen-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstkitchen-3e7699.png" }, { "if": { @@ -73241,7 +73324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshnessburger-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/freshnessburger-3e7699.png" }, { "if": { @@ -73262,7 +73345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokkahokkatei-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hokkahokkatei-3e7699.jpg" }, { "if": { @@ -73283,7 +73366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hottomotto-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/hottomotto-3e7699.png" }, { "if": { @@ -73304,7 +73387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-3e7699.jpg" }, { "if": { @@ -73325,7 +73408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/misterdonut-3e7699.svg" + "then": "https://data.mapcomplete.org/nsi//logos/misterdonut-3e7699.svg" }, { "if": { @@ -73346,7 +73429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mosburger-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mosburger-3e7699.jpg" }, { "if": { @@ -73367,7 +73450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yudetaro-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yudetaro-3e7699.jpg" }, { "if": { @@ -73388,7 +73471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramenjiro-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ramenjiro-3e7699.jpg" }, { "if": { @@ -73409,7 +73492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotteria-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotteria-3e7699.jpg" }, { "if": { @@ -73434,7 +73517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supersupercongeeandnoodles-9f9722.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supersupercongeeandnoodles-9f9722.jpg" }, { "if": { @@ -73457,7 +73540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marugameseimen-f9a382.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marugameseimen-f9a382.jpg" }, { "if": { @@ -73478,7 +73561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genkisushi-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genkisushi-3e7699.jpg" }, { "if": { @@ -73499,7 +73582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eightway-70aa35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eightway-70aa35.jpg" }, { "if": { @@ -73524,7 +73607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bafangdumpling-17dd9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bafangdumpling-17dd9a.jpg" }, { "if": { @@ -73551,7 +73634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yoshinoya-de27a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yoshinoya-de27a3.jpg" }, { "if": { @@ -73578,7 +73661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yoshinoya-17dd9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yoshinoya-17dd9a.jpg" }, { "if": { @@ -73599,7 +73682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafedecoral-19ae3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafedecoral-19ae3c.jpg" }, { "if": { @@ -73624,7 +73707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafedecoral-17dd9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafedecoral-17dd9a.jpg" }, { "if": { @@ -73649,7 +73732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fairwood-9f9722.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fairwood-9f9722.jpg" }, { "if": { @@ -73670,7 +73753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikearestaurant-17dd9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikearestaurant-17dd9a.jpg" }, { "if": { @@ -73691,7 +73774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikearestaurant-19ae3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikearestaurant-19ae3c.jpg" }, { "if": { @@ -73712,7 +73795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fujisoba-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fujisoba-3e7699.jpg" }, { "if": { @@ -73733,7 +73816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kourakuen-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kourakuen-3e7699.jpg" }, { "if": { @@ -73755,7 +73838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongyahambuger-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongyahambuger-60a4d5.jpg" }, { "if": { @@ -73776,7 +73859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/layaburger-60a4d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/layaburger-60a4d5.png" }, { "if": { @@ -73797,7 +73880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mosburger-c9f110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mosburger-c9f110.jpg" }, { "if": { @@ -73822,7 +73905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mosburger-17dd9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mosburger-17dd9a.jpg" }, { "if": { @@ -73843,7 +73926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hidakaya-3e7699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hidakaya-3e7699.jpg" }, { "if": { @@ -73865,7 +73948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodmorningmacc-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodmorningmacc-60a4d5.jpg" }, { "if": { @@ -73891,7 +73974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matsuya-992e2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/matsuya-992e2a.png" }, { "if": { @@ -73912,7 +73995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sakaesushi-1ef1da.png" + "then": "https://data.mapcomplete.org/nsi//logos/sakaesushi-1ef1da.png" }, { "if": { @@ -73933,7 +74016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-65b4e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-65b4e8.jpg" }, { "if": { @@ -73956,7 +74039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-60a4d5.jpg" }, { "if": { @@ -73978,7 +74061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rueilinmeiandmei-60a4d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/rueilinmeiandmei-60a4d5.png" }, { "if": { @@ -73999,7 +74082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kungfu-65b4e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kungfu-65b4e8.jpg" }, { "if": { @@ -74022,7 +74105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gindaco-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/gindaco-3e7699.png" }, { "if": { @@ -74043,7 +74126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gindaco-9f9722.png" + "then": "https://data.mapcomplete.org/nsi//logos/gindaco-9f9722.png" }, { "if": { @@ -74072,7 +74155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jandgfriedchicken-60a4d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/jandgfriedchicken-60a4d5.png" }, { "if": { @@ -74093,7 +74176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jandgfriedchicken-17dd9a.png" + "then": "https://data.mapcomplete.org/nsi//logos/jandgfriedchicken-17dd9a.png" }, { "if": { @@ -74114,7 +74197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maximsmx-9f9722.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maximsmx-9f9722.jpg" }, { "if": { @@ -74135,7 +74218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsuiwahrestaurant-19ae3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsuiwahrestaurant-19ae3c.jpg" }, { "if": { @@ -74156,7 +74239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsuiwahrestaurant-8b51a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsuiwahrestaurant-8b51a0.jpg" }, { "if": { @@ -74177,7 +74260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldchangkee-65b4e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldchangkee-65b4e8.jpg" }, { "if": { @@ -74198,7 +74281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kfc-70aa35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kfc-70aa35.jpg" }, { "if": { @@ -74223,7 +74306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kfc-17dd9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kfc-17dd9a.jpg" }, { "if": { @@ -74248,7 +74331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fjveggie-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fjveggie-60a4d5.jpg" }, { "if": { @@ -74269,7 +74352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hanamusubi-9f9722.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hanamusubi-9f9722.jpg" }, { "if": { @@ -74290,7 +74373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kurasushi-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kurasushi-60a4d5.jpg" }, { "if": { @@ -74311,7 +74394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/subway-19ae3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/subway-19ae3c.png" }, { "if": { @@ -74332,16 +74415,13 @@ } ] }, - "then": "./assets/data/nsi/logos/dominos-19ae3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dominos-19ae3c.jpg" }, { "if": { "and": [ "amenity=fast_food", "cuisine=okonomiyaki", - "official_name=お好み焼道とん堀", - "official_name:en=Okonomiyaki Dohtonbori", - "official_name:ja=お好み焼道とん堀", "takeaway=yes", { "or": [ @@ -74351,12 +74431,15 @@ "brand:wikidata=Q11640595", "name=道とん堀", "name:en=Dohtonbori", - "name:ja=道とん堀" + "name:ja=道とん堀", + "official_name=お好み焼道とん堀", + "official_name:en=Okonomiyaki Dohtonbori", + "official_name:ja=お好み焼道とん堀" ] } ] }, - "then": "./assets/data/nsi/logos/dohtonbori-3e7699.png" + "then": "https://data.mapcomplete.org/nsi//logos/dohtonbori-3e7699.png" }, { "if": { @@ -74379,7 +74462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominos-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dominos-60a4d5.jpg" }, { "if": { @@ -74400,7 +74483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tkkfriedchicken-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tkkfriedchicken-60a4d5.jpg" }, { "if": { @@ -74421,7 +74504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tkkfriedchicken-65b4e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tkkfriedchicken-65b4e8.jpg" }, { "if": { @@ -74444,7 +74527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sukiya-19ae3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sukiya-19ae3c.jpg" }, { "if": { @@ -74467,7 +74550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-60a4d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-60a4d5.jpg" }, { "if": { @@ -74492,7 +74575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-17dd9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-17dd9a.jpg" }, { "if": { @@ -74513,7 +74596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-19ae3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-19ae3c.jpg" }, { "if": { @@ -74534,7 +74617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeppelinhotdog-9f9722.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeppelinhotdog-9f9722.jpg" }, { "if": { @@ -74549,7 +74632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlefreepantry-f0545b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/littlefreepantry-f0545b.jpg" }, { "if": { @@ -74565,7 +74648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madamefrigo-7b9f77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madamefrigo-7b9f77.jpg" }, { "if": { @@ -74580,7 +74663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7eleven-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7eleven-16b3c2.jpg" }, { "if": { @@ -74595,7 +74678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/76-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/76-16b3c2.jpg" }, { "if": { @@ -74610,7 +74693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8ahuit-3772a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/8ahuit-3772a0.svg" }, { "if": { @@ -74625,7 +74708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aegean-c67f2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aegean-c67f2c.jpg" }, { "if": { @@ -74640,7 +74723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afriquia-d0fa88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/afriquia-d0fa88.jpg" }, { "if": { @@ -74659,7 +74742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afriquia-144a57.png" + "then": "https://data.mapcomplete.org/nsi//logos/afriquia-144a57.png" }, { "if": { @@ -74674,7 +74757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrola-27a80f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrola-27a80f.jpg" }, { "if": { @@ -74689,7 +74772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airliquide-b3d110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airliquide-b3d110.jpg" }, { "if": { @@ -74704,7 +74787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alcampo-83f854.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alcampo-83f854.jpg" }, { "if": { @@ -74718,7 +74801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ale-c14748.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ale-c14748.jpg" }, { "if": { @@ -74733,7 +74816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alexela-00a67a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alexela-00a67a.jpg" }, { "if": { @@ -74748,23 +74831,23 @@ } ] }, - "then": "./assets/data/nsi/logos/alliedpetroleum-088dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliedpetroleum-088dbb.jpg" }, { "if": { "and": [ "amenity=fuel", - "official_name=Aloha Petroleum Ltd", { "or": [ "brand=Aloha Petroleum", "brand:wikidata=Q4734197", - "name=Aloha Petroleum" + "name=Aloha Petroleum", + "official_name=Aloha Petroleum Ltd" ] } ] }, - "then": "./assets/data/nsi/logos/alohapetroleum-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alohapetroleum-c5cf43.jpg" }, { "if": { @@ -74779,7 +74862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alon-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alon-c5cf43.jpg" }, { "if": { @@ -74794,7 +74877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alpet-67f29f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alpet-67f29f.jpg" }, { "if": { @@ -74809,7 +74892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alvesbandeira-bb4e16.png" + "then": "https://data.mapcomplete.org/nsi//logos/alvesbandeira-bb4e16.png" }, { "if": { @@ -74824,7 +74907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amic-4797a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amic-4797a1.jpg" }, { "if": { @@ -74839,7 +74922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amoco-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/amoco-c5cf43.png" }, { "if": { @@ -74854,7 +74937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ampol-9ed9c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ampol-9ed9c0.png" }, { "if": { @@ -74869,23 +74952,23 @@ } ] }, - "then": "./assets/data/nsi/logos/amseroil-fdaf22.png" + "then": "https://data.mapcomplete.org/nsi//logos/amseroil-fdaf22.png" }, { "if": { "and": [ "amenity=fuel", - "official_name=Administración Nacional de Combustibles, Alcoholes y Portland", { "or": [ "brand=ANCAP", "brand:wikidata=Q2824522", - "name=ANCAP" + "name=ANCAP", + "official_name=Administración Nacional de Combustibles, Alcoholes y Portland" ] } ] }, - "then": "./assets/data/nsi/logos/ancap-c21fc2.png" + "then": "https://data.mapcomplete.org/nsi//logos/ancap-c21fc2.png" }, { "if": { @@ -74900,7 +74983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anp-ed4144.png" + "then": "https://data.mapcomplete.org/nsi//logos/anp-ed4144.png" }, { "if": { @@ -74915,7 +74998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applegreen-08ff39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/applegreen-08ff39.jpg" }, { "if": { @@ -74930,7 +75013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aral-f69389.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aral-f69389.jpg" }, { "if": { @@ -74945,7 +75028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arco-c87a80.png" + "then": "https://data.mapcomplete.org/nsi//logos/arco-c87a80.png" }, { "if": { @@ -74960,7 +75043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/argos-6cdea6.png" + "then": "https://data.mapcomplete.org/nsi//logos/argos-6cdea6.png" }, { "if": { @@ -74976,7 +75059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/as24-3463db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/as24-3463db.jpg" }, { "if": { @@ -74991,7 +75074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asda-20aed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asda-20aed2.jpg" }, { "if": { @@ -75006,7 +75089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asdaexpress-20aed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asdaexpress-20aed2.jpg" }, { "if": { @@ -75021,7 +75104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/astronenergy-d9e54e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/astronenergy-d9e54e.jpg" }, { "if": { @@ -75036,7 +75119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atem-c14748.png" + "then": "https://data.mapcomplete.org/nsi//logos/atem-c14748.png" }, { "if": { @@ -75051,7 +75134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchan-fcb99f.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchan-fcb99f.png" }, { "if": { @@ -75070,7 +75153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autolpgas-7489db.png" + "then": "https://data.mapcomplete.org/nsi//logos/autolpgas-7489db.png" }, { "if": { @@ -75085,7 +75168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avanti-565075.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avanti-565075.jpg" }, { "if": { @@ -75100,7 +75183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avia-6504b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avia-6504b2.jpg" }, { "if": { @@ -75115,7 +75198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avin-c67f2c.png" + "then": "https://data.mapcomplete.org/nsi//logos/avin-c67f2c.png" }, { "if": { @@ -75130,7 +75213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axion-b21aa1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axion-b21aa1.jpg" }, { "if": { @@ -75145,7 +75228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aygaz-ec7588.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aygaz-ec7588.svg" }, { "if": { @@ -75160,7 +75243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aytemiz-ec7588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aytemiz-ec7588.jpg" }, { "if": { @@ -75175,7 +75258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/azpetrol-0dbc25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/azpetrol-0dbc25.jpg" }, { "if": { @@ -75190,7 +75273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ballenoil-83f854.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ballenoil-83f854.jpg" }, { "if": { @@ -75205,23 +75288,23 @@ } ] }, - "then": "./assets/data/nsi/logos/balticpetroleum-d665db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/balticpetroleum-d665db.jpg" }, { "if": { "and": [ "amenity=fuel", - "official_name=Bahrain Petroleum Company", { "or": [ "brand=Bapco", "brand:wikidata=Q803640", - "name=Bapco" + "name=Bapco", + "official_name=Bahrain Petroleum Company" ] } ] }, - "then": "./assets/data/nsi/logos/bapco-f97176.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bapco-f97176.jpg" }, { "if": { @@ -75236,7 +75319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bennettspetroleum-5e56e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bennettspetroleum-5e56e7.jpg" }, { "if": { @@ -75251,7 +75334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benzina-5f489f.png" + "then": "https://data.mapcomplete.org/nsi//logos/benzina-5f489f.png" }, { "if": { @@ -75266,7 +75349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berkman-6cdea6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berkman-6cdea6.jpg" }, { "if": { @@ -75281,7 +75364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beyfin-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beyfin-16b3c2.jpg" }, { "if": { @@ -75296,7 +75379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bft-495186.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bft-495186.svg" }, { "if": { @@ -75311,7 +75394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bharatpetroleum-989925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bharatpetroleum-989925.jpg" }, { "if": { @@ -75326,7 +75409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bhpetrol-d13f8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bhpetrol-d13f8d.jpg" }, { "if": { @@ -75341,7 +75424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bi1-acec89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bi1-acec89.jpg" }, { "if": { @@ -75356,7 +75439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biomax-a98521.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biomax-a98521.jpg" }, { "if": { @@ -75371,7 +75454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bjsgas-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bjsgas-c5cf43.jpg" }, { "if": { @@ -75386,7 +75469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonarea-83f854.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonarea-83f854.jpg" }, { "if": { @@ -75401,7 +75484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-aef194.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-aef194.jpg" }, { "if": { @@ -75416,7 +75499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/br-c14748.png" + "then": "https://data.mapcomplete.org/nsi//logos/br-c14748.png" }, { "if": { @@ -75431,7 +75514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bucees-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/bucees-c5cf43.png" }, { "if": { @@ -75446,23 +75529,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bvs-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bvs-ed4144.jpg" }, { "if": { "and": [ "amenity=fuel", - "official_name=Bob Wayne's Oil Company", { "or": [ "brand=BWOC", "brand:wikidata=Q4836845", - "name=BWOC" + "name=BWOC", + "official_name=Bob Wayne's Oil Company" ] } ] }, - "then": "./assets/data/nsi/logos/bwoc-20aed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bwoc-20aed2.jpg" }, { "if": { @@ -75477,7 +75560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byrnedairy-a4f01d.png" + "then": "https://data.mapcomplete.org/nsi//logos/byrnedairy-a4f01d.png" }, { "if": { @@ -75492,7 +75575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caltex-a02c05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caltex-a02c05.jpg" }, { "if": { @@ -75507,7 +75590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadiantire-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadiantire-04874d.jpg" }, { "if": { @@ -75522,7 +75605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-b3d110.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-b3d110.png" }, { "if": { @@ -75537,7 +75620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrollmotorfuels-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carrollmotorfuels-c5cf43.jpg" }, { "if": { @@ -75552,7 +75635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caseysgeneralstore-b3d110.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caseysgeneralstore-b3d110.svg" }, { "if": { @@ -75567,7 +75650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casino-3772a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casino-3772a0.jpg" }, { "if": { @@ -75582,7 +75665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cefco-7de6f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/cefco-7de6f8.png" }, { "if": { @@ -75597,23 +75680,23 @@ } ] }, - "then": "./assets/data/nsi/logos/cenex-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/cenex-c5cf43.png" }, { "if": { "and": [ "amenity=fuel", - "official_name=Certified Oil", { "or": [ "brand=Certified", "brand:wikidata=Q100148356", - "name=Certified" + "name=Certified", + "official_name=Certified Oil" ] } ] }, - "then": "./assets/data/nsi/logos/certified-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/certified-c5cf43.jpg" }, { "if": { @@ -75628,7 +75711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/challenge-088dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/challenge-088dbb.jpg" }, { "if": { @@ -75645,7 +75728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/champion-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/champion-fdaf22.jpg" }, { "if": { @@ -75660,7 +75743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chevron-b3d110.png" + "then": "https://data.mapcomplete.org/nsi//logos/chevron-b3d110.png" }, { "if": { @@ -75675,7 +75758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chipo-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chipo-ed4144.jpg" }, { "if": { @@ -75690,7 +75773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-b3d110.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-b3d110.png" }, { "if": { @@ -75705,7 +75788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citgo-16b3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/citgo-16b3c2.png" }, { "if": { @@ -75720,7 +75803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clark-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/clark-c5cf43.png" }, { "if": { @@ -75735,7 +75818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/classic-495186.png" + "then": "https://data.mapcomplete.org/nsi//logos/classic-495186.png" }, { "if": { @@ -75750,7 +75833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-04874d.jpg" }, { "if": { @@ -75765,7 +75848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conoco-c5cf43.svg" + "then": "https://data.mapcomplete.org/nsi//logos/conoco-c5cf43.svg" }, { "if": { @@ -75780,7 +75863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copec-16fba4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/copec-16fba4.svg" }, { "if": { @@ -75795,7 +75878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copetrol-c4a95f.png" + "then": "https://data.mapcomplete.org/nsi//logos/copetrol-c4a95f.png" }, { "if": { @@ -75810,7 +75893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosan-c14748.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosan-c14748.jpg" }, { "if": { @@ -75825,7 +75908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costantin-e8f712.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costantin-e8f712.svg" }, { "if": { @@ -75840,7 +75923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcogasoline-10ec5c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcogasoline-10ec5c.svg" }, { "if": { @@ -75855,7 +75938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/couchetard-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/couchetard-04874d.jpg" }, { "if": { @@ -75870,7 +75953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crodux-a8f5c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crodux-a8f5c5.jpg" }, { "if": { @@ -75885,7 +75968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cumberlandfarms-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cumberlandfarms-c5cf43.jpg" }, { "if": { @@ -75900,7 +75983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cupet-e04f92.png" + "then": "https://data.mapcomplete.org/nsi//logos/cupet-e04f92.png" }, { "if": { @@ -75915,7 +75998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dalioil-11d3b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dalioil-11d3b6.jpg" }, { "if": { @@ -75930,7 +76013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dats24-08f029.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dats24-08f029.jpg" }, { "if": { @@ -75948,7 +76031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delek-bb4acb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/delek-bb4acb.svg" }, { "if": { @@ -75963,7 +76046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delta-1fbae0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delta-1fbae0.jpg" }, { "if": { @@ -75978,7 +76061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deltasonic-66290c.png" + "then": "https://data.mapcomplete.org/nsi//logos/deltasonic-66290c.png" }, { "if": { @@ -75993,7 +76076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dk-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dk-c5cf43.jpg" }, { "if": { @@ -76008,7 +76091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/domo-04874d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/domo-04874d.svg" }, { "if": { @@ -76023,7 +76106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dyneff-addd1b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dyneff-addd1b.svg" }, { "if": { @@ -76040,7 +76123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecopetrol-b450da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecopetrol-b450da.jpg" }, { "if": { @@ -76055,7 +76138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecooil-289efc.png" + "then": "https://data.mapcomplete.org/nsi//logos/ecooil-289efc.png" }, { "if": { @@ -76073,7 +76156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egaustralia-9ed9c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/egaustralia-9ed9c0.png" }, { "if": { @@ -76088,7 +76171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eko-04874d.jpg" }, { "if": { @@ -76103,7 +76186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-96daf2.png" + "then": "https://data.mapcomplete.org/nsi//logos/eko-96daf2.png" }, { "if": { @@ -76118,7 +76201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-b273c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/eko-b273c8.png" }, { "if": { @@ -76133,7 +76216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-c67f2c.png" + "then": "https://data.mapcomplete.org/nsi//logos/eko-c67f2c.png" }, { "if": { @@ -76150,7 +76233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-b450da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eko-b450da.jpg" }, { "if": { @@ -76165,7 +76248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eko-a971aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eko-a971aa.jpg" }, { "if": { @@ -76180,7 +76263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elan-3c75bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elan-3c75bd.svg" }, { "if": { @@ -76199,7 +76282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emarat-b7987c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emarat-b7987c.jpg" }, { "if": { @@ -76218,7 +76301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneos-fbe2e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneos-fbe2e4.png" }, { "if": { @@ -76233,7 +76316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enercoop-e8f712.png" + "then": "https://data.mapcomplete.org/nsi//logos/enercoop-e8f712.png" }, { "if": { @@ -76248,7 +76331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energas-e8f712.png" + "then": "https://data.mapcomplete.org/nsi//logos/energas-e8f712.png" }, { "if": { @@ -76263,7 +76346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enerpetroli-e8f712.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enerpetroli-e8f712.jpg" }, { "if": { @@ -76278,7 +76361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engen-506e13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engen-506e13.jpg" }, { "if": { @@ -76294,7 +76377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truckstop-506e13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truckstop-506e13.jpg" }, { "if": { @@ -76309,7 +76392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eni-0330be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eni-0330be.jpg" }, { "if": { @@ -76324,7 +76407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmarket-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enmarket-c5cf43.jpg" }, { "if": { @@ -76339,7 +76422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equador-c14748.png" + "then": "https://data.mapcomplete.org/nsi//logos/equador-c14748.png" }, { "if": { @@ -76354,7 +76437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esclatoil-83f854.png" + "then": "https://data.mapcomplete.org/nsi//logos/esclatoil-83f854.png" }, { "if": { @@ -76369,7 +76452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-053960.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-053960.jpg" }, { "if": { @@ -76384,7 +76467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essoexpress-4973ca.svg" + "then": "https://data.mapcomplete.org/nsi//logos/essoexpress-4973ca.svg" }, { "if": { @@ -76399,7 +76482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurooil-45c895.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurooil-45c895.jpg" }, { "if": { @@ -76414,7 +76497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/europam-e8f712.png" + "then": "https://data.mapcomplete.org/nsi//logos/europam-e8f712.png" }, { "if": { @@ -76430,7 +76513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everfuel-06f3d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/everfuel-06f3d9.jpg" }, { "if": { @@ -76445,7 +76528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exxon-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exxon-c5cf43.jpg" }, { "if": { @@ -76460,7 +76543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fasgas-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fasgas-04874d.jpg" }, { "if": { @@ -76475,7 +76558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fietenolie-6cdea6.png" + "then": "https://data.mapcomplete.org/nsi//logos/fietenolie-6cdea6.png" }, { "if": { @@ -76490,7 +76573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firezone-6cdea6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firezone-6cdea6.jpg" }, { "if": { @@ -76509,7 +76592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyers-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flyers-c5cf43.jpg" }, { "if": { @@ -76524,7 +76607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyingj-337af2.png" + "then": "https://data.mapcomplete.org/nsi//logos/flyingj-337af2.png" }, { "if": { @@ -76539,7 +76622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyingv-289efc.png" + "then": "https://data.mapcomplete.org/nsi//logos/flyingv-289efc.png" }, { "if": { @@ -76554,7 +76637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/food4less-25dc49.png" + "then": "https://data.mapcomplete.org/nsi//logos/food4less-25dc49.png" }, { "if": { @@ -76569,7 +76652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodsco-b96be0.png" + "then": "https://data.mapcomplete.org/nsi//logos/foodsco-b96be0.png" }, { "if": { @@ -76586,7 +76669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fragaoil-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fragaoil-fdaf22.jpg" }, { "if": { @@ -76601,7 +76684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredmeyer-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/fredmeyer-c5cf43.png" }, { "if": { @@ -76616,7 +76699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freietankstelle-495186.svg" + "then": "https://data.mapcomplete.org/nsi//logos/freietankstelle-495186.svg" }, { "if": { @@ -76631,7 +76714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/friendlyexpress-e7c562.png" + "then": "https://data.mapcomplete.org/nsi//logos/friendlyexpress-e7c562.png" }, { "if": { @@ -76646,7 +76729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gas-088dbb.png" + "then": "https://data.mapcomplete.org/nsi//logos/gas-088dbb.png" }, { "if": { @@ -76661,7 +76744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/g500-8d9e82.png" + "then": "https://data.mapcomplete.org/nsi//logos/g500-8d9e82.png" }, { "if": { @@ -76675,7 +76758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galp-57abaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/galp-57abaf.png" }, { "if": { @@ -76690,7 +76773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gas-11d3b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gas-11d3b6.jpg" }, { "if": { @@ -76707,7 +76790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gazprom-b450da.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gazprom-b450da.svg" }, { "if": { @@ -76722,7 +76805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giant-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/giant-c5cf43.png" }, { "if": { @@ -76737,7 +76820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giap-e8f712.png" + "then": "https://data.mapcomplete.org/nsi//logos/giap-e8f712.png" }, { "if": { @@ -76752,7 +76835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/global-c2b77c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/global-c2b77c.svg" }, { "if": { @@ -76767,7 +76850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/global-0ba9a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/global-0ba9a1.jpg" }, { "if": { @@ -76782,7 +76865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globus-68ecd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globus-68ecd5.jpg" }, { "if": { @@ -76799,7 +76882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gloryoil-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gloryoil-fdaf22.jpg" }, { "if": { @@ -76815,7 +76898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gnp-e8f712.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gnp-e8f712.jpg" }, { "if": { @@ -76830,7 +76913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goil-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goil-fdaf22.jpg" }, { "if": { @@ -76845,7 +76928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gomart-8a82f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gomart-8a82f2.jpg" }, { "if": { @@ -76860,7 +76943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenoil-144a57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenoil-144a57.jpg" }, { "if": { @@ -76875,7 +76958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulf-c8d6b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gulf-c8d6b9.jpg" }, { "if": { @@ -76890,7 +76973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gull-088dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gull-088dbb.jpg" }, { "if": { @@ -76906,7 +76989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hebfuel-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hebfuel-c5cf43.jpg" }, { "if": { @@ -76921,7 +77004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haffners-5050cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/haffners-5050cd.png" }, { "if": { @@ -76936,7 +77019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harnois-04874d.png" + "then": "https://data.mapcomplete.org/nsi//logos/harnois-04874d.png" }, { "if": { @@ -76951,7 +77034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harvestenergy-20aed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harvestenergy-20aed2.jpg" }, { "if": { @@ -76966,7 +77049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hele-45054e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hele-45054e.jpg" }, { "if": { @@ -76981,7 +77064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hem-495186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hem-495186.jpg" }, { "if": { @@ -76996,7 +77079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hess-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hess-c5cf43.jpg" }, { "if": { @@ -77011,7 +77094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hidrosina-8d9e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hidrosina-8d9e82.jpg" }, { "if": { @@ -77026,7 +77109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/highs-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/highs-c5cf43.png" }, { "if": { @@ -77041,7 +77124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoferdiskont-3baa0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/hoferdiskont-3baa0f.png" }, { "if": { @@ -77056,7 +77139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holiday-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holiday-c5cf43.jpg" }, { "if": { @@ -77071,7 +77154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holidayoil-b0257b.png" + "then": "https://data.mapcomplete.org/nsi//logos/holidayoil-b0257b.png" }, { "if": { @@ -77086,23 +77169,23 @@ } ] }, - "then": "./assets/data/nsi/logos/hoyer-495186.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hoyer-495186.svg" }, { "if": { "and": [ "amenity=fuel", - "official_name=Hindustan Petroleum", { "or": [ "brand=Hindustan Petroleum", "brand:wikidata=Q1619375", - "name=HP" + "name=HP", + "official_name=Hindustan Petroleum" ] } ] }, - "then": "./assets/data/nsi/logos/hp-989925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hp-989925.jpg" }, { "if": { @@ -77117,7 +77200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/husky-04874d.png" + "then": "https://data.mapcomplete.org/nsi//logos/husky-04874d.png" }, { "if": { @@ -77132,7 +77215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyveegas-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyveegas-c5cf43.jpg" }, { "if": { @@ -77147,7 +77230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdoex-83f854.png" + "then": "https://data.mapcomplete.org/nsi//logos/iberdoex-83f854.png" }, { "if": { @@ -77162,7 +77245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/igas-b450da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/igas-b450da.jpg" }, { "if": { @@ -77177,7 +77260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/igl-989925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/igl-989925.jpg" }, { "if": { @@ -77192,7 +77275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ina-f27d94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ina-f27d94.jpg" }, { "if": { @@ -77207,7 +77290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianoil-989925.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianoil-989925.png" }, { "if": { @@ -77222,7 +77305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inglesgasexpress-b3451c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inglesgasexpress-b3451c.jpg" }, { "if": { @@ -77237,7 +77320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ingo-eef03e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ingo-eef03e.jpg" }, { "if": { @@ -77252,7 +77335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogy-45c895.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/innogy-45c895.jpg" }, { "if": { @@ -77270,7 +77353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/insaoil-b450da.png" + "then": "https://data.mapcomplete.org/nsi//logos/insaoil-b450da.png" }, { "if": { @@ -77285,7 +77368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarche-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarche-16b3c2.jpg" }, { "if": { @@ -77300,7 +77383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inver-f499fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inver-f499fc.jpg" }, { "if": { @@ -77315,7 +77398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ip-16b3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/ip-16b3c2.png" }, { "if": { @@ -77329,7 +77412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipiranga-c14748.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ipiranga-c14748.jpg" }, { "if": { @@ -77344,7 +77427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irving-337af2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irving-337af2.jpg" }, { "if": { @@ -77359,7 +77442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jet-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jet-16b3c2.jpg" }, { "if": { @@ -77374,7 +77457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jetti-289efc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jetti-289efc.jpg" }, { "if": { @@ -77388,7 +77471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jiobp-989925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jiobp-989925.jpg" }, { "if": { @@ -77404,7 +77487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kangarooexpress-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/kangarooexpress-c5cf43.png" }, { "if": { @@ -77419,7 +77502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kastrati-7b349a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kastrati-7b349a.jpg" }, { "if": { @@ -77434,7 +77517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keropetrol-e8f712.png" + "then": "https://data.mapcomplete.org/nsi//logos/keropetrol-e8f712.png" }, { "if": { @@ -77449,7 +77532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingsoopers-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/kingsoopers-c5cf43.png" }, { "if": { @@ -77464,7 +77547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klo-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klo-ed4144.jpg" }, { "if": { @@ -77479,7 +77562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krist-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/krist-c5cf43.png" }, { "if": { @@ -77494,7 +77577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kroger-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/kroger-c5cf43.png" }, { "if": { @@ -77509,7 +77592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kumandgo-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kumandgo-c5cf43.jpg" }, { "if": { @@ -77524,7 +77607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikfill-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/kwikfill-c5cf43.png" }, { "if": { @@ -77539,7 +77622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikshop-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwikshop-c5cf43.jpg" }, { "if": { @@ -77554,7 +77637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikstar-1d29fd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kwikstar-1d29fd.svg" }, { "if": { @@ -77569,7 +77652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwiktrip-076225.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kwiktrip-076225.svg" }, { "if": { @@ -77584,7 +77667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liberty-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liberty-c5cf43.jpg" }, { "if": { @@ -77599,7 +77682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loafnjug-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loafnjug-c5cf43.jpg" }, { "if": { @@ -77614,7 +77697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loves-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/loves-c5cf43.png" }, { "if": { @@ -77629,7 +77712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-ca892b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-ca892b.jpg" }, { "if": { @@ -77644,7 +77727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macewen-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macewen-04874d.jpg" }, { "if": { @@ -77659,7 +77742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mapco-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mapco-c5cf43.jpg" }, { "if": { @@ -77674,7 +77757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathon-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marathon-16b3c2.jpg" }, { "if": { @@ -77689,7 +77772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshal-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshal-ed4144.jpg" }, { "if": { @@ -77704,7 +77787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maverik-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maverik-c5cf43.jpg" }, { "if": { @@ -77719,7 +77802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxol-9c7c7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxol-9c7c7c.jpg" }, { "if": { @@ -77734,7 +77817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meijer-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meijer-c5cf43.jpg" }, { "if": { @@ -77749,7 +77832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meroil-83f854.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meroil-83f854.jpg" }, { "if": { @@ -77764,7 +77847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-bcded2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-bcded2.svg" }, { "if": { @@ -77779,7 +77862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropetroleum-9ed9c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropetroleum-9ed9c0.jpg" }, { "if": { @@ -77794,7 +77877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrol-27a80f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/migrol-27a80f.jpg" }, { "if": { @@ -77809,7 +77892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobil-00679c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobil-00679c.jpg" }, { "if": { @@ -77824,7 +77907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moil-ec7588.png" + "then": "https://data.mapcomplete.org/nsi//logos/moil-ec7588.png" }, { "if": { @@ -77839,7 +77922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mol-b3d110.png" + "then": "https://data.mapcomplete.org/nsi//logos/mol-b3d110.png" }, { "if": { @@ -77854,7 +77937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morrisons-20aed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morrisons-20aed2.jpg" }, { "if": { @@ -77869,7 +77952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motto-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/motto-ed4144.jpg" }, { "if": { @@ -77884,7 +77967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/murphyexpress-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/murphyexpress-c5cf43.png" }, { "if": { @@ -77899,7 +77982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/murphyusa-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/murphyusa-c5cf43.png" }, { "if": { @@ -77914,7 +77997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/n1-3ac543.png" + "then": "https://data.mapcomplete.org/nsi//logos/n1-3ac543.png" }, { "if": { @@ -77929,7 +78012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nafte-83f854.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nafte-83f854.jpg" }, { "if": { @@ -77946,7 +78029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nasona-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nasona-fdaf22.jpg" }, { "if": { @@ -77961,7 +78044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nayara-989925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nayara-989925.jpg" }, { "if": { @@ -77976,7 +78059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neste-b3d110.png" + "then": "https://data.mapcomplete.org/nsi//logos/neste-b3d110.png" }, { "if": { @@ -77991,7 +78074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordoel-495186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordoel-495186.jpg" }, { "if": { @@ -78006,7 +78089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nouria-b09892.png" + "then": "https://data.mapcomplete.org/nsi//logos/nouria-b09892.png" }, { "if": { @@ -78021,7 +78104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/np-9a6cc7.png" + "then": "https://data.mapcomplete.org/nsi//logos/np-9a6cc7.png" }, { "if": { @@ -78036,7 +78119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/npd-088dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/npd-088dbb.jpg" }, { "if": { @@ -78051,7 +78134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oil-b3d110.svg" + "then": "https://data.mapcomplete.org/nsi//logos/oil-b3d110.svg" }, { "if": { @@ -78068,7 +78151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oilibya-5288c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oilibya-5288c9.jpg" }, { "if": { @@ -78083,7 +78166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ok-6cdea6.png" + "then": "https://data.mapcomplete.org/nsi//logos/ok-6cdea6.png" }, { "if": { @@ -78098,7 +78181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okq8-a1affa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okq8-a1affa.jpg" }, { "if": { @@ -78113,7 +78196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olerex-00a67a.png" + "then": "https://data.mapcomplete.org/nsi//logos/olerex-00a67a.png" }, { "if": { @@ -78128,7 +78211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olis-3ac543.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/olis-3ac543.jpg" }, { "if": { @@ -78143,7 +78226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omv-b3d110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omv-b3d110.jpg" }, { "if": { @@ -78158,7 +78241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opet-ec7588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opet-ec7588.jpg" }, { "if": { @@ -78173,7 +78256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orkan-3ac543.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orkan-3ac543.jpg" }, { "if": { @@ -78188,7 +78271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlen-5730fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlen-5730fb.jpg" }, { "if": { @@ -78203,7 +78286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlenexpress-83551a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlenexpress-83551a.jpg" }, { "if": { @@ -78218,7 +78301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otr-9ed9c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/otr-9ed9c0.png" }, { "if": { @@ -78233,7 +78316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxxo-b3d110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxxo-b3d110.jpg" }, { "if": { @@ -78250,7 +78333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacific-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacific-fdaf22.jpg" }, { "if": { @@ -78265,7 +78348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificpride-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificpride-c5cf43.jpg" }, { "if": { @@ -78280,7 +78363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paknsavefuel-088dbb.png" + "then": "https://data.mapcomplete.org/nsi//logos/paknsavefuel-088dbb.png" }, { "if": { @@ -78295,7 +78378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parallel-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parallel-ed4144.jpg" }, { "if": { @@ -78310,7 +78393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pecsa-877762.png" + "then": "https://data.mapcomplete.org/nsi//logos/pecsa-877762.png" }, { "if": { @@ -78325,7 +78408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pemex-8d9e82.png" + "then": "https://data.mapcomplete.org/nsi//logos/pemex-8d9e82.png" }, { "if": { @@ -78340,7 +78423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pertamina-d2ad30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pertamina-d2ad30.jpg" }, { "if": { @@ -78356,7 +78439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petro-337af2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petro-337af2.jpg" }, { "if": { @@ -78371,7 +78454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroseven-8d9e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroseven-8d9e82.jpg" }, { "if": { @@ -78386,7 +78469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrocanada-04874d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petrocanada-04874d.svg" }, { "if": { @@ -78401,7 +78484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrot-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrot-04874d.jpg" }, { "if": { @@ -78416,7 +78499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroecuador-07d016.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroecuador-07d016.jpg" }, { "if": { @@ -78431,7 +78514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrol-7302f5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petrol-7302f5.svg" }, { "if": { @@ -78446,7 +78529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrolofisi-b3d110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrolofisi-b3d110.jpg" }, { "if": { @@ -78461,7 +78544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrolimex-b3d110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrolimex-b3d110.jpg" }, { "if": { @@ -78476,7 +78559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrolina-96daf2.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrolina-96daf2.png" }, { "if": { @@ -78491,7 +78574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrom-144a57.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrom-144a57.png" }, { "if": { @@ -78506,7 +78589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrom-871b5c.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrom-871b5c.png" }, { "if": { @@ -78521,7 +78604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petron-21bb35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petron-21bb35.jpg" }, { "if": { @@ -78536,7 +78619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petronas-b3d110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petronas-b3d110.jpg" }, { "if": { @@ -78551,7 +78634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petronor-83f854.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petronor-83f854.jpg" }, { "if": { @@ -78566,7 +78649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroperu-877762.png" + "then": "https://data.mapcomplete.org/nsi//logos/petroperu-877762.png" }, { "if": { @@ -78581,7 +78664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroprix-57abaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroprix-57abaf.jpg" }, { "if": { @@ -78596,7 +78679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrosol-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrosol-fdaf22.jpg" }, { "if": { @@ -78611,7 +78694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phillips66-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phillips66-c5cf43.jpg" }, { "if": { @@ -78626,7 +78709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phoenix-289efc.png" + "then": "https://data.mapcomplete.org/nsi//logos/phoenix-289efc.png" }, { "if": { @@ -78642,7 +78725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pilot-337af2.png" + "then": "https://data.mapcomplete.org/nsi//logos/pilot-337af2.png" }, { "if": { @@ -78657,7 +78740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pioneer-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pioneer-04874d.jpg" }, { "if": { @@ -78672,7 +78755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/power-a23ac0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/power-a23ac0.jpg" }, { "if": { @@ -78687,7 +78770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/preem-906b06.png" + "then": "https://data.mapcomplete.org/nsi//logos/preem-906b06.png" }, { "if": { @@ -78702,7 +78785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primax-07d016.png" + "then": "https://data.mapcomplete.org/nsi//logos/primax-07d016.png" }, { "if": { @@ -78717,7 +78800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primax-877762.png" + "then": "https://data.mapcomplete.org/nsi//logos/primax-877762.png" }, { "if": { @@ -78732,7 +78815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prio-bb4e16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prio-bb4e16.jpg" }, { "if": { @@ -78747,7 +78830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pt-56d9b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pt-56d9b3.jpg" }, { "if": { @@ -78762,7 +78845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ptt-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ptt-16b3c2.jpg" }, { "if": { @@ -78777,7 +78860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puma-16b3c2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/puma-16b3c2.svg" }, { "if": { @@ -78792,7 +78875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/q1-495186.png" + "then": "https://data.mapcomplete.org/nsi//logos/q1-495186.png" }, { "if": { @@ -78807,7 +78890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/q8-7bb553.png" + "then": "https://data.mapcomplete.org/nsi//logos/q8-7bb553.png" }, { "if": { @@ -78822,7 +78905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/q8easy-578c5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/q8easy-578c5e.jpg" }, { "if": { @@ -78837,7 +78920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qazaqoil-6daebb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qazaqoil-6daebb.jpg" }, { "if": { @@ -78852,7 +78935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qiknez-e7bc16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qiknez-e7bc16.jpg" }, { "if": { @@ -78867,7 +78950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickchek-c5cf43.svg" + "then": "https://data.mapcomplete.org/nsi//logos/quickchek-c5cf43.svg" }, { "if": { @@ -78883,7 +78966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quiktrip-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quiktrip-16b3c2.jpg" }, { "if": { @@ -78898,7 +78981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/racetrac-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/racetrac-16b3c2.jpg" }, { "if": { @@ -78913,7 +78996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raceway-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raceway-c5cf43.jpg" }, { "if": { @@ -78930,7 +79013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rdpetroleum-088dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rdpetroleum-088dbb.jpg" }, { "if": { @@ -78945,7 +79028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/realk-11d3b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/realk-11d3b6.jpg" }, { "if": { @@ -78960,7 +79043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/refinor-dca697.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/refinor-dca697.jpg" }, { "if": { @@ -78975,7 +79058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reliance-989925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reliance-989925.jpg" }, { "if": { @@ -78990,7 +79073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rendichicas-8d9e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rendichicas-8d9e82.jpg" }, { "if": { @@ -79005,7 +79088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repsol-b3d110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/repsol-b3d110.jpg" }, { "if": { @@ -79020,7 +79103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/retitalia-e8f712.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/retitalia-e8f712.jpg" }, { "if": { @@ -79035,7 +79118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/revoil-c67f2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/revoil-c67f2c.jpg" }, { "if": { @@ -79050,7 +79133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodes-03973e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodes-03973e.jpg" }, { "if": { @@ -79065,7 +79148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rodoil-c14748.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rodoil-c14748.jpg" }, { "if": { @@ -79080,7 +79163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rottenrobbie-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/rottenrobbie-c5cf43.png" }, { "if": { @@ -79095,7 +79178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalfarms-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalfarms-c5cf43.jpg" }, { "if": { @@ -79110,7 +79193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rubis-16b3c2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rubis-16b3c2.svg" }, { "if": { @@ -79125,7 +79208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rutters-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rutters-c5cf43.jpg" }, { "if": { @@ -79140,7 +79223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soil-ae677b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/soil-ae677b.svg" }, { "if": { @@ -79155,7 +79238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safewayfuelstation-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safewayfuelstation-16b3c2.jpg" }, { "if": { @@ -79170,7 +79253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sainsburys-20aed2.png" + "then": "https://data.mapcomplete.org/nsi//logos/sainsburys-20aed2.png" }, { "if": { @@ -79185,7 +79268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samsclub-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samsclub-c5cf43.jpg" }, { "if": { @@ -79200,7 +79283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanmarcopetroli-e8f712.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanmarcopetroli-e8f712.png" }, { "if": { @@ -79215,7 +79298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sasol-0ba9a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/sasol-0ba9a1.png" }, { "if": { @@ -79230,7 +79313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbtank-495186.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sbtank-495186.svg" }, { "if": { @@ -79245,7 +79328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seaoil-289efc.png" + "then": "https://data.mapcomplete.org/nsi//logos/seaoil-289efc.png" }, { "if": { @@ -79260,7 +79343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheetz-8ea4ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/sheetz-8ea4ad.png" }, { "if": { @@ -79275,7 +79358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-00679c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-00679c.jpg" }, { "if": { @@ -79290,7 +79373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shellexpress-4a6616.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shellexpress-4a6616.jpg" }, { "if": { @@ -79305,7 +79388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shiptech-ddc474.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shiptech-ddc474.jpg" }, { "if": { @@ -79320,7 +79403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sim-c14748.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sim-c14748.jpg" }, { "if": { @@ -79335,7 +79418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinclair-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinclair-c5cf43.jpg" }, { "if": { @@ -79350,7 +79433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovnaft-d7c78f.png" + "then": "https://data.mapcomplete.org/nsi//logos/slovnaft-d7c78f.png" }, { "if": { @@ -79365,7 +79448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartfuels-289efc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smartfuels-289efc.jpg" }, { "if": { @@ -79380,7 +79463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/socar-619b60.png" + "then": "https://data.mapcomplete.org/nsi//logos/socar-619b60.png" }, { "if": { @@ -79395,7 +79478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sokimex-dc29c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sokimex-dc29c2.jpg" }, { "if": { @@ -79410,7 +79493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sol-6e9b5c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sol-6e9b5c.png" }, { "if": { @@ -79425,7 +79508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonangol-a1d251.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sonangol-a1d251.svg" }, { "if": { @@ -79440,7 +79523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonic-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonic-04874d.jpg" }, { "if": { @@ -79455,7 +79538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedway-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedway-c5cf43.jpg" }, { "if": { @@ -79470,7 +79553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spinx-251f50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spinx-251f50.jpg" }, { "if": { @@ -79485,7 +79568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sprint-495186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sprint-495186.jpg" }, { "if": { @@ -79500,7 +79583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/st1-cf1d83.png" + "then": "https://data.mapcomplete.org/nsi//logos/st1-cf1d83.png" }, { "if": { @@ -79515,7 +79598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/star-495186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/star-495186.jpg" }, { "if": { @@ -79532,7 +79615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staroil-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/staroil-fdaf22.jpg" }, { "if": { @@ -79547,7 +79630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stationserviceeleclerc-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stationserviceeleclerc-16b3c2.jpg" }, { "if": { @@ -79562,7 +79645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statoil-442e61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/statoil-442e61.jpg" }, { "if": { @@ -79577,7 +79660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stewarts-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stewarts-c5cf43.jpg" }, { "if": { @@ -79592,7 +79675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stopandshop-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stopandshop-c5cf43.jpg" }, { "if": { @@ -79607,7 +79690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunoco-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/sunoco-c5cf43.png" }, { "if": { @@ -79622,7 +79705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunpet-ec7588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunpet-ec7588.jpg" }, { "if": { @@ -79637,7 +79720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superu-3772a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superu-3772a0.jpg" }, { "if": { @@ -79652,23 +79735,23 @@ } ] }, - "then": "./assets/data/nsi/logos/systemeu-acec89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/systemeu-acec89.jpg" }, { "if": { "and": [ "amenity=fuel", - "official_name=TravelCenters of America", { "or": [ "brand=TA", "brand:wikidata=Q7835892", - "name=TA" + "name=TA", + "official_name=TravelCenters of America" ] } ] }, - "then": "./assets/data/nsi/logos/ta-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ta-c5cf43.jpg" }, { "if": { @@ -79683,7 +79766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamautohof-5f489f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamautohof-5f489f.jpg" }, { "if": { @@ -79698,7 +79781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamoil-c25a01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamoil-c25a01.jpg" }, { "if": { @@ -79713,7 +79796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamoilexpress-6cdea6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamoilexpress-6cdea6.jpg" }, { "if": { @@ -79728,7 +79811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tango-e5aa28.png" + "then": "https://data.mapcomplete.org/nsi//logos/tango-e5aa28.png" }, { "if": { @@ -79743,7 +79826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanka-a1affa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tanka-a1affa.jpg" }, { "if": { @@ -79758,7 +79841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanker-11d3b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tanker-11d3b6.jpg" }, { "if": { @@ -79773,7 +79856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tankpool24-0c8e6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tankpool24-0c8e6e.jpg" }, { "if": { @@ -79788,7 +79871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanqyou-6cdea6.png" + "then": "https://data.mapcomplete.org/nsi//logos/tanqyou-6cdea6.png" }, { "if": { @@ -79803,7 +79886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teboil-2a28c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/teboil-2a28c8.png" }, { "if": { @@ -79818,7 +79901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tela-dc29c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tela-dc29c2.jpg" }, { "if": { @@ -79835,7 +79918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenergy-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telenergy-fdaf22.jpg" }, { "if": { @@ -79850,7 +79933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tempo-04874d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tempo-04874d.jpg" }, { "if": { @@ -79865,7 +79948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/termo-ec7588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/termo-ec7588.jpg" }, { "if": { @@ -79880,7 +79963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terpel-23f925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terpel-23f925.jpg" }, { "if": { @@ -79895,7 +79978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terribles-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terribles-c5cf43.jpg" }, { "if": { @@ -79911,7 +79994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terriblesdiesel-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terriblesdiesel-c5cf43.jpg" }, { "if": { @@ -79926,7 +80009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesco-99b029.png" + "then": "https://data.mapcomplete.org/nsi//logos/tesco-99b029.png" }, { "if": { @@ -79941,7 +80024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesoro-c5cf43.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tesoro-c5cf43.svg" }, { "if": { @@ -79956,7 +80039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texaco-20647b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texaco-20647b.jpg" }, { "if": { @@ -79971,7 +80054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thorntons-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/thorntons-c5cf43.png" }, { "if": { @@ -79986,7 +80069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tinq-56839d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tinq-56839d.jpg" }, { "if": { @@ -80001,7 +80084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirexpetrol-66cb39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tirexpetrol-66cb39.jpg" }, { "if": { @@ -80016,23 +80099,23 @@ } ] }, - "then": "./assets/data/nsi/logos/tomthumb-bc7b86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomthumb-bc7b86.jpg" }, { "if": { "and": [ "amenity=fuel", - "official_name=Tedcastles Oil Products", { "or": [ "brand=Top", "brand:wikidata=Q7693933", - "name=Top" + "name=Top", + "official_name=Tedcastles Oil Products" ] } ] }, - "then": "./assets/data/nsi/logos/top-5afa7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/top-5afa7a.jpg" }, { "if": { @@ -80049,23 +80132,23 @@ } ] }, - "then": "./assets/data/nsi/logos/topoil-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topoil-fdaf22.jpg" }, { "if": { "and": [ "amenity=fuel", - "official_name=Tops Gasoline", { "or": [ "brand=Tops", "brand:wikidata=Q7825137", - "name=Tops" + "name=Tops", + "official_name=Tops Gasoline" ] } ] }, - "then": "./assets/data/nsi/logos/tops-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tops-c5cf43.jpg" }, { "if": { @@ -80082,7 +80165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/total-389b37.png" + "then": "https://data.mapcomplete.org/nsi//logos/total-389b37.png" }, { "if": { @@ -80097,7 +80180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalenergies-ff2f90.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalenergies-ff2f90.png" }, { "if": { @@ -80113,7 +80196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truezero-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/truezero-c5cf43.png" }, { "if": { @@ -80128,7 +80211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkeyhill-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkeyhill-c5cf43.jpg" }, { "if": { @@ -80143,7 +80226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkiyepetrolleri-ec7588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkiyepetrolleri-ec7588.jpg" }, { "if": { @@ -80158,7 +80241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turmol-565075.png" + "then": "https://data.mapcomplete.org/nsi//logos/turmol-565075.png" }, { "if": { @@ -80173,7 +80256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/u-3772a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/u-3772a0.jpg" }, { "if": { @@ -80188,7 +80271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugo-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ugo-ed4144.jpg" }, { "if": { @@ -80204,7 +80287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/udffuel-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/udffuel-c5cf43.jpg" }, { "if": { @@ -80219,7 +80302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ufa-22e5cc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ufa-22e5cc.svg" }, { "if": { @@ -80238,7 +80321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrnafta-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrnafta-ed4144.jpg" }, { "if": { @@ -80253,7 +80336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ultramar-16b3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/ultramar-16b3c2.png" }, { "if": { @@ -80268,7 +80351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/united-9ed9c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/united-9ed9c0.jpg" }, { "if": { @@ -80283,7 +80366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uno-24faf9.png" + "then": "https://data.mapcomplete.org/nsi//logos/uno-24faf9.png" }, { "if": { @@ -80298,7 +80381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unox-9449e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unox-9449e0.jpg" }, { "if": { @@ -80313,7 +80396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/upg-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/upg-ed4144.jpg" }, { "if": { @@ -80328,7 +80411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usagasoline-c5cf43.svg" + "then": "https://data.mapcomplete.org/nsi//logos/usagasoline-c5cf43.svg" }, { "if": { @@ -80343,7 +80426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valero-16b3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/valero-16b3c2.png" }, { "if": { @@ -80358,7 +80441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vegacarburanti-e8f712.png" + "then": "https://data.mapcomplete.org/nsi//logos/vegacarburanti-e8f712.png" }, { "if": { @@ -80373,7 +80456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viada-86cad0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/viada-86cad0.jpg" }, { "if": { @@ -80388,7 +80471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virsi-a63b5f.png" + "then": "https://data.mapcomplete.org/nsi//logos/virsi-a63b5f.png" }, { "if": { @@ -80403,7 +80486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vito-3772a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vito-3772a0.jpg" }, { "if": { @@ -80418,7 +80501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vmpetroleum-b450da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vmpetroleum-b450da.jpg" }, { "if": { @@ -80433,7 +80516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waitomo-088dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waitomo-088dbb.jpg" }, { "if": { @@ -80448,7 +80531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmart-16b3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmart-16b3c2.jpg" }, { "if": { @@ -80463,7 +80546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wawa-f5bad4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wawa-f5bad4.jpg" }, { "if": { @@ -80478,7 +80561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weisgasngo-c5cf43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weisgasngo-c5cf43.jpg" }, { "if": { @@ -80493,7 +80576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wesco-c5cf43.png" + "then": "https://data.mapcomplete.org/nsi//logos/wesco-c5cf43.png" }, { "if": { @@ -80508,7 +80591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfalen-495186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westfalen-495186.jpg" }, { "if": { @@ -80523,7 +80606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winxo-144a57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winxo-144a57.jpg" }, { "if": { @@ -80538,7 +80621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wog-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wog-ed4144.jpg" }, { "if": { @@ -80553,7 +80636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ypf-dca697.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ypf-dca697.jpg" }, { "if": { @@ -80568,7 +80651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yx-9449e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/yx-9449e0.png" }, { "if": { @@ -80583,7 +80666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/z-088dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/z-088dbb.jpg" }, { "if": { @@ -80600,7 +80683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zen-fdaf22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zen-fdaf22.jpg" }, { "if": { @@ -80615,7 +80698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zgraiffeisenenergie-495186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zgraiffeisenenergie-495186.jpg" }, { "if": { @@ -80630,7 +80713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziz-144a57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ziz-144a57.jpg" }, { "if": { @@ -80645,7 +80728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a9320e-c67f2c.png" + "then": "https://data.mapcomplete.org/nsi//logos/a9320e-c67f2c.png" }, { "if": { @@ -80660,7 +80743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1b5559-c67f2c.png" + "then": "https://data.mapcomplete.org/nsi//logos/1b5559-c67f2c.png" }, { "if": { @@ -80679,7 +80762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avias-ed4144.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avias-ed4144.svg" }, { "if": { @@ -80698,7 +80781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bashneft-14ecc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bashneft-14ecc6.jpg" }, { "if": { @@ -80713,7 +80796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ed92ce-3aaa6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ed92ce-3aaa6d.jpg" }, { "if": { @@ -80730,7 +80813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benita-b450da.png" + "then": "https://data.mapcomplete.org/nsi//logos/benita-b450da.png" }, { "if": { @@ -80745,7 +80828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/69e648-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/69e648-ed4144.jpg" }, { "if": { @@ -80760,7 +80843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/0b910f-bb6729.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/0b910f-bb6729.jpg" }, { "if": { @@ -80777,7 +80860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knezpetrol-a971aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knezpetrol-a971aa.jpg" }, { "if": { @@ -80796,7 +80879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ef63bd-6daebb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ef63bd-6daebb.jpg" }, { "if": { @@ -80815,7 +80898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-0962f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-0962f2.jpg" }, { "if": { @@ -80834,7 +80917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-b450da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-b450da.jpg" }, { "if": { @@ -80849,7 +80932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c21137-fb1891.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c21137-fb1891.jpg" }, { "if": { @@ -80868,7 +80951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/market-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/market-ed4144.jpg" }, { "if": { @@ -80887,7 +80970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neftmagistral-14ecc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neftmagistral-14ecc6.jpg" }, { "if": { @@ -80904,7 +80987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nispetrol-a971aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nispetrol-a971aa.jpg" }, { "if": { @@ -80923,7 +81006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okko-ed4144.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okko-ed4144.jpg" }, { "if": { @@ -80940,7 +81023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okta-fb1891.png" + "then": "https://data.mapcomplete.org/nsi//logos/okta-fb1891.png" }, { "if": { @@ -80955,7 +81038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/637ba4-b450da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/637ba4-b450da.jpg" }, { "if": { @@ -80974,7 +81057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrol-b450da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrol-b450da.jpg" }, { "if": { @@ -80993,7 +81076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thepetersburgfuelcompany-14ecc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thepetersburgfuelcompany-14ecc6.jpg" }, { "if": { @@ -81010,7 +81093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rompetrol-b450da.png" + "then": "https://data.mapcomplete.org/nsi//logos/rompetrol-b450da.png" }, { "if": { @@ -81029,7 +81112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosneft-14ecc6.png" + "then": "https://data.mapcomplete.org/nsi//logos/rosneft-14ecc6.png" }, { "if": { @@ -81048,7 +81131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surgutneftegas-14ecc6.gif" + "then": "https://data.mapcomplete.org/nsi//logos/surgutneftegas-14ecc6.gif" }, { "if": { @@ -81067,7 +81150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tatneft-14ecc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tatneft-14ecc6.jpg" }, { "if": { @@ -81089,7 +81172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulf-7489db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gulf-7489db.jpg" }, { "if": { @@ -81108,7 +81191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekopetrol-7489db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekopetrol-7489db.jpg" }, { "if": { @@ -81132,7 +81215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-7489db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-7489db.jpg" }, { "if": { @@ -81153,7 +81236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neogas-7489db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neogas-7489db.jpg" }, { "if": { @@ -81172,7 +81255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portal-7489db.png" + "then": "https://data.mapcomplete.org/nsi//logos/portal-7489db.png" }, { "if": { @@ -81191,7 +81274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rompetrol-7489db.png" + "then": "https://data.mapcomplete.org/nsi//logos/rompetrol-7489db.png" }, { "if": { @@ -81213,7 +81296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/socar-7489db.png" + "then": "https://data.mapcomplete.org/nsi//logos/socar-7489db.png" }, { "if": { @@ -81232,7 +81315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/connect-7489db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/connect-7489db.jpg" }, { "if": { @@ -81251,7 +81334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doralon-bb4acb.png" + "then": "https://data.mapcomplete.org/nsi//logos/doralon-bb4acb.png" }, { "if": { @@ -81270,7 +81353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonol-bb4acb.png" + "then": "https://data.mapcomplete.org/nsi//logos/sonol-bb4acb.png" }, { "if": { @@ -81289,7 +81372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paz-bb4acb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paz-bb4acb.jpg" }, { "if": { @@ -81308,7 +81391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adnoc-cfa330.png" + "then": "https://data.mapcomplete.org/nsi//logos/adnoc-cfa330.png" }, { "if": { @@ -81327,7 +81410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aramco-13ec76.png" + "then": "https://data.mapcomplete.org/nsi//logos/aramco-13ec76.png" }, { "if": { @@ -81346,7 +81429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldrees-13ec76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aldrees-13ec76.jpg" }, { "if": { @@ -81365,7 +81448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emarat-47133a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emarat-47133a.jpg" }, { "if": { @@ -81384,7 +81467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enoc-7d34dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enoc-7d34dd.jpg" }, { "if": { @@ -81403,7 +81486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petromin-13ec76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petromin-13ec76.svg" }, { "if": { @@ -81427,7 +81510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pakistanstateoil-47133a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pakistanstateoil-47133a.jpg" }, { "if": { @@ -81446,7 +81529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/total-7d34dd.png" + "then": "https://data.mapcomplete.org/nsi//logos/total-7d34dd.png" }, { "if": { @@ -81465,7 +81548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sasco-13ec76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sasco-13ec76.jpg" }, { "if": { @@ -81484,7 +81567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-7a1cc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-7a1cc2.jpg" }, { "if": { @@ -81507,7 +81590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-47133a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-47133a.jpg" }, { "if": { @@ -81526,7 +81609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agil-7aee9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agil-7aee9d.jpg" }, { "if": { @@ -81545,7 +81628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naft-13ec76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naft-13ec76.jpg" }, { "if": { @@ -81564,7 +81647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-56d9b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-56d9b3.jpg" }, { "if": { @@ -81583,7 +81666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangchak-56d9b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bangchak-56d9b3.jpg" }, { "if": { @@ -81602,7 +81685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ptt-56d9b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ptt-56d9b3.jpg" }, { "if": { @@ -81621,7 +81704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-56d9b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-56d9b3.jpg" }, { "if": { @@ -81640,7 +81723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyundaioilbank-ae677b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hyundaioilbank-ae677b.svg" }, { "if": { @@ -81659,7 +81742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kygnus-fbe2e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kygnus-fbe2e4.svg" }, { "if": { @@ -81678,13 +81761,12 @@ } ] }, - "then": "./assets/data/nsi/logos/costcogasoline-fbe2e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcogasoline-fbe2e4.svg" }, { "if": { "and": [ "amenity=fuel", - "official_name=コスモ石油", { "or": [ "brand=コスモ", @@ -81693,12 +81775,13 @@ "brand:wikidata=Q2498318", "name=コスモ", "name:en=Cosmo", - "name:ja=コスモ" + "name:ja=コスモ", + "official_name=コスモ石油" ] } ] }, - "then": "./assets/data/nsi/logos/cosmo-fbe2e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cosmo-fbe2e4.svg" }, { "if": { @@ -81717,7 +81800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinopec-7eecbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinopec-7eecbc.jpg" }, { "if": { @@ -81740,7 +81823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinopec-a5d248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinopec-a5d248.jpg" }, { "if": { @@ -81763,7 +81846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrochina-a5d248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrochina-a5d248.jpg" }, { "if": { @@ -81782,7 +81865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idemitsu-fbe2e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/idemitsu-fbe2e4.svg" }, { "if": { @@ -81801,7 +81884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/formosapetrochemicalcorporation-db3418.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/formosapetrochemicalcorporation-db3418.jpg" }, { "if": { @@ -81820,7 +81903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpccorporationtaiwan-db3418.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpccorporationtaiwan-db3418.jpg" }, { "if": { @@ -81839,7 +81922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcogasoline-db3418.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcogasoline-db3418.svg" }, { "if": { @@ -81858,7 +81941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/showashell-fbe2e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/showashell-fbe2e4.jpg" }, { "if": { @@ -81874,7 +81957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buzzbingo-738ef2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buzzbingo-738ef2.jpg" }, { "if": { @@ -81890,7 +81973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meccabingo-738ef2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/meccabingo-738ef2.svg" }, { "if": { @@ -81905,7 +81988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agel-df0cb5.png" + "then": "https://data.mapcomplete.org/nsi//logos/agel-df0cb5.png" }, { "if": { @@ -81928,7 +82011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangkokhospital-e6bd8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bangkokhospital-e6bd8c.jpg" }, { "if": { @@ -81944,7 +82027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesroteskreuz-befdb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-befdb8.jpg" }, { "if": { @@ -81959,7 +82042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pentahospitals-0d8c15.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pentahospitals-0d8c15.jpg" }, { "if": { @@ -81978,7 +82061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sentara-7551ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sentara-7551ac.jpg" }, { "if": { @@ -82000,7 +82083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baskinrobbins-cc8b8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/baskinrobbins-cc8b8b.png" }, { "if": { @@ -82015,7 +82098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fd1d7e-3c9560.png" + "then": "https://data.mapcomplete.org/nsi//logos/fd1d7e-3c9560.png" }, { "if": { @@ -82031,7 +82114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abbottsfrozencustard-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abbottsfrozencustard-8697a4.jpg" }, { "if": { @@ -82046,7 +82129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aftersoriginal-22b8b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aftersoriginal-22b8b7.jpg" }, { "if": { @@ -82061,7 +82144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amorino-d14110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amorino-d14110.jpg" }, { "if": { @@ -82076,7 +82159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amysicecreams-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amysicecreams-8697a4.jpg" }, { "if": { @@ -82092,7 +82175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andysfrozencustard-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andysfrozencustard-8697a4.jpg" }, { "if": { @@ -82109,7 +82192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baciodilatte-46659e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baciodilatte-46659e.jpg" }, { "if": { @@ -82125,7 +82208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baskinrobbins-076da2.png" + "then": "https://data.mapcomplete.org/nsi//logos/baskinrobbins-076da2.png" }, { "if": { @@ -82141,7 +82224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benandjerrys-87d971.png" + "then": "https://data.mapcomplete.org/nsi//logos/benandjerrys-87d971.png" }, { "if": { @@ -82156,7 +82239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bicodexeado-2a89e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bicodexeado-2a89e9.jpg" }, { "if": { @@ -82172,7 +82255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brustersicecream-8697a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/brustersicecream-8697a4.png" }, { "if": { @@ -82189,7 +82272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carvel-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carvel-8697a4.jpg" }, { "if": { @@ -82204,7 +82287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chiquinhosorvetes-9359b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/chiquinhosorvetes-9359b6.png" }, { "if": { @@ -82221,7 +82304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coldrockicecreamery-e699dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coldrockicecreamery-e699dd.jpg" }, { "if": { @@ -82237,7 +82320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coldstonecreamery-87d971.png" + "then": "https://data.mapcomplete.org/nsi//logos/coldstonecreamery-87d971.png" }, { "if": { @@ -82253,7 +82336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creams-546be0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creams-546be0.jpg" }, { "if": { @@ -82269,7 +82352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donofrio-93a72a.png" + "then": "https://data.mapcomplete.org/nsi//logos/donofrio-93a72a.png" }, { "if": { @@ -82284,7 +82367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deijswinckel-e6af0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/deijswinckel-e6af0f.png" }, { "if": { @@ -82299,7 +82382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dippindots-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dippindots-8697a4.jpg" }, { "if": { @@ -82315,7 +82398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freddo-3a94a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freddo-3a94a6.jpg" }, { "if": { @@ -82332,7 +82415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gelateriadiberna-656c68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gelateriadiberna-656c68.jpg" }, { "if": { @@ -82349,7 +82432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gelatissimo-17af97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gelatissimo-17af97.jpg" }, { "if": { @@ -82364,7 +82447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gelatoborelli-9359b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/gelatoborelli-9359b6.png" }, { "if": { @@ -82379,7 +82462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodlood-944e1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodlood-944e1d.png" }, { "if": { @@ -82396,7 +82479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/graeters-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/graeters-8697a4.jpg" }, { "if": { @@ -82412,7 +82495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grido-1a8176.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grido-1a8176.jpg" }, { "if": { @@ -82429,7 +82512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grom-48073a.png" + "then": "https://data.mapcomplete.org/nsi//logos/grom-48073a.png" }, { "if": { @@ -82444,7 +82527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grycan-944e1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grycan-944e1d.jpg" }, { "if": { @@ -82459,7 +82542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haagendazs-61f56c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/haagendazs-61f56c.svg" }, { "if": { @@ -82475,7 +82558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handelshomemadeicecream-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/handelshomemadeicecream-8697a4.jpg" }, { "if": { @@ -82490,7 +82573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jannyseis-4549fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jannyseis-4549fd.jpg" }, { "if": { @@ -82506,7 +82589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jenissplendidicecreams-53b2e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jenissplendidicecreams-53b2e0.jpg" }, { "if": { @@ -82521,7 +82604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeremiahsitalianice-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeremiahsitalianice-8697a4.jpg" }, { "if": { @@ -82536,7 +82619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jijonenca-f20d3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jijonenca-f20d3f.jpg" }, { "if": { @@ -82551,7 +82634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamichoacana-7f1444.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamichoacana-7f1444.jpg" }, { "if": { @@ -82567,7 +82650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/llaollao-dd9462.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/llaollao-dd9462.jpg" }, { "if": { @@ -82584,7 +82667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lodybonano-944e1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lodybonano-944e1d.jpg" }, { "if": { @@ -82599,7 +82682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luciano-e6af0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luciano-e6af0f.jpg" }, { "if": { @@ -82615,7 +82698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marbleslabcreamery-5880a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marbleslabcreamery-5880a0.svg" }, { "if": { @@ -82631,7 +82714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/menchies-411174.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/menchies-411174.jpg" }, { "if": { @@ -82647,7 +82730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/messina-e699dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/messina-e699dd.jpg" }, { "if": { @@ -82662,7 +82745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milkylane-2b047e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milkylane-2b047e.jpg" }, { "if": { @@ -82678,7 +82761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturals-c284d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturals-c284d9.jpg" }, { "if": { @@ -82693,7 +82776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nutrisa-7f1444.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nutrisa-7f1444.jpg" }, { "if": { @@ -82708,7 +82791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oggisorvetes-9359b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oggisorvetes-9359b6.jpg" }, { "if": { @@ -82724,7 +82807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangeleaffrozenyogurt-4cfb80.png" + "then": "https://data.mapcomplete.org/nsi//logos/orangeleaffrozenyogurt-4cfb80.png" }, { "if": { @@ -82740,7 +82823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peachwave-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peachwave-8697a4.jpg" }, { "if": { @@ -82757,7 +82840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinkberry-87d971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pinkberry-87d971.jpg" }, { "if": { @@ -82772,42 +82855,42 @@ } ] }, - "then": "./assets/data/nsi/logos/pops-74244e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pops-74244e.jpg" }, { "if": { "and": [ "amenity=ice_cream", "cuisine=ice_cream", - "official_name=Helados Gourmet Popsy", "takeaway=yes", { "or": [ "brand=Popsy", "brand:wikidata=Q100156171", - "name=Popsy" + "name=Popsy", + "official_name=Helados Gourmet Popsy" ] } ] }, - "then": "./assets/data/nsi/logos/popsy-d81526.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popsy-d81526.jpg" }, { "if": { "and": [ "amenity=ice_cream", "cuisine=ice_cream", - "official_name=Ralph's Famous Italian Ices", { "or": [ "brand=Ralph's Italian Ices", "brand:wikidata=Q62576909", - "name=Ralph's Italian Ices" + "name=Ralph's Italian Ices", + "official_name=Ralph's Famous Italian Ices" ] } ] }, - "then": "./assets/data/nsi/logos/ralphsitalianices-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ralphsitalianices-8697a4.jpg" }, { "if": { @@ -82822,7 +82905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redmango-73fcc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redmango-73fcc9.jpg" }, { "if": { @@ -82838,7 +82921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regma-2a89e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regma-2a89e9.jpg" }, { "if": { @@ -82854,7 +82937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ritasitalianice-8697a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/ritasitalianice-8697a4.png" }, { "if": { @@ -82869,7 +82952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltandstraw-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saltandstraw-8697a4.jpg" }, { "if": { @@ -82885,72 +82968,72 @@ } ] }, - "then": "./assets/data/nsi/logos/sanpaologelatoandcafe-9359b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanpaologelatoandcafe-9359b6.jpg" }, { "if": { "and": [ "amenity=ice_cream", - "official_name=Shake's Frozen Custard", { "or": [ "brand=Shake's", "brand:wikidata=Q17032842", - "name=Shake's" + "name=Shake's", + "official_name=Shake's Frozen Custard" ] } ] }, - "then": "./assets/data/nsi/logos/shakes-8697a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/shakes-8697a4.png" }, { "if": { "and": [ "amenity=ice_cream", - "official_name=Softy Cream", { "or": [ "brand=smöoy", "brand:wikidata=Q21573945", - "name=smöoy" + "name=smöoy", + "official_name=Softy Cream" ] } ] }, - "then": "./assets/data/nsi/logos/smooy-ae897d.png" + "then": "https://data.mapcomplete.org/nsi//logos/smooy-ae897d.png" }, { "if": { "and": [ "amenity=ice_cream", "cuisine=soft_serve;taiyaki;bungeoppang", - "official_name=SomiSomi Soft Serve & Taiyaki", { "or": [ "brand=SomiSomi", "brand:wikidata=Q104879354", - "name=SomiSomi" + "name=SomiSomi", + "official_name=SomiSomi Soft Serve & Taiyaki" ] } ] }, - "then": "./assets/data/nsi/logos/somisomi-8697a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/somisomi-8697a4.png" }, { "if": { "and": [ "amenity=ice_cream", - "official_name=Sub Zero Nitrogen Ice Cream", { "or": [ "brand=Sub Zero", "brand:wikidata=Q108413623", - "name=Sub Zero" + "name=Sub Zero", + "official_name=Sub Zero Nitrogen Ice Cream" ] } ] }, - "then": "./assets/data/nsi/logos/subzero-8697a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/subzero-8697a4.png" }, { "if": { @@ -82966,7 +83049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sweetfrog-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sweetfrog-8697a4.jpg" }, { "if": { @@ -82982,7 +83065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swensens-570cf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swensens-570cf0.jpg" }, { "if": { @@ -82999,7 +83082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tcby-87d971.png" + "then": "https://data.mapcomplete.org/nsi//logos/tcby-87d971.png" }, { "if": { @@ -83017,7 +83100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebakedbear-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebakedbear-8697a4.jpg" }, { "if": { @@ -83032,7 +83115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toscana-e6af0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toscana-e6af0f.jpg" }, { "if": { @@ -83047,7 +83130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/twisteetreat-a9be0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/twisteetreat-a9be0b.png" }, { "if": { @@ -83064,7 +83147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanleeuwenicecream-8697a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/vanleeuwenicecream-8697a4.png" }, { "if": { @@ -83080,7 +83163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veganista-131346.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veganista-131346.jpg" }, { "if": { @@ -83097,7 +83180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yogenfruz-87d971.png" + "then": "https://data.mapcomplete.org/nsi//logos/yogenfruz-87d971.png" }, { "if": { @@ -83114,7 +83197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yogorino-87d971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yogorino-87d971.jpg" }, { "if": { @@ -83131,7 +83214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yogurtfactory-321c46.png" + "then": "https://data.mapcomplete.org/nsi//logos/yogurtfactory-321c46.png" }, { "if": { @@ -83148,7 +83231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yogurtmountain-8697a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yogurtmountain-8697a4.jpg" }, { "if": { @@ -83165,7 +83248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yogurtland-4111ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/yogurtland-4111ef.png" }, { "if": { @@ -83182,7 +83265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yumilicious-0da7a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yumilicious-0da7a6.jpg" }, { "if": { @@ -83203,7 +83286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baskinrobbins-9f5e40.png" + "then": "https://data.mapcomplete.org/nsi//logos/baskinrobbins-9f5e40.png" }, { "if": { @@ -83225,7 +83308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tolia-9f5e40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tolia-9f5e40.jpg" }, { "if": { @@ -83246,7 +83329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lucapolare-9f5e40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lucapolare-9f5e40.jpg" }, { "if": { @@ -83266,7 +83349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baskinrobbins-7ba154.png" + "then": "https://data.mapcomplete.org/nsi//logos/baskinrobbins-7ba154.png" }, { "if": { @@ -83283,7 +83366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haagendazs-460b92.svg" + "then": "https://data.mapcomplete.org/nsi//logos/haagendazs-460b92.svg" }, { "if": { @@ -83303,7 +83386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meetfresh-cc8b8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/meetfresh-cc8b8b.png" }, { "if": { @@ -83323,7 +83406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meetfresh-cccbe8.png" + "then": "https://data.mapcomplete.org/nsi//logos/meetfresh-cccbe8.png" }, { "if": { @@ -83343,7 +83426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meetfresh-136fc8.png" + "then": "https://data.mapcomplete.org/nsi//logos/meetfresh-136fc8.png" }, { "if": { @@ -83363,7 +83446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comicbuster-340adf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comicbuster-340adf.jpg" }, { "if": { @@ -83384,7 +83467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaikatsuclub-340adf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaikatsuclub-340adf.jpg" }, { "if": { @@ -83405,7 +83488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spacecreate-340adf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spacecreate-340adf.jpg" }, { "if": { @@ -83421,7 +83504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neway-a8953e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neway-a8953e.jpg" }, { "if": { @@ -83441,7 +83524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karaokemanekineko-c40f09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karaokemanekineko-c40f09.jpg" }, { "if": { @@ -83461,7 +83544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karaokekan-c40f09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karaokekan-c40f09.jpg" }, { "if": { @@ -83481,7 +83564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joysound-c40f09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joysound-c40f09.jpg" }, { "if": { @@ -83501,7 +83584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigecho-c40f09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigecho-c40f09.jpg" }, { "if": { @@ -83521,7 +83604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holiday-54981d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holiday-54981d.jpg" }, { "if": { @@ -83541,7 +83624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cashboxpartyworld-54981d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cashboxpartyworld-54981d.jpg" }, { "if": { @@ -83555,7 +83638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeitersamariterbund-6709ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-6709ec.jpg" }, { "if": { @@ -83569,7 +83652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeiterwohlfahrt-6709ec.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-6709ec.svg" }, { "if": { @@ -83583,7 +83666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aucklandkindergartenassociation-e215a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/aucklandkindergartenassociation-e215a2.png" }, { "if": { @@ -83598,7 +83681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/babilou-f5662b.png" + "then": "https://data.mapcomplete.org/nsi//logos/babilou-f5662b.png" }, { "if": { @@ -83613,7 +83696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beststarteducare-06f88c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beststarteducare-06f88c.jpg" }, { "if": { @@ -83632,7 +83715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brighthorizons-ab065c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brighthorizons-ab065c.jpg" }, { "if": { @@ -83650,7 +83733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chesterbrookacademy-39c780.png" + "then": "https://data.mapcomplete.org/nsi//logos/chesterbrookacademy-39c780.png" }, { "if": { @@ -83665,7 +83748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/childcarenetwork-39c780.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/childcarenetwork-39c780.jpg" }, { "if": { @@ -83686,7 +83769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/childrenslearningadventure-39c780.png" + "then": "https://data.mapcomplete.org/nsi//logos/childrenslearningadventure-39c780.png" }, { "if": { @@ -83705,7 +83788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/childtime-39c780.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/childtime-39c780.jpg" }, { "if": { @@ -83720,7 +83803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crechepeopleandbaby-9b7dc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crechepeopleandbaby-9b7dc9.jpg" }, { "if": { @@ -83734,7 +83817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesroteskreuz-6709ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-6709ec.jpg" }, { "if": { @@ -83748,7 +83831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diakonie-6709ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diakonie-6709ec.jpg" }, { "if": { @@ -83763,7 +83846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guidepostmontessori-b03e52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guidepostmontessori-b03e52.jpg" }, { "if": { @@ -83772,19 +83855,19 @@ "fee=yes", "isced:level=0", "nursery=yes", - "official_name=Kïdo International Preschool", "preschool=yes", { "or": [ "alt_name=Kido", "brand=Kïdo", "brand:wikidata=Q104849185", - "name=Kïdo" + "name=Kïdo", + "official_name=Kïdo International Preschool" ] } ] }, - "then": "./assets/data/nsi/logos/kido-0883b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kido-0883b2.jpg" }, { "if": { @@ -83799,7 +83882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kidsfirst-06f88c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kidsfirst-06f88c.png" }, { "if": { @@ -83814,7 +83897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kindercare-06f88c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kindercare-06f88c.jpg" }, { "if": { @@ -83835,7 +83918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kindercare-39c780.png" + "then": "https://data.mapcomplete.org/nsi//logos/kindercare-39c780.png" }, { "if": { @@ -83854,7 +83937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapetiteacademy-39c780.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lapetiteacademy-39c780.jpg" }, { "if": { @@ -83868,7 +83951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lebenshilfe-6709ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lebenshilfe-6709ec.jpg" }, { "if": { @@ -83883,7 +83966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lespetitschaperonsrouges-9b7dc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lespetitschaperonsrouges-9b7dc9.jpg" }, { "if": { @@ -83900,7 +83983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merryhillpreschool-39c780.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/merryhillpreschool-39c780.jpg" }, { "if": { @@ -83923,7 +84006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primroseschool-39c780.png" + "then": "https://data.mapcomplete.org/nsi//logos/primroseschool-39c780.png" }, { "if": { @@ -83942,7 +84025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safarikid-39c780.png" + "then": "https://data.mapcomplete.org/nsi//logos/safarikid-39c780.png" }, { "if": { @@ -83961,7 +84044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thechildrenscourtyard-39c780.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thechildrenscourtyard-39c780.jpg" }, { "if": { @@ -83983,7 +84066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegoddardschool-39c780.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegoddardschool-39c780.jpg" }, { "if": { @@ -84002,7 +84085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tutortime-39c780.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tutortime-39c780.jpg" }, { "if": { @@ -84016,7 +84099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkssolidaritat-6709ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volkssolidaritat-6709ec.jpg" }, { "if": { @@ -84031,7 +84114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/561f33-179cd5.png" + "then": "https://data.mapcomplete.org/nsi//logos/561f33-179cd5.png" }, { "if": { @@ -84055,7 +84138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeon-411869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aeon-411869.jpg" }, { "if": { @@ -84070,7 +84153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlitz-ce4245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlitz-ce4245.jpg" }, { "if": { @@ -84087,7 +84170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccaa-d56926.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ccaa-d56926.jpg" }, { "if": { @@ -84104,7 +84187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cna-d56926.png" + "then": "https://data.mapcomplete.org/nsi//logos/cna-d56926.png" }, { "if": { @@ -84120,7 +84203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/culturainglesa-d56926.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/culturainglesa-d56926.jpg" }, { "if": { @@ -84149,27 +84232,27 @@ } ] }, - "then": "./assets/data/nsi/logos/eccforeignlanguageinstitute-411869.png" + "then": "https://data.mapcomplete.org/nsi//logos/eccforeignlanguageinstitute-411869.png" }, { "if": { "and": [ "amenity=language_school", "language:en=main", - "official_name=ELS Language Centers", - "official_name:en=ELS Language Centers", { "or": [ "brand=ELS", "brand:en=ELS", "brand:wikidata=Q5323325", "name=ELS", - "name:en=ELS" + "name:en=ELS", + "official_name=ELS Language Centers", + "official_name:en=ELS Language Centers" ] } ] }, - "then": "./assets/data/nsi/logos/els-89568f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/els-89568f.jpg" }, { "if": { @@ -84186,7 +84269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fisk-d56926.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fisk-d56926.jpg" }, { "if": { @@ -84210,7 +84293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gaba-411869.png" + "then": "https://data.mapcomplete.org/nsi//logos/gaba-411869.png" }, { "if": { @@ -84236,7 +84319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nova-411869.png" + "then": "https://data.mapcomplete.org/nsi//logos/nova-411869.png" }, { "if": { @@ -84258,7 +84341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shaneenglishschool-f8b177.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shaneenglishschool-f8b177.jpg" }, { "if": { @@ -84273,7 +84356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wallstreetenglish-ce4245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wallstreetenglish-ce4245.jpg" }, { "if": { @@ -84288,7 +84371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wizard-d56926.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wizard-d56926.jpg" }, { "if": { @@ -84303,7 +84386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yesidiomas-d56926.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yesidiomas-d56926.jpg" }, { "if": { @@ -84325,7 +84408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shaneenglishschool-411869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shaneenglishschool-411869.jpg" }, { "if": { @@ -84347,7 +84430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peppykidsclub-411869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peppykidsclub-411869.jpg" }, { "if": { @@ -84368,7 +84451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlitz-411869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlitz-411869.jpg" }, { "if": { @@ -84388,7 +84471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shaneenglishschool-85e50b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shaneenglishschool-85e50b.jpg" }, { "if": { @@ -84408,7 +84491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shaneenglishschool-ffc9b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shaneenglishschool-ffc9b7.jpg" }, { "if": { @@ -84423,7 +84506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chemeketacooperativeregionallibraryservice-0b187f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chemeketacooperativeregionallibraryservice-0b187f.jpg" }, { "if": { @@ -84438,7 +84521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/librariesofeasternoregon-0b187f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/librariesofeasternoregon-0b187f.jpg" }, { "if": { @@ -84453,7 +84536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/librariesinclackamascounty-0b187f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/librariesinclackamascounty-0b187f.jpg" }, { "if": { @@ -84468,7 +84551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtoncountycooperativelibraryservices-0b187f.png" + "then": "https://data.mapcomplete.org/nsi//logos/washingtoncountycooperativelibraryservices-0b187f.png" }, { "if": { @@ -84483,7 +84566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressunion-bf90ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressunion-bf90ce.jpg" }, { "if": { @@ -84498,7 +84581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moneygram-1032f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moneygram-1032f8.jpg" }, { "if": { @@ -84513,7 +84596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangemoney-b39c4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orangemoney-b39c4d.jpg" }, { "if": { @@ -84528,7 +84611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ria-1032f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ria-1032f8.jpg" }, { "if": { @@ -84543,7 +84626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernunion-1032f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westernunion-1032f8.jpg" }, { "if": { @@ -84558,7 +84641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icebolethufunerals-27942e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icebolethufunerals-27942e.jpg" }, { "if": { @@ -84573,7 +84656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eaglerider-7bb7ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eaglerider-7bb7ec.jpg" }, { "if": { @@ -84588,7 +84671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bachtorock-342afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bachtorock-342afb.jpg" }, { "if": { @@ -84603,7 +84686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schoolofrock-6dbeaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/schoolofrock-6dbeaf.png" }, { "if": { @@ -84624,7 +84707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamahamusicschool-fc8739.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamahamusicschool-fc8739.jpg" }, { "if": { @@ -84645,7 +84728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamahamusicschool-dc9529.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamahamusicschool-dc9529.jpg" }, { "if": { @@ -84664,7 +84747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schoolofrock-fc8739.png" + "then": "https://data.mapcomplete.org/nsi//logos/schoolofrock-fc8739.png" }, { "if": { @@ -84680,7 +84763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allegroonebox-85cd80.png" + "then": "https://data.mapcomplete.org/nsi//logos/allegroonebox-85cd80.png" }, { "if": { @@ -84698,7 +84781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alzabox-bee63b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alzabox-bee63b.jpg" }, { "if": { @@ -84712,7 +84795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazonhub-f85b1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/amazonhub-f85b1f.png" }, { "if": { @@ -84731,7 +84814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazonhublocker-5c1de3.png" + "then": "https://data.mapcomplete.org/nsi//logos/amazonhublocker-5c1de3.png" }, { "if": { @@ -84745,7 +84828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazonlocker-f85b1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/amazonlocker-f85b1f.png" }, { "if": { @@ -84760,7 +84843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australiapostparcellocker-a2f344.png" + "then": "https://data.mapcomplete.org/nsi//logos/australiapostparcellocker-a2f344.png" }, { "if": { @@ -84775,7 +84858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aliexpress-ce4e28.png" + "then": "https://data.mapcomplete.org/nsi//logos/aliexpress-ce4e28.png" }, { "if": { @@ -84792,7 +84875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/balikobox-cda9c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/balikobox-cda9c4.png" }, { "if": { @@ -84809,7 +84892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/balikovobox-cda9c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/balikovobox-cda9c4.jpg" }, { "if": { @@ -84823,7 +84906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boxnow-30ebd7.png" + "then": "https://data.mapcomplete.org/nsi//logos/boxnow-30ebd7.png" }, { "if": { @@ -84837,7 +84920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boxnow-510af3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boxnow-510af3.jpg" }, { "if": { @@ -84853,7 +84936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boxnow-8234c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boxnow-8234c4.jpg" }, { "if": { @@ -84869,7 +84952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bpost-a3df6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpost-a3df6a.jpg" }, { "if": { @@ -84886,7 +84969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budbee-8c9d85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budbee-8c9d85.jpg" }, { "if": { @@ -84901,7 +84984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcocom-b3da58.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcocom-b3da58.svg" }, { "if": { @@ -84920,7 +85003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deburen-476b76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deburen-476b76.jpg" }, { "if": { @@ -84934,7 +85017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschepost-83cc4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschepost-83cc4d.jpg" }, { "if": { @@ -84949,7 +85032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhlbox247-ce4e28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dhlbox247-ce4e28.jpg" }, { "if": { @@ -84964,7 +85047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhlpackstation-83cc4d.png" + "then": "https://data.mapcomplete.org/nsi//logos/dhlpackstation-83cc4d.png" }, { "if": { @@ -84981,7 +85064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhlpakketautomaat-476b76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dhlpakketautomaat-476b76.jpg" }, { "if": { @@ -84999,7 +85082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpd-e45cee.png" + "then": "https://data.mapcomplete.org/nsi//logos/dpd-e45cee.png" }, { "if": { @@ -85015,7 +85098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpdpickupstation-db785e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dpdpickupstation-db785e.svg" }, { "if": { @@ -85031,7 +85114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dsvlocker-6115c3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dsvlocker-6115c3.svg" }, { "if": { @@ -85055,7 +85138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easybox-cd92a3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/easybox-cd92a3.svg" }, { "if": { @@ -85069,7 +85152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evri-ad77d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evri-ad77d0.jpg" }, { "if": { @@ -85084,7 +85167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fanbox-ba4d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fanbox-ba4d23.jpg" }, { "if": { @@ -85100,7 +85183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foxpost-68603c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foxpost-68603c.jpg" }, { "if": { @@ -85116,7 +85199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gls-6a219a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gls-6a219a.svg" }, { "if": { @@ -85131,7 +85214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/growingcommunities-6089a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/growingcommunities-6089a2.jpg" }, { "if": { @@ -85147,7 +85230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inpost-6b37ec.svg" + "then": "https://data.mapcomplete.org/nsi//logos/inpost-6b37ec.svg" }, { "if": { @@ -85164,7 +85247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/instabox-f97fed.png" + "then": "https://data.mapcomplete.org/nsi//logos/instabox-f97fed.png" }, { "if": { @@ -85179,7 +85262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/latvijaspasts-e45cee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/latvijaspasts-e45cee.jpg" }, { "if": { @@ -85196,7 +85279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meest-7c151e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meest-7c151e.jpg" }, { "if": { @@ -85211,7 +85294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mondialrelay-318f10.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mondialrelay-318f10.jpg" }, { "if": { @@ -85234,7 +85317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mypost24-237d95.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mypost24-237d95.svg" }, { "if": { @@ -85249,7 +85332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novaposhta-abee27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novaposhta-abee27.jpg" }, { "if": { @@ -85266,7 +85349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omniva-b4a3f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omniva-b4a3f3.jpg" }, { "if": { @@ -85284,7 +85367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlenpaczka-ce4e28.svg" + "then": "https://data.mapcomplete.org/nsi//logos/orlenpaczka-ce4e28.svg" }, { "if": { @@ -85299,7 +85382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ozonbox-c00268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ozonbox-c00268.jpg" }, { "if": { @@ -85316,7 +85399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zbox-5a86e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zbox-5a86e9.jpg" }, { "if": { @@ -85334,7 +85417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paczkomatinpost-ce4e28.svg" + "then": "https://data.mapcomplete.org/nsi//logos/paczkomatinpost-ce4e28.svg" }, { "if": { @@ -85353,7 +85436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paket24-30ebd7.png" + "then": "https://data.mapcomplete.org/nsi//logos/paket24-30ebd7.png" }, { "if": { @@ -85371,7 +85454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parcelpending-6a219a.png" + "then": "https://data.mapcomplete.org/nsi//logos/parcelpending-6a219a.png" }, { "if": { @@ -85385,7 +85468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penguinbox-7c84a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penguinbox-7c84a0.jpg" }, { "if": { @@ -85400,7 +85483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pickpoint-c00268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pickpoint-c00268.jpg" }, { "if": { @@ -85418,7 +85501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pickupstation-b94a6a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pickupstation-b94a6a.svg" }, { "if": { @@ -85435,7 +85518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pilulkabox-7c84a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/pilulkabox-7c84a0.png" }, { "if": { @@ -85454,7 +85537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pocztex-ce4e28.png" + "then": "https://data.mapcomplete.org/nsi//logos/pocztex-ce4e28.png" }, { "if": { @@ -85471,7 +85554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/packup-f54db3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/packup-f54db3.jpg" }, { "if": { @@ -85490,7 +85573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postnlpakketautomaat-476b76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postnlpakketautomaat-476b76.jpg" }, { "if": { @@ -85506,7 +85589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postnord-aa986b.png" + "then": "https://data.mapcomplete.org/nsi//logos/postnord-aa986b.png" }, { "if": { @@ -85523,7 +85606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pplparcelbox-48c9bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pplparcelbox-48c9bb.jpg" }, { "if": { @@ -85539,7 +85622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalmail-ad77d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalmail-ad77d0.jpg" }, { "if": { @@ -85556,7 +85639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rozetka-7c151e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rozetka-7c151e.jpg" }, { "if": { @@ -85573,7 +85656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cargusshipandgo-ba4d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cargusshipandgo-ba4d23.jpg" }, { "if": { @@ -85590,7 +85673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedy-8234c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/speedy-8234c4.png" }, { "if": { @@ -85607,7 +85690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yeep-ad77d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yeep-ad77d0.jpg" }, { "if": { @@ -85629,7 +85712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/econt-8234c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/econt-8234c4.jpg" }, { "if": { @@ -85646,7 +85729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/13cf8e-7c151e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/13cf8e-7c151e.jpg" }, { "if": { @@ -85663,7 +85746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kazpost-a244bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kazpost-a244bc.jpg" }, { "if": { @@ -85680,7 +85763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/530f2c-7c151e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/530f2c-7c151e.jpg" }, { "if": { @@ -85699,7 +85782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russianpost-c00268.png" + "then": "https://data.mapcomplete.org/nsi//logos/russianpost-c00268.png" }, { "if": { @@ -85723,7 +85806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipostalkiosk-a94f22.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipostalkiosk-a94f22.png" }, { "if": { @@ -85747,7 +85830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipostalstation-a94f22.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipostalstation-a94f22.png" }, { "if": { @@ -85772,7 +85855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sflocker-482a52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sflocker-482a52.jpg" }, { "if": { @@ -85787,7 +85870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justpark-aa7823.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/justpark-aa7823.jpg" }, { "if": { @@ -85802,7 +85885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abitab-80cf76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abitab-80cf76.jpg" }, { "if": { @@ -85817,7 +85900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayadcenter-a6c1c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bayadcenter-a6c1c5.png" }, { "if": { @@ -85833,7 +85916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easypay-56e7b3.png" + "then": "https://data.mapcomplete.org/nsi//logos/easypay-56e7b3.png" }, { "if": { @@ -85853,7 +85936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastpay-56e7b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastpay-56e7b3.jpg" }, { "if": { @@ -85861,17 +85944,17 @@ "amenity=payment_centre", "bureau_de_change=yes", "money_transfer=western_union", - "official_name=Financijska agencija", { "or": [ "brand=Financijska agencija", "brand:wikidata=Q12631015", - "name=Fina" + "name=Fina", + "official_name=Financijska agencija" ] } ] }, - "then": "./assets/data/nsi/logos/fina-9c5e01.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fina-9c5e01.svg" }, { "if": { @@ -85886,7 +85969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nkolay-18647a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nkolay-18647a.jpg" }, { "if": { @@ -85901,7 +85984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pagofacil-8bbf0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pagofacil-8bbf0d.jpg" }, { "if": { @@ -85916,7 +85999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rapipago-8bbf0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rapipago-8bbf0d.jpg" }, { "if": { @@ -85924,17 +86007,17 @@ "amenity=payment_centre", "bureau_de_change=yes", "money_transfer=moneygram;remitly;ria;uniteller;xoom;western_union", - "official_name=Universal Storefront Services Corporation", { "or": [ "brand=USSC", "brand:wikidata=Q120679538", - "name=U Super Service Center" + "name=U Super Service Center", + "official_name=Universal Storefront Services Corporation" ] } ] }, - "then": "./assets/data/nsi/logos/usuperservicecenter-a6c1c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usuperservicecenter-a6c1c5.jpg" }, { "if": { @@ -85949,7 +86032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bottledrop-530181.png" + "then": "https://data.mapcomplete.org/nsi//logos/bottledrop-530181.png" }, { "if": { @@ -85964,7 +86047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bottledropplus-530181.png" + "then": "https://data.mapcomplete.org/nsi//logos/bottledropplus-530181.png" }, { "if": { @@ -85979,7 +86062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cashterminal-f7157a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cashterminal-f7157a.jpg" }, { "if": { @@ -85994,7 +86077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/city24-73846e.png" + "then": "https://data.mapcomplete.org/nsi//logos/city24-73846e.png" }, { "if": { @@ -86009,7 +86092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coinstar-8dd7cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/coinstar-8dd7cb.png" }, { "if": { @@ -86030,7 +86113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easypay-15d44b.png" + "then": "https://data.mapcomplete.org/nsi//logos/easypay-15d44b.png" }, { "if": { @@ -86045,7 +86128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easypay-73846e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easypay-73846e.jpg" }, { "if": { @@ -86066,7 +86149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastshift-15d44b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastshift-15d44b.jpg" }, { "if": { @@ -86084,7 +86167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridamvexpress-d0eb4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/floridamvexpress-d0eb4d.jpg" }, { "if": { @@ -86099,7 +86182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiidmvnow-54c279.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiidmvnow-54c279.jpg" }, { "if": { @@ -86120,7 +86203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idram-15d44b.png" + "then": "https://data.mapcomplete.org/nsi//logos/idram-15d44b.png" }, { "if": { @@ -86142,7 +86225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liberty-ebda91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liberty-ebda91.jpg" }, { "if": { @@ -86161,7 +86244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otpbank-73846e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/otpbank-73846e.svg" }, { "if": { @@ -86176,7 +86259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paynet-a0f381.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paynet-a0f381.jpg" }, { "if": { @@ -86191,7 +86274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qiwi-e1a7cd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/qiwi-e1a7cd.svg" }, { "if": { @@ -86212,7 +86295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telcell-15d44b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telcell-15d44b.jpg" }, { "if": { @@ -86231,7 +86314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrsibbank-73846e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrsibbank-73846e.jpg" }, { "if": { @@ -86248,7 +86331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westvirginiadmvnow-80179e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westvirginiadmvnow-80179e.jpg" }, { "if": { @@ -86267,7 +86350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oschadbank-73846e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oschadbank-73846e.jpg" }, { "if": { @@ -86286,7 +86369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privatbank-73846e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/privatbank-73846e.jpg" }, { "if": { @@ -86305,7 +86388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstukrainianinternationalbank-73846e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstukrainianinternationalbank-73846e.jpg" }, { "if": { @@ -86320,7 +86403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fdcab6-e97c8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fdcab6-e97c8f.jpg" }, { "if": { @@ -86339,7 +86422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tascombank-73846e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tascombank-73846e.jpg" }, { "if": { @@ -86354,7 +86437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/de4add-e1a7cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/de4add-e1a7cd.png" }, { "if": { @@ -86378,7 +86461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tbcbank-ebda91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tbcbank-ebda91.jpg" }, { "if": { @@ -86403,7 +86486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankofgeorgia-ebda91.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankofgeorgia-ebda91.png" }, { "if": { @@ -86424,7 +86507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paybox-ebda91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paybox-ebda91.jpg" }, { "if": { @@ -86442,7 +86525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/06361d-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/06361d-996e17.jpg" }, { "if": { @@ -86458,7 +86541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/366-288c27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/366-288c27.jpg" }, { "if": { @@ -86480,7 +86563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/366-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/366-6b8b1e.jpg" }, { "if": { @@ -86500,7 +86583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3i-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3i-996e17.jpg" }, { "if": { @@ -86516,7 +86599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agafarma-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agafarma-295f06.jpg" }, { "if": { @@ -86532,7 +86615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agel-627b3f.png" + "then": "https://data.mapcomplete.org/nsi//logos/agel-627b3f.png" }, { "if": { @@ -86548,7 +86631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albertsonspharmacy-3ab288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albertsonspharmacy-3ab288.jpg" }, { "if": { @@ -86570,7 +86653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfapharm-447e41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfapharm-447e41.jpg" }, { "if": { @@ -86586,7 +86669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliedpharmacy-c9f407.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliedpharmacy-c9f407.jpg" }, { "if": { @@ -86602,7 +86685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/almagyogyszertar-3674c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/almagyogyszertar-3674c9.jpg" }, { "if": { @@ -86617,7 +86700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alphapharm-091dbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alphapharm-091dbc.jpg" }, { "if": { @@ -86633,7 +86716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amavita-7092c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amavita-7092c5.jpg" }, { "if": { @@ -86649,7 +86732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amcal-a4bb5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amcal-a4bb5f.jpg" }, { "if": { @@ -86665,7 +86748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anripharm-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anripharm-996e17.jpg" }, { "if": { @@ -86681,7 +86764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/antonandwillem-f887ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/antonandwillem-f887ab.jpg" }, { "if": { @@ -86697,7 +86780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apollopharmacy-95192b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apollopharmacy-95192b.jpg" }, { "if": { @@ -86712,7 +86795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apotek1-bfbf58.png" + "then": "https://data.mapcomplete.org/nsi//logos/apotek1-bfbf58.png" }, { "if": { @@ -86728,7 +86811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apotekhjartat-bc5266.png" + "then": "https://data.mapcomplete.org/nsi//logos/apotekhjartat-bc5266.png" }, { "if": { @@ -86744,7 +86827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apotekk24-5c6039.png" + "then": "https://data.mapcomplete.org/nsi//logos/apotekk24-5c6039.png" }, { "if": { @@ -86760,7 +86843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apoteket-bc5266.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apoteket-bc5266.jpg" }, { "if": { @@ -86776,7 +86859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apoteksgruppen-bc5266.png" + "then": "https://data.mapcomplete.org/nsi//logos/apoteksgruppen-bc5266.png" }, { "if": { @@ -86792,7 +86875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asda-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asda-b98d4f.jpg" }, { "if": { @@ -86808,7 +86891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asterpharmacy-15bf8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asterpharmacy-15bf8e.jpg" }, { "if": { @@ -86823,7 +86906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avicennapharmacy-b98d4f.png" + "then": "https://data.mapcomplete.org/nsi//logos/avicennapharmacy-b98d4f.png" }, { "if": { @@ -86839,7 +86922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bargainchemist-8496bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/bargainchemist-8496bc.png" }, { "if": { @@ -86855,7 +86938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bartelldrugs-3ab288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bartelldrugs-3ab288.jpg" }, { "if": { @@ -86871,7 +86954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benavides-7a195a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/benavides-7a195a.jpg" }, { "if": { @@ -86887,7 +86970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benu-1cd44c.png" + "then": "https://data.mapcomplete.org/nsi//logos/benu-1cd44c.png" }, { "if": { @@ -86902,7 +86985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/betty-768624.png" + "then": "https://data.mapcomplete.org/nsi//logos/betty-768624.png" }, { "if": { @@ -86919,7 +87002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bloomsthechemist-a4bb5f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bloomsthechemist-a4bb5f.png" }, { "if": { @@ -86935,7 +87018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boots-3d082e.png" + "then": "https://data.mapcomplete.org/nsi//logos/boots-3d082e.png" }, { "if": { @@ -86951,7 +87034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brookshirebrotherspharmacy-3ab288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brookshirebrotherspharmacy-3ab288.jpg" }, { "if": { @@ -86967,7 +87050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brookshirespharmacy-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/brookshirespharmacy-3ab288.png" }, { "if": { @@ -86983,7 +87066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brunet-b56451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brunet-b56451.jpg" }, { "if": { @@ -86999,7 +87082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camelia-503e9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camelia-503e9a.jpg" }, { "if": { @@ -87015,7 +87098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catena-8861f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/catena-8861f5.png" }, { "if": { @@ -87031,7 +87114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chemistkingdiscountpharmacy-a4bb5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chemistkingdiscountpharmacy-a4bb5f.jpg" }, { "if": { @@ -87047,7 +87130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chemistwarehouse-382a5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chemistwarehouse-382a5b.jpg" }, { "if": { @@ -87063,7 +87146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cincottadiscountchemist-a4bb5f.png" + "then": "https://data.mapcomplete.org/nsi//logos/cincottadiscountchemist-a4bb5f.png" }, { "if": { @@ -87079,7 +87162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clicks-9c61f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clicks-9c61f8.jpg" }, { "if": { @@ -87095,7 +87178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clockworkpharmacy-caaa26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clockworkpharmacy-caaa26.jpg" }, { "if": { @@ -87111,7 +87194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cohenschemist-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cohenschemist-b98d4f.jpg" }, { "if": { @@ -87127,7 +87210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopvitality-7092c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopvitality-7092c5.jpg" }, { "if": { @@ -87143,7 +87226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcopharmacy-5d3b40.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcopharmacy-5d3b40.svg" }, { "if": { @@ -87159,7 +87242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzazul-235c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzazul-235c18.jpg" }, { "if": { @@ -87175,7 +87258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzverde-e06365.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzverde-e06365.svg" }, { "if": { @@ -87192,7 +87275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cvspharmacy-3ab288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cvspharmacy-3ab288.jpg" }, { "if": { @@ -87208,7 +87291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ds-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ds-996e17.jpg" }, { "if": { @@ -87224,7 +87307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daylewispharmacy-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daylewispharmacy-b98d4f.jpg" }, { "if": { @@ -87241,7 +87324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbamozdrowie-cf61fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/dbamozdrowie-cf61fb.png" }, { "if": { @@ -87257,7 +87340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dischem-172f09.png" + "then": "https://data.mapcomplete.org/nsi//logos/dischem-172f09.png" }, { "if": { @@ -87273,7 +87356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/discountdrugmart-5a530e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/discountdrugmart-5a530e.jpg" }, { "if": { @@ -87289,7 +87372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dozapotek-bc5266.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dozapotek-bc5266.jpg" }, { "if": { @@ -87305,7 +87388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drmax-d40f7b.png" + "then": "https://data.mapcomplete.org/nsi//logos/drmax-d40f7b.png" }, { "if": { @@ -87321,7 +87404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drogaquinze-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drogaquinze-295f06.jpg" }, { "if": { @@ -87337,7 +87420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drogariaaraujo-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drogariaaraujo-295f06.jpg" }, { "if": { @@ -87353,7 +87436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drogariaglobo-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drogariaglobo-295f06.jpg" }, { "if": { @@ -87369,7 +87452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drogariasaopaulo-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drogariasaopaulo-295f06.jpg" }, { "if": { @@ -87385,7 +87468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drogariasfarmaxima-295f06.png" + "then": "https://data.mapcomplete.org/nsi//logos/drogariasfarmaxima-295f06.png" }, { "if": { @@ -87402,7 +87485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drogasil-295f06.png" + "then": "https://data.mapcomplete.org/nsi//logos/drogasil-295f06.png" }, { "if": { @@ -87418,7 +87501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duanereade-3ab288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duanereade-3ab288.jpg" }, { "if": { @@ -87434,7 +87517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclercparapharmacie-4ed69f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclercparapharmacie-4ed69f.jpg" }, { "if": { @@ -87450,7 +87533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easyapotheke-c222ec.png" + "then": "https://data.mapcomplete.org/nsi//logos/easyapotheke-c222ec.png" }, { "if": { @@ -87466,7 +87549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evofarm-8861f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/evofarm-8861f5.png" }, { "if": { @@ -87482,7 +87565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/extrafarma-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/extrafarma-295f06.jpg" }, { "if": { @@ -87498,7 +87581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familiprix-b56451.svg" + "then": "https://data.mapcomplete.org/nsi//logos/familiprix-b56451.svg" }, { "if": { @@ -87514,7 +87597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaconde-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaconde-295f06.jpg" }, { "if": { @@ -87530,7 +87613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmacenter-e95dde.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmacenter-e95dde.jpg" }, { "if": { @@ -87546,7 +87629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmacenter-0e462a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmacenter-0e462a.jpg" }, { "if": { @@ -87562,7 +87645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmacia-e8d74c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmacia-e8d74c.jpg" }, { "if": { @@ -87578,7 +87661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmacia-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmacia-996e17.jpg" }, { "if": { @@ -87594,7 +87677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciachavez-552afd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciachavez-552afd.jpg" }, { "if": { @@ -87610,7 +87693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciadona-8861f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciadona-8861f5.jpg" }, { "if": { @@ -87626,7 +87709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciasaas-291746.svg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciasaas-291746.svg" }, { "if": { @@ -87642,7 +87725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciasaojoao-295f06.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciasaojoao-295f06.png" }, { "if": { @@ -87658,7 +87741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciasahumada-af67e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciasahumada-af67e0.png" }, { "if": { @@ -87674,7 +87757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciasbolivia-552afd.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciasbolivia-552afd.png" }, { "if": { @@ -87690,7 +87773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciasdelahorro-7a195a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciasdelahorro-7a195a.jpg" }, { "if": { @@ -87706,7 +87789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciasdeldrsimi-369474.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciasdeldrsimi-369474.jpg" }, { "if": { @@ -87722,7 +87805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciaseconomicas-235c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciaseconomicas-235c18.jpg" }, { "if": { @@ -87738,7 +87821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciaseconomicas-fa48f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciaseconomicas-fa48f5.jpg" }, { "if": { @@ -87754,7 +87837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciassimilares-7a195a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciassimilares-7a195a.jpg" }, { "if": { @@ -87770,7 +87853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciasunion-7a195a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciasunion-7a195a.jpg" }, { "if": { @@ -87786,7 +87869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaciasyza-7a195a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaciasyza-7a195a.jpg" }, { "if": { @@ -87802,7 +87885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmacity-901f91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmacity-901f91.jpg" }, { "if": { @@ -87818,7 +87901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmacorp-552afd.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmacorp-552afd.png" }, { "if": { @@ -87834,7 +87917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmaelias-552afd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmaelias-552afd.jpg" }, { "if": { @@ -87850,7 +87933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmahorro-291746.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmahorro-291746.jpg" }, { "if": { @@ -87866,7 +87949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmatodo-f5140f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmatodo-f5140f.jpg" }, { "if": { @@ -87882,7 +87965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/felicia-52cb11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/felicia-52cb11.jpg" }, { "if": { @@ -87898,7 +87981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredmeyerpharmacy-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/fredmeyerpharmacy-3ab288.png" }, { "if": { @@ -87914,7 +87997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fybeca-235c18.png" + "then": "https://data.mapcomplete.org/nsi//logos/fybeca-235c18.png" }, { "if": { @@ -87932,7 +88015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galenpharm-72c291.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/galenpharm-72c291.jpg" }, { "if": { @@ -87948,7 +88031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gbarbosa-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gbarbosa-295f06.jpg" }, { "if": { @@ -87964,7 +88047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemini-cf61fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemini-cf61fb.jpg" }, { "if": { @@ -87981,7 +88064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generika-2ddb76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generika-2ddb76.jpg" }, { "if": { @@ -87997,7 +88080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gintarinevaistine-503e9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gintarinevaistine-503e9a.jpg" }, { "if": { @@ -88013,7 +88096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodneighborpharmacy-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodneighborpharmacy-3ab288.png" }, { "if": { @@ -88031,7 +88114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodpharm-b1ecfe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodpharm-b1ecfe.jpg" }, { "if": { @@ -88047,7 +88130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gordonschemists-3e1c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gordonschemists-3e1c81.jpg" }, { "if": { @@ -88064,7 +88147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gracepharmacy-2ddb76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gracepharmacy-2ddb76.jpg" }, { "if": { @@ -88080,7 +88163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gradskaljekarnazagreb-e8d74c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gradskaljekarnazagreb-e8d74c.jpg" }, { "if": { @@ -88096,7 +88179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guardian-c3738d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guardian-c3738d.jpg" }, { "if": { @@ -88112,7 +88195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guardian-b56451.png" + "then": "https://data.mapcomplete.org/nsi//logos/guardian-b56451.png" }, { "if": { @@ -88129,7 +88212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hebpharmacy-3ab288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hebpharmacy-3ab288.jpg" }, { "if": { @@ -88145,7 +88228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthmart-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/healthmart-3ab288.png" }, { "if": { @@ -88161,7 +88244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helpnet-8861f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/helpnet-8861f5.png" }, { "if": { @@ -88177,7 +88260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyveepharmacy-3ab288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyveepharmacy-3ab288.jpg" }, { "if": { @@ -88193,7 +88276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ida-b56451.png" + "then": "https://data.mapcomplete.org/nsi//logos/ida-b56451.png" }, { "if": { @@ -88209,24 +88292,24 @@ } ] }, - "then": "./assets/data/nsi/logos/inkafarma-141e89.png" + "then": "https://data.mapcomplete.org/nsi//logos/inkafarma-141e89.png" }, { "if": { "and": [ "amenity=pharmacy", "healthcare=pharmacy", - "official_name=Pradhan Mantri Bharatiya Janaushadhi Pariyojana Kendra", { "or": [ "brand=Pradhan Mantri Bharatiya Janaushadhi Pariyojana Kendra", "brand:wikidata=Q39058281", - "name=Jan Aushadhi" + "name=Jan Aushadhi", + "official_name=Pradhan Mantri Bharatiya Janaushadhi Pariyojana Kendra" ] } ] }, - "then": "./assets/data/nsi/logos/janaushadhi-95192b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/janaushadhi-95192b.jpg" }, { "if": { @@ -88242,7 +88325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeancoutu-b56451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeancoutu-b56451.jpg" }, { "if": { @@ -88258,7 +88341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jhootspharmacy-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jhootspharmacy-b98d4f.jpg" }, { "if": { @@ -88274,7 +88357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kimiafarma-5c6039.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kimiafarma-5c6039.jpg" }, { "if": { @@ -88290,7 +88373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinneydrugs-3ab288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kinneydrugs-3ab288.jpg" }, { "if": { @@ -88306,7 +88389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krogerpharmacy-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/krogerpharmacy-3ab288.png" }, { "if": { @@ -88322,7 +88405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kronansapotek-bc5266.png" + "then": "https://data.mapcomplete.org/nsi//logos/kronansapotek-bc5266.png" }, { "if": { @@ -88338,7 +88421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayette-4ed69f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayette-4ed69f.jpg" }, { "if": { @@ -88354,7 +88437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifepharmacy-8496bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/lifepharmacy-8496bc.png" }, { "if": { @@ -88370,7 +88453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lloydspharmacy-ab6db1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lloydspharmacy-ab6db1.jpg" }, { "if": { @@ -88386,7 +88469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loblawspharmacy-b56451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loblawspharmacy-b56451.jpg" }, { "if": { @@ -88402,7 +88485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/locatel-71f222.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/locatel-71f222.jpg" }, { "if": { @@ -88418,7 +88501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londondrugs-b56451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londondrugs-b56451.jpg" }, { "if": { @@ -88437,7 +88520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longsdrugs-f53864.svg" + "then": "https://data.mapcomplete.org/nsi//logos/longsdrugs-f53864.svg" }, { "if": { @@ -88453,7 +88536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediprix-4ed69f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mediprix-4ed69f.jpg" }, { "if": { @@ -88469,7 +88552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediq-7bb21a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mediq-7bb21a.jpg" }, { "if": { @@ -88485,7 +88568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medirite-091dbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/medirite-091dbc.png" }, { "if": { @@ -88501,7 +88584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/menessaptieka-0eac7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/menessaptieka-0eac7e.jpg" }, { "if": { @@ -88518,7 +88601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercurydrug-2ddb76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercurydrug-2ddb76.jpg" }, { "if": { @@ -88534,7 +88617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mifarma-141e89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mifarma-141e89.jpg" }, { "if": { @@ -88550,7 +88633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morrisonspharmacy-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morrisonspharmacy-b98d4f.jpg" }, { "if": { @@ -88566,7 +88649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/multipharma-c9bc6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/multipharma-c9bc6f.jpg" }, { "if": { @@ -88588,7 +88671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natalipharm-447e41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/natalipharm-447e41.jpg" }, { "if": { @@ -88603,7 +88686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/numark-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/numark-b98d4f.jpg" }, { "if": { @@ -88619,7 +88702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacheco-295f06.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacheco-295f06.png" }, { "if": { @@ -88635,7 +88718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paguemenos-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paguemenos-295f06.jpg" }, { "if": { @@ -88651,7 +88734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panvel-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panvel-295f06.jpg" }, { "if": { @@ -88666,7 +88749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paydens-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paydens-b98d4f.jpg" }, { "if": { @@ -88681,7 +88764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peakpharmacy-b98d4f.png" + "then": "https://data.mapcomplete.org/nsi//logos/peakpharmacy-b98d4f.png" }, { "if": { @@ -88697,7 +88780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmaca-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/pharmaca-3ab288.png" }, { "if": { @@ -88713,7 +88796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmacieprincipale-7092c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/pharmacieprincipale-7092c5.png" }, { "if": { @@ -88729,7 +88812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmacity-59b438.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pharmacity-59b438.jpg" }, { "if": { @@ -88745,7 +88828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmacy4less-a4bb5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pharmacy4less-a4bb5f.jpg" }, { "if": { @@ -88761,7 +88844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmacyatspar-091dbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pharmacyatspar-091dbc.jpg" }, { "if": { @@ -88777,7 +88860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmaprix-b56451.png" + "then": "https://data.mapcomplete.org/nsi//logos/pharmaprix-b56451.png" }, { "if": { @@ -88793,7 +88876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmasave-a4bb5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pharmasave-a4bb5f.jpg" }, { "if": { @@ -88809,7 +88892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmasave-b56451.png" + "then": "https://data.mapcomplete.org/nsi//logos/pharmasave-b56451.png" }, { "if": { @@ -88825,7 +88908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pilulka-550654.png" + "then": "https://data.mapcomplete.org/nsi//logos/pilulka-550654.png" }, { "if": { @@ -88843,7 +88926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pingvinpatika-3674c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pingvinpatika-3674c9.jpg" }, { "if": { @@ -88859,7 +88942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pluslekaren-f39a0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pluslekaren-f39a0c.jpg" }, { "if": { @@ -88875,7 +88958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pricelinepharmacy-a4bb5f.png" + "then": "https://data.mapcomplete.org/nsi//logos/pricelinepharmacy-a4bb5f.png" }, { "if": { @@ -88891,7 +88974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proxim-b56451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/proxim-b56451.jpg" }, { "if": { @@ -88907,7 +88990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publix-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/publix-3ab288.png" }, { "if": { @@ -88923,7 +89006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puntofarma-30ead0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puntofarma-30ead0.jpg" }, { "if": { @@ -88939,7 +89022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puntofarma-0e462a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puntofarma-0e462a.jpg" }, { "if": { @@ -88955,7 +89038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/purepharmacy-f98a60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/purepharmacy-f98a60.jpg" }, { "if": { @@ -88971,7 +89054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/remedysrx-b56451.png" + "then": "https://data.mapcomplete.org/nsi//logos/remedysrx-b56451.png" }, { "if": { @@ -88987,7 +89070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rexall-b56451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rexall-b56451.jpg" }, { "if": { @@ -89003,7 +89086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riteaid-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/riteaid-3ab288.png" }, { "if": { @@ -89020,7 +89103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosepharmacy-2ddb76.png" + "then": "https://data.mapcomplete.org/nsi//logos/rosepharmacy-2ddb76.png" }, { "if": { @@ -89036,7 +89119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rowlandspharmacy-b98d4f.png" + "then": "https://data.mapcomplete.org/nsi//logos/rowlandspharmacy-b98d4f.png" }, { "if": { @@ -89052,7 +89135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safeway-5d3b40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safeway-5d3b40.jpg" }, { "if": { @@ -89068,7 +89151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salcobrand-af67e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/salcobrand-af67e0.png" }, { "if": { @@ -89084,7 +89167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanasana-235c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanasana-235c18.jpg" }, { "if": { @@ -89100,7 +89183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saojoao-295f06.png" + "then": "https://data.mapcomplete.org/nsi//logos/saojoao-295f06.png" }, { "if": { @@ -89116,7 +89199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schneider-f39a0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/schneider-f39a0c.png" }, { "if": { @@ -89132,7 +89215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serviceapotheek-7bb21a.png" + "then": "https://data.mapcomplete.org/nsi//logos/serviceapotheek-7bb21a.png" }, { "if": { @@ -89148,7 +89231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoppersdrugmart-b56451.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoppersdrugmart-b56451.png" }, { "if": { @@ -89164,7 +89247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sobeyspharmacy-b56451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sobeyspharmacy-b56451.jpg" }, { "if": { @@ -89180,7 +89263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sopharmacy-768624.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sopharmacy-768624.jpg" }, { "if": { @@ -89196,7 +89279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soulpattinsonchemist-a4bb5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/soulpattinsonchemist-a4bb5f.jpg" }, { "if": { @@ -89213,7 +89296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southstardrug-2ddb76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southstardrug-2ddb76.jpg" }, { "if": { @@ -89231,7 +89314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/subra-768624.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/subra-768624.jpg" }, { "if": { @@ -89247,7 +89330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunstore-7092c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunstore-7092c5.jpg" }, { "if": { @@ -89269,7 +89352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superpharm-8f2066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superpharm-8f2066.jpg" }, { "if": { @@ -89285,7 +89368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superdrug-956ac7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superdrug-956ac7.jpg" }, { "if": { @@ -89301,7 +89384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/szimpatika-3674c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/szimpatika-3674c9.jpg" }, { "if": { @@ -89317,7 +89400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terrywhitechemmart-a4bb5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terrywhitechemmart-a4bb5f.jpg" }, { "if": { @@ -89333,7 +89416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tescopharmacy-b98d4f.png" + "then": "https://data.mapcomplete.org/nsi//logos/tescopharmacy-b98d4f.png" }, { "if": { @@ -89341,17 +89424,17 @@ "amenity=pharmacy", "dispensing=yes", "healthcare=pharmacy", - "official_name=The Generics Pharmacy", { "or": [ "brand=The Generics Pharmacy", "brand:wikidata=Q61948677", - "name=TGP" + "name=TGP", + "official_name=The Generics Pharmacy" ] } ] }, - "then": "./assets/data/nsi/logos/tgp-2ddb76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tgp-2ddb76.jpg" }, { "if": { @@ -89367,7 +89450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/themedicineshoppe-5d3b40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/themedicineshoppe-5d3b40.jpg" }, { "if": { @@ -89384,7 +89467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/threesixty-2ddb76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/threesixty-2ddb76.jpg" }, { "if": { @@ -89406,7 +89489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tonusles-447e41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tonusles-447e41.jpg" }, { "if": { @@ -89422,7 +89505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toppharm-7092c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/toppharm-7092c5.png" }, { "if": { @@ -89437,7 +89520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalhealthpharmacy-102af8.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalhealthpharmacy-102af8.png" }, { "if": { @@ -89453,7 +89536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uaifarma-295f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uaifarma-295f06.jpg" }, { "if": { @@ -89469,7 +89552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unichem-8496bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unichem-8496bc.jpg" }, { "if": { @@ -89485,7 +89568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniprix-b56451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uniprix-b56451.jpg" }, { "if": { @@ -89505,7 +89588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vagapharm-447e41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vagapharm-447e41.jpg" }, { "if": { @@ -89521,7 +89604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vasalekaren-f39a0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vasalekaren-f39a0c.jpg" }, { "if": { @@ -89537,7 +89620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitusapotek-bfbf58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitusapotek-bfbf58.jpg" }, { "if": { @@ -89553,7 +89636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walgreens-3ab288.png" + "then": "https://data.mapcomplete.org/nsi//logos/walgreens-3ab288.png" }, { "if": { @@ -89569,7 +89652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartpharmacy-5d3b40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartpharmacy-5d3b40.jpg" }, { "if": { @@ -89585,7 +89668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watsons-113cd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watsons-113cd8.jpg" }, { "if": { @@ -89601,7 +89684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weldrickspharmacy-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weldrickspharmacy-b98d4f.jpg" }, { "if": { @@ -89617,7 +89700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellpharmacy-b98d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellpharmacy-b98d4f.jpg" }, { "if": { @@ -89633,7 +89716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellnessforever-95192b.png" + "then": "https://data.mapcomplete.org/nsi//logos/wellnessforever-95192b.png" }, { "if": { @@ -89649,7 +89732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeelabpharmacy-95192b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeelabpharmacy-95192b.jpg" }, { "if": { @@ -89666,7 +89749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zikoapteka-cf61fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/zikoapteka-cf61fb.png" }, { "if": { @@ -89682,7 +89765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/0aaf88-288c27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/0aaf88-288c27.jpg" }, { "if": { @@ -89698,7 +89781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6d99c6-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/6d99c6-996e17.jpg" }, { "if": { @@ -89714,7 +89797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/121e69-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/121e69-996e17.jpg" }, { "if": { @@ -89730,7 +89813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/941286-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/941286-996e17.jpg" }, { "if": { @@ -89746,7 +89829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/62cbb3-996e17.png" + "then": "https://data.mapcomplete.org/nsi//logos/62cbb3-996e17.png" }, { "if": { @@ -89762,7 +89845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e30e48-996e17.svg" + "then": "https://data.mapcomplete.org/nsi//logos/e30e48-996e17.svg" }, { "if": { @@ -89778,7 +89861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6cde22-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/6cde22-996e17.jpg" }, { "if": { @@ -89794,7 +89877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6122e4-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/6122e4-996e17.jpg" }, { "if": { @@ -89810,7 +89893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/01555e-288c27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/01555e-288c27.jpg" }, { "if": { @@ -89826,7 +89909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/24f190-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/24f190-996e17.jpg" }, { "if": { @@ -89842,7 +89925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/96b33d-288c27.svg" + "then": "https://data.mapcomplete.org/nsi//logos/96b33d-288c27.svg" }, { "if": { @@ -89858,7 +89941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7f69f5-288c27.svg" + "then": "https://data.mapcomplete.org/nsi//logos/7f69f5-288c27.svg" }, { "if": { @@ -89874,7 +89957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a0012f-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a0012f-996e17.jpg" }, { "if": { @@ -89890,7 +89973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c0ed6e-288c27.png" + "then": "https://data.mapcomplete.org/nsi//logos/c0ed6e-288c27.png" }, { "if": { @@ -89906,7 +89989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/780176-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/780176-996e17.jpg" }, { "if": { @@ -89922,7 +90005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ebe68b-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ebe68b-996e17.jpg" }, { "if": { @@ -89938,7 +90021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e23c32-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/e23c32-996e17.jpg" }, { "if": { @@ -89956,7 +90039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krsenkovic-72c291.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krsenkovic-72c291.jpg" }, { "if": { @@ -89974,7 +90057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mareshki-768624.png" + "then": "https://data.mapcomplete.org/nsi//logos/mareshki-768624.png" }, { "if": { @@ -89990,7 +90073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/96fc9f-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/96fc9f-996e17.jpg" }, { "if": { @@ -90008,7 +90091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medeya-768624.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/medeya-768624.jpg" }, { "if": { @@ -90024,7 +90107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2b155a-288c27.svg" + "then": "https://data.mapcomplete.org/nsi//logos/2b155a-288c27.svg" }, { "if": { @@ -90040,7 +90123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a55607-288c27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a55607-288c27.jpg" }, { "if": { @@ -90056,7 +90139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eb5276-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eb5276-996e17.jpg" }, { "if": { @@ -90072,7 +90155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/16f0aa-288c27.gif" + "then": "https://data.mapcomplete.org/nsi//logos/16f0aa-288c27.gif" }, { "if": { @@ -90096,7 +90179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthplanet-c16414.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/healthplanet-c16414.jpg" }, { "if": { @@ -90112,7 +90195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b0231d-288c27.svg" + "then": "https://data.mapcomplete.org/nsi//logos/b0231d-288c27.svg" }, { "if": { @@ -90128,7 +90211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/926a9f-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/926a9f-996e17.jpg" }, { "if": { @@ -90144,7 +90227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e4475d-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/e4475d-996e17.jpg" }, { "if": { @@ -90162,7 +90245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/remedium-768624.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/remedium-768624.jpg" }, { "if": { @@ -90178,7 +90261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1de184-288c27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1de184-288c27.jpg" }, { "if": { @@ -90194,7 +90277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ffbae9-288c27.png" + "then": "https://data.mapcomplete.org/nsi//logos/ffbae9-288c27.png" }, { "if": { @@ -90210,7 +90293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/98589d-288c27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/98589d-288c27.jpg" }, { "if": { @@ -90229,7 +90312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fialka-288c27.png" + "then": "https://data.mapcomplete.org/nsi//logos/fialka-288c27.png" }, { "if": { @@ -90247,7 +90330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/framar-768624.png" + "then": "https://data.mapcomplete.org/nsi//logos/framar-768624.png" }, { "if": { @@ -90263,7 +90346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7616ce-996e17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7616ce-996e17.jpg" }, { "if": { @@ -90285,7 +90368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aversi-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aversi-6b8b1e.jpg" }, { "if": { @@ -90305,7 +90388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschepharmacy-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschepharmacy-6b8b1e.jpg" }, { "if": { @@ -90327,7 +90410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberipharma-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberipharma-6b8b1e.jpg" }, { "if": { @@ -90349,7 +90432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/impex-6b8b1e.png" + "then": "https://data.mapcomplete.org/nsi//logos/impex-6b8b1e.png" }, { "if": { @@ -90371,7 +90454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/impulse-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/impulse-6b8b1e.jpg" }, { "if": { @@ -90393,7 +90476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neopharmi-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neopharmi-6b8b1e.jpg" }, { "if": { @@ -90412,7 +90495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psp-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/psp-6b8b1e.jpg" }, { "if": { @@ -90434,7 +90517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmadepot-6b8b1e.png" + "then": "https://data.mapcomplete.org/nsi//logos/pharmadepot-6b8b1e.png" }, { "if": { @@ -90456,7 +90539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmhouse-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pharmhouse-6b8b1e.jpg" }, { "if": { @@ -90476,7 +90559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gpc-6b8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gpc-6b8b1e.jpg" }, { "if": { @@ -90496,7 +90579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clalitpharmacy-b1ecfe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clalitpharmacy-b1ecfe.jpg" }, { "if": { @@ -90516,7 +90599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nahdi-3cfaa8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nahdi-3cfaa8.jpg" }, { "if": { @@ -90537,7 +90620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osdrug-650eee.svg" + "then": "https://data.mapcomplete.org/nsi//logos/osdrug-650eee.svg" }, { "if": { @@ -90557,16 +90640,13 @@ } ] }, - "then": "./assets/data/nsi/logos/kusurinofukutaro-650eee.png" + "then": "https://data.mapcomplete.org/nsi//logos/kusurinofukutaro-650eee.png" }, { "if": { "and": [ "amenity=pharmacy", "healthcare=pharmacy", - "official_name=コクミンドラッグ", - "official_name:en=Kokumin Drug", - "official_name:ja=コクミンドラッグ", { "or": [ "brand=コクミン", @@ -90575,12 +90655,15 @@ "brand:wikidata=Q11301923", "name=コクミン", "name:en=Kokumin", - "name:ja=コクミン" + "name:ja=コクミン", + "official_name=コクミンドラッグ", + "official_name:en=Kokumin Drug", + "official_name:ja=コクミンドラッグ" ] } ] }, - "then": "./assets/data/nsi/logos/kokumin-650eee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kokumin-650eee.jpg" }, { "if": { @@ -90600,7 +90683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drugeleven-650eee.png" + "then": "https://data.mapcomplete.org/nsi//logos/drugeleven-650eee.png" }, { "if": { @@ -90623,7 +90706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matsumotokiyoshi-650eee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/matsumotokiyoshi-650eee.jpg" }, { "if": { @@ -90644,7 +90727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tintindrugstore-9d8b4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tintindrugstore-9d8b4e.jpg" }, { "if": { @@ -90668,7 +90751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beijingtongrentang-ccc53f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beijingtongrentang-ccc53f.jpg" }, { "if": { @@ -90688,7 +90771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tongrentangpharmacy-ede427.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tongrentangpharmacy-ede427.jpg" }, { "if": { @@ -90708,7 +90791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greattreepharmacy-9d8b4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greattreepharmacy-9d8b4e.jpg" }, { "if": { @@ -90728,7 +90811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medfirst-9d8b4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/medfirst-9d8b4e.jpg" }, { "if": { @@ -90748,7 +90831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyorindo-650eee.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyorindo-650eee.png" }, { "if": { @@ -90770,7 +90853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matsumotokiyoshi-9d8b4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/matsumotokiyoshi-9d8b4e.jpg" }, { "if": { @@ -90792,7 +90875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matsumotokiyoshi-d98f99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/matsumotokiyoshi-d98f99.jpg" }, { "if": { @@ -90807,7 +90890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxspielmann-72d3a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxspielmann-72d3a7.jpg" }, { "if": { @@ -90822,7 +90905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/photome-207538.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/photome-207538.jpg" }, { "if": { @@ -90837,7 +90920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/photomaton-94071a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/photomaton-94071a.jpg" }, { "if": { @@ -90852,7 +90935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prontophot-84b0f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prontophot-84b0f3.svg" }, { "if": { @@ -90869,7 +90952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazon-2083a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/amazon-2083a7.png" }, { "if": { @@ -90887,7 +90970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhl-2083a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dhl-2083a7.jpg" }, { "if": { @@ -90905,7 +90988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpd-402e3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/dpd-402e3b.png" }, { "if": { @@ -90922,7 +91005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fedex-2083a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/fedex-2083a7.png" }, { "if": { @@ -90939,7 +91022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inxpress-182e7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inxpress-182e7a.jpg" }, { "if": { @@ -90956,7 +91039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedy-bb90e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/speedy-bb90e2.png" }, { "if": { @@ -90973,7 +91056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ups-2083a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/ups-2083a7.png" }, { "if": { @@ -90991,7 +91074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yodel-d5dfdd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yodel-d5dfdd.svg" }, { "if": { @@ -91007,7 +91090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correios-6c9171.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correios-6c9171.jpg" }, { "if": { @@ -91027,7 +91110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestexpress-4c54ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bestexpress-4c54ab.jpg" }, { "if": { @@ -91041,7 +91124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityexpress-59a7c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityexpress-59a7c7.jpg" }, { "if": { @@ -91056,7 +91139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhl-27cb18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dhl-27cb18.jpg" }, { "if": { @@ -91071,7 +91154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpd-f31092.png" + "then": "https://data.mapcomplete.org/nsi//logos/dpd-f31092.png" }, { "if": { @@ -91086,7 +91169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/estafeta-d15952.svg" + "then": "https://data.mapcomplete.org/nsi//logos/estafeta-d15952.svg" }, { "if": { @@ -91100,7 +91183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressone-e1935e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressone-e1935e.jpg" }, { "if": { @@ -91114,7 +91197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressone-9e675c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressone-9e675c.jpg" }, { "if": { @@ -91128,7 +91211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressone-628448.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressone-628448.jpg" }, { "if": { @@ -91144,7 +91227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fedexoffice-27cb18.png" + "then": "https://data.mapcomplete.org/nsi//logos/fedexoffice-27cb18.png" }, { "if": { @@ -91159,7 +91242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fedexshipcenter-27cb18.png" + "then": "https://data.mapcomplete.org/nsi//logos/fedexshipcenter-27cb18.png" }, { "if": { @@ -91174,7 +91257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interrapidisimo-722495.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/interrapidisimo-722495.jpg" }, { "if": { @@ -91188,7 +91271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intime-628448.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intime-628448.jpg" }, { "if": { @@ -91204,7 +91287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mailboxesetc-187121.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mailboxesetc-187121.jpg" }, { "if": { @@ -91220,7 +91303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mailboxesetc-a028f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mailboxesetc-a028f7.jpg" }, { "if": { @@ -91239,7 +91322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omanpost-dcf1e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omanpost-dcf1e6.jpg" }, { "if": { @@ -91255,7 +91338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlenpaczka-4d399f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/orlenpaczka-4d399f.svg" }, { "if": { @@ -91269,7 +91352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityexpress-de0e55.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityexpress-de0e55.png" }, { "if": { @@ -91284,7 +91367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pakmail-b9aa24.png" + "then": "https://data.mapcomplete.org/nsi//logos/pakmail-b9aa24.png" }, { "if": { @@ -91299,7 +91382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paquetexpress-d15952.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paquetexpress-d15952.jpg" }, { "if": { @@ -91313,7 +91396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pocztapolska-4d399f.png" + "then": "https://data.mapcomplete.org/nsi//logos/pocztapolska-4d399f.png" }, { "if": { @@ -91327,7 +91410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postoffice-a028f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postoffice-a028f7.jpg" }, { "if": { @@ -91342,7 +91425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postakenya-411fca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postakenya-411fca.jpg" }, { "if": { @@ -91356,7 +91439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posten-0526a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/posten-0526a8.png" }, { "if": { @@ -91371,7 +91454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postnet-7f7712.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postnet-7f7712.jpg" }, { "if": { @@ -91386,7 +91469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedy-628448.png" + "then": "https://data.mapcomplete.org/nsi//logos/speedy-628448.png" }, { "if": { @@ -91401,7 +91484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecourierguy-8373b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecourierguy-8373b7.jpg" }, { "if": { @@ -91418,7 +91501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theupsstore-d4e3fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theupsstore-d4e3fc.jpg" }, { "if": { @@ -91432,7 +91515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6d0749-628448.png" + "then": "https://data.mapcomplete.org/nsi//logos/6d0749-628448.png" }, { "if": { @@ -91446,7 +91529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4f7c8b-628448.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/4f7c8b-628448.jpg" }, { "if": { @@ -91461,7 +91544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5ac048-1328c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/5ac048-1328c6.jpg" }, { "if": { @@ -91481,7 +91564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ytoexpress-de5f7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ytoexpress-de5f7a.jpg" }, { "if": { @@ -91501,7 +91584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/depponexpress-de5f7a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/depponexpress-de5f7a.svg" }, { "if": { @@ -91520,7 +91603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cainiao-de5f7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cainiao-de5f7a.jpg" }, { "if": { @@ -91543,7 +91626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sfexpress-5291fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sfexpress-5291fc.jpg" }, { "if": { @@ -91563,7 +91646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sfexpress-316e92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sfexpress-316e92.jpg" }, { "if": { @@ -91578,7 +91661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestbrains-c36518.png" + "then": "https://data.mapcomplete.org/nsi//logos/bestbrains-c36518.png" }, { "if": { @@ -91593,7 +91676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c2education-6f378a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c2education-6f378a.jpg" }, { "if": { @@ -91608,7 +91691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntingtonlearningcenter-6f378a.png" + "then": "https://data.mapcomplete.org/nsi//logos/huntingtonlearningcenter-6f378a.png" }, { "if": { @@ -91623,7 +91706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kumon-e16d00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kumon-e16d00.jpg" }, { "if": { @@ -91641,7 +91724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kumon-cae330.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kumon-cae330.jpg" }, { "if": { @@ -91656,7 +91739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mathnasium-57f7a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mathnasium-57f7a3.jpg" }, { "if": { @@ -91671,7 +91754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfordlearning-9c8dc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfordlearning-9c8dc0.jpg" }, { "if": { @@ -91686,7 +91769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russianschoolofmathematics-6f378a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/russianschoolofmathematics-6f378a.jpg" }, { "if": { @@ -91701,7 +91784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schulerhilfe-089158.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schulerhilfe-089158.jpg" }, { "if": { @@ -91716,7 +91799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/studienkreis-fce332.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/studienkreis-fce332.jpg" }, { "if": { @@ -91732,7 +91815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sylvan-6f378a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sylvan-6f378a.jpg" }, { "if": { @@ -91754,7 +91837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eikohseminar-cae330.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eikohseminar-cae330.svg" }, { "if": { @@ -91773,7 +91856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shueiyobiko-cae330.png" + "then": "https://data.mapcomplete.org/nsi//logos/shueiyobiko-cae330.png" }, { "if": { @@ -91787,7 +91870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambertaverns-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ambertaverns-eaed91.jpg" }, { "if": { @@ -91801,7 +91884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/antic-eaed91.png" + "then": "https://data.mapcomplete.org/nsi//logos/antic-eaed91.png" }, { "if": { @@ -91816,7 +91899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/befed-1d1bef.png" + "then": "https://data.mapcomplete.org/nsi//logos/befed-1d1bef.png" }, { "if": { @@ -91830,7 +91913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belhavenpubs-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belhavenpubs-eaed91.jpg" }, { "if": { @@ -91845,7 +91928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brewdog-f93a3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brewdog-f93a3c.jpg" }, { "if": { @@ -91860,7 +91943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brewersfayre-eaed91.png" + "then": "https://data.mapcomplete.org/nsi//logos/brewersfayre-eaed91.png" }, { "if": { @@ -91876,7 +91959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/castlerock-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/castlerock-eaed91.jpg" }, { "if": { @@ -91890,7 +91973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chefandbrewer-eaed91.png" + "then": "https://data.mapcomplete.org/nsi//logos/chefandbrewer-eaed91.png" }, { "if": { @@ -91904,7 +91987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greeneking-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greeneking-eaed91.jpg" }, { "if": { @@ -91918,7 +92001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hungryhorse-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hungryhorse-eaed91.jpg" }, { "if": { @@ -91932,7 +92015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marstons-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marstons-eaed91.jpg" }, { "if": { @@ -91948,7 +92031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/masqmenos-575688.png" + "then": "https://data.mapcomplete.org/nsi//logos/masqmenos-575688.png" }, { "if": { @@ -91963,7 +92046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcmenamins-3769c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcmenamins-3769c3.jpg" }, { "if": { @@ -91977,7 +92060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmersbrewery-9ddc26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmersbrewery-9ddc26.jpg" }, { "if": { @@ -91993,7 +92076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pitcherandpiano-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pitcherandpiano-eaed91.jpg" }, { "if": { @@ -92010,7 +92093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samuelsmith-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samuelsmith-eaed91.jpg" }, { "if": { @@ -92027,7 +92110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schmizzapubandgrub-3769c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schmizzapubandgrub-3769c3.jpg" }, { "if": { @@ -92044,7 +92127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schmizzapublichouse-3769c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schmizzapublichouse-3769c3.jpg" }, { "if": { @@ -92059,7 +92142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebrasstap-41045b.png" + "then": "https://data.mapcomplete.org/nsi//logos/thebrasstap-41045b.png" }, { "if": { @@ -92074,7 +92157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecraftbeerco-f71e9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecraftbeerco-f71e9b.jpg" }, { "if": { @@ -92089,7 +92172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thwaites-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thwaites-eaed91.jpg" }, { "if": { @@ -92104,7 +92187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walkabout-eaed91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walkabout-eaed91.jpg" }, { "if": { @@ -92119,7 +92202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wetherspoon-eaed91.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wetherspoon-eaed91.svg" }, { "if": { @@ -92138,7 +92221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hananomai-0435b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/hananomai-0435b9.png" }, { "if": { @@ -92157,7 +92240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watami-0435b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watami-0435b9.jpg" }, { "if": { @@ -92176,7 +92259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shirokiya-0435b9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shirokiya-0435b9.svg" }, { "if": { @@ -92195,7 +92278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yoronotaki-0435b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yoronotaki-0435b9.jpg" }, { "if": { @@ -92214,7 +92297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torikizoku-0435b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torikizoku-0435b9.jpg" }, { "if": { @@ -92229,7 +92312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bibliocabina-227ad5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bibliocabina-227ad5.png" }, { "if": { @@ -92244,7 +92327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boekentil-31eb16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boekentil-31eb16.jpg" }, { "if": { @@ -92260,7 +92343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bucherhauschen-49b5a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bucherhauschen-49b5a5.jpg" }, { "if": { @@ -92275,7 +92358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enjoyabook-31eb16.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enjoyabook-31eb16.svg" }, { "if": { @@ -92290,7 +92373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogybucherschrank-49b5a5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/innogybucherschrank-49b5a5.svg" }, { "if": { @@ -92305,7 +92388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lesekiosk-1271c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lesekiosk-1271c4.jpg" }, { "if": { @@ -92319,7 +92402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlefreelibrary-6e8312.png" + "then": "https://data.mapcomplete.org/nsi//logos/littlefreelibrary-6e8312.png" }, { "if": { @@ -92334,7 +92417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercatorbucherschrank-49b5a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercatorbucherschrank-49b5a5.jpg" }, { "if": { @@ -92349,7 +92432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minibib-31eb16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minibib-31eb16.jpg" }, { "if": { @@ -92364,7 +92447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obcz-6e8312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obcz-6e8312.jpg" }, { "if": { @@ -92379,7 +92462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwebucherschrank-49b5a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwebucherschrank-49b5a5.jpg" }, { "if": { @@ -92394,7 +92477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/streetlibrary-ff483e.png" + "then": "https://data.mapcomplete.org/nsi//logos/streetlibrary-ff483e.png" }, { "if": { @@ -92409,7 +92492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westenergiebucherschrank-49b5a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/westenergiebucherschrank-49b5a5.png" }, { "if": { @@ -92425,7 +92508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aimrecyclage-a73b99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aimrecyclage-a73b99.jpg" }, { "if": { @@ -92441,7 +92524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aimrecycling-1b67de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aimrecycling-1b67de.jpg" }, { "if": { @@ -92456,7 +92539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeitersamariterbund-f6fab4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-f6fab4.jpg" }, { "if": { @@ -92471,7 +92554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeiterwohlfahrt-f6fab4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-f6fab4.svg" }, { "if": { @@ -92486,7 +92569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayerischesroteskreuz-ec47a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-ec47a1.jpg" }, { "if": { @@ -92506,7 +92589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bottledropexpress-95a314.png" + "then": "https://data.mapcomplete.org/nsi//logos/bottledropexpress-95a314.png" }, { "if": { @@ -92526,7 +92609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bottledropredemptioncenter-95a314.png" + "then": "https://data.mapcomplete.org/nsi//logos/bottledropredemptioncenter-95a314.png" }, { "if": { @@ -92541,7 +92624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-f6fab4.png" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-f6fab4.png" }, { "if": { @@ -92559,7 +92642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/depozitapunkts-831330.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/depozitapunkts-831330.jpg" }, { "if": { @@ -92574,7 +92657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesroteskreuz-f6fab4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-f6fab4.jpg" }, { "if": { @@ -92589,7 +92672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diakonie-f6fab4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diakonie-f6fab4.jpg" }, { "if": { @@ -92606,7 +92689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecoatm-f8d7ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecoatm-f8d7ba.jpg" }, { "if": { @@ -92629,7 +92712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecoco-d37f05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecoco-d37f05.jpg" }, { "if": { @@ -92649,7 +92732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/islamicrelief-a9e339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/islamicrelief-a9e339.jpg" }, { "if": { @@ -92664,7 +92747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kolpingwerk-f6fab4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kolpingwerk-f6fab4.jpg" }, { "if": { @@ -92680,7 +92763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malteserhilfsdienst-f6fab4.png" + "then": "https://data.mapcomplete.org/nsi//logos/malteserhilfsdienst-f6fab4.png" }, { "if": { @@ -92699,7 +92782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfam-a9e339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfam-a9e339.jpg" }, { "if": { @@ -92717,7 +92800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/planetaid-f8d7ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/planetaid-f8d7ba.jpg" }, { "if": { @@ -92735,7 +92818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintvincentdepaul-f8d7ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintvincentdepaul-f8d7ba.jpg" }, { "if": { @@ -92752,7 +92835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesalvationarmy-f8d7ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-f8d7ba.png" }, { "if": { @@ -92772,7 +92855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/traid-a9e339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/traid-a9e339.jpg" }, { "if": { @@ -92791,7 +92874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usagain-f8d7ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/usagain-f8d7ba.png" }, { "if": { @@ -92814,7 +92897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b6327b-f85e9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/b6327b-f85e9d.png" }, { "if": { @@ -92835,7 +92918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e4ddd4-f85e9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/e4ddd4-f85e9d.jpg" }, { "if": { @@ -92860,7 +92943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greencommunity-f66c52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greencommunity-f66c52.jpg" }, { "if": { @@ -92876,7 +92959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tzusje-2b67bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tzusje-2b67bf.jpg" }, { "if": { @@ -92892,7 +92975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/100montaditos-f7c5fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/100montaditos-f7c5fe.jpg" }, { "if": { @@ -92908,26 +92991,26 @@ } ] }, - "then": "./assets/data/nsi/logos/110grill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/110grill-96af40.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=burger;pizza;seafood", - "official_name=Les 3 Brasseurs", { "or": [ "brand=3 Brasseurs", "brand:wikidata=Q3230326", "name=3 Brewers", "name:en=3 Brewers", - "name:fr=3 Brasseurs" + "name:fr=3 Brasseurs", + "official_name=Les 3 Brasseurs" ] } ] }, - "then": "./assets/data/nsi/logos/3brewers-f8643e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3brewers-f8643e.jpg" }, { "if": { @@ -92943,7 +93026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/54thstreetgrillandbar-28ad39.png" + "then": "https://data.mapcomplete.org/nsi//logos/54thstreetgrillandbar-28ad39.png" }, { "if": { @@ -92959,24 +93042,24 @@ } ] }, - "then": "./assets/data/nsi/logos/60secondstonapoli-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/60secondstonapoli-051971.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=pizza", - "official_name=Abby's Legendary Pizza", { "or": [ "brand=Abby's Pizza", "brand:wikidata=Q112648278", - "name=Abby's" + "name=Abby's", + "official_name=Abby's Legendary Pizza" ] } ] }, - "then": "./assets/data/nsi/logos/abbys-7af206.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abbys-7af206.jpg" }, { "if": { @@ -92992,7 +93075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afuri-9b358b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/afuri-9b358b.jpg" }, { "if": { @@ -93008,7 +93091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amici-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/amici-96af40.png" }, { "if": { @@ -93024,7 +93107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anthonyscoalfiredpizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anthonyscoalfiredpizza-96af40.jpg" }, { "if": { @@ -93040,24 +93123,24 @@ } ] }, - "then": "./assets/data/nsi/logos/aposto-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aposto-051971.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Applebee's Neighborhood Grill & Bar", { "or": [ "brand=Applebee's Neighborhood Grill & Bar", "brand:wikidata=Q621532", - "name=Applebee's" + "name=Applebee's", + "official_name=Applebee's Neighborhood Grill & Bar" ] } ] }, - "then": "./assets/data/nsi/logos/applebees-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/applebees-2fabb0.jpg" }, { "if": { @@ -93073,24 +93156,24 @@ } ] }, - "then": "./assets/data/nsi/logos/arepaandco-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arepaandco-e997f8.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Arooga's Grille House and Sports Bar", { "or": [ "brand=Arooga's", "brand:wikidata=Q72963322", - "name=Arooga's" + "name=Arooga's", + "official_name=Arooga's Grille House and Sports Bar" ] } ] }, - "then": "./assets/data/nsi/logos/aroogas-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/aroogas-96af40.png" }, { "if": { @@ -93106,7 +93189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/askitalian-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/askitalian-9b5453.jpg" }, { "if": { @@ -93122,7 +93205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aubureau-dee615.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aubureau-dee615.jpg" }, { "if": { @@ -93138,7 +93221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aureliospizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aureliospizza-96af40.jpg" }, { "if": { @@ -93154,7 +93237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autogrill-4c0f72.png" + "then": "https://data.mapcomplete.org/nsi//logos/autogrill-4c0f72.png" }, { "if": { @@ -93170,7 +93253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/azzippizza-96af40.svg" + "then": "https://data.mapcomplete.org/nsi//logos/azzippizza-96af40.svg" }, { "if": { @@ -93186,24 +93269,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bcpizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcpizza-96af40.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=caribbean", - "official_name=Bahama Breeze Island Grille", { "or": [ "brand=Bahama Breeze", "brand:wikidata=Q4842316", - "name=Bahama Breeze" + "name=Bahama Breeze", + "official_name=Bahama Breeze Island Grille" ] } ] }, - "then": "./assets/data/nsi/logos/bahamabreeze-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/bahamabreeze-96af40.png" }, { "if": { @@ -93219,7 +93302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bananatree-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bananatree-9b5453.jpg" }, { "if": { @@ -93235,7 +93318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barblock-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barblock-9b5453.jpg" }, { "if": { @@ -93255,7 +93338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barbqplaza-5a3582.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barbqplaza-5a3582.jpg" }, { "if": { @@ -93271,7 +93354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barrospizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barrospizza-96af40.jpg" }, { "if": { @@ -93287,7 +93370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bartaco-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bartaco-96af40.jpg" }, { "if": { @@ -93303,7 +93386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basilicandco-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/basilicandco-47e37e.jpg" }, { "if": { @@ -93320,7 +93403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bastardburgers-45c141.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bastardburgers-45c141.jpg" }, { "if": { @@ -93336,7 +93419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbqchicken-d60782.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbqchicken-d60782.jpg" }, { "if": { @@ -93356,7 +93439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbb-b691b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbb-b691b2.jpg" }, { "if": { @@ -93376,7 +93459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbqolivechickencafe-5f8110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bbqolivechickencafe-5f8110.jpg" }, { "if": { @@ -93392,7 +93475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bcdtofuhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcdtofuhouse-96af40.jpg" }, { "if": { @@ -93408,7 +93491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bdsmongoliangrill-bcd08b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdsmongoliangrill-bcd08b.jpg" }, { "if": { @@ -93423,7 +93506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beefeater-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beefeater-9b5453.jpg" }, { "if": { @@ -93438,7 +93521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beetsandroots-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beetsandroots-051971.jpg" }, { "if": { @@ -93454,7 +93537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beggarspizza-b2316d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beggarspizza-b2316d.jpg" }, { "if": { @@ -93470,7 +93553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellaitalia-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellaitalia-9b5453.jpg" }, { "if": { @@ -93486,7 +93569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benihana-934c20.png" + "then": "https://data.mapcomplete.org/nsi//logos/benihana-934c20.png" }, { "if": { @@ -93503,7 +93586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bennyandco-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bennyandco-e68b16.jpg" }, { "if": { @@ -93519,7 +93602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bertuccis-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bertuccis-96af40.jpg" }, { "if": { @@ -93535,24 +93618,24 @@ } ] }, - "then": "./assets/data/nsi/logos/biesiadowo-07fabc.png" + "then": "https://data.mapcomplete.org/nsi//logos/biesiadowo-07fabc.png" }, { "if": { "and": [ "amenity=restaurant", "cuisine=burger", - "official_name=Big Boy Restaurant & Bakery", { "or": [ "brand=Big Boy", "brand:wikidata=Q4386779", - "name=Big Boy" + "name=Big Boy", + "official_name=Big Boy Restaurant & Bakery" ] } ] }, - "then": "./assets/data/nsi/logos/bigboy-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigboy-96af40.jpg" }, { "if": { @@ -93568,7 +93651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bills-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bills-9b5453.jpg" }, { "if": { @@ -93584,7 +93667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bisquetsobregon-f5830e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bisquetsobregon-f5830e.jpg" }, { "if": { @@ -93600,24 +93683,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bistroregent-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bistroregent-47e37e.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=BJ's Restaurant & Brewhouse", { "or": [ "brand=BJ's", "brand:wikidata=Q4835755", - "name=BJ's" + "name=BJ's", + "official_name=BJ's Restaurant & Brewhouse" ] } ] }, - "then": "./assets/data/nsi/logos/bjs-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bjs-96af40.jpg" }, { "if": { @@ -93637,7 +93720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/black-b691b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/black-b691b2.jpg" }, { "if": { @@ -93653,7 +93736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackangus-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackangus-96af40.jpg" }, { "if": { @@ -93669,7 +93752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackbeardiner-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackbeardiner-96af40.jpg" }, { "if": { @@ -93685,7 +93768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blazepizza-902636.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blazepizza-902636.jpg" }, { "if": { @@ -93701,7 +93784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blockhouse-12455c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blockhouse-12455c.jpg" }, { "if": { @@ -93717,7 +93800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobevans-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobevans-96af40.jpg" }, { "if": { @@ -93733,7 +93816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonanzasteakhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonanzasteakhouse-96af40.jpg" }, { "if": { @@ -93749,7 +93832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonchonchicken-b76b63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonchonchicken-b76b63.jpg" }, { "if": { @@ -93768,7 +93851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonedaddies-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonedaddies-e997f8.jpg" }, { "if": { @@ -93784,7 +93867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonefishgrill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonefishgrill-96af40.jpg" }, { "if": { @@ -93800,7 +93883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bostonpizza-85c92c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bostonpizza-85c92c.png" }, { "if": { @@ -93817,7 +93900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bravo-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bravo-96af40.jpg" }, { "if": { @@ -93833,7 +93916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brewingz-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brewingz-96af40.jpg" }, { "if": { @@ -93850,7 +93933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brio-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brio-96af40.jpg" }, { "if": { @@ -93865,7 +93948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/browns-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/browns-9b5453.jpg" }, { "if": { @@ -93881,7 +93964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bubbagumpshrimpcompany-a282f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bubbagumpshrimpcompany-a282f9.jpg" }, { "if": { @@ -93897,7 +93980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bubbas33-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bubbas33-96af40.jpg" }, { "if": { @@ -93913,7 +93996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bucadibeppo-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bucadibeppo-96af40.jpg" }, { "if": { @@ -93929,7 +94012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buckingbull-3c82e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buckingbull-3c82e9.jpg" }, { "if": { @@ -93945,7 +94028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buffalogrill-3d86c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/buffalogrill-3d86c6.png" }, { "if": { @@ -93962,7 +94045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buffalowildwings-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buffalowildwings-96af40.jpg" }, { "if": { @@ -93979,7 +94062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buffalowingsandrings-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buffalowingsandrings-96af40.jpg" }, { "if": { @@ -93995,7 +94078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerandlobster-d7fd53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerandlobster-d7fd53.jpg" }, { "if": { @@ -94011,7 +94094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerheart-051971.png" + "then": "https://data.mapcomplete.org/nsi//logos/burgerheart-051971.png" }, { "if": { @@ -94027,7 +94110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/busaba-9a0837.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/busaba-9a0837.jpg" }, { "if": { @@ -94043,7 +94126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byron-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/byron-9b5453.jpg" }, { "if": { @@ -94059,7 +94142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cactusclubcafe-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cactusclubcafe-e68b16.jpg" }, { "if": { @@ -94075,7 +94158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafeandbarcelona-3fc85c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafeandbarcelona-3fc85c.jpg" }, { "if": { @@ -94091,7 +94174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafedelsol-b8cc79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafedelsol-b8cc79.jpg" }, { "if": { @@ -94107,7 +94190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caferio-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caferio-96af40.jpg" }, { "if": { @@ -94123,7 +94206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caferouge-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caferouge-9b5453.jpg" }, { "if": { @@ -94139,7 +94222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cfc-25c4a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cfc-25c4a5.jpg" }, { "if": { @@ -94156,7 +94239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiapizzakitchen-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/californiapizzakitchen-96af40.png" }, { "if": { @@ -94172,7 +94255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/campanile-ee8eff.png" + "then": "https://data.mapcomplete.org/nsi//logos/campanile-ee8eff.png" }, { "if": { @@ -94188,7 +94271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carluccios-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carluccios-9b5453.jpg" }, { "if": { @@ -94204,7 +94287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrabbasitaliangrill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carrabbasitaliangrill-96af40.jpg" }, { "if": { @@ -94220,24 +94303,24 @@ } ] }, - "then": "./assets/data/nsi/logos/cava-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cava-96af40.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Cheddar's Scratch Kitchen", { "or": [ "brand=Cheddar's", "brand:wikidata=Q5089187", - "name=Cheddar's" + "name=Cheddar's", + "official_name=Cheddar's Scratch Kitchen" ] } ] }, - "then": "./assets/data/nsi/logos/cheddars-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cheddars-96af40.jpg" }, { "if": { @@ -94253,41 +94336,41 @@ } ] }, - "then": "./assets/data/nsi/logos/cheeburgercheeburger-d5e034.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cheeburgercheeburger-d5e034.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=mexican", - "official_name=Chevys Fresh Mex", { "or": [ "brand=Chevys Fresh Mex", "brand:wikidata=Q5094466", - "name=Chevys" + "name=Chevys", + "official_name=Chevys Fresh Mex" ] } ] }, - "then": "./assets/data/nsi/logos/chevys-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chevys-96af40.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=tex-mex", - "official_name=Chili's Grill & Bar", { "or": [ "brand=Chili's", "brand:wikidata=Q1072948", - "name=Chili's" + "name=Chili's", + "official_name=Chili's Grill & Bar" ] } ] }, - "then": "./assets/data/nsi/logos/chilis-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chilis-2fabb0.jpg" }, { "if": { @@ -94303,7 +94386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chimcking-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chimcking-96af40.jpg" }, { "if": { @@ -94319,7 +94402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chiquito-9b5453.png" + "then": "https://data.mapcomplete.org/nsi//logos/chiquito-9b5453.png" }, { "if": { @@ -94336,7 +94419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chuckecheese-826402.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chuckecheese-826402.jpg" }, { "if": { @@ -94352,7 +94435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chucksroadhouse-0314e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chucksroadhouse-0314e3.jpg" }, { "if": { @@ -94368,7 +94451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chuys-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chuys-96af40.jpg" }, { "if": { @@ -94384,7 +94467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cicis-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cicis-96af40.jpg" }, { "if": { @@ -94400,7 +94483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/claimjumper-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/claimjumper-96af40.jpg" }, { "if": { @@ -94417,7 +94500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubmexicana-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubmexicana-e997f8.jpg" }, { "if": { @@ -94433,7 +94516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubmilanesa-8d1dc1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubmilanesa-8d1dc1.jpg" }, { "if": { @@ -94449,7 +94532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coasttocoast-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coasttocoast-9b5453.jpg" }, { "if": { @@ -94470,7 +94553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocoichibanya-a00c19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocoichibanya-a00c19.jpg" }, { "if": { @@ -94486,7 +94569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocosbakery-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/cocosbakery-96af40.png" }, { "if": { @@ -94510,7 +94593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocoichibanya-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocoichibanya-36ca8e.jpg" }, { "if": { @@ -94536,7 +94619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocoichibanya-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocoichibanya-aafd63.jpg" }, { "if": { @@ -94559,7 +94642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocoichibanya-2b8b0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocoichibanya-2b8b0b.jpg" }, { "if": { @@ -94575,7 +94658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colcacchiopizzeria-13b08d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colcacchiopizzeria-13b08d.jpg" }, { "if": { @@ -94591,7 +94674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/condadotacos-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/condadotacos-96af40.jpg" }, { "if": { @@ -94607,25 +94690,25 @@ } ] }, - "then": "./assets/data/nsi/logos/cooprestaurant-282f19.png" + "then": "https://data.mapcomplete.org/nsi//logos/cooprestaurant-282f19.png" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Cooper's Hawk Winery & Restaurants", "shop=wine", { "or": [ "brand=Cooper's Hawk", "brand:wikidata=Q17511079", - "name=Cooper's Hawk" + "name=Cooper's Hawk", + "official_name=Cooper's Hawk Winery & Restaurants" ] } ] }, - "then": "./assets/data/nsi/logos/coopershawk-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopershawk-96af40.jpg" }, { "if": { @@ -94641,7 +94724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copelands-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copelands-96af40.jpg" }, { "if": { @@ -94657,7 +94740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cora-3080a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/cora-3080a2.png" }, { "if": { @@ -94673,7 +94756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosmo-bd06d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosmo-bd06d9.jpg" }, { "if": { @@ -94688,7 +94771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosyclub-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosyclub-9b5453.jpg" }, { "if": { @@ -94704,7 +94787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cotebrasserie-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cotebrasserie-9b5453.jpg" }, { "if": { @@ -94720,7 +94803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countrykitchen-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/countrykitchen-96af40.jpg" }, { "if": { @@ -94736,7 +94819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countrypride-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/countrypride-96af40.png" }, { "if": { @@ -94752,24 +94835,24 @@ } ] }, - "then": "./assets/data/nsi/logos/courtepaille-dee615.png" + "then": "https://data.mapcomplete.org/nsi//logos/courtepaille-dee615.png" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Cracker Barrel Old Country Store", { "or": [ "brand=Cracker Barrel", "brand:wikidata=Q4492609", - "name=Cracker Barrel" + "name=Cracker Barrel", + "official_name=Cracker Barrel Old Country Store" ] } ] }, - "then": "./assets/data/nsi/logos/crackerbarrel-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crackerbarrel-96af40.jpg" }, { "if": { @@ -94786,7 +94869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crepesandwaffles-7b5290.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crepesandwaffles-7b5290.jpg" }, { "if": { @@ -94802,7 +94885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpdough-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/dpdough-96af40.png" }, { "if": { @@ -94819,7 +94902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dagrasso-07fabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dagrasso-07fabc.jpg" }, { "if": { @@ -94835,7 +94918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davannis-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/davannis-96af40.jpg" }, { "if": { @@ -94852,7 +94935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daveandbusters-85c92c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daveandbusters-85c92c.jpg" }, { "if": { @@ -94868,7 +94951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deberen-2b67bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deberen-2b67bf.jpg" }, { "if": { @@ -94885,7 +94968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/depizzabakkers-2b67bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/depizzabakkers-2b67bf.jpg" }, { "if": { @@ -94901,7 +94984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delfriscosdoubleeaglesteakhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delfriscosdoubleeaglesteakhouse-96af40.jpg" }, { "if": { @@ -94917,7 +95000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dennys-a531a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dennys-a531a3.jpg" }, { "if": { @@ -94933,7 +95016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dickeysbarbecuepit-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dickeysbarbecuepit-96af40.jpg" }, { "if": { @@ -94953,7 +95036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dintaifung-4a64f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dintaifung-4a64f1.jpg" }, { "if": { @@ -94969,7 +95052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dishoom-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dishoom-9b5453.jpg" }, { "if": { @@ -94986,7 +95069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donatospizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donatospizza-96af40.jpg" }, { "if": { @@ -95002,7 +95085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doppiomalto-94430a.png" + "then": "https://data.mapcomplete.org/nsi//logos/doppiomalto-94430a.png" }, { "if": { @@ -95018,7 +95101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doppiozero-0e7480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doppiozero-0e7480.jpg" }, { "if": { @@ -95038,7 +95121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doughzone-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/doughzone-96af40.png" }, { "if": { @@ -95054,7 +95137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/earls-85c92c.png" + "then": "https://data.mapcomplete.org/nsi//logos/earls-85c92c.png" }, { "if": { @@ -95070,7 +95153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastsidemarios-e68b16.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastsidemarios-e68b16.png" }, { "if": { @@ -95086,7 +95169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eathappy-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eathappy-051971.jpg" }, { "if": { @@ -95102,7 +95185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eatnpark-96af40.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eatnpark-96af40.svg" }, { "if": { @@ -95118,7 +95201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eggsupgrill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eggsupgrill-96af40.jpg" }, { "if": { @@ -95134,7 +95217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eggsmart-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eggsmart-e68b16.jpg" }, { "if": { @@ -95150,7 +95233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egon-0a0782.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/egon-0a0782.jpg" }, { "if": { @@ -95166,7 +95249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elephantbar-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/elephantbar-96af40.png" }, { "if": { @@ -95182,7 +95265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enchilada-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enchilada-051971.jpg" }, { "if": { @@ -95198,7 +95281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/famousdaves-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/famousdaves-96af40.jpg" }, { "if": { @@ -95213,7 +95296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmhouseinns-9b5453.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmhouseinns-9b5453.png" }, { "if": { @@ -95230,24 +95313,24 @@ } ] }, - "then": "./assets/data/nsi/logos/fattoamano-37e076.png" + "then": "https://data.mapcomplete.org/nsi//logos/fattoamano-37e076.png" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american;breakfast", - "official_name=First Watch The Daytime Cafe", { "or": [ "brand=First Watch", "brand:wikidata=Q5454064", - "name=First Watch" + "name=First Watch", + "official_name=First Watch The Daytime Cafe" ] } ] }, - "then": "./assets/data/nsi/logos/firstwatch-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstwatch-96af40.jpg" }, { "if": { @@ -95263,24 +95346,24 @@ } ] }, - "then": "./assets/data/nsi/logos/flatiron-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flatiron-e997f8.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=steak_house", - "official_name=Fleming's Prime Steakhouse & Wine Bar", { "or": [ "brand=Fleming's", "brand:wikidata=Q5458552", - "name=Fleming's" + "name=Fleming's", + "official_name=Fleming's Prime Steakhouse & Wine Bar" ] } ] }, - "then": "./assets/data/nsi/logos/flemings-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flemings-96af40.jpg" }, { "if": { @@ -95296,7 +95379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flunch-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flunch-47e37e.jpg" }, { "if": { @@ -95312,7 +95395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fogodechao-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fogodechao-2fabb0.jpg" }, { "if": { @@ -95328,7 +95411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fostershollywood-acf031.png" + "then": "https://data.mapcomplete.org/nsi//logos/fostershollywood-acf031.png" }, { "if": { @@ -95344,7 +95427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fournosbakery-69fbf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fournosbakery-69fbf5.jpg" }, { "if": { @@ -95361,7 +95444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/francomanca-6f1a9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/francomanca-6f1a9d.jpg" }, { "if": { @@ -95377,7 +95460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frankieandbennys-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frankieandbennys-9b5453.jpg" }, { "if": { @@ -95393,7 +95476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshcornerrestaurant-c8a273.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshcornerrestaurant-c8a273.jpg" }, { "if": { @@ -95409,7 +95492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshii-2d261b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshii-2d261b.jpg" }, { "if": { @@ -95425,7 +95508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/friendlys-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/friendlys-96af40.jpg" }, { "if": { @@ -95442,7 +95525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frischsbigboy-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frischsbigboy-96af40.jpg" }, { "if": { @@ -95458,7 +95541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fuddruckers-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fuddruckers-96af40.jpg" }, { "if": { @@ -95474,7 +95557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gattispizza-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/gattispizza-96af40.png" }, { "if": { @@ -95490,7 +95573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gaucho-9b5453.png" + "then": "https://data.mapcomplete.org/nsi//logos/gaucho-9b5453.png" }, { "if": { @@ -95506,7 +95589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genkoreanbbq-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/genkoreanbbq-96af40.png" }, { "if": { @@ -95522,7 +95605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genkisushi-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genkisushi-96af40.jpg" }, { "if": { @@ -95538,7 +95621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gigglingsquid-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gigglingsquid-9b5453.jpg" }, { "if": { @@ -95554,7 +95637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ginoseast-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ginoseast-96af40.jpg" }, { "if": { @@ -95570,7 +95653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ginos-acf031.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ginos-acf031.jpg" }, { "if": { @@ -95586,7 +95669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giordanospizzeria-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giordanospizzeria-96af40.jpg" }, { "if": { @@ -95602,7 +95685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giraffe-c20144.png" + "then": "https://data.mapcomplete.org/nsi//logos/giraffe-c20144.png" }, { "if": { @@ -95618,7 +95701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/godfatherspizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/godfatherspizza-96af40.jpg" }, { "if": { @@ -95634,7 +95717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldencorral-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/goldencorral-96af40.png" }, { "if": { @@ -95650,7 +95733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grimaldispizzeria-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/grimaldispizzeria-96af40.png" }, { "if": { @@ -95666,7 +95749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gringosmexicankitchen-5297f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gringosmexicankitchen-5297f1.jpg" }, { "if": { @@ -95682,7 +95765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grottopizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grottopizza-96af40.jpg" }, { "if": { @@ -95698,7 +95781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gusto-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gusto-9b5453.jpg" }, { "if": { @@ -95714,7 +95797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gyukaku-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/gyukaku-96af40.png" }, { "if": { @@ -95734,7 +95817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haidilaohotpot-ce6bab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haidilaohotpot-ce6bab.jpg" }, { "if": { @@ -95750,7 +95833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansimgluck-a53895.png" + "then": "https://data.mapcomplete.org/nsi//logos/hansimgluck-a53895.png" }, { "if": { @@ -95766,7 +95849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happybarandgrill-76698e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happybarandgrill-76698e.jpg" }, { "if": { @@ -95782,7 +95865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happyitaly-2b67bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happyitaly-2b67bf.jpg" }, { "if": { @@ -95802,7 +95885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happylambhotpot-20752b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happylambhotpot-20752b.jpg" }, { "if": { @@ -95818,7 +95901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happyspizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happyspizza-96af40.jpg" }, { "if": { @@ -95834,7 +95917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hardrockcafe-2fabb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/hardrockcafe-2fabb0.png" }, { "if": { @@ -95849,7 +95932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harvester-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harvester-9b5453.jpg" }, { "if": { @@ -95865,7 +95948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawksmoor-39693e.png" + "then": "https://data.mapcomplete.org/nsi//logos/hawksmoor-39693e.png" }, { "if": { @@ -95881,7 +95964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hippopotamus-dee615.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hippopotamus-dee615.jpg" }, { "if": { @@ -95897,7 +95980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hogsbreathcafe-3c82e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/hogsbreathcafe-3c82e9.png" }, { "if": { @@ -95913,7 +95996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homeruninnpizzeria-b2316d.png" + "then": "https://data.mapcomplete.org/nsi//logos/homeruninnpizzeria-b2316d.png" }, { "if": { @@ -95930,7 +96013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homeslice-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homeslice-e997f8.jpg" }, { "if": { @@ -95946,7 +96029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honestburgers-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honestburgers-9b5453.jpg" }, { "if": { @@ -95962,7 +96045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honestgreens-1d6b00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honestgreens-1d6b00.jpg" }, { "if": { @@ -95978,7 +96061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hooters-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hooters-2fabb0.jpg" }, { "if": { @@ -95995,7 +96078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hossssteakandseahouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hossssteakandseahouse-96af40.jpg" }, { "if": { @@ -96011,7 +96094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotpotbuffet-5a3582.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotpotbuffet-5a3582.jpg" }, { "if": { @@ -96027,7 +96110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houlihans-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houlihans-96af40.jpg" }, { "if": { @@ -96043,7 +96126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houseofblues-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/houseofblues-96af40.png" }, { "if": { @@ -96059,7 +96142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hubbox-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hubbox-9b5453.jpg" }, { "if": { @@ -96075,24 +96158,24 @@ } ] }, - "then": "./assets/data/nsi/logos/huddlehouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huddlehouse-96af40.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=mongolian_grill", - "official_name=HuHot Mongolian Grill", { "or": [ "brand=HuHot", "brand:wikidata=Q5924606", - "name=HuHot" + "name=HuHot", + "official_name=HuHot Mongolian Grill" ] } ] }, - "then": "./assets/data/nsi/logos/huhot-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huhot-96af40.jpg" }, { "if": { @@ -96108,7 +96191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huskyhouse-e68b16.png" + "then": "https://data.mapcomplete.org/nsi//logos/huskyhouse-e68b16.png" }, { "if": { @@ -96124,7 +96207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ihop-2fabb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ihop-2fabb0.png" }, { "if": { @@ -96140,7 +96223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ilfornaio-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ilfornaio-96af40.jpg" }, { "if": { @@ -96156,7 +96239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/0aeb30-642268.png" + "then": "https://data.mapcomplete.org/nsi//logos/0aeb30-642268.png" }, { "if": { @@ -96172,7 +96255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intersparrestaurant-c7016b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intersparrestaurant-c7016b.jpg" }, { "if": { @@ -96192,7 +96275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ippudo-b715b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ippudo-b715b9.jpg" }, { "if": { @@ -96208,7 +96291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ironskillet-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ironskillet-96af40.jpg" }, { "if": { @@ -96224,24 +96307,24 @@ } ] }, - "then": "./assets/data/nsi/logos/jackastors-85c92c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jackastors-85c92c.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=barbecue", - "official_name=Fiorella's Jack Stack Barbecue", { "or": [ "brand=Jack Stack Barbecue", "brand:wikidata=Q5451169", - "name=Jack Stack Barbecue" + "name=Jack Stack Barbecue", + "official_name=Fiorella's Jack Stack Barbecue" ] } ] }, - "then": "./assets/data/nsi/logos/jackstackbarbecue-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jackstackbarbecue-96af40.jpg" }, { "if": { @@ -96257,7 +96340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jasonsdeli-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/jasonsdeli-96af40.png" }, { "if": { @@ -96273,7 +96356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jetspizza-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jetspizza-96af40.jpg" }, { "if": { @@ -96289,7 +96372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jimnnicks-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jimnnicks-96af40.jpg" }, { "if": { @@ -96306,7 +96389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jinyaramenbar-85c92c.png" + "then": "https://data.mapcomplete.org/nsi//logos/jinyaramenbar-85c92c.png" }, { "if": { @@ -96322,7 +96405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joescrabshack-c6bbaa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joescrabshack-c6bbaa.jpg" }, { "if": { @@ -96338,7 +96421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joey-85c92c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joey-85c92c.jpg" }, { "if": { @@ -96354,7 +96437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johndorys-f0d76a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johndorys-f0d76a.jpg" }, { "if": { @@ -96371,7 +96454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnsincrediblepizza-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/johnsincrediblepizza-96af40.png" }, { "if": { @@ -96387,7 +96470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnnycarinos-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnnycarinos-96af40.jpg" }, { "if": { @@ -96403,7 +96486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnnyrockets-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnnyrockets-2fabb0.jpg" }, { "if": { @@ -96425,7 +96508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karas-86098b.png" + "then": "https://data.mapcomplete.org/nsi//logos/karas-86098b.png" }, { "if": { @@ -96441,7 +96524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kauai-14572f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kauai-14572f.jpg" }, { "if": { @@ -96457,24 +96540,24 @@ } ] }, - "then": "./assets/data/nsi/logos/kekesbreakfastcafe-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kekesbreakfastcafe-96af40.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Kelsey's Original Roadhouse", { "or": [ "brand=Kelsey's", "brand:wikidata=Q6386459", - "name=Kelsey's" + "name=Kelsey's", + "official_name=Kelsey's Original Roadhouse" ] } ] }, - "then": "./assets/data/nsi/logos/kelseys-e68b16.png" + "then": "https://data.mapcomplete.org/nsi//logos/kelseys-e68b16.png" }, { "if": { @@ -96490,7 +96573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kofteciyusuf-9743a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kofteciyusuf-9743a1.jpg" }, { "if": { @@ -96506,7 +96589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/konagrill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/konagrill-96af40.jpg" }, { "if": { @@ -96522,7 +96605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losteria-454d96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losteria-454d96.jpg" }, { "if": { @@ -96538,7 +96621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laboucherie-dee615.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laboucherie-dee615.jpg" }, { "if": { @@ -96554,7 +96637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacage-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacage-e68b16.jpg" }, { "if": { @@ -96570,7 +96653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacasadetono-f5830e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacasadetono-f5830e.jpg" }, { "if": { @@ -96586,7 +96669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacubanita-2b67bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacubanita-2b67bf.jpg" }, { "if": { @@ -96603,7 +96686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapataterie-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lapataterie-47e37e.jpg" }, { "if": { @@ -96619,7 +96702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laplace-179420.png" + "then": "https://data.mapcomplete.org/nsi//logos/laplace-179420.png" }, { "if": { @@ -96635,7 +96718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laporchetta-bb079b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/laporchetta-bb079b.svg" }, { "if": { @@ -96651,7 +96734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasurena-acf031.png" + "then": "https://data.mapcomplete.org/nsi//logos/lasurena-acf031.png" }, { "if": { @@ -96667,7 +96750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/latagliatella-1d6b00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/latagliatella-1d6b00.jpg" }, { "if": { @@ -96684,7 +96767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lantana-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lantana-e997f8.jpg" }, { "if": { @@ -96701,7 +96784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/larosaspizzeria-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/larosaspizzeria-96af40.png" }, { "if": { @@ -96717,7 +96800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasiguanas-9b5453.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lasiguanas-9b5453.svg" }, { "if": { @@ -96735,7 +96818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laspalmasfoodcentre-e66c3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laspalmasfoodcentre-e66c3e.jpg" }, { "if": { @@ -96751,7 +96834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lazydog-f4f1ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/lazydog-f4f1ab.png" }, { "if": { @@ -96767,7 +96850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ledopizza-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/ledopizza-96af40.png" }, { "if": { @@ -96783,7 +96866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legalseafoods-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/legalseafoods-96af40.jpg" }, { "if": { @@ -96799,26 +96882,26 @@ } ] }, - "then": "./assets/data/nsi/logos/leondebruxelles-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leondebruxelles-47e37e.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=burger;pizza;seafood", - "official_name=Les 3 Brasseurs", { "or": [ "brand=3 Brasseurs", "brand:wikidata=Q3230326", "name=3 Brasseurs", "name:en=3 Brewers", - "name:fr=3 Brasseurs" + "name:fr=3 Brasseurs", + "official_name=Les 3 Brasseurs" ] } ] }, - "then": "./assets/data/nsi/logos/3brasseurs-17e7d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3brasseurs-17e7d6.jpg" }, { "if": { @@ -96837,7 +96920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loetje-2b67bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loetje-2b67bf.jpg" }, { "if": { @@ -96853,7 +96936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/logansroadhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/logansroadhouse-96af40.jpg" }, { "if": { @@ -96869,7 +96952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longhornsteakhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longhornsteakhouse-96af40.jpg" }, { "if": { @@ -96885,7 +96968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loumalnatispizzeria-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loumalnatispizzeria-96af40.jpg" }, { "if": { @@ -96900,7 +96983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lounges-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lounges-9b5453.jpg" }, { "if": { @@ -96917,7 +97000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lovinghut-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lovinghut-2fabb0.jpg" }, { "if": { @@ -96933,24 +97016,24 @@ } ] }, - "then": "./assets/data/nsi/logos/lubys-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubys-96af40.png" }, { "if": { "and": [ "amenity=restaurant", "cuisine=barbecue", - "official_name=Lucille's Smokehouse Bar-B-Que", { "or": [ "brand=Lucille's Smokehouse BBQ", "brand:wikidata=Q17019306", - "name=Lucille's Smokehouse BBQ" + "name=Lucille's Smokehouse BBQ", + "official_name=Lucille's Smokehouse Bar-B-Que" ] } ] }, - "then": "./assets/data/nsi/logos/lucillessmokehousebbq-385edb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lucillessmokehousebbq-385edb.jpg" }, { "if": { @@ -96966,7 +97049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luckysushi-f5830e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luckysushi-f5830e.jpg" }, { "if": { @@ -96982,7 +97065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lunchgarden-c1dacf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lunchgarden-c1dacf.jpg" }, { "if": { @@ -96998,7 +97081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madmexfreshmexicangrill-bb079b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madmexfreshmexicangrill-bb079b.jpg" }, { "if": { @@ -97014,7 +97097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madero-ad49e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madero-ad49e6.jpg" }, { "if": { @@ -97030,7 +97113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maggianoslittleitaly-acf8ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maggianoslittleitaly-acf8ec.jpg" }, { "if": { @@ -97047,7 +97130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainevent-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mainevent-96af40.jpg" }, { "if": { @@ -97063,7 +97146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maplestreetbiscuitcompany-d344e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maplestreetbiscuitcompany-d344e2.jpg" }, { "if": { @@ -97079,41 +97162,41 @@ } ] }, - "then": "./assets/data/nsi/logos/maredo-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maredo-051971.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=mexican", - "official_name=Margaritas Mexican Restaurant", { "or": [ "brand=Margaritas", "brand:wikidata=Q6760185", - "name=Margaritas" + "name=Margaritas", + "official_name=Margaritas Mexican Restaurant" ] } ] }, - "then": "./assets/data/nsi/logos/margaritas-46ca2f.png" + "then": "https://data.mapcomplete.org/nsi//logos/margaritas-46ca2f.png" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Marie Callender's Restaurant & Bakery", { "or": [ "brand=Marie Callender's", "brand:wikidata=Q6762784", - "name=Marie Callender's" + "name=Marie Callender's", + "official_name=Marie Callender's Restaurant & Bakery" ] } ] }, - "then": "./assets/data/nsi/logos/mariecallenders-27c30e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mariecallenders-27c30e.jpg" }, { "if": { @@ -97129,7 +97212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/markspizzeria-9e0453.png" + "then": "https://data.mapcomplete.org/nsi//logos/markspizzeria-9e0453.png" }, { "if": { @@ -97145,7 +97228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marygrace-5259a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marygrace-5259a4.jpg" }, { "if": { @@ -97161,7 +97244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxsrestaurant-5259a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxsrestaurant-5259a4.jpg" }, { "if": { @@ -97177,7 +97260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxis-2bd789.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxis-2bd789.jpg" }, { "if": { @@ -97193,7 +97276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mazzios-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mazzios-96af40.jpg" }, { "if": { @@ -97209,7 +97292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcalistersdeli-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcalistersdeli-96af40.jpg" }, { "if": { @@ -97225,7 +97308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mccormickandschmicks-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mccormickandschmicks-96af40.jpg" }, { "if": { @@ -97241,7 +97324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meetfresh-44e003.png" + "then": "https://data.mapcomplete.org/nsi//logos/meetfresh-44e003.png" }, { "if": { @@ -97261,7 +97344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meizhoudongpo-697b62.png" + "then": "https://data.mapcomplete.org/nsi//logos/meizhoudongpo-697b62.png" }, { "if": { @@ -97277,7 +97360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mellowmushroom-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mellowmushroom-96af40.jpg" }, { "if": { @@ -97293,7 +97376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphis-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphis-47e37e.jpg" }, { "if": { @@ -97309,7 +97392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrodiner-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metrodiner-96af40.jpg" }, { "if": { @@ -97325,7 +97408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mezehmediterraneangrill-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/mezehmediterraneangrill-96af40.png" }, { "if": { @@ -97341,7 +97424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miegacoan-25c4a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miegacoan-25c4a5.jpg" }, { "if": { @@ -97357,7 +97440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mightyquinns-55b11d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mightyquinns-55b11d.jpg" }, { "if": { @@ -97373,7 +97456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrosrestaurant-282f19.png" + "then": "https://data.mapcomplete.org/nsi//logos/migrosrestaurant-282f19.png" }, { "if": { @@ -97389,7 +97472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mikes-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mikes-e68b16.jpg" }, { "if": { @@ -97406,7 +97489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mildreds-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mildreds-e997f8.jpg" }, { "if": { @@ -97422,7 +97505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milestones-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milestones-e68b16.jpg" }, { "if": { @@ -97438,7 +97521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/millersalehouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/millersalehouse-96af40.jpg" }, { "if": { @@ -97454,7 +97537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mimiscafe-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mimiscafe-96af40.jpg" }, { "if": { @@ -97470,7 +97553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missionbbq-2fabb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/missionbbq-2fabb0.png" }, { "if": { @@ -97486,7 +97569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mkrestaurants-5a3582.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mkrestaurants-5a3582.jpg" }, { "if": { @@ -97503,24 +97586,24 @@ } ] }, - "then": "./assets/data/nsi/logos/mos-effa94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mos-effa94.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=barbecue", - "official_name=Montana's BBQ & Bar", { "or": [ "brand=Montana's", "brand:wikidata=Q17022490", - "name=Montana's" + "name=Montana's", + "official_name=Montana's BBQ & Bar" ] } ] }, - "then": "./assets/data/nsi/logos/montanas-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montanas-e68b16.jpg" }, { "if": { @@ -97536,7 +97619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moomoo-69fbf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moomoo-69fbf5.jpg" }, { "if": { @@ -97552,7 +97635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mortonsgrille-1830bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mortonsgrille-1830bd.jpg" }, { "if": { @@ -97568,7 +97651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mortonsthesteakhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mortonsthesteakhouse-96af40.jpg" }, { "if": { @@ -97588,7 +97671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moses-b691b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/moses-b691b2.png" }, { "if": { @@ -97606,7 +97689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mountainmikes-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mountainmikes-96af40.jpg" }, { "if": { @@ -97622,7 +97705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mowglistreetfood-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mowglistreetfood-9b5453.jpg" }, { "if": { @@ -97638,7 +97721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moxies-12e5ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moxies-12e5ab.jpg" }, { "if": { @@ -97654,7 +97737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrgreek-e68b16.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mrgreek-e68b16.svg" }, { "if": { @@ -97670,7 +97753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrmikes-e68b16.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrmikes-e68b16.png" }, { "if": { @@ -97686,7 +97769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nafnafgrill-8ff1c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nafnafgrill-8ff1c6.jpg" }, { "if": { @@ -97702,7 +97785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nandos-32ebee.png" + "then": "https://data.mapcomplete.org/nsi//logos/nandos-32ebee.png" }, { "if": { @@ -97722,7 +97805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nicetomeetyouhotpot-697b62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nicetomeetyouhotpot-697b62.jpg" }, { "if": { @@ -97738,7 +97821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ninetyninerestaurantandpub-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/ninetyninerestaurantandpub-96af40.png" }, { "if": { @@ -97754,7 +97837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nobu-2fabb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/nobu-2fabb0.png" }, { "if": { @@ -97770,7 +97853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noodlesandcompany-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noodlesandcompany-96af40.jpg" }, { "if": { @@ -97786,7 +97869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norkys-39b0af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norkys-39b0af.jpg" }, { "if": { @@ -97802,7 +97885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocharleys-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocharleys-96af40.jpg" }, { "if": { @@ -97818,7 +97901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oceanbasket-5d9698.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oceanbasket-5d9698.jpg" }, { "if": { @@ -97834,24 +97917,24 @@ } ] }, - "then": "./assets/data/nsi/logos/oishiramen-5a3582.png" + "then": "https://data.mapcomplete.org/nsi//logos/oishiramen-5a3582.png" }, { "if": { "and": [ "amenity=restaurant", "cuisine=pizza", - "official_name=Old Chicago Pizza & Taproom", { "or": [ "brand=Old Chicago", "brand:wikidata=Q64411347", - "name=Old Chicago" + "name=Old Chicago", + "official_name=Old Chicago Pizza & Taproom" ] } ] }, - "then": "./assets/data/nsi/logos/oldchicago-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldchicago-96af40.jpg" }, { "if": { @@ -97867,7 +97950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldcountrybuffet-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldcountrybuffet-96af40.jpg" }, { "if": { @@ -97883,7 +97966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldwildwest-a042ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldwildwest-a042ef.jpg" }, { "if": { @@ -97899,24 +97982,24 @@ } ] }, - "then": "./assets/data/nsi/logos/olivegarden-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/olivegarden-2fabb0.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=tex-mex", - "official_name=On The Border Mexican Grill & Cantina", { "or": [ "brand=On The Border", "brand:wikidata=Q7091305", - "name=On The Border" + "name=On The Border", + "official_name=On The Border Mexican Grill & Cantina" ] } ] }, - "then": "./assets/data/nsi/logos/ontheborder-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ontheborder-96af40.jpg" }, { "if": { @@ -97932,7 +98015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onohawaiianbbq-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/onohawaiianbbq-96af40.png" }, { "if": { @@ -97948,7 +98031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/originaljoes-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/originaljoes-e68b16.jpg" }, { "if": { @@ -97964,7 +98047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/originalroadhousegrill-f1be6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/originalroadhousegrill-f1be6c.jpg" }, { "if": { @@ -97980,7 +98063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottopizza-f45aef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottopizza-f45aef.jpg" }, { "if": { @@ -97996,24 +98079,24 @@ } ] }, - "then": "./assets/data/nsi/logos/outbacksteakhouse-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/outbacksteakhouse-2fabb0.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=asian", - "official_name=P.F. Chang's China Bistro", { "or": [ "brand=P.F. Chang's", "brand:wikidata=Q5360181", - "name=P.F. Chang's" + "name=P.F. Chang's", + "official_name=P.F. Chang's China Bistro" ] } ] }, - "then": "./assets/data/nsi/logos/pfchangs-f036fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pfchangs-f036fe.jpg" }, { "if": { @@ -98029,7 +98112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panarottis-0539cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panarottis-0539cf.jpg" }, { "if": { @@ -98045,7 +98128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pancherosmexicangrill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pancherosmexicangrill-96af40.jpg" }, { "if": { @@ -98061,7 +98144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/papaginos-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/papaginos-96af40.png" }, { "if": { @@ -98077,7 +98160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/papparich-2fabb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/papparich-2fabb0.png" }, { "if": { @@ -98093,7 +98176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pardoschicken-39b0af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pardoschicken-39b0af.jpg" }, { "if": { @@ -98109,7 +98192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pastini-effa94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pastini-effa94.jpg" }, { "if": { @@ -98125,7 +98208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patroni-07a6d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/patroni-07a6d4.png" }, { "if": { @@ -98143,7 +98226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pattyandbun-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pattyandbun-9b5453.jpg" }, { "if": { @@ -98158,7 +98241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pbpouletbraise-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pbpouletbraise-47e37e.jpg" }, { "if": { @@ -98174,7 +98257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pedros-0e7480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pedros-0e7480.jpg" }, { "if": { @@ -98190,7 +98273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peiwei-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peiwei-96af40.jpg" }, { "if": { @@ -98206,7 +98289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pelicanachicken-d60782.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pelicanachicken-d60782.jpg" }, { "if": { @@ -98222,24 +98305,24 @@ } ] }, - "then": "./assets/data/nsi/logos/peppespizza-0a0782.png" + "then": "https://data.mapcomplete.org/nsi//logos/peppespizza-0a0782.png" }, { "if": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Perkins Restaurant and Bakery", { "or": [ "brand=Perkins", "brand:wikidata=Q7169056", - "name=Perkins" + "name=Perkins", + "official_name=Perkins Restaurant and Bakery" ] } ] }, - "then": "./assets/data/nsi/logos/perkins-85c92c.png" + "then": "https://data.mapcomplete.org/nsi//logos/perkins-85c92c.png" }, { "if": { @@ -98255,7 +98338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peterpane-b8cc79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peterpane-b8cc79.jpg" }, { "if": { @@ -98271,7 +98354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peterpiperpizza-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/peterpiperpizza-96af40.png" }, { "if": { @@ -98287,7 +98370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pho-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pho-9b5453.jpg" }, { "if": { @@ -98305,7 +98388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pho24-d3bf7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pho24-d3bf7d.jpg" }, { "if": { @@ -98325,7 +98408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phohoa-13c988.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phohoa-13c988.jpg" }, { "if": { @@ -98341,7 +98424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piadaitalianstreetfood-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piadaitalianstreetfood-96af40.jpg" }, { "if": { @@ -98357,7 +98440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piefivepizzaco-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piefivepizzaco-96af40.jpg" }, { "if": { @@ -98375,7 +98458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pieminister-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pieminister-9b5453.jpg" }, { "if": { @@ -98391,7 +98474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pieologypizzeria-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/pieologypizzeria-96af40.png" }, { "if": { @@ -98407,7 +98490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzacosy-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzacosy-47e37e.jpg" }, { "if": { @@ -98423,7 +98506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzafactory-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzafactory-96af40.jpg" }, { "if": { @@ -98439,7 +98522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzahut-2fabb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzahut-2fabb0.png" }, { "if": { @@ -98455,7 +98538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzapai-47e37e.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzapai-47e37e.png" }, { "if": { @@ -98472,7 +98555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzapilgrims-37e076.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzapilgrims-37e076.png" }, { "if": { @@ -98490,7 +98573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzasalvatore-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzasalvatore-e68b16.jpg" }, { "if": { @@ -98506,7 +98589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzaexpress-ebbd3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzaexpress-ebbd3d.jpg" }, { "if": { @@ -98522,7 +98605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzeria105-07fabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pizzeria105-07fabc.jpg" }, { "if": { @@ -98538,7 +98621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poivrerouge-47e37e.png" + "then": "https://data.mapcomplete.org/nsi//logos/poivrerouge-47e37e.png" }, { "if": { @@ -98554,7 +98637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pomodoro-acf031.png" + "then": "https://data.mapcomplete.org/nsi//logos/pomodoro-acf031.png" }, { "if": { @@ -98574,7 +98657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ponderosasteakhouse-56c3a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ponderosasteakhouse-56c3a6.jpg" }, { "if": { @@ -98590,7 +98673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poutineville-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poutineville-e68b16.jpg" }, { "if": { @@ -98606,7 +98689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prezzo-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prezzo-9b5453.jpg" }, { "if": { @@ -98622,7 +98705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primantibros-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primantibros-96af40.jpg" }, { "if": { @@ -98638,7 +98721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/purandsimple-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/purandsimple-e68b16.jpg" }, { "if": { @@ -98656,7 +98739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/purezza-37e076.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/purezza-37e076.jpg" }, { "if": { @@ -98672,7 +98755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quakersteakandlube-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quakersteakandlube-96af40.jpg" }, { "if": { @@ -98688,7 +98771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rasushi-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rasushi-96af40.jpg" }, { "if": { @@ -98704,7 +98787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rainforestcafe-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rainforestcafe-96af40.jpg" }, { "if": { @@ -98720,24 +98803,24 @@ } ] }, - "then": "./assets/data/nsi/logos/redlobster-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redlobster-2fabb0.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=burger", - "official_name=Red Robin Gourmet Burgers and Brews", { "or": [ "brand=Red Robin", "brand:wikidata=Q7304886", - "name=Red Robin" + "name=Red Robin", + "official_name=Red Robin Gourmet Burgers and Brews" ] } ] }, - "then": "./assets/data/nsi/logos/redrobin-85c92c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redrobin-85c92c.jpg" }, { "if": { @@ -98753,7 +98836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ribcrib-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ribcrib-96af40.jpg" }, { "if": { @@ -98769,7 +98852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ristorantedelarte-47e37e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ristorantedelarte-47e37e.png" }, { "if": { @@ -98785,7 +98868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roadhouse-8aae3d.png" + "then": "https://data.mapcomplete.org/nsi//logos/roadhouse-8aae3d.png" }, { "if": { @@ -98801,7 +98884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockyrococo-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rockyrococo-96af40.jpg" }, { "if": { @@ -98817,7 +98900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rocomamas-a7acfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rocomamas-a7acfa.jpg" }, { "if": { @@ -98833,7 +98916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rolls-fe858e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rolls-fe858e.jpg" }, { "if": { @@ -98849,7 +98932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romanosmacaronigrill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romanosmacaronigrill-96af40.jpg" }, { "if": { @@ -98865,7 +98948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romantikrestaurant-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romantikrestaurant-2fabb0.jpg" }, { "if": { @@ -98882,7 +98965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosasthaicafe-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosasthaicafe-9b5453.jpg" }, { "if": { @@ -98898,7 +98981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rossopomodoro-8aae3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rossopomodoro-8aae3d.jpg" }, { "if": { @@ -98914,7 +98997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roundtablepizza-6267fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roundtablepizza-6267fd.jpg" }, { "if": { @@ -98930,7 +99013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rubytuesday-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rubytuesday-2fabb0.jpg" }, { "if": { @@ -98946,7 +99029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ruthschrissteakhouse-f036fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ruthschrissteakhouse-f036fe.jpg" }, { "if": { @@ -98970,7 +99053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saizeriya-10ab86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saizeriya-10ab86.jpg" }, { "if": { @@ -98986,7 +99069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltgrasssteakhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saltgrasssteakhouse-96af40.jpg" }, { "if": { @@ -99003,7 +99086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salvatoresoldfashionedpizzeria-5273d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salvatoresoldfashionedpizzeria-5273d6.jpg" }, { "if": { @@ -99019,7 +99102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santafe-4dd75c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santafe-4dd75c.jpg" }, { "if": { @@ -99036,7 +99119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santalucia-282f19.png" + "then": "https://data.mapcomplete.org/nsi//logos/santalucia-282f19.png" }, { "if": { @@ -99052,7 +99135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sausalitos-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sausalitos-051971.jpg" }, { "if": { @@ -99068,7 +99151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schweinske-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schweinske-051971.jpg" }, { "if": { @@ -99084,7 +99167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scores-e68b16.png" + "then": "https://data.mapcomplete.org/nsi//logos/scores-e68b16.png" }, { "if": { @@ -99100,7 +99183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seasons52-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seasons52-96af40.jpg" }, { "if": { @@ -99116,7 +99199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shakeys-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shakeys-2fabb0.jpg" }, { "if": { @@ -99132,7 +99215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharis-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/sharis-96af40.png" }, { "if": { @@ -99148,7 +99231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoneys-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoneys-96af40.png" }, { "if": { @@ -99164,7 +99247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoryu-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoryu-9b5453.jpg" }, { "if": { @@ -99180,7 +99263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/signorizza-47e37e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/signorizza-47e37e.jpg" }, { "if": { @@ -99196,7 +99279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simplyasia-69fbf5.png" + "then": "https://data.mapcomplete.org/nsi//logos/simplyasia-69fbf5.png" }, { "if": { @@ -99213,7 +99296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sizzlepie-effa94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sizzlepie-effa94.jpg" }, { "if": { @@ -99229,7 +99312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sizzler-96c99b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sizzler-96c99b.jpg" }, { "if": { @@ -99246,7 +99329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skylinechili-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skylinechili-96af40.jpg" }, { "if": { @@ -99262,7 +99345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smittys-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smittys-e68b16.jpg" }, { "if": { @@ -99278,7 +99361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smokeybones-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smokeybones-96af40.jpg" }, { "if": { @@ -99295,24 +99378,24 @@ } ] }, - "then": "./assets/data/nsi/logos/snappytomatopizza-5e4871.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snappytomatopizza-5e4871.jpg" }, { "if": { "and": [ "amenity=restaurant", "cuisine=breakfast", - "official_name=Snooze, an A.M. Eatery", { "or": [ "brand=Snooze", "brand:wikidata=Q111304345", - "name=Snooze" + "name=Snooze", + "official_name=Snooze, an A.M. Eatery" ] } ] }, - "then": "./assets/data/nsi/logos/snooze-62450c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snooze-62450c.jpg" }, { "if": { @@ -99328,7 +99411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solaria-25c4a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/solaria-25c4a5.jpg" }, { "if": { @@ -99344,7 +99427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonnysbbq-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonnysbbq-96af40.jpg" }, { "if": { @@ -99360,7 +99443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sphinx-07fabc.png" + "then": "https://data.mapcomplete.org/nsi//logos/sphinx-07fabc.png" }, { "if": { @@ -99376,7 +99459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spudbar-3c82e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/spudbar-3c82e9.png" }, { "if": { @@ -99392,7 +99475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spur-efd5c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spur-efd5c1.jpg" }, { "if": { @@ -99408,7 +99491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stpierressushi-8ced4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stpierressushi-8ced4c.jpg" }, { "if": { @@ -99424,7 +99507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sthubert-e68b16.png" + "then": "https://data.mapcomplete.org/nsi//logos/sthubert-e68b16.png" }, { "if": { @@ -99440,7 +99523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stlouisbarandgrill-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stlouisbarandgrill-e68b16.jpg" }, { "if": { @@ -99456,7 +99539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stoneyriver-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stoneyriver-96af40.jpg" }, { "if": { @@ -99472,7 +99555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/streetburger-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/streetburger-9b5453.jpg" }, { "if": { @@ -99488,7 +99571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/streetpizza-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/streetpizza-9b5453.jpg" }, { "if": { @@ -99504,7 +99587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunsetgrill-85c92c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sunsetgrill-85c92c.png" }, { "if": { @@ -99520,7 +99603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiexpress-4023ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiexpress-4023ac.jpg" }, { "if": { @@ -99536,7 +99619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiking-8a5996.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiking-8a5996.jpg" }, { "if": { @@ -99552,7 +99635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiroll-f5830e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiroll-f5830e.jpg" }, { "if": { @@ -99568,7 +99651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushisushi-3c82e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/sushisushi-3c82e9.png" }, { "if": { @@ -99584,7 +99667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiyama-45c141.png" + "then": "https://data.mapcomplete.org/nsi//logos/sushiyama-45c141.png" }, { "if": { @@ -99600,7 +99683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisschalet-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisschalet-e68b16.jpg" }, { "if": { @@ -99615,7 +99698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tabletable-9b5453.png" + "then": "https://data.mapcomplete.org/nsi//logos/tabletable-9b5453.png" }, { "if": { @@ -99631,7 +99714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacombi-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacombi-96af40.jpg" }, { "if": { @@ -99647,7 +99730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taquierialoscomales-86098b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taquierialoscomales-86098b.jpg" }, { "if": { @@ -99663,7 +99746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taro-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taro-e997f8.jpg" }, { "if": { @@ -99685,7 +99768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tashirpizza-86098b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tashirpizza-86098b.jpg" }, { "if": { @@ -99701,7 +99784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tedsmontanagrill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tedsmontanagrill-96af40.jpg" }, { "if": { @@ -99717,7 +99800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasroadhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasroadhouse-96af40.jpg" }, { "if": { @@ -99733,7 +99816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tgifridays-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tgifridays-2fabb0.jpg" }, { "if": { @@ -99750,7 +99833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebreakfastclub-37e076.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebreakfastclub-37e076.jpg" }, { "if": { @@ -99767,7 +99850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecheesecakefactory-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecheesecakefactory-96af40.jpg" }, { "if": { @@ -99783,7 +99866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thechoppedleaf-85c92c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thechoppedleaf-85c92c.jpg" }, { "if": { @@ -99799,7 +99882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecounter-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecounter-96af40.jpg" }, { "if": { @@ -99815,7 +99898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegreatgreekmediterraneangrill-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegreatgreekmediterraneangrill-96af40.jpg" }, { "if": { @@ -99831,7 +99914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegroovetrain-3c82e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegroovetrain-3c82e9.jpg" }, { "if": { @@ -99847,7 +99930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehussargrill-69fbf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehussargrill-69fbf5.jpg" }, { "if": { @@ -99863,7 +99946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theivy-bd06d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/theivy-bd06d9.png" }, { "if": { @@ -99879,7 +99962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thekeg-85c92c.png" + "then": "https://data.mapcomplete.org/nsi//logos/thekeg-85c92c.png" }, { "if": { @@ -99896,7 +99979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/themeltingpot-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/themeltingpot-96af40.jpg" }, { "if": { @@ -99912,7 +99995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theoldspaghettifactory-e21bab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theoldspaghettifactory-e21bab.jpg" }, { "if": { @@ -99928,7 +100011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theoriginalpancakehouse-832bb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theoriginalpancakehouse-832bb4.jpg" }, { "if": { @@ -99944,7 +100027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/therealgreek-37e076.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/therealgreek-37e076.jpg" }, { "if": { @@ -99960,7 +100043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theworks-f8643e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theworks-f8643e.jpg" }, { "if": { @@ -99976,7 +100059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tijuanaflats-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tijuanaflats-96af40.jpg" }, { "if": { @@ -99992,7 +100075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tinseltown-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tinseltown-9b5453.jpg" }, { "if": { @@ -100008,7 +100091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toks-f5830e.png" + "then": "https://data.mapcomplete.org/nsi//logos/toks-f5830e.png" }, { "if": { @@ -100025,7 +100108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tonkotsu-37e076.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tonkotsu-37e076.jpg" }, { "if": { @@ -100041,7 +100124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tonyromas-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tonyromas-2fabb0.jpg" }, { "if": { @@ -100057,7 +100140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topperspizza-aa0521.png" + "then": "https://data.mapcomplete.org/nsi//logos/topperspizza-aa0521.png" }, { "if": { @@ -100073,7 +100156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truefoodkitchen-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truefoodkitchen-96af40.jpg" }, { "if": { @@ -100089,7 +100172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truffleburger-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truffleburger-e997f8.jpg" }, { "if": { @@ -100105,7 +100188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turtlebay-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turtlebay-9b5453.jpg" }, { "if": { @@ -100121,7 +100204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/twinpeaks-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/twinpeaks-96af40.jpg" }, { "if": { @@ -100137,7 +100220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/udon-5e8163.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/udon-5e8163.jpg" }, { "if": { @@ -100154,7 +100237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unopizzeriaandgrill-76ab79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unopizzeriaandgrill-76ab79.jpg" }, { "if": { @@ -100170,7 +100253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valentinos-77ac66.png" + "then": "https://data.mapcomplete.org/nsi//logos/valentinos-77ac66.png" }, { "if": { @@ -100186,7 +100269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vapiano-2fabb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vapiano-2fabb0.jpg" }, { "if": { @@ -100202,7 +100285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villageinn-96af40.png" + "then": "https://data.mapcomplete.org/nsi//logos/villageinn-96af40.png" }, { "if": { @@ -100218,7 +100301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vips-acf031.png" + "then": "https://data.mapcomplete.org/nsi//logos/vips-acf031.png" }, { "if": { @@ -100234,7 +100317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vips-f5830e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vips-f5830e.jpg" }, { "if": { @@ -100251,7 +100334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wafflehouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wafflehouse-96af40.jpg" }, { "if": { @@ -100267,7 +100350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wagamama-2fabb0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wagamama-2fabb0.svg" }, { "if": { @@ -100283,7 +100366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wahlburgers-730025.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wahlburgers-730025.jpg" }, { "if": { @@ -100299,7 +100382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernsizzlin-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westernsizzlin-96af40.jpg" }, { "if": { @@ -100315,7 +100398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whitespot-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whitespot-e68b16.jpg" }, { "if": { @@ -100331,7 +100414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wildwing-e68b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wildwing-e68b16.jpg" }, { "if": { @@ -100347,7 +100430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wildwood-9b5453.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wildwood-9b5453.jpg" }, { "if": { @@ -100363,7 +100446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilmawunder-051971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilmawunder-051971.jpg" }, { "if": { @@ -100380,7 +100463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yardhouse-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yardhouse-96af40.jpg" }, { "if": { @@ -100396,7 +100479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yosushi-9b5453.png" + "then": "https://data.mapcomplete.org/nsi//logos/yosushi-9b5453.png" }, { "if": { @@ -100416,7 +100499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yunshangricenoodle-85c92c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yunshangricenoodle-85c92c.jpg" }, { "if": { @@ -100432,7 +100515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zialucia-e997f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zialucia-e997f8.jpg" }, { "if": { @@ -100448,7 +100531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zippys-96af40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zippys-96af40.jpg" }, { "if": { @@ -100464,7 +100547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zizzi-bd06d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/zizzi-bd06d9.png" }, { "if": { @@ -100484,7 +100567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d1906a-f6a2df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d1906a-f6a2df.jpg" }, { "if": { @@ -100502,7 +100585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/planetsushi-642268.png" + "then": "https://data.mapcomplete.org/nsi//logos/planetsushi-642268.png" }, { "if": { @@ -100520,7 +100603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanuki-dd767d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tanuki-dd767d.jpg" }, { "if": { @@ -100539,7 +100622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokyocity-642268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokyocity-642268.jpg" }, { "if": { @@ -100555,7 +100638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afb5a1-642268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/afb5a1-642268.jpg" }, { "if": { @@ -100575,7 +100658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgersaloon-b691b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgersaloon-b691b2.jpg" }, { "if": { @@ -100595,7 +100678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vips-5f8110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vips-5f8110.jpg" }, { "if": { @@ -100615,7 +100698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chimcking-5f8110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chimcking-5f8110.jpg" }, { "if": { @@ -100635,7 +100718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pelicanachicken-5f8110.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pelicanachicken-5f8110.jpg" }, { "if": { @@ -100655,7 +100738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asakuma-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asakuma-36ca8e.jpg" }, { "if": { @@ -100675,7 +100758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikinaristeak-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikinaristeak-36ca8e.jpg" }, { "if": { @@ -100695,7 +100778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capricciosa-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capricciosa-36ca8e.jpg" }, { "if": { @@ -100715,7 +100798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karayama-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karayama-36ca8e.jpg" }, { "if": { @@ -100735,7 +100818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kurumayaramen-36ca8e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kurumayaramen-36ca8e.svg" }, { "if": { @@ -100755,7 +100838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saizeriya-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saizeriya-36ca8e.jpg" }, { "if": { @@ -100775,7 +100858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joyfull-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joyfull-36ca8e.jpg" }, { "if": { @@ -100795,7 +100878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonathans-36ca8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/jonathans-36ca8e.png" }, { "if": { @@ -100815,7 +100898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jollypasta-36ca8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/jollypasta-36ca8e.png" }, { "if": { @@ -100835,7 +100918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staminataro-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/staminataro-36ca8e.jpg" }, { "if": { @@ -100855,7 +100938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steakdon-36ca8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/steakdon-36ca8e.png" }, { "if": { @@ -100875,7 +100958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dennys-36ca8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/dennys-36ca8e.png" }, { "if": { @@ -100895,7 +100978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomatoandonion-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomatoandonion-36ca8e.jpg" }, { "if": { @@ -100915,7 +100998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bamiyan-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bamiyan-36ca8e.jpg" }, { "if": { @@ -100935,7 +101018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hanamarudon-36ca8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/hanamarudon-36ca8e.png" }, { "if": { @@ -100955,7 +101038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigboy-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigboy-36ca8e.jpg" }, { "if": { @@ -100975,7 +101058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikkuridonkey-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikkuridonkey-36ca8e.jpg" }, { "if": { @@ -100997,7 +101080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yayoiken-73219d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yayoiken-73219d.jpg" }, { "if": { @@ -101017,7 +101100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramenyamaokaya-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ramenyamaokaya-36ca8e.jpg" }, { "if": { @@ -101037,7 +101120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ringerhut-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ringerhut-36ca8e.jpg" }, { "if": { @@ -101057,7 +101140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalhost-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalhost-36ca8e.jpg" }, { "if": { @@ -101079,7 +101162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ippudo-8a40ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ippudo-8a40ea.jpg" }, { "if": { @@ -101101,7 +101184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ippudo-2b8b0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ippudo-2b8b0b.jpg" }, { "if": { @@ -101126,7 +101209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercuriesfood-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercuriesfood-36ca8e.jpg" }, { "if": { @@ -101154,7 +101237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercuriesfood-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercuriesfood-aafd63.jpg" }, { "if": { @@ -101173,7 +101256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldseight-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldseight-aafd63.jpg" }, { "if": { @@ -101194,7 +101277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sangumaolu-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sangumaolu-aafd63.jpg" }, { "if": { @@ -101214,7 +101297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiexpress-22b83d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiexpress-22b83d.jpg" }, { "if": { @@ -101240,7 +101323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genkisushi-8b6c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genkisushi-8b6c9a.jpg" }, { "if": { @@ -101264,7 +101347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6owldoor-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/6owldoor-aafd63.jpg" }, { "if": { @@ -101286,7 +101369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajisenramen-22b83d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ajisenramen-22b83d.jpg" }, { "if": { @@ -101312,7 +101395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajisenramen-8b6c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ajisenramen-8b6c9a.jpg" }, { "if": { @@ -101332,7 +101415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vips-0a8e9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vips-0a8e9b.jpg" }, { "if": { @@ -101354,7 +101437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washokusato-aafd63.png" + "then": "https://data.mapcomplete.org/nsi//logos/washokusato-aafd63.png" }, { "if": { @@ -101374,7 +101457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yuloong-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yuloong-aafd63.jpg" }, { "if": { @@ -101396,7 +101479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiro-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiro-aafd63.jpg" }, { "if": { @@ -101422,7 +101505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiro-8b6c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiro-8b6c9a.jpg" }, { "if": { @@ -101442,7 +101525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yumean-36ca8e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yumean-36ca8e.svg" }, { "if": { @@ -101462,7 +101545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daproteppanyaki-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daproteppanyaki-aafd63.jpg" }, { "if": { @@ -101484,7 +101567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ootoya-d30421.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ootoya-d30421.jpg" }, { "if": { @@ -101506,7 +101589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osakaohsho-d30421.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osakaohsho-d30421.jpg" }, { "if": { @@ -101526,7 +101609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenkaippin-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tenkaippin-36ca8e.jpg" }, { "if": { @@ -101546,7 +101629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sundongbaobeefsteak-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sundongbaobeefsteak-aafd63.jpg" }, { "if": { @@ -101568,7 +101651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiro-22b83d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiro-22b83d.jpg" }, { "if": { @@ -101588,7 +101671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ponderosasteakhouse-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ponderosasteakhouse-aafd63.jpg" }, { "if": { @@ -101609,7 +101692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnnybro-aafd63.png" + "then": "https://data.mapcomplete.org/nsi//logos/johnnybro-aafd63.png" }, { "if": { @@ -101631,7 +101714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derlife-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derlife-aafd63.jpg" }, { "if": { @@ -101654,7 +101737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzahut-aafd63.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzahut-aafd63.png" }, { "if": { @@ -101678,7 +101761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzahut-edf541.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzahut-edf541.png" }, { "if": { @@ -101698,7 +101781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pizzahut-2b8b0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/pizzahut-2b8b0b.png" }, { "if": { @@ -101718,7 +101801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happylambhotpot-0a8e9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happylambhotpot-0a8e9b.jpg" }, { "if": { @@ -101740,7 +101823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rairaitei-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rairaitei-36ca8e.jpg" }, { "if": { @@ -101760,7 +101843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liangshehanbuyfood-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liangshehanbuyfood-aafd63.jpg" }, { "if": { @@ -101786,7 +101869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalhost-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalhost-aafd63.jpg" }, { "if": { @@ -101808,7 +101891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yonghesoymilk-0a8e9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yonghesoymilk-0a8e9b.jpg" }, { "if": { @@ -101830,7 +101913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yonghesoymilk-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yonghesoymilk-aafd63.jpg" }, { "if": { @@ -101854,7 +101937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haidilaohotpot-2b8b0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haidilaohotpot-2b8b0b.jpg" }, { "if": { @@ -101878,7 +101961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haidilaohotpot-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haidilaohotpot-aafd63.jpg" }, { "if": { @@ -101902,7 +101985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haidilaohotpot-edf541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haidilaohotpot-edf541.jpg" }, { "if": { @@ -101922,7 +102005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yakinikuking-36ca8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/yakinikuking-36ca8e.png" }, { "if": { @@ -101942,7 +102025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yakinikulike-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yakinikulike-36ca8e.jpg" }, { "if": { @@ -101968,7 +102051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yakinikusmile-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yakinikusmile-aafd63.jpg" }, { "if": { @@ -101992,7 +102075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiexpress-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiexpress-aafd63.jpg" }, { "if": { @@ -102012,7 +102095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sushiexpress-8b6c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sushiexpress-8b6c9a.jpg" }, { "if": { @@ -102032,7 +102115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gyukaku-36ca8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/gyukaku-36ca8e.png" }, { "if": { @@ -102054,7 +102137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gyukaku-e68d5b.png" + "then": "https://data.mapcomplete.org/nsi//logos/gyukaku-e68d5b.png" }, { "if": { @@ -102076,7 +102159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gyukaku-8b6c9a.png" + "then": "https://data.mapcomplete.org/nsi//logos/gyukaku-8b6c9a.png" }, { "if": { @@ -102096,7 +102179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/machidashouten-36ca8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/machidashouten-36ca8e.jpg" }, { "if": { @@ -102116,7 +102199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fish180-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fish180-aafd63.jpg" }, { "if": { @@ -102137,7 +102220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meizhoudongpo-0a8e9b.png" + "then": "https://data.mapcomplete.org/nsi//logos/meizhoudongpo-0a8e9b.png" }, { "if": { @@ -102161,7 +102244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tonkatsu-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tonkatsu-aafd63.jpg" }, { "if": { @@ -102185,7 +102268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jhujiansuancaiyu-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jhujiansuancaiyu-aafd63.jpg" }, { "if": { @@ -102205,7 +102288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saizeriya-22b83d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saizeriya-22b83d.jpg" }, { "if": { @@ -102229,7 +102312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saizeriya-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saizeriya-aafd63.jpg" }, { "if": { @@ -102257,7 +102340,27 @@ } ] }, - "then": "./assets/data/nsi/logos/saizeriya-8b6c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saizeriya-8b6c9a.jpg" + }, + { + "if": { + "and": [ + "amenity=restaurant", + "cuisine=jiaozi", + { + "or": [ + "brand=袁记云饺", + "brand:en=Yuanjiyunjiao", + "brand:wikidata=Q123027117", + "brand:zh=袁记云饺", + "name=袁记云饺", + "name:en=Yuanjiyunjiao", + "name:zh=袁记云饺" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/yuanjiyunjiao-0a8e9b.jpg" }, { "if": { @@ -102281,7 +102384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamjaisamgor-8b6c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamjaisamgor-8b6c9a.jpg" }, { "if": { @@ -102304,7 +102407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamjaiyunnanmixian-8b6c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamjaiyunnanmixian-8b6c9a.jpg" }, { "if": { @@ -102324,7 +102427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noblesteak-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noblesteak-aafd63.jpg" }, { "if": { @@ -102348,7 +102451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verythairestaurant-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verythairestaurant-aafd63.jpg" }, { "if": { @@ -102368,7 +102471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gyozanoohsho-36ca8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/gyozanoohsho-36ca8e.png" }, { "if": { @@ -102390,7 +102493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gyozanoohsho-aafd63.png" + "then": "https://data.mapcomplete.org/nsi//logos/gyozanoohsho-aafd63.png" }, { "if": { @@ -102414,7 +102517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eatogether-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eatogether-aafd63.jpg" }, { "if": { @@ -102440,7 +102543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/formosachang-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/formosachang-aafd63.jpg" }, { "if": { @@ -102460,7 +102563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dintaifung-22b83d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dintaifung-22b83d.jpg" }, { "if": { @@ -102487,7 +102590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dintaifung-aafd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dintaifung-aafd63.jpg" }, { "if": { @@ -102511,7 +102614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dintaifung-8b6c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dintaifung-8b6c9a.jpg" }, { "if": { @@ -102527,7 +102630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apecschools-b5c910.png" + "then": "https://data.mapcomplete.org/nsi//logos/apecschools-b5c910.png" }, { "if": { @@ -102541,7 +102644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bahcesehirkoleji-8696da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bahcesehirkoleji-8696da.jpg" }, { "if": { @@ -102555,22 +102658,22 @@ } ] }, - "then": "./assets/data/nsi/logos/bilfenokullari-8696da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bilfenokullari-8696da.jpg" }, { "if": { "and": [ "amenity=school", - "official_name=İTÜ ETA Vakfı Doğa Koleji", { "or": [ "brand=Doğa Koleji", - "brand:wikidata=Q5303858" + "brand:wikidata=Q5303858", + "official_name=İTÜ ETA Vakfı Doğa Koleji" ] } ] }, - "then": "./assets/data/nsi/logos/dogakoleji-8696da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dogakoleji-8696da.jpg" }, { "if": { @@ -102585,7 +102688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imagineschools-f520e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imagineschools-f520e3.jpg" }, { "if": { @@ -102600,23 +102703,23 @@ } ] }, - "then": "./assets/data/nsi/logos/kendriyavidyalaya-198395.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kendriyavidyalaya-198395.jpg" }, { "if": { "and": [ "amenity=school", - "official_name=Knowledge Is Power Program", { "or": [ "brand=KIPP", "brand:wikidata=Q6423304", - "name=KIPP" + "name=KIPP", + "official_name=Knowledge Is Power Program" ] } ] }, - "then": "./assets/data/nsi/logos/kipp-f520e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kipp-f520e3.jpg" }, { "if": { @@ -102631,7 +102734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maplebear-101006.png" + "then": "https://data.mapcomplete.org/nsi//logos/maplebear-101006.png" }, { "if": { @@ -102646,7 +102749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merryhillschool-f520e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/merryhillschool-f520e3.jpg" }, { "if": { @@ -102660,7 +102763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okyanuskoleji-8696da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okyanuskoleji-8696da.jpg" }, { "if": { @@ -102675,7 +102778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/successacademy-f520e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/successacademy-f520e3.png" }, { "if": { @@ -102694,7 +102797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beaconcollege-7e66f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beaconcollege-7e66f3.jpg" }, { "if": { @@ -102709,7 +102812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ahepahall-30ca27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ahepahall-30ca27.jpg" }, { "if": { @@ -102725,7 +102828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanlegionhall-7c1650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americanlegionhall-7c1650.jpg" }, { "if": { @@ -102741,42 +102844,42 @@ } ] }, - "then": "./assets/data/nsi/logos/amvetspost-7c1650.png" + "then": "https://data.mapcomplete.org/nsi//logos/amvetspost-7c1650.png" }, { "if": { "and": [ "amenity=social_centre", - "official_name=Fraternal Order of Eagles", "short_name=FOE", { "or": [ "alt_name=Aeries Lodge", "brand=Fraternal Order of Eagles", "brand:wikidata=Q5493810", - "name=Eagles Lodge" + "name=Eagles Lodge", + "official_name=Fraternal Order of Eagles" ] } ] }, - "then": "./assets/data/nsi/logos/eagleslodge-7c1650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eagleslodge-7c1650.jpg" }, { "if": { "and": [ "amenity=social_centre", - "official_name=Benevolent and Protective Order of Elks", "short_name=BPOE", { "or": [ "brand=Benevolent and Protective Order of Elks", "brand:wikidata=Q2895789", - "name=Elks Lodge" + "name=Elks Lodge", + "official_name=Benevolent and Protective Order of Elks" ] } ] }, - "then": "./assets/data/nsi/logos/elkslodge-7c1650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elkslodge-7c1650.jpg" }, { "if": { @@ -102792,7 +102895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knightsofcolumbuscouncil-7c1650.png" + "then": "https://data.mapcomplete.org/nsi//logos/knightsofcolumbuscouncil-7c1650.png" }, { "if": { @@ -102807,57 +102910,57 @@ } ] }, - "then": "./assets/data/nsi/logos/lionsclubsinternational-8e336b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lionsclubsinternational-8e336b.jpg" }, { "if": { "and": [ "amenity=social_centre", - "official_name=Loyal Order of Moose", { "or": [ "brand=Loyal Order of Moose", "brand:wikidata=Q6908585", - "name=Moose Lodge" + "name=Moose Lodge", + "official_name=Loyal Order of Moose" ] } ] }, - "then": "./assets/data/nsi/logos/mooselodge-148cd3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mooselodge-148cd3.jpg" }, { "if": { "and": [ "amenity=social_centre", - "official_name=Independent Order of Odd Fellows", "short_name=IOOF", { "or": [ "brand=Independent Order of Odd Fellows", "brand:wikidata=Q1425508", - "name=Odd Fellows Hall" + "name=Odd Fellows Hall", + "official_name=Independent Order of Odd Fellows" ] } ] }, - "then": "./assets/data/nsi/logos/oddfellowshall-8e336b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oddfellowshall-8e336b.jpg" }, { "if": { "and": [ "amenity=social_centre", - "official_name=Fraternal Order Orioles", "short_name=FOO", { "or": [ "brand=Fraternal Order Orioles", "brand:wikidata=Q5493805", - "name=Orioles Nest" + "name=Orioles Nest", + "official_name=Fraternal Order Orioles" ] } ] }, - "then": "./assets/data/nsi/logos/oriolesnest-7c1650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oriolesnest-7c1650.jpg" }, { "if": { @@ -102874,7 +102977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalcanadianlegionhall-c03cd4.png" + "then": "https://data.mapcomplete.org/nsi//logos/royalcanadianlegionhall-c03cd4.png" }, { "if": { @@ -102888,13 +102991,12 @@ } ] }, - "then": "./assets/data/nsi/logos/thenationalgrangeoftheorderofpatronsofhusbandry-7c1650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thenationalgrangeoftheorderofpatronsofhusbandry-7c1650.jpg" }, { "if": { "and": [ "amenity=social_centre", - "official_name=Veterans of Foreign Wars of the United States", "short_name=VFW", "social_centre:for=veteran", { @@ -102902,12 +103004,13 @@ "brand=Veterans of Foreign Wars of the United States", "brand:wikidata=Q3556413", "name=VFW Post", - "name:en=VFW Post" + "name:en=VFW Post", + "official_name=Veterans of Foreign Wars of the United States" ] } ] }, - "then": "./assets/data/nsi/logos/vfwpost-8be9ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vfwpost-8be9ec.jpg" }, { "if": { @@ -102922,7 +103025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeitersamariterbund-da0ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-da0ff2.jpg" }, { "if": { @@ -102937,7 +103040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeiterwohlfahrt-da0ff2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-da0ff2.svg" }, { "if": { @@ -102952,7 +103055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayerischesroteskreuz-718a33.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-718a33.jpg" }, { "if": { @@ -102967,7 +103070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bethel-da0ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bethel-da0ff2.jpg" }, { "if": { @@ -102982,7 +103085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigbrothersbigsisterslonestar-233ba4.png" + "then": "https://data.mapcomplete.org/nsi//logos/bigbrothersbigsisterslonestar-233ba4.png" }, { "if": { @@ -102999,7 +103102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boysandgirlsclub-233ba4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boysandgirlsclub-233ba4.jpg" }, { "if": { @@ -103022,7 +103125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadianredcross-cf1346.png" + "then": "https://data.mapcomplete.org/nsi//logos/canadianredcross-cf1346.png" }, { "if": { @@ -103037,7 +103140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-c8e87f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-c8e87f.jpg" }, { "if": { @@ -103051,7 +103154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-da0ff2.png" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-da0ff2.png" }, { "if": { @@ -103065,7 +103168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-257965.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-257965.jpg" }, { "if": { @@ -103079,7 +103182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-7e98f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-7e98f6.png" }, { "if": { @@ -103093,7 +103196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-07e566.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-07e566.jpg" }, { "if": { @@ -103108,7 +103211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citizensadvice-71aff3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citizensadvice-71aff3.jpg" }, { "if": { @@ -103126,7 +103229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/croixrougedebelgique-8298e5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/croixrougedebelgique-8298e5.svg" }, { "if": { @@ -103144,7 +103247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/croixrougefrancaise-8d024d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/croixrougefrancaise-8d024d.jpg" }, { "if": { @@ -103167,7 +103270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/croixrougeluxembourgeoise-090a38.png" + "then": "https://data.mapcomplete.org/nsi//logos/croixrougeluxembourgeoise-090a38.png" }, { "if": { @@ -103182,7 +103285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesroteskreuz-da0ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-da0ff2.jpg" }, { "if": { @@ -103196,7 +103299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diakonie-da0ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diakonie-da0ff2.jpg" }, { "if": { @@ -103210,7 +103313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johanniter-da0ff2.png" + "then": "https://data.mapcomplete.org/nsi//logos/johanniter-da0ff2.png" }, { "if": { @@ -103224,7 +103327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johanniterunfallhilfe-da0ff2.png" + "then": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfe-da0ff2.png" }, { "if": { @@ -103238,7 +103341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lebenshilfe-da0ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lebenshilfe-da0ff2.jpg" }, { "if": { @@ -103258,7 +103361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lespetitescantines-f6f802.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lespetitescantines-f6f802.jpg" }, { "if": { @@ -103273,7 +103376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifecarecentersofamerica-233ba4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifecarecentersofamerica-233ba4.jpg" }, { "if": { @@ -103287,25 +103390,25 @@ } ] }, - "then": "./assets/data/nsi/logos/malteserhilfsdienst-da0ff2.png" + "then": "https://data.mapcomplete.org/nsi//logos/malteserhilfsdienst-da0ff2.png" }, { "if": { "and": [ "amenity=social_facility", - "official_name=Organización Nacional de Ciegos Españoles", "social_facility=outreach", "social_facility:for=blind", { "or": [ "brand=ONCE", "brand:wikidata=Q1750397", - "name=ONCE" + "name=ONCE", + "official_name=Organización Nacional de Ciegos Españoles" ] } ] }, - "then": "./assets/data/nsi/logos/once-bb7a05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/once-bb7a05.jpg" }, { "if": { @@ -103326,7 +103429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sompocare-58dbc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sompocare-58dbc8.jpg" }, { "if": { @@ -103342,7 +103445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tafel-da0ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tafel-da0ff2.jpg" }, { "if": { @@ -103362,7 +103465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vetcenter-233ba4.png" + "then": "https://data.mapcomplete.org/nsi//logos/vetcenter-233ba4.png" }, { "if": { @@ -103377,7 +103480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkssolidaritat-da0ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volkssolidaritat-da0ff2.jpg" }, { "if": { @@ -103392,7 +103495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weisserring-da0ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weisserring-da0ff2.jpg" }, { "if": { @@ -103409,7 +103512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-0fc399.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-0fc399.jpg" }, { "if": { @@ -103426,7 +103529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritasspes-0fc399.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritasspes-0fc399.jpg" }, { "if": { @@ -103446,7 +103549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrainianredcrosssociety-0fc399.png" + "then": "https://data.mapcomplete.org/nsi//logos/ukrainianredcrosssociety-0fc399.png" }, { "if": { @@ -103467,7 +103570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsukui-58dbc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsukui-58dbc8.jpg" }, { "if": { @@ -103488,7 +103591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rehapride-58dbc8.png" + "then": "https://data.mapcomplete.org/nsi//logos/rehapride-58dbc8.png" }, { "if": { @@ -103509,7 +103612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/recordbook-58dbc8.png" + "then": "https://data.mapcomplete.org/nsi//logos/recordbook-58dbc8.png" }, { "if": { @@ -103528,7 +103631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-c6051e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-c6051e.jpg" }, { "if": { @@ -103546,7 +103649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntt-cd9a04.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ntt-cd9a04.jpg" }, { "if": { @@ -103562,7 +103665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avedainstitute-0baf38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avedainstitute-0baf38.jpg" }, { "if": { @@ -103578,7 +103681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codeninjas-406d99.png" + "then": "https://data.mapcomplete.org/nsi//logos/codeninjas-406d99.png" }, { "if": { @@ -103594,7 +103697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colormemine-93dfd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colormemine-93dfd1.jpg" }, { "if": { @@ -103610,7 +103713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/golftec-804fd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/golftec-804fd8.jpg" }, { "if": { @@ -103626,7 +103729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlekitchenacademy-0baf38.png" + "then": "https://data.mapcomplete.org/nsi//logos/littlekitchenacademy-0baf38.png" }, { "if": { @@ -103642,7 +103745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madscience-0435a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madscience-0435a3.jpg" }, { "if": { @@ -103658,7 +103761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paulmitchelltheschool-93dfd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paulmitchelltheschool-93dfd1.jpg" }, { "if": { @@ -103674,7 +103777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartecarte-0866fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/smartecarte-0866fc.png" }, { "if": { @@ -103690,7 +103793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americannationaluniversity-d62529.svg" + "then": "https://data.mapcomplete.org/nsi//logos/americannationaluniversity-d62529.svg" }, { "if": { @@ -103706,7 +103809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devryuniversity-d62529.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devryuniversity-d62529.jpg" }, { "if": { @@ -103721,7 +103824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecpiuniversity-d62529.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecpiuniversity-d62529.jpg" }, { "if": { @@ -103736,7 +103839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rasmussenuniversity-d62529.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rasmussenuniversity-d62529.jpg" }, { "if": { @@ -103752,7 +103855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/strayeruniversity-d62529.png" + "then": "https://data.mapcomplete.org/nsi//logos/strayeruniversity-d62529.png" }, { "if": { @@ -103768,7 +103871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofphoenix-d62529.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofphoenix-d62529.png" }, { "if": { @@ -103783,7 +103886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applusbilsyn-d8b9f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/applusbilsyn-d8b9f3.png" }, { "if": { @@ -103798,7 +103901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autosur-53baa7.png" + "then": "https://data.mapcomplete.org/nsi//logos/autosur-53baa7.png" }, { "if": { @@ -103813,7 +103916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autovision-53baa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autovision-53baa7.jpg" }, { "if": { @@ -103828,7 +103931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/besiktabilprovning-ca3d1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/besiktabilprovning-ca3d1c.jpg" }, { "if": { @@ -103843,7 +103946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dekra-5e3362.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dekra-5e3362.jpg" }, { "if": { @@ -103858,7 +103961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fdmbilsyn-d8b9f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fdmbilsyn-d8b9f3.jpg" }, { "if": { @@ -103873,7 +103976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gtu-da4a1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gtu-da4a1b.jpg" }, { "if": { @@ -103888,7 +103991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puspakom-0c47dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puspakom-0c47dd.jpg" }, { "if": { @@ -103903,7 +104006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/securitest-53baa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/securitest-53baa7.jpg" }, { "if": { @@ -103918,7 +104021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuvhanse-da4a1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuvhanse-da4a1b.jpg" }, { "if": { @@ -103933,7 +104036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuvhessen-da4a1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuvhessen-da4a1b.jpg" }, { "if": { @@ -103948,7 +104051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuvnord-da4a1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuvnord-da4a1b.jpg" }, { "if": { @@ -103963,7 +104066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuvrheinland-da4a1b.png" + "then": "https://data.mapcomplete.org/nsi//logos/tuvrheinland-da4a1b.png" }, { "if": { @@ -103978,7 +104081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuvsaarland-da4a1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuvsaarland-da4a1b.jpg" }, { "if": { @@ -103993,7 +104096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuvsud-da4a1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuvsud-da4a1b.jpg" }, { "if": { @@ -104008,7 +104111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuvthuringen-da4a1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuvthuringen-da4a1b.jpg" }, { "if": { @@ -104023,7 +104126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuvturk-9c5bc9.png" + "then": "https://data.mapcomplete.org/nsi//logos/tuvturk-9c5bc9.png" }, { "if": { @@ -104038,7 +104141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vtnz-31002f.png" + "then": "https://data.mapcomplete.org/nsi//logos/vtnz-31002f.png" }, { "if": { @@ -104057,7 +104160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holiday-f4e150.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holiday-f4e150.jpg" }, { "if": { @@ -104074,7 +104177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7up-ff8484.svg" + "then": "https://data.mapcomplete.org/nsi//logos/7up-ff8484.svg" }, { "if": { @@ -104091,7 +104194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7up-54a292.svg" + "then": "https://data.mapcomplete.org/nsi//logos/7up-54a292.svg" }, { "if": { @@ -104106,7 +104209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abendzeitung-a242c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abendzeitung-a242c5.jpg" }, { "if": { @@ -104123,7 +104226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amerigas-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amerigas-7e3927.jpg" }, { "if": { @@ -104138,7 +104241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aqvagold-13a866.png" + "then": "https://data.mapcomplete.org/nsi//logos/aqvagold-13a866.png" }, { "if": { @@ -104154,7 +104257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestbuyexpress-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bestbuyexpress-7e3927.jpg" }, { "if": { @@ -104169,7 +104272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bild-a242c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bild-a242c5.png" }, { "if": { @@ -104184,7 +104287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biobag-ff8484.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biobag-ff8484.jpg" }, { "if": { @@ -104201,7 +104304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluerhino-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluerhino-7e3927.jpg" }, { "if": { @@ -104221,7 +104324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bottledrop-54b61f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bottledrop-54b61f.png" }, { "if": { @@ -104237,7 +104340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breakandwash-bd9635.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/breakandwash-bd9635.jpg" }, { "if": { @@ -104252,7 +104355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bwegt-a242c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bwegt-a242c5.jpg" }, { "if": { @@ -104268,7 +104371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bwtaqua-9e3915.png" + "then": "https://data.mapcomplete.org/nsi//logos/bwtaqua-9e3915.png" }, { "if": { @@ -104283,7 +104386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chaqwa-a242c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chaqwa-a242c5.jpg" }, { "if": { @@ -104300,7 +104403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocacola-0a7392.png" + "then": "https://data.mapcomplete.org/nsi//logos/cocacola-0a7392.png" }, { "if": { @@ -104315,7 +104418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/continental-123edb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/continental-123edb.jpg" }, { "if": { @@ -104331,7 +104434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costaexpress-37500c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/costaexpress-37500c.jpg" }, { "if": { @@ -104348,7 +104451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cvspharmacy-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cvspharmacy-7e3927.jpg" }, { "if": { @@ -104364,7 +104467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decathlonradtourretter-a242c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/decathlonradtourretter-a242c5.jpg" }, { "if": { @@ -104383,7 +104486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/depozitapunkts-cc4c61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/depozitapunkts-cc4c61.jpg" }, { "if": { @@ -104400,7 +104503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebahn-a242c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebahn-a242c5.png" }, { "if": { @@ -104417,7 +104520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschepost-a242c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschepost-a242c5.png" }, { "if": { @@ -104432,7 +104535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doggiewalkbags-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doggiewalkbags-7e3927.jpg" }, { "if": { @@ -104447,7 +104550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dogipot-ff8484.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dogipot-ff8484.jpg" }, { "if": { @@ -104462,7 +104565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durex-ceeccb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/durex-ceeccb.svg" }, { "if": { @@ -104478,7 +104581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastkey-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastkey-7e3927.jpg" }, { "if": { @@ -104494,7 +104597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fuelrod-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fuelrod-7e3927.jpg" }, { "if": { @@ -104510,7 +104613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glacierwater-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glacierwater-7e3927.jpg" }, { "if": { @@ -104526,26 +104629,26 @@ } ] }, - "then": "./assets/data/nsi/logos/homecityice-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homecityice-7e3927.jpg" }, { "if": { "and": [ "amenity=vending_machine", - "official_name=日本たばこ産業", - "official_name:en=Japan Tobacco", - "official_name:ja=日本たばこ産業", "vending=cigarettes", { "or": [ "brand=JT", "brand:wikidata=Q898568", - "name=JT" + "name=JT", + "official_name=日本たばこ産業", + "official_name:en=Japan Tobacco", + "official_name:ja=日本たばこ産業" ] } ] }, - "then": "./assets/data/nsi/logos/jt-bf11a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/jt-bf11a2.png" }, { "if": { @@ -104564,7 +104667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlsruherverkehrsverbund-a242c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karlsruherverkehrsverbund-a242c5.jpg" }, { "if": { @@ -104580,7 +104683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keyme-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keyme-7e3927.jpg" }, { "if": { @@ -104596,7 +104699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lavazza-ceeccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/lavazza-ceeccb.png" }, { "if": { @@ -104612,7 +104715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lego-ceeccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lego-ceeccb.jpg" }, { "if": { @@ -104628,7 +104731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leon-a7479d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leon-a7479d.jpg" }, { "if": { @@ -104643,7 +104746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mika-a242c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mika-a242c5.jpg" }, { "if": { @@ -104659,7 +104762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minimelts-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minimelts-7e3927.jpg" }, { "if": { @@ -104675,7 +104778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minutekey-ff8484.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minutekey-ff8484.jpg" }, { "if": { @@ -104690,7 +104793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/munchnermerkur-a242c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/munchnermerkur-a242c5.jpg" }, { "if": { @@ -104706,7 +104809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mykeymachine-a7479d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mykeymachine-a7479d.jpg" }, { "if": { @@ -104721,7 +104824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkeon-ceeccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkeon-ceeccb.jpg" }, { "if": { @@ -104737,7 +104840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkplus-b46c08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkplus-b46c08.jpg" }, { "if": { @@ -104754,7 +104857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepsi-ceeccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pepsi-ceeccb.jpg" }, { "if": { @@ -104770,7 +104873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmabox-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pharmabox-7e3927.jpg" }, { "if": { @@ -104786,7 +104889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primowater-7e3927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primowater-7e3927.jpg" }, { "if": { @@ -104802,7 +104905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proactiv-7e3927.png" + "then": "https://data.mapcomplete.org/nsi//logos/proactiv-7e3927.png" }, { "if": { @@ -104818,7 +104921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quicktag-7e3927.png" + "then": "https://data.mapcomplete.org/nsi//logos/quicktag-7e3927.png" }, { "if": { @@ -104834,7 +104937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redbox-7e3927.png" + "then": "https://data.mapcomplete.org/nsi//logos/redbox-7e3927.png" }, { "if": { @@ -104850,7 +104953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reddyice-7e3927.png" + "then": "https://data.mapcomplete.org/nsi//logos/reddyice-7e3927.png" }, { "if": { @@ -104866,7 +104969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robidog-742585.svg" + "then": "https://data.mapcomplete.org/nsi//logos/robidog-742585.svg" }, { "if": { @@ -104881,7 +104984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schwalbe-123edb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schwalbe-123edb.jpg" }, { "if": { @@ -104896,7 +104999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selecta-ed4d31.svg" + "then": "https://data.mapcomplete.org/nsi//logos/selecta-ed4d31.svg" }, { "if": { @@ -104912,7 +105015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sephora-ceeccb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sephora-ceeccb.svg" }, { "if": { @@ -104927,7 +105030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suddeutschezeitung-a242c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/suddeutschezeitung-a242c5.png" }, { "if": { @@ -104942,7 +105045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teika-9a306d.png" + "then": "https://data.mapcomplete.org/nsi//logos/teika-9a306d.png" }, { "if": { @@ -104958,7 +105061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timpson-37500c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/timpson-37500c.jpg" }, { "if": { @@ -104973,26 +105076,26 @@ } ] }, - "then": "./assets/data/nsi/logos/tz-a242c5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tz-a242c5.svg" }, { "if": { "and": [ "amenity=vending_machine", - "official_name=上島珈琲", - "official_name:en=Ueshima Coffee", - "official_name:ja=上島珈琲", "vending=coffee", { "or": [ "brand=UCC", "brand:wikidata=Q1185060", - "name=UCC" + "name=UCC", + "official_name=上島珈琲", + "official_name:en=Ueshima Coffee", + "official_name:ja=上島珈琲" ] } ] }, - "then": "./assets/data/nsi/logos/ucc-bf11a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucc-bf11a2.jpg" }, { "if": { @@ -105008,7 +105111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zernova-9e3915.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zernova-9e3915.jpg" }, { "if": { @@ -105031,7 +105134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asahibreweries-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/asahibreweries-bf11a2.svg" }, { "if": { @@ -105052,7 +105155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asahisoftdrinks-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/asahisoftdrinks-bf11a2.svg" }, { "if": { @@ -105072,7 +105175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apex-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/apex-bf11a2.svg" }, { "if": { @@ -105092,7 +105195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cupnoodle-bf11a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cupnoodle-bf11a2.jpg" }, { "if": { @@ -105113,14 +105216,13 @@ } ] }, - "then": "./assets/data/nsi/logos/calpis-bf11a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/calpis-bf11a2.png" }, { "if": { "and": [ "amenity=vending_machine", "drink:brewery=yes", - "official_name=麒麟麦酒", "vending=drinks", { "or": [ @@ -105131,12 +105233,13 @@ "brand:wikidata=Q13403399", "name=キリンビール", "name:en=Kirin Brewery", - "name:ja=キリンビール" + "name:ja=キリンビール", + "official_name=麒麟麦酒" ] } ] }, - "then": "./assets/data/nsi/logos/kirinbrewery-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kirinbrewery-bf11a2.svg" }, { "if": { @@ -105158,7 +105261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kirinbeverage-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kirinbeverage-bf11a2.svg" }, { "if": { @@ -105179,7 +105282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocacola-bf11a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/cocacola-bf11a2.png" }, { "if": { @@ -105199,7 +105302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suntory-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/suntory-bf11a2.svg" }, { "if": { @@ -105220,7 +105323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dydodrinco-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dydodrinco-bf11a2.svg" }, { "if": { @@ -105240,7 +105343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dole-bf11a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dole-bf11a2.jpg" }, { "if": { @@ -105261,7 +105364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nichireifoods-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nichireifoods-bf11a2.svg" }, { "if": { @@ -105281,7 +105384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pokkasapporo-bf11a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pokkasapporo-bf11a2.jpg" }, { "if": { @@ -105302,7 +105405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yakult-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yakult-bf11a2.svg" }, { "if": { @@ -105322,7 +105425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotteicecream-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lotteicecream-bf11a2.svg" }, { "if": { @@ -105344,7 +105447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itoen-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itoen-bf11a2.svg" }, { "if": { @@ -105365,7 +105468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocacola-c02c6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/cocacola-c02c6e.png" }, { "if": { @@ -105385,7 +105488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otsukafoods-bf11a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/otsukafoods-bf11a2.svg" }, { "if": { @@ -105405,7 +105508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meiji-bf11a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/meiji-bf11a2.png" }, { "if": { @@ -105429,7 +105532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vita-c02c6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/vita-c02c6e.png" }, { "if": { @@ -105453,7 +105556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitasoy-c02c6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitasoy-c02c6e.jpg" }, { "if": { @@ -105468,7 +105571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anicura-acf389.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anicura-acf389.jpg" }, { "if": { @@ -105483,7 +105586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/animatesvetcare-023837.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/animatesvetcare-023837.jpg" }, { "if": { @@ -105498,7 +105601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banfieldpethospital-146b24.png" + "then": "https://data.mapcomplete.org/nsi//logos/banfieldpethospital-146b24.png" }, { "if": { @@ -105513,7 +105616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluecrosspetclinic-45f750.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluecrosspetclinic-45f750.jpg" }, { "if": { @@ -105528,7 +105631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluepearl-146b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluepearl-146b24.jpg" }, { "if": { @@ -105543,7 +105646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goddardveterinarygroup-1f839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goddardveterinarygroup-1f839e.jpg" }, { "if": { @@ -105558,7 +105661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greencrossvets-42dd12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greencrossvets-42dd12.jpg" }, { "if": { @@ -105573,7 +105676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medivet-45f750.png" + "then": "https://data.mapcomplete.org/nsi//logos/medivet-45f750.png" }, { "if": { @@ -105588,7 +105691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vcaanimalhospital-e02471.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vcaanimalhospital-e02471.jpg" }, { "if": { @@ -105604,7 +105707,22 @@ } ] }, - "then": "./assets/data/nsi/logos/vetiq-146b24.png" + "then": "https://data.mapcomplete.org/nsi//logos/vetiq-146b24.png" + }, + { + "if": { + "and": [ + "amenity=veterinary", + { + "or": [ + "brand=Vets4Pets", + "brand:wikidata=Q16960196", + "name=Vets4Pets" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/vets4pets-45f750.jpg" }, { "if": { @@ -105619,7 +105737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellhavenpethealth-146b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellhavenpethealth-146b24.jpg" }, { "if": { @@ -105638,7 +105756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalveterinaryhospital-093749.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalveterinaryhospital-093749.png" }, { "if": { @@ -105652,7 +105770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigbelly-4695b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigbelly-4695b1.jpg" }, { "if": { @@ -105667,7 +105785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robidog-253083.svg" + "then": "https://data.mapcomplete.org/nsi//logos/robidog-253083.svg" }, { "if": { @@ -105682,7 +105800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catscale-8a30f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/catscale-8a30f0.png" }, { "if": { @@ -105696,7 +105814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/associacaodeescuteirosdeangola-110cb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/associacaodeescuteirosdeangola-110cb7.jpg" }, { "if": { @@ -105710,7 +105828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundderpfadfinderinnenundpfadfinder-9e77d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/bundderpfadfinderinnenundpfadfinder-9e77d2.png" }, { "if": { @@ -105724,7 +105842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundmuslimischerpfadfinderinnenundpfadfinderdeutschlands-9e77d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundmuslimischerpfadfinderinnenundpfadfinderdeutschlands-9e77d2.jpg" }, { "if": { @@ -105738,7 +105856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschepfadfinderschaftsanktgeorg-9e77d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschepfadfinderschaftsanktgeorg-9e77d2.jpg" }, { "if": { @@ -105753,7 +105871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/girlscouts-c1b996.png" + "then": "https://data.mapcomplete.org/nsi//logos/girlscouts-c1b996.png" }, { "if": { @@ -105767,7 +105885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norgeskfukkfumspeidere-964e52.png" + "then": "https://data.mapcomplete.org/nsi//logos/norgeskfukkfumspeidere-964e52.png" }, { "if": { @@ -105781,7 +105899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norgesspeiderforbund-964e52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norgesspeiderforbund-964e52.jpg" }, { "if": { @@ -105795,7 +105913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfadfinderbundweltenbummler-9e77d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pfadfinderbundweltenbummler-9e77d2.jpg" }, { "if": { @@ -105809,7 +105927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfadfinderinnenschaftstgeorg-9e77d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pfadfinderinnenschaftstgeorg-9e77d2.jpg" }, { "if": { @@ -105823,7 +105941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scoutismebeninois-7b4b06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scoutismebeninois-7b4b06.jpg" }, { "if": { @@ -105837,7 +105955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scoutssouthafrica-c3326c.png" + "then": "https://data.mapcomplete.org/nsi//logos/scoutssouthafrica-c3326c.png" }, { "if": { @@ -105851,7 +105969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebotswanascoutsassociation-96bced.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebotswanascoutsassociation-96bced.jpg" }, { "if": { @@ -105866,7 +105984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thescoutassociation-d2f01b.png" + "then": "https://data.mapcomplete.org/nsi//logos/thescoutassociation-d2f01b.png" }, { "if": { @@ -105880,7 +105998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandchristlicherpfadfinderinnen-9e77d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandchristlicherpfadfinderinnen-9e77d2.jpg" }, { "if": { @@ -105898,7 +106016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkonggirlguidesassociation-d7bac8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkonggirlguidesassociation-d7bac8.jpg" }, { "if": { @@ -105916,7 +106034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scoutassociationofhongkong-d7bac8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scoutassociationofhongkong-d7bac8.jpg" }, { "if": { @@ -105935,7 +106053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/protimes-01a309.png" + "then": "https://data.mapcomplete.org/nsi//logos/protimes-01a309.png" }, { "if": { @@ -105950,7 +106068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merrymaids-7432ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/merrymaids-7432ef.png" }, { "if": { @@ -105965,7 +106083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mollymaid-90fa14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mollymaid-90fa14.jpg" }, { "if": { @@ -105980,7 +106098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onet-ecf61b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/onet-ecf61b.svg" }, { "if": { @@ -105995,7 +106113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicemaster-2dac42.png" + "then": "https://data.mapcomplete.org/nsi//logos/servicemaster-2dac42.png" }, { "if": { @@ -106010,7 +106128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servpro-2dac42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servpro-2dac42.jpg" }, { "if": { @@ -106025,7 +106143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shiva-0ba6c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shiva-0ba6c8.jpg" }, { "if": { @@ -106040,7 +106158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stanleysteemer-f0dc25.png" + "then": "https://data.mapcomplete.org/nsi//logos/stanleysteemer-f0dc25.png" }, { "if": { @@ -106055,7 +106173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrelectric-2adf7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrelectric-2adf7e.jpg" }, { "if": { @@ -106071,7 +106189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asuriontechrepairandsolutions-592655.png" + "then": "https://data.mapcomplete.org/nsi//logos/asuriontechrepairandsolutions-592655.png" }, { "if": { @@ -106088,7 +106206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cellphonerepair-2e20d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/cellphonerepair-2e20d7.png" }, { "if": { @@ -106104,7 +106222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cellairis-592655.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cellairis-592655.jpg" }, { "if": { @@ -106120,7 +106238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cellaxs-592655.png" + "then": "https://data.mapcomplete.org/nsi//logos/cellaxs-592655.png" }, { "if": { @@ -106135,7 +106253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dns-37346b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dns-37346b.jpg" }, { "if": { @@ -106150,7 +106268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/338c9d-37346b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/338c9d-37346b.jpg" }, { "if": { @@ -106166,7 +106284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geeksquad-592655.svg" + "then": "https://data.mapcomplete.org/nsi//logos/geeksquad-592655.svg" }, { "if": { @@ -106182,7 +106300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ismash-59b122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ismash-59b122.jpg" }, { "if": { @@ -106198,7 +106316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobileklinik-b7d48e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobileklinik-b7d48e.jpg" }, { "if": { @@ -106216,7 +106334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pcexpres-96c0e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pcexpres-96c0e5.jpg" }, { "if": { @@ -106232,7 +106350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubreakifix-592655.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ubreakifix-592655.jpg" }, { "if": { @@ -106247,7 +106365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glassdoctor-eb6cea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glassdoctor-eb6cea.jpg" }, { "if": { @@ -106262,7 +106380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandglass-57b99e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portlandglass-57b99e.jpg" }, { "if": { @@ -106277,24 +106395,24 @@ } ] }, - "then": "./assets/data/nsi/logos/bademiljo-8a50ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bademiljo-8a50ba.jpg" }, { "if": { "and": [ "craft=plumber", - "official_name=Mr. Rooter Plumbing", { "or": [ "alt_name=Mister Rooter", "brand=Mr. Rooter", "brand:wikidata=Q6929145", - "name=Mr. Rooter" + "name=Mr. Rooter", + "official_name=Mr. Rooter Plumbing" ] } ] }, - "then": "./assets/data/nsi/logos/mrrooter-6831b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrrooter-6831b5.jpg" }, { "if": { @@ -106309,7 +106427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastsigns-4c87b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastsigns-4c87b7.jpg" }, { "if": { @@ -106324,7 +106442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/signarama-4d07a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/signarama-4d07a5.jpg" }, { "if": { @@ -106339,7 +106457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedpro-05d3ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedpro-05d3ca.jpg" }, { "if": { @@ -106354,7 +106472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kpark-64a527.png" + "then": "https://data.mapcomplete.org/nsi//logos/kpark-64a527.png" }, { "if": { @@ -106369,7 +106487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komilfo-64a527.png" + "then": "https://data.mapcomplete.org/nsi//logos/komilfo-64a527.png" }, { "if": { @@ -106384,7 +106502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tryba-85969b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tryba-85969b.jpg" }, { "if": { @@ -106399,7 +106517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wds-8a03ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wds-8a03ba.jpg" }, { "if": { @@ -106414,7 +106532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeitersamariterbund-e7575e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-e7575e.jpg" }, { "if": { @@ -106429,7 +106547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeitersamariterbund-0c07b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-0c07b2.png" }, { "if": { @@ -106445,7 +106563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayerischesroteskreuz-e7575e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-e7575e.jpg" }, { "if": { @@ -106460,7 +106578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crocerossaitaliana-6310f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crocerossaitaliana-6310f2.jpg" }, { "if": { @@ -106475,7 +106593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojaargentina-74039c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojaargentina-74039c.jpg" }, { "if": { @@ -106490,7 +106608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojaboliviana-97b2ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojaboliviana-97b2ba.png" }, { "if": { @@ -106505,7 +106623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojachilena-3bf263.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojachilena-3bf263.jpg" }, { "if": { @@ -106520,7 +106638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojacolombiana-5927df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojacolombiana-5927df.jpg" }, { "if": { @@ -106535,7 +106653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojacostarricense-644419.png" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojacostarricense-644419.png" }, { "if": { @@ -106550,7 +106668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojacubana-8b68ec.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojacubana-8b68ec.svg" }, { "if": { @@ -106565,7 +106683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojadominicana-0c9972.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojadominicana-0c9972.jpg" }, { "if": { @@ -106580,7 +106698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojaespanola-0b685a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojaespanola-0b685a.svg" }, { "if": { @@ -106595,7 +106713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojaguatemalteca-9e6bb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojaguatemalteca-9e6bb6.jpg" }, { "if": { @@ -106610,7 +106728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojahondurena-e2b7fc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojahondurena-e2b7fc.svg" }, { "if": { @@ -106625,7 +106743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojamexicana-2ff2b0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojamexicana-2ff2b0.svg" }, { "if": { @@ -106640,7 +106758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojanicaraguense-8c4110.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojanicaraguense-8c4110.svg" }, { "if": { @@ -106655,7 +106773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojapanamena-8f239b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojapanamena-8f239b.svg" }, { "if": { @@ -106670,7 +106788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojaparaguaya-d62a2b.png" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojaparaguaya-d62a2b.png" }, { "if": { @@ -106685,7 +106803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojaperuana-02fe85.png" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojaperuana-02fe85.png" }, { "if": { @@ -106700,7 +106818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojasalvadorena-38e9d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojasalvadorena-38e9d5.jpg" }, { "if": { @@ -106715,7 +106833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzrojavenezolana-52281f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzrojavenezolana-52281f.jpg" }, { "if": { @@ -106731,7 +106849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschelebensrettungsgesellschaft-e7575e.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschelebensrettungsgesellschaft-e7575e.png" }, { "if": { @@ -106746,7 +106864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesroteskreuz-e7575e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-e7575e.jpg" }, { "if": { @@ -106762,7 +106880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johanniterunfallhilfe-e7575e.png" + "then": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfe-e7575e.png" }, { "if": { @@ -106778,7 +106896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malteserhilfsdienst-e7575e.png" + "then": "https://data.mapcomplete.org/nsi//logos/malteserhilfsdienst-e7575e.png" }, { "if": { @@ -106794,7 +106912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterreichischesroteskreuz-0c07b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuz-0c07b2.jpg" }, { "if": { @@ -106810,7 +106928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthsourceamericaschiropractor-59bca8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/healthsourceamericaschiropractor-59bca8.jpg" }, { "if": { @@ -106826,7 +106944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thejointchiropractic-59bca8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thejointchiropractic-59bca8.jpg" }, { "if": { @@ -106841,25 +106959,25 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialhearing-b5f786.png" + "then": "https://data.mapcomplete.org/nsi//logos/imperialhearing-b5f786.png" }, { "if": { "and": [ "donation:compensation=no", "healthcare=blood_donation", - "official_name=The American National Red Cross", "short_name=Red Cross", { "or": [ "brand=American Red Cross", "brand:wikidata=Q470110", - "name=American Red Cross" + "name=American Red Cross", + "official_name=The American National Red Cross" ] } ] }, - "then": "./assets/data/nsi/logos/americanredcross-cf4bd7.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanredcross-cf4bd7.png" }, { "if": { @@ -106876,7 +106994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australianredcrossbloodservice-ed38a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/australianredcrossbloodservice-ed38a1.png" }, { "if": { @@ -106890,7 +107008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadianbloodservices-cbadc5.png" + "then": "https://data.mapcomplete.org/nsi//logos/canadianbloodservices-cbadc5.png" }, { "if": { @@ -106907,24 +107025,24 @@ } ] }, - "then": "./assets/data/nsi/logos/cslplasma-cf4bd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cslplasma-cf4bd7.jpg" }, { "if": { "and": [ "donation:compensation=no", "healthcare=blood_donation", - "official_name=Établissement français du sang", { "or": [ "brand=EFS", "brand:wikidata=Q3591543", - "name=EFS" + "name=EFS", + "official_name=Établissement français du sang" ] } ] }, - "then": "./assets/data/nsi/logos/efs-81b8df.png" + "then": "https://data.mapcomplete.org/nsi//logos/efs-81b8df.png" }, { "if": { @@ -106940,7 +107058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegobloodbank-cf4bd7.png" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegobloodbank-cf4bd7.png" }, { "if": { @@ -106957,24 +107075,24 @@ } ] }, - "then": "./assets/data/nsi/logos/thairedcrosssociety-1f63d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thairedcrosssociety-1f63d6.jpg" }, { "if": { "and": [ "healthcare=blood_donation", - "official_name=Türkiye Kızılay Derneği", "short_name=Kızılay", { "or": [ "brand=Türk Kızılayı", "brand:wikidata=Q1059602", - "name=Türk Kızılayı" + "name=Türk Kızılayı", + "official_name=Türkiye Kızılay Derneği" ] } ] }, - "then": "./assets/data/nsi/logos/turkkizilayi-52e991.svg" + "then": "https://data.mapcomplete.org/nsi//logos/turkkizilayi-52e991.svg" }, { "if": { @@ -106989,7 +107107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitalant-cf4bd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitalant-cf4bd7.jpg" }, { "if": { @@ -107007,7 +107125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongredcross-d0af39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongredcross-d0af39.jpg" }, { "if": { @@ -107024,7 +107142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jennycraig-364e20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jennycraig-364e20.jpg" }, { "if": { @@ -107042,7 +107160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wwstudio-da5d0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/wwstudio-da5d0f.png" }, { "if": { @@ -107057,7 +107175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amedicinadiagnostica-4627ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amedicinadiagnostica-4627ab.jpg" }, { "if": { @@ -107072,7 +107190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beolab-ed8186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beolab-ed8186.jpg" }, { "if": { @@ -107088,7 +107206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bioval-d3c03e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bioval-d3c03e.png" }, { "if": { @@ -107104,7 +107222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biogroup-d77f29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biogroup-d77f29.jpg" }, { "if": { @@ -107119,7 +107237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bionext-067987.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bionext-067987.jpg" }, { "if": { @@ -107135,7 +107253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biopath-dce716.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biopath-dce716.jpg" }, { "if": { @@ -107152,7 +107270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodimed-59f78c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodimed-59f78c.jpg" }, { "if": { @@ -107168,7 +107286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cerballiance-c89743.png" + "then": "https://data.mapcomplete.org/nsi//logos/cerballiance-c89743.png" }, { "if": { @@ -107185,7 +107303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cibalab-59f78c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cibalab-59f78c.jpg" }, { "if": { @@ -107200,7 +107318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/confiancemedicinadiagnostica-4627ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/confiancemedicinadiagnostica-4627ab.jpg" }, { "if": { @@ -107215,7 +107333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diagnostyka-a4d57c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diagnostyka-a4d57c.jpg" }, { "if": { @@ -107229,7 +107347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drlalpathlabs-e99f45.png" + "then": "https://data.mapcomplete.org/nsi//logos/drlalpathlabs-e99f45.png" }, { "if": { @@ -107245,7 +107363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dynacare-81e83d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dynacare-81e83d.jpg" }, { "if": { @@ -107261,7 +107379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurofinsbiolab-d77f29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurofinsbiolab-d77f29.jpg" }, { "if": { @@ -107276,7 +107394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imdberlin-e049ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imdberlin-e049ab.jpg" }, { "if": { @@ -107291,7 +107409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ketterthill-067987.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ketterthill-067987.jpg" }, { "if": { @@ -107306,7 +107424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/labcorp-9476e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/labcorp-9476e1.jpg" }, { "if": { @@ -107321,7 +107439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laboratoiresreunis-067987.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laboratoiresreunis-067987.jpg" }, { "if": { @@ -107337,7 +107455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifelabs-81e83d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifelabs-81e83d.jpg" }, { "if": { @@ -107352,7 +107470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pickendoheem-067987.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pickendoheem-067987.jpg" }, { "if": { @@ -107367,7 +107485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/questdiagnostics-7c8b3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/questdiagnostics-7c8b3a.png" }, { "if": { @@ -107382,7 +107500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sabin-4627ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sabin-4627ab.jpg" }, { "if": { @@ -107397,7 +107515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saluddigna-fe7e70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saluddigna-fe7e70.jpg" }, { "if": { @@ -107412,7 +107530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-e59e51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-e59e51.jpg" }, { "if": { @@ -107427,7 +107545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-a4d57c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-a4d57c.jpg" }, { "if": { @@ -107442,7 +107560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-80efe5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-80efe5.jpg" }, { "if": { @@ -107457,7 +107575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-c2c658.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-c2c658.jpg" }, { "if": { @@ -107473,7 +107591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synlab-deddc9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/synlab-deddc9.svg" }, { "if": { @@ -107489,7 +107607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unibio-d77f29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unibio-d77f29.jpg" }, { "if": { @@ -107506,7 +107624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invitro-7c30a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/invitro-7c30a4.png" }, { "if": { @@ -107523,7 +107641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramus-59f78c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ramus-59f78c.png" }, { "if": { @@ -107540,7 +107658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-59f78c.png" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-59f78c.png" }, { "if": { @@ -107557,7 +107675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helix-8e8a61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/helix-8e8a61.jpg" }, { "if": { @@ -107572,7 +107690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/athleticophysicaltherapy-61735f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/athleticophysicaltherapy-61735f.jpg" }, { "if": { @@ -107587,7 +107705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atiphysicaltherapy-61735f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atiphysicaltherapy-61735f.jpg" }, { "if": { @@ -107602,7 +107720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifemarkphysiotherapy-a46221.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifemarkphysiotherapy-a46221.jpg" }, { "if": { @@ -107617,7 +107735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/therapydia-61735f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/therapydia-61735f.jpg" }, { "if": { @@ -107632,7 +107750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australianclinicallabs-b42694.png" + "then": "https://data.mapcomplete.org/nsi//logos/australianclinicallabs-b42694.png" }, { "if": { @@ -107649,7 +107767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodimed-271471.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodimed-271471.jpg" }, { "if": { @@ -107666,7 +107784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cibalab-271471.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cibalab-271471.jpg" }, { "if": { @@ -107681,7 +107799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clinicasante-9f4d9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/clinicasante-9f4d9c.png" }, { "if": { @@ -107696,7 +107814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csd-c54d89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csd-c54d89.jpg" }, { "if": { @@ -107711,7 +107829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diagnostyka-42d0f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diagnostyka-42d0f5.jpg" }, { "if": { @@ -107727,7 +107845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/douglasshanlymoir-b42694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/douglasshanlymoir-b42694.jpg" }, { "if": { @@ -107741,7 +107859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drlalpathlabs-f3fd3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/drlalpathlabs-f3fd3c.png" }, { "if": { @@ -107756,7 +107874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invivo-c54d89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invivo-c54d89.jpg" }, { "if": { @@ -107772,7 +107890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifelabs-dfeab4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifelabs-dfeab4.jpg" }, { "if": { @@ -107787,7 +107905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nikolab-c54d89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nikolab-c54d89.jpg" }, { "if": { @@ -107802,7 +107920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-42d0f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-42d0f5.jpg" }, { "if": { @@ -107820,7 +107938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dila-c54d89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dila-c54d89.jpg" }, { "if": { @@ -107835,7 +107953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bd71fa-c54d89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bd71fa-c54d89.jpg" }, { "if": { @@ -107853,7 +107971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medlab-c54d89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/medlab-c54d89.jpg" }, { "if": { @@ -107870,7 +107988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramus-271471.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ramus-271471.jpg" }, { "if": { @@ -107887,7 +108005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-271471.png" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-271471.png" }, { "if": { @@ -107907,7 +108025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-c54d89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-c54d89.jpg" }, { "if": { @@ -107928,7 +108046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synevo-5675a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synevo-5675a4.jpg" }, { "if": { @@ -107943,7 +108061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bucees-35c0ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/bucees-35c0ca.png" }, { "if": { @@ -107958,7 +108076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyingjtravelcenter-13bea2.png" + "then": "https://data.mapcomplete.org/nsi//logos/flyingjtravelcenter-13bea2.png" }, { "if": { @@ -107973,7 +108091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lovestravelstop-35c0ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/lovestravelstop-35c0ca.png" }, { "if": { @@ -107988,7 +108106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onvotravelplaza-35c0ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/onvotravelplaza-35c0ca.png" }, { "if": { @@ -108003,7 +108121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrostoppingcenters-35c0ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrostoppingcenters-35c0ca.jpg" }, { "if": { @@ -108018,7 +108136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pilottravelcenter-35c0ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/pilottravelcenter-35c0ca.png" }, { "if": { @@ -108033,7 +108151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roadranger-35c0ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/roadranger-35c0ca.png" }, { "if": { @@ -108048,7 +108166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roadystruckstops-35c0ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/roadystruckstops-35c0ca.png" }, { "if": { @@ -108063,23 +108181,23 @@ } ] }, - "then": "./assets/data/nsi/logos/serways-86c4b3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/serways-86c4b3.svg" }, { "if": { "and": [ "highway=services", - "official_name=TravelCenters of America", { "or": [ "brand=TA", "brand:wikidata=Q7835892", - "name=TA" + "name=TA", + "official_name=TravelCenters of America" ] } ] }, - "then": "./assets/data/nsi/logos/ta-35c0ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ta-35c0ca.jpg" }, { "if": { @@ -108094,7 +108212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tankandrast-86c4b3.png" + "then": "https://data.mapcomplete.org/nsi//logos/tankandrast-86c4b3.png" }, { "if": { @@ -108109,7 +108227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townpump-35c0ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/townpump-35c0ca.png" }, { "if": { @@ -108125,7 +108243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avalon-4e5c5e.png" + "then": "https://data.mapcomplete.org/nsi//logos/avalon-4e5c5e.png" }, { "if": { @@ -108141,7 +108259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hometownamerica-4e5c5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hometownamerica-4e5c5e.jpg" }, { "if": { @@ -108161,7 +108279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/park-9f6610.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/park-9f6610.jpg" }, { "if": { @@ -108181,7 +108299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gaia-9f6610.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gaia-9f6610.jpg" }, { "if": { @@ -108201,7 +108319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dynam-9f6610.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dynam-9f6610.jpg" }, { "if": { @@ -108221,7 +108339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maruhan-9f6610.png" + "then": "https://data.mapcomplete.org/nsi//logos/maruhan-9f6610.png" }, { "if": { @@ -108239,7 +108357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fourquarters-0f0c9e.png" + "then": "https://data.mapcomplete.org/nsi//logos/fourquarters-0f0c9e.png" }, { "if": { @@ -108256,7 +108374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasergameevolution-60da35.png" + "then": "https://data.mapcomplete.org/nsi//logos/lasergameevolution-60da35.png" }, { "if": { @@ -108275,7 +108393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taitostation-10c094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taitostation-10c094.jpg" }, { "if": { @@ -108290,7 +108408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timezone-bbc11e.png" + "then": "https://data.mapcomplete.org/nsi//logos/timezone-bbc11e.png" }, { "if": { @@ -108305,7 +108423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomsworld-e5ed7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomsworld-e5ed7a.jpg" }, { "if": { @@ -108327,7 +108445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubsega-c3bbfb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/clubsega-c3bbfb.svg" }, { "if": { @@ -108346,7 +108464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taitostation-c3bbfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taitostation-c3bbfb.jpg" }, { "if": { @@ -108365,7 +108483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomsworld-043bd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomsworld-043bd9.jpg" }, { "if": { @@ -108380,7 +108498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bowlero-deeedb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bowlero-deeedb.jpg" }, { "if": { @@ -108396,7 +108514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/round1-deeedb.png" + "then": "https://data.mapcomplete.org/nsi//logos/round1-deeedb.png" }, { "if": { @@ -108411,7 +108529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/strikebowlingbar-16aa6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/strikebowlingbar-16aa6f.jpg" }, { "if": { @@ -108427,7 +108545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenpin-d57e08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tenpin-d57e08.jpg" }, { "if": { @@ -108442,7 +108560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zonebowling-16aa6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zonebowling-16aa6f.jpg" }, { "if": { @@ -108462,7 +108580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/round1-08832c.png" + "then": "https://data.mapcomplete.org/nsi//logos/round1-08832c.png" }, { "if": { @@ -108478,7 +108596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arthurmurraydancecenter-3e2f00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arthurmurraydancecenter-3e2f00.jpg" }, { "if": { @@ -108494,7 +108612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredastairedancestudios-3e2f00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fredastairedancestudios-3e2f00.jpg" }, { "if": { @@ -108509,7 +108627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kampk9-92ff81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kampk9-92ff81.jpg" }, { "if": { @@ -108524,7 +108642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/escapology-838ff3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/escapology-838ff3.jpg" }, { "if": { @@ -108539,7 +108657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solidcore-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/solidcore-809afb.jpg" }, { "if": { @@ -108554,7 +108672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/24hourfitness-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/24hourfitness-809afb.jpg" }, { "if": { @@ -108569,7 +108687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/24hourfitnesssport-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/24hourfitnesssport-809afb.jpg" }, { "if": { @@ -108584,7 +108702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/24hourfitnesssupersport-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/24hourfitnesssupersport-809afb.jpg" }, { "if": { @@ -108601,7 +108719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/247fitness-68bf34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/247fitness-68bf34.jpg" }, { "if": { @@ -108617,7 +108735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9round-c8777b.png" + "then": "https://data.mapcomplete.org/nsi//logos/9round-c8777b.png" }, { "if": { @@ -108632,7 +108750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/activfitness-2831bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/activfitness-2831bb.jpg" }, { "if": { @@ -108647,7 +108765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alexfitness-2b2465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alexfitness-2b2465.jpg" }, { "if": { @@ -108663,7 +108781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anytimefitness-f3f46d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anytimefitness-f3f46d.jpg" }, { "if": { @@ -108678,7 +108796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bannatynehealthclub-2770cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bannatynehealthclub-2770cb.jpg" }, { "if": { @@ -108694,7 +108812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barre3-571e6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/barre3-571e6b.png" }, { "if": { @@ -108709,7 +108827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barrys-1b6d66.png" + "then": "https://data.mapcomplete.org/nsi//logos/barrys-1b6d66.png" }, { "if": { @@ -108724,7 +108842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basicfit-4741dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/basicfit-4741dc.jpg" }, { "if": { @@ -108739,7 +108857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beat81-6c61eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/beat81-6c61eb.png" }, { "if": { @@ -108754,7 +108872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beone-14abfa.png" + "then": "https://data.mapcomplete.org/nsi//logos/beone-14abfa.png" }, { "if": { @@ -108771,7 +108889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/better-2770cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/better-2770cb.png" }, { "if": { @@ -108786,7 +108904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blinkfitness-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blinkfitness-809afb.jpg" }, { "if": { @@ -108801,7 +108919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluefit-777e0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluefit-777e0e.jpg" }, { "if": { @@ -108816,7 +108934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodystreet-c8777b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bodystreet-c8777b.png" }, { "if": { @@ -108831,7 +108949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodytech-526e49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodytech-526e49.jpg" }, { "if": { @@ -108846,7 +108964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodytech-777e0e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bodytech-777e0e.png" }, { "if": { @@ -108861,7 +108979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burnbootcamp-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burnbootcamp-809afb.jpg" }, { "if": { @@ -108877,7 +108995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buzzgym-a89c8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buzzgym-a89c8d.jpg" }, { "if": { @@ -108892,7 +109010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calypso-78c701.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calypso-78c701.jpg" }, { "if": { @@ -108907,7 +109025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celebrityfitness-412a8d.png" + "then": "https://data.mapcomplete.org/nsi//logos/celebrityfitness-412a8d.png" }, { "if": { @@ -108922,7 +109040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityfitness-745622.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityfitness-745622.png" }, { "if": { @@ -108937,7 +109055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleverfit-1d011d.png" + "then": "https://data.mapcomplete.org/nsi//logos/cleverfit-1d011d.png" }, { "if": { @@ -108952,7 +109070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubfitness-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubfitness-809afb.jpg" }, { "if": { @@ -108968,7 +109086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubpilates-9a38b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubpilates-9a38b2.jpg" }, { "if": { @@ -108984,7 +109102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corepoweryoga-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/corepoweryoga-809afb.jpg" }, { "if": { @@ -108999,7 +109117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crossfit-c8777b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crossfit-c8777b.jpg" }, { "if": { @@ -109014,7 +109132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crunchfitness-39883b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crunchfitness-39883b.jpg" }, { "if": { @@ -109030,7 +109148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyclebar-3542a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyclebar-3542a4.jpg" }, { "if": { @@ -109045,7 +109163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easyfitness-d6de51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easyfitness-d6de51.jpg" }, { "if": { @@ -109060,7 +109178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/econofitness-122858.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/econofitness-122858.jpg" }, { "if": { @@ -109075,7 +109193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiefitness-db9195.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiefitness-db9195.jpg" }, { "if": { @@ -109090,7 +109208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equinox-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equinox-809afb.jpg" }, { "if": { @@ -109105,7 +109223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esportafitness-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esportafitness-809afb.jpg" }, { "if": { @@ -109121,7 +109239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everlastgyms-2770cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/everlastgyms-2770cb.jpg" }, { "if": { @@ -109137,7 +109255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f45training-e76881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/f45training-e76881.jpg" }, { "if": { @@ -109153,7 +109271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fernwoodfitness-c88de3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fernwoodfitness-c88de3.jpg" }, { "if": { @@ -109168,7 +109286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fit4less-aa8143.png" + "then": "https://data.mapcomplete.org/nsi//logos/fit4less-aa8143.png" }, { "if": { @@ -109183,7 +109301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fit4less-2770cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fit4less-2770cb.jpg" }, { "if": { @@ -109198,7 +109316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitactive-b06a0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitactive-b06a0d.jpg" }, { "if": { @@ -109213,7 +109331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitbox-c83d0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitbox-c83d0c.jpg" }, { "if": { @@ -109228,7 +109346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitinn-48d938.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitinn-48d938.jpg" }, { "if": { @@ -109243,7 +109361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitness19-809afb.png" + "then": "https://data.mapcomplete.org/nsi//logos/fitness19-809afb.png" }, { "if": { @@ -109258,7 +109376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitnessfirst-6ff977.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitnessfirst-6ff977.jpg" }, { "if": { @@ -109274,7 +109392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitnessfirstladies-6c61eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitnessfirstladies-6c61eb.jpg" }, { "if": { @@ -109289,7 +109407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitnesspark-678d1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitnesspark-678d1b.jpg" }, { "if": { @@ -109304,7 +109422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitnesstogether-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitnesstogether-809afb.jpg" }, { "if": { @@ -109319,7 +109437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitness24seven-5fc685.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitness24seven-5fc685.jpg" }, { "if": { @@ -109334,7 +109452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitseveneleven-6c61eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitseveneleven-6c61eb.jpg" }, { "if": { @@ -109349,7 +109467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitx-6c61eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitx-6c61eb.jpg" }, { "if": { @@ -109364,7 +109482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frame-fd4e20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frame-fd4e20.jpg" }, { "if": { @@ -109379,7 +109497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/friskisandsvettis-f113b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/friskisandsvettis-f113b7.png" }, { "if": { @@ -109394,7 +109512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genesishealthandfitness-c88de3.png" + "then": "https://data.mapcomplete.org/nsi//logos/genesishealthandfitness-c88de3.png" }, { "if": { @@ -109409,7 +109527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldsgym-72c4b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/goldsgym-72c4b8.png" }, { "if": { @@ -109424,7 +109542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodlifefitness-aa8143.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodlifefitness-aa8143.jpg" }, { "if": { @@ -109439,7 +109557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/high5-6c61eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/high5-6c61eb.png" }, { "if": { @@ -109454,7 +109572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holmesplace-901199.png" + "then": "https://data.mapcomplete.org/nsi//logos/holmesplace-901199.png" }, { "if": { @@ -109469,7 +109587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotworx-cee411.png" + "then": "https://data.mapcomplete.org/nsi//logos/hotworx-cee411.png" }, { "if": { @@ -109484,7 +109602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ilovekickboxing-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ilovekickboxing-809afb.jpg" }, { "if": { @@ -109499,7 +109617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/injoy-c83d0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/injoy-c83d0c.jpg" }, { "if": { @@ -109514,7 +109632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jazzercise-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jazzercise-809afb.jpg" }, { "if": { @@ -109529,7 +109647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jdgyms-2770cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jdgyms-2770cb.jpg" }, { "if": { @@ -109545,7 +109663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jettsfitness-8f2b5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jettsfitness-8f2b5b.jpg" }, { "if": { @@ -109560,7 +109678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnreedfitness-c8777b.png" + "then": "https://data.mapcomplete.org/nsi//logos/johnreedfitness-c8777b.png" }, { "if": { @@ -109575,7 +109693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keepcool-a3e665.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keepcool-a3e665.jpg" }, { "if": { @@ -109590,7 +109708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kidstrong-9a38b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kidstrong-9a38b2.jpg" }, { "if": { @@ -109605,7 +109723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiesertraining-a70e35.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kiesertraining-a70e35.svg" }, { "if": { @@ -109620,7 +109738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/korperformen-d924c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/korperformen-d924c7.jpg" }, { "if": { @@ -109635,7 +109753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuntokeskusliikku-a9beea.png" + "then": "https://data.mapcomplete.org/nsi//logos/kuntokeskusliikku-a9beea.png" }, { "if": { @@ -109650,7 +109768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lappartfitness-2caaa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lappartfitness-2caaa4.jpg" }, { "if": { @@ -109665,7 +109783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lorangebleue-5ce32b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lorangebleue-5ce32b.jpg" }, { "if": { @@ -109680,7 +109798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafitness-34886f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafitness-34886f.jpg" }, { "if": { @@ -109695,7 +109813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertygym-678d1b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/libertygym-678d1b.svg" }, { "if": { @@ -109710,7 +109828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifetime-9a38b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifetime-9a38b2.jpg" }, { "if": { @@ -109725,7 +109843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loopfitness-a32a51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loopfitness-a32a51.jpg" }, { "if": { @@ -109740,7 +109858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macfit-a2f75d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macfit-a2f75d.jpg" }, { "if": { @@ -109755,7 +109873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcfit-0ebac9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcfit-0ebac9.jpg" }, { "if": { @@ -109770,7 +109888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrssporty-658820.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrssporty-658820.jpg" }, { "if": { @@ -109785,7 +109903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoness-2caaa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neoness-2caaa4.jpg" }, { "if": { @@ -109800,7 +109918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nextlevel-144da6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nextlevel-144da6.jpg" }, { "if": { @@ -109815,7 +109933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordicwellness-f113b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/nordicwellness-f113b7.png" }, { "if": { @@ -109830,7 +109948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuffieldhealthfitnessandwellbeing-2770cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nuffieldhealthfitnessandwellbeing-2770cb.jpg" }, { "if": { @@ -109845,7 +109963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangetheoryfitness-f1c5c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orangetheoryfitness-f1c5c5.jpg" }, { "if": { @@ -109860,7 +109978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panobianco-777e0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panobianco-777e0e.jpg" }, { "if": { @@ -109875,7 +109993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/planetfitness-9a38b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/planetfitness-9a38b2.jpg" }, { "if": { @@ -109890,7 +110008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plusfitness-737f81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plusfitness-737f81.jpg" }, { "if": { @@ -109905,7 +110023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerhousegym-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerhousegym-809afb.jpg" }, { "if": { @@ -109920,7 +110038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psycle-fd4e20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/psycle-fd4e20.jpg" }, { "if": { @@ -109936,7 +110054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/purebarre-9a38b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/purebarre-9a38b2.png" }, { "if": { @@ -109953,7 +110071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/purefitness-4ac78e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/purefitness-4ac78e.jpg" }, { "if": { @@ -109968,7 +110086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puregym-a32a51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puregym-a32a51.jpg" }, { "if": { @@ -109983,7 +110101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puregym-2831bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puregym-2831bb.jpg" }, { "if": { @@ -109998,7 +110116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puregym-2770cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puregym-2770cb.jpg" }, { "if": { @@ -110013,7 +110131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/retrofitness-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/retrofitness-809afb.jpg" }, { "if": { @@ -110028,7 +110146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sats-44c5d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sats-44c5d4.jpg" }, { "if": { @@ -110043,7 +110161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selfit-777e0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selfit-777e0e.jpg" }, { "if": { @@ -110058,7 +110176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skyfit-777e0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skyfit-777e0e.jpg" }, { "if": { @@ -110073,7 +110191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartfit-cd44e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/smartfit-cd44e6.png" }, { "if": { @@ -110088,7 +110206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snapfitness-551086.png" + "then": "https://data.mapcomplete.org/nsi//logos/snapfitness-551086.png" }, { "if": { @@ -110104,7 +110222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soulcycle-895212.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/soulcycle-895212.jpg" }, { "if": { @@ -110119,7 +110237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportlife-d4e539.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportlife-d4e539.jpg" }, { "if": { @@ -110134,7 +110252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportclub-547721.png" + "then": "https://data.mapcomplete.org/nsi//logos/sportclub-547721.png" }, { "if": { @@ -110149,7 +110267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportlife-2b2465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportlife-2b2465.jpg" }, { "if": { @@ -110164,7 +110282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/startingstrength-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/startingstrength-809afb.jpg" }, { "if": { @@ -110179,7 +110297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stc-f113b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stc-f113b7.jpg" }, { "if": { @@ -110194,7 +110312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stretchzone-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stretchzone-809afb.jpg" }, { "if": { @@ -110209,7 +110327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/talwalkars-111905.png" + "then": "https://data.mapcomplete.org/nsi//logos/talwalkars-111905.png" }, { "if": { @@ -110225,7 +110343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebarmethod-9a38b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebarmethod-9a38b2.jpg" }, { "if": { @@ -110240,7 +110358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theedgefitnessclub-773501.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theedgefitnessclub-773501.jpg" }, { "if": { @@ -110255,7 +110373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theexercisecoach-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theexercisecoach-809afb.jpg" }, { "if": { @@ -110270,7 +110388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegym-2770cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegym-2770cb.jpg" }, { "if": { @@ -110285,7 +110403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thirdspace-fd4e20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thirdspace-fd4e20.jpg" }, { "if": { @@ -110300,7 +110418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalfitness-2770cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/totalfitness-2770cb.jpg" }, { "if": { @@ -110315,7 +110433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/updatefitness-2831bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/updatefitness-2831bb.jpg" }, { "if": { @@ -110330,7 +110448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vasafitness-809afb.png" + "then": "https://data.mapcomplete.org/nsi//logos/vasafitness-809afb.png" }, { "if": { @@ -110346,7 +110464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velocity-777e0e.png" + "then": "https://data.mapcomplete.org/nsi//logos/velocity-777e0e.png" }, { "if": { @@ -110361,7 +110479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginactive-4a682e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginactive-4a682e.jpg" }, { "if": { @@ -110376,7 +110494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitaliberte-2caaa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitaliberte-2caaa4.jpg" }, { "if": { @@ -110391,7 +110509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivagym-14abfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivagym-14abfa.jpg" }, { "if": { @@ -110406,7 +110524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivagym-b368e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivagym-b368e8.jpg" }, { "if": { @@ -110421,7 +110539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellyou-6c61eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellyou-6c61eb.jpg" }, { "if": { @@ -110436,7 +110554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/workoutanytime-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/workoutanytime-809afb.jpg" }, { "if": { @@ -110451,7 +110569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldclass-eed3df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldclass-eed3df.jpg" }, { "if": { @@ -110466,7 +110584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldclass-fa50b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/worldclass-fa50b9.png" }, { "if": { @@ -110481,7 +110599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldclass-2b2465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldclass-2b2465.jpg" }, { "if": { @@ -110496,7 +110614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldgym-4c1ca3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldgym-4c1ca3.jpg" }, { "if": { @@ -110515,7 +110633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldgym-4fed0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldgym-4fed0f.jpg" }, { "if": { @@ -110530,7 +110648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xercise4less-2770cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/xercise4less-2770cb.png" }, { "if": { @@ -110545,7 +110663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/youfit-809afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/youfit-809afb.jpg" }, { "if": { @@ -110560,7 +110678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zapfitness-c88de3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zapfitness-c88de3.jpg" }, { "if": { @@ -110575,7 +110693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zdrofit-78c701.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zdrofit-78c701.jpg" }, { "if": { @@ -110594,7 +110712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodymasters-eac6d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/bodymasters-eac6d0.png" }, { "if": { @@ -110613,7 +110731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitnesstime-2210cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitnesstime-2210cf.jpg" }, { "if": { @@ -110633,7 +110751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anytimefitness-1008e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anytimefitness-1008e2.jpg" }, { "if": { @@ -110652,7 +110770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/konamisportsclub-1008e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/konamisportsclub-1008e2.png" }, { "if": { @@ -110671,7 +110789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joyfit-1008e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/joyfit-1008e2.png" }, { "if": { @@ -110690,7 +110808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tipness-1008e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tipness-1008e2.jpg" }, { "if": { @@ -110709,7 +110827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megalos-1008e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megalos-1008e2.jpg" }, { "if": { @@ -110728,7 +110846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitnessfactory-4fed0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitnessfactory-4fed0f.jpg" }, { "if": { @@ -110747,7 +110865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genghiskhanfitnessclub-4fed0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genghiskhanfitnessclub-4fed0f.jpg" }, { "if": { @@ -110770,7 +110888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/physicalfitnessandbeauty-68bf34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/physicalfitnessandbeauty-68bf34.jpg" }, { "if": { @@ -110785,7 +110903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitnesscourt-b43b0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitnesscourt-b43b0a.jpg" }, { "if": { @@ -110801,23 +110919,23 @@ } ] }, - "then": "./assets/data/nsi/logos/smaland-89e321.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smaland-89e321.jpg" }, { "if": { "and": [ "leisure=indoor_play", - "official_name=My Gym Children's Fitness Center", { "or": [ "brand=My Gym", "brand:wikidata=Q6945604", - "name=My Gym" + "name=My Gym", + "official_name=My Gym Children's Fitness Center" ] } ] }, - "then": "./assets/data/nsi/logos/mygym-42a60f.png" + "then": "https://data.mapcomplete.org/nsi//logos/mygym-42a60f.png" }, { "if": { @@ -110832,7 +110950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thelittlegym-42a60f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thelittlegym-42a60f.jpg" }, { "if": { @@ -110847,7 +110965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wackywarehouse-6e0ce7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wackywarehouse-6e0ce7.jpg" }, { "if": { @@ -110865,7 +110983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holeymoley-5edea1.png" + "then": "https://data.mapcomplete.org/nsi//logos/holeymoley-5edea1.png" }, { "if": { @@ -110879,7 +110997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biba-d25aa3.png" + "then": "https://data.mapcomplete.org/nsi//logos/biba-d25aa3.png" }, { "if": { @@ -110895,7 +111013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lollipopsplayland-a3623b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lollipopsplayland-a3623b.jpg" }, { "if": { @@ -110911,7 +111029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonaldsplayplace-bacb55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonaldsplayplace-bacb55.jpg" }, { "if": { @@ -110927,7 +111045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zihadielko-aee7ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zihadielko-aee7ff.jpg" }, { "if": { @@ -110947,7 +111065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mollyfantasy-b85b28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mollyfantasy-b85b28.jpg" }, { "if": { @@ -110963,7 +111081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aquatotsswimschools-ce9814.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aquatotsswimschools-ce9814.jpg" }, { "if": { @@ -110979,7 +111097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bearpaddleswimschool-f2066e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bearpaddleswimschool-f2066e.jpg" }, { "if": { @@ -110997,7 +111115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/better-2b43d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/better-2b43d7.png" }, { "if": { @@ -111013,7 +111131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigblueswimschool-f2066e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigblueswimschool-f2066e.jpg" }, { "if": { @@ -111028,7 +111146,23 @@ } ] }, - "then": "./assets/data/nsi/logos/davidlloydclubs-2b43d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/davidlloydclubs-2b43d7.png" + }, + { + "if": { + "and": [ + "leisure=sports_centre", + "sport=swimming", + { + "or": [ + "brand=Emler Swim School", + "brand:wikidata=Q121333184", + "name=Emler Swim School" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/emlerswimschool-f2066e.jpg" }, { "if": { @@ -111043,7 +111177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everyoneactive-2b43d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/everyoneactive-2b43d7.jpg" }, { "if": { @@ -111059,7 +111193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fossswimschool-f2066e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fossswimschool-f2066e.jpg" }, { "if": { @@ -111075,7 +111209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goals-2b43d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goals-2b43d7.jpg" }, { "if": { @@ -111091,7 +111225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldfishswimschool-f2066e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldfishswimschool-f2066e.jpg" }, { "if": { @@ -111107,7 +111241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happyfishswimschool-ef46fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/happyfishswimschool-ef46fc.png" }, { "if": { @@ -111123,7 +111257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ifly-ba45e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/ifly-ba45e1.png" }, { "if": { @@ -111139,7 +111273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/k1speed-fb63c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/k1speed-fb63c7.jpg" }, { "if": { @@ -111155,7 +111289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kidsfirstswimschool-f2066e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kidsfirstswimschool-f2066e.jpg" }, { "if": { @@ -111170,7 +111304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lefive-b9c700.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lefive-b9c700.jpg" }, { "if": { @@ -111186,7 +111320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safesplashswimschool-f2066e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safesplashswimschool-f2066e.jpg" }, { "if": { @@ -111202,7 +111336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shaplandswimschool-8761a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/shaplandswimschool-8761a7.png" }, { "if": { @@ -111216,7 +111350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sporistanbul-62337f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sporistanbul-62337f.jpg" }, { "if": { @@ -111232,7 +111366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swimlabsswimschool-f2066e.png" + "then": "https://data.mapcomplete.org/nsi//logos/swimlabsswimschool-f2066e.png" }, { "if": { @@ -111249,7 +111383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teamsportkarting-2b43d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teamsportkarting-2b43d7.jpg" }, { "if": { @@ -111265,7 +111399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topgolf-9025ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topgolf-9025ef.jpg" }, { "if": { @@ -111282,7 +111416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xgolf-8a88af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xgolf-8a88af.jpg" }, { "if": { @@ -111297,7 +111431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ymca-ba45e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/ymca-ba45e1.png" }, { "if": { @@ -111312,7 +111446,22 @@ } ] }, - "then": "./assets/data/nsi/logos/altitude-88b71c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altitude-88b71c.jpg" + }, + { + "if": { + "and": [ + "leisure=trampoline_park", + { + "or": [ + "brand=Bounce Inc", + "brand:wikidata=Q120405695", + "name=BOUNCEinc" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/bounceinc-0b8920.png" }, { "if": { @@ -111327,7 +111476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flipout-002cc1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flipout-002cc1.jpg" }, { "if": { @@ -111342,23 +111491,23 @@ } ] }, - "then": "./assets/data/nsi/logos/skyzone-746047.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skyzone-746047.jpg" }, { "if": { "and": [ "leisure=trampoline_park", - "official_name=Urban Air Trampoline and Adventure Park", { "or": [ "brand=Urban Air", "brand:wikidata=Q110172893", - "name=Urban Air" + "name=Urban Air", + "official_name=Urban Air Trampoline and Adventure Park" ] } ] }, - "then": "./assets/data/nsi/logos/urbanair-569d04.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/urbanair-569d04.jpg" }, { "if": { @@ -111372,7 +111521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/believ-0f0a22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/believ-0f0a22.jpg" }, { "if": { @@ -111388,7 +111537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bppulse-ba9ece.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bppulse-ba9ece.jpg" }, { "if": { @@ -111402,7 +111551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargy-0f0a22.png" + "then": "https://data.mapcomplete.org/nsi//logos/chargy-0f0a22.png" }, { "if": { @@ -111418,7 +111567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargy-a187c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chargy-a187c9.jpg" }, { "if": { @@ -111432,7 +111581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eviny-a1beea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eviny-a1beea.jpg" }, { "if": { @@ -111446,7 +111595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indigo-a8a5f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/indigo-a8a5f0.png" }, { "if": { @@ -111460,7 +111609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ionity-97d83d.png" + "then": "https://data.mapcomplete.org/nsi//logos/ionity-97d83d.png" }, { "if": { @@ -111474,7 +111623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kople-a1beea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kople-a1beea.jpg" }, { "if": { @@ -111488,7 +111637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mer-8d56aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/mer-8d56aa.png" }, { "if": { @@ -111504,7 +111653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/molplugee-bb0527.png" + "then": "https://data.mapcomplete.org/nsi//logos/molplugee-bb0527.png" }, { "if": { @@ -111520,7 +111669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/openloop-c04700.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/openloop-c04700.jpg" }, { "if": { @@ -111534,7 +111683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plugit-f7f4ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/plugit-f7f4ef.png" }, { "if": { @@ -111548,7 +111697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerboxone-4e1964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerboxone-4e1964.jpg" }, { "if": { @@ -111564,7 +111713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerdot-86aeb5.png" + "then": "https://data.mapcomplete.org/nsi//logos/powerdot-86aeb5.png" }, { "if": { @@ -111578,7 +111727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivianadventurenetwork-66cd42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rivianadventurenetwork-66cd42.jpg" }, { "if": { @@ -111592,7 +111741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivianwaypoints-66cd42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rivianwaypoints-66cd42.jpg" }, { "if": { @@ -111607,7 +111756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teslainc-9b2e7d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/teslainc-9b2e7d.svg" }, { "if": { @@ -111621,7 +111770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesla-a1beea.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tesla-a1beea.svg" }, { "if": { @@ -111637,7 +111786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubitricity-338196.png" + "then": "https://data.mapcomplete.org/nsi//logos/ubitricity-338196.png" }, { "if": { @@ -111651,7 +111800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wink-d790f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wink-d790f7.jpg" }, { "if": { @@ -111667,7 +111816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zsedrive-fed676.png" + "then": "https://data.mapcomplete.org/nsi//logos/zsedrive-fed676.png" }, { "if": { @@ -111685,7 +111834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xpengsupercharger-9ee13d.png" + "then": "https://data.mapcomplete.org/nsi//logos/xpengsupercharger-9ee13d.png" }, { "if": { @@ -111703,7 +111852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teld-9ee13d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teld-9ee13d.jpg" }, { "if": { @@ -111720,7 +111869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowerswap-9ee13d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowerswap-9ee13d.jpg" }, { "if": { @@ -111737,7 +111886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowerdestination-9ee13d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowerdestination-9ee13d.jpg" }, { "if": { @@ -111754,71 +111903,71 @@ } ] }, - "then": "./assets/data/nsi/logos/niopowercharger-9ee13d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niopowercharger-9ee13d.jpg" }, { "if": { "and": [ "office=association", - "official_name=Auto Club Europa", { "or": [ "brand=ACE", "brand:wikidata=Q784865", - "name=ACE" + "name=ACE", + "official_name=Auto Club Europa" ] } ] }, - "then": "./assets/data/nsi/logos/ace-496920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ace-496920.jpg" }, { "if": { "and": [ "office=association", - "official_name=ACV Automobil-Club Verkehr", { "or": [ "brand=ACV", "brand:wikidata=Q288866", - "name=ACV" + "name=ACV", + "official_name=ACV Automobil-Club Verkehr" ] } ] }, - "then": "./assets/data/nsi/logos/acv-496920.svg" + "then": "https://data.mapcomplete.org/nsi//logos/acv-496920.svg" }, { "if": { "and": [ "office=association", - "official_name=Allgemeiner Deutscher Automobil-Club", { "or": [ "brand=ADAC", "brand:wikidata=Q289953", - "name=ADAC" + "name=ADAC", + "official_name=Allgemeiner Deutscher Automobil-Club" ] } ] }, - "then": "./assets/data/nsi/logos/adac-496920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adac-496920.jpg" }, { "if": { "and": [ "office=association", - "official_name=Allgemeiner Deutscher Fahrrad-Club", { "or": [ "brand=ADFC", "brand:wikidata=Q24349", - "name=ADFC" + "name=ADFC", + "official_name=Allgemeiner Deutscher Fahrrad-Club" ] } ] }, - "then": "./assets/data/nsi/logos/adfc-496920.png" + "then": "https://data.mapcomplete.org/nsi//logos/adfc-496920.png" }, { "if": { @@ -111833,7 +111982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeitersamariterbund-496920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-496920.jpg" }, { "if": { @@ -111848,23 +111997,23 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeiterwohlfahrt-496920.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-496920.svg" }, { "if": { "and": [ "office=association", - "official_name=Bund für Umwelt und Naturschutz Deutschland", { "or": [ "brand=BUND", "brand:wikidata=Q897009", - "name=BUND" + "name=BUND", + "official_name=Bund für Umwelt und Naturschutz Deutschland" ] } ] }, - "then": "./assets/data/nsi/logos/bund-496920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bund-496920.jpg" }, { "if": { @@ -111879,7 +112028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesroteskreuz-496920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-496920.jpg" }, { "if": { @@ -111894,23 +112043,23 @@ } ] }, - "then": "./assets/data/nsi/logos/diakonie-496920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diakonie-496920.jpg" }, { "if": { "and": [ "office=association", - "official_name=Deutsche Lebens-Rettungs-Gesellschaft", { "or": [ "brand=DLRG", "brand:wikidata=Q871679", - "name=DLRG" + "name=DLRG", + "official_name=Deutsche Lebens-Rettungs-Gesellschaft" ] } ] }, - "then": "./assets/data/nsi/logos/dlrg-496920.png" + "then": "https://data.mapcomplete.org/nsi//logos/dlrg-496920.png" }, { "if": { @@ -111925,7 +112074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenpeace-a7aa2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenpeace-a7aa2a.jpg" }, { "if": { @@ -111940,7 +112089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johanniterunfallhilfe-496920.png" + "then": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfe-496920.png" }, { "if": { @@ -111955,39 +112104,39 @@ } ] }, - "then": "./assets/data/nsi/logos/malteserhilfsdienst-496920.png" + "then": "https://data.mapcomplete.org/nsi//logos/malteserhilfsdienst-496920.png" }, { "if": { "and": [ "office=association", - "official_name=Naturschutzbund Deutschland", { "or": [ "brand=NABU", "brand:wikidata=Q516755", - "name=NABU" + "name=NABU", + "official_name=Naturschutzbund Deutschland" ] } ] }, - "then": "./assets/data/nsi/logos/nabu-496920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nabu-496920.jpg" }, { "if": { "and": [ "office=association", - "official_name=Verkehrsclub Deutschland", { "or": [ "brand=VCD", "brand:wikidata=Q2516162", - "name=VCD" + "name=VCD", + "official_name=Verkehrsclub Deutschland" ] } ] }, - "then": "./assets/data/nsi/logos/vcd-496920.png" + "then": "https://data.mapcomplete.org/nsi//logos/vcd-496920.png" }, { "if": { @@ -112003,7 +112152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aladdinbailbonds-e2590f.png" + "then": "https://data.mapcomplete.org/nsi//logos/aladdinbailbonds-e2590f.png" }, { "if": { @@ -112019,7 +112168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fischerhomes-ae3287.png" + "then": "https://data.mapcomplete.org/nsi//logos/fischerhomes-ae3287.png" }, { "if": { @@ -112034,7 +112183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/google-4a77e8.png" + "then": "https://data.mapcomplete.org/nsi//logos/google-4a77e8.png" }, { "if": { @@ -112049,7 +112198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ironmountain-ae3287.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ironmountain-ae3287.jpg" }, { "if": { @@ -112064,7 +112213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siemens-4a77e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siemens-4a77e8.jpg" }, { "if": { @@ -112079,7 +112228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thales-4a77e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thales-4a77e8.jpg" }, { "if": { @@ -112094,7 +112243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomtom-4a77e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomtom-4a77e8.jpg" }, { "if": { @@ -112109,7 +112258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accenture-2207a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accenture-2207a5.jpg" }, { "if": { @@ -112124,7 +112273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bdocanada-89719a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bdocanada-89719a.jpg" }, { "if": { @@ -112139,7 +112288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bostonconsultinggroup-2207a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bostonconsultinggroup-2207a5.jpg" }, { "if": { @@ -112154,7 +112303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deloitte-2207a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/deloitte-2207a5.png" }, { "if": { @@ -112169,39 +112318,39 @@ } ] }, - "then": "./assets/data/nsi/logos/ecovis-10b2fd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ecovis-10b2fd.svg" }, { "if": { "and": [ "office=consulting", - "official_name=Ernst & Young", { "or": [ "brand=EY", "brand:wikidata=Q489097", - "name=EY" + "name=EY", + "official_name=Ernst & Young" ] } ] }, - "then": "./assets/data/nsi/logos/ey-2207a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/ey-2207a5.png" }, { "if": { "and": [ "office=consulting", - "official_name=Indra Sistemas, S.A.", { "or": [ "brand=Indra", "brand:wikidata=Q1661823", - "name=Indra" + "name=Indra", + "official_name=Indra Sistemas, S.A." ] } ] }, - "then": "./assets/data/nsi/logos/indra-2207a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indra-2207a5.jpg" }, { "if": { @@ -112216,7 +112365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kearney-2207a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kearney-2207a5.jpg" }, { "if": { @@ -112231,7 +112380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kpmg-2207a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kpmg-2207a5.jpg" }, { "if": { @@ -112246,7 +112395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mckinseyandcompany-2207a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mckinseyandcompany-2207a5.jpg" }, { "if": { @@ -112261,23 +112410,23 @@ } ] }, - "then": "./assets/data/nsi/logos/morganlewisandbockius-ef3027.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morganlewisandbockius-ef3027.jpg" }, { "if": { "and": [ "office=consulting", - "official_name=PricewaterhouseCoopers", { "or": [ "brand=PwC", "brand:wikidata=Q488048", - "name=PwC" + "name=PwC", + "official_name=PricewaterhouseCoopers" ] } ] }, - "then": "./assets/data/nsi/logos/pwc-2207a5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pwc-2207a5.svg" }, { "if": { @@ -112292,7 +112441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synaxon-e9ad7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synaxon-e9ad7a.jpg" }, { "if": { @@ -112308,7 +112457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/awfis-2107c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/awfis-2107c0.png" }, { "if": { @@ -112324,7 +112473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocreationhub-745387.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocreationhub-745387.jpg" }, { "if": { @@ -112339,7 +112488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/designoffices-abbc19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/designoffices-abbc19.jpg" }, { "if": { @@ -112354,7 +112503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dropin-80a88a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dropin-80a88a.jpg" }, { "if": { @@ -112369,7 +112518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/impacthub-cfb41b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/impacthub-cfb41b.svg" }, { "if": { @@ -112385,7 +112534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifetimework-7094fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifetimework-7094fa.jpg" }, { "if": { @@ -112400,7 +112549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainyardstudios-80a88a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mainyardstudios-80a88a.jpg" }, { "if": { @@ -112415,7 +112564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regus-cfb41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regus-cfb41b.jpg" }, { "if": { @@ -112431,7 +112580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secondhome-b3460a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/secondhome-b3460a.jpg" }, { "if": { @@ -112446,7 +112595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spaces-92cb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spaces-92cb94.jpg" }, { "if": { @@ -112461,7 +112610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/techspace-8a2e48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/techspace-8a2e48.jpg" }, { "if": { @@ -112485,7 +112634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucommune-a8f329.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucommune-a8f329.jpg" }, { "if": { @@ -112507,7 +112656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucommune-a6089e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucommune-a6089e.jpg" }, { "if": { @@ -112529,7 +112678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucommune-4ed4b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucommune-4ed4b9.jpg" }, { "if": { @@ -112553,7 +112702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucommune-4d61d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucommune-4d61d2.jpg" }, { "if": { @@ -112569,7 +112718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wework-cfb41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wework-cfb41b.jpg" }, { "if": { @@ -112585,7 +112734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worklife-5c713b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worklife-5c713b.jpg" }, { "if": { @@ -112600,7 +112749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accentjobs-26db9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accentjobs-26db9d.jpg" }, { "if": { @@ -112615,7 +112764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adecco-0baa05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adecco-0baa05.jpg" }, { "if": { @@ -112630,7 +112779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agenturfurarbeit-d474df.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agenturfurarbeit-d474df.svg" }, { "if": { @@ -112646,7 +112795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arbeitsmarktserviceosterreich-69b0ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arbeitsmarktserviceosterreich-69b0ce.jpg" }, { "if": { @@ -112661,7 +112810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cintas-61ea6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/cintas-61ea6e.png" }, { "if": { @@ -112676,7 +112825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/critinterim-e5fc42.png" + "then": "https://data.mapcomplete.org/nsi//logos/critinterim-e5fc42.png" }, { "if": { @@ -112691,7 +112840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/driverhire-e4b4b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/driverhire-e4b4b7.jpg" }, { "if": { @@ -112706,7 +112855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressemploymentprofessionals-867cf6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressemploymentprofessionals-867cf6.jpg" }, { "if": { @@ -112721,23 +112870,23 @@ } ] }, - "then": "./assets/data/nsi/logos/francetravail-9e0ae6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/francetravail-9e0ae6.jpg" }, { "if": { "and": [ "office=employment_agency", - "official_name=Türkiye İş Kurumu", { "or": [ "brand=İŞKUR", "brand:wikidata=Q6001879", - "name=İŞKUR" + "name=İŞKUR", + "official_name=Türkiye İş Kurumu" ] } ] }, - "then": "./assets/data/nsi/logos/iskur-591089.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iskur-591089.jpg" }, { "if": { @@ -112752,7 +112901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jobcenter-d474df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jobcenter-d474df.jpg" }, { "if": { @@ -112767,7 +112916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jobcentreplus-e4b4b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jobcentreplus-e4b4b7.jpg" }, { "if": { @@ -112782,7 +112931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kellyservices-0baa05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kellyservices-0baa05.jpg" }, { "if": { @@ -112797,7 +112946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manpower-0baa05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manpower-0baa05.jpg" }, { "if": { @@ -112812,7 +112961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/officeangels-e4b4b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/officeangels-e4b4b7.jpg" }, { "if": { @@ -112827,7 +112976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peopleready-81c4e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/peopleready-81c4e9.png" }, { "if": { @@ -112842,7 +112991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proman-9e0ae6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/proman-9e0ae6.jpg" }, { "if": { @@ -112857,7 +113006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/randstad-f7dc26.svg" + "then": "https://data.mapcomplete.org/nsi//logos/randstad-f7dc26.svg" }, { "if": { @@ -112872,7 +113021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/startpeople-45a424.png" + "then": "https://data.mapcomplete.org/nsi//logos/startpeople-45a424.png" }, { "if": { @@ -112887,7 +113036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synergie-e5fc42.svg" + "then": "https://data.mapcomplete.org/nsi//logos/synergie-e5fc42.svg" }, { "if": { @@ -112902,7 +113051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synergie-c147be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synergie-c147be.jpg" }, { "if": { @@ -112917,7 +113066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tempoteam-a6688c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tempoteam-a6688c.jpg" }, { "if": { @@ -112932,7 +113081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/therecruitmentco-e4b4b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/therecruitmentco-e4b4b7.jpg" }, { "if": { @@ -112951,15 +113100,12 @@ } ] }, - "then": "./assets/data/nsi/logos/pasona-ea06d3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pasona-ea06d3.svg" }, { "if": { "and": [ "office=employment_agency", - "official_name=公共職業安定所", - "official_name:en=Public Employment Security Office", - "official_name:ja=公共職業安定所", { "or": [ "brand=ハローワーク", @@ -112968,12 +113114,15 @@ "brand:wikidata=Q5016578", "name=ハローワーク", "name:en=Hello Work", - "name:ja=ハローワーク" + "name:ja=ハローワーク", + "official_name=公共職業安定所", + "official_name:en=Public Employment Security Office", + "official_name:ja=公共職業安定所" ] } ] }, - "then": "./assets/data/nsi/logos/hellowork-ea06d3.png" + "then": "https://data.mapcomplete.org/nsi//logos/hellowork-ea06d3.png" }, { "if": { @@ -112988,7 +113137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alstom-3739d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/alstom-3739d4.png" }, { "if": { @@ -113003,7 +113152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wsp-1283df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wsp-1283df.jpg" }, { "if": { @@ -113026,7 +113175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/century21-dccb44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/century21-dccb44.jpg" }, { "if": { @@ -113045,7 +113194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/century21-3462c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/century21-3462c2.jpg" }, { "if": { @@ -113060,7 +113209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allenandharris-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/allenandharris-aa448d.png" }, { "if": { @@ -113075,7 +113224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bagshawsresidential-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bagshawsresidential-aa448d.png" }, { "if": { @@ -113090,7 +113239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bairstoweves-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bairstoweves-aa448d.jpg" }, { "if": { @@ -113105,7 +113254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barfootandthompson-8dbc65.png" + "then": "https://data.mapcomplete.org/nsi//logos/barfootandthompson-8dbc65.png" }, { "if": { @@ -113120,7 +113269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barnardmarcus-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barnardmarcus-aa448d.jpg" }, { "if": { @@ -113135,7 +113284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barnes-08bb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barnes-08bb13.jpg" }, { "if": { @@ -113150,7 +113299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayleys-d3667a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayleys-d3667a.jpg" }, { "if": { @@ -113166,7 +113315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belleproperty-d66f4e.png" + "then": "https://data.mapcomplete.org/nsi//logos/belleproperty-d66f4e.png" }, { "if": { @@ -113182,7 +113331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berkshirehathawayhomeservices-aec949.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berkshirehathawayhomeservices-aec949.jpg" }, { "if": { @@ -113197,7 +113346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bradleys-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bradleys-aa448d.jpg" }, { "if": { @@ -113212,7 +113361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bridgfords-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bridgfords-aa448d.jpg" }, { "if": { @@ -113227,7 +113376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brownandmerry-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/brownandmerry-aa448d.png" }, { "if": { @@ -113242,7 +113391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buxton-f2ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buxton-f2ceb3.jpg" }, { "if": { @@ -113257,7 +113406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cbre-08bb13.png" + "then": "https://data.mapcomplete.org/nsi//logos/cbre-08bb13.png" }, { "if": { @@ -113272,7 +113421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/century21-145e3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/century21-145e3e.jpg" }, { "if": { @@ -113287,7 +113436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coldwellbanker-08bb13.png" + "then": "https://data.mapcomplete.org/nsi//logos/coldwellbanker-08bb13.png" }, { "if": { @@ -113302,7 +113451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/connells-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/connells-aa448d.png" }, { "if": { @@ -113317,7 +113466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooperandtanner-02d235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooperandtanner-02d235.jpg" }, { "if": { @@ -113332,7 +113481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cushmanandwakefield-08bb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cushmanandwakefield-08bb13.jpg" }, { "if": { @@ -113347,7 +113496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dijones-a43aea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dijones-a43aea.jpg" }, { "if": { @@ -113362,7 +113511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dng-307938.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dng-307938.jpg" }, { "if": { @@ -113377,7 +113526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunahouse-e3d705.png" + "then": "https://data.mapcomplete.org/nsi//logos/dunahouse-e3d705.png" }, { "if": { @@ -113392,7 +113541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edinarealty-aec949.png" + "then": "https://data.mapcomplete.org/nsi//logos/edinarealty-aec949.png" }, { "if": { @@ -113407,7 +113556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engelandvolkers-08bb13.png" + "then": "https://data.mapcomplete.org/nsi//logos/engelandvolkers-08bb13.png" }, { "if": { @@ -113422,7 +113571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eraimmobilier-5155c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/eraimmobilier-5155c2.png" }, { "if": { @@ -113437,7 +113586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erarealestate-bdc562.png" + "then": "https://data.mapcomplete.org/nsi//logos/erarealestate-bdc562.png" }, { "if": { @@ -113454,7 +113603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/era-c3df5e.png" + "then": "https://data.mapcomplete.org/nsi//logos/era-c3df5e.png" }, { "if": { @@ -113469,7 +113618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/falcimmobilien-2b2e07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/falcimmobilien-2b2e07.jpg" }, { "if": { @@ -113484,7 +113633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/felicityjlord-b6a2f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/felicityjlord-b6a2f8.jpg" }, { "if": { @@ -113499,7 +113648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fineandcountry-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fineandcountry-aa448d.jpg" }, { "if": { @@ -113514,7 +113663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstnationalrealestate-54d29c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstnationalrealestate-54d29c.jpg" }, { "if": { @@ -113529,7 +113678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fletchers-f2ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fletchers-f2ceb3.jpg" }, { "if": { @@ -113544,7 +113693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foncia-b7bc37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foncia-b7bc37.jpg" }, { "if": { @@ -113559,7 +113708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foxandsons-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foxandsons-aa448d.jpg" }, { "if": { @@ -113574,7 +113723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foxtons-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foxtons-aa448d.jpg" }, { "if": { @@ -113589,7 +113738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greensladetaylorhunt-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greensladetaylorhunt-aa448d.jpg" }, { "if": { @@ -113604,7 +113753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guyhoquet-ea3ef3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guyhoquet-ea3ef3.jpg" }, { "if": { @@ -113619,7 +113768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haart-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haart-aa448d.jpg" }, { "if": { @@ -113635,7 +113784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamptonsinternational-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamptonsinternational-aa448d.jpg" }, { "if": { @@ -113650,23 +113799,23 @@ } ] }, - "then": "./assets/data/nsi/logos/harcourts-e2b091.png" + "then": "https://data.mapcomplete.org/nsi//logos/harcourts-e2b091.png" }, { "if": { "and": [ "office=estate_agent", - "official_name=Howard Hanna Real Estate Services", { "or": [ "brand=Howard Hanna", "brand:wikidata=Q119573413", - "name=Howard Hanna" + "name=Howard Hanna", + "official_name=Howard Hanna Real Estate Services" ] } ] }, - "then": "./assets/data/nsi/logos/howardhanna-aec949.png" + "then": "https://data.mapcomplete.org/nsi//logos/howardhanna-aec949.png" }, { "if": { @@ -113681,7 +113830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/humanimmobilier-b7bc37.png" + "then": "https://data.mapcomplete.org/nsi//logos/humanimmobilier-b7bc37.png" }, { "if": { @@ -113696,7 +113845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hunters-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hunters-aa448d.jpg" }, { "if": { @@ -113711,7 +113860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jelliscraig-f2ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jelliscraig-f2ceb3.jpg" }, { "if": { @@ -113726,7 +113875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jll-08bb13.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jll-08bb13.svg" }, { "if": { @@ -113741,7 +113890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnlscott-aec949.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnlscott-aec949.jpg" }, { "if": { @@ -113756,7 +113905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonesandchapman-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/jonesandchapman-aa448d.png" }, { "if": { @@ -113771,7 +113920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keatons-b6a2f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keatons-b6a2f8.jpg" }, { "if": { @@ -113786,7 +113935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kellerwilliamsrealty-08bb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kellerwilliamsrealty-08bb13.jpg" }, { "if": { @@ -113801,7 +113950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knightfrank-08bb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knightfrank-08bb13.jpg" }, { "if": { @@ -113816,7 +113965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laforet-ea3ef3.png" + "then": "https://data.mapcomplete.org/nsi//logos/laforet-ea3ef3.png" }, { "if": { @@ -113831,7 +113980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leaders-02d235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leaders-02d235.jpg" }, { "if": { @@ -113846,7 +113995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ljhooker-08bb13.png" + "then": "https://data.mapcomplete.org/nsi//logos/ljhooker-08bb13.png" }, { "if": { @@ -113861,7 +114010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longandfoster-aec949.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longandfoster-aec949.jpg" }, { "if": { @@ -113876,7 +114025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mannersandharrison-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mannersandharrison-aa448d.jpg" }, { "if": { @@ -113891,7 +114040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martinandco-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/martinandco-aa448d.png" }, { "if": { @@ -113906,7 +114055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayfairtownandcountry-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayfairtownandcountry-aa448d.jpg" }, { "if": { @@ -113921,7 +114070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcgrath-d66f4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcgrath-d66f4e.jpg" }, { "if": { @@ -113936,7 +114085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcmakler-2b2e07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcmakler-2b2e07.jpg" }, { "if": { @@ -113951,7 +114100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nelsonalexander-f2ceb3.png" + "then": "https://data.mapcomplete.org/nsi//logos/nelsonalexander-f2ceb3.png" }, { "if": { @@ -113966,7 +114115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nestenn-b7bc37.png" + "then": "https://data.mapcomplete.org/nsi//logos/nestenn-b7bc37.png" }, { "if": { @@ -113981,7 +114130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexity-b7bc37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nexity-b7bc37.jpg" }, { "if": { @@ -113996,7 +114145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orpi-ea3ef3.png" + "then": "https://data.mapcomplete.org/nsi//logos/orpi-ea3ef3.png" }, { "if": { @@ -114011,7 +114160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmersnell-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmersnell-aa448d.jpg" }, { "if": { @@ -114026,7 +114175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pamgoldingproperties-80530e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pamgoldingproperties-80530e.jpg" }, { "if": { @@ -114041,7 +114190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkers-02d235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkers-02d235.jpg" }, { "if": { @@ -114056,7 +114205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rawsonpropertygroup-0c74af.png" + "then": "https://data.mapcomplete.org/nsi//logos/rawsonpropertygroup-0c74af.png" }, { "if": { @@ -114071,7 +114220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raywhite-85c03d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raywhite-85c03d.jpg" }, { "if": { @@ -114086,7 +114235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/remax-08bb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/remax-08bb13.jpg" }, { "if": { @@ -114101,7 +114250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/realtyexecutives-aec949.png" + "then": "https://data.mapcomplete.org/nsi//logos/realtyexecutives-aec949.png" }, { "if": { @@ -114116,7 +114265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reedsrains-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reedsrains-aa448d.jpg" }, { "if": { @@ -114131,7 +114280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rogerplatt-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/rogerplatt-aa448d.png" }, { "if": { @@ -114146,7 +114295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romans-02d235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romans-02d235.jpg" }, { "if": { @@ -114161,7 +114310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royallepage-376811.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royallepage-376811.jpg" }, { "if": { @@ -114176,7 +114325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savills-08bb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/savills-08bb13.jpg" }, { "if": { @@ -114191,7 +114340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sherryfitzgerald-307938.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sherryfitzgerald-307938.jpg" }, { "if": { @@ -114206,7 +114355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shipways-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/shipways-aa448d.png" }, { "if": { @@ -114221,7 +114370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/squarehabitat-b7bc37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/squarehabitat-b7bc37.jpg" }, { "if": { @@ -114236,7 +114385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stags-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stags-aa448d.jpg" }, { "if": { @@ -114251,7 +114400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stephaneplazaimmobilier-b7bc37.png" + "then": "https://data.mapcomplete.org/nsi//logos/stephaneplazaimmobilier-b7bc37.png" }, { "if": { @@ -114266,7 +114415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stirlingackroyd-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stirlingackroyd-aa448d.jpg" }, { "if": { @@ -114281,7 +114430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stone-d66f4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stone-d66f4e.jpg" }, { "if": { @@ -114296,7 +114445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/struttandparker-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/struttandparker-aa448d.jpg" }, { "if": { @@ -114311,7 +114460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swetenhams-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/swetenhams-aa448d.png" }, { "if": { @@ -114326,7 +114475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/symondsandsampson-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/symondsandsampson-aa448d.jpg" }, { "if": { @@ -114341,7 +114490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taylors-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taylors-aa448d.jpg" }, { "if": { @@ -114356,7 +114505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tecnocasa-ed2199.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tecnocasa-ed2199.jpg" }, { "if": { @@ -114371,7 +114520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tempocasa-0731e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tempocasa-0731e9.jpg" }, { "if": { @@ -114386,7 +114535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townends-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townends-aa448d.jpg" }, { "if": { @@ -114401,7 +114550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vonpollimmobilien-0fbcd3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vonpollimmobilien-0fbcd3.jpg" }, { "if": { @@ -114416,7 +114565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vonpollrealestate-c99072.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vonpollrealestate-c99072.jpg" }, { "if": { @@ -114431,7 +114580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/webbers-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/webbers-aa448d.jpg" }, { "if": { @@ -114446,7 +114595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weichert-aec949.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weichert-aec949.jpg" }, { "if": { @@ -114461,7 +114610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/williamhbrown-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/williamhbrown-aa448d.jpg" }, { "if": { @@ -114476,7 +114625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/windermererealestate-aa448d.png" + "then": "https://data.mapcomplete.org/nsi//logos/windermererealestate-aa448d.png" }, { "if": { @@ -114491,7 +114640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winkworth-08bb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winkworth-08bb13.jpg" }, { "if": { @@ -114506,7 +114655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yourmove-aa448d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yourmove-aa448d.jpg" }, { "if": { @@ -114523,7 +114672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/address-c3df5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/address-c3df5e.jpg" }, { "if": { @@ -114542,7 +114691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apamanshop-60400b.png" + "then": "https://data.mapcomplete.org/nsi//logos/apamanshop-60400b.png" }, { "if": { @@ -114561,7 +114710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/able-60400b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/able-60400b.jpg" }, { "if": { @@ -114580,7 +114729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/century21-60400b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/century21-60400b.jpg" }, { "if": { @@ -114599,7 +114748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pitathouse-60400b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pitathouse-60400b.jpg" }, { "if": { @@ -114618,7 +114767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitsubishiufjrealestateservices-60400b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mitsubishiufjrealestateservices-60400b.svg" }, { "if": { @@ -114637,7 +114786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/century21-295f7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/century21-295f7a.jpg" }, { "if": { @@ -114660,7 +114809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctbcrealestate-dccb44.png" + "then": "https://data.mapcomplete.org/nsi//logos/ctbcrealestate-dccb44.png" }, { "if": { @@ -114679,7 +114828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centalineproperty-295f7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centalineproperty-295f7a.jpg" }, { "if": { @@ -114698,7 +114847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinyirealty-dccb44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinyirealty-dccb44.jpg" }, { "if": { @@ -114717,7 +114866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ricacorpproperties-d2db80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ricacorpproperties-d2db80.jpg" }, { "if": { @@ -114740,7 +114889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanrealtyestate-dccb44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanrealtyestate-dccb44.jpg" }, { "if": { @@ -114763,7 +114912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easternrealty-dccb44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easternrealty-dccb44.jpg" }, { "if": { @@ -114782,7 +114931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yungching-dccb44.png" + "then": "https://data.mapcomplete.org/nsi//logos/yungching-dccb44.png" }, { "if": { @@ -114801,7 +114950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midlandrealty-295f7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midlandrealty-295f7a.jpg" }, { "if": { @@ -114820,7 +114969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lianjia-3462c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/lianjia-3462c2.png" }, { "if": { @@ -114839,7 +114988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongproperty-d2db80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongproperty-d2db80.jpg" }, { "if": { @@ -114854,7 +115003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafpi-1791d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafpi-1791d3.jpg" }, { "if": { @@ -114869,7 +115018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cmgfinancial-07b653.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cmgfinancial-07b653.jpg" }, { "if": { @@ -114884,7 +115033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cofidis-8d8ca3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cofidis-8d8ca3.svg" }, { "if": { @@ -114900,23 +115049,23 @@ } ] }, - "then": "./assets/data/nsi/logos/keralafinancialcorporation-8505f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/keralafinancialcorporation-8505f7.png" }, { "if": { "and": [ "office=financial", - "official_name=Kerala State Financial Enterprises", { "or": [ "brand=Kerala State Financial Enterprises", "brand:wikidata=Q6393471", - "name=KSFE" + "name=KSFE", + "official_name=Kerala State Financial Enterprises" ] } ] }, - "then": "./assets/data/nsi/logos/ksfe-8505f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ksfe-8505f7.jpg" }, { "if": { @@ -114931,7 +115080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manappuramgeneralfinanceandleasing-8505f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manappuramgeneralfinanceandleasing-8505f7.jpg" }, { "if": { @@ -114946,7 +115095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morganstanley-433028.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morganstanley-433028.jpg" }, { "if": { @@ -114961,7 +115110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muthootfinance-47d4e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/muthootfinance-47d4e7.png" }, { "if": { @@ -114976,7 +115125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldmutualfinance-38693f.png" + "then": "https://data.mapcomplete.org/nsi//logos/oldmutualfinance-38693f.png" }, { "if": { @@ -114991,7 +115140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vousfinancer-1791d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vousfinancer-1791d3.jpg" }, { "if": { @@ -115007,7 +115156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ymanci-1791d3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ymanci-1791d3.svg" }, { "if": { @@ -115022,7 +115171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameriprisefinancial-f55434.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameriprisefinancial-f55434.png" }, { "if": { @@ -115037,7 +115186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charlesschwab-f55434.png" + "then": "https://data.mapcomplete.org/nsi//logos/charlesschwab-f55434.png" }, { "if": { @@ -115052,7 +115201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dehypotheker-59d603.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dehypotheker-59d603.jpg" }, { "if": { @@ -115068,7 +115217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edwardjones-ea0e83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edwardjones-ea0e83.jpg" }, { "if": { @@ -115084,7 +115233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelityinvestments-f55434.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fidelityinvestments-f55434.jpg" }, { "if": { @@ -115099,7 +115248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merrilllynchwealthmanagement-f55434.png" + "then": "https://data.mapcomplete.org/nsi//logos/merrilllynchwealthmanagement-f55434.png" }, { "if": { @@ -115114,7 +115263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mlp-04d559.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mlp-04d559.svg" }, { "if": { @@ -115129,7 +115278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nmmoney-ce19a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nmmoney-ce19a6.jpg" }, { "if": { @@ -115144,7 +115293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ovbholding-04d559.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ovbholding-04d559.svg" }, { "if": { @@ -115159,7 +115308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raymondjames-ea0e83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raymondjames-ea0e83.jpg" }, { "if": { @@ -115174,7 +115323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rbcwealthmanagement-491349.png" + "then": "https://data.mapcomplete.org/nsi//logos/rbcwealthmanagement-491349.png" }, { "if": { @@ -115189,7 +115338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sageviewadvisorygroup-f55434.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sageviewadvisorygroup-f55434.jpg" }, { "if": { @@ -115204,7 +115353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solva-255c4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/solva-255c4c.jpg" }, { "if": { @@ -115219,7 +115368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisslifeselect-1e9d61.png" + "then": "https://data.mapcomplete.org/nsi//logos/swisslifeselect-1e9d61.png" }, { "if": { @@ -115234,7 +115383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tdameritrade-f55434.png" + "then": "https://data.mapcomplete.org/nsi//logos/tdameritrade-f55434.png" }, { "if": { @@ -115249,7 +115398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thrivent-f55434.png" + "then": "https://data.mapcomplete.org/nsi//logos/thrivent-f55434.png" }, { "if": { @@ -115264,7 +115413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubsfinancialservices-f55434.png" + "then": "https://data.mapcomplete.org/nsi//logos/ubsfinancialservices-f55434.png" }, { "if": { @@ -115279,7 +115428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellsfargoadvisors-f55434.png" + "then": "https://data.mapcomplete.org/nsi//logos/wellsfargoadvisors-f55434.png" }, { "if": { @@ -115296,7 +115445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bcsfinancialgroup-608a42.gif" + "then": "https://data.mapcomplete.org/nsi//logos/bcsfinancialgroup-608a42.gif" }, { "if": { @@ -115315,7 +115464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinasecurities-fe1d6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/chinasecurities-fe1d6b.png" }, { "if": { @@ -115334,7 +115483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huataisecurities-fe1d6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/huataisecurities-fe1d6b.png" }, { "if": { @@ -115353,7 +115502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guotaijunansecurities-fe1d6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guotaijunansecurities-fe1d6b.jpg" }, { "if": { @@ -115372,7 +115521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightsmartsecurities-a6a387.png" + "then": "https://data.mapcomplete.org/nsi//logos/brightsmartsecurities-a6a387.png" }, { "if": { @@ -115387,7 +115536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franceservices-9f865c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/franceservices-9f865c.jpg" }, { "if": { @@ -115403,7 +115552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amaxautoinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amaxautoinsurance-6b1e37.jpg" }, { "if": { @@ -115419,7 +115568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aaainsurance-6b1e37.png" + "then": "https://data.mapcomplete.org/nsi//logos/aaainsurance-6b1e37.png" }, { "if": { @@ -115435,7 +115584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesiomutuelle-8c2e7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aesiomutuelle-8c2e7e.jpg" }, { "if": { @@ -115450,7 +115599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aflac-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aflac-6b1e37.jpg" }, { "if": { @@ -115465,7 +115614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allianz-c74935.png" + "then": "https://data.mapcomplete.org/nsi//logos/allianz-c74935.png" }, { "if": { @@ -115480,7 +115629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allstate-a15ce9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allstate-a15ce9.jpg" }, { "if": { @@ -115495,7 +115644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanfamilyinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americanfamilyinsurance-6b1e37.jpg" }, { "if": { @@ -115511,7 +115660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aokbadenwurttemberg-acef14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aokbadenwurttemberg-acef14.jpg" }, { "if": { @@ -115527,7 +115676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aokbayern-de4e1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aokbayern-de4e1c.jpg" }, { "if": { @@ -115543,7 +115692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aokbremenbremerhaven-b4fc7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aokbremenbremerhaven-b4fc7f.jpg" }, { "if": { @@ -115559,7 +115708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aokhessen-0f1fff.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aokhessen-0f1fff.svg" }, { "if": { @@ -115575,7 +115724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aokniedersachsen-4afeed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aokniedersachsen-4afeed.svg" }, { "if": { @@ -115591,7 +115740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aoknordost-b4a1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aoknordost-b4a1fb.jpg" }, { "if": { @@ -115607,7 +115756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aoknordwest-e1ae53.png" + "then": "https://data.mapcomplete.org/nsi//logos/aoknordwest-e1ae53.png" }, { "if": { @@ -115623,7 +115772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aokplus-6e8fbd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aokplus-6e8fbd.svg" }, { "if": { @@ -115639,7 +115788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aokrheinlandpfalzsaarland-a99a7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aokrheinlandpfalzsaarland-a99a7b.jpg" }, { "if": { @@ -115655,7 +115804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aokrheinlandhamburg-2c6953.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aokrheinlandhamburg-2c6953.jpg" }, { "if": { @@ -115671,7 +115820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aoksachsenanhalt-dc3c84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aoksachsenanhalt-dc3c84.jpg" }, { "if": { @@ -115687,7 +115836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arag-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arag-422e71.jpg" }, { "if": { @@ -115706,7 +115855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arx-43aba6.png" + "then": "https://data.mapcomplete.org/nsi//logos/arx-43aba6.png" }, { "if": { @@ -115721,7 +115870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asepeyo-38d127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asepeyo-38d127.jpg" }, { "if": { @@ -115736,7 +115885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/assu2000-8c2e7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/assu2000-8c2e7e.jpg" }, { "if": { @@ -115751,7 +115900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/assupol-bf6fe2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/assupol-bf6fe2.jpg" }, { "if": { @@ -115766,7 +115915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/assuredpartners-a47c9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/assuredpartners-a47c9c.jpg" }, { "if": { @@ -115781,7 +115930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aviva-851fcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aviva-851fcf.jpg" }, { "if": { @@ -115796,7 +115945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axa-2e7672.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axa-2e7672.jpg" }, { "if": { @@ -115812,7 +115961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bahnbkk-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bahnbkk-422e71.jpg" }, { "if": { @@ -115827,7 +115976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baloise-d9a3dd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/baloise-d9a3dd.svg" }, { "if": { @@ -115843,7 +115992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancodobrasilseguridade-af18ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bancodobrasilseguridade-af18ad.jpg" }, { "if": { @@ -115858,7 +116007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bankerslife-6b1e37.png" + "then": "https://data.mapcomplete.org/nsi//logos/bankerslife-6b1e37.png" }, { "if": { @@ -115873,7 +116022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barmenia-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barmenia-422e71.jpg" }, { "if": { @@ -115889,7 +116038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barmer-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barmer-422e71.jpg" }, { "if": { @@ -115905,7 +116054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bgv-422e71.png" + "then": "https://data.mapcomplete.org/nsi//logos/bgv-422e71.png" }, { "if": { @@ -115921,7 +116070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biggesundheit-422e71.png" + "then": "https://data.mapcomplete.org/nsi//logos/biggesundheit-422e71.png" }, { "if": { @@ -115937,7 +116086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkkvbu-422e71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bkkvbu-422e71.svg" }, { "if": { @@ -115952,7 +116101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brokerlink-0c8028.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brokerlink-0c8028.jpg" }, { "if": { @@ -115967,7 +116116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caa-0c8028.png" + "then": "https://data.mapcomplete.org/nsi//logos/caa-0c8028.png" }, { "if": { @@ -115982,7 +116131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caser-38d127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caser-38d127.jpg" }, { "if": { @@ -115997,7 +116146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catalanaoccidente-38d127.svg" + "then": "https://data.mapcomplete.org/nsi//logos/catalanaoccidente-38d127.svg" }, { "if": { @@ -116016,23 +116165,23 @@ } ] }, - "then": "./assets/data/nsi/logos/cathaycenturyinsurance-6809cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cathaycenturyinsurance-6809cb.jpg" }, { "if": { "and": [ "office=insurance", - "official_name=Compañía Española de Seguros de Crédito a la Exportación", { "or": [ "brand=CESCE", "brand:wikidata=Q5737049", - "name=CESCE" + "name=CESCE", + "official_name=Compañía Española de Seguros de Crédito a la Exportación" ] } ] }, - "then": "./assets/data/nsi/logos/cesce-38d127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cesce-38d127.jpg" }, { "if": { @@ -116048,7 +116197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskapodnikatelskapojistovna-3a544f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceskapodnikatelskapojistovna-3a544f.jpg" }, { "if": { @@ -116063,7 +116212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comparioninsuranceagency-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comparioninsuranceagency-6b1e37.jpg" }, { "if": { @@ -116079,7 +116228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/continentale-422e71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/continentale-422e71.svg" }, { "if": { @@ -116094,7 +116243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countryfinancial-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/countryfinancial-6b1e37.jpg" }, { "if": { @@ -116109,7 +116258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csobpoistovna-780b74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csobpoistovna-780b74.jpg" }, { "if": { @@ -116124,7 +116273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cukubezpieczenia-313da8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cukubezpieczenia-313da8.jpg" }, { "if": { @@ -116140,7 +116289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dakgesundheit-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dakgesundheit-422e71.jpg" }, { "if": { @@ -116155,7 +116304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/debeka-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/debeka-422e71.jpg" }, { "if": { @@ -116172,7 +116321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/desjardinsinsurance-0c8028.png" + "then": "https://data.mapcomplete.org/nsi//logos/desjardinsinsurance-0c8028.png" }, { "if": { @@ -116187,7 +116336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devk-422e71.png" + "then": "https://data.mapcomplete.org/nsi//logos/devk-422e71.png" }, { "if": { @@ -116202,7 +116351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/directautoinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/directautoinsurance-6b1e37.jpg" }, { "if": { @@ -116218,7 +116367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dkv-422e71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dkv-422e71.svg" }, { "if": { @@ -116234,7 +116383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dovera-780b74.png" + "then": "https://data.mapcomplete.org/nsi//logos/dovera-780b74.png" }, { "if": { @@ -116249,7 +116398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dvv-df109b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dvv-df109b.jpg" }, { "if": { @@ -116264,7 +116413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ensa-3c8773.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ensa-3c8773.jpg" }, { "if": { @@ -116279,7 +116428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ergo-38191f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ergo-38191f.jpg" }, { "if": { @@ -116294,7 +116443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erieinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erieinsurance-6b1e37.jpg" }, { "if": { @@ -116309,7 +116458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/estrellainsurance-6b1e37.png" + "then": "https://data.mapcomplete.org/nsi//logos/estrellainsurance-6b1e37.png" }, { "if": { @@ -116326,7 +116475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/020645-43aba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/020645-43aba6.jpg" }, { "if": { @@ -116341,7 +116490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmbureaufinancialservices-6b1e37.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmbureaufinancialservices-6b1e37.png" }, { "if": { @@ -116356,7 +116505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmbureauinsurance-473946.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmbureauinsurance-473946.png" }, { "if": { @@ -116371,7 +116520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmersinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmersinsurance-6b1e37.jpg" }, { "if": { @@ -116386,7 +116535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fidelidade-629ea0.png" + "then": "https://data.mapcomplete.org/nsi//logos/fidelidade-629ea0.png" }, { "if": { @@ -116401,7 +116550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foyer-734c77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foyer-734c77.jpg" }, { "if": { @@ -116416,7 +116565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredloyainsurance-6b1e37.png" + "then": "https://data.mapcomplete.org/nsi//logos/fredloyainsurance-6b1e37.png" }, { "if": { @@ -116431,7 +116580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freewayinsurance-6b1e37.png" + "then": "https://data.mapcomplete.org/nsi//logos/freewayinsurance-6b1e37.png" }, { "if": { @@ -116446,7 +116595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fremap-38d127.png" + "then": "https://data.mapcomplete.org/nsi//logos/fremap-38d127.png" }, { "if": { @@ -116461,7 +116610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gan-6ae572.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gan-6ae572.jpg" }, { "if": { @@ -116476,7 +116625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geico-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geico-6b1e37.jpg" }, { "if": { @@ -116491,7 +116640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generali-cb13d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generali-cb13d1.jpg" }, { "if": { @@ -116506,7 +116655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitranquilidade-629ea0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitranquilidade-629ea0.jpg" }, { "if": { @@ -116521,7 +116670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gmf-6ae572.png" + "then": "https://data.mapcomplete.org/nsi//logos/gmf-6ae572.png" }, { "if": { @@ -116536,7 +116685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gooseheadinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gooseheadinsurance-6b1e37.jpg" }, { "if": { @@ -116551,7 +116700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gothaer-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gothaer-422e71.jpg" }, { "if": { @@ -116566,7 +116715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grangeinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grangeinsurance-6b1e37.jpg" }, { "if": { @@ -116581,23 +116730,23 @@ } ] }, - "then": "./assets/data/nsi/logos/grawe-49851b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grawe-49851b.jpg" }, { "if": { "and": [ "office=insurance", - "official_name=Groupe des Assurances Mutuelles Agricoles", { "or": [ "brand=Groupama", "brand:wikidata=Q3083531", - "name=Groupama" + "name=Groupama", + "official_name=Groupe des Assurances Mutuelles Agricoles" ] } ] }, - "then": "./assets/data/nsi/logos/groupama-bb2387.png" + "then": "https://data.mapcomplete.org/nsi//logos/groupama-bb2387.png" }, { "if": { @@ -116612,7 +116761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansemerkur-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hansemerkur-422e71.jpg" }, { "if": { @@ -116627,7 +116776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harmoniemutuelle-8c2e7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harmoniemutuelle-8c2e7e.jpg" }, { "if": { @@ -116642,7 +116791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hdfclife-9d27b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hdfclife-9d27b9.jpg" }, { "if": { @@ -116657,7 +116806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hdi-422e71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hdi-422e71.svg" }, { "if": { @@ -116672,7 +116821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helvetia-f9490e.png" + "then": "https://data.mapcomplete.org/nsi//logos/helvetia-f9490e.png" }, { "if": { @@ -116688,7 +116837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hkkkrankenkasse-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hkkkrankenkasse-422e71.jpg" }, { "if": { @@ -116703,7 +116852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/howden-23333b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/howden-23333b.jpg" }, { "if": { @@ -116718,7 +116867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hukcoburg-422e71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hukcoburg-422e71.svg" }, { "if": { @@ -116733,7 +116882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iandgbrokers-ef0911.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iandgbrokers-ef0911.jpg" }, { "if": { @@ -116749,7 +116898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikkdieinnovationskasse-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikkdieinnovationskasse-422e71.jpg" }, { "if": { @@ -116765,7 +116914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikkbrandenburgundberlin-89228e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikkbrandenburgundberlin-89228e.jpg" }, { "if": { @@ -116781,7 +116930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikkclassic-422e71.png" + "then": "https://data.mapcomplete.org/nsi//logos/ikkclassic-422e71.png" }, { "if": { @@ -116797,7 +116946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikkgesundplus-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikkgesundplus-422e71.jpg" }, { "if": { @@ -116813,7 +116962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikksudwest-20a36d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikksudwest-20a36d.jpg" }, { "if": { @@ -116832,7 +116981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ingo-43aba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ingo-43aba6.jpg" }, { "if": { @@ -116847,7 +116996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/insurancenavybrokers-082118.png" + "then": "https://data.mapcomplete.org/nsi//logos/insurancenavybrokers-082118.png" }, { "if": { @@ -116863,7 +117012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kkh-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kkh-422e71.jpg" }, { "if": { @@ -116879,7 +117028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knappschaft-422e71.png" + "then": "https://data.mapcomplete.org/nsi//logos/knappschaft-422e71.png" }, { "if": { @@ -116894,7 +117043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komunalnapoistovna-780b74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komunalnapoistovna-780b74.jpg" }, { "if": { @@ -116909,7 +117058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kooperativa-98fcf6.png" + "then": "https://data.mapcomplete.org/nsi//logos/kooperativa-98fcf6.png" }, { "if": { @@ -116924,7 +117073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lalux-734c77.png" + "then": "https://data.mapcomplete.org/nsi//logos/lalux-734c77.png" }, { "if": { @@ -116939,7 +117088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legalwise-bf6fe2.png" + "then": "https://data.mapcomplete.org/nsi//logos/legalwise-bf6fe2.png" }, { "if": { @@ -116954,7 +117103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertygrouplimited-bf6fe2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libertygrouplimited-bf6fe2.jpg" }, { "if": { @@ -116969,7 +117118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertymutualinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libertymutualinsurance-6b1e37.jpg" }, { "if": { @@ -116984,7 +117133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertyseguros-38d127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libertyseguros-38d127.jpg" }, { "if": { @@ -117000,7 +117149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifeinsurancecorporation-9d27b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifeinsurancecorporation-9d27b9.jpg" }, { "if": { @@ -117015,7 +117164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lineadirecta-38d127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lineadirecta-38d127.jpg" }, { "if": { @@ -117030,7 +117179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lvm-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lvm-422e71.jpg" }, { "if": { @@ -117045,7 +117194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maaf-6ae572.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maaf-6ae572.jpg" }, { "if": { @@ -117060,23 +117209,23 @@ } ] }, - "then": "./assets/data/nsi/logos/macif-8c2e7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/macif-8c2e7e.png" }, { "if": { "and": [ "office=insurance", - "official_name=Mutuelle d'assurance des instituteurs de France", { "or": [ "brand=Maif", "brand:wikidata=Q3331029", - "name=Maif" + "name=Maif", + "official_name=Mutuelle d'assurance des instituteurs de France" ] } ] }, - "then": "./assets/data/nsi/logos/maif-6ae572.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maif-6ae572.jpg" }, { "if": { @@ -117091,7 +117240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mapfre-b9b33f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mapfre-b9b33f.jpg" }, { "if": { @@ -117106,7 +117255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matmut-8c2e7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/matmut-8c2e7e.jpg" }, { "if": { @@ -117121,7 +117270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxlifeinsurance-9d27b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxlifeinsurance-9d27b9.jpg" }, { "if": { @@ -117136,7 +117285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mecklenburgische-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mecklenburgische-422e71.jpg" }, { "if": { @@ -117152,7 +117301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medibank-437259.svg" + "then": "https://data.mapcomplete.org/nsi//logos/medibank-437259.svg" }, { "if": { @@ -117167,7 +117316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolitan-bf6fe2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolitan-bf6fe2.jpg" }, { "if": { @@ -117182,23 +117331,23 @@ } ] }, - "then": "./assets/data/nsi/logos/missourifarmbureauinsurance-2b3a0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missourifarmbureauinsurance-2b3a0f.jpg" }, { "if": { "and": [ "office=insurance", - "official_name=Mutuelles du Mans Assurances", { "or": [ "brand=MMA", "brand:wikidata=Q3331046", - "name=MMA" + "name=MMA", + "official_name=Mutuelles du Mans Assurances" ] } ] }, - "then": "./assets/data/nsi/logos/mma-8c2e7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mma-8c2e7e.jpg" }, { "if": { @@ -117213,7 +117362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mutuamadrilena-38d127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mutuamadrilena-38d127.jpg" }, { "if": { @@ -117228,7 +117377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mutualofomaha-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mutualofomaha-6b1e37.jpg" }, { "if": { @@ -117243,7 +117392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mutuelledepoitiersassurances-8c2e7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/mutuelledepoitiersassurances-8c2e7e.png" }, { "if": { @@ -117258,7 +117407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalinsurancecompany-9d27b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalinsurancecompany-9d27b9.jpg" }, { "if": { @@ -117273,7 +117422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationwide-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationwide-6b1e37.jpg" }, { "if": { @@ -117288,7 +117437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newindiaassurance-9d27b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/newindiaassurance-9d27b9.png" }, { "if": { @@ -117303,7 +117452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorklife-6b1e37.png" + "then": "https://data.mapcomplete.org/nsi//logos/newyorklife-6b1e37.png" }, { "if": { @@ -117318,23 +117467,23 @@ } ] }, - "then": "./assets/data/nsi/logos/nfumutual-23333b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nfumutual-23333b.jpg" }, { "if": { "and": [ "office=insurance", - "official_name=Nationale-Nederlanden", { "or": [ "brand=NN", "brand:wikidata=Q1834291", - "name=NN" + "name=NN", + "official_name=Nationale-Nederlanden" ] } ] }, - "then": "./assets/data/nsi/logos/nn-336e34.png" + "then": "https://data.mapcomplete.org/nsi//logos/nn-336e34.png" }, { "if": { @@ -117349,7 +117498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternmutual-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternmutual-6b1e37.jpg" }, { "if": { @@ -117364,7 +117513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nurnberger-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nurnberger-422e71.jpg" }, { "if": { @@ -117379,7 +117528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocaso-ff07dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocaso-ff07dc.jpg" }, { "if": { @@ -117394,23 +117543,23 @@ } ] }, - "then": "./assets/data/nsi/logos/oldmutualinsure-170662.png" + "then": "https://data.mapcomplete.org/nsi//logos/oldmutualinsure-170662.png" }, { "if": { "and": [ "office=insurance", - "official_name=Öffentliche Versicherung Bremen", { "or": [ "brand=ÖVB", "brand:wikidata=Q294253", - "name=ÖVB" + "name=ÖVB", + "official_name=Öffentliche Versicherung Bremen" ] } ] }, - "then": "./assets/data/nsi/logos/ovb-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ovb-422e71.jpg" }, { "if": { @@ -117425,7 +117574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pelayo-38d127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pelayo-38d127.jpg" }, { "if": { @@ -117440,7 +117589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primerica-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primerica-6b1e37.jpg" }, { "if": { @@ -117455,7 +117604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/progressive-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/progressive-6b1e37.jpg" }, { "if": { @@ -117470,7 +117619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinzial-422e71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinzial-422e71.svg" }, { "if": { @@ -117485,7 +117634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prudential-8102ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prudential-8102ff.jpg" }, { "if": { @@ -117500,7 +117649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prudentialfinancial-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prudentialfinancial-6b1e37.jpg" }, { "if": { @@ -117515,7 +117664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pzu-33d2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pzu-33d2fe.jpg" }, { "if": { @@ -117530,24 +117679,24 @@ } ] }, - "then": "./assets/data/nsi/logos/rvversicherung-422e71.png" + "then": "https://data.mapcomplete.org/nsi//logos/rvversicherung-422e71.png" }, { "if": { "and": [ "office=insurance", - "official_name=Royal Automobile Club of Queensland", { "or": [ "brand=RACQ", "brand:short=RACQ", "brand:wikidata=Q16822163", - "name=RACQ" + "name=RACQ", + "official_name=Royal Automobile Club of Queensland" ] } ] }, - "then": "./assets/data/nsi/logos/racq-57ff94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/racq-57ff94.jpg" }, { "if": { @@ -117562,7 +117711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reale-fe9c1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reale-fe9c1d.jpg" }, { "if": { @@ -117577,7 +117726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santalucia-38d127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santalucia-38d127.jpg" }, { "if": { @@ -117592,7 +117741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbigeneralinsurance-9d27b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sbigeneralinsurance-9d27b9.jpg" }, { "if": { @@ -117607,7 +117756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdibroker-ef0911.png" + "then": "https://data.mapcomplete.org/nsi//logos/sdibroker-ef0911.png" }, { "if": { @@ -117622,7 +117771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shelterinsurance-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shelterinsurance-6b1e37.jpg" }, { "if": { @@ -117637,7 +117786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/signaliduna-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/signaliduna-422e71.jpg" }, { "if": { @@ -117653,7 +117802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/socialnapoistovna-780b74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/socialnapoistovna-780b74.jpg" }, { "if": { @@ -117668,7 +117817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stabilita-780b74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stabilita-780b74.jpg" }, { "if": { @@ -117683,7 +117832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statefarm-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/statefarm-6b1e37.jpg" }, { "if": { @@ -117698,7 +117847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunlifefinancial-0c8028.png" + "then": "https://data.mapcomplete.org/nsi//logos/sunlifefinancial-0c8028.png" }, { "if": { @@ -117713,7 +117862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svsparkassenversicherung-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/svsparkassenversicherung-422e71.jpg" }, { "if": { @@ -117728,7 +117877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swinton-23333b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swinton-23333b.jpg" }, { "if": { @@ -117743,7 +117892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisslife-aab9d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisslife-aab9d2.jpg" }, { "if": { @@ -117760,7 +117909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technikerkrankenkasse-422e71.png" + "then": "https://data.mapcomplete.org/nsi//logos/technikerkrankenkasse-422e71.png" }, { "if": { @@ -117775,7 +117924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasfarmbureauinsurance-92243f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasfarmbureauinsurance-92243f.jpg" }, { "if": { @@ -117790,7 +117939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecooperators-0c8028.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecooperators-0c8028.jpg" }, { "if": { @@ -117805,7 +117954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehartford-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehartford-6b1e37.jpg" }, { "if": { @@ -117820,7 +117969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theorientalinsurancecompany-9d27b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/theorientalinsurancecompany-9d27b9.png" }, { "if": { @@ -117835,7 +117984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/union-780b74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/union-780b74.jpg" }, { "if": { @@ -117850,7 +117999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unipolsai-7d926c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unipolsai-7d926c.jpg" }, { "if": { @@ -117865,7 +118014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniqa-dc7360.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniqa-dc7360.png" }, { "if": { @@ -117880,7 +118029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedhealthcare-6b1e37.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedhealthcare-6b1e37.svg" }, { "if": { @@ -117895,7 +118044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedindiainsurancecompany-9d27b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedindiainsurancecompany-9d27b9.jpg" }, { "if": { @@ -117910,7 +118059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universa-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universa-422e71.jpg" }, { "if": { @@ -117929,7 +118078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universalna-43aba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universalna-43aba6.jpg" }, { "if": { @@ -117948,23 +118097,23 @@ } ] }, - "then": "./assets/data/nsi/logos/usg-43aba6.png" + "then": "https://data.mapcomplete.org/nsi//logos/usg-43aba6.png" }, { "if": { "and": [ "office=insurance", - "official_name=VGH Versicherungen", { "or": [ "brand=VGH", "brand:wikidata=Q2505942", - "name=VGH" + "name=VGH", + "official_name=VGH Versicherungen" ] } ] }, - "then": "./assets/data/nsi/logos/vgh-422e71.png" + "then": "https://data.mapcomplete.org/nsi//logos/vgh-422e71.png" }, { "if": { @@ -117979,7 +118128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vidacaixa-38d127.png" + "then": "https://data.mapcomplete.org/nsi//logos/vidacaixa-38d127.png" }, { "if": { @@ -117994,7 +118143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vittoriaassicurazioni-7d926c.png" + "then": "https://data.mapcomplete.org/nsi//logos/vittoriaassicurazioni-7d926c.png" }, { "if": { @@ -118011,7 +118160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vseobecnazdravotnapoistovna-780b74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vseobecnazdravotnapoistovna-780b74.jpg" }, { "if": { @@ -118030,7 +118179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vuso-43aba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vuso-43aba6.jpg" }, { "if": { @@ -118045,7 +118194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warta-313da8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warta-313da8.jpg" }, { "if": { @@ -118060,7 +118209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wfgnationaltitleinsurancecompany-6b1e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wfgnationaltitleinsurancecompany-6b1e37.jpg" }, { "if": { @@ -118075,7 +118224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienerstadtischeversicherung-4ff154.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienerstadtischeversicherung-4ff154.jpg" }, { "if": { @@ -118090,7 +118239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wurttembergische-422e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wurttembergische-422e71.jpg" }, { "if": { @@ -118105,7 +118254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wustenrot-4e7038.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wustenrot-4e7038.jpg" }, { "if": { @@ -118120,7 +118269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zurich-2d6c95.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zurich-2d6c95.svg" }, { "if": { @@ -118135,7 +118284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/039307-ef0911.png" + "then": "https://data.mapcomplete.org/nsi//logos/039307-ef0911.png" }, { "if": { @@ -118156,7 +118305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belgosstrakh-fe8e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belgosstrakh-fe8e31.jpg" }, { "if": { @@ -118171,7 +118320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/be0548-ef0911.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/be0548-ef0911.jpg" }, { "if": { @@ -118188,7 +118337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunavosiguranje-29f839.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunavosiguranje-29f839.jpg" }, { "if": { @@ -118207,7 +118356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ingosstrakh-1dd572.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ingosstrakh-1dd572.jpg" }, { "if": { @@ -118222,7 +118371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/352df3-1dd572.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/352df3-1dd572.jpg" }, { "if": { @@ -118237,7 +118386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7df9f6-43aba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7df9f6-43aba6.jpg" }, { "if": { @@ -118254,7 +118403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/levins-ef0911.png" + "then": "https://data.mapcomplete.org/nsi//logos/levins-ef0911.png" }, { "if": { @@ -118271,7 +118420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mussala-ef0911.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mussala-ef0911.jpg" }, { "if": { @@ -118286,7 +118435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1fa45d-ef0911.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1fa45d-ef0911.jpg" }, { "if": { @@ -118305,7 +118454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oranta-43aba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oranta-43aba6.jpg" }, { "if": { @@ -118320,7 +118469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cbfb4b-1dd572.png" + "then": "https://data.mapcomplete.org/nsi//logos/cbfb4b-1dd572.png" }, { "if": { @@ -118339,7 +118488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resoguarantee-1dd572.png" + "then": "https://data.mapcomplete.org/nsi//logos/resoguarantee-1dd572.png" }, { "if": { @@ -118354,7 +118503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7de24f-1dd572.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7de24f-1dd572.jpg" }, { "if": { @@ -118373,7 +118522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soglasie-1dd572.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/soglasie-1dd572.jpg" }, { "if": { @@ -118392,7 +118541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tas-43aba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tas-43aba6.jpg" }, { "if": { @@ -118412,7 +118561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ardi-bd4122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ardi-bd4122.jpg" }, { "if": { @@ -118432,7 +118581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tbcinsurance-bd4122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tbcinsurance-bd4122.jpg" }, { "if": { @@ -118452,7 +118601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irao-bd4122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irao-bd4122.jpg" }, { "if": { @@ -118472,7 +118621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gpi-bd4122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gpi-bd4122.jpg" }, { "if": { @@ -118491,7 +118640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iraninsurance-cf8369.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iraninsurance-cf8369.jpg" }, { "if": { @@ -118510,7 +118659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picc-07bd2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/picc-07bd2d.png" }, { "if": { @@ -118530,7 +118679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pingan-07bd2d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pingan-07bd2d.svg" }, { "if": { @@ -118552,7 +118701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinalifeinsurance-6809cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinalifeinsurance-6809cb.jpg" }, { "if": { @@ -118578,7 +118727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinalifeinsuranceoverseas-6b61cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/chinalifeinsuranceoverseas-6b61cd.png" }, { "if": { @@ -118598,7 +118747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chungkuoinsurance-6809cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/chungkuoinsurance-6809cb.png" }, { "if": { @@ -118617,7 +118766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transglobelife-6809cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transglobelife-6809cb.jpg" }, { "if": { @@ -118637,7 +118786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanlifeinsurance-6809cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanlifeinsurance-6809cb.jpg" }, { "if": { @@ -118657,7 +118806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpic-07bd2d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cpic-07bd2d.svg" }, { "if": { @@ -118677,7 +118826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nipponlife-7cc2d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nipponlife-7cc2d1.jpg" }, { "if": { @@ -118696,7 +118845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meijiyasudalife-7cc2d1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/meijiyasudalife-7cc2d1.svg" }, { "if": { @@ -118715,7 +118864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taianinsurance-6809cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taianinsurance-6809cb.jpg" }, { "if": { @@ -118734,7 +118883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daiichilife-7cc2d1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/daiichilife-7cc2d1.svg" }, { "if": { @@ -118749,7 +118898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meta-124efb.png" + "then": "https://data.mapcomplete.org/nsi//logos/meta-124efb.png" }, { "if": { @@ -118764,7 +118913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salesforce-124efb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salesforce-124efb.jpg" }, { "if": { @@ -118779,7 +118928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teamlogicit-560843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teamlogicit-560843.jpg" }, { "if": { @@ -118794,7 +118943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8833b6-c6f3a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/8833b6-c6f3a5.jpg" }, { "if": { @@ -118810,7 +118959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beckerbuttnerheld-8a02aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/beckerbuttnerheld-8a02aa.svg" }, { "if": { @@ -118825,39 +118974,39 @@ } ] }, - "then": "./assets/data/nsi/logos/dentons-0fb954.png" + "then": "https://data.mapcomplete.org/nsi//logos/dentons-0fb954.png" }, { "if": { "and": [ "office=lawyer", - "official_name=Fisher & Phillips", { "or": [ "brand=Fisher & Phillips", "brand:wikidata=Q16993410", - "name=Fisher Phillips" + "name=Fisher Phillips", + "official_name=Fisher & Phillips" ] } ] }, - "then": "./assets/data/nsi/logos/fisherphillips-b93f35.png" + "then": "https://data.mapcomplete.org/nsi//logos/fisherphillips-b93f35.png" }, { "if": { "and": [ "office=lawyer", - "official_name=Foley & Lardner LLP", { "or": [ "brand=Foley", "brand:wikidata=Q5464319", - "name=Foley" + "name=Foley", + "official_name=Foley & Lardner LLP" ] } ] }, - "then": "./assets/data/nsi/logos/foley-2b4d11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foley-2b4d11.jpg" }, { "if": { @@ -118872,7 +119021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gorg-8a02aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/gorg-8a02aa.png" }, { "if": { @@ -118887,7 +119036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gskstockmann-8a02aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/gskstockmann-8a02aa.png" }, { "if": { @@ -118902,7 +119051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morganandmorgan-1353b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/morganandmorgan-1353b6.png" }, { "if": { @@ -118917,7 +119066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shinelawyers-22d653.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shinelawyers-22d653.jpg" }, { "if": { @@ -118932,7 +119081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/averittexpress-6e9d18.svg" + "then": "https://data.mapcomplete.org/nsi//logos/averittexpress-6e9d18.svg" }, { "if": { @@ -118947,7 +119096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhl-00dcbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dhl-00dcbe.jpg" }, { "if": { @@ -118962,7 +119111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amerisbank-477daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amerisbank-477daa.jpg" }, { "if": { @@ -118977,7 +119126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crosscountrymortgage-f8ef9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crosscountrymortgage-f8ef9d.jpg" }, { "if": { @@ -118992,7 +119141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dehypotheekshop-7b513e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dehypotheekshop-7b513e.jpg" }, { "if": { @@ -119007,7 +119156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dehypotheker-7b513e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dehypotheker-7b513e.jpg" }, { "if": { @@ -119022,7 +119171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/embracefinancialservices-3afe40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/embracefinancialservices-3afe40.jpg" }, { "if": { @@ -119037,7 +119186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guaranteedrate-f8ef9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guaranteedrate-f8ef9d.jpg" }, { "if": { @@ -119052,7 +119201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guildmortgagecompany-f8ef9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guildmortgagecompany-f8ef9d.jpg" }, { "if": { @@ -119067,7 +119216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huisandhypotheek-7b513e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huisandhypotheek-7b513e.jpg" }, { "if": { @@ -119082,7 +119231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loandepot-f8ef9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/loandepot-f8ef9d.png" }, { "if": { @@ -119097,7 +119246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novushomemortgage-f8ef9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novushomemortgage-f8ef9d.jpg" }, { "if": { @@ -119112,7 +119261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ooba-d5488f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ooba-d5488f.jpg" }, { "if": { @@ -119127,7 +119276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lesdemenageursbretons-05c8b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lesdemenageursbretons-05c8b7.jpg" }, { "if": { @@ -119142,7 +119291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/twomenandatruck-1df089.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/twomenandatruck-1df089.jpg" }, { "if": { @@ -119156,7 +119305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aamaadmiparty-88c6e5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aamaadmiparty-88c6e5.svg" }, { "if": { @@ -119170,7 +119319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bhartiyajantaparty-88c6e5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bhartiyajantaparty-88c6e5.svg" }, { "if": { @@ -119184,7 +119333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundnis90diegrunen-212c6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundnis90diegrunen-212c6d.jpg" }, { "if": { @@ -119198,7 +119347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cdu-212c6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cdu-212c6d.jpg" }, { "if": { @@ -119212,7 +119361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csu-212c6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csu-212c6d.jpg" }, { "if": { @@ -119226,7 +119375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dielinke-212c6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dielinke-212c6d.jpg" }, { "if": { @@ -119240,7 +119389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fdp-212c6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fdp-212c6d.jpg" }, { "if": { @@ -119254,7 +119403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indiannationalcongress-88c6e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indiannationalcongress-88c6e5.jpg" }, { "if": { @@ -119269,7 +119418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/particommunistefrancais-ed1753.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/particommunistefrancais-ed1753.jpg" }, { "if": { @@ -119283,7 +119432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pdp-a60dd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pdp-a60dd5.jpg" }, { "if": { @@ -119297,7 +119446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spd-212c6d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/spd-212c6d.svg" }, { "if": { @@ -119312,7 +119461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allieduniversal-8dcc43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allieduniversal-8dcc43.jpg" }, { "if": { @@ -119328,15 +119477,12 @@ } ] }, - "then": "./assets/data/nsi/logos/securitas-1f2ee5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/securitas-1f2ee5.svg" }, { "if": { "and": [ "office=security", - "official_name=セコムショップ", - "official_name:en=SECOM Shop", - "official_name:ja=セコムショップ", { "or": [ "brand=セコム", @@ -119345,12 +119491,15 @@ "brand:wikidata=Q858957", "name=セコム", "name:en=SECOM", - "name:ja=セコム" + "name:ja=セコム", + "official_name=セコムショップ", + "official_name:en=SECOM Shop", + "official_name:ja=セコムショップ" ] } ] }, - "then": "./assets/data/nsi/logos/secom-2b5b95.png" + "then": "https://data.mapcomplete.org/nsi//logos/secom-2b5b95.png" }, { "if": { @@ -119365,7 +119514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blockadvisors-53d576.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blockadvisors-53d576.jpg" }, { "if": { @@ -119380,23 +119529,23 @@ } ] }, - "then": "./assets/data/nsi/logos/handrblock-c966c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/handrblock-c966c8.jpg" }, { "if": { "and": [ "office=tax_advisor", - "official_name=Jackson Hewitt Tax Service", { "or": [ "brand=Jackson Hewitt", "brand:wikidata=Q6117132", - "name=Jackson Hewitt" + "name=Jackson Hewitt", + "official_name=Jackson Hewitt Tax Service" ] } ] }, - "then": "./assets/data/nsi/logos/jacksonhewitt-53d576.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonhewitt-53d576.jpg" }, { "if": { @@ -119412,7 +119561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertytax-15740c.png" + "then": "https://data.mapcomplete.org/nsi//logos/libertytax-15740c.png" }, { "if": { @@ -119427,7 +119576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lohnsteuerhilfebadenwurttemberg-7fe1b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lohnsteuerhilfebadenwurttemberg-7fe1b3.jpg" }, { "if": { @@ -119442,7 +119591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lohnsteuerhilfebayern-8e1f0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/lohnsteuerhilfebayern-8e1f0d.png" }, { "if": { @@ -119457,7 +119606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steuerring-02f00c.png" + "then": "https://data.mapcomplete.org/nsi//logos/steuerring-02f00c.png" }, { "if": { @@ -119472,7 +119621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taxassistaccountants-6972d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taxassistaccountants-6972d1.jpg" }, { "if": { @@ -119487,7 +119636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vereinigtelohnsteuerhilfe-02f00c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vereinigtelohnsteuerhilfe-02f00c.jpg" }, { "if": { @@ -119502,7 +119651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/antiktelecom-dd32b3.png" + "then": "https://data.mapcomplete.org/nsi//logos/antiktelecom-dd32b3.png" }, { "if": { @@ -119517,7 +119666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atandt-d4bcbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atandt-d4bcbe.jpg" }, { "if": { @@ -119532,7 +119681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/azercell-898395.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/azercell-898395.jpg" }, { "if": { @@ -119547,7 +119696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beeline-2f71de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beeline-2f71de.jpg" }, { "if": { @@ -119562,23 +119711,23 @@ } ] }, - "then": "./assets/data/nsi/logos/du-0eff00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/du-0eff00.jpg" }, { "if": { "and": [ "office=telecommunication", - "official_name=Empresa de Telecomunicaciones de Cuba", { "or": [ "brand=ETECSA", "brand:wikidata=Q490323", - "name=ETECSA" + "name=ETECSA", + "official_name=Empresa de Telecomunicaciones de Cuba" ] } ] }, - "then": "./assets/data/nsi/logos/etecsa-0b19c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etecsa-0b19c8.jpg" }, { "if": { @@ -119594,7 +119743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indosatooredoo-89d943.svg" + "then": "https://data.mapcomplete.org/nsi//logos/indosatooredoo-89d943.svg" }, { "if": { @@ -119609,7 +119758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/izzi-66ddc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/izzi-66ddc0.jpg" }, { "if": { @@ -119624,27 +119773,27 @@ } ] }, - "then": "./assets/data/nsi/logos/kcell-4679e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kcell-4679e0.jpg" }, { "if": { "and": [ "office=telecommunication", - "official_name=日本電信電話", - "official_name:en=Nippon Telegraph and Telephone", - "official_name:ja=日本電信電話", - "official_name:ja-Latn=Nippon Denshin Denwa", { "or": [ "alt_name=エヌ・ティ・ティ", "brand=NTT", "brand:wikidata=Q1054787", - "name=NTT" + "name=NTT", + "official_name=日本電信電話", + "official_name:en=Nippon Telegraph and Telephone", + "official_name:ja=日本電信電話", + "official_name:ja-Latn=Nippon Denshin Denwa" ] } ] }, - "then": "./assets/data/nsi/logos/ntt-54abba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ntt-54abba.jpg" }, { "if": { @@ -119659,7 +119808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/r-b26dcd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/r-b26dcd.svg" }, { "if": { @@ -119680,7 +119829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rostelecom-2921eb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rostelecom-2921eb.svg" }, { "if": { @@ -119701,7 +119850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teamtelecomarmenia-2921eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teamtelecomarmenia-2921eb.jpg" }, { "if": { @@ -119716,7 +119865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telecommtelegrafos-66ddc0.png" + "then": "https://data.mapcomplete.org/nsi//logos/telecommtelegrafos-66ddc0.png" }, { "if": { @@ -119731,7 +119880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telkomsel-89d943.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telkomsel-89d943.svg" }, { "if": { @@ -119746,7 +119895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telmex-66ddc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telmex-66ddc0.jpg" }, { "if": { @@ -119761,7 +119910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalplay-66ddc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/totalplay-66ddc0.jpg" }, { "if": { @@ -119782,7 +119931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucom-2921eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/ucom-2921eb.png" }, { "if": { @@ -119803,7 +119952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivamts-2921eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivamts-2921eb.jpg" }, { "if": { @@ -119819,7 +119968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xlaxiata-89d943.png" + "then": "https://data.mapcomplete.org/nsi//logos/xlaxiata-89d943.png" }, { "if": { @@ -119838,7 +119987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beeline-f03186.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beeline-f03186.jpg" }, { "if": { @@ -119859,7 +120008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/silknet-0ca315.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/silknet-0ca315.jpg" }, { "if": { @@ -119879,7 +120028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zainsaudiarabia-d23a06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zainsaudiarabia-d23a06.jpg" }, { "if": { @@ -119899,7 +120048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etihadatheebtelecom-d23a06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etihadatheebtelecom-d23a06.jpg" }, { "if": { @@ -119918,7 +120067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sauditelecomcompany-d23a06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sauditelecomcompany-d23a06.jpg" }, { "if": { @@ -119937,7 +120086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobily-d23a06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobily-d23a06.jpg" }, { "if": { @@ -119956,312 +120105,312 @@ } ] }, - "then": "./assets/data/nsi/logos/mobilis-c9e0b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobilis-c9e0b0.jpg" }, { "if": { "and": [ "office=union", - "official_name=Confédération française démocratique du travail", { "or": [ "brand=CFDT", "brand:wikidata=Q1125605", - "name=CFDT" + "name=CFDT", + "official_name=Confédération française démocratique du travail" ] } ] }, - "then": "./assets/data/nsi/logos/cfdt-98227a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cfdt-98227a.svg" }, { "if": { "and": [ "office=union", - "official_name=Confédération française de l'encadrement - Confédération générale des cadres", { "or": [ "brand=CFE-CGC", "brand:wikidata=Q2992730", - "name=CFE-CGC" + "name=CFE-CGC", + "official_name=Confédération française de l'encadrement - Confédération générale des cadres" ] } ] }, - "then": "./assets/data/nsi/logos/cfecgc-98227a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cfecgc-98227a.png" }, { "if": { "and": [ "office=union", - "official_name=Confédération française des travailleurs chrétiens", { "or": [ "brand=CFTC", "brand:wikidata=Q1125610", - "name=CFTC" + "name=CFTC", + "official_name=Confédération française des travailleurs chrétiens" ] } ] }, - "then": "./assets/data/nsi/logos/cftc-98227a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cftc-98227a.jpg" }, { "if": { "and": [ "office=union", - "official_name=Confédération générale du travail", { "or": [ "brand=CGT", "brand:wikidata=Q1125638", - "name=CGT" + "name=CGT", + "official_name=Confédération générale du travail" ] } ] }, - "then": "./assets/data/nsi/logos/cgt-98227a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cgt-98227a.svg" }, { "if": { "and": [ "office=union", - "official_name=Deutscher Gewerkschaftsbund", { "or": [ "brand=DGB", "brand:wikidata=Q586581", - "name=DGB" + "name=DGB", + "official_name=Deutscher Gewerkschaftsbund" ] } ] }, - "then": "./assets/data/nsi/logos/dgb-321fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dgb-321fbc.jpg" }, { "if": { "and": [ "office=union", - "official_name=Eisenbahn- und Verkehrsgewerkschaft", { "or": [ "brand=EVG", "brand:wikidata=Q1311386", - "name=EVG" + "name=EVG", + "official_name=Eisenbahn- und Verkehrsgewerkschaft" ] } ] }, - "then": "./assets/data/nsi/logos/evg-321fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evg-321fbc.jpg" }, { "if": { "and": [ "office=union", - "official_name=Force ouvrière", { "or": [ "brand=FO", "brand:wikidata=Q1125623", - "name=FO" + "name=FO", + "official_name=Force ouvrière" ] } ] }, - "then": "./assets/data/nsi/logos/fo-98227a.png" + "then": "https://data.mapcomplete.org/nsi//logos/fo-98227a.png" }, { "if": { "and": [ "office=union", - "official_name=Fédération syndicale étudiante", { "or": [ "brand=FSE", "brand:wikidata=Q109037715", - "name=FSE" + "name=FSE", + "official_name=Fédération syndicale étudiante" ] } ] }, - "then": "./assets/data/nsi/logos/fse-98227a.png" + "then": "https://data.mapcomplete.org/nsi//logos/fse-98227a.png" }, { "if": { "and": [ "office=union", - "official_name=Gewerkschaft der Polizei", { "or": [ "brand=GdP", "brand:wikidata=Q314080", - "name=GdP" + "name=GdP", + "official_name=Gewerkschaft der Polizei" ] } ] }, - "then": "./assets/data/nsi/logos/gdp-321fbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/gdp-321fbc.png" }, { "if": { "and": [ "office=union", - "official_name=Gewerkschaft Erziehung und Wissenschaft", { "or": [ "brand=GEW", "brand:wikidata=Q325778", - "name=GEW" + "name=GEW", + "official_name=Gewerkschaft Erziehung und Wissenschaft" ] } ] }, - "then": "./assets/data/nsi/logos/gew-321fbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/gew-321fbc.png" }, { "if": { "and": [ "office=union", - "official_name=IG Bauen-Agrar-Umwelt", { "or": [ "brand=IG BAU", "brand:wikidata=Q896472", - "name=IG BAU" + "name=IG BAU", + "official_name=IG Bauen-Agrar-Umwelt" ] } ] }, - "then": "./assets/data/nsi/logos/igbau-321fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/igbau-321fbc.jpg" }, { "if": { "and": [ "office=union", - "official_name=IG Bergbau, Chemie, Energie", { "or": [ "brand=IG BCE", "brand:wikidata=Q871045", - "name=IG BCE" + "name=IG BCE", + "official_name=IG Bergbau, Chemie, Energie" ] } ] }, - "then": "./assets/data/nsi/logos/igbce-321fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/igbce-321fbc.jpg" }, { "if": { "and": [ "office=union", - "official_name=Industriegewerkschaft Metall", { "or": [ "brand=IG Metall", "brand:short=IGM", "brand:wikidata=Q694821", - "name=IG Metall" + "name=IG Metall", + "official_name=Industriegewerkschaft Metall" ] } ] }, - "then": "./assets/data/nsi/logos/igmetall-321fbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/igmetall-321fbc.png" }, { "if": { "and": [ "office=union", - "official_name=Gewerkschaft Nahrung-Genuss-Gaststätten", { "or": [ "brand=NGG", "brand:wikidata=Q896313", - "name=NGG" + "name=NGG", + "official_name=Gewerkschaft Nahrung-Genuss-Gaststätten" ] } ] }, - "then": "./assets/data/nsi/logos/ngg-321fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ngg-321fbc.jpg" }, { "if": { "and": [ "office=union", - "official_name=Solidaires étudiant-e-s", { "or": [ "brand=SESL", "brand:wikidata=Q16677410", - "name=SESL" + "name=SESL", + "official_name=Solidaires étudiant-e-s" ] } ] }, - "then": "./assets/data/nsi/logos/sesl-98227a.png" + "then": "https://data.mapcomplete.org/nsi//logos/sesl-98227a.png" }, { "if": { "and": [ "office=union", - "official_name=Union syndicale Solidaires", { "or": [ "brand=Solidaires", "brand:wikidata=Q3550610", - "name=Solidaires" + "name=Solidaires", + "official_name=Union syndicale Solidaires" ] } ] }, - "then": "./assets/data/nsi/logos/solidaires-98227a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/solidaires-98227a.jpg" }, { "if": { "and": [ "office=union", - "official_name=Union étudiante", { "or": [ "brand=UE", "brand:wikidata=Q117428377", - "name=UE" + "name=UE", + "official_name=Union étudiante" ] } ] }, - "then": "./assets/data/nsi/logos/ue-98227a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ue-98227a.jpg" }, { "if": { "and": [ "office=union", - "official_name=Union nationale des étudiants de France", { "or": [ "brand=UNEF", "brand:wikidata=Q910798", - "name=UNEF" + "name=UNEF", + "official_name=Union nationale des étudiants de France" ] } ] }, - "then": "./assets/data/nsi/logos/unef-98227a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unef-98227a.jpg" }, { "if": { "and": [ "office=union", - "official_name=Vereinte Dienstleistungsgewerkschaft", { "or": [ "brand=ver.di", "brand:wikidata=Q547951", - "name=ver.di" + "name=ver.di", + "official_name=Vereinte Dienstleistungsgewerkschaft" ] } ] }, - "then": "./assets/data/nsi/logos/verdi-321fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verdi-321fbc.jpg" }, { "if": { @@ -120276,7 +120425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afgriequipment-e0de78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/afgriequipment-e0de78.jpg" }, { "if": { @@ -120291,7 +120440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coastals-ed1376.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coastals-ed1376.jpg" }, { "if": { @@ -120306,24 +120455,24 @@ } ] }, - "then": "./assets/data/nsi/logos/felleskjopet-461c53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/felleskjopet-461c53.jpg" }, { "if": { "and": [ "agrarian=seed;feed;tools", - "official_name=Southern States Cooperative", "shop=agrarian", { "or": [ "brand=Southern States", "brand:wikidata=Q7570508", - "name=Southern States" + "name=Southern States", + "official_name=Southern States Cooperative" ] } ] }, - "then": "./assets/data/nsi/logos/southernstates-0f40aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/southernstates-0f40aa.png" }, { "if": { @@ -120338,7 +120487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ufa-700bc3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ufa-700bc3.svg" }, { "if": { @@ -120354,7 +120503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilco-25b295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilco-25b295.jpg" }, { "if": { @@ -120369,7 +120518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zgraiffeisenagrar-a7a5a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zgraiffeisenagrar-a7a5a6.jpg" }, { "if": { @@ -120385,7 +120534,22 @@ } ] }, - "then": "./assets/data/nsi/logos/zgraiffeisentechnik-a7a5a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zgraiffeisentechnik-a7a5a6.jpg" + }, + { + "if": { + "and": [ + "shop=alcohol", + { + "or": [ + "brand=1. day", + "brand:wikidata=Q108149927", + "name=1. day" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/1day-41aec7.jpg" }, { "if": { @@ -120400,7 +120564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abc-bba101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abc-bba101.jpg" }, { "if": { @@ -120415,7 +120579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alcoholandtabakoff-059946.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alcoholandtabakoff-059946.jpg" }, { "if": { @@ -120430,7 +120594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alko-d1a8a4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alko-d1a8a4.svg" }, { "if": { @@ -120445,7 +120609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bargainbooze-30632a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bargainbooze-30632a.jpg" }, { "if": { @@ -120460,7 +120624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barrique-c5afd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barrique-c5afd8.jpg" }, { "if": { @@ -120475,7 +120639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bcliquorstore-0c8640.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bcliquorstore-0c8640.svg" }, { "if": { @@ -120490,7 +120654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beermarket-345467.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beermarket-345467.jpg" }, { "if": { @@ -120505,7 +120669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bevmo-2740a5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bevmo-2740a5.svg" }, { "if": { @@ -120520,7 +120684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boxerliquors-a774d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boxerliquors-a774d1.jpg" }, { "if": { @@ -120535,7 +120699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duzyben-48eb32.svg" + "then": "https://data.mapcomplete.org/nsi//logos/duzyben-48eb32.svg" }, { "if": { @@ -120550,7 +120714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/finewineandgoodspirits-76c257.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/finewineandgoodspirits-76c257.jpg" }, { "if": { @@ -120565,7 +120729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodbeer-345467.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodbeer-345467.png" }, { "if": { @@ -120580,7 +120744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hophey-345467.png" + "then": "https://data.mapcomplete.org/nsi//logos/hophey-345467.png" }, { "if": { @@ -120595,7 +120759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacervoiserie-f2c698.png" + "then": "https://data.mapcomplete.org/nsi//logos/lacervoiserie-f2c698.png" }, { "if": { @@ -120610,7 +120774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lcbo-19c622.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lcbo-19c622.svg" }, { "if": { @@ -120625,7 +120789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liquorshopcheckers-588b80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liquorshopcheckers-588b80.jpg" }, { "if": { @@ -120640,7 +120804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liquorshopshoprite-af1a8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liquorshopshoprite-af1a8e.jpg" }, { "if": { @@ -120655,7 +120819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitra-e09280.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mitra-e09280.svg" }, { "if": { @@ -120671,7 +120835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newhampshireliquorandwineoutlet-05db77.svg" + "then": "https://data.mapcomplete.org/nsi//logos/newhampshireliquorandwineoutlet-05db77.svg" }, { "if": { @@ -120686,7 +120850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nicolas-699bfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/nicolas-699bfb.png" }, { "if": { @@ -120701,7 +120865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picknpayliquor-fa6f87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/picknpayliquor-fa6f87.jpg" }, { "if": { @@ -120716,7 +120880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sobeysliquor-c2c781.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sobeysliquor-c2c781.jpg" }, { "if": { @@ -120731,7 +120895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/systembolaget-9afe69.png" + "then": "https://data.mapcomplete.org/nsi//logos/systembolaget-9afe69.png" }, { "if": { @@ -120746,7 +120910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebeerstore-19c622.png" + "then": "https://data.mapcomplete.org/nsi//logos/thebeerstore-19c622.png" }, { "if": { @@ -120761,7 +120925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vandb-f2c698.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vandb-f2c698.jpg" }, { "if": { @@ -120776,7 +120940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vinmonopolet-af24f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vinmonopolet-af24f5.jpg" }, { "if": { @@ -120791,7 +120955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiaabc-85cc28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginiaabc-85cc28.jpg" }, { "if": { @@ -120806,7 +120970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5a713f-b9f2fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/5a713f-b9f2fe.png" }, { "if": { @@ -120821,7 +120985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/69bf4f-b9f2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/69bf4f-b9f2fe.jpg" }, { "if": { @@ -120836,7 +121000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41aea9-b9f2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/41aea9-b9f2fe.jpg" }, { "if": { @@ -120851,7 +121015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8e7c78-b9f2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/8e7c78-b9f2fe.jpg" }, { "if": { @@ -120866,7 +121030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/45d784-b9f2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/45d784-b9f2fe.jpg" }, { "if": { @@ -120883,7 +121047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norman-b9f2fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/norman-b9f2fe.png" }, { "if": { @@ -120898,7 +121062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1898a0-345467.gif" + "then": "https://data.mapcomplete.org/nsi//logos/1898a0-345467.gif" }, { "if": { @@ -120917,7 +121081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liquormountain-42f62c.png" + "then": "https://data.mapcomplete.org/nsi//logos/liquormountain-42f62c.png" }, { "if": { @@ -120936,7 +121100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/animate-12d6d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/animate-12d6d6.jpg" }, { "if": { @@ -120955,7 +121119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kbooks-12d6d6.png" + "then": "https://data.mapcomplete.org/nsi//logos/kbooks-12d6d6.png" }, { "if": { @@ -120974,7 +121138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jumpshop-12d6d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jumpshop-12d6d6.jpg" }, { "if": { @@ -120993,7 +121157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pokemoncenter-12d6d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pokemoncenter-12d6d6.jpg" }, { "if": { @@ -121012,7 +121176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandarake-12d6d6.png" + "then": "https://data.mapcomplete.org/nsi//logos/mandarake-12d6d6.png" }, { "if": { @@ -121031,7 +121195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lashinbang-12d6d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lashinbang-12d6d6.jpg" }, { "if": { @@ -121046,7 +121210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appliancerepairbyasurion-70060f.png" + "then": "https://data.mapcomplete.org/nsi//logos/appliancerepairbyasurion-70060f.png" }, { "if": { @@ -121061,7 +121225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arcelik-f0338d.png" + "then": "https://data.mapcomplete.org/nsi//logos/arcelik-f0338d.png" }, { "if": { @@ -121078,7 +121242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beko-5f01e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beko-5f01e3.jpg" }, { "if": { @@ -121093,7 +121257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/profilo-f0338d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/profilo-f0338d.svg" }, { "if": { @@ -121108,7 +121272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tien21-5228b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tien21-5228b9.jpg" }, { "if": { @@ -121127,7 +121291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snowa-e56cf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snowa-e56cf0.jpg" }, { "if": { @@ -121142,7 +121306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deserres-52ba64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deserres-52ba64.jpg" }, { "if": { @@ -121157,7 +121321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lumas-60f999.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lumas-60f999.jpg" }, { "if": { @@ -121172,7 +121336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yellowkorner-160161.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yellowkorner-160161.jpg" }, { "if": { @@ -121187,7 +121351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aubert-e62f20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aubert-e62f20.jpg" }, { "if": { @@ -121202,7 +121366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autourdebebe-e7ec7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autourdebebe-e7ec7f.jpg" }, { "if": { @@ -121217,7 +121381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/babiesrus-a2ffc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/babiesrus-a2ffc9.jpg" }, { "if": { @@ -121232,7 +121396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/babybunting-124709.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/babybunting-124709.jpg" }, { "if": { @@ -121247,7 +121411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/babycity-27991d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/babycity-27991d.jpg" }, { "if": { @@ -121262,7 +121426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/babywalz-162756.png" + "then": "https://data.mapcomplete.org/nsi//logos/babywalz-162756.png" }, { "if": { @@ -121277,7 +121441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/babyone-162756.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/babyone-162756.jpg" }, { "if": { @@ -121292,7 +121456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buybuybaby-a2ffc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buybuybaby-a2ffc9.jpg" }, { "if": { @@ -121307,7 +121471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicco-0b3f29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicco-0b3f29.jpg" }, { "if": { @@ -121322,7 +121486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ebebek-ec78ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ebebek-ec78ad.jpg" }, { "if": { @@ -121337,7 +121501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mamasandpapas-9c51ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mamasandpapas-9c51ce.jpg" }, { "if": { @@ -121352,7 +121516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mothercare-0b3f29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mothercare-0b3f29.jpg" }, { "if": { @@ -121367,7 +121531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natalys-e62f20.svg" + "then": "https://data.mapcomplete.org/nsi//logos/natalys-e62f20.svg" }, { "if": { @@ -121382,7 +121546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prenatal-5eb52b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prenatal-5eb52b.jpg" }, { "if": { @@ -121399,7 +121563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shilav-e06f21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shilav-e06f21.jpg" }, { "if": { @@ -121414,7 +121578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suavinex-f3fd61.png" + "then": "https://data.mapcomplete.org/nsi//logos/suavinex-f3fd61.png" }, { "if": { @@ -121429,7 +121593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebabyfactory-42c98b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebabyfactory-42c98b.jpg" }, { "if": { @@ -121444,7 +121608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zippy-e93d5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zippy-e93d5f.jpg" }, { "if": { @@ -121459,7 +121623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d8a277-94eb10.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d8a277-94eb10.jpg" }, { "if": { @@ -121478,7 +121642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/detskiymir-7b1c28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/detskiymir-7b1c28.jpg" }, { "if": { @@ -121493,7 +121657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/462766-2eddbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/462766-2eddbc.png" }, { "if": { @@ -121513,7 +121677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akachanhonpo-60a866.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akachanhonpo-60a866.jpg" }, { "if": { @@ -121532,7 +121696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nishimatsuya-60a866.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nishimatsuya-60a866.jpg" }, { "if": { @@ -121547,7 +121711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americantourister-866b83.svg" + "then": "https://data.mapcomplete.org/nsi//logos/americantourister-866b83.svg" }, { "if": { @@ -121562,7 +121726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/away-058365.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/away-058365.jpg" }, { "if": { @@ -121577,7 +121741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bentley-93da89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bentley-93da89.jpg" }, { "if": { @@ -121592,7 +121756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carpisa-ee67c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carpisa-ee67c9.jpg" }, { "if": { @@ -121607,7 +121771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coach-bdf41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coach-bdf41b.jpg" }, { "if": { @@ -121622,7 +121786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coccinelle-07c9a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/coccinelle-07c9a9.png" }, { "if": { @@ -121637,7 +121801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colettebycolettehayman-51caec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colettebycolettehayman-51caec.jpg" }, { "if": { @@ -121652,7 +121816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frasers-3fbcc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frasers-3fbcc0.jpg" }, { "if": { @@ -121667,7 +121831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kipling-bfaa54.png" + "then": "https://data.mapcomplete.org/nsi//logos/kipling-bfaa54.png" }, { "if": { @@ -121682,7 +121846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/larabags-f2ddb9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/larabags-f2ddb9.jpg" }, { "if": { @@ -121697,7 +121861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liebeskindberlin-af0c77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liebeskindberlin-af0c77.jpg" }, { "if": { @@ -121712,7 +121876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/misako-46781a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/misako-46781a.jpg" }, { "if": { @@ -121727,7 +121891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rimowa-4123fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rimowa-4123fd.jpg" }, { "if": { @@ -121742,7 +121906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samsonite-4123fd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/samsonite-4123fd.svg" }, { "if": { @@ -121757,7 +121921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/strandbags-e9e78d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/strandbags-e9e78d.jpg" }, { "if": { @@ -121772,7 +121936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totto-b66712.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/totto-b66712.jpg" }, { "if": { @@ -121787,7 +121951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tumi-4123fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tumi-4123fd.jpg" }, { "if": { @@ -121802,7 +121966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verabradley-e9ca60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verabradley-e9ca60.jpg" }, { "if": { @@ -121817,7 +121981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apadariaportuguesa-6fa785.png" + "then": "https://data.mapcomplete.org/nsi//logos/apadariaportuguesa-6fa785.png" }, { "if": { @@ -121836,7 +122000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1bakery-d71ca5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a1bakery-d71ca5.jpg" }, { "if": { @@ -121851,7 +122015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boulangerieange-731a34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boulangerieange-731a34.jpg" }, { "if": { @@ -121866,7 +122030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anker-4c6659.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anker-4c6659.jpg" }, { "if": { @@ -121881,7 +122045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armbruster-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armbruster-3f448e.jpg" }, { "if": { @@ -121896,7 +122060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aupaindemongrandpere-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aupaindemongrandpere-09ad2c.jpg" }, { "if": { @@ -121911,7 +122075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/awiteks-839c38.png" + "then": "https://data.mapcomplete.org/nsi//logos/awiteks-839c38.png" }, { "if": { @@ -121926,7 +122090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bachmeier-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bachmeier-3f448e.jpg" }, { "if": { @@ -121941,7 +122105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backfactory-3f448e.png" + "then": "https://data.mapcomplete.org/nsi//logos/backfactory-3f448e.png" }, { "if": { @@ -121956,7 +122120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backereiandresen-4c1d19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backereiandresen-4c1d19.jpg" }, { "if": { @@ -121971,7 +122135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backergortz-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backergortz-3f448e.jpg" }, { "if": { @@ -121986,7 +122150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backereifuchs-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backereifuchs-3f448e.jpg" }, { "if": { @@ -122001,7 +122165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backereigrimminger-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backereigrimminger-3f448e.jpg" }, { "if": { @@ -122016,7 +122180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backereihapp-3f448e.png" + "then": "https://data.mapcomplete.org/nsi//logos/backereihapp-3f448e.png" }, { "if": { @@ -122031,7 +122195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backereischmidt-029c59.png" + "then": "https://data.mapcomplete.org/nsi//logos/backereischmidt-029c59.png" }, { "if": { @@ -122046,7 +122210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backereischneider-7c8926.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backereischneider-7c8926.jpg" }, { "if": { @@ -122061,7 +122225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backereiwahl-16897a.png" + "then": "https://data.mapcomplete.org/nsi//logos/backereiwahl-16897a.png" }, { "if": { @@ -122076,7 +122240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backhaushackner-7367b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backhaushackner-7367b5.jpg" }, { "if": { @@ -122091,7 +122255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backhaushennig-a5d472.png" + "then": "https://data.mapcomplete.org/nsi//logos/backhaushennig-a5d472.png" }, { "if": { @@ -122106,7 +122270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backhausnahrstedt-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backhausnahrstedt-3f448e.jpg" }, { "if": { @@ -122121,7 +122285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backstubewunsche-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backstubewunsche-3f448e.jpg" }, { "if": { @@ -122136,7 +122300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/backwerk-5fc8b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/backwerk-5fc8b1.jpg" }, { "if": { @@ -122151,7 +122315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baguette-2e087b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baguette-2e087b.jpg" }, { "if": { @@ -122166,7 +122330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bakerscottage-146b0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bakerscottage-146b0c.jpg" }, { "if": { @@ -122181,7 +122345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bakersdelight-3465b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bakersdelight-3465b3.jpg" }, { "if": { @@ -122196,7 +122360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bakkerbart-8ba7df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bakkerbart-8ba7df.jpg" }, { "if": { @@ -122211,7 +122375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bakkervanmaanen-8eaf6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bakkervanmaanen-8eaf6b.jpg" }, { "if": { @@ -122227,7 +122391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/balfours-c119fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/balfours-c119fa.jpg" }, { "if": { @@ -122242,7 +122406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banette-731a34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banette-731a34.jpg" }, { "if": { @@ -122257,7 +122421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banjosbakerycafe-c119fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banjosbakerycafe-c119fa.jpg" }, { "if": { @@ -122272,7 +122436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barbarossabackerei-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barbarossabackerei-3f448e.jpg" }, { "if": { @@ -122287,7 +122451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baynes-384d80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baynes-384d80.jpg" }, { "if": { @@ -122302,23 +122466,23 @@ } ] }, - "then": "./assets/data/nsi/logos/beechworthbakery-c119fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/beechworthbakery-c119fa.png" }, { "if": { "and": [ - "official_name=Birds Bakery", "shop=bakery", { "or": [ "brand=Birds", "brand:wikidata=Q63001935", - "name=Birds" + "name=Birds", + "official_name=Birds Bakery" ] } ] }, - "then": "./assets/data/nsi/logos/birds-680575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birds-680575.jpg" }, { "if": { @@ -122333,7 +122497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boulangerielouise-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boulangerielouise-09ad2c.jpg" }, { "if": { @@ -122348,7 +122512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breadahead-b4a87a.png" + "then": "https://data.mapcomplete.org/nsi//logos/breadahead-b4a87a.png" }, { "if": { @@ -122363,7 +122527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breadtalk-96a6b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/breadtalk-96a6b3.jpg" }, { "if": { @@ -122379,7 +122543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breadtop-c119fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/breadtop-c119fa.jpg" }, { "if": { @@ -122394,7 +122558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/briochedoree-4f9c7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/briochedoree-4f9c7f.jpg" }, { "if": { @@ -122409,7 +122573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brothaus-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brothaus-3f448e.jpg" }, { "if": { @@ -122424,7 +122588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brumbysbakeries-c119fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/brumbysbakeries-c119fa.png" }, { "if": { @@ -122439,7 +122603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burnsthebread-680575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burnsthebread-680575.jpg" }, { "if": { @@ -122454,7 +122618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bursahalkekmek-a32269.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bursahalkekmek-a32269.jpg" }, { "if": { @@ -122469,7 +122633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/busch-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/busch-3f448e.jpg" }, { "if": { @@ -122484,7 +122648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cadera-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cadera-3f448e.jpg" }, { "if": { @@ -122499,7 +122663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/campaillette-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/campaillette-09ad2c.jpg" }, { "if": { @@ -122514,7 +122678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cobsbread-515502.png" + "then": "https://data.mapcomplete.org/nsi//logos/cobsbread-515502.png" }, { "if": { @@ -122529,7 +122693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooplands-680575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooplands-680575.jpg" }, { "if": { @@ -122544,23 +122708,23 @@ } ] }, - "then": "./assets/data/nsi/logos/cornishbakery-00bbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornishbakery-00bbe7.jpg" }, { "if": { "and": [ - "official_name=Coupland's Bakeries", "shop=bakery", { "or": [ "brand=Coupland's", "brand:wikidata=Q107297544", - "name=Coupland's" + "name=Coupland's", + "official_name=Coupland's Bakeries" ] } ] }, - "then": "./assets/data/nsi/logos/couplands-80e21a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/couplands-80e21a.jpg" }, { "if": { @@ -122575,7 +122739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/datbackhus-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/datbackhus-3f448e.jpg" }, { "if": { @@ -122590,7 +122754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deechtebakker-8eaf6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deechtebakker-8eaf6b.jpg" }, { "if": { @@ -122605,7 +122769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delifrance-4f9c7f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/delifrance-4f9c7f.svg" }, { "if": { @@ -122620,7 +122784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbackereifler-3aeac5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derbackereifler-3aeac5.jpg" }, { "if": { @@ -122635,7 +122799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbackerruetz-2e087b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derbackerruetz-2e087b.jpg" }, { "if": { @@ -122650,7 +122814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbeck-7367b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/derbeck-7367b5.png" }, { "if": { @@ -122665,7 +122829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dermann-2e087b.png" + "then": "https://data.mapcomplete.org/nsi//logos/dermann-2e087b.png" }, { "if": { @@ -122680,7 +122844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dielohners-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dielohners-3f448e.jpg" }, { "if": { @@ -122695,7 +122859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ditsch-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ditsch-3f448e.jpg" }, { "if": { @@ -122710,7 +122874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dobbe-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dobbe-3f448e.jpg" }, { "if": { @@ -122725,7 +122889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dreissig-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dreissig-3f448e.jpg" }, { "if": { @@ -122740,7 +122904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emilreimann-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emilreimann-3f448e.jpg" }, { "if": { @@ -122756,7 +122920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erickayser-731a34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erickayser-731a34.jpg" }, { "if": { @@ -122771,7 +122935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ersterwiener-3f448e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ersterwiener-3f448e.png" }, { "if": { @@ -122786,7 +122950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fabrique-38a410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fabrique-38a410.jpg" }, { "if": { @@ -122801,7 +122965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fergusonplarresbakehouse-4fc062.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fergusonplarresbakehouse-4fc062.jpg" }, { "if": { @@ -122815,7 +122979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/festivaldespains-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/festivaldespains-09ad2c.jpg" }, { "if": { @@ -122830,7 +122994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fornetti-0c6f37.png" + "then": "https://data.mapcomplete.org/nsi//logos/fornetti-0c6f37.png" }, { "if": { @@ -122845,7 +123009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franz-03cd91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/franz-03cd91.jpg" }, { "if": { @@ -122860,7 +123024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gails-00bbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gails-00bbe7.jpg" }, { "if": { @@ -122875,7 +123039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galeriawypiekowlubaszka-839c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/galeriawypiekowlubaszka-839c38.jpg" }, { "if": { @@ -122890,7 +123054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gilgens-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gilgens-3f448e.jpg" }, { "if": { @@ -122905,7 +123069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glockenbackerei-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glockenbackerei-3f448e.jpg" }, { "if": { @@ -122920,7 +123084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goekenbacken-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goekenbacken-3f448e.jpg" }, { "if": { @@ -122935,7 +123099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldilocks-a861d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldilocks-a861d6.jpg" }, { "if": { @@ -122950,7 +123114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goracopolecam-839c38.png" + "then": "https://data.mapcomplete.org/nsi//logos/goracopolecam-839c38.png" }, { "if": { @@ -122965,7 +123129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/granier-0ef3f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/granier-0ef3f4.png" }, { "if": { @@ -122980,7 +123144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatharvestbreadcompany-03cd91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatharvestbreadcompany-03cd91.jpg" }, { "if": { @@ -122996,7 +123160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenhalghs-680575.png" + "then": "https://data.mapcomplete.org/nsi//logos/greenhalghs-680575.png" }, { "if": { @@ -123011,7 +123175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gromulski-839c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gromulski-839c38.jpg" }, { "if": { @@ -123026,7 +123190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grzybki-839c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grzybki-839c38.jpg" }, { "if": { @@ -123041,7 +123205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hinnerbacker-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hinnerbacker-3f448e.jpg" }, { "if": { @@ -123056,7 +123220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hofpfisterei-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hofpfisterei-3f448e.jpg" }, { "if": { @@ -123071,7 +123235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hollandbakery-a78b8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hollandbakery-a78b8f.jpg" }, { "if": { @@ -123086,7 +123250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hollywoodbakery-80e21a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hollywoodbakery-80e21a.jpg" }, { "if": { @@ -123101,7 +123265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ihle-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ihle-3f448e.jpg" }, { "if": { @@ -123116,7 +123280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ihrlandbacker-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ihrlandbacker-3f448e.jpg" }, { "if": { @@ -123131,7 +123295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istanbulhalkekmek-a32269.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istanbulhalkekmek-a32269.jpg" }, { "if": { @@ -123147,7 +123311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/julies-b6c45f.png" + "then": "https://data.mapcomplete.org/nsi//logos/julies-b6c45f.png" }, { "if": { @@ -123162,7 +123326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/junge-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/junge-3f448e.jpg" }, { "if": { @@ -123177,7 +123341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kandubackerei-3f448e.png" + "then": "https://data.mapcomplete.org/nsi//logos/kandubackerei-3f448e.png" }, { "if": { @@ -123192,7 +123356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaisersgutebackstube-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaisersgutebackstube-3f448e.jpg" }, { "if": { @@ -123207,7 +123371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kamps-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kamps-3f448e.jpg" }, { "if": { @@ -123222,7 +123386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kleinsbackstube-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kleinsbackstube-3f448e.jpg" }, { "if": { @@ -123236,7 +123400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kolls-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kolls-3f448e.jpg" }, { "if": { @@ -123251,7 +123415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuhn-903073.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kuhn-903073.jpg" }, { "if": { @@ -123266,7 +123430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/latelierpapilles-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/latelierpapilles-09ad2c.jpg" }, { "if": { @@ -123281,7 +123445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamiecaline-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamiecaline-09ad2c.jpg" }, { "if": { @@ -123296,7 +123460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/latalemelerie-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/latalemelerie-09ad2c.jpg" }, { "if": { @@ -123311,7 +123475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lagkagehuset-378006.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lagkagehuset-378006.jpg" }, { "if": { @@ -123326,7 +123490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lagler-6ec796.png" + "then": "https://data.mapcomplete.org/nsi//logos/lagler-6ec796.png" }, { "if": { @@ -123341,7 +123505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landbackereischmidt-965fe9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landbackereischmidt-965fe9.jpg" }, { "if": { @@ -123356,7 +123520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lecrobag-367eb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lecrobag-367eb3.jpg" }, { "if": { @@ -123371,7 +123535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lepaindujour-08fdce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lepaindujour-08fdce.jpg" }, { "if": { @@ -123386,7 +123550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lepetrinribeirou-09ad2c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lepetrinribeirou-09ad2c.png" }, { "if": { @@ -123401,7 +123565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leifert-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leifert-3f448e.jpg" }, { "if": { @@ -123416,7 +123580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lesfournilsdefrance-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lesfournilsdefrance-09ad2c.jpg" }, { "if": { @@ -123431,7 +123595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lilabacker-3f448e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lilabacker-3f448e.svg" }, { "if": { @@ -123446,7 +123610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lipotipekseg-46ae54.png" + "then": "https://data.mapcomplete.org/nsi//logos/lipotipekseg-46ae54.png" }, { "if": { @@ -123461,7 +123625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowenbackerschaper-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lowenbackerschaper-3f448e.jpg" }, { "if": { @@ -123476,7 +123640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luca-fd5747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luca-fd5747.jpg" }, { "if": { @@ -123491,7 +123655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maisonbecam-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maisonbecam-09ad2c.jpg" }, { "if": { @@ -123506,7 +123670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maisonplanchot-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maisonplanchot-09ad2c.jpg" }, { "if": { @@ -123521,7 +123685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/makocakeandbakery-a78b8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/makocakeandbakery-a78b8f.jpg" }, { "if": { @@ -123536,7 +123700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malcolmbarnecutt-00bbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/malcolmbarnecutt-00bbe7.jpg" }, { "if": { @@ -123551,7 +123715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malzers-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/malzers-3f448e.jpg" }, { "if": { @@ -123566,7 +123730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marieblachere-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marieblachere-09ad2c.jpg" }, { "if": { @@ -123581,7 +123745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martinauer-2e087b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/martinauer-2e087b.jpg" }, { "if": { @@ -123596,7 +123760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meffert-9a87b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meffert-9a87b1.jpg" }, { "if": { @@ -123611,7 +123775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merzenich-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/merzenich-3f448e.jpg" }, { "if": { @@ -123626,7 +123790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milkau-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milkau-3f448e.jpg" }, { "if": { @@ -123641,7 +123805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milliescookies-376142.png" + "then": "https://data.mapcomplete.org/nsi//logos/milliescookies-376142.png" }, { "if": { @@ -123656,7 +123820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minit-3ca1fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minit-3ca1fa.jpg" }, { "if": { @@ -123671,7 +123835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mlinar-f94504.png" + "then": "https://data.mapcomplete.org/nsi//logos/mlinar-f94504.png" }, { "if": { @@ -123686,7 +123850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mullerandegerer-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mullerandegerer-3f448e.jpg" }, { "if": { @@ -123701,7 +123865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/multivlaai-8eaf6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/multivlaai-8eaf6b.jpg" }, { "if": { @@ -123716,7 +123880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/musmanni-8b7146.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/musmanni-8b7146.jpg" }, { "if": { @@ -123731,7 +123895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nobis-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nobis-3f448e.jpg" }, { "if": { @@ -123746,7 +123910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ogiberri-e3bb42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ogiberri-e3bb42.jpg" }, { "if": { @@ -123761,7 +123925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oleandsteen-f904a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oleandsteen-f904a1.jpg" }, { "if": { @@ -123776,7 +123940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oskroba-839c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oskroba-839c38.jpg" }, { "if": { @@ -123791,7 +123955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pandemanila-b6c45f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pandemanila-b6c45f.jpg" }, { "if": { @@ -123806,7 +123970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panpek-0cc7ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panpek-0cc7ae.jpg" }, { "if": { @@ -123821,7 +123985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panishop-0ef3f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panishop-0ef3f4.jpg" }, { "if": { @@ -123836,7 +124000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pappert-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pappert-3f448e.jpg" }, { "if": { @@ -123851,7 +124015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parisbaguette-e1a226.png" + "then": "https://data.mapcomplete.org/nsi//logos/parisbaguette-e1a226.png" }, { "if": { @@ -123866,7 +124030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paul-652955.png" + "then": "https://data.mapcomplete.org/nsi//logos/paul-652955.png" }, { "if": { @@ -123881,7 +124045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petersgutebackstube-3f448e.png" + "then": "https://data.mapcomplete.org/nsi//logos/petersgutebackstube-3f448e.png" }, { "if": { @@ -123896,7 +124060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piekarniaszwajcarska-839c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piekarniaszwajcarska-839c38.jpg" }, { "if": { @@ -123911,7 +124075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poundbakery-680575.png" + "then": "https://data.mapcomplete.org/nsi//logos/poundbakery-680575.png" }, { "if": { @@ -123926,7 +124090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/przystanekpiekarnia-839c38.png" + "then": "https://data.mapcomplete.org/nsi//logos/przystanekpiekarnia-839c38.png" }, { "if": { @@ -123941,7 +124105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/putka-839c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/putka-839c38.jpg" }, { "if": { @@ -123956,7 +124120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redribbon-657c23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redribbon-657c23.jpg" }, { "if": { @@ -123971,7 +124135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/richtersaltstadtbackerei-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/richtersaltstadtbackerei-3f448e.jpg" }, { "if": { @@ -123986,7 +124150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rischart-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rischart-3f448e.jpg" }, { "if": { @@ -124001,7 +124165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rondedespains-a38521.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rondedespains-a38521.jpg" }, { "if": { @@ -124016,7 +124180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rotio-a78b8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rotio-a78b8f.jpg" }, { "if": { @@ -124031,7 +124195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rotiboy-ebdfa2.png" + "then": "https://data.mapcomplete.org/nsi//logos/rotiboy-ebdfa2.png" }, { "if": { @@ -124046,7 +124210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandersbackstube-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandersbackstube-3f448e.jpg" }, { "if": { @@ -124062,7 +124226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santagloria-61d4aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/santagloria-61d4aa.svg" }, { "if": { @@ -124077,7 +124241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schaferdeinbacker-a60adf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schaferdeinbacker-a60adf.jpg" }, { "if": { @@ -124092,7 +124256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schafers-3f448e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schafers-3f448e.svg" }, { "if": { @@ -124108,7 +124272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schwerdtner-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schwerdtner-3f448e.jpg" }, { "if": { @@ -124123,7 +124287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sehne-3f448e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sehne-3f448e.svg" }, { "if": { @@ -124142,7 +124306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/semeur-ea5ee6.png" + "then": "https://data.mapcomplete.org/nsi//logos/semeur-ea5ee6.png" }, { "if": { @@ -124157,7 +124321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simitsarayi-a32269.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/simitsarayi-a32269.jpg" }, { "if": { @@ -124172,7 +124336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sipl-7367b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/sipl-7367b5.png" }, { "if": { @@ -124187,7 +124351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetbakehouse-4b4468.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetbakehouse-4b4468.jpg" }, { "if": { @@ -124202,7 +124366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sophielebreuilly-09ad2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sophielebreuilly-09ad2c.jpg" }, { "if": { @@ -124217,7 +124381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spc-839c38.png" + "then": "https://data.mapcomplete.org/nsi//logos/spc-839c38.png" }, { "if": { @@ -124233,7 +124397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbackereikamp-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbackereikamp-3f448e.jpg" }, { "if": { @@ -124248,7 +124412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stangengrunermuhlenbackerei-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stangengrunermuhlenbackerei-3f448e.jpg" }, { "if": { @@ -124263,7 +124427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starkebacker-3f448e.png" + "then": "https://data.mapcomplete.org/nsi//logos/starkebacker-3f448e.png" }, { "if": { @@ -124278,7 +124442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steinecke-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steinecke-3f448e.jpg" }, { "if": { @@ -124293,7 +124457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steiner-903073.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steiner-903073.jpg" }, { "if": { @@ -124308,7 +124472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steiskal-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steiskal-3f448e.jpg" }, { "if": { @@ -124323,7 +124487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sternenback-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sternenback-3f448e.jpg" }, { "if": { @@ -124338,7 +124502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stinges-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stinges-3f448e.jpg" }, { "if": { @@ -124353,7 +124517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/strock-2e087b.png" + "then": "https://data.mapcomplete.org/nsi//logos/strock-2e087b.png" }, { "if": { @@ -124368,7 +124532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taumberger-6ec796.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taumberger-6ec796.jpg" }, { "if": { @@ -124383,7 +124547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecheesecakeshop-4d3be5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecheesecakeshop-4d3be5.jpg" }, { "if": { @@ -124398,7 +124562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/touslesjours-e39ddb.png" + "then": "https://data.mapcomplete.org/nsi//logos/touslesjours-e39ddb.png" }, { "if": { @@ -124413,7 +124577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valeriostropicalbakeshop-515502.png" + "then": "https://data.mapcomplete.org/nsi//logos/valeriostropicalbakeshop-515502.png" }, { "if": { @@ -124428,7 +124592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vincent-839c38.png" + "then": "https://data.mapcomplete.org/nsi//logos/vincent-839c38.png" }, { "if": { @@ -124443,7 +124607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vonallworden-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vonallworden-3f448e.jpg" }, { "if": { @@ -124458,7 +124622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warrensbakery-680575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warrensbakery-680575.jpg" }, { "if": { @@ -124473,7 +124637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wenzels-680575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wenzels-680575.jpg" }, { "if": { @@ -124488,7 +124652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienerfeinbackerheberer-3f448e.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienerfeinbackerheberer-3f448e.png" }, { "if": { @@ -124503,7 +124667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienerroither-2e087b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienerroither-2e087b.jpg" }, { "if": { @@ -124518,7 +124682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wolf-697817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wolf-697817.jpg" }, { "if": { @@ -124533,7 +124697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woops-03cd91.png" + "then": "https://data.mapcomplete.org/nsi//logos/woops-03cd91.png" }, { "if": { @@ -124548,7 +124712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klara-0cc7ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/klara-0cc7ae.png" }, { "if": { @@ -124563,7 +124727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeitfurbrot-3f448e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeitfurbrot-3f448e.jpg" }, { "if": { @@ -124582,7 +124746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veneti-ec42d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veneti-ec42d9.jpg" }, { "if": { @@ -124600,7 +124764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terkenlis-e9ca96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terkenlis-e9ca96.jpg" }, { "if": { @@ -124615,7 +124779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3946ef-44faa4.png" + "then": "https://data.mapcomplete.org/nsi//logos/3946ef-44faa4.png" }, { "if": { @@ -124634,7 +124798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bushe-44faa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bushe-44faa4.jpg" }, { "if": { @@ -124649,7 +124813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3d7cfd-3664c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3d7cfd-3664c0.jpg" }, { "if": { @@ -124667,7 +124831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kulinichi-3664c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kulinichi-3664c0.jpg" }, { "if": { @@ -124682,7 +124846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/0397da-3664c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/0397da-3664c0.jpg" }, { "if": { @@ -124697,7 +124861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a93233-3664c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/a93233-3664c0.png" }, { "if": { @@ -124712,7 +124876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d1829c-44faa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d1829c-44faa4.jpg" }, { "if": { @@ -124727,7 +124891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f4eaeb-44faa4.png" + "then": "https://data.mapcomplete.org/nsi//logos/f4eaeb-44faa4.png" }, { "if": { @@ -124742,7 +124906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9f4099-3664c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9f4099-3664c0.jpg" }, { "if": { @@ -124761,7 +124925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neemanbakery-2a1629.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neemanbakery-2a1629.jpg" }, { "if": { @@ -124780,7 +124944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/touslesjours-e38a76.png" + "then": "https://data.mapcomplete.org/nsi//logos/touslesjours-e38a76.png" }, { "if": { @@ -124800,7 +124964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parisbaguette-e38a76.png" + "then": "https://data.mapcomplete.org/nsi//logos/parisbaguette-e38a76.png" }, { "if": { @@ -124819,7 +124983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andersen-59bce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andersen-59bce6.jpg" }, { "if": { @@ -124838,7 +125002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viedefrance-59bce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/viedefrance-59bce6.jpg" }, { "if": { @@ -124857,7 +125021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintgermain-59bce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintgermain-59bce6.jpg" }, { "if": { @@ -124876,7 +125040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donq-59bce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donq-59bce6.jpg" }, { "if": { @@ -124895,7 +125059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pompadour-59bce6.png" + "then": "https://data.mapcomplete.org/nsi//logos/pompadour-59bce6.png" }, { "if": { @@ -124914,7 +125078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlemermaid-59bce6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/littlemermaid-59bce6.svg" }, { "if": { @@ -124933,7 +125097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/touslesjours-c0ca1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/touslesjours-c0ca1d.png" }, { "if": { @@ -124952,7 +125116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taipanbreadandcakes-ebd86c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taipanbreadandcakes-ebd86c.jpg" }, { "if": { @@ -124975,7 +125139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keewahbakery-ebd86c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keewahbakery-ebd86c.jpg" }, { "if": { @@ -124996,7 +125160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamazakibaking-59bce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamazakibaking-59bce6.jpg" }, { "if": { @@ -125017,7 +125181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamazakibaking-ea5ee6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamazakibaking-ea5ee6.jpg" }, { "if": { @@ -125042,7 +125206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamazakibaking-ebd86c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamazakibaking-ebd86c.jpg" }, { "if": { @@ -125061,7 +125225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parisbaguette-c0ca1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/parisbaguette-c0ca1d.png" }, { "if": { @@ -125080,7 +125244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aromebakery-ebd86c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aromebakery-ebd86c.jpg" }, { "if": { @@ -125099,7 +125263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gakuden-ea5ee6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gakuden-ea5ee6.jpg" }, { "if": { @@ -125118,7 +125282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maximscakes-ebd86c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maximscakes-ebd86c.jpg" }, { "if": { @@ -125137,7 +125301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sainthonorecakeshop-757d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sainthonorecakeshop-757d2b.jpg" }, { "if": { @@ -125156,7 +125320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breadtalk-4517b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/breadtalk-4517b3.jpg" }, { "if": { @@ -125175,7 +125339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shunchenbakery-ea5ee6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shunchenbakery-ea5ee6.jpg" }, { "if": { @@ -125194,7 +125358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrmark-ea5ee6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrmark-ea5ee6.jpg" }, { "if": { @@ -125213,7 +125377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breadtalk-757d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/breadtalk-757d2b.jpg" }, { "if": { @@ -125228,7 +125392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easybathrooms-72592f.png" + "then": "https://data.mapcomplete.org/nsi//logos/easybathrooms-72592f.png" }, { "if": { @@ -125243,7 +125407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kohler-89347c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kohler-89347c.jpg" }, { "if": { @@ -125258,7 +125422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanidump-ac38ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanidump-ac38ee.png" }, { "if": { @@ -125273,7 +125437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanidirect-c2f578.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanidirect-c2f578.png" }, { "if": { @@ -125288,7 +125452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/x2o-caedbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/x2o-caedbb.jpg" }, { "if": { @@ -125303,7 +125467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d84984-ac38ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d84984-ac38ee.jpg" }, { "if": { @@ -125318,7 +125482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barbequesgalore-83e1d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/barbequesgalore-83e1d4.png" }, { "if": { @@ -125334,7 +125498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazinglashstudio-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amazinglashstudio-cc0daa.jpg" }, { "if": { @@ -125350,7 +125514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anthonyvincenailspa-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anthonyvincenailspa-cc0daa.jpg" }, { "if": { @@ -125366,7 +125530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benefitbrowbar-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/benefitbrowbar-cc0daa.jpg" }, { "if": { @@ -125382,7 +125546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodydetails-5c9c48.png" + "then": "https://data.mapcomplete.org/nsi//logos/bodydetails-5c9c48.png" }, { "if": { @@ -125398,7 +125562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodyminute-e85977.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodyminute-e85977.jpg" }, { "if": { @@ -125414,7 +125578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/browart23-cc0daa.png" + "then": "https://data.mapcomplete.org/nsi//logos/browart23-cc0daa.png" }, { "if": { @@ -125430,7 +125594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/browstudio7-4be8e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/browstudio7-4be8e1.png" }, { "if": { @@ -125446,7 +125610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carlance-b52040.png" + "then": "https://data.mapcomplete.org/nsi//logos/carlance-b52040.png" }, { "if": { @@ -125462,7 +125626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citronvert-b52040.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citronvert-b52040.jpg" }, { "if": { @@ -125478,7 +125642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dekalash-4be8e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/dekalash-4be8e1.png" }, { "if": { @@ -125494,7 +125658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/depylaction-69a669.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/depylaction-69a669.jpg" }, { "if": { @@ -125510,7 +125674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endlichohne-fc55f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endlichohne-fc55f7.jpg" }, { "if": { @@ -125526,7 +125690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/espacolaser-751030.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/espacolaser-751030.jpg" }, { "if": { @@ -125542,7 +125706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/estheticcenter-bc649c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/estheticcenter-bc649c.jpg" }, { "if": { @@ -125558,7 +125722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eyebrowplus-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eyebrowplus-cc0daa.jpg" }, { "if": { @@ -125574,7 +125738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fabutan-8ad523.png" + "then": "https://data.mapcomplete.org/nsi//logos/fabutan-8ad523.png" }, { "if": { @@ -125590,7 +125754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guinot-0c474f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guinot-0c474f.jpg" }, { "if": { @@ -125606,7 +125770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laseraway-cc0daa.png" + "then": "https://data.mapcomplete.org/nsi//logos/laseraway-cc0daa.png" }, { "if": { @@ -125622,7 +125786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madisonreed-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madisonreed-cc0daa.jpg" }, { "if": { @@ -125638,7 +125802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mespa-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mespa-cc0daa.jpg" }, { "if": { @@ -125654,7 +125818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturals-2dc292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturals-2dc292.jpg" }, { "if": { @@ -125670,7 +125834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmbeachtan-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmbeachtan-cc0daa.jpg" }, { "if": { @@ -125686,7 +125850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regalnails-4be8e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regalnails-4be8e1.jpg" }, { "if": { @@ -125702,7 +125866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/removery-3175dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/removery-3175dd.jpg" }, { "if": { @@ -125718,7 +125882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/restorehyperwellness-cc0daa.png" + "then": "https://data.mapcomplete.org/nsi//logos/restorehyperwellness-cc0daa.png" }, { "if": { @@ -125734,7 +125898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skinlaundry-85c569.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skinlaundry-85c569.jpg" }, { "if": { @@ -125750,7 +125914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solasalons-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/solasalons-cc0daa.jpg" }, { "if": { @@ -125766,7 +125930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suntancity-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suntancity-cc0daa.jpg" }, { "if": { @@ -125782,7 +125946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunpoint-fc55f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunpoint-fc55f7.jpg" }, { "if": { @@ -125798,7 +125962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanrepublic-cc0daa.png" + "then": "https://data.mapcomplete.org/nsi//logos/tanrepublic-cc0daa.png" }, { "if": { @@ -125814,7 +125978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanningshop-2786f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tanningshop-2786f9.jpg" }, { "if": { @@ -125830,7 +125994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thelashlounge-cc0daa.png" + "then": "https://data.mapcomplete.org/nsi//logos/thelashlounge-cc0daa.png" }, { "if": { @@ -125847,7 +126011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theskinbaratultabeauty-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theskinbaratultabeauty-cc0daa.jpg" }, { "if": { @@ -125863,7 +126027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/therapieclinic-a549e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/therapieclinic-a549e8.jpg" }, { "if": { @@ -125879,7 +126043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waxingthecity-cc0daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waxingthecity-cc0daa.jpg" }, { "if": { @@ -125895,7 +126059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yvesrocher-422e39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yvesrocher-422e39.jpg" }, { "if": { @@ -125915,7 +126079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yvesrocher-a8af93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yvesrocher-a8af93.jpg" }, { "if": { @@ -125935,7 +126099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yvesrocher-502b93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yvesrocher-502b93.jpg" }, { "if": { @@ -125955,7 +126119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yvesrocher-1744e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yvesrocher-1744e8.jpg" }, { "if": { @@ -125970,7 +126134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amerisleep-032196.png" + "then": "https://data.mapcomplete.org/nsi//logos/amerisleep-032196.png" }, { "if": { @@ -125985,7 +126149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bambiyatak-a08a8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bambiyatak-a08a8e.jpg" }, { "if": { @@ -126000,7 +126164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedmart-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedmart-032196.jpg" }, { "if": { @@ -126015,7 +126179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedsrus-156cc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedsrus-156cc7.jpg" }, { "if": { @@ -126030,7 +126194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedshed-156cc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedshed-156cc7.jpg" }, { "if": { @@ -126045,7 +126209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedsrus-a769d8.png" + "then": "https://data.mapcomplete.org/nsi//logos/bedsrus-a769d8.png" }, { "if": { @@ -126060,7 +126224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bensonsforbeds-d088e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bensonsforbeds-d088e6.jpg" }, { "if": { @@ -126075,7 +126239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beterbed-3030e1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/beterbed-3030e1.svg" }, { "if": { @@ -126092,7 +126256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brava-cd9810.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brava-cd9810.jpg" }, { "if": { @@ -126107,7 +126271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casper-a50061.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casper-a50061.jpg" }, { "if": { @@ -126122,7 +126286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dialabed-d8cd0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/dialabed-d8cd0b.png" }, { "if": { @@ -126137,7 +126301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dreams-8fcb64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dreams-8fcb64.jpg" }, { "if": { @@ -126152,7 +126316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortywinks-156cc7.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortywinks-156cc7.png" }, { "if": { @@ -126167,7 +126331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franceliterie-1bbb34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/franceliterie-1bbb34.jpg" }, { "if": { @@ -126182,7 +126346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandlitier-fe1cb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandlitier-fe1cb3.jpg" }, { "if": { @@ -126197,7 +126361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idas-a08a8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idas-a08a8e.jpg" }, { "if": { @@ -126212,7 +126376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacompagniedulit-bec31a.png" + "then": "https://data.mapcomplete.org/nsi//logos/lacompagniedulit-bec31a.png" }, { "if": { @@ -126227,7 +126391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leroidumatelas-1bbb34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leroidumatelas-1bbb34.jpg" }, { "if": { @@ -126242,7 +126406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lovayatak-a08a8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lovayatak-a08a8e.jpg" }, { "if": { @@ -126257,7 +126421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maisondelaliterie-fe1cb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maisondelaliterie-fe1cb3.jpg" }, { "if": { @@ -126272,7 +126436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matratzenconcord-795ce0.png" + "then": "https://data.mapcomplete.org/nsi//logos/matratzenconcord-795ce0.png" }, { "if": { @@ -126287,7 +126451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mattressdepotusa-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mattressdepotusa-032196.jpg" }, { "if": { @@ -126302,7 +126466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mattressfirm-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mattressfirm-032196.jpg" }, { "if": { @@ -126317,7 +126481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mattressfirmclearance-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mattressfirmclearance-032196.jpg" }, { "if": { @@ -126332,7 +126496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mattresswarehouse-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mattresswarehouse-032196.jpg" }, { "if": { @@ -126347,7 +126511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mattressworldnorthwest-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mattressworldnorthwest-032196.jpg" }, { "if": { @@ -126362,7 +126526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metromattress-5fccfc.png" + "then": "https://data.mapcomplete.org/nsi//logos/metromattress-5fccfc.png" }, { "if": { @@ -126377,7 +126541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mfomatratzen-c61a29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mfomatratzen-c61a29.jpg" }, { "if": { @@ -126393,7 +126557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/originalmattressfactory-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/originalmattressfactory-032196.jpg" }, { "if": { @@ -126408,7 +126572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ortobom-4b84fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/ortobom-4b84fc.png" }, { "if": { @@ -126423,7 +126587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prespanok-16989e.png" + "then": "https://data.mapcomplete.org/nsi//logos/prespanok-16989e.png" }, { "if": { @@ -126438,7 +126602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prospanek-5fff87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prospanek-5fff87.jpg" }, { "if": { @@ -126453,7 +126617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/purple-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/purple-032196.jpg" }, { "if": { @@ -126468,7 +126632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sleepcountry-fbfe85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sleepcountry-fbfe85.jpg" }, { "if": { @@ -126483,7 +126647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sleepexperts-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sleepexperts-032196.jpg" }, { "if": { @@ -126498,7 +126662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sleepnumber-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sleepnumber-032196.jpg" }, { "if": { @@ -126513,7 +126677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sleepoutfitters-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sleepoutfitters-032196.jpg" }, { "if": { @@ -126528,7 +126692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sleepmasters-d8cd0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sleepmasters-d8cd0b.jpg" }, { "if": { @@ -126543,7 +126707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisssense-80dbc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisssense-80dbc6.jpg" }, { "if": { @@ -126558,7 +126722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ted-cd9810.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ted-cd9810.jpg" }, { "if": { @@ -126573,7 +126737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tempurpedic-032196.png" + "then": "https://data.mapcomplete.org/nsi//logos/tempurpedic-032196.png" }, { "if": { @@ -126588,7 +126752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebedstore-d8cd0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebedstore-d8cd0b.jpg" }, { "if": { @@ -126603,7 +126767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuftandneedle-032196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuftandneedle-032196.jpg" }, { "if": { @@ -126618,7 +126782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yatasbedding-1dfb01.png" + "then": "https://data.mapcomplete.org/nsi//logos/yatasbedding-1dfb01.png" }, { "if": { @@ -126633,7 +126797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yatsan-a08a8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yatsan-a08a8e.jpg" }, { "if": { @@ -126648,7 +126812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alldrink-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alldrink-c4cb62.jpg" }, { "if": { @@ -126663,7 +126827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bilgro-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bilgro-c4cb62.jpg" }, { "if": { @@ -126678,7 +126842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edekagetrankemarkt-c4cb62.png" + "then": "https://data.mapcomplete.org/nsi//logos/edekagetrankemarkt-c4cb62.png" }, { "if": { @@ -126693,7 +126857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiizdrinks-dd8a79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiizdrinks-dd8a79.jpg" }, { "if": { @@ -126708,7 +126872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fristo-650acc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fristo-650acc.svg" }, { "if": { @@ -126723,7 +126887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/getrankehoffmann-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/getrankehoffmann-c4cb62.jpg" }, { "if": { @@ -126738,7 +126902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/getrankequelle-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/getrankequelle-c4cb62.jpg" }, { "if": { @@ -126753,7 +126917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/getrankeland-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/getrankeland-c4cb62.jpg" }, { "if": { @@ -126768,7 +126932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/getrankewelt-f24eb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/getrankewelt-f24eb8.png" }, { "if": { @@ -126783,7 +126947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holab-c4cb62.svg" + "then": "https://data.mapcomplete.org/nsi//logos/holab-c4cb62.svg" }, { "if": { @@ -126799,7 +126963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/logogetrankefachmarkt-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/logogetrankefachmarkt-c4cb62.jpg" }, { "if": { @@ -126814,7 +126978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/markgrafengetrankemarkt-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/markgrafengetrankemarkt-c4cb62.jpg" }, { "if": { @@ -126829,7 +126993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nettogetrankediscount-c4cb62.png" + "then": "https://data.mapcomplete.org/nsi//logos/nettogetrankediscount-c4cb62.png" }, { "if": { @@ -126844,7 +127008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orterergetrankemarkt-c4cb62.png" + "then": "https://data.mapcomplete.org/nsi//logos/orterergetrankemarkt-c4cb62.png" }, { "if": { @@ -126859,7 +127023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewegetrankemarkt-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rewegetrankemarkt-c4cb62.jpg" }, { "if": { @@ -126874,7 +127038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sagasser-c4cb62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sagasser-c4cb62.jpg" }, { "if": { @@ -126889,7 +127053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trinkandspare-573561.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trinkandspare-573561.jpg" }, { "if": { @@ -126904,7 +127068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trinkgut-fe02c7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trinkgut-fe02c7.svg" }, { "if": { @@ -126923,7 +127087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hungfooktong-71bf69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hungfooktong-71bf69.jpg" }, { "if": { @@ -126938,7 +127102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/99bikes-0d00fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/99bikes-0d00fa.png" }, { "if": { @@ -126953,7 +127117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alltricks-64ac44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alltricks-64ac44.jpg" }, { "if": { @@ -126968,7 +127132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boc-b51da6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boc-b51da6.jpg" }, { "if": { @@ -126983,7 +127147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/balfesbikes-e982e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/balfesbikes-e982e5.jpg" }, { "if": { @@ -126998,7 +127162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biketotaal-a0a74d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biketotaal-a0a74d.jpg" }, { "if": { @@ -127013,7 +127177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bouticycle-64ac44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bouticycle-64ac44.jpg" }, { "if": { @@ -127028,7 +127192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/culturevelo-64ac44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/culturevelo-64ac44.jpg" }, { "if": { @@ -127043,7 +127207,22 @@ } ] }, - "then": "./assets/data/nsi/logos/cyclable-64ac44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyclable-64ac44.jpg" + }, + { + "if": { + "and": [ + "shop=bicycle", + { + "or": [ + "brand=Cycle Lab", + "brand:wikidata=Q130487839", + "name=Cycle Lab" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/cyclelab-d271c4.jpg" }, { "if": { @@ -127058,7 +127237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evanscycles-3697a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evanscycles-3697a8.jpg" }, { "if": { @@ -127073,7 +127252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fahrradxxl-b51da6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fahrradxxl-b51da6.jpg" }, { "if": { @@ -127088,7 +127267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fietsenwinkelnl-a0a74d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fietsenwinkelnl-a0a74d.jpg" }, { "if": { @@ -127103,7 +127282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fribikeshop-ff17d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fribikeshop-ff17d0.jpg" }, { "if": { @@ -127118,7 +127297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giant-3628a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giant-3628a9.jpg" }, { "if": { @@ -127133,7 +127312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlejohnbikes-b51da6.png" + "then": "https://data.mapcomplete.org/nsi//logos/littlejohnbikes-b51da6.png" }, { "if": { @@ -127148,7 +127327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/materielvelocom-64ac44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/materielvelocom-64ac44.jpg" }, { "if": { @@ -127163,7 +127342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mondovelo-64ac44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mondovelo-64ac44.jpg" }, { "if": { @@ -127178,7 +127357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/profile-a0a74d.png" + "then": "https://data.mapcomplete.org/nsi//logos/profile-a0a74d.png" }, { "if": { @@ -127193,7 +127372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pureelectric-3697a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pureelectric-3697a8.jpg" }, { "if": { @@ -127208,7 +127387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/specialized-3628a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/specialized-3628a9.jpg" }, { "if": { @@ -127223,7 +127402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stella-75e76c.png" + "then": "https://data.mapcomplete.org/nsi//logos/stella-75e76c.png" }, { "if": { @@ -127238,7 +127417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokyobike-1c47bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokyobike-1c47bc.jpg" }, { "if": { @@ -127254,7 +127433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trek-3628a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/trek-3628a9.png" }, { "if": { @@ -127269,14 +127448,11 @@ } ] }, - "then": "./assets/data/nsi/logos/zweiradcenterstadler-d06ca0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zweiradcenterstadler-d06ca0.jpg" }, { "if": { "and": [ - "official_name=イオンサイクルショップ", - "official_name:en=Aeon Bike Shop", - "official_name:ja=イオンサイクルショップ", "shop=bicycle", { "or": [ @@ -127286,12 +127462,15 @@ "brand:wikidata=Q11286054", "name=イオンバイク", "name:en=Aeon Bike", - "name:ja=イオンバイク" + "name:ja=イオンバイク", + "official_name=イオンサイクルショップ", + "official_name:en=Aeon Bike Shop", + "official_name:ja=イオンサイクルショップ" ] } ] }, - "then": "./assets/data/nsi/logos/aeonbike-1d9d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aeonbike-1d9d0f.jpg" }, { "if": { @@ -127310,7 +127489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyclespot-1d9d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyclespot-1d9d0f.jpg" }, { "if": { @@ -127329,7 +127508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyclebaseasahi-1d9d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyclebaseasahi-1d9d0f.jpg" }, { "if": { @@ -127348,7 +127527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giant-88c22b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giant-88c22b.jpg" }, { "if": { @@ -127367,7 +127546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merida-88c22b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/merida-88c22b.jpg" }, { "if": { @@ -127384,7 +127563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burnsco-bc4d2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/burnsco-bc4d2d.png" }, { "if": { @@ -127399,7 +127578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marinemax-db06dd.png" + "then": "https://data.mapcomplete.org/nsi//logos/marinemax-db06dd.png" }, { "if": { @@ -127416,7 +127595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westmarine-db06dd.png" + "then": "https://data.mapcomplete.org/nsi//logos/westmarine-db06dd.png" }, { "if": { @@ -127431,7 +127610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/betfred-58d00b.png" + "then": "https://data.mapcomplete.org/nsi//logos/betfred-58d00b.png" }, { "if": { @@ -127446,7 +127625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boylesports-afd1fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/boylesports-afd1fc.png" }, { "if": { @@ -127461,7 +127640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurobet-d45505.png" + "then": "https://data.mapcomplete.org/nsi//logos/eurobet-d45505.png" }, { "if": { @@ -127476,7 +127655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ladbrokes-afd1fc.gif" + "then": "https://data.mapcomplete.org/nsi//logos/ladbrokes-afd1fc.gif" }, { "if": { @@ -127491,7 +127670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nike-faffc2.png" + "then": "https://data.mapcomplete.org/nsi//logos/nike-faffc2.png" }, { "if": { @@ -127506,7 +127685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paddypower-afd1fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/paddypower-afd1fc.png" }, { "if": { @@ -127521,7 +127700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stanleybet-dd4c95.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stanleybet-dd4c95.svg" }, { "if": { @@ -127536,7 +127715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superbet-81d51d.png" + "then": "https://data.mapcomplete.org/nsi//logos/superbet-81d51d.png" }, { "if": { @@ -127551,7 +127730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tipico-7054e9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tipico-7054e9.svg" }, { "if": { @@ -127566,7 +127745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/williamhill-58d00b.png" + "then": "https://data.mapcomplete.org/nsi//logos/williamhill-58d00b.png" }, { "if": { @@ -127585,7 +127764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fonbet-867318.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fonbet-867318.jpg" }, { "if": { @@ -127600,7 +127779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akademibokhandeln-9645e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akademibokhandeln-9645e8.jpg" }, { "if": { @@ -127615,7 +127794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akateeminenkirjakauppa-0c91f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/akateeminenkirjakauppa-0c91f3.svg" }, { "if": { @@ -127630,7 +127809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazonbooks-1bd7b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amazonbooks-1bd7b6.jpg" }, { "if": { @@ -127645,7 +127824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asiabooks-06b756.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asiabooks-06b756.jpg" }, { "if": { @@ -127660,7 +127839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bargainbooks-8d3b5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bargainbooks-8d3b5b.jpg" }, { "if": { @@ -127675,7 +127854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barnesandnoble-1bd7b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barnesandnoble-1bd7b6.jpg" }, { "if": { @@ -127690,7 +127869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barnesandnoblecollege-1bd7b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barnesandnoblecollege-1bd7b6.jpg" }, { "if": { @@ -127705,7 +127884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bertrand-817210.png" + "then": "https://data.mapcomplete.org/nsi//logos/bertrand-817210.png" }, { "if": { @@ -127720,7 +127899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boekenvoordeel-1267b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boekenvoordeel-1267b5.jpg" }, { "if": { @@ -127735,7 +127914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bogandide-d03d88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bogandide-d03d88.jpg" }, { "if": { @@ -127750,7 +127929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonito-0c5adb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonito-0c5adb.jpg" }, { "if": { @@ -127765,7 +127944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/booksamillion-1bd7b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/booksamillion-1bd7b6.jpg" }, { "if": { @@ -127780,7 +127959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/booktrading-eec251.png" + "then": "https://data.mapcomplete.org/nsi//logos/booktrading-eec251.png" }, { "if": { @@ -127795,7 +127974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bruna-1267b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bruna-1267b5.jpg" }, { "if": { @@ -127810,7 +127989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bucherpustet-65e1d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bucherpustet-65e1d5.jpg" }, { "if": { @@ -127825,7 +128004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buchhandlungwaltherkonig-dc1b83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buchhandlungwaltherkonig-dc1b83.jpg" }, { "if": { @@ -127840,7 +128019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carturesti-2e1569.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carturesti-2e1569.jpg" }, { "if": { @@ -127855,7 +128034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casadellibro-03d7b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casadellibro-03d7b8.jpg" }, { "if": { @@ -127870,7 +128049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chapters-285257.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chapters-285257.jpg" }, { "if": { @@ -127885,7 +128064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ciela-eec251.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ciela-eec251.jpg" }, { "if": { @@ -127900,7 +128079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coles-c95919.svg" + "then": "https://data.mapcomplete.org/nsi//logos/coles-c95919.svg" }, { "if": { @@ -127915,7 +128094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crosswordbookstores-be6694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crosswordbookstores-be6694.jpg" }, { "if": { @@ -127930,7 +128109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cultura-f3b31c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cultura-f3b31c.png" }, { "if": { @@ -127947,7 +128126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cumbooks-8d3b5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cumbooks-8d3b5b.jpg" }, { "if": { @@ -127962,7 +128141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dandr-c24b88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dandr-c24b88.jpg" }, { "if": { @@ -127977,7 +128156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dauntbooks-587203.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dauntbooks-587203.jpg" }, { "if": { @@ -127992,7 +128171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dedalus-0c5adb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dedalus-0c5adb.jpg" }, { "if": { @@ -128011,7 +128190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delfi-000b97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delfi-000b97.jpg" }, { "if": { @@ -128026,7 +128205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dymocks-e673a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dymocks-e673a5.jpg" }, { "if": { @@ -128041,7 +128220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eason-202425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eason-202425.jpg" }, { "if": { @@ -128056,7 +128235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empik-0c5adb.png" + "then": "https://data.mapcomplete.org/nsi//logos/empik-0c5adb.png" }, { "if": { @@ -128071,7 +128250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exclusivebooks-086859.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exclusivebooks-086859.jpg" }, { "if": { @@ -128086,7 +128265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foyles-e6b908.png" + "then": "https://data.mapcomplete.org/nsi//logos/foyles-e6b908.png" }, { "if": { @@ -128101,7 +128280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franceloisirs-f3b31c.png" + "then": "https://data.mapcomplete.org/nsi//logos/franceloisirs-f3b31c.png" }, { "if": { @@ -128117,7 +128296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/funside-56c580.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/funside-56c580.jpg" }, { "if": { @@ -128132,7 +128311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gandhi-1ea9d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gandhi-1ea9d6.jpg" }, { "if": { @@ -128147,7 +128326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giuntialpunto-56c580.png" + "then": "https://data.mapcomplete.org/nsi//logos/giuntialpunto-56c580.png" }, { "if": { @@ -128162,7 +128341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gramedia-828c8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gramedia-828c8f.jpg" }, { "if": { @@ -128177,7 +128356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halfpricebooks-1bd7b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halfpricebooks-1bd7b6.jpg" }, { "if": { @@ -128192,7 +128371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/higginbothams-be6694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/higginbothams-be6694.jpg" }, { "if": { @@ -128207,7 +128386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hudsonbooksellers-285257.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hudsonbooksellers-285257.jpg" }, { "if": { @@ -128222,7 +128401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hugendubel-65e1d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/hugendubel-65e1d5.png" }, { "if": { @@ -128238,7 +128417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indigo-285257.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indigo-285257.jpg" }, { "if": { @@ -128253,7 +128432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jokers-65e1d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jokers-65e1d5.jpg" }, { "if": { @@ -128268,7 +128447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kanzelsberger-70eb04.png" + "then": "https://data.mapcomplete.org/nsi//logos/kanzelsberger-70eb04.png" }, { "if": { @@ -128283,7 +128462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinokuniya-3c069b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kinokuniya-3c069b.jpg" }, { "if": { @@ -128298,7 +128477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafeltrinelli-56c580.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lafeltrinelli-56c580.svg" }, { "if": { @@ -128313,7 +128492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laprocure-9d3dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laprocure-9d3dbd.jpg" }, { "if": { @@ -128332,7 +128511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laguna-000b97.png" + "then": "https://data.mapcomplete.org/nsi//logos/laguna-000b97.png" }, { "if": { @@ -128348,7 +128527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leitura-fdaa32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leitura-fdaa32.jpg" }, { "if": { @@ -128363,7 +128542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libris-1267b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/libris-1267b5.png" }, { "if": { @@ -128378,7 +128557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libro-95302b.png" + "then": "https://data.mapcomplete.org/nsi//logos/libro-95302b.png" }, { "if": { @@ -128393,7 +128572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luthy-c5abff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luthy-c5abff.jpg" }, { "if": { @@ -128408,7 +128587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martinus-de15da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/martinus-de15da.jpg" }, { "if": { @@ -128423,7 +128602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxilivres-9d3dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxilivres-9d3dbd.jpg" }, { "if": { @@ -128438,7 +128617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayersche-65e1d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayersche-65e1d5.jpg" }, { "if": { @@ -128453,7 +128632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mondadori-56c580.png" + "then": "https://data.mapcomplete.org/nsi//logos/mondadori-56c580.png" }, { "if": { @@ -128468,7 +128647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morawa-95302b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/morawa-95302b.svg" }, { "if": { @@ -128483,7 +128662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalbookstore-08d1a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbookstore-08d1a3.jpg" }, { "if": { @@ -128498,7 +128677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norli-ed60d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norli-ed60d1.jpg" }, { "if": { @@ -128513,7 +128692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orange-eec251.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orange-eec251.jpg" }, { "if": { @@ -128528,7 +128707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orellfussli-c5abff.svg" + "then": "https://data.mapcomplete.org/nsi//logos/orellfussli-c5abff.svg" }, { "if": { @@ -128543,7 +128722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osiander-65e1d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osiander-65e1d5.jpg" }, { "if": { @@ -128559,7 +128738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfambookshop-4cb062.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfambookshop-4cb062.jpg" }, { "if": { @@ -128574,7 +128753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfordbookstore-be6694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfordbookstore-be6694.jpg" }, { "if": { @@ -128589,7 +128768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pandayanbookshop-08d1a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pandayanbookshop-08d1a3.jpg" }, { "if": { @@ -128604,7 +128783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pantarhei-de15da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pantarhei-de15da.jpg" }, { "if": { @@ -128619,7 +128798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paperplus-fe66a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paperplus-fe66a8.jpg" }, { "if": { @@ -128638,7 +128817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/popular-a6ba8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popular-a6ba8a.jpg" }, { "if": { @@ -128653,7 +128832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porrua-1ea9d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porrua-1ea9d6.jpg" }, { "if": { @@ -128668,7 +128847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pressandbooks-76a200.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pressandbooks-76a200.jpg" }, { "if": { @@ -128683,7 +128862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qbdbooks-e673a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qbdbooks-e673a5.jpg" }, { "if": { @@ -128698,7 +128877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/remzikitabevi-c24b88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/remzikitabevi-c24b88.jpg" }, { "if": { @@ -128713,7 +128892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rupprecht-65e1d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rupprecht-65e1d5.jpg" }, { "if": { @@ -128728,7 +128907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seagullbook-1bd7b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seagullbook-1bd7b6.jpg" }, { "if": { @@ -128747,7 +128926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sluzbeniglasnik-000b97.png" + "then": "https://data.mapcomplete.org/nsi//logos/sluzbeniglasnik-000b97.png" }, { "if": { @@ -128762,7 +128941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/standaardboekhandel-7d5083.png" + "then": "https://data.mapcomplete.org/nsi//logos/standaardboekhandel-7d5083.png" }, { "if": { @@ -128777,7 +128956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suomalainenkirjakauppa-0c91f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suomalainenkirjakauppa-0c91f3.jpg" }, { "if": { @@ -128792,7 +128971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swiatksiazki-0c5adb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swiatksiazki-0c5adb.jpg" }, { "if": { @@ -128807,7 +128986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thalia-5cfe4f.png" + "then": "https://data.mapcomplete.org/nsi//logos/thalia-5cfe4f.png" }, { "if": { @@ -128822,7 +129001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thereadshop-1267b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/thereadshop-1267b5.png" }, { "if": { @@ -128837,7 +129016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theworks-b448ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theworks-b448ba.jpg" }, { "if": { @@ -128852,7 +129031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubik-56c580.png" + "then": "https://data.mapcomplete.org/nsi//logos/ubik-56c580.png" }, { "if": { @@ -128867,7 +129046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanschaik-8d3b5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vanschaik-8d3b5b.jpg" }, { "if": { @@ -128886,7 +129065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vulkan-000b97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vulkan-000b97.jpg" }, { "if": { @@ -128901,7 +129080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waterstones-3a34ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waterstones-3a34ca.jpg" }, { "if": { @@ -128916,7 +129095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weltbild-65e1d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/weltbild-65e1d5.png" }, { "if": { @@ -128931,7 +129110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whsmith-4d39b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whsmith-4d39b8.jpg" }, { "if": { @@ -128950,7 +129129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whsmith-1c7751.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whsmith-1c7751.jpg" }, { "if": { @@ -128971,7 +129150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belkniga-9972c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belkniga-9972c8.jpg" }, { "if": { @@ -128986,7 +129165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fcb83c-4175bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fcb83c-4175bc.jpg" }, { "if": { @@ -129001,7 +129180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5b11cd-6e5bbf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/5b11cd-6e5bbf.jpg" }, { "if": { @@ -129020,7 +129199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ksd-6e5bbf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ksd-6e5bbf.jpg" }, { "if": { @@ -129037,7 +129216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helikon-eec251.png" + "then": "https://data.mapcomplete.org/nsi//logos/helikon-eec251.png" }, { "if": { @@ -129052,7 +129231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2b704f-4175bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2b704f-4175bc.jpg" }, { "if": { @@ -129071,7 +129250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biblus-4774b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biblus-4774b4.jpg" }, { "if": { @@ -129090,7 +129269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prosperosbooks-4774b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prosperosbooks-4774b4.jpg" }, { "if": { @@ -129109,7 +129288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sulakauri-4774b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sulakauri-4774b4.jpg" }, { "if": { @@ -129128,7 +129307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steimatzky-428a21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steimatzky-428a21.jpg" }, { "if": { @@ -129147,7 +129326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tzometsfarm-428a21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tzometsfarm-428a21.jpg" }, { "if": { @@ -129166,7 +129345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jarirbookstore-e19842.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jarirbookstore-e19842.jpg" }, { "if": { @@ -129185,7 +129364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/junkudo-39c53e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/junkudo-39c53e.jpg" }, { "if": { @@ -129205,7 +129384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comictoranoana-39c53e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comictoranoana-39c53e.svg" }, { "if": { @@ -129224,7 +129403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bookoff-39c53e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bookoff-39c53e.jpg" }, { "if": { @@ -129243,7 +129422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melonbooks-39c53e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/melonbooks-39c53e.svg" }, { "if": { @@ -129262,7 +129441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libro-39c53e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libro-39c53e.jpg" }, { "if": { @@ -129281,7 +129460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bookssanseido-39c53e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bookssanseido-39c53e.jpg" }, { "if": { @@ -129310,7 +129489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jointpublishing-199399.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jointpublishing-199399.jpg" }, { "if": { @@ -129339,7 +129518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chunghwabookcompany-199399.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chunghwabookcompany-199399.jpg" }, { "if": { @@ -129368,7 +129547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecommercialpress-199399.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecommercialpress-199399.jpg" }, { "if": { @@ -129387,7 +129566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yurindo-39c53e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yurindo-39c53e.jpg" }, { "if": { @@ -129406,7 +129585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miraiyashoten-39c53e.png" + "then": "https://data.mapcomplete.org/nsi//logos/miraiyashoten-39c53e.png" }, { "if": { @@ -129425,7 +129604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bookskinokuniya-2bac32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bookskinokuniya-2bac32.jpg" }, { "if": { @@ -129444,7 +129623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsutaya-06f630.png" + "then": "https://data.mapcomplete.org/nsi//logos/tsutaya-06f630.png" }, { "if": { @@ -129463,7 +129642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eslitebookstore-b7aa5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eslitebookstore-b7aa5f.jpg" }, { "if": { @@ -129486,7 +129665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eslitebookstore-e5bda4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eslitebookstore-e5bda4.jpg" }, { "if": { @@ -129505,7 +129684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nobelbookstore-06f630.png" + "then": "https://data.mapcomplete.org/nsi//logos/nobelbookstore-06f630.png" }, { "if": { @@ -129524,7 +129703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingstonebookstore-06f630.png" + "then": "https://data.mapcomplete.org/nsi//logos/kingstonebookstore-06f630.png" }, { "if": { @@ -129539,7 +129718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluffmeatsupply-dc7578.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluffmeatsupply-dc7578.jpg" }, { "if": { @@ -129555,7 +129734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coqivoire-40403c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coqivoire-40403c.jpg" }, { "if": { @@ -129570,7 +129749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fleischereirichter-4d0b4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fleischereirichter-4d0b4d.jpg" }, { "if": { @@ -129586,7 +129765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foani-40403c.png" + "then": "https://data.mapcomplete.org/nsi//logos/foani-40403c.png" }, { "if": { @@ -129601,7 +129780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forevers-00a516.png" + "then": "https://data.mapcomplete.org/nsi//logos/forevers-00a516.png" }, { "if": { @@ -129616,7 +129795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fotexslagter-4aef2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/fotexslagter-4aef2d.png" }, { "if": { @@ -129631,7 +129810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshoptions-1cf7e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshoptions-1cf7e4.jpg" }, { "if": { @@ -129646,7 +129825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gaik-436f1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gaik-436f1d.jpg" }, { "if": { @@ -129661,7 +129840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gzella-436f1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gzella-436f1d.jpg" }, { "if": { @@ -129676,7 +129855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keurslager-1c7101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keurslager-1c7101.jpg" }, { "if": { @@ -129691,7 +129870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leseleveursdelacharentonne-bd963c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leseleveursdelacharentonne-bd963c.jpg" }, { "if": { @@ -129706,7 +129885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mago-fbfd6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mago-fbfd6e.jpg" }, { "if": { @@ -129727,7 +129906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matijevic-c999d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/matijevic-c999d0.png" }, { "if": { @@ -129742,7 +129921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omahasteaks-523a1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omahasteaks-523a1c.jpg" }, { "if": { @@ -129757,7 +129936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renmans-533183.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renmans-533183.jpg" }, { "if": { @@ -129772,7 +129951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/richtererzgebirge-4d0b4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/richtererzgebirge-4d0b4d.jpg" }, { "if": { @@ -129787,7 +129966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sokolow-436f1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/sokolow-436f1d.png" }, { "if": { @@ -129802,7 +129981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superbrugsenslagter-4aef2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superbrugsenslagter-4aef2d.jpg" }, { "if": { @@ -129817,7 +129996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swiezyzna-436f1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/swiezyzna-436f1d.png" }, { "if": { @@ -129832,7 +130011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vinzenzmurr-4d0b4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vinzenzmurr-4d0b4d.jpg" }, { "if": { @@ -129847,7 +130026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wierzejki-436f1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/wierzejki-436f1d.png" }, { "if": { @@ -129862,7 +130041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yuhor-c999d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yuhor-c999d0.jpg" }, { "if": { @@ -129877,7 +130056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f172c7-6e607d.png" + "then": "https://data.mapcomplete.org/nsi//logos/f172c7-6e607d.png" }, { "if": { @@ -129892,7 +130071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fc51bd-6e607d.png" + "then": "https://data.mapcomplete.org/nsi//logos/fc51bd-6e607d.png" }, { "if": { @@ -129907,7 +130086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ef4709-d60de5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ef4709-d60de5.jpg" }, { "if": { @@ -129922,7 +130101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/959c75-d60de5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/959c75-d60de5.jpg" }, { "if": { @@ -129937,7 +130116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/580ce4-d60de5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/580ce4-d60de5.jpg" }, { "if": { @@ -129952,7 +130131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fbd1e6-d60de5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fbd1e6-d60de5.jpg" }, { "if": { @@ -129971,7 +130150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rodynnakovbaska-d60de5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rodynnakovbaska-d60de5.jpg" }, { "if": { @@ -129986,7 +130165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/21e59d-d60de5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/21e59d-d60de5.jpg" }, { "if": { @@ -130006,7 +130185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biubiu-f98164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biubiu-f98164.jpg" }, { "if": { @@ -130028,7 +130207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noste-f98164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noste-f98164.jpg" }, { "if": { @@ -130048,7 +130227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hanamasameat-2bf181.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hanamasameat-2bf181.jpg" }, { "if": { @@ -130063,7 +130242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jessops-916aa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jessops-916aa2.jpg" }, { "if": { @@ -130078,7 +130257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kameraexpress-696f9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kameraexpress-696f9c.png" }, { "if": { @@ -130093,7 +130272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leica-ccedc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leica-ccedc8.jpg" }, { "if": { @@ -130108,7 +130287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londoncameraexchange-916aa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londoncameraexchange-916aa2.jpg" }, { "if": { @@ -130123,7 +130302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yankeecandle-a62b26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yankeecandle-a62b26.jpg" }, { "if": { @@ -130138,7 +130317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bccannabisstore-8d0d2a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bccannabisstore-8d0d2a.svg" }, { "if": { @@ -130153,7 +130332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beyondhello-f81ec6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beyondhello-f81ec6.jpg" }, { "if": { @@ -130168,7 +130347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cannabist-c9b3a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cannabist-c9b3a7.jpg" }, { "if": { @@ -130183,7 +130362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consume-f6bf2f.png" + "then": "https://data.mapcomplete.org/nsi//logos/consume-f6bf2f.png" }, { "if": { @@ -130198,7 +130377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/curaleaf-4b9e8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/curaleaf-4b9e8a.jpg" }, { "if": { @@ -130213,7 +130392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muv-fc9dca.png" + "then": "https://data.mapcomplete.org/nsi//logos/muv-fc9dca.png" }, { "if": { @@ -130228,7 +130407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zenleaf-65d11e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zenleaf-65d11e.jpg" }, { "if": { @@ -130243,7 +130422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abarth-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abarth-13eeb7.jpg" }, { "if": { @@ -130258,7 +130437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acura-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/acura-13eeb7.png" }, { "if": { @@ -130273,7 +130452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aixam-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/aixam-13eeb7.png" }, { "if": { @@ -130288,7 +130467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfaromeo-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfaromeo-13eeb7.jpg" }, { "if": { @@ -130303,7 +130482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alpine-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alpine-13eeb7.jpg" }, { "if": { @@ -130318,7 +130497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americascarmart-71ab24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americascarmart-71ab24.jpg" }, { "if": { @@ -130333,7 +130512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arnoldclark-42e946.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arnoldclark-42e946.jpg" }, { "if": { @@ -130348,7 +130527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/astonmartin-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/astonmartin-13eeb7.jpg" }, { "if": { @@ -130363,7 +130542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/audi-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/audi-13eeb7.jpg" }, { "if": { @@ -130378,7 +130557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autonation-71ab24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autonation-71ab24.jpg" }, { "if": { @@ -130394,7 +130573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avis-71ab24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avis-71ab24.jpg" }, { "if": { @@ -130409,7 +130588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bentley-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bentley-13eeb7.jpg" }, { "if": { @@ -130424,7 +130603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bmw-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmw-13eeb7.jpg" }, { "if": { @@ -130439,7 +130618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristolstreetmotors-5338a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristolstreetmotors-5338a7.jpg" }, { "if": { @@ -130454,7 +130633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bugatti-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bugatti-13eeb7.jpg" }, { "if": { @@ -130469,7 +130648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buick-738dde.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buick-738dde.jpg" }, { "if": { @@ -130484,7 +130663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byd-d4df28.png" + "then": "https://data.mapcomplete.org/nsi//logos/byd-d4df28.png" }, { "if": { @@ -130499,7 +130678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byrider-71ab24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/byrider-71ab24.jpg" }, { "if": { @@ -130514,7 +130693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cadillac-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cadillac-13eeb7.jpg" }, { "if": { @@ -130530,7 +130709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carmax-71ab24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carmax-71ab24.jpg" }, { "if": { @@ -130545,7 +130724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carshop-6f2988.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carshop-6f2988.jpg" }, { "if": { @@ -130561,7 +130740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cazoo-42e946.png" + "then": "https://data.mapcomplete.org/nsi//logos/cazoo-42e946.png" }, { "if": { @@ -130576,7 +130755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chery-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chery-13eeb7.jpg" }, { "if": { @@ -130591,7 +130770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chevrolet-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chevrolet-13eeb7.jpg" }, { "if": { @@ -130606,7 +130785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chrysler-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chrysler-13eeb7.jpg" }, { "if": { @@ -130621,7 +130800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citroen-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citroen-13eeb7.jpg" }, { "if": { @@ -130636,7 +130815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cupra-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cupra-13eeb7.jpg" }, { "if": { @@ -130651,7 +130830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dacia-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dacia-13eeb7.jpg" }, { "if": { @@ -130666,7 +130845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daihatsu-0b5c82.png" + "then": "https://data.mapcomplete.org/nsi//logos/daihatsu-0b5c82.png" }, { "if": { @@ -130681,7 +130860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dodge-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/dodge-13eeb7.png" }, { "if": { @@ -130697,7 +130876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drivetime-71ab24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drivetime-71ab24.jpg" }, { "if": { @@ -130712,7 +130891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dsautomobiles-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dsautomobiles-13eeb7.jpg" }, { "if": { @@ -130728,7 +130907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enterprisecarsales-71ab24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enterprisecarsales-71ab24.jpg" }, { "if": { @@ -130743,7 +130922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ferrari-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/ferrari-13eeb7.png" }, { "if": { @@ -130758,7 +130937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiat-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiat-13eeb7.jpg" }, { "if": { @@ -130773,7 +130952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiatprofessional-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiatprofessional-13eeb7.jpg" }, { "if": { @@ -130788,7 +130967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fisker-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/fisker-13eeb7.png" }, { "if": { @@ -130803,7 +130982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ford-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/ford-13eeb7.png" }, { "if": { @@ -130818,7 +130997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freightliner-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freightliner-13eeb7.jpg" }, { "if": { @@ -130833,7 +131012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geely-13eeb7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/geely-13eeb7.svg" }, { "if": { @@ -130848,7 +131027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genesis-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genesis-13eeb7.jpg" }, { "if": { @@ -130863,23 +131042,23 @@ } ] }, - "then": "./assets/data/nsi/logos/gmc-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gmc-13eeb7.jpg" }, { "if": { "and": [ - "official_name=Great Wall Motor", "shop=car", { "or": [ "brand=GWM", "brand:wikidata=Q1117001", - "name=GWM" + "name=GWM", + "official_name=Great Wall Motor" ] } ] }, - "then": "./assets/data/nsi/logos/gwm-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gwm-13eeb7.jpg" }, { "if": { @@ -130894,7 +131073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haval-13eeb7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/haval-13eeb7.svg" }, { "if": { @@ -130910,7 +131089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hertzcarsales-71ab24.png" + "then": "https://data.mapcomplete.org/nsi//logos/hertzcarsales-71ab24.png" }, { "if": { @@ -130925,7 +131104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hinomotors-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hinomotors-13eeb7.jpg" }, { "if": { @@ -130940,7 +131119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holden-e02034.png" + "then": "https://data.mapcomplete.org/nsi//logos/holden-e02034.png" }, { "if": { @@ -130955,7 +131134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honda-0b5c82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honda-0b5c82.jpg" }, { "if": { @@ -130975,7 +131154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotcar-775dfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotcar-775dfd.jpg" }, { "if": { @@ -130990,7 +131169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyundai-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/hyundai-13eeb7.png" }, { "if": { @@ -131005,7 +131184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infiniti-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/infiniti-13eeb7.jpg" }, { "if": { @@ -131020,7 +131199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isuzu-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isuzu-13eeb7.jpg" }, { "if": { @@ -131035,7 +131214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jaguar-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jaguar-13eeb7.jpg" }, { "if": { @@ -131050,7 +131229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeep-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeep-13eeb7.jpg" }, { "if": { @@ -131065,7 +131244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karma-40d0fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karma-40d0fc.jpg" }, { "if": { @@ -131080,7 +131259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kia-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/kia-13eeb7.png" }, { "if": { @@ -131095,7 +131274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koenigsegg-45c2de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koenigsegg-45c2de.jpg" }, { "if": { @@ -131111,7 +131290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lagenceautomobiliere-b37b4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lagenceautomobiliere-b37b4e.jpg" }, { "if": { @@ -131130,7 +131309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lada-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lada-13eeb7.jpg" }, { "if": { @@ -131145,7 +131324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamborghini-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamborghini-13eeb7.jpg" }, { "if": { @@ -131160,7 +131339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancia-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancia-13eeb7.jpg" }, { "if": { @@ -131175,7 +131354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landrover-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landrover-13eeb7.jpg" }, { "if": { @@ -131190,7 +131369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lexus-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lexus-13eeb7.jpg" }, { "if": { @@ -131205,7 +131384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincoln-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincoln-13eeb7.jpg" }, { "if": { @@ -131220,7 +131399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotus-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotus-13eeb7.jpg" }, { "if": { @@ -131235,7 +131414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lucid-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/lucid-13eeb7.png" }, { "if": { @@ -131250,7 +131429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lynkandco-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lynkandco-13eeb7.jpg" }, { "if": { @@ -131265,7 +131444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marutisuzuki-aa55a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marutisuzuki-aa55a2.jpg" }, { "if": { @@ -131280,7 +131459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maserati-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/maserati-13eeb7.png" }, { "if": { @@ -131295,7 +131474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mazda-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/mazda-13eeb7.png" }, { "if": { @@ -131310,7 +131489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mclaren-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mclaren-13eeb7.jpg" }, { "if": { @@ -131325,7 +131504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercedesbenz-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercedesbenz-13eeb7.jpg" }, { "if": { @@ -131340,7 +131519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mg-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mg-13eeb7.jpg" }, { "if": { @@ -131355,7 +131534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mini-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mini-13eeb7.jpg" }, { "if": { @@ -131370,7 +131549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitsubishi-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/mitsubishi-13eeb7.png" }, { "if": { @@ -131385,7 +131564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niohouse-465d1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niohouse-465d1f.jpg" }, { "if": { @@ -131400,7 +131579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niospace-465d1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niospace-465d1f.jpg" }, { "if": { @@ -131415,7 +131594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nissan-0b5c82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nissan-0b5c82.jpg" }, { "if": { @@ -131430,7 +131609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opel-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opel-13eeb7.jpg" }, { "if": { @@ -131445,7 +131624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ora-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ora-13eeb7.jpg" }, { "if": { @@ -131460,7 +131639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perodua-fca759.png" + "then": "https://data.mapcomplete.org/nsi//logos/perodua-fca759.png" }, { "if": { @@ -131475,7 +131654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peugeot-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peugeot-13eeb7.jpg" }, { "if": { @@ -131490,7 +131669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polestar-adf3f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polestar-adf3f2.jpg" }, { "if": { @@ -131505,7 +131684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porsche-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porsche-13eeb7.jpg" }, { "if": { @@ -131520,7 +131699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proton-576082.png" + "then": "https://data.mapcomplete.org/nsi//logos/proton-576082.png" }, { "if": { @@ -131535,7 +131714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ram-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ram-13eeb7.jpg" }, { "if": { @@ -131550,7 +131729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renault-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renault-13eeb7.jpg" }, { "if": { @@ -131565,7 +131744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renaulttrucks-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renaulttrucks-13eeb7.jpg" }, { "if": { @@ -131580,7 +131759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rimac-0f1e04.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rimac-0f1e04.jpg" }, { "if": { @@ -131595,7 +131774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivian-870a08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rivian-870a08.jpg" }, { "if": { @@ -131610,7 +131789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rollsroyce-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rollsroyce-13eeb7.jpg" }, { "if": { @@ -131625,7 +131804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seat-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seat-13eeb7.jpg" }, { "if": { @@ -131640,7 +131819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skoda-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/skoda-13eeb7.png" }, { "if": { @@ -131655,7 +131834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smart-b77732.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smart-b77732.jpg" }, { "if": { @@ -131670,7 +131849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssangyong-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ssangyong-13eeb7.jpg" }, { "if": { @@ -131685,7 +131864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/subaru-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/subaru-13eeb7.jpg" }, { "if": { @@ -131700,7 +131879,22 @@ } ] }, - "then": "./assets/data/nsi/logos/suzuki-59b739.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suzuki-59b739.jpg" + }, + { + "if": { + "and": [ + "shop=car", + { + "or": [ + "brand=Sytner Select", + "brand:wikidata=Q109308461", + "name=Sytner Select" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/sytnerselect-42e946.jpg" }, { "if": { @@ -131715,7 +131909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tata-c6af53.png" + "then": "https://data.mapcomplete.org/nsi//logos/tata-c6af53.png" }, { "if": { @@ -131730,7 +131924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesla-7c40a3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tesla-7c40a3.svg" }, { "if": { @@ -131745,7 +131939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyota-0b5c82.png" + "then": "https://data.mapcomplete.org/nsi//logos/toyota-0b5c82.png" }, { "if": { @@ -131760,7 +131954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vauxhall-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/vauxhall-13eeb7.png" }, { "if": { @@ -131775,7 +131969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkswagen-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volkswagen-13eeb7.jpg" }, { "if": { @@ -131790,7 +131984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkswagencommercialvehicles-13eeb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volkswagencommercialvehicles-13eeb7.jpg" }, { "if": { @@ -131805,7 +131999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volvo-13eeb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/volvo-13eeb7.png" }, { "if": { @@ -131820,7 +132014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/webuyanycar-42e946.png" + "then": "https://data.mapcomplete.org/nsi//logos/webuyanycar-42e946.png" }, { "if": { @@ -131835,7 +132029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xpeng-465d1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/xpeng-465d1f.png" }, { "if": { @@ -131854,7 +132048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autoworld-7c9618.png" + "then": "https://data.mapcomplete.org/nsi//logos/autoworld-7c9618.png" }, { "if": { @@ -131873,7 +132067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saipa-bd50af.png" + "then": "https://data.mapcomplete.org/nsi//logos/saipa-bd50af.png" }, { "if": { @@ -131892,7 +132086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulliver-27c9bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/gulliver-27c9bc.png" }, { "if": { @@ -131911,7 +132105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daihatsu-27c9bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/daihatsu-27c9bc.png" }, { "if": { @@ -131930,7 +132124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyota-27c9bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/toyota-27c9bc.png" }, { "if": { @@ -131949,7 +132143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nextage-27c9bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nextage-27c9bc.jpg" }, { "if": { @@ -131968,7 +132162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netz-27c9bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/netz-27c9bc.png" }, { "if": { @@ -131987,7 +132181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigmotor-27c9bc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bigmotor-27c9bc.svg" }, { "if": { @@ -132006,7 +132200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honda-27c9bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honda-27c9bc.jpg" }, { "if": { @@ -132025,7 +132219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xpeng-115502.png" + "then": "https://data.mapcomplete.org/nsi//logos/xpeng-115502.png" }, { "if": { @@ -132044,7 +132238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nissan-27c9bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nissan-27c9bc.jpg" }, { "if": { @@ -132063,7 +132257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeekr-115502.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeekr-115502.jpg" }, { "if": { @@ -132082,7 +132276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byd-8e423b.png" + "then": "https://data.mapcomplete.org/nsi//logos/byd-8e423b.png" }, { "if": { @@ -132101,7 +132295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesla-048197.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tesla-048197.svg" }, { "if": { @@ -132120,7 +132314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liauto-115502.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liauto-115502.jpg" }, { "if": { @@ -132139,7 +132333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niohouse-115502.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niohouse-115502.jpg" }, { "if": { @@ -132158,7 +132352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niospace-115502.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niospace-115502.jpg" }, { "if": { @@ -132177,7 +132371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leapmotor-115502.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leapmotor-115502.jpg" }, { "if": { @@ -132192,7 +132386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/advanceautoparts-c70e2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/advanceautoparts-c70e2b.jpg" }, { "if": { @@ -132207,7 +132401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armtek-331b80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armtek-331b80.jpg" }, { "if": { @@ -132224,23 +132418,23 @@ } ] }, - "then": "./assets/data/nsi/logos/autodepot-935544.png" + "then": "https://data.mapcomplete.org/nsi//logos/autodepot-935544.png" }, { "if": { "and": [ - "official_name=Auto Plus Auto Parts", "shop=car_parts", { "or": [ "brand=Auto Plus", "brand:wikidata=Q65121114", - "name=Auto Plus" + "name=Auto Plus", + "official_name=Auto Plus Auto Parts" ] } ] }, - "then": "./assets/data/nsi/logos/autoplus-bb9baa.png" + "then": "https://data.mapcomplete.org/nsi//logos/autoplus-bb9baa.png" }, { "if": { @@ -132255,7 +132449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autovalue-808aac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autovalue-808aac.jpg" }, { "if": { @@ -132270,7 +132464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autobarn-5404d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autobarn-5404d0.jpg" }, { "if": { @@ -132285,7 +132479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/automat-fc79b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/automat-fc79b7.jpg" }, { "if": { @@ -132300,7 +132494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autozone-fd3e11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autozone-fd3e11.jpg" }, { "if": { @@ -132314,7 +132508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bilxtra-ccf30a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bilxtra-ccf30a.jpg" }, { "if": { @@ -132329,7 +132523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brezan-585e8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/brezan-585e8e.png" }, { "if": { @@ -132344,7 +132538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bumpertobumperautoparts-bb9baa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bumpertobumperautoparts-bb9baa.jpg" }, { "if": { @@ -132359,23 +132553,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bursonautoparts-5404d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bursonautoparts-5404d0.jpg" }, { "if": { "and": [ - "official_name=Carquest Auto Parts", "shop=car_parts", { "or": [ "brand=Carquest", "brand:wikidata=Q5045948", - "name=Carquest" + "name=Carquest", + "official_name=Carquest Auto Parts" ] } ] }, - "then": "./assets/data/nsi/logos/carquest-bb9baa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carquest-bb9baa.jpg" }, { "if": { @@ -132390,7 +132584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpaschoal-74c620.png" + "then": "https://data.mapcomplete.org/nsi//logos/dpaschoal-74c620.png" }, { "if": { @@ -132405,7 +132599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurocarparts-078f70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurocarparts-078f70.jpg" }, { "if": { @@ -132420,7 +132614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/existua-39b206.png" + "then": "https://data.mapcomplete.org/nsi//logos/existua-39b206.png" }, { "if": { @@ -132435,7 +132629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fleetpride-bb9baa.png" + "then": "https://data.mapcomplete.org/nsi//logos/fleetpride-bb9baa.png" }, { "if": { @@ -132452,7 +132646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halfords-078f70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halfords-078f70.jpg" }, { "if": { @@ -132467,7 +132661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intercars-a4b6c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intercars-a4b6c1.jpg" }, { "if": { @@ -132482,7 +132676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interstatebatteries-bb9baa.png" + "then": "https://data.mapcomplete.org/nsi//logos/interstatebatteries-bb9baa.png" }, { "if": { @@ -132498,7 +132692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koiautoparts-bb9baa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koiautoparts-bb9baa.jpg" }, { "if": { @@ -132513,7 +132707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lkq-9e6a0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lkq-9e6a0d.jpg" }, { "if": { @@ -132528,7 +132722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lordcoautoparts-00c584.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lordcoautoparts-00c584.jpg" }, { "if": { @@ -132543,7 +132737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motorpartsdirect-66043b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/motorpartsdirect-66043b.jpg" }, { "if": { @@ -132558,7 +132752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/napaautoparts-808aac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/napaautoparts-808aac.jpg" }, { "if": { @@ -132573,7 +132767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oreillyautoparts-bb9baa.png" + "then": "https://data.mapcomplete.org/nsi//logos/oreillyautoparts-bb9baa.png" }, { "if": { @@ -132588,7 +132782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/partsource-b5fe01.png" + "then": "https://data.mapcomplete.org/nsi//logos/partsource-b5fe01.png" }, { "if": { @@ -132603,7 +132797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pvautomotive-776a25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pvautomotive-776a25.jpg" }, { "if": { @@ -132618,7 +132812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repco-ff9108.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/repco-ff9108.jpg" }, { "if": { @@ -132633,7 +132827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanelnapa-a1190a.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanelnapa-a1190a.png" }, { "if": { @@ -132648,7 +132842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supercheapauto-ff9108.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supercheapauto-ff9108.jpg" }, { "if": { @@ -132664,7 +132858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thansen-c9a26e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thansen-c9a26e.jpg" }, { "if": { @@ -132679,7 +132873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokic-5b5de8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokic-5b5de8.jpg" }, { "if": { @@ -132695,7 +132889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wmfahrzeugteile-776a25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wmfahrzeugteile-776a25.jpg" }, { "if": { @@ -132710,7 +132904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xlparts-bb9baa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xlparts-bb9baa.jpg" }, { "if": { @@ -132729,7 +132923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/upgarage-e779db.png" + "then": "https://data.mapcomplete.org/nsi//logos/upgarage-e779db.png" }, { "if": { @@ -132748,12 +132942,11 @@ } ] }, - "then": "./assets/data/nsi/logos/autobacs-e779db.png" + "then": "https://data.mapcomplete.org/nsi//logos/autobacs-e779db.png" }, { "if": { "and": [ - "official_name:en=Joyful Motorist Shop", "shop=car_parts", { "or": [ @@ -132763,12 +132956,13 @@ "brand:wikidata=Q11309404", "name=ジェームス", "name:en=JMS", - "name:ja=ジェームス" + "name:ja=ジェームス", + "official_name:en=Joyful Motorist Shop" ] } ] }, - "then": "./assets/data/nsi/logos/jms-e779db.png" + "then": "https://data.mapcomplete.org/nsi//logos/jms-e779db.png" }, { "if": { @@ -132787,7 +132981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiyakan-e779db.png" + "then": "https://data.mapcomplete.org/nsi//logos/taiyakan-e779db.png" }, { "if": { @@ -132802,7 +132996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/123parebrise-46d04a.png" + "then": "https://data.mapcomplete.org/nsi//logos/123parebrise-46d04a.png" }, { "if": { @@ -132817,7 +133011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1aautoservice-4c8afc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1aautoservice-4c8afc.jpg" }, { "if": { @@ -132832,7 +133026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atu-6db7c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atu-6db7c0.jpg" }, { "if": { @@ -132848,7 +133042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aglass-98e3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/aglass-98e3a2.png" }, { "if": { @@ -132864,7 +133058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aamco-3fdb50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aamco-3fdb50.jpg" }, { "if": { @@ -132879,7 +133073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/activegreenross-9c9847.png" + "then": "https://data.mapcomplete.org/nsi//logos/activegreenross-9c9847.png" }, { "if": { @@ -132894,7 +133088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ad-98e3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ad-98e3a2.jpg" }, { "if": { @@ -132909,23 +133103,23 @@ } ] }, - "then": "./assets/data/nsi/logos/atseuromaster-3b6d68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atseuromaster-3b6d68.jpg" }, { "if": { "and": [ - "official_name=Auto Plus Professional Service Center", "shop=car_repair", { "or": [ "brand=Auto Plus", "brand:wikidata=Q65121114", - "name=Auto Plus" + "name=Auto Plus", + "official_name=Auto Plus Professional Service Center" ] } ] }, - "then": "./assets/data/nsi/logos/autoplus-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/autoplus-878d90.png" }, { "if": { @@ -132940,7 +133134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autofit-c95f1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/autofit-c95f1a.png" }, { "if": { @@ -132955,7 +133149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/automester-25491b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/automester-25491b.jpg" }, { "if": { @@ -132970,7 +133164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autopartner-25491b.png" + "then": "https://data.mapcomplete.org/nsi//logos/autopartner-25491b.png" }, { "if": { @@ -132986,7 +133180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autotaalglas-854910.png" + "then": "https://data.mapcomplete.org/nsi//logos/autotaalglas-854910.png" }, { "if": { @@ -133001,7 +133195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avatacar-46d04a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avatacar-46d04a.jpg" }, { "if": { @@ -133016,7 +133210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestdrive-1b7e7a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bestdrive-1b7e7a.png" }, { "if": { @@ -133031,7 +133225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boschcarservice-dc8719.svg" + "then": "https://data.mapcomplete.org/nsi//logos/boschcarservice-dc8719.svg" }, { "if": { @@ -133046,7 +133240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brakesplus-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/brakesplus-878d90.png" }, { "if": { @@ -133062,7 +133256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calibercollision-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calibercollision-878d90.jpg" }, { "if": { @@ -133077,7 +133271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadiantireautocentre-8cbc80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadiantireautocentre-8cbc80.jpg" }, { "if": { @@ -133092,7 +133286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carx-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carx-878d90.jpg" }, { "if": { @@ -133108,7 +133302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carglass-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carglass-dc8719.jpg" }, { "if": { @@ -133123,7 +133317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carpeople-25491b.png" + "then": "https://data.mapcomplete.org/nsi//logos/carpeople-25491b.png" }, { "if": { @@ -133139,7 +133333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carstar-3fdb50.png" + "then": "https://data.mapcomplete.org/nsi//logos/carstar-3fdb50.png" }, { "if": { @@ -133154,7 +133348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centredautocanadiantire-80befd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centredautocanadiantire-80befd.jpg" }, { "if": { @@ -133169,7 +133363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christianbrothersautomotive-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/christianbrothersautomotive-878d90.png" }, { "if": { @@ -133184,7 +133378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cockpit-fdc83e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cockpit-fdc83e.jpg" }, { "if": { @@ -133200,7 +133394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crashchampions-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crashchampions-878d90.jpg" }, { "if": { @@ -133215,7 +133409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delko-46d04a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delko-46d04a.jpg" }, { "if": { @@ -133230,7 +133424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dinbilpartner-25491b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dinbilpartner-25491b.jpg" }, { "if": { @@ -133245,7 +133439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dsautomobiles-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dsautomobiles-dc8719.jpg" }, { "if": { @@ -133260,7 +133454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclerc-98e3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclerc-98e3a2.jpg" }, { "if": { @@ -133275,7 +133469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etbautocentres-3b6d68.png" + "then": "https://data.mapcomplete.org/nsi//logos/etbautocentres-3b6d68.png" }, { "if": { @@ -133290,7 +133484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euromaster-2762ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/euromaster-2762ed.jpg" }, { "if": { @@ -133305,23 +133499,23 @@ } ] }, - "then": "./assets/data/nsi/logos/feuvert-89b710.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/feuvert-89b710.jpg" }, { "if": { "and": [ - "official_name=Firestone Complete Auto Care", "shop=car_repair", { "or": [ "brand=Firestone", "brand:wikidata=Q420837", - "name=Firestone" + "name=Firestone", + "official_name=Firestone Complete Auto Care" ] } ] }, - "then": "./assets/data/nsi/logos/firestone-a35932.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firestone-a35932.jpg" }, { "if": { @@ -133336,7 +133530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firststop-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/firststop-dc8719.png" }, { "if": { @@ -133351,7 +133545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/formulaoneautocentres-3b6d68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/formulaoneautocentres-3b6d68.jpg" }, { "if": { @@ -133367,7 +133561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franceparebrise-46d04a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/franceparebrise-46d04a.jpg" }, { "if": { @@ -133384,7 +133578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gerbercollisionandglass-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/gerbercollisionandglass-878d90.png" }, { "if": { @@ -133400,7 +133594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glasfit-28277d.png" + "then": "https://data.mapcomplete.org/nsi//logos/glasfit-28277d.png" }, { "if": { @@ -133415,7 +133609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodyear-d2aca7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodyear-d2aca7.jpg" }, { "if": { @@ -133430,7 +133624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greasemonkey-85d5b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greasemonkey-85d5b8.jpg" }, { "if": { @@ -133445,7 +133639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatcanadianoilchange-10e248.png" + "then": "https://data.mapcomplete.org/nsi//logos/greatcanadianoilchange-10e248.png" }, { "if": { @@ -133460,7 +133654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halfordsautocentre-3b6d68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halfordsautocentre-3b6d68.jpg" }, { "if": { @@ -133475,7 +133669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hellaservicepartner-25491b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hellaservicepartner-25491b.jpg" }, { "if": { @@ -133490,7 +133684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hiqtyresandautocare-3b6d68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hiqtyresandautocare-3b6d68.jpg" }, { "if": { @@ -133505,7 +133699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jiffylube-3fdb50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jiffylube-3fdb50.jpg" }, { "if": { @@ -133521,7 +133715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/junitedautoglas-c95f1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/junitedautoglas-c95f1a.jpg" }, { "if": { @@ -133536,7 +133730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikfit-b75a4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwikfit-b75a4b.jpg" }, { "if": { @@ -133551,7 +133745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linex-3fdb50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linex-3fdb50.jpg" }, { "if": { @@ -133568,7 +133762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maaco-3fdb50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maaco-3fdb50.jpg" }, { "if": { @@ -133583,7 +133777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mavisdiscounttire-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mavisdiscounttire-878d90.jpg" }, { "if": { @@ -133598,7 +133792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mavistiresandbrakes-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mavistiresandbrakes-878d90.jpg" }, { "if": { @@ -133613,23 +133807,23 @@ } ] }, - "then": "./assets/data/nsi/logos/meca-4150a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meca-4150a7.jpg" }, { "if": { "and": [ - "official_name=Meineke Car Care Center", "shop=car_repair", { "or": [ "brand=Meineke", "brand:wikidata=Q6810159", - "name=Meineke" + "name=Meineke", + "official_name=Meineke Car Care Center" ] } ] }, - "then": "./assets/data/nsi/logos/meineke-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meineke-878d90.jpg" }, { "if": { @@ -133644,7 +133838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mekonomen-7de64b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mekonomen-7de64b.jpg" }, { "if": { @@ -133659,7 +133853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midas-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midas-dc8719.jpg" }, { "if": { @@ -133674,7 +133868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mikona-be253d.png" + "then": "https://data.mapcomplete.org/nsi//logos/mikona-be253d.png" }, { "if": { @@ -133690,7 +133884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mistertransmission-10e248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mistertransmission-10e248.jpg" }, { "if": { @@ -133705,7 +133899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobil1lubeexpress-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/mobil1lubeexpress-878d90.png" }, { "if": { @@ -133720,7 +133914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mondialparebrise-98e3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/mondialparebrise-98e3a2.png" }, { "if": { @@ -133735,7 +133929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monromufflerbrake-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monromufflerbrake-878d90.jpg" }, { "if": { @@ -133750,7 +133944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motrio-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/motrio-dc8719.jpg" }, { "if": { @@ -133765,7 +133959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrlube-10e248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrlube-10e248.jpg" }, { "if": { @@ -133780,7 +133974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrtire-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrtire-878d90.jpg" }, { "if": { @@ -133795,7 +133989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mycartyreandauto-c3960a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mycartyreandauto-c3960a.jpg" }, { "if": { @@ -133810,7 +134004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/napaautocarecenter-3fdb50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/napaautocarecenter-3fdb50.jpg" }, { "if": { @@ -133826,7 +134020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntb-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ntb-878d90.jpg" }, { "if": { @@ -133842,7 +134036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltyresandautocare-3b6d68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltyresandautocare-3b6d68.jpg" }, { "if": { @@ -133858,7 +134052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalwindscreens-3b6d68.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalwindscreens-3b6d68.png" }, { "if": { @@ -133873,7 +134067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norauto-388a61.svg" + "then": "https://data.mapcomplete.org/nsi//logos/norauto-388a61.svg" }, { "if": { @@ -133889,7 +134083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novusglass-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novusglass-dc8719.jpg" }, { "if": { @@ -133904,7 +134098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okserwis-87ce46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okserwis-87ce46.jpg" }, { "if": { @@ -133919,7 +134113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oamtc-d1144d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oamtc-d1144d.jpg" }, { "if": { @@ -133935,7 +134129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oilchangers-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oilchangers-878d90.jpg" }, { "if": { @@ -133950,7 +134144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepboys-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pepboys-878d90.jpg" }, { "if": { @@ -133965,7 +134159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petromin-78a956.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petromin-78a956.svg" }, { "if": { @@ -133981,7 +134175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgglass-28277d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgglass-28277d.jpg" }, { "if": { @@ -133996,7 +134190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pitstop-c95f1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/pitstop-c95f1a.png" }, { "if": { @@ -134011,7 +134205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/points-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/points-dc8719.png" }, { "if": { @@ -134026,7 +134220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/precisiontuneautocare-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/precisiontuneautocare-878d90.png" }, { "if": { @@ -134041,7 +134235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premio-354273.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/premio-354273.jpg" }, { "if": { @@ -134058,7 +134252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procolorcollision-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procolorcollision-878d90.jpg" }, { "if": { @@ -134073,7 +134267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/profile-9d142c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/profile-9d142c.jpg" }, { "if": { @@ -134088,7 +134282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickpoint-25491b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quickpoint-25491b.jpg" }, { "if": { @@ -134103,7 +134297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivianservicecenter-3fdb50.png" + "then": "https://data.mapcomplete.org/nsi//logos/rivianservicecenter-3fdb50.png" }, { "if": { @@ -134118,7 +134312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roady-46d04a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roady-46d04a.jpg" }, { "if": { @@ -134134,7 +134328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safeliteautoglass-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safeliteautoglass-878d90.jpg" }, { "if": { @@ -134149,7 +134343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/searsautocenter-0c0c7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/searsautocenter-0c0c7e.jpg" }, { "if": { @@ -134164,7 +134358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedee-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedee-878d90.jpg" }, { "if": { @@ -134179,7 +134373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedy-98e3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedy-98e3a2.jpg" }, { "if": { @@ -134194,7 +134388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedyautoservice-10e248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedyautoservice-10e248.jpg" }, { "if": { @@ -134210,7 +134404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedyglass-10e248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedyglass-10e248.jpg" }, { "if": { @@ -134226,12 +134420,11 @@ } ] }, - "then": "./assets/data/nsi/logos/speedyglass-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/speedyglass-878d90.png" }, { "if": { "and": [ - "official_name=Sullivan Tire and Auto Service", "service:vehicle:car_repair=yes", "service:vehicle:tyres=yes", "shop=car_repair", @@ -134239,12 +134432,13 @@ "or": [ "brand=Sullivan Tire", "brand:wikidata=Q121422824", - "name=Sullivan Tire" + "name=Sullivan Tire", + "official_name=Sullivan Tire and Auto Service" ] } ] }, - "then": "./assets/data/nsi/logos/sullivantire-bb46ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/sullivantire-bb46ab.png" }, { "if": { @@ -134259,7 +134453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunautoservice-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/sunautoservice-878d90.png" }, { "if": { @@ -134274,7 +134468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supaquick-15e458.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supaquick-15e458.jpg" }, { "if": { @@ -134289,7 +134483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superdaekservice-25491b.png" + "then": "https://data.mapcomplete.org/nsi//logos/superdaekservice-25491b.png" }, { "if": { @@ -134305,7 +134499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/take5oilchange-3fdb50.png" + "then": "https://data.mapcomplete.org/nsi//logos/take5oilchange-3fdb50.png" }, { "if": { @@ -134320,7 +134514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teknicar-25491b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teknicar-25491b.jpg" }, { "if": { @@ -134335,7 +134529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topgarage-46d04a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topgarage-46d04a.jpg" }, { "if": { @@ -134350,7 +134544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuffy-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuffy-878d90.jpg" }, { "if": { @@ -134365,23 +134559,23 @@ } ] }, - "then": "./assets/data/nsi/logos/vakgarage-854910.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vakgarage-854910.jpg" }, { "if": { "and": [ - "official_name=Valvoline Instant Oil Change", "shop=car_repair", { "or": [ "brand=Valvoline", "brand:wikidata=Q7912852", - "name=Valvoline" + "name=Valvoline", + "official_name=Valvoline Instant Oil Change" ] } ] }, - "then": "./assets/data/nsi/logos/valvoline-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valvoline-878d90.jpg" }, { "if": { @@ -134397,7 +134591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valvolineexpresscare-878d90.png" + "then": "https://data.mapcomplete.org/nsi//logos/valvolineexpresscare-878d90.png" }, { "if": { @@ -134414,7 +134608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viptiresandservice-451c51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/viptiresandservice-451c51.jpg" }, { "if": { @@ -134429,7 +134623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vulco-98e3a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/vulco-98e3a2.png" }, { "if": { @@ -134444,7 +134638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartautocarecenter-878d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartautocarecenter-878d90.jpg" }, { "if": { @@ -134459,7 +134653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmarttireandlubeexpresscentre-10e248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmarttireandlubeexpresscentre-10e248.jpg" }, { "if": { @@ -134475,7 +134669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wintecautoglas-c95f1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wintecautoglas-c95f1a.jpg" }, { "if": { @@ -134494,7 +134688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrominexpress-78a956.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petrominexpress-78a956.svg" }, { "if": { @@ -134513,7 +134707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carconvenienceclub-aba9fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/carconvenienceclub-aba9fa.png" }, { "if": { @@ -134528,7 +134722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abarth-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abarth-dc8719.jpg" }, { "if": { @@ -134543,7 +134737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acura-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/acura-dc8719.png" }, { "if": { @@ -134558,7 +134752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aixam-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/aixam-dc8719.png" }, { "if": { @@ -134573,7 +134767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfaromeo-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfaromeo-dc8719.jpg" }, { "if": { @@ -134588,7 +134782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alpine-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alpine-dc8719.jpg" }, { "if": { @@ -134603,7 +134797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/astonmartin-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/astonmartin-dc8719.jpg" }, { "if": { @@ -134618,7 +134812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/audi-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/audi-dc8719.jpg" }, { "if": { @@ -134633,7 +134827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bentley-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bentley-dc8719.jpg" }, { "if": { @@ -134648,7 +134842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bmw-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmw-dc8719.jpg" }, { "if": { @@ -134663,7 +134857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bugatti-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bugatti-dc8719.jpg" }, { "if": { @@ -134678,7 +134872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buick-f6da1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buick-f6da1e.jpg" }, { "if": { @@ -134693,7 +134887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byd-05a657.png" + "then": "https://data.mapcomplete.org/nsi//logos/byd-05a657.png" }, { "if": { @@ -134708,7 +134902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cadillac-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cadillac-dc8719.jpg" }, { "if": { @@ -134723,7 +134917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chery-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chery-dc8719.jpg" }, { "if": { @@ -134738,7 +134932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chevrolet-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chevrolet-dc8719.jpg" }, { "if": { @@ -134753,7 +134947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chrysler-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chrysler-dc8719.jpg" }, { "if": { @@ -134768,7 +134962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citroen-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citroen-dc8719.jpg" }, { "if": { @@ -134783,7 +134977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cupra-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cupra-dc8719.jpg" }, { "if": { @@ -134798,7 +134992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dacia-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dacia-dc8719.jpg" }, { "if": { @@ -134813,7 +135007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daihatsu-eeda26.png" + "then": "https://data.mapcomplete.org/nsi//logos/daihatsu-eeda26.png" }, { "if": { @@ -134828,7 +135022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dodge-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dodge-dc8719.jpg" }, { "if": { @@ -134843,7 +135037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ferrari-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/ferrari-dc8719.png" }, { "if": { @@ -134858,7 +135052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiat-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiat-dc8719.jpg" }, { "if": { @@ -134873,7 +135067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiatprofessional-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiatprofessional-dc8719.jpg" }, { "if": { @@ -134888,7 +135082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fisker-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/fisker-dc8719.png" }, { "if": { @@ -134903,7 +135097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ford-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/ford-dc8719.png" }, { "if": { @@ -134918,7 +135112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freightliner-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freightliner-dc8719.jpg" }, { "if": { @@ -134933,7 +135127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geely-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geely-dc8719.jpg" }, { "if": { @@ -134948,7 +135142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genesis-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genesis-dc8719.jpg" }, { "if": { @@ -134963,23 +135157,23 @@ } ] }, - "then": "./assets/data/nsi/logos/gmc-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gmc-dc8719.jpg" }, { "if": { "and": [ - "official_name=Great Wall Motor", "shop=car_repair", { "or": [ "brand=GWM", "brand:wikidata=Q1117001", - "name=GWM" + "name=GWM", + "official_name=Great Wall Motor" ] } ] }, - "then": "./assets/data/nsi/logos/gwm-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gwm-dc8719.jpg" }, { "if": { @@ -134994,7 +135188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haval-dc8719.svg" + "then": "https://data.mapcomplete.org/nsi//logos/haval-dc8719.svg" }, { "if": { @@ -135009,7 +135203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hinomotors-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hinomotors-dc8719.jpg" }, { "if": { @@ -135024,7 +135218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holden-224beb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holden-224beb.jpg" }, { "if": { @@ -135039,7 +135233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honda-eeda26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honda-eeda26.jpg" }, { "if": { @@ -135059,7 +135253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotcar-2dd56c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotcar-2dd56c.jpg" }, { "if": { @@ -135074,7 +135268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyundai-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/hyundai-dc8719.png" }, { "if": { @@ -135089,7 +135283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infiniti-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/infiniti-dc8719.jpg" }, { "if": { @@ -135104,7 +135298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isuzu-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isuzu-dc8719.jpg" }, { "if": { @@ -135119,7 +135313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jaguar-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jaguar-dc8719.jpg" }, { "if": { @@ -135134,7 +135328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeep-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeep-dc8719.jpg" }, { "if": { @@ -135149,7 +135343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karma-34798d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karma-34798d.jpg" }, { "if": { @@ -135164,7 +135358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kia-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/kia-dc8719.png" }, { "if": { @@ -135179,7 +135373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koenigsegg-81b22c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koenigsegg-81b22c.jpg" }, { "if": { @@ -135198,7 +135392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lada-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lada-dc8719.jpg" }, { "if": { @@ -135213,7 +135407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamborghini-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamborghini-dc8719.jpg" }, { "if": { @@ -135228,7 +135422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancia-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancia-dc8719.jpg" }, { "if": { @@ -135243,7 +135437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landrover-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landrover-dc8719.jpg" }, { "if": { @@ -135258,7 +135452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lexus-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lexus-dc8719.jpg" }, { "if": { @@ -135273,7 +135467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincoln-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincoln-dc8719.jpg" }, { "if": { @@ -135288,7 +135482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotus-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotus-dc8719.jpg" }, { "if": { @@ -135303,7 +135497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lucid-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/lucid-dc8719.png" }, { "if": { @@ -135318,7 +135512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lynkandco-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lynkandco-dc8719.jpg" }, { "if": { @@ -135333,7 +135527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marutisuzuki-4d8690.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marutisuzuki-4d8690.jpg" }, { "if": { @@ -135348,7 +135542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maserati-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/maserati-dc8719.png" }, { "if": { @@ -135363,7 +135557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mazda-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/mazda-dc8719.png" }, { "if": { @@ -135378,7 +135572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mclaren-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mclaren-dc8719.jpg" }, { "if": { @@ -135393,7 +135587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercedesbenz-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercedesbenz-dc8719.jpg" }, { "if": { @@ -135408,7 +135602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mg-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mg-dc8719.jpg" }, { "if": { @@ -135423,7 +135617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mini-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mini-dc8719.jpg" }, { "if": { @@ -135438,7 +135632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitsubishi-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/mitsubishi-dc8719.png" }, { "if": { @@ -135453,7 +135647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niohouse-301da3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niohouse-301da3.jpg" }, { "if": { @@ -135468,7 +135662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nissan-eeda26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nissan-eeda26.jpg" }, { "if": { @@ -135483,7 +135677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opel-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opel-dc8719.jpg" }, { "if": { @@ -135498,7 +135692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ora-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ora-dc8719.jpg" }, { "if": { @@ -135513,7 +135707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perodua-3c4c6a.png" + "then": "https://data.mapcomplete.org/nsi//logos/perodua-3c4c6a.png" }, { "if": { @@ -135528,7 +135722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peugeot-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peugeot-dc8719.jpg" }, { "if": { @@ -135543,7 +135737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polestar-16efa0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polestar-16efa0.jpg" }, { "if": { @@ -135558,7 +135752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porsche-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porsche-dc8719.jpg" }, { "if": { @@ -135573,7 +135767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proton-38d190.png" + "then": "https://data.mapcomplete.org/nsi//logos/proton-38d190.png" }, { "if": { @@ -135588,7 +135782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ram-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ram-dc8719.jpg" }, { "if": { @@ -135603,7 +135797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renault-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renault-dc8719.jpg" }, { "if": { @@ -135618,7 +135812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renaulttrucks-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renaulttrucks-dc8719.jpg" }, { "if": { @@ -135633,7 +135827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rimac-2012db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rimac-2012db.jpg" }, { "if": { @@ -135648,7 +135842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rollsroyce-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rollsroyce-dc8719.jpg" }, { "if": { @@ -135663,7 +135857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seat-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seat-dc8719.jpg" }, { "if": { @@ -135678,7 +135872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skoda-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/skoda-dc8719.png" }, { "if": { @@ -135693,7 +135887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smart-102ff2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smart-102ff2.jpg" }, { "if": { @@ -135708,7 +135902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssangyong-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ssangyong-dc8719.jpg" }, { "if": { @@ -135723,7 +135917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/subaru-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/subaru-dc8719.jpg" }, { "if": { @@ -135738,7 +135932,22 @@ } ] }, - "then": "./assets/data/nsi/logos/suzuki-aa6899.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suzuki-aa6899.jpg" + }, + { + "if": { + "and": [ + "shop=car_repair", + { + "or": [ + "brand=Sytner Select", + "brand:wikidata=Q109308461", + "name=Sytner Select" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/sytnerselect-3b6d68.jpg" }, { "if": { @@ -135753,7 +135962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tata-1572d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/tata-1572d0.png" }, { "if": { @@ -135768,7 +135977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesla-e5a54b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tesla-e5a54b.svg" }, { "if": { @@ -135783,7 +135992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyota-eeda26.png" + "then": "https://data.mapcomplete.org/nsi//logos/toyota-eeda26.png" }, { "if": { @@ -135798,7 +136007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vauxhall-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/vauxhall-dc8719.png" }, { "if": { @@ -135813,7 +136022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkswagen-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volkswagen-dc8719.jpg" }, { "if": { @@ -135828,7 +136037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkswagencommercialvehicles-dc8719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volkswagencommercialvehicles-dc8719.jpg" }, { "if": { @@ -135843,7 +136052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volvo-dc8719.png" + "then": "https://data.mapcomplete.org/nsi//logos/volvo-dc8719.png" }, { "if": { @@ -135858,7 +136067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xpeng-301da3.png" + "then": "https://data.mapcomplete.org/nsi//logos/xpeng-301da3.png" }, { "if": { @@ -135877,7 +136086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saipa-e74adb.png" + "then": "https://data.mapcomplete.org/nsi//logos/saipa-e74adb.png" }, { "if": { @@ -135896,7 +136105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulliver-aba9fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/gulliver-aba9fa.png" }, { "if": { @@ -135915,7 +136124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daihatsu-aba9fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/daihatsu-aba9fa.png" }, { "if": { @@ -135934,7 +136143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyota-aba9fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/toyota-aba9fa.png" }, { "if": { @@ -135953,7 +136162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honda-aba9fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honda-aba9fa.jpg" }, { "if": { @@ -135972,7 +136181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xpeng-98f9a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/xpeng-98f9a6.png" }, { "if": { @@ -135991,7 +136200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nissan-aba9fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nissan-aba9fa.jpg" }, { "if": { @@ -136010,7 +136219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeekr-98f9a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeekr-98f9a6.jpg" }, { "if": { @@ -136029,7 +136238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byd-59c0e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/byd-59c0e1.png" }, { "if": { @@ -136048,7 +136257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesla-9faa29.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tesla-9faa29.svg" }, { "if": { @@ -136067,7 +136276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liauto-98f9a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liauto-98f9a6.jpg" }, { "if": { @@ -136086,7 +136295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niohouse-98f9a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niohouse-98f9a6.jpg" }, { "if": { @@ -136105,7 +136314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leapmotor-98f9a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leapmotor-98f9a6.jpg" }, { "if": { @@ -136120,7 +136329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/campingworld-391dd0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/campingworld-391dd0.jpg" }, { "if": { @@ -136135,7 +136344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carpetcourt-41ee08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carpetcourt-41ee08.jpg" }, { "if": { @@ -136150,7 +136359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carpetonefloorandhome-3c711e.png" + "then": "https://data.mapcomplete.org/nsi//logos/carpetonefloorandhome-3c711e.png" }, { "if": { @@ -136165,7 +136374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carpetright-68566f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carpetright-68566f.jpg" }, { "if": { @@ -136180,7 +136389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kibek-0208b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kibek-0208b5.jpg" }, { "if": { @@ -136195,7 +136404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tapicarpets-40b39f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tapicarpets-40b39f.jpg" }, { "if": { @@ -136210,7 +136419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedcarpetsandbeds-40b39f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedcarpetsandbeds-40b39f.jpg" }, { "if": { @@ -136225,7 +136434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/argos-3930ea.svg" + "then": "https://data.mapcomplete.org/nsi//logos/argos-3930ea.svg" }, { "if": { @@ -136240,7 +136449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ageuk-b7b967.png" + "then": "https://data.mapcomplete.org/nsi//logos/ageuk-b7b967.png" }, { "if": { @@ -136255,7 +136464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amvetsthriftstore-fca2e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/amvetsthriftstore-fca2e3.png" }, { "if": { @@ -136270,7 +136479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arcthriftstore-fca2e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arcthriftstore-fca2e3.jpg" }, { "if": { @@ -136285,7 +136494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barnardos-f84d6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barnardos-f84d6b.jpg" }, { "if": { @@ -136300,7 +136509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluecross-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluecross-b7b967.jpg" }, { "if": { @@ -136315,7 +136524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brainwave-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brainwave-b7b967.jpg" }, { "if": { @@ -136330,7 +136539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishheartfoundation-b7b967.png" + "then": "https://data.mapcomplete.org/nsi//logos/britishheartfoundation-b7b967.png" }, { "if": { @@ -136345,7 +136554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishredcross-8c30a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/britishredcross-8c30a6.png" }, { "if": { @@ -136360,7 +136569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cancerresearchuk-afd1d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cancerresearchuk-afd1d8.jpg" }, { "if": { @@ -136375,7 +136584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catsprotection-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/catsprotection-b7b967.jpg" }, { "if": { @@ -136390,7 +136599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/childrenshospicesouthwest-0bd8de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/childrenshospicesouthwest-0bd8de.jpg" }, { "if": { @@ -136405,7 +136614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crisis-23e499.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crisis-23e499.jpg" }, { "if": { @@ -136421,7 +136630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danskrodekorsgenbrug-40689c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/danskrodekorsgenbrug-40689c.jpg" }, { "if": { @@ -136436,7 +136645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/debracharityshop-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/debracharityshop-b7b967.jpg" }, { "if": { @@ -136453,7 +136662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emmaus-0d4d3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/emmaus-0d4d3e.png" }, { "if": { @@ -136470,7 +136679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frelsenshaergenbrug-40689c.png" + "then": "https://data.mapcomplete.org/nsi//logos/frelsenshaergenbrug-40689c.png" }, { "if": { @@ -136488,7 +136697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/habitatforhumanityrestore-0873d3.png" + "then": "https://data.mapcomplete.org/nsi//logos/habitatforhumanityrestore-0873d3.png" }, { "if": { @@ -136503,7 +136712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/havenhousechildrenshospice-b7b967.png" + "then": "https://data.mapcomplete.org/nsi//logos/havenhousechildrenshospice-b7b967.png" }, { "if": { @@ -136518,7 +136727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/havenshospices-a8aae6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/havenshospices-a8aae6.jpg" }, { "if": { @@ -136533,7 +136742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kirkenskorshaergenbrug-40689c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kirkenskorshaergenbrug-40689c.png" }, { "if": { @@ -136548,7 +136757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifelineshop-0a6dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifelineshop-0a6dbd.jpg" }, { "if": { @@ -136563,23 +136772,23 @@ } ] }, - "then": "./assets/data/nsi/logos/mariecurie-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mariecurie-b7b967.jpg" }, { "if": { "and": [ - "official_name=Royal Mencap Society", "shop=charity", { "or": [ "brand=Mencap", "brand:wikidata=Q6816514", - "name=Mencap" + "name=Mencap", + "official_name=Royal Mencap Society" ] } ] }, - "then": "./assets/data/nsi/logos/mencap-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mencap-b7b967.jpg" }, { "if": { @@ -136594,7 +136803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mind-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mind-b7b967.jpg" }, { "if": { @@ -136609,7 +136818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myrorna-ef3d1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/myrorna-ef3d1a.jpg" }, { "if": { @@ -136624,7 +136833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfam-70fc14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfam-70fc14.jpg" }, { "if": { @@ -136639,7 +136848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pdsa-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pdsa-b7b967.jpg" }, { "if": { @@ -136654,7 +136863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renniegrovepeace-a8aae6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renniegrovepeace-a8aae6.jpg" }, { "if": { @@ -136669,7 +136878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rnlishop-f84d6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/rnlishop-f84d6b.png" }, { "if": { @@ -136684,7 +136893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rspca-c2d19b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rspca-c2d19b.jpg" }, { "if": { @@ -136700,7 +136909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintvincentdepaulthriftstore-fca2e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintvincentdepaulthriftstore-fca2e3.jpg" }, { "if": { @@ -136715,7 +136924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salvos-0a6dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salvos-0a6dbd.jpg" }, { "if": { @@ -136730,7 +136939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samaritans-f84d6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samaritans-f84d6b.jpg" }, { "if": { @@ -136745,7 +136954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savethechildren-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/savethechildren-b7b967.jpg" }, { "if": { @@ -136760,7 +136969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scope-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scope-b7b967.jpg" }, { "if": { @@ -136775,7 +136984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sct-23e499.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sct-23e499.jpg" }, { "if": { @@ -136790,7 +136999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sense-4e8804.png" + "then": "https://data.mapcomplete.org/nsi//logos/sense-4e8804.png" }, { "if": { @@ -136805,7 +137014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sensescotland-b96ba7.png" + "then": "https://data.mapcomplete.org/nsi//logos/sensescotland-b96ba7.png" }, { "if": { @@ -136820,7 +137029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shawtrust-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shawtrust-b7b967.jpg" }, { "if": { @@ -136835,7 +137044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shelter-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shelter-b7b967.jpg" }, { "if": { @@ -136850,7 +137059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stmargaretshospicecare-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stmargaretshospicecare-b7b967.jpg" }, { "if": { @@ -136865,7 +137074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sueryder-f84d6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sueryder-f84d6b.jpg" }, { "if": { @@ -136880,7 +137089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thameshospice-a8aae6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thameshospice-a8aae6.jpg" }, { "if": { @@ -136895,7 +137104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thechildrenssociety-b7b967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thechildrenssociety-b7b967.jpg" }, { "if": { @@ -136910,7 +137119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesalvationarmy-2031e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-2031e0.png" }, { "if": { @@ -136925,7 +137134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ymca-bf05c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/ymca-bf05c1.png" }, { "if": { @@ -136940,7 +137149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/07fa72-cd68fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/07fa72-cd68fa.jpg" }, { "if": { @@ -136958,7 +137167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basherfromagerie-00d377.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/basherfromagerie-00d377.jpg" }, { "if": { @@ -136973,7 +137182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/101drogerie-a99570.png" + "then": "https://data.mapcomplete.org/nsi//logos/101drogerie-a99570.png" }, { "if": { @@ -136988,7 +137197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acquaandsapone-864e82.png" + "then": "https://data.mapcomplete.org/nsi//logos/acquaandsapone-864e82.png" }, { "if": { @@ -137003,7 +137212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bipa-07ba5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bipa-07ba5a.png" }, { "if": { @@ -137018,7 +137227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodycare-b82430.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodycare-b82430.jpg" }, { "if": { @@ -137033,7 +137242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boots-b67e62.png" + "then": "https://data.mapcomplete.org/nsi//logos/boots-b67e62.png" }, { "if": { @@ -137048,7 +137257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budni-5f6506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budni-5f6506.jpg" }, { "if": { @@ -137063,7 +137272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caddys-864e82.png" + "then": "https://data.mapcomplete.org/nsi//logos/caddys-864e82.png" }, { "if": { @@ -137078,7 +137287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarel-5ee006.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarel-5ee006.jpg" }, { "if": { @@ -137094,7 +137303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/curaproxsmileshop-419e7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/curaproxsmileshop-419e7d.jpg" }, { "if": { @@ -137110,7 +137319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cvspharmacy-437f3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cvspharmacy-437f3b.jpg" }, { "if": { @@ -137125,7 +137334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/da-994f1e.png" + "then": "https://data.mapcomplete.org/nsi//logos/da-994f1e.png" }, { "if": { @@ -137140,7 +137349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diegrenze-994f1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diegrenze-994f1e.jpg" }, { "if": { @@ -137155,7 +137364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dini-ea54a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dini-ea54a6.jpg" }, { "if": { @@ -137170,7 +137379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dm-1281c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dm-1281c9.jpg" }, { "if": { @@ -137185,7 +137394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drogas-1a360a.png" + "then": "https://data.mapcomplete.org/nsi//logos/drogas-1a360a.png" }, { "if": { @@ -137200,7 +137409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drogerianatura-650b49.png" + "then": "https://data.mapcomplete.org/nsi//logos/drogerianatura-650b49.png" }, { "if": { @@ -137215,7 +137424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etos-994f1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etos-994f1e.jpg" }, { "if": { @@ -137230,7 +137439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eva-ea54a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eva-ea54a6.jpg" }, { "if": { @@ -137245,7 +137454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodneighborpharmacy-437f3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodneighborpharmacy-437f3b.png" }, { "if": { @@ -137260,7 +137469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hebe-b64653.png" + "then": "https://data.mapcomplete.org/nsi//logos/hebe-b64653.png" }, { "if": { @@ -137275,7 +137484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isei-ea54a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isei-ea54a6.jpg" }, { "if": { @@ -137290,7 +137499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kruidvat-9445a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/kruidvat-9445a8.png" }, { "if": { @@ -137305,7 +137514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laboo-650b49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laboo-650b49.jpg" }, { "if": { @@ -137320,7 +137529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lili-2bdbc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lili-2bdbc0.jpg" }, { "if": { @@ -137337,7 +137546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lilly-2aefd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lilly-2aefd6.jpg" }, { "if": { @@ -137355,7 +137564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longsdrugs-485466.svg" + "then": "https://data.mapcomplete.org/nsi//logos/longsdrugs-485466.svg" }, { "if": { @@ -137370,7 +137579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matas-9eec7a.png" + "then": "https://data.mapcomplete.org/nsi//logos/matas-9eec7a.png" }, { "if": { @@ -137385,7 +137594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muller-ca019f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/muller-ca019f.jpg" }, { "if": { @@ -137400,7 +137609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/normal-57f5e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/normal-57f5e2.jpg" }, { "if": { @@ -137415,7 +137624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prostor-ea54a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prostor-ea54a6.jpg" }, { "if": { @@ -137430,7 +137639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riteaid-578118.png" + "then": "https://data.mapcomplete.org/nsi//logos/riteaid-578118.png" }, { "if": { @@ -137445,7 +137654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rossmann-06ae64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rossmann-06ae64.jpg" }, { "if": { @@ -137460,23 +137669,23 @@ } ] }, - "then": "./assets/data/nsi/logos/rossmannexpress-5f6506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rossmannexpress-5f6506.jpg" }, { "if": { "and": [ - "official_name=Savers Health & Beauty", "shop=chemist", { "or": [ "brand=Savers", "brand:wikidata=Q7428189", - "name=Savers" + "name=Savers", + "official_name=Savers Health & Beauty" ] } ] }, - "then": "./assets/data/nsi/logos/savers-b82430.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/savers-b82430.jpg" }, { "if": { @@ -137491,7 +137700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/semichem-b82430.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/semichem-b82430.jpg" }, { "if": { @@ -137506,7 +137715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/splendidiesplendenti-864e82.png" + "then": "https://data.mapcomplete.org/nsi//logos/splendidiesplendenti-864e82.png" }, { "if": { @@ -137521,7 +137730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superdrug-b67e62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superdrug-b67e62.jpg" }, { "if": { @@ -137536,7 +137745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teta-419e7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/teta-419e7d.png" }, { "if": { @@ -137551,7 +137760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigota-864e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigota-864e82.jpg" }, { "if": { @@ -137568,7 +137777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topdrogerie-419e7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/topdrogerie-419e7d.png" }, { "if": { @@ -137583,7 +137792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trekpleister-994f1e.png" + "then": "https://data.mapcomplete.org/nsi//logos/trekpleister-994f1e.png" }, { "if": { @@ -137598,7 +137807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walgreens-437f3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/walgreens-437f3b.png" }, { "if": { @@ -137613,7 +137822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watsons-3eb610.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watsons-3eb610.jpg" }, { "if": { @@ -137628,7 +137837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wells-20e6e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/wells-20e6e7.png" }, { "if": { @@ -137645,7 +137854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lilly-22ddb5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lilly-22ddb5.jpg" }, { "if": { @@ -137664,7 +137873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magnitcosmetics-2141a5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/magnitcosmetics-2141a5.svg" }, { "if": { @@ -137685,7 +137894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mila-133d36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mila-133d36.jpg" }, { "if": { @@ -137706,7 +137915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ostrovchistoty-133d36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ostrovchistoty-133d36.jpg" }, { "if": { @@ -137723,7 +137932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c9d6d1-2141a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c9d6d1-2141a5.jpg" }, { "if": { @@ -137745,7 +137954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleanhouse-ab5407.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cleanhouse-ab5407.jpg" }, { "if": { @@ -137766,7 +137975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mannings-c26faa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mannings-c26faa.jpg" }, { "if": { @@ -137785,7 +137994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watsons-96d573.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watsons-96d573.jpg" }, { "if": { @@ -137804,7 +138013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watsons-d89f96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watsons-d89f96.jpg" }, { "if": { @@ -137823,7 +138032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosmed-ff929b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosmed-ff929b.jpg" }, { "if": { @@ -137845,7 +138054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jpmedical-ff929b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jpmedical-ff929b.jpg" }, { "if": { @@ -137870,7 +138079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mannings-d89f96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mannings-d89f96.jpg" }, { "if": { @@ -137885,7 +138094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cacaushow-634f60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cacaushow-634f60.jpg" }, { "if": { @@ -137901,7 +138110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chocolatesbrasilcacau-634f60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chocolatesbrasilcacau-634f60.jpg" }, { "if": { @@ -137916,7 +138125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deneuville-b0e734.png" + "then": "https://data.mapcomplete.org/nsi//logos/deneuville-b0e734.png" }, { "if": { @@ -137931,7 +138140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dufouxchocolats-b0e734.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dufouxchocolats-b0e734.jpg" }, { "if": { @@ -137946,7 +138155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fanniemay-0e6ae0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fanniemay-0e6ae0.jpg" }, { "if": { @@ -137962,7 +138171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gertrudehawkchocolates-0e6ae0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gertrudehawkchocolates-0e6ae0.jpg" }, { "if": { @@ -137977,7 +138186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/godiva-e47b1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/godiva-e47b1f.jpg" }, { "if": { @@ -137992,7 +138201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeffdebruges-bc7364.png" + "then": "https://data.mapcomplete.org/nsi//logos/jeffdebruges-bc7364.png" }, { "if": { @@ -138007,7 +138216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kopenhagen-634f60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kopenhagen-634f60.jpg" }, { "if": { @@ -138022,7 +138231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laderach-dbe1d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laderach-dbe1d4.jpg" }, { "if": { @@ -138037,7 +138246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laurasecord-a30910.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laurasecord-a30910.jpg" }, { "if": { @@ -138052,7 +138261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechocolatalainducasse-ad9b7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechocolatalainducasse-ad9b7e.jpg" }, { "if": { @@ -138067,7 +138276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leonidas-dbe1d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leonidas-dbe1d4.jpg" }, { "if": { @@ -138082,7 +138291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lindt-dbe1d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lindt-dbe1d4.jpg" }, { "if": { @@ -138097,7 +138306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neuhaus-04c57d.png" + "then": "https://data.mapcomplete.org/nsi//logos/neuhaus-04c57d.png" }, { "if": { @@ -138112,7 +138321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/purdyschocolatier-a30910.png" + "then": "https://data.mapcomplete.org/nsi//logos/purdyschocolatier-a30910.png" }, { "if": { @@ -138127,7 +138336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voisin-b0e734.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/voisin-b0e734.jpg" }, { "if": { @@ -138143,7 +138352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andotherstories-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andotherstories-3937bd.jpg" }, { "if": { @@ -138162,7 +138371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/04f53b-88aa58.svg" + "then": "https://data.mapcomplete.org/nsi//logos/04f53b-88aa58.svg" }, { "if": { @@ -138177,7 +138386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/47street-3c23f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/47street-3c23f6.jpg" }, { "if": { @@ -138193,7 +138402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6ixty8ight-7905dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/6ixty8ight-7905dc.jpg" }, { "if": { @@ -138209,7 +138418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7forallmankind-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7forallmankind-0615dc.jpg" }, { "if": { @@ -138228,7 +138437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8seconds-d098b5.gif" + "then": "https://data.mapcomplete.org/nsi//logos/8seconds-d098b5.gif" }, { "if": { @@ -138243,7 +138452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alaisebreizh-31ef59.png" + "then": "https://data.mapcomplete.org/nsi//logos/alaisebreizh-31ef59.png" }, { "if": { @@ -138258,7 +138467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apc-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apc-3937bd.jpg" }, { "if": { @@ -138274,7 +138483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abercrombieandfitch-c53b2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abercrombieandfitch-c53b2f.jpg" }, { "if": { @@ -138290,7 +138499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abercrombiekids-a75dc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abercrombiekids-a75dc9.jpg" }, { "if": { @@ -138305,7 +138514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ackermans-c712e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ackermans-c712e2.jpg" }, { "if": { @@ -138323,7 +138532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adlib-33ce1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/adlib-33ce1a.png" }, { "if": { @@ -138339,7 +138548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/additionelle-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/additionelle-9e1367.jpg" }, { "if": { @@ -138355,7 +138564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adidasoriginals-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/adidasoriginals-3937bd.svg" }, { "if": { @@ -138370,7 +138579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adler-108da6.png" + "then": "https://data.mapcomplete.org/nsi//logos/adler-108da6.png" }, { "if": { @@ -138386,7 +138595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aerie-0e6d3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aerie-0e6d3d.jpg" }, { "if": { @@ -138402,7 +138611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeropostale-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aeropostale-3937bd.jpg" }, { "if": { @@ -138418,7 +138627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agentprovocateur-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agentprovocateur-3937bd.jpg" }, { "if": { @@ -138433,7 +138642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agnesb-bcfdbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agnesb-bcfdbd.jpg" }, { "if": { @@ -138448,7 +138657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aigle-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aigle-90f7b7.jpg" }, { "if": { @@ -138467,7 +138676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aland-d098b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/aland-d098b5.png" }, { "if": { @@ -138482,7 +138691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alcott-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alcott-d72191.jpg" }, { "if": { @@ -138497,7 +138706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alexandermcqueen-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alexandermcqueen-3937bd.svg" }, { "if": { @@ -138513,7 +138722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aliantanjay-9e1367.png" + "then": "https://data.mapcomplete.org/nsi//logos/aliantanjay-9e1367.png" }, { "if": { @@ -138529,7 +138738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aliceolivia-b99316.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aliceolivia-b99316.jpg" }, { "if": { @@ -138544,7 +138753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allensolly-f8e8b1.png" + "then": "https://data.mapcomplete.org/nsi//logos/allensolly-f8e8b1.png" }, { "if": { @@ -138559,7 +138768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allsaints-5c335f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allsaints-5c335f.jpg" }, { "if": { @@ -138575,7 +138784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allyfashion-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allyfashion-392c8b.jpg" }, { "if": { @@ -138591,7 +138800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alpinepro-767de9.png" + "then": "https://data.mapcomplete.org/nsi//logos/alpinepro-767de9.png" }, { "if": { @@ -138606,7 +138815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altardstate-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altardstate-0a21d9.jpg" }, { "if": { @@ -138621,7 +138830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americatoday-2d6bb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americatoday-2d6bb0.jpg" }, { "if": { @@ -138638,7 +138847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americaneagleoutfitters-0e6d3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americaneagleoutfitters-0e6d3d.jpg" }, { "if": { @@ -138653,7 +138862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanvintage-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americanvintage-3937bd.jpg" }, { "if": { @@ -138669,7 +138878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anabelarto-107191.png" + "then": "https://data.mapcomplete.org/nsi//logos/anabelarto-107191.png" }, { "if": { @@ -138684,7 +138893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anatomie-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anatomie-0a21d9.jpg" }, { "if": { @@ -138700,7 +138909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anntaylor-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anntaylor-0615dc.jpg" }, { "if": { @@ -138716,7 +138925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/annavantoor-91c4cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/annavantoor-91c4cd.jpg" }, { "if": { @@ -138732,7 +138941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ansons-74806d.png" + "then": "https://data.mapcomplete.org/nsi//logos/ansons-74806d.png" }, { "if": { @@ -138748,7 +138957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anthropologie-ac779b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anthropologie-ac779b.jpg" }, { "if": { @@ -138764,7 +138973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/antoineetlili-9da203.svg" + "then": "https://data.mapcomplete.org/nsi//logos/antoineetlili-9da203.svg" }, { "if": { @@ -138780,7 +138989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/antonelle-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/antonelle-90f7b7.jpg" }, { "if": { @@ -138798,7 +139007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aoki-85f881.png" + "then": "https://data.mapcomplete.org/nsi//logos/aoki-85f881.png" }, { "if": { @@ -138814,7 +139023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aramis-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aramis-c7d1e1.jpg" }, { "if": { @@ -138830,7 +139039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arcteryx-ac779b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arcteryx-ac779b.jpg" }, { "if": { @@ -138845,7 +139054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ardene-d1f154.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ardene-d1f154.jpg" }, { "if": { @@ -138861,7 +139070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aritzia-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aritzia-0615dc.jpg" }, { "if": { @@ -138876,7 +139085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armandthiery-f2b18a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armandthiery-f2b18a.jpg" }, { "if": { @@ -138892,7 +139101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armaniexchange-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armaniexchange-3937bd.jpg" }, { "if": { @@ -138907,7 +139116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armorlux-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armorlux-90f7b7.jpg" }, { "if": { @@ -138922,7 +139131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arthur-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arthur-90f7b7.jpg" }, { "if": { @@ -138937,7 +139146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ascolour-daf281.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ascolour-daf281.jpg" }, { "if": { @@ -138953,7 +139162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/athleta-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/athleta-0615dc.jpg" }, { "if": { @@ -138969,7 +139178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atmosphere-7cc878.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atmosphere-7cc878.jpg" }, { "if": { @@ -138985,7 +139194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aubade-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/aubade-3937bd.png" }, { "if": { @@ -139001,7 +139210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avenue-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/avenue-0a21d9.png" }, { "if": { @@ -139017,7 +139226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/awlab-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/awlab-3937bd.jpg" }, { "if": { @@ -139033,7 +139242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/awgmodecenter-b44380.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/awgmodecenter-b44380.jpg" }, { "if": { @@ -139049,7 +139258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baandsh-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baandsh-3937bd.jpg" }, { "if": { @@ -139064,7 +139273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/babygap-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/babygap-0615dc.jpg" }, { "if": { @@ -139080,7 +139289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/badrhino-94f7c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/badrhino-94f7c8.jpg" }, { "if": { @@ -139095,7 +139304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/balenciaga-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/balenciaga-3937bd.png" }, { "if": { @@ -139112,7 +139321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baleno-016f95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baleno-016f95.jpg" }, { "if": { @@ -139128,7 +139337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bananamoon-6db462.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bananamoon-6db462.jpg" }, { "if": { @@ -139144,7 +139353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bananarepublic-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bananarepublic-3937bd.jpg" }, { "if": { @@ -139160,7 +139369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandi-111ecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandi-111ecf.jpg" }, { "if": { @@ -139175,7 +139384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barbour-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barbour-3937bd.jpg" }, { "if": { @@ -139194,7 +139403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beams-6cd39e.png" + "then": "https://data.mapcomplete.org/nsi//logos/beams-6cd39e.png" }, { "if": { @@ -139209,7 +139418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/befree-7b6907.png" + "then": "https://data.mapcomplete.org/nsi//logos/befree-7b6907.png" }, { "if": { @@ -139224,7 +139433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bensherman-cad47b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bensherman-cad47b.jpg" }, { "if": { @@ -139239,7 +139448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bench-08e127.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bench-08e127.svg" }, { "if": { @@ -139255,7 +139464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benchbody-08e127.svg" + "then": "https://data.mapcomplete.org/nsi//logos/benchbody-08e127.svg" }, { "if": { @@ -139270,7 +139479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bench-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/bench-3937bd.png" }, { "if": { @@ -139286,7 +139495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bepon-111ecf.png" + "then": "https://data.mapcomplete.org/nsi//logos/bepon-111ecf.png" }, { "if": { @@ -139301,7 +139510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bershka-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bershka-3937bd.jpg" }, { "if": { @@ -139316,7 +139525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestandless-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bestandless-392c8b.jpg" }, { "if": { @@ -139331,7 +139540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bettybarclay-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bettybarclay-3937bd.jpg" }, { "if": { @@ -139346,7 +139555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigstar-de8f01.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bigstar-de8f01.svg" }, { "if": { @@ -139361,7 +139570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikbok-0779c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikbok-0779c3.jpg" }, { "if": { @@ -139377,7 +139586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikinivillage-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikinivillage-9e1367.jpg" }, { "if": { @@ -139393,7 +139602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/billabong-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/billabong-3937bd.jpg" }, { "if": { @@ -139409,7 +139618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bimbaylola-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bimbaylola-3937bd.jpg" }, { "if": { @@ -139424,7 +139633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bizzbee-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bizzbee-90f7b7.jpg" }, { "if": { @@ -139439,7 +139648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackberrys-f8e8b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackberrys-f8e8b1.jpg" }, { "if": { @@ -139454,7 +139663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackstore-4a3e29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackstore-4a3e29.jpg" }, { "if": { @@ -139470,7 +139679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blazek-111ecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blazek-111ecf.jpg" }, { "if": { @@ -139486,7 +139695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blueillusion-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blueillusion-2bb477.jpg" }, { "if": { @@ -139502,7 +139711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blueinc-7b1694.png" + "then": "https://data.mapcomplete.org/nsi//logos/blueinc-7b1694.png" }, { "if": { @@ -139517,7 +139726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluetomato-fa8f79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluetomato-fa8f79.jpg" }, { "if": { @@ -139532,7 +139741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluenotes-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluenotes-9e1367.jpg" }, { "if": { @@ -139548,7 +139757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobsstores-acc69c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bobsstores-acc69c.svg" }, { "if": { @@ -139563,7 +139772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodyglove-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodyglove-3937bd.jpg" }, { "if": { @@ -139578,7 +139787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boggimilano-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boggimilano-3937bd.jpg" }, { "if": { @@ -139593,7 +139802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bogner-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bogner-3937bd.jpg" }, { "if": { @@ -139608,7 +139817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonds-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonds-2bb477.jpg" }, { "if": { @@ -139624,7 +139833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonita-51c18f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bonita-51c18f.png" }, { "if": { @@ -139640,7 +139849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonitamen-51c18f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bonitamen-51c18f.png" }, { "if": { @@ -139655,7 +139864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonmarche-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonmarche-7b1694.jpg" }, { "if": { @@ -139671,7 +139880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonnegueule-90f7b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/bonnegueule-90f7b7.png" }, { "if": { @@ -139687,7 +139896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonobo-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonobo-90f7b7.jpg" }, { "if": { @@ -139703,7 +139912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonobos-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonobos-0a21d9.jpg" }, { "if": { @@ -139719,7 +139928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonworth-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonworth-0a21d9.jpg" }, { "if": { @@ -139735,7 +139944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bootbarn-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bootbarn-0a21d9.jpg" }, { "if": { @@ -139751,7 +139960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bootlegger-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bootlegger-9e1367.jpg" }, { "if": { @@ -139766,7 +139975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bosco-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bosco-3937bd.jpg" }, { "if": { @@ -139785,7 +139994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bossini-f4691e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bossini-f4691e.jpg" }, { "if": { @@ -139801,7 +140010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bouxavenue-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bouxavenue-7b1694.jpg" }, { "if": { @@ -139816,7 +140025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boyner-86c702.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boyner-86c702.jpg" }, { "if": { @@ -139832,7 +140041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brandymelville-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brandymelville-3937bd.jpg" }, { "if": { @@ -139848,7 +140057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brasnthings-24a002.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brasnthings-24a002.jpg" }, { "if": { @@ -139863,7 +140072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brax-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/brax-3937bd.png" }, { "if": { @@ -139879,7 +140088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breal-90f7b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/breal-90f7b7.png" }, { "if": { @@ -139894,7 +140103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breuninger-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/breuninger-74806d.jpg" }, { "if": { @@ -139909,7 +140118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brice-f2b18a.png" + "then": "https://data.mapcomplete.org/nsi//logos/brice-f2b18a.png" }, { "if": { @@ -139924,7 +140133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristol-5eeeb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristol-5eeeb4.jpg" }, { "if": { @@ -139939,7 +140148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brooksbrothers-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brooksbrothers-3937bd.jpg" }, { "if": { @@ -139955,7 +140164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brooksfield-373ae7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brooksfield-373ae7.jpg" }, { "if": { @@ -139970,7 +140179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brothers-0779c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brothers-0779c3.jpg" }, { "if": { @@ -139985,7 +140194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brunellocucinelli-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brunellocucinelli-3937bd.jpg" }, { "if": { @@ -140001,7 +140210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brunobanani-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brunobanani-74806d.jpg" }, { "if": { @@ -140017,7 +140226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bsbfashion-3443a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bsbfashion-3443a7.jpg" }, { "if": { @@ -140033,7 +140242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buckmason-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buckmason-0a21d9.jpg" }, { "if": { @@ -140049,7 +140258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buckle-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buckle-0a21d9.jpg" }, { "if": { @@ -140065,7 +140274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budmil-31c5a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budmil-31c5a7.jpg" }, { "if": { @@ -140081,7 +140290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buffaloexchange-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buffaloexchange-0a21d9.jpg" }, { "if": { @@ -140097,7 +140306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bugatti-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/bugatti-3937bd.png" }, { "if": { @@ -140113,7 +140322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burberry-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burberry-3937bd.jpg" }, { "if": { @@ -140128,7 +140337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burton-9a2c4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burton-9a2c4a.jpg" }, { "if": { @@ -140143,7 +140352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bushman-111ecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bushman-111ecf.jpg" }, { "if": { @@ -140158,7 +140367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canda-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canda-3937bd.jpg" }, { "if": { @@ -140173,7 +140382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cachecache-ecfb3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cachecache-ecfb3e.jpg" }, { "if": { @@ -140188,7 +140397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafecoton-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafecoton-3937bd.jpg" }, { "if": { @@ -140203,7 +140412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calida-758685.png" + "then": "https://data.mapcomplete.org/nsi//logos/calida-758685.png" }, { "if": { @@ -140218,7 +140427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calliope-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calliope-3937bd.jpg" }, { "if": { @@ -140233,7 +140442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calvinklein-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calvinklein-3937bd.jpg" }, { "if": { @@ -140248,7 +140457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calzedonia-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calzedonia-3937bd.jpg" }, { "if": { @@ -140263,7 +140472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camaieu-1cb4e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/camaieu-1cb4e7.png" }, { "if": { @@ -140278,7 +140487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camisariacolombo-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camisariacolombo-c7d1e1.jpg" }, { "if": { @@ -140293,7 +140502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/campdavid-0a34da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/campdavid-0a34da.jpg" }, { "if": { @@ -140309,7 +140518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadagoose-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadagoose-3937bd.jpg" }, { "if": { @@ -140325,7 +140534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canali-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canali-3937bd.jpg" }, { "if": { @@ -140341,7 +140550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carhartt-65f908.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carhartt-65f908.jpg" }, { "if": { @@ -140356,7 +140565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carharttworkinprogress-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carharttworkinprogress-3937bd.jpg" }, { "if": { @@ -140371,7 +140580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carlings-89d713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carlings-89d713.jpg" }, { "if": { @@ -140386,7 +140595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caroll-210777.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caroll-210777.jpg" }, { "if": { @@ -140401,7 +140610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carry-196c99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carry-196c99.jpg" }, { "if": { @@ -140417,7 +140626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carters-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carters-3937bd.jpg" }, { "if": { @@ -140436,7 +140645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/castro-e991b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/castro-e991b5.jpg" }, { "if": { @@ -140452,7 +140661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catherines-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/catherines-0a21d9.jpg" }, { "if": { @@ -140468,7 +140677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catimini-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/catimini-3937bd.jpg" }, { "if": { @@ -140483,7 +140692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cecil-bfd647.png" + "then": "https://data.mapcomplete.org/nsi//logos/cecil-bfd647.png" }, { "if": { @@ -140499,7 +140708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celine-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celine-3937bd.jpg" }, { "if": { @@ -140514,7 +140723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celio-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celio-3937bd.jpg" }, { "if": { @@ -140530,7 +140739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/champion-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/champion-3937bd.png" }, { "if": { @@ -140545,7 +140754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chanel-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chanel-3937bd.jpg" }, { "if": { @@ -140561,7 +140770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charlesvogele-900aa6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/charlesvogele-900aa6.jpg" }, { "if": { @@ -140576,7 +140785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charlotterusse-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/charlotterusse-0a21d9.png" }, { "if": { @@ -140591,7 +140800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chevignon-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chevignon-90f7b7.jpg" }, { "if": { @@ -140606,7 +140815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicos-d97106.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chicos-d97106.svg" }, { "if": { @@ -140621,7 +140830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicosofftherack-d97106.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chicosofftherack-d97106.svg" }, { "if": { @@ -140636,7 +140845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicoree-fed098.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chicoree-fed098.svg" }, { "if": { @@ -140652,7 +140861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chloe-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chloe-3937bd.jpg" }, { "if": { @@ -140667,7 +140876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christinelaure-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/christinelaure-90f7b7.jpg" }, { "if": { @@ -140682,7 +140891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christopherandbanks-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/christopherandbanks-0a21d9.jpg" }, { "if": { @@ -140697,23 +140906,23 @@ } ] }, - "then": "./assets/data/nsi/logos/cititrends-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cititrends-0a21d9.jpg" }, { "if": { "and": [ - "official_name=City Beach Australia", "shop=clothes", { "or": [ "brand=City Beach", "brand:wikidata=Q16958619", - "name=City Beach" + "name=City Beach", + "official_name=City Beach Australia" ] } ] }, - "then": "./assets/data/nsi/logos/citybeach-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citybeach-392c8b.jpg" }, { "if": { @@ -140728,7 +140937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citygear-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citygear-0a21d9.jpg" }, { "if": { @@ -140743,7 +140952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/classicallblacks-d050c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/classicallblacks-d050c6.jpg" }, { "if": { @@ -140758,7 +140967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/claudiastrater-5eeeb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/claudiastrater-5eeeb4.jpg" }, { "if": { @@ -140774,7 +140983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/claudiepierlot-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/claudiepierlot-3937bd.jpg" }, { "if": { @@ -140790,7 +140999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleo-9e1367.png" + "then": "https://data.mapcomplete.org/nsi//logos/cleo-9e1367.png" }, { "if": { @@ -140805,7 +141014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/closed-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/closed-74806d.jpg" }, { "if": { @@ -140820,7 +141029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clothingjunction-bd328b.png" + "then": "https://data.mapcomplete.org/nsi//logos/clothingjunction-bd328b.png" }, { "if": { @@ -140835,7 +141044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubmonaco-ac779b.png" + "then": "https://data.mapcomplete.org/nsi//logos/clubmonaco-ac779b.png" }, { "if": { @@ -140851,7 +141060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coccodrillo-571709.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coccodrillo-571709.jpg" }, { "if": { @@ -140866,7 +141075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colcci-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colcci-c7d1e1.jpg" }, { "if": { @@ -140881,7 +141090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colins-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colins-3937bd.jpg" }, { "if": { @@ -140896,24 +141105,24 @@ } ] }, - "then": "./assets/data/nsi/logos/colloseum-3648e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colloseum-3648e4.jpg" }, { "if": { "and": [ "clothes=outdoor", - "official_name=Columbia Sportswear", "shop=clothes", { "or": [ "brand=Columbia", "brand:wikidata=Q1112588", - "name=Columbia" + "name=Columbia", + "official_name=Columbia Sportswear" ] } ] }, - "then": "./assets/data/nsi/logos/columbia-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/columbia-3937bd.jpg" }, { "if": { @@ -140929,7 +141138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comma-9aade2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comma-9aade2.jpg" }, { "if": { @@ -140944,7 +141153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comptoirdescotonniers-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comptoirdescotonniers-90f7b7.jpg" }, { "if": { @@ -140959,7 +141168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conbipel-d72191.png" + "then": "https://data.mapcomplete.org/nsi//logos/conbipel-d72191.png" }, { "if": { @@ -140977,7 +141186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/connor-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/connor-392c8b.jpg" }, { "if": { @@ -140993,7 +141202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/contempo-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/contempo-bd328b.jpg" }, { "if": { @@ -141008,7 +141217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cortefiel-b8ad70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cortefiel-b8ad70.jpg" }, { "if": { @@ -141023,7 +141232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cos-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cos-3937bd.jpg" }, { "if": { @@ -141038,7 +141247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cotelac-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/cotelac-3937bd.png" }, { "if": { @@ -141053,7 +141262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cottonclub-91c4cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cottonclub-91c4cd.jpg" }, { "if": { @@ -141068,7 +141277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cottonon-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/cottonon-3937bd.png" }, { "if": { @@ -141083,7 +141292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countryroad-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/countryroad-2bb477.jpg" }, { "if": { @@ -141099,7 +141308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crewclothingcompany-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crewclothingcompany-7b1694.jpg" }, { "if": { @@ -141114,7 +141323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cropp-f09482.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cropp-f09482.jpg" }, { "if": { @@ -141129,7 +141338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cubus-a91a7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cubus-a91a7f.jpg" }, { "if": { @@ -141144,7 +141353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cuidadoconelperro-c4029f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cuidadoconelperro-c4029f.jpg" }, { "if": { @@ -141160,7 +141369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyclegear-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/cyclegear-0a21d9.png" }, { "if": { @@ -141175,7 +141384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyrillus-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyrillus-90f7b7.jpg" }, { "if": { @@ -141194,7 +141403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dak-b30b0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dak-b30b0f.jpg" }, { "if": { @@ -141209,7 +141418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/damart-ab5608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/damart-ab5608.jpg" }, { "if": { @@ -141225,7 +141434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danjohn-0ef64a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/danjohn-0ef64a.jpg" }, { "if": { @@ -141240,7 +141449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dangerfield-2bb477.png" + "then": "https://data.mapcomplete.org/nsi//logos/dangerfield-2bb477.png" }, { "if": { @@ -141256,7 +141465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/darjeeling-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/darjeeling-90f7b7.jpg" }, { "if": { @@ -141272,7 +141481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dasmachtsinn-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dasmachtsinn-74806d.jpg" }, { "if": { @@ -141288,7 +141497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davidsbridal-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/davidsbridal-0615dc.jpg" }, { "if": { @@ -141304,7 +141513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decimas-51a3e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/decimas-51a3e8.jpg" }, { "if": { @@ -141319,7 +141528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/defacto-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/defacto-3937bd.svg" }, { "if": { @@ -141336,7 +141545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delta-e991b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/delta-e991b5.png" }, { "if": { @@ -141351,7 +141560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derimod-25fd8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derimod-25fd8f.jpg" }, { "if": { @@ -141367,7 +141576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/despetitshauts-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/despetitshauts-90f7b7.jpg" }, { "if": { @@ -141382,7 +141591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/desigual-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/desigual-3937bd.jpg" }, { "if": { @@ -141398,7 +141607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/destinationmaternity-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/destinationmaternity-0615dc.jpg" }, { "if": { @@ -141413,7 +141622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devernois-ab5608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devernois-ab5608.jpg" }, { "if": { @@ -141428,7 +141637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devred-7d7aaa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devred-7d7aaa.jpg" }, { "if": { @@ -141443,7 +141652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diesel-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/diesel-3937bd.png" }, { "if": { @@ -141459,7 +141668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dim-90f7b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/dim-90f7b7.png" }, { "if": { @@ -141474,7 +141683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dior-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dior-3937bd.jpg" }, { "if": { @@ -141490,7 +141699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/discoveryclothingcompany-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/discoveryclothingcompany-0a21d9.png" }, { "if": { @@ -141505,7 +141714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/districenter-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/districenter-90f7b7.jpg" }, { "if": { @@ -141520,7 +141729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diverse-196c99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diverse-196c99.jpg" }, { "if": { @@ -141535,7 +141744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dkny-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dkny-3937bd.jpg" }, { "if": { @@ -141550,7 +141759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dolceandgabbana-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dolceandgabbana-3937bd.jpg" }, { "if": { @@ -141566,7 +141775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dolcezza-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dolcezza-3937bd.jpg" }, { "if": { @@ -141581,7 +141790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doppelganger-d72191.png" + "then": "https://data.mapcomplete.org/nsi//logos/doppelganger-d72191.png" }, { "if": { @@ -141596,7 +141805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorothyperkins-907b92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorothyperkins-907b92.jpg" }, { "if": { @@ -141611,7 +141820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dotti-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dotti-392c8b.jpg" }, { "if": { @@ -141627,7 +141836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dressbarn-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dressbarn-3937bd.jpg" }, { "if": { @@ -141643,7 +141852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dressmann-89d713.png" + "then": "https://data.mapcomplete.org/nsi//logos/dressmann-89d713.png" }, { "if": { @@ -141658,7 +141867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dtlr-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dtlr-0a21d9.jpg" }, { "if": { @@ -141673,7 +141882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dupareilaumeme-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/dupareilaumeme-3937bd.png" }, { "if": { @@ -141689,7 +141898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duluthtradingcompany-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duluthtradingcompany-0a21d9.jpg" }, { "if": { @@ -141705,7 +141914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duna-e79eb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duna-e79eb2.jpg" }, { "if": { @@ -141721,7 +141930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunhill-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dunhill-3937bd.svg" }, { "if": { @@ -141736,7 +141945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunns-c712e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunns-c712e2.jpg" }, { "if": { @@ -141753,7 +141962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dxlmensapparel-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dxlmensapparel-0a21d9.jpg" }, { "if": { @@ -141769,7 +141978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dynamite-aecc8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/dynamite-aecc8a.png" }, { "if": { @@ -141784,7 +141993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e5mode-b561cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/e5mode-b561cd.jpg" }, { "if": { @@ -141800,7 +142009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/earthboundtradingcompany-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/earthboundtradingcompany-0a21d9.jpg" }, { "if": { @@ -141816,7 +142025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/economclass-e79eb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/economclass-e79eb2.jpg" }, { "if": { @@ -141831,7 +142040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eddiebauer-6680bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eddiebauer-6680bd.jpg" }, { "if": { @@ -141846,7 +142055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edenpark-90f7b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edenpark-90f7b7.svg" }, { "if": { @@ -141862,7 +142071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edgeclothing-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edgeclothing-392c8b.jpg" }, { "if": { @@ -141883,7 +142092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edwin-1596f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edwin-1596f5.jpg" }, { "if": { @@ -141899,7 +142108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eileenfisher-0615dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/eileenfisher-0615dc.png" }, { "if": { @@ -141914,7 +142123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elganso-2c828f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elganso-2c828f.jpg" }, { "if": { @@ -141930,7 +142139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elenamiro-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/elenamiro-3937bd.png" }, { "if": { @@ -141946,7 +142155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elisabettafranchi-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elisabettafranchi-3937bd.jpg" }, { "if": { @@ -141962,7 +142171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emilioadani-96f120.png" + "then": "https://data.mapcomplete.org/nsi//logos/emilioadani-96f120.png" }, { "if": { @@ -141977,7 +142186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emporioarmani-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emporioarmani-3937bd.jpg" }, { "if": { @@ -141992,7 +142201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engbers-96f120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engbers-96f120.jpg" }, { "if": { @@ -142007,7 +142216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ericbompard-012392.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ericbompard-012392.jpg" }, { "if": { @@ -142022,7 +142231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ernstingsfamily-96f120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ernstingsfamily-96f120.jpg" }, { "if": { @@ -142037,7 +142246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/escada-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/escada-3937bd.png" }, { "if": { @@ -142053,7 +142262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eseoese-9e078d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eseoese-9e078d.jpg" }, { "if": { @@ -142068,7 +142277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esotiq-264379.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esotiq-264379.jpg" }, { "if": { @@ -142083,7 +142292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esprit-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esprit-3937bd.jpg" }, { "if": { @@ -142098,7 +142307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentielantwerp-fbdad9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentielantwerp-fbdad9.jpg" }, { "if": { @@ -142114,7 +142323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etam-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etam-3937bd.jpg" }, { "if": { @@ -142129,7 +142338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eterna-96f120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eterna-96f120.jpg" }, { "if": { @@ -142144,7 +142353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etro-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etro-3937bd.jpg" }, { "if": { @@ -142160,7 +142369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evans-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evans-7b1694.jpg" }, { "if": { @@ -142176,7 +142385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evernew-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evernew-9e1367.jpg" }, { "if": { @@ -142192,7 +142401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evereve-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evereve-0a21d9.jpg" }, { "if": { @@ -142208,7 +142417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everythingbutwater-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/everythingbutwater-0a21d9.jpg" }, { "if": { @@ -142223,7 +142432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exact-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exact-bd328b.jpg" }, { "if": { @@ -142238,7 +142447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/express-3f165f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/express-3f165f.jpg" }, { "if": { @@ -142253,7 +142462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressmen-3f165f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressmen-3f165f.jpg" }, { "if": { @@ -142269,7 +142478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/extremeintimo-bdfec0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/extremeintimo-bdfec0.jpg" }, { "if": { @@ -142285,7 +142494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fabiani-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fabiani-bd328b.jpg" }, { "if": { @@ -142300,7 +142509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fabindia-f8e8b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fabindia-f8e8b1.jpg" }, { "if": { @@ -142316,7 +142525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fabletics-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fabletics-0a21d9.jpg" }, { "if": { @@ -142331,7 +142540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/faguo-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/faguo-90f7b7.jpg" }, { "if": { @@ -142347,7 +142556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fairweather-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fairweather-9e1367.jpg" }, { "if": { @@ -142362,7 +142571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/falconeri-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/falconeri-3937bd.jpg" }, { "if": { @@ -142377,7 +142586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/falke-d93616.png" + "then": "https://data.mapcomplete.org/nsi//logos/falke-d93616.png" }, { "if": { @@ -142392,7 +142601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fatface-5e4c8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fatface-5e4c8e.jpg" }, { "if": { @@ -142407,7 +142616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fathersandsons-f2b18a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fathersandsons-f2b18a.jpg" }, { "if": { @@ -142422,7 +142631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fendi-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fendi-3937bd.jpg" }, { "if": { @@ -142438,7 +142647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/figaret-ab5608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/figaret-ab5608.jpg" }, { "if": { @@ -142453,7 +142662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fila-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fila-3937bd.jpg" }, { "if": { @@ -142468,7 +142677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/finnflare-7b6907.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/finnflare-7b6907.jpg" }, { "if": { @@ -142484,7 +142693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiorellarubino-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiorellarubino-d72191.jpg" }, { "if": { @@ -142499,7 +142708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flexi-c4029f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flexi-c4029f.jpg" }, { "if": { @@ -142514,7 +142723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forever21-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/forever21-3937bd.svg" }, { "if": { @@ -142530,7 +142739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forevernew-cd1df3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forevernew-cd1df3.jpg" }, { "if": { @@ -142546,7 +142755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foschini-560ac2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foschini-560ac2.jpg" }, { "if": { @@ -142565,7 +142774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fox-e991b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fox-e991b5.jpg" }, { "if": { @@ -142581,7 +142790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/francescas-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/francescas-0a21d9.jpg" }, { "if": { @@ -142596,7 +142805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freepeople-0615dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/freepeople-0615dc.png" }, { "if": { @@ -142612,7 +142821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frenchconnection-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frenchconnection-3937bd.jpg" }, { "if": { @@ -142628,7 +142837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fusakle-111ecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fusakle-111ecf.jpg" }, { "if": { @@ -142643,7 +142852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fusalp-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fusalp-3937bd.jpg" }, { "if": { @@ -142659,7 +142868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fussl-96f120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fussl-96f120.jpg" }, { "if": { @@ -142674,7 +142883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gstarraw-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gstarraw-3937bd.jpg" }, { "if": { @@ -142691,7 +142900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/g2000-88aa58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/g2000-88aa58.jpg" }, { "if": { @@ -142706,7 +142915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gabes-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/gabes-0a21d9.png" }, { "if": { @@ -142721,7 +142930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gant-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gant-3937bd.jpg" }, { "if": { @@ -142736,7 +142945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gap-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gap-3937bd.jpg" }, { "if": { @@ -142752,7 +142961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gapbody-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gapbody-3937bd.jpg" }, { "if": { @@ -142767,7 +142976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gapfactory-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gapfactory-0a21d9.jpg" }, { "if": { @@ -142783,7 +142992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gapkids-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gapkids-3937bd.jpg" }, { "if": { @@ -142799,7 +143008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/garage-072c62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/garage-072c62.jpg" }, { "if": { @@ -142814,7 +143023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gate-d52ff8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gate-d52ff8.jpg" }, { "if": { @@ -142830,7 +143039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gatta-196c99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gatta-196c99.jpg" }, { "if": { @@ -142845,7 +143054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemo-7bebe2.png" + "then": "https://data.mapcomplete.org/nsi//logos/gemo-7bebe2.png" }, { "if": { @@ -142860,7 +143069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/george-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/george-7b1694.jpg" }, { "if": { @@ -142875,7 +143084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/georgerichards-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/georgerichards-9e1367.jpg" }, { "if": { @@ -142890,7 +143099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gerryweber-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gerryweber-3937bd.jpg" }, { "if": { @@ -142905,7 +143114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ghanda-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ghanda-392c8b.jpg" }, { "if": { @@ -142921,7 +143130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ginalaura-96f120.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ginalaura-96f120.svg" }, { "if": { @@ -142936,7 +143145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ginatricot-0779c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ginatricot-0779c3.jpg" }, { "if": { @@ -142953,7 +143162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giordano-016f95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giordano-016f95.jpg" }, { "if": { @@ -142968,7 +143177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giorgioarmani-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giorgioarmani-3937bd.jpg" }, { "if": { @@ -142983,7 +143192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/givenchy-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/givenchy-3937bd.png" }, { "if": { @@ -142999,7 +143208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glassons-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glassons-2bb477.jpg" }, { "if": { @@ -143014,7 +143223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globo-8f2dbd.png" + "then": "https://data.mapcomplete.org/nsi//logos/globo-8f2dbd.png" }, { "if": { @@ -143029,7 +143238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gloriajeans-7b6907.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gloriajeans-7b6907.jpg" }, { "if": { @@ -143045,7 +143254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenpoint-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenpoint-d72191.jpg" }, { "if": { @@ -143061,7 +143270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/graindemalice-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/graindemalice-90f7b7.jpg" }, { "if": { @@ -143080,7 +143289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gu-85f881.png" + "then": "https://data.mapcomplete.org/nsi//logos/gu-85f881.png" }, { "if": { @@ -143095,7 +143304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gucci-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gucci-3937bd.jpg" }, { "if": { @@ -143111,7 +143320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gudrunsjoden-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gudrunsjoden-3937bd.jpg" }, { "if": { @@ -143126,7 +143335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guess-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guess-3937bd.jpg" }, { "if": { @@ -143142,7 +143351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gutteridge-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gutteridge-d72191.jpg" }, { "if": { @@ -143157,7 +143366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gymboree-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gymboree-0615dc.jpg" }, { "if": { @@ -143172,7 +143381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handm-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/handm-3937bd.png" }, { "if": { @@ -143188,7 +143397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handmkids-2ecfc2.png" + "then": "https://data.mapcomplete.org/nsi//logos/handmkids-2ecfc2.png" }, { "if": { @@ -143204,7 +143413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hackettlondon-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hackettlondon-3937bd.jpg" }, { "if": { @@ -143220,7 +143429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haggar-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haggar-0a21d9.jpg" }, { "if": { @@ -143235,7 +143444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halfprice-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halfprice-3937bd.jpg" }, { "if": { @@ -143250,7 +143459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hallensteins-2bb477.gif" + "then": "https://data.mapcomplete.org/nsi//logos/hallensteins-2bb477.gif" }, { "if": { @@ -143265,7 +143474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hallhuber-20ae39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hallhuber-20ae39.jpg" }, { "if": { @@ -143280,7 +143489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hanesbrands-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/hanesbrands-3937bd.png" }, { "if": { @@ -143296,7 +143505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happysocks-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happysocks-3937bd.jpg" }, { "if": { @@ -143311,7 +143520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harmontandblaine-6f335a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harmontandblaine-6f335a.jpg" }, { "if": { @@ -143326,7 +143535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harryrosen-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harryrosen-9e1367.jpg" }, { "if": { @@ -143341,7 +143550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hellyhansen-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/hellyhansen-3937bd.png" }, { "if": { @@ -143356,7 +143565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hering-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hering-c7d1e1.jpg" }, { "if": { @@ -143372,7 +143581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heringkids-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heringkids-c7d1e1.jpg" }, { "if": { @@ -143387,7 +143596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hermes-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hermes-3937bd.jpg" }, { "if": { @@ -143402,7 +143611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/herzogandbrauer-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/herzogandbrauer-74806d.jpg" }, { "if": { @@ -143417,23 +143626,23 @@ } ] }, - "then": "./assets/data/nsi/logos/hobbs-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hobbs-7b1694.jpg" }, { "if": { "and": [ - "official_name=Hollister Co.", "shop=clothes", { "or": [ "brand=Hollister", "brand:wikidata=Q1257477", - "name=Hollister" + "name=Hollister", + "official_name=Hollister Co." ] } ] }, - "then": "./assets/data/nsi/logos/hollister-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hollister-3937bd.jpg" }, { "if": { @@ -143453,7 +143662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honeys-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honeys-85f881.jpg" }, { "if": { @@ -143470,7 +143679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoodies-e991b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoodies-e991b5.jpg" }, { "if": { @@ -143486,7 +143695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hope-0b7e74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hope-0b7e74.jpg" }, { "if": { @@ -143501,7 +143710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hottopic-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hottopic-0615dc.jpg" }, { "if": { @@ -143516,7 +143725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/house-f09482.svg" + "then": "https://data.mapcomplete.org/nsi//logos/house-f09482.svg" }, { "if": { @@ -143531,7 +143740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houtbrox-91c4cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/houtbrox-91c4cd.png" }, { "if": { @@ -143547,7 +143756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hubershop-daa173.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hubershop-daa173.jpg" }, { "if": { @@ -143562,7 +143771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huffer-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huffer-2bb477.jpg" }, { "if": { @@ -143578,7 +143787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hugoboss-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hugoboss-3937bd.jpg" }, { "if": { @@ -143594,7 +143803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/humana-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/humana-3937bd.jpg" }, { "if": { @@ -143610,7 +143819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hunkemoller-4950a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hunkemoller-4950a4.jpg" }, { "if": { @@ -143625,7 +143834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hurley-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hurley-0a21d9.jpg" }, { "if": { @@ -143640,7 +143849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/identity-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/identity-bd328b.jpg" }, { "if": { @@ -143655,7 +143864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikks-6d941b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikks-6d941b.jpg" }, { "if": { @@ -143670,7 +143879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indiska-0779c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indiska-0779c3.jpg" }, { "if": { @@ -143686,7 +143895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indochino-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indochino-0615dc.jpg" }, { "if": { @@ -143702,7 +143911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/industrie-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/industrie-392c8b.jpg" }, { "if": { @@ -143718,7 +143927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intimissimi-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/intimissimi-3937bd.png" }, { "if": { @@ -143734,7 +143943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intimissimiuomo-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intimissimiuomo-3937bd.jpg" }, { "if": { @@ -143750,7 +143959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itsfashion-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/itsfashion-0a21d9.png" }, { "if": { @@ -143766,7 +143975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itsfashionmetro-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/itsfashionmetro-0a21d9.png" }, { "if": { @@ -143782,7 +143991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/izod-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/izod-3937bd.jpg" }, { "if": { @@ -143797,7 +144006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jmclaughlin-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jmclaughlin-0a21d9.jpg" }, { "if": { @@ -143813,7 +144022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jcrew-ac779b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcrew-ac779b.jpg" }, { "if": { @@ -143829,7 +144038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jjill-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/jjill-0a21d9.png" }, { "if": { @@ -143845,7 +144054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacadi-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacadi-3937bd.jpg" }, { "if": { @@ -143860,7 +144069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jackandjones-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jackandjones-3937bd.jpg" }, { "if": { @@ -143875,7 +144084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jackwills-75e7ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jackwills-75e7ba.jpg" }, { "if": { @@ -143890,7 +144099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacquie-392c8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/jacquie-392c8b.png" }, { "if": { @@ -143906,7 +144115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/janieandjack-0615dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/janieandjack-0615dc.png" }, { "if": { @@ -143923,7 +144132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jasmil-d5abcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jasmil-d5abcf.jpg" }, { "if": { @@ -143938,7 +144147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jayjays-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jayjays-2bb477.jpg" }, { "if": { @@ -143953,7 +144162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jbc-4b0b1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jbc-4b0b1d.jpg" }, { "if": { @@ -143968,7 +144177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeanscentre-91c4cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeanscentre-91c4cd.jpg" }, { "if": { @@ -143983,7 +144192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeansfritz-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeansfritz-74806d.jpg" }, { "if": { @@ -143998,7 +144207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jennyfer-ecfb3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jennyfer-ecfb3e.jpg" }, { "if": { @@ -144013,7 +144222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jet-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jet-bd328b.jpg" }, { "if": { @@ -144028,7 +144237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jigsaw-8babcc.png" + "then": "https://data.mapcomplete.org/nsi//logos/jigsaw-8babcc.png" }, { "if": { @@ -144043,7 +144252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jilsander-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jilsander-3937bd.svg" }, { "if": { @@ -144058,7 +144267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jockey-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jockey-0a21d9.jpg" }, { "if": { @@ -144073,7 +144282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joefresh-9e1367.png" + "then": "https://data.mapcomplete.org/nsi//logos/joefresh-9e1367.png" }, { "if": { @@ -144091,7 +144300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnnybigg-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnnybigg-392c8b.jpg" }, { "if": { @@ -144107,7 +144316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnnywas-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnnywas-0a21d9.jpg" }, { "if": { @@ -144123,23 +144332,23 @@ } ] }, - "then": "./assets/data/nsi/logos/jojomamanbebe-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jojomamanbebe-7b1694.jpg" }, { "if": { "and": [ - "official_name=Jos. A. Bank Clothiers", "shop=clothes", { "or": [ "brand=JoS. A. Bank", "brand:wikidata=Q6204078", - "name=JoS. A. Bank" + "name=JoS. A. Bank", + "official_name=Jos. A. Bank Clothiers" ] } ] }, - "then": "./assets/data/nsi/logos/josabank-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/josabank-0a21d9.jpg" }, { "if": { @@ -144154,7 +144363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joules-5e4c8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joules-5e4c8e.jpg" }, { "if": { @@ -144170,7 +144379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jules-1172e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jules-1172e0.jpg" }, { "if": { @@ -144186,7 +144395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justjeans-2bb477.png" + "then": "https://data.mapcomplete.org/nsi//logos/justjeans-2bb477.png" }, { "if": { @@ -144201,7 +144410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justoverthetop-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/justoverthetop-3937bd.jpg" }, { "if": { @@ -144217,7 +144426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justsports-bee14c.png" + "then": "https://data.mapcomplete.org/nsi//logos/justsports-bee14c.png" }, { "if": { @@ -144232,7 +144441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justice-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/justice-0615dc.jpg" }, { "if": { @@ -144247,7 +144456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kway-90f7b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/kway-90f7b7.png" }, { "if": { @@ -144263,7 +144472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kando-daa173.png" + "then": "https://data.mapcomplete.org/nsi//logos/kando-daa173.png" }, { "if": { @@ -144278,7 +144487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaes-196c99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaes-196c99.jpg" }, { "if": { @@ -144293,7 +144502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kappahl-c962e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kappahl-c962e5.jpg" }, { "if": { @@ -144308,7 +144517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karenmillen-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karenmillen-7b1694.jpg" }, { "if": { @@ -144323,7 +144532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karllagerfeld-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karllagerfeld-3937bd.jpg" }, { "if": { @@ -144339,7 +144548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlmarcjohn-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karlmarcjohn-90f7b7.jpg" }, { "if": { @@ -144355,7 +144564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/katespadenewyork-bbae42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/katespadenewyork-bbae42.jpg" }, { "if": { @@ -144371,7 +144580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/katies-392c8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/katies-392c8b.png" }, { "if": { @@ -144387,7 +144596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keedo-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keedo-bd328b.jpg" }, { "if": { @@ -144402,7 +144611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kekale-a0f446.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kekale-a0f446.jpg" }, { "if": { @@ -144417,7 +144626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kenzo-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kenzo-3937bd.jpg" }, { "if": { @@ -144432,7 +144641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiabi-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiabi-3937bd.jpg" }, { "if": { @@ -144447,7 +144656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kigili-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/kigili-3937bd.png" }, { "if": { @@ -144462,7 +144671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kik-323dff.png" + "then": "https://data.mapcomplete.org/nsi//logos/kik-323dff.png" }, { "if": { @@ -144478,7 +144687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klass-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klass-7b1694.jpg" }, { "if": { @@ -144493,7 +144702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kleiderbauer-daa173.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kleiderbauer-daa173.jpg" }, { "if": { @@ -144508,7 +144717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kocca-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kocca-d72191.jpg" }, { "if": { @@ -144523,7 +144732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kookai-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kookai-3937bd.jpg" }, { "if": { @@ -144538,7 +144747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koroshi-9e078d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koroshi-9e078d.jpg" }, { "if": { @@ -144553,7 +144762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koton-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koton-3937bd.jpg" }, { "if": { @@ -144569,7 +144778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kujten-928473.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kujten-928473.jpg" }, { "if": { @@ -144584,7 +144793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kult-74806d.png" + "then": "https://data.mapcomplete.org/nsi//logos/kult-74806d.png" }, { "if": { @@ -144599,7 +144808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lequipeur-36b8ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lequipeur-36b8ca.jpg" }, { "if": { @@ -144615,7 +144824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacompagniedespetits-454aed.png" + "then": "https://data.mapcomplete.org/nsi//logos/lacompagniedespetits-454aed.png" }, { "if": { @@ -144631,7 +144840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafeemaraboutee-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafeemaraboutee-90f7b7.jpg" }, { "if": { @@ -144646,7 +144855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lahalle-5bd015.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lahalle-5bd015.jpg" }, { "if": { @@ -144661,7 +144870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamartina-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamartina-3937bd.jpg" }, { "if": { @@ -144676,7 +144885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasenza-728022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lasenza-728022.jpg" }, { "if": { @@ -144692,7 +144901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lavieenrose-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/lavieenrose-3937bd.png" }, { "if": { @@ -144707,7 +144916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacoste-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacoste-3937bd.jpg" }, { "if": { @@ -144722,7 +144931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lager157-268f20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lager157-268f20.jpg" }, { "if": { @@ -144738,7 +144947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lanebryant-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lanebryant-0a21d9.jpg" }, { "if": { @@ -144754,7 +144963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laura-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laura-9e1367.jpg" }, { "if": { @@ -144769,7 +144978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lauraashley-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lauraashley-7b1694.jpg" }, { "if": { @@ -144784,7 +144993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lcwaikiki-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lcwaikiki-3937bd.jpg" }, { "if": { @@ -144799,7 +145008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechateau-f2752c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechateau-f2752c.jpg" }, { "if": { @@ -144815,7 +145024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lecoqsportif-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lecoqsportif-3937bd.jpg" }, { "if": { @@ -144831,7 +145040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leslipfrancais-512580.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leslipfrancais-512580.jpg" }, { "if": { @@ -144846,7 +145055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/letempsdescerises-9cdbc1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/letempsdescerises-9cdbc1.jpg" }, { "if": { @@ -144861,7 +145070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leecooper-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leecooper-3937bd.jpg" }, { "if": { @@ -144876,7 +145085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lefties-4f47d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lefties-4f47d2.jpg" }, { "if": { @@ -144891,7 +145100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legit-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/legit-bd328b.jpg" }, { "if": { @@ -144906,7 +145115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leos-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leos-74806d.jpg" }, { "if": { @@ -144922,7 +145131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/levis-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/levis-3937bd.jpg" }, { "if": { @@ -144938,7 +145147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertywoman-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libertywoman-74806d.jpg" }, { "if": { @@ -144954,7 +145163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lids-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lids-0615dc.jpg" }, { "if": { @@ -144969,7 +145178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifestyle-f8e8b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifestyle-f8e8b1.jpg" }, { "if": { @@ -144985,7 +145194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lillypulitzer-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lillypulitzer-0a21d9.jpg" }, { "if": { @@ -145000,7 +145209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lindex-d7f5c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lindex-d7f5c5.jpg" }, { "if": { @@ -145015,7 +145224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liujo-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liujo-3937bd.jpg" }, { "if": { @@ -145031,7 +145240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/live-03923a.png" + "then": "https://data.mapcomplete.org/nsi//logos/live-03923a.png" }, { "if": { @@ -145047,7 +145256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/livera-91c4cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/livera-91c4cd.jpg" }, { "if": { @@ -145063,7 +145272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loft-53e917.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loft-53e917.jpg" }, { "if": { @@ -145079,7 +145288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lolaliza-4b0b1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lolaliza-4b0b1d.jpg" }, { "if": { @@ -145095,7 +145304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lornajane-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lornajane-2bb477.jpg" }, { "if": { @@ -145110,7 +145319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loropiana-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loropiana-3937bd.jpg" }, { "if": { @@ -145125,7 +145334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louiscopelandandsons-b30dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louiscopelandandsons-b30dbb.jpg" }, { "if": { @@ -145140,7 +145349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisvuitton-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louisvuitton-3937bd.jpg" }, { "if": { @@ -145156,7 +145365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lovable-d72191.png" + "then": "https://data.mapcomplete.org/nsi//logos/lovable-d72191.png" }, { "if": { @@ -145172,7 +145381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loverepublic-54fe8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loverepublic-54fe8d.jpg" }, { "if": { @@ -145187,7 +145396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowes-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lowes-392c8b.jpg" }, { "if": { @@ -145202,7 +145411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loxion-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loxion-bd328b.jpg" }, { "if": { @@ -145217,7 +145426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luckybrand-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luckybrand-0615dc.jpg" }, { "if": { @@ -145233,24 +145442,24 @@ } ] }, - "then": "./assets/data/nsi/logos/luisaspagnoli-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luisaspagnoli-3937bd.jpg" }, { "if": { "and": [ "clothes=men;women", - "official_name=Lululemon Athletica", "shop=clothes", { "or": [ "brand=Lululemon", "brand:wikidata=Q6702957", - "name=Lululemon" + "name=Lululemon", + "official_name=Lululemon Athletica" ] } ] }, - "then": "./assets/data/nsi/logos/lululemon-211268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lululemon-211268.jpg" }, { "if": { @@ -145266,7 +145475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lupo-a63afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lupo-a63afb.jpg" }, { "if": { @@ -145282,7 +145491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mjbale-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mjbale-392c8b.jpg" }, { "if": { @@ -145297,7 +145506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandco-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandco-7b1694.jpg" }, { "if": { @@ -145312,7 +145521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mackage-59f728.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mackage-59f728.jpg" }, { "if": { @@ -145328,7 +145537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madewell-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madewell-0a21d9.jpg" }, { "if": { @@ -145344,7 +145553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maidenform-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maidenform-0a21d9.jpg" }, { "if": { @@ -145359,7 +145568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maisonmargiela-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/maisonmargiela-3937bd.svg" }, { "if": { @@ -145375,7 +145584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maje-ab7b56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maje-ab7b56.jpg" }, { "if": { @@ -145390,7 +145599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malwee-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/malwee-c7d1e1.jpg" }, { "if": { @@ -145406,7 +145615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandee-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandee-0a21d9.jpg" }, { "if": { @@ -145421,7 +145630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mango-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mango-3937bd.jpg" }, { "if": { @@ -145436,7 +145645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manyavar-f8e8b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manyavar-f8e8b1.jpg" }, { "if": { @@ -145451,7 +145660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marccain-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marccain-3937bd.jpg" }, { "if": { @@ -145466,7 +145675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marcjacobs-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marcjacobs-3937bd.jpg" }, { "if": { @@ -145481,7 +145690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marcopolo-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marcopolo-3937bd.jpg" }, { "if": { @@ -145497,7 +145706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marella-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marella-3937bd.jpg" }, { "if": { @@ -145512,7 +145721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marimekko-a0f446.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marimekko-a0f446.jpg" }, { "if": { @@ -145528,7 +145737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marinarinaldi-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marinarinaldi-3937bd.jpg" }, { "if": { @@ -145543,7 +145752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marinelayer-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marinelayer-0a21d9.jpg" }, { "if": { @@ -145558,7 +145767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marisa-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marisa-c7d1e1.jpg" }, { "if": { @@ -145573,7 +145782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/markformelle-1c3486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/markformelle-1c3486.jpg" }, { "if": { @@ -145588,7 +145797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marks-0d69da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marks-0d69da.jpg" }, { "if": { @@ -145603,7 +145812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/markham-b23c0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/markham-b23c0b.jpg" }, { "if": { @@ -145618,7 +145827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massimodutti-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/massimodutti-3937bd.jpg" }, { "if": { @@ -145633,7 +145842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matalan-1132a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/matalan-1132a1.jpg" }, { "if": { @@ -145649,7 +145858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maurices-cf4a00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maurices-cf4a00.jpg" }, { "if": { @@ -145664,7 +145873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mavi-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mavi-3937bd.jpg" }, { "if": { @@ -145679,7 +145888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/max-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/max-3937bd.jpg" }, { "if": { @@ -145695,7 +145904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxetmoi-03fdda.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxetmoi-03fdda.jpg" }, { "if": { @@ -145711,7 +145920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxmara-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxmara-3937bd.jpg" }, { "if": { @@ -145727,7 +145936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxandco-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxandco-3937bd.jpg" }, { "if": { @@ -145743,7 +145952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayoral-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayoral-3937bd.jpg" }, { "if": { @@ -145758,7 +145967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medicine-a7eccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/medicine-a7eccb.jpg" }, { "if": { @@ -145774,7 +145983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megasport-e79eb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megasport-e79eb2.jpg" }, { "if": { @@ -145790,7 +145999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melanielyne-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/melanielyne-9e1367.jpg" }, { "if": { @@ -145806,7 +146015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/menswearhouse-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/menswearhouse-0a21d9.jpg" }, { "if": { @@ -145822,7 +146031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mesdemoisellesparis-42f458.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mesdemoisellesparis-42f458.jpg" }, { "if": { @@ -145837,7 +146046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mexx-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/mexx-3937bd.png" }, { "if": { @@ -145852,7 +146061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michaelkors-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michaelkors-3937bd.jpg" }, { "if": { @@ -145868,7 +146077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miladys-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miladys-bd328b.jpg" }, { "if": { @@ -145883,7 +146092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milano-c4029f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milano-c4029f.jpg" }, { "if": { @@ -145905,7 +146114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milavitsa-e4d922.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milavitsa-e4d922.jpg" }, { "if": { @@ -145921,7 +146130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/millers-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/millers-392c8b.jpg" }, { "if": { @@ -145936,7 +146145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mintvelvet-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mintvelvet-7b1694.jpg" }, { "if": { @@ -145951,7 +146160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miseaugreen-90f7b7.gif" + "then": "https://data.mapcomplete.org/nsi//logos/miseaugreen-90f7b7.gif" }, { "if": { @@ -145966,7 +146175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/misterlady-96f120.png" + "then": "https://data.mapcomplete.org/nsi//logos/misterlady-96f120.png" }, { "if": { @@ -145985,7 +146194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mixxo-d098b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mixxo-d098b5.jpg" }, { "if": { @@ -146000,7 +146209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mo-3ddf3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/mo-3ddf3b.png" }, { "if": { @@ -146015,7 +146224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/modeparkrother-96f120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/modeparkrother-96f120.jpg" }, { "if": { @@ -146031,7 +146240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mohito-710e25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mohito-710e25.jpg" }, { "if": { @@ -146047,7 +146256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/momoni-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/momoni-3937bd.jpg" }, { "if": { @@ -146062,7 +146271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moncler-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/moncler-3937bd.svg" }, { "if": { @@ -146077,7 +146286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monki-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monki-3937bd.jpg" }, { "if": { @@ -146092,7 +146301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monnari-196c99.png" + "then": "https://data.mapcomplete.org/nsi//logos/monnari-196c99.png" }, { "if": { @@ -146107,7 +146316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monsoon-5e4c8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monsoon-5e4c8e.jpg" }, { "if": { @@ -146123,7 +146332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moores-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moores-9e1367.jpg" }, { "if": { @@ -146139,7 +146348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moreboards-daa173.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moreboards-daa173.jpg" }, { "if": { @@ -146154,7 +146363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morgan-5bd015.png" + "then": "https://data.mapcomplete.org/nsi//logos/morgan-5bd015.png" }, { "if": { @@ -146169,7 +146378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mosertrachtenwelt-74806d.png" + "then": "https://data.mapcomplete.org/nsi//logos/mosertrachtenwelt-74806d.png" }, { "if": { @@ -146185,7 +146394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mossbros-b36645.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mossbros-b36645.jpg" }, { "if": { @@ -146201,7 +146410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motherhoodmaternity-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/motherhoodmaternity-0615dc.jpg" }, { "if": { @@ -146217,7 +146426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motivi-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/motivi-3937bd.jpg" }, { "if": { @@ -146232,7 +146441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mq-0779c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mq-0779c3.jpg" }, { "if": { @@ -146247,7 +146456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrprice-445d46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrprice-445d46.jpg" }, { "if": { @@ -146263,7 +146472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrbigandtall-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrbigandtall-9e1367.jpg" }, { "if": { @@ -146279,7 +146488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/msmode-906b75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/msmode-906b75.jpg" }, { "if": { @@ -146294,7 +146503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mustang-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mustang-3937bd.jpg" }, { "if": { @@ -146312,7 +146521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nsport-4f64e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/nsport-4f64e9.png" }, { "if": { @@ -146327,7 +146536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nafnaf-6dd3cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nafnaf-6dd3cd.jpg" }, { "if": { @@ -146343,7 +146552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naheva-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naheva-d72191.jpg" }, { "if": { @@ -146359,7 +146568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nameit-b5590c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nameit-b5590c.jpg" }, { "if": { @@ -146374,7 +146583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/napapijri-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/napapijri-3937bd.jpg" }, { "if": { @@ -146389,7 +146598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nautica-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nautica-3937bd.jpg" }, { "if": { @@ -146404,7 +146613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/net-9293e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/net-9293e1.jpg" }, { "if": { @@ -146419,7 +146628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newlook-f337da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newlook-f337da.jpg" }, { "if": { @@ -146434,7 +146643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newman-90f7b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/newman-90f7b7.png" }, { "if": { @@ -146449,7 +146658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkandcompany-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkandcompany-0a21d9.jpg" }, { "if": { @@ -146464,7 +146673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorker-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorker-3937bd.jpg" }, { "if": { @@ -146479,7 +146688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/next-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/next-3937bd.jpg" }, { "if": { @@ -146494,7 +146703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nicciboutiques-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nicciboutiques-bd328b.jpg" }, { "if": { @@ -146509,7 +146718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nike-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nike-3937bd.jpg" }, { "if": { @@ -146524,7 +146733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nikeclearancestore-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nikeclearancestore-3937bd.jpg" }, { "if": { @@ -146539,7 +146748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nikecommunitystore-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nikecommunitystore-0a21d9.jpg" }, { "if": { @@ -146554,7 +146763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nikefactorystore-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nikefactorystore-3937bd.jpg" }, { "if": { @@ -146569,7 +146778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nikewellcollective-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nikewellcollective-3937bd.jpg" }, { "if": { @@ -146584,7 +146793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nkd-30d2bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/nkd-30d2bf.png" }, { "if": { @@ -146600,7 +146809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nonsolosport-d72191.png" + "then": "https://data.mapcomplete.org/nsi//logos/nonsolosport-d72191.png" }, { "if": { @@ -146615,7 +146824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordstromrack-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordstromrack-0615dc.jpg" }, { "if": { @@ -146631,7 +146840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northsails-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/northsails-3937bd.svg" }, { "if": { @@ -146646,7 +146855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernreflections-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernreflections-9e1367.jpg" }, { "if": { @@ -146661,7 +146870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nudiejeans-085abf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nudiejeans-085abf.jpg" }, { "if": { @@ -146677,7 +146886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nunalie-83ed0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/nunalie-83ed0b.png" }, { "if": { @@ -146692,7 +146901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuvolari-d72191.png" + "then": "https://data.mapcomplete.org/nsi//logos/nuvolari-d72191.png" }, { "if": { @@ -146707,7 +146916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oneill-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oneill-3937bd.jpg" }, { "if": { @@ -146722,7 +146931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oasis-cefcc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oasis-cefcc8.jpg" }, { "if": { @@ -146737,7 +146946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/offwhite-3937bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/offwhite-3937bd.svg" }, { "if": { @@ -146752,7 +146961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okaidi-eea264.png" + "then": "https://data.mapcomplete.org/nsi//logos/okaidi-eea264.png" }, { "if": { @@ -146767,7 +146976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldnavy-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldnavy-3937bd.jpg" }, { "if": { @@ -146782,7 +146991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oliverbonas-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oliverbonas-7b1694.jpg" }, { "if": { @@ -146798,7 +147007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oltre-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oltre-d72191.jpg" }, { "if": { @@ -146814,7 +147023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olymp-96f120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/olymp-96f120.jpg" }, { "if": { @@ -146829,7 +147038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olympandhades-74806d.png" + "then": "https://data.mapcomplete.org/nsi//logos/olympandhades-74806d.png" }, { "if": { @@ -146844,7 +147053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onceuponachild-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/onceuponachild-0a21d9.png" }, { "if": { @@ -146859,7 +147068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/only-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/only-3937bd.jpg" }, { "if": { @@ -146875,7 +147084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onlyandsons-b5590c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onlyandsons-b5590c.jpg" }, { "if": { @@ -146890,7 +147099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oodji-7b6907.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oodji-7b6907.jpg" }, { "if": { @@ -146906,7 +147115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orcanta-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orcanta-90f7b7.jpg" }, { "if": { @@ -146921,7 +147130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orchestra-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/orchestra-3937bd.png" }, { "if": { @@ -146937,7 +147146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/originalmarines-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/originalmarines-d72191.jpg" }, { "if": { @@ -146953,7 +147162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orsay-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orsay-3937bd.jpg" }, { "if": { @@ -146969,7 +147178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oshkoshbgosh-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oshkoshbgosh-3937bd.jpg" }, { "if": { @@ -146984,7 +147193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/outfit-bbe8af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/outfit-bbe8af.jpg" }, { "if": { @@ -147001,7 +147210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ovs-82a2eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ovs-82a2eb.jpg" }, { "if": { @@ -147017,7 +147226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ovskids-b5590c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ovskids-b5590c.jpg" }, { "if": { @@ -147032,7 +147241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oysho-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oysho-3937bd.jpg" }, { "if": { @@ -147048,7 +147257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ozeta-691270.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ozeta-691270.jpg" }, { "if": { @@ -147064,7 +147273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pablo-ab5608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pablo-ab5608.jpg" }, { "if": { @@ -147079,7 +147288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacsun-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacsun-0a21d9.jpg" }, { "if": { @@ -147094,7 +147303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmers-96f120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmers-96f120.jpg" }, { "if": { @@ -147109,7 +147318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pantaloons-f8e8b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pantaloons-f8e8b1.jpg" }, { "if": { @@ -147125,7 +147334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paprika-906b75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paprika-906b75.jpg" }, { "if": { @@ -147141,7 +147350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patagonia-5dc190.png" + "then": "https://data.mapcomplete.org/nsi//logos/patagonia-5dc190.png" }, { "if": { @@ -147156,7 +147365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patriziapepe-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/patriziapepe-d72191.jpg" }, { "if": { @@ -147171,7 +147380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paulsmith-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paulsmith-3937bd.jpg" }, { "if": { @@ -147186,7 +147395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peacocks-c6ef05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peacocks-c6ef05.jpg" }, { "if": { @@ -147201,23 +147410,23 @@ } ] }, - "then": "./assets/data/nsi/logos/peekandcloppenburg-65e711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peekandcloppenburg-65e711.jpg" }, { "if": { "and": [ - "official_name=Pendleton Woolen Mills", "shop=clothes", { "or": [ "brand=Pendleton", "brand:wikidata=Q7162488", - "name=Pendleton" + "name=Pendleton", + "official_name=Pendleton Woolen Mills" ] } ] }, - "then": "./assets/data/nsi/logos/pendleton-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pendleton-3937bd.jpg" }, { "if": { @@ -147232,7 +147441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penneys-b30dbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penneys-b30dbb.jpg" }, { "if": { @@ -147248,7 +147457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penningtons-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penningtons-9e1367.jpg" }, { "if": { @@ -147263,7 +147472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penshoppe-08e127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penshoppe-08e127.jpg" }, { "if": { @@ -147279,7 +147488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penti-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/penti-3937bd.png" }, { "if": { @@ -147294,7 +147503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pep-f0ab19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pep-f0ab19.jpg" }, { "if": { @@ -147309,7 +147518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepandco-94f7c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/pepandco-94f7c8.png" }, { "if": { @@ -147324,7 +147533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepco-9b55e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pepco-9b55e7.jpg" }, { "if": { @@ -147339,7 +147548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepejeans-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pepejeans-3937bd.jpg" }, { "if": { @@ -147355,7 +147564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perryellis-77213a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perryellis-77213a.jpg" }, { "if": { @@ -147370,7 +147579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peteralexander-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peteralexander-392c8b.jpg" }, { "if": { @@ -147386,7 +147595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peterengland-f8e8b1.png" + "then": "https://data.mapcomplete.org/nsi//logos/peterengland-f8e8b1.png" }, { "if": { @@ -147402,7 +147611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peterhahn-5713f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peterhahn-5713f3.jpg" }, { "if": { @@ -147417,7 +147626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petermillar-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petermillar-0a21d9.jpg" }, { "if": { @@ -147432,7 +147641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petitbateau-ef24e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petitbateau-ef24e9.jpg" }, { "if": { @@ -147447,7 +147656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phaseeight-9ea1fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phaseeight-9ea1fe.jpg" }, { "if": { @@ -147462,7 +147671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piazzaitalia-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piazzaitalia-d72191.jpg" }, { "if": { @@ -147477,7 +147686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pierrecardin-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pierrecardin-3937bd.jpg" }, { "if": { @@ -147493,7 +147702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pimkie-c56deb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pimkie-c56deb.jpg" }, { "if": { @@ -147509,7 +147718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pink-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pink-3937bd.jpg" }, { "if": { @@ -147525,7 +147734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinkwoman-cbc059.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pinkwoman-cbc059.jpg" }, { "if": { @@ -147541,7 +147750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinko-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pinko-3937bd.jpg" }, { "if": { @@ -147556,7 +147765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piticas-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piticas-c7d1e1.jpg" }, { "if": { @@ -147572,7 +147781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/platoscloset-0615dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/platoscloset-0615dc.png" }, { "if": { @@ -147588,7 +147797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pmelegend-5eeeb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pmelegend-5eeeb4.jpg" }, { "if": { @@ -147603,7 +147812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poloralphlauren-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poloralphlauren-3937bd.jpg" }, { "if": { @@ -147619,7 +147828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pompea-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pompea-d72191.jpg" }, { "if": { @@ -147635,7 +147844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portmans-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portmans-2bb477.jpg" }, { "if": { @@ -147650,7 +147859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postie-f8b7cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postie-f8b7cc.jpg" }, { "if": { @@ -147665,7 +147874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/power-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/power-bd328b.jpg" }, { "if": { @@ -147680,7 +147889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prada-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prada-3937bd.jpg" }, { "if": { @@ -147695,7 +147904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primark-5d2556.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primark-5d2556.jpg" }, { "if": { @@ -147711,7 +147920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primigistore-7efe54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primigistore-7efe54.jpg" }, { "if": { @@ -147726,7 +147935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/princessetamtam-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/princessetamtam-3937bd.jpg" }, { "if": { @@ -147741,7 +147950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/promod-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/promod-3937bd.jpg" }, { "if": { @@ -147756,7 +147965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psfashion-9cb936.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/psfashion-9cb936.jpg" }, { "if": { @@ -147772,7 +147981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psychobunny-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/psychobunny-0615dc.jpg" }, { "if": { @@ -147787,7 +147996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pullandbear-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pullandbear-3937bd.jpg" }, { "if": { @@ -147802,7 +148011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puma-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puma-3937bd.jpg" }, { "if": { @@ -147817,7 +148026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pumaoutlet-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pumaoutlet-3937bd.jpg" }, { "if": { @@ -147833,7 +148042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puntroma-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puntroma-3937bd.jpg" }, { "if": { @@ -147848,7 +148057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quiksilver-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quiksilver-3937bd.jpg" }, { "if": { @@ -147863,7 +148072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quiosque-196c99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quiosque-196c99.jpg" }, { "if": { @@ -147879,7 +148088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quiz-94f7c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quiz-94f7c8.jpg" }, { "if": { @@ -147894,7 +148103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rage-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rage-bd328b.jpg" }, { "if": { @@ -147909,7 +148118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ragingbull-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ragingbull-7b1694.jpg" }, { "if": { @@ -147924,7 +148133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rainbow-d6c7ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rainbow-d6c7ca.jpg" }, { "if": { @@ -147939,7 +148148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramrajcotton-f8e8b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ramrajcotton-f8e8b1.jpg" }, { "if": { @@ -147954,7 +148163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reebok-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reebok-3937bd.jpg" }, { "if": { @@ -147969,7 +148178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/refinery-bd328b.png" + "then": "https://data.mapcomplete.org/nsi//logos/refinery-bd328b.png" }, { "if": { @@ -147984,7 +148193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reiss-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reiss-7b1694.jpg" }, { "if": { @@ -147999,7 +148208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reitmans-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reitmans-9e1367.jpg" }, { "if": { @@ -148014,7 +148223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/relayjeans-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/relayjeans-bd328b.jpg" }, { "if": { @@ -148029,7 +148238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renner-41b5c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renner-41b5c2.jpg" }, { "if": { @@ -148047,7 +148256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renuar-e991b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renuar-e991b5.jpg" }, { "if": { @@ -148063,7 +148272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reserva-c7d1e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/reserva-c7d1e1.png" }, { "if": { @@ -148078,23 +148287,23 @@ } ] }, - "then": "./assets/data/nsi/logos/reserved-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/reserved-3937bd.png" }, { "if": { "and": [ - "official_name=Renegade Fashion Outlet", "shop=clothes", { "or": [ "brand=Renegade Fashion Outlet", "brand:wikidata=Q116457467", - "name=RFO" + "name=RFO", + "official_name=Renegade Fashion Outlet" ] } ] }, - "then": "./assets/data/nsi/logos/rfo-bd328b.png" + "then": "https://data.mapcomplete.org/nsi//logos/rfo-bd328b.png" }, { "if": { @@ -148109,7 +148318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riachuelo-c7d1e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/riachuelo-c7d1e1.png" }, { "if": { @@ -148125,7 +148334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rickis-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rickis-9e1367.jpg" }, { "if": { @@ -148141,7 +148350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rinascimento-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rinascimento-d72191.jpg" }, { "if": { @@ -148157,7 +148366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ripcurl-e95856.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ripcurl-e95856.jpg" }, { "if": { @@ -148173,7 +148382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riuparis-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/riuparis-3937bd.png" }, { "if": { @@ -148188,7 +148397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riverisland-a754e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/riverisland-a754e7.jpg" }, { "if": { @@ -148203,7 +148412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivers-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rivers-392c8b.jpg" }, { "if": { @@ -148219,7 +148428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robertgraham-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robertgraham-0a21d9.jpg" }, { "if": { @@ -148234,7 +148443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robertocavalli-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robertocavalli-3937bd.jpg" }, { "if": { @@ -148250,7 +148459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockmans-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rockmans-392c8b.jpg" }, { "if": { @@ -148268,7 +148477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockwear-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rockwear-392c8b.jpg" }, { "if": { @@ -148284,7 +148493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roddandgunn-5bf61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roddandgunn-5bf61e.jpg" }, { "if": { @@ -148300,7 +148509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roman-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roman-7b1694.jpg" }, { "if": { @@ -148315,7 +148524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roots-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roots-3937bd.jpg" }, { "if": { @@ -148331,7 +148540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rougegorge-6db462.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rougegorge-6db462.jpg" }, { "if": { @@ -148346,7 +148555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rue21-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rue21-0a21d9.jpg" }, { "if": { @@ -148362,7 +148571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwandco-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwandco-9e1367.jpg" }, { "if": { @@ -148377,7 +148586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soliver-fb408e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/soliver-fb408e.svg" }, { "if": { @@ -148392,7 +148601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintjames-90f7b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/saintjames-90f7b7.png" }, { "if": { @@ -148409,7 +148618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintlaurent-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintlaurent-3937bd.jpg" }, { "if": { @@ -148426,7 +148635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salomon-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salomon-3937bd.jpg" }, { "if": { @@ -148441,7 +148650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltrock-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saltrock-7b1694.jpg" }, { "if": { @@ -148456,7 +148665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sam73-5134d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/sam73-5134d4.png" }, { "if": { @@ -148471,7 +148680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samsoesamsoe-5e0a04.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samsoesamsoe-5e0a04.jpg" }, { "if": { @@ -148486,7 +148695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandro-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandro-90f7b7.jpg" }, { "if": { @@ -148501,7 +148710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santory-c4029f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santory-c4029f.jpg" }, { "if": { @@ -148516,7 +148725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarar-86c702.png" + "then": "https://data.mapcomplete.org/nsi//logos/sarar-86c702.png" }, { "if": { @@ -148532,7 +148741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schiesser-74806d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schiesser-74806d.svg" }, { "if": { @@ -148547,7 +148756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scotchandsoda-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scotchandsoda-3937bd.jpg" }, { "if": { @@ -148562,7 +148771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scrubsandbeyond-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scrubsandbeyond-0a21d9.jpg" }, { "if": { @@ -148577,7 +148786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seasalt-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seasalt-7b1694.jpg" }, { "if": { @@ -148593,7 +148802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seedheritage-2bb477.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seedheritage-2bb477.jpg" }, { "if": { @@ -148608,7 +148817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seidensticker-28c0e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seidensticker-28c0e5.jpg" }, { "if": { @@ -148623,7 +148832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sela-2d1caa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sela-2d1caa.jpg" }, { "if": { @@ -148639,7 +148848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/select-476678.png" + "then": "https://data.mapcomplete.org/nsi//logos/select-476678.png" }, { "if": { @@ -148654,7 +148863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selected-b5590c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selected-b5590c.jpg" }, { "if": { @@ -148670,7 +148879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selfast-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selfast-bd328b.jpg" }, { "if": { @@ -148685,7 +148894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senqu-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senqu-bd328b.jpg" }, { "if": { @@ -148701,7 +148910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sergeblanco-4a3e29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sergeblanco-4a3e29.jpg" }, { "if": { @@ -148717,7 +148926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sergentmajor-ef9e06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sergentmajor-ef9e06.jpg" }, { "if": { @@ -148732,7 +148941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sfera-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sfera-3937bd.jpg" }, { "if": { @@ -148748,7 +148957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheike-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sheike-392c8b.jpg" }, { "if": { @@ -148763,7 +148972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shiekh-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/shiekh-0a21d9.png" }, { "if": { @@ -148778,7 +148987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoeby-91c4cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoeby-91c4cd.png" }, { "if": { @@ -148794,7 +149003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sigikid-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sigikid-74806d.jpg" }, { "if": { @@ -148809,7 +149018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinsay-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinsay-3937bd.jpg" }, { "if": { @@ -148824,7 +149033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sirens-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sirens-9e1367.jpg" }, { "if": { @@ -148839,7 +149048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sisley-9d6d32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sisley-9d6d32.jpg" }, { "if": { @@ -148855,7 +149064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slaters-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slaters-7b1694.jpg" }, { "if": { @@ -148871,7 +149080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smuggler-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smuggler-90f7b7.jpg" }, { "if": { @@ -148887,7 +149096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/softsurroundings-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/softsurroundings-0a21d9.jpg" }, { "if": { @@ -148904,7 +149113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soma-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/soma-0a21d9.jpg" }, { "if": { @@ -148919,7 +149128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sor-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sor-74806d.jpg" }, { "if": { @@ -148935,7 +149144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sottotono-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sottotono-d72191.jpg" }, { "if": { @@ -148951,7 +149160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spanx-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spanx-0a21d9.jpg" }, { "if": { @@ -148970,7 +149179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spao-d098b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/spao-d098b5.png" }, { "if": { @@ -148985,7 +149194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportscene-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportscene-bd328b.jpg" }, { "if": { @@ -149000,7 +149209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportscraft-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportscraft-392c8b.jpg" }, { "if": { @@ -149016,7 +149225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportsgirl-392c8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sportsgirl-392c8b.png" }, { "if": { @@ -149031,7 +149240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfield-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfield-3937bd.jpg" }, { "if": { @@ -149046,7 +149255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohn-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohn-0615dc.jpg" }, { "if": { @@ -149061,7 +149270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnoutlet-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnoutlet-0a21d9.jpg" }, { "if": { @@ -149076,7 +149285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateandliberty-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stateandliberty-0a21d9.jpg" }, { "if": { @@ -149092,7 +149301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stefanel-b6b3bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stefanel-b6b3bf.jpg" }, { "if": { @@ -149108,7 +149317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stellamccartney-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stellamccartney-3937bd.jpg" }, { "if": { @@ -149123,7 +149332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stitches-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stitches-9e1367.jpg" }, { "if": { @@ -149139,7 +149348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stradivarius-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stradivarius-3937bd.jpg" }, { "if": { @@ -149154,7 +149363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/streetone-1c3d1b.png" + "then": "https://data.mapcomplete.org/nsi//logos/streetone-1c3d1b.png" }, { "if": { @@ -149169,7 +149378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/studio88-40af4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/studio88-40af4d.jpg" }, { "if": { @@ -149185,7 +149394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stylenanda-d098b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stylenanda-d098b5.jpg" }, { "if": { @@ -149200,7 +149409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suburbia-c4029f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suburbia-c4029f.jpg" }, { "if": { @@ -149216,7 +149425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sudexpress-4a3e29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sudexpress-4a3e29.jpg" }, { "if": { @@ -149232,7 +149441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suitsupply-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suitsupply-3937bd.jpg" }, { "if": { @@ -149247,7 +149456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sundance-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sundance-0a21d9.jpg" }, { "if": { @@ -149262,7 +149471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superdry-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/superdry-3937bd.png" }, { "if": { @@ -149278,7 +149487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supre-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supre-392c8b.jpg" }, { "if": { @@ -149294,7 +149503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suzannegrae-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suzannegrae-392c8b.jpg" }, { "if": { @@ -149310,7 +149519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suzyshier-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suzyshier-9e1367.jpg" }, { "if": { @@ -149326,7 +149535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sweatybetty-81ce8b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sweatybetty-81ce8b.svg" }, { "if": { @@ -149341,7 +149550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tmlewin-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tmlewin-7b1694.jpg" }, { "if": { @@ -149357,7 +149566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/takkofashion-80f395.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/takkofashion-80f395.jpg" }, { "if": { @@ -149372,7 +149581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/talbots-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/talbots-0615dc.jpg" }, { "if": { @@ -149388,7 +149597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tallyweijl-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tallyweijl-3937bd.jpg" }, { "if": { @@ -149404,7 +149613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tapealoeil-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tapealoeil-3937bd.jpg" }, { "if": { @@ -149422,7 +149631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tarocash-392c8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/tarocash-392c8b.png" }, { "if": { @@ -149438,7 +149647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tartineetchocolat-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tartineetchocolat-3937bd.jpg" }, { "if": { @@ -149453,7 +149662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tati-72a3d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tati-72a3d7.jpg" }, { "if": { @@ -149468,7 +149677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tatuum-a6485d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tatuum-a6485d.jpg" }, { "if": { @@ -149483,7 +149692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tedbaker-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/tedbaker-3937bd.png" }, { "if": { @@ -149498,7 +149707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terranova-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terranova-3937bd.jpg" }, { "if": { @@ -149513,7 +149722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terstal-91c4cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terstal-91c4cd.jpg" }, { "if": { @@ -149529,7 +149738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/textilehouse-86acc9.png" + "then": "https://data.mapcomplete.org/nsi//logos/textilehouse-86acc9.png" }, { "if": { @@ -149545,7 +149754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tezenis-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tezenis-3937bd.jpg" }, { "if": { @@ -149561,7 +149770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thechildrensplace-0e6d3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thechildrensplace-0e6d3d.jpg" }, { "if": { @@ -149576,7 +149785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theedinburghwoollenmill-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theedinburghwoollenmill-7b1694.jpg" }, { "if": { @@ -149591,7 +149800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thefix-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thefix-bd328b.jpg" }, { "if": { @@ -149606,7 +149815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thekooples-f50f8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thekooples-f50f8c.jpg" }, { "if": { @@ -149622,7 +149831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thenorthface-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thenorthface-3937bd.jpg" }, { "if": { @@ -149637,7 +149846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesting-f7ce4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thesting-f7ce4c.jpg" }, { "if": { @@ -149652,7 +149861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thestone-91c4cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thestone-91c4cd.jpg" }, { "if": { @@ -149668,7 +149877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thombrowne-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thombrowne-3937bd.jpg" }, { "if": { @@ -149684,7 +149893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thymematernity-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thymematernity-9e1367.jpg" }, { "if": { @@ -149700,7 +149909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tillys-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tillys-0a21d9.jpg" }, { "if": { @@ -149715,7 +149924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timberland-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/timberland-3937bd.jpg" }, { "if": { @@ -149731,7 +149940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiptoptailors-9e1367.png" + "then": "https://data.mapcomplete.org/nsi//logos/tiptoptailors-9e1367.png" }, { "if": { @@ -149746,7 +149955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/todomoda-69b017.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/todomoda-69b017.jpg" }, { "if": { @@ -149761,7 +149970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomford-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomford-3937bd.jpg" }, { "if": { @@ -149776,7 +149985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomtailor-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomtailor-3937bd.jpg" }, { "if": { @@ -149791,7 +150000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tommybahama-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tommybahama-0615dc.jpg" }, { "if": { @@ -149806,7 +150015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tommyhilfiger-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tommyhilfiger-3937bd.jpg" }, { "if": { @@ -149822,7 +150031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tommyhilfigerkids-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tommyhilfigerkids-3937bd.jpg" }, { "if": { @@ -149837,7 +150046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topsecret-e27654.png" + "then": "https://data.mapcomplete.org/nsi//logos/topsecret-e27654.png" }, { "if": { @@ -149853,7 +150062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topman-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topman-3937bd.jpg" }, { "if": { @@ -149869,7 +150078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topshop-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topshop-3937bd.jpg" }, { "if": { @@ -149889,7 +150098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topsport-82a2eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topsport-82a2eb.jpg" }, { "if": { @@ -149905,7 +150114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torrid-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torrid-0a21d9.jpg" }, { "if": { @@ -149920,7 +150129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toryburch-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toryburch-0a21d9.jpg" }, { "if": { @@ -149935,7 +150144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalsports-bd328b.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalsports-bd328b.png" }, { "if": { @@ -149951,7 +150160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trackandfield-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trackandfield-c7d1e1.jpg" }, { "if": { @@ -149966,7 +150175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/travismathew-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/travismathew-0a21d9.jpg" }, { "if": { @@ -149981,7 +150190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredy-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredy-74806d.jpg" }, { "if": { @@ -149996,7 +150205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trigema-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trigema-74806d.jpg" }, { "if": { @@ -150012,7 +150221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/triumph-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/triumph-3937bd.png" }, { "if": { @@ -150028,7 +150237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truereligion-99b1ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truereligion-99b1ed.jpg" }, { "if": { @@ -150043,7 +150252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truworths-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truworths-bd328b.jpg" }, { "if": { @@ -150058,7 +150267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uspoloassn-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uspoloassn-3937bd.jpg" }, { "if": { @@ -150074,7 +150283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ullapopken-341143.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ullapopken-341143.jpg" }, { "if": { @@ -150089,7 +150298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unjourailleurs-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unjourailleurs-90f7b7.jpg" }, { "if": { @@ -150105,7 +150314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/underarmour-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/underarmour-3937bd.png" }, { "if": { @@ -150121,7 +150330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/underarmouryouth-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/underarmouryouth-3937bd.png" }, { "if": { @@ -150137,7 +150346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/undiz-024578.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/undiz-024578.jpg" }, { "if": { @@ -150153,7 +150362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniformdestination-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniformdestination-0a21d9.png" }, { "if": { @@ -150168,7 +150377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniqclothingbycheckers-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uniqclothingbycheckers-bd328b.jpg" }, { "if": { @@ -150183,7 +150392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniqlo-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uniqlo-3937bd.jpg" }, { "if": { @@ -150199,7 +150408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedcolorsofbenetton-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedcolorsofbenetton-3937bd.jpg" }, { "if": { @@ -150214,7 +150423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universalstore-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universalstore-392c8b.jpg" }, { "if": { @@ -150229,7 +150438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/untuckit-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/untuckit-0615dc.jpg" }, { "if": { @@ -150244,7 +150453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/upwest-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/upwest-0a21d9.png" }, { "if": { @@ -150259,7 +150468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/urbanoutfitters-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/urbanoutfitters-3937bd.jpg" }, { "if": { @@ -150274,7 +150483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/urbanplanet-9e1367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/urbanplanet-9e1367.jpg" }, { "if": { @@ -150289,7 +150498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usc-94f7c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/usc-94f7c8.png" }, { "if": { @@ -150305,7 +150514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vim-0a21d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/vim-0a21d9.png" }, { "if": { @@ -150320,7 +150529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valentino-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valentino-3937bd.jpg" }, { "if": { @@ -150336,7 +150545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vandal-91c4cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vandal-91c4cd.jpg" }, { "if": { @@ -150351,7 +150560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vangraaf-9ef6ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vangraaf-9ef6ea.jpg" }, { "if": { @@ -150367,7 +150576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanheusen-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/vanheusen-3937bd.png" }, { "if": { @@ -150382,7 +150591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanlaack-74806d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vanlaack-74806d.svg" }, { "if": { @@ -150398,7 +150607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanessabruno-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vanessabruno-3937bd.jpg" }, { "if": { @@ -150412,7 +150621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veritas-4b0b1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veritas-4b0b1d.jpg" }, { "if": { @@ -150428,7 +150637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veromoda-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veromoda-3937bd.jpg" }, { "if": { @@ -150443,7 +150652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/versace-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/versace-3937bd.jpg" }, { "if": { @@ -150459,7 +150668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vertbaudet-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vertbaudet-3937bd.jpg" }, { "if": { @@ -150474,7 +150683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vertiche-c4029f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vertiche-c4029f.jpg" }, { "if": { @@ -150489,7 +150698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vicomtea-90f7b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vicomtea-90f7b7.jpg" }, { "if": { @@ -150505,7 +150714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/victoriassecret-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/victoriassecret-3937bd.png" }, { "if": { @@ -150520,7 +150729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/victorylab-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/victorylab-bd328b.jpg" }, { "if": { @@ -150536,7 +150745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vila-b5590c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vila-b5590c.jpg" }, { "if": { @@ -150552,7 +150761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vilebrequin-3937bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/vilebrequin-3937bd.png" }, { "if": { @@ -150567,7 +150776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vince-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vince-0a21d9.jpg" }, { "if": { @@ -150582,7 +150791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vineyardvines-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vineyardvines-0a21d9.jpg" }, { "if": { @@ -150597,7 +150806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vistula-196c99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vistula-196c99.jpg" }, { "if": { @@ -150612,7 +150821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volcom-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volcom-3937bd.jpg" }, { "if": { @@ -150627,7 +150836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volt-e9779b.png" + "then": "https://data.mapcomplete.org/nsi//logos/volt-e9779b.png" }, { "if": { @@ -150643,7 +150852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vovk-e79eb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vovk-e79eb2.jpg" }, { "if": { @@ -150658,7 +150867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vuori-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vuori-0a21d9.jpg" }, { "if": { @@ -150674,7 +150883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wacoal-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wacoal-3937bd.jpg" }, { "if": { @@ -150689,7 +150898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walbusch-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walbusch-74806d.jpg" }, { "if": { @@ -150704,7 +150913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wallis-94f7c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wallis-94f7c8.jpg" }, { "if": { @@ -150719,7 +150928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warehouse-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warehouse-7b1694.jpg" }, { "if": { @@ -150734,7 +150943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/we-1dbf87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/we-1dbf87.jpg" }, { "if": { @@ -150749,7 +150958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/webbers-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/webbers-bd328b.jpg" }, { "if": { @@ -150764,7 +150973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weekday-b5590c.png" + "then": "https://data.mapcomplete.org/nsi//logos/weekday-b5590c.png" }, { "if": { @@ -150780,7 +150989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weekendmaxmara-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weekendmaxmara-3937bd.jpg" }, { "if": { @@ -150800,7 +151009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wego-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wego-85f881.jpg" }, { "if": { @@ -150816,7 +151025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weirdfish-7b1694.png" + "then": "https://data.mapcomplete.org/nsi//logos/weirdfish-7b1694.png" }, { "if": { @@ -150831,7 +151040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellensteyn-74806d.png" + "then": "https://data.mapcomplete.org/nsi//logos/wellensteyn-74806d.png" }, { "if": { @@ -150846,7 +151055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/west49-9e1367.png" + "then": "https://data.mapcomplete.org/nsi//logos/west49-9e1367.png" }, { "if": { @@ -150861,7 +151070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westside-f8e8b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westside-f8e8b1.jpg" }, { "if": { @@ -150877,7 +151086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wheelup-d72191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wheelup-d72191.jpg" }, { "if": { @@ -150892,7 +151101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whistles-7b1694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whistles-7b1694.jpg" }, { "if": { @@ -150907,7 +151116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whitehouseblackmarket-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whitehouseblackmarket-0615dc.jpg" }, { "if": { @@ -150922,7 +151131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whitestuff-98a4ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whitestuff-98a4ed.jpg" }, { "if": { @@ -150937,7 +151146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wibra-5eeeb4.png" + "then": "https://data.mapcomplete.org/nsi//logos/wibra-5eeeb4.png" }, { "if": { @@ -150953,7 +151162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilsonsleather-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilsonsleather-0615dc.jpg" }, { "if": { @@ -150969,7 +151178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/windsor-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/windsor-0a21d9.jpg" }, { "if": { @@ -150984,7 +151193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/witchery-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/witchery-392c8b.jpg" }, { "if": { @@ -150999,7 +151208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wittweiden-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wittweiden-74806d.jpg" }, { "if": { @@ -151014,7 +151223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wohrl-74806d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wohrl-74806d.jpg" }, { "if": { @@ -151029,7 +151238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wolczanka-196c99.png" + "then": "https://data.mapcomplete.org/nsi//logos/wolczanka-196c99.png" }, { "if": { @@ -151044,7 +151253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wolford-b05397.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wolford-b05397.jpg" }, { "if": { @@ -151060,7 +151269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/womensecret-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/womensecret-3937bd.jpg" }, { "if": { @@ -151079,7 +151288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wonderplace-d098b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wonderplace-d098b5.jpg" }, { "if": { @@ -151094,7 +151303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woolworths-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woolworths-bd328b.jpg" }, { "if": { @@ -151110,7 +151319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/workworld-0f3ba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/workworld-0f3ba6.jpg" }, { "if": { @@ -151126,7 +151335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xios-0a21d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xios-0a21d9.jpg" }, { "if": { @@ -151141,7 +151350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xxiforever-0a21d9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/xxiforever-0a21d9.svg" }, { "if": { @@ -151156,7 +151365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamamay-8f2dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamamay-8f2dbd.jpg" }, { "if": { @@ -151174,7 +151383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yd-392c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yd-392c8b.jpg" }, { "if": { @@ -151189,7 +151398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yde-bd328b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yde-bd328b.jpg" }, { "if": { @@ -151205,7 +151414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yoursclothing-811b8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yoursclothing-811b8c.jpg" }, { "if": { @@ -151220,7 +151429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zadigandvoltaire-2d207e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zadigandvoltaire-2d207e.jpg" }, { "if": { @@ -151235,7 +151444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zara-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zara-3937bd.jpg" }, { "if": { @@ -151251,7 +151460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zarina-54fe8d.png" + "then": "https://data.mapcomplete.org/nsi//logos/zarina-54fe8d.png" }, { "if": { @@ -151266,7 +151475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zebra-fed098.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zebra-fed098.svg" }, { "if": { @@ -151281,7 +151490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeeman-906b75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeeman-906b75.jpg" }, { "if": { @@ -151297,7 +151506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zegna-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zegna-3937bd.jpg" }, { "if": { @@ -151313,7 +151522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zero-9393a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zero-9393a9.jpg" }, { "if": { @@ -151329,7 +151538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zillertalertrachtenwelt-daa173.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zillertalertrachtenwelt-daa173.jpg" }, { "if": { @@ -151344,7 +151553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zilli-3937bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zilli-3937bd.jpg" }, { "if": { @@ -151360,7 +151569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zinzane-c7d1e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zinzane-c7d1e1.jpg" }, { "if": { @@ -151375,7 +151584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zizzi-ef6c41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zizzi-ef6c41.jpg" }, { "if": { @@ -151390,7 +151599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zumiez-0615dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zumiez-0615dc.jpg" }, { "if": { @@ -151405,7 +151614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/183cfe-d0a189.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/183cfe-d0a189.jpg" }, { "if": { @@ -151420,7 +151629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d48ea9-d0a189.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d48ea9-d0a189.jpg" }, { "if": { @@ -151441,7 +151650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svitanak-e4d922.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/svitanak-e4d922.jpg" }, { "if": { @@ -151458,7 +151667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snezhnayakoroleva-102c33.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snezhnayakoroleva-102c33.jpg" }, { "if": { @@ -151477,7 +151686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tvoe-1c3486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tvoe-1c3486.jpg" }, { "if": { @@ -151495,7 +151704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lcwaikiki-82a2eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lcwaikiki-82a2eb.jpg" }, { "if": { @@ -151514,7 +151723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/navne-82a2eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/navne-82a2eb.png" }, { "if": { @@ -151535,7 +151744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okaidi-82a2eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/okaidi-82a2eb.png" }, { "if": { @@ -151554,7 +151763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avail-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avail-85f881.jpg" }, { "if": { @@ -151573,7 +151782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fone-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fone-85f881.jpg" }, { "if": { @@ -151592,7 +151801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/konaka-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/konaka-85f881.jpg" }, { "if": { @@ -151611,7 +151820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanki-85f881.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanki-85f881.png" }, { "if": { @@ -151630,15 +151839,12 @@ } ] }, - "then": "./assets/data/nsi/logos/jeansmate-85f881.png" + "then": "https://data.mapcomplete.org/nsi//logos/jeansmate-85f881.png" }, { "if": { "and": [ "clothes=women", - "official_name=ファッションセンターしまむら", - "official_name:en=Fashion Center Shimamura", - "official_name:ja=ファッションセンターしまむら", "shop=clothes", { "or": [ @@ -151648,12 +151854,15 @@ "brand:wikidata=Q7758173", "name=しまむら", "name:en=Shimamura", - "name:ja=しまむら" + "name:ja=しまむら", + "official_name=ファッションセンターしまむら", + "official_name:en=Fashion Center Shimamura", + "official_name:ja=ファッションセンターしまむら" ] } ] }, - "then": "./assets/data/nsi/logos/shimamura-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shimamura-85f881.jpg" }, { "if": { @@ -151672,7 +151881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birthday-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birthday-85f881.jpg" }, { "if": { @@ -151691,7 +151900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haruyama-85f881.png" + "then": "https://data.mapcomplete.org/nsi//logos/haruyama-85f881.png" }, { "if": { @@ -151710,7 +151919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beams-85f881.png" + "then": "https://data.mapcomplete.org/nsi//logos/beams-85f881.png" }, { "if": { @@ -151729,7 +151938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/machouse-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/machouse-85f881.jpg" }, { "if": { @@ -151748,7 +151957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniqlo-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uniqlo-85f881.jpg" }, { "if": { @@ -151767,7 +151976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/righton-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/righton-85f881.jpg" }, { "if": { @@ -151786,7 +151995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/workman-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/workman-85f881.jpg" }, { "if": { @@ -151805,7 +152014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniqlo-44ce59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uniqlo-44ce59.jpg" }, { "if": { @@ -151824,7 +152033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giordano-44ce59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giordano-44ce59.jpg" }, { "if": { @@ -151843,7 +152052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giordano-33ce1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giordano-33ce1a.jpg" }, { "if": { @@ -151862,7 +152071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bossini-44ce59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bossini-44ce59.jpg" }, { "if": { @@ -151881,7 +152090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anta-88aa58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anta-88aa58.jpg" }, { "if": { @@ -151900,7 +152109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lining-44ce59.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lining-44ce59.svg" }, { "if": { @@ -151919,7 +152128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lining-33ce1a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lining-33ce1a.svg" }, { "if": { @@ -151938,7 +152147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aoyamatailor-85f881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aoyamatailor-85f881.jpg" }, { "if": { @@ -151957,7 +152166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hla-88aa58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hla-88aa58.jpg" }, { "if": { @@ -151976,7 +152185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xtep-88aa58.png" + "then": "https://data.mapcomplete.org/nsi//logos/xtep-88aa58.png" }, { "if": { @@ -151995,7 +152204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baleno-d44f7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baleno-d44f7c.jpg" }, { "if": { @@ -152014,7 +152223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baleno-12a111.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baleno-12a111.jpg" }, { "if": { @@ -152029,7 +152238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nespresso-d0bfaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nespresso-d0bfaf.jpg" }, { "if": { @@ -152044,7 +152253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tchibo-8e6167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tchibo-8e6167.jpg" }, { "if": { @@ -152065,7 +152274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meama-06d40a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meama-06d40a.jpg" }, { "if": { @@ -152084,7 +152293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaldicoffeefarm-e1062f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaldicoffeefarm-e1062f.jpg" }, { "if": { @@ -152099,7 +152308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amac-0d9307.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amac-0d9307.jpg" }, { "if": { @@ -152114,7 +152323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arltcomputer-8969c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/arltcomputer-8969c7.png" }, { "if": { @@ -152129,7 +152338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beep-6542a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beep-6542a7.jpg" }, { "if": { @@ -152144,7 +152353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadacomputers-d6ec06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadacomputers-d6ec06.jpg" }, { "if": { @@ -152159,7 +152368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyberport-a9f92a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyberport-a9f92a.jpg" }, { "if": { @@ -152174,7 +152383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gravis-8969c7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gravis-8969c7.svg" }, { "if": { @@ -152189,7 +152398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kandmelektronik-8969c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kandmelektronik-8969c7.jpg" }, { "if": { @@ -152204,7 +152413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ldlc-87ca9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ldlc-87ca9a.jpg" }, { "if": { @@ -152219,7 +152428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/microcenter-c4ecce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/microcenter-c4ecce.jpg" }, { "if": { @@ -152234,7 +152443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/notebooksbilligerde-8969c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/notebooksbilligerde-8969c7.png" }, { "if": { @@ -152249,7 +152458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pbtech-57fd22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pbtech-57fd22.jpg" }, { "if": { @@ -152264,7 +152473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/webhallen-1bf91a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/webhallen-1bf91a.jpg" }, { "if": { @@ -152279,7 +152488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/845c8b-87a6e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/845c8b-87a6e6.jpg" }, { "if": { @@ -152298,7 +152507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applied-8cc09d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/applied-8cc09d.svg" }, { "if": { @@ -152317,7 +152526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dospara-8cc09d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dospara-8cc09d.jpg" }, { "if": { @@ -152334,7 +152543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6185e9-8cc09d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/6185e9-8cc09d.jpg" }, { "if": { @@ -152357,7 +152566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellent-e0237d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellent-e0237d.jpg" }, { "if": { @@ -152372,7 +152581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adyaranandabhavan-abc6d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/adyaranandabhavan-abc6d4.png" }, { "if": { @@ -152388,7 +152597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambalafoods-bdbf63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ambalafoods-bdbf63.jpg" }, { "if": { @@ -152403,7 +152612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arko-2c21b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/arko-2c21b2.png" }, { "if": { @@ -152418,7 +152627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bahlsenoutlet-2c21b2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bahlsenoutlet-2c21b2.svg" }, { "if": { @@ -152433,7 +152642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bearsandfriends-e5aed3.png" + "then": "https://data.mapcomplete.org/nsi//logos/bearsandfriends-e5aed3.png" }, { "if": { @@ -152448,7 +152657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belros-0b3ba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belros-0b3ba6.jpg" }, { "if": { @@ -152463,7 +152672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benscookies-311d19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/benscookies-311d19.jpg" }, { "if": { @@ -152478,7 +152687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/candytyme-c4be02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/candytyme-c4be02.jpg" }, { "if": { @@ -152497,7 +152706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chateraise-c520ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chateraise-c520ad.jpg" }, { "if": { @@ -152512,7 +152721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donbenitos-940870.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donbenitos-940870.jpg" }, { "if": { @@ -152527,7 +152736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eilles-2c21b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eilles-2c21b2.jpg" }, { "if": { @@ -152542,7 +152751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elrincon-0b3ba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elrincon-0b3ba6.jpg" }, { "if": { @@ -152558,7 +152767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elrinconandcoffee-0b3ba6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elrinconandcoffee-0b3ba6.jpg" }, { "if": { @@ -152573,7 +152782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hemmakvall-bb4f01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hemmakvall-bb4f01.jpg" }, { "if": { @@ -152588,7 +152797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotelchocolat-bdbf63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotelchocolat-bdbf63.jpg" }, { "if": { @@ -152603,7 +152812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hussel-c45342.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hussel-c45342.jpg" }, { "if": { @@ -152618,7 +152827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/husselconfiserie-ce6a87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/husselconfiserie-ce6a87.jpg" }, { "if": { @@ -152633,7 +152842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jamin-2c00a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jamin-2c00a5.jpg" }, { "if": { @@ -152648,7 +152857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaspas-bdbf63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaspas-bdbf63.jpg" }, { "if": { @@ -152664,7 +152873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kilwins-c4be02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kilwins-c4be02.jpg" }, { "if": { @@ -152679,23 +152888,23 @@ } ] }, - "then": "./assets/data/nsi/logos/lolliandpops-c4be02.png" + "then": "https://data.mapcomplete.org/nsi//logos/lolliandpops-c4be02.png" }, { "if": { "and": [ - "official_name=Rocket Fizz Soda Pop & Candy Shop", "shop=confectionery", { "or": [ "brand=Rocket Fizz", "brand:wikidata=Q17107987", - "name=Rocket Fizz" + "name=Rocket Fizz", + "official_name=Rocket Fizz Soda Pop & Candy Shop" ] } ] }, - "then": "./assets/data/nsi/logos/rocketfizz-9950eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rocketfizz-9950eb.jpg" }, { "if": { @@ -152710,7 +152919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockymountainchocolatefactory-9950eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rockymountainchocolatefactory-9950eb.jpg" }, { "if": { @@ -152725,7 +152934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roshen-84145b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/roshen-84145b.svg" }, { "if": { @@ -152740,7 +152949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seescandies-c4be02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seescandies-c4be02.jpg" }, { "if": { @@ -152755,7 +152964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sosweet-13e555.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sosweet-13e555.jpg" }, { "if": { @@ -152770,7 +152979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storckweltoutlet-2c21b2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/storckweltoutlet-2c21b2.svg" }, { "if": { @@ -152787,7 +152996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slatkakuca-60a596.png" + "then": "https://data.mapcomplete.org/nsi//logos/slatkakuca-60a596.png" }, { "if": { @@ -152802,7 +153011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thorntons-bdbf63.svg" + "then": "https://data.mapcomplete.org/nsi//logos/thorntons-bdbf63.svg" }, { "if": { @@ -152817,7 +153026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viba-2c21b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/viba-2c21b2.png" }, { "if": { @@ -152832,7 +153041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4742ac-ceb7f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/4742ac-ceb7f9.jpg" }, { "if": { @@ -152851,7 +153060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/severmetropol-61c5bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/severmetropol-61c5bf.jpg" }, { "if": { @@ -152870,7 +153079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shirinasal-971a8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shirinasal-971a8a.jpg" }, { "if": { @@ -152889,7 +153098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/machioka-59ea1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/machioka-59ea1b.jpg" }, { "if": { @@ -152908,7 +153117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chateraise-59ea1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chateraise-59ea1b.jpg" }, { "if": { @@ -152927,7 +153136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fujiya-59ea1b.png" + "then": "https://data.mapcomplete.org/nsi//logos/fujiya-59ea1b.png" }, { "if": { @@ -152946,7 +153155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ginzacozycorner-59ea1b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ginzacozycorner-59ea1b.png" }, { "if": { @@ -152961,7 +153170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1011-ead397.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1011-ead397.jpg" }, { "if": { @@ -152976,7 +153185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1ststop-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/1ststop-f1e40b.png" }, { "if": { @@ -152991,7 +153200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7eleven-e1b4e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7eleven-e1b4e3.jpg" }, { "if": { @@ -153006,7 +153215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/724mix-9d5235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/724mix-9d5235.jpg" }, { "if": { @@ -153029,7 +153238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/759store-298a73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/759store-298a73.jpg" }, { "if": { @@ -153044,7 +153253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/76-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/76-f1e40b.jpg" }, { "if": { @@ -153059,7 +153268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8ahuit-bf3eb4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/8ahuit-bf3eb4.svg" }, { "if": { @@ -153074,7 +153283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abarrotesmonterrey-9d5235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abarrotesmonterrey-9d5235.jpg" }, { "if": { @@ -153089,7 +153298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abc-540f13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abc-540f13.jpg" }, { "if": { @@ -153104,7 +153313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abc-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abc-95f41b.jpg" }, { "if": { @@ -153123,7 +153332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adnocoasis-d47493.png" + "then": "https://data.mapcomplete.org/nsi//logos/adnocoasis-d47493.png" }, { "if": { @@ -153138,7 +153347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aibe-401681.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aibe-401681.jpg" }, { "if": { @@ -153153,23 +153362,23 @@ } ] }, - "then": "./assets/data/nsi/logos/aibe-64a6c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aibe-64a6c9.jpg" }, { "if": { "and": [ - "official_name=AH to go", "shop=convenience", { "or": [ "brand=Albert Heijn to go", "brand:wikidata=Q77971185", - "name=Albert Heijn to go" + "name=Albert Heijn to go", + "official_name=AH to go" ] } ] }, - "then": "./assets/data/nsi/logos/albertheijntogo-f85122.png" + "then": "https://data.mapcomplete.org/nsi//logos/albertheijntogo-f85122.png" }, { "if": { @@ -153184,7 +153393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alepa-5dea79.png" + "then": "https://data.mapcomplete.org/nsi//logos/alepa-5dea79.png" }, { "if": { @@ -153199,7 +153408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfaexpress-bb8a09.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alfaexpress-bb8a09.svg" }, { "if": { @@ -153214,7 +153423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfamart-28d321.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfamart-28d321.jpg" }, { "if": { @@ -153229,7 +153438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfamidi-bb8a09.png" + "then": "https://data.mapcomplete.org/nsi//logos/alfamidi-bb8a09.png" }, { "if": { @@ -153244,7 +153453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alldayconveniencestore-fb2210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alldayconveniencestore-fb2210.jpg" }, { "if": { @@ -153259,7 +153468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allsups-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allsups-f1e40b.jpg" }, { "if": { @@ -153274,7 +153483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alltown-ae58e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alltown-ae58e4.jpg" }, { "if": { @@ -153289,7 +153498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alltownfresh-790588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alltownfresh-790588.jpg" }, { "if": { @@ -153304,7 +153513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alohaislandmart-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alohaislandmart-f1e40b.jpg" }, { "if": { @@ -153319,7 +153528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altaconvenience-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altaconvenience-f1e40b.jpg" }, { "if": { @@ -153338,7 +153547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aman-3015fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aman-3015fb.jpg" }, { "if": { @@ -153353,7 +153562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazongo-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amazongo-f1e40b.jpg" }, { "if": { @@ -153368,7 +153577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameristop-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ameristop-f1e40b.jpg" }, { "if": { @@ -153383,7 +153592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amoco-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/amoco-f1e40b.png" }, { "if": { @@ -153398,7 +153607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ampm-4d6b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ampm-4d6b4b.jpg" }, { "if": { @@ -153413,7 +153622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applegreen-cc2a33.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/applegreen-cc2a33.jpg" }, { "if": { @@ -153428,7 +153637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aral-1fe310.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aral-1fe310.jpg" }, { "if": { @@ -153445,7 +153654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arambaghfoodmart-bb430b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arambaghfoodmart-bb430b.jpg" }, { "if": { @@ -153462,7 +153671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aroma-3015fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/aroma-3015fb.png" }, { "if": { @@ -153477,7 +153686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asda-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asda-232829.jpg" }, { "if": { @@ -153492,7 +153701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asdaexpress-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asdaexpress-232829.jpg" }, { "if": { @@ -153507,7 +153716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asdaonthemove-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asdaonthemove-232829.jpg" }, { "if": { @@ -153522,7 +153731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avec-c71a8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avec-c71a8a.jpg" }, { "if": { @@ -153537,7 +153746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avia-da37e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avia-da37e8.jpg" }, { "if": { @@ -153552,7 +153761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avondalefoodstores-e144dd.png" + "then": "https://data.mapcomplete.org/nsi//logos/avondalefoodstores-e144dd.png" }, { "if": { @@ -153567,7 +153776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandmexpress-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandmexpress-232829.jpg" }, { "if": { @@ -153582,7 +153791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bachhoaxanh-61b913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bachhoaxanh-61b913.jpg" }, { "if": { @@ -153597,7 +153806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bakmaz-5b00ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bakmaz-5b00ff.jpg" }, { "if": { @@ -153612,7 +153821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bama-9d5235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bama-9d5235.jpg" }, { "if": { @@ -153627,7 +153836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bargainboozeselectconvenience-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bargainboozeselectconvenience-232829.jpg" }, { "if": { @@ -153642,7 +153851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beckers-e144dd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/beckers-e144dd.svg" }, { "if": { @@ -153657,7 +153866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellstores-147d98.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellstores-147d98.jpg" }, { "if": { @@ -153672,7 +153881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestone-232829.png" + "then": "https://data.mapcomplete.org/nsi//logos/bestone-232829.png" }, { "if": { @@ -153687,7 +153896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigapple-bdefe5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigapple-bdefe5.jpg" }, { "if": { @@ -153702,7 +153911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigc-298a73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigc-298a73.jpg" }, { "if": { @@ -153721,7 +153930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigcmini-f572b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigcmini-f572b3.jpg" }, { "if": { @@ -153736,7 +153945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bim-6cb8de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bim-6cb8de.jpg" }, { "if": { @@ -153751,7 +153960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodegaaurreraexpress-9d5235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodegaaurreraexpress-9d5235.jpg" }, { "if": { @@ -153766,7 +153975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonisoir-eea72f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonisoir-eea72f.jpg" }, { "if": { @@ -153781,7 +153990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/box-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/box-023e9c.jpg" }, { "if": { @@ -153796,7 +154005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp2go-7a43a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp2go-7a43a8.jpg" }, { "if": { @@ -153811,7 +154020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bpconnect-7a43a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpconnect-7a43a8.jpg" }, { "if": { @@ -153826,7 +154035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bpshop-24c3f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpshop-24c3f1.jpg" }, { "if": { @@ -153841,7 +154050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/br-12bebb.png" + "then": "https://data.mapcomplete.org/nsi//logos/br-12bebb.png" }, { "if": { @@ -153856,7 +154065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brmania-12bebb.png" + "then": "https://data.mapcomplete.org/nsi//logos/brmania-12bebb.png" }, { "if": { @@ -153871,7 +154080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brnenka-a7773e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brnenka-a7773e.jpg" }, { "if": { @@ -153886,7 +154095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bucees-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bucees-f1e40b.png" }, { "if": { @@ -153901,7 +154110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budgens-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budgens-232829.jpg" }, { "if": { @@ -153916,7 +154125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byrnedairyanddeli-6e4505.png" + "then": "https://data.mapcomplete.org/nsi//logos/byrnedairyanddeli-6e4505.png" }, { "if": { @@ -153931,7 +154140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caltex-c009d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caltex-c009d7.jpg" }, { "if": { @@ -153946,7 +154155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-4d6b4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-4d6b4b.png" }, { "if": { @@ -153961,7 +154170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefourexpress-4d6b4b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/carrefourexpress-4d6b4b.svg" }, { "if": { @@ -153976,7 +154185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caseysgeneralstore-f1e40b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caseysgeneralstore-f1e40b.svg" }, { "if": { @@ -153991,7 +154200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casinoshop-bf3eb4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/casinoshop-bf3eb4.svg" }, { "if": { @@ -154011,7 +154220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cba-854be4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cba-854be4.jpg" }, { "if": { @@ -154026,7 +154235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cefco-abc9e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/cefco-abc9e1.png" }, { "if": { @@ -154041,7 +154250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cenex-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/cenex-f1e40b.png" }, { "if": { @@ -154056,39 +154265,39 @@ } ] }, - "then": "./assets/data/nsi/logos/centra-0b7623.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centra-0b7623.jpg" }, { "if": { "and": [ - "official_name=Central Convenience Store", "shop=convenience", { "or": [ "brand=Central Convenience Store", "brand:wikidata=Q97104475", - "name=Central" + "name=Central", + "official_name=Central Convenience Store" ] } ] }, - "then": "./assets/data/nsi/logos/central-eb7785.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/central-eb7785.jpg" }, { "if": { "and": [ - "official_name=Certified Oil", "shop=convenience", { "or": [ "brand=Certified", "brand:wikidata=Q100148356", - "name=Certified" + "name=Certified", + "official_name=Certified Oil" ] } ] }, - "then": "./assets/data/nsi/logos/certified-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/certified-f1e40b.jpg" }, { "if": { @@ -154103,7 +154312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chatapolska-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chatapolska-95f41b.jpg" }, { "if": { @@ -154119,7 +154328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cheers-a4ab31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cheers-a4ab31.jpg" }, { "if": { @@ -154134,7 +154343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chevron-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/chevron-f1e40b.png" }, { "if": { @@ -154149,7 +154358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chorten-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chorten-95f41b.jpg" }, { "if": { @@ -154164,7 +154373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-4d6b4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-4d6b4b.png" }, { "if": { @@ -154179,7 +154388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citgo-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/citgo-f1e40b.png" }, { "if": { @@ -154194,7 +154403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkspumpnshop-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkspumpnshop-f1e40b.jpg" }, { "if": { @@ -154211,7 +154420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clydebankcooperative-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clydebankcooperative-232829.jpg" }, { "if": { @@ -154226,7 +154435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-eea72f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-eea72f.jpg" }, { "if": { @@ -154243,7 +154452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopdaily-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopdaily-232829.jpg" }, { "if": { @@ -154260,7 +154469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooperativeenroute-d9d9cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooperativeenroute-d9d9cb.jpg" }, { "if": { @@ -154277,7 +154486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooperativelocale-d9d9cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooperativelocale-d9d9cb.jpg" }, { "if": { @@ -154292,7 +154501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coccimarket-f6dc0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/coccimarket-f6dc0a.png" }, { "if": { @@ -154307,7 +154516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coccimarketcity-f6dc0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/coccimarketcity-f6dc0a.png" }, { "if": { @@ -154322,7 +154531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coenmarketsinc-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/coenmarketsinc-f1e40b.png" }, { "if": { @@ -154337,7 +154546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conoco-f1e40b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/conoco-f1e40b.svg" }, { "if": { @@ -154352,7 +154561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/convenientfoodmart-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/convenientfoodmart-f1e40b.jpg" }, { "if": { @@ -154367,7 +154576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-a7773e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-a7773e.jpg" }, { "if": { @@ -154382,7 +154591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-07a460.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-07a460.png" }, { "if": { @@ -154397,7 +154606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopabc-58d40d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopabc-58d40d.jpg" }, { "if": { @@ -154412,7 +154621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopatlantique-c38318.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopatlantique-c38318.jpg" }, { "if": { @@ -154427,7 +154636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopeesti-fb411b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopeesti-fb411b.jpg" }, { "if": { @@ -154442,7 +154651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopjednota-2496a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/coopjednota-2496a5.png" }, { "if": { @@ -154457,7 +154666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopkonzum-a7773e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopkonzum-a7773e.jpg" }, { "if": { @@ -154472,7 +154681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopmini-58d40d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopmini-58d40d.jpg" }, { "if": { @@ -154487,7 +154696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooppronto-0438d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooppronto-0438d5.jpg" }, { "if": { @@ -154502,7 +154711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooptip-a7773e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooptip-a7773e.jpg" }, { "if": { @@ -154517,7 +154726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooptuty-a7773e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooptuty-a7773e.jpg" }, { "if": { @@ -154532,7 +154741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcutter-31620e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/costcutter-31620e.jpg" }, { "if": { @@ -154547,7 +154756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/couchetard-eea72f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/couchetard-eea72f.jpg" }, { "if": { @@ -154562,7 +154771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruizers-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cruizers-f1e40b.jpg" }, { "if": { @@ -154577,7 +154786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cu-3b6392.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cu-3b6392.jpg" }, { "if": { @@ -154592,7 +154801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cumberlandfarms-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cumberlandfarms-f1e40b.jpg" }, { "if": { @@ -154607,7 +154816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daisymart-eea72f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daisymart-eea72f.jpg" }, { "if": { @@ -154622,7 +154831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dali-fb2210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dali-fb2210.jpg" }, { "if": { @@ -154637,7 +154846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/darimart-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/darimart-f1e40b.jpg" }, { "if": { @@ -154652,7 +154861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dashin-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dashin-f1e40b.jpg" }, { "if": { @@ -154668,7 +154877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daybyday-f6dc0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/daybyday-f6dc0a.png" }, { "if": { @@ -154683,7 +154892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daytoday-31620e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daytoday-31620e.jpg" }, { "if": { @@ -154698,7 +154907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daytodayexpress-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daytodayexpress-232829.jpg" }, { "if": { @@ -154713,7 +154922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daybreak-cb4625.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daybreak-cb4625.jpg" }, { "if": { @@ -154728,7 +154937,22 @@ } ] }, - "then": "./assets/data/nsi/logos/shopandgo-7c93c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/shopandgo-7c93c4.png" + }, + { + "if": { + "and": [ + "shop=convenience", + { + "or": [ + "brand=Delikatesy Premium", + "brand:wikidata=Q120147483", + "name=Delikatesy Premium" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/delikatesypremium-95f41b.jpg" }, { "if": { @@ -154743,7 +154967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delikatesyslawex-95f41b.png" + "then": "https://data.mapcomplete.org/nsi//logos/delikatesyslawex-95f41b.png" }, { "if": { @@ -154758,7 +154982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deltasonic-e0f572.png" + "then": "https://data.mapcomplete.org/nsi//logos/deltasonic-e0f572.png" }, { "if": { @@ -154773,7 +154997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dennerexpress-07a460.png" + "then": "https://data.mapcomplete.org/nsi//logos/dennerexpress-07a460.png" }, { "if": { @@ -154788,7 +155012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/despar-271792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/despar-271792.jpg" }, { "if": { @@ -154803,7 +155027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diaandgo-dd9aae.png" + "then": "https://data.mapcomplete.org/nsi//logos/diaandgo-dd9aae.png" }, { "if": { @@ -154818,7 +155042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elvi-401681.png" + "then": "https://data.mapcomplete.org/nsi//logos/elvi-401681.png" }, { "if": { @@ -154833,7 +155057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enishop-a98884.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enishop-a98884.jpg" }, { "if": { @@ -154848,7 +155072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmarket-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enmarket-f1e40b.jpg" }, { "if": { @@ -154863,7 +155087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-4d6b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-4d6b4b.jpg" }, { "if": { @@ -154878,7 +155102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essosnackandshop-60c7fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essosnackandshop-60c7fe.jpg" }, { "if": { @@ -154893,7 +155117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/extramile-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/extramile-f1e40b.jpg" }, { "if": { @@ -154908,7 +155132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ezymart-0b0ae9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ezymart-0b0ae9.jpg" }, { "if": { @@ -154923,7 +155147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familyexpress-16b990.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/familyexpress-16b990.jpg" }, { "if": { @@ -154938,7 +155162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familymart-095323.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/familymart-095323.jpg" }, { "if": { @@ -154954,7 +155178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmfoods-2496a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmfoods-2496a5.jpg" }, { "if": { @@ -154969,7 +155193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastbreak-fa1eb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastbreak-fa1eb4.jpg" }, { "if": { @@ -154984,7 +155208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodplus-232829.png" + "then": "https://data.mapcomplete.org/nsi//logos/foodplus-232829.png" }, { "if": { @@ -154999,7 +155223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodary-0b0ae9.png" + "then": "https://data.mapcomplete.org/nsi//logos/foodary-0b0ae9.png" }, { "if": { @@ -155014,7 +155238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foursquare-7a43a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foursquare-7a43a8.jpg" }, { "if": { @@ -155029,7 +155253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franprix-bf3eb4.png" + "then": "https://data.mapcomplete.org/nsi//logos/franprix-bf3eb4.png" }, { "if": { @@ -155044,7 +155268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fresh-2496a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fresh-2496a5.jpg" }, { "if": { @@ -155059,7 +155283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshcorner-f9f0e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshcorner-f9f0e2.jpg" }, { "if": { @@ -155074,7 +155298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshstop-75f4be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshstop-75f4be.jpg" }, { "if": { @@ -155089,7 +155313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/froo-597303.svg" + "then": "https://data.mapcomplete.org/nsi//logos/froo-597303.svg" }, { "if": { @@ -155104,7 +155328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/full-4c351f.png" + "then": "https://data.mapcomplete.org/nsi//logos/full-4c351f.png" }, { "if": { @@ -155119,7 +155343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gala-cb4625.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gala-cb4625.jpg" }, { "if": { @@ -155134,7 +155358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gama-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gama-95f41b.jpg" }, { "if": { @@ -155149,7 +155373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gomart-07a9fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gomart-07a9fd.jpg" }, { "if": { @@ -155167,7 +155391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gomex-3015fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gomex-3015fb.jpg" }, { "if": { @@ -155182,7 +155406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groszek-95f41b.png" + "then": "https://data.mapcomplete.org/nsi//logos/groszek-95f41b.png" }, { "if": { @@ -155197,7 +155421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gs25-f248a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/gs25-f248a7.png" }, { "if": { @@ -155212,7 +155436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haffners-1aebc2.png" + "then": "https://data.mapcomplete.org/nsi//logos/haffners-1aebc2.png" }, { "if": { @@ -155227,7 +155451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hastymarket-eea72f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hastymarket-eea72f.jpg" }, { "if": { @@ -155242,7 +155466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hei-6378da.png" + "then": "https://data.mapcomplete.org/nsi//logos/hei-6378da.png" }, { "if": { @@ -155258,7 +155482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hiperdinoexpress-dd9aae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hiperdinoexpress-dd9aae.jpg" }, { "if": { @@ -155273,7 +155497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holiday-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holiday-f1e40b.jpg" }, { "if": { @@ -155288,7 +155512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hruska-a7773e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hruska-a7773e.jpg" }, { "if": { @@ -155303,7 +155527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/husky-eea72f.png" + "then": "https://data.mapcomplete.org/nsi//logos/husky-eea72f.png" }, { "if": { @@ -155318,7 +155542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdoex-dd9aae.png" + "then": "https://data.mapcomplete.org/nsi//logos/iberdoex-dd9aae.png" }, { "if": { @@ -155338,7 +155562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idea-8f21d6.png" + "then": "https://data.mapcomplete.org/nsi//logos/idea-8f21d6.png" }, { "if": { @@ -155359,7 +155583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ideaorganic-3015fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ideaorganic-3015fb.jpg" }, { "if": { @@ -155374,7 +155598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iga-0b0ae9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/iga-0b0ae9.svg" }, { "if": { @@ -155389,7 +155613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikeaswedishfoodmarket-1e7f39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikeaswedishfoodmarket-1e7f39.jpg" }, { "if": { @@ -155404,7 +155628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/incoop-1aaf3e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/incoop-1aaf3e.svg" }, { "if": { @@ -155419,7 +155643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indomaret-bb8a09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indomaret-bb8a09.jpg" }, { "if": { @@ -155434,7 +155658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarchecontact-f6dc0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarchecontact-f6dc0a.jpg" }, { "if": { @@ -155449,7 +155673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarcheexpress-f3ab02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarcheexpress-f3ab02.jpg" }, { "if": { @@ -155464,7 +155688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipiranga-12bebb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ipiranga-12bebb.jpg" }, { "if": { @@ -155479,7 +155703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irving-16ec4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irving-16ec4d.jpg" }, { "if": { @@ -155494,7 +155718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksons-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksons-f1e40b.jpg" }, { "if": { @@ -155513,7 +155737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jiffy-c8e053.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jiffy-c8e053.jpg" }, { "if": { @@ -155528,7 +155752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jiffymart-fe2c5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jiffymart-fe2c5d.jpg" }, { "if": { @@ -155543,7 +155767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joeskwikmarts-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joeskwikmarts-f1e40b.jpg" }, { "if": { @@ -155558,7 +155782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kmarket-5dea79.png" + "then": "https://data.mapcomplete.org/nsi//logos/kmarket-5dea79.png" }, { "if": { @@ -155574,7 +155798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kangarooexpress-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/kangarooexpress-f1e40b.png" }, { "if": { @@ -155589,7 +155813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentkwik-c3f9f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentkwik-c3f9f6.jpg" }, { "if": { @@ -155604,7 +155828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keystore-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keystore-232829.jpg" }, { "if": { @@ -155619,7 +155843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keystoreexpress-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keystoreexpress-232829.jpg" }, { "if": { @@ -155634,7 +155858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keystoremore-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keystoremore-232829.jpg" }, { "if": { @@ -155650,7 +155874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kksupermart-3e5671.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kksupermart-3e5671.jpg" }, { "if": { @@ -155665,7 +155889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/konzum-442b6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/konzum-442b6e.png" }, { "if": { @@ -155680,7 +155904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kumandgo-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kumandgo-f1e40b.jpg" }, { "if": { @@ -155695,7 +155919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikshop-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwikshop-f1e40b.jpg" }, { "if": { @@ -155710,7 +155934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikstar-e82e8e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kwikstar-e82e8e.svg" }, { "if": { @@ -155725,7 +155949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwiktrip-345f5f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kwiktrip-345f5f.svg" }, { "if": { @@ -155740,7 +155964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwikspar-c7b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwikspar-c7b713.jpg" }, { "if": { @@ -155755,7 +155979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ladoipasi-597303.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ladoipasi-597303.jpg" }, { "if": { @@ -155771,7 +155995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lavieclaire-bf3eb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lavieclaire-bf3eb4.jpg" }, { "if": { @@ -155786,7 +156010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lats-401681.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lats-401681.jpg" }, { "if": { @@ -155801,7 +156025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lawson-e7e121.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lawson-e7e121.jpg" }, { "if": { @@ -155816,7 +156040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lawson108-f572b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lawson108-f572b3.jpg" }, { "if": { @@ -155831,7 +156055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lepetitcasino-bf3eb4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lepetitcasino-bf3eb4.svg" }, { "if": { @@ -155846,7 +156070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lewiatan-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lewiatan-95f41b.jpg" }, { "if": { @@ -155861,7 +156085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifestyleexpress-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifestyleexpress-232829.jpg" }, { "if": { @@ -155876,7 +156100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlewaitrose-126aa8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/littlewaitrose-126aa8.jpg" }, { "if": { @@ -155891,7 +156115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/livio-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/livio-95f41b.jpg" }, { "if": { @@ -155906,7 +156130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loafnjug-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loafnjug-f1e40b.jpg" }, { "if": { @@ -155921,7 +156145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londis-cb4625.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londis-cb4625.jpg" }, { "if": { @@ -155936,7 +156160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londis-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londis-232829.jpg" }, { "if": { @@ -155951,7 +156175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotussgofresh-cfafd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotussgofresh-cfafd7.jpg" }, { "if": { @@ -155966,7 +156190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loves-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/loves-f1e40b.png" }, { "if": { @@ -155981,7 +156205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minimart-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minimart-f1e40b.jpg" }, { "if": { @@ -155997,7 +156221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandsfood-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandsfood-232829.jpg" }, { "if": { @@ -156013,7 +156237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandssimplyfood-4d6b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandssimplyfood-4d6b4b.jpg" }, { "if": { @@ -156028,7 +156252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mace-cb4625.png" + "then": "https://data.mapcomplete.org/nsi//logos/mace-cb4625.png" }, { "if": { @@ -156043,7 +156267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mace-1a0d8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mace-1a0d8e.jpg" }, { "if": { @@ -156058,7 +156282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mace-eb7785.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mace-eb7785.jpg" }, { "if": { @@ -156079,7 +156303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madagoni-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madagoni-3cb7c4.jpg" }, { "if": { @@ -156094,7 +156318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magnit-6b6bf4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/magnit-6b6bf4.svg" }, { "if": { @@ -156109,7 +156333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malpkaexpress-95f41b.png" + "then": "https://data.mapcomplete.org/nsi//logos/malpkaexpress-95f41b.png" }, { "if": { @@ -156124,7 +156348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mapco-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mapco-f1e40b.jpg" }, { "if": { @@ -156139,7 +156363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathon-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marathon-f1e40b.jpg" }, { "if": { @@ -156154,7 +156378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martinmartin-dd9aae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/martinmartin-dd9aae.jpg" }, { "if": { @@ -156171,7 +156395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/masymasbasic-849ea7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/masymasbasic-849ea7.svg" }, { "if": { @@ -156186,7 +156410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maverik-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maverik-f1e40b.jpg" }, { "if": { @@ -156201,7 +156425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxmart-f572b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxmart-f572b3.jpg" }, { "if": { @@ -156220,7 +156444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxi-3015fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxi-3015fb.jpg" }, { "if": { @@ -156235,7 +156459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxol-0b7623.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxol-0b7623.jpg" }, { "if": { @@ -156250,7 +156474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meijer-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meijer-f1e40b.jpg" }, { "if": { @@ -156265,7 +156489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercator-eb6d99.png" + "then": "https://data.mapcomplete.org/nsi//logos/mercator-eb6d99.png" }, { "if": { @@ -156280,7 +156504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metromart-7a43a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metromart-7a43a8.jpg" }, { "if": { @@ -156295,7 +156519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrolino-07a460.png" + "then": "https://data.mapcomplete.org/nsi//logos/migrolino-07a460.png" }, { "if": { @@ -156310,7 +156534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrosjet-62eaab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/migrosjet-62eaab.jpg" }, { "if": { @@ -156325,7 +156549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milkagro-2496a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/milkagro-2496a5.png" }, { "if": { @@ -156340,7 +156564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miniextra-12bebb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miniextra-12bebb.jpg" }, { "if": { @@ -156355,7 +156579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minimix-ba18ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/minimix-ba18ab.png" }, { "if": { @@ -156370,7 +156594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minim-d41f40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minim-d41f40.jpg" }, { "if": { @@ -156385,7 +156609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minimart-854be4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minimart-854be4.jpg" }, { "if": { @@ -156400,7 +156624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministop-365d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministop-365d07.jpg" }, { "if": { @@ -156415,7 +156639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minitmart-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minitmart-f1e40b.jpg" }, { "if": { @@ -156430,7 +156654,22 @@ } ] }, - "then": "./assets/data/nsi/logos/mobilmart-4d6b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobilmart-4d6b4b.jpg" + }, + { + "if": { + "and": [ + "shop=convenience", + { + "or": [ + "brand=Môj obchod", + "brand:wikidata=Q126736496", + "name=Môj obchod" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/mojobchod-2496a5.png" }, { "if": { @@ -156445,7 +156684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mokpol-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mokpol-95f41b.jpg" }, { "if": { @@ -156460,7 +156699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/molshop-32b19d.png" + "then": "https://data.mapcomplete.org/nsi//logos/molshop-32b19d.png" }, { "if": { @@ -156475,7 +156714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monop-f6dc0a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/monop-f6dc0a.svg" }, { "if": { @@ -156491,7 +156730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morrisonsdaily-d9d9cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morrisonsdaily-d9d9cb.jpg" }, { "if": { @@ -156507,7 +156746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrmax-652b3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrmax-652b3e.png" }, { "if": { @@ -156522,7 +156761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mujobchod-a7773e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mujobchod-a7773e.jpg" }, { "if": { @@ -156537,7 +156776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/murphyexpress-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/murphyexpress-f1e40b.png" }, { "if": { @@ -156552,7 +156791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/murphyusa-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/murphyusa-f1e40b.png" }, { "if": { @@ -156567,7 +156806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myauchan-f6dc0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/myauchan-f6dc0a.png" }, { "if": { @@ -156582,7 +156821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mynewscom-3e5671.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mynewscom-3e5671.jpg" }, { "if": { @@ -156597,7 +156836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naszsklep-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naszsklep-95f41b.jpg" }, { "if": { @@ -156612,7 +156851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nestek-5dea79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nestek-5dea79.jpg" }, { "if": { @@ -156627,7 +156866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neto-9d5235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neto-9d5235.jpg" }, { "if": { @@ -156643,7 +156882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newdays-652b3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/newdays-652b3e.png" }, { "if": { @@ -156658,7 +156897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nightnday-7a43a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/nightnday-7a43a8.png" }, { "if": { @@ -156673,7 +156912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nightowl-0b0ae9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nightowl-0b0ae9.jpg" }, { "if": { @@ -156688,7 +156927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nisa-232829.png" + "then": "https://data.mapcomplete.org/nsi//logos/nisa-232829.png" }, { "if": { @@ -156703,7 +156942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nisalocal-232829.png" + "then": "https://data.mapcomplete.org/nsi//logos/nisalocal-232829.png" }, { "if": { @@ -156718,7 +156957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nouria-ae58e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/nouria-ae58e4.png" }, { "if": { @@ -156733,7 +156972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nousantigaspi-f6dc0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/nousantigaspi-f6dc0a.png" }, { "if": { @@ -156748,7 +156987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obamarket-ef7cdd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obamarket-ef7cdd.jpg" }, { "if": { @@ -156763,7 +157002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odido-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/odido-95f41b.jpg" }, { "if": { @@ -156778,7 +157017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okmarket-e95ed6.png" + "then": "https://data.mapcomplete.org/nsi//logos/okmarket-e95ed6.png" }, { "if": { @@ -156795,7 +157034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-9729f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-9729f7.png" }, { "if": { @@ -156818,7 +157057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-132595.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-132595.png" }, { "if": { @@ -156835,7 +157074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okmart-aa89a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okmart-aa89a7.jpg" }, { "if": { @@ -156850,7 +157089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontherun-4d6b4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ontherun-4d6b4b.png" }, { "if": { @@ -156865,7 +157104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onestop-232829.png" + "then": "https://data.mapcomplete.org/nsi//logos/onestop-232829.png" }, { "if": { @@ -156880,7 +157119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oneoone-8978c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oneoone-8978c5.jpg" }, { "if": { @@ -156895,7 +157134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlen-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlen-95f41b.jpg" }, { "if": { @@ -156910,7 +157149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/otr-0b0ae9.png" + "then": "https://data.mapcomplete.org/nsi//logos/otr-0b0ae9.png" }, { "if": { @@ -156925,7 +157164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxxo-8364f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxxo-8364f9.jpg" }, { "if": { @@ -156940,7 +157179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pamlocal-1aaf3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pamlocal-1aaf3e.jpg" }, { "if": { @@ -156955,7 +157194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parmarstores-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parmarstores-f1e40b.jpg" }, { "if": { @@ -156970,7 +157209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patanjalistore-bb430b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/patanjalistore-bb430b.svg" }, { "if": { @@ -156987,7 +157226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/persu-3015fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/persu-3015fb.jpg" }, { "if": { @@ -157002,7 +157241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrocanada-eea72f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/petrocanada-eea72f.svg" }, { "if": { @@ -157017,7 +157256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phillips66-4d6b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phillips66-4d6b4b.jpg" }, { "if": { @@ -157032,7 +157271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picknpayexpress-c7b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/picknpayexpress-c7b713.jpg" }, { "if": { @@ -157048,7 +157287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pilot-16ec4d.png" + "then": "https://data.mapcomplete.org/nsi//logos/pilot-16ec4d.png" }, { "if": { @@ -157063,7 +157302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plaidpantry-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plaidpantry-f1e40b.jpg" }, { "if": { @@ -157078,7 +157317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privat-58d40d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/privat-58d40d.jpg" }, { "if": { @@ -157093,7 +157332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/profigo-597303.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/profigo-597303.jpg" }, { "if": { @@ -157108,7 +157347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proxi-6fdfa6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/proxi-6fdfa6.jpg" }, { "if": { @@ -157123,7 +157362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qazaqoil-7ad3ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qazaqoil-7ad3ae.jpg" }, { "if": { @@ -157138,7 +157377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qualitymart-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qualitymart-f1e40b.jpg" }, { "if": { @@ -157153,7 +157392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickchek-f1e40b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/quickchek-f1e40b.svg" }, { "if": { @@ -157168,7 +157407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickie-f902d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quickie-f902d0.jpg" }, { "if": { @@ -157184,7 +157423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quiktrip-4d6b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quiktrip-4d6b4b.jpg" }, { "if": { @@ -157199,7 +157438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/racetrac-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/racetrac-f1e40b.jpg" }, { "if": { @@ -157214,7 +157453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raceway-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raceway-f1e40b.jpg" }, { "if": { @@ -157229,7 +157468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/real-58d40d.png" + "then": "https://data.mapcomplete.org/nsi//logos/real-58d40d.png" }, { "if": { @@ -157244,7 +157483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redapplefoodmart-301392.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redapplefoodmart-301392.jpg" }, { "if": { @@ -157259,7 +157498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reddyexpress-0b0ae9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reddyexpress-0b0ae9.jpg" }, { "if": { @@ -157274,7 +157513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewetogo-60c7fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/rewetogo-60c7fe.png" }, { "if": { @@ -157289,7 +157528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodes-37aedb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodes-37aedb.jpg" }, { "if": { @@ -157304,7 +157543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rimiexpress-495118.png" + "then": "https://data.mapcomplete.org/nsi//logos/rimiexpress-495118.png" }, { "if": { @@ -157319,7 +157558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roadranger-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/roadranger-f1e40b.png" }, { "if": { @@ -157334,7 +157573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robinsonseasymart-fb2210.png" + "then": "https://data.mapcomplete.org/nsi//logos/robinsonseasymart-fb2210.png" }, { "if": { @@ -157349,7 +157588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rocket-db1ce1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rocket-db1ce1.jpg" }, { "if": { @@ -157364,7 +157603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rottenrobbie-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/rottenrobbie-f1e40b.png" }, { "if": { @@ -157379,7 +157618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalfarms-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalfarms-f1e40b.jpg" }, { "if": { @@ -157395,7 +157634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ruedu-07a460.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ruedu-07a460.jpg" }, { "if": { @@ -157410,7 +157649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rutters-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rutters-f1e40b.jpg" }, { "if": { @@ -157425,7 +157664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sainsburyslocal-232829.png" + "then": "https://data.mapcomplete.org/nsi//logos/sainsburyslocal-232829.png" }, { "if": { @@ -157440,7 +157679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sale-5dea79.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sale-5dea79.svg" }, { "if": { @@ -157455,7 +157694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sasoldelight-c7b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sasoldelight-c7b713.jpg" }, { "if": { @@ -157470,7 +157709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scotmid-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scotmid-232829.jpg" }, { "if": { @@ -157485,7 +157724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheetz-be9dbe.png" + "then": "https://data.mapcomplete.org/nsi//logos/sheetz-be9dbe.png" }, { "if": { @@ -157500,7 +157739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-cfb41f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-cfb41f.jpg" }, { "if": { @@ -157515,7 +157754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shellselect-cfb41f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shellselect-cfb41f.jpg" }, { "if": { @@ -157530,7 +157769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shellshop-cfb41f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shellshop-cfb41f.jpg" }, { "if": { @@ -157547,7 +157786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shopandgo-597303.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shopandgo-597303.svg" }, { "if": { @@ -157562,7 +157801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shopandgo-3015fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shopandgo-3015fb.jpg" }, { "if": { @@ -157577,7 +157816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shopritemini-c7b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shopritemini-c7b713.jpg" }, { "if": { @@ -157592,7 +157831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sim-12bebb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sim-12bebb.jpg" }, { "if": { @@ -157607,7 +157846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simplyfresh-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/simplyfresh-232829.jpg" }, { "if": { @@ -157622,7 +157861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siwa-5dea79.svg" + "then": "https://data.mapcomplete.org/nsi//logos/siwa-5dea79.svg" }, { "if": { @@ -157637,7 +157876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skleppolski-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skleppolski-95f41b.jpg" }, { "if": { @@ -157652,7 +157891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sloneczko-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sloneczko-95f41b.jpg" }, { "if": { @@ -157667,7 +157906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sokmini-62eaab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sokmini-62eaab.jpg" }, { "if": { @@ -157682,7 +157921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spar-dfe3d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spar-dfe3d0.jpg" }, { "if": { @@ -157697,7 +157936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparcity-f85122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparcity-f85122.jpg" }, { "if": { @@ -157712,7 +157951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparexpress-dda8d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparexpress-dda8d6.jpg" }, { "if": { @@ -157727,7 +157966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedway-4d6b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedway-4d6b4b.jpg" }, { "if": { @@ -157742,7 +157981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spencers-bb430b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spencers-bb430b.jpg" }, { "if": { @@ -157757,7 +157996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spolem-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spolem-95f41b.jpg" }, { "if": { @@ -157772,7 +158011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stewartsshops-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stewartsshops-f1e40b.jpg" }, { "if": { @@ -157787,7 +158026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stinker-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stinker-f1e40b.jpg" }, { "if": { @@ -157802,7 +158041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stokrotkaexpress-95f41b.png" + "then": "https://data.mapcomplete.org/nsi//logos/stokrotkaexpress-95f41b.png" }, { "if": { @@ -157817,7 +158056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stripes-cc811e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stripes-cc811e.jpg" }, { "if": { @@ -157832,7 +158071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stuckeys-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stuckeys-f1e40b.jpg" }, { "if": { @@ -157847,7 +158086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/studenac-5b00ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/studenac-5b00ff.png" }, { "if": { @@ -157862,7 +158101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunoco-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sunoco-f1e40b.png" }, { "if": { @@ -157877,7 +158116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supersanchez-9d5235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supersanchez-9d5235.jpg" }, { "if": { @@ -157892,7 +158131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supercor-dd9aae.png" + "then": "https://data.mapcomplete.org/nsi//logos/supercor-dd9aae.png" }, { "if": { @@ -157907,7 +158146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ta-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ta-f1e40b.jpg" }, { "if": { @@ -157922,7 +158161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tambo-853840.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tambo-853840.jpg" }, { "if": { @@ -157937,7 +158176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tempo-a7773e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tempo-a7773e.jpg" }, { "if": { @@ -157952,7 +158191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terno-2496a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/terno-2496a5.png" }, { "if": { @@ -157967,7 +158206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terribles-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terribles-f1e40b.jpg" }, { "if": { @@ -157982,7 +158221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesco-9b0f0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/tesco-9b0f0c.png" }, { "if": { @@ -157997,7 +158236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tescoexpres-2496a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/tescoexpres-2496a5.png" }, { "if": { @@ -158012,7 +158251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tescoexpress-65faa4.png" + "then": "https://data.mapcomplete.org/nsi//logos/tescoexpress-65faa4.png" }, { "if": { @@ -158027,7 +158266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texaco-4d6b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texaco-4d6b4b.jpg" }, { "if": { @@ -158042,7 +158281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thorntons-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/thorntons-f1e40b.png" }, { "if": { @@ -158057,7 +158296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiendas3b-9d5235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tiendas3b-9d5235.jpg" }, { "if": { @@ -158072,7 +158311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tommy-5b00ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tommy-5b00ff.jpg" }, { "if": { @@ -158087,7 +158326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/total-bd0db4.png" + "then": "https://data.mapcomplete.org/nsi//logos/total-bd0db4.png" }, { "if": { @@ -158102,7 +158341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalaccess-bf3eb4.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalaccess-bf3eb4.png" }, { "if": { @@ -158117,7 +158356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townpump-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/townpump-f1e40b.png" }, { "if": { @@ -158132,7 +158371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/treats-27379b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/treats-27379b.jpg" }, { "if": { @@ -158147,7 +158386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkeyhill-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkeyhill-f1e40b.jpg" }, { "if": { @@ -158162,7 +158401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uexpress-bf3eb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uexpress-bf3eb4.jpg" }, { "if": { @@ -158177,7 +158416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ustore-60c7fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ustore-60c7fe.svg" }, { "if": { @@ -158192,7 +158431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ufa-6da36b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ufa-6da36b.svg" }, { "if": { @@ -158207,7 +158446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ultramar-eea72f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ultramar-eea72f.png" }, { "if": { @@ -158222,7 +158461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unclejohns-fb2210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unclejohns-fb2210.jpg" }, { "if": { @@ -158237,7 +158476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/united-0b0ae9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/united-0b0ae9.jpg" }, { "if": { @@ -158254,7 +158493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniteddairyfarmers-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uniteddairyfarmers-f1e40b.jpg" }, { "if": { @@ -158269,7 +158508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usmarket-f1e40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usmarket-f1e40b.jpg" }, { "if": { @@ -158284,7 +158523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/utile-bf3eb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/utile-bf3eb4.jpg" }, { "if": { @@ -158299,7 +158538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valero-6ca601.png" + "then": "https://data.mapcomplete.org/nsi//logos/valero-6ca601.png" }, { "if": { @@ -158316,7 +158555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vango-298a73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vango-298a73.jpg" }, { "if": { @@ -158331,7 +158570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virsi-401681.png" + "then": "https://data.mapcomplete.org/nsi//logos/virsi-401681.png" }, { "if": { @@ -158346,7 +158585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viva-856fe1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/viva-856fe1.jpg" }, { "if": { @@ -158361,7 +158600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vival-12cc61.png" + "then": "https://data.mapcomplete.org/nsi//logos/vival-12cc61.png" }, { "if": { @@ -158376,7 +158615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waitrose-126aa8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waitrose-126aa8.jpg" }, { "if": { @@ -158391,7 +158630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wawa-dad45f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wawa-dad45f.jpg" }, { "if": { @@ -158406,7 +158645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welcome-232829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welcome-232829.jpg" }, { "if": { @@ -158421,7 +158660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wesco-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/wesco-f1e40b.png" }, { "if": { @@ -158436,7 +158675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winmart-61b913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winmart-61b913.jpg" }, { "if": { @@ -158453,7 +158692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woolworthsmetrogo-0b0ae9.png" + "then": "https://data.mapcomplete.org/nsi//logos/woolworthsmetrogo-0b0ae9.png" }, { "if": { @@ -158468,7 +158707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xtramart-ff595a.png" + "then": "https://data.mapcomplete.org/nsi//logos/xtramart-ff595a.png" }, { "if": { @@ -158483,7 +158722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yesway-f1e40b.png" + "then": "https://data.mapcomplete.org/nsi//logos/yesway-f1e40b.png" }, { "if": { @@ -158498,7 +158737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yormas-60c7fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yormas-60c7fe.jpg" }, { "if": { @@ -158515,7 +158754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yourcoopfood-232829.png" + "then": "https://data.mapcomplete.org/nsi//logos/yourcoopfood-232829.png" }, { "if": { @@ -158532,7 +158771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zabka-f55ead.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zabka-f55ead.jpg" }, { "if": { @@ -158550,7 +158789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zappka-95f41b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zappka-95f41b.jpg" }, { "if": { @@ -158569,7 +158808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akkond-e33fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akkond-e33fbc.jpg" }, { "if": { @@ -158584,7 +158823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ed92ce-e64bef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ed92ce-e64bef.jpg" }, { "if": { @@ -158599,7 +158838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/106d49-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/106d49-023e9c.jpg" }, { "if": { @@ -158618,7 +158857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vkusvill-e33fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vkusvill-e33fbc.jpg" }, { "if": { @@ -158633,7 +158872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/44aeb3-e33fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/44aeb3-e33fbc.jpg" }, { "if": { @@ -158648,7 +158887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/292dce-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/292dce-023e9c.jpg" }, { "if": { @@ -158663,7 +158902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/67d62e-065292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/67d62e-065292.jpg" }, { "if": { @@ -158680,7 +158919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yermolino-e33fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yermolino-e33fbc.jpg" }, { "if": { @@ -158695,7 +158934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/212655-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/212655-023e9c.jpg" }, { "if": { @@ -158710,7 +158949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a22748-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a22748-023e9c.jpg" }, { "if": { @@ -158729,7 +158968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ef63bd-7ad3ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ef63bd-7ad3ae.jpg" }, { "if": { @@ -158748,7 +158987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukoil-bd0db4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukoil-bd0db4.jpg" }, { "if": { @@ -158767,7 +159006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magnit-e33fbc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/magnit-e33fbc.svg" }, { "if": { @@ -158782,7 +159021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a5e9d6-e33fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a5e9d6-e33fbc.jpg" }, { "if": { @@ -158801,7 +159040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myauchan-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/myauchan-023e9c.jpg" }, { "if": { @@ -158818,7 +159057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c92d51-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c92d51-023e9c.jpg" }, { "if": { @@ -158833,7 +159072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fd13e6-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fd13e6-023e9c.jpg" }, { "if": { @@ -158848,7 +159087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1e259f-023e9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/1e259f-023e9c.png" }, { "if": { @@ -158863,7 +159102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/958102-023e9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/958102-023e9c.jpg" }, { "if": { @@ -158884,7 +159123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belmart-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belmart-3cb7c4.jpg" }, { "if": { @@ -158904,7 +159143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/billion-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/billion-3cb7c4.jpg" }, { "if": { @@ -158925,7 +159164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gvirila-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gvirila-3cb7c4.jpg" }, { "if": { @@ -158946,7 +159185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/europroduct-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/europroduct-3cb7c4.jpg" }, { "if": { @@ -158965,7 +159204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waymart-3cb7c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/waymart-3cb7c4.png" }, { "if": { @@ -158986,7 +159225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zgapari-3cb7c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/zgapari-3cb7c4.png" }, { "if": { @@ -159007,7 +159246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ioli-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ioli-3cb7c4.jpg" }, { "if": { @@ -159030,7 +159269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefourcity-3cb7c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefourcity-3cb7c4.png" }, { "if": { @@ -159051,7 +159290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libre-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/libre-3cb7c4.jpg" }, { "if": { @@ -159072,7 +159311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magniti-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magniti-3cb7c4.jpg" }, { "if": { @@ -159093,7 +159332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nazilbe-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nazilbe-3cb7c4.jpg" }, { "if": { @@ -159114,7 +159353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nikora-3cb7c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/nikora-3cb7c4.png" }, { "if": { @@ -159138,7 +159377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orinabiji-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orinabiji-3cb7c4.jpg" }, { "if": { @@ -159159,7 +159398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smart-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smart-3cb7c4.jpg" }, { "if": { @@ -159178,7 +159417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spar-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spar-3cb7c4.jpg" }, { "if": { @@ -159199,7 +159438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universami-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universami-3cb7c4.jpg" }, { "if": { @@ -159219,7 +159458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/family-3cb7c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/family-3cb7c4.jpg" }, { "if": { @@ -159238,7 +159477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canbo-d157b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canbo-d157b9.jpg" }, { "if": { @@ -159257,7 +159496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/refah-d157b9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/refah-d157b9.svg" }, { "if": { @@ -159276,7 +159515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meed-cc9d9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meed-cc9d9e.jpg" }, { "if": { @@ -159295,7 +159534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7eleven-fab923.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7eleven-fab923.jpg" }, { "if": { @@ -159314,7 +159553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emart24-fab923.png" + "then": "https://data.mapcomplete.org/nsi//logos/emart24-fab923.png" }, { "if": { @@ -159334,7 +159573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/an3-652b3e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/an3-652b3e.svg" }, { "if": { @@ -159353,7 +159592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communitystore-652b3e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/communitystore-652b3e.svg" }, { "if": { @@ -159372,12 +159611,11 @@ } ] }, - "then": "./assets/data/nsi/logos/saveon-652b3e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saveon-652b3e.svg" }, { "if": { "and": [ - "official_name:en=Seven-Eleven", "shop=convenience", { "or": [ @@ -159387,12 +159625,13 @@ "brand:wikidata=Q259340", "name=セブン-イレブン", "name:en=7-Eleven", - "name:ja=セブン-イレブン" + "name:ja=セブン-イレブン", + "official_name:en=Seven-Eleven" ] } ] }, - "then": "./assets/data/nsi/logos/7eleven-652b3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7eleven-652b3e.jpg" }, { "if": { @@ -159411,7 +159650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dailyyamazaki-652b3e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dailyyamazaki-652b3e.svg" }, { "if": { @@ -159430,7 +159669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturallawson-652b3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/naturallawson-652b3e.png" }, { "if": { @@ -159449,7 +159688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familymart-652b3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/familymart-652b3e.jpg" }, { "if": { @@ -159468,7 +159707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poplar-652b3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/poplar-652b3e.png" }, { "if": { @@ -159487,7 +159726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministop-652b3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministop-652b3e.jpg" }, { "if": { @@ -159506,7 +159745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lawson-652b3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lawson-652b3e.jpg" }, { "if": { @@ -159525,7 +159764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lawsonstore100-652b3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/lawsonstore100-652b3e.png" }, { "if": { @@ -159544,7 +159783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestmart360-298a73.png" + "then": "https://data.mapcomplete.org/nsi//logos/bestmart360-298a73.png" }, { "if": { @@ -159563,7 +159802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familymart-da9ca7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/familymart-da9ca7.jpg" }, { "if": { @@ -159582,7 +159821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familymart-aa89a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/familymart-aa89a7.jpg" }, { "if": { @@ -159602,7 +159841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lawson-da9ca7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lawson-da9ca7.jpg" }, { "if": { @@ -159621,7 +159860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hilife-aa89a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hilife-aa89a7.jpg" }, { "if": { @@ -159637,7 +159876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alphagraphics-090c18.png" + "then": "https://data.mapcomplete.org/nsi//logos/alphagraphics-090c18.png" }, { "if": { @@ -159652,7 +159891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copytop-dbbed6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copytop-dbbed6.jpg" }, { "if": { @@ -159667,7 +159906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/faxcopy-8c1a3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/faxcopy-8c1a3b.jpg" }, { "if": { @@ -159682,7 +159921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fedexoffice-090c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fedexoffice-090c18.jpg" }, { "if": { @@ -159697,7 +159936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maniaprint-a6353b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maniaprint-a6353b.jpg" }, { "if": { @@ -159712,7 +159951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minutemanpress-a4530d.png" + "then": "https://data.mapcomplete.org/nsi//logos/minutemanpress-a4530d.png" }, { "if": { @@ -159727,7 +159966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicegraphics-965e32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicegraphics-965e32.jpg" }, { "if": { @@ -159742,7 +159981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sirspeedy-090c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sirspeedy-090c18.jpg" }, { "if": { @@ -159761,7 +160000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accea-3df938.png" + "then": "https://data.mapcomplete.org/nsi//logos/accea-3df938.png" }, { "if": { @@ -159776,7 +160015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesop-a08666.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aesop-a08666.svg" }, { "if": { @@ -159791,7 +160030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amavia-55348e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amavia-55348e.jpg" }, { "if": { @@ -159806,7 +160045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avatim-55348e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avatim-55348e.jpg" }, { "if": { @@ -159821,7 +160060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aveda-7d6f1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aveda-7d6f1e.jpg" }, { "if": { @@ -159836,7 +160075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avon-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avon-a08666.jpg" }, { "if": { @@ -159851,7 +160090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avril-73d8b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avril-73d8b4.jpg" }, { "if": { @@ -159870,7 +160109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banilaco-b395fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banilaco-b395fe.jpg" }, { "if": { @@ -159885,7 +160124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bareminerals-fdc7bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bareminerals-fdc7bb.jpg" }, { "if": { @@ -159900,7 +160139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bathandbodyworks-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bathandbodyworks-a08666.jpg" }, { "if": { @@ -159915,7 +160154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beautysuccess-6051ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beautysuccess-6051ce.jpg" }, { "if": { @@ -159930,7 +160169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beautyzone-0141c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beautyzone-0141c7.jpg" }, { "if": { @@ -159945,7 +160184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluemercury-7d6f1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluemercury-7d6f1e.jpg" }, { "if": { @@ -159960,7 +160199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobbibrown-7b55df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobbibrown-7b55df.jpg" }, { "if": { @@ -159975,7 +160214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bottegaverde-a13ae4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bottegaverde-a13ae4.jpg" }, { "if": { @@ -159990,7 +160229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charlottetilbury-6776ad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/charlottetilbury-6776ad.svg" }, { "if": { @@ -160005,7 +160244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charmedaroma-0bbe21.png" + "then": "https://data.mapcomplete.org/nsi//logos/charmedaroma-0bbe21.png" }, { "if": { @@ -160024,7 +160263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicor-b395fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicor-b395fe.jpg" }, { "if": { @@ -160039,7 +160278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clorebeautysupply-0bbe21.png" + "then": "https://data.mapcomplete.org/nsi//logos/clorebeautysupply-0bbe21.png" }, { "if": { @@ -160054,7 +160293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dermacol-85d8c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dermacol-85d8c2.jpg" }, { "if": { @@ -160069,7 +160308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/di-d6be4d.png" + "then": "https://data.mapcomplete.org/nsi//logos/di-d6be4d.png" }, { "if": { @@ -160088,7 +160327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etudehouse-b395fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etudehouse-b395fe.jpg" }, { "if": { @@ -160103,7 +160342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/faberlic-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/faberlic-a08666.jpg" }, { "if": { @@ -160118,7 +160357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gouiranbeaute-bb76b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/gouiranbeaute-bb76b2.png" }, { "if": { @@ -160133,7 +160372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gratis-15d6a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gratis-15d6a4.jpg" }, { "if": { @@ -160148,7 +160387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/havlikovaapoteka-85d8c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/havlikovaapoteka-85d8c2.jpg" }, { "if": { @@ -160165,7 +160404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ilmakiage-e301c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ilmakiage-e301c4.jpg" }, { "if": { @@ -160180,7 +160419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inglot-a08666.png" + "then": "https://data.mapcomplete.org/nsi//logos/inglot-a08666.png" }, { "if": { @@ -160199,7 +160438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innisfree-b395fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/innisfree-b395fe.jpg" }, { "if": { @@ -160214,7 +160453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itstyle-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itstyle-a08666.jpg" }, { "if": { @@ -160229,7 +160468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jurlique-a08666.png" + "then": "https://data.mapcomplete.org/nsi//logos/jurlique-a08666.png" }, { "if": { @@ -160244,7 +160483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kicks-649f8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kicks-649f8f.jpg" }, { "if": { @@ -160259,7 +160498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiehls-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiehls-a08666.jpg" }, { "if": { @@ -160274,7 +160513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kikomilano-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kikomilano-a08666.jpg" }, { "if": { @@ -160289,7 +160528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loccitane-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loccitane-a08666.jpg" }, { "if": { @@ -160304,7 +160543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laline-255338.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laline-255338.jpg" }, { "if": { @@ -160319,7 +160558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lush-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lush-a08666.jpg" }, { "if": { @@ -160335,7 +160574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maccosmetics-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maccosmetics-a08666.jpg" }, { "if": { @@ -160350,7 +160589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mahogany-55348e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mahogany-55348e.jpg" }, { "if": { @@ -160365,7 +160604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malingoetz-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/malingoetz-a08666.jpg" }, { "if": { @@ -160380,7 +160619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manufaktura-85d8c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/manufaktura-85d8c2.png" }, { "if": { @@ -160396,7 +160635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merlenorman-f96c07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/merlenorman-f96c07.jpg" }, { "if": { @@ -160415,7 +160654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missha-b395fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missha-b395fe.jpg" }, { "if": { @@ -160430,7 +160669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mixit-8126fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mixit-8126fc.jpg" }, { "if": { @@ -160446,7 +160685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moltonbrown-6776ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moltonbrown-6776ad.jpg" }, { "if": { @@ -160461,7 +160700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morphe-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morphe-a08666.jpg" }, { "if": { @@ -160476,7 +160715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natura-55348e.png" + "then": "https://data.mapcomplete.org/nsi//logos/natura-55348e.png" }, { "if": { @@ -160491,7 +160730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturerepublic-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturerepublic-a08666.jpg" }, { "if": { @@ -160506,7 +160745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nocibe-6051ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nocibe-6051ce.jpg" }, { "if": { @@ -160521,7 +160760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nyx-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nyx-a08666.jpg" }, { "if": { @@ -160540,7 +160779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oliveyoung-b395fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oliveyoung-b395fe.jpg" }, { "if": { @@ -160555,7 +160794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oriflame-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oriflame-a08666.jpg" }, { "if": { @@ -160570,7 +160809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/origins-7d6f1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/origins-7d6f1e.jpg" }, { "if": { @@ -160585,7 +160824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primor-16394a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primor-16394a.jpg" }, { "if": { @@ -160600,7 +160839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pupamilano-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pupamilano-a08666.jpg" }, { "if": { @@ -160615,7 +160854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quemdisseberenice-55348e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quemdisseberenice-55348e.jpg" }, { "if": { @@ -160630,7 +160869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rituals-a08666.png" + "then": "https://data.mapcomplete.org/nsi//logos/rituals-a08666.png" }, { "if": { @@ -160647,7 +160886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sabon-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sabon-a08666.jpg" }, { "if": { @@ -160662,7 +160901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sagacosmetics-bb76b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sagacosmetics-bb76b2.jpg" }, { "if": { @@ -160677,7 +160916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saje-cf522e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saje-cf522e.jpg" }, { "if": { @@ -160692,7 +160931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sephora-a08666.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sephora-a08666.svg" }, { "if": { @@ -160711,7 +160950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shiseido-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shiseido-a08666.jpg" }, { "if": { @@ -160726,7 +160965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/signaturecosmeticsandfragrances-28fda4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/signaturecosmeticsandfragrances-28fda4.jpg" }, { "if": { @@ -160745,7 +160984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skinfood-b395fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skinfood-b395fe.jpg" }, { "if": { @@ -160760,7 +160999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/soeder-1b5c42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/soeder-1b5c42.jpg" }, { "if": { @@ -160775,7 +161014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spacenk-6776ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spacenk-6776ad.jpg" }, { "if": { @@ -160790,7 +161029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebodyshop-a08666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebodyshop-a08666.jpg" }, { "if": { @@ -160809,7 +161048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thefaceshop-b395fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thefaceshop-b395fe.jpg" }, { "if": { @@ -160828,7 +161067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tonymoly-b395fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/tonymoly-b395fe.png" }, { "if": { @@ -160843,7 +161082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ultabeauty-7d6f1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ultabeauty-7d6f1e.jpg" }, { "if": { @@ -160858,7 +161097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wyconcosmetics-a13ae4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wyconcosmetics-a13ae4.jpg" }, { "if": { @@ -160873,7 +161112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yescosmetics-55348e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yescosmetics-55348e.jpg" }, { "if": { @@ -160888,7 +161127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yvesrocher-93ef6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yvesrocher-93ef6e.jpg" }, { "if": { @@ -160903,7 +161142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziaja-a2d805.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ziaja-a2d805.jpg" }, { "if": { @@ -160922,7 +161161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldapple-882961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldapple-882961.jpg" }, { "if": { @@ -160937,7 +161176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5e497e-882961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/5e497e-882961.jpg" }, { "if": { @@ -160956,7 +161195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d7b8b0-882961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d7b8b0-882961.jpg" }, { "if": { @@ -160977,7 +161216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voulezvous-5f8e42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/voulezvous-5f8e42.jpg" }, { "if": { @@ -160998,7 +161237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iciparis-5f8e42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iciparis-5f8e42.jpg" }, { "if": { @@ -161017,7 +161256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonjour-03ac43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonjour-03ac43.jpg" }, { "if": { @@ -161036,7 +161275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colourmix-03ac43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colourmix-03ac43.jpg" }, { "if": { @@ -161055,7 +161294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobbibrown-dab93b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobbibrown-dab93b.jpg" }, { "if": { @@ -161074,7 +161313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sasa-03ac43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sasa-03ac43.jpg" }, { "if": { @@ -161089,7 +161328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atwoods-e159b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atwoods-e159b8.jpg" }, { "if": { @@ -161104,7 +161343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blainsfarmandfleet-e159b8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/blainsfarmandfleet-e159b8.svg" }, { "if": { @@ -161119,7 +161358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bomgaars-e159b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bomgaars-e159b8.jpg" }, { "if": { @@ -161134,7 +161373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countrymax-dbe0bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/countrymax-dbe0bc.png" }, { "if": { @@ -161149,7 +161388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fleetfarm-e159b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fleetfarm-e159b8.jpg" }, { "if": { @@ -161164,7 +161403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grangecoop-e159b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/grangecoop-e159b8.png" }, { "if": { @@ -161179,7 +161418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/granngarden-9e8c4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/granngarden-9e8c4d.jpg" }, { "if": { @@ -161194,7 +161433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homeofeconomy-e159b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/homeofeconomy-e159b8.png" }, { "if": { @@ -161209,7 +161448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landi-a9a167.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landi-a9a167.svg" }, { "if": { @@ -161224,7 +161463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/molevalleyfarmers-1d97dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/molevalleyfarmers-1d97dc.png" }, { "if": { @@ -161239,7 +161478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norbysfarmfleet-e159b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norbysfarmfleet-e159b8.jpg" }, { "if": { @@ -161254,7 +161493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orschelnfarmandhome-e159b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orschelnfarmandhome-e159b8.jpg" }, { "if": { @@ -161269,7 +161508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peaveymart-b48d00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peaveymart-b48d00.jpg" }, { "if": { @@ -161284,7 +161523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ruralking-e159b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ruralking-e159b8.png" }, { "if": { @@ -161299,7 +161538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theisens-e159b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theisens-e159b8.jpg" }, { "if": { @@ -161314,7 +161553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tractorsupplycompany-e159b8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tractorsupplycompany-e159b8.svg" }, { "if": { @@ -161329,7 +161568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wynnstay-1d97dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wynnstay-1d97dc.jpg" }, { "if": { @@ -161344,7 +161583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acmoore-94ee6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/acmoore-94ee6e.png" }, { "if": { @@ -161359,7 +161598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boesner-1cc9f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/boesner-1cc9f4.png" }, { "if": { @@ -161374,7 +161613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hobbylobby-3a570b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hobbylobby-3a570b.jpg" }, { "if": { @@ -161389,7 +161628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hobbycraft-25f394.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hobbycraft-25f394.jpg" }, { "if": { @@ -161405,7 +161644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joannfabricsandcrafts-94ee6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joannfabricsandcrafts-94ee6e.jpg" }, { "if": { @@ -161420,7 +161659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaisercraft-27cf5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaisercraft-27cf5c.jpg" }, { "if": { @@ -161435,7 +161674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michaels-9d4726.png" + "then": "https://data.mapcomplete.org/nsi//logos/michaels-9d4726.png" }, { "if": { @@ -161450,7 +161689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pipoos-d918ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pipoos-d918ce.jpg" }, { "if": { @@ -161465,7 +161704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodcraft-94ee6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woodcraft-94ee6e.jpg" }, { "if": { @@ -161480,7 +161719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f57608-3615c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/f57608-3615c7.jpg" }, { "if": { @@ -161495,7 +161734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heytens-ceb642.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heytens-ceb642.jpg" }, { "if": { @@ -161510,7 +161749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vianney-8de768.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vianney-8de768.jpg" }, { "if": { @@ -161527,7 +161766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lbbulgaricum-2958ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lbbulgaricum-2958ef.jpg" }, { "if": { @@ -161542,7 +161781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liconsa-f345f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liconsa-f345f3.jpg" }, { "if": { @@ -161557,7 +161796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milma-6e9671.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milma-6e9671.jpg" }, { "if": { @@ -161572,7 +161811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motherdairy-6e9671.png" + "then": "https://data.mapcomplete.org/nsi//logos/motherdairy-6e9671.png" }, { "if": { @@ -161588,7 +161827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oberweis-95235d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oberweis-95235d.jpg" }, { "if": { @@ -161603,7 +161842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veronika-26fd0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veronika-26fd0f.jpg" }, { "if": { @@ -161618,7 +161857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zuivelhoeve-32e1e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/zuivelhoeve-32e1e2.png" }, { "if": { @@ -161633,7 +161872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/49945f-9e0ef1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/49945f-9e0ef1.jpg" }, { "if": { @@ -161648,7 +161887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/54b734-2958ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/54b734-2958ef.jpg" }, { "if": { @@ -161663,7 +161902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boarshead-39588b.png" + "then": "https://data.mapcomplete.org/nsi//logos/boarshead-39588b.png" }, { "if": { @@ -161678,7 +161917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comtessedubarry-ab8cdd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comtessedubarry-ab8cdd.jpg" }, { "if": { @@ -161693,7 +161932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fotexdelikatesse-dcd577.png" + "then": "https://data.mapcomplete.org/nsi//logos/fotexdelikatesse-dcd577.png" }, { "if": { @@ -161708,7 +161947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oilandvinegar-0e839f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oilandvinegar-0e839f.jpg" }, { "if": { @@ -161723,7 +161962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vomfass-a3c745.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vomfass-a3c745.jpg" }, { "if": { @@ -161738,7 +161977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wajos-d2192e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wajos-d2192e.jpg" }, { "if": { @@ -161754,7 +161993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f77fb7-2f84cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/f77fb7-2f84cd.jpg" }, { "if": { @@ -161775,7 +162014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vake-e0f2d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vake-e0f2d7.jpg" }, { "if": { @@ -161794,7 +162033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyotaru-39c92c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kyotaru-39c92c.jpg" }, { "if": { @@ -161813,7 +162052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jueweiduckneck-5c76da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jueweiduckneck-5c76da.jpg" }, { "if": { @@ -161828,7 +162067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ahlens-2c114a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ahlens-2c114a.jpg" }, { "if": { @@ -161843,7 +162082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanfreight-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americanfreight-592fe0.jpg" }, { "if": { @@ -161858,7 +162097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armazemparaiba-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armazemparaiba-7a47e3.jpg" }, { "if": { @@ -161873,7 +162112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asdaliving-b626d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asdaliving-b626d5.jpg" }, { "if": { @@ -161888,7 +162127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barneysnewyork-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barneysnewyork-592fe0.jpg" }, { "if": { @@ -161903,7 +162142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beales-b626d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beales-b626d5.jpg" }, { "if": { @@ -161918,7 +162157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bealls-834cda.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bealls-834cda.jpg" }, { "if": { @@ -161933,7 +162172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belk-592fe0.png" + "then": "https://data.mapcomplete.org/nsi//logos/belk-592fe0.png" }, { "if": { @@ -161948,7 +162187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bimart-592fe0.png" + "then": "https://data.mapcomplete.org/nsi//logos/bimart-592fe0.png" }, { "if": { @@ -161963,7 +162202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biglots-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biglots-592fe0.jpg" }, { "if": { @@ -161978,7 +162217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigw-c93bbd.png" + "then": "https://data.mapcomplete.org/nsi//logos/bigw-c93bbd.png" }, { "if": { @@ -161997,7 +162236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/billion-4d0884.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/billion-4d0884.jpg" }, { "if": { @@ -162012,7 +162251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bloomingdales-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bloomingdales-592fe0.jpg" }, { "if": { @@ -162027,7 +162266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boscovs-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boscovs-592fe0.jpg" }, { "if": { @@ -162042,7 +162281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boyes-b626d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boyes-b626d5.jpg" }, { "if": { @@ -162057,7 +162296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brighthouse-b626d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brighthouse-b626d5.jpg" }, { "if": { @@ -162073,7 +162312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burlington-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burlington-592fe0.jpg" }, { "if": { @@ -162088,7 +162327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadiantire-63d0ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadiantire-63d0ba.jpg" }, { "if": { @@ -162103,7 +162342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casasbahia-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casasbahia-7a47e3.jpg" }, { "if": { @@ -162120,7 +162359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centraldepartmentstore-10be9f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centraldepartmentstore-10be9f.jpg" }, { "if": { @@ -162135,7 +162374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/century21-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/century21-592fe0.jpg" }, { "if": { @@ -162150,7 +162389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coin-b0f55b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coin-b0f55b.jpg" }, { "if": { @@ -162165,7 +162404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coinexcelsior-b0f55b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coinexcelsior-b0f55b.jpg" }, { "if": { @@ -162180,7 +162419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coppel-a1f638.png" + "then": "https://data.mapcomplete.org/nsi//logos/coppel-a1f638.png" }, { "if": { @@ -162195,7 +162434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davidjones-c93bbd.png" + "then": "https://data.mapcomplete.org/nsi//logos/davidjones-c93bbd.png" }, { "if": { @@ -162210,7 +162449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ddsdiscounts-592fe0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ddsdiscounts-592fe0.png" }, { "if": { @@ -162225,7 +162464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/debenhams-a29e63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/debenhams-a29e63.jpg" }, { "if": { @@ -162240,7 +162479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delsol-4c18c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delsol-4c18c3.jpg" }, { "if": { @@ -162255,7 +162494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dillards-592fe0.png" + "then": "https://data.mapcomplete.org/nsi//logos/dillards-592fe0.png" }, { "if": { @@ -162270,7 +162509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dufry-03e633.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dufry-03e633.svg" }, { "if": { @@ -162285,7 +162524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunnesstores-a29e63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunnesstores-a29e63.jpg" }, { "if": { @@ -162300,7 +162539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edgars-34fd38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edgars-34fd38.jpg" }, { "if": { @@ -162315,7 +162554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elcorteingles-5888bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elcorteingles-5888bf.jpg" }, { "if": { @@ -162330,7 +162569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektra-95a469.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elektra-95a469.jpg" }, { "if": { @@ -162345,7 +162584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exito-96a609.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exito-96a609.jpg" }, { "if": { @@ -162360,7 +162599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/falabella-f2bfac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/falabella-f2bfac.jpg" }, { "if": { @@ -162375,7 +162614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/famsa-4c18c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/famsa-4c18c3.jpg" }, { "if": { @@ -162390,7 +162629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmers-98a4a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmers-98a4a8.jpg" }, { "if": { @@ -162405,7 +162644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastshop-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastshop-7a47e3.jpg" }, { "if": { @@ -162420,7 +162659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/formanmills-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/formanmills-592fe0.jpg" }, { "if": { @@ -162435,7 +162674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galeria-ca042d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/galeria-ca042d.svg" }, { "if": { @@ -162450,7 +162689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galerieslafayette-b7f45a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/galerieslafayette-b7f45a.jpg" }, { "if": { @@ -162465,7 +162704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gianttiger-07b2aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gianttiger-07b2aa.jpg" }, { "if": { @@ -162480,7 +162719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodys-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodys-592fe0.jpg" }, { "if": { @@ -162495,7 +162734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gordmans-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gordmans-592fe0.jpg" }, { "if": { @@ -162510,7 +162749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harrisscarfe-c93bbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harrisscarfe-c93bbd.jpg" }, { "if": { @@ -162525,7 +162764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harveynorman-b73e73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harveynorman-b73e73.jpg" }, { "if": { @@ -162540,7 +162779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/havan-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/havan-7a47e3.jpg" }, { "if": { @@ -162555,7 +162794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hellenicdutyfreeshops-ef1e16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hellenicdutyfreeshops-ef1e16.jpg" }, { "if": { @@ -162570,7 +162809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hema-e99f95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hema-e99f95.jpg" }, { "if": { @@ -162585,7 +162824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houseoffraser-b626d5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/houseoffraser-b626d5.svg" }, { "if": { @@ -162601,7 +162840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hudsonsbay-8749a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hudsonsbay-8749a9.jpg" }, { "if": { @@ -162616,39 +162855,39 @@ } ] }, - "then": "./assets/data/nsi/logos/inno-323268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inno-323268.jpg" }, { "if": { "and": [ - "official_name=J.C. Penney Company", "shop=department_store", { "or": [ "brand=JCPenney", "brand:wikidata=Q920037", - "name=JCPenney" + "name=JCPenney", + "official_name=J.C. Penney Company" ] } ] }, - "then": "./assets/data/nsi/logos/jcpenney-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcpenney-592fe0.jpg" }, { "if": { "and": [ - "official_name=John Lewis & Partners", "shop=department_store", { "or": [ "brand=John Lewis", "brand:wikidata=Q1918981", - "name=John Lewis" + "name=John Lewis", + "official_name=John Lewis & Partners" ] } ] }, - "then": "./assets/data/nsi/logos/johnlewis-b626d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnlewis-b626d5.jpg" }, { "if": { @@ -162663,7 +162902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/khub-c93bbd.png" + "then": "https://data.mapcomplete.org/nsi//logos/khub-c93bbd.png" }, { "if": { @@ -162679,7 +162918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaufhausstolz-ca042d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaufhausstolz-ca042d.jpg" }, { "if": { @@ -162694,7 +162933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kmart-2e4a6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/kmart-2e4a6e.png" }, { "if": { @@ -162709,7 +162948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kmart-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kmart-592fe0.jpg" }, { "if": { @@ -162724,7 +162963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kohls-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kohls-592fe0.jpg" }, { "if": { @@ -162739,7 +162978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/larinascente-b0f55b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/larinascente-b0f55b.jpg" }, { "if": { @@ -162754,7 +162993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lebiscuit-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lebiscuit-7a47e3.jpg" }, { "if": { @@ -162769,7 +163008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leader-7a47e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/leader-7a47e3.png" }, { "if": { @@ -162784,7 +163023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liverpool-4c18c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liverpool-4c18c3.jpg" }, { "if": { @@ -162799,7 +163038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lojasamericanas-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lojasamericanas-7a47e3.jpg" }, { "if": { @@ -162814,7 +163053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lojascolombo-7a47e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/lojascolombo-7a47e3.png" }, { "if": { @@ -162829,7 +163068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lottedepartmentstore-256de8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lottedepartmentstore-256de8.jpg" }, { "if": { @@ -162848,7 +163087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lottedutyfree-8352b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/lottedutyfree-8352b8.png" }, { "if": { @@ -162864,7 +163103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandsoutlet-03e633.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandsoutlet-03e633.jpg" }, { "if": { @@ -162879,7 +163118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macys-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macys-592fe0.jpg" }, { "if": { @@ -162894,7 +163133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macysbackstage-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macysbackstage-592fe0.jpg" }, { "if": { @@ -162909,7 +163148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magazineluiza-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magazineluiza-7a47e3.jpg" }, { "if": { @@ -162924,7 +163163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manor-66d8a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/manor-66d8a4.png" }, { "if": { @@ -162939,23 +163178,23 @@ } ] }, - "then": "./assets/data/nsi/logos/manufactum-ca042d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manufactum-ca042d.jpg" }, { "if": { "and": [ - "official_name=Marden's Surplus and Salvage", "shop=department_store", { "or": [ "brand=Marden's", "brand:wikidata=Q96391944", - "name=Marden's" + "name=Marden's", + "official_name=Marden's Surplus and Salvage" ] } ] }, - "then": "./assets/data/nsi/logos/mardens-28650f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mardens-28650f.jpg" }, { "if": { @@ -162971,7 +163210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marksandspencer-4dabe9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marksandspencer-4dabe9.jpg" }, { "if": { @@ -162986,7 +163225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshalls-53f9e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshalls-53f9e5.jpg" }, { "if": { @@ -163001,7 +163240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrodepartmentstore-2ae798.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metrodepartmentstore-2ae798.jpg" }, { "if": { @@ -163016,7 +163255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monge-f3a415.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monge-f3a415.jpg" }, { "if": { @@ -163035,7 +163274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muji-5ebe4b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/muji-5ebe4b.svg" }, { "if": { @@ -163050,7 +163289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myer-c93bbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/myer-c93bbd.jpg" }, { "if": { @@ -163065,7 +163304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neimanmarcus-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neimanmarcus-592fe0.jpg" }, { "if": { @@ -163080,7 +163319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordstrom-53f9e5.png" + "then": "https://data.mapcomplete.org/nsi//logos/nordstrom-53f9e5.png" }, { "if": { @@ -163095,7 +163334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuance-03e633.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nuance-03e633.svg" }, { "if": { @@ -163110,7 +163349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oechsle-5dd0d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oechsle-5dd0d8.jpg" }, { "if": { @@ -163125,7 +163364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omareffendi-6a6e97.png" + "then": "https://data.mapcomplete.org/nsi//logos/omareffendi-6a6e97.png" }, { "if": { @@ -163140,7 +163379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palaciodehierro-4c18c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palaciodehierro-4c18c3.jpg" }, { "if": { @@ -163162,7 +163401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pantaitimor-4d0884.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pantaitimor-4d0884.jpg" }, { "if": { @@ -163177,7 +163416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paris-f81fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paris-f81fcb.jpg" }, { "if": { @@ -163196,7 +163435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkson-6dcedc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkson-6dcedc.jpg" }, { "if": { @@ -163211,7 +163450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pernambucanas-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pernambucanas-7a47e3.jpg" }, { "if": { @@ -163226,7 +163465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/printemps-b3d693.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/printemps-b3d693.jpg" }, { "if": { @@ -163241,23 +163480,23 @@ } ] }, - "then": "./assets/data/nsi/logos/ripley-f81fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ripley-f81fcb.jpg" }, { "if": { "and": [ - "official_name=Ross Dress for Less", "shop=department_store", { "or": [ "brand=Ross", "brand:wikidata=Q3442791", - "name=Ross" + "name=Ross", + "official_name=Ross Dress for Less" ] } ] }, - "then": "./assets/data/nsi/logos/ross-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ross-592fe0.jpg" }, { "if": { @@ -163272,7 +163511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/runnings-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/runnings-592fe0.jpg" }, { "if": { @@ -163287,7 +163526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saksfifthavenue-53f9e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saksfifthavenue-53f9e5.jpg" }, { "if": { @@ -163302,7 +163541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saksoff5th-53f9e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saksoff5th-53f9e5.jpg" }, { "if": { @@ -163317,7 +163556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanborns-4c18c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanborns-4c18c3.jpg" }, { "if": { @@ -163332,7 +163571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sears-ce56c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sears-ce56c0.jpg" }, { "if": { @@ -163347,7 +163586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/searshometown-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/searshometown-592fe0.jpg" }, { "if": { @@ -163366,7 +163605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shinsegae-84c155.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shinsegae-84c155.svg" }, { "if": { @@ -163381,7 +163620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoppersstop-d45fb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoppersstop-d45fb2.jpg" }, { "if": { @@ -163396,7 +163635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smithscity-98a4a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/smithscity-98a4a8.png" }, { "if": { @@ -163411,7 +163650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steinmart-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steinmart-592fe0.jpg" }, { "if": { @@ -163426,7 +163665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stockmann-da3317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stockmann-da3317.jpg" }, { "if": { @@ -163441,7 +163680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/target-c93bbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/target-c93bbd.jpg" }, { "if": { @@ -163456,7 +163695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/target-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/target-592fe0.jpg" }, { "if": { @@ -163471,7 +163710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thewarehouse-98a4a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/thewarehouse-98a4a8.png" }, { "if": { @@ -163486,7 +163725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigregeant-f68020.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigregeant-f68020.jpg" }, { "if": { @@ -163501,7 +163740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tjmaxx-592fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tjmaxx-592fe0.jpg" }, { "if": { @@ -163516,7 +163755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tkmaxx-d02268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tkmaxx-d02268.jpg" }, { "if": { @@ -163531,7 +163770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trafic-323268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trafic-323268.jpg" }, { "if": { @@ -163546,7 +163785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/upim-b0f55b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/upim-b0f55b.jpg" }, { "if": { @@ -163561,7 +163800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmart-36cadd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmart-36cadd.jpg" }, { "if": { @@ -163576,7 +163815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winners-c81e81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winners-c81e81.jpg" }, { "if": { @@ -163591,7 +163830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woolworth-4c18c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woolworth-4c18c3.jpg" }, { "if": { @@ -163606,7 +163845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woolworth-ca042d.png" + "then": "https://data.mapcomplete.org/nsi//logos/woolworth-ca042d.png" }, { "if": { @@ -163621,7 +163860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worlddutyfree-03e633.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worlddutyfree-03e633.jpg" }, { "if": { @@ -163636,7 +163875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zema-7a47e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zema-7a47e3.jpg" }, { "if": { @@ -163654,7 +163893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lottedepartmentstore-84c155.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lottedepartmentstore-84c155.jpg" }, { "if": { @@ -163677,7 +163916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyundai-84c155.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyundai-84c155.jpg" }, { "if": { @@ -163696,7 +163935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miniso-85e4e5.png" + "then": "https://data.mapcomplete.org/nsi//logos/miniso-85e4e5.png" }, { "if": { @@ -163715,7 +163954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miniso-d07f6f.png" + "then": "https://data.mapcomplete.org/nsi//logos/miniso-d07f6f.png" }, { "if": { @@ -163734,12 +163973,11 @@ } ] }, - "then": "./assets/data/nsi/logos/muji-85e4e5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/muji-85e4e5.svg" }, { "if": { "and": [ - "official_name:en=Ryohin Keikaku", "shop=department_store", { "or": [ @@ -163749,12 +163987,13 @@ "brand:wikidata=Q708789", "name=無印良品", "name:en=Muji", - "name:ja=無印良品" + "name:ja=無印良品", + "official_name:en=Ryohin Keikaku" ] } ] }, - "then": "./assets/data/nsi/logos/muji-646bbf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/muji-646bbf.svg" }, { "if": { @@ -163773,7 +164012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muji-d07f6f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/muji-d07f6f.svg" }, { "if": { @@ -163792,7 +164031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkson-05ca83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkson-05ca83.jpg" }, { "if": { @@ -163807,7 +164046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acehardware-092aaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/acehardware-092aaf.png" }, { "if": { @@ -163822,7 +164061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allhome-8037a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allhome-8037a1.jpg" }, { "if": { @@ -163837,7 +164076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alsford-ae8e02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alsford-ae8e02.jpg" }, { "if": { @@ -163852,7 +164091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandq-092aaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandq-092aaf.jpg" }, { "if": { @@ -163867,7 +164106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bauhaus-6847b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bauhaus-6847b5.png" }, { "if": { @@ -163882,7 +164121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bauking-db1fbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bauking-db1fbb.jpg" }, { "if": { @@ -163897,7 +164136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baumax-bc270a.png" + "then": "https://data.mapcomplete.org/nsi//logos/baumax-bc270a.png" }, { "if": { @@ -163912,7 +164151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bauspezi-db1fbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bauspezi-db1fbb.jpg" }, { "if": { @@ -163927,7 +164166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baywa-db1fbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baywa-db1fbb.jpg" }, { "if": { @@ -163942,7 +164181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biltema-acccd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biltema-acccd4.jpg" }, { "if": { @@ -163957,7 +164196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boxerbuild-ea5357.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boxerbuild-ea5357.jpg" }, { "if": { @@ -163972,7 +164211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brico-b2ed79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brico-b2ed79.jpg" }, { "if": { @@ -163987,7 +164226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricocash-f33b88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricocash-f33b88.jpg" }, { "if": { @@ -164002,7 +164241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricodepot-46eef0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricodepot-46eef0.jpg" }, { "if": { @@ -164017,7 +164256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricoio-afce84.png" + "then": "https://data.mapcomplete.org/nsi//logos/bricoio-afce84.png" }, { "if": { @@ -164032,7 +164271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricook-afce84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricook-afce84.jpg" }, { "if": { @@ -164047,7 +164286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricocenter-afce84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricocenter-afce84.jpg" }, { "if": { @@ -164062,7 +164301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricofer-afce84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricofer-afce84.jpg" }, { "if": { @@ -164081,7 +164320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricoma-bf07e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricoma-bf07e6.jpg" }, { "if": { @@ -164096,7 +164335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricoman-2f8b67.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricoman-2f8b67.jpg" }, { "if": { @@ -164111,7 +164350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricomarche-4bc396.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricomarche-4bc396.jpg" }, { "if": { @@ -164126,7 +164365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricopro-f33b88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricopro-f33b88.jpg" }, { "if": { @@ -164141,7 +164380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricorama-80eee7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricorama-80eee7.jpg" }, { "if": { @@ -164156,7 +164395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buildit-aadd8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/buildit-aadd8a.png" }, { "if": { @@ -164171,7 +164410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buildbase-ae8e02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buildbase-ae8e02.jpg" }, { "if": { @@ -164186,7 +164425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buildersexpress-a9941a.png" + "then": "https://data.mapcomplete.org/nsi//logos/buildersexpress-a9941a.png" }, { "if": { @@ -164201,7 +164440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/builderssuperstore-a9941a.png" + "then": "https://data.mapcomplete.org/nsi//logos/builderssuperstore-a9941a.png" }, { "if": { @@ -164216,7 +164455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/builderswarehouse-a9941a.png" + "then": "https://data.mapcomplete.org/nsi//logos/builderswarehouse-a9941a.png" }, { "if": { @@ -164231,7 +164470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bunningswarehouse-aaac5b.png" + "then": "https://data.mapcomplete.org/nsi//logos/bunningswarehouse-aaac5b.png" }, { "if": { @@ -164246,7 +164485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byggmax-b25d3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/byggmax-b25d3a.png" }, { "if": { @@ -164261,7 +164500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cashbuild-c5a717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cashbuild-c5a717.jpg" }, { "if": { @@ -164276,7 +164515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/castorama-bb99c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/castorama-bb99c9.jpg" }, { "if": { @@ -164291,7 +164530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chaussonmateriaux-f33b88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chaussonmateriaux-f33b88.jpg" }, { "if": { @@ -164306,7 +164545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clasohlson-baf621.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clasohlson-baf621.jpg" }, { "if": { @@ -164321,7 +164560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopbauhobby-0f6f08.png" + "then": "https://data.mapcomplete.org/nsi//logos/coopbauhobby-0f6f08.png" }, { "if": { @@ -164336,7 +164575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopbyggmix-1b58cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopbyggmix-1b58cb.jpg" }, { "if": { @@ -164355,7 +164594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dcm-dd401d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dcm-dd401d.svg" }, { "if": { @@ -164370,7 +164609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dedeman-8112dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dedeman-8112dc.jpg" }, { "if": { @@ -164385,7 +164624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclercbrico-28b8a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclercbrico-28b8a0.jpg" }, { "if": { @@ -164400,7 +164639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easy-063ae0.png" + "then": "https://data.mapcomplete.org/nsi//logos/easy-063ae0.png" }, { "if": { @@ -164415,7 +164654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gamma-29070e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gamma-29070e.jpg" }, { "if": { @@ -164430,7 +164669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gedimat-28b8a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gedimat-28b8a0.jpg" }, { "if": { @@ -164445,7 +164684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globusbaumarkt-6f5ad3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globusbaumarkt-6f5ad3.jpg" }, { "if": { @@ -164460,7 +164699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hagebaumarkt-8202fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hagebaumarkt-8202fe.jpg" }, { "if": { @@ -164475,7 +164714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haraldnyborg-27539e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haraldnyborg-27539e.jpg" }, { "if": { @@ -164490,7 +164729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hellweg-601db4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hellweg-601db4.jpg" }, { "if": { @@ -164505,7 +164744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homebuildingcentre-fd1fd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homebuildingcentre-fd1fd9.jpg" }, { "if": { @@ -164520,7 +164759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homehardwarebuildingcentre-fd1fd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homehardwarebuildingcentre-fd1fd9.jpg" }, { "if": { @@ -164537,7 +164776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hometimberandhardware-b05cd0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hometimberandhardware-b05cd0.jpg" }, { "if": { @@ -164552,7 +164791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homebase-0c42e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homebase-0c42e1.jpg" }, { "if": { @@ -164571,7 +164810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homemax-6499aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homemax-6499aa.jpg" }, { "if": { @@ -164586,7 +164825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hornbach-92b1c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/hornbach-92b1c1.png" }, { "if": { @@ -164601,7 +164840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hubo-9eb2d8.png" + "then": "https://data.mapcomplete.org/nsi//logos/hubo-9eb2d8.png" }, { "if": { @@ -164616,7 +164855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hubo-233544.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hubo-233544.jpg" }, { "if": { @@ -164631,7 +164870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/italtile-3df878.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/italtile-3df878.jpg" }, { "if": { @@ -164646,7 +164885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jemandfix-27539e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jemandfix-27539e.jpg" }, { "if": { @@ -164661,7 +164900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jula-2478eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/jula-2478eb.png" }, { "if": { @@ -164676,7 +164915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jumbo-0f6f08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jumbo-0f6f08.jpg" }, { "if": { @@ -164691,7 +164930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karwei-233544.png" + "then": "https://data.mapcomplete.org/nsi//logos/karwei-233544.png" }, { "if": { @@ -164706,7 +164945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kluswijs-233544.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kluswijs-233544.jpg" }, { "if": { @@ -164721,7 +164960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koctas-9ebfe5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koctas-9ebfe5.jpg" }, { "if": { @@ -164736,7 +164975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lagerhaus-5a91e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lagerhaus-5a91e1.jpg" }, { "if": { @@ -164751,7 +164990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapeyre-28b8a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lapeyre-28b8a0.jpg" }, { "if": { @@ -164766,7 +165005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leroymerlin-acc60b.png" + "then": "https://data.mapcomplete.org/nsi//logos/leroymerlin-acc60b.png" }, { "if": { @@ -164781,7 +165020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leylandsdm-135476.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leylandsdm-135476.jpg" }, { "if": { @@ -164796,7 +165035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowes-0d8ea6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lowes-0d8ea6.jpg" }, { "if": { @@ -164811,7 +165050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mccoys-27ed78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mccoys-27ed78.jpg" }, { "if": { @@ -164826,7 +165065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/menards-c727e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/menards-c727e9.jpg" }, { "if": { @@ -164841,7 +165080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merkurymarket-5a474c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/merkurymarket-5a474c.jpg" }, { "if": { @@ -164856,7 +165095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitre10-b05cd0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mitre10-b05cd0.jpg" }, { "if": { @@ -164871,7 +165110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitre10-e80948.png" + "then": "https://data.mapcomplete.org/nsi//logos/mitre10-e80948.png" }, { "if": { @@ -164886,7 +165125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitre10mega-e80948.png" + "then": "https://data.mapcomplete.org/nsi//logos/mitre10mega-e80948.png" }, { "if": { @@ -164905,7 +165144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrbricolage-6499aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrbricolage-6499aa.jpg" }, { "if": { @@ -164920,7 +165159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrbricolage-ab808b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrbricolage-ab808b.jpg" }, { "if": { @@ -164935,7 +165174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrdiy-628676.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrdiy-628676.jpg" }, { "if": { @@ -164950,7 +165189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obi-d5381e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obi-d5381e.jpg" }, { "if": { @@ -164964,7 +165203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obsbygg-1b58cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/obsbygg-1b58cb.png" }, { "if": { @@ -164979,7 +165218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/placemakers-e80948.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/placemakers-e80948.jpg" }, { "if": { @@ -164994,7 +165233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pointp-f33b88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pointp-f33b88.jpg" }, { "if": { @@ -165009,7 +165248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/praktiker-eb3505.svg" + "then": "https://data.mapcomplete.org/nsi//logos/praktiker-eb3505.svg" }, { "if": { @@ -165026,7 +165265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/praktiker-6499aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/praktiker-6499aa.jpg" }, { "if": { @@ -165041,7 +165280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/praxis-233544.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/praxis-233544.jpg" }, { "if": { @@ -165056,7 +165295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/princessauto-fd1fd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/princessauto-fd1fd9.jpg" }, { "if": { @@ -165071,7 +165310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/promart-2f83d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/promart-2f83d4.png" }, { "if": { @@ -165086,7 +165325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/psbmrowka-e3f321.png" + "then": "https://data.mapcomplete.org/nsi//logos/psbmrowka-e3f321.png" }, { "if": { @@ -165101,7 +165340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puuilo-c60d71.png" + "then": "https://data.mapcomplete.org/nsi//logos/puuilo-c60d71.png" }, { "if": { @@ -165116,7 +165355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenmarkt-db1fbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenmarkt-db1fbb.jpg" }, { "if": { @@ -165131,7 +165370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rona-fd1fd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rona-fd1fd9.jpg" }, { "if": { @@ -165146,7 +165385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rona-381944.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rona-381944.jpg" }, { "if": { @@ -165161,7 +165400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/screwfix-6b37cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/screwfix-6b37cb.jpg" }, { "if": { @@ -165176,7 +165415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sodimac-0b4811.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sodimac-0b4811.svg" }, { "if": { @@ -165191,7 +165430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonderpreisbaumarkt-db1fbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonderpreisbaumarkt-db1fbb.jpg" }, { "if": { @@ -165206,7 +165445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tecnomat-afce84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tecnomat-afce84.jpg" }, { "if": { @@ -165221,7 +165460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tedox-db1fbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tedox-db1fbb.jpg" }, { "if": { @@ -165236,7 +165475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tekzen-9ebfe5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tekzen-9ebfe5.jpg" }, { "if": { @@ -165252,7 +165491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehomedepot-00d2a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehomedepot-00d2a0.jpg" }, { "if": { @@ -165267,7 +165506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toolstation-12fa86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toolstation-12fa86.jpg" }, { "if": { @@ -165283,7 +165522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toombaumarkt-db1fbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toombaumarkt-db1fbb.jpg" }, { "if": { @@ -165298,7 +165537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/travisperkins-ae8e02.png" + "then": "https://data.mapcomplete.org/nsi//logos/travisperkins-ae8e02.png" }, { "if": { @@ -165313,7 +165552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ttl-b8b163.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ttl-b8b163.jpg" }, { "if": { @@ -165328,7 +165567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ttm-05606e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ttm-05606e.jpg" }, { "if": { @@ -165343,7 +165582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unihobby-2ad5ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/unihobby-2ad5ff.png" }, { "if": { @@ -165358,7 +165597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vbaumarkt-db1fbb.png" + "then": "https://data.mapcomplete.org/nsi//logos/vbaumarkt-db1fbb.png" }, { "if": { @@ -165373,7 +165612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weldom-28b8a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/weldom-28b8a0.png" }, { "if": { @@ -165388,7 +165627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wickes-ae8e02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wickes-ae8e02.jpg" }, { "if": { @@ -165403,7 +165642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilcondepot-8037a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilcondepot-8037a1.jpg" }, { "if": { @@ -165418,7 +165657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodies-4f5e7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woodies-4f5e7a.jpg" }, { "if": { @@ -165433,7 +165672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zgraiffeisenbaustoffe-db1fbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zgraiffeisenbaustoffe-db1fbb.jpg" }, { "if": { @@ -165449,7 +165688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/13cf8e-2dbcce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/13cf8e-2dbcce.jpg" }, { "if": { @@ -165468,7 +165707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leroymerlin-ea6c83.png" + "then": "https://data.mapcomplete.org/nsi//logos/leroymerlin-ea6c83.png" }, { "if": { @@ -165487,7 +165726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrovich-43446b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrovich-43446b.jpg" }, { "if": { @@ -165506,7 +165745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/praktis-6499aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/praktis-6499aa.jpg" }, { "if": { @@ -165523,7 +165762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uradisam-6779da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uradisam-6779da.jpg" }, { "if": { @@ -165543,7 +165782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gorgia-bfebe4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gorgia-bfebe4.jpg" }, { "if": { @@ -165562,7 +165801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amano-dd401d.png" + "then": "https://data.mapcomplete.org/nsi//logos/amano-dd401d.png" }, { "if": { @@ -165581,7 +165820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cainzhome-dd401d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cainzhome-dd401d.jpg" }, { "if": { @@ -165600,7 +165839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kohnan-dd401d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kohnan-dd401d.jpg" }, { "if": { @@ -165619,7 +165858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komeripro-dd401d.png" + "then": "https://data.mapcomplete.org/nsi//logos/komeripro-dd401d.png" }, { "if": { @@ -165638,7 +165877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komerihardandgreen-dd401d.png" + "then": "https://data.mapcomplete.org/nsi//logos/komerihardandgreen-dd401d.png" }, { "if": { @@ -165657,7 +165896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komeripower-dd401d.png" + "then": "https://data.mapcomplete.org/nsi//logos/komeripower-dd401d.png" }, { "if": { @@ -165677,7 +165916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supervivahome-dd401d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/supervivahome-dd401d.svg" }, { "if": { @@ -165696,7 +165935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nafco-dd401d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nafco-dd401d.svg" }, { "if": { @@ -165716,7 +165955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivahome-dd401d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vivahome-dd401d.svg" }, { "if": { @@ -165735,7 +165974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watahanhomeaid-dd401d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/watahanhomeaid-dd401d.svg" }, { "if": { @@ -165750,7 +165989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adlo-46a8ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adlo-46a8ae.jpg" }, { "if": { @@ -165765,7 +166004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5asec-e2c813.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/5asec-e2c813.jpg" }, { "if": { @@ -165780,7 +166019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cdonepricecleaners-1b6f6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cdonepricecleaners-1b6f6c.jpg" }, { "if": { @@ -165795,7 +166034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnsons-a4fd49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnsons-a4fd49.jpg" }, { "if": { @@ -165810,7 +166049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kims-425993.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kims-425993.jpg" }, { "if": { @@ -165825,7 +166064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martinizingdrycleaning-e2c813.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/martinizingdrycleaning-e2c813.jpg" }, { "if": { @@ -165840,7 +166079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tidecleaners-1b6f6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/tidecleaners-1b6f6c.png" }, { "if": { @@ -165855,7 +166094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zipsdrycleaning-1b6f6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/zipsdrycleaning-1b6f6c.png" }, { "if": { @@ -165870,7 +166109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/21adb0-1a9348.png" + "then": "https://data.mapcomplete.org/nsi//logos/21adb0-1a9348.png" }, { "if": { @@ -165889,7 +166128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usachancleaning-3105a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/usachancleaning-3105a6.png" }, { "if": { @@ -165908,7 +166147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diacleaning-3105a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diacleaning-3105a6.jpg" }, { "if": { @@ -165927,7 +166166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/takakensunshine-3105a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/takakensunshine-3105a6.jpg" }, { "if": { @@ -165946,7 +166185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/youngdry-3105a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/youngdry-3105a6.png" }, { "if": { @@ -165965,7 +166204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hakuyosha-3105a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hakuyosha-3105a6.jpg" }, { "if": { @@ -165980,7 +166219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cigusto-469b75.png" + "then": "https://data.mapcomplete.org/nsi//logos/cigusto-469b75.png" }, { "if": { @@ -165995,7 +166234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecigcity-1253ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecigcity-1253ad.jpg" }, { "if": { @@ -166010,7 +166249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evapo-a06c95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evapo-a06c95.jpg" }, { "if": { @@ -166025,7 +166264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flavourvapour-a06c95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flavourvapour-a06c95.jpg" }, { "if": { @@ -166040,7 +166279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iqos-721085.svg" + "then": "https://data.mapcomplete.org/nsi//logos/iqos-721085.svg" }, { "if": { @@ -166055,7 +166294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sofly-349359.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sofly-349359.jpg" }, { "if": { @@ -166070,7 +166309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totallywicked-a06c95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/totallywicked-a06c95.jpg" }, { "if": { @@ -166085,7 +166324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umbrella-1bb1e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umbrella-1bb1e0.jpg" }, { "if": { @@ -166100,7 +166339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vapostore-4d07cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vapostore-4d07cc.jpg" }, { "if": { @@ -166115,7 +166354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/batteryworld-31899b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/batteryworld-31899b.jpg" }, { "if": { @@ -166130,7 +166369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cef-7c8ef7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cef-7c8ef7.jpg" }, { "if": { @@ -166145,7 +166384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityelectricsupply-83ef7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityelectricsupply-83ef7e.jpg" }, { "if": { @@ -166160,7 +166399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denmans-00236e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/denmans-00236e.jpg" }, { "if": { @@ -166175,7 +166414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rexel-091354.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rexel-091354.jpg" }, { "if": { @@ -166190,7 +166429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonepar-bfcbb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/sonepar-bfcbb0.png" }, { "if": { @@ -166205,7 +166444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yessselectrical-d3cc8c.png" + "then": "https://data.mapcomplete.org/nsi//logos/yessselectrical-d3cc8c.png" }, { "if": { @@ -166220,7 +166459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yessselectrique-21dd29.png" + "then": "https://data.mapcomplete.org/nsi//logos/yessselectrique-21dd29.png" }, { "if": { @@ -166235,7 +166474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yessselektro-edc057.png" + "then": "https://data.mapcomplete.org/nsi//logos/yessselektro-edc057.png" }, { "if": { @@ -166254,7 +166493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kafkas-7ed04e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kafkas-7ed04e.jpg" }, { "if": { @@ -166269,7 +166508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abcwarehouse-93e093.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abcwarehouse-93e093.jpg" }, { "if": { @@ -166284,7 +166523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abenson-9584c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abenson-9584c3.jpg" }, { "if": { @@ -166299,7 +166538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altex-9c4b16.png" + "then": "https://data.mapcomplete.org/nsi//logos/altex-9c4b16.png" }, { "if": { @@ -166317,7 +166556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alza-5fa1c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alza-5fa1c3.jpg" }, { "if": { @@ -166333,7 +166572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applestore-9377b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/applestore-9377b7.svg" }, { "if": { @@ -166348,7 +166587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/automaticcentre-9584c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/automaticcentre-9584c3.jpg" }, { "if": { @@ -166363,7 +166602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b8ta-93e093.png" + "then": "https://data.mapcomplete.org/nsi//logos/b8ta-93e093.png" }, { "if": { @@ -166378,7 +166617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/batteriesplusbulbs-93e093.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/batteriesplusbulbs-93e093.jpg" }, { "if": { @@ -166393,7 +166632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestbuy-da277f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bestbuy-da277f.jpg" }, { "if": { @@ -166408,7 +166647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestbuyexpress-88d59f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bestbuyexpress-88d59f.png" }, { "if": { @@ -166423,7 +166662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/binglee-026a7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/binglee-026a7a.jpg" }, { "if": { @@ -166438,7 +166677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bork-138e7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bork-138e7e.jpg" }, { "if": { @@ -166453,7 +166692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bosch-9377b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bosch-9377b7.jpg" }, { "if": { @@ -166468,7 +166707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boulanger-5cf230.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boulanger-5cf230.jpg" }, { "if": { @@ -166483,7 +166722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brain-f31684.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brain-f31684.jpg" }, { "if": { @@ -166498,7 +166737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brookstone-93e093.svg" + "then": "https://data.mapcomplete.org/nsi//logos/brookstone-93e093.svg" }, { "if": { @@ -166515,7 +166754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bug-f7cc4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bug-f7cc4f.jpg" }, { "if": { @@ -166530,7 +166769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capielectronics-cec7c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/capielectronics-cec7c5.png" }, { "if": { @@ -166545,7 +166784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cex-75e32e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cex-75e32e.svg" }, { "if": { @@ -166560,7 +166799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comet-41f013.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comet-41f013.jpg" }, { "if": { @@ -166575,7 +166814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comfy-f31684.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comfy-f31684.jpg" }, { "if": { @@ -166590,7 +166829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conrad-a3c660.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conrad-a3c660.jpg" }, { "if": { @@ -166605,7 +166844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coolblue-5a7634.png" + "then": "https://data.mapcomplete.org/nsi//logos/coolblue-5a7634.png" }, { "if": { @@ -166620,7 +166859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/croma-91ea11.gif" + "then": "https://data.mapcomplete.org/nsi//logos/croma-91ea11.gif" }, { "if": { @@ -166635,7 +166874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/currys-5f4e0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/currys-5f4e0b.jpg" }, { "if": { @@ -166650,7 +166889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/darty-38013c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/darty-38013c.jpg" }, { "if": { @@ -166665,7 +166904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/datacomp-bbcba3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/datacomp-bbcba3.jpg" }, { "if": { @@ -166680,7 +166919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/datart-8bbdd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/datart-8bbdd1.png" }, { "if": { @@ -166695,7 +166934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/didelectrical-4873ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/didelectrical-4873ea.jpg" }, { "if": { @@ -166715,7 +166954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dns-71b2fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dns-71b2fd.jpg" }, { "if": { @@ -166730,7 +166969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclercespaceculturel-38013c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclercespaceculturel-38013c.jpg" }, { "if": { @@ -166745,7 +166984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eldi-17d2c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/eldi-17d2c2.png" }, { "if": { @@ -166760,7 +166999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eldorado-f31684.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eldorado-f31684.jpg" }, { "if": { @@ -166775,7 +167014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electroplanet-293070.png" + "then": "https://data.mapcomplete.org/nsi//logos/electroplanet-293070.png" }, { "if": { @@ -166790,7 +167029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektra-10d776.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elektra-10d776.jpg" }, { "if": { @@ -166805,7 +167044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elgiganten-540210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elgiganten-540210.jpg" }, { "if": { @@ -166819,7 +167058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elkjop-5875d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elkjop-5875d7.jpg" }, { "if": { @@ -166833,7 +167072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ep-a53b66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ep-a53b66.jpg" }, { "if": { @@ -166848,7 +167087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eta-8bbdd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eta-8bbdd1.jpg" }, { "if": { @@ -166863,7 +167102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euronics-b0e3ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/euronics-b0e3ca.png" }, { "if": { @@ -166878,7 +167117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euronics-50d984.png" + "then": "https://data.mapcomplete.org/nsi//logos/euronics-50d984.png" }, { "if": { @@ -166893,7 +167132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expert-b0e3ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/expert-b0e3ca.png" }, { "if": { @@ -166908,7 +167147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flanco-9c4b16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flanco-9c4b16.jpg" }, { "if": { @@ -166923,7 +167162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fnac-8dde8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/fnac-8dde8e.png" }, { "if": { @@ -166938,7 +167177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fravega-6d37eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fravega-6d37eb.jpg" }, { "if": { @@ -166954,7 +167193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fryselectronics-93e093.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fryselectronics-93e093.svg" }, { "if": { @@ -166969,7 +167208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fust-c12012.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fust-c12012.svg" }, { "if": { @@ -166984,7 +167223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/garbarino-6d37eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/garbarino-6d37eb.jpg" }, { "if": { @@ -166999,7 +167238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eletroshow-2bf2c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eletroshow-2bf2c3.jpg" }, { "if": { @@ -167014,7 +167253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gigantti-741a81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gigantti-741a81.jpg" }, { "if": { @@ -167031,7 +167270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gigatron-7d20f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gigatron-7d20f1.jpg" }, { "if": { @@ -167046,7 +167285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gitem-38013c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gitem-38013c.jpg" }, { "if": { @@ -167061,7 +167300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hartlauer-7212ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/hartlauer-7212ef.png" }, { "if": { @@ -167076,7 +167315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harveynorman-69a197.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harveynorman-69a197.jpg" }, { "if": { @@ -167091,7 +167330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hificorp-66e407.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hificorp-66e407.jpg" }, { "if": { @@ -167106,7 +167345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homealong-9584c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homealong-9584c3.jpg" }, { "if": { @@ -167121,7 +167360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ibyte-2bf2c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ibyte-2bf2c3.jpg" }, { "if": { @@ -167136,7 +167375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/incredible-1dda3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/incredible-1dda3b.jpg" }, { "if": { @@ -167151,7 +167390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inmotion-2d3e16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inmotion-2d3e16.jpg" }, { "if": { @@ -167166,7 +167405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interdiscount-c12012.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/interdiscount-c12012.jpg" }, { "if": { @@ -167181,7 +167420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istores-8bbdd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istores-8bbdd1.jpg" }, { "if": { @@ -167196,7 +167435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istyle-e9662e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istyle-e9662e.jpg" }, { "if": { @@ -167215,7 +167454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ivory-f7cc4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ivory-f7cc4f.jpg" }, { "if": { @@ -167230,7 +167469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jaycar-2d5b11.png" + "then": "https://data.mapcomplete.org/nsi//logos/jaycar-2d5b11.png" }, { "if": { @@ -167245,7 +167484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jbhifi-2d5b11.png" + "then": "https://data.mapcomplete.org/nsi//logos/jbhifi-2d5b11.png" }, { "if": { @@ -167260,7 +167499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kjellandcompany-4786d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/kjellandcompany-4786d4.png" }, { "if": { @@ -167275,7 +167514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komputronik-2b5e29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komputronik-2b5e29.jpg" }, { "if": { @@ -167290,7 +167529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kotsovolos-f48fcd.png" + "then": "https://data.mapcomplete.org/nsi//logos/kotsovolos-f48fcd.png" }, { "if": { @@ -167305,7 +167544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krefel-17d2c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krefel-17d2c2.jpg" }, { "if": { @@ -167320,7 +167559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ksp-f7cc4f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ksp-f7cc4f.png" }, { "if": { @@ -167335,7 +167574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacuracao-9377b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacuracao-9377b7.jpg" }, { "if": { @@ -167350,7 +167589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasereletro-2bf2c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/lasereletro-2bf2c3.png" }, { "if": { @@ -167365,7 +167604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lg-9377b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lg-9377b7.jpg" }, { "if": { @@ -167380,7 +167619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxelektro-2b5e29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxelektro-2b5e29.jpg" }, { "if": { @@ -167395,7 +167634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mda-5cf230.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mda-5cf230.jpg" }, { "if": { @@ -167410,7 +167649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediaexpert-2b5e29.png" + "then": "https://data.mapcomplete.org/nsi//logos/mediaexpert-2b5e29.png" }, { "if": { @@ -167425,7 +167664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediahome-50d984.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mediahome-50d984.jpg" }, { "if": { @@ -167440,7 +167679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediamarkt-19e894.png" + "then": "https://data.mapcomplete.org/nsi//logos/mediamarkt-19e894.png" }, { "if": { @@ -167455,7 +167694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediaworld-41f013.png" + "then": "https://data.mapcomplete.org/nsi//logos/mediaworld-41f013.png" }, { "if": { @@ -167470,7 +167709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medimax-50d984.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/medimax-50d984.jpg" }, { "if": { @@ -167485,7 +167724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megatone-6d37eb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/megatone-6d37eb.svg" }, { "if": { @@ -167504,7 +167743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mistore-e0cb84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mistore-e0cb84.jpg" }, { "if": { @@ -167519,7 +167758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miele-9377b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/miele-9377b7.png" }, { "if": { @@ -167534,7 +167773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milar-c76981.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milar-c76981.jpg" }, { "if": { @@ -167549,7 +167788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moyo-f31684.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moyo-f31684.jpg" }, { "if": { @@ -167564,7 +167803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/musimundo-6d37eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/musimundo-6d37eb.jpg" }, { "if": { @@ -167579,7 +167818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nay-bbcba3.png" + "then": "https://data.mapcomplete.org/nsi//logos/nay-bbcba3.png" }, { "if": { @@ -167594,7 +167833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neonet-2b5e29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neonet-2b5e29.jpg" }, { "if": { @@ -167609,7 +167848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neopunkt-2b5e29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neopunkt-2b5e29.jpg" }, { "if": { @@ -167624,7 +167863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netonnet-09807a.png" + "then": "https://data.mapcomplete.org/nsi//logos/netonnet-09807a.png" }, { "if": { @@ -167639,7 +167878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noelleeming-5f4367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noelleeming-5f4367.jpg" }, { "if": { @@ -167654,7 +167893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okay-8bbdd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okay-8bbdd1.jpg" }, { "if": { @@ -167669,7 +167908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osim-3e8e54.png" + "then": "https://data.mapcomplete.org/nsi//logos/osim-3e8e54.png" }, { "if": { @@ -167684,7 +167923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pcrichardandson-93e093.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pcrichardandson-93e093.jpg" }, { "if": { @@ -167699,7 +167938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plaisio-ddaeac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plaisio-ddaeac.jpg" }, { "if": { @@ -167714,7 +167953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/planeoelektro-8bbdd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/planeoelektro-8bbdd1.jpg" }, { "if": { @@ -167729,7 +167968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polishop-2bf2c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polishop-2bf2c3.jpg" }, { "if": { @@ -167744,7 +167983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/power-9765c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/power-9765c4.png" }, { "if": { @@ -167759,7 +167998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerbuy-d95acb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerbuy-d95acb.jpg" }, { "if": { @@ -167774,7 +168013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proandcie-5cf230.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/proandcie-5cf230.jpg" }, { "if": { @@ -167789,7 +168028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/public-f48fcd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/public-f48fcd.jpg" }, { "if": { @@ -167804,7 +168043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radioshack-9377b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/radioshack-9377b7.svg" }, { "if": { @@ -167819,7 +168058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reliancedigital-91ea11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reliancedigital-91ea11.jpg" }, { "if": { @@ -167834,7 +168073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rtveuroagd-2b5e29.png" + "then": "https://data.mapcomplete.org/nsi//logos/rtveuroagd-2b5e29.png" }, { "if": { @@ -167849,7 +168088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samsung-5b1c20.png" + "then": "https://data.mapcomplete.org/nsi//logos/samsung-5b1c20.png" }, { "if": { @@ -167864,7 +168103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saturn-cc2119.png" + "then": "https://data.mapcomplete.org/nsi//logos/saturn-cc2119.png" }, { "if": { @@ -167879,7 +168118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saversappliances-9584c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/saversappliances-9584c3.png" }, { "if": { @@ -167894,7 +168133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senheng-5d0e2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senheng-5d0e2e.jpg" }, { "if": { @@ -167909,7 +168148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simplymac-93e093.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/simplymac-93e093.jpg" }, { "if": { @@ -167924,7 +168163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sony-9377b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/sony-9377b7.png" }, { "if": { @@ -167939,7 +168178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonycentre-9377b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonycentre-9377b7.jpg" }, { "if": { @@ -167954,7 +168193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steren-21e489.png" + "then": "https://data.mapcomplete.org/nsi//logos/steren-21e489.png" }, { "if": { @@ -167973,7 +168212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/techmart-47dfb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/techmart-47dfb8.jpg" }, { "if": { @@ -167990,7 +168229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technopolis-47dfb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/technopolis-47dfb8.png" }, { "if": { @@ -168007,7 +168246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tehnomanija-7d20f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tehnomanija-7d20f1.jpg" }, { "if": { @@ -168022,7 +168261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tehnomedia-7d20f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tehnomedia-7d20f1.jpg" }, { "if": { @@ -168037,7 +168276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teknikmagasinet-bae196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teknikmagasinet-bae196.jpg" }, { "if": { @@ -168052,7 +168291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teknosa-194b37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teknosa-194b37.jpg" }, { "if": { @@ -168067,7 +168306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegoodguys-026a7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegoodguys-026a7a.jpg" }, { "if": { @@ -168082,7 +168321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trony-41f013.png" + "then": "https://data.mapcomplete.org/nsi//logos/trony-41f013.png" }, { "if": { @@ -168097,7 +168336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unieuro-41f013.png" + "then": "https://data.mapcomplete.org/nsi//logos/unieuro-41f013.png" }, { "if": { @@ -168112,7 +168351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vandenborre-17d2c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/vandenborre-17d2c2.png" }, { "if": { @@ -168127,7 +168366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vatanbilgisayar-194b37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vatanbilgisayar-194b37.jpg" }, { "if": { @@ -168142,7 +168381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vestel-194b37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vestel-194b37.jpg" }, { "if": { @@ -168157,7 +168396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/videoonly-5e4651.png" + "then": "https://data.mapcomplete.org/nsi//logos/videoonly-5e4651.png" }, { "if": { @@ -168172,7 +168411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vijaysales-91ea11.png" + "then": "https://data.mapcomplete.org/nsi//logos/vijaysales-91ea11.png" }, { "if": { @@ -168187,7 +168426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visionselectronics-88d59f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visionselectronics-88d59f.jpg" }, { "if": { @@ -168202,7 +168441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worten-f7e8ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/worten-f7e8ae.png" }, { "if": { @@ -168217,7 +168456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xkom-2b5e29.png" + "then": "https://data.mapcomplete.org/nsi//logos/xkom-2b5e29.png" }, { "if": { @@ -168232,7 +168471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c1a7fd-f31684.png" + "then": "https://data.mapcomplete.org/nsi//logos/c1a7fd-f31684.png" }, { "if": { @@ -168249,7 +168488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zora-47dfb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/zora-47dfb8.png" }, { "if": { @@ -168268,7 +168507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mvideo-71b2fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mvideo-71b2fd.jpg" }, { "if": { @@ -168283,7 +168522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/66795d-71b2fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/66795d-71b2fd.png" }, { "if": { @@ -168298,7 +168537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6221b2-f31684.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/6221b2-f31684.jpg" }, { "if": { @@ -168315,7 +168554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technomarket-47dfb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/technomarket-47dfb8.jpg" }, { "if": { @@ -168334,7 +168573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foxtrot-f31684.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foxtrot-f31684.jpg" }, { "if": { @@ -168353,7 +168592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citrus-f31684.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citrus-f31684.jpg" }, { "if": { @@ -168368,7 +168607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d6f3ca-71b2fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/d6f3ca-71b2fd.png" }, { "if": { @@ -168387,7 +168626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iplus-e0cb84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iplus-e0cb84.jpg" }, { "if": { @@ -168406,7 +168645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ispace-e0cb84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ispace-e0cb84.jpg" }, { "if": { @@ -168425,7 +168664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itechnics-e0cb84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itechnics-e0cb84.jpg" }, { "if": { @@ -168444,7 +168683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alta-e0cb84.png" + "then": "https://data.mapcomplete.org/nsi//logos/alta-e0cb84.png" }, { "if": { @@ -168463,7 +168702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elitelectronics-e0cb84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elitelectronics-e0cb84.jpg" }, { "if": { @@ -168482,7 +168721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoommer-e0cb84.png" + "then": "https://data.mapcomplete.org/nsi//logos/zoommer-e0cb84.png" }, { "if": { @@ -168501,7 +168740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kontakthome-e0cb84.png" + "then": "https://data.mapcomplete.org/nsi//logos/kontakthome-e0cb84.png" }, { "if": { @@ -168520,7 +168759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megatechnica-e0cb84.png" + "then": "https://data.mapcomplete.org/nsi//logos/megatechnica-e0cb84.png" }, { "if": { @@ -168539,7 +168778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metromart-e0cb84.png" + "then": "https://data.mapcomplete.org/nsi//logos/metromart-e0cb84.png" }, { "if": { @@ -168558,7 +168797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technoboom-e0cb84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/technoboom-e0cb84.jpg" }, { "if": { @@ -168577,7 +168816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicom-e0cb84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unicom-e0cb84.jpg" }, { "if": { @@ -168596,7 +168835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edion-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edion-f86f5e.jpg" }, { "if": { @@ -168615,7 +168854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ksdenki-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ksdenki-f86f5e.jpg" }, { "if": { @@ -168637,7 +168876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3dc97a-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3dc97a-f86f5e.jpg" }, { "if": { @@ -168656,7 +168895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sofmap-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sofmap-f86f5e.jpg" }, { "if": { @@ -168675,7 +168914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denkichi-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/denkichi-f86f5e.jpg" }, { "if": { @@ -168694,7 +168933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nojima-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nojima-f86f5e.jpg" }, { "if": { @@ -168713,7 +168952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biccamera-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biccamera-f86f5e.jpg" }, { "if": { @@ -168733,7 +168972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamadadenki-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamadadenki-f86f5e.jpg" }, { "if": { @@ -168752,7 +168991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yodobashicamera-f86f5e.png" + "then": "https://data.mapcomplete.org/nsi//logos/yodobashicamera-f86f5e.png" }, { "if": { @@ -168771,7 +169010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samsung-b5a9fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/samsung-b5a9fa.png" }, { "if": { @@ -168790,7 +169029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chungyuenelectrical-d4a36a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chungyuenelectrical-d4a36a.jpg" }, { "if": { @@ -168817,7 +169056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elifemall-745265.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elifemall-745265.jpg" }, { "if": { @@ -168836,7 +169075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tatung3c-745265.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tatung3c-745265.jpg" }, { "if": { @@ -168855,7 +169094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cmkelectricalstore-d4a36a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cmkelectricalstore-d4a36a.jpg" }, { "if": { @@ -168874,7 +169113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsannkuen3c-745265.png" + "then": "https://data.mapcomplete.org/nsi//logos/tsannkuen3c-745265.png" }, { "if": { @@ -168893,7 +169132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/broadway-d4a36a.png" + "then": "https://data.mapcomplete.org/nsi//logos/broadway-d4a36a.png" }, { "if": { @@ -168912,7 +169151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suning-d4a36a.png" + "then": "https://data.mapcomplete.org/nsi//logos/suning-d4a36a.png" }, { "if": { @@ -168931,7 +169170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortress-803084.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortress-803084.png" }, { "if": { @@ -168950,7 +169189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunfar-745265.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunfar-745265.jpg" }, { "if": { @@ -168969,7 +169208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surugaya-f86f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surugaya-f86f5e.jpg" }, { "if": { @@ -168984,7 +169223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adamandeve-3dd49d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/adamandeve-3dd49d.svg" }, { "if": { @@ -169000,7 +169239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazingintimateessentials-19b273.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amazingintimateessentials-19b273.jpg" }, { "if": { @@ -169015,7 +169254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/annsummers-d8134e.png" + "then": "https://data.mapcomplete.org/nsi//logos/annsummers-d8134e.png" }, { "if": { @@ -169030,7 +169269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hustlerhollywood-19b273.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hustlerhollywood-19b273.jpg" }, { "if": { @@ -169045,7 +169284,22 @@ } ] }, - "then": "./assets/data/nsi/logos/orion-161155.gif" + "then": "https://data.mapcomplete.org/nsi//logos/orion-161155.gif" + }, + { + "if": { + "and": [ + "shop=erotic", + { + "or": [ + "brand=Pulse and Cocktails", + "brand:wikidata=Q7259672", + "name=Pulse and Cocktails" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/pulseandcocktails-7c5775.jpg" }, { "if": { @@ -169064,7 +169318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinkrabbit-d62b6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pinkrabbit-d62b6e.jpg" }, { "if": { @@ -169079,7 +169333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fabricland-354780.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fabricland-354780.jpg" }, { "if": { @@ -169094,7 +169348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincraft-a43b83.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincraft-a43b83.png" }, { "if": { @@ -169109,7 +169363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/modatelas-f2c89b.png" + "then": "https://data.mapcomplete.org/nsi//logos/modatelas-f2c89b.png" }, { "if": { @@ -169124,7 +169378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mondialtissus-382b94.png" + "then": "https://data.mapcomplete.org/nsi//logos/mondialtissus-382b94.png" }, { "if": { @@ -169139,7 +169393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parisina-f2c89b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/parisina-f2c89b.svg" }, { "if": { @@ -169154,7 +169408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spotlight-0e32f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/spotlight-0e32f9.png" }, { "if": { @@ -169169,7 +169423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wollerodel-eca069.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wollerodel-eca069.jpg" }, { "if": { @@ -169184,7 +169438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accessorize-8a0f0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accessorize-8a0f0d.jpg" }, { "if": { @@ -169199,7 +169453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bottegaveneta-afbfc9.png" + "then": "https://data.mapcomplete.org/nsi//logos/bottegaveneta-afbfc9.png" }, { "if": { @@ -169214,7 +169468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightoncollectibles-5ec70d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightoncollectibles-5ec70d.jpg" }, { "if": { @@ -169229,7 +169483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bvlgari-afbfc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bvlgari-afbfc9.jpg" }, { "if": { @@ -169244,7 +169498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chillibeans-a3a9e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/chillibeans-a3a9e0.png" }, { "if": { @@ -169259,7 +169513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/claires-afbfc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/claires-afbfc9.jpg" }, { "if": { @@ -169274,7 +169528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dooneyandbourke-5ec70d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dooneyandbourke-5ec70d.jpg" }, { "if": { @@ -169289,7 +169543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastrack-f7d569.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastrack-f7d569.jpg" }, { "if": { @@ -169304,7 +169558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guessaccessories-afbfc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guessaccessories-afbfc9.jpg" }, { "if": { @@ -169319,7 +169573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longchamp-afbfc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longchamp-afbfc9.jpg" }, { "if": { @@ -169334,7 +169588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcm-afbfc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcm-afbfc9.jpg" }, { "if": { @@ -169349,7 +169603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mimco-479fdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mimco-479fdf.jpg" }, { "if": { @@ -169364,7 +169618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montblanc-afbfc9.png" + "then": "https://data.mapcomplete.org/nsi//logos/montblanc-afbfc9.png" }, { "if": { @@ -169379,7 +169633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mulberry-e1f087.png" + "then": "https://data.mapcomplete.org/nsi//logos/mulberry-e1f087.png" }, { "if": { @@ -169394,7 +169648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parfois-afbfc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parfois-afbfc9.jpg" }, { "if": { @@ -169409,7 +169663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porschedesign-afbfc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porschedesign-afbfc9.jpg" }, { "if": { @@ -169425,7 +169679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radleylondon-7b21fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radleylondon-7b21fd.jpg" }, { "if": { @@ -169440,7 +169694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vancleefandarpels-5ec70d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vancleefandarpels-5ec70d.jpg" }, { "if": { @@ -169455,7 +169709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anglingdirect-564c97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anglingdirect-564c97.jpg" }, { "if": { @@ -169474,7 +169728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casting-b62eaa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casting-b62eaa.jpg" }, { "if": { @@ -169493,7 +169747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tackleberry-b62eaa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tackleberry-b62eaa.jpg" }, { "if": { @@ -169508,7 +169762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breno-198c44.png" + "then": "https://data.mapcomplete.org/nsi//logos/breno-198c44.png" }, { "if": { @@ -169523,7 +169777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/choicesflooring-42cf07.png" + "then": "https://data.mapcomplete.org/nsi//logos/choicesflooring-42cf07.png" }, { "if": { @@ -169538,7 +169792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diego-be714e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diego-be714e.jpg" }, { "if": { @@ -169553,7 +169807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flooranddecor-59a49c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flooranddecor-59a49c.jpg" }, { "if": { @@ -169568,7 +169822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floorworld-c8adcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/floorworld-c8adcf.jpg" }, { "if": { @@ -169583,7 +169837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lumberliquidators-a4febc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lumberliquidators-a4febc.jpg" }, { "if": { @@ -169598,7 +169852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topcarpetsandfloors-f6b058.png" + "then": "https://data.mapcomplete.org/nsi//logos/topcarpetsandfloors-f6b058.png" }, { "if": { @@ -169613,7 +169867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blume2000-ba57f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blume2000-ba57f4.jpg" }, { "if": { @@ -169628,7 +169882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blumenbandb-bec75c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blumenbandb-bec75c.jpg" }, { "if": { @@ -169643,7 +169897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blumenrisse-ba57f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blumenrisse-ba57f4.jpg" }, { "if": { @@ -169658,7 +169912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flamengo-95ef9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flamengo-95ef9a.jpg" }, { "if": { @@ -169673,7 +169927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hollandblumenmark-bec75c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hollandblumenmark-bec75c.jpg" }, { "if": { @@ -169688,7 +169942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interflora-6ef878.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/interflora-6ef878.jpg" }, { "if": { @@ -169703,7 +169957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kvetyvictor-36bd0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/kvetyvictor-36bd0b.png" }, { "if": { @@ -169718,7 +169972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monceaufleurs-486692.png" + "then": "https://data.mapcomplete.org/nsi//logos/monceaufleurs-486692.png" }, { "if": { @@ -169733,7 +169987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dfec3b-1841ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/dfec3b-1841ed.png" }, { "if": { @@ -169752,7 +170006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aoyamaflowermarket-727799.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aoyamaflowermarket-727799.jpg" }, { "if": { @@ -169767,7 +170021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cook-d47c9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cook-d47c9b.jpg" }, { "if": { @@ -169783,7 +170037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dreamdinners-98e558.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dreamdinners-98e558.jpg" }, { "if": { @@ -169798,7 +170052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecomiam-e0768d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecomiam-e0768d.jpg" }, { "if": { @@ -169813,7 +170067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmfoods-b6d6f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmfoods-b6d6f9.jpg" }, { "if": { @@ -169828,7 +170082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iceland-0c2cb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iceland-0c2cb7.jpg" }, { "if": { @@ -169843,7 +170097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasirena-1a08fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lasirena-1a08fe.jpg" }, { "if": { @@ -169858,7 +170112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandmfoodmarket-3f4a2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandmfoodmarket-3f4a2c.jpg" }, { "if": { @@ -169873,7 +170127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picard-fd35ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/picard-fd35ee.jpg" }, { "if": { @@ -169888,7 +170142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thiriet-c153b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thiriet-c153b7.jpg" }, { "if": { @@ -169902,7 +170156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wesolapani-ec5a92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wesolapani-ec5a92.jpg" }, { "if": { @@ -169917,7 +170171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/538c69-b89636.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/538c69-b89636.jpg" }, { "if": { @@ -169934,7 +170188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elikatniproducts-b89636.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elikatniproducts-b89636.jpg" }, { "if": { @@ -169949,7 +170203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amatholefunerals-c8108b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amatholefunerals-c8108b.jpg" }, { "if": { @@ -169963,7 +170217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dignity-e90732.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dignity-e90732.jpg" }, { "if": { @@ -169979,7 +170233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grosshamburgerbestattungsinstitut-e9affe.gif" + "then": "https://data.mapcomplete.org/nsi//logos/grosshamburgerbestattungsinstitut-e9affe.gif" }, { "if": { @@ -169994,7 +170248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icebolethufunerals-c8108b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icebolethufunerals-c8108b.jpg" }, { "if": { @@ -170009,7 +170263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roceclerc-259041.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roceclerc-259041.jpg" }, { "if": { @@ -170024,7 +170278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecooperativefuneralcare-e90732.png" + "then": "https://data.mapcomplete.org/nsi//logos/thecooperativefuneralcare-e90732.png" }, { "if": { @@ -170043,7 +170297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cerema-224737.png" + "then": "https://data.mapcomplete.org/nsi//logos/cerema-224737.png" }, { "if": { @@ -170062,7 +170316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tear-224737.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tear-224737.svg" }, { "if": { @@ -170081,7 +170335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koekisha-224737.svg" + "then": "https://data.mapcomplete.org/nsi//logos/koekisha-224737.svg" }, { "if": { @@ -170096,7 +170350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1825interiors-0da980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1825interiors-0da980.jpg" }, { "if": { @@ -170111,7 +170365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameubel-e8ade6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ameubel-e8ade6.jpg" }, { "if": { @@ -170126,7 +170380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aarons-a694b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aarons-a694b9.jpg" }, { "if": { @@ -170141,7 +170395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agatameble-ad60fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/agatameble-ad60fa.png" }, { "if": { @@ -170156,7 +170410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aikoxxxl-685932.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aikoxxxl-685932.jpg" }, { "if": { @@ -170171,7 +170425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akhona-4d9761.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akhona-4d9761.jpg" }, { "if": { @@ -170186,7 +170440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amartfurniture-0da980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amartfurniture-0da980.jpg" }, { "if": { @@ -170201,7 +170455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americansignaturefurniture-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americansignaturefurniture-a5c7fa.jpg" }, { "if": { @@ -170216,7 +170470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arhaus-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arhaus-a5c7fa.jpg" }, { "if": { @@ -170232,7 +170486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ashleyhomestore-a694b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/ashleyhomestore-a694b9.png" }, { "if": { @@ -170247,7 +170501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asko-32ceba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asko-32ceba.jpg" }, { "if": { @@ -170264,7 +170518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/askonabytek-2a1637.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/askonabytek-2a1637.jpg" }, { "if": { @@ -170279,7 +170533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/askona-e999c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/askona-e999c2.jpg" }, { "if": { @@ -170294,7 +170548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/badcockhomefurnitureandmore-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/badcockhomefurnitureandmore-a5c7fa.jpg" }, { "if": { @@ -170309,7 +170563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bassettfurniture-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bassettfurniture-a5c7fa.jpg" }, { "if": { @@ -170324,7 +170578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beares-084a8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beares-084a8f.jpg" }, { "if": { @@ -170339,7 +170593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellona-a88d0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellona-a88d0c.jpg" }, { "if": { @@ -170354,7 +170608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bene-12c613.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bene-12c613.jpg" }, { "if": { @@ -170369,7 +170623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigsavefurniture-ac16b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/bigsavefurniture-ac16b9.png" }, { "if": { @@ -170384,7 +170638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackredwhite-12c613.png" + "then": "https://data.mapcomplete.org/nsi//logos/blackredwhite-12c613.png" }, { "if": { @@ -170399,7 +170653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobsdiscountfurniture-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobsdiscountfurniture-a5c7fa.jpg" }, { "if": { @@ -170414,7 +170668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boconcept-12c613.png" + "then": "https://data.mapcomplete.org/nsi//logos/boconcept-12c613.png" }, { "if": { @@ -170429,7 +170683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodzio-ad60fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodzio-ad60fa.jpg" }, { "if": { @@ -170444,7 +170698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bohus-dccdff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bohus-dccdff.jpg" }, { "if": { @@ -170459,7 +170713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bolia-a18722.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bolia-a18722.jpg" }, { "if": { @@ -170474,7 +170728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bradlows-4d9761.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bradlows-4d9761.jpg" }, { "if": { @@ -170489,7 +170743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/braunmobelcenter-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/braunmobelcenter-29dff1.jpg" }, { "if": { @@ -170506,7 +170760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishheartfoundationhomestore-5a41a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/britishheartfoundationhomestore-5a41a5.png" }, { "if": { @@ -170521,7 +170775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/but-18f673.png" + "then": "https://data.mapcomplete.org/nsi//logos/but-18f673.png" }, { "if": { @@ -170536,7 +170790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cabinetstogo-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cabinetstogo-a5c7fa.jpg" }, { "if": { @@ -170551,7 +170805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiaclosets-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiaclosets-a5c7fa.jpg" }, { "if": { @@ -170566,7 +170820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chateaudax-c96b56.png" + "then": "https://data.mapcomplete.org/nsi//logos/chateaudax-c96b56.png" }, { "if": { @@ -170581,7 +170835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conforama-6fff46.png" + "then": "https://data.mapcomplete.org/nsi//logos/conforama-6fff46.png" }, { "if": { @@ -170596,7 +170850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coricraft-0ebee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coricraft-0ebee2.jpg" }, { "if": { @@ -170611,7 +170865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cortfurnitureoutlet-a5c7fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/cortfurnitureoutlet-a5c7fa.png" }, { "if": { @@ -170626,7 +170880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cortfurniturerental-a5c7fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/cortfurniturerental-a5c7fa.png" }, { "if": { @@ -170641,7 +170895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/courts-0c6e04.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/courts-0c6e04.jpg" }, { "if": { @@ -170656,7 +170910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/courts-cfdd43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/courts-cfdd43.jpg" }, { "if": { @@ -170671,7 +170925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crateandbarrel-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crateandbarrel-a5c7fa.jpg" }, { "if": { @@ -170686,7 +170940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danskemobler-ac16b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/danskemobler-ac16b9.jpg" }, { "if": { @@ -170701,7 +170955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decodom-d1803c.png" + "then": "https://data.mapcomplete.org/nsi//logos/decodom-d1803c.png" }, { "if": { @@ -170716,7 +170970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/designwithinreach-d2381d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/designwithinreach-d2381d.jpg" }, { "if": { @@ -170731,7 +170985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/designersofas-94fffd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/designersofas-94fffd.jpg" }, { "if": { @@ -170746,7 +171000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dfs-94fffd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dfs-94fffd.jpg" }, { "if": { @@ -170761,7 +171015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/domayne-0da980.png" + "then": "https://data.mapcomplete.org/nsi//logos/domayne-0da980.png" }, { "if": { @@ -170776,7 +171030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/earlysettler-42aa1b.png" + "then": "https://data.mapcomplete.org/nsi//logos/earlysettler-42aa1b.png" }, { "if": { @@ -170791,7 +171045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easyhome-a33c55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easyhome-a33c55.jpg" }, { "if": { @@ -170806,7 +171060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethanallen-a694b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ethanallen-a694b9.jpg" }, { "if": { @@ -170821,7 +171075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ezlivingfurniture-53f64f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ezlivingfurniture-53f64f.jpg" }, { "if": { @@ -170835,7 +171089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fagmobler-c1bd40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fagmobler-c1bd40.jpg" }, { "if": { @@ -170850,7 +171104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fantasticfurniture-0da980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fantasticfurniture-0da980.jpg" }, { "if": { @@ -170865,7 +171119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fly-18f673.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fly-18f673.svg" }, { "if": { @@ -170884,7 +171138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/formaideale-7d4b0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/formaideale-7d4b0a.png" }, { "if": { @@ -170900,7 +171154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortunoffbackyardstore-a5c7fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortunoffbackyardstore-a5c7fa.png" }, { "if": { @@ -170915,7 +171169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freedom-0da980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freedom-0da980.jpg" }, { "if": { @@ -170930,7 +171184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/furniturevillage-5a41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/furniturevillage-5a41a5.jpg" }, { "if": { @@ -170945,7 +171199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gautier-12c613.png" + "then": "https://data.mapcomplete.org/nsi//logos/gautier-12c613.png" }, { "if": { @@ -170960,7 +171214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goossens-2b79f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goossens-2b79f5.jpg" }, { "if": { @@ -170975,7 +171229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/habitat-18f673.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/habitat-18f673.jpg" }, { "if": { @@ -170990,7 +171244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hardeck-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hardeck-29dff1.jpg" }, { "if": { @@ -171005,7 +171259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/havertys-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/havertys-a5c7fa.jpg" }, { "if": { @@ -171020,7 +171274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hermanmiller-12c613.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hermanmiller-12c613.jpg" }, { "if": { @@ -171035,7 +171289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoffner-29dff1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hoffner-29dff1.svg" }, { "if": { @@ -171050,7 +171304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/home24-29dff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/home24-29dff1.png" }, { "if": { @@ -171065,23 +171319,23 @@ } ] }, - "then": "./assets/data/nsi/logos/houseandhome-0ebee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houseandhome-0ebee2.jpg" }, { "if": { "and": [ - "official_name=High Seat Limited", "shop=furniture", { "or": [ "brand=HSL", "brand:wikidata=Q64284324", - "name=HSL" + "name=HSL", + "official_name=High Seat Limited" ] } ] }, - "then": "./assets/data/nsi/logos/hsl-5a41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsl-5a41a5.jpg" }, { "if": { @@ -171100,7 +171354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikeaplanningstudio-1705b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikeaplanningstudio-1705b1.jpg" }, { "if": { @@ -171115,7 +171369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isku-32ceba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isku-32ceba.jpg" }, { "if": { @@ -171130,7 +171384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istikbal-a88d0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istikbal-a88d0c.jpg" }, { "if": { @@ -171146,7 +171400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeromesfurniture-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeromesfurniture-a5c7fa.jpg" }, { "if": { @@ -171161,7 +171415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jysk-101bbf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jysk-101bbf.jpg" }, { "if": { @@ -171176,7 +171430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jysk-c1bd40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jysk-c1bd40.jpg" }, { "if": { @@ -171191,7 +171445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kartell-12c613.png" + "then": "https://data.mapcomplete.org/nsi//logos/kartell-12c613.png" }, { "if": { @@ -171206,7 +171460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelebek-a88d0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kelebek-a88d0c.png" }, { "if": { @@ -171221,7 +171475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kika-153ef8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kika-153ef8.jpg" }, { "if": { @@ -171240,7 +171494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitea-bfeed0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitea-bfeed0.jpg" }, { "if": { @@ -171255,7 +171509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwantum-2b79f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/kwantum-2b79f5.png" }, { "if": { @@ -171270,7 +171524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lazboy-637554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lazboy-637554.jpg" }, { "if": { @@ -171285,7 +171539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lauraashleyhome-5a41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lauraashleyhome-5a41a5.jpg" }, { "if": { @@ -171300,7 +171554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leenbakker-e8ade6.png" + "then": "https://data.mapcomplete.org/nsi//logos/leenbakker-e8ade6.png" }, { "if": { @@ -171315,7 +171569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leiner-153ef8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leiner-153ef8.jpg" }, { "if": { @@ -171330,7 +171584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leons-8eabee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leons-8eabee.jpg" }, { "if": { @@ -171345,7 +171599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lewis-084a8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lewis-084a8f.jpg" }, { "if": { @@ -171361,7 +171615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ligneroset-12c613.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ligneroset-12c613.jpg" }, { "if": { @@ -171376,7 +171630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/livique-be426f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/livique-be426f.jpg" }, { "if": { @@ -171391,7 +171645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lovesac-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lovesac-a5c7fa.jpg" }, { "if": { @@ -171406,7 +171660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madeiramadeira-dc6cdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madeiramadeira-dc6cdf.jpg" }, { "if": { @@ -171421,7 +171675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maisonsdumonde-41c8c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maisonsdumonde-41c8c3.jpg" }, { "if": { @@ -171436,7 +171690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meublesleon-20962f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meublesleon-20962f.jpg" }, { "if": { @@ -171451,7 +171705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mio-7805c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mio-7805c0.jpg" }, { "if": { @@ -171466,7 +171720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobelboss-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobelboss-29dff1.jpg" }, { "if": { @@ -171481,7 +171735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobelkraft-29dff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/mobelkraft-29dff1.png" }, { "if": { @@ -171496,7 +171750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobelmartin-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobelmartin-29dff1.jpg" }, { "if": { @@ -171511,7 +171765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobelix-0d6d80.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mobelix-0d6d80.svg" }, { "if": { @@ -171525,7 +171779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobelringen-c1bd40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobelringen-c1bd40.jpg" }, { "if": { @@ -171540,7 +171794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobexpert-e892fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/mobexpert-e892fd.png" }, { "if": { @@ -171555,7 +171809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/momax-a18722.png" + "then": "https://data.mapcomplete.org/nsi//logos/momax-a18722.png" }, { "if": { @@ -171570,7 +171824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mondi-a88d0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mondi-a88d0c.jpg" }, { "if": { @@ -171585,7 +171839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mondoconvenienza-615888.png" + "then": "https://data.mapcomplete.org/nsi//logos/mondoconvenienza-615888.png" }, { "if": { @@ -171600,23 +171854,23 @@ } ] }, - "then": "./assets/data/nsi/logos/monsieurmeuble-419760.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monsieurmeuble-419760.jpg" }, { "if": { "and": [ - "official_name=Mor Furniture for Less", "shop=furniture", { "or": [ "brand=Mor", "brand:wikidata=Q6908863", - "name=Mor Furniture" + "name=Mor Furniture", + "official_name=Mor Furniture for Less" ] } ] }, - "then": "./assets/data/nsi/logos/morfurniture-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morfurniture-a5c7fa.jpg" }, { "if": { @@ -171631,7 +171885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mueblesdico-278803.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mueblesdico-278803.jpg" }, { "if": { @@ -171646,7 +171900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/multipolster-29dff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/multipolster-29dff1.png" }, { "if": { @@ -171661,7 +171915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/musterring-12c613.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/musterring-12c613.jpg" }, { "if": { @@ -171676,7 +171930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natuzzi-cc79da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/natuzzi-cc79da.jpg" }, { "if": { @@ -171691,7 +171945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ncfliving-5a41a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/ncfliving-5a41a5.png" }, { "if": { @@ -171706,7 +171960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexthome-5a41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nexthome-5a41a5.jpg" }, { "if": { @@ -171721,7 +171975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nickscali-0da980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nickscali-0da980.jpg" }, { "if": { @@ -171740,7 +171994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nitori-a040a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nitori-a040a8.jpg" }, { "if": { @@ -171755,7 +172009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oakfurnitureland-5a41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oakfurnitureland-5a41a5.jpg" }, { "if": { @@ -171770,7 +172024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ofiprix-53177d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ofiprix-53177d.jpg" }, { "if": { @@ -171785,7 +172039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okfurniture-e98456.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okfurniture-e98456.jpg" }, { "if": { @@ -171800,7 +172054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ostermann-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ostermann-29dff1.jpg" }, { "if": { @@ -171815,7 +172069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ozdesignfurniture-0da980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ozdesignfurniture-0da980.jpg" }, { "if": { @@ -171830,7 +172084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pbteen-736374.png" + "then": "https://data.mapcomplete.org/nsi//logos/pbteen-736374.png" }, { "if": { @@ -171845,7 +172099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfister-be426f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pfister-be426f.jpg" }, { "if": { @@ -171860,7 +172114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plush-0da980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plush-0da980.jpg" }, { "if": { @@ -171875,7 +172129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poco-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poco-29dff1.jpg" }, { "if": { @@ -171890,7 +172144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poltronafrau-12c613.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poltronafrau-12c613.jpg" }, { "if": { @@ -171905,7 +172159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poltronesofa-488b55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poltronesofa-488b55.jpg" }, { "if": { @@ -171920,7 +172174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porta-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porta-29dff1.jpg" }, { "if": { @@ -171935,7 +172189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potterybarn-12c613.png" + "then": "https://data.mapcomplete.org/nsi//logos/potterybarn-12c613.png" }, { "if": { @@ -171950,7 +172204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potterybarnkids-12c613.png" + "then": "https://data.mapcomplete.org/nsi//logos/potterybarnkids-12c613.png" }, { "if": { @@ -171965,7 +172219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prontowonen-e8ade6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prontowonen-e8ade6.jpg" }, { "if": { @@ -171980,7 +172234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provincialhomeliving-0da980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provincialhomeliving-0da980.jpg" }, { "if": { @@ -171995,7 +172249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raymourandflanigan-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raymourandflanigan-a5c7fa.jpg" }, { "if": { @@ -172010,7 +172264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rentacenter-d2381d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rentacenter-d2381d.jpg" }, { "if": { @@ -172025,7 +172279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/restorationhardware-a694b9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/restorationhardware-a694b9.svg" }, { "if": { @@ -172040,7 +172294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochebobois-12c613.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochebobois-12c613.jpg" }, { "if": { @@ -172055,7 +172309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochester-4d9761.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochester-4d9761.jpg" }, { "if": { @@ -172070,7 +172324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rolfbenz-375bca.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rolfbenz-375bca.svg" }, { "if": { @@ -172085,7 +172339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roller-375bca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roller-375bca.jpg" }, { "if": { @@ -172100,7 +172354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roomstogo-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roomstogo-a5c7fa.jpg" }, { "if": { @@ -172115,7 +172369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roomstogokids-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roomstogokids-a5c7fa.jpg" }, { "if": { @@ -172130,7 +172384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russells-4d9761.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/russells-4d9761.jpg" }, { "if": { @@ -172145,7 +172399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rutar-153ef8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rutar-153ef8.jpg" }, { "if": { @@ -172160,7 +172414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schaffrath-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schaffrath-29dff1.jpg" }, { "if": { @@ -172179,7 +172433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scontomobelsofort-7ce246.png" + "then": "https://data.mapcomplete.org/nsi//logos/scontomobelsofort-7ce246.png" }, { "if": { @@ -172194,7 +172448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scs-5a41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scs-5a41a5.jpg" }, { "if": { @@ -172209,7 +172463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seatsandsofas-29dff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seatsandsofas-29dff1.jpg" }, { "if": { @@ -172224,7 +172478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/segmuller-29dff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/segmuller-29dff1.png" }, { "if": { @@ -172239,7 +172493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharps-5a41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sharps-5a41a5.jpg" }, { "if": { @@ -172254,7 +172508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siko-2a1637.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siko-2a1637.jpg" }, { "if": { @@ -172269,7 +172523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simpo-4067f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/simpo-4067f4.jpg" }, { "if": { @@ -172283,7 +172537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skeidar-c1bd40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skeidar-c1bd40.jpg" }, { "if": { @@ -172298,7 +172552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sofology-5a41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sofology-5a41a5.jpg" }, { "if": { @@ -172313,7 +172567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sotka-32ceba.png" + "then": "https://data.mapcomplete.org/nsi//logos/sotka-32ceba.png" }, { "if": { @@ -172328,7 +172582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/structube-a33c55.png" + "then": "https://data.mapcomplete.org/nsi//logos/structube-a33c55.png" }, { "if": { @@ -172343,7 +172597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebrick-a33c55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebrick-a33c55.jpg" }, { "if": { @@ -172358,7 +172612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokandstok-dc6cdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokandstok-dc6cdf.jpg" }, { "if": { @@ -172373,7 +172627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokandstokcompact-dc6cdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokandstokcompact-dc6cdf.jpg" }, { "if": { @@ -172388,7 +172642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokandstokstudio-dc6cdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokandstokstudio-dc6cdf.jpg" }, { "if": { @@ -172403,7 +172657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/urbanbarn-a33c55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/urbanbarn-a33c55.jpg" }, { "if": { @@ -172418,7 +172672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valuecityfurniture-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valuecityfurniture-a5c7fa.jpg" }, { "if": { @@ -172433,7 +172687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velleahome-e892fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velleahome-e892fd.jpg" }, { "if": { @@ -172448,7 +172702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velleahome-895b21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velleahome-895b21.jpg" }, { "if": { @@ -172463,7 +172717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westelm-12c613.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westelm-12c613.jpg" }, { "if": { @@ -172478,7 +172732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weylandts-4d9761.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weylandts-4d9761.jpg" }, { "if": { @@ -172493,7 +172747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xxxlutz-5acc6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/xxxlutz-5acc6e.png" }, { "if": { @@ -172508,7 +172762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zgallerie-a5c7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zgallerie-a5c7fa.jpg" }, { "if": { @@ -172523,7 +172777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zurbruggen-29dff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/zurbruggen-29dff1.png" }, { "if": { @@ -172540,7 +172794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velleahome-f5a340.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velleahome-f5a340.jpg" }, { "if": { @@ -172557,7 +172811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/videnovfurniture-685932.png" + "then": "https://data.mapcomplete.org/nsi//logos/videnovfurniture-685932.png" }, { "if": { @@ -172572,7 +172826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c3b771-e999c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/c3b771-e999c2.png" }, { "if": { @@ -172587,7 +172841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/47b09f-9d72c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/47b09f-9d72c8.png" }, { "if": { @@ -172605,7 +172859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jysk-2470a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jysk-2470a3.jpg" }, { "if": { @@ -172624,7 +172878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikea-3c9dc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikea-3c9dc7.jpg" }, { "if": { @@ -172643,7 +172897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nitori-3c9dc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nitori-3c9dc7.jpg" }, { "if": { @@ -172662,7 +172916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/francfranc-3c9dc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/francfranc-3c9dc7.jpg" }, { "if": { @@ -172681,7 +172935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikea-415aeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikea-415aeb.jpg" }, { "if": { @@ -172700,7 +172954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikea-2365c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikea-2365c1.jpg" }, { "if": { @@ -172719,7 +172973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nitori-8e7878.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nitori-8e7878.jpg" }, { "if": { @@ -172736,7 +172990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ozonebg-2df90d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ozonebg-2df90d.jpg" }, { "if": { @@ -172751,7 +173005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warhammer-f1fbcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warhammer-f1fbcb.jpg" }, { "if": { @@ -172766,7 +173020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zingpopculture-61e573.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zingpopculture-61e573.jpg" }, { "if": { @@ -172785,7 +173039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kurakura-00ca27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kurakura-00ca27.jpg" }, { "if": { @@ -172800,7 +173054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aveve-4760e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/aveve-4760e0.png" }, { "if": { @@ -172815,7 +173069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellaflora-fd70bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellaflora-fd70bd.jpg" }, { "if": { @@ -172830,7 +173084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blomsterlandet-8e04ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/blomsterlandet-8e04ed.png" }, { "if": { @@ -172844,7 +173098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluediamondgardencentres-02ecdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluediamondgardencentres-02ecdf.jpg" }, { "if": { @@ -172859,7 +173113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/botanic-afed88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/botanic-afed88.jpg" }, { "if": { @@ -172874,7 +173128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cotenature-afed88.png" + "then": "https://data.mapcomplete.org/nsi//logos/cotenature-afed88.png" }, { "if": { @@ -172889,7 +173143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dehner-ca7541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dehner-ca7541.jpg" }, { "if": { @@ -172904,7 +173158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dobbies-d259e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/dobbies-d259e3.png" }, { "if": { @@ -172919,7 +173173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclercjardi-20cffa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclercjardi-20cffa.jpg" }, { "if": { @@ -172934,7 +173188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gammvert-20cffa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gammvert-20cffa.jpg" }, { "if": { @@ -172949,7 +173203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groenrijk-dc6242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groenrijk-dc6242.jpg" }, { "if": { @@ -172964,7 +173218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intratuin-c9b478.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intratuin-c9b478.jpg" }, { "if": { @@ -172979,7 +173233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jardiland-20cffa.png" + "then": "https://data.mapcomplete.org/nsi//logos/jardiland-20cffa.png" }, { "if": { @@ -172994,7 +173248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magasinvert-afed88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magasinvert-afed88.jpg" }, { "if": { @@ -173009,7 +173263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mountfield-570714.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mountfield-570714.jpg" }, { "if": { @@ -173023,7 +173277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottergardencentres-d259e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottergardencentres-d259e3.jpg" }, { "if": { @@ -173038,7 +173292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmers-aac937.png" + "then": "https://data.mapcomplete.org/nsi//logos/palmers-aac937.png" }, { "if": { @@ -173053,7 +173307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plantagen-8e04ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plantagen-8e04ed.jpg" }, { "if": { @@ -173067,7 +173321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plantasjen-664184.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plantasjen-664184.jpg" }, { "if": { @@ -173082,7 +173336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pointvert-20cffa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pointvert-20cffa.jpg" }, { "if": { @@ -173097,7 +173351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truffaut-afed88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truffaut-afed88.jpg" }, { "if": { @@ -173112,7 +173366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villaverde-afed88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villaverde-afed88.jpg" }, { "if": { @@ -173127,7 +173381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartgardencenter-bffebc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartgardencenter-bffebc.jpg" }, { "if": { @@ -173142,7 +173396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartgardencentre-89cf3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartgardencentre-89cf3b.jpg" }, { "if": { @@ -173157,7 +173411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welkoop-dc6242.png" + "then": "https://data.mapcomplete.org/nsi//logos/welkoop-dc6242.png" }, { "if": { @@ -173172,7 +173426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zgraiffeisenmarkt-89aa0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zgraiffeisenmarkt-89aa0a.jpg" }, { "if": { @@ -173187,7 +173441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airliquide-65a0f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airliquide-65a0f8.jpg" }, { "if": { @@ -173202,7 +173456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airgas-666f52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airgas-666f52.jpg" }, { "if": { @@ -173218,7 +173472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amerigas-666f52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amerigas-666f52.jpg" }, { "if": { @@ -173233,7 +173487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aygaz-d3d4a5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aygaz-d3d4a5.svg" }, { "if": { @@ -173249,7 +173503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ferrellgas-666f52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ferrellgas-666f52.jpg" }, { "if": { @@ -173264,7 +173518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/messer-65a0f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/messer-65a0f8.jpg" }, { "if": { @@ -173279,7 +173533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrongasul-bb6447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrongasul-bb6447.jpg" }, { "if": { @@ -173294,7 +173548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suburbanpropane-666f52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suburbanpropane-666f52.jpg" }, { "if": { @@ -173309,7 +173563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ultragaz-ee2f17.png" + "then": "https://data.mapcomplete.org/nsi//logos/ultragaz-ee2f17.png" }, { "if": { @@ -173323,7 +173577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/europris-fd026c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/europris-fd026c.jpg" }, { "if": { @@ -173342,7 +173596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imeifoods-fd026c.png" + "then": "https://data.mapcomplete.org/nsi//logos/imeifoods-fd026c.png" }, { "if": { @@ -173357,7 +173611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albi-100c1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albi-100c1c.jpg" }, { "if": { @@ -173372,7 +173626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alehop-83a8e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alehop-83a8e4.jpg" }, { "if": { @@ -173387,7 +173641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americangreetings-43d507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americangreetings-43d507.jpg" }, { "if": { @@ -173402,7 +173656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/archies-66da3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/archies-66da3e.jpg" }, { "if": { @@ -173417,7 +173671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atticsalt-ae6503.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atticsalt-ae6503.jpg" }, { "if": { @@ -173432,7 +173686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boxlunch-43d507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boxlunch-43d507.jpg" }, { "if": { @@ -173447,7 +173701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cardcentre-da52c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/cardcentre-da52c2.png" }, { "if": { @@ -173462,7 +173716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cardfactory-d8c200.png" + "then": "https://data.mapcomplete.org/nsi//logos/cardfactory-d8c200.png" }, { "if": { @@ -173477,7 +173731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cardsdirect-53f2de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cardsdirect-53f2de.jpg" }, { "if": { @@ -173492,7 +173746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cardzone-da52c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cardzone-da52c2.jpg" }, { "if": { @@ -173507,7 +173761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carltoncards-bc6b6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/carltoncards-bc6b6c.png" }, { "if": { @@ -173522,23 +173776,23 @@ } ] }, - "then": "./assets/data/nsi/logos/clintons-da52c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/clintons-da52c2.png" }, { "if": { "and": [ - "official_name=Cracker Barrel Old Country Store", "shop=gift", { "or": [ "brand=Cracker Barrel", "brand:wikidata=Q4492609", - "name=Cracker Barrel" + "name=Cracker Barrel", + "official_name=Cracker Barrel Old Country Store" ] } ] }, - "then": "./assets/data/nsi/logos/crackerbarrel-43d507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crackerbarrel-43d507.jpg" }, { "if": { @@ -173553,7 +173807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/disneystore-81bf88.png" + "then": "https://data.mapcomplete.org/nsi//logos/disneystore-81bf88.png" }, { "if": { @@ -173568,7 +173822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ediblearrangements-26efb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ediblearrangements-26efb0.jpg" }, { "if": { @@ -173583,7 +173837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elbenwald-ff9593.png" + "then": "https://data.mapcomplete.org/nsi//logos/elbenwald-ff9593.png" }, { "if": { @@ -173598,7 +173852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fuego-43d507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fuego-43d507.jpg" }, { "if": { @@ -173613,7 +173867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hallmark-ca99d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hallmark-ca99d3.jpg" }, { "if": { @@ -173628,7 +173882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harryanddavid-43d507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harryanddavid-43d507.jpg" }, { "if": { @@ -173643,7 +173897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hickoryfarms-26efb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hickoryfarms-26efb0.jpg" }, { "if": { @@ -173658,7 +173912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imaginarium-8b7f44.png" + "then": "https://data.mapcomplete.org/nsi//logos/imaginarium-8b7f44.png" }, { "if": { @@ -173673,7 +173927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/menkind-da52c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/menkind-da52c2.jpg" }, { "if": { @@ -173688,7 +173942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mooch-da52c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mooch-da52c2.jpg" }, { "if": { @@ -173703,7 +173957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nanunana-ff9593.png" + "then": "https://data.mapcomplete.org/nsi//logos/nanunana-ff9593.png" }, { "if": { @@ -173718,7 +173972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natura-8abdd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/natura-8abdd6.jpg" }, { "if": { @@ -173733,7 +173987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paperkisses-da52c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paperkisses-da52c2.jpg" }, { "if": { @@ -173748,7 +174002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scribbler-da52c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/scribbler-da52c2.png" }, { "if": { @@ -173763,23 +174017,23 @@ } ] }, - "then": "./assets/data/nsi/logos/showcase-26efb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/showcase-26efb0.jpg" }, { "if": { "and": [ - "official_name=Spencer Gifts", "shop=gift", { "or": [ "brand=Spencer Gifts", "brand:wikidata=Q7576055", - "name=Spencer's" + "name=Spencer's", + "official_name=Spencer Gifts" ] } ] }, - "then": "./assets/data/nsi/logos/spencers-26efb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spencers-26efb0.jpg" }, { "if": { @@ -173794,7 +174048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thepaperstore-0b1107.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thepaperstore-0b1107.jpg" }, { "if": { @@ -173809,7 +174063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thinkgeek-43d507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thinkgeek-43d507.jpg" }, { "if": { @@ -173824,7 +174078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thun-f7c7e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thun-f7c7e8.jpg" }, { "if": { @@ -173839,7 +174093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wyjatkowyprezent-278263.png" + "then": "https://data.mapcomplete.org/nsi//logos/wyjatkowyprezent-278263.png" }, { "if": { @@ -173858,7 +174112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/packageplaza-bbf61c.png" + "then": "https://data.mapcomplete.org/nsi//logos/packageplaza-bbf61c.png" }, { "if": { @@ -173873,7 +174127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goudwisselkantoor-f36319.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goudwisselkantoor-f36319.jpg" }, { "if": { @@ -173888,7 +174142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orencash-357486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orencash-357486.jpg" }, { "if": { @@ -173903,7 +174157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceriseetpotiron-f7a29d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceriseetpotiron-f7a29d.jpg" }, { "if": { @@ -173918,7 +174172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mafermeenville-6e345d.png" + "then": "https://data.mapcomplete.org/nsi//logos/mafermeenville-6e345d.png" }, { "if": { @@ -173933,7 +174187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mangeonsfrais-6e345d.png" + "then": "https://data.mapcomplete.org/nsi//logos/mangeonsfrais-6e345d.png" }, { "if": { @@ -173948,7 +174202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marketplacefresh-edd24e.png" + "then": "https://data.mapcomplete.org/nsi//logos/marketplacefresh-edd24e.png" }, { "if": { @@ -173963,7 +174217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/producejunction-c8a79f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/producejunction-c8a79f.jpg" }, { "if": { @@ -173978,7 +174232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superverd-949784.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superverd-949784.jpg" }, { "if": { @@ -173993,7 +174247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amirisalon-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amirisalon-28f1a5.jpg" }, { "if": { @@ -174010,7 +174264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barbershopbytimpson-afda3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barbershopbytimpson-afda3f.jpg" }, { "if": { @@ -174025,7 +174279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benchfix-2b2fb2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/benchfix-2b2fb2.svg" }, { "if": { @@ -174040,7 +174294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluetit-23df39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluetit-23df39.jpg" }, { "if": { @@ -174055,7 +174309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brainwash-7f2667.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brainwash-7f2667.jpg" }, { "if": { @@ -174070,7 +174324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camillealbane-40f1cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camillealbane-40f1cc.jpg" }, { "if": { @@ -174085,7 +174339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chatters-7e5a14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chatters-7e5a14.jpg" }, { "if": { @@ -174100,7 +174354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coiffandco-232a64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coiffandco-232a64.jpg" }, { "if": { @@ -174115,7 +174369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcutters-28f1a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/costcutters-28f1a5.png" }, { "if": { @@ -174130,7 +174384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cutters-5effd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cutters-5effd8.jpg" }, { "if": { @@ -174145,7 +174399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dessange-252950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dessange-252950.jpg" }, { "if": { @@ -174161,7 +174415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drybar-46af32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drybar-46af32.jpg" }, { "if": { @@ -174176,23 +174430,23 @@ } ] }, - "then": "./assets/data/nsi/logos/essanelle-b30c9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essanelle-b30c9d.jpg" }, { "if": { "and": [ - "official_name=Fantastic Sams Cut & Color", "shop=hairdresser", { "or": [ "brand=Fantastic Sams", "brand:wikidata=Q5434222", - "name=Fantastic Sams" + "name=Fantastic Sams", + "official_name=Fantastic Sams Cut & Color" ] } ] }, - "then": "./assets/data/nsi/logos/fantasticsams-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fantasticsams-28f1a5.jpg" }, { "if": { @@ -174207,7 +174461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ferber-6ad147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ferber-6ad147.jpg" }, { "if": { @@ -174222,7 +174476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstchoicehaircutters-7e5a14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstchoicehaircutters-7e5a14.jpg" }, { "if": { @@ -174237,7 +174491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floyds99barbershop-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/floyds99barbershop-28f1a5.jpg" }, { "if": { @@ -174252,7 +174506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franckprovost-343148.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/franckprovost-343148.jpg" }, { "if": { @@ -174267,7 +174521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredericmoreno-426627.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fredericmoreno-426627.jpg" }, { "if": { @@ -174282,7 +174536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gidor-537977.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gidor-537977.svg" }, { "if": { @@ -174297,7 +174551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatclips-46af32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatclips-46af32.jpg" }, { "if": { @@ -174312,7 +174566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haircuttery-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haircuttery-28f1a5.jpg" }, { "if": { @@ -174327,7 +174581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hairexpress-b30c9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hairexpress-b30c9d.jpg" }, { "if": { @@ -174342,7 +174596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haircutexpress-f52df8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haircutexpress-f52df8.jpg" }, { "if": { @@ -174357,7 +174611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hairkiller-173527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hairkiller-173527.jpg" }, { "if": { @@ -174372,7 +174626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/headmasters-7aa40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/headmasters-7aa40b.jpg" }, { "if": { @@ -174387,7 +174641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hizihair-7f2667.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hizihair-7f2667.jpg" }, { "if": { @@ -174402,7 +174656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/igorance-6ad147.png" + "then": "https://data.mapcomplete.org/nsi//logos/igorance-6ad147.png" }, { "if": { @@ -174417,7 +174671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imagestudios-0d42d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imagestudios-0d42d5.jpg" }, { "if": { @@ -174432,7 +174686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeanlouisdavid-b4b07d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeanlouisdavid-b4b07d.jpg" }, { "if": { @@ -174447,7 +174701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justcuts-f77181.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/justcuts-f77181.jpg" }, { "if": { @@ -174462,7 +174716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinkikappers-7f2667.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kinkikappers-7f2667.jpg" }, { "if": { @@ -174477,7 +174731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klier-03dd74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klier-03dd74.jpg" }, { "if": { @@ -174492,7 +174746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klipp-8c968f.png" + "then": "https://data.mapcomplete.org/nsi//logos/klipp-8c968f.png" }, { "if": { @@ -174507,7 +174761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kreatos-8c1786.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kreatos-8c1786.jpg" }, { "if": { @@ -174523,7 +174777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legendsbarber-5e2ac6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/legendsbarber-5e2ac6.jpg" }, { "if": { @@ -174538,7 +174792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magicuts-7e5a14.png" + "then": "https://data.mapcomplete.org/nsi//logos/magicuts-7e5a14.png" }, { "if": { @@ -174553,7 +174807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marcoaldany-d15f75.png" + "then": "https://data.mapcomplete.org/nsi//logos/marcoaldany-d15f75.png" }, { "if": { @@ -174568,7 +174822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mastercuts-46af32.png" + "then": "https://data.mapcomplete.org/nsi//logos/mastercuts-46af32.png" }, { "if": { @@ -174583,7 +174837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pascalcoste-40f1cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pascalcoste-40f1cc.jpg" }, { "if": { @@ -174598,7 +174852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peluquerialowcost-5e03c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/peluquerialowcost-5e03c5.png" }, { "if": { @@ -174613,7 +174867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perfectlookhairsalon-28f1a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/perfectlookhairsalon-28f1a5.png" }, { "if": { @@ -174628,7 +174882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regissalons-afda3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regissalons-afda3f.jpg" }, { "if": { @@ -174644,7 +174898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regis-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regis-28f1a5.jpg" }, { "if": { @@ -174659,7 +174913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rudysbarbershop-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rudysbarbershop-28f1a5.jpg" }, { "if": { @@ -174676,7 +174930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ruffians-d849d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ruffians-d849d6.jpg" }, { "if": { @@ -174691,7 +174945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ryanhair-6ad147.png" + "then": "https://data.mapcomplete.org/nsi//logos/ryanhair-6ad147.png" }, { "if": { @@ -174706,7 +174960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintalgue-ece769.png" + "then": "https://data.mapcomplete.org/nsi//logos/saintalgue-ece769.png" }, { "if": { @@ -174721,7 +174975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saloncentric-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saloncentric-28f1a5.jpg" }, { "if": { @@ -174736,7 +174990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sassoonsalon-5069d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sassoonsalon-5069d9.jpg" }, { "if": { @@ -174751,7 +175005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartstyle-46af32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smartstyle-46af32.jpg" }, { "if": { @@ -174766,7 +175020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportclips-46af32.png" + "then": "https://data.mapcomplete.org/nsi//logos/sportclips-46af32.png" }, { "if": { @@ -174781,7 +175035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/styleboxx-b30c9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/styleboxx-b30c9d.jpg" }, { "if": { @@ -174796,7 +175050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supercut-b30c9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supercut-b30c9d.jpg" }, { "if": { @@ -174811,7 +175065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supercuts-cc3156.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supercuts-cc3156.jpg" }, { "if": { @@ -174828,7 +175082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synergyhair-637f75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synergyhair-637f75.jpg" }, { "if": { @@ -174843,7 +175097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tchip-426627.png" + "then": "https://data.mapcomplete.org/nsi//logos/tchip-426627.png" }, { "if": { @@ -174858,7 +175112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebarbers-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebarbers-28f1a5.jpg" }, { "if": { @@ -174874,7 +175128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesalonatultabeauty-28f1a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thesalonatultabeauty-28f1a5.jpg" }, { "if": { @@ -174889,7 +175143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesalonbyinstyle-28f1a5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/thesalonbyinstyle-28f1a5.svg" }, { "if": { @@ -174904,7 +175158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toniandguy-ece769.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toniandguy-ece769.jpg" }, { "if": { @@ -174919,7 +175173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tophair-b30c9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tophair-b30c9d.jpg" }, { "if": { @@ -174934,7 +175188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tradesecrets-f31ff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tradesecrets-f31ff1.jpg" }, { "if": { @@ -174949,7 +175203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/61a701-497f92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/61a701-497f92.jpg" }, { "if": { @@ -174968,7 +175222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cutcomz-946510.png" + "then": "https://data.mapcomplete.org/nsi//logos/cutcomz-946510.png" }, { "if": { @@ -174987,7 +175241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cutfactory-946510.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cutfactory-946510.jpg" }, { "if": { @@ -175006,7 +175260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familycut1000-946510.png" + "then": "https://data.mapcomplete.org/nsi//logos/familycut1000-946510.png" }, { "if": { @@ -175021,7 +175275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bleulibellule-b5b92b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bleulibellule-b5b92b.jpg" }, { "if": { @@ -175036,7 +175290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosmo-9c3c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosmo-9c3c03.jpg" }, { "if": { @@ -175051,7 +175305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosmoprof-5f23b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cosmoprof-5f23b6.png" }, { "if": { @@ -175066,7 +175320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hairhouse-6fcfbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hairhouse-6fcfbc.jpg" }, { "if": { @@ -175081,7 +175335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klierhairworld-9c3c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klierhairworld-9c3c03.jpg" }, { "if": { @@ -175096,7 +175350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laboutiqueducoiffeur-03b17e.png" + "then": "https://data.mapcomplete.org/nsi//logos/laboutiqueducoiffeur-03b17e.png" }, { "if": { @@ -175111,7 +175365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/priceattack-6fcfbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/priceattack-6fcfbc.png" }, { "if": { @@ -175126,7 +175380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roma-00412a.png" + "then": "https://data.mapcomplete.org/nsi//logos/roma-00412a.png" }, { "if": { @@ -175142,7 +175396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sallybeauty-2abc62.png" + "then": "https://data.mapcomplete.org/nsi//logos/sallybeauty-2abc62.png" }, { "if": { @@ -175157,7 +175411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saloncentric-bc397b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saloncentric-bc397b.jpg" }, { "if": { @@ -175172,7 +175426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shavershop-b81096.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shavershop-b81096.jpg" }, { "if": { @@ -175191,7 +175445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/220volt-8cf3c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/220volt-8cf3c0.jpg" }, { "if": { @@ -175206,7 +175460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aubuchonhardware-a223fb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aubuchonhardware-a223fb.svg" }, { "if": { @@ -175221,7 +175475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beijerbyggmaterial-e5bfac.png" + "then": "https://data.mapcomplete.org/nsi//logos/beijerbyggmaterial-e5bfac.png" }, { "if": { @@ -175236,7 +175490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buco-d03c09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buco-d03c09.jpg" }, { "if": { @@ -175251,7 +175505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carters-10910e.png" + "then": "https://data.mapcomplete.org/nsi//logos/carters-10910e.png" }, { "if": { @@ -175266,7 +175520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dniprom-20f0dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dniprom-20f0dd.jpg" }, { "if": { @@ -175281,7 +175535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/doitbest-a223fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doitbest-a223fb.jpg" }, { "if": { @@ -175296,7 +175550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harborfreighttools-a223fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/harborfreighttools-a223fb.png" }, { "if": { @@ -175311,7 +175565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homehardware-98155f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homehardware-98155f.jpg" }, { "if": { @@ -175326,7 +175580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/husqvarna-7cd80a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/husqvarna-7cd80a.jpg" }, { "if": { @@ -175340,7 +175594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jernia-8a3989.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jernia-8a3989.jpg" }, { "if": { @@ -175355,7 +175609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krauta-93dff8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krauta-93dff8.jpg" }, { "if": { @@ -175370,7 +175624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kodinterra-93dff8.gif" + "then": "https://data.mapcomplete.org/nsi//logos/kodinterra-93dff8.gif" }, { "if": { @@ -175385,7 +175639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lecot-585c09.png" + "then": "https://data.mapcomplete.org/nsi//logos/lecot-585c09.png" }, { "if": { @@ -175400,7 +175654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxxmart-fc9b00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxxmart-fc9b00.jpg" }, { "if": { @@ -175415,7 +175669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mica-5f4ed1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mica-5f4ed1.jpg" }, { "if": { @@ -175430,7 +175684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motionindustries-a223fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/motionindustries-a223fb.png" }, { "if": { @@ -175445,7 +175699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northerntoolequipment-a223fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northerntoolequipment-a223fb.jpg" }, { "if": { @@ -175460,7 +175714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/properjob-a55f89.png" + "then": "https://data.mapcomplete.org/nsi//logos/properjob-a55f89.png" }, { "if": { @@ -175475,7 +175729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robertdyas-a55f89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robertdyas-a55f89.jpg" }, { "if": { @@ -175490,7 +175744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santandreu-a9ae13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santandreu-a9ae13.jpg" }, { "if": { @@ -175505,7 +175759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stihl-7cd80a.png" + "then": "https://data.mapcomplete.org/nsi//logos/stihl-7cd80a.png" }, { "if": { @@ -175520,7 +175774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydneytools-1421b1.png" + "then": "https://data.mapcomplete.org/nsi//logos/sydneytools-1421b1.png" }, { "if": { @@ -175535,7 +175789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telhanorte-6396ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/telhanorte-6396ad.png" }, { "if": { @@ -175550,7 +175804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totaltools-1421b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/totaltools-1421b1.jpg" }, { "if": { @@ -175565,7 +175819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truevalue-a223fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truevalue-a223fb.jpg" }, { "if": { @@ -175580,7 +175834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuffshed-a223fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuffshed-a223fb.jpg" }, { "if": { @@ -175595,7 +175849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wurth-96a10c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wurth-96a10c.jpg" }, { "if": { @@ -175610,7 +175864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/80451d-72d7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/80451d-72d7fa.jpg" }, { "if": { @@ -175625,7 +175879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ce81f6-72d7fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ce81f6-72d7fa.jpg" }, { "if": { @@ -175640,7 +175894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/10c781-bf6c88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/10c781-bf6c88.jpg" }, { "if": { @@ -175655,7 +175909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/210906-72d7fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/210906-72d7fa.png" }, { "if": { @@ -175670,7 +175924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biomundo-894bf8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biomundo-894bf8.jpg" }, { "if": { @@ -175685,7 +175939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergreenhealthfoods-a6966d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergreenhealthfoods-a6966d.jpg" }, { "if": { @@ -175700,7 +175954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gandwgezondheidswinkel-daed2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gandwgezondheidswinkel-daed2e.jpg" }, { "if": { @@ -175715,7 +175969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grapetree-edcb10.png" + "then": "https://data.mapcomplete.org/nsi//logos/grapetree-edcb10.png" }, { "if": { @@ -175730,7 +175984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthyplanet-b5c6bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/healthyplanet-b5c6bb.jpg" }, { "if": { @@ -175745,7 +175999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hollandandbarrett-802102.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hollandandbarrett-802102.jpg" }, { "if": { @@ -175760,7 +176014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mundoverde-894bf8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mundoverde-894bf8.jpg" }, { "if": { @@ -175775,7 +176029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nutritionhouse-b5c6bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nutritionhouse-b5c6bb.jpg" }, { "if": { @@ -175790,7 +176044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reformhausbacher-f6f874.png" + "then": "https://data.mapcomplete.org/nsi//logos/reformhausbacher-f6f874.png" }, { "if": { @@ -175805,7 +176059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reformhausengelhardt-f6f874.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reformhausengelhardt-f6f874.jpg" }, { "if": { @@ -175820,7 +176074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reformstarkmartin-26a810.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reformstarkmartin-26a810.jpg" }, { "if": { @@ -175835,7 +176089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitaliareformhaus-f6f874.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitaliareformhaus-f6f874.jpg" }, { "if": { @@ -175854,7 +176108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthworks-e87965.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/healthworks-e87965.jpg" }, { "if": { @@ -175869,7 +176123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acusticamedica-f022a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/acusticamedica-f022a3.png" }, { "if": { @@ -175884,7 +176138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amplifon-6f1b2d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/amplifon-6f1b2d.svg" }, { "if": { @@ -175899,7 +176153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/audika-03f154.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/audika-03f154.jpg" }, { "if": { @@ -175914,7 +176168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/audilab-400e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/audilab-400e82.jpg" }, { "if": { @@ -175929,7 +176183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auditionconseil-400e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/auditionconseil-400e82.jpg" }, { "if": { @@ -175944,7 +176198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beltone-2a109a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beltone-2a109a.jpg" }, { "if": { @@ -175959,7 +176213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benoitaudition-400e82.png" + "then": "https://data.mapcomplete.org/nsi//logos/benoitaudition-400e82.png" }, { "if": { @@ -175974,7 +176228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beterhoren-cec8b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/beterhoren-cec8b0.png" }, { "if": { @@ -175989,7 +176243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcohearingaidcenter-39cb4e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcohearingaidcenter-39cb4e.svg" }, { "if": { @@ -176004,7 +176258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gaes-681898.png" + "then": "https://data.mapcomplete.org/nsi//logos/gaes-681898.png" }, { "if": { @@ -176019,7 +176273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geers-b91cc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geers-b91cc2.jpg" }, { "if": { @@ -176034,7 +176288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansaton-88f32a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hansaton-88f32a.jpg" }, { "if": { @@ -176049,7 +176303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hearusa-2a109a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hearusa-2a109a.jpg" }, { "if": { @@ -176064,7 +176318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hiddenhearing-edbe38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hiddenhearing-edbe38.jpg" }, { "if": { @@ -176079,7 +176333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idealaudition-400e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idealaudition-400e82.jpg" }, { "if": { @@ -176094,7 +176348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kindhorgerate-a8e841.png" + "then": "https://data.mapcomplete.org/nsi//logos/kindhorgerate-a8e841.png" }, { "if": { @@ -176109,7 +176363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapperre-f63ec3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lapperre-f63ec3.jpg" }, { "if": { @@ -176124,7 +176378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miracleear-23e391.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miracleear-23e391.jpg" }, { "if": { @@ -176139,7 +176393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neuroth-88d033.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neuroth-88d033.svg" }, { "if": { @@ -176154,7 +176408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schoonenberg-cec8b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schoonenberg-cec8b0.jpg" }, { "if": { @@ -176169,7 +176423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonanceaudition-400e82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonanceaudition-400e82.jpg" }, { "if": { @@ -176184,7 +176438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telex-ffc245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telex-ffc245.jpg" }, { "if": { @@ -176199,7 +176453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanboxtelhoorwinkel-cec8b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/vanboxtelhoorwinkel-cec8b0.png" }, { "if": { @@ -176214,7 +176468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitakustik-a8e841.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitakustik-a8e841.jpg" }, { "if": { @@ -176233,7 +176487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euyansang-7be159.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/euyansang-7be159.jpg" }, { "if": { @@ -176248,7 +176502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lerbolario-ed4a79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lerbolario-ed4a79.jpg" }, { "if": { @@ -176263,7 +176517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reviveherbalhealth-455c0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reviveherbalhealth-455c0f.jpg" }, { "if": { @@ -176282,7 +176536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euyansang-5606dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/euyansang-5606dd.jpg" }, { "if": { @@ -176301,7 +176555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euyansang-ed4bac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/euyansang-ed4bac.jpg" }, { "if": { @@ -176316,7 +176570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangandolufsen-7a2989.png" + "then": "https://data.mapcomplete.org/nsi//logos/bangandolufsen-7a2989.png" }, { "if": { @@ -176331,7 +176585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bose-7a2989.png" + "then": "https://data.mapcomplete.org/nsi//logos/bose-7a2989.png" }, { "if": { @@ -176346,7 +176600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devialet-7a2989.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devialet-7a2989.jpg" }, { "if": { @@ -176361,7 +176615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastrak-779be0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastrak-779be0.jpg" }, { "if": { @@ -176376,7 +176630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harmankardon-7a2989.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harmankardon-7a2989.jpg" }, { "if": { @@ -176391,7 +176645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jbl-7a2989.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jbl-7a2989.jpg" }, { "if": { @@ -176406,7 +176660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/richersounds-76bfaa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/richersounds-76bfaa.jpg" }, { "if": { @@ -176421,7 +176675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teufel-bbb902.png" + "then": "https://data.mapcomplete.org/nsi//logos/teufel-bbb902.png" }, { "if": { @@ -176436,7 +176690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adairs-f571b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adairs-f571b2.jpg" }, { "if": { @@ -176451,7 +176705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adairskids-f571b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adairskids-f571b2.jpg" }, { "if": { @@ -176466,7 +176720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bytovytextilskodak-a06b17.png" + "then": "https://data.mapcomplete.org/nsi//logos/bytovytextilskodak-a06b17.png" }, { "if": { @@ -176481,7 +176735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carreblanc-9f29b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/carreblanc-9f29b6.png" }, { "if": { @@ -176496,7 +176750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/descamps-46fea9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/descamps-46fea9.jpg" }, { "if": { @@ -176511,7 +176765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linvosges-e1f628.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linvosges-e1f628.jpg" }, { "if": { @@ -176526,7 +176780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mmartan-97127c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mmartan-97127c.jpg" }, { "if": { @@ -176541,7 +176795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pillowtalk-d682ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pillowtalk-d682ae.jpg" }, { "if": { @@ -176556,7 +176810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qehome-f35021.png" + "then": "https://data.mapcomplete.org/nsi//logos/qehome-f35021.png" }, { "if": { @@ -176571,7 +176825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scanquilt-fc4fc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scanquilt-fc4fc3.jpg" }, { "if": { @@ -176586,7 +176840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volpes-f55b77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volpes-f55b77.jpg" }, { "if": { @@ -176601,7 +176855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yvesdelorme-9d095f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yvesdelorme-9d095f.jpg" }, { "if": { @@ -176616,7 +176870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a4baae-bf8e96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a4baae-bf8e96.jpg" }, { "if": { @@ -176635,7 +176889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manamohome-d0e31e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manamohome-d0e31e.jpg" }, { "if": { @@ -176650,7 +176904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/home-dd60e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/home-dd60e2.jpg" }, { "if": { @@ -176665,7 +176919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adairs-bc6f54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adairs-bc6f54.jpg" }, { "if": { @@ -176680,7 +176934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alicedelice-791615.png" + "then": "https://data.mapcomplete.org/nsi//logos/alicedelice-791615.png" }, { "if": { @@ -176695,7 +176949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/athome-d77d08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/athome-d77d08.jpg" }, { "if": { @@ -176710,7 +176964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquet-4991ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquet-4991ba.jpg" }, { "if": { @@ -176725,7 +176979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedbathandbeyond-1d32aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedbathandbeyond-1d32aa.jpg" }, { "if": { @@ -176740,7 +176994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedbathandbeyond-76be9f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedbathandbeyond-76be9f.jpg" }, { "if": { @@ -176755,7 +177009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedbathntable-299251.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedbathntable-299251.jpg" }, { "if": { @@ -176770,7 +177024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blokker-a48b12.svg" + "then": "https://data.mapcomplete.org/nsi//logos/blokker-a48b12.svg" }, { "if": { @@ -176785,7 +177039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/briscoes-1d32aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/briscoes-1d32aa.jpg" }, { "if": { @@ -176800,7 +177054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bssgroup-81bc6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bssgroup-81bc6e.png" }, { "if": { @@ -176815,7 +177069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camicado-35237a.png" + "then": "https://data.mapcomplete.org/nsi//logos/camicado-35237a.png" }, { "if": { @@ -176830,7 +177084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cervera-9b0747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cervera-9b0747.jpg" }, { "if": { @@ -176845,7 +177099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crazyplastics-4abcbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crazyplastics-4abcbe.jpg" }, { "if": { @@ -176860,7 +177114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dilleandkamille-c5ed6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dilleandkamille-c5ed6b.jpg" }, { "if": { @@ -176875,7 +177129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dubruitdanslacuisine-791615.png" + "then": "https://data.mapcomplete.org/nsi//logos/dubruitdanslacuisine-791615.png" }, { "if": { @@ -176890,7 +177144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duka-699029.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duka-699029.jpg" }, { "if": { @@ -176905,7 +177159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ehsmith-06cdb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ehsmith-06cdb1.jpg" }, { "if": { @@ -176920,7 +177174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enzahome-19bb0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enzahome-19bb0d.jpg" }, { "if": { @@ -176935,7 +177189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fissler-a5ce18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fissler-a5ce18.jpg" }, { "if": { @@ -176950,7 +177204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gipfel-4a99db.png" + "then": "https://data.mapcomplete.org/nsi//logos/gipfel-4a99db.png" }, { "if": { @@ -176965,7 +177219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guydegrenne-791615.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guydegrenne-791615.jpg" }, { "if": { @@ -176980,7 +177234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happycasa-6a1c4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happycasa-6a1c4e.jpg" }, { "if": { @@ -176995,7 +177249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homestoremore-b52391.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homestoremore-b52391.jpg" }, { "if": { @@ -177010,7 +177264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homegoods-d77d08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homegoods-d77d08.jpg" }, { "if": { @@ -177025,7 +177279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/house-9d9c4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/house-9d9c4b.jpg" }, { "if": { @@ -177040,7 +177294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/housebedandbath-9d9c4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/housebedandbath-9d9c4b.jpg" }, { "if": { @@ -177055,7 +177309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/howardsstorageworld-9d9c4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/howardsstorageworld-9d9c4b.jpg" }, { "if": { @@ -177070,7 +177324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/howarthtimber-06cdb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/howarthtimber-06cdb1.jpg" }, { "if": { @@ -177085,7 +177339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imerco-12dd8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imerco-12dd8a.jpg" }, { "if": { @@ -177100,7 +177354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kasanova-6a1c4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kasanova-6a1c4e.jpg" }, { "if": { @@ -177114,7 +177368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitchn-789341.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitchn-789341.jpg" }, { "if": { @@ -177129,7 +177383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitchencollection-d77d08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitchencollection-d77d08.jpg" }, { "if": { @@ -177144,7 +177398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitchenstuffplus-92c55a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitchenstuffplus-92c55a.jpg" }, { "if": { @@ -177159,7 +177413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kodi-a5ce18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kodi-a5ce18.jpg" }, { "if": { @@ -177174,7 +177428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kopandkande-12dd8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/kopandkande-12dd8a.png" }, { "if": { @@ -177189,7 +177443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lagerhaus-8b5f66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lagerhaus-8b5f66.jpg" }, { "if": { @@ -177204,7 +177458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakeland-06cdb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lakeland-06cdb1.jpg" }, { "if": { @@ -177219,7 +177473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lecreuset-19bb0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lecreuset-19bb0d.jpg" }, { "if": { @@ -177234,7 +177488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linenchest-2e9fd8.png" + "then": "https://data.mapcomplete.org/nsi//logos/linenchest-2e9fd8.png" }, { "if": { @@ -177249,7 +177503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madamecoco-19bb0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madamecoco-19bb0d.jpg" }, { "if": { @@ -177264,7 +177518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marskramer-c9ad4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marskramer-c9ad4a.jpg" }, { "if": { @@ -177281,7 +177535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metalac-21e4ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/metalac-21e4ab.png" }, { "if": { @@ -177296,7 +177550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrpricehome-764653.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrpricehome-764653.png" }, { "if": { @@ -177311,7 +177565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalplastics-06cdb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalplastics-06cdb1.jpg" }, { "if": { @@ -177326,7 +177580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oldtimepottery-d77d08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oldtimepottery-d77d08.jpg" }, { "if": { @@ -177341,7 +177595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orion-4991ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/orion-4991ba.png" }, { "if": { @@ -177356,7 +177610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pephome-4abcbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pephome-4abcbe.jpg" }, { "if": { @@ -177371,7 +177625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plasticsdepot-4abcbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plasticsdepot-4abcbe.jpg" }, { "if": { @@ -177386,7 +177640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/precolandia-35237a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/precolandia-35237a.jpg" }, { "if": { @@ -177401,7 +177655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/princehypermart-32fa4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/princehypermart-32fa4c.jpg" }, { "if": { @@ -177416,7 +177670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procook-06cdb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procook-06cdb1.jpg" }, { "if": { @@ -177431,7 +177685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/risparmiocasa-6a1c4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/risparmiocasa-6a1c4e.jpg" }, { "if": { @@ -177446,7 +177700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheetstreet-4abcbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sheetstreet-4abcbe.jpg" }, { "if": { @@ -177461,7 +177715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stokes-2e9fd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stokes-2e9fd8.jpg" }, { "if": { @@ -177476,7 +177730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surlatable-d77d08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surlatable-d77d08.jpg" }, { "if": { @@ -177491,7 +177745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tescoma-19bb0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/tescoma-19bb0d.png" }, { "if": { @@ -177506,7 +177760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theconranshop-672f56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theconranshop-672f56.jpg" }, { "if": { @@ -177521,7 +177775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecontainerstore-d77d08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecontainerstore-d77d08.jpg" }, { "if": { @@ -177536,7 +177790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/therange-81bc6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/therange-81bc6e.jpg" }, { "if": { @@ -177551,7 +177805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thinkkitchen-2e9fd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thinkkitchen-2e9fd8.jpg" }, { "if": { @@ -177566,7 +177820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuesdaymorning-d77d08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuesdaymorning-d77d08.jpg" }, { "if": { @@ -177581,7 +177835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tupperware-b7d488.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tupperware-b7d488.svg" }, { "if": { @@ -177596,7 +177850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villeroyandboch-19bb0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villeroyandboch-19bb0d.jpg" }, { "if": { @@ -177611,7 +177865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/williamssonoma-61ccca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/williamssonoma-61ccca.jpg" }, { "if": { @@ -177626,7 +177880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wmf-7553f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wmf-7553f4.jpg" }, { "if": { @@ -177641,7 +177895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xenos-06f910.png" + "then": "https://data.mapcomplete.org/nsi//logos/xenos-06f910.png" }, { "if": { @@ -177656,7 +177910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yuppiechef-4abcbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yuppiechef-4abcbe.jpg" }, { "if": { @@ -177671,7 +177925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zwilling-a5ce18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zwilling-a5ce18.jpg" }, { "if": { @@ -177706,7 +177960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialporcelainfactory-4a99db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialporcelainfactory-4a99db.jpg" }, { "if": { @@ -177721,7 +177975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d48ea9-61477e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d48ea9-61477e.jpg" }, { "if": { @@ -177740,7 +177994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/super-595ee9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/super-595ee9.jpg" }, { "if": { @@ -177759,7 +178013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/home-595ee9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/home-595ee9.jpg" }, { "if": { @@ -177778,7 +178032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keioatman-fb0740.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keioatman-fb0740.jpg" }, { "if": { @@ -177797,7 +178051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jhc-067b48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jhc-067b48.jpg" }, { "if": { @@ -177812,7 +178066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bouclair-aa1ae6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bouclair-aa1ae6.jpg" }, { "if": { @@ -177827,7 +178081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bouclairhome-8155e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bouclairhome-8155e5.jpg" }, { "if": { @@ -177842,7 +178096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bouclairmaison-531f1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bouclairmaison-531f1a.jpg" }, { "if": { @@ -177857,7 +178111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/butlers-85b078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/butlers-85b078.jpg" }, { "if": { @@ -177872,7 +178126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casa-48e009.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casa-48e009.jpg" }, { "if": { @@ -177887,7 +178141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centrakor-c45f99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centrakor-c45f99.jpg" }, { "if": { @@ -177902,7 +178156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coincasa-368f99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coincasa-368f99.jpg" }, { "if": { @@ -177917,7 +178171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/depot-5f264c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/depot-5f264c.jpg" }, { "if": { @@ -177932,7 +178186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunelm-839895.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunelm-839895.jpg" }, { "if": { @@ -177947,7 +178201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/englishhome-bd3698.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/englishhome-bd3698.jpg" }, { "if": { @@ -177961,7 +178215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/feel-d55252.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/feel-d55252.jpg" }, { "if": { @@ -177976,7 +178230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firedearth-839895.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firedearth-839895.jpg" }, { "if": { @@ -177991,7 +178245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gatopreto-22474f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gatopreto-22474f.jpg" }, { "if": { @@ -178006,7 +178260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/granit-bf4f5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/granit-bf4f5c.jpg" }, { "if": { @@ -178021,7 +178275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handmhome-0f41f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/handmhome-0f41f2.jpg" }, { "if": { @@ -178036,7 +178290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harrycorry-567cc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harrycorry-567cc8.jpg" }, { "if": { @@ -178051,7 +178305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hay-0f41f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hay-0f41f2.jpg" }, { "if": { @@ -178066,7 +178320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hemtex-056dae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hemtex-056dae.jpg" }, { "if": { @@ -178081,7 +178335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homeandyou-e9ee18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homeandyou-e9ee18.jpg" }, { "if": { @@ -178096,7 +178350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homesense-d842e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homesense-d842e9.jpg" }, { "if": { @@ -178111,7 +178365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iittala-a7e00a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iittala-a7e00a.jpg" }, { "if": { @@ -178126,7 +178380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kidinterior-d55252.png" + "then": "https://data.mapcomplete.org/nsi//logos/kidinterior-d55252.png" }, { "if": { @@ -178141,7 +178395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kirklands-18147c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kirklands-18147c.jpg" }, { "if": { @@ -178156,7 +178410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madura-1550f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madura-1550f8.jpg" }, { "if": { @@ -178171,7 +178425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sostrenegrene-0f41f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sostrenegrene-0f41f2.jpg" }, { "if": { @@ -178187,23 +178441,23 @@ } ] }, - "then": "./assets/data/nsi/logos/tenthousandvillages-10e33c.png" + "then": "https://data.mapcomplete.org/nsi//logos/tenthousandvillages-10e33c.png" }, { "if": { "and": [ - "official_name=Cost Plus World Market", "shop=interior_decoration", { "or": [ "brand=World Market", "brand:wikidata=Q5174750", - "name=World Market" + "name=World Market", + "official_name=Cost Plus World Market" ] } ] }, - "then": "./assets/data/nsi/logos/worldmarket-18147c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldmarket-18147c.jpg" }, { "if": { @@ -178218,7 +178472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zarahome-0f41f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zarahome-0f41f2.jpg" }, { "if": { @@ -178233,7 +178487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agatha-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agatha-a038d2.jpg" }, { "if": { @@ -178248,7 +178502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alexandani-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alexandani-70f101.jpg" }, { "if": { @@ -178263,7 +178517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altinbas-a038d2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/altinbas-a038d2.svg" }, { "if": { @@ -178278,7 +178532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanswiss-45575e.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanswiss-45575e.png" }, { "if": { @@ -178293,7 +178547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/angusandcoote-0359a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/angusandcoote-0359a8.jpg" }, { "if": { @@ -178308,7 +178562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apart-0f1493.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apart-0f1493.jpg" }, { "if": { @@ -178323,7 +178577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apmmonaco-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apmmonaco-a038d2.jpg" }, { "if": { @@ -178338,7 +178592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aristocrazy-a038d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/aristocrazy-a038d2.png" }, { "if": { @@ -178353,7 +178607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arthusbertrand-1d7974.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arthusbertrand-1d7974.jpg" }, { "if": { @@ -178368,7 +178622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atasay-3dd149.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atasay-3dd149.jpg" }, { "if": { @@ -178383,7 +178637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banterbypiercingpagoda-30e94f.png" + "then": "https://data.mapcomplete.org/nsi//logos/banterbypiercingpagoda-30e94f.png" }, { "if": { @@ -178398,7 +178652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beaverbrooks-f07ca3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beaverbrooks-f07ca3.jpg" }, { "if": { @@ -178413,7 +178667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benbridge-30e94f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/benbridge-30e94f.jpg" }, { "if": { @@ -178428,7 +178682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bevillesjewellers-0359a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bevillesjewellers-0359a8.jpg" }, { "if": { @@ -178443,7 +178697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bijoubrigitte-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bijoubrigitte-a038d2.jpg" }, { "if": { @@ -178458,7 +178712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bizzarro-789248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bizzarro-789248.jpg" }, { "if": { @@ -178473,7 +178727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluenile-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluenile-70f101.jpg" }, { "if": { @@ -178488,7 +178742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluespirit-60a080.png" + "then": "https://data.mapcomplete.org/nsi//logos/bluespirit-60a080.png" }, { "if": { @@ -178503,7 +178757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buccellati-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buccellati-a038d2.jpg" }, { "if": { @@ -178518,7 +178772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cartier-a038d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/cartier-a038d2.png" }, { "if": { @@ -178533,7 +178787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charmdiamondcentres-7fc58d.png" + "then": "https://data.mapcomplete.org/nsi//logos/charmdiamondcentres-7fc58d.png" }, { "if": { @@ -178548,7 +178802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chaumet-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chaumet-a038d2.jpg" }, { "if": { @@ -178563,7 +178817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chemmanurinternationaljewellers-0ef1f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/chemmanurinternationaljewellers-0ef1f6.png" }, { "if": { @@ -178578,7 +178832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chisholmhunter-f07ca3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chisholmhunter-f07ca3.jpg" }, { "if": { @@ -178593,7 +178847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christ-729edb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/christ-729edb.jpg" }, { "if": { @@ -178608,7 +178862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloursandbeauty-60a080.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloursandbeauty-60a080.jpg" }, { "if": { @@ -178623,7 +178877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daniels-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daniels-70f101.jpg" }, { "if": { @@ -178638,7 +178892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davidyurman-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/davidyurman-70f101.jpg" }, { "if": { @@ -178653,7 +178907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dinhvan-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dinhvan-a038d2.jpg" }, { "if": { @@ -178668,7 +178922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donrobertojewelers-080e86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donrobertojewelers-080e86.jpg" }, { "if": { @@ -178683,7 +178937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorotheumjuwelier-354c6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/dorotheumjuwelier-354c6b.png" }, { "if": { @@ -178702,7 +178956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/darryring-cb063c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/darryring-cb063c.jpg" }, { "if": { @@ -178717,23 +178971,23 @@ } ] }, - "then": "./assets/data/nsi/logos/ernestjones-f07ca3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ernestjones-f07ca3.jpg" }, { "if": { "and": [ - "official_name=Fast-Fix Jewelry and Watch Repairs", "shop=jewelry", { "or": [ "brand=Fast-Fix", "brand:wikidata=Q108411186", - "name=Fast-Fix" + "name=Fast-Fix", + "official_name=Fast-Fix Jewelry and Watch Repairs" ] } ] }, - "then": "./assets/data/nsi/logos/fastfix-025704.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastfix-025704.jpg" }, { "if": { @@ -178748,7 +179002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredmeyerjewelers-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fredmeyerjewelers-70f101.jpg" }, { "if": { @@ -178763,7 +179017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glitter-f0ae67.png" + "then": "https://data.mapcomplete.org/nsi//logos/glitter-f0ae67.png" }, { "if": { @@ -178778,7 +179032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldmark-f8a228.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldmark-f8a228.jpg" }, { "if": { @@ -178793,7 +179047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldsmiths-f07ca3.png" + "then": "https://data.mapcomplete.org/nsi//logos/goldsmiths-f07ca3.png" }, { "if": { @@ -178808,7 +179062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gorjana-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gorjana-70f101.jpg" }, { "if": { @@ -178823,7 +179077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guldfynd-57004a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guldfynd-57004a.jpg" }, { "if": { @@ -178838,7 +179092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hstern-5f2e62.gif" + "then": "https://data.mapcomplete.org/nsi//logos/hstern-5f2e62.gif" }, { "if": { @@ -178853,7 +179107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsamuel-f07ca3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsamuel-f07ca3.jpg" }, { "if": { @@ -178868,7 +179122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harryritchies-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harryritchies-70f101.jpg" }, { "if": { @@ -178883,7 +179137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helzbergdiamonds-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/helzbergdiamonds-70f101.jpg" }, { "if": { @@ -178898,7 +179152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/histoiredor-d59505.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/histoiredor-d59505.jpg" }, { "if": { @@ -178913,7 +179167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icing-30e94f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icing-30e94f.jpg" }, { "if": { @@ -178928,23 +179182,23 @@ } ] }, - "then": "./assets/data/nsi/logos/jamesaveryjewelry-70f101.png" + "then": "https://data.mapcomplete.org/nsi//logos/jamesaveryjewelry-70f101.png" }, { "if": { "and": [ - "official_name=Jared The Galleria of Jewelry", "shop=jewelry", { "or": [ "brand=Jared", "brand:wikidata=Q62029282", - "name=Jared" + "name=Jared", + "official_name=Jared The Galleria of Jewelry" ] } ] }, - "then": "./assets/data/nsi/logos/jared-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jared-70f101.jpg" }, { "if": { @@ -178967,7 +179221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jewelcafe-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jewelcafe-a038d2.jpg" }, { "if": { @@ -178982,7 +179236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/josalukkas-96eeb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/josalukkas-96eeb4.jpg" }, { "if": { @@ -178997,7 +179251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joscojewellers-96eeb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joscojewellers-96eeb4.jpg" }, { "if": { @@ -179012,7 +179266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joyalukkas-534941.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joyalukkas-534941.jpg" }, { "if": { @@ -179027,7 +179281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juliendorcel-05afc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juliendorcel-05afc6.jpg" }, { "if": { @@ -179042,7 +179296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juwelierkraemer-7f11cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juwelierkraemer-7f11cf.jpg" }, { "if": { @@ -179057,7 +179311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kalyanjewellers-a038d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/kalyanjewellers-a038d2.png" }, { "if": { @@ -179072,7 +179326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kayjewelers-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kayjewelers-70f101.jpg" }, { "if": { @@ -179087,7 +179341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kendrascott-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kendrascott-70f101.jpg" }, { "if": { @@ -179102,7 +179356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifevivara-c81860.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifevivara-c81860.jpg" }, { "if": { @@ -179117,7 +179371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louispion-381def.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louispion-381def.jpg" }, { "if": { @@ -179132,7 +179386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lovisa-a038d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/lovisa-a038d2.png" }, { "if": { @@ -179147,7 +179401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lucardi-0e6622.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lucardi-0e6622.jpg" }, { "if": { @@ -179162,7 +179416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maisonbirks-7fc58d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maisonbirks-7fc58d.jpg" }, { "if": { @@ -179177,7 +179431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malabargoldanddiamonds-9fa2ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/malabargoldanddiamonds-9fa2ef.png" }, { "if": { @@ -179192,7 +179446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manegeabijoux-381def.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manegeabijoux-381def.jpg" }, { "if": { @@ -179207,7 +179461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marcorian-381def.png" + "then": "https://data.mapcomplete.org/nsi//logos/marcorian-381def.png" }, { "if": { @@ -179222,7 +179476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maty-381def.svg" + "then": "https://data.mapcomplete.org/nsi//logos/maty-381def.svg" }, { "if": { @@ -179237,7 +179491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mauboussin-b46d44.png" + "then": "https://data.mapcomplete.org/nsi//logos/mauboussin-b46d44.png" }, { "if": { @@ -179252,7 +179506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/messika-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/messika-a038d2.jpg" }, { "if": { @@ -179267,7 +179521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michaelhill-4ffa40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michaelhill-4ffa40.jpg" }, { "if": { @@ -179282,7 +179536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mimco-0359a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mimco-0359a8.jpg" }, { "if": { @@ -179297,7 +179551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morganjewelers-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morganjewelers-70f101.jpg" }, { "if": { @@ -179312,7 +179566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myjewellery-ffe265.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/myjewellery-ffe265.jpg" }, { "if": { @@ -179327,7 +179581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nahoku-70f101.png" + "then": "https://data.mapcomplete.org/nsi//logos/nahoku-70f101.png" }, { "if": { @@ -179342,7 +179596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orovivo-7f11cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orovivo-7f11cf.jpg" }, { "if": { @@ -179357,7 +179611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pandora-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pandora-a038d2.jpg" }, { "if": { @@ -179372,7 +179626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pcjeweller-96eeb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pcjeweller-96eeb4.jpg" }, { "if": { @@ -179387,7 +179641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peoplesjewellers-7fc58d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peoplesjewellers-7fc58d.jpg" }, { "if": { @@ -179402,7 +179656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piaget-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piaget-a038d2.jpg" }, { "if": { @@ -179417,7 +179671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pletzsch-7f11cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pletzsch-7f11cf.jpg" }, { "if": { @@ -179432,7 +179686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pnj-a9c8da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pnj-a9c8da.jpg" }, { "if": { @@ -179447,7 +179701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prouds-0359a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prouds-0359a8.jpg" }, { "if": { @@ -179462,7 +179716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schaapencitroen-0e6622.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schaapencitroen-0e6622.jpg" }, { "if": { @@ -179477,7 +179731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shaneco-70f101.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shaneco-70f101.svg" }, { "if": { @@ -179492,7 +179746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sofia-584c2c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sofia-584c2c.png" }, { "if": { @@ -179507,7 +179761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sterns-d5d8d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/sterns-d5d8d2.png" }, { "if": { @@ -179522,7 +179776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stroilioro-60a080.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stroilioro-60a080.jpg" }, { "if": { @@ -179537,7 +179791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swarovski-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swarovski-a038d2.jpg" }, { "if": { @@ -179554,7 +179808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tanishq-96eeb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tanishq-96eeb4.jpg" }, { "if": { @@ -179569,23 +179823,23 @@ } ] }, - "then": "./assets/data/nsi/logos/thomassabo-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thomassabo-a038d2.jpg" }, { "if": { "and": [ - "official_name=Tiffany & Co.", "shop=jewelry", { "or": [ "brand=Tiffany & Company", "brand:wikidata=Q1066858", - "name=Tiffany & Company" + "name=Tiffany & Company", + "official_name=Tiffany & Co." ] } ] }, - "then": "./assets/data/nsi/logos/tiffanyandcompany-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tiffanyandcompany-a038d2.jpg" }, { "if": { @@ -179600,7 +179854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/titan-96eeb4.png" + "then": "https://data.mapcomplete.org/nsi//logos/titan-96eeb4.png" }, { "if": { @@ -179615,7 +179869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tous-a038d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tous-a038d2.jpg" }, { "if": { @@ -179630,7 +179884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valmano-1052ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valmano-1052ca.jpg" }, { "if": { @@ -179645,7 +179899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivara-c81860.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivara-c81860.jpg" }, { "if": { @@ -179660,7 +179914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warrenjames-f07ca3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warrenjames-f07ca3.jpg" }, { "if": { @@ -179675,23 +179929,23 @@ } ] }, - "then": "./assets/data/nsi/logos/wempe-811e73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wempe-811e73.jpg" }, { "if": { "and": [ - "official_name=Zales The Diamond Store", "shop=jewelry", { "or": [ "brand=Zales", "brand:wikidata=Q8065305", - "name=Zales" + "name=Zales", + "official_name=Zales The Diamond Store" ] } ] }, - "then": "./assets/data/nsi/logos/zales-70f101.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zales-70f101.jpg" }, { "if": { @@ -179706,7 +179960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zlatarnacelje-702c99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zlatarnacelje-702c99.jpg" }, { "if": { @@ -179725,7 +179979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adamas-ee45ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adamas-ee45ea.jpg" }, { "if": { @@ -179740,7 +179994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cc67fd-a7f1e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cc67fd-a7f1e4.jpg" }, { "if": { @@ -179759,14 +180013,11 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrzoloto-a7f1e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/ukrzoloto-a7f1e4.png" }, { "if": { "and": [ - "official_name=ジュエリーツツミ", - "official_name:en=Jewelry Tsutsumi", - "official_name:ja=ジュエリーツツミ", "shop=jewelry", { "or": [ @@ -179776,12 +180027,15 @@ "brand:wikidata=Q11318759", "name=ツツミ", "name:en=Tsutsumi", - "name:ja=ツツミ" + "name:ja=ツツミ", + "official_name=ジュエリーツツミ", + "official_name:en=Jewelry Tsutsumi", + "official_name:ja=ジュエリーツツミ" ] } ] }, - "then": "./assets/data/nsi/logos/tsutsumi-36e4b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsutsumi-36e4b3.jpg" }, { "if": { @@ -179798,7 +180052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9074c9-a7992b.png" + "then": "https://data.mapcomplete.org/nsi//logos/9074c9-a7992b.png" }, { "if": { @@ -179817,7 +180071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenlife-a7992b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenlife-a7992b.jpg" }, { "if": { @@ -179836,7 +180090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukfookjewellery-7fe408.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukfookjewellery-7fe408.jpg" }, { "if": { @@ -179859,7 +180113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukfookjewellery-2f2ea0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukfookjewellery-2f2ea0.jpg" }, { "if": { @@ -179878,7 +180132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chowtaifook-4629af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chowtaifook-4629af.jpg" }, { "if": { @@ -179901,7 +180155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chowtaifook-2f2ea0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chowtaifook-2f2ea0.jpg" }, { "if": { @@ -179920,7 +180174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chowsangsang-a99738.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chowsangsang-a99738.jpg" }, { "if": { @@ -179943,7 +180197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chowsangsang-2f2ea0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chowsangsang-2f2ea0.jpg" }, { "if": { @@ -179962,7 +180216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laofengxiang-45876e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laofengxiang-45876e.jpg" }, { "if": { @@ -179985,7 +180239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laofengxiang-2f2ea0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laofengxiang-2f2ea0.jpg" }, { "if": { @@ -180007,7 +180261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsl-2f2ea0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsl-2f2ea0.jpg" }, { "if": { @@ -180029,7 +180283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsl-7fb071.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsl-7fb071.jpg" }, { "if": { @@ -180052,7 +180306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3dgjewellery-f29a00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3dgjewellery-f29a00.jpg" }, { "if": { @@ -180071,7 +180325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9954ea-a7992b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9954ea-a7992b.jpg" }, { "if": { @@ -180086,7 +180340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inovine-769b40.png" + "then": "https://data.mapcomplete.org/nsi//logos/inovine-769b40.png" }, { "if": { @@ -180102,7 +180356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiosk-c47323.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiosk-c47323.jpg" }, { "if": { @@ -180117,7 +180371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lietuvosspauda-34adb3.png" + "then": "https://data.mapcomplete.org/nsi//logos/lietuvosspauda-34adb3.png" }, { "if": { @@ -180135,7 +180389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mojkiosk-86ee53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mojkiosk-86ee53.jpg" }, { "if": { @@ -180150,7 +180404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/narvesen-a42ea8.png" + "then": "https://data.mapcomplete.org/nsi//logos/narvesen-a42ea8.png" }, { "if": { @@ -180165,7 +180419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pressbyran-c177cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pressbyran-c177cf.jpg" }, { "if": { @@ -180180,7 +180434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rkioski-e0c7b3.png" + "then": "https://data.mapcomplete.org/nsi//logos/rkioski-e0c7b3.png" }, { "if": { @@ -180195,7 +180449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ruch-5bd120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ruch-5bd120.jpg" }, { "if": { @@ -180210,7 +180464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicestoredb-140365.svg" + "then": "https://data.mapcomplete.org/nsi//logos/servicestoredb-140365.svg" }, { "if": { @@ -180225,7 +180479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tisak-51cd1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tisak-51cd1e.jpg" }, { "if": { @@ -180240,7 +180494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/total-5fe041.png" + "then": "https://data.mapcomplete.org/nsi//logos/total-5fe041.png" }, { "if": { @@ -180255,7 +180509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yormas-140365.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yormas-140365.jpg" }, { "if": { @@ -180274,7 +180528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiosk-84165a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kiosk-84165a.svg" }, { "if": { @@ -180289,7 +180543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benchmarx-26c64e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/benchmarx-26c64e.jpg" }, { "if": { @@ -180304,7 +180558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buildersfirstsource-964d64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buildersfirstsource-964d64.jpg" }, { "if": { @@ -180319,7 +180573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bulthaup-1743cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bulthaup-1743cc.jpg" }, { "if": { @@ -180334,7 +180588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cuisinella-944de4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cuisinella-944de4.jpg" }, { "if": { @@ -180349,7 +180603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gaggenau-1743cc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gaggenau-1743cc.svg" }, { "if": { @@ -180364,7 +180618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/howdensjoinery-26c64e.png" + "then": "https://data.mapcomplete.org/nsi//logos/howdensjoinery-26c64e.png" }, { "if": { @@ -180379,7 +180633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ixina-d089d8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ixina-d089d8.png" }, { "if": { @@ -180394,7 +180648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keukenkampioen-169f26.png" + "then": "https://data.mapcomplete.org/nsi//logos/keukenkampioen-169f26.png" }, { "if": { @@ -180409,7 +180663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitchenconnection-8118ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitchenconnection-8118ed.jpg" }, { "if": { @@ -180424,7 +180678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitchenwarehouse-8118ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitchenwarehouse-8118ed.jpg" }, { "if": { @@ -180439,7 +180693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuchenaktuell-d05c66.png" + "then": "https://data.mapcomplete.org/nsi//logos/kuchenaktuell-d05c66.png" }, { "if": { @@ -180454,7 +180708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuchenschaffrath-d05c66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kuchenschaffrath-d05c66.jpg" }, { "if": { @@ -180469,7 +180723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuchentreff-d05c66.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kuchentreff-d05c66.svg" }, { "if": { @@ -180484,7 +180738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kutchenhaus-26c64e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kutchenhaus-26c64e.jpg" }, { "if": { @@ -180499,7 +180753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magnet-26c64e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magnet-26c64e.jpg" }, { "if": { @@ -180514,7 +180768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marquardtkuchen-d05c66.png" + "then": "https://data.mapcomplete.org/nsi//logos/marquardtkuchen-d05c66.png" }, { "if": { @@ -180529,7 +180783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medakuchenfachmarkt-d05c66.svg" + "then": "https://data.mapcomplete.org/nsi//logos/medakuchenfachmarkt-d05c66.svg" }, { "if": { @@ -180544,7 +180798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobalpa-7cc7bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobalpa-7cc7bc.jpg" }, { "if": { @@ -180559,7 +180813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oresi-10bb52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oresi-10bb52.jpg" }, { "if": { @@ -180575,7 +180829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/planakuchenland-d05c66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/planakuchenland-d05c66.jpg" }, { "if": { @@ -180590,7 +180844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poggenpohl-1743cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poggenpohl-1743cc.jpg" }, { "if": { @@ -180605,7 +180859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portakuchenwelt-d05c66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portakuchenwelt-d05c66.jpg" }, { "if": { @@ -180620,7 +180874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reddykuchen-d05c66.png" + "then": "https://data.mapcomplete.org/nsi//logos/reddykuchen-d05c66.png" }, { "if": { @@ -180635,7 +180889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sabag-56a74d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sabag-56a74d.jpg" }, { "if": { @@ -180650,7 +180904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schmidt-b36c9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schmidt-b36c9e.jpg" }, { "if": { @@ -180665,7 +180919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siematic-1743cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siematic-1743cc.jpg" }, { "if": { @@ -180680,7 +180934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/socooc-789e69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/socooc-789e69.jpg" }, { "if": { @@ -180695,7 +180949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superkeukens-169f26.png" + "then": "https://data.mapcomplete.org/nsi//logos/superkeukens-169f26.png" }, { "if": { @@ -180710,7 +180964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tulpkeukens-169f26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tulpkeukens-169f26.jpg" }, { "if": { @@ -180725,7 +180979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wrenkitchens-26c64e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wrenkitchens-26c64e.jpg" }, { "if": { @@ -180740,7 +180994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecoexpress-7130b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecoexpress-7130b3.jpg" }, { "if": { @@ -180755,7 +181009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedqueen-ca17f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/speedqueen-ca17f3.png" }, { "if": { @@ -180771,7 +181025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washme-ca17f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washme-ca17f3.jpg" }, { "if": { @@ -180787,7 +181041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washy-ba3f3f.png" + "then": "https://data.mapcomplete.org/nsi//logos/washy-ba3f3f.png" }, { "if": { @@ -180807,7 +181061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drwashing-92267a.png" + "then": "https://data.mapcomplete.org/nsi//logos/drwashing-92267a.png" }, { "if": { @@ -180822,7 +181076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aigner-beb4a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aigner-beb4a5.jpg" }, { "if": { @@ -180837,7 +181091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/art93-b8d727.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/art93-b8d727.jpg" }, { "if": { @@ -180852,7 +181106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hidesign-0fedbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hidesign-0fedbd.jpg" }, { "if": { @@ -180867,7 +181121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picard-da4c8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/picard-da4c8c.jpg" }, { "if": { @@ -180882,7 +181136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/velez-38a801.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/velez-38a801.jpg" }, { "if": { @@ -180897,7 +181151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beaconlighting-d69138.png" + "then": "https://data.mapcomplete.org/nsi//logos/beaconlighting-d69138.png" }, { "if": { @@ -180912,7 +181166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lampsplus-00df70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lampsplus-00df70.jpg" }, { "if": { @@ -180927,7 +181181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lumimart-cc1c34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lumimart-cc1c34.jpg" }, { "if": { @@ -180942,7 +181196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/misterminit-b68e86.png" + "then": "https://data.mapcomplete.org/nsi//logos/misterminit-b68e86.png" }, { "if": { @@ -180957,7 +181211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/os9-a897ac.png" + "then": "https://data.mapcomplete.org/nsi//logos/os9-a897ac.png" }, { "if": { @@ -180972,7 +181226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timpson-5c571a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/timpson-5c571a.jpg" }, { "if": { @@ -180987,7 +181241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loteriasyapuestasdelestado-1a20a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/loteriasyapuestasdelestado-1a20a0.svg" }, { "if": { @@ -181002,30 +181256,27 @@ } ] }, - "then": "./assets/data/nsi/logos/lotto-646c16.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lotto-646c16.svg" }, { "if": { "and": [ - "official_name=Organización Nacional de Ciegos Españoles", "shop=lottery", { "or": [ "brand=ONCE", "brand:wikidata=Q1750397", - "name=ONCE" + "name=ONCE", + "official_name=Organización Nacional de Ciegos Españoles" ] } ] }, - "then": "./assets/data/nsi/logos/once-1a20a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/once-1a20a0.jpg" }, { "if": { "and": [ - "official_name=全国自治宝くじ", - "official_name:en=National Autonomous Lottery", - "official_name:ja=全国自治宝くじ", "shop=lottery", { "or": [ @@ -181035,12 +181286,15 @@ "brand:wikidata=Q87824893", "name=宝くじ", "name:en=Takarakuji", - "name:ja=宝くじ" + "name:ja=宝くじ", + "official_name=全国自治宝くじ", + "official_name:en=National Autonomous Lottery", + "official_name:ja=全国自治宝くじ" ] } ] }, - "then": "./assets/data/nsi/logos/takarakuji-760f8f.png" + "then": "https://data.mapcomplete.org/nsi//logos/takarakuji-760f8f.png" }, { "if": { @@ -181058,7 +181312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citymall-ff995d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citymall-ff995d.jpg" }, { "if": { @@ -181074,7 +181328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/directfactoryoutlets-3fb812.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/directfactoryoutlets-3fb812.jpg" }, { "if": { @@ -181089,7 +181343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gptgroup-3fb812.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gptgroup-3fb812.jpg" }, { "if": { @@ -181104,7 +181358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/homeco-3fb812.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homeco-3fb812.jpg" }, { "if": { @@ -181119,7 +181373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcarthurglendesigneroutlet-c5d183.png" + "then": "https://data.mapcomplete.org/nsi//logos/mcarthurglendesigneroutlet-c5d183.png" }, { "if": { @@ -181134,7 +181388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tangeroutlets-7adb3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tangeroutlets-7adb3b.jpg" }, { "if": { @@ -181149,7 +181403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vicinitycentres-3fb812.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vicinitycentres-3fb812.jpg" }, { "if": { @@ -181164,7 +181418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waltermart-ff995d.png" + "then": "https://data.mapcomplete.org/nsi//logos/waltermart-ff995d.png" }, { "if": { @@ -181181,7 +181435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfield-d9ac7d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westfield-d9ac7d.svg" }, { "if": { @@ -181198,7 +181452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfield-1e4415.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westfield-1e4415.svg" }, { "if": { @@ -181217,7 +181471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ario-ee1aa0.gif" + "then": "https://data.mapcomplete.org/nsi//logos/ario-ee1aa0.gif" }, { "if": { @@ -181236,7 +181490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeonmall-ee1aa0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aeonmall-ee1aa0.svg" }, { "if": { @@ -181251,7 +181505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banahawhealsspa-c08293.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banahawhealsspa-c08293.jpg" }, { "if": { @@ -181266,7 +181520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elementsmassage-17cf41.png" + "then": "https://data.mapcomplete.org/nsi//logos/elementsmassage-17cf41.png" }, { "if": { @@ -181281,7 +181535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handandstonemassageandfacialspa-12d342.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/handandstonemassageandfacialspa-12d342.jpg" }, { "if": { @@ -181296,7 +181550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massageaddict-23506d.png" + "then": "https://data.mapcomplete.org/nsi//logos/massageaddict-23506d.png" }, { "if": { @@ -181311,7 +181565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massageenvy-12d342.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/massageenvy-12d342.jpg" }, { "if": { @@ -181326,7 +181580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massageheights-17cf41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/massageheights-17cf41.jpg" }, { "if": { @@ -181345,7 +181599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reraku-22d14b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reraku-22d14b.jpg" }, { "if": { @@ -181364,7 +181618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karadafactory-22d14b.png" + "then": "https://data.mapcomplete.org/nsi//logos/karadafactory-22d14b.png" }, { "if": { @@ -181383,7 +181637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/relxle-22d14b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/relxle-22d14b.jpg" }, { "if": { @@ -181398,7 +181652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bastide-6c70b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bastide-6c70b6.jpg" }, { "if": { @@ -181413,7 +181667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bioped-615001.png" + "then": "https://data.mapcomplete.org/nsi//logos/bioped-615001.png" }, { "if": { @@ -181428,7 +181682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalseatingandmobility-e652bb.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalseatingandmobility-e652bb.png" }, { "if": { @@ -181443,7 +181697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ortosmart-f82bbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ortosmart-f82bbe.jpg" }, { "if": { @@ -181458,7 +181712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pofampoznan-e709d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/pofampoznan-e709d7.png" }, { "if": { @@ -181473,7 +181727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thermofisherscientific-8a6de9.png" + "then": "https://data.mapcomplete.org/nsi//logos/thermofisherscientific-8a6de9.png" }, { "if": { @@ -181488,7 +181742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/823e1f-d15566.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/823e1f-d15566.jpg" }, { "if": { @@ -181503,7 +181757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9cfa6f-f82bbe.png" + "then": "https://data.mapcomplete.org/nsi//logos/9cfa6f-f82bbe.png" }, { "if": { @@ -181518,7 +181772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2degrees-5219b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2degrees-5219b0.jpg" }, { "if": { @@ -181533,7 +181787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3store-dbafb9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3store-dbafb9.jpg" }, { "if": { @@ -181548,7 +181802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airtel-62d34e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airtel-62d34e.jpg" }, { "if": { @@ -181563,7 +181817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atandt-1b6a25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atandt-1b6a25.jpg" }, { "if": { @@ -181578,7 +181832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atom-bb2221.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atom-bb2221.jpg" }, { "if": { @@ -181597,7 +181851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aushop-0a8be9.png" + "then": "https://data.mapcomplete.org/nsi//logos/aushop-0a8be9.png" }, { "if": { @@ -181612,7 +181866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayyildiz-73b980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ayyildiz-73b980.jpg" }, { "if": { @@ -181627,7 +181881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestbuymobile-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bestbuymobile-947b24.jpg" }, { "if": { @@ -181642,7 +181896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bite-cc5c6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bite-cc5c6f.jpg" }, { "if": { @@ -181657,7 +181911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boostmobile-ce3e5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boostmobile-ce3e5c.jpg" }, { "if": { @@ -181672,7 +181926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bouyguestelecom-f6fe9a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bouyguestelecom-f6fe9a.png" }, { "if": { @@ -181687,7 +181941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carphonewarehouse-eb0c8f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/carphonewarehouse-eb0c8f.svg" }, { "if": { @@ -181702,7 +181956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chatr-947b24.png" + "then": "https://data.mapcomplete.org/nsi//logos/chatr-947b24.png" }, { "if": { @@ -181717,7 +181971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/claro-1c9651.svg" + "then": "https://data.mapcomplete.org/nsi//logos/claro-1c9651.svg" }, { "if": { @@ -181732,7 +181986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosmote-d5175a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosmote-d5175a.jpg" }, { "if": { @@ -181748,7 +182002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cricketwireless-ce3e5c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cricketwireless-ce3e5c.png" }, { "if": { @@ -181763,7 +182017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/datesmobile-0fdd33.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/datesmobile-0fdd33.jpg" }, { "if": { @@ -181778,7 +182032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/digicel-ee5434.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/digicel-ee5434.jpg" }, { "if": { @@ -181793,7 +182047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ee-94b138.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ee-94b138.svg" }, { "if": { @@ -181808,7 +182062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entel-5960ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entel-5960ea.jpg" }, { "if": { @@ -181823,7 +182077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fido-947b24.png" + "then": "https://data.mapcomplete.org/nsi//logos/fido-947b24.png" }, { "if": { @@ -181838,7 +182092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/free-f6fe9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/free-f6fe9a.jpg" }, { "if": { @@ -181853,7 +182107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freedommobile-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freedommobile-947b24.jpg" }, { "if": { @@ -181872,7 +182126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huawei-667935.png" + "then": "https://data.mapcomplete.org/nsi//logos/huawei-667935.png" }, { "if": { @@ -181887,7 +182141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iliad-c4d7ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iliad-c4d7ba.jpg" }, { "if": { @@ -181902,7 +182156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ishopmixup-fb2f08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ishopmixup-fb2f08.jpg" }, { "if": { @@ -181917,7 +182171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koodo-947b24.png" + "then": "https://data.mapcomplete.org/nsi//logos/koodo-947b24.png" }, { "if": { @@ -181932,7 +182186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kpn-c7ad94.png" + "then": "https://data.mapcomplete.org/nsi//logos/kpn-c7ad94.png" }, { "if": { @@ -181947,7 +182201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifecell-985251.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifecell-985251.jpg" }, { "if": { @@ -181962,7 +182216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meo-fcef49.svg" + "then": "https://data.mapcomplete.org/nsi//logos/meo-fcef49.svg" }, { "if": { @@ -181978,7 +182232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrobytmobile-ce3e5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metrobytmobile-ce3e5c.jpg" }, { "if": { @@ -181993,7 +182247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobilezone-741c3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobilezone-741c3f.jpg" }, { "if": { @@ -182008,7 +182262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobilonline-0fdd33.png" + "then": "https://data.mapcomplete.org/nsi//logos/mobilonline-0fdd33.png" }, { "if": { @@ -182023,7 +182277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moov-6ab8a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moov-6ab8a4.jpg" }, { "if": { @@ -182038,7 +182292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/movistar-de0f48.png" + "then": "https://data.mapcomplete.org/nsi//logos/movistar-de0f48.png" }, { "if": { @@ -182053,7 +182307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtn-fe03c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtn-fe03c5.jpg" }, { "if": { @@ -182068,7 +182322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nos-fcef49.png" + "then": "https://data.mapcomplete.org/nsi//logos/nos-fcef49.png" }, { "if": { @@ -182083,7 +182337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nova-d5175a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nova-d5175a.jpg" }, { "if": { @@ -182098,7 +182352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/o2-8befd0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/o2-8befd0.jpg" }, { "if": { @@ -182113,7 +182367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odido-c7ad94.png" + "then": "https://data.mapcomplete.org/nsi//logos/odido-c7ad94.png" }, { "if": { @@ -182128,7 +182382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oppo-ee5434.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oppo-ee5434.jpg" }, { "if": { @@ -182143,7 +182397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optie1-c7ad94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optie1-c7ad94.jpg" }, { "if": { @@ -182158,7 +182412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optus-bae8bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optus-bae8bc.jpg" }, { "if": { @@ -182173,7 +182427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orange-ee5434.png" + "then": "https://data.mapcomplete.org/nsi//logos/orange-ee5434.png" }, { "if": { @@ -182188,7 +182442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepcell-43981d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pepcell-43981d.jpg" }, { "if": { @@ -182203,7 +182457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/personal-3c681b.png" + "then": "https://data.mapcomplete.org/nsi//logos/personal-3c681b.png" }, { "if": { @@ -182218,7 +182472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phonehouse-cf5d3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phonehouse-cf5d3e.jpg" }, { "if": { @@ -182233,7 +182487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/play-914a2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/play-914a2a.png" }, { "if": { @@ -182248,7 +182502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plus-914a2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plus-914a2a.jpg" }, { "if": { @@ -182263,7 +182517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rogers-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rogers-947b24.jpg" }, { "if": { @@ -182278,7 +182532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safaricom-158a4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safaricom-158a4a.jpg" }, { "if": { @@ -182293,7 +182547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safaricom-46e307.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safaricom-46e307.jpg" }, { "if": { @@ -182308,7 +182562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sfr-ba7290.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sfr-ba7290.jpg" }, { "if": { @@ -182323,7 +182577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartshop-0fdd33.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smartshop-0fdd33.jpg" }, { "if": { @@ -182338,7 +182592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spark-5219b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spark-5219b0.jpg" }, { "if": { @@ -182353,7 +182607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sprint-ce3e5c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sprint-ce3e5c.svg" }, { "if": { @@ -182368,7 +182622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tmobile-5f2bc1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tmobile-5f2bc1.jpg" }, { "if": { @@ -182383,7 +182637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tmobile-ce3e5c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tmobile-ce3e5c.svg" }, { "if": { @@ -182398,7 +182652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tboothwireless-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tboothwireless-947b24.jpg" }, { "if": { @@ -182413,7 +182667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telcel-9812f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telcel-9812f0.jpg" }, { "if": { @@ -182428,7 +182682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tele2-ee5434.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tele2-ee5434.jpg" }, { "if": { @@ -182443,7 +182697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telekom-7c714d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telekom-7c714d.jpg" }, { "if": { @@ -182459,7 +182713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telekomshop-73b980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telekomshop-73b980.jpg" }, { "if": { @@ -182474,7 +182728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenor-77edfc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telenor-77edfc.svg" }, { "if": { @@ -182489,7 +182743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenor-733df6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telenor-733df6.svg" }, { "if": { @@ -182504,7 +182758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenor-20e3f8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telenor-20e3f8.svg" }, { "if": { @@ -182519,7 +182773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenor-5d1f83.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telenor-5d1f83.svg" }, { "if": { @@ -182533,7 +182787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenorbutikken-c74974.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telenorbutikken-c74974.svg" }, { "if": { @@ -182548,7 +182802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telia-856553.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telia-856553.svg" }, { "if": { @@ -182563,7 +182817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telkom-43981d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telkom-43981d.svg" }, { "if": { @@ -182578,7 +182832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telstra-bae8bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telstra-bae8bc.jpg" }, { "if": { @@ -182593,7 +182847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telus-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telus-947b24.jpg" }, { "if": { @@ -182608,7 +182862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tescomobile-94b138.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tescomobile-94b138.jpg" }, { "if": { @@ -182623,7 +182877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/themobileshop-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/themobileshop-947b24.jpg" }, { "if": { @@ -182638,7 +182892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/three-94b138.svg" + "then": "https://data.mapcomplete.org/nsi//logos/three-94b138.svg" }, { "if": { @@ -182653,7 +182907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigo-90790a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tigo-90790a.svg" }, { "if": { @@ -182668,7 +182922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigo-4a4860.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigo-4a4860.jpg" }, { "if": { @@ -182683,7 +182937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigo-e91b0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigo-e91b0c.jpg" }, { "if": { @@ -182698,7 +182952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigo-ee0f07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigo-ee0f07.jpg" }, { "if": { @@ -182713,7 +182967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigo-98108f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tigo-98108f.svg" }, { "if": { @@ -182728,7 +182982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tim-a66d78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tim-a66d78.jpg" }, { "if": { @@ -182743,7 +182997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalbyverizon-ce3e5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/totalbyverizon-ce3e5c.jpg" }, { "if": { @@ -182758,7 +183012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turktelekom-0b23a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turktelekom-0b23a0.jpg" }, { "if": { @@ -182773,7 +183027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkcell-fa064d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkcell-fa064d.jpg" }, { "if": { @@ -182788,7 +183042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uscellular-ce3e5c.png" + "then": "https://data.mapcomplete.org/nsi//logos/uscellular-ce3e5c.png" }, { "if": { @@ -182807,7 +183061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uqspot-0a8be9.png" + "then": "https://data.mapcomplete.org/nsi//logos/uqspot-0a8be9.png" }, { "if": { @@ -182823,7 +183077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verizon-ce3e5c.png" + "then": "https://data.mapcomplete.org/nsi//logos/verizon-ce3e5c.png" }, { "if": { @@ -182838,7 +183092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/videotron-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/videotron-947b24.jpg" }, { "if": { @@ -182853,7 +183107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1prodajnomesto-4fc1f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/a1prodajnomesto-4fc1f0.png" }, { "if": { @@ -182868,7 +183122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginplus-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginplus-947b24.jpg" }, { "if": { @@ -182883,7 +183137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivo-7d4fb5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivo-7d4fb5.jpg" }, { "if": { @@ -182898,7 +183152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivo-efd65c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivo-efd65c.jpg" }, { "if": { @@ -182913,7 +183167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacom-dd47b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacom-dd47b4.jpg" }, { "if": { @@ -182928,7 +183182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacom-60670b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacom-60670b.jpg" }, { "if": { @@ -182943,7 +183197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacom-4ee583.png" + "then": "https://data.mapcomplete.org/nsi//logos/vodacom-4ee583.png" }, { "if": { @@ -182958,7 +183212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacom-43981d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacom-43981d.jpg" }, { "if": { @@ -182973,7 +183227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacom-6656e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacom-6656e3.jpg" }, { "if": { @@ -182988,7 +183242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodafone-2a2469.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodafone-2a2469.jpg" }, { "if": { @@ -183003,7 +183257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodafone-08fda3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodafone-08fda3.jpg" }, { "if": { @@ -183018,7 +183272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodafone-985251.png" + "then": "https://data.mapcomplete.org/nsi//logos/vodafone-985251.png" }, { "if": { @@ -183033,7 +183287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodafoneidea-733df6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodafoneidea-733df6.jpg" }, { "if": { @@ -183048,7 +183302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartwireless-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartwireless-947b24.jpg" }, { "if": { @@ -183063,7 +183317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wifietecsa-9a8553.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wifietecsa-9a8553.jpg" }, { "if": { @@ -183078,7 +183332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/windtre-c4d7ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/windtre-c4d7ba.jpg" }, { "if": { @@ -183093,7 +183347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wirelesswave-947b24.png" + "then": "https://data.mapcomplete.org/nsi//logos/wirelesswave-947b24.png" }, { "if": { @@ -183108,7 +183362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wowmobileboutique-947b24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wowmobileboutique-947b24.jpg" }, { "if": { @@ -183123,7 +183377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xiaomi-667935.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xiaomi-667935.jpg" }, { "if": { @@ -183138,7 +183392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yoigo-7135b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/yoigo-7135b5.png" }, { "if": { @@ -183153,7 +183407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yourfone-73b980.png" + "then": "https://data.mapcomplete.org/nsi//logos/yourfone-73b980.png" }, { "if": { @@ -183168,7 +183422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zagg-dac92d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zagg-dac92d.jpg" }, { "if": { @@ -183185,7 +183439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/germanos-602a3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/germanos-602a3b.png" }, { "if": { @@ -183200,7 +183454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/77c523-985251.png" + "then": "https://data.mapcomplete.org/nsi//logos/77c523-985251.png" }, { "if": { @@ -183219,7 +183473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beeline-3f097a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beeline-3f097a.jpg" }, { "if": { @@ -183238,7 +183492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euroset-62982a.png" + "then": "https://data.mapcomplete.org/nsi//logos/euroset-62982a.png" }, { "if": { @@ -183253,7 +183507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/263e37-985251.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/263e37-985251.jpg" }, { "if": { @@ -183272,7 +183526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyivstar-985251.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kyivstar-985251.jpg" }, { "if": { @@ -183291,7 +183545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megafon-18f86b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megafon-18f86b.jpg" }, { "if": { @@ -183310,7 +183564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mts-3162ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mts-3162ba.jpg" }, { "if": { @@ -183329,7 +183583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svyaznoy-fee8f4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/svyaznoy-fee8f4.svg" }, { "if": { @@ -183348,7 +183602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tele2-2c407d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tele2-2c407d.jpg" }, { "if": { @@ -183367,7 +183621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cellfie-693072.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cellfie-693072.jpg" }, { "if": { @@ -183386,7 +183640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotmobile-0c2e23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotmobile-0c2e23.jpg" }, { "if": { @@ -183405,7 +183659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pelephone-0c2e23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pelephone-0c2e23.jpg" }, { "if": { @@ -183424,7 +183678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/partner-0c2e23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/partner-0c2e23.jpg" }, { "if": { @@ -183443,7 +183697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/softbankshop-0a8be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/softbankshop-0a8be9.jpg" }, { "if": { @@ -183462,7 +183716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teluru-0a8be9.png" + "then": "https://data.mapcomplete.org/nsi//logos/teluru-0a8be9.png" }, { "if": { @@ -183481,7 +183735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/docomoshop-0a8be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/docomoshop-0a8be9.jpg" }, { "if": { @@ -183500,7 +183754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ymobile-0a8be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ymobile-0a8be9.jpg" }, { "if": { @@ -183519,7 +183773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huawei-a9769c.png" + "then": "https://data.mapcomplete.org/nsi//logos/huawei-a9769c.png" }, { "if": { @@ -183538,7 +183792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanmobile-8aaeb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanmobile-8aaeb3.jpg" }, { "if": { @@ -183557,7 +183811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mi-c940bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mi-c940bf.jpg" }, { "if": { @@ -183576,7 +183830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mi-5c8743.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mi-5c8743.jpg" }, { "if": { @@ -183595,7 +183849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rakutenmobile-0a8be9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rakutenmobile-0a8be9.svg" }, { "if": { @@ -183614,16 +183868,11 @@ } ] }, - "then": "./assets/data/nsi/logos/honor-a9769c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honor-a9769c.jpg" }, { "if": { "and": [ - "official_name=衛訊電訊 Wilson Communications", - "official_name:en=Wilson Communications", - "official_name:zh=衛訊電訊", - "official_name:zh-Hans=卫讯电讯", - "official_name:zh-Hant=衛訊電訊", "shop=mobile_phone", { "or": [ @@ -183637,21 +183886,21 @@ "name:en=Wilson", "name:zh=衛訊", "name:zh-Hans=卫讯", - "name:zh-Hant=衛訊" + "name:zh-Hant=衛訊", + "official_name=衛訊電訊 Wilson Communications", + "official_name:en=Wilson Communications", + "official_name:zh=衛訊電訊", + "official_name:zh-Hans=卫讯电讯", + "official_name:zh-Hant=衛訊電訊" ] } ] }, - "then": "./assets/data/nsi/logos/wilson-55ee4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilson-55ee4b.jpg" }, { "if": { "and": [ - "official_name=領域電訊 CityLink Electronics", - "official_name:en=CityLink Electronics", - "official_name:zh=領域電訊", - "official_name:zh-Hans=领域电讯", - "official_name:zh-Hant=領域電訊", "shop=mobile_phone", { "or": [ @@ -183665,12 +183914,17 @@ "name:en=CityLink", "name:zh=領域", "name:zh-Hans=领域", - "name:zh-Hant=領域" + "name:zh-Hant=領域", + "official_name=領域電訊 CityLink Electronics", + "official_name:en=CityLink Electronics", + "official_name:zh=領域電訊", + "official_name:zh-Hans=领域电讯", + "official_name:zh-Hant=領域電訊" ] } ] }, - "then": "./assets/data/nsi/logos/citylink-55ee4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citylink-55ee4b.jpg" }, { "if": { @@ -183685,7 +183939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casetify-6f7af9.png" + "then": "https://data.mapcomplete.org/nsi//logos/casetify-6f7af9.png" }, { "if": { @@ -183700,7 +183954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacasadelascarcasas-09f8fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacasadelascarcasas-09f8fb.jpg" }, { "if": { @@ -183715,7 +183969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobo-537ee3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobo-537ee3.jpg" }, { "if": { @@ -183734,7 +183988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baseus-f3af44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baseus-f3af44.jpg" }, { "if": { @@ -183753,7 +184007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/popondetta-a15586.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popondetta-a15586.jpg" }, { "if": { @@ -183768,7 +184022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1stheritagecredit-453289.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1stheritagecredit-453289.jpg" }, { "if": { @@ -183783,7 +184037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acecashexpress-f9c954.png" + "then": "https://data.mapcomplete.org/nsi//logos/acecashexpress-f9c954.png" }, { "if": { @@ -183798,7 +184052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/advanceamerica-f9c954.png" + "then": "https://data.mapcomplete.org/nsi//logos/advanceamerica-f9c954.png" }, { "if": { @@ -183813,7 +184067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/advancefinancial-f9c954.png" + "then": "https://data.mapcomplete.org/nsi//logos/advancefinancial-f9c954.png" }, { "if": { @@ -183828,7 +184082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cashstore-f9c954.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cashstore-f9c954.jpg" }, { "if": { @@ -183843,7 +184097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cashcofinancial-d5f811.png" + "then": "https://data.mapcomplete.org/nsi//logos/cashcofinancial-d5f811.png" }, { "if": { @@ -183858,7 +184112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/checkngo-f9c954.png" + "then": "https://data.mapcomplete.org/nsi//logos/checkngo-f9c954.png" }, { "if": { @@ -183873,7 +184127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/checkintocash-f9c954.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/checkintocash-f9c954.jpg" }, { "if": { @@ -183889,7 +184143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/checksmart-f9c954.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/checksmart-f9c954.jpg" }, { "if": { @@ -183903,7 +184157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crefisa-46cd18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crefisa-46cd18.jpg" }, { "if": { @@ -183918,7 +184172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easycredit-937eaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easycredit-937eaf.jpg" }, { "if": { @@ -183933,7 +184187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easyfinancial-d5f811.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easyfinancial-d5f811.jpg" }, { "if": { @@ -183948,7 +184202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/findomestic-a71b6e.png" + "then": "https://data.mapcomplete.org/nsi//logos/findomestic-a71b6e.png" }, { "if": { @@ -183963,7 +184217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstvirginia-f9c954.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstvirginia-f9c954.png" }, { "if": { @@ -183978,7 +184232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moneymart-b33bc6.png" + "then": "https://data.mapcomplete.org/nsi//logos/moneymart-b33bc6.png" }, { "if": { @@ -183993,7 +184247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onemainfinancial-f9c954.png" + "then": "https://data.mapcomplete.org/nsi//logos/onemainfinancial-f9c954.png" }, { "if": { @@ -184008,7 +184262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/payomatic-060fd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/payomatic-060fd1.jpg" }, { "if": { @@ -184023,12 +184277,11 @@ } ] }, - "then": "./assets/data/nsi/logos/pls-6d6b33.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pls-6d6b33.jpg" }, { "if": { "and": [ - "official_name=Radiowealth Finance Company", "shop=money_lender", "short_name=RFC", { @@ -184037,12 +184290,13 @@ "brand:en=Radiowealth Finance", "brand:wikidata=Q94572570", "name=Radiowealth Finance", - "name:en=Radiowealth Finance" + "name:en=Radiowealth Finance", + "official_name=Radiowealth Finance Company" ] } ] }, - "then": "./assets/data/nsi/logos/radiowealthfinance-f85e7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radiowealthfinance-f85e7b.jpg" }, { "if": { @@ -184057,7 +184311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionalfinance-f9c954.png" + "then": "https://data.mapcomplete.org/nsi//logos/regionalfinance-f9c954.png" }, { "if": { @@ -184072,7 +184326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skokslask-55f726.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skokslask-55f726.jpg" }, { "if": { @@ -184087,7 +184341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/titlemax-f9c954.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/titlemax-f9c954.jpg" }, { "if": { @@ -184102,7 +184356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/towerloan-f9c954.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/towerloan-f9c954.jpg" }, { "if": { @@ -184117,13 +184371,11 @@ } ] }, - "then": "./assets/data/nsi/logos/733def-085345.png" + "then": "https://data.mapcomplete.org/nsi//logos/733def-085345.png" }, { "if": { "and": [ - "official_name=SMBCコンシューマーファイナンス", - "official_name:en=SMBC Consumer Finance", "shop=money_lender", { "or": [ @@ -184133,12 +184385,14 @@ "brand:wikidata=Q11243682", "name=プロミス", "name:en=Promise", - "name:ja=プロミス" + "name:ja=プロミス", + "official_name=SMBCコンシューマーファイナンス", + "official_name:en=SMBC Consumer Finance" ] } ] }, - "then": "./assets/data/nsi/logos/promise-9de2dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/promise-9de2dd.jpg" }, { "if": { @@ -184153,7 +184407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bajaj-47efa7.png" + "then": "https://data.mapcomplete.org/nsi//logos/bajaj-47efa7.png" }, { "if": { @@ -184168,7 +184422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bmw-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmw-7610a8.jpg" }, { "if": { @@ -184183,7 +184437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ducati-7610a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ducati-7610a8.png" }, { "if": { @@ -184198,7 +184452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gogoro-32933d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gogoro-32933d.jpg" }, { "if": { @@ -184213,7 +184467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harleydavidson-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harleydavidson-7610a8.jpg" }, { "if": { @@ -184228,7 +184482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hero-47efa7.png" + "then": "https://data.mapcomplete.org/nsi//logos/hero-47efa7.png" }, { "if": { @@ -184243,7 +184497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honda-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honda-7610a8.jpg" }, { "if": { @@ -184257,7 +184511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianmotorcycle-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianmotorcycle-7610a8.jpg" }, { "if": { @@ -184272,7 +184526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kawasaki-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kawasaki-7610a8.jpg" }, { "if": { @@ -184287,7 +184541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ktm-7610a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ktm-7610a8.png" }, { "if": { @@ -184303,7 +184557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louismotorrad-5a4a1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louismotorrad-5a4a1c.jpg" }, { "if": { @@ -184318,7 +184572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motortrade-7f0c43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/motortrade-7f0c43.jpg" }, { "if": { @@ -184332,7 +184586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polaris-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polaris-7610a8.jpg" }, { "if": { @@ -184348,7 +184602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polomotorrad-85371d.png" + "then": "https://data.mapcomplete.org/nsi//logos/polomotorrad-85371d.png" }, { "if": { @@ -184363,7 +184617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalenfield-47efa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalenfield-47efa7.jpg" }, { "if": { @@ -184378,7 +184632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suzuki-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suzuki-7610a8.jpg" }, { "if": { @@ -184392,7 +184646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/triumph-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/triumph-7610a8.jpg" }, { "if": { @@ -184407,7 +184661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tvs-47efa7.png" + "then": "https://data.mapcomplete.org/nsi//logos/tvs-47efa7.png" }, { "if": { @@ -184422,7 +184676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vespa-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vespa-7610a8.jpg" }, { "if": { @@ -184437,7 +184691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamaha-7610a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamaha-7610a8.jpg" }, { "if": { @@ -184456,7 +184710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikeo-3c6240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikeo-3c6240.jpg" }, { "if": { @@ -184475,7 +184729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redbaron-3c6240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redbaron-3c6240.jpg" }, { "if": { @@ -184490,7 +184744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bajaj-99f02f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bajaj-99f02f.png" }, { "if": { @@ -184505,7 +184759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harleydavidson-217c34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harleydavidson-217c34.jpg" }, { "if": { @@ -184520,7 +184774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hero-99f02f.png" + "then": "https://data.mapcomplete.org/nsi//logos/hero-99f02f.png" }, { "if": { @@ -184535,7 +184789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honda-217c34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honda-217c34.jpg" }, { "if": { @@ -184550,7 +184804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ktm-217c34.png" + "then": "https://data.mapcomplete.org/nsi//logos/ktm-217c34.png" }, { "if": { @@ -184569,7 +184823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/symmotors-f6c934.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/symmotors-f6c934.jpg" }, { "if": { @@ -184588,7 +184842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kymcomotor-f6c934.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kymcomotor-f6c934.jpg" }, { "if": { @@ -184607,7 +184861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamahamotor-f6c934.png" + "then": "https://data.mapcomplete.org/nsi//logos/yamahamotor-f6c934.png" }, { "if": { @@ -184622,7 +184876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fye-41f363.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fye-41f363.jpg" }, { "if": { @@ -184637,7 +184891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldendiscs-bbd6e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldendiscs-bbd6e8.jpg" }, { "if": { @@ -184652,7 +184906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hmv-d8c1af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hmv-d8c1af.jpg" }, { "if": { @@ -184668,7 +184922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfambooksandmusic-0f8099.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfambooksandmusic-0f8099.jpg" }, { "if": { @@ -184683,7 +184937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunriserecords-d8c1af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunriserecords-d8c1af.jpg" }, { "if": { @@ -184698,7 +184952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsutaya-e843fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/tsutaya-e843fe.png" }, { "if": { @@ -184718,7 +184972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/towerrecords-178cd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/towerrecords-178cd4.jpg" }, { "if": { @@ -184737,7 +184991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diskunion-178cd4.png" + "then": "https://data.mapcomplete.org/nsi//logos/diskunion-178cd4.png" }, { "if": { @@ -184752,7 +185006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guitarcenter-b8f0e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guitarcenter-b8f0e1.jpg" }, { "if": { @@ -184767,7 +185021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longandmcquade-25c79c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longandmcquade-25c79c.jpg" }, { "if": { @@ -184782,7 +185036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/musicandarts-b8f0e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/musicandarts-b8f0e1.jpg" }, { "if": { @@ -184797,7 +185051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muziker-ae1cfe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/muziker-ae1cfe.jpg" }, { "if": { @@ -184816,7 +185070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamanomusic-84d595.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamanomusic-84d595.jpg" }, { "if": { @@ -184835,7 +185089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shimamuramusic-84d595.png" + "then": "https://data.mapcomplete.org/nsi//logos/shimamuramusic-84d595.png" }, { "if": { @@ -184854,7 +185108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parsonsmusic-77cd7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/parsonsmusic-77cd7c.png" }, { "if": { @@ -184873,7 +185127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomleemusic-77cd7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/tomleemusic-77cd7c.png" }, { "if": { @@ -184888,7 +185142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/central-cce5fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/central-cce5fc.jpg" }, { "if": { @@ -184904,7 +185158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cigo-ae6a07.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cigo-ae6a07.svg" }, { "if": { @@ -184919,7 +185173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cigo-308ab8.png" + "then": "https://data.mapcomplete.org/nsi//logos/cigo-308ab8.png" }, { "if": { @@ -184934,7 +185188,22 @@ } ] }, - "then": "./assets/data/nsi/logos/gatewaynewstands-96151b.png" + "then": "https://data.mapcomplete.org/nsi//logos/gatewaynewstands-96151b.png" + }, + { + "if": { + "and": [ + "shop=newsagent", + { + "or": [ + "brand=GECO", + "brand:wikidata=Q58206631", + "name=GECO" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/geco-6f95ad.jpg" }, { "if": { @@ -184949,7 +185218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hudsonnews-a0252c.png" + "then": "https://data.mapcomplete.org/nsi//logos/hudsonnews-a0252c.png" }, { "if": { @@ -184964,7 +185233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inmedio-c2bbae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inmedio-c2bbae.jpg" }, { "if": { @@ -184979,7 +185248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kkiosk-3673ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kkiosk-3673ad.jpg" }, { "if": { @@ -184994,7 +185263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kolporter-4bc172.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kolporter-4bc172.jpg" }, { "if": { @@ -185009,7 +185278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maisondelapresse-007cee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maisondelapresse-007cee.jpg" }, { "if": { @@ -185024,7 +185293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newspower-04b790.png" + "then": "https://data.mapcomplete.org/nsi//logos/newspower-04b790.png" }, { "if": { @@ -185039,7 +185308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pressandbooks-b35c93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pressandbooks-b35c93.jpg" }, { "if": { @@ -185054,7 +185323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primera-308ab8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primera-308ab8.jpg" }, { "if": { @@ -185069,7 +185338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/relay-e6d891.svg" + "then": "https://data.mapcomplete.org/nsi//logos/relay-e6d891.svg" }, { "if": { @@ -185084,7 +185353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ruch-4bc172.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ruch-4bc172.jpg" }, { "if": { @@ -185099,7 +185368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swiatprasy-4bc172.png" + "then": "https://data.mapcomplete.org/nsi//logos/swiatprasy-4bc172.png" }, { "if": { @@ -185114,7 +185383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tabakpress-5d4c3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tabakpress-5d4c3a.jpg" }, { "if": { @@ -185129,7 +185398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whsmith-e6d891.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whsmith-e6d891.jpg" }, { "if": { @@ -185144,7 +185413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f363b9-313f17.svg" + "then": "https://data.mapcomplete.org/nsi//logos/f363b9-313f17.svg" }, { "if": { @@ -185163,7 +185432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thenikkei-0319e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thenikkei-0319e7.jpg" }, { "if": { @@ -185182,7 +185451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asahishimbun-0319e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/asahishimbun-0319e7.png" }, { "if": { @@ -185201,7 +185470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainichishimbun-0319e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mainichishimbun-0319e7.jpg" }, { "if": { @@ -185220,7 +185489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sankeishimbun-0319e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sankeishimbun-0319e7.jpg" }, { "if": { @@ -185239,7 +185508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yomiurishimbun-0319e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/yomiurishimbun-0319e7.png" }, { "if": { @@ -185254,7 +185523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodyattack-65126f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodyattack-65126f.jpg" }, { "if": { @@ -185269,7 +185538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gnc-699d49.png" + "then": "https://data.mapcomplete.org/nsi//logos/gnc-699d49.png" }, { "if": { @@ -185284,7 +185553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hercsnutrition-be7a88.png" + "then": "https://data.mapcomplete.org/nsi//logos/hercsnutrition-be7a88.png" }, { "if": { @@ -185299,7 +185568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturhouse-699d49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturhouse-699d49.jpg" }, { "if": { @@ -185314,7 +185583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/popeyessupplements-be7a88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popeyessupplements-be7a88.jpg" }, { "if": { @@ -185329,7 +185598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thevitaminshoppe-8feed0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thevitaminshoppe-8feed0.jpg" }, { "if": { @@ -185344,7 +185613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitaminworld-8feed0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitaminworld-8feed0.jpg" }, { "if": { @@ -185359,7 +185628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitaminstore-e87d47.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitaminstore-e87d47.jpg" }, { "if": { @@ -185374,7 +185643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mralmond-f85d29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mralmond-f85d29.jpg" }, { "if": { @@ -185391,7 +185660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rois-f85d29.png" + "then": "https://data.mapcomplete.org/nsi//logos/rois-f85d29.png" }, { "if": { @@ -185406,7 +185675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cedcc3-f85d29.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cedcc3-f85d29.jpg" }, { "if": { @@ -185421,7 +185690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vision-af475b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vision-af475b.jpg" }, { "if": { @@ -185436,7 +185705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abeleoptik-7fb7e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abeleoptik-7fb7e9.jpg" }, { "if": { @@ -185451,7 +185720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aceandtate-b2ee21.png" + "then": "https://data.mapcomplete.org/nsi//logos/aceandtate-b2ee21.png" }, { "if": { @@ -185466,7 +185735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acuitis-0a39a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acuitis-0a39a3.jpg" }, { "if": { @@ -185481,7 +185750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktivoptik-7fb7e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/aktivoptik-7fb7e9.png" }, { "if": { @@ -185496,7 +185765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alainafflelou-b3bc92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alainafflelou-b3bc92.jpg" }, { "if": { @@ -185512,7 +185781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americasbestcontactsandeyeglasses-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americasbestcontactsandeyeglasses-5b6831.jpg" }, { "if": { @@ -185528,7 +185797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apollooptik-7fb7e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/apollooptik-7fb7e9.png" }, { "if": { @@ -185543,7 +185812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asdaopticians-610826.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asdaopticians-610826.jpg" }, { "if": { @@ -185558,7 +185827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atasunoptik-74219e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atasunoptik-74219e.jpg" }, { "if": { @@ -185573,7 +185842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atol-8cd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atol-8cd79e.jpg" }, { "if": { @@ -185588,7 +185857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beckerfloge-7fb7e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beckerfloge-7fb7e9.jpg" }, { "if": { @@ -185603,7 +185872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/binderoptik-7fb7e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/binderoptik-7fb7e9.jpg" }, { "if": { @@ -185619,7 +185888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bootsopticians-610826.png" + "then": "https://data.mapcomplete.org/nsi//logos/bootsopticians-610826.png" }, { "if": { @@ -185635,7 +185904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brillenrottler-7fb7e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/brillenrottler-7fb7e9.png" }, { "if": { @@ -185650,7 +185919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brillende-7fb7e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brillende-7fb7e9.jpg" }, { "if": { @@ -185667,7 +185936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cohensfashionoptical-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cohensfashionoptical-5b6831.jpg" }, { "if": { @@ -185682,7 +185951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcooptical-f59838.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcooptical-f59838.svg" }, { "if": { @@ -185697,7 +185966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cubitts-e62455.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cubitts-e62455.jpg" }, { "if": { @@ -185712,7 +185981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devlyn-5cd6a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devlyn-5cd6a9.jpg" }, { "if": { @@ -185727,7 +185996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecoutervoir-0a39a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecoutervoir-0a39a3.jpg" }, { "if": { @@ -185743,7 +186012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/europtica-61fd57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/europtica-61fd57.jpg" }, { "if": { @@ -185758,7 +186027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eyewish-719c83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eyewish-719c83.jpg" }, { "if": { @@ -185773,7 +186042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eyesmore-60ec72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eyesmore-60ec72.jpg" }, { "if": { @@ -185788,7 +186057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fielmann-f003f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/fielmann-f003f4.png" }, { "if": { @@ -185803,7 +186072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fokus-892407.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fokus-892407.jpg" }, { "if": { @@ -185818,7 +186087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fyidoctors-8232b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fyidoctors-8232b6.jpg" }, { "if": { @@ -185833,7 +186102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generaloptica-61af00.png" + "then": "https://data.mapcomplete.org/nsi//logos/generaloptica-61af00.png" }, { "if": { @@ -185848,7 +186117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generaledoptique-8cd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generaledoptique-8cd79e.jpg" }, { "if": { @@ -185863,7 +186132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandoptics-eeb6dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandoptics-eeb6dd.jpg" }, { "if": { @@ -185878,7 +186147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandoptical-e85d12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandoptical-e85d12.jpg" }, { "if": { @@ -185893,7 +186162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandvision-740ad9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandvision-740ad9.jpg" }, { "if": { @@ -185908,7 +186177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hakimoptical-8232b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hakimoptical-8232b6.jpg" }, { "if": { @@ -185923,7 +186192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansanders-454042.png" + "then": "https://data.mapcomplete.org/nsi//logos/hansanders-454042.png" }, { "if": { @@ -185938,7 +186207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/instrumentarium-3a4758.png" + "then": "https://data.mapcomplete.org/nsi//logos/instrumentarium-3a4758.png" }, { "if": { @@ -185953,7 +186222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iris-8232b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iris-8232b6.jpg" }, { "if": { @@ -185968,7 +186237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jcpenneyoptical-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcpenneyoptical-5b6831.jpg" }, { "if": { @@ -185983,7 +186252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jimmyfairly-c63266.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jimmyfairly-c63266.jpg" }, { "if": { @@ -186002,7 +186271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jins-b2cb2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jins-b2cb2d.jpg" }, { "if": { @@ -186017,7 +186286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joy-eeb6dd.png" + "then": "https://data.mapcomplete.org/nsi//logos/joy-eeb6dd.png" }, { "if": { @@ -186032,7 +186301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krassoptik-7fb7e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/krassoptik-7fb7e9.png" }, { "if": { @@ -186047,7 +186316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krys-8cd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/krys-8cd79e.jpg" }, { "if": { @@ -186062,7 +186331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leightons-610826.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leightons-610826.jpg" }, { "if": { @@ -186077,7 +186346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lensa-16fcad.png" + "then": "https://data.mapcomplete.org/nsi//logos/lensa-16fcad.png" }, { "if": { @@ -186092,7 +186361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lenscrafters-108284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lenscrafters-108284.jpg" }, { "if": { @@ -186107,7 +186376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lenskart-596de2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lenskart-596de2.jpg" }, { "if": { @@ -186122,7 +186391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lissac-0a39a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lissac-0a39a3.jpg" }, { "if": { @@ -186137,7 +186406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lynxoptique-8cd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lynxoptique-8cd79e.jpg" }, { "if": { @@ -186152,7 +186421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mania-32f57e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mania-32f57e.jpg" }, { "if": { @@ -186167,7 +186436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mattoptik-7fb7e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mattoptik-7fb7e9.jpg" }, { "if": { @@ -186182,7 +186451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/misterspex-516ee7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/misterspex-516ee7.jpg" }, { "if": { @@ -186197,7 +186466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/multiopticas-1afd50.png" + "then": "https://data.mapcomplete.org/nsi//logos/multiopticas-1afd50.png" }, { "if": { @@ -186212,7 +186481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myeyelab-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/myeyelab-5b6831.jpg" }, { "if": { @@ -186227,7 +186496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myeyedr-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/myeyedr-5b6831.jpg" }, { "if": { @@ -186242,7 +186511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nau-740ad9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nau-740ad9.jpg" }, { "if": { @@ -186257,7 +186526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nissen-3a4758.png" + "then": "https://data.mapcomplete.org/nsi//logos/nissen-3a4758.png" }, { "if": { @@ -186272,7 +186541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oakley-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oakley-5b6831.jpg" }, { "if": { @@ -186287,7 +186556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oakleyvault-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oakleyvault-5b6831.jpg" }, { "if": { @@ -186302,7 +186571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ofotert-44463c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ofotert-44463c.jpg" }, { "if": { @@ -186317,7 +186586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oliverpeoples-4fd8bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oliverpeoples-4fd8bc.jpg" }, { "if": { @@ -186332,7 +186601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oogwereld-a9a11a.png" + "then": "https://data.mapcomplete.org/nsi//logos/oogwereld-a9a11a.png" }, { "if": { @@ -186347,7 +186616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opmar-74219e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opmar-74219e.jpg" }, { "if": { @@ -186362,7 +186631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opsm-d767a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/opsm-d767a4.png" }, { "if": { @@ -186377,7 +186646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optiblu-16fcad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optiblu-16fcad.jpg" }, { "if": { @@ -186392,7 +186661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optic2000-7d1aac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optic2000-7d1aac.jpg" }, { "if": { @@ -186407,7 +186676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opticalcenter-7f892a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opticalcenter-7f892a.jpg" }, { "if": { @@ -186422,7 +186691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opticalexpress-610826.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opticalexpress-610826.jpg" }, { "if": { @@ -186437,7 +186706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opticalsuperstore-76719f.png" + "then": "https://data.mapcomplete.org/nsi//logos/opticalsuperstore-76719f.png" }, { "if": { @@ -186452,7 +186721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opticalia-4fd8bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opticalia-4fd8bc.jpg" }, { "if": { @@ -186469,7 +186738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opticlasa-eeb6dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opticlasa-eeb6dd.jpg" }, { "if": { @@ -186484,7 +186753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opticris-16fcad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/opticris-16fcad.jpg" }, { "if": { @@ -186499,7 +186768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optikerbode-7fb7e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optikerbode-7fb7e9.jpg" }, { "if": { @@ -186514,7 +186783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optiplaza-ac2de7.png" + "then": "https://data.mapcomplete.org/nsi//logos/optiplaza-ac2de7.png" }, { "if": { @@ -186529,7 +186798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oscarwylee-d767a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oscarwylee-d767a4.jpg" }, { "if": { @@ -186544,7 +186813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oticascarol-5c236c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oticascarol-5c236c.jpg" }, { "if": { @@ -186559,7 +186828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oticasdiniz-5c236c.png" + "then": "https://data.mapcomplete.org/nsi//logos/oticasdiniz-5c236c.png" }, { "if": { @@ -186578,7 +186847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/owndays-b2cb2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/owndays-b2cb2d.jpg" }, { "if": { @@ -186593,7 +186862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pearle-603e63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pearle-603e63.jpg" }, { "if": { @@ -186609,7 +186878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pearlevision-108284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pearlevision-108284.jpg" }, { "if": { @@ -186624,7 +186893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prooptik-7fb7e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/prooptik-7fb7e9.png" }, { "if": { @@ -186639,7 +186908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rayban-ace229.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rayban-ace229.jpg" }, { "if": { @@ -186654,7 +186923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salmoiraghiandvigano-740ad9.png" + "then": "https://data.mapcomplete.org/nsi//logos/salmoiraghiandvigano-740ad9.png" }, { "if": { @@ -186669,7 +186938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scrivens-610826.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scrivens-610826.jpg" }, { "if": { @@ -186685,7 +186954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sehenwutscher-e307dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sehenwutscher-e307dd.jpg" }, { "if": { @@ -186700,7 +186969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/silmaasema-3a4758.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/silmaasema-3a4758.jpg" }, { "if": { @@ -186715,7 +186984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siteforsoreeyes-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siteforsoreeyes-5b6831.jpg" }, { "if": { @@ -186730,7 +186999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skyoptic-eeb6dd.png" + "then": "https://data.mapcomplete.org/nsi//logos/skyoptic-eeb6dd.png" }, { "if": { @@ -186745,7 +187014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solaris-32829f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/solaris-32829f.jpg" }, { "if": { @@ -186760,7 +187029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/specsavers-4fd8bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/specsavers-4fd8bc.jpg" }, { "if": { @@ -186775,7 +187044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stantonoptical-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stantonoptical-5b6831.jpg" }, { "if": { @@ -186790,7 +187059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunglasshut-4fd8bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunglasshut-4fd8bc.jpg" }, { "if": { @@ -186805,7 +187074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svsvision-2166b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/svsvision-2166b2.png" }, { "if": { @@ -186820,7 +187089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synoptik-876f61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synoptik-876f61.jpg" }, { "if": { @@ -186835,7 +187104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/synsam-aec081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/synsam-aec081.jpg" }, { "if": { @@ -186850,7 +187119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visilab-fac47f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visilab-fac47f.jpg" }, { "if": { @@ -186865,7 +187134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visionexpress-4fd8bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visionexpress-4fd8bc.jpg" }, { "if": { @@ -186880,7 +187149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visionsource-5b6831.png" + "then": "https://data.mapcomplete.org/nsi//logos/visionsource-5b6831.png" }, { "if": { @@ -186895,7 +187164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visionworks-5b6831.png" + "then": "https://data.mapcomplete.org/nsi//logos/visionworks-5b6831.png" }, { "if": { @@ -186910,7 +187179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartvisioncenter-5b6831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartvisioncenter-5b6831.jpg" }, { "if": { @@ -186925,7 +187194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartvisioncentre-8232b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartvisioncentre-8232b6.jpg" }, { "if": { @@ -186940,7 +187209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warbyparker-108284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warbyparker-108284.jpg" }, { "if": { @@ -186955,7 +187224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeiss-5c236c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeiss-5c236c.jpg" }, { "if": { @@ -186973,7 +187242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luxoptica-15d381.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luxoptica-15d381.jpg" }, { "if": { @@ -186990,7 +187259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optica1st-15d381.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optica1st-15d381.jpg" }, { "if": { @@ -187005,7 +187274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deb319-103edc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deb319-103edc.jpg" }, { "if": { @@ -187026,7 +187295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kenari-a1226c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kenari-a1226c.jpg" }, { "if": { @@ -187047,7 +187316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optimist-a1226c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optimist-a1226c.jpg" }, { "if": { @@ -187068,7 +187337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roniko-a1226c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roniko-a1226c.jpg" }, { "if": { @@ -187085,7 +187354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/23e947-30a922.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/23e947-30a922.jpg" }, { "if": { @@ -187104,7 +187373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/owndays-3bd301.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/owndays-3bd301.jpg" }, { "if": { @@ -187123,7 +187392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jins-3bd301.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jins-3bd301.jpg" }, { "if": { @@ -187142,7 +187411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoff-3bd301.png" + "then": "https://data.mapcomplete.org/nsi//logos/zoff-3bd301.png" }, { "if": { @@ -187161,7 +187430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meganesuper-3bd301.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meganesuper-3bd301.jpg" }, { "if": { @@ -187180,7 +187449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meganestore-3bd301.png" + "then": "https://data.mapcomplete.org/nsi//logos/meganestore-3bd301.png" }, { "if": { @@ -187199,7 +187468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meganedrug-3bd301.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meganedrug-3bd301.jpg" }, { "if": { @@ -187219,7 +187488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parismiki-3bd301.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parismiki-3bd301.jpg" }, { "if": { @@ -187242,7 +187511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lenscrafters-a3f0f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lenscrafters-a3f0f9.jpg" }, { "if": { @@ -187259,7 +187528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d4ab36-1ab9a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d4ab36-1ab9a7.jpg" }, { "if": { @@ -187282,7 +187551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eyesmart-b2cb2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eyesmart-b2cb2d.jpg" }, { "if": { @@ -187305,7 +187574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optical88-a3f0f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optical88-a3f0f9.jpg" }, { "if": { @@ -187324,7 +187593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meganeichiba-3bd301.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meganeichiba-3bd301.jpg" }, { "if": { @@ -187347,7 +187616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meganeichiba-b2cb2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meganeichiba-b2cb2d.jpg" }, { "if": { @@ -187362,7 +187631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asadventure-718831.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asadventure-718831.jpg" }, { "if": { @@ -187377,7 +187646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaconda-a827df.png" + "then": "https://data.mapcomplete.org/nsi//logos/anaconda-a827df.png" }, { "if": { @@ -187392,7 +187661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anwbwinkel-88720f.png" + "then": "https://data.mapcomplete.org/nsi//logos/anwbwinkel-88720f.png" }, { "if": { @@ -187407,7 +187676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auvieuxcampeur-6bb650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/auvieuxcampeur-6bb650.jpg" }, { "if": { @@ -187422,7 +187691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aussiedisposals-a827df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aussiedisposals-a827df.jpg" }, { "if": { @@ -187437,7 +187706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bassproshops-069867.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bassproshops-069867.jpg" }, { "if": { @@ -187452,7 +187721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bcf-a827df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcf-a827df.jpg" }, { "if": { @@ -187467,7 +187736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bever-88720f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bever-88720f.jpg" }, { "if": { @@ -187483,7 +187752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bivouacoutdoor-f40221.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bivouacoutdoor-f40221.jpg" }, { "if": { @@ -187498,7 +187767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blacks-f55d12.png" + "then": "https://data.mapcomplete.org/nsi//logos/blacks-f55d12.png" }, { "if": { @@ -187513,7 +187782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cabelas-069867.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cabelas-069867.jpg" }, { "if": { @@ -187528,7 +187797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capeunionmart-fb8ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capeunionmart-fb8ccb.jpg" }, { "if": { @@ -187543,7 +187812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cotswoldoutdoor-f55d12.png" + "then": "https://data.mapcomplete.org/nsi//logos/cotswoldoutdoor-f55d12.png" }, { "if": { @@ -187559,7 +187828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easternmountainsports-d32658.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easternmountainsports-d32658.jpg" }, { "if": { @@ -187574,7 +187843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eiger-19c913.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eiger-19c913.jpg" }, { "if": { @@ -187589,7 +187858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekosport-6bb650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekosport-6bb650.jpg" }, { "if": { @@ -187604,7 +187873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/espacemontagne-6bb650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/espacemontagne-6bb650.jpg" }, { "if": { @@ -187619,7 +187888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fjallraven-069867.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fjallraven-069867.jpg" }, { "if": { @@ -187634,7 +187903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fritzberger-00734f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fritzberger-00734f.jpg" }, { "if": { @@ -187649,7 +187918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ganderoutdoors-a7317e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ganderoutdoors-a7317e.png" }, { "if": { @@ -187664,7 +187933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globetrotter-00734f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globetrotter-00734f.jpg" }, { "if": { @@ -187679,7 +187948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gooutdoors-f55d12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gooutdoors-f55d12.jpg" }, { "if": { @@ -187694,7 +187963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gooutdoorsexpress-f55d12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gooutdoorsexpress-f55d12.jpg" }, { "if": { @@ -187709,7 +187978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/husky-240bcf.png" + "then": "https://data.mapcomplete.org/nsi//logos/husky-240bcf.png" }, { "if": { @@ -187724,7 +187993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jackwolfskin-279671.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jackwolfskin-279671.jpg" }, { "if": { @@ -187739,7 +188008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kathmandu-7b766e.png" + "then": "https://data.mapcomplete.org/nsi//logos/kathmandu-7b766e.png" }, { "if": { @@ -187754,7 +188023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/llbean-b092d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/llbean-b092d8.jpg" }, { "if": { @@ -187769,7 +188038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macpac-7b766e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macpac-7b766e.jpg" }, { "if": { @@ -187784,7 +188053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mctrek-00734f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mctrek-00734f.jpg" }, { "if": { @@ -187799,7 +188068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mecmountainequipmentcompany-388b66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mecmountainequipmentcompany-388b66.jpg" }, { "if": { @@ -187814,7 +188083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/millets-f55d12.png" + "then": "https://data.mapcomplete.org/nsi//logos/millets-f55d12.png" }, { "if": { @@ -187829,7 +188098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mountainwarehouse-19caf6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mountainwarehouse-19caf6.jpg" }, { "if": { @@ -187844,7 +188113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natureanddecouvertes-fb7405.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/natureanddecouvertes-fb7405.jpg" }, { "if": { @@ -187859,7 +188128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturkompaniet-ab6c4a.png" + "then": "https://data.mapcomplete.org/nsi//logos/naturkompaniet-ab6c4a.png" }, { "if": { @@ -187874,7 +188143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/outdoorwarehouse-fb8ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/outdoorwarehouse-fb8ccb.jpg" }, { "if": { @@ -187890,23 +188159,23 @@ } ] }, - "then": "./assets/data/nsi/logos/regattagreatoutdoors-d45246.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regattagreatoutdoors-d45246.jpg" }, { "if": { "and": [ - "official_name=Recreational Equipment, Inc.", "shop=outdoor", { "or": [ "brand=REI", "brand:wikidata=Q3414933", - "name=REI" + "name=REI", + "official_name=Recreational Equipment, Inc." ] } ] }, - "then": "./assets/data/nsi/logos/rei-72e82e.png" + "then": "https://data.mapcomplete.org/nsi//logos/rei-72e82e.png" }, { "if": { @@ -187922,7 +188191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sierra-a7317e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sierra-a7317e.png" }, { "if": { @@ -187937,7 +188206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snowrock-f55d12.png" + "then": "https://data.mapcomplete.org/nsi//logos/snowrock-f55d12.png" }, { "if": { @@ -187952,7 +188221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportsmanswarehouse-a7317e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportsmanswarehouse-a7317e.jpg" }, { "if": { @@ -187967,7 +188236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tog24-911a4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/tog24-911a4c.png" }, { "if": { @@ -187982,7 +188251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torpedo7-f40221.png" + "then": "https://data.mapcomplete.org/nsi//logos/torpedo7-f40221.png" }, { "if": { @@ -187997,7 +188266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trespass-0f1422.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trespass-0f1422.jpg" }, { "if": { @@ -188012,7 +188281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vaude-00734f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vaude-00734f.jpg" }, { "if": { @@ -188031,7 +188300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johshuya-c097b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johshuya-c097b7.jpg" }, { "if": { @@ -188047,7 +188316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclercdrive-7ec344.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclercdrive-7ec344.jpg" }, { "if": { @@ -188062,7 +188331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamoda-968c70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamoda-968c70.jpg" }, { "if": { @@ -188077,7 +188346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ozon-968c70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ozon-968c70.jpg" }, { "if": { @@ -188092,7 +188361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rozetka-497ef1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rozetka-497ef1.jpg" }, { "if": { @@ -188107,7 +188376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wildberries-f8825b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wildberries-f8825b.jpg" }, { "if": { @@ -188122,7 +188391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/13cf8e-497ef1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/13cf8e-497ef1.jpg" }, { "if": { @@ -188141,7 +188410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yandexmarket-968c70.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yandexmarket-968c70.svg" }, { "if": { @@ -188156,7 +188425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asianpaints-573ec1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asianpaints-573ec1.jpg" }, { "if": { @@ -188171,7 +188440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/benjaminmoore-7d21ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/benjaminmoore-7d21ae.png" }, { "if": { @@ -188186,7 +188455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berel-9cde48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berel-9cde48.jpg" }, { "if": { @@ -188201,7 +188470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brewers-058646.png" + "then": "https://data.mapcomplete.org/nsi//logos/brewers-058646.png" }, { "if": { @@ -188216,7 +188485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brillux-7853a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/brillux-7853a1.png" }, { "if": { @@ -188231,7 +188500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colorshop-dd351e.png" + "then": "https://data.mapcomplete.org/nsi//logos/colorshop-dd351e.png" }, { "if": { @@ -188246,7 +188515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comex-d8e74b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comex-d8e74b.jpg" }, { "if": { @@ -188261,7 +188530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crowndecoratingcentre-058646.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crowndecoratingcentre-058646.jpg" }, { "if": { @@ -188276,7 +188545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duluxdecoratorcentre-058646.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duluxdecoratorcentre-058646.jpg" }, { "if": { @@ -188291,7 +188560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duluxpaints-573ec1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duluxpaints-573ec1.jpg" }, { "if": { @@ -188306,7 +188575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunnedwardspaints-4b3183.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunnedwardspaints-4b3183.jpg" }, { "if": { @@ -188320,7 +188589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fargerike-e1be75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fargerike-e1be75.jpg" }, { "if": { @@ -188335,7 +188604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farrowandball-15728f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farrowandball-15728f.jpg" }, { "if": { @@ -188350,7 +188619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnstonesdecoratingcentre-058646.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnstonesdecoratingcentre-058646.jpg" }, { "if": { @@ -188365,7 +188634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jotun-573ec1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jotun-573ec1.jpg" }, { "if": { @@ -188380,7 +188649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kellymoorepaints-c9fb37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kellymoorepaints-c9fb37.jpg" }, { "if": { @@ -188395,7 +188664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/millerpaint-c4c85f.png" + "then": "https://data.mapcomplete.org/nsi//logos/millerpaint-c4c85f.png" }, { "if": { @@ -188410,7 +188679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalpaints-6ced54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalpaints-6ced54.jpg" }, { "if": { @@ -188425,7 +188694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olijslager-5cd356.png" + "then": "https://data.mapcomplete.org/nsi//logos/olijslager-5cd356.png" }, { "if": { @@ -188440,7 +188709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ppgpaints-4b3183.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ppgpaints-4b3183.jpg" }, { "if": { @@ -188455,7 +188724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resene-7091e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/resene-7091e6.jpg" }, { "if": { @@ -188470,7 +188739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roddapaint-4b3183.png" + "then": "https://data.mapcomplete.org/nsi//logos/roddapaint-4b3183.png" }, { "if": { @@ -188485,7 +188754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sayer-9cde48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sayer-9cde48.jpg" }, { "if": { @@ -188500,7 +188769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sherwinwilliams-573ec1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sherwinwilliams-573ec1.jpg" }, { "if": { @@ -188515,7 +188784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/partycity-d4351a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/partycity-d4351a.jpg" }, { "if": { @@ -188530,7 +188799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solow-f95d27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/solow-f95d27.jpg" }, { "if": { @@ -188545,7 +188814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spirithalloween-d4351a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spirithalloween-d4351a.jpg" }, { "if": { @@ -188560,7 +188829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blikle-6e7edc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blikle-6e7edc.jpg" }, { "if": { @@ -188575,7 +188844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bolodamadre-64176e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bolodamadre-64176e.jpg" }, { "if": { @@ -188592,7 +188861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cafedenata-4c047d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cafedenata-4c047d.jpg" }, { "if": { @@ -188609,7 +188878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cakebox-4c047d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cakebox-4c047d.jpg" }, { "if": { @@ -188624,7 +188893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casadebolos-64176e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casadebolos-64176e.jpg" }, { "if": { @@ -188639,7 +188908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cheesecakecorner-6e7edc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cheesecakecorner-6e7edc.jpg" }, { "if": { @@ -188655,7 +188924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cookiesbydesign-64e364.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cookiesbydesign-64e364.jpg" }, { "if": { @@ -188671,7 +188940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crumblcookies-64e364.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crumblcookies-64e364.jpg" }, { "if": { @@ -188686,7 +188955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cukierniacieslikowski-6e7edc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cukierniacieslikowski-6e7edc.jpg" }, { "if": { @@ -188701,7 +188970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cukierniasowa-6e7edc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cukierniasowa-6e7edc.jpg" }, { "if": { @@ -188716,7 +188985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delikana-97942d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delikana-97942d.jpg" }, { "if": { @@ -188731,7 +189000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gigiscupcakes-64e364.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gigiscupcakes-64e364.jpg" }, { "if": { @@ -188746,7 +189015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoffmann-8e72cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoffmann-8e72cc.jpg" }, { "if": { @@ -188761,7 +189030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/insomniacookies-50ea40.png" + "then": "https://data.mapcomplete.org/nsi//logos/insomniacookies-50ea40.png" }, { "if": { @@ -188777,7 +189046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kurtosh-7f15f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kurtosh-7f15f1.jpg" }, { "if": { @@ -188792,7 +189061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lolascupcakes-cdbfe2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lolascupcakes-cdbfe2.jpg" }, { "if": { @@ -188807,7 +189076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lukullus-6e7edc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lukullus-6e7edc.jpg" }, { "if": { @@ -188822,7 +189091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maisondandoy-017230.png" + "then": "https://data.mapcomplete.org/nsi//logos/maisondandoy-017230.png" }, { "if": { @@ -188841,7 +189110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mioamore-77ae94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mioamore-77ae94.jpg" }, { "if": { @@ -188861,7 +189130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monginis-77ae94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monginis-77ae94.jpg" }, { "if": { @@ -188876,7 +189145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrsfields-839ebf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrsfields-839ebf.jpg" }, { "if": { @@ -188891,7 +189160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/namur-8e72cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/namur-8e72cc.jpg" }, { "if": { @@ -188906,7 +189175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nothingbundtcakes-e06bde.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nothingbundtcakes-e06bde.jpg" }, { "if": { @@ -188921,7 +189190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oberweis-8e72cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oberweis-8e72cc.jpg" }, { "if": { @@ -188936,7 +189205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/limburgia-b5394e.png" + "then": "https://data.mapcomplete.org/nsi//logos/limburgia-b5394e.png" }, { "if": { @@ -188951,7 +189220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pawlowicz-6e7edc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pawlowicz-6e7edc.jpg" }, { "if": { @@ -188967,7 +189236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sadaharuaoki-1cea9f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sadaharuaoki-1cea9f.jpg" }, { "if": { @@ -188982,7 +189251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smallcakes-64e364.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smallcakes-64e364.jpg" }, { "if": { @@ -188997,7 +189266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sodiedoces-64176e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sodiedoces-64176e.jpg" }, { "if": { @@ -189017,7 +189286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesugarrandspice-77ae94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thesugarrandspice-77ae94.jpg" }, { "if": { @@ -189032,7 +189301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vatsak-96373c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vatsak-96373c.jpg" }, { "if": { @@ -189049,7 +189318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nedelya-5d47b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/nedelya-5d47b0.png" }, { "if": { @@ -189064,7 +189333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/24f442-5d47b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/24f442-5d47b0.jpg" }, { "if": { @@ -189087,7 +189356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entree-7fe386.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entree-7fe386.jpg" }, { "if": { @@ -189108,7 +189377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madart-7fe386.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madart-7fe386.jpg" }, { "if": { @@ -189124,7 +189393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bhfpawnshopandjewelrystore-6d9487.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bhfpawnshopandjewelrystore-6d9487.jpg" }, { "if": { @@ -189139,7 +189408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cashcrusaders-de6587.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cashcrusaders-de6587.jpg" }, { "if": { @@ -189155,7 +189424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cebuanalhuillier-6d9487.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cebuanalhuillier-6d9487.jpg" }, { "if": { @@ -189170,7 +189439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ezpawn-9520ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/ezpawn-9520ff.png" }, { "if": { @@ -189186,7 +189455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fundaciondonde-25220b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fundaciondonde-25220b.jpg" }, { "if": { @@ -189201,7 +189470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loombard-aaadfd.png" + "then": "https://data.mapcomplete.org/nsi//logos/loombard-aaadfd.png" }, { "if": { @@ -189216,7 +189485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mlhuillier-6d9487.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mlhuillier-6d9487.jpg" }, { "if": { @@ -189231,7 +189500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nacionalmontedepiedad-25220b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nacionalmontedepiedad-25220b.jpg" }, { "if": { @@ -189246,7 +189515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palawanpawnshop-6d9487.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palawanpawnshop-6d9487.jpg" }, { "if": { @@ -189261,7 +189530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pegadaian-cd799d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pegadaian-cd799d.svg" }, { "if": { @@ -189276,7 +189545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramsdens-c861e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ramsdens-c861e3.jpg" }, { "if": { @@ -189291,7 +189560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sinag-6d9487.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sinag-6d9487.jpg" }, { "if": { @@ -189306,7 +189575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tambunting-6d9487.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tambunting-6d9487.jpg" }, { "if": { @@ -189321,7 +189590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villarica-6d9487.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villarica-6d9487.jpg" }, { "if": { @@ -189338,7 +189607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zaloznabreva-504b45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zaloznabreva-504b45.jpg" }, { "if": { @@ -189353,7 +189622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1a22da-6b12a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1a22da-6b12a2.jpg" }, { "if": { @@ -189368,7 +189637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4c9bd4-6b12a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/4c9bd4-6b12a2.png" }, { "if": { @@ -189383,7 +189652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adopt-6637a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adopt-6637a2.jpg" }, { "if": { @@ -189398,7 +189667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brocard-a7cafb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brocard-a7cafb.jpg" }, { "if": { @@ -189413,7 +189682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diptyque-024293.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diptyque-024293.jpg" }, { "if": { @@ -189428,7 +189697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/douglas-4ed3c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/douglas-4ed3c9.jpg" }, { "if": { @@ -189443,7 +189712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/druni-b209c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/druni-b209c1.png" }, { "if": { @@ -189458,7 +189727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equivalenza-59ad61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equivalenza-59ad61.jpg" }, { "if": { @@ -189473,7 +189742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fann-21bb40.png" + "then": "https://data.mapcomplete.org/nsi//logos/fann-21bb40.png" }, { "if": { @@ -189488,7 +189757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iciparisxl-07c28e.png" + "then": "https://data.mapcomplete.org/nsi//logos/iciparisxl-07c28e.png" }, { "if": { @@ -189503,7 +189772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/importparfumerie-5a7a8c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/importparfumerie-5a7a8c.svg" }, { "if": { @@ -189518,7 +189787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jomalone-024293.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jomalone-024293.jpg" }, { "if": { @@ -189533,7 +189802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marionnaud-40e2d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marionnaud-40e2d5.jpg" }, { "if": { @@ -189548,7 +189817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naima-c99cc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naima-c99cc6.jpg" }, { "if": { @@ -189563,7 +189832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oboticario-40d28a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oboticario-40d28a.jpg" }, { "if": { @@ -189578,7 +189847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parfumeriebecker-fc8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parfumeriebecker-fc8b1e.jpg" }, { "if": { @@ -189593,7 +189862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parfumeriepieper-fc8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parfumeriepieper-fc8b1e.jpg" }, { "if": { @@ -189608,7 +189877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perfumania-4a4434.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perfumania-4a4434.jpg" }, { "if": { @@ -189623,7 +189892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinalli-c99cc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pinalli-c99cc6.jpg" }, { "if": { @@ -189638,7 +189907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schuback-fc8b1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schuback-fc8b1e.jpg" }, { "if": { @@ -189653,7 +189922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sistersaroma-20926e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sistersaroma-20926e.jpg" }, { "if": { @@ -189668,7 +189937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thefragranceshop-2906d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thefragranceshop-2906d0.jpg" }, { "if": { @@ -189683,7 +189952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theperfumegarden-f5d3fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theperfumegarden-f5d3fd.jpg" }, { "if": { @@ -189698,7 +189967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theperfumeshop-2906d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theperfumeshop-2906d0.jpg" }, { "if": { @@ -189713,7 +189982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uneheurepoursoi-856056.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uneheurepoursoi-856056.jpg" }, { "if": { @@ -189728,7 +189997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orkin-768c80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orkin-768c80.jpg" }, { "if": { @@ -189743,7 +190012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trulynolen-768c80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trulynolen-768c80.jpg" }, { "if": { @@ -189758,7 +190027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akvazoo-381fdf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akvazoo-381fdf.jpg" }, { "if": { @@ -189773,7 +190042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/animalis-aea085.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/animalis-aea085.jpg" }, { "if": { @@ -189788,7 +190057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/animates-b0a57a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/animates-b0a57a.jpg" }, { "if": { @@ -189803,7 +190072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/animax-67c127.png" + "then": "https://data.mapcomplete.org/nsi//logos/animax-67c127.png" }, { "if": { @@ -189818,7 +190087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arcaplanet-fc1a4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arcaplanet-fc1a4b.jpg" }, { "if": { @@ -189833,7 +190102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkenzoo-8a75dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkenzoo-8a75dc.jpg" }, { "if": { @@ -189848,7 +190117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cobasi-df7a1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/cobasi-df7a1d.png" }, { "if": { @@ -189863,7 +190132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dasfutterhaus-f5d6d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/dasfutterhaus-f5d6d7.png" }, { "if": { @@ -189878,7 +190147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/earthwisepet-81a22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/earthwisepet-81a22d.jpg" }, { "if": { @@ -189893,7 +190162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fajnzoo-381fdf.png" + "then": "https://data.mapcomplete.org/nsi//logos/fajnzoo-381fdf.png" }, { "if": { @@ -189908,7 +190177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/faunatar-294f56.png" + "then": "https://data.mapcomplete.org/nsi//logos/faunatar-294f56.png" }, { "if": { @@ -189923,7 +190192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fressnapf-254367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fressnapf-254367.jpg" }, { "if": { @@ -189938,7 +190207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globalpetfoods-4f78bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globalpetfoods-4f78bb.jpg" }, { "if": { @@ -189953,7 +190222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/happypets-84da5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/happypets-84da5c.jpg" }, { "if": { @@ -189968,7 +190237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/headsupfortails-4d0def.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/headsupfortails-4d0def.jpg" }, { "if": { @@ -189983,7 +190252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jollyes-8ec028.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jollyes-8ec028.jpg" }, { "if": { @@ -189998,7 +190267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kahoots-ae290d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kahoots-ae290d.jpg" }, { "if": { @@ -190013,7 +190282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiwoko-02c541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiwoko-02c541.jpg" }, { "if": { @@ -190028,7 +190297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kollezoo-9f060f.png" + "then": "https://data.mapcomplete.org/nsi//logos/kollezoo-9f060f.png" }, { "if": { @@ -190043,7 +190312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lisoladeitesori-fc1a4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lisoladeitesori-fc1a4b.jpg" }, { "if": { @@ -190059,7 +190328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maidenheadaquatics-8ec028.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maidenheadaquatics-8ec028.jpg" }, { "if": { @@ -190075,7 +190344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/masterzoo-a879a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/masterzoo-a879a3.jpg" }, { "if": { @@ -190090,7 +190359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxizoo-3e2920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxizoo-3e2920.jpg" }, { "if": { @@ -190105,7 +190374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medoretcompagnie-aea085.png" + "then": "https://data.mapcomplete.org/nsi//logos/medoretcompagnie-aea085.png" }, { "if": { @@ -190120,7 +190389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megazoo-9f060f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megazoo-9f060f.jpg" }, { "if": { @@ -190135,7 +190404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mudbay-81a22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mudbay-81a22d.jpg" }, { "if": { @@ -190150,7 +190419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mustijamirri-294f56.png" + "then": "https://data.mapcomplete.org/nsi//logos/mustijamirri-294f56.png" }, { "if": { @@ -190165,7 +190434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petcenter-09e3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petcenter-09e3e7.jpg" }, { "if": { @@ -190180,7 +190449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petfoodexpress-81a22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petfoodexpress-81a22d.jpg" }, { "if": { @@ -190195,7 +190464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petsupermarket-81a22d.png" + "then": "https://data.mapcomplete.org/nsi//logos/petsupermarket-81a22d.png" }, { "if": { @@ -190210,7 +190479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petsuppliesplus-81a22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petsuppliesplus-81a22d.jpg" }, { "if": { @@ -190225,7 +190494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petvalu-e394eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petvalu-e394eb.jpg" }, { "if": { @@ -190240,7 +190509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petbarn-26188c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petbarn-26188c.jpg" }, { "if": { @@ -190255,7 +190524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petco-1d9238.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petco-1d9238.jpg" }, { "if": { @@ -190270,7 +190539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petland-81a22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petland-81a22d.jpg" }, { "if": { @@ -190285,7 +190554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petmall-33ac80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petmall-33ac80.jpg" }, { "if": { @@ -190300,7 +190569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petmania-7c67e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petmania-7c67e0.jpg" }, { "if": { @@ -190315,7 +190584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petpeople-81a22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petpeople-81a22d.jpg" }, { "if": { @@ -190330,7 +190599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petsathome-8ec028.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petsathome-8ec028.jpg" }, { "if": { @@ -190345,7 +190614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petscorner-8ec028.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petscorner-8ec028.jpg" }, { "if": { @@ -190360,7 +190629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petsplace-734485.png" + "then": "https://data.mapcomplete.org/nsi//logos/petsplace-734485.png" }, { "if": { @@ -190375,7 +190644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petsplaceboerenbond-734485.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petsplaceboerenbond-734485.jpg" }, { "if": { @@ -190390,7 +190659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petshopscience-a90b39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petshopscience-a90b39.jpg" }, { "if": { @@ -190405,7 +190674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petshopru-13b7f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petshopru-13b7f6.jpg" }, { "if": { @@ -190420,7 +190689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petsmart-e394eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petsmart-e394eb.jpg" }, { "if": { @@ -190435,7 +190704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petstock-26188c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petstock-26188c.jpg" }, { "if": { @@ -190450,7 +190719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petstop-7c67e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petstop-7c67e0.jpg" }, { "if": { @@ -190465,7 +190734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petworld-7c67e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petworld-7c67e0.jpg" }, { "if": { @@ -190480,7 +190749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petz-df7a1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petz-df7a1d.jpg" }, { "if": { @@ -190497,7 +190766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qpets-f292b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qpets-f292b1.jpg" }, { "if": { @@ -190512,7 +190781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qualipet-c04507.png" + "then": "https://data.mapcomplete.org/nsi//logos/qualipet-c04507.png" }, { "if": { @@ -190527,7 +190796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superzoo-09e3e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/superzoo-09e3e7.png" }, { "if": { @@ -190542,7 +190811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thepethut-8ec028.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thepethut-8ec028.jpg" }, { "if": { @@ -190557,7 +190826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomandco-cad8a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomandco-cad8a4.jpg" }, { "if": { @@ -190573,7 +190842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unleashed-81a22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unleashed-81a22d.jpg" }, { "if": { @@ -190588,7 +190857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wildbirdsunlimited-81a22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wildbirdsunlimited-81a22d.jpg" }, { "if": { @@ -190603,7 +190872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zooandco-f5d6d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zooandco-f5d6d7.jpg" }, { "if": { @@ -190618,7 +190887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoocenter-33ac80.png" + "then": "https://data.mapcomplete.org/nsi//logos/zoocenter-33ac80.png" }, { "if": { @@ -190634,7 +190903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoobonus-a879a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/zoobonus-a879a3.png" }, { "if": { @@ -190649,7 +190918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/90c94e-13b7f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/90c94e-13b7f6.jpg" }, { "if": { @@ -190664,7 +190933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/353ff5-13b7f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/353ff5-13b7f6.jpg" }, { "if": { @@ -190679,7 +190948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b42651-33ac80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/b42651-33ac80.jpg" }, { "if": { @@ -190694,7 +190963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/56262d-13b7f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/56262d-13b7f6.jpg" }, { "if": { @@ -190709,7 +190978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/0f0923-33ac80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/0f0923-33ac80.jpg" }, { "if": { @@ -190724,7 +190993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/42195e-8e284e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/42195e-8e284e.jpg" }, { "if": { @@ -190743,7 +191012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoolife-fbd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zoolife-fbd79e.jpg" }, { "if": { @@ -190762,7 +191031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoomart-fbd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zoomart-fbd79e.jpg" }, { "if": { @@ -190781,7 +191050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoocity-fbd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zoocity-fbd79e.jpg" }, { "if": { @@ -190800,7 +191069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoohub-fbd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zoohub-fbd79e.jpg" }, { "if": { @@ -190819,7 +191088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petspot-fbd79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petspot-fbd79e.jpg" }, { "if": { @@ -190838,7 +191107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etipets-945fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etipets-945fbc.jpg" }, { "if": { @@ -190857,7 +191126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petsmallfish-945fbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petsmallfish-945fbc.jpg" }, { "if": { @@ -190872,7 +191141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fotoprix-4b0687.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fotoprix-4b0687.jpg" }, { "if": { @@ -190887,7 +191156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kameraexpress-c0941c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kameraexpress-c0941c.png" }, { "if": { @@ -190902,7 +191171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kodakexpress-f4f6c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kodakexpress-f4f6c8.jpg" }, { "if": { @@ -190917,7 +191186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxspielmann-be7243.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxspielmann-be7243.jpg" }, { "if": { @@ -190932,7 +191201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snappysnaps-be7243.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snappysnaps-be7243.jpg" }, { "if": { @@ -190947,7 +191216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartphotocenter-50ab81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartphotocenter-50ab81.jpg" }, { "if": { @@ -190962,7 +191231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartphotocentre-c42490.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartphotocentre-c42490.jpg" }, { "if": { @@ -190977,7 +191246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/88710c-2b82bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/88710c-2b82bd.jpg" }, { "if": { @@ -190996,7 +191265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitamuracamera-686725.png" + "then": "https://data.mapcomplete.org/nsi//logos/kitamuracamera-686725.png" }, { "if": { @@ -191015,7 +191284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paletteplaza-686725.svg" + "then": "https://data.mapcomplete.org/nsi//logos/paletteplaza-686725.svg" }, { "if": { @@ -191030,7 +191299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/briggsequipment-a0a976.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/briggsequipment-a0a976.jpg" }, { "if": { @@ -191045,7 +191314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equipmentdepot-a0a976.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equipmentdepot-a0a976.jpg" }, { "if": { @@ -191060,7 +191329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hercrentals-1e883b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hercrentals-1e883b.jpg" }, { "if": { @@ -191075,7 +191344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hirepool-13c9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hirepool-13c9d0.jpg" }, { "if": { @@ -191090,7 +191359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kennardshire-cc85b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kennardshire-cc85b7.jpg" }, { "if": { @@ -191105,7 +191374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maximcraneworks-a0a976.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maximcraneworks-a0a976.jpg" }, { "if": { @@ -191120,7 +191389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starrentals-241a4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starrentals-241a4b.jpg" }, { "if": { @@ -191135,7 +191404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunbeltrentals-a70a22.png" + "then": "https://data.mapcomplete.org/nsi//logos/sunbeltrentals-a70a22.png" }, { "if": { @@ -191150,7 +191419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunstateequipment-a0a976.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunstateequipment-a0a976.jpg" }, { "if": { @@ -191165,7 +191434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedrentals-1e883b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedrentals-1e883b.jpg" }, { "if": { @@ -191180,7 +191449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sargadelos-cb4124.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sargadelos-cb4124.jpg" }, { "if": { @@ -191195,7 +191464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hilti-d79f7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/hilti-d79f7e.png" }, { "if": { @@ -191210,7 +191479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cartridgeworld-0b7bd3.png" + "then": "https://data.mapcomplete.org/nsi//logos/cartridgeworld-0b7bd3.png" }, { "if": { @@ -191225,7 +191494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prink-5f927f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prink-5f927f.jpg" }, { "if": { @@ -191240,7 +191509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phantomfireworks-f0f687.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phantomfireworks-f0f687.jpg" }, { "if": { @@ -191255,55 +191524,55 @@ } ] }, - "then": "./assets/data/nsi/logos/rusalut-4c9e23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rusalut-4c9e23.jpg" }, { "if": { "and": [ - "official_name=Budget Truck Rental", "shop=rental", { "or": [ "brand=Budget", "brand:wikidata=Q4985029", - "name=Budget" + "name=Budget", + "official_name=Budget Truck Rental" ] } ] }, - "then": "./assets/data/nsi/logos/budget-3eaf6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budget-3eaf6e.jpg" }, { "if": { "and": [ - "official_name=Enterprise Flex-E-Rent", "shop=rental", { "or": [ "brand=Enterprise", "brand:wikidata=Q17085454", - "name=Enterprise" + "name=Enterprise", + "official_name=Enterprise Flex-E-Rent" ] } ] }, - "then": "./assets/data/nsi/logos/enterprise-0ac50a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enterprise-0ac50a.jpg" }, { "if": { "and": [ - "official_name=Enterprise Truck Rental", "shop=rental", { "or": [ "brand=Enterprise", "brand:wikidata=Q17085454", - "name=Enterprise" + "name=Enterprise", + "official_name=Enterprise Truck Rental" ] } ] }, - "then": "./assets/data/nsi/logos/enterprise-402547.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enterprise-402547.jpg" }, { "if": { @@ -191318,7 +191587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobilemini-402547.png" + "then": "https://data.mapcomplete.org/nsi//logos/mobilemini-402547.png" }, { "if": { @@ -191334,7 +191603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moveyourself-a6ceef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moveyourself-a6ceef.jpg" }, { "if": { @@ -191350,7 +191619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pensketruckrental-402547.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pensketruckrental-402547.jpg" }, { "if": { @@ -191365,7 +191634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ryder-7deb17.png" + "then": "https://data.mapcomplete.org/nsi//logos/ryder-7deb17.png" }, { "if": { @@ -191380,7 +191649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uhaul-402547.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uhaul-402547.jpg" }, { "if": { @@ -191395,7 +191664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/willscot-06c9f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/willscot-06c9f3.jpg" }, { "if": { @@ -191410,7 +191679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/misterminit-d158c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/misterminit-d158c6.png" }, { "if": { @@ -191425,7 +191694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrhandyman-925a2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrhandyman-925a2e.jpg" }, { "if": { @@ -191440,7 +191709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesee-955e0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesee-955e0e.jpg" }, { "if": { @@ -191457,7 +191726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oceankamchatkasahalin-93be8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oceankamchatkasahalin-93be8b.jpg" }, { "if": { @@ -191471,7 +191740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dekringwinkel-04aeb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dekringwinkel-04aeb6.jpg" }, { "if": { @@ -191486,7 +191755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easycash-839553.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easycash-839553.jpg" }, { "if": { @@ -191500,7 +191769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hetgoed-76cccf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hetgoed-76cccf.jpg" }, { "if": { @@ -191515,7 +191784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savers-cb877b.png" + "then": "https://data.mapcomplete.org/nsi//logos/savers-cb877b.png" }, { "if": { @@ -191530,7 +191799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valuevillage-d58a94.png" + "then": "https://data.mapcomplete.org/nsi//logos/valuevillage-d58a94.png" }, { "if": { @@ -191549,7 +191818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2ndstreet-f1a9c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2ndstreet-f1a9c4.jpg" }, { "if": { @@ -191568,7 +191837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/treasurefactory-f1a9c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/treasurefactory-f1a9c4.jpg" }, { "if": { @@ -191583,7 +191852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abcschuhcenter-0833e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abcschuhcenter-0833e2.jpg" }, { "if": { @@ -191600,7 +191869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1b892c-53e098.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1b892c-53e098.jpg" }, { "if": { @@ -191615,7 +191884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldo-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aldo-9b62dc.jpg" }, { "if": { @@ -191630,7 +191899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allbirds-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allbirds-9b62dc.jpg" }, { "if": { @@ -191645,7 +191914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allenedmonds-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allenedmonds-c5ede1.jpg" }, { "if": { @@ -191660,7 +191929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andre-c57706.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andre-c57706.jpg" }, { "if": { @@ -191675,7 +191944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anikaschuh-0833e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anikaschuh-0833e2.jpg" }, { "if": { @@ -191690,7 +191959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ara-59c06d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ara-59c06d.jpg" }, { "if": { @@ -191705,7 +191974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arche-64a960.png" + "then": "https://data.mapcomplete.org/nsi//logos/arche-64a960.png" }, { "if": { @@ -191720,7 +191989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/archive-067547.png" + "then": "https://data.mapcomplete.org/nsi//logos/archive-067547.png" }, { "if": { @@ -191736,7 +192005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arezzo-7c075c.png" + "then": "https://data.mapcomplete.org/nsi//logos/arezzo-7c075c.png" }, { "if": { @@ -191751,7 +192020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asics-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asics-9b62dc.jpg" }, { "if": { @@ -191766,7 +192035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bally-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bally-9b62dc.jpg" }, { "if": { @@ -191781,7 +192050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bata-361eb5.png" + "then": "https://data.mapcomplete.org/nsi//logos/bata-361eb5.png" }, { "if": { @@ -191796,7 +192065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bata-76c27d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bata-76c27d.png" }, { "if": { @@ -191811,7 +192080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belwest-886255.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belwest-886255.jpg" }, { "if": { @@ -191826,7 +192095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bessonchaussures-e6cf1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bessonchaussures-e6cf1b.jpg" }, { "if": { @@ -191841,7 +192110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/betts-373058.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/betts-373058.jpg" }, { "if": { @@ -191857,7 +192126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bexley-423d6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bexley-423d6f.jpg" }, { "if": { @@ -191872,7 +192141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birkenstock-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birkenstock-9b62dc.jpg" }, { "if": { @@ -191887,7 +192156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bocage-e6cf1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bocage-e6cf1b.jpg" }, { "if": { @@ -191902,7 +192171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/botticelli-d6114e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/botticelli-d6114e.jpg" }, { "if": { @@ -191917,7 +192186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brantano-12213a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brantano-12213a.jpg" }, { "if": { @@ -191932,7 +192201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/browns-189a70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/browns-189a70.jpg" }, { "if": { @@ -191947,7 +192216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/callitspring-9b62dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/callitspring-9b62dc.png" }, { "if": { @@ -191962,7 +192231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camper-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camper-9b62dc.jpg" }, { "if": { @@ -191977,7 +192246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccc-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ccc-9b62dc.jpg" }, { "if": { @@ -191992,7 +192261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chaussea-d3b405.png" + "then": "https://data.mapcomplete.org/nsi//logos/chaussea-d3b405.png" }, { "if": { @@ -192007,7 +192276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chaussexpo-e6cf1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chaussexpo-e6cf1b.jpg" }, { "if": { @@ -192022,7 +192291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christianlouboutin-eede13.png" + "then": "https://data.mapcomplete.org/nsi//logos/christianlouboutin-eede13.png" }, { "if": { @@ -192037,7 +192306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cklass-02b23f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cklass-02b23f.jpg" }, { "if": { @@ -192052,7 +192321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarks-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarks-9b62dc.jpg" }, { "if": { @@ -192067,7 +192336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colehaan-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colehaan-9b62dc.jpg" }, { "if": { @@ -192083,7 +192352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/constance-7c075c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/constance-7c075c.jpg" }, { "if": { @@ -192098,7 +192367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/converse-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/converse-9b62dc.jpg" }, { "if": { @@ -192113,7 +192382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosmoparis-e37ab9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cosmoparis-e37ab9.jpg" }, { "if": { @@ -192128,7 +192397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/courir-1cd077.png" + "then": "https://data.mapcomplete.org/nsi//logos/courir-1cd077.png" }, { "if": { @@ -192143,7 +192412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crocs-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crocs-9b62dc.jpg" }, { "if": { @@ -192158,7 +192427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deichmann-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deichmann-9b62dc.jpg" }, { "if": { @@ -192173,7 +192442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dinsko-5ed905.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dinsko-5ed905.jpg" }, { "if": { @@ -192187,7 +192456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dna-465569.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dna-465569.jpg" }, { "if": { @@ -192202,7 +192471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dodos-76fee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dodos-76fee2.jpg" }, { "if": { @@ -192217,7 +192486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dosenbach-f20847.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dosenbach-f20847.jpg" }, { "if": { @@ -192233,7 +192502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drkong-2bd793.png" + "then": "https://data.mapcomplete.org/nsi//logos/drkong-2bd793.png" }, { "if": { @@ -192248,7 +192517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drmartens-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drmartens-9b62dc.jpg" }, { "if": { @@ -192263,7 +192532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dsw-22ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dsw-22ceb3.jpg" }, { "if": { @@ -192279,7 +192548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunelondon-95839f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunelondon-95839f.jpg" }, { "if": { @@ -192294,7 +192563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecco-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecco-9b62dc.jpg" }, { "if": { @@ -192309,7 +192578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eram-423d6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eram-423d6f.jpg" }, { "if": { @@ -192324,7 +192593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurosko-5ed905.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurosko-5ed905.jpg" }, { "if": { @@ -192339,7 +192608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/famousfootwear-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/famousfootwear-c5ede1.jpg" }, { "if": { @@ -192354,7 +192623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fleetfeet-c5ede1.png" + "then": "https://data.mapcomplete.org/nsi//logos/fleetfeet-c5ede1.png" }, { "if": { @@ -192369,7 +192638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flo-ad2d82.png" + "then": "https://data.mapcomplete.org/nsi//logos/flo-ad2d82.png" }, { "if": { @@ -192384,7 +192653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/footlocker-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/footlocker-9b62dc.jpg" }, { "if": { @@ -192401,7 +192670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/footsolutions-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/footsolutions-9b62dc.jpg" }, { "if": { @@ -192416,7 +192685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/footaction-22ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/footaction-22ceb3.jpg" }, { "if": { @@ -192431,7 +192700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/footgear-067547.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/footgear-067547.jpg" }, { "if": { @@ -192446,7 +192715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freelance-e6cf1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freelance-e6cf1b.jpg" }, { "if": { @@ -192461,7 +192730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ghbassandco-bd5ddf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ghbassandco-bd5ddf.jpg" }, { "if": { @@ -192476,7 +192745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gabor-36552c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gabor-36552c.jpg" }, { "if": { @@ -192491,7 +192760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geox-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geox-9b62dc.jpg" }, { "if": { @@ -192506,7 +192775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldengoose-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldengoose-9b62dc.jpg" }, { "if": { @@ -192521,7 +192790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gortz-0833e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/gortz-0833e2.png" }, { "if": { @@ -192536,7 +192805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gortz17-0833e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/gortz17-0833e2.png" }, { "if": { @@ -192551,7 +192820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/havaianas-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/havaianas-9b62dc.jpg" }, { "if": { @@ -192566,23 +192835,23 @@ } ] }, - "then": "./assets/data/nsi/logos/hotter-eede13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotter-eede13.jpg" }, { "if": { "and": [ - "official_name=House of Hoops by Foot Locker", "shop=shoes", { "or": [ "brand=House of Hoops", "brand:wikidata=Q108232933", - "name=House of Hoops" + "name=House of Hoops", + "official_name=House of Hoops by Foot Locker" ] } ] }, - "then": "./assets/data/nsi/logos/houseofhoops-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houseofhoops-9b62dc.jpg" }, { "if": { @@ -192597,7 +192866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/humanic-fbe642.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/humanic-fbe642.jpg" }, { "if": { @@ -192612,7 +192881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hushpuppies-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hushpuppies-9b62dc.jpg" }, { "if": { @@ -192627,7 +192896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intertop-5eaca4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intertop-5eaca4.jpg" }, { "if": { @@ -192642,7 +192911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jmweston-9b62dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/jmweston-9b62dc.png" }, { "if": { @@ -192658,7 +192927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jbmartin-e6cf1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jbmartin-e6cf1b.jpg" }, { "if": { @@ -192673,7 +192942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jimmychoo-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jimmychoo-9b62dc.jpg" }, { "if": { @@ -192688,7 +192957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnstonandmurphy-22ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnstonandmurphy-22ceb3.jpg" }, { "if": { @@ -192703,7 +192972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonak-dff267.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonak-dff267.jpg" }, { "if": { @@ -192719,7 +192988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonesbootmaker-eede13.png" + "then": "https://data.mapcomplete.org/nsi//logos/jonesbootmaker-eede13.png" }, { "if": { @@ -192734,7 +193003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/journeys-22ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/journeys-22ceb3.jpg" }, { "if": { @@ -192749,7 +193018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/journeyskidz-22ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/journeyskidz-22ceb3.jpg" }, { "if": { @@ -192764,7 +193033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kkschuhcenter-0833e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kkschuhcenter-0833e2.jpg" }, { "if": { @@ -192779,7 +193048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kari-ff965c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kari-ff965c.png" }, { "if": { @@ -192794,7 +193063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karikids-6758e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karikids-6758e9.jpg" }, { "if": { @@ -192813,7 +193082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/khadims-02b6ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/khadims-02b6ad.jpg" }, { "if": { @@ -192829,7 +193098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kidsfootlocker-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kidsfootlocker-9b62dc.jpg" }, { "if": { @@ -192844,7 +193113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kurtgeiger-eede13.png" + "then": "https://data.mapcomplete.org/nsi//logos/kurtgeiger-eede13.png" }, { "if": { @@ -192859,7 +193128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lanew-0da3e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lanew-0da3e0.jpg" }, { "if": { @@ -192875,7 +193144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ladyfootlocker-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ladyfootlocker-c5ede1.jpg" }, { "if": { @@ -192890,7 +193159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leiser-0833e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leiser-0833e2.jpg" }, { "if": { @@ -192904,7 +193173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lillevinkelsko-465569.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lillevinkelsko-465569.jpg" }, { "if": { @@ -192919,7 +193188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littleburgundy-189a70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/littleburgundy-189a70.jpg" }, { "if": { @@ -192934,7 +193203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lloyd-928d17.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lloyd-928d17.svg" }, { "if": { @@ -192949,7 +193218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loding-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loding-9b62dc.jpg" }, { "if": { @@ -192964,7 +193233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manaco-c1b94b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manaco-c1b94b.jpg" }, { "if": { @@ -192979,7 +193248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manfield-0daf51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/manfield-0daf51.jpg" }, { "if": { @@ -192993,7 +193262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mani-465569.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mani-465569.jpg" }, { "if": { @@ -193010,7 +193279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marko-886255.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marko-886255.jpg" }, { "if": { @@ -193025,7 +193294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marypaz-587284.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marypaz-587284.svg" }, { "if": { @@ -193040,7 +193309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mascotte-0a14c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mascotte-0a14c2.jpg" }, { "if": { @@ -193055,7 +193324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matstar-34e073.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/matstar-34e073.jpg" }, { "if": { @@ -193070,7 +193339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayersmarkenschuhe-0833e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/mayersmarkenschuhe-0833e2.png" }, { "if": { @@ -193086,7 +193355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melissa-7c075c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/melissa-7c075c.jpg" }, { "if": { @@ -193101,7 +193370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mephisto-9b62dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/mephisto-9b62dc.png" }, { "if": { @@ -193116,7 +193385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merrell-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/merrell-9b62dc.jpg" }, { "if": { @@ -193131,7 +193400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-02b6ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-02b6ad.jpg" }, { "if": { @@ -193146,7 +193415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minelli-e6cf1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minelli-e6cf1b.jpg" }, { "if": { @@ -193161,7 +193430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moshulu-eede13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moshulu-eede13.jpg" }, { "if": { @@ -193176,7 +193445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/munich-d6114e.png" + "then": "https://data.mapcomplete.org/nsi//logos/munich-d6114e.png" }, { "if": { @@ -193191,7 +193460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myshoes-0833e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/myshoes-0833e2.jpg" }, { "if": { @@ -193206,7 +193475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturalizer-16a72e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturalizer-16a72e.jpg" }, { "if": { @@ -193221,7 +193490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nelsonschoenen-81951f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nelsonschoenen-81951f.jpg" }, { "if": { @@ -193236,7 +193505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newbalance-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newbalance-9b62dc.jpg" }, { "if": { @@ -193251,7 +193520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novo-f56c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novo-f56c2a.jpg" }, { "if": { @@ -193266,7 +193535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/numberoneshoes-4d7d7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/numberoneshoes-4d7d7d.png" }, { "if": { @@ -193281,7 +193550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/office-3ba4eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/office-3ba4eb.jpg" }, { "if": { @@ -193296,7 +193565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/officeshoes-30afef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/officeshoes-30afef.jpg" }, { "if": { @@ -193311,7 +193580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omoda-14cd03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omoda-14cd03.jpg" }, { "if": { @@ -193326,7 +193595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pataugas-e6cf1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pataugas-e6cf1b.jpg" }, { "if": { @@ -193341,7 +193610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paversshoes-eede13.png" + "then": "https://data.mapcomplete.org/nsi//logos/paversshoes-eede13.png" }, { "if": { @@ -193356,7 +193625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paylessshoesource-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paylessshoesource-9b62dc.jpg" }, { "if": { @@ -193371,7 +193640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pittarosso-6005fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pittarosso-6005fb.jpg" }, { "if": { @@ -193387,7 +193656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pomdapi-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pomdapi-9b62dc.jpg" }, { "if": { @@ -193403,7 +193672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primadonna-5548d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primadonna-5548d3.jpg" }, { "if": { @@ -193418,7 +193687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/querol-d6114e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/querol-d6114e.jpg" }, { "if": { @@ -193433,7 +193702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickschuh-59c06d.png" + "then": "https://data.mapcomplete.org/nsi//logos/quickschuh-59c06d.png" }, { "if": { @@ -193448,7 +193717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rmwilliams-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rmwilliams-9b62dc.jpg" }, { "if": { @@ -193463,7 +193732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rackroomshoes-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rackroomshoes-c5ede1.jpg" }, { "if": { @@ -193478,7 +193747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rage-067547.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rage-067547.jpg" }, { "if": { @@ -193493,7 +193762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ralfringer-0a14c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ralfringer-0a14c2.jpg" }, { "if": { @@ -193508,7 +193777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redwing-1e24e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redwing-1e24e3.jpg" }, { "if": { @@ -193523,7 +193792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reno-647f57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reno-647f57.jpg" }, { "if": { @@ -193538,7 +193807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/respect-587627.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/respect-587627.jpg" }, { "if": { @@ -193553,7 +193822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rieker-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rieker-9b62dc.jpg" }, { "if": { @@ -193568,7 +193837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roadrunnersports-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roadrunnersports-c5ede1.jpg" }, { "if": { @@ -193583,7 +193852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robel-26b6c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robel-26b6c7.jpg" }, { "if": { @@ -193598,7 +193867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockport-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rockport-9b62dc.jpg" }, { "if": { @@ -193613,7 +193882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/runnerspoint-0833e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/runnerspoint-0833e2.png" }, { "if": { @@ -193628,7 +193897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rylko-aa42f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rylko-aa42f1.jpg" }, { "if": { @@ -193643,7 +193912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacha-854638.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacha-854638.jpg" }, { "if": { @@ -193658,7 +193927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salamander-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salamander-9b62dc.jpg" }, { "if": { @@ -193673,7 +193942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salvadorartesano-d6114e.png" + "then": "https://data.mapcomplete.org/nsi//logos/salvadorartesano-d6114e.png" }, { "if": { @@ -193688,7 +193957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salvatoreferragamo-9b62dc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/salvatoreferragamo-9b62dc.svg" }, { "if": { @@ -193703,7 +193972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanmarina-c57706.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanmarina-c57706.jpg" }, { "if": { @@ -193719,7 +193988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santalolla-7c075c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santalolla-7c075c.jpg" }, { "if": { @@ -193735,7 +194004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sas-9b62dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/sas-9b62dc.png" }, { "if": { @@ -193750,7 +194019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scapino-81951f.png" + "then": "https://data.mapcomplete.org/nsi//logos/scapino-81951f.png" }, { "if": { @@ -193765,7 +194034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scarpeandscarpe-5548d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scarpeandscarpe-5548d3.jpg" }, { "if": { @@ -193780,7 +194049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schuh-a4f363.png" + "then": "https://data.mapcomplete.org/nsi//logos/schuh-a4f363.png" }, { "if": { @@ -193795,7 +194064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schuhmann-0833e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/schuhmann-0833e2.png" }, { "if": { @@ -193810,7 +194079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schuhpark-0833e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/schuhpark-0833e2.png" }, { "if": { @@ -193825,7 +194094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scorett-14eefa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scorett-14eefa.jpg" }, { "if": { @@ -193840,7 +194109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sebago-9b62dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/sebago-9b62dc.png" }, { "if": { @@ -193855,7 +194124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sezon-587627.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sezon-587627.jpg" }, { "if": { @@ -193870,7 +194139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoecarnival-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoecarnival-c5ede1.jpg" }, { "if": { @@ -193885,7 +194154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoecity-c5ede1.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoecity-c5ede1.png" }, { "if": { @@ -193900,7 +194169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoecity-423275.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoecity-423275.jpg" }, { "if": { @@ -193915,7 +194184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoedept-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoedept-c5ede1.jpg" }, { "if": { @@ -193930,7 +194199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoedeptencore-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoedeptencore-c5ede1.jpg" }, { "if": { @@ -193945,7 +194214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoepalace-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoepalace-c5ede1.jpg" }, { "if": { @@ -193960,7 +194229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoesensation-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoesensation-c5ede1.jpg" }, { "if": { @@ -193975,7 +194244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoeshow-c5ede1.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoeshow-c5ede1.png" }, { "if": { @@ -193990,7 +194259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoeshowmega-c5ede1.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoeshowmega-c5ede1.png" }, { "if": { @@ -194005,7 +194274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoezone-c06ee3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoezone-c06ee3.jpg" }, { "if": { @@ -194020,7 +194289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoe4you-59c06d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoe4you-59c06d.jpg" }, { "if": { @@ -194034,7 +194303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoeday-465569.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoeday-465569.jpg" }, { "if": { @@ -194049,7 +194318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sidestep-76fee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sidestep-76fee2.jpg" }, { "if": { @@ -194064,7 +194333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siemesschuhcenter-0833e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siemesschuhcenter-0833e2.jpg" }, { "if": { @@ -194079,7 +194348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sizeer-5db2a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/sizeer-5db2a9.png" }, { "if": { @@ -194094,7 +194363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skechers-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skechers-9b62dc.jpg" }, { "if": { @@ -194109,7 +194378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skopunkten-14eefa.png" + "then": "https://data.mapcomplete.org/nsi//logos/skopunkten-14eefa.png" }, { "if": { @@ -194124,7 +194393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skoringen-452c0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skoringen-452c0a.jpg" }, { "if": { @@ -194139,7 +194408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sneakerfactory-067547.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sneakerfactory-067547.jpg" }, { "if": { @@ -194154,7 +194423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snipes-9e6e1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snipes-9e6e1a.jpg" }, { "if": { @@ -194169,7 +194438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/softmoc-189a70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/softmoc-189a70.jpg" }, { "if": { @@ -194184,7 +194453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spendlessshoes-373058.png" + "then": "https://data.mapcomplete.org/nsi//logos/spendlessshoes-373058.png" }, { "if": { @@ -194199,7 +194468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sperry-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sperry-c5ede1.jpg" }, { "if": { @@ -194214,7 +194483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spitz-067547.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spitz-067547.jpg" }, { "if": { @@ -194229,7 +194498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stevemadden-22ceb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stevemadden-22ceb3.jpg" }, { "if": { @@ -194244,7 +194513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/streetshoes-0833e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/streetshoes-0833e2.png" }, { "if": { @@ -194259,7 +194528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/striderite-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/striderite-c5ede1.jpg" }, { "if": { @@ -194274,7 +194543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stuartweitzman-54b0d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stuartweitzman-54b0d5.jpg" }, { "if": { @@ -194289,7 +194558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamaris-e95100.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tamaris-e95100.jpg" }, { "if": { @@ -194304,7 +194573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tekkietown-bf67c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/tekkietown-bf67c5.png" }, { "if": { @@ -194319,7 +194588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theathletesfoot-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theathletesfoot-9b62dc.jpg" }, { "if": { @@ -194334,7 +194603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theshoecompany-189a70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theshoecompany-189a70.jpg" }, { "if": { @@ -194350,7 +194619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thewalkingcompany-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thewalkingcompany-9b62dc.jpg" }, { "if": { @@ -194365,7 +194634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tods-9b62dc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tods-9b62dc.svg" }, { "if": { @@ -194380,7 +194649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schoenentorfs-9a105b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schoenentorfs-9a105b.jpg" }, { "if": { @@ -194395,7 +194664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tradehomeshoes-c5ede1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tradehomeshoes-c5ede1.jpg" }, { "if": { @@ -194410,7 +194679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugg-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ugg-9b62dc.jpg" }, { "if": { @@ -194425,7 +194694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usaflex-7c075c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usaflex-7c075c.jpg" }, { "if": { @@ -194440,7 +194709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanharen-9b006f.png" + "then": "https://data.mapcomplete.org/nsi//logos/vanharen-9b006f.png" }, { "if": { @@ -194455,7 +194724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vans-9b62dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vans-9b62dc.jpg" }, { "if": { @@ -194470,7 +194739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vogeleshoes-10cc84.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vogeleshoes-10cc84.svg" }, { "if": { @@ -194485,7 +194754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walkingonacloud-189a70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walkingonacloud-189a70.jpg" }, { "if": { @@ -194500,7 +194769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weshoes-e604d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weshoes-e604d0.jpg" }, { "if": { @@ -194515,7 +194784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wojas-db04aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/wojas-db04aa.png" }, { "if": { @@ -194530,7 +194799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodland-02b6ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/woodland-02b6ad.png" }, { "if": { @@ -194546,7 +194815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldtennis-7c075c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldtennis-7c075c.jpg" }, { "if": { @@ -194561,7 +194830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wss-c5ede1.gif" + "then": "https://data.mapcomplete.org/nsi//logos/wss-c5ede1.gif" }, { "if": { @@ -194576,7 +194845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziengs-81951f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ziengs-81951f.jpg" }, { "if": { @@ -194591,7 +194860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6c57c6-886255.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/6c57c6-886255.jpg" }, { "if": { @@ -194607,7 +194876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b94bbd-2bb834.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/b94bbd-2bb834.jpg" }, { "if": { @@ -194622,7 +194891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fa8d5a-2bb834.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fa8d5a-2bb834.jpg" }, { "if": { @@ -194640,7 +194909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bata-100886.png" + "then": "https://data.mapcomplete.org/nsi//logos/bata-100886.png" }, { "if": { @@ -194660,7 +194929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corsoitalia-100886.png" + "then": "https://data.mapcomplete.org/nsi//logos/corsoitalia-100886.png" }, { "if": { @@ -194678,7 +194947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flo-100886.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flo-100886.jpg" }, { "if": { @@ -194697,7 +194966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoeplaza-53e098.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoeplaza-53e098.jpg" }, { "if": { @@ -194716,7 +194985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsuruya-53e098.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tsuruya-53e098.jpg" }, { "if": { @@ -194735,7 +195004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warrior-2cdeaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warrior-2cdeaf.jpg" }, { "if": { @@ -194754,7 +195023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokyoshoesretailingcenter-53e098.png" + "then": "https://data.mapcomplete.org/nsi//logos/tokyoshoesretailingcenter-53e098.png" }, { "if": { @@ -194773,7 +195042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aso-0da3e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aso-0da3e0.jpg" }, { "if": { @@ -194792,7 +195061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kutsusenka-53e098.png" + "then": "https://data.mapcomplete.org/nsi//logos/kutsusenka-53e098.png" }, { "if": { @@ -194807,7 +195076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penzeysspices-bcf057.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penzeysspices-bcf057.jpg" }, { "if": { @@ -194822,7 +195091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4f-723a68.png" + "then": "https://data.mapcomplete.org/nsi//logos/4f-723a68.png" }, { "if": { @@ -194837,7 +195106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a3sport-9dd59e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a3sport-9dd59e.jpg" }, { "if": { @@ -194852,7 +195121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/academysportsoutdoors-89ce6f.png" + "then": "https://data.mapcomplete.org/nsi//logos/academysportsoutdoors-89ce6f.png" }, { "if": { @@ -194867,7 +195136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adidas-59994a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adidas-59994a.jpg" }, { "if": { @@ -194882,7 +195151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/admiralsports-71efeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/admiralsports-71efeb.jpg" }, { "if": { @@ -194897,7 +195166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktiesport-2637e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aktiesport-2637e1.jpg" }, { "if": { @@ -194913,7 +195182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americangolf-03b7aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americangolf-03b7aa.jpg" }, { "if": { @@ -194928,7 +195197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/areioutdoorgear-f9c896.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/areioutdoorgear-f9c896.jpg" }, { "if": { @@ -194943,7 +195212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/athletics-d7f1c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/athletics-d7f1c6.jpg" }, { "if": { @@ -194958,7 +195227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/big5sportinggoods-89ce6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/big5sportinggoods-89ce6f.jpg" }, { "if": { @@ -194973,7 +195242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centauro-f744b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/centauro-f744b5.png" }, { "if": { @@ -194988,7 +195257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/champssports-2a6203.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/champssports-2a6203.jpg" }, { "if": { @@ -195003,7 +195272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cisalfasport-c3bdd2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cisalfasport-c3bdd2.jpg" }, { "if": { @@ -195019,7 +195288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubchampion-89ce6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubchampion-89ce6f.jpg" }, { "if": { @@ -195036,7 +195305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decathlon-7ad0c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/decathlon-7ad0c4.jpg" }, { "if": { @@ -195057,7 +195326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decathlon-d7f1c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/decathlon-d7f1c6.jpg" }, { "if": { @@ -195072,7 +195341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dickshouseofsport-89ce6f.png" + "then": "https://data.mapcomplete.org/nsi//logos/dickshouseofsport-89ce6f.png" }, { "if": { @@ -195087,7 +195356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dickssportinggoods-89ce6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dickssportinggoods-89ce6f.jpg" }, { "if": { @@ -195102,7 +195371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunhamssports-89ce6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunhamssports-89ce6f.jpg" }, { "if": { @@ -195118,7 +195387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equiva-081602.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equiva-081602.jpg" }, { "if": { @@ -195133,7 +195402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exisport-aa748e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exisport-aa748e.jpg" }, { "if": { @@ -195148,7 +195417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/finishline-89ce6f.png" + "then": "https://data.mapcomplete.org/nsi//logos/finishline-89ce6f.png" }, { "if": { @@ -195163,7 +195432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fitshop-b06acf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fitshop-b06acf.jpg" }, { "if": { @@ -195178,7 +195447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gigasport-f4008b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gigasport-f4008b.jpg" }, { "if": { @@ -195195,7 +195464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gigasports-968672.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gigasports-968672.jpg" }, { "if": { @@ -195210,7 +195479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gosport-63990e.png" + "then": "https://data.mapcomplete.org/nsi//logos/gosport-63990e.png" }, { "if": { @@ -195226,7 +195495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/golfgalaxy-89ce6f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/golfgalaxy-89ce6f.svg" }, { "if": { @@ -195241,7 +195510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/golftown-80660e.png" + "then": "https://data.mapcomplete.org/nsi//logos/golftown-80660e.png" }, { "if": { @@ -195256,7 +195525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hervis-38a747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hervis-38a747.jpg" }, { "if": { @@ -195271,7 +195540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hibbettsports-89ce6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hibbettsports-89ce6f.jpg" }, { "if": { @@ -195286,7 +195555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hookshastsport-b82ac0.png" + "then": "https://data.mapcomplete.org/nsi//logos/hookshastsport-b82ac0.png" }, { "if": { @@ -195301,7 +195570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intersport-eca9ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intersport-eca9ec.jpg" }, { "if": { @@ -195316,7 +195585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intersportelverys-6fd3c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intersportelverys-6fd3c0.jpg" }, { "if": { @@ -195331,7 +195600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jdsports-e19f89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jdsports-e19f89.jpg" }, { "if": { @@ -195346,7 +195615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnsonfitnessandwellness-57cfca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnsonfitnessandwellness-57cfca.jpg" }, { "if": { @@ -195362,7 +195631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kramerpferdesport-081602.png" + "then": "https://data.mapcomplete.org/nsi//logos/kramerpferdesport-081602.png" }, { "if": { @@ -195377,7 +195646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifestylesports-6fd3c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifestylesports-6fd3c0.jpg" }, { "if": { @@ -195392,7 +195661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonsports-ce6e12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonsports-ce6e12.jpg" }, { "if": { @@ -195415,7 +195684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonsports-968672.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonsports-968672.jpg" }, { "if": { @@ -195430,7 +195699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonsports-89ce6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonsports-89ce6f.jpg" }, { "if": { @@ -195445,7 +195714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martessport-39c002.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/martessport-39c002.jpg" }, { "if": { @@ -195460,7 +195729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/modellssportinggoods-89ce6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/modellssportinggoods-89ce6f.jpg" }, { "if": { @@ -195475,7 +195744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ochsnersport-89a72b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ochsnersport-89a72b.jpg" }, { "if": { @@ -195490,7 +195759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peloton-18eda3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peloton-18eda3.jpg" }, { "if": { @@ -195506,7 +195775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgatoursuperstore-89ce6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgatoursuperstore-89ce6f.jpg" }, { "if": { @@ -195523,7 +195792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/planetasport-d20c83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/planetasport-d20c83.jpg" }, { "if": { @@ -195538,7 +195807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/playitagainsports-2a6203.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/playitagainsports-2a6203.jpg" }, { "if": { @@ -195553,7 +195822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prohockeylife-80660e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prohockeylife-80660e.jpg" }, { "if": { @@ -195573,7 +195842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rapha-e13309.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rapha-e13309.jpg" }, { "if": { @@ -195588,7 +195857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rebel-81181e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rebel-81181e.jpg" }, { "if": { @@ -195603,7 +195872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rebelsport-6d17d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rebelsport-6d17d3.jpg" }, { "if": { @@ -195620,7 +195889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/runnersneed-03b7aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/runnersneed-03b7aa.png" }, { "if": { @@ -195635,7 +195904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/runningroom-2a6203.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/runningroom-2a6203.jpg" }, { "if": { @@ -195650,7 +195919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sourceforsports-80660e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sourceforsports-80660e.jpg" }, { "if": { @@ -195664,7 +195933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sport1-6faf2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sport1-6faf2d.jpg" }, { "if": { @@ -195679,7 +195948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sport2000-44fadc.png" + "then": "https://data.mapcomplete.org/nsi//logos/sport2000-44fadc.png" }, { "if": { @@ -195694,7 +195963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportchek-80660e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportchek-80660e.jpg" }, { "if": { @@ -195708,7 +195977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportoutlet-6faf2d.png" + "then": "https://data.mapcomplete.org/nsi//logos/sportoutlet-6faf2d.png" }, { "if": { @@ -195723,7 +195992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportvision-daf837.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportvision-daf837.jpg" }, { "if": { @@ -195738,7 +196007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportzone-62e24b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportzone-62e24b.jpg" }, { "if": { @@ -195753,7 +196022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportinglife-80660e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sportinglife-80660e.png" }, { "if": { @@ -195768,7 +196037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportisimo-8183b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/sportisimo-8183b2.png" }, { "if": { @@ -195783,7 +196052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportler-14f94f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportler-14f94f.jpg" }, { "if": { @@ -195798,7 +196067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportmaster-2dd6d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportmaster-2dd6d1.jpg" }, { "if": { @@ -195813,7 +196082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportsauthority-a8f48a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportsauthority-a8f48a.jpg" }, { "if": { @@ -195828,7 +196097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportsdirect-a8f48a.png" + "then": "https://data.mapcomplete.org/nsi//logos/sportsdirect-a8f48a.png" }, { "if": { @@ -195843,7 +196112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportscheck-69bd4b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sportscheck-69bd4b.svg" }, { "if": { @@ -195858,7 +196127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportsmanswarehouse-079c52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportsmanswarehouse-079c52.jpg" }, { "if": { @@ -195873,7 +196142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportspower-81181e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sportspower-81181e.png" }, { "if": { @@ -195888,7 +196157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportxx-89a72b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sportxx-89a72b.svg" }, { "if": { @@ -195903,7 +196172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sprinter-b318c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sprinter-b318c6.jpg" }, { "if": { @@ -195918,7 +196187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadium-32e81d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadium-32e81d.jpg" }, { "if": { @@ -195934,7 +196203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theproshop-9dcd28.png" + "then": "https://data.mapcomplete.org/nsi//logos/theproshop-9dcd28.png" }, { "if": { @@ -195950,7 +196219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/upandrunning-060c70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/upandrunning-060c70.jpg" }, { "if": { @@ -195965,7 +196234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xxl-ea59d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xxl-ea59d5.jpg" }, { "if": { @@ -195984,7 +196253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportmaster-1e138a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportmaster-1e138a.jpg" }, { "if": { @@ -196004,7 +196273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/golfdo-04ead7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/golfdo-04ead7.jpg" }, { "if": { @@ -196024,7 +196293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/golfpartner-04ead7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/golfpartner-04ead7.jpg" }, { "if": { @@ -196043,7 +196312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supersportsxebio-04ead7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supersportsxebio-04ead7.jpg" }, { "if": { @@ -196062,7 +196331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportsauthority-04ead7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportsauthority-04ead7.jpg" }, { "if": { @@ -196081,7 +196350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decathlon-ba0397.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/decathlon-ba0397.jpg" }, { "if": { @@ -196100,7 +196369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decathlon-968672.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/decathlon-968672.jpg" }, { "if": { @@ -196119,7 +196388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adidas-fa2206.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adidas-fa2206.jpg" }, { "if": { @@ -196138,7 +196407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/101stationeryparadise-1884c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/101stationeryparadise-1884c5.jpg" }, { "if": { @@ -196153,7 +196422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akvarel-e2732b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akvarel-e2732b.jpg" }, { "if": { @@ -196168,7 +196437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buffetti-f9cdfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/buffetti-f9cdfb.png" }, { "if": { @@ -196183,7 +196452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauengros-0e3c23.png" + "then": "https://data.mapcomplete.org/nsi//logos/bureauengros-0e3c23.png" }, { "if": { @@ -196198,7 +196467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauvallee-ce24e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/bureauvallee-ce24e4.png" }, { "if": { @@ -196213,7 +196482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carlin-fac120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carlin-fac120.jpg" }, { "if": { @@ -196228,7 +196497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cna-4b73db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cna-4b73db.jpg" }, { "if": { @@ -196243,7 +196512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compucopias-babad8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compucopias-babad8.jpg" }, { "if": { @@ -196258,7 +196527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daffer-0be41a.png" + "then": "https://data.mapcomplete.org/nsi//logos/daffer-0be41a.png" }, { "if": { @@ -196273,7 +196542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/folder-e0984f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/folder-e0984f.jpg" }, { "if": { @@ -196288,23 +196557,23 @@ } ] }, - "then": "./assets/data/nsi/logos/kalunga-52f43d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kalunga-52f43d.jpg" }, { "if": { "and": [ - "official_name=Koh-i-Noor Hardtmuth", "shop=stationery", { "or": [ "brand=Koh-i-Noor", "brand:wikidata=Q698032", - "name=Koh-i-Noor" + "name=Koh-i-Noor", + "official_name=Koh-i-Noor Hardtmuth" ] } ] }, - "then": "./assets/data/nsi/logos/kohinoor-ecb638.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kohinoor-ecb638.jpg" }, { "if": { @@ -196319,7 +196588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcpaper-f8476b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcpaper-f8476b.jpg" }, { "if": { @@ -196334,7 +196603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/officeworks-52dece.png" + "then": "https://data.mapcomplete.org/nsi//logos/officeworks-52dece.png" }, { "if": { @@ -196349,7 +196618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pagro-42cd24.png" + "then": "https://data.mapcomplete.org/nsi//logos/pagro-42cd24.png" }, { "if": { @@ -196364,7 +196633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/papersource-b2098d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/papersource-b2098d.jpg" }, { "if": { @@ -196379,7 +196648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pna-e57d44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pna-e57d44.jpg" }, { "if": { @@ -196394,7 +196663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ryman-a503c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/ryman-a503c5.png" }, { "if": { @@ -196409,7 +196678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sevt-0be41a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sevt-0be41a.jpg" }, { "if": { @@ -196424,7 +196693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smiggle-471bdb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smiggle-471bdb.jpg" }, { "if": { @@ -196439,7 +196708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staples-1d9396.png" + "then": "https://data.mapcomplete.org/nsi//logos/staples-1d9396.png" }, { "if": { @@ -196454,7 +196723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staples-b2098d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/staples-b2098d.jpg" }, { "if": { @@ -196469,7 +196738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tony-babad8.png" + "then": "https://data.mapcomplete.org/nsi//logos/tony-babad8.png" }, { "if": { @@ -196484,7 +196753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warehousestationery-a34cb3.png" + "then": "https://data.mapcomplete.org/nsi//logos/warehousestationery-a34cb3.png" }, { "if": { @@ -196503,7 +196772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komus-b8bb59.png" + "then": "https://data.mapcomplete.org/nsi//logos/komus-b8bb59.png" }, { "if": { @@ -196522,7 +196791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jinyuhtarngstationery-1884c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jinyuhtarngstationery-1884c5.jpg" }, { "if": { @@ -196537,7 +196806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1selfstorage-a05958.png" + "then": "https://data.mapcomplete.org/nsi//logos/a1selfstorage-a05958.png" }, { "if": { @@ -196552,7 +196821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accessselfstorage-93b48c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accessselfstorage-93b48c.jpg" }, { "if": { @@ -196567,7 +196836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accessstorage-9d4abf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accessstorage-9d4abf.jpg" }, { "if": { @@ -196582,7 +196851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allsafeminiopslag-43269c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allsafeminiopslag-43269c.jpg" }, { "if": { @@ -196597,7 +196866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigyellowselfstorage-93b48c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigyellowselfstorage-93b48c.jpg" }, { "if": { @@ -196612,7 +196881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compassselfstorage-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compassselfstorage-7879a0.jpg" }, { "if": { @@ -196627,7 +196896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cubesmart-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cubesmart-7879a0.jpg" }, { "if": { @@ -196642,7 +196911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/extraspacestorage-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/extraspacestorage-7879a0.jpg" }, { "if": { @@ -196657,7 +196926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istorage-7879a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/istorage-7879a0.png" }, { "if": { @@ -196672,7 +196941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kennardsstorage-e49450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kennardsstorage-e49450.jpg" }, { "if": { @@ -196687,7 +196956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lagerbox-1ebebd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lagerbox-1ebebd.jpg" }, { "if": { @@ -196702,7 +196971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifestorage-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lifestorage-7879a0.jpg" }, { "if": { @@ -196717,7 +196986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loknstore-93b48c.png" + "then": "https://data.mapcomplete.org/nsi//logos/loknstore-93b48c.png" }, { "if": { @@ -196732,7 +197001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metroselfstorage-5b962b.png" + "then": "https://data.mapcomplete.org/nsi//logos/metroselfstorage-5b962b.png" }, { "if": { @@ -196747,7 +197016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minimallstorage-51c575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minimallstorage-51c575.jpg" }, { "if": { @@ -196762,7 +197031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministoragedepot-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministoragedepot-7879a0.jpg" }, { "if": { @@ -196777,7 +197046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myplaceselfstorage-7d575b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/myplaceselfstorage-7d575b.jpg" }, { "if": { @@ -196792,7 +197061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalministorage-8edc81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalministorage-8edc81.jpg" }, { "if": { @@ -196807,7 +197076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalstorage-e49450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalstorage-e49450.jpg" }, { "if": { @@ -196822,7 +197091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestselfstorage-6af07e.png" + "then": "https://data.mapcomplete.org/nsi//logos/northwestselfstorage-6af07e.png" }, { "if": { @@ -196837,7 +197106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pods-3ec4f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pods-3ec4f5.jpg" }, { "if": { @@ -196852,7 +197121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primestorage-51c575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primestorage-51c575.jpg" }, { "if": { @@ -196867,7 +197136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicstorage-51c575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicstorage-51c575.jpg" }, { "if": { @@ -196882,7 +197151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rightspacestorage-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rightspacestorage-7879a0.jpg" }, { "if": { @@ -196897,7 +197166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safestore-93b48c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safestore-93b48c.jpg" }, { "if": { @@ -196912,7 +197181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/securcareselfstorage-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/securcareselfstorage-7879a0.jpg" }, { "if": { @@ -196927,7 +197196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/securespaceselfstorage-7879a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/securespaceselfstorage-7879a0.png" }, { "if": { @@ -196942,7 +197211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/securitypublicstorage-6a57cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/securitypublicstorage-6a57cb.jpg" }, { "if": { @@ -196957,7 +197226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shurgardselfstorage-8ba52e.png" + "then": "https://data.mapcomplete.org/nsi//logos/shurgardselfstorage-8ba52e.png" }, { "if": { @@ -196972,7 +197241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southernselfstorage-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southernselfstorage-7879a0.jpg" }, { "if": { @@ -196987,7 +197256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spaceshopselfstorage-7879a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/spaceshopselfstorage-7879a0.png" }, { "if": { @@ -197002,7 +197271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storageking-e49450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/storageking-e49450.jpg" }, { "if": { @@ -197017,7 +197286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storagerentalsofamerica-7879a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/storagerentalsofamerica-7879a0.png" }, { "if": { @@ -197032,7 +197301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storagemart-3ec4f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/storagemart-3ec4f5.png" }, { "if": { @@ -197047,7 +197316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storamerica-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/storamerica-7879a0.jpg" }, { "if": { @@ -197062,7 +197331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storespace-7879a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/storespace-7879a0.png" }, { "if": { @@ -197077,7 +197346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storebox-3e45ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/storebox-3e45ed.jpg" }, { "if": { @@ -197092,7 +197361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storquest-7879a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/storquest-7879a0.jpg" }, { "if": { @@ -197107,7 +197376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thelockup-913626.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thelockup-913626.jpg" }, { "if": { @@ -197122,7 +197391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trojanstorage-7879a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/trojanstorage-7879a0.png" }, { "if": { @@ -197137,7 +197406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uhaul-51c575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uhaul-51c575.jpg" }, { "if": { @@ -197156,7 +197425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uspace-40a7f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uspace-40a7f7.jpg" }, { "if": { @@ -197171,7 +197440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ustorit-a1f08e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ustorit-a1f08e.png" }, { "if": { @@ -197186,7 +197455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukstoragecompany-93b48c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukstoragecompany-93b48c.jpg" }, { "if": { @@ -197201,7 +197470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unepieceenplus-1d8b68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unepieceenplus-1d8b68.jpg" }, { "if": { @@ -197216,7 +197485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westcoastselfstorage-8e2904.png" + "then": "https://data.mapcomplete.org/nsi//logos/westcoastselfstorage-8e2904.png" }, { "if": { @@ -197235,7 +197504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hellostorage-40a7f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hellostorage-40a7f7.jpg" }, { "if": { @@ -197252,7 +197521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3hreesixty-745f9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/3hreesixty-745f9c.png" }, { "if": { @@ -197267,7 +197536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8ahuit-c16b1c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/8ahuit-c16b1c.svg" }, { "if": { @@ -197286,7 +197555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/99ranchmarket-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/99ranchmarket-dde59d.jpg" }, { "if": { @@ -197301,7 +197570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/99speedmart-bfc07b.png" + "then": "https://data.mapcomplete.org/nsi//logos/99speedmart-bfc07b.png" }, { "if": { @@ -197316,7 +197585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aando-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aando-0cb133.jpg" }, { "if": { @@ -197331,7 +197600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a101-5b5772.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a101-5b5772.jpg" }, { "if": { @@ -197346,7 +197615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abclavpris-072052.png" + "then": "https://data.mapcomplete.org/nsi//logos/abclavpris-072052.png" }, { "if": { @@ -197361,7 +197630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acme-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acme-dde59d.jpg" }, { "if": { @@ -197376,7 +197645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/addelhaize-f276cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/addelhaize-f276cb.png" }, { "if": { @@ -197391,7 +197660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adeg-1eef1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adeg-1eef1d.jpg" }, { "if": { @@ -197407,7 +197676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeonbig-80e9ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aeonbig-80e9ee.jpg" }, { "if": { @@ -197422,7 +197691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ahorramas-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ahorramas-0513f1.jpg" }, { "if": { @@ -197437,7 +197706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albert-8e6809.png" + "then": "https://data.mapcomplete.org/nsi//logos/albert-8e6809.png" }, { "if": { @@ -197452,7 +197721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albertheijn-1cf55d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albertheijn-1cf55d.jpg" }, { "if": { @@ -197467,7 +197736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albertheijnxl-1cf55d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albertheijnxl-1cf55d.jpg" }, { "if": { @@ -197482,7 +197751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albertsons-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albertsons-dde59d.jpg" }, { "if": { @@ -197497,7 +197766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albertsonsmarket-ba1fb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/albertsonsmarket-ba1fb8.png" }, { "if": { @@ -197512,7 +197781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alcampo-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alcampo-0513f1.jpg" }, { "if": { @@ -197527,7 +197796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-3a2eb7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-3a2eb7.svg" }, { "if": { @@ -197542,7 +197811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-68f0e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-68f0e3.png" }, { "if": { @@ -197557,7 +197826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-813759.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-813759.svg" }, { "if": { @@ -197572,7 +197841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldisud-e4a24f.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldisud-e4a24f.png" }, { "if": { @@ -197587,7 +197856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alimerka-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alimerka-0513f1.jpg" }, { "if": { @@ -197602,7 +197871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alldaysupermarket-49e134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alldaysupermarket-49e134.jpg" }, { "if": { @@ -197619,7 +197888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alnaturasupernaturmarkt-f97a5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alnaturasupernaturmarkt-f97a5b.jpg" }, { "if": { @@ -197634,7 +197903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alvo-f276cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alvo-f276cb.jpg" }, { "if": { @@ -197652,7 +197921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ampm-6b65f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ampm-6b65f1.jpg" }, { "if": { @@ -197667,7 +197936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazonfresh-21d28e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amazonfresh-21d28e.jpg" }, { "if": { @@ -197683,7 +197952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amigo-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amigo-dde59d.jpg" }, { "if": { @@ -197698,7 +197967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amigos-a6c312.png" + "then": "https://data.mapcomplete.org/nsi//logos/amigos-a6c312.png" }, { "if": { @@ -197713,7 +197982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/angelocaputosfreshmarkets-5ca8e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/angelocaputosfreshmarkets-5ca8e2.jpg" }, { "if": { @@ -197728,7 +197997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ara-271a34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ara-271a34.jpg" }, { "if": { @@ -197743,7 +198012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arddiscount-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arddiscount-0cb133.jpg" }, { "if": { @@ -197758,7 +198027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asda-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asda-a8278b.jpg" }, { "if": { @@ -197773,7 +198042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/assaiatacadista-20f2a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/assaiatacadista-20f2a8.jpg" }, { "if": { @@ -197788,7 +198057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aswakassalam-dc016e.png" + "then": "https://data.mapcomplete.org/nsi//logos/aswakassalam-dc016e.png" }, { "if": { @@ -197803,7 +198072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atacadao-0e6c71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atacadao-0e6c71.jpg" }, { "if": { @@ -197818,7 +198087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchan-05ddc8.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchan-05ddc8.png" }, { "if": { @@ -197834,7 +198103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchandrive-715442.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchandrive-715442.png" }, { "if": { @@ -197849,7 +198118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchansupermarche-c16b1c.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchansupermarche-c16b1c.png" }, { "if": { @@ -197864,7 +198133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bashas-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bashas-dde59d.jpg" }, { "if": { @@ -197880,7 +198149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basic-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/basic-0a839e.png" }, { "if": { @@ -197895,7 +198164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bazaar-37450e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bazaar-37450e.png" }, { "if": { @@ -197910,7 +198179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berkotssuperfoods-5dc7ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berkotssuperfoods-5dc7ba.jpg" }, { "if": { @@ -197925,7 +198194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bilo-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bilo-dde59d.png" }, { "if": { @@ -197940,7 +198209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bi1-e36147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bi1-e36147.jpg" }, { "if": { @@ -197955,7 +198224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biedronka-d1b870.png" + "then": "https://data.mapcomplete.org/nsi//logos/biedronka-d1b870.png" }, { "if": { @@ -197970,7 +198239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigbazaar-9ef8f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/bigbazaar-9ef8f9.png" }, { "if": { @@ -197985,7 +198254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigbompreco-20f2a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bigbompreco-20f2a8.svg" }, { "if": { @@ -198004,7 +198273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigc-a1bbd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigc-a1bbd8.jpg" }, { "if": { @@ -198019,7 +198288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigmarket-e8341b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigmarket-e8341b.jpg" }, { "if": { @@ -198034,7 +198303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigy-14be05.png" + "then": "https://data.mapcomplete.org/nsi//logos/bigy-14be05.png" }, { "if": { @@ -198049,7 +198318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bilka-072052.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bilka-072052.jpg" }, { "if": { @@ -198064,7 +198333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/billa-3380c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/billa-3380c4.png" }, { "if": { @@ -198079,7 +198348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/billa-8e6809.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/billa-8e6809.jpg" }, { "if": { @@ -198094,7 +198363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/billaplus-1eef1d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/billaplus-1eef1d.svg" }, { "if": { @@ -198109,7 +198378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bim-8af1d3.png" + "then": "https://data.mapcomplete.org/nsi//logos/bim-8af1d3.png" }, { "if": { @@ -198125,7 +198394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bininn-5dc426.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bininn-5dc426.jpg" }, { "if": { @@ -198140,7 +198409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bingo-f320a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/bingo-f320a3.png" }, { "if": { @@ -198155,7 +198424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biocbon-c08337.svg" + "then": "https://data.mapcomplete.org/nsi//logos/biocbon-c08337.svg" }, { "if": { @@ -198171,7 +198440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biocompany-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/biocompany-0a839e.png" }, { "if": { @@ -198186,7 +198455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bioplanet-f276cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bioplanet-f276cb.jpg" }, { "if": { @@ -198201,7 +198470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biocoop-c16b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biocoop-c16b1c.jpg" }, { "if": { @@ -198216,7 +198485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biomonde-c16b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biomonde-c16b1c.jpg" }, { "if": { @@ -198231,7 +198500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bm-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bm-0513f1.jpg" }, { "if": { @@ -198246,7 +198515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodegaaurrera-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodegaaurrera-9b2dfb.jpg" }, { "if": { @@ -198261,7 +198530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonarea-774072.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonarea-774072.jpg" }, { "if": { @@ -198276,7 +198545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boni-5811b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boni-5811b5.jpg" }, { "if": { @@ -198291,7 +198560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonpreu-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/bonpreu-0513f1.png" }, { "if": { @@ -198306,7 +198575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonus-eba859.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonus-eba859.jpg" }, { "if": { @@ -198321,7 +198590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boonsmarkt-5811b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/boonsmarkt-5811b5.png" }, { "if": { @@ -198336,7 +198605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/booths-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/booths-a8278b.jpg" }, { "if": { @@ -198351,7 +198620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boxer-a11024.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boxer-a11024.jpg" }, { "if": { @@ -198366,7 +198635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bravo-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bravo-dde59d.png" }, { "if": { @@ -198381,7 +198650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brookshirebrothers-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brookshirebrothers-dde59d.jpg" }, { "if": { @@ -198396,7 +198665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brookshires-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/brookshires-dde59d.png" }, { "if": { @@ -198411,7 +198680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budgens-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budgens-a8278b.jpg" }, { "if": { @@ -198426,7 +198695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bulkbarn-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bulkbarn-76454b.jpg" }, { "if": { @@ -198441,7 +198710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bunnpris-ed9dd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bunnpris-ed9dd5.jpg" }, { "if": { @@ -198456,7 +198725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buteramarket-5ca8e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buteramarket-5ca8e2.jpg" }, { "if": { @@ -198471,7 +198740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctown-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ctown-dde59d.jpg" }, { "if": { @@ -198488,7 +198757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctysuper-04b79e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ctysuper-04b79e.jpg" }, { "if": { @@ -198503,7 +198772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cactus-a0478c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cactus-a0478c.jpg" }, { "if": { @@ -198518,7 +198787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capmarkt-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capmarkt-0a839e.jpg" }, { "if": { @@ -198533,7 +198802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caprabo-774072.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caprabo-774072.jpg" }, { "if": { @@ -198549,7 +198818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cardenas-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cardenas-dde59d.jpg" }, { "if": { @@ -198564,7 +198833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cargillsfoodcity-8ce434.png" + "then": "https://data.mapcomplete.org/nsi//logos/cargillsfoodcity-8ce434.png" }, { "if": { @@ -198579,7 +198848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-2679f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-2679f0.png" }, { "if": { @@ -198594,7 +198863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefourcity-3f7afe.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefourcity-3f7afe.png" }, { "if": { @@ -198609,7 +198878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefoursa-5b5772.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carrefoursa-5b5772.jpg" }, { "if": { @@ -198624,7 +198893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carulla-271a34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carulla-271a34.jpg" }, { "if": { @@ -198639,7 +198908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casino-c16b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casino-c16b1c.jpg" }, { "if": { @@ -198659,7 +198928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cba-56b425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cba-56b425.jpg" }, { "if": { @@ -198679,7 +198948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cbabolero-56b425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cbabolero-56b425.jpg" }, { "if": { @@ -198699,7 +198968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cbaklasiko-56b425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cbaklasiko-56b425.jpg" }, { "if": { @@ -198718,7 +198987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cbakome-56b425.png" + "then": "https://data.mapcomplete.org/nsi//logos/cbakome-56b425.png" }, { "if": { @@ -198734,7 +199003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celeiro-a14fce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celeiro-a14fce.jpg" }, { "if": { @@ -198749,7 +199018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centra-b7087f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centra-b7087f.jpg" }, { "if": { @@ -198766,7 +199035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecooperativefood-a8278b.png" + "then": "https://data.mapcomplete.org/nsi//logos/thecooperativefood-a8278b.png" }, { "if": { @@ -198781,7 +199050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centrecommercialeleclerc-f962b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centrecommercialeleclerc-f962b8.jpg" }, { "if": { @@ -198796,7 +199065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cermakfreshmarket-5ca8e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cermakfreshmarket-5ca8e2.jpg" }, { "if": { @@ -198811,7 +199080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charter-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/charter-0513f1.jpg" }, { "if": { @@ -198826,7 +199095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chatapolska-9e6a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chatapolska-9e6a6c.jpg" }, { "if": { @@ -198841,7 +199110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/checkers-a0d53f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/checkers-a0d53f.jpg" }, { "if": { @@ -198856,7 +199125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/checkershyper-f9f648.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/checkershyper-f9f648.jpg" }, { "if": { @@ -198871,7 +199140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chedraui-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chedraui-9b2dfb.jpg" }, { "if": { @@ -198886,7 +199155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/choppies-8c44d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/choppies-8c44d4.jpg" }, { "if": { @@ -198901,7 +199170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citygross-c57afb.png" + "then": "https://data.mapcomplete.org/nsi//logos/citygross-c57afb.png" }, { "if": { @@ -198916,7 +199185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citymarket-986a24.png" + "then": "https://data.mapcomplete.org/nsi//logos/citymarket-986a24.png" }, { "if": { @@ -198931,7 +199200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-76454b.jpg" }, { "if": { @@ -198946,7 +199215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopfood-a8278b.png" + "then": "https://data.mapcomplete.org/nsi//logos/coopfood-a8278b.png" }, { "if": { @@ -198963,7 +199232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooperativegrandmarche-a048a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooperativegrandmarche-a048a6.jpg" }, { "if": { @@ -198978,7 +199247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coaliment-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/coaliment-0513f1.png" }, { "if": { @@ -198993,7 +199262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coccinelleexpress-94a8a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/coccinelleexpress-94a8a9.png" }, { "if": { @@ -199008,7 +199277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coccinellesupermarche-94a8a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/coccinellesupermarche-94a8a9.png" }, { "if": { @@ -199025,7 +199294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coles-c254c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/coles-c254c9.png" }, { "if": { @@ -199042,7 +199311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colescentral-c254c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/colescentral-c254c9.png" }, { "if": { @@ -199057,7 +199326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colruyt-27c1df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colruyt-27c1df.jpg" }, { "if": { @@ -199072,7 +199341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/combi-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/combi-0a839e.png" }, { "if": { @@ -199087,7 +199356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comercialmexicana-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comercialmexicana-9b2dfb.jpg" }, { "if": { @@ -199102,7 +199371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conad-06d4eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/conad-06d4eb.png" }, { "if": { @@ -199117,7 +199386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/condis-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/condis-0513f1.png" }, { "if": { @@ -199132,7 +199401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consum-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/consum-0513f1.png" }, { "if": { @@ -199147,7 +199416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/continente-a14fce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/continente-a14fce.jpg" }, { "if": { @@ -199162,7 +199431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/continentebomdia-a14fce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/continentebomdia-a14fce.jpg" }, { "if": { @@ -199177,7 +199446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/continentemodelo-a14fce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/continentemodelo-a14fce.jpg" }, { "if": { @@ -199192,7 +199461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-8e6809.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-8e6809.jpg" }, { "if": { @@ -199207,7 +199476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-0cb133.png" }, { "if": { @@ -199222,7 +199491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-5811b5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-5811b5.svg" }, { "if": { @@ -199237,7 +199506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-36e991.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-36e991.png" }, { "if": { @@ -199252,7 +199521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-c57afb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-c57afb.svg" }, { "if": { @@ -199267,7 +199536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-e21b3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-e21b3b.jpg" }, { "if": { @@ -199282,7 +199551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopjednota-4ccde8.png" + "then": "https://data.mapcomplete.org/nsi//logos/coopjednota-4ccde8.png" }, { "if": { @@ -199296,7 +199565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopmarked-ed9dd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopmarked-ed9dd5.jpg" }, { "if": { @@ -199311,7 +199580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopmega-ed9dd5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/coopmega-ed9dd5.svg" }, { "if": { @@ -199326,7 +199595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopprix-ed9dd5.png" + "then": "https://data.mapcomplete.org/nsi//logos/coopprix-ed9dd5.png" }, { "if": { @@ -199341,7 +199610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopszuper-478515.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopszuper-478515.jpg" }, { "if": { @@ -199356,7 +199625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopterno-8e6809.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopterno-8e6809.jpg" }, { "if": { @@ -199371,7 +199640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooptip-8e6809.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooptip-8e6809.jpg" }, { "if": { @@ -199386,7 +199655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooptuty-8e6809.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooptuty-8e6809.jpg" }, { "if": { @@ -199401,7 +199670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopvandaag-5811b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/coopvandaag-5811b5.png" }, { "if": { @@ -199416,7 +199685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopfi-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/coopfi-0cb133.png" }, { "if": { @@ -199431,7 +199700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopcompact-5811b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopcompact-5811b5.jpg" }, { "if": { @@ -199446,7 +199715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooperativaobrera-0d2b84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooperativaobrera-0d2b84.jpg" }, { "if": { @@ -199461,7 +199730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cora-ea1ce5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cora-ea1ce5.svg" }, { "if": { @@ -199476,7 +199745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcutter-986a24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/costcutter-986a24.jpg" }, { "if": { @@ -199492,7 +199761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cotenature-94a8a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cotenature-94a8a9.jpg" }, { "if": { @@ -199507,7 +199776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coto-0d2b84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coto-0d2b84.jpg" }, { "if": { @@ -199522,7 +199791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countdown-5dc426.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/countdown-5dc426.jpg" }, { "if": { @@ -199539,7 +199808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coviran-d9bffc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coviran-d9bffc.jpg" }, { "if": { @@ -199554,7 +199823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crai-d52198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crai-d52198.jpg" }, { "if": { @@ -199569,7 +199838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cubfoods-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/cubfoods-dde59d.png" }, { "if": { @@ -199584,7 +199853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dagostino-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dagostino-dde59d.jpg" }, { "if": { @@ -199599,7 +199868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dandwfreshmarket-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dandwfreshmarket-dde59d.jpg" }, { "if": { @@ -199614,7 +199883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d1-271a34.svg" + "then": "https://data.mapcomplete.org/nsi//logos/d1-271a34.svg" }, { "if": { @@ -199629,7 +199898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dagwinkel-5811b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dagwinkel-5811b5.jpg" }, { "if": { @@ -199644,7 +199913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deco-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/deco-0cb133.png" }, { "if": { @@ -199659,7 +199928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deen-5811b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deen-5811b5.jpg" }, { "if": { @@ -199674,7 +199943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dekamarkt-5811b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/dekamarkt-5811b5.png" }, { "if": { @@ -199689,7 +199958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delhaize-f276cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/delhaize-f276cb.png" }, { "if": { @@ -199704,7 +199973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denner-704edb.png" + "then": "https://data.mapcomplete.org/nsi//logos/denner-704edb.png" }, { "if": { @@ -199722,7 +199991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dennsbiomarkt-6367d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/dennsbiomarkt-6367d0.png" }, { "if": { @@ -199737,7 +200006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/despar-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/despar-0cb133.jpg" }, { "if": { @@ -199752,7 +200021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/despensafamiliar-4ef027.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/despensafamiliar-4ef027.jpg" }, { "if": { @@ -199767,7 +200036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dia-675159.png" + "then": "https://data.mapcomplete.org/nsi//logos/dia-675159.png" }, { "if": { @@ -199782,7 +200051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diamarket-986a24.png" + "then": "https://data.mapcomplete.org/nsi//logos/diamarket-986a24.png" }, { "if": { @@ -199797,7 +200066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dialprix-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dialprix-0513f1.jpg" }, { "if": { @@ -199812,7 +200081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dierbergs-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/dierbergs-dde59d.png" }, { "if": { @@ -199827,7 +200096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dillons-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/dillons-dde59d.png" }, { "if": { @@ -199842,7 +200111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dino-9e6a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dino-9e6a6c.jpg" }, { "if": { @@ -199858,7 +200127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dirk-5811b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/dirk-5811b5.png" }, { "if": { @@ -199873,7 +200142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/disco-0d2b84.png" + "then": "https://data.mapcomplete.org/nsi//logos/disco-0d2b84.png" }, { "if": { @@ -199888,7 +200157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/disco-f37fd6.png" + "then": "https://data.mapcomplete.org/nsi//logos/disco-f37fd6.png" }, { "if": { @@ -199903,7 +200172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diska-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diska-0a839e.jpg" }, { "if": { @@ -199918,7 +200187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dmart-9ef8f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dmart-9ef8f9.jpg" }, { "if": { @@ -199933,7 +200202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollargeneralmarket-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dollargeneralmarket-dde59d.jpg" }, { "if": { @@ -199949,7 +200218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dornseifersfrischemarkt-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/dornseifersfrischemarkt-0a839e.png" }, { "if": { @@ -199964,7 +200233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpiu-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dpiu-0cb133.jpg" }, { "if": { @@ -199979,7 +200248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drakes-c254c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drakes-c254c9.jpg" }, { "if": { @@ -199994,7 +200263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunnesstores-b7087f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunnesstores-b7087f.jpg" }, { "if": { @@ -200009,7 +200278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecenter-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ecenter-0a839e.png" }, { "if": { @@ -200028,7 +200297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emart-12b833.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emart-12b833.jpg" }, { "if": { @@ -200043,7 +200312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclerc-111b05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclerc-111b05.jpg" }, { "if": { @@ -200058,7 +200327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclercexpress-c16b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclercexpress-c16b1c.jpg" }, { "if": { @@ -200075,7 +200344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastofenglandcoop-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastofenglandcoop-a8278b.jpg" }, { "if": { @@ -200090,7 +200359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eataly-986a24.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eataly-986a24.svg" }, { "if": { @@ -200106,7 +200375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eblnaturkost-f97a5b.png" + "then": "https://data.mapcomplete.org/nsi//logos/eblnaturkost-f97a5b.png" }, { "if": { @@ -200121,7 +200390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/econofoods-f9f648.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/econofoods-f9f648.jpg" }, { "if": { @@ -200140,7 +200409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/econsave-80e9ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/econsave-80e9ee.png" }, { "if": { @@ -200155,7 +200424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edeka-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/edeka-0a839e.png" }, { "if": { @@ -200170,7 +200439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edekaaktivmarkt-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/edekaaktivmarkt-0a839e.png" }, { "if": { @@ -200185,7 +200454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edekaxpress-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/edekaxpress-0a839e.png" }, { "if": { @@ -200200,7 +200469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekom-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/ekom-0cb133.png" }, { "if": { @@ -200215,7 +200484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekono-d25066.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ekono-d25066.svg" }, { "if": { @@ -200230,7 +200499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekoplaza-1cf55d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekoplaza-1cf55d.jpg" }, { "if": { @@ -200245,7 +200514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eljamon-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eljamon-0513f1.jpg" }, { "if": { @@ -200260,7 +200529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elsuper-b82f18.png" + "then": "https://data.mapcomplete.org/nsi//logos/elsuper-b82f18.png" }, { "if": { @@ -200275,7 +200544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elli-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/elli-0a839e.png" }, { "if": { @@ -200290,7 +200559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elvi-858077.png" + "then": "https://data.mapcomplete.org/nsi//logos/elvi-858077.png" }, { "if": { @@ -200305,7 +200574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emte-5811b5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/emte-5811b5.svg" }, { "if": { @@ -200320,7 +200589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erewhon-097dbf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erewhon-097dbf.jpg" }, { "if": { @@ -200335,7 +200604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eroski-9c34f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/eroski-9c34f5.png" }, { "if": { @@ -200350,7 +200619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eroskicity-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/eroskicity-0513f1.png" }, { "if": { @@ -200365,7 +200634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esselunga-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esselunga-0cb133.jpg" }, { "if": { @@ -200381,7 +200650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etsan-1eef1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etsan-1eef1d.jpg" }, { "if": { @@ -200396,7 +200665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurospar-4b5e11.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eurospar-4b5e11.svg" }, { "if": { @@ -200411,7 +200680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurospin-8a5880.png" + "then": "https://data.mapcomplete.org/nsi//logos/eurospin-8a5880.png" }, { "if": { @@ -200426,7 +200695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ever-49e134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ever-49e134.jpg" }, { "if": { @@ -200441,7 +200710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/extra-ed9dd5.png" + "then": "https://data.mapcomplete.org/nsi//logos/extra-ed9dd5.png" }, { "if": { @@ -200456,7 +200725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fakta-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/fakta-0a839e.png" }, { "if": { @@ -200471,7 +200740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/famila-5d2816.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/famila-5d2816.jpg" }, { "if": { @@ -200486,7 +200755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familyfare-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/familyfare-dde59d.jpg" }, { "if": { @@ -200501,7 +200770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fareway-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fareway-dde59d.jpg" }, { "if": { @@ -200516,7 +200785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmboy-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/farmboy-76454b.jpg" }, { "if": { @@ -200531,7 +200800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/feneberg-6367d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/feneberg-6367d0.png" }, { "if": { @@ -200546,7 +200815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiestamart-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiestamart-dde59d.jpg" }, { "if": { @@ -200561,7 +200830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/food4less-f69edf.png" + "then": "https://data.mapcomplete.org/nsi//logos/food4less-f69edf.png" }, { "if": { @@ -200576,7 +200845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodbasics-986a24.png" + "then": "https://data.mapcomplete.org/nsi//logos/foodbasics-986a24.png" }, { "if": { @@ -200591,7 +200860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodcity-48e71b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodcity-48e71b.jpg" }, { "if": { @@ -200606,7 +200875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodcity-82ed7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodcity-82ed7a.jpg" }, { "if": { @@ -200621,7 +200890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodlion-7818a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodlion-7818a5.jpg" }, { "if": { @@ -200636,7 +200905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodloversmarket-a0d53f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodloversmarket-a0d53f.jpg" }, { "if": { @@ -200651,7 +200920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodland-c254c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodland-c254c9.jpg" }, { "if": { @@ -200666,7 +200935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodland-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodland-76454b.jpg" }, { "if": { @@ -200681,7 +200950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodland-34b4ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodland-34b4ac.jpg" }, { "if": { @@ -200696,7 +200965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodmaxx-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodmaxx-dde59d.jpg" }, { "if": { @@ -200711,7 +200980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodsco-097dbf.png" + "then": "https://data.mapcomplete.org/nsi//logos/foodsco-097dbf.png" }, { "if": { @@ -200726,7 +200995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodtown-3ea0d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodtown-3ea0d2.jpg" }, { "if": { @@ -200741,7 +201010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodworks-c254c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodworks-c254c9.jpg" }, { "if": { @@ -200756,7 +201025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortinos-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortinos-76454b.jpg" }, { "if": { @@ -200771,7 +201040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fotex-072052.png" + "then": "https://data.mapcomplete.org/nsi//logos/fotex-072052.png" }, { "if": { @@ -200786,7 +201055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foursquare-5dc426.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foursquare-5dc426.jpg" }, { "if": { @@ -200801,7 +201070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frac-9e6a6c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/frac-9e6a6c.svg" }, { "if": { @@ -200816,7 +201085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredmeyer-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/fredmeyer-dde59d.png" }, { "if": { @@ -200831,7 +201100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fresh-94a8a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fresh-94a8a9.jpg" }, { "if": { @@ -200846,7 +201115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshplus-4ccde8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshplus-4ccde8.jpg" }, { "if": { @@ -200861,7 +201130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshthyme-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshthyme-dde59d.jpg" }, { "if": { @@ -200876,7 +201145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshchoice-5dc426.png" + "then": "https://data.mapcomplete.org/nsi//logos/freshchoice-5dc426.png" }, { "if": { @@ -200891,7 +201160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshco-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshco-76454b.jpg" }, { "if": { @@ -200906,7 +201175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/froiz-d9bffc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/froiz-d9bffc.jpg" }, { "if": { @@ -200921,7 +201190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frysfoodanddrug-dde59d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/frysfoodanddrug-dde59d.svg" }, { "if": { @@ -200936,7 +201205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frysmarketplace-dde59d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/frysmarketplace-dde59d.svg" }, { "if": { @@ -200951,7 +201220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/g20-94a8a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/g20-94a8a9.jpg" }, { "if": { @@ -200966,7 +201235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gadis-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/gadis-0513f1.png" }, { "if": { @@ -200981,7 +201250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/game-910aca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/game-910aca.jpg" }, { "if": { @@ -200996,7 +201265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gbarbosa-20f2a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gbarbosa-20f2a8.jpg" }, { "if": { @@ -201011,7 +201280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geantcasino-ca0ec4.png" + "then": "https://data.mapcomplete.org/nsi//logos/geantcasino-ca0ec4.png" }, { "if": { @@ -201026,7 +201295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gelsons-097dbf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gelsons-097dbf.svg" }, { "if": { @@ -201041,23 +201310,23 @@ } ] }, - "then": "./assets/data/nsi/logos/giant-22a674.png" + "then": "https://data.mapcomplete.org/nsi//logos/giant-22a674.png" }, { "if": { "and": [ - "official_name=Giant Food", "shop=supermarket", { "or": [ "brand=Giant", "brand:wikidata=Q5558336", - "name=Giant" + "name=Giant", + "official_name=Giant Food" ] } ] }, - "then": "./assets/data/nsi/logos/giant-fc203b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giant-fc203b.jpg" }, { "if": { @@ -201072,7 +201341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gianteagle-dca8d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gianteagle-dca8d8.jpg" }, { "if": { @@ -201087,7 +201356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gianthypermarket-e1160b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gianthypermarket-e1160b.jpg" }, { "if": { @@ -201102,7 +201371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globus-2d7d3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globus-2d7d3f.jpg" }, { "if": { @@ -201117,7 +201386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goasia-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goasia-0a839e.jpg" }, { "if": { @@ -201132,7 +201401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gordonfoodservice-166dbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gordonfoodservice-166dbe.jpg" }, { "if": { @@ -201147,23 +201416,23 @@ } ] }, - "then": "./assets/data/nsi/logos/grandfrais-94a8a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/grandfrais-94a8a9.png" }, { "if": { "and": [ - "official_name=Grocery Outlet Bargain Market", "shop=supermarket", { "or": [ "brand=Grocery Outlet", "brand:wikidata=Q5609934", - "name=Grocery Outlet" + "name=Grocery Outlet", + "official_name=Grocery Outlet Bargain Market" ] } ] }, - "then": "./assets/data/nsi/logos/groceryoutlet-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/groceryoutlet-dde59d.png" }, { "if": { @@ -201178,7 +201447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groszek-9e6a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/groszek-9e6a6c.png" }, { "if": { @@ -201193,7 +201462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulliver-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gulliver-0cb133.jpg" }, { "if": { @@ -201214,7 +201483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hmart-90050a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hmart-90050a.jpg" }, { "if": { @@ -201229,7 +201498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heb-078f5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heb-078f5a.jpg" }, { "if": { @@ -201244,7 +201513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hebplus-078f5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hebplus-078f5a.jpg" }, { "if": { @@ -201259,7 +201528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hakmar-5b5772.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hakmar-5b5772.jpg" }, { "if": { @@ -201274,7 +201543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hakmarexpress-5b5772.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hakmarexpress-5b5772.jpg" }, { "if": { @@ -201289,7 +201558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halpahalli-c9c76a.png" + "then": "https://data.mapcomplete.org/nsi//logos/halpahalli-c9c76a.png" }, { "if": { @@ -201304,7 +201573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hannaford-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hannaford-dde59d.jpg" }, { "if": { @@ -201319,7 +201588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harps-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harps-dde59d.jpg" }, { "if": { @@ -201334,7 +201603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harrisfarmmarkets-c254c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harrisfarmmarkets-c254c9.jpg" }, { "if": { @@ -201349,7 +201618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harristeeter-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harristeeter-dde59d.jpg" }, { "if": { @@ -201364,7 +201633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hemkop-c57afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hemkop-c57afb.jpg" }, { "if": { @@ -201379,7 +201648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/herkulesecenter-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/herkulesecenter-0a839e.png" }, { "if": { @@ -201394,7 +201663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/herosupermarket-9b33de.svg" + "then": "https://data.mapcomplete.org/nsi//logos/herosupermarket-9b33de.svg" }, { "if": { @@ -201409,7 +201678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heronfoods-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heronfoods-a8278b.jpg" }, { "if": { @@ -201424,7 +201693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hipercor-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hipercor-0513f1.jpg" }, { "if": { @@ -201440,7 +201709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hiperdino-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hiperdino-0513f1.jpg" }, { "if": { @@ -201455,7 +201724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hipermaxi-cbfbb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hipermaxi-cbfbb4.jpg" }, { "if": { @@ -201470,7 +201739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hit-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/hit-0a839e.png" }, { "if": { @@ -201487,7 +201756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hitmax-56b425.png" + "then": "https://data.mapcomplete.org/nsi//logos/hitmax-56b425.png" }, { "if": { @@ -201503,7 +201772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hmarket-3f7afe.png" + "then": "https://data.mapcomplete.org/nsi//logos/hmarket-3f7afe.png" }, { "if": { @@ -201518,7 +201787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hofer-83285c.png" + "then": "https://data.mapcomplete.org/nsi//logos/hofer-83285c.png" }, { "if": { @@ -201533,7 +201802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoogvliet-5811b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/hoogvliet-5811b5.png" }, { "if": { @@ -201548,7 +201817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hruska-8e6809.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hruska-8e6809.jpg" }, { "if": { @@ -201563,7 +201832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyvee-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyvee-dde59d.jpg" }, { "if": { @@ -201578,7 +201847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyperu-c16b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyperu-c16b1c.jpg" }, { "if": { @@ -201594,7 +201863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hypercacher-94a8a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hypercacher-94a8a9.jpg" }, { "if": { @@ -201609,7 +201878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icnorte-cbfbb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/icnorte-cbfbb4.jpg" }, { "if": { @@ -201624,7 +201893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icakvantum-c57afb.png" + "then": "https://data.mapcomplete.org/nsi//logos/icakvantum-c57afb.png" }, { "if": { @@ -201639,7 +201908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icanara-c57afb.png" + "then": "https://data.mapcomplete.org/nsi//logos/icanara-c57afb.png" }, { "if": { @@ -201654,7 +201923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icasupermarket-c57afb.png" + "then": "https://data.mapcomplete.org/nsi//logos/icasupermarket-c57afb.png" }, { "if": { @@ -201669,7 +201938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idea-7f1f6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/idea-7f1f6d.png" }, { "if": { @@ -201684,7 +201953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idealfoodbasket-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idealfoodbasket-dde59d.jpg" }, { "if": { @@ -201699,7 +201968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iga-166dbe.png" + "then": "https://data.mapcomplete.org/nsi//logos/iga-166dbe.png" }, { "if": { @@ -201714,7 +201983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iga-c254c9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/iga-c254c9.svg" }, { "if": { @@ -201730,7 +201999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iki-dfbc25.png" + "then": "https://data.mapcomplete.org/nsi//logos/iki-dfbc25.png" }, { "if": { @@ -201745,7 +202014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/insmercato-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/insmercato-0cb133.jpg" }, { "if": { @@ -201760,7 +202029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ingles-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ingles-dde59d.jpg" }, { "if": { @@ -201775,7 +202044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarche-986a24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarche-986a24.jpg" }, { "if": { @@ -201791,7 +202060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarchedrive-94a8a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarchedrive-94a8a9.jpg" }, { "if": { @@ -201806,7 +202075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarchehyper-94a8a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarchehyper-94a8a9.jpg" }, { "if": { @@ -201821,7 +202090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarchesuper-bc9d37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarchesuper-bc9d37.jpg" }, { "if": { @@ -201836,7 +202105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interspar-268650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/interspar-268650.jpg" }, { "if": { @@ -201851,7 +202120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iper-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/iper-0cb133.png" }, { "if": { @@ -201866,7 +202135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iperal-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iperal-0cb133.jpg" }, { "if": { @@ -201881,7 +202150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipercoop-0cb133.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ipercoop-0cb133.svg" }, { "if": { @@ -201896,7 +202165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/italmark-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/italmark-0cb133.png" }, { "if": { @@ -201911,7 +202180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/janlinders-5811b5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/janlinders-5811b5.svg" }, { "if": { @@ -201926,7 +202195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jewelosco-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jewelosco-dde59d.jpg" }, { "if": { @@ -201941,7 +202210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joker-ed9dd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joker-ed9dd5.jpg" }, { "if": { @@ -201956,7 +202225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jumbo-99a0d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/jumbo-99a0d7.png" }, { "if": { @@ -201971,7 +202240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jumbo-1cf55d.png" + "then": "https://data.mapcomplete.org/nsi//logos/jumbo-1cf55d.png" }, { "if": { @@ -201986,7 +202255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kcitymarket-46d3b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kcitymarket-46d3b7.jpg" }, { "if": { @@ -202001,7 +202270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ksupermarket-46d3b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ksupermarket-46d3b7.jpg" }, { "if": { @@ -202016,7 +202285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kk-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kk-0a839e.jpg" }, { "if": { @@ -202033,7 +202302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaufland-56b425.png" + "then": "https://data.mapcomplete.org/nsi//logos/kaufland-56b425.png" }, { "if": { @@ -202048,7 +202317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ketal-cbfbb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ketal-cbfbb4.jpg" }, { "if": { @@ -202063,7 +202332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keyfood-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keyfood-dde59d.jpg" }, { "if": { @@ -202082,7 +202351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kflsupermarkets-c254c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kflsupermarkets-c254c9.jpg" }, { "if": { @@ -202097,7 +202366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingsoopers-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/kingsoopers-dde59d.png" }, { "if": { @@ -202112,7 +202381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingsoopersmarketplace-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/kingsoopersmarketplace-dde59d.png" }, { "if": { @@ -202127,7 +202396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kings-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kings-dde59d.jpg" }, { "if": { @@ -202142,7 +202411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiwi-ed9dd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiwi-ed9dd5.jpg" }, { "if": { @@ -202157,7 +202426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klas-4ccde8.png" + "then": "https://data.mapcomplete.org/nsi//logos/klas-4ccde8.png" }, { "if": { @@ -202172,7 +202441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/konsum-c00dcd.png" + "then": "https://data.mapcomplete.org/nsi//logos/konsum-c00dcd.png" }, { "if": { @@ -202187,7 +202456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/konsumleipzig-1d068e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/konsumleipzig-1d068e.jpg" }, { "if": { @@ -202202,7 +202471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/konzum-0956c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/konzum-0956c9.png" }, { "if": { @@ -202217,7 +202486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/korzinka-c068bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/korzinka-c068bf.jpg" }, { "if": { @@ -202232,7 +202501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kroger-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/kroger-dde59d.png" }, { "if": { @@ -202247,7 +202516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krogermarketplace-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/krogermarketplace-dde59d.png" }, { "if": { @@ -202262,7 +202531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kronan-0c58a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kronan-0c58a2.jpg" }, { "if": { @@ -202277,7 +202546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ktasuperstores-34b4ac.png" + "then": "https://data.mapcomplete.org/nsi//logos/ktasuperstores-34b4ac.png" }, { "if": { @@ -202292,7 +202561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kupsch-0a839e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kupsch-0a839e.svg" }, { "if": { @@ -202307,7 +202576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leauvive-c16b1c.png" + "then": "https://data.mapcomplete.org/nsi//logos/leauvive-c16b1c.png" }, { "if": { @@ -202322,7 +202591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laanonima-0d2b84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laanonima-0d2b84.jpg" }, { "if": { @@ -202337,7 +202606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacomer-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacomer-9b2dfb.jpg" }, { "if": { @@ -202354,7 +202623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamichoacanameatmarket-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamichoacanameatmarket-dde59d.jpg" }, { "if": { @@ -202369,7 +202638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laplazadedia-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/laplazadedia-0513f1.png" }, { "if": { @@ -202385,7 +202654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lavieclaire-c16b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lavieclaire-c16b1c.jpg" }, { "if": { @@ -202401,7 +202670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lescomptoirsdelabio-c16b1c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lescomptoirsdelabio-c16b1c.png" }, { "if": { @@ -202416,7 +202685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lewiatan-9e6a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lewiatan-9e6a6c.jpg" }, { "if": { @@ -202431,7 +202700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lider-d25066.png" + "then": "https://data.mapcomplete.org/nsi//logos/lider-d25066.png" }, { "if": { @@ -202446,7 +202715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liderexpress-d25066.png" + "then": "https://data.mapcomplete.org/nsi//logos/liderexpress-d25066.png" }, { "if": { @@ -202461,7 +202730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidl-5866c3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lidl-5866c3.svg" }, { "if": { @@ -202476,7 +202745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnshirecoop-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnshirecoop-a8278b.jpg" }, { "if": { @@ -202491,7 +202760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linella-cb8836.png" + "then": "https://data.mapcomplete.org/nsi//logos/linella-cb8836.png" }, { "if": { @@ -202506,7 +202775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loblaws-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loblaws-76454b.jpg" }, { "if": { @@ -202521,7 +202790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londis-23ec32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londis-23ec32.jpg" }, { "if": { @@ -202536,7 +202805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londis-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londis-a8278b.jpg" }, { "if": { @@ -202552,7 +202821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longdan-cc4ffc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longdan-cc4ffc.jpg" }, { "if": { @@ -202567,7 +202836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longos-388e9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longos-388e9d.jpg" }, { "if": { @@ -202582,7 +202851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lottemart-1fa952.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lottemart-1fa952.jpg" }, { "if": { @@ -202602,7 +202871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotuss-a5f134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotuss-a5f134.jpg" }, { "if": { @@ -202618,7 +202887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lotussgofresh-a5f134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lotussgofresh-a5f134.jpg" }, { "if": { @@ -202633,7 +202902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowesfoods-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lowesfoods-dde59d.jpg" }, { "if": { @@ -202649,7 +202918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lpgbiomarkt-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lpgbiomarkt-0a839e.jpg" }, { "if": { @@ -202664,7 +202933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lucky-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lucky-dde59d.jpg" }, { "if": { @@ -202679,7 +202948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luluhypermarket-7e55ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luluhypermarket-7e55ed.jpg" }, { "if": { @@ -202694,7 +202963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lupa-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/lupa-0513f1.png" }, { "if": { @@ -202710,7 +202979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandsfood-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandsfood-a8278b.jpg" }, { "if": { @@ -202726,7 +202995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandsfoodhall-986a24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandsfoodhall-986a24.jpg" }, { "if": { @@ -202742,7 +203011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandssimplyfood-986a24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandssimplyfood-986a24.jpg" }, { "if": { @@ -202757,7 +203026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magnit-230709.svg" + "then": "https://data.mapcomplete.org/nsi//logos/magnit-230709.svg" }, { "if": { @@ -202773,7 +203042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marianosfreshmarket-5ca8e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marianosfreshmarket-5ca8e2.jpg" }, { "if": { @@ -202788,7 +203057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marjane-dc016e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marjane-dc016e.jpg" }, { "if": { @@ -202803,7 +203072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/markant-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/markant-0a839e.png" }, { "if": { @@ -202818,7 +203087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marketbasket-986a24.png" + "then": "https://data.mapcomplete.org/nsi//logos/marketbasket-986a24.png" }, { "if": { @@ -202833,7 +203102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marketofchoice-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marketofchoice-dde59d.jpg" }, { "if": { @@ -202850,7 +203119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marketplace-745f9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marketplace-745f9c.jpg" }, { "if": { @@ -202867,7 +203136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marketplacebyjasons-745f9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marketplacebyjasons-745f9c.jpg" }, { "if": { @@ -202882,7 +203151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marketstreet-fa4d34.png" + "then": "https://data.mapcomplete.org/nsi//logos/marketstreet-fa4d34.png" }, { "if": { @@ -202897,7 +203166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marktkauf-0a839e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marktkauf-0a839e.svg" }, { "if": { @@ -202912,7 +203181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martinssupermarkets-aeed86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/martinssupermarkets-aeed86.jpg" }, { "if": { @@ -202927,7 +203196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mas-42dc97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mas-42dc97.jpg" }, { "if": { @@ -202944,7 +203213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/masymas-d9d175.svg" + "then": "https://data.mapcomplete.org/nsi//logos/masymas-d9d175.svg" }, { "if": { @@ -202961,7 +203230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/masymas-cb4ace.svg" + "then": "https://data.mapcomplete.org/nsi//logos/masymas-cb4ace.svg" }, { "if": { @@ -202978,7 +203247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/masymas-2fdfa5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/masymas-2fdfa5.svg" }, { "if": { @@ -202993,7 +203262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/match-ae86a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/match-ae86a1.jpg" }, { "if": { @@ -203007,7 +203276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/matkroken-ed9dd5.png" + "then": "https://data.mapcomplete.org/nsi//logos/matkroken-ed9dd5.png" }, { "if": { @@ -203022,7 +203291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxi-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxi-76454b.jpg" }, { "if": { @@ -203041,7 +203310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxi-b83687.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxi-b83687.jpg" }, { "if": { @@ -203056,7 +203325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxidia-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/maxidia-0513f1.png" }, { "if": { @@ -203072,7 +203341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxiicastormarknad-e39865.png" + "then": "https://data.mapcomplete.org/nsi//logos/maxiicastormarknad-e39865.png" }, { "if": { @@ -203087,7 +203356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maximax-45f6bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maximax-45f6bc.jpg" }, { "if": { @@ -203102,7 +203371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maximaxx-48a198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maximaxx-48a198.jpg" }, { "if": { @@ -203117,7 +203386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maximaxxx-48a198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maximaxxx-48a198.jpg" }, { "if": { @@ -203132,7 +203401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maximarkt-1eef1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/maximarkt-1eef1d.png" }, { "if": { @@ -203147,7 +203416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxvalu-f485f2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/maxvalu-f485f2.svg" }, { "if": { @@ -203162,7 +203431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcd-5811b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/mcd-5811b5.png" }, { "if": { @@ -203177,7 +203446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/md-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/md-0cb133.png" }, { "if": { @@ -203192,7 +203461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megaimage-62a473.png" + "then": "https://data.mapcomplete.org/nsi//logos/megaimage-62a473.png" }, { "if": { @@ -203210,7 +203479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megamaxi-b83687.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megamaxi-b83687.jpg" }, { "if": { @@ -203225,7 +203494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megasoriana-9b2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/megasoriana-9b2dfb.png" }, { "if": { @@ -203248,7 +203517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megadonquijote-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megadonquijote-fe0970.jpg" }, { "if": { @@ -203275,7 +203544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megadonquijoteuny-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megadonquijoteuny-fe0970.jpg" }, { "if": { @@ -203290,7 +203559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mego-858077.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mego-858077.jpg" }, { "if": { @@ -203305,7 +203574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meijer-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meijer-dde59d.jpg" }, { "if": { @@ -203320,7 +203589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meinreal-0a839e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/meinreal-0a839e.svg" }, { "if": { @@ -203335,7 +203604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melcom-bfc6b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/melcom-bfc6b6.jpg" }, { "if": { @@ -203350,7 +203619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meny-2b56aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/meny-2b56aa.png" }, { "if": { @@ -203365,7 +203634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercadoextra-20f2a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercadoextra-20f2a8.jpg" }, { "if": { @@ -203380,7 +203649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercadona-d9bffc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercadona-d9bffc.jpg" }, { "if": { @@ -203395,7 +203664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercator-05bb56.png" + "then": "https://data.mapcomplete.org/nsi//logos/mercator-05bb56.png" }, { "if": { @@ -203410,7 +203679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-42dc97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-42dc97.jpg" }, { "if": { @@ -203425,7 +203694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-7dcd78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-7dcd78.jpg" }, { "if": { @@ -203440,7 +203709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-acfc90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-acfc90.jpg" }, { "if": { @@ -203455,7 +203724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrosupermarket-49e134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metrosupermarket-49e134.jpg" }, { "if": { @@ -203470,7 +203739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meusuper-a14fce.png" + "then": "https://data.mapcomplete.org/nsi//logos/meusuper-a14fce.png" }, { "if": { @@ -203485,7 +203754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mibodegaaurrera-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mibodegaaurrera-9b2dfb.jpg" }, { "if": { @@ -203500,7 +203769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migros-e39709.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/migros-e39709.jpg" }, { "if": { @@ -203515,7 +203784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migros-5b5772.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/migros-5b5772.jpg" }, { "if": { @@ -203530,7 +203799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mila-9e6a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/mila-9e6a6c.png" }, { "if": { @@ -203545,7 +203814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milkagro-4ccde8.png" + "then": "https://data.mapcomplete.org/nsi//logos/milkagro-4ccde8.png" }, { "if": { @@ -203560,7 +203829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minipreco-a14fce.png" + "then": "https://data.mapcomplete.org/nsi//logos/minipreco-a14fce.png" }, { "if": { @@ -203577,7 +203846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mitsuwamarketplace-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mitsuwamarketplace-dde59d.jpg" }, { "if": { @@ -203594,7 +203863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mixmarkt-56b425.png" + "then": "https://data.mapcomplete.org/nsi//logos/mixmarkt-56b425.png" }, { "if": { @@ -203609,7 +203878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mokpol-9e6a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mokpol-9e6a6c.jpg" }, { "if": { @@ -203624,7 +203893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monoprix-2a24ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monoprix-2a24ce.jpg" }, { "if": { @@ -203639,7 +203908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/more-9ef8f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/more-9ef8f9.jpg" }, { "if": { @@ -203654,7 +203923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morrisons-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morrisons-a8278b.jpg" }, { "if": { @@ -203669,7 +203938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mpreis-eeb4e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mpreis-eeb4e5.jpg" }, { "if": { @@ -203684,7 +203953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mydin-80e9ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mydin-80e9ee.jpg" }, { "if": { @@ -203698,7 +203967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naerbutikken-ed9dd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naerbutikken-ed9dd5.jpg" }, { "if": { @@ -203713,7 +203982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nahundgut-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/nahundgut-0a839e.png" }, { "if": { @@ -203728,7 +203997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nahkauf-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nahkauf-0a839e.jpg" }, { "if": { @@ -203743,7 +204012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naivas-d512c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naivas-d512c0.jpg" }, { "if": { @@ -203758,7 +204027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturalgrocers-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturalgrocers-dde59d.jpg" }, { "if": { @@ -203773,7 +204042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturalia-c16b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturalia-c16b1c.jpg" }, { "if": { @@ -203789,7 +204058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturasi-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturasi-0cb133.jpg" }, { "if": { @@ -203804,7 +204073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturesbasket-9ef8f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturesbasket-9ef8f9.jpg" }, { "if": { @@ -203819,7 +204088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netto-0c58a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netto-0c58a2.jpg" }, { "if": { @@ -203834,7 +204103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netto-5dc877.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netto-5dc877.jpg" }, { "if": { @@ -203849,7 +204118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netto-bc67ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netto-bc67ba.jpg" }, { "if": { @@ -203864,7 +204133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nettocity-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/nettocity-0a839e.png" }, { "if": { @@ -203879,7 +204148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nettomarkendiscount-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/nettomarkendiscount-0a839e.png" }, { "if": { @@ -203894,7 +204163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nettorama-5811b5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nettorama-5811b5.svg" }, { "if": { @@ -203909,7 +204178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newseasonsmarket-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newseasonsmarket-dde59d.jpg" }, { "if": { @@ -203924,7 +204193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newworld-5dc426.png" + "then": "https://data.mapcomplete.org/nsi//logos/newworld-5dc426.png" }, { "if": { @@ -203939,7 +204208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nisaextra-a8278b.png" + "then": "https://data.mapcomplete.org/nsi//logos/nisaextra-a8278b.png" }, { "if": { @@ -203954,7 +204223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nofrills-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nofrills-76454b.jpg" }, { "if": { @@ -203969,7 +204238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfaxl-dfbc25.png" + "then": "https://data.mapcomplete.org/nsi//logos/norfaxl-dfbc25.png" }, { "if": { @@ -203984,7 +204253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norma-c1eeeb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/norma-c1eeeb.svg" }, { "if": { @@ -203999,7 +204268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernstore-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernstore-76454b.jpg" }, { "if": { @@ -204014,7 +204283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northgatemarket-097dbf.png" + "then": "https://data.mapcomplete.org/nsi//logos/northgatemarket-097dbf.png" }, { "if": { @@ -204029,7 +204298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novus-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novus-94881c.jpg" }, { "if": { @@ -204044,7 +204313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/np-0a839e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/np-0a839e.svg" }, { "if": { @@ -204059,7 +204328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nsktradecity-80e9ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nsktradecity-80e9ee.jpg" }, { "if": { @@ -204074,7 +204343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntucfairprice-07d9e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ntucfairprice-07d9e1.jpg" }, { "if": { @@ -204089,7 +204358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obs-ed9dd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obs-ed9dd5.jpg" }, { "if": { @@ -204105,7 +204374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odin-5811b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/odin-5811b5.jpg" }, { "if": { @@ -204120,7 +204389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okfoods-6d06e8.png" + "then": "https://data.mapcomplete.org/nsi//logos/okfoods-6d06e8.png" }, { "if": { @@ -204135,7 +204404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okay-9f527a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okay-9f527a.jpg" }, { "if": { @@ -204150,7 +204419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olimpica-271a34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/olimpica-271a34.jpg" }, { "if": { @@ -204167,7 +204436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onurmarket-5b5772.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onurmarket-5b5772.jpg" }, { "if": { @@ -204182,7 +204451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paknsave-5dc426.png" + "then": "https://data.mapcomplete.org/nsi//logos/paknsave-5dc426.png" }, { "if": { @@ -204197,7 +204466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palace-bfc6b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palace-bfc6b6.jpg" }, { "if": { @@ -204212,7 +204481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pali-ff0cfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pali-ff0cfa.jpg" }, { "if": { @@ -204227,7 +204496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paodeacucar-14dbfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paodeacucar-14dbfa.jpg" }, { "if": { @@ -204243,7 +204512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patelbrothers-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/patelbrothers-dde59d.png" }, { "if": { @@ -204258,7 +204527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pavilions-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pavilions-dde59d.jpg" }, { "if": { @@ -204274,7 +204543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pcccommunitymarket-1ee4c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/pcccommunitymarket-1ee4c3.png" }, { "if": { @@ -204289,7 +204558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penny-55dfd6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/penny-55dfd6.svg" }, { "if": { @@ -204304,7 +204573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petesmarket-5ca8e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petesmarket-5ca8e2.jpg" }, { "if": { @@ -204319,7 +204588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picknsave-905e35.png" + "then": "https://data.mapcomplete.org/nsi//logos/picknsave-905e35.png" }, { "if": { @@ -204334,7 +204603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picknpay-978c99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/picknpay-978c99.jpg" }, { "if": { @@ -204349,7 +204618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picknpayhyper-f9f648.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/picknpayhyper-f9f648.jpg" }, { "if": { @@ -204364,7 +204633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pigglywiggly-ebd18b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pigglywiggly-ebd18b.jpg" }, { "if": { @@ -204379,7 +204648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pingodoce-a14fce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pingodoce-a14fce.jpg" }, { "if": { @@ -204395,7 +204664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/planetorganic-f2cb37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/planetorganic-f2cb37.jpg" }, { "if": { @@ -204410,7 +204679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plazavea-acfc90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plazavea-acfc90.jpg" }, { "if": { @@ -204425,7 +204694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plodine-f279a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/plodine-f279a1.png" }, { "if": { @@ -204440,7 +204709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plus-5811b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/plus-5811b5.png" }, { "if": { @@ -204455,7 +204724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plusfresc-774072.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plusfresc-774072.jpg" }, { "if": { @@ -204470,7 +204739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poiesz-5811b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poiesz-5811b5.jpg" }, { "if": { @@ -204485,7 +204754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polomarket-9e6a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/polomarket-9e6a6c.png" }, { "if": { @@ -204500,7 +204769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pricechopper-8741a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pricechopper-8741a7.jpg" }, { "if": { @@ -204515,7 +204784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pricechopper-7d1b36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pricechopper-7d1b36.jpg" }, { "if": { @@ -204530,7 +204799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pricerite-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pricerite-dde59d.jpg" }, { "if": { @@ -204545,7 +204814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primaprix-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primaprix-0513f1.jpg" }, { "if": { @@ -204560,7 +204829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prisma-c9c76a.png" + "then": "https://data.mapcomplete.org/nsi//logos/prisma-c9c76a.png" }, { "if": { @@ -204575,7 +204844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/privatmax-478515.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/privatmax-478515.jpg" }, { "if": { @@ -204590,7 +204859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prix-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prix-0cb133.jpg" }, { "if": { @@ -204605,7 +204874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/profi-8721fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/profi-8721fd.jpg" }, { "if": { @@ -204620,7 +204889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proficity-62a473.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/proficity-62a473.jpg" }, { "if": { @@ -204635,7 +204904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/profiloco-62a473.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/profiloco-62a473.jpg" }, { "if": { @@ -204650,7 +204919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/profisuper-62a473.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/profisuper-62a473.jpg" }, { "if": { @@ -204665,7 +204934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provigo-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provigo-76454b.jpg" }, { "if": { @@ -204680,7 +204949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proxydelhaize-f276cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/proxydelhaize-f276cb.png" }, { "if": { @@ -204695,23 +204964,23 @@ } ] }, - "then": "./assets/data/nsi/logos/publix-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/publix-dde59d.png" }, { "if": { "and": [ - "official_name=Supermercados Pueblo", "shop=supermarket", { "or": [ "brand=Pueblo", "brand:wikidata=Q7258464", - "name=Pueblo" + "name=Pueblo", + "official_name=Supermercados Pueblo" ] } ] }, - "then": "./assets/data/nsi/logos/pueblo-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pueblo-dde59d.jpg" }, { "if": { @@ -204726,7 +204995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puregold-49e134.svg" + "then": "https://data.mapcomplete.org/nsi//logos/puregold-49e134.svg" }, { "if": { @@ -204741,7 +205010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qfc-71f46e.png" + "then": "https://data.mapcomplete.org/nsi//logos/qfc-71f46e.png" }, { "if": { @@ -204756,7 +205025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickmart-d512c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quickmart-d512c0.jpg" }, { "if": { @@ -204771,7 +205040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rabba-388e9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/rabba-388e9d.png" }, { "if": { @@ -204786,7 +205055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raleys-097dbf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raleys-097dbf.jpg" }, { "if": { @@ -204801,7 +205070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ralphs-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/ralphs-dde59d.png" }, { "if": { @@ -204816,7 +205085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raysfoodplace-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/raysfoodplace-dde59d.png" }, { "if": { @@ -204831,7 +205100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/real-478515.png" + "then": "https://data.mapcomplete.org/nsi//logos/real-478515.png" }, { "if": { @@ -204846,7 +205115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/realcanadiansuperstore-76454b.png" + "then": "https://data.mapcomplete.org/nsi//logos/realcanadiansuperstore-76454b.png" }, { "if": { @@ -204861,7 +205130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rema1000-2b56aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rema1000-2b56aa.svg" }, { "if": { @@ -204876,7 +205145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewe-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rewe-0a839e.jpg" }, { "if": { @@ -204891,7 +205160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewecity-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rewecity-0a839e.jpg" }, { "if": { @@ -204906,7 +205175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ribola-f279a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ribola-f279a1.jpg" }, { "if": { @@ -204921,7 +205190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rimihyper-45f6bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/rimihyper-45f6bc.png" }, { "if": { @@ -204936,7 +205205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rimimini-043b09.png" + "then": "https://data.mapcomplete.org/nsi//logos/rimimini-043b09.png" }, { "if": { @@ -204951,7 +205220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rimisuper-45f6bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/rimisuper-45f6bc.png" }, { "if": { @@ -204966,7 +205235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ritchies-c254c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/ritchies-c254c9.png" }, { "if": { @@ -204981,7 +205250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robinsonssupermarket-49e134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robinsonssupermarket-49e134.jpg" }, { "if": { @@ -205001,7 +205270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roda-b83687.png" + "then": "https://data.mapcomplete.org/nsi//logos/roda-b83687.png" }, { "if": { @@ -205016,7 +205285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosauers-e2c16a.png" + "then": "https://data.mapcomplete.org/nsi//logos/rosauers-e2c16a.png" }, { "if": { @@ -205031,7 +205300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rouses-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rouses-dde59d.jpg" }, { "if": { @@ -205046,7 +205315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rulerfoods-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rulerfoods-dde59d.jpg" }, { "if": { @@ -205061,7 +205330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smarket-46d3b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/smarket-46d3b7.svg" }, { "if": { @@ -205076,7 +205345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smart-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smart-9b2dfb.jpg" }, { "if": { @@ -205091,7 +205360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safeway-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safeway-76454b.jpg" }, { "if": { @@ -205106,7 +205375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safeway-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safeway-dde59d.jpg" }, { "if": { @@ -205121,7 +205390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sainsburys-a8278b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sainsburys-a8278b.png" }, { "if": { @@ -205136,7 +205405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santaisabel-d25066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santaisabel-d25066.jpg" }, { "if": { @@ -205157,7 +205426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sas-da616d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sas-da616d.jpg" }, { "if": { @@ -205173,7 +205442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/satoriz-94a8a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/satoriz-94a8a9.jpg" }, { "if": { @@ -205188,7 +205457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savemart-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/savemart-dde59d.png" }, { "if": { @@ -205203,7 +205472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savealot-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/savealot-dde59d.jpg" }, { "if": { @@ -205218,7 +205487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saveonfoods-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saveonfoods-76454b.jpg" }, { "if": { @@ -205233,7 +205502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savemor-f9f648.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/savemor-f9f648.jpg" }, { "if": { @@ -205249,7 +205518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scheckincenter-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/scheckincenter-0a839e.png" }, { "if": { @@ -205264,7 +205533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schnucks-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schnucks-dde59d.jpg" }, { "if": { @@ -205279,7 +205548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scotmid-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scotmid-a8278b.jpg" }, { "if": { @@ -205295,7 +205564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seafoodcity-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seafoodcity-dde59d.jpg" }, { "if": { @@ -205310,7 +205579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selectochedraui-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selectochedraui-9b2dfb.jpg" }, { "if": { @@ -205325,7 +205594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selver-e21b3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selver-e21b3b.jpg" }, { "if": { @@ -205344,7 +205613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sfsupermarket-7c1bf0.png" + "then": "https://data.mapcomplete.org/nsi//logos/sfsupermarket-7c1bf0.png" }, { "if": { @@ -205359,7 +205628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shaws-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shaws-dde59d.jpg" }, { "if": { @@ -205374,7 +205643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoppersfoodandpharmacy-44c553.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoppersfoodandpharmacy-44c553.png" }, { "if": { @@ -205389,7 +205658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoprite-502f12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoprite-502f12.jpg" }, { "if": { @@ -205404,7 +205673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoprite-46096d.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoprite-46096d.png" }, { "if": { @@ -205419,7 +205688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoprite-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shoprite-dde59d.jpg" }, { "if": { @@ -205434,7 +205703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shopwise-49e134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shopwise-49e134.jpg" }, { "if": { @@ -205452,7 +205721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shufersal-6b65f1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shufersal-6b65f1.svg" }, { "if": { @@ -205467,7 +205736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shwapno-e71fe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shwapno-e71fe7.jpg" }, { "if": { @@ -205482,7 +205751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siconte-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/siconte-0cb133.png" }, { "if": { @@ -205497,7 +205766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sigma-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sigma-0cb133.jpg" }, { "if": { @@ -205512,7 +205781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sisa-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sisa-0cb133.jpg" }, { "if": { @@ -205527,7 +205796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sky-46841a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sky-46841a.svg" }, { "if": { @@ -205542,7 +205811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supermarketslawex-9e6a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/supermarketslawex-9e6a6c.png" }, { "if": { @@ -205557,7 +205826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartandfinal-3441e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/smartandfinal-3441e2.png" }, { "if": { @@ -205572,7 +205841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartandfinalextra-140857.png" + "then": "https://data.mapcomplete.org/nsi//logos/smartandfinalextra-140857.png" }, { "if": { @@ -205587,23 +205856,23 @@ } ] }, - "then": "./assets/data/nsi/logos/smatch-f276cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/smatch-f276cb.png" }, { "if": { "and": [ - "official_name=Smith's Food and Drug", "shop=supermarket", { "or": [ "brand=Smith's", "brand:wikidata=Q7544856", - "name=Smith's" + "name=Smith's", + "official_name=Smith's Food and Drug" ] } ] }, - "then": "./assets/data/nsi/logos/smiths-166dbe.png" + "then": "https://data.mapcomplete.org/nsi//logos/smiths-166dbe.png" }, { "if": { @@ -205618,7 +205887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sobeys-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sobeys-76454b.jpg" }, { "if": { @@ -205633,7 +205902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sok-5b5772.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sok-5b5772.jpg" }, { "if": { @@ -205648,7 +205917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sorianahiper-9b2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/sorianahiper-9b2dfb.png" }, { "if": { @@ -205663,7 +205932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sorianamercado-9b2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/sorianamercado-9b2dfb.png" }, { "if": { @@ -205678,7 +205947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sorianasuper-9b2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/sorianasuper-9b2dfb.png" }, { "if": { @@ -205693,7 +205962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sorlidiscau-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sorlidiscau-0513f1.jpg" }, { "if": { @@ -205708,7 +205977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spar-d767cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spar-d767cd.jpg" }, { "if": { @@ -205723,7 +205992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spargourmet-1eef1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spargourmet-1eef1d.jpg" }, { "if": { @@ -205738,7 +206007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spazioconad-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/spazioconad-0cb133.png" }, { "if": { @@ -205753,7 +206022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spolem-9e6a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spolem-9e6a6c.jpg" }, { "if": { @@ -205769,7 +206038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sproutsfarmersmarket-dde59d.png" + "then": "https://data.mapcomplete.org/nsi//logos/sproutsfarmersmarket-dde59d.png" }, { "if": { @@ -205784,7 +206053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starbazaar-9ef8f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starbazaar-9ef8f9.jpg" }, { "if": { @@ -205799,7 +206068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staterbros-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/staterbros-dde59d.jpg" }, { "if": { @@ -205814,7 +206083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stokrotka-9e6a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/stokrotka-9e6a6c.png" }, { "if": { @@ -205829,7 +206098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stokrotkamarket-9e6a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/stokrotkamarket-9e6a6c.png" }, { "if": { @@ -205844,7 +206113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stokrotkaoptima-9e6a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/stokrotkaoptima-9e6a6c.png" }, { "if": { @@ -205859,7 +206128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stopandshop-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stopandshop-dde59d.jpg" }, { "if": { @@ -205874,7 +206143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/strackandvantil-972b32.png" + "then": "https://data.mapcomplete.org/nsi//logos/strackandvantil-972b32.png" }, { "if": { @@ -205889,23 +206158,23 @@ } ] }, - "then": "./assets/data/nsi/logos/suma-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suma-0513f1.jpg" }, { "if": { "and": [ - "official_name=Supabarn Supermarkets", "shop=supermarket", { "or": [ "brand=Supabarn", "brand:wikidata=Q7641883", - "name=Supabarn" + "name=Supabarn", + "official_name=Supabarn Supermarkets" ] } ] }, - "then": "./assets/data/nsi/logos/supabarn-c254c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supabarn-c254c9.jpg" }, { "if": { @@ -205920,7 +206189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supeco-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supeco-0513f1.jpg" }, { "if": { @@ -205935,7 +206204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supeco-94a8a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/supeco-94a8a9.png" }, { "if": { @@ -205950,7 +206219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supeco-62a473.png" + "then": "https://data.mapcomplete.org/nsi//logos/supeco-62a473.png" }, { "if": { @@ -205965,7 +206234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superc-986a24.png" + "then": "https://data.mapcomplete.org/nsi//logos/superc-986a24.png" }, { "if": { @@ -205980,7 +206249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superche-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superche-9b2dfb.jpg" }, { "if": { @@ -205995,7 +206264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superchedraui-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superchedraui-9b2dfb.jpg" }, { "if": { @@ -206011,7 +206280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superhmart-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superhmart-dde59d.jpg" }, { "if": { @@ -206026,7 +206295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superindo-9b33de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superindo-9b33de.jpg" }, { "if": { @@ -206041,7 +206310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supermetro-49e134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supermetro-49e134.jpg" }, { "if": { @@ -206056,7 +206325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superonefoods-a7e51b.png" + "then": "https://data.mapcomplete.org/nsi//logos/superonefoods-a7e51b.png" }, { "if": { @@ -206071,7 +206340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superselectochedraui-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superselectochedraui-9b2dfb.jpg" }, { "if": { @@ -206086,7 +206355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superu-c16b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superu-c16b1c.jpg" }, { "if": { @@ -206103,7 +206372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supervero-b83687.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supervero-b83687.jpg" }, { "if": { @@ -206118,7 +206387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superama-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superama-9b2dfb.jpg" }, { "if": { @@ -206134,7 +206403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superbiomarkt-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superbiomarkt-0a839e.jpg" }, { "if": { @@ -206149,7 +206418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superbrugsen-072052.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superbrugsen-072052.jpg" }, { "if": { @@ -206164,7 +206433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supercitochedraui-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supercitochedraui-9b2dfb.jpg" }, { "if": { @@ -206179,7 +206448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superconti-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superconti-0cb133.jpg" }, { "if": { @@ -206194,7 +206463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supercor-d9bffc.png" + "then": "https://data.mapcomplete.org/nsi//logos/supercor-d9bffc.png" }, { "if": { @@ -206210,7 +206479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superdino-0513f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superdino-0513f1.jpg" }, { "if": { @@ -206225,7 +206494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superiorgrocers-097dbf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superiorgrocers-097dbf.jpg" }, { "if": { @@ -206240,7 +206509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superissste-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superissste-9b2dfb.jpg" }, { "if": { @@ -206255,7 +206524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supermarket-20f2a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supermarket-20f2a8.jpg" }, { "if": { @@ -206270,7 +206539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supermercadosbh-20f2a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supermercadosbh-20f2a8.jpg" }, { "if": { @@ -206285,7 +206554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supermercadosmas-0513f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/supermercadosmas-0513f1.png" }, { "if": { @@ -206300,7 +206569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supermercatizazzeron-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/supermercatizazzeron-0cb133.png" }, { "if": { @@ -206315,7 +206584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supersol-0a1807.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supersol-0a1807.jpg" }, { "if": { @@ -206330,7 +206599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superspar-5f0ef1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superspar-5f0ef1.jpg" }, { "if": { @@ -206345,7 +206614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supervalu-b7087f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/supervalu-b7087f.svg" }, { "if": { @@ -206360,7 +206629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/supervalue-5dc426.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/supervalue-5dc426.jpg" }, { "if": { @@ -206375,7 +206644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sutterluty-1eef1d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sutterluty-1eef1d.svg" }, { "if": { @@ -206390,7 +206659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/target-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/target-dde59d.jpg" }, { "if": { @@ -206413,7 +206682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taste-745f9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taste-745f9c.jpg" }, { "if": { @@ -206428,7 +206697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tegut-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/tegut-0a839e.png" }, { "if": { @@ -206445,7 +206714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tempo-4ccde8.png" + "then": "https://data.mapcomplete.org/nsi//logos/tempo-4ccde8.png" }, { "if": { @@ -206460,7 +206729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terno-4ccde8.png" + "then": "https://data.mapcomplete.org/nsi//logos/terno-4ccde8.png" }, { "if": { @@ -206475,7 +206744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesco-986a24.png" + "then": "https://data.mapcomplete.org/nsi//logos/tesco-986a24.png" }, { "if": { @@ -206490,7 +206759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tescoextra-1e2c58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tescoextra-1e2c58.jpg" }, { "if": { @@ -206505,7 +206774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tfvaluemart-80e9ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tfvaluemart-80e9ee.jpg" }, { "if": { @@ -206520,7 +206789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thefoodwarehouse-a8278b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thefoodwarehouse-a8278b.jpg" }, { "if": { @@ -206535,7 +206804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thefreshmarket-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thefreshmarket-dde59d.jpg" }, { "if": { @@ -206550,7 +206819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegroceryoutlet-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegroceryoutlet-76454b.jpg" }, { "if": { @@ -206566,7 +206835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesourcebulkfoods-ff3d2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thesourcebulkfoods-ff3d2b.jpg" }, { "if": { @@ -206581,7 +206850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thestore-80e9ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thestore-80e9ee.jpg" }, { "if": { @@ -206600,7 +206869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thrash-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thrash-94881c.jpg" }, { "if": { @@ -206615,7 +206884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigre-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigre-0cb133.jpg" }, { "if": { @@ -206630,7 +206899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigros-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigros-0cb133.jpg" }, { "if": { @@ -206645,7 +206914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timessupermarkets-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/timessupermarkets-dde59d.jpg" }, { "if": { @@ -206660,7 +206929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/todis-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/todis-0cb133.jpg" }, { "if": { @@ -206675,7 +206944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tomthumb-a6c312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tomthumb-a6c312.jpg" }, { "if": { @@ -206690,7 +206959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tommy-f279a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tommy-f279a1.jpg" }, { "if": { @@ -206705,7 +206974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tonysfreshmarket-5ca8e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/tonysfreshmarket-5ca8e2.png" }, { "if": { @@ -206720,7 +206989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topmarket-9e6a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/topmarket-9e6a6c.jpg" }, { "if": { @@ -206735,7 +207004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topaz-9e6a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/topaz-9e6a6c.png" }, { "if": { @@ -206754,23 +207023,23 @@ } ] }, - "then": "./assets/data/nsi/logos/tops-fd4d8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tops-fd4d8d.jpg" }, { "if": { "and": [ - "official_name=Tops Friendly Markets", "shop=supermarket", { "or": [ "brand=Tops", "brand:wikidata=Q7825137", - "name=Tops" + "name=Tops", + "official_name=Tops Friendly Markets" ] } ] }, - "then": "./assets/data/nsi/logos/tops-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tops-dde59d.jpg" }, { "if": { @@ -206785,7 +207054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tottus-b9e971.png" + "then": "https://data.mapcomplete.org/nsi//logos/tottus-b9e971.png" }, { "if": { @@ -206800,7 +207069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/traderjoes-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/traderjoes-dde59d.jpg" }, { "if": { @@ -206821,7 +207090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsiran-da616d.png" + "then": "https://data.mapcomplete.org/nsi//logos/tsiran-da616d.png" }, { "if": { @@ -206836,7 +207105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuodi-0cb133.png" + "then": "https://data.mapcomplete.org/nsi//logos/tuodi-0cb133.png" }, { "if": { @@ -206851,7 +207120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unes-0cb133.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unes-0cb133.jpg" }, { "if": { @@ -206866,7 +207135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unimarc-d25066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unimarc-d25066.jpg" }, { "if": { @@ -206881,7 +207150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unimarkt-1eef1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unimarkt-1eef1d.jpg" }, { "if": { @@ -206896,7 +207165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedsupermarkets-a6c312.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedsupermarkets-a6c312.png" }, { "if": { @@ -206911,7 +207180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/univerexport-b83687.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/univerexport-b83687.jpg" }, { "if": { @@ -206934,7 +207203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uselect-745f9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/uselect-745f9c.png" }, { "if": { @@ -206949,24 +207218,24 @@ } ] }, - "then": "./assets/data/nsi/logos/vmarkt-0a839e.png" + "then": "https://data.mapcomplete.org/nsi//logos/vmarkt-0a839e.png" }, { "if": { "and": [ "cuisine=latin_american", - "official_name=Vallarta Supermarkets", "shop=supermarket", { "or": [ "brand=Vallarta", "brand:wikidata=Q7911833", - "name=Vallarta" + "name=Vallarta", + "official_name=Vallarta Supermarkets" ] } ] }, - "then": "./assets/data/nsi/logos/vallarta-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vallarta-dde59d.jpg" }, { "if": { @@ -206981,7 +207250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valumart-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valumart-76454b.jpg" }, { "if": { @@ -206996,7 +207265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/varus-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/varus-94881c.jpg" }, { "if": { @@ -207011,7 +207280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vea-0d2b84.png" + "then": "https://data.mapcomplete.org/nsi//logos/vea-0d2b84.png" }, { "if": { @@ -207026,7 +207295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vishalmegamart-9ef8f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/vishalmegamart-9ef8f9.png" }, { "if": { @@ -207042,7 +207311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voi-36e991.svg" + "then": "https://data.mapcomplete.org/nsi//logos/voi-36e991.svg" }, { "if": { @@ -207057,7 +207326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volg-704edb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/volg-704edb.svg" }, { "if": { @@ -207072,7 +207341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vomar-5811b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/vomar-5811b5.png" }, { "if": { @@ -207087,23 +207356,23 @@ } ] }, - "then": "./assets/data/nsi/logos/vons-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vons-dde59d.jpg" }, { "if": { "and": [ - "official_name=Waitrose & Partners", "shop=supermarket", { "or": [ "brand=Waitrose", "brand:wikidata=Q771734", - "name=Waitrose" + "name=Waitrose", + "official_name=Waitrose & Partners" ] } ] }, - "then": "./assets/data/nsi/logos/waitrose-dd6d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waitrose-dd6d3a.jpg" }, { "if": { @@ -207118,7 +207387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartexpress-9b2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartexpress-9b2dfb.jpg" }, { "if": { @@ -207133,7 +207402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartneighborhoodmarket-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartneighborhoodmarket-dde59d.jpg" }, { "if": { @@ -207148,7 +207417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartsupercenter-757af0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartsupercenter-757af0.jpg" }, { "if": { @@ -207163,7 +207432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmartsupercentre-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmartsupercentre-76454b.jpg" }, { "if": { @@ -207178,7 +207447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wasgau-0a839e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wasgau-0a839e.jpg" }, { "if": { @@ -207193,23 +207462,23 @@ } ] }, - "then": "./assets/data/nsi/logos/wegmans-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wegmans-dde59d.jpg" }, { "if": { "and": [ - "official_name=Weis Markets", "shop=supermarket", { "or": [ "brand=Weis", "brand:wikidata=Q7980370", - "name=Weis" + "name=Weis", + "official_name=Weis Markets" ] } ] }, - "then": "./assets/data/nsi/logos/weis-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weis-dde59d.jpg" }, { "if": { @@ -207224,7 +207493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wholefoodsmarket-90050a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wholefoodsmarket-90050a.jpg" }, { "if": { @@ -207239,7 +207508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wholesaleclub-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wholesaleclub-76454b.jpg" }, { "if": { @@ -207254,7 +207523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/willys-c57afb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/willys-c57afb.jpg" }, { "if": { @@ -207269,7 +207538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wincofoods-dde59d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wincofoods-dde59d.svg" }, { "if": { @@ -207284,7 +207553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winmart-45db57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winmart-45db57.jpg" }, { "if": { @@ -207299,7 +207568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winndixie-dde59d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winndixie-dde59d.jpg" }, { "if": { @@ -207314,7 +207583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodmansmarkets-5dc7ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/woodmansmarkets-5dc7ba.png" }, { "if": { @@ -207331,7 +207600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woolworths-c254c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/woolworths-c254c9.png" }, { "if": { @@ -207346,7 +207615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woolworths-5dc426.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woolworths-5dc426.jpg" }, { "if": { @@ -207363,7 +207632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woolworthsmetro-c254c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/woolworthsmetro-c254c9.png" }, { "if": { @@ -207378,7 +207647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woolworthsmetro-5dc426.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woolworthsmetro-5dc426.jpg" }, { "if": { @@ -207393,7 +207662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yeme-4ccde8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yeme-4ccde8.jpg" }, { "if": { @@ -207414,7 +207683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yerevancity-da616d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yerevancity-da616d.jpg" }, { "if": { @@ -207429,7 +207698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yogya-9b33de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yogya-9b33de.jpg" }, { "if": { @@ -207444,7 +207713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yourindependentgrocer-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yourindependentgrocer-76454b.jpg" }, { "if": { @@ -207459,7 +207728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zehrs-76454b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zehrs-76454b.jpg" }, { "if": { @@ -207478,7 +207747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abvassilopoulos-37450e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abvassilopoulos-37450e.jpg" }, { "if": { @@ -207497,7 +207766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galaxias-37450e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/galaxias-37450e.jpg" }, { "if": { @@ -207516,7 +207785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kritikos-37450e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kritikos-37450e.jpg" }, { "if": { @@ -207535,7 +207804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/masoutis-37450e.png" + "then": "https://data.mapcomplete.org/nsi//logos/masoutis-37450e.png" }, { "if": { @@ -207554,7 +207823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sklavenitis-40667a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sklavenitis-40667a.svg" }, { "if": { @@ -207573,7 +207842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/azbukavkusa-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/azbukavkusa-d5eaac.jpg" }, { "if": { @@ -207592,7 +207861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atac-d5eaac.png" + "then": "https://data.mapcomplete.org/nsi//logos/atac-d5eaac.png" }, { "if": { @@ -207611,7 +207880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atbmarket-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atbmarket-94881c.jpg" }, { "if": { @@ -207630,7 +207899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchan-d5eaac.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchan-d5eaac.png" }, { "if": { @@ -207649,7 +207918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchan-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/auchan-94881c.jpg" }, { "if": { @@ -207664,7 +207933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/106d49-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/106d49-94881c.jpg" }, { "if": { @@ -207683,7 +207952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bulmag-56b425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bulmag-56b425.jpg" }, { "if": { @@ -207698,7 +207967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1b9c5d-56b425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1b9c5d-56b425.jpg" }, { "if": { @@ -207713,7 +207982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/62e010-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/62e010-94881c.jpg" }, { "if": { @@ -207728,7 +207997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5a1923-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/5a1923-d5eaac.jpg" }, { "if": { @@ -207743,7 +208012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9034b8-d5eaac.png" + "then": "https://data.mapcomplete.org/nsi//logos/9034b8-d5eaac.png" }, { "if": { @@ -207758,7 +208027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccbce1-a384d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ccbce1-a384d0.jpg" }, { "if": { @@ -207777,7 +208046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vopak-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vopak-94881c.jpg" }, { "if": { @@ -207792,7 +208061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/44aeb3-4736ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/44aeb3-4736ec.jpg" }, { "if": { @@ -207811,7 +208080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groserov-d5eaac.png" + "then": "https://data.mapcomplete.org/nsi//logos/groserov-d5eaac.png" }, { "if": { @@ -207826,7 +208095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/40c23e-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/40c23e-d5eaac.jpg" }, { "if": { @@ -207843,7 +208112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dar-56b425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dar-56b425.jpg" }, { "if": { @@ -207860,7 +208129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dixy-d5eaac.png" + "then": "https://data.mapcomplete.org/nsi//logos/dixy-d5eaac.png" }, { "if": { @@ -207877,7 +208146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dis-b83687.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dis-b83687.jpg" }, { "if": { @@ -207896,7 +208165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euroopt-a384d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/euroopt-a384d0.png" }, { "if": { @@ -207911,7 +208180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/72c317-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/72c317-94881c.jpg" }, { "if": { @@ -207926,7 +208195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/212655-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/212655-94881c.jpg" }, { "if": { @@ -207941,7 +208210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/87ac35-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/87ac35-d5eaac.jpg" }, { "if": { @@ -207958,7 +208227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/komandor-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/komandor-d5eaac.jpg" }, { "if": { @@ -207973,7 +208242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e23c32-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/e23c32-94881c.jpg" }, { "if": { @@ -207992,7 +208261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krasnyyar-d5eaac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/krasnyyar-d5eaac.svg" }, { "if": { @@ -208011,7 +208280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lenta-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lenta-d5eaac.jpg" }, { "if": { @@ -208028,7 +208297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidl-56b425.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidl-56b425.png" }, { "if": { @@ -208045,7 +208314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidl-b83687.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidl-b83687.png" }, { "if": { @@ -208060,7 +208329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/587825-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/587825-94881c.jpg" }, { "if": { @@ -208079,7 +208348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magnit-d5eaac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/magnit-d5eaac.svg" }, { "if": { @@ -208098,7 +208367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mariara-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mariara-d5eaac.jpg" }, { "if": { @@ -208113,7 +208382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f624e9-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/f624e9-94881c.jpg" }, { "if": { @@ -208132,7 +208401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monetka-d5eaac.png" + "then": "https://data.mapcomplete.org/nsi//logos/monetka-d5eaac.png" }, { "if": { @@ -208147,7 +208416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/17c1f7-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/17c1f7-94881c.jpg" }, { "if": { @@ -208166,7 +208435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okey-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okey-d5eaac.jpg" }, { "if": { @@ -208181,7 +208450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1019ea-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1019ea-d5eaac.jpg" }, { "if": { @@ -208196,7 +208465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fd13e6-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fd13e6-94881c.jpg" }, { "if": { @@ -208215,7 +208484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radezh-d5eaac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radezh-d5eaac.jpg" }, { "if": { @@ -208234,7 +208503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rukavychka-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rukavychka-94881c.jpg" }, { "if": { @@ -208253,7 +208522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/silpo-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/silpo-94881c.jpg" }, { "if": { @@ -208270,7 +208539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tmarket-56b425.png" + "then": "https://data.mapcomplete.org/nsi//logos/tmarket-56b425.png" }, { "if": { @@ -208291,7 +208560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tavriav-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tavriav-94881c.jpg" }, { "if": { @@ -208308,7 +208577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fantastiko-56b425.png" + "then": "https://data.mapcomplete.org/nsi//logos/fantastiko-56b425.png" }, { "if": { @@ -208327,7 +208596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fora-94881c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fora-94881c.jpg" }, { "if": { @@ -208348,7 +208617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrohub-873b68.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrohub-873b68.png" }, { "if": { @@ -208369,7 +208638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwill-873b68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwill-873b68.jpg" }, { "if": { @@ -208390,7 +208659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/willmart-873b68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/willmart-873b68.jpg" }, { "if": { @@ -208413,7 +208682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefourmarket-873b68.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefourmarket-873b68.png" }, { "if": { @@ -208428,7 +208697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2c9305-873b68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/2c9305-873b68.jpg" }, { "if": { @@ -208449,7 +208718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nikora-873b68.png" + "then": "https://data.mapcomplete.org/nsi//logos/nikora-873b68.png" }, { "if": { @@ -208468,7 +208737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orinabiji-873b68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orinabiji-873b68.jpg" }, { "if": { @@ -208487,7 +208756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spar-873b68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spar-873b68.jpg" }, { "if": { @@ -208508,7 +208777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fresco-873b68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fresco-873b68.jpg" }, { "if": { @@ -208527,7 +208796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yochananof-6b65f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/yochananof-6b65f1.png" }, { "if": { @@ -208548,7 +208817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yeinotbitan-6b65f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yeinotbitan-6b65f1.jpg" }, { "if": { @@ -208569,7 +208838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramilevi-6b65f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ramilevi-6b65f1.jpg" }, { "if": { @@ -208587,7 +208856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shufersalexpress-6b65f1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shufersalexpress-6b65f1.svg" }, { "if": { @@ -208607,7 +208876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shufersaldeal-6b65f1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shufersaldeal-6b65f1.svg" }, { "if": { @@ -208625,7 +208894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shufersalsheli-6b65f1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shufersalsheli-6b65f1.svg" }, { "if": { @@ -208646,7 +208915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tamimimarkets-22a530.png" + "then": "https://data.mapcomplete.org/nsi//logos/tamimimarkets-22a530.png" }, { "if": { @@ -208667,12 +208936,11 @@ } ] }, - "then": "./assets/data/nsi/logos/abdullahalothaimmarkets-6c5d99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abdullahalothaimmarkets-6c5d99.jpg" }, { "if": { "and": [ - "official_name=شركة بنده للتجزئة", "shop=supermarket", { "or": [ @@ -208684,12 +208952,13 @@ "brand:wikidata=Q4832749", "name=بنده", "name:ar=بنده", - "name:en=Panda" + "name:en=Panda", + "official_name=شركة بنده للتجزئة" ] } ] }, - "then": "./assets/data/nsi/logos/panda-709c58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panda-709c58.jpg" }, { "if": { @@ -208708,7 +208977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canbo-c29ef9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canbo-c29ef9.jpg" }, { "if": { @@ -208727,7 +208996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/refah-c29ef9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/refah-c29ef9.svg" }, { "if": { @@ -208745,7 +209014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lottemart-12b833.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lottemart-12b833.jpg" }, { "if": { @@ -208764,7 +209033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apita-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/apita-fe0970.svg" }, { "if": { @@ -208783,7 +209052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeon-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aeon-fe0970.jpg" }, { "if": { @@ -208802,7 +209071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itoyokado-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/itoyokado-fe0970.png" }, { "if": { @@ -208821,7 +209090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inageya-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/inageya-fe0970.svg" }, { "if": { @@ -208841,7 +209110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acoop-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/acoop-fe0970.svg" }, { "if": { @@ -208860,7 +209129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okuwa-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okuwa-fe0970.jpg" }, { "if": { @@ -208879,7 +209148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okstore-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/okstore-fe0970.svg" }, { "if": { @@ -208898,7 +209167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olympic-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/olympic-fe0970.png" }, { "if": { @@ -208917,7 +209186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kasumi-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kasumi-fe0970.jpg" }, { "if": { @@ -208936,7 +209205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyoei-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kyoei-fe0970.jpg" }, { "if": { @@ -208955,14 +209224,11 @@ } ] }, - "then": "./assets/data/nsi/logos/gourmetcity-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gourmetcity-fe0970.svg" }, { "if": { "and": [ - "official_name=日本生活協同組合連合会", - "official_name:en=Japanese Consumers' Co-operative Union", - "official_name:ja=日本生活協同組合連合会", "shop=supermarket", { "or": [ @@ -208973,19 +209239,19 @@ "brand:wikidata=Q11508615", "name=コープ", "name:en=CO・OP", - "name:ja=コープ" + "name:ja=コープ", + "official_name=日本生活協同組合連合会", + "official_name:en=Japanese Consumers' Co-operative Union", + "official_name:ja=日本生活協同組合連合会" ] } ] }, - "then": "./assets/data/nsi/logos/coop-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-fe0970.png" }, { "if": { "and": [ - "official_name=生活協同組合コープこうべ", - "official_name:en=The Consumer Co-operative Kobe", - "official_name:ja=生活協同組合コープこうべ", "shop=supermarket", { "or": [ @@ -208996,12 +209262,15 @@ "brand:wikidata=Q5137453", "name=コープこう", "name:en=CO・OP Kobe", - "name:ja=コープこう" + "name:ja=コープこう", + "official_name=生活協同組合コープこうべ", + "official_name:en=The Consumer Co-operative Kobe", + "official_name:ja=生活協同組合コープこうべ" ] } ] }, - "then": "./assets/data/nsi/logos/coopkobe-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopkobe-fe0970.jpg" }, { "if": { @@ -209020,7 +209289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comodiiida-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/comodiiida-fe0970.png" }, { "if": { @@ -209039,7 +209308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superalps-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/superalps-fe0970.svg" }, { "if": { @@ -209058,7 +209327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daiei-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/daiei-fe0970.png" }, { "if": { @@ -209077,7 +209346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsuruya-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tsuruya-fe0970.svg" }, { "if": { @@ -209099,7 +209368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delicia-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/delicia-fe0970.svg" }, { "if": { @@ -209118,7 +209387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trial-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trial-fe0970.jpg" }, { "if": { @@ -209145,7 +209414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donquijoteuny-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donquijoteuny-fe0970.jpg" }, { "if": { @@ -209164,7 +209433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piago-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/piago-fe0970.svg" }, { "if": { @@ -209183,7 +209452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fuji-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/fuji-fe0970.png" }, { "if": { @@ -209202,7 +209471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fujigrand-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/fujigrand-fe0970.png" }, { "if": { @@ -209221,7 +209490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beisia-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/beisia-fe0970.svg" }, { "if": { @@ -209240,7 +209509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mybasket-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mybasket-fe0970.jpg" }, { "if": { @@ -209259,7 +209528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxvalu-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/maxvalu-fe0970.svg" }, { "if": { @@ -209278,7 +209547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mammymart-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/mammymart-fe0970.png" }, { "if": { @@ -209297,7 +209566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maruetsu-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maruetsu-fe0970.jpg" }, { "if": { @@ -209316,7 +209585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maruetsupetit-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maruetsupetit-fe0970.jpg" }, { "if": { @@ -209335,7 +209604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marunaka-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marunaka-fe0970.svg" }, { "if": { @@ -209354,7 +209623,30 @@ } ] }, - "then": "./assets/data/nsi/logos/yaoko-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yaoko-fe0970.jpg" + }, + { + "if": { + "and": [ + "shop=supermarket", + { + "or": [ + "brand=業務スーパー", + "brand:en=Gyomu Super", + "brand:ja=業務スーパー", + "brand:wikidata=Q105687460", + "name=ユーパレット", + "name:en=YOU Palette", + "name:ja=ユーパレット", + "operator=デリシア", + "operator:en=Delicia", + "operator:ja=デリシア", + "operator:wikidata=Q11283878" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/youpalette-fe0970.png" }, { "if": { @@ -209373,7 +209665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/youmetown-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/youmetown-fe0970.svg" }, { "if": { @@ -209392,7 +209684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yorkbenimaru-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yorkbenimaru-fe0970.jpg" }, { "if": { @@ -209411,7 +209703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yorkmart-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yorkmart-fe0970.jpg" }, { "if": { @@ -209430,7 +209722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/life-fe0970.png" + "then": "https://data.mapcomplete.org/nsi//logos/life-fe0970.png" }, { "if": { @@ -209463,7 +209755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pxmart-14223e.png" + "then": "https://data.mapcomplete.org/nsi//logos/pxmart-14223e.png" }, { "if": { @@ -209482,7 +209774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanguard-85bacf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vanguard-85bacf.jpg" }, { "if": { @@ -209501,7 +209793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rtmart-eda947.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rtmart-eda947.jpg" }, { "if": { @@ -209520,7 +209812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rtmart-14223e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rtmart-14223e.jpg" }, { "if": { @@ -209538,7 +209830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tandtsupermarket-76454b.png" + "then": "https://data.mapcomplete.org/nsi//logos/tandtsupermarket-76454b.png" }, { "if": { @@ -209557,7 +209849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-3265be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-3265be.jpg" }, { "if": { @@ -209584,7 +209876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-14223e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-14223e.jpg" }, { "if": { @@ -209607,7 +209899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellcome-745f9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellcome-745f9c.jpg" }, { "if": { @@ -209630,7 +209922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amart-14223e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amart-14223e.jpg" }, { "if": { @@ -209649,7 +209941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seijoishii-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seijoishii-fe0970.jpg" }, { "if": { @@ -209668,7 +209960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokyustore-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokyustore-fe0970.jpg" }, { "if": { @@ -209687,7 +209979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tobustore-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tobustore-fe0970.jpg" }, { "if": { @@ -209706,7 +209998,28 @@ } ] }, - "then": "./assets/data/nsi/logos/funcomsupermarket-14223e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/funcomsupermarket-14223e.jpg" + }, + { + "if": { + "and": [ + "shop=supermarket", + { + "or": [ + "brand=業務スーパー", + "brand:en=Gyomu Super", + "brand:ja=業務スーパー", + "brand:ja-Latn=Gyōmu sūpā", + "brand:wikidata=Q105687460", + "name=業務スーパー", + "name:en=Gyomu Super", + "name:ja=業務スーパー", + "name:ja-Latn=Gyōmu sūpā" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/gyomusuper-fe0970.png" }, { "if": { @@ -209725,7 +210038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeon-85bacf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aeon-85bacf.jpg" }, { "if": { @@ -209744,7 +210057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeon-745f9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aeon-745f9c.jpg" }, { "if": { @@ -209763,7 +210076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walmart-eda947.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walmart-eda947.jpg" }, { "if": { @@ -209792,7 +210105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parknshop-3601ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parknshop-3601ab.jpg" }, { "if": { @@ -209812,7 +210125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sotetsurosen-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sotetsurosen-fe0970.svg" }, { "if": { @@ -209831,7 +210144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watahansupercenter-fe0970.svg" + "then": "https://data.mapcomplete.org/nsi//logos/watahansupercenter-fe0970.svg" }, { "if": { @@ -209862,7 +210175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simplemart-14223e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/simplemart-14223e.jpg" }, { "if": { @@ -209886,7 +210199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santacruz-14223e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santacruz-14223e.jpg" }, { "if": { @@ -209905,7 +210218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanguard-745f9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vanguard-745f9c.jpg" }, { "if": { @@ -209924,7 +210237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seiyu-fe0970.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seiyu-fe0970.jpg" }, { "if": { @@ -209944,23 +210257,23 @@ } ] }, - "then": "./assets/data/nsi/logos/leezen-14223e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leezen-14223e.jpg" }, { "if": { "and": [ - "official_name=Leslie's Pool Supplies Service & Repair", "shop=swimming_pool", { "or": [ "brand=Leslie's Pool Supplies", "brand:wikidata=Q6530568", - "name=Leslie's Pool Supplies" + "name=Leslie's Pool Supplies", + "official_name=Leslie's Pool Supplies Service & Repair" ] } ] }, - "then": "./assets/data/nsi/logos/lesliespoolsupplies-1e1b6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/lesliespoolsupplies-1e1b6d.png" }, { "if": { @@ -209975,7 +210288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinchapenny-1e1b6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/pinchapenny-1e1b6d.png" }, { "if": { @@ -209990,7 +210303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veantattoo-eea007.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veantattoo-eea007.jpg" }, { "if": { @@ -210005,7 +210318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chapayom-af1b20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chapayom-af1b20.jpg" }, { "if": { @@ -210020,7 +210333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/czasnaherbate-2f47e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/czasnaherbate-2f47e9.jpg" }, { "if": { @@ -210035,7 +210348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dammannfreres-14c0a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dammannfreres-14c0a7.jpg" }, { "if": { @@ -210050,7 +210363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davidstea-12e931.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/davidstea-12e931.jpg" }, { "if": { @@ -210065,7 +210378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiveoclock-2f47e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiveoclock-2f47e9.jpg" }, { "if": { @@ -210080,7 +210393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kusmitea-9cd54d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kusmitea-9cd54d.jpg" }, { "if": { @@ -210095,7 +210408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxalis-cec35b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxalis-cec35b.jpg" }, { "if": { @@ -210110,7 +210423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palaisdesthes-9d2342.png" + "then": "https://data.mapcomplete.org/nsi//logos/palaisdesthes-9d2342.png" }, { "if": { @@ -210125,7 +210438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simonlevelt-4b87ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/simonlevelt-4b87ec.jpg" }, { "if": { @@ -210140,7 +210453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonnentor-8b9919.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonnentor-8b9919.jpg" }, { "if": { @@ -210155,7 +210468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/t2-c95a9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/t2-c95a9d.jpg" }, { "if": { @@ -210170,7 +210483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teashop-d87694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teashop-d87694.jpg" }, { "if": { @@ -210185,7 +210498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teawg-3ee78a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teawg-3ee78a.jpg" }, { "if": { @@ -210200,7 +210513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teegschwendner-655ff5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teegschwendner-655ff5.jpg" }, { "if": { @@ -210215,7 +210528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/twgtea-c4a804.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/twgtea-c4a804.jpg" }, { "if": { @@ -210230,7 +210543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whittardofchelsea-1b668e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whittardofchelsea-1b668e.jpg" }, { "if": { @@ -210249,7 +210562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cantata-6c79c5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cantata-6c79c5.svg" }, { "if": { @@ -210264,7 +210577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1o1o-d0af53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1o1o-d0af53.jpg" }, { "if": { @@ -210281,7 +210594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/three-063284.svg" + "then": "https://data.mapcomplete.org/nsi//logos/three-063284.svg" }, { "if": { @@ -210296,7 +210609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4ka-be4c77.png" + "then": "https://data.mapcomplete.org/nsi//logos/4ka-be4c77.png" }, { "if": { @@ -210311,7 +210624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1-5b3624.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a1-5b3624.jpg" }, { "if": { @@ -210330,7 +210643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1-ba40c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a1-ba40c7.jpg" }, { "if": { @@ -210347,7 +210660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1-5ceaa9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a1-5ceaa9.jpg" }, { "if": { @@ -210364,7 +210677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1-5455f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a1-5455f4.jpg" }, { "if": { @@ -210379,7 +210692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agenciaice-478408.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agenciaice-478408.jpg" }, { "if": { @@ -210394,7 +210707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bell-e8684d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bell-e8684d.jpg" }, { "if": { @@ -210409,7 +210722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cspire-3a9c60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cspire-3a9c60.jpg" }, { "if": { @@ -210424,7 +210737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celcom-c82acb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/celcom-c82acb.svg" }, { "if": { @@ -210441,7 +210754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csl-d0af53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csl-d0af53.jpg" }, { "if": { @@ -210456,7 +210769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyta-e85adc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyta-e85adc.jpg" }, { "if": { @@ -210475,7 +210788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/datagroup-19c022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/datagroup-19c022.jpg" }, { "if": { @@ -210490,7 +210803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/digi-9fbd0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/digi-9fbd0b.jpg" }, { "if": { @@ -210505,7 +210818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/digistore-c82acb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/digistore-c82acb.jpg" }, { "if": { @@ -210520,7 +210833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dish-3a9c60.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dish-3a9c60.svg" }, { "if": { @@ -210536,7 +210849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dito-1229f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dito-1229f4.jpg" }, { "if": { @@ -210551,7 +210864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drei-a73137.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drei-a73137.jpg" }, { "if": { @@ -210566,7 +210879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epic-099b82.png" + "then": "https://data.mapcomplete.org/nsi//logos/epic-099b82.png" }, { "if": { @@ -210581,7 +210894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/finetwork-cea1c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/finetwork-cea1c9.jpg" }, { "if": { @@ -210596,7 +210909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freenet-c071e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freenet-c071e4.jpg" }, { "if": { @@ -210611,7 +210924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galeriindosat-ba2701.svg" + "then": "https://data.mapcomplete.org/nsi//logos/galeriindosat-ba2701.svg" }, { "if": { @@ -210626,7 +210939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galerismartfren-ba2701.svg" + "then": "https://data.mapcomplete.org/nsi//logos/galerismartfren-ba2701.svg" }, { "if": { @@ -210642,7 +210955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globe-1229f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/globe-1229f4.png" }, { "if": { @@ -210657,7 +210970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/graparitelkomsel-ba2701.svg" + "then": "https://data.mapcomplete.org/nsi//logos/graparitelkomsel-ba2701.svg" }, { "if": { @@ -210673,7 +210986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magenta-a73137.svg" + "then": "https://data.mapcomplete.org/nsi//logos/magenta-a73137.svg" }, { "if": { @@ -210688,7 +211001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxis-c82acb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxis-c82acb.jpg" }, { "if": { @@ -210703,7 +211016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mts-28400c.png" + "then": "https://data.mapcomplete.org/nsi//logos/mts-28400c.png" }, { "if": { @@ -210718,7 +211031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ooredoo-33bf96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ooredoo-33bf96.jpg" }, { "if": { @@ -210733,7 +211046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optimum-3a9c60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optimum-3a9c60.jpg" }, { "if": { @@ -210748,7 +211061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangemali-478897.png" + "then": "https://data.mapcomplete.org/nsi//logos/orangemali-478897.png" }, { "if": { @@ -210763,7 +211076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proximusshop-6be163.png" + "then": "https://data.mapcomplete.org/nsi//logos/proximusshop-6be163.png" }, { "if": { @@ -210778,7 +211091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pyur-c071e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pyur-c071e4.jpg" }, { "if": { @@ -210793,7 +211106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salt-b6d5be.svg" + "then": "https://data.mapcomplete.org/nsi//logos/salt-b6d5be.svg" }, { "if": { @@ -210808,7 +211121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sky-e64962.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sky-e64962.svg" }, { "if": { @@ -210823,7 +211136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telekom-be4c77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telekom-be4c77.jpg" }, { "if": { @@ -210839,7 +211152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smart-1229f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/smart-1229f4.png" }, { "if": { @@ -210854,7 +211167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spectrum-3a9c60.png" + "then": "https://data.mapcomplete.org/nsi//logos/spectrum-3a9c60.png" }, { "if": { @@ -210869,7 +211182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunrise-b6d5be.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sunrise-b6d5be.svg" }, { "if": { @@ -210884,7 +211197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisscom-b6d5be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisscom-b6d5be.jpg" }, { "if": { @@ -210899,7 +211212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenet-6be163.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telenet-6be163.jpg" }, { "if": { @@ -210914,7 +211227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenor-f4a586.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telenor-f4a586.jpg" }, { "if": { @@ -210929,7 +211242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tmpoint-c82acb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tmpoint-c82acb.jpg" }, { "if": { @@ -210944,7 +211257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umobile-c82acb.png" + "then": "https://data.mapcomplete.org/nsi//logos/umobile-c82acb.png" }, { "if": { @@ -210961,7 +211274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivacom-5ceaa9.png" + "then": "https://data.mapcomplete.org/nsi//logos/vivacom-5ceaa9.png" }, { "if": { @@ -210976,7 +211289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volia-19c022.png" + "then": "https://data.mapcomplete.org/nsi//logos/volia-19c022.png" }, { "if": { @@ -210991,7 +211304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voo-6be163.svg" + "then": "https://data.mapcomplete.org/nsi//logos/voo-6be163.svg" }, { "if": { @@ -211006,7 +211319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xfinity-3a9c60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xfinity-3a9c60.jpg" }, { "if": { @@ -211021,7 +211334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xlcenter-ba2701.png" + "then": "https://data.mapcomplete.org/nsi//logos/xlcenter-ba2701.png" }, { "if": { @@ -211036,7 +211349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yes4g-c82acb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yes4g-c82acb.jpg" }, { "if": { @@ -211051,7 +211364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yettel-5ceaa9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yettel-5ceaa9.jpg" }, { "if": { @@ -211066,7 +211379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yettel-fbadaa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yettel-fbadaa.jpg" }, { "if": { @@ -211081,7 +211394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yettel-ba40c7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yettel-ba40c7.svg" }, { "if": { @@ -211098,7 +211411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bulsatcom-5ceaa9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bulsatcom-5ceaa9.jpg" }, { "if": { @@ -211115,7 +211428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/makedonskitelecom-5455f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/makedonskitelecom-5455f4.jpg" }, { "if": { @@ -211134,7 +211447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mts-53a4f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mts-53a4f1.jpg" }, { "if": { @@ -211149,7 +211462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b6fed5-58655c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/b6fed5-58655c.svg" }, { "if": { @@ -211166,7 +211479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telekabel-5455f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telekabel-5455f4.jpg" }, { "if": { @@ -211185,7 +211498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrtelecom-19c022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrtelecom-19c022.jpg" }, { "if": { @@ -211204,7 +211517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinamobile-3ad2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinamobile-3ad2fe.jpg" }, { "if": { @@ -211223,7 +211536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaunicom-3ad2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaunicom-3ad2fe.jpg" }, { "if": { @@ -211246,7 +211559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinamobile-d0af53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinamobile-d0af53.jpg" }, { "if": { @@ -211269,7 +211582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinaunicom-d0af53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinaunicom-d0af53.jpg" }, { "if": { @@ -211288,7 +211601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chunghwatelecom-4f600a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chunghwatelecom-4f600a.svg" }, { "if": { @@ -211307,7 +211620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanmobile-4f600a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanmobile-4f600a.jpg" }, { "if": { @@ -211330,7 +211643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smartone-063284.png" + "then": "https://data.mapcomplete.org/nsi//logos/smartone-063284.png" }, { "if": { @@ -211353,7 +211666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunmobile-d0af53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunmobile-d0af53.jpg" }, { "if": { @@ -211378,7 +211691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctm-37ccdd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ctm-37ccdd.jpg" }, { "if": { @@ -211397,7 +211710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fareastone-4f600a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fareastone-4f600a.jpg" }, { "if": { @@ -211412,7 +211725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boutiquegrandeslignes-b7c783.png" + "then": "https://data.mapcomplete.org/nsi//logos/boutiquegrandeslignes-b7c783.png" }, { "if": { @@ -211427,7 +211740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbreisezentrum-6b8984.png" + "then": "https://data.mapcomplete.org/nsi//logos/dbreisezentrum-6b8984.png" }, { "if": { @@ -211442,7 +211755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guichettransilien-b7c783.svg" + "then": "https://data.mapcomplete.org/nsi//logos/guichettransilien-b7c783.svg" }, { "if": { @@ -211457,7 +211770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ticketmaster-9f0b74.png" + "then": "https://data.mapcomplete.org/nsi//logos/ticketmaster-9f0b74.png" }, { "if": { @@ -211476,7 +211789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autolux-61cb58.png" + "then": "https://data.mapcomplete.org/nsi//logos/autolux-61cb58.png" }, { "if": { @@ -211493,7 +211806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fdbb92-14de12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fdbb92-14de12.jpg" }, { "if": { @@ -211512,7 +211825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jrticketoffice-c4f22d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jrticketoffice-c4f22d.jpg" }, { "if": { @@ -211527,7 +211840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amber-87a8ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amber-87a8ad.jpg" }, { "if": { @@ -211542,7 +211855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beaumonttiles-87a8ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/beaumonttiles-87a8ad.png" }, { "if": { @@ -211557,7 +211870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctdtiles-d8218f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ctdtiles-d8218f.jpg" }, { "if": { @@ -211572,7 +211885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctm-d2290b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ctm-d2290b.jpg" }, { "if": { @@ -211587,7 +211900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daltile-31ce31.png" + "then": "https://data.mapcomplete.org/nsi//logos/daltile-31ce31.png" }, { "if": { @@ -211602,7 +211915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interceramic-7c9f08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/interceramic-7c9f08.jpg" }, { "if": { @@ -211617,7 +211930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltiles-87a8ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltiles-87a8ad.png" }, { "if": { @@ -211632,7 +211945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porcelanosa-f63c78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porcelanosa-f63c78.jpg" }, { "if": { @@ -211647,7 +211960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thetileshop-0bf358.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thetileshop-0bf358.jpg" }, { "if": { @@ -211662,7 +211975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tileafrica-fd3228.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tileafrica-fd3228.jpg" }, { "if": { @@ -211677,7 +211990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tilegiant-d8218f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tilegiant-d8218f.jpg" }, { "if": { @@ -211692,7 +212005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toppstiles-d8218f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toppstiles-d8218f.jpg" }, { "if": { @@ -211707,7 +212020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nemzetidohanybolt-9778cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nemzetidohanybolt-9778cc.jpg" }, { "if": { @@ -211722,7 +212035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tzone-fbb387.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tzone-fbb387.jpg" }, { "if": { @@ -211737,7 +212050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/traficon-56156e.png" + "then": "https://data.mapcomplete.org/nsi//logos/traficon-56156e.png" }, { "if": { @@ -211752,7 +212065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boels-d0c09f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boels-d0c09f.jpg" }, { "if": { @@ -211767,7 +212080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brandonhirestation-92549b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brandonhirestation-92549b.jpg" }, { "if": { @@ -211782,7 +212095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/casadoconstrutor-a76fcc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/casadoconstrutor-a76fcc.jpg" }, { "if": { @@ -211797,7 +212110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hirebase-92549b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hirebase-92549b.jpg" }, { "if": { @@ -211812,7 +212125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsshire-a3cdb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsshire-a3cdb3.jpg" }, { "if": { @@ -211827,7 +212140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiloutou-d6c674.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiloutou-d6c674.jpg" }, { "if": { @@ -211842,7 +212155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libraryofthings-c10465.png" + "then": "https://data.mapcomplete.org/nsi//logos/libraryofthings-c10465.png" }, { "if": { @@ -211857,7 +212170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loxam-33fef8.png" + "then": "https://data.mapcomplete.org/nsi//logos/loxam-33fef8.png" }, { "if": { @@ -211872,7 +212185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedyhirecentre-92549b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/speedyhirecentre-92549b.jpg" }, { "if": { @@ -211887,7 +212200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/talismanhire-9933c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/talismanhire-9933c6.jpg" }, { "if": { @@ -211902,7 +212215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alltoys-72911e.png" + "then": "https://data.mapcomplete.org/nsi//logos/alltoys-72911e.png" }, { "if": { @@ -211917,7 +212230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americangirl-6aad54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americangirl-6aad54.jpg" }, { "if": { @@ -211932,7 +212245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bambule-259fba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bambule-259fba.jpg" }, { "if": { @@ -211947,7 +212260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bmart-9c99b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmart-9c99b8.jpg" }, { "if": { @@ -211963,7 +212276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bricksandminifigs-f7900c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bricksandminifigs-f7900c.jpg" }, { "if": { @@ -211978,7 +212291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buildabearworkshop-0e7d81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buildabearworkshop-0e7d81.jpg" }, { "if": { @@ -211993,7 +212306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cittadelsole-da26c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/cittadelsole-da26c5.png" }, { "if": { @@ -212008,7 +212321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dexyco-ea03fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dexyco-ea03fb.jpg" }, { "if": { @@ -212023,7 +212336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dracik-72911e.png" + "then": "https://data.mapcomplete.org/nsi//logos/dracik-72911e.png" }, { "if": { @@ -212039,7 +212352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/earlylearningcentre-f866de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/earlylearningcentre-f866de.jpg" }, { "if": { @@ -212054,7 +212367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giocheria-da26c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giocheria-da26c5.jpg" }, { "if": { @@ -212069,7 +212382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gogamesandtoys-6aad54.png" + "then": "https://data.mapcomplete.org/nsi//logos/gogamesandtoys-6aad54.png" }, { "if": { @@ -212084,7 +212397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamleys-2271ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamleys-2271ec.jpg" }, { "if": { @@ -212099,7 +212412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawkinsbazaar-f866de.png" + "then": "https://data.mapcomplete.org/nsi//logos/hawkinsbazaar-f866de.png" }, { "if": { @@ -212114,7 +212427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intertoys-741056.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intertoys-741056.jpg" }, { "if": { @@ -212129,7 +212442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joueclub-913d0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joueclub-913d0c.jpg" }, { "if": { @@ -212144,7 +212457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juguettos-fe170e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juguettos-fe170e.jpg" }, { "if": { @@ -212161,7 +212474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jumbo-643931.png" + "then": "https://data.mapcomplete.org/nsi//logos/jumbo-643931.png" }, { "if": { @@ -212176,7 +212489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kidstuff-e3e843.png" + "then": "https://data.mapcomplete.org/nsi//logos/kidstuff-e3e843.png" }, { "if": { @@ -212195,7 +212508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingjouet-7999e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingjouet-7999e4.jpg" }, { "if": { @@ -212210,7 +212523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lagranderecre-61c030.png" + "then": "https://data.mapcomplete.org/nsi//logos/lagranderecre-61c030.png" }, { "if": { @@ -212225,7 +212538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lego-80bf0f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lego-80bf0f.svg" }, { "if": { @@ -212240,7 +212553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lekia-77c96c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lekia-77c96c.jpg" }, { "if": { @@ -212255,7 +212568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mastermindtoys-64674c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mastermindtoys-64674c.jpg" }, { "if": { @@ -212270,7 +212583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mytoys-7f72cb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mytoys-7f72cb.svg" }, { "if": { @@ -212285,7 +212598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noriel-ec9991.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noriel-ec9991.jpg" }, { "if": { @@ -212300,7 +212613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxybul-e75a13.png" + "then": "https://data.mapcomplete.org/nsi//logos/oxybul-e75a13.png" }, { "if": { @@ -212315,7 +212628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/picwictoys-e75a13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/picwictoys-e75a13.jpg" }, { "if": { @@ -212330,7 +212643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pompo-72911e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pompo-72911e.jpg" }, { "if": { @@ -212345,23 +212658,23 @@ } ] }, - "then": "./assets/data/nsi/logos/popmart-e3e843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popmart-e3e843.jpg" }, { "if": { "and": [ - "official_name=Ri Happy Brinquedos", "shop=toys", { "or": [ "brand=Ri Happy Brinquedos", "brand:wikidata=Q10360441", - "name=Ri Happy" + "name=Ri Happy", + "official_name=Ri Happy Brinquedos" ] } ] }, - "then": "./assets/data/nsi/logos/rihappy-9c99b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rihappy-9c99b8.jpg" }, { "if": { @@ -212376,7 +212689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rofukinderland-7f72cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/rofukinderland-7f72cb.png" }, { "if": { @@ -212391,7 +212704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smyk-3d0b80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smyk-3d0b80.jpg" }, { "if": { @@ -212406,7 +212719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smyths-468a3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smyths-468a3c.jpg" }, { "if": { @@ -212421,7 +212734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spielemax-7f72cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spielemax-7f72cb.jpg" }, { "if": { @@ -212436,7 +212749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steiff-7f72cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steiff-7f72cb.jpg" }, { "if": { @@ -212451,7 +212764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theentertainer-6f40da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theentertainer-6f40da.jpg" }, { "if": { @@ -212466,7 +212779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toykingdom-7500f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toykingdom-7500f4.jpg" }, { "if": { @@ -212481,7 +212794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toykingdom-773eea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toykingdom-773eea.jpg" }, { "if": { @@ -212496,7 +212809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toychamp-5f5d6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toychamp-5f5d6c.jpg" }, { "if": { @@ -212511,7 +212824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toymaster-3a8f1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toymaster-3a8f1c.jpg" }, { "if": { @@ -212526,7 +212839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyscenter-da26c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/toyscenter-da26c5.png" }, { "if": { @@ -212541,7 +212854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-2ed13b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-2ed13b.jpg" }, { "if": { @@ -212556,7 +212869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-64674c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-64674c.svg" }, { "if": { @@ -212571,7 +212884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-ab089e.png" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-ab089e.png" }, { "if": { @@ -212586,7 +212899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-4c6a3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-4c6a3d.jpg" }, { "if": { @@ -212601,7 +212914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-f866de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-f866de.jpg" }, { "if": { @@ -212616,7 +212929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-6aad54.svg" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-6aad54.svg" }, { "if": { @@ -212631,7 +212944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toytown-f866de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toytown-f866de.jpg" }, { "if": { @@ -212646,7 +212959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyworld-03114e.png" + "then": "https://data.mapcomplete.org/nsi//logos/toyworld-03114e.png" }, { "if": { @@ -212661,7 +212974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyzzshop-a17e1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toyzzshop-a17e1f.jpg" }, { "if": { @@ -212676,7 +212989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyzzz-5fdd55.png" + "then": "https://data.mapcomplete.org/nsi//logos/toyzzz-5fdd55.png" }, { "if": { @@ -212691,7 +213004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wiky-259fba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wiky-259fba.jpg" }, { "if": { @@ -212710,7 +213023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xstoys-4c5a46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xstoys-4c5a46.jpg" }, { "if": { @@ -212727,7 +213040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/begemott-d68103.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/begemott-d68103.jpg" }, { "if": { @@ -212744,7 +213057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comsed-643931.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comsed-643931.jpg" }, { "if": { @@ -212761,7 +213074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/korablik-d68103.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/korablik-d68103.jpg" }, { "if": { @@ -212780,7 +213093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pepela-4c5a46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pepela-4c5a46.jpg" }, { "if": { @@ -212799,7 +213112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chita-4c5a46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chita-4c5a46.jpg" }, { "if": { @@ -212818,7 +213131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-ae2adc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-ae2adc.svg" }, { "if": { @@ -212837,7 +213150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/popmart-c090d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popmart-c090d5.jpg" }, { "if": { @@ -212856,7 +213169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-2dd0fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-2dd0fd.jpg" }, { "if": { @@ -212875,7 +213188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toysrus-3ab846.svg" + "then": "https://data.mapcomplete.org/nsi//logos/toysrus-3ab846.svg" }, { "if": { @@ -212891,7 +213204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/84lumber-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/84lumber-4e950c.jpg" }, { "if": { @@ -212906,7 +213219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abcsupply-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abcsupply-4e950c.jpg" }, { "if": { @@ -212922,7 +213235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altorfercat-786476.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altorfercat-786476.jpg" }, { "if": { @@ -212938,7 +213251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanroofingsupply-930674.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americanroofingsupply-930674.jpg" }, { "if": { @@ -212954,7 +213267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigmat-80a59f.png" + "then": "https://data.mapcomplete.org/nsi//logos/bigmat-80a59f.png" }, { "if": { @@ -212969,7 +213282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bmnbouwmaterialen-0777cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmnbouwmaterialen-0777cb.jpg" }, { "if": { @@ -212985,7 +213298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boydcat-d88071.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boydcat-d88071.jpg" }, { "if": { @@ -213001,7 +213314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bradfordsbuildingsupplies-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bradfordsbuildingsupplies-8a4d16.jpg" }, { "if": { @@ -213017,7 +213330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buildersfirstsource-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buildersfirstsource-4e950c.jpg" }, { "if": { @@ -213033,7 +213346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/builderstradedepot-c685bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/builderstradedepot-c685bf.png" }, { "if": { @@ -213049,7 +213362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/butlercat-39aa46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/butlercat-39aa46.jpg" }, { "if": { @@ -213063,7 +213376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byggern-db4f61.png" + "then": "https://data.mapcomplete.org/nsi//logos/byggern-db4f61.png" }, { "if": { @@ -213077,7 +213390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byggmakker-db4f61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/byggmakker-db4f61.jpg" }, { "if": { @@ -213091,7 +213404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/byggtorget-db4f61.png" + "then": "https://data.mapcomplete.org/nsi//logos/byggtorget-db4f61.png" }, { "if": { @@ -213107,7 +213420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalelectric-4e950c.png" + "then": "https://data.mapcomplete.org/nsi//logos/capitalelectric-4e950c.png" }, { "if": { @@ -213123,7 +213436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityplumbing-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityplumbing-8a4d16.jpg" }, { "if": { @@ -213139,7 +213452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codale-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/codale-4e950c.jpg" }, { "if": { @@ -213155,7 +213468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooperelectric-4e950c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cooperelectric-4e950c.png" }, { "if": { @@ -213171,7 +213484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coryselectrical-49357c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coryselectrical-49357c.jpg" }, { "if": { @@ -213187,7 +213500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crawford-4e950c.png" + "then": "https://data.mapcomplete.org/nsi//logos/crawford-4e950c.png" }, { "if": { @@ -213203,7 +213516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dek-8ec304.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dek-8ec304.jpg" }, { "if": { @@ -213218,7 +213531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edmundsonelectrical-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edmundsonelectrical-8a4d16.jpg" }, { "if": { @@ -213234,7 +213547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empirecat-e9f192.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/empirecat-e9f192.jpg" }, { "if": { @@ -213250,7 +213563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurocell-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurocell-8a4d16.jpg" }, { "if": { @@ -213266,7 +213579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fabickcat-755a12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fabickcat-755a12.jpg" }, { "if": { @@ -213281,7 +213594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastenal-e4a373.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastenal-e4a373.jpg" }, { "if": { @@ -213297,7 +213610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/felbermayr-26d55f.png" + "then": "https://data.mapcomplete.org/nsi//logos/felbermayr-26d55f.png" }, { "if": { @@ -213313,7 +213626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ferguson-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ferguson-4e950c.jpg" }, { "if": { @@ -213329,7 +213642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/finningcat-4e6583.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/finningcat-4e6583.jpg" }, { "if": { @@ -213344,7 +213657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gap-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gap-8a4d16.jpg" }, { "if": { @@ -213359,7 +213672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grainger-d18c79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grainger-d18c79.jpg" }, { "if": { @@ -213375,7 +213688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/graybar-d18c79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/graybar-d18c79.jpg" }, { "if": { @@ -213391,7 +213704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heatingplumbingsupplies-cf8c4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heatingplumbingsupplies-cf8c4d.jpg" }, { "if": { @@ -213407,7 +213720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huwsgray-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huwsgray-8a4d16.jpg" }, { "if": { @@ -213423,7 +213736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/independentelectric-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/independentelectric-4e950c.jpg" }, { "if": { @@ -213439,7 +213752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irby-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irby-4e950c.jpg" }, { "if": { @@ -213454,7 +213767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itm-49357c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itm-49357c.jpg" }, { "if": { @@ -213470,7 +213783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jarussel-49357c.png" + "then": "https://data.mapcomplete.org/nsi//logos/jarussel-49357c.png" }, { "if": { @@ -213486,7 +213799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jewson-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jewson-8a4d16.jpg" }, { "if": { @@ -213502,7 +213815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johndeere-d18c79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johndeere-d18c79.jpg" }, { "if": { @@ -213518,7 +213831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnstonesupply-4e950c.png" + "then": "https://data.mapcomplete.org/nsi//logos/johnstonesupply-4e950c.png" }, { "if": { @@ -213533,7 +213846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keyline-8a4d16.png" + "then": "https://data.mapcomplete.org/nsi//logos/keyline-8a4d16.png" }, { "if": { @@ -213548,7 +213861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lindeweldinggasandequipmentcenter-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lindeweldinggasandequipmentcenter-4e950c.jpg" }, { "if": { @@ -213564,7 +213877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisianacat-052d4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louisianacat-052d4d.jpg" }, { "if": { @@ -213580,7 +213893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macallistercat-d2d460.png" + "then": "https://data.mapcomplete.org/nsi//logos/macallistercat-d2d460.png" }, { "if": { @@ -213595,7 +213908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxbo-db4f61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxbo-db4f61.jpg" }, { "if": { @@ -213611,7 +213924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigancat-1363ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michigancat-1363ee.jpg" }, { "if": { @@ -213627,7 +213940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/middys-0432d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/middys-0432d4.jpg" }, { "if": { @@ -213642,7 +213955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monter-db4f61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monter-db4f61.jpg" }, { "if": { @@ -213658,7 +213971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/munchssupply-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/munchssupply-4e950c.jpg" }, { "if": { @@ -213674,7 +213987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mustangcat-f0929a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mustangcat-f0929a.jpg" }, { "if": { @@ -213690,7 +214003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ncmachinery-066ed1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ncmachinery-066ed1.jpg" }, { "if": { @@ -213706,7 +214019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nmccat-346f4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nmccat-346f4e.jpg" }, { "if": { @@ -213722,7 +214035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcoast-4e950c.png" + "then": "https://data.mapcomplete.org/nsi//logos/northcoast-4e950c.png" }, { "if": { @@ -213738,7 +214051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northeastelectrical-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northeastelectrical-4e950c.jpg" }, { "if": { @@ -213754,7 +214067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiocat-d88071.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiocat-d88071.jpg" }, { "if": { @@ -213770,7 +214083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onesource-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onesource-4e950c.jpg" }, { "if": { @@ -213786,7 +214099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/papemachineryagricultureandturf-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/papemachineryagricultureandturf-4e950c.jpg" }, { "if": { @@ -213802,7 +214115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/papemachineryconstructionandforestry-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/papemachineryconstructionandforestry-4e950c.jpg" }, { "if": { @@ -213819,7 +214132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parrlumber-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parrlumber-4e950c.jpg" }, { "if": { @@ -213835,7 +214148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petersoncat-a2ce56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petersoncat-a2ce56.jpg" }, { "if": { @@ -213851,7 +214164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plumbase-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plumbase-8a4d16.jpg" }, { "if": { @@ -213867,7 +214180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puckettcat-868049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puckettcat-868049.jpg" }, { "if": { @@ -213883,7 +214196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qed-4e950c.png" + "then": "https://data.mapcomplete.org/nsi//logos/qed-4e950c.png" }, { "if": { @@ -213899,7 +214212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quinncat-d6cd9f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/quinncat-d6cd9f.jpg" }, { "if": { @@ -213914,7 +214227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raabkarcher-c82403.svg" + "then": "https://data.mapcomplete.org/nsi//logos/raabkarcher-c82403.svg" }, { "if": { @@ -213929,7 +214242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/raiffeisenbaucenter-c82403.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raiffeisenbaucenter-c82403.jpg" }, { "if": { @@ -213944,7 +214257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rgbbuildingsupplies-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rgbbuildingsupplies-8a4d16.jpg" }, { "if": { @@ -213960,7 +214273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rplumber-ab5d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rplumber-ab5d0f.jpg" }, { "if": { @@ -213975,7 +214288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sigroofing-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sigroofing-8a4d16.jpg" }, { "if": { @@ -213991,7 +214304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldelectric-5a9be2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldelectric-5a9be2.jpg" }, { "if": { @@ -214007,7 +214320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stavmatepitoanyagkereskedelem-453975.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stavmatepitoanyagkereskedelem-453975.jpg" }, { "if": { @@ -214023,7 +214336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stavmatstavebniny-0d3493.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stavmatstavebniny-0d3493.jpg" }, { "if": { @@ -214039,7 +214352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stavmatstavebniny-a5bd5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stavmatstavebniny-a5bd5b.jpg" }, { "if": { @@ -214055,7 +214368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suparoof-c60415.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suparoof-c60415.jpg" }, { "if": { @@ -214071,7 +214384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thompsoncat-82599d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thompsoncat-82599d.jpg" }, { "if": { @@ -214087,7 +214400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thompsoncat-386127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thompsoncat-386127.jpg" }, { "if": { @@ -214103,7 +214416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toromontcat-321e1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toromontcat-321e1f.jpg" }, { "if": { @@ -214119,7 +214432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tractorandequipmentco-10c19f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tractorandequipmentco-10c19f.jpg" }, { "if": { @@ -214135,7 +214448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tradelink-0432d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tradelink-0432d4.jpg" }, { "if": { @@ -214151,7 +214464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tradepoint-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tradepoint-8a4d16.jpg" }, { "if": { @@ -214167,7 +214480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vallen-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vallen-4e950c.jpg" }, { "if": { @@ -214183,7 +214496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wagnercat-ca7f61.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wagnercat-ca7f61.jpg" }, { "if": { @@ -214199,7 +214512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warrencat-fc264f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warrencat-fc264f.jpg" }, { "if": { @@ -214215,7 +214528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernstatescat-8cb1bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westernstatescat-8cb1bb.jpg" }, { "if": { @@ -214231,7 +214544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wheelercat-753d55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wheelercat-753d55.jpg" }, { "if": { @@ -214247,7 +214560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wolseley-8a4d16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wolseley-8a4d16.jpg" }, { "if": { @@ -214263,7 +214576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldelectric-4e950c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldelectric-4e950c.jpg" }, { "if": { @@ -214278,7 +214591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xlbyg-bb375f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xlbyg-bb375f.jpg" }, { "if": { @@ -214293,7 +214606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xlbygg-14590b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xlbygg-14590b.jpg" }, { "if": { @@ -214309,7 +214622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeppelincat-a5bd5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeppelincat-a5bd5b.jpg" }, { "if": { @@ -214325,7 +214638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zieglercat-b606bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zieglercat-b606bc.jpg" }, { "if": { @@ -214340,7 +214653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adacgeschaftsstelle-3ea820.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adacgeschaftsstelle-3ea820.jpg" }, { "if": { @@ -214355,7 +214668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alltours-3ea820.png" + "then": "https://data.mapcomplete.org/nsi//logos/alltours-3ea820.png" }, { "if": { @@ -214371,7 +214684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanautomobileassociation-263985.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanautomobileassociation-263985.png" }, { "if": { @@ -214386,7 +214699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barrheadtravel-b1d32b.png" + "then": "https://data.mapcomplete.org/nsi//logos/barrheadtravel-b1d32b.png" }, { "if": { @@ -214401,7 +214714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cedok-5b7a02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cedok-5b7a02.jpg" }, { "if": { @@ -214416,7 +214729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubmed-9ff76a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubmed-9ff76a.jpg" }, { "if": { @@ -214431,7 +214744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruiseplanners-263985.png" + "then": "https://data.mapcomplete.org/nsi//logos/cruiseplanners-263985.png" }, { "if": { @@ -214446,7 +214759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cvc-48b489.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cvc-48b489.jpg" }, { "if": { @@ -214461,7 +214774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dreizen-9d1680.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dreizen-9d1680.jpg" }, { "if": { @@ -214476,7 +214789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derreiseburo-3ea820.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derreiseburo-3ea820.jpg" }, { "if": { @@ -214491,7 +214804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclerc-9ff76a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclerc-9ff76a.jpg" }, { "if": { @@ -214506,7 +214819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expediacruises-e2fbf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expediacruises-e2fbf2.jpg" }, { "if": { @@ -214521,7 +214834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flightcentre-9aaf3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flightcentre-9aaf3f.jpg" }, { "if": { @@ -214536,7 +214849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fram-94396d.png" + "then": "https://data.mapcomplete.org/nsi//logos/fram-94396d.png" }, { "if": { @@ -214551,7 +214864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halconviajes-7a9abd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halconviajes-7a9abd.jpg" }, { "if": { @@ -214566,7 +214879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/havasvoyages-9ff76a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/havasvoyages-9ff76a.jpg" }, { "if": { @@ -214581,7 +214894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haystravel-b1d32b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haystravel-b1d32b.jpg" }, { "if": { @@ -214596,7 +214909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helloworldtravel-b91cc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/helloworldtravel-b91cc8.jpg" }, { "if": { @@ -214611,7 +214924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotelplan-c09afe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotelplan-c09afe.jpg" }, { "if": { @@ -214626,7 +214939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houseoftravel-64ecef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houseoftravel-64ecef.jpg" }, { "if": { @@ -214641,7 +214954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydrotour-1d4025.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hydrotour-1d4025.jpg" }, { "if": { @@ -214656,7 +214969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invia-bc5dc6.png" + "then": "https://data.mapcomplete.org/nsi//logos/invia-bc5dc6.png" }, { "if": { @@ -214671,25 +214984,25 @@ } ] }, - "then": "./assets/data/nsi/logos/itaka-68492b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itaka-68492b.jpg" }, { "if": { "and": [ - "official_name=日本交通公社", - "official_name:en=Japan Travel Bureau", - "official_name:ja=日本交通公社", "shop=travel_agency", { "or": [ "brand=JTB", "brand:wikidata=Q6109053", - "name=JTB" + "name=JTB", + "official_name=日本交通公社", + "official_name:en=Japan Travel Bureau", + "official_name:ja=日本交通公社" ] } ] }, - "then": "./assets/data/nsi/logos/jtb-4b4d86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jtb-4b4d86.jpg" }, { "if": { @@ -214704,7 +215017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koalatours-1d4025.png" + "then": "https://data.mapcomplete.org/nsi//logos/koalatours-1d4025.png" }, { "if": { @@ -214719,7 +215032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuoni-9aaf3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kuoni-9aaf3f.jpg" }, { "if": { @@ -214734,7 +215047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lastminutetour-3832ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lastminutetour-3832ef.jpg" }, { "if": { @@ -214749,7 +215062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/libertytravel-263985.png" + "then": "https://data.mapcomplete.org/nsi//logos/libertytravel-263985.png" }, { "if": { @@ -214764,7 +215077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ltur-3ea820.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ltur-3ea820.jpg" }, { "if": { @@ -214779,7 +215092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milesmorgantravel-b1d32b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milesmorgantravel-b1d32b.jpg" }, { "if": { @@ -214794,7 +215107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neckermannreisen-3ea820.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/neckermannreisen-3ea820.jpg" }, { "if": { @@ -214809,7 +215122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nouvellesfrontieres-9ff76a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nouvellesfrontieres-9ff76a.jpg" }, { "if": { @@ -214824,7 +215137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/promovacances-94396d.png" + "then": "https://data.mapcomplete.org/nsi//logos/promovacances-94396d.png" }, { "if": { @@ -214839,7 +215152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rainbow-68492b.png" + "then": "https://data.mapcomplete.org/nsi//logos/rainbow-68492b.png" }, { "if": { @@ -214854,7 +215167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reiseland-3ea820.png" + "then": "https://data.mapcomplete.org/nsi//logos/reiseland-3ea820.png" }, { "if": { @@ -214869,7 +215182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ruefa-2db47e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ruefa-2db47e.png" }, { "if": { @@ -214884,7 +215197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/satur-1d4025.png" + "then": "https://data.mapcomplete.org/nsi//logos/satur-1d4025.png" }, { "if": { @@ -214899,7 +215212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selectair-36513c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selectair-36513c.jpg" }, { "if": { @@ -214914,7 +215227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selectour-9ff76a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selectour-9ff76a.jpg" }, { "if": { @@ -214929,7 +215242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senecatours-1d4025.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senecatours-1d4025.jpg" }, { "if": { @@ -214944,7 +215257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statravel-9aaf3f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/statravel-9aaf3f.svg" }, { "if": { @@ -214959,7 +215272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiptravel-1d4025.png" + "then": "https://data.mapcomplete.org/nsi//logos/tiptravel-1d4025.png" }, { "if": { @@ -214974,7 +215287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tui-b6aae0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tui-b6aae0.jpg" }, { "if": { @@ -214989,7 +215302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tui-b1d32b.png" + "then": "https://data.mapcomplete.org/nsi//logos/tui-b1d32b.png" }, { "if": { @@ -215004,7 +215317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuireisecenter-3ea820.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuireisecenter-3ea820.jpg" }, { "if": { @@ -215019,7 +215332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turancar-1d4025.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turancar-1d4025.jpg" }, { "if": { @@ -215034,7 +215347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkishairlines-9aaf3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkishairlines-9aaf3f.jpg" }, { "if": { @@ -215049,7 +215362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vakantiexperts-9d1680.png" + "then": "https://data.mapcomplete.org/nsi//logos/vakantiexperts-9d1680.png" }, { "if": { @@ -215064,7 +215377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viajeselcorteingles-d900b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/viajeselcorteingles-d900b5.jpg" }, { "if": { @@ -215079,7 +215392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wakacjepl-68492b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wakacjepl-68492b.jpg" }, { "if": { @@ -215096,7 +215409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yourcooptravel-61ce41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yourcooptravel-61ce41.jpg" }, { "if": { @@ -215115,7 +215428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ffa08a-09bdb9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ffa08a-09bdb9.jpg" }, { "if": { @@ -215135,13 +215448,11 @@ } ] }, - "then": "./assets/data/nsi/logos/his-4b4d86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/his-4b4d86.jpg" }, { "if": { "and": [ - "official_name=可樂旅遊旅行社", - "official_name:zh=可樂旅遊旅行社", "shop=travel_agency", { "or": [ @@ -215151,12 +215462,14 @@ "brand:zh=可樂旅遊", "name=可樂旅遊", "name:en=Cola Tour", - "name:zh=可樂旅遊" + "name:zh=可樂旅遊", + "official_name=可樂旅遊旅行社", + "official_name:zh=可樂旅遊旅行社" ] } ] }, - "then": "./assets/data/nsi/logos/colatour-6e2961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colatour-6e2961.jpg" }, { "if": { @@ -215182,12 +215495,11 @@ } ] }, - "then": "./assets/data/nsi/logos/nippontravelagency-4b4d86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nippontravelagency-4b4d86.jpg" }, { "if": { "and": [ - "official_name=易遊網旅行社", "shop=travel_agency", { "or": [ @@ -215197,12 +215509,13 @@ "brand:zh=易遊網", "name=易遊網", "name:en=ezTravel", - "name:zh=易遊網" + "name:zh=易遊網", + "official_name=易遊網旅行社" ] } ] }, - "then": "./assets/data/nsi/logos/eztravel-6e2961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eztravel-6e2961.jpg" }, { "if": { @@ -215221,12 +215534,11 @@ } ] }, - "then": "./assets/data/nsi/logos/southeasttravel-6e2961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southeasttravel-6e2961.jpg" }, { "if": { "and": [ - "official_name:en=Kinki Nippon Tourist", "shop=travel_agency", { "or": [ @@ -215236,18 +215548,17 @@ "brand:wikidata=Q11638632", "name=近畿日本ツーリスト", "name:en=KNT", - "name:ja=近畿日本ツーリスト" + "name:ja=近畿日本ツーリスト", + "official_name:en=Kinki Nippon Tourist" ] } ] }, - "then": "./assets/data/nsi/logos/knt-4b4d86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knt-4b4d86.jpg" }, { "if": { "and": [ - "official_name=雄獅旅行社", - "official_name:zh=雄獅旅行社", "shop=travel_agency", { "or": [ @@ -215257,12 +215568,14 @@ "brand:zh=雄獅旅遊", "name=雄獅旅遊", "name:en=Lion Travel", - "name:zh=雄獅旅遊" + "name:zh=雄獅旅遊", + "official_name=雄獅旅行社", + "official_name:zh=雄獅旅行社" ] } ] }, - "then": "./assets/data/nsi/logos/liontravel-6e2961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/liontravel-6e2961.jpg" }, { "if": { @@ -215277,7 +215590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daf-bb8fb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daf-bb8fb2.jpg" }, { "if": { @@ -215292,7 +215605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fuso-d61f35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fuso-d61f35.jpg" }, { "if": { @@ -215307,7 +215620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fuso-3d029c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fuso-3d029c.jpg" }, { "if": { @@ -215322,7 +215635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iveco-34d7c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iveco-34d7c0.jpg" }, { "if": { @@ -215337,7 +215650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peterbilt-bb8fb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peterbilt-bb8fb2.jpg" }, { "if": { @@ -215352,7 +215665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rushtruckcenters-5de9f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/rushtruckcenters-5de9f8.png" }, { "if": { @@ -215367,7 +215680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volvotrucks-bb8fb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volvotrucks-bb8fb2.jpg" }, { "if": { @@ -215382,7 +215695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daf-f0ee07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daf-f0ee07.jpg" }, { "if": { @@ -215397,7 +215710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fuso-cb3721.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fuso-cb3721.jpg" }, { "if": { @@ -215412,7 +215725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lovestruckcare-4e81eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/lovestruckcare-4e81eb.png" }, { "if": { @@ -215427,7 +215740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/man-bf6850.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/man-bf6850.jpg" }, { "if": { @@ -215442,7 +215755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rushtruckcenters-4e81eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/rushtruckcenters-4e81eb.png" }, { "if": { @@ -215457,7 +215770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedco-4e81eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/speedco-4e81eb.png" }, { "if": { @@ -215472,7 +215785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volvotrucks-f0ee07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volvotrucks-f0ee07.jpg" }, { "if": { @@ -215487,7 +215800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/advantage-d7c451.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/advantage-d7c451.jpg" }, { "if": { @@ -215502,7 +215815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliancetirecompany-1d5291.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliancetirecompany-1d5291.jpg" }, { "if": { @@ -215517,7 +215830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americantiredepot-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americantiredepot-db574d.jpg" }, { "if": { @@ -215532,7 +215845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apollotyres-1d5291.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apollotyres-1d5291.jpg" }, { "if": { @@ -215547,7 +215860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belletire-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belletire-db574d.jpg" }, { "if": { @@ -215562,7 +215875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigbrandtireandservice-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigbrandtireandservice-db574d.jpg" }, { "if": { @@ -215577,7 +215890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigotires-b51b37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bigotires-b51b37.jpg" }, { "if": { @@ -215592,7 +215905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bobjanetmarts-6139cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bobjanetmarts-6139cc.jpg" }, { "if": { @@ -215607,7 +215920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bridgestone-1d5291.png" + "then": "https://data.mapcomplete.org/nsi//logos/bridgestone-1d5291.png" }, { "if": { @@ -215622,7 +215935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commercialtire-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commercialtire-db574d.jpg" }, { "if": { @@ -215637,7 +215950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/continentalag-1d5291.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/continentalag-1d5291.jpg" }, { "if": { @@ -215652,7 +215965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coopertireandrubbercompany-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coopertireandrubbercompany-db574d.jpg" }, { "if": { @@ -215667,7 +215980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcotirecenter-b51b37.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcotirecenter-b51b37.svg" }, { "if": { @@ -215682,7 +215995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcotirecentre-20a245.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcotirecentre-20a245.svg" }, { "if": { @@ -215697,7 +216010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/discounttire-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/discounttire-db574d.jpg" }, { "if": { @@ -215712,7 +216025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drivercenter-54501e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drivercenter-54501e.jpg" }, { "if": { @@ -215727,7 +216040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunlop-975e12.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dunlop-975e12.svg" }, { "if": { @@ -215742,7 +216055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunlopsuperdealer-6139cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunlopsuperdealer-6139cc.jpg" }, { "if": { @@ -215757,7 +216070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunntire-c22d36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunntire-c22d36.jpg" }, { "if": { @@ -215773,7 +216086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ehrhardtreifenautoservice-24681a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ehrhardtreifenautoservice-24681a.jpg" }, { "if": { @@ -215788,7 +216101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurotyre-eb61ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurotyre-eb61ab.jpg" }, { "if": { @@ -215803,7 +216116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurotyre-e43dbb.png" + "then": "https://data.mapcomplete.org/nsi//logos/eurotyre-e43dbb.png" }, { "if": { @@ -215818,7 +216131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressoilchangeandtireengineers-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressoilchangeandtireengineers-db574d.jpg" }, { "if": { @@ -215833,7 +216146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fountaintire-20a245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fountaintire-20a245.jpg" }, { "if": { @@ -215848,7 +216161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaltire-20a245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaltire-20a245.jpg" }, { "if": { @@ -215863,7 +216176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lesschwabtirecenter-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lesschwabtirecenter-db574d.jpg" }, { "if": { @@ -215878,7 +216191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oktire-20a245.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oktire-20a245.jpg" }, { "if": { @@ -215893,7 +216206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pneuhage-24681a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pneuhage-24681a.jpg" }, { "if": { @@ -215908,7 +216221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/protyre-0f3cf4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/protyre-0f3cf4.jpg" }, { "if": { @@ -215923,7 +216236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/quickreifendiscount-24681a.png" + "then": "https://data.mapcomplete.org/nsi//logos/quickreifendiscount-24681a.png" }, { "if": { @@ -215938,7 +216251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reifencom-24681a.png" + "then": "https://data.mapcomplete.org/nsi//logos/reifencom-24681a.png" }, { "if": { @@ -215953,7 +216266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superdekk-8efefa.png" + "then": "https://data.mapcomplete.org/nsi//logos/superdekk-8efefa.png" }, { "if": { @@ -215972,7 +216285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigerwheelandtyre-54a38f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigerwheelandtyre-54a38f.jpg" }, { "if": { @@ -215987,7 +216300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirechoice-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tirechoice-db574d.jpg" }, { "if": { @@ -216002,7 +216315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirediscounters-db574d.png" + "then": "https://data.mapcomplete.org/nsi//logos/tirediscounters-db574d.png" }, { "if": { @@ -216017,7 +216330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirekingdom-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tirekingdom-db574d.jpg" }, { "if": { @@ -216032,7 +216345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirepros-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tirepros-db574d.jpg" }, { "if": { @@ -216047,7 +216360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirewarehouse-26b73d.png" + "then": "https://data.mapcomplete.org/nsi//logos/tirewarehouse-26b73d.png" }, { "if": { @@ -216062,7 +216375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiresplus-db574d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tiresplus-db574d.jpg" }, { "if": { @@ -216077,7 +216390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townfairtire-f05d93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townfairtire-f05d93.jpg" }, { "if": { @@ -216092,7 +216405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tyreplus-99cc81.png" + "then": "https://data.mapcomplete.org/nsi//logos/tyreplus-99cc81.png" }, { "if": { @@ -216107,7 +216420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tyrepower-6139cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tyrepower-6139cc.jpg" }, { "if": { @@ -216123,7 +216436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vergolst-24681a.png" + "then": "https://data.mapcomplete.org/nsi//logos/vergolst-24681a.png" }, { "if": { @@ -216138,7 +216451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vianor-1d5291.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vianor-1d5291.jpg" }, { "if": { @@ -216154,7 +216467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wheelworks-3f5c6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wheelworks-3f5c6c.jpg" }, { "if": { @@ -216171,7 +216484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koleso-c15d58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koleso-c15d58.jpg" }, { "if": { @@ -216190,7 +216503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirebank-f5977f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tirebank-f5977f.jpg" }, { "if": { @@ -216205,7 +216518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/godfreys-817a4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/godfreys-817a4b.png" }, { "if": { @@ -216220,7 +216533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karcher-11ac87.svg" + "then": "https://data.mapcomplete.org/nsi//logos/karcher-11ac87.svg" }, { "if": { @@ -216235,7 +216548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oreck-ded213.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oreck-ded213.jpg" }, { "if": { @@ -216250,7 +216563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vorwerk-11ac87.png" + "then": "https://data.mapcomplete.org/nsi//logos/vorwerk-11ac87.png" }, { "if": { @@ -216269,7 +216582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/100houselemon-e1b193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/100houselemon-e1b193.jpg" }, { "if": { @@ -216288,7 +216601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3coins-e1b193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3coins-e1b193.jpg" }, { "if": { @@ -216303,7 +216616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/99centsonlystores-c85191.svg" + "then": "https://data.mapcomplete.org/nsi//logos/99centsonlystores-c85191.svg" }, { "if": { @@ -216318,7 +216631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/99speedmart-14cb81.png" + "then": "https://data.mapcomplete.org/nsi//logos/99speedmart-14cb81.png" }, { "if": { @@ -216333,7 +216646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/action-ba0d1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/action-ba0d1d.png" }, { "if": { @@ -216348,7 +216661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandm-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandm-622078.jpg" }, { "if": { @@ -216363,7 +216676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandmbargains-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandmbargains-622078.jpg" }, { "if": { @@ -216378,7 +216691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandmhomestore-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandmhomestore-622078.jpg" }, { "if": { @@ -216393,7 +216706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandmhomestorewithgardencentre-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandmhomestorewithgardencentre-622078.jpg" }, { "if": { @@ -216408,7 +216721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bargainbuys-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bargainbuys-622078.jpg" }, { "if": { @@ -216423,7 +216736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bigbazar-8a7b93.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bigbazar-8a7b93.svg" }, { "if": { @@ -216438,7 +216751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centershop-9f9d31.png" + "then": "https://data.mapcomplete.org/nsi//logos/centershop-9f9d31.png" }, { "if": { @@ -216453,7 +216766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daiso-80c116.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daiso-80c116.jpg" }, { "if": { @@ -216469,7 +216782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daisojapan-5e5531.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daisojapan-5e5531.jpg" }, { "if": { @@ -216484,7 +216797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dealz-01f38b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dealz-01f38b.jpg" }, { "if": { @@ -216499,7 +216812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dgx-c85191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dgx-c85191.jpg" }, { "if": { @@ -216514,7 +216827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dirtcheap-c85191.png" + "then": "https://data.mapcomplete.org/nsi//logos/dirtcheap-c85191.png" }, { "if": { @@ -216529,7 +216842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollargeneral-c85191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dollargeneral-c85191.jpg" }, { "if": { @@ -216544,7 +216857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollartree-44cca6.png" + "then": "https://data.mapcomplete.org/nsi//logos/dollartree-44cca6.png" }, { "if": { @@ -216559,7 +216872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollarama-f36c63.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dollarama-f36c63.svg" }, { "if": { @@ -216574,7 +216887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollarcity-8f2567.png" + "then": "https://data.mapcomplete.org/nsi//logos/dollarcity-8f2567.png" }, { "if": { @@ -216589,7 +216902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dollarstore-aa81b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/dollarstore-aa81b7.png" }, { "if": { @@ -216604,7 +216917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dondondonki-717fd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dondondonki-717fd7.jpg" }, { "if": { @@ -216619,7 +216932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecoshop-14cb81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecoshop-14cb81.jpg" }, { "if": { @@ -216634,7 +216947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurogiant-d3831c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurogiant-d3831c.jpg" }, { "if": { @@ -216649,7 +216962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euroshop-9f9d31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/euroshop-9f9d31.jpg" }, { "if": { @@ -216664,7 +216977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familydollar-c85191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/familydollar-c85191.jpg" }, { "if": { @@ -216679,7 +216992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fivebelow-c85191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fivebelow-c85191.jpg" }, { "if": { @@ -216694,7 +217007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fixprice-95635e.png" + "then": "https://data.mapcomplete.org/nsi//logos/fixprice-95635e.png" }, { "if": { @@ -216710,7 +217023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyingtigercopenhagen-55ef00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flyingtigercopenhagen-55ef00.jpg" }, { "if": { @@ -216725,7 +217038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giantmini-14cb81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giantmini-14cb81.jpg" }, { "if": { @@ -216740,7 +217053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gifi-eed69a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gifi-eed69a.jpg" }, { "if": { @@ -216755,7 +217068,22 @@ } ] }, - "then": "./assets/data/nsi/logos/homebargains-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homebargains-622078.jpg" + }, + { + "if": { + "and": [ + "shop=variety_store", + { + "or": [ + "brand=Jawoll", + "brand:wikidata=Q65180661", + "name=Jawoll" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/jawoll-9f9d31.jpg" }, { "if": { @@ -216770,7 +217098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinekus-c029a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kinekus-c029a3.jpg" }, { "if": { @@ -216785,7 +217113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/krumet-9f9d31.png" + "then": "https://data.mapcomplete.org/nsi//logos/krumet-9f9d31.png" }, { "if": { @@ -216800,7 +217128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafoirfouille-ccd2d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/lafoirfouille-ccd2d5.png" }, { "if": { @@ -216815,7 +217143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macgeiz-9f9d31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macgeiz-9f9d31.jpg" }, { "if": { @@ -216832,7 +217160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxstock-5846c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxstock-5846c3.jpg" }, { "if": { @@ -216847,7 +217175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxibazar-efe747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxibazar-efe747.jpg" }, { "if": { @@ -216862,7 +217190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miniso-2aea30.png" + "then": "https://data.mapcomplete.org/nsi//logos/miniso-2aea30.png" }, { "if": { @@ -216877,7 +217205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrprice-d3831c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrprice-d3831c.jpg" }, { "if": { @@ -216892,7 +217220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrdollar-14cb81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mrdollar-14cb81.jpg" }, { "if": { @@ -216907,7 +217235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nille-1dc1f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nille-1dc1f6.jpg" }, { "if": { @@ -216922,7 +217250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ninso-14cb81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ninso-14cb81.jpg" }, { "if": { @@ -216937,7 +217265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noz-efe747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noz-efe747.jpg" }, { "if": { @@ -216953,7 +217281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oceanstatejoblot-c85191.png" + "then": "https://data.mapcomplete.org/nsi//logos/oceanstatejoblot-c85191.png" }, { "if": { @@ -216968,7 +217296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/offertissima-5f26ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/offertissima-5f26ca.jpg" }, { "if": { @@ -216984,7 +217312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olliesbargainoutlet-c85191.png" + "then": "https://data.mapcomplete.org/nsi//logos/olliesbargainoutlet-c85191.png" }, { "if": { @@ -216999,7 +217327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onebeyond-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onebeyond-622078.jpg" }, { "if": { @@ -217014,7 +217342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oob-aa81b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/oob-aa81b7.png" }, { "if": { @@ -217029,7 +217357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottos-793388.png" + "then": "https://data.mapcomplete.org/nsi//logos/ottos-793388.png" }, { "if": { @@ -217045,7 +217373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pantaitimormart-14cb81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pantaitimormart-14cb81.jpg" }, { "if": { @@ -217066,7 +217394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pasarekonomieconsave-14cb81.png" + "then": "https://data.mapcomplete.org/nsi//logos/pasarekonomieconsave-14cb81.png" }, { "if": { @@ -217081,7 +217409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfennigpfeiffer-9f9d31.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pfennigpfeiffer-9f9d31.svg" }, { "if": { @@ -217096,7 +217424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/popshelf-c85191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/popshelf-c85191.jpg" }, { "if": { @@ -217111,7 +217439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postenborse-9f9d31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postenborse-9f9d31.jpg" }, { "if": { @@ -217126,7 +217454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poundland-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poundland-622078.jpg" }, { "if": { @@ -217141,7 +217469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poundstretcher-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poundstretcher-622078.jpg" }, { "if": { @@ -217156,7 +217484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roses-c85191.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roses-c85191.jpg" }, { "if": { @@ -217171,7 +217499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rusta-426073.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rusta-426073.jpg" }, { "if": { @@ -217186,7 +217514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shiploads-c7d002.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shiploads-c7d002.jpg" }, { "if": { @@ -217201,7 +217529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stokomani-efe747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stokomani-efe747.jpg" }, { "if": { @@ -217216,7 +217544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tedi-8a061e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tedi-8a061e.jpg" }, { "if": { @@ -217236,7 +217564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thankyoumart-e1b193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thankyoumart-e1b193.jpg" }, { "if": { @@ -217251,7 +217579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/the99store-c85191.png" + "then": "https://data.mapcomplete.org/nsi//logos/the99store-c85191.png" }, { "if": { @@ -217266,7 +217594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecrazystore-0bcd25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecrazystore-0bcd25.jpg" }, { "if": { @@ -217281,7 +217609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theoriginalfactoryshop-622078.png" + "then": "https://data.mapcomplete.org/nsi//logos/theoriginalfactoryshop-622078.png" }, { "if": { @@ -217296,7 +217624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/therejectshop-c7d002.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/therejectshop-c7d002.jpg" }, { "if": { @@ -217311,7 +217639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thomasphilippssonderposten-9f9d31.svg" + "then": "https://data.mapcomplete.org/nsi//logos/thomasphilippssonderposten-9f9d31.svg" }, { "if": { @@ -217326,7 +217654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokmanni-c0b5b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/tokmanni-c0b5b4.png" }, { "if": { @@ -217341,7 +217669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topshop-f153f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/topshop-f153f8.png" }, { "if": { @@ -217356,7 +217684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waldos-072262.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waldos-072262.jpg" }, { "if": { @@ -217371,7 +217699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilko-622078.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilko-622078.jpg" }, { "if": { @@ -217386,7 +217714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wreesmann-9f9d31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wreesmann-9f9d31.jpg" }, { "if": { @@ -217401,7 +217729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4b0bb7-386db3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/4b0bb7-386db3.jpg" }, { "if": { @@ -217416,7 +217744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d2493c-386db3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d2493c-386db3.jpg" }, { "if": { @@ -217431,7 +217759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fd532c-386db3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fd532c-386db3.jpg" }, { "if": { @@ -217451,7 +217779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oneprice-15e116.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oneprice-15e116.jpg" }, { "if": { @@ -217469,7 +217797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yoyoso-15e116.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yoyoso-15e116.jpg" }, { "if": { @@ -217489,7 +217817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miniso-15e116.png" + "then": "https://data.mapcomplete.org/nsi//logos/miniso-15e116.png" }, { "if": { @@ -217507,7 +217835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fixprice-15e116.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fixprice-15e116.jpg" }, { "if": { @@ -217532,7 +217860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daiso-67f747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daiso-67f747.jpg" }, { "if": { @@ -217551,7 +217879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cando-e1b193.png" + "then": "https://data.mapcomplete.org/nsi//logos/cando-e1b193.png" }, { "if": { @@ -217570,7 +217898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seria-e1b193.svg" + "then": "https://data.mapcomplete.org/nsi//logos/seria-e1b193.svg" }, { "if": { @@ -217589,7 +217917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daiso-e1b193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daiso-e1b193.jpg" }, { "if": { @@ -217608,7 +217936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/direx-e1b193.svg" + "then": "https://data.mapcomplete.org/nsi//logos/direx-e1b193.svg" }, { "if": { @@ -217630,7 +217958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donquijote-e1b193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donquijote-e1b193.jpg" }, { "if": { @@ -217649,7 +217977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hands-e1b193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hands-e1b193.jpg" }, { "if": { @@ -217668,7 +217996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loft-e1b193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loft-e1b193.jpg" }, { "if": { @@ -217687,7 +218015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watts-e1b193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watts-e1b193.jpg" }, { "if": { @@ -217706,7 +218034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prizemart-cab585.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prizemart-cab585.jpg" }, { "if": { @@ -217725,7 +218053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuangnanfashionshop-501f06.png" + "then": "https://data.mapcomplete.org/nsi//logos/kuangnanfashionshop-501f06.png" }, { "if": { @@ -217745,7 +218073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hands-501f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hands-501f06.jpg" }, { "if": { @@ -217764,7 +218092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miniso-8e7978.png" + "then": "https://data.mapcomplete.org/nsi//logos/miniso-8e7978.png" }, { "if": { @@ -217787,7 +218115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miniso-264ade.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miniso-264ade.jpg" }, { "if": { @@ -217808,7 +218136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daiso-501f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daiso-501f06.jpg" }, { "if": { @@ -217833,12 +218161,11 @@ } ] }, - "then": "./assets/data/nsi/logos/showba-501f06.png" + "then": "https://data.mapcomplete.org/nsi//logos/showba-501f06.png" }, { "if": { "and": [ - "official_name:en=Ryohin Keikaku", "shop=variety_store", { "or": [ @@ -217848,12 +218175,13 @@ "brand:wikidata=Q708789", "name=無印良品", "name:en=MUJI", - "name:ja=無印良品" + "name:ja=無印良品", + "official_name:en=Ryohin Keikaku" ] } ] }, - "then": "./assets/data/nsi/logos/muji-e1b193.svg" + "then": "https://data.mapcomplete.org/nsi//logos/muji-e1b193.svg" }, { "if": { @@ -217868,7 +218196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blockbuster-a348eb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/blockbuster-a348eb.svg" }, { "if": { @@ -217883,7 +218211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/familyvideo-85c994.png" + "then": "https://data.mapcomplete.org/nsi//logos/familyvideo-85c994.png" }, { "if": { @@ -217898,7 +218226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tsutaya-a348eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/tsutaya-a348eb.png" }, { "if": { @@ -217913,7 +218241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brloh-e468df.png" + "then": "https://data.mapcomplete.org/nsi//logos/brloh-e468df.png" }, { "if": { @@ -217928,7 +218256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ebgames-be6d96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ebgames-be6d96.jpg" }, { "if": { @@ -217943,7 +218271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/game-b2f4fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/game-b2f4fe.png" }, { "if": { @@ -217958,7 +218286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gamemania-350fba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gamemania-350fba.jpg" }, { "if": { @@ -217973,7 +218301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gamestop-e24f8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/gamestop-e24f8b.png" }, { "if": { @@ -217988,7 +218316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/micromania-bf0c2b.png" + "then": "https://data.mapcomplete.org/nsi//logos/micromania-bf0c2b.png" }, { "if": { @@ -218003,7 +218331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/playgosmart-e468df.png" + "then": "https://data.mapcomplete.org/nsi//logos/playgosmart-e468df.png" }, { "if": { @@ -218018,7 +218346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alangeandsohne-101248.png" + "then": "https://data.mapcomplete.org/nsi//logos/alangeandsohne-101248.png" }, { "if": { @@ -218033,7 +218361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/audemarspiguet-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/audemarspiguet-101248.jpg" }, { "if": { @@ -218048,7 +218376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baumeandmercier-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baumeandmercier-101248.jpg" }, { "if": { @@ -218063,7 +218391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/breitling-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/breitling-101248.jpg" }, { "if": { @@ -218078,7 +218406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastrack-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastrack-101248.jpg" }, { "if": { @@ -218093,7 +218421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fossil-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fossil-101248.jpg" }, { "if": { @@ -218108,7 +218436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iwc-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iwc-101248.jpg" }, { "if": { @@ -218123,7 +218451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jaegerlecoultre-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jaegerlecoultre-101248.jpg" }, { "if": { @@ -218138,7 +218466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justwatches-3643f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/justwatches-3643f6.jpg" }, { "if": { @@ -218153,7 +218481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longines-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longines-101248.jpg" }, { "if": { @@ -218168,7 +218496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montresandco-db30b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/montresandco-db30b7.png" }, { "if": { @@ -218183,7 +218511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/movado-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/movado-101248.jpg" }, { "if": { @@ -218198,7 +218526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omega-c9e7be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omega-c9e7be.jpg" }, { "if": { @@ -218213,7 +218541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panerai-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panerai-101248.jpg" }, { "if": { @@ -218228,7 +218556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patekphilippe-101248.png" + "then": "https://data.mapcomplete.org/nsi//logos/patekphilippe-101248.png" }, { "if": { @@ -218243,7 +218571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rogerdubuis-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rogerdubuis-101248.jpg" }, { "if": { @@ -218258,7 +218586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rolex-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rolex-101248.jpg" }, { "if": { @@ -218273,7 +218601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seiko-101248.svg" + "then": "https://data.mapcomplete.org/nsi//logos/seiko-101248.svg" }, { "if": { @@ -218288,7 +218616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swatch-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swatch-101248.jpg" }, { "if": { @@ -218303,7 +218631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tagheuer-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tagheuer-101248.jpg" }, { "if": { @@ -218318,7 +218646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tissot-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tissot-101248.jpg" }, { "if": { @@ -218333,7 +218661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tourneau-b9b74c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tourneau-b9b74c.jpg" }, { "if": { @@ -218348,7 +218676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vacheronconstantin-101248.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vacheronconstantin-101248.jpg" }, { "if": { @@ -218367,7 +218695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citychain-301c40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citychain-301c40.jpg" }, { "if": { @@ -218386,7 +218714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omega-410977.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omega-410977.jpg" }, { "if": { @@ -218401,7 +218729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestway-650ac6.png" + "then": "https://data.mapcomplete.org/nsi//logos/bestway-650ac6.png" }, { "if": { @@ -218416,7 +218744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bjswholesaleclub-98b10d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bjswholesaleclub-98b10d.jpg" }, { "if": { @@ -218431,7 +218759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bookerwholesale-650ac6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bookerwholesale-650ac6.jpg" }, { "if": { @@ -218446,7 +218774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chefstore-98b10d.png" + "then": "https://data.mapcomplete.org/nsi//logos/chefstore-98b10d.png" }, { "if": { @@ -218461,7 +218789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityclub-8c6923.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityclub-8c6923.png" }, { "if": { @@ -218476,7 +218804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costco-69a5bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costco-69a5bf.svg" }, { "if": { @@ -218491,7 +218819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costcobusinesscenter-a788d2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costcobusinesscenter-a788d2.svg" }, { "if": { @@ -218506,7 +218834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edekaccgrossmarkt-ad6aeb.png" + "then": "https://data.mapcomplete.org/nsi//logos/edekaccgrossmarkt-ad6aeb.png" }, { "if": { @@ -218521,7 +218849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edekafoodservice-ad6aeb.png" + "then": "https://data.mapcomplete.org/nsi//logos/edekafoodservice-ad6aeb.png" }, { "if": { @@ -218536,7 +218864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortatacadista-60dbb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortatacadista-60dbb1.jpg" }, { "if": { @@ -218551,7 +218879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fozzy-df0f6a.png" + "then": "https://data.mapcomplete.org/nsi//logos/fozzy-df0f6a.png" }, { "if": { @@ -218567,7 +218895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gigaboks-2d84b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/gigaboks-2d84b8.png" }, { "if": { @@ -218582,7 +218910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handelshof-ad6aeb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/handelshof-ad6aeb.svg" }, { "if": { @@ -218597,7 +218925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/makro-66b455.png" + "then": "https://data.mapcomplete.org/nsi//logos/makro-66b455.png" }, { "if": { @@ -218612,7 +218940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mastermate-055f9a.png" + "then": "https://data.mapcomplete.org/nsi//logos/mastermate-055f9a.png" }, { "if": { @@ -218627,7 +218955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-09b7b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-09b7b7.svg" }, { "if": { @@ -218642,7 +218970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-551edc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-551edc.svg" }, { "if": { @@ -218658,7 +218986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandrmembershipshopping-fc4d00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandrmembershipshopping-fc4d00.jpg" }, { "if": { @@ -218673,7 +219001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samsclub-56e252.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samsclub-56e252.jpg" }, { "if": { @@ -218688,7 +219016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selgros-8ea7cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selgros-8ea7cd.jpg" }, { "if": { @@ -218703,7 +219031,23 @@ } ] }, - "then": "./assets/data/nsi/logos/sligro-fb1de0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sligro-fb1de0.jpg" + }, + { + "if": { + "and": [ + "shop=wholesale", + "wholesale=food", + { + "or": [ + "brand=Transgourmet", + "brand:wikidata=Q2448805", + "name=Transgourmet" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/transgourmet-4d1ebd.jpg" }, { "if": { @@ -218722,7 +219066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jibe-c6ef46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jibe-c6ef46.jpg" }, { "if": { @@ -218741,7 +219085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/makro-1d3c91.png" + "then": "https://data.mapcomplete.org/nsi//logos/makro-1d3c91.png" }, { "if": { @@ -218760,7 +219104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costco-db891f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costco-db891f.svg" }, { "if": { @@ -218779,7 +219123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costco-1d0072.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costco-1d0072.svg" }, { "if": { @@ -218798,7 +219142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samsclub-596e18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samsclub-596e18.jpg" }, { "if": { @@ -218817,7 +219161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/costco-596e18.svg" + "then": "https://data.mapcomplete.org/nsi//logos/costco-596e18.svg" }, { "if": { @@ -218836,7 +219180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-596e18.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metro-596e18.svg" }, { "if": { @@ -218851,7 +219195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blindstogo-d1c49c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blindstogo-d1c49c.jpg" }, { "if": { @@ -218866,7 +219210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hunterdouglasgallery-5ccc57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hunterdouglasgallery-5ccc57.jpg" }, { "if": { @@ -218881,7 +219225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jaloucity-197183.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jaloucity-197183.jpg" }, { "if": { @@ -218898,7 +219242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kamax-62c6fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/kamax-62c6fd.png" }, { "if": { @@ -218913,7 +219257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lemarchedustore-4eac4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lemarchedustore-4eac4b.jpg" }, { "if": { @@ -218928,7 +219272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monsieurstore-f9190c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monsieurstore-f9190c.jpg" }, { "if": { @@ -218943,7 +219287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theshadestore-b52314.png" + "then": "https://data.mapcomplete.org/nsi//logos/theshadestore-b52314.png" }, { "if": { @@ -218958,7 +219302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacquesweindepot-f93b7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/jacquesweindepot-f93b7c.png" }, { "if": { @@ -218973,7 +219317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okwine-fd1c0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/okwine-fd1c0f.png" }, { "if": { @@ -218987,7 +219331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rindchensweinkontor-074acf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rindchensweinkontor-074acf.jpg" }, { "if": { @@ -219002,7 +219346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winetime-fd1c0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winetime-fd1c0f.jpg" }, { "if": { @@ -219018,7 +219362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/big4holidayparks-50f355.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/big4holidayparks-50f355.jpg" }, { "if": { @@ -219034,7 +219378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koaholiday-c4d1c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koaholiday-c4d1c5.jpg" }, { "if": { @@ -219050,7 +219394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koajourney-c4d1c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koajourney-c4d1c5.jpg" }, { "if": { @@ -219067,7 +219411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koakampground-c4d1c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koakampground-c4d1c5.jpg" }, { "if": { @@ -219083,7 +219427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koaresort-c4d1c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koaresort-c4d1c5.jpg" }, { "if": { @@ -219098,7 +219442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkdeanresorts-74ea6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkdeanresorts-74ea6b.jpg" }, { "if": { @@ -219113,23 +219457,23 @@ } ] }, - "then": "./assets/data/nsi/logos/thousandtrails-fbab9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thousandtrails-fbab9d.jpg" }, { "if": { "and": [ - "official_name=Yogi Bear's Jellystone Park Camp-Resorts", "tourism=caravan_site", { "or": [ "brand=Yogi Bear's Jellystone Park", "brand:wikidata=Q8054389", - "name=Yogi Bear's Jellystone Park" + "name=Yogi Bear's Jellystone Park", + "official_name=Yogi Bear's Jellystone Park Camp-Resorts" ] } ] }, - "then": "./assets/data/nsi/logos/yogibearsjellystonepark-c4d1c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yogibearsjellystonepark-c4d1c5.jpg" }, { "if": { @@ -219144,7 +219488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aando-a930a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/aando-a930a5.png" }, { "if": { @@ -219159,7 +219503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschesjugendherbergswerk-cce0bb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschesjugendherbergswerk-cce0bb.svg" }, { "if": { @@ -219174,7 +219518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forenomhostel-8d88d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forenomhostel-8d88d8.jpg" }, { "if": { @@ -219189,7 +219533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ostellobello-e267c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ostellobello-e267c5.jpg" }, { "if": { @@ -219204,7 +219548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stchristophersinn-40879e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stchristophersinn-40879e.jpg" }, { "if": { @@ -219219,7 +219563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stayokay-1b493a.png" + "then": "https://data.mapcomplete.org/nsi//logos/stayokay-1b493a.png" }, { "if": { @@ -219234,7 +219578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stf-e1d194.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stf-e1d194.jpg" }, { "if": { @@ -219249,7 +219593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thepeople-f13219.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thepeople-f13219.jpg" }, { "if": { @@ -219264,7 +219608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yha-99878c.png" + "then": "https://data.mapcomplete.org/nsi//logos/yha-99878c.png" }, { "if": { @@ -219283,7 +219627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9hninehours-81b07a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9hninehours-81b07a.jpg" }, { "if": { @@ -219298,7 +219642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aando-7ebc01.png" + "then": "https://data.mapcomplete.org/nsi//logos/aando-7ebc01.png" }, { "if": { @@ -219313,7 +219657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/achotel-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/achotel-779ccb.png" }, { "if": { @@ -219328,7 +219672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adagio-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adagio-779ccb.jpg" }, { "if": { @@ -219343,23 +219687,23 @@ } ] }, - "then": "./assets/data/nsi/logos/adinaapartmenthotel-a6b67a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adinaapartmenthotel-a6b67a.jpg" }, { "if": { "and": [ - "official_name=Aiden by Best Western", "tourism=hotel", { "or": [ "brand=Aiden", "brand:wikidata=Q830334", - "name=Aiden" + "name=Aiden", + "official_name=Aiden by Best Western" ] } ] }, - "then": "./assets/data/nsi/logos/aiden-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aiden-779ccb.jpg" }, { "if": { @@ -219374,7 +219718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akena-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akena-89858b.jpg" }, { "if": { @@ -219389,7 +219733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akzenthotels-2d87b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akzenthotels-2d87b5.jpg" }, { "if": { @@ -219404,7 +219748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alila-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alila-779ccb.jpg" }, { "if": { @@ -219419,7 +219763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allegrohotels-ba2369.png" + "then": "https://data.mapcomplete.org/nsi//logos/allegrohotels-ba2369.png" }, { "if": { @@ -219434,7 +219778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aloft-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aloft-779ccb.jpg" }, { "if": { @@ -219449,23 +219793,23 @@ } ] }, - "then": "./assets/data/nsi/logos/alua-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alua-779ccb.jpg" }, { "if": { "and": [ - "official_name=AmericInn by Wyndham", "tourism=hotel", { "or": [ "brand=AmericInn", "brand:wikidata=Q4742493", - "name=AmericInn" + "name=AmericInn", + "official_name=AmericInn by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/americinn-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americinn-6ac210.jpg" }, { "if": { @@ -219480,7 +219824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anantara-e8534c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anantara-e8534c.jpg" }, { "if": { @@ -219495,7 +219839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andaz-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andaz-779ccb.jpg" }, { "if": { @@ -219510,7 +219854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appartcity-9faf0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/appartcity-9faf0b.jpg" }, { "if": { @@ -219525,7 +219869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/artotel-04ab8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/artotel-04ab8e.jpg" }, { "if": { @@ -219540,7 +219884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aturahotels-a311b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aturahotels-a311b9.jpg" }, { "if": { @@ -219554,7 +219898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autographcollection-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autographcollection-779ccb.jpg" }, { "if": { @@ -219569,7 +219913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avanihotelsandresorts-e9c192.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avanihotelsandresorts-e9c192.jpg" }, { "if": { @@ -219584,7 +219928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avidhotel-29a1d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avidhotel-29a1d7.jpg" }, { "if": { @@ -219599,7 +219943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayenda-a895b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayenda-a895b0.png" }, { "if": { @@ -219614,7 +219958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/azimut-9679cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/azimut-9679cc.png" }, { "if": { @@ -219629,7 +219973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bandbhotel-fc8c2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bandbhotel-fc8c2c.jpg" }, { "if": { @@ -219644,7 +219988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/balladins-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/balladins-89858b.jpg" }, { "if": { @@ -219659,7 +220003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banyantree-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banyantree-779ccb.jpg" }, { "if": { @@ -219674,7 +220018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barcelohotelsandresorts-302c40.png" + "then": "https://data.mapcomplete.org/nsi//logos/barcelohotelsandresorts-302c40.png" }, { "if": { @@ -219689,23 +220033,23 @@ } ] }, - "then": "./assets/data/nsi/logos/bastionhotel-a4f814.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bastionhotel-a4f814.jpg" }, { "if": { "and": [ - "official_name=Baymont by Wyndham", "tourism=hotel", { "or": [ "brand=Baymont", "brand:wikidata=Q4874634", - "name=Baymont" + "name=Baymont", + "official_name=Baymont by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/baymont-29a1d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baymont-29a1d7.jpg" }, { "if": { @@ -219720,7 +220064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belmond-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belmond-779ccb.jpg" }, { "if": { @@ -219735,7 +220079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/best-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/best-779ccb.png" }, { "if": { @@ -219750,7 +220094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestwestern-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bestwestern-779ccb.jpg" }, { "if": { @@ -219765,7 +220109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestwesternpremier-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bestwesternpremier-779ccb.jpg" }, { "if": { @@ -219780,7 +220124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bloomhotel-b22a38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bloomhotel-b22a38.jpg" }, { "if": { @@ -219795,7 +220139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brithotel-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brithotel-89858b.jpg" }, { "if": { @@ -219810,7 +220154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britanniahotels-3fca16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/britanniahotels-3fca16.jpg" }, { "if": { @@ -219825,7 +220169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bulgari-a1f85a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bulgari-a1f85a.jpg" }, { "if": { @@ -219840,7 +220184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bwpremiercollection-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bwpremiercollection-779ccb.jpg" }, { "if": { @@ -219855,7 +220199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bwsignaturecollection-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bwsignaturecollection-779ccb.jpg" }, { "if": { @@ -219870,7 +220214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cambriahotel-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cambriahotel-6ac210.jpg" }, { "if": { @@ -219885,7 +220229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/campanile-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/campanile-779ccb.png" }, { "if": { @@ -219900,23 +220244,23 @@ } ] }, - "then": "./assets/data/nsi/logos/candlewoodsuites-29a1d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/candlewoodsuites-29a1d7.png" }, { "if": { "and": [ - "official_name=Canopy by Hilton", "tourism=hotel", { "or": [ "brand=Canopy", "brand:wikidata=Q30632909", - "name=Canopy" + "name=Canopy", + "official_name=Canopy by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/canopy-523ceb.png" + "then": "https://data.mapcomplete.org/nsi//logos/canopy-523ceb.png" }, { "if": { @@ -219931,7 +220275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catalonia-c47ceb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/catalonia-c47ceb.jpg" }, { "if": { @@ -219946,7 +220290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centrohotel-2d87b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centrohotel-2d87b5.jpg" }, { "if": { @@ -219961,7 +220305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citizenm-b4d29c.png" + "then": "https://data.mapcomplete.org/nsi//logos/citizenm-b4d29c.png" }, { "if": { @@ -219976,7 +220320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarion-f371eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/clarion-f371eb.png" }, { "if": { @@ -219991,7 +220335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarionpointe-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarionpointe-6ac210.jpg" }, { "if": { @@ -220006,7 +220350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubmed-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubmed-779ccb.jpg" }, { "if": { @@ -220021,7 +220365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubwyndham-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clubwyndham-779ccb.jpg" }, { "if": { @@ -220036,7 +220380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comfortinn-134d5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comfortinn-134d5e.jpg" }, { "if": { @@ -220051,7 +220395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comfortinnandsuites-cf4e07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comfortinnandsuites-cf4e07.jpg" }, { "if": { @@ -220066,7 +220410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conrad-ee1a43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conrad-ee1a43.jpg" }, { "if": { @@ -220081,23 +220425,23 @@ } ] }, - "then": "./assets/data/nsi/logos/countryinnandsuites-aef9ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/countryinnandsuites-aef9ff.jpg" }, { "if": { "and": [ - "official_name=Courtyard by Marriott", "tourism=hotel", { "or": [ "brand=Courtyard", "brand:wikidata=Q1053170", - "name=Courtyard" + "name=Courtyard", + "official_name=Courtyard by Marriott" ] } ] }, - "then": "./assets/data/nsi/logos/courtyard-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/courtyard-779ccb.png" }, { "if": { @@ -220112,7 +220456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crowneplaza-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crowneplaza-779ccb.jpg" }, { "if": { @@ -220126,23 +220470,23 @@ } ] }, - "then": "./assets/data/nsi/logos/curiocollection-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/curiocollection-779ccb.jpg" }, { "if": { "and": [ - "official_name=Days Inn by Wyndham", "tourism=hotel", { "or": [ "brand=Days Inn", "brand:wikidata=Q1047239", - "name=Days Inn" + "name=Days Inn", + "official_name=Days Inn by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/daysinn-6df761.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daysinn-6df761.jpg" }, { "if": { @@ -220157,7 +220501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deltahotels-c8d055.png" + "then": "https://data.mapcomplete.org/nsi//logos/deltahotels-c8d055.png" }, { "if": { @@ -220172,23 +220516,23 @@ } ] }, - "then": "./assets/data/nsi/logos/designhotels-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/designhotels-779ccb.jpg" }, { "if": { "and": [ - "official_name=Destination Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Destination by Hyatt", "brand:wikidata=Q5265133", - "name=Destination by Hyatt" + "name=Destination by Hyatt", + "official_name=Destination Hotels & Resorts" ] } ] }, - "then": "./assets/data/nsi/logos/destinationbyhyatt-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/destinationbyhyatt-779ccb.png" }, { "if": { @@ -220203,7 +220547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diamondresorts-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diamondresorts-779ccb.jpg" }, { "if": { @@ -220218,23 +220562,23 @@ } ] }, - "then": "./assets/data/nsi/logos/dorint-be5b30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorint-be5b30.jpg" }, { "if": { "and": [ - "official_name=DoubleTree by Hilton", "tourism=hotel", { "or": [ "brand=DoubleTree", "brand:wikidata=Q2504643", - "name=DoubleTree" + "name=DoubleTree", + "official_name=DoubleTree by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/doubletree-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/doubletree-779ccb.jpg" }, { "if": { @@ -220249,7 +220593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/druryinnandsuites-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/druryinnandsuites-6ac210.jpg" }, { "if": { @@ -220264,7 +220608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easyhotel-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easyhotel-779ccb.jpg" }, { "if": { @@ -220279,23 +220623,23 @@ } ] }, - "then": "./assets/data/nsi/logos/edition-24940c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edition-24940c.jpg" }, { "if": { "and": [ - "official_name=Eko Hotels and Suites", "tourism=hotel", { "or": [ "brand=Eko Hotels and Suites", "brand:wikidata=Q23777901", - "name=Eko Hotels" + "name=Eko Hotels", + "official_name=Eko Hotels and Suites" ] } ] }, - "then": "./assets/data/nsi/logos/ekohotels-3e7857.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekohotels-3e7857.jpg" }, { "if": { @@ -220310,23 +220654,23 @@ } ] }, - "then": "./assets/data/nsi/logos/element-6dd642.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/element-6dd642.jpg" }, { "if": { "and": [ - "official_name=Embassy Suites by Hilton", "tourism=hotel", { "or": [ "brand=Embassy Suites", "brand:wikidata=Q5369524", - "name=Embassy Suites" + "name=Embassy Suites", + "official_name=Embassy Suites by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/embassysuites-c158ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/embassysuites-c158ff.jpg" }, { "if": { @@ -220341,7 +220685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurostars-4dcf5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eurostars-4dcf5e.jpg" }, { "if": { @@ -220356,7 +220700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evenhotel-a857f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evenhotel-a857f2.jpg" }, { "if": { @@ -220371,7 +220715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exe-312633.png" + "then": "https://data.mapcomplete.org/nsi//logos/exe-312633.png" }, { "if": { @@ -220386,39 +220730,39 @@ } ] }, - "then": "./assets/data/nsi/logos/extendedstayamerica-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/extendedstayamerica-6ac210.jpg" }, { "if": { "and": [ - "official_name=Fairfield by Marriott", "tourism=hotel", { "or": [ "brand=Fairfield Inn", "brand:wikidata=Q5430314", - "name=Fairfield Inn" + "name=Fairfield Inn", + "official_name=Fairfield by Marriott" ] } ] }, - "then": "./assets/data/nsi/logos/fairfieldinn-b80dae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fairfieldinn-b80dae.jpg" }, { "if": { "and": [ - "official_name=Fairfield Inn & Suites by Marriott", "tourism=hotel", { "or": [ "brand=Fairfield Inn & Suites", "brand:wikidata=Q5430314", - "name=Fairfield Inn & Suites" + "name=Fairfield Inn & Suites", + "official_name=Fairfield Inn & Suites by Marriott" ] } ] }, - "then": "./assets/data/nsi/logos/fairfieldinnandsuites-29a1d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fairfieldinnandsuites-29a1d7.jpg" }, { "if": { @@ -220433,7 +220777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fairmont-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fairmont-779ccb.jpg" }, { "if": { @@ -220448,7 +220792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fasthotel-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fasthotel-89858b.jpg" }, { "if": { @@ -220462,7 +220806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firsthotels-ed076a.png" + "then": "https://data.mapcomplete.org/nsi//logos/firsthotels-ed076a.png" }, { "if": { @@ -220477,7 +220821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flairhotel-2d87b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flairhotel-2d87b5.jpg" }, { "if": { @@ -220492,7 +220836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fletcherhotel-a4f814.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fletcherhotel-a4f814.jpg" }, { "if": { @@ -220508,7 +220852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fourpointsbysheraton-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fourpointsbysheraton-779ccb.jpg" }, { "if": { @@ -220523,7 +220867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fourseasons-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fourseasons-779ccb.jpg" }, { "if": { @@ -220538,23 +220882,23 @@ } ] }, - "then": "./assets/data/nsi/logos/gaylord-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gaylord-6ac210.jpg" }, { "if": { "and": [ - "official_name=Glo Best Western", "tourism=hotel", { "or": [ "brand=Glo", "brand:wikidata=Q830334", - "name=Glo" + "name=Glo", + "official_name=Glo Best Western" ] } ] }, - "then": "./assets/data/nsi/logos/glo-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glo-779ccb.jpg" }, { "if": { @@ -220569,23 +220913,23 @@ } ] }, - "then": "./assets/data/nsi/logos/goldentulip-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/goldentulip-779ccb.png" }, { "if": { "and": [ - "official_name=Graduate Hotels", "tourism=hotel", { "or": [ "brand=Graduate", "brand:wikidata=Q85846030", - "name=Graduate" + "name=Graduate", + "official_name=Graduate Hotels" ] } ] }, - "then": "./assets/data/nsi/logos/graduate-7e47e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/graduate-7e47e0.jpg" }, { "if": { @@ -220601,7 +220945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greeneking-3fca16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greeneking-3fca16.jpg" }, { "if": { @@ -220616,7 +220960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greet-046fe6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greet-046fe6.jpg" }, { "if": { @@ -220631,7 +220975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grupobarcelo-a464b1.png" + "then": "https://data.mapcomplete.org/nsi//logos/grupobarcelo-a464b1.png" }, { "if": { @@ -220646,7 +220990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grupotel-775941.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grupotel-775941.jpg" }, { "if": { @@ -220665,7 +221009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gutgebucht-343fd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gutgebucht-343fd5.jpg" }, { "if": { @@ -220680,73 +221024,73 @@ } ] }, - "then": "./assets/data/nsi/logos/h10-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/h10-779ccb.jpg" }, { "if": { "and": [ - "official_name=Hampton by Hilton", "tourism=hotel", { "or": [ "alt_name=Hampton Inn", "brand=Hampton", "brand:wikidata=Q5646230", - "name=Hampton" + "name=Hampton", + "official_name=Hampton by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/hampton-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hampton-779ccb.jpg" }, { "if": { "and": [ - "official_name=Hampton Inn & Suites by Hilton", "tourism=hotel", { "or": [ "brand=Hampton Inn & Suites", "brand:wikidata=Q5646230", - "name=Hampton Inn & Suites" + "name=Hampton Inn & Suites", + "official_name=Hampton Inn & Suites by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/hamptoninnandsuites-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamptoninnandsuites-6ac210.jpg" }, { "if": { "and": [ - "official_name=Hard Rock Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Hard Rock Hotel", "brand:wikidata=Q109275902", - "name=Hard Rock Hotel" + "name=Hard Rock Hotel", + "official_name=Hard Rock Hotels & Resorts" ] } ] }, - "then": "./assets/data/nsi/logos/hardrockhotel-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hardrockhotel-779ccb.jpg" }, { "if": { "and": [ - "official_name=Hawthorn Suites by Wyndham", "short_name=Hawthorn", "tourism=hotel", { "or": [ "brand=Hawthorn Suites", "brand:wikidata=Q5685511", - "name=Hawthorn Suites" + "name=Hawthorn Suites", + "official_name=Hawthorn Suites by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/hawthornsuites-1591e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawthornsuites-1591e1.jpg" }, { "if": { @@ -220761,7 +221105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hf-599262.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hf-599262.jpg" }, { "if": { @@ -220776,7 +221120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hilton-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hilton-779ccb.jpg" }, { "if": { @@ -220791,7 +221135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hiltongardeninn-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hiltongardeninn-779ccb.jpg" }, { "if": { @@ -220806,7 +221150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hiltongrandvacations-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hiltongrandvacations-779ccb.jpg" }, { "if": { @@ -220821,7 +221165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holidayinn-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holidayinn-779ccb.jpg" }, { "if": { @@ -220836,7 +221180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holidayinnclubvacations-27a8cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holidayinnclubvacations-27a8cb.jpg" }, { "if": { @@ -220851,7 +221195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holidayinnexpress-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holidayinnexpress-779ccb.jpg" }, { "if": { @@ -220866,39 +221210,39 @@ } ] }, - "then": "./assets/data/nsi/logos/holidayinnexpressandsuites-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holidayinnexpressandsuites-779ccb.jpg" }, { "if": { "and": [ - "official_name=Home2 Suites by Hilton", "tourism=hotel", { "or": [ "brand=Home2 Suites", "brand:wikidata=Q5887912", - "name=Home2 Suites" + "name=Home2 Suites", + "official_name=Home2 Suites by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/home2suites-8729f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/home2suites-8729f6.jpg" }, { "if": { "and": [ - "official_name=Homewood Suites by Hilton", "tourism=hotel", { "or": [ "brand=Homewood Suites", "brand:wikidata=Q5890701", - "name=Homewood Suites" + "name=Homewood Suites", + "official_name=Homewood Suites by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/homewoodsuites-a1b516.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/homewoodsuites-a1b516.jpg" }, { "if": { @@ -220913,7 +221257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotelindigo-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotelindigo-779ccb.jpg" }, { "if": { @@ -220928,7 +221272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hotelserimalaysia-fd56b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotelserimalaysia-fd56b0.jpg" }, { "if": { @@ -220943,23 +221287,23 @@ } ] }, - "then": "./assets/data/nsi/logos/hotelf1-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hotelf1-89858b.jpg" }, { "if": { "and": [ - "official_name=Howard Johnson by Wyndham", "tourism=hotel", { "or": [ "brand=Howard Johnson", "brand:wikidata=Q5919997", - "name=Howard Johnson" + "name=Howard Johnson", + "official_name=Howard Johnson by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/howardjohnson-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/howardjohnson-779ccb.jpg" }, { "if": { @@ -220974,7 +221318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyatt-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyatt-779ccb.jpg" }, { "if": { @@ -220989,7 +221333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyattcentric-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyattcentric-779ccb.jpg" }, { "if": { @@ -221004,7 +221348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyatthouse-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyatthouse-779ccb.jpg" }, { "if": { @@ -221019,7 +221363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyattplace-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyattplace-779ccb.jpg" }, { "if": { @@ -221034,7 +221378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyattvacationclub-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyattvacationclub-6ac210.jpg" }, { "if": { @@ -221048,7 +221392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberostarhotelsandresorts-e0d9de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberostarhotelsandresorts-e0d9de.jpg" }, { "if": { @@ -221063,7 +221407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ibis-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/ibis-779ccb.png" }, { "if": { @@ -221078,7 +221422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ibisbudget-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ibisbudget-779ccb.jpg" }, { "if": { @@ -221093,7 +221437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ibisstyles-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ibisstyles-779ccb.jpg" }, { "if": { @@ -221108,7 +221452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ihhotel-f65793.png" + "then": "https://data.mapcomplete.org/nsi//logos/ihhotel-f65793.png" }, { "if": { @@ -221123,7 +221467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innsidebymelia-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/innsidebymelia-779ccb.jpg" }, { "if": { @@ -221138,7 +221482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intercityhotel-360354.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intercityhotel-360354.jpg" }, { "if": { @@ -221153,23 +221497,23 @@ } ] }, - "then": "./assets/data/nsi/logos/intercontinental-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intercontinental-779ccb.jpg" }, { "if": { "and": [ - "official_name=Joie de Vivre Hospitality", "tourism=hotel", { "or": [ "brand=JdV by Hyatt", "brand:wikidata=Q6268973", - "name=JdV by Hyatt" + "name=JdV by Hyatt", + "official_name=Joie de Vivre Hospitality" ] } ] }, - "then": "./assets/data/nsi/logos/jdvbyhyatt-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/jdvbyhyatt-779ccb.png" }, { "if": { @@ -221184,7 +221528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joandjoe-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joandjoe-779ccb.jpg" }, { "if": { @@ -221199,7 +221543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jwmarriott-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jwmarriott-779ccb.jpg" }, { "if": { @@ -221214,7 +221558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kempinski-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kempinski-779ccb.jpg" }, { "if": { @@ -221229,7 +221573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kimpton-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kimpton-779ccb.jpg" }, { "if": { @@ -221244,39 +221588,39 @@ } ] }, - "then": "./assets/data/nsi/logos/kyriad-e6de24.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyriad-e6de24.png" }, { "if": { "and": [ - "official_name=La Quinta Inn by Wyndham", "tourism=hotel", { "or": [ "brand=La Quinta Inn", "brand:wikidata=Q6464734", - "name=La Quinta Inn" + "name=La Quinta Inn", + "official_name=La Quinta Inn by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/laquintainn-a0e6b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laquintainn-a0e6b5.jpg" }, { "if": { "and": [ - "official_name=La Quinta Inn & Suites by Wyndham", "tourism=hotel", { "or": [ "brand=La Quinta Inn & Suites", "brand:wikidata=Q6464734", - "name=La Quinta Inn & Suites" + "name=La Quinta Inn & Suites", + "official_name=La Quinta Inn & Suites by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/laquintainnandsuites-cf4e07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laquintainnandsuites-cf4e07.jpg" }, { "if": { @@ -221291,7 +221635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lemeridien-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/lemeridien-779ccb.png" }, { "if": { @@ -221306,7 +221650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leonardoboutique-97784d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leonardoboutique-97784d.jpg" }, { "if": { @@ -221321,7 +221665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leonardohotels-e45a92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leonardohotels-e45a92.jpg" }, { "if": { @@ -221336,7 +221680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leonardohotels-f8f6ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leonardohotels-f8f6ae.jpg" }, { "if": { @@ -221351,7 +221695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leonardoroyalhotel-220d87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leonardoroyalhotel-220d87.jpg" }, { "if": { @@ -221366,7 +221710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/locke-34f092.png" + "then": "https://data.mapcomplete.org/nsi//logos/locke-34f092.png" }, { "if": { @@ -221381,7 +221725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/logishotels-a67635.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/logishotels-a67635.jpg" }, { "if": { @@ -221397,7 +221741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lottehotel-304b57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lottehotel-304b57.jpg" }, { "if": { @@ -221412,7 +221756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lxr-c9a464.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lxr-c9a464.jpg" }, { "if": { @@ -221427,7 +221771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macdonaldhotels-3fca16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macdonaldhotels-3fca16.jpg" }, { "if": { @@ -221441,7 +221785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malmaison-3fca16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/malmaison-3fca16.jpg" }, { "if": { @@ -221456,7 +221800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mamashelter-0d5f7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mamashelter-0d5f7f.jpg" }, { "if": { @@ -221470,7 +221814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandarinorientalhotel-428a55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandarinorientalhotel-428a55.jpg" }, { "if": { @@ -221485,7 +221829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marriott-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/marriott-779ccb.png" }, { "if": { @@ -221500,7 +221844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marriottexecutiveapartments-b2f419.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marriottexecutiveapartments-b2f419.svg" }, { "if": { @@ -221515,7 +221859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marriottvacationclub-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/marriottvacationclub-779ccb.png" }, { "if": { @@ -221530,7 +221874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martinshotels-3dc313.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/martinshotels-3dc313.jpg" }, { "if": { @@ -221544,7 +221888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcmenamins-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcmenamins-6ac210.jpg" }, { "if": { @@ -221559,23 +221903,23 @@ } ] }, - "then": "./assets/data/nsi/logos/mebymelia-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mebymelia-779ccb.jpg" }, { "if": { "and": [ - "official_name=Meininger Hotels", "tourism=hotel", { "or": [ "brand=Meininger", "brand:wikidata=Q42773330", - "name=Meininger" + "name=Meininger", + "official_name=Meininger Hotels" ] } ] }, - "then": "./assets/data/nsi/logos/meininger-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meininger-779ccb.jpg" }, { "if": { @@ -221590,7 +221934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melia-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/melia-779ccb.png" }, { "if": { @@ -221605,7 +221949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercure-8a2ff3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercure-8a2ff3.jpg" }, { "if": { @@ -221620,55 +221964,55 @@ } ] }, - "then": "./assets/data/nsi/logos/mgallery-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mgallery-779ccb.jpg" }, { "if": { "and": [ - "official_name=Microtel by Wyndham", "tourism=hotel", { "or": [ "brand=Microtel", "brand:wikidata=Q6840402", - "name=Microtel" + "name=Microtel", + "official_name=Microtel by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/microtel-1638bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/microtel-1638bb.jpg" }, { "if": { "and": [ - "official_name=Microtel Inn & Suites by Wyndham", "tourism=hotel", { "or": [ "brand=Microtel Inn & Suites", "brand:wikidata=Q6840402", - "name=Microtel Inn & Suites" + "name=Microtel Inn & Suites", + "official_name=Microtel Inn & Suites by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/microtelinnandsuites-29a1d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/microtelinnandsuites-29a1d7.jpg" }, { "if": { "and": [ - "official_name=Millennium Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Millennium", "brand:wikidata=Q6858774", - "name=Millennium" + "name=Millennium", + "official_name=Millennium Hotels & Resorts" ] } ] }, - "then": "./assets/data/nsi/logos/millennium-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/millennium-779ccb.jpg" }, { "if": { @@ -221685,7 +222029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mimaruapartmenthotel-663ee5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mimaruapartmenthotel-663ee5.jpg" }, { "if": { @@ -221700,23 +222044,23 @@ } ] }, - "then": "./assets/data/nsi/logos/motelone-1fc1b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/motelone-1fc1b4.png" }, { "if": { "and": [ - "official_name=Motto by Hilton", "tourism=hotel", { "or": [ "brand=Motto", "brand:wikidata=Q112144350", - "name=Motto" + "name=Motto", + "official_name=Motto by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/motto-f20008.png" + "then": "https://data.mapcomplete.org/nsi//logos/motto-f20008.png" }, { "if": { @@ -221731,7 +222075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/movenpick-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/movenpick-779ccb.jpg" }, { "if": { @@ -221746,7 +222090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moxy-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moxy-779ccb.jpg" }, { "if": { @@ -221761,7 +222105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/myplacehotel-6ac210.png" + "then": "https://data.mapcomplete.org/nsi//logos/myplacehotel-6ac210.png" }, { "if": { @@ -221776,7 +222120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhcollectionhotels-f05c75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nhcollectionhotels-f05c75.jpg" }, { "if": { @@ -221791,7 +222135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhhotel-e9b4fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nhhotel-e9b4fb.jpg" }, { "if": { @@ -221806,7 +222150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhow-e87c8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nhow-e87c8c.jpg" }, { "if": { @@ -221821,7 +222165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nobu-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/nobu-779ccb.png" }, { "if": { @@ -221836,7 +222180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novotel-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novotel-779ccb.jpg" }, { "if": { @@ -221851,7 +222195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oakshotelsresortsandsuites-bc2db3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oakshotelsresortsandsuites-bc2db3.jpg" }, { "if": { @@ -221866,7 +222210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/occidental-e4b4d8.png" + "then": "https://data.mapcomplete.org/nsi//logos/occidental-e4b4d8.png" }, { "if": { @@ -221881,7 +222225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oyo-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oyo-779ccb.jpg" }, { "if": { @@ -221896,22 +222240,22 @@ } ] }, - "then": "./assets/data/nsi/logos/panpacific-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/panpacific-779ccb.jpg" }, { "if": { "and": [ - "official_name=Paradores de Turismo de España", "tourism=hotel", { "or": [ "brand=Paradores", - "brand:wikidata=Q1476845" + "brand:wikidata=Q1476845", + "official_name=Paradores de Turismo de España" ] } ] }, - "then": "./assets/data/nsi/logos/paradores-2bddc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paradores-2bddc3.jpg" }, { "if": { @@ -221926,7 +222270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkinn-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/parkinn-779ccb.png" }, { "if": { @@ -221941,7 +222285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkplazahotels-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/parkplazahotels-779ccb.png" }, { "if": { @@ -221956,7 +222300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petitpalace-775941.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petitpalace-775941.jpg" }, { "if": { @@ -221970,7 +222314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pousadasdeportugal-599262.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pousadasdeportugal-599262.svg" }, { "if": { @@ -221985,7 +222329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premierinn-a7b4e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/premierinn-a7b4e2.png" }, { "if": { @@ -222000,7 +222344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premiereclasse-a93346.png" + "then": "https://data.mapcomplete.org/nsi//logos/premiereclasse-a93346.png" }, { "if": { @@ -222015,7 +222359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proteahotel-dc927c.png" + "then": "https://data.mapcomplete.org/nsi//logos/proteahotel-dc927c.png" }, { "if": { @@ -222030,7 +222374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pullman-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pullman-779ccb.jpg" }, { "if": { @@ -222045,7 +222389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qualityinn-29a1d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/qualityinn-29a1d7.png" }, { "if": { @@ -222060,23 +222404,23 @@ } ] }, - "then": "./assets/data/nsi/logos/qualityinnandsuites-cf4e07.png" + "then": "https://data.mapcomplete.org/nsi//logos/qualityinnandsuites-cf4e07.png" }, { "if": { "and": [ - "official_name=Qubus Hotel", "tourism=hotel", { "or": [ "brand=Qubus", "brand:wikidata=Q11832868", - "name=Qubus" + "name=Qubus", + "official_name=Qubus Hotel" ] } ] }, - "then": "./assets/data/nsi/logos/qubus-e2655f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qubus-e2655f.jpg" }, { "if": { @@ -222091,7 +222435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radisson-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radisson-779ccb.jpg" }, { "if": { @@ -222106,7 +222450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radissonblu-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radissonblu-779ccb.jpg" }, { "if": { @@ -222121,7 +222465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radissoncollection-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/radissoncollection-779ccb.png" }, { "if": { @@ -222136,7 +222480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radissonred-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radissonred-779ccb.jpg" }, { "if": { @@ -222151,23 +222495,23 @@ } ] }, - "then": "./assets/data/nsi/logos/raffles-771760.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/raffles-771760.jpg" }, { "if": { "and": [ - "official_name=Ramada by Wyndham", "tourism=hotel", { "or": [ "brand=Ramada", "brand:wikidata=Q1502859", - "name=Ramada" + "name=Ramada", + "official_name=Ramada by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/ramada-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ramada-779ccb.jpg" }, { "if": { @@ -222182,7 +222526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redlionhotels-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redlionhotels-6ac210.jpg" }, { "if": { @@ -222197,7 +222541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redlioninnandsuites-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redlioninnandsuites-6ac210.jpg" }, { "if": { @@ -222212,7 +222556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redroofinn-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redroofinn-6ac210.jpg" }, { "if": { @@ -222227,7 +222571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reddoorz-25d260.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reddoorz-25d260.jpg" }, { "if": { @@ -222242,7 +222586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/relaisandchateaux-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/relaisandchateaux-779ccb.png" }, { "if": { @@ -222257,23 +222601,23 @@ } ] }, - "then": "./assets/data/nsi/logos/renaissance-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renaissance-779ccb.jpg" }, { "if": { "and": [ - "official_name=Residence Inn by Marriott", "tourism=hotel", { "or": [ "brand=Residence Inn", "brand:wikidata=Q7315394", - "name=Residence Inn" + "name=Residence Inn", + "official_name=Residence Inn by Marriott" ] } ] }, - "then": "./assets/data/nsi/logos/residenceinn-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/residenceinn-779ccb.jpg" }, { "if": { @@ -222288,7 +222632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ringhotels-2d87b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ringhotels-2d87b5.jpg" }, { "if": { @@ -222303,7 +222647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riu-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/riu-779ccb.png" }, { "if": { @@ -222318,7 +222662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rixos-cdcd15.png" + "then": "https://data.mapcomplete.org/nsi//logos/rixos-cdcd15.png" }, { "if": { @@ -222333,7 +222677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romantikhotel-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romantikhotel-779ccb.jpg" }, { "if": { @@ -222348,23 +222692,23 @@ } ] }, - "then": "./assets/data/nsi/logos/roommate-a3fb22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roommate-a3fb22.jpg" }, { "if": { "and": [ - "official_name=Rosewood Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Rosewood", "brand:wikidata=Q7368777", - "name=Rosewood" + "name=Rosewood", + "official_name=Rosewood Hotels & Resorts" ] } ] }, - "then": "./assets/data/nsi/logos/rosewood-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosewood-779ccb.jpg" }, { "if": { @@ -222379,7 +222723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalhideaway-1a48d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/royalhideaway-1a48d0.png" }, { "if": { @@ -222396,7 +222740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santikaindonesiahotelsandresorts-31e59e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santikaindonesiahotelsandresorts-31e59e.jpg" }, { "if": { @@ -222411,7 +222755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scandichotels-f8f452.png" + "then": "https://data.mapcomplete.org/nsi//logos/scandichotels-f8f452.png" }, { "if": { @@ -222426,7 +222770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selina-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selina-779ccb.jpg" }, { "if": { @@ -222441,7 +222785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sercotel-775941.png" + "then": "https://data.mapcomplete.org/nsi//logos/sercotel-775941.png" }, { "if": { @@ -222456,7 +222800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serenahotels-b76fe0.png" + "then": "https://data.mapcomplete.org/nsi//logos/serenahotels-b76fe0.png" }, { "if": { @@ -222471,7 +222815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheraton-428a55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sheraton-428a55.jpg" }, { "if": { @@ -222486,7 +222830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shiloinns-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shiloinns-6ac210.jpg" }, { "if": { @@ -222501,7 +222845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/silken-775941.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/silken-775941.jpg" }, { "if": { @@ -222516,7 +222860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sixsenses-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/sixsenses-779ccb.png" }, { "if": { @@ -222531,7 +222875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sleepinn-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sleepinn-6ac210.jpg" }, { "if": { @@ -222546,7 +222890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sleepinnandsuites-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sleepinnandsuites-6ac210.jpg" }, { "if": { @@ -222561,7 +222905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sofitel-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sofitel-779ccb.jpg" }, { "if": { @@ -222576,7 +222920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonder-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/sonder-779ccb.png" }, { "if": { @@ -222592,7 +222936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonesta-690134.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonesta-690134.jpg" }, { "if": { @@ -222607,7 +222951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonestaessuites-cf4e07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonestaessuites-cf4e07.jpg" }, { "if": { @@ -222622,7 +222966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonestaselect-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonestaselect-6ac210.jpg" }, { "if": { @@ -222637,7 +222981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonestasimplysuites-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonestasimplysuites-6ac210.jpg" }, { "if": { @@ -222654,7 +222998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sotetsufresainn-fd1ce7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sotetsufresainn-fd1ce7.jpg" }, { "if": { @@ -222669,23 +223013,23 @@ } ] }, - "then": "./assets/data/nsi/logos/southernsun-891f5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southernsun-891f5c.jpg" }, { "if": { "and": [ - "official_name=SpringHill Suites by Marriott", "tourism=hotel", { "or": [ "brand=SpringHill Suites", "brand:wikidata=Q7580351", - "name=SpringHill Suites" + "name=SpringHill Suites", + "official_name=SpringHill Suites by Marriott" ] } ] }, - "then": "./assets/data/nsi/logos/springhillsuites-29a1d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springhillsuites-29a1d7.jpg" }, { "if": { @@ -222701,7 +223045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stregis-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stregis-779ccb.jpg" }, { "if": { @@ -222716,7 +223060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staybridgesuites-134d5e.png" + "then": "https://data.mapcomplete.org/nsi//logos/staybridgesuites-134d5e.png" }, { "if": { @@ -222733,7 +223077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superhotel-353f10.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superhotel-353f10.jpg" }, { "if": { @@ -222748,7 +223092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissbelhotel-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swissbelhotel-779ccb.jpg" }, { "if": { @@ -222764,23 +223108,23 @@ } ] }, - "then": "./assets/data/nsi/logos/swissotel-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swissotel-779ccb.jpg" }, { "if": { "and": [ - "official_name=Taj Hotels", "tourism=hotel", { "or": [ "brand=Taj", "brand:wikidata=Q1521893", - "name=Taj" + "name=Taj", + "official_name=Taj Hotels" ] } ] }, - "then": "./assets/data/nsi/logos/taj-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taj-779ccb.jpg" }, { "if": { @@ -222794,7 +223138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tapestrycollection-1c7927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tapestrycollection-1c7927.jpg" }, { "if": { @@ -222809,7 +223153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehoxton-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehoxton-779ccb.jpg" }, { "if": { @@ -222824,7 +223168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/langhamhotelsandresorts-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/langhamhotelsandresorts-779ccb.jpg" }, { "if": { @@ -222839,7 +223183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theleela-b22a38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theleela-b22a38.jpg" }, { "if": { @@ -222853,7 +223197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theluxurycollection-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theluxurycollection-779ccb.jpg" }, { "if": { @@ -222868,7 +223212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theniu-3dd84b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theniu-3dd84b.jpg" }, { "if": { @@ -222883,7 +223227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theoriginalsaccess-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theoriginalsaccess-89858b.jpg" }, { "if": { @@ -222898,7 +223242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theoriginalsboutique-89858b.png" + "then": "https://data.mapcomplete.org/nsi//logos/theoriginalsboutique-89858b.png" }, { "if": { @@ -222913,7 +223257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theoriginalscollection-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theoriginalscollection-89858b.jpg" }, { "if": { @@ -222928,7 +223272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theoriginalsrelais-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theoriginalsrelais-89858b.jpg" }, { "if": { @@ -222943,7 +223287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theoriginalsresidence-89858b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theoriginalsresidence-89858b.jpg" }, { "if": { @@ -222958,7 +223302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theritzcarlton-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theritzcarlton-779ccb.jpg" }, { "if": { @@ -222973,7 +223317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesebel-a311b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/thesebel-a311b9.png" }, { "if": { @@ -222988,7 +223332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thewestin-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thewestin-779ccb.jpg" }, { "if": { @@ -223003,23 +223347,23 @@ } ] }, - "then": "./assets/data/nsi/logos/tivolihotelsandresorts-0f28e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tivolihotelsandresorts-0f28e2.jpg" }, { "if": { "and": [ - "official_name=TownePlace Suites by Marriott", "tourism=hotel", { "or": [ "brand=TownePlace Suites", "brand:wikidata=Q7830092", - "name=TownePlace Suites" + "name=TownePlace Suites", + "official_name=TownePlace Suites by Marriott" ] } ] }, - "then": "./assets/data/nsi/logos/towneplacesuites-cf4e07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/towneplacesuites-cf4e07.jpg" }, { "if": { @@ -223034,23 +223378,23 @@ } ] }, - "then": "./assets/data/nsi/logos/toyokoinn-6b9be5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toyokoinn-6b9be5.jpg" }, { "if": { "and": [ - "official_name=Trademark Collection by Wyndham", "tourism=hotel", { "or": [ "brand=Trademark Collection", "brand:wikidata=Q112144846", - "name=Trademark Collection" + "name=Trademark Collection", + "official_name=Trademark Collection by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/trademarkcollection-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/trademarkcollection-779ccb.png" }, { "if": { @@ -223065,7 +223409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/travelodge-2e0dc6.png" + "then": "https://data.mapcomplete.org/nsi//logos/travelodge-2e0dc6.png" }, { "if": { @@ -223083,7 +223427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/travelodge-dec11e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/travelodge-dec11e.jpg" }, { "if": { @@ -223098,7 +223442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/travelodge-cf4e07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/travelodge-cf4e07.jpg" }, { "if": { @@ -223113,7 +223457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tribe-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tribe-779ccb.jpg" }, { "if": { @@ -223127,39 +223471,39 @@ } ] }, - "then": "./assets/data/nsi/logos/tributeportfolio-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tributeportfolio-779ccb.jpg" }, { "if": { "and": [ - "official_name=Tru by Hilton", "tourism=hotel", { "or": [ "brand=Tru", "brand:wikidata=Q24907770", - "name=Tru" + "name=Tru", + "official_name=Tru by Hilton" ] } ] }, - "then": "./assets/data/nsi/logos/tru-6ac210.png" + "then": "https://data.mapcomplete.org/nsi//logos/tru-6ac210.png" }, { "if": { "and": [ - "official_name=TRYP by Wyndham", "tourism=hotel", { "or": [ "brand=TRYP", "brand:wikidata=Q6153452", - "name=TRYP" + "name=TRYP", + "official_name=TRYP by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/tryp-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tryp-779ccb.jpg" }, { "if": { @@ -223174,7 +223518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unahotelsandresorts-f65793.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unahotelsandresorts-f65793.jpg" }, { "if": { @@ -223188,7 +223532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unboundcollection-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/unboundcollection-779ccb.png" }, { "if": { @@ -223203,23 +223547,23 @@ } ] }, - "then": "./assets/data/nsi/logos/vandervalkhotel-1676dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vandervalkhotel-1676dc.jpg" }, { "if": { "and": [ - "official_name=Vib Best Western", "tourism=hotel", { "or": [ "brand=Vib", "brand:wikidata=Q830334", - "name=Vib" + "name=Vib", + "official_name=Vib Best Western" ] } ] }, - "then": "./assets/data/nsi/logos/vib-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vib-779ccb.jpg" }, { "if": { @@ -223234,23 +223578,23 @@ } ] }, - "then": "./assets/data/nsi/logos/vibra-775941.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vibra-775941.jpg" }, { "if": { "and": [ - "official_name=Vienna House by Wyndham", "tourism=hotel", { "or": [ "brand=Vienna House", "brand:wikidata=Q2523363", - "name=Vienna House" + "name=Vienna House", + "official_name=Vienna House by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/viennahouse-046fe6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/viennahouse-046fe6.jpg" }, { "if": { @@ -223265,7 +223609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginhotels-7e47e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginhotels-7e47e0.jpg" }, { "if": { @@ -223280,7 +223624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voco-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/voco-779ccb.jpg" }, { "if": { @@ -223296,7 +223640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whotels-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/whotels-779ccb.jpg" }, { "if": { @@ -223311,23 +223655,23 @@ } ] }, - "then": "./assets/data/nsi/logos/waldorfastoria-665f74.svg" + "then": "https://data.mapcomplete.org/nsi//logos/waldorfastoria-665f74.svg" }, { "if": { "and": [ - "official_name=Wingate by Wyndham", "tourism=hotel", { "or": [ "brand=Wingate", "brand:wikidata=Q8025144", - "name=Wingate" + "name=Wingate", + "official_name=Wingate by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/wingate-ea697d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wingate-ea697d.jpg" }, { "if": { @@ -223342,7 +223686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodspringsuites-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woodspringsuites-6ac210.jpg" }, { "if": { @@ -223357,23 +223701,23 @@ } ] }, - "then": "./assets/data/nsi/logos/worldmarkbywyndham-6ac210.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldmarkbywyndham-6ac210.jpg" }, { "if": { "and": [ - "official_name=Wyndham Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Wyndham", "brand:wikidata=Q8040120", - "name=Wyndham" + "name=Wyndham", + "official_name=Wyndham Hotels & Resorts" ] } ] }, - "then": "./assets/data/nsi/logos/wyndham-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wyndham-779ccb.jpg" }, { "if": { @@ -223388,7 +223732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wyndhamgarden-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wyndhamgarden-779ccb.jpg" }, { "if": { @@ -223403,7 +223747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wyndhamgrand-779ccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/wyndhamgrand-779ccb.png" }, { "if": { @@ -223418,7 +223762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yotel-ebcca5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yotel-ebcca5.jpg" }, { "if": { @@ -223433,7 +223777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zleephotels-d726c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/zleephotels-d726c7.png" }, { "if": { @@ -223452,7 +223796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apahotel-663ee5.png" + "then": "https://data.mapcomplete.org/nsi//logos/apahotel-663ee5.png" }, { "if": { @@ -223475,7 +223819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caesarparkhotelsandresorts-e06ce0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caesarparkhotelsandresorts-e06ce0.jpg" }, { "if": { @@ -223494,7 +223838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheraton-e06ce0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sheraton-e06ce0.jpg" }, { "if": { @@ -223513,7 +223857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheraton-6fa074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sheraton-6fa074.jpg" }, { "if": { @@ -223532,7 +223876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sheraton-28932e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sheraton-28932e.jpg" }, { "if": { @@ -223554,7 +223898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambassadorhotel-e06ce0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ambassadorhotel-e06ce0.jpg" }, { "if": { @@ -223573,7 +223917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ibis-28932e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ibis-28932e.png" }, { "if": { @@ -223589,7 +223933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandarinorientalhotel-28932e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandarinorientalhotel-28932e.jpg" }, { "if": { @@ -223605,7 +223949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandarinorientalhotel-e06ce0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandarinorientalhotel-e06ce0.jpg" }, { "if": { @@ -223621,7 +223965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mandarinorientalhotel-6fa074.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mandarinorientalhotel-6fa074.jpg" }, { "if": { @@ -223640,7 +223984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toyokoinn-663ee5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toyokoinn-663ee5.jpg" }, { "if": { @@ -223663,7 +224007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanwanthotels-684f55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanwanthotels-684f55.jpg" }, { "if": { @@ -223686,7 +224030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fullonhotelsandresorts-e06ce0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fullonhotelsandresorts-e06ce0.jpg" }, { "if": { @@ -223705,7 +224049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercure-28932e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercure-28932e.jpg" }, { "if": { @@ -223724,12 +224068,11 @@ } ] }, - "then": "./assets/data/nsi/logos/hotelroyal-e06ce0.png" + "then": "https://data.mapcomplete.org/nsi//logos/hotelroyal-e06ce0.png" }, { "if": { "and": [ - "official_name=Super 8 by Wyndham", "tourism=hotel", { "or": [ @@ -223739,12 +224082,13 @@ "brand:zh=速8酒店", "name=速8酒店", "name:en=Super 8", - "name:zh=速8酒店" + "name:zh=速8酒店", + "official_name=Super 8 by Wyndham" ] } ] }, - "then": "./assets/data/nsi/logos/super8-af4cd2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/super8-af4cd2.jpg" }, { "if": { @@ -223763,7 +224107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jinjianginn-28932e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jinjianginn-28932e.jpg" }, { "if": { @@ -223786,7 +224130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergreeninternationalhotels-779ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergreeninternationalhotels-779ccb.jpg" }, { "if": { @@ -223803,7 +224147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiawelcomecenter-35ab0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiawelcomecenter-35ab0a.jpg" }, { "if": { @@ -223818,7 +224162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/docvisitorcentre-a3c76e.png" + "then": "https://data.mapcomplete.org/nsi//logos/docvisitorcentre-a3c76e.png" }, { "if": { @@ -223834,7 +224178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isite-a3c76e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isite-a3c76e.jpg" }, { "if": { @@ -223854,7 +224198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legiblelondon-d25149.png" + "then": "https://data.mapcomplete.org/nsi//logos/legiblelondon-d25149.png" }, { "if": { @@ -223869,7 +224213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americasbestvalueinn-cbfe39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/americasbestvalueinn-cbfe39.jpg" }, { "if": { @@ -223885,7 +224229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/budgethostinn-cbfe39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/budgethostinn-cbfe39.jpg" }, { "if": { @@ -223900,7 +224244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/econolodge-24e523.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/econolodge-24e523.jpg" }, { "if": { @@ -223915,7 +224259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hometownestudios-cbfe39.png" + "then": "https://data.mapcomplete.org/nsi//logos/hometownestudios-cbfe39.png" }, { "if": { @@ -223930,7 +224274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knightsinn-5ddaab.png" + "then": "https://data.mapcomplete.org/nsi//logos/knightsinn-5ddaab.png" }, { "if": { @@ -223945,7 +224289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motel6-5ddaab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/motel6-5ddaab.jpg" }, { "if": { @@ -223960,7 +224304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rodewayinn-5ddaab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rodewayinn-5ddaab.jpg" }, { "if": { @@ -223975,7 +224319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/super8-5ddaab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/super8-5ddaab.jpg" }, { "if": { @@ -223990,7 +224334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vagabondinn-cbfe39.png" + "then": "https://data.mapcomplete.org/nsi//logos/vagabondinn-cbfe39.png" }, { "if": { @@ -224007,7 +224351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legodiscoverycenter-f633f4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/legodiscoverycenter-f633f4.svg" }, { "if": { @@ -224024,7 +224368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legoland-744610.svg" + "then": "https://data.mapcomplete.org/nsi//logos/legoland-744610.svg" }, { "if": { @@ -224041,7 +224385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legolanddiscoverycenter-b3703a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/legolanddiscoverycenter-b3703a.svg" }, { "if": { @@ -224058,7 +224402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legolanddiscoverycentre-1f94c2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/legolanddiscoverycentre-1f94c2.svg" }, { "if": { @@ -224073,7 +224417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sixflags-994d7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sixflags-994d7c.jpg" }, { "if": { @@ -224094,7 +224438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legolanddiscoverycentre-cdd36d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/legolanddiscoverycentre-cdd36d.svg" }, { "if": { @@ -224109,7 +224453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gofuel-1a11f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/gofuel-1a11f1.png" } ] } @@ -224139,7 +224483,7 @@ }, { "question": "7-Eleven", - "icon": "./assets/data/nsi/logos/7eleven-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7eleven-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224154,7 +224498,7 @@ }, { "question": "76", - "icon": "./assets/data/nsi/logos/76-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/76-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224169,7 +224513,7 @@ }, { "question": "8 à Huit", - "icon": "./assets/data/nsi/logos/8ahuit-2974c2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/8ahuit-2974c2.svg", "osmTags": { "and": [ "advertising=totem", @@ -224198,7 +224542,7 @@ }, { "question": "Aegean", - "icon": "./assets/data/nsi/logos/aegean-d67647.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aegean-d67647.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224229,7 +224573,7 @@ }, { "question": "Afriquia", - "icon": "./assets/data/nsi/logos/afriquia-3f3fea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/afriquia-3f3fea.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224244,7 +224588,7 @@ }, { "question": "Afriquia أفريقيا", - "icon": "./assets/data/nsi/logos/afriquia-3f0b55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/afriquia-3f0b55.png", "osmTags": { "and": [ "advertising=totem", @@ -224302,7 +224646,7 @@ }, { "question": "Agrola", - "icon": "./assets/data/nsi/logos/agrola-bb3c05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrola-bb3c05.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224317,7 +224661,7 @@ }, { "question": "Air Liquide", - "icon": "./assets/data/nsi/logos/airliquide-ff109b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airliquide-ff109b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224332,7 +224676,7 @@ }, { "question": "Alcampo", - "icon": "./assets/data/nsi/logos/alcampo-80ab21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alcampo-80ab21.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224347,7 +224691,7 @@ }, { "question": "Ale", - "icon": "./assets/data/nsi/logos/ale-6d0925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ale-6d0925.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224362,7 +224706,7 @@ }, { "question": "Alexela", - "icon": "./assets/data/nsi/logos/alexela-19c48c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alexela-19c48c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224409,7 +224753,7 @@ }, { "question": "Allied Petroleum", - "icon": "./assets/data/nsi/logos/alliedpetroleum-34a242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliedpetroleum-34a242.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224424,15 +224768,15 @@ }, { "question": "Aloha Petroleum", - "icon": "./assets/data/nsi/logos/alohapetroleum-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alohapetroleum-647198.jpg", "osmTags": { "and": [ "advertising=totem", - "official_name=Aloha Petroleum Ltd", { "or": [ "brand=Aloha Petroleum", - "brand:wikidata=Q4734197" + "brand:wikidata=Q4734197", + "official_name=Aloha Petroleum Ltd" ] } ] @@ -224440,7 +224784,7 @@ }, { "question": "Alon", - "icon": "./assets/data/nsi/logos/alon-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alon-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224455,7 +224799,7 @@ }, { "question": "Alpet", - "icon": "./assets/data/nsi/logos/alpet-c19ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alpet-c19ddd.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224470,7 +224814,7 @@ }, { "question": "Alves Bandeira", - "icon": "./assets/data/nsi/logos/alvesbandeira-a8414b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alvesbandeira-a8414b.png", "osmTags": { "and": [ "advertising=totem", @@ -224499,7 +224843,7 @@ }, { "question": "Amic", - "icon": "./assets/data/nsi/logos/amic-68a939.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amic-68a939.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224528,7 +224872,7 @@ }, { "question": "Amoco", - "icon": "./assets/data/nsi/logos/amoco-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amoco-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -224543,7 +224887,7 @@ }, { "question": "Ampol", - "icon": "./assets/data/nsi/logos/ampol-a31042.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ampol-a31042.png", "osmTags": { "and": [ "advertising=totem", @@ -224558,7 +224902,7 @@ }, { "question": "Amser Oil", - "icon": "./assets/data/nsi/logos/amseroil-875bd4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amseroil-875bd4.png", "osmTags": { "and": [ "advertising=totem", @@ -224582,15 +224926,15 @@ }, { "question": "ANCAP", - "icon": "./assets/data/nsi/logos/ancap-7348bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ancap-7348bd.png", "osmTags": { "and": [ "advertising=totem", - "official_name=Administración Nacional de Combustibles, Alcoholes y Portland", { "or": [ "brand=ANCAP", - "brand:wikidata=Q2824522" + "brand:wikidata=Q2824522", + "official_name=Administración Nacional de Combustibles, Alcoholes y Portland" ] } ] @@ -224598,7 +224942,7 @@ }, { "question": "ANP", - "icon": "./assets/data/nsi/logos/anp-b3069c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anp-b3069c.png", "osmTags": { "and": [ "advertising=totem", @@ -224645,7 +224989,7 @@ }, { "question": "Applegreen", - "icon": "./assets/data/nsi/logos/applegreen-b83ef5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/applegreen-b83ef5.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224660,7 +225004,7 @@ }, { "question": "Aral", - "icon": "./assets/data/nsi/logos/aral-7ed995.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aral-7ed995.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224675,7 +225019,7 @@ }, { "question": "Arco", - "icon": "./assets/data/nsi/logos/arco-59b659.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arco-59b659.png", "osmTags": { "and": [ "advertising=totem", @@ -224690,7 +225034,7 @@ }, { "question": "Argos", - "icon": "./assets/data/nsi/logos/argos-ac4a89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/argos-ac4a89.png", "osmTags": { "and": [ "advertising=totem", @@ -224705,7 +225049,7 @@ }, { "question": "AS 24", - "icon": "./assets/data/nsi/logos/as24-e95b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/as24-e95b1e.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224721,7 +225065,7 @@ }, { "question": "Asda", - "icon": "./assets/data/nsi/logos/asda-4d1df5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asda-4d1df5.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224736,7 +225080,7 @@ }, { "question": "Asda Express", - "icon": "./assets/data/nsi/logos/asdaexpress-4d1df5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asdaexpress-4d1df5.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224765,7 +225109,7 @@ }, { "question": "Astron Energy", - "icon": "./assets/data/nsi/logos/astronenergy-617aa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/astronenergy-617aa2.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224780,7 +225124,7 @@ }, { "question": "Atem", - "icon": "./assets/data/nsi/logos/atem-6d0925.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atem-6d0925.png", "osmTags": { "and": [ "advertising=totem", @@ -224795,7 +225139,7 @@ }, { "question": "Auchan", - "icon": "./assets/data/nsi/logos/auchan-9efa8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchan-9efa8b.png", "osmTags": { "and": [ "advertising=totem", @@ -224810,7 +225154,7 @@ }, { "question": "AutoLPGas", - "icon": "./assets/data/nsi/logos/autolpgas-4e8c26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autolpgas-4e8c26.png", "osmTags": { "and": [ "advertising=totem", @@ -224829,7 +225173,7 @@ }, { "question": "Avanti", - "icon": "./assets/data/nsi/logos/avanti-96ce31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avanti-96ce31.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224844,7 +225188,7 @@ }, { "question": "Avia", - "icon": "./assets/data/nsi/logos/avia-49ca55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avia-49ca55.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224873,7 +225217,7 @@ }, { "question": "Avin", - "icon": "./assets/data/nsi/logos/avin-d67647.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avin-d67647.png", "osmTags": { "and": [ "advertising=totem", @@ -224888,7 +225232,7 @@ }, { "question": "Axion", - "icon": "./assets/data/nsi/logos/axion-2a066e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axion-2a066e.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224903,7 +225247,7 @@ }, { "question": "Aygaz", - "icon": "./assets/data/nsi/logos/aygaz-b13929.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aygaz-b13929.svg", "osmTags": { "and": [ "advertising=totem", @@ -224918,7 +225262,7 @@ }, { "question": "Aytemiz", - "icon": "./assets/data/nsi/logos/aytemiz-b13929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aytemiz-b13929.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224933,7 +225277,7 @@ }, { "question": "Azpetrol", - "icon": "./assets/data/nsi/logos/azpetrol-4f303c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/azpetrol-4f303c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224962,7 +225306,7 @@ }, { "question": "Ballenoil", - "icon": "./assets/data/nsi/logos/ballenoil-80ab21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ballenoil-80ab21.jpg", "osmTags": { "and": [ "advertising=totem", @@ -224977,7 +225321,7 @@ }, { "question": "Baltic Petroleum", - "icon": "./assets/data/nsi/logos/balticpetroleum-3ba831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/balticpetroleum-3ba831.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225001,15 +225345,15 @@ }, { "question": "Bapco", - "icon": "./assets/data/nsi/logos/bapco-2d08a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bapco-2d08a5.jpg", "osmTags": { "and": [ "advertising=totem", - "official_name=Bahrain Petroleum Company", { "or": [ "brand=Bapco", - "brand:wikidata=Q803640" + "brand:wikidata=Q803640", + "official_name=Bahrain Petroleum Company" ] } ] @@ -225047,7 +225391,7 @@ }, { "question": "Bennett's Petroleum", - "icon": "./assets/data/nsi/logos/bennettspetroleum-8c9f2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bennettspetroleum-8c9f2e.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225062,7 +225406,7 @@ }, { "question": "Benzina", - "icon": "./assets/data/nsi/logos/benzina-3a612c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benzina-3a612c.png", "osmTags": { "and": [ "advertising=totem", @@ -225077,7 +225421,7 @@ }, { "question": "Berkman", - "icon": "./assets/data/nsi/logos/berkman-ac4a89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berkman-ac4a89.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225106,7 +225450,7 @@ }, { "question": "Beyfin", - "icon": "./assets/data/nsi/logos/beyfin-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beyfin-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225135,7 +225479,7 @@ }, { "question": "bft", - "icon": "./assets/data/nsi/logos/bft-3c3d38.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bft-3c3d38.svg", "osmTags": { "and": [ "advertising=totem", @@ -225164,7 +225508,7 @@ }, { "question": "Bharat Petroleum", - "icon": "./assets/data/nsi/logos/bharatpetroleum-96166f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bharatpetroleum-96166f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225179,7 +225523,7 @@ }, { "question": "BHPetrol", - "icon": "./assets/data/nsi/logos/bhpetrol-3bf252.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bhpetrol-3bf252.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225194,7 +225538,7 @@ }, { "question": "bi1", - "icon": "./assets/data/nsi/logos/bi1-df7908.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bi1-df7908.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225223,7 +225567,7 @@ }, { "question": "Biomax", - "icon": "./assets/data/nsi/logos/biomax-966bd3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biomax-966bd3.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225238,7 +225582,7 @@ }, { "question": "BJ's Gas", - "icon": "./assets/data/nsi/logos/bjswholesaleclub-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bjswholesaleclub-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225281,7 +225625,7 @@ }, { "question": "BonÀrea", - "icon": "./assets/data/nsi/logos/bonarea-80ab21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonarea-80ab21.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225296,7 +225640,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-8315ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-8315ff.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225325,7 +225669,7 @@ }, { "question": "BR", - "icon": "./assets/data/nsi/logos/br-6d0925.png", + "icon": "https://data.mapcomplete.org/nsi//logos/br-6d0925.png", "osmTags": { "and": [ "advertising=totem", @@ -225340,7 +225684,7 @@ }, { "question": "Buc-ee's", - "icon": "./assets/data/nsi/logos/bucees-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bucees-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -225355,7 +225699,7 @@ }, { "question": "BVS", - "icon": "./assets/data/nsi/logos/bvs-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bvs-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225370,15 +225714,15 @@ }, { "question": "BWOC", - "icon": "./assets/data/nsi/logos/bwoc-4d1df5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bwoc-4d1df5.jpg", "osmTags": { "and": [ "advertising=totem", - "official_name=Bob Wayne's Oil Company", { "or": [ "brand=BWOC", - "brand:wikidata=Q4836845" + "brand:wikidata=Q4836845", + "official_name=Bob Wayne's Oil Company" ] } ] @@ -225386,7 +225730,7 @@ }, { "question": "Byrne Dairy", - "icon": "./assets/data/nsi/logos/byrnedairy-c92709.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byrnedairy-c92709.png", "osmTags": { "and": [ "advertising=totem", @@ -225401,7 +225745,7 @@ }, { "question": "Caltex", - "icon": "./assets/data/nsi/logos/caltex-0f1005.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caltex-0f1005.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225416,7 +225760,7 @@ }, { "question": "Canadian Tire Gas+", - "icon": "./assets/data/nsi/logos/canadiantire-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadiantire-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225449,7 +225793,7 @@ }, { "question": "Carrefour", - "icon": "./assets/data/nsi/logos/carrefour-ff109b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-ff109b.png", "osmTags": { "and": [ "advertising=totem", @@ -225492,7 +225836,7 @@ }, { "question": "Carroll Motor Fuels", - "icon": "./assets/data/nsi/logos/carroll-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carroll-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225507,7 +225851,7 @@ }, { "question": "Casey's General Store", - "icon": "./assets/data/nsi/logos/caseysgeneralstore-ff109b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caseysgeneralstore-ff109b.svg", "osmTags": { "and": [ "advertising=totem", @@ -225536,7 +225880,7 @@ }, { "question": "Casino", - "icon": "./assets/data/nsi/logos/casino-2974c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casino-2974c2.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225551,7 +225895,7 @@ }, { "question": "CEFCO", - "icon": "./assets/data/nsi/logos/cefco-d016fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cefco-d016fa.png", "osmTags": { "and": [ "advertising=totem", @@ -225566,7 +225910,7 @@ }, { "question": "Cenex", - "icon": "./assets/data/nsi/logos/cenex-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cenex-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -225613,15 +225957,15 @@ }, { "question": "Certified", - "icon": "./assets/data/nsi/logos/certified-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/certified-647198.jpg", "osmTags": { "and": [ "advertising=totem", - "official_name=Certified Oil", { "or": [ "brand=Certified", - "brand:wikidata=Q100148356" + "brand:wikidata=Q100148356", + "official_name=Certified Oil" ] } ] @@ -225643,7 +225987,7 @@ }, { "question": "Challenge", - "icon": "./assets/data/nsi/logos/challenge-34a242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/challenge-34a242.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225658,7 +226002,7 @@ }, { "question": "Champion Oil", - "icon": "./assets/data/nsi/logos/champion-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/champion-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225684,7 +226028,7 @@ }, { "question": "Chevron", - "icon": "./assets/data/nsi/logos/chevron-ff109b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chevron-ff109b.png", "osmTags": { "and": [ "advertising=totem", @@ -225699,7 +226043,7 @@ }, { "question": "Chipo", - "icon": "./assets/data/nsi/logos/chipo-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chipo-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225728,7 +226072,7 @@ }, { "question": "Circle K", - "icon": "./assets/data/nsi/logos/circlek-ff109b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-ff109b.png", "osmTags": { "and": [ "advertising=totem", @@ -225743,7 +226087,7 @@ }, { "question": "Citgo", - "icon": "./assets/data/nsi/logos/citgo-445a61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citgo-445a61.png", "osmTags": { "and": [ "advertising=totem", @@ -225758,7 +226102,7 @@ }, { "question": "Clark", - "icon": "./assets/data/nsi/logos/clark-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clark-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -225773,7 +226117,7 @@ }, { "question": "Classic", - "icon": "./assets/data/nsi/logos/classic-3c3d38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/classic-3c3d38.png", "osmTags": { "and": [ "advertising=totem", @@ -225803,7 +226147,7 @@ }, { "question": "Co-op (Canada)", - "icon": "./assets/data/nsi/logos/federatedcooperatives-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/federatedcooperatives-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225847,7 +226191,7 @@ }, { "question": "Conoco", - "icon": "./assets/data/nsi/logos/conoco-647198.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/conoco-647198.svg", "osmTags": { "and": [ "advertising=totem", @@ -225871,7 +226215,7 @@ }, { "question": "Copec", - "icon": "./assets/data/nsi/logos/copec-65694b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/copec-65694b.svg", "osmTags": { "and": [ "advertising=totem", @@ -225886,7 +226230,7 @@ }, { "question": "Copetrol", - "icon": "./assets/data/nsi/logos/copetrol-b51e06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/copetrol-b51e06.png", "osmTags": { "and": [ "advertising=totem", @@ -225910,7 +226254,7 @@ }, { "question": "Cosan", - "icon": "./assets/data/nsi/logos/cosan-6d0925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosan-6d0925.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225925,7 +226269,7 @@ }, { "question": "Costantin", - "icon": "./assets/data/nsi/logos/costantin-996b0f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costantin-996b0f.svg", "osmTags": { "and": [ "advertising=totem", @@ -225940,7 +226284,7 @@ }, { "question": "Costco Gasoline", - "icon": "./assets/data/nsi/logos/costcogasoline-d249ff.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcogasoline-d249ff.svg", "osmTags": { "and": [ "advertising=totem", @@ -225955,7 +226299,7 @@ }, { "question": "Couche-Tard", - "icon": "./assets/data/nsi/logos/couchetard-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/couchetard-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -225993,7 +226337,7 @@ }, { "question": "Crodux", - "icon": "./assets/data/nsi/logos/crodux-3bc7ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crodux-3bc7ea.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226036,7 +226380,7 @@ }, { "question": "Cumberland Farms", - "icon": "./assets/data/nsi/logos/cumberlandfarms-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cumberlandfarms-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226051,7 +226395,7 @@ }, { "question": "Cupet", - "icon": "./assets/data/nsi/logos/cupet-95b8b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cupet-95b8b7.png", "osmTags": { "and": [ "advertising=totem", @@ -226075,7 +226419,7 @@ }, { "question": "DALIOIL", - "icon": "./assets/data/nsi/logos/dalioil-bb7061.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dalioil-bb7061.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226099,7 +226443,7 @@ }, { "question": "DATS 24", - "icon": "./assets/data/nsi/logos/dats24-ee11ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dats24-ee11ab.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226114,7 +226458,7 @@ }, { "question": "Delek", - "icon": "./assets/data/nsi/logos/delek-30ed24.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/delek-30ed24.svg", "osmTags": { "and": [ "advertising=totem", @@ -226132,7 +226476,7 @@ }, { "question": "Delta (Costa Rica/Panama)", - "icon": "./assets/data/nsi/logos/delta-e44cfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delta-e44cfd.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226161,7 +226505,7 @@ }, { "question": "Delta Sonic", - "icon": "./assets/data/nsi/logos/deltasonic-7d9a59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deltasonic-7d9a59.png", "osmTags": { "and": [ "advertising=totem", @@ -226227,7 +226571,7 @@ }, { "question": "DK", - "icon": "./assets/data/nsi/logos/dk-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dk-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226242,7 +226586,7 @@ }, { "question": "Domo", - "icon": "./assets/data/nsi/logos/domo-e93e09.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/domo-e93e09.svg", "osmTags": { "and": [ "advertising=totem", @@ -226257,7 +226601,7 @@ }, { "question": "Dyneff", - "icon": "./assets/data/nsi/logos/dyneff-778820.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dyneff-778820.svg", "osmTags": { "and": [ "advertising=totem", @@ -226272,7 +226616,7 @@ }, { "question": "Eco Petrol", - "icon": "./assets/data/nsi/logos/ecopetrol-ea0204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecopetrol-ea0204.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226289,7 +226633,7 @@ }, { "question": "EcoOil", - "icon": "./assets/data/nsi/logos/ecooil-10e4f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ecooil-10e4f0.png", "osmTags": { "and": [ "advertising=totem", @@ -226327,7 +226671,7 @@ }, { "question": "EKO (Canada)", - "icon": "./assets/data/nsi/logos/eko-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226342,7 +226686,7 @@ }, { "question": "EKO (Cyprus)", - "icon": "./assets/data/nsi/logos/eko-66fbaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-66fbaf.png", "osmTags": { "and": [ "advertising=totem", @@ -226357,7 +226701,7 @@ }, { "question": "EKO (Montenegro)", - "icon": "./assets/data/nsi/logos/eko-06f404.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-06f404.png", "osmTags": { "and": [ "advertising=totem", @@ -226372,7 +226716,7 @@ }, { "question": "EKO (Ελλάδα)", - "icon": "./assets/data/nsi/logos/eko-d67647.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-d67647.png", "osmTags": { "and": [ "advertising=totem", @@ -226387,7 +226731,7 @@ }, { "question": "EKO (България)", - "icon": "./assets/data/nsi/logos/eko-ea0204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-ea0204.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226404,7 +226748,7 @@ }, { "question": "EKO (Србија)", - "icon": "./assets/data/nsi/logos/eko-1cc55f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-1cc55f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226419,7 +226763,7 @@ }, { "question": "Elan", - "icon": "./assets/data/nsi/logos/elan-fdee9c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elan-fdee9c.svg", "osmTags": { "and": [ "advertising=totem", @@ -226434,7 +226778,7 @@ }, { "question": "Emarat", - "icon": "./assets/data/nsi/logos/emarat-1e6f11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emarat-1e6f11.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226467,7 +226811,7 @@ }, { "question": "ENEOS", - "icon": "./assets/data/nsi/logos/eneos-525bb3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneos-525bb3.png", "osmTags": { "and": [ "advertising=totem", @@ -226486,7 +226830,7 @@ }, { "question": "Enercoop", - "icon": "./assets/data/nsi/logos/enercoop-996b0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enercoop-996b0f.png", "osmTags": { "and": [ "advertising=totem", @@ -226501,7 +226845,7 @@ }, { "question": "Energas", - "icon": "./assets/data/nsi/logos/energas-996b0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energas-996b0f.png", "osmTags": { "and": [ "advertising=totem", @@ -226516,7 +226860,7 @@ }, { "question": "Enerpetroli", - "icon": "./assets/data/nsi/logos/enerpetroli-996b0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enerpetroli-996b0f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226531,7 +226875,7 @@ }, { "question": "Engen", - "icon": "./assets/data/nsi/logos/engen-24d8dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engen-24d8dd.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226546,7 +226890,7 @@ }, { "question": "Eni", - "icon": "./assets/data/nsi/logos/eni-59f06a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eni-59f06a.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226561,7 +226905,7 @@ }, { "question": "Enmarket", - "icon": "./assets/data/nsi/logos/enmarket-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enmarket-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226576,7 +226920,7 @@ }, { "question": "Equador", - "icon": "./assets/data/nsi/logos/equador-6d0925.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equador-6d0925.png", "osmTags": { "and": [ "advertising=totem", @@ -226591,7 +226935,7 @@ }, { "question": "EsclatOil", - "icon": "./assets/data/nsi/logos/esclatoil-80ab21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esclatoil-80ab21.png", "osmTags": { "and": [ "advertising=totem", @@ -226620,7 +226964,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-cd0860.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-cd0860.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226635,7 +226979,7 @@ }, { "question": "Esso Express", - "icon": "./assets/data/nsi/logos/essoexpress-8ffe48.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/essoexpress-8ffe48.svg", "osmTags": { "and": [ "advertising=totem", @@ -226673,7 +227017,7 @@ }, { "question": "EuroOil (Česko)", - "icon": "./assets/data/nsi/logos/eurooil-bb27a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurooil-bb27a8.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226688,7 +227032,7 @@ }, { "question": "Europam", - "icon": "./assets/data/nsi/logos/europam-996b0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/europam-996b0f.png", "osmTags": { "and": [ "advertising=totem", @@ -226703,7 +227047,7 @@ }, { "question": "Everfuel", - "icon": "./assets/data/nsi/logos/everfuel-b750b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/everfuel-b750b3.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226728,7 +227072,7 @@ }, { "question": "Exxon", - "icon": "./assets/data/nsi/logos/exxon-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exxon-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226757,7 +227101,7 @@ }, { "question": "Fas Gas", - "icon": "./assets/data/nsi/logos/fasgas-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fasgas-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226800,7 +227144,7 @@ }, { "question": "Fieten Olie", - "icon": "./assets/data/nsi/logos/fietenolie-ac4a89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fietenolie-ac4a89.png", "osmTags": { "and": [ "advertising=totem", @@ -226815,7 +227159,7 @@ }, { "question": "Firezone", - "icon": "./assets/data/nsi/logos/firezone-ac4a89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firezone-ac4a89.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226839,7 +227183,7 @@ }, { "question": "Flyers", - "icon": "./assets/data/nsi/logos/flyers-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flyers-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226858,7 +227202,7 @@ }, { "question": "Flying J", - "icon": "./assets/data/nsi/logos/flyingj-5708fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/flyingj-5708fd.png", "osmTags": { "and": [ "advertising=totem", @@ -226873,7 +227217,7 @@ }, { "question": "Flying V", - "icon": "./assets/data/nsi/logos/flyingv-10e4f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/flyingv-10e4f0.png", "osmTags": { "and": [ "advertising=totem", @@ -226888,7 +227232,7 @@ }, { "question": "Food 4 Less", - "icon": "./assets/data/nsi/logos/food4less-5cd599.png", + "icon": "https://data.mapcomplete.org/nsi//logos/food4less-5cd599.png", "osmTags": { "and": [ "advertising=totem", @@ -226903,7 +227247,7 @@ }, { "question": "Foods Co", - "icon": "./assets/data/nsi/logos/foodsco-a57e8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foodsco-a57e8e.png", "osmTags": { "and": [ "advertising=totem", @@ -226918,7 +227262,7 @@ }, { "question": "Fraga Oil", - "icon": "./assets/data/nsi/logos/fragaoil-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fragaoil-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -226935,7 +227279,7 @@ }, { "question": "Fred Meyer", - "icon": "./assets/data/nsi/logos/fredmeyer-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fredmeyer-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -226950,7 +227294,7 @@ }, { "question": "Freie Tankstelle", - "icon": "./assets/data/nsi/logos/freietankstelle-3c3d38.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/freietankstelle-3c3d38.svg", "osmTags": { "and": [ "advertising=totem", @@ -226965,7 +227309,7 @@ }, { "question": "Friendly Express", - "icon": "./assets/data/nsi/logos/friendlyexpress-cab956.png", + "icon": "https://data.mapcomplete.org/nsi//logos/friendlyexpress-cab956.png", "osmTags": { "and": [ "advertising=totem", @@ -226996,7 +227340,7 @@ }, { "question": "G.A.S.", - "icon": "./assets/data/nsi/logos/gas-34a242.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gas-34a242.png", "osmTags": { "and": [ "advertising=totem", @@ -227011,7 +227355,7 @@ }, { "question": "G500", - "icon": "./assets/data/nsi/logos/g500-34b7e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/g500-34b7e4.png", "osmTags": { "and": [ "advertising=totem", @@ -227049,7 +227393,7 @@ }, { "question": "Galp", - "icon": "./assets/data/nsi/logos/galp-9b7c40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/galp-9b7c40.png", "osmTags": { "and": [ "advertising=totem", @@ -227073,7 +227417,7 @@ }, { "question": "Gas", - "icon": "./assets/data/nsi/logos/gas-bb7061.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gas-bb7061.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227143,7 +227487,7 @@ }, { "question": "Gazprom", - "icon": "./assets/data/nsi/logos/gazprom-e13144.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gazprom-e13144.svg", "osmTags": { "and": [ "advertising=totem", @@ -227158,7 +227502,7 @@ }, { "question": "Gazprom (България)", - "icon": "./assets/data/nsi/logos/gazprom-ea0204.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gazprom-ea0204.svg", "osmTags": { "and": [ "advertising=totem", @@ -227198,7 +227542,7 @@ }, { "question": "Giant (Carlisle)", - "icon": "./assets/data/nsi/logos/giant-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/giant-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -227213,7 +227557,7 @@ }, { "question": "Giap", - "icon": "./assets/data/nsi/logos/giap-996b0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/giap-996b0f.png", "osmTags": { "and": [ "advertising=totem", @@ -227228,7 +227572,7 @@ }, { "question": "Global", - "icon": "./assets/data/nsi/logos/global-2f5b89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/global-2f5b89.svg", "osmTags": { "and": [ "advertising=totem", @@ -227243,7 +227587,7 @@ }, { "question": "Global Oil", - "icon": "./assets/data/nsi/logos/globaloil-30e129.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globaloil-30e129.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227258,7 +227602,7 @@ }, { "question": "Globus", - "icon": "./assets/data/nsi/logos/globus-a74bf8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globus-a74bf8.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227273,7 +227617,7 @@ }, { "question": "Glory Oil", - "icon": "./assets/data/nsi/logos/gloryoil-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gloryoil-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227290,7 +227634,7 @@ }, { "question": "GNP", - "icon": "./assets/data/nsi/logos/gnp-996b0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gnp-996b0f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227315,7 +227659,7 @@ }, { "question": "Goil", - "icon": "./assets/data/nsi/logos/goil-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goil-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227330,7 +227674,7 @@ }, { "question": "GoMart", - "icon": "./assets/data/nsi/logos/gomart-746494.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gomart-746494.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227345,7 +227689,7 @@ }, { "question": "Green Oil", - "icon": "./assets/data/nsi/logos/greenoil-3f0b55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenoil-3f0b55.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227377,7 +227721,7 @@ }, { "question": "Gulf", - "icon": "./assets/data/nsi/logos/gulf-4150d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gulf-4150d7.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227406,7 +227750,7 @@ }, { "question": "Gull (New Zealand)", - "icon": "./assets/data/nsi/logos/gull-34a242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gull-34a242.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227421,7 +227765,7 @@ }, { "question": "H-E-B Fuel", - "icon": "./assets/data/nsi/logos/heb-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heb-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227451,7 +227795,7 @@ }, { "question": "Haffner's", - "icon": "./assets/data/nsi/logos/haffners-25824a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haffners-25824a.png", "osmTags": { "and": [ "advertising=totem", @@ -227466,7 +227810,7 @@ }, { "question": "Harnois", - "icon": "./assets/data/nsi/logos/harnois-e93e09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/harnois-e93e09.png", "osmTags": { "and": [ "advertising=totem", @@ -227481,7 +227825,7 @@ }, { "question": "Harvest Energy", - "icon": "./assets/data/nsi/logos/harvestenergy-4d1df5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harvestenergy-4d1df5.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227496,7 +227840,7 @@ }, { "question": "Hele", - "icon": "./assets/data/nsi/logos/hele-91aeef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hele-91aeef.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227511,7 +227855,7 @@ }, { "question": "HEM", - "icon": "./assets/data/nsi/logos/hem-3c3d38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hem-3c3d38.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227526,7 +227870,7 @@ }, { "question": "Hess", - "icon": "./assets/data/nsi/logos/hess-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hess-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227541,7 +227885,7 @@ }, { "question": "Hidrosina", - "icon": "./assets/data/nsi/logos/hidrosina-34b7e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hidrosina-34b7e4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227556,7 +227900,7 @@ }, { "question": "High's", - "icon": "./assets/data/nsi/logos/highs-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/highs-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -227571,7 +227915,7 @@ }, { "question": "Hofer Diskont", - "icon": "./assets/data/nsi/logos/hoferdiskont-ab390b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hoferdiskont-ab390b.png", "osmTags": { "and": [ "advertising=totem", @@ -227586,7 +227930,7 @@ }, { "question": "Holiday", - "icon": "./assets/data/nsi/logos/holiday-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holiday-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227601,7 +227945,7 @@ }, { "question": "Holiday Oil", - "icon": "./assets/data/nsi/logos/holidayoil-1196cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/holidayoil-1196cc.png", "osmTags": { "and": [ "advertising=totem", @@ -227616,7 +227960,7 @@ }, { "question": "Hoyer", - "icon": "./assets/data/nsi/logos/hoyer-3c3d38.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoyer-3c3d38.svg", "osmTags": { "and": [ "advertising=totem", @@ -227631,15 +227975,15 @@ }, { "question": "HP", - "icon": "./assets/data/nsi/logos/hindustanpetroleum-96166f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hindustanpetroleum-96166f.jpg", "osmTags": { "and": [ "advertising=totem", - "official_name=Hindustan Petroleum", { "or": [ "brand=Hindustan Petroleum", - "brand:wikidata=Q1619375" + "brand:wikidata=Q1619375", + "official_name=Hindustan Petroleum" ] } ] @@ -227662,7 +228006,7 @@ }, { "question": "Husky", - "icon": "./assets/data/nsi/logos/husky-e93e09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/husky-e93e09.png", "osmTags": { "and": [ "advertising=totem", @@ -227677,7 +228021,7 @@ }, { "question": "Hy-Vee Gas", - "icon": "./assets/data/nsi/logos/hyveegas-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyveegas-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227701,7 +228045,7 @@ }, { "question": "Iberdoex", - "icon": "./assets/data/nsi/logos/iberdoex-80ab21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdoex-80ab21.png", "osmTags": { "and": [ "advertising=totem", @@ -227730,7 +228074,7 @@ }, { "question": "iGas", - "icon": "./assets/data/nsi/logos/igas-ea0204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/igas-ea0204.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227745,7 +228089,7 @@ }, { "question": "IGL (Indraprastha Gas Limited)", - "icon": "./assets/data/nsi/logos/igl-96166f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/igl-96166f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227760,7 +228104,7 @@ }, { "question": "INA", - "icon": "./assets/data/nsi/logos/ina-245676.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ina-245676.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227775,7 +228119,7 @@ }, { "question": "Indian Oil", - "icon": "./assets/data/nsi/logos/indianoil-96166f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianoil-96166f.png", "osmTags": { "and": [ "advertising=totem", @@ -227790,7 +228134,7 @@ }, { "question": "Ingles Gas Express", - "icon": "./assets/data/nsi/logos/inglesgasexpress-8d7006.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inglesgasexpress-8d7006.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227805,7 +228149,7 @@ }, { "question": "Ingo", - "icon": "./assets/data/nsi/logos/ingo-09da86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ingo-09da86.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227820,7 +228164,7 @@ }, { "question": "Innogy", - "icon": "./assets/data/nsi/logos/innogy-bb27a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogy-bb27a8.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227835,7 +228179,7 @@ }, { "question": "InsaOil", - "icon": "./assets/data/nsi/logos/insaoil-ea0204.png", + "icon": "https://data.mapcomplete.org/nsi//logos/insaoil-ea0204.png", "osmTags": { "and": [ "advertising=totem", @@ -227853,7 +228197,7 @@ }, { "question": "Intermarché", - "icon": "./assets/data/nsi/logos/intermarche-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarche-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227868,7 +228212,7 @@ }, { "question": "Inver", - "icon": "./assets/data/nsi/logos/inver-ad86e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inver-ad86e1.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227883,7 +228227,7 @@ }, { "question": "IP", - "icon": "./assets/data/nsi/logos/ip-445a61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ip-445a61.png", "osmTags": { "and": [ "advertising=totem", @@ -227898,7 +228242,7 @@ }, { "question": "Ipiranga", - "icon": "./assets/data/nsi/logos/ipiranga-6d0925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ipiranga-6d0925.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227931,7 +228275,7 @@ }, { "question": "Irving", - "icon": "./assets/data/nsi/logos/irving-5708fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irving-5708fd.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227964,7 +228308,7 @@ }, { "question": "JET", - "icon": "./assets/data/nsi/logos/jet-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jet-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -227988,7 +228332,7 @@ }, { "question": "Jetti", - "icon": "./assets/data/nsi/logos/jetti-10e4f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jetti-10e4f0.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228003,7 +228347,7 @@ }, { "question": "JIO BP", - "icon": "./assets/data/nsi/logos/jiobp-96166f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jiobp-96166f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228055,7 +228399,7 @@ }, { "question": "Kangaroo Express", - "icon": "./assets/data/nsi/logos/kangarooexpress-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kangarooexpress-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -228080,7 +228424,7 @@ }, { "question": "Kastrati", - "icon": "./assets/data/nsi/logos/kastrati-33fa20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kastrati-33fa20.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228095,7 +228439,7 @@ }, { "question": "Keropetrol", - "icon": "./assets/data/nsi/logos/keropetrol-996b0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keropetrol-996b0f.png", "osmTags": { "and": [ "advertising=totem", @@ -228110,7 +228454,7 @@ }, { "question": "King Soopers", - "icon": "./assets/data/nsi/logos/kingsoopers-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kingsoopers-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -228125,7 +228469,7 @@ }, { "question": "KLO", - "icon": "./assets/data/nsi/logos/klo-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klo-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228154,7 +228498,7 @@ }, { "question": "Krist", - "icon": "./assets/data/nsi/logos/krist-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/krist-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -228169,7 +228513,7 @@ }, { "question": "Kroger", - "icon": "./assets/data/nsi/logos/kroger-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kroger-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -228184,7 +228528,7 @@ }, { "question": "Kum & Go", - "icon": "./assets/data/nsi/logos/kumandgo-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kumandgo-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228199,7 +228543,7 @@ }, { "question": "Kwik Fill", - "icon": "./assets/data/nsi/logos/kwikfill-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikfill-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -228214,7 +228558,7 @@ }, { "question": "Kwik Shop", - "icon": "./assets/data/nsi/logos/kwikshop-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikshop-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228229,7 +228573,7 @@ }, { "question": "Kwik Star", - "icon": "./assets/data/nsi/logos/kwikstar-43ec8b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikstar-43ec8b.svg", "osmTags": { "and": [ "advertising=totem", @@ -228244,7 +228588,7 @@ }, { "question": "Kwik Trip", - "icon": "./assets/data/nsi/logos/kwiktrip-fa9947.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwiktrip-fa9947.svg", "osmTags": { "and": [ "advertising=totem", @@ -228325,7 +228669,7 @@ }, { "question": "Liberty (USA)", - "icon": "./assets/data/nsi/logos/liberty-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liberty-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228354,7 +228698,7 @@ }, { "question": "Loaf 'N Jug", - "icon": "./assets/data/nsi/logos/loafnjug-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loafnjug-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228411,7 +228755,7 @@ }, { "question": "Love's", - "icon": "./assets/data/nsi/logos/loves-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/loves-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -228426,7 +228770,7 @@ }, { "question": "Lukoil", - "icon": "./assets/data/nsi/logos/lukoil-aff9d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-aff9d5.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228441,7 +228785,7 @@ }, { "question": "MacEwen", - "icon": "./assets/data/nsi/logos/macewen-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macewen-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228465,7 +228809,7 @@ }, { "question": "Mapco", - "icon": "./assets/data/nsi/logos/mapco-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mapco-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228480,7 +228824,7 @@ }, { "question": "Marathon", - "icon": "./assets/data/nsi/logos/marathon-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathon-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228504,7 +228848,7 @@ }, { "question": "Marshal", - "icon": "./assets/data/nsi/logos/marshal-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshal-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228519,7 +228863,7 @@ }, { "question": "Maverik", - "icon": "./assets/data/nsi/logos/maverik-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maverik-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228534,7 +228878,7 @@ }, { "question": "Maxol", - "icon": "./assets/data/nsi/logos/maxol-1c08dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxol-1c08dd.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228572,7 +228916,7 @@ }, { "question": "Meijer", - "icon": "./assets/data/nsi/logos/meijer-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meijer-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228587,7 +228931,7 @@ }, { "question": "MEROIL", - "icon": "./assets/data/nsi/logos/meroil-80ab21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meroil-80ab21.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228625,7 +228969,7 @@ }, { "question": "METRO", - "icon": "./assets/data/nsi/logos/metro-c8c400.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-c8c400.svg", "osmTags": { "and": [ "advertising=totem", @@ -228640,7 +228984,7 @@ }, { "question": "Metro Petroleum", - "icon": "./assets/data/nsi/logos/metropetroleum-a31042.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropetroleum-a31042.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228655,7 +228999,7 @@ }, { "question": "Migrol", - "icon": "./assets/data/nsi/logos/migrol-bb3c05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/migrol-bb3c05.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228670,7 +229014,7 @@ }, { "question": "Mobil", - "icon": "./assets/data/nsi/logos/mobil-bad4ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobil-bad4ad.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228685,7 +229029,7 @@ }, { "question": "Moeve", - "icon": "./assets/data/nsi/logos/moeve-9b7c40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moeve-9b7c40.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228714,7 +229058,7 @@ }, { "question": "Moil", - "icon": "./assets/data/nsi/logos/moil-b13929.png", + "icon": "https://data.mapcomplete.org/nsi//logos/moil-b13929.png", "osmTags": { "and": [ "advertising=totem", @@ -228729,7 +229073,7 @@ }, { "question": "MOL", - "icon": "./assets/data/nsi/logos/mol-ff109b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mol-ff109b.png", "osmTags": { "and": [ "advertising=totem", @@ -228744,7 +229088,7 @@ }, { "question": "Morrisons", - "icon": "./assets/data/nsi/logos/morrisons-4d1df5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morrisons-4d1df5.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228759,7 +229103,7 @@ }, { "question": "Motto", - "icon": "./assets/data/nsi/logos/motto-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/motto-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228816,7 +229160,7 @@ }, { "question": "Murphy Express", - "icon": "./assets/data/nsi/logos/murphyexpress-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/murphyexpress-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -228831,7 +229175,7 @@ }, { "question": "Murphy USA", - "icon": "./assets/data/nsi/logos/murphyusa-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/murphyusa-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -228846,7 +229190,7 @@ }, { "question": "N1", - "icon": "./assets/data/nsi/logos/n1-144e8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/n1-144e8a.png", "osmTags": { "and": [ "advertising=totem", @@ -228870,7 +229214,7 @@ }, { "question": "Naftë", - "icon": "./assets/data/nsi/logos/nafte-80ab21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nafte-80ab21.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228885,7 +229229,7 @@ }, { "question": "Nasona Oil", - "icon": "./assets/data/nsi/logos/nasona-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nasona-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228902,7 +229246,7 @@ }, { "question": "Nayara", - "icon": "./assets/data/nsi/logos/nayara-96166f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nayara-96166f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228917,7 +229261,7 @@ }, { "question": "Neste", - "icon": "./assets/data/nsi/logos/neste-ff109b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/neste-ff109b.png", "osmTags": { "and": [ "advertising=totem", @@ -228941,7 +229285,7 @@ }, { "question": "Nordoel", - "icon": "./assets/data/nsi/logos/nordoel-3c3d38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordoel-3c3d38.jpg", "osmTags": { "and": [ "advertising=totem", @@ -228956,7 +229300,7 @@ }, { "question": "Nouria", - "icon": "./assets/data/nsi/logos/nouria-355b7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nouria-355b7e.png", "osmTags": { "and": [ "advertising=totem", @@ -228971,7 +229315,7 @@ }, { "question": "NP", - "icon": "./assets/data/nsi/logos/np-59a262.png", + "icon": "https://data.mapcomplete.org/nsi//logos/np-59a262.png", "osmTags": { "and": [ "advertising=totem", @@ -228986,7 +229330,7 @@ }, { "question": "npd", - "icon": "./assets/data/nsi/logos/npd-34a242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/npd-34a242.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229010,7 +229354,7 @@ }, { "question": "OIL!", - "icon": "./assets/data/nsi/logos/oil-ff109b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/oil-ff109b.svg", "osmTags": { "and": [ "advertising=totem", @@ -229034,7 +229378,7 @@ }, { "question": "Oilibya", - "icon": "./assets/data/nsi/logos/oilibya-11febf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oilibya-11febf.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229065,7 +229409,7 @@ }, { "question": "OK (Nederland)", - "icon": "./assets/data/nsi/logos/ok-ac4a89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ok-ac4a89.png", "osmTags": { "and": [ "advertising=totem", @@ -229080,7 +229424,7 @@ }, { "question": "OKQ8", - "icon": "./assets/data/nsi/logos/okq8-ea9d91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okq8-ea9d91.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229104,7 +229448,7 @@ }, { "question": "Olerex", - "icon": "./assets/data/nsi/logos/olerex-19c48c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/olerex-19c48c.png", "osmTags": { "and": [ "advertising=totem", @@ -229119,7 +229463,7 @@ }, { "question": "Olís", - "icon": "./assets/data/nsi/logos/olis-144e8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/olis-144e8a.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229134,7 +229478,7 @@ }, { "question": "OMV", - "icon": "./assets/data/nsi/logos/omv-ff109b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omv-ff109b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229158,7 +229502,7 @@ }, { "question": "Opet", - "icon": "./assets/data/nsi/logos/opet-b13929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opet-b13929.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229173,7 +229517,7 @@ }, { "question": "Orkan", - "icon": "./assets/data/nsi/logos/orkan-144e8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orkan-144e8a.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229188,7 +229532,7 @@ }, { "question": "Orlen", - "icon": "./assets/data/nsi/logos/orlen-5e42d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlen-5e42d4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229203,7 +229547,7 @@ }, { "question": "Orlen express", - "icon": "./assets/data/nsi/logos/orlenexpress-7e45f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlenexpress-7e45f4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229227,7 +229571,7 @@ }, { "question": "OTR", - "icon": "./assets/data/nsi/logos/otr-a31042.png", + "icon": "https://data.mapcomplete.org/nsi//logos/otr-a31042.png", "osmTags": { "and": [ "advertising=totem", @@ -229242,7 +229586,7 @@ }, { "question": "Oxxo", - "icon": "./assets/data/nsi/logos/oxxo-ff109b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxxo-ff109b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229280,7 +229624,7 @@ }, { "question": "Pacific Oil Ghana", - "icon": "./assets/data/nsi/logos/pacific-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacific-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229297,7 +229641,7 @@ }, { "question": "Pacific Pride", - "icon": "./assets/data/nsi/logos/pacificpride-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificpride-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229312,7 +229656,7 @@ }, { "question": "PAK'nSAVE Fuel", - "icon": "./assets/data/nsi/logos/paknsavefuel-34a242.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paknsavefuel-34a242.png", "osmTags": { "and": [ "advertising=totem", @@ -229327,7 +229671,7 @@ }, { "question": "Parallel", - "icon": "./assets/data/nsi/logos/parallel-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parallel-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229351,7 +229695,7 @@ }, { "question": "Pecsa", - "icon": "./assets/data/nsi/logos/pecsa-c91af4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pecsa-c91af4.png", "osmTags": { "and": [ "advertising=totem", @@ -229366,7 +229710,7 @@ }, { "question": "Pemex", - "icon": "./assets/data/nsi/logos/pemex-34b7e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pemex-34b7e4.png", "osmTags": { "and": [ "advertising=totem", @@ -229381,7 +229725,7 @@ }, { "question": "Pertamina", - "icon": "./assets/data/nsi/logos/pertamina-37a57e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pertamina-37a57e.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229396,7 +229740,7 @@ }, { "question": "Petro", - "icon": "./assets/data/nsi/logos/petro-5708fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petro-5708fd.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229421,7 +229765,7 @@ }, { "question": "Petro Seven", - "icon": "./assets/data/nsi/logos/petroseven-34b7e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroseven-34b7e4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229436,7 +229780,7 @@ }, { "question": "Petro-Canada", - "icon": "./assets/data/nsi/logos/petrocanada-e93e09.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrocanada-e93e09.svg", "osmTags": { "and": [ "advertising=totem", @@ -229451,7 +229795,7 @@ }, { "question": "Petro-T", - "icon": "./assets/data/nsi/logos/petrot-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrot-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229480,7 +229824,7 @@ }, { "question": "Petroecuador", - "icon": "./assets/data/nsi/logos/petroecuador-477c71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroecuador-477c71.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229495,7 +229839,7 @@ }, { "question": "Petrol", - "icon": "./assets/data/nsi/logos/petrol-e97370.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrol-e97370.svg", "osmTags": { "and": [ "advertising=totem", @@ -229510,7 +229854,7 @@ }, { "question": "Petrol Ofisi", - "icon": "./assets/data/nsi/logos/petrolofisi-ff109b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrolofisi-ff109b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229525,7 +229869,7 @@ }, { "question": "Petrolimex", - "icon": "./assets/data/nsi/logos/petrolimex-ff109b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrolimex-ff109b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229540,7 +229884,7 @@ }, { "question": "Petrolina", - "icon": "./assets/data/nsi/logos/petrolina-66fbaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrolina-66fbaf.png", "osmTags": { "and": [ "advertising=totem", @@ -229555,7 +229899,7 @@ }, { "question": "Petrom (Maroc)", - "icon": "./assets/data/nsi/logos/petrom-3f0b55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrom-3f0b55.png", "osmTags": { "and": [ "advertising=totem", @@ -229570,7 +229914,7 @@ }, { "question": "Petrom (Moldova/România)", - "icon": "./assets/data/nsi/logos/petrom-b4e784.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrom-b4e784.png", "osmTags": { "and": [ "advertising=totem", @@ -229594,7 +229938,7 @@ }, { "question": "Petron", - "icon": "./assets/data/nsi/logos/petron-e61a3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petron-e61a3f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229609,7 +229953,7 @@ }, { "question": "Petronas", - "icon": "./assets/data/nsi/logos/petronas-ff109b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petronas-ff109b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229624,7 +229968,7 @@ }, { "question": "Petronor", - "icon": "./assets/data/nsi/logos/petronor-80ab21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petronor-80ab21.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229639,7 +229983,7 @@ }, { "question": "PetroPerú", - "icon": "./assets/data/nsi/logos/petroperu-c91af4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petroperu-c91af4.png", "osmTags": { "and": [ "advertising=totem", @@ -229654,7 +229998,7 @@ }, { "question": "Petroprix", - "icon": "./assets/data/nsi/logos/petroprix-9b7c40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroprix-9b7c40.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229669,7 +230013,7 @@ }, { "question": "Petrosol", - "icon": "./assets/data/nsi/logos/petrosol-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrosol-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229698,7 +230042,7 @@ }, { "question": "Phillips 66", - "icon": "./assets/data/nsi/logos/phillips66-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phillips66-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229713,7 +230057,7 @@ }, { "question": "Phoenix", - "icon": "./assets/data/nsi/logos/phoenix-10e4f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/phoenix-10e4f0.png", "osmTags": { "and": [ "advertising=totem", @@ -229737,7 +230081,7 @@ }, { "question": "Pilot", - "icon": "./assets/data/nsi/logos/pilot-5708fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pilot-5708fd.png", "osmTags": { "and": [ "advertising=totem", @@ -229753,7 +230097,7 @@ }, { "question": "Pioneer", - "icon": "./assets/data/nsi/logos/pioneer-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pioneer-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229786,7 +230130,7 @@ }, { "question": "Power", - "icon": "./assets/data/nsi/logos/power-dbb9dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/power-dbb9dc.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229801,7 +230145,7 @@ }, { "question": "Preem", - "icon": "./assets/data/nsi/logos/preem-a1e918.png", + "icon": "https://data.mapcomplete.org/nsi//logos/preem-a1e918.png", "osmTags": { "and": [ "advertising=totem", @@ -229816,7 +230160,7 @@ }, { "question": "Primax (Ecuador)", - "icon": "./assets/data/nsi/logos/primax-477c71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/primax-477c71.png", "osmTags": { "and": [ "advertising=totem", @@ -229831,7 +230175,7 @@ }, { "question": "Primax (Perú)", - "icon": "./assets/data/nsi/logos/primax-c91af4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/primax-c91af4.png", "osmTags": { "and": [ "advertising=totem", @@ -229846,7 +230190,7 @@ }, { "question": "Prio", - "icon": "./assets/data/nsi/logos/prio-a8414b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prio-a8414b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229870,7 +230214,7 @@ }, { "question": "PT", - "icon": "./assets/data/nsi/logos/pt-f2ecb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pt-f2ecb6.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229885,7 +230229,7 @@ }, { "question": "PTT", - "icon": "./assets/data/nsi/logos/ptt-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ptt-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229900,7 +230244,7 @@ }, { "question": "Puma", - "icon": "./assets/data/nsi/logos/puma-445a61.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/puma-445a61.svg", "osmTags": { "and": [ "advertising=totem", @@ -229938,7 +230282,7 @@ }, { "question": "Q1", - "icon": "./assets/data/nsi/logos/q1-3c3d38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/q1-3c3d38.png", "osmTags": { "and": [ "advertising=totem", @@ -229953,7 +230297,7 @@ }, { "question": "Q8", - "icon": "./assets/data/nsi/logos/q8-aa562b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/q8-aa562b.png", "osmTags": { "and": [ "advertising=totem", @@ -229968,7 +230312,7 @@ }, { "question": "Q8 Easy", - "icon": "./assets/data/nsi/logos/q8easy-062984.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/q8easy-062984.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229983,7 +230327,7 @@ }, { "question": "Qazaq Oil", - "icon": "./assets/data/nsi/logos/qazaqoil-cac4e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qazaqoil-cac4e0.jpg", "osmTags": { "and": [ "advertising=totem", @@ -229998,7 +230342,7 @@ }, { "question": "Qik-n-EZ", - "icon": "./assets/data/nsi/logos/qiknez-717302.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qiknez-717302.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230027,7 +230371,7 @@ }, { "question": "QuickChek", - "icon": "./assets/data/nsi/logos/quickchek-647198.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/quickchek-647198.svg", "osmTags": { "and": [ "advertising=totem", @@ -230056,7 +230400,7 @@ }, { "question": "QuikTrip", - "icon": "./assets/data/nsi/logos/quiktrip-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quiktrip-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230072,7 +230416,7 @@ }, { "question": "RaceTrac", - "icon": "./assets/data/nsi/logos/racetrac-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/racetrac-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230087,7 +230431,7 @@ }, { "question": "RaceWay", - "icon": "./assets/data/nsi/logos/raceway-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raceway-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230111,7 +230455,7 @@ }, { "question": "RD Petroleum", - "icon": "./assets/data/nsi/logos/rdpetroleum-34a242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rdpetroleum-34a242.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230128,7 +230472,7 @@ }, { "question": "RealK", - "icon": "./assets/data/nsi/logos/realk-bb7061.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/realk-bb7061.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230143,7 +230487,7 @@ }, { "question": "Refinor", - "icon": "./assets/data/nsi/logos/refinor-2d76fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/refinor-2d76fb.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230167,7 +230511,7 @@ }, { "question": "Reliance (India)", - "icon": "./assets/data/nsi/logos/reliance-96166f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reliance-96166f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230182,7 +230526,7 @@ }, { "question": "Rendichicas", - "icon": "./assets/data/nsi/logos/rendichicas-34b7e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rendichicas-34b7e4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230206,7 +230550,7 @@ }, { "question": "Repsol", - "icon": "./assets/data/nsi/logos/repsol-ff109b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/repsol-ff109b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230221,7 +230565,7 @@ }, { "question": "Retitalia", - "icon": "./assets/data/nsi/logos/retitalia-996b0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/retitalia-996b0f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230236,7 +230580,7 @@ }, { "question": "Revoil", - "icon": "./assets/data/nsi/logos/revoil-d67647.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/revoil-d67647.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230251,7 +230595,7 @@ }, { "question": "Rhodes", - "icon": "./assets/data/nsi/logos/rhodes-4f6200.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodes-4f6200.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230266,7 +230610,7 @@ }, { "question": "RodOil", - "icon": "./assets/data/nsi/logos/rodoil-6d0925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rodoil-6d0925.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230281,7 +230625,7 @@ }, { "question": "Rompetrol", - "icon": "./assets/data/nsi/logos/rompetrol-b4e784.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rompetrol-b4e784.png", "osmTags": { "and": [ "advertising=totem", @@ -230296,7 +230640,7 @@ }, { "question": "Rotten Robbie", - "icon": "./assets/data/nsi/logos/rottenrobbie-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rottenrobbie-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -230311,7 +230655,7 @@ }, { "question": "Royal Farms", - "icon": "./assets/data/nsi/logos/royalfarms-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalfarms-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230326,7 +230670,7 @@ }, { "question": "Rubis", - "icon": "./assets/data/nsi/logos/rubis-445a61.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rubis-445a61.svg", "osmTags": { "and": [ "advertising=totem", @@ -230355,7 +230699,7 @@ }, { "question": "Rutter's", - "icon": "./assets/data/nsi/logos/rutters-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rutters-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230370,7 +230714,7 @@ }, { "question": "S-Oil", - "icon": "./assets/data/nsi/logos/soil-b6aff4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/soil-b6aff4.svg", "osmTags": { "and": [ "advertising=totem", @@ -230385,7 +230729,7 @@ }, { "question": "Safeway Fuel Station", - "icon": "./assets/data/nsi/logos/safeway-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safeway-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230400,7 +230744,7 @@ }, { "question": "Sainsbury's", - "icon": "./assets/data/nsi/logos/sainsburys-4d1df5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sainsburys-4d1df5.png", "osmTags": { "and": [ "advertising=totem", @@ -230415,7 +230759,7 @@ }, { "question": "Sam's Club", - "icon": "./assets/data/nsi/logos/samsclub-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samsclub-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230430,7 +230774,7 @@ }, { "question": "San Marco Petroli", - "icon": "./assets/data/nsi/logos/sanmarcopetroli-996b0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanmarcopetroli-996b0f.png", "osmTags": { "and": [ "advertising=totem", @@ -230445,7 +230789,7 @@ }, { "question": "Sasol", - "icon": "./assets/data/nsi/logos/sasol-30e129.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sasol-30e129.png", "osmTags": { "and": [ "advertising=totem", @@ -230460,7 +230804,7 @@ }, { "question": "SB Tank", - "icon": "./assets/data/nsi/logos/sbtank-3c3d38.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbtank-3c3d38.svg", "osmTags": { "and": [ "advertising=totem", @@ -230475,7 +230819,7 @@ }, { "question": "Seaoil", - "icon": "./assets/data/nsi/logos/seaoil-10e4f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seaoil-10e4f0.png", "osmTags": { "and": [ "advertising=totem", @@ -230499,7 +230843,7 @@ }, { "question": "Sheetz", - "icon": "./assets/data/nsi/logos/sheetz-e7b9d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sheetz-e7b9d2.png", "osmTags": { "and": [ "advertising=totem", @@ -230514,7 +230858,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-bad4ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-bad4ad.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230529,7 +230873,7 @@ }, { "question": "Shell Express", - "icon": "./assets/data/nsi/logos/shellexpress-1ce709.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shellexpress-1ce709.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230544,7 +230888,7 @@ }, { "question": "Shiptech", - "icon": "./assets/data/nsi/logos/shiptech-960b09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shiptech-960b09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230568,7 +230912,7 @@ }, { "question": "SIM", - "icon": "./assets/data/nsi/logos/sim-6d0925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sim-6d0925.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230583,7 +230927,7 @@ }, { "question": "Sinclair", - "icon": "./assets/data/nsi/logos/sinclair-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinclair-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230598,7 +230942,7 @@ }, { "question": "Sinooil", - "icon": "./assets/data/nsi/logos/sinooil-cac4e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinooil-cac4e0.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230631,7 +230975,7 @@ }, { "question": "Slovnaft", - "icon": "./assets/data/nsi/logos/slovnaft-7c2ff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/slovnaft-7c2ff1.png", "osmTags": { "and": [ "advertising=totem", @@ -230646,7 +230990,7 @@ }, { "question": "Smartfuels", - "icon": "./assets/data/nsi/logos/smartfuels-10e4f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smartfuels-10e4f0.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230677,7 +231021,7 @@ }, { "question": "SOCAR", - "icon": "./assets/data/nsi/logos/socar-563cec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/socar-563cec.png", "osmTags": { "and": [ "advertising=totem", @@ -230692,7 +231036,7 @@ }, { "question": "Sokimex", - "icon": "./assets/data/nsi/logos/sokimex-163c4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sokimex-163c4a.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230707,7 +231051,7 @@ }, { "question": "Sol", - "icon": "./assets/data/nsi/logos/sol-688308.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sol-688308.png", "osmTags": { "and": [ "advertising=totem", @@ -230736,7 +231080,7 @@ }, { "question": "Sonangol", - "icon": "./assets/data/nsi/logos/sonangol-43a0e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonangol-43a0e7.svg", "osmTags": { "and": [ "advertising=totem", @@ -230751,7 +231095,7 @@ }, { "question": "Sonic", - "icon": "./assets/data/nsi/logos/sonic-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonic-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230784,7 +231128,7 @@ }, { "question": "Speedway", - "icon": "./assets/data/nsi/logos/speedway-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedway-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230799,7 +231143,7 @@ }, { "question": "Spinx", - "icon": "./assets/data/nsi/logos/spinx-18231d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spinx-18231d.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230814,7 +231158,7 @@ }, { "question": "Sprint", - "icon": "./assets/data/nsi/logos/sprint-3c3d38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sprint-3c3d38.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230829,7 +231173,7 @@ }, { "question": "St1", - "icon": "./assets/data/nsi/logos/st1-d45232.png", + "icon": "https://data.mapcomplete.org/nsi//logos/st1-d45232.png", "osmTags": { "and": [ "advertising=totem", @@ -230844,7 +231188,7 @@ }, { "question": "star", - "icon": "./assets/data/nsi/logos/star-3c3d38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/star-3c3d38.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230868,7 +231212,7 @@ }, { "question": "StarOil (Ghana)", - "icon": "./assets/data/nsi/logos/staroil-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/staroil-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230885,7 +231229,7 @@ }, { "question": "Station Service E.Leclerc", - "icon": "./assets/data/nsi/logos/eleclerc-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclerc-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230909,7 +231253,7 @@ }, { "question": "Statoil", - "icon": "./assets/data/nsi/logos/statoil-352456.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/statoil-352456.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230924,7 +231268,7 @@ }, { "question": "Stewart's", - "icon": "./assets/data/nsi/logos/stewarts-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stewarts-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230953,7 +231297,7 @@ }, { "question": "Stop & Shop", - "icon": "./assets/data/nsi/logos/stopandshop-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stopandshop-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -230977,7 +231321,7 @@ }, { "question": "Sunoco", - "icon": "./assets/data/nsi/logos/sunoco-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sunoco-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -230992,7 +231336,7 @@ }, { "question": "Sunpet", - "icon": "./assets/data/nsi/logos/sunpet-b13929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunpet-b13929.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231007,7 +231351,7 @@ }, { "question": "Super U", - "icon": "./assets/data/nsi/logos/superu-2974c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superu-2974c2.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231031,7 +231375,7 @@ }, { "question": "Système U", - "icon": "./assets/data/nsi/logos/systemeu-df7908.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/systemeu-df7908.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231046,15 +231390,15 @@ }, { "question": "TA", - "icon": "./assets/data/nsi/logos/ta-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ta-647198.jpg", "osmTags": { "and": [ "advertising=totem", - "official_name=TravelCenters of America", { "or": [ "brand=TA", - "brand:wikidata=Q7835892" + "brand:wikidata=Q7835892", + "official_name=TravelCenters of America" ] } ] @@ -231062,7 +231406,7 @@ }, { "question": "TAM Autohof", - "icon": "./assets/data/nsi/logos/tamautohof-3a612c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamautohof-3a612c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231077,7 +231421,7 @@ }, { "question": "Tamoil", - "icon": "./assets/data/nsi/logos/tamoil-09758b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamoil-09758b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231092,7 +231436,7 @@ }, { "question": "Tamoil Express", - "icon": "./assets/data/nsi/logos/tamoilexpress-ac4a89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamoilexpress-ac4a89.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231107,7 +231451,7 @@ }, { "question": "Tango", - "icon": "./assets/data/nsi/logos/tango-09963b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tango-09963b.png", "osmTags": { "and": [ "advertising=totem", @@ -231136,7 +231480,7 @@ }, { "question": "Tanka", - "icon": "./assets/data/nsi/logos/tanka-ea9d91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tanka-ea9d91.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231151,7 +231495,7 @@ }, { "question": "Tanker", - "icon": "./assets/data/nsi/logos/tanker-bb7061.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tanker-bb7061.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231166,7 +231510,7 @@ }, { "question": "tankpool24", - "icon": "./assets/data/nsi/logos/tankpool24-836245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tankpool24-836245.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231181,7 +231525,7 @@ }, { "question": "TanQyou", - "icon": "./assets/data/nsi/logos/tanqyou-ac4a89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tanqyou-ac4a89.png", "osmTags": { "and": [ "advertising=totem", @@ -231196,7 +231540,7 @@ }, { "question": "Teboil", - "icon": "./assets/data/nsi/logos/teboil-7aaf7f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/teboil-7aaf7f.png", "osmTags": { "and": [ "advertising=totem", @@ -231211,7 +231555,7 @@ }, { "question": "Tela", - "icon": "./assets/data/nsi/logos/tela-163c4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tela-163c4a.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231226,7 +231570,7 @@ }, { "question": "Telenergy", - "icon": "./assets/data/nsi/logos/telenergy-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenergy-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231243,7 +231587,7 @@ }, { "question": "Tempo", - "icon": "./assets/data/nsi/logos/tempo-e93e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tempo-e93e09.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231258,7 +231602,7 @@ }, { "question": "termo", - "icon": "./assets/data/nsi/logos/termo-b13929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/termo-b13929.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231273,7 +231617,7 @@ }, { "question": "Terpel", - "icon": "./assets/data/nsi/logos/terpel-6bcba4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terpel-6bcba4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231288,7 +231632,7 @@ }, { "question": "Terrible's", - "icon": "./assets/data/nsi/logos/terribles-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terribles-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231303,7 +231647,7 @@ }, { "question": "Tesco", - "icon": "./assets/data/nsi/logos/tesco-133242.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tesco-133242.png", "osmTags": { "and": [ "advertising=totem", @@ -231318,7 +231662,7 @@ }, { "question": "Tesoro", - "icon": "./assets/data/nsi/logos/tesoro-647198.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tesoro-647198.svg", "osmTags": { "and": [ "advertising=totem", @@ -231333,7 +231677,7 @@ }, { "question": "Texaco", - "icon": "./assets/data/nsi/logos/texaco-f86d48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texaco-f86d48.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231348,7 +231692,7 @@ }, { "question": "Thorntons", - "icon": "./assets/data/nsi/logos/thorntons-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thorntons-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -231363,7 +231707,7 @@ }, { "question": "TinQ", - "icon": "./assets/data/nsi/logos/tinq-dd31d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tinq-dd31d7.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231378,7 +231722,7 @@ }, { "question": "Tirex Petrol", - "icon": "./assets/data/nsi/logos/tirexpetrol-48997e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tirexpetrol-48997e.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231393,7 +231737,7 @@ }, { "question": "Tom Thumb (Texas)", - "icon": "./assets/data/nsi/logos/tomthumb-4189c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomthumb-4189c0.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231422,15 +231766,15 @@ }, { "question": "Top", - "icon": "./assets/data/nsi/logos/top-dba262.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/top-dba262.jpg", "osmTags": { "and": [ "advertising=totem", - "official_name=Tedcastles Oil Products", { "or": [ "brand=Top", - "brand:wikidata=Q7693933" + "brand:wikidata=Q7693933", + "official_name=Tedcastles Oil Products" ] } ] @@ -231438,7 +231782,7 @@ }, { "question": "Top Oil", - "icon": "./assets/data/nsi/logos/topoil-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topoil-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231469,15 +231813,15 @@ }, { "question": "Tops", - "icon": "./assets/data/nsi/logos/tops-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tops-647198.jpg", "osmTags": { "and": [ "advertising=totem", - "official_name=Tops Gasoline", { "or": [ "brand=Tops", - "brand:wikidata=Q7825137" + "brand:wikidata=Q7825137", + "official_name=Tops Gasoline" ] } ] @@ -231494,7 +231838,7 @@ }, { "question": "Total طوطال", - "icon": "./assets/data/nsi/logos/total-4ffea6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/total-4ffea6.png", "osmTags": { "and": [ "advertising=totem", @@ -231511,7 +231855,7 @@ }, { "question": "TotalEnergies", - "icon": "./assets/data/nsi/logos/totalenergies-39bce9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalenergies-39bce9.png", "osmTags": { "and": [ "advertising=totem", @@ -231549,7 +231893,7 @@ }, { "question": "True Zero", - "icon": "./assets/data/nsi/logos/truezero-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/truezero-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -231565,7 +231909,7 @@ }, { "question": "Turkey Hill", - "icon": "./assets/data/nsi/logos/turkeyhill-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkeyhill-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231580,7 +231924,7 @@ }, { "question": "Türkiye Petrolleri", - "icon": "./assets/data/nsi/logos/turkiyepetrolleri-b13929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkiyepetrolleri-b13929.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231595,7 +231939,7 @@ }, { "question": "Turmöl", - "icon": "./assets/data/nsi/logos/turmol-96ce31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/turmol-96ce31.png", "osmTags": { "and": [ "advertising=totem", @@ -231610,7 +231954,7 @@ }, { "question": "U", - "icon": "./assets/data/nsi/logos/u-2974c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/u-2974c2.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231625,7 +231969,7 @@ }, { "question": "U.GO", - "icon": "./assets/data/nsi/logos/ugo-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ugo-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231640,7 +231984,7 @@ }, { "question": "UDF Fuel", - "icon": "./assets/data/nsi/logos/uniteddairyfarmers-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniteddairyfarmers-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231656,7 +232000,7 @@ }, { "question": "UFA", - "icon": "./assets/data/nsi/logos/ufa-d2e1c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ufa-d2e1c8.svg", "osmTags": { "and": [ "advertising=totem", @@ -231671,7 +232015,7 @@ }, { "question": "Ukrnafta", - "icon": "./assets/data/nsi/logos/ukrnafta-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrnafta-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231690,7 +232034,7 @@ }, { "question": "Ultramar", - "icon": "./assets/data/nsi/logos/ultramar-445a61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ultramar-445a61.png", "osmTags": { "and": [ "advertising=totem", @@ -231714,7 +232058,7 @@ }, { "question": "United", - "icon": "./assets/data/nsi/logos/united-a31042.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/united-a31042.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231745,7 +232089,7 @@ }, { "question": "Uno", - "icon": "./assets/data/nsi/logos/uno-a15c89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uno-a15c89.png", "osmTags": { "and": [ "advertising=totem", @@ -231760,7 +232104,7 @@ }, { "question": "Uno-X", - "icon": "./assets/data/nsi/logos/unox-38cbf4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unox-38cbf4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231775,7 +232119,7 @@ }, { "question": "UPG", - "icon": "./assets/data/nsi/logos/upg-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/upg-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231790,7 +232134,7 @@ }, { "question": "USA Gasoline", - "icon": "./assets/data/nsi/logos/usagasoline-647198.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/usagasoline-647198.svg", "osmTags": { "and": [ "advertising=totem", @@ -231849,7 +232193,7 @@ }, { "question": "Valero", - "icon": "./assets/data/nsi/logos/valero-445a61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valero-445a61.png", "osmTags": { "and": [ "advertising=totem", @@ -231864,7 +232208,7 @@ }, { "question": "Vega Carburanti", - "icon": "./assets/data/nsi/logos/vegacarburanti-996b0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vegacarburanti-996b0f.png", "osmTags": { "and": [ "advertising=totem", @@ -231879,7 +232223,7 @@ }, { "question": "Viada", - "icon": "./assets/data/nsi/logos/viada-7c2943.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/viada-7c2943.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231894,7 +232238,7 @@ }, { "question": "Virši", - "icon": "./assets/data/nsi/logos/virsi-bac13d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virsi-bac13d.png", "osmTags": { "and": [ "advertising=totem", @@ -231909,7 +232253,7 @@ }, { "question": "Vito", - "icon": "./assets/data/nsi/logos/vito-2974c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vito-2974c2.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231924,7 +232268,7 @@ }, { "question": "VM Petroleum", - "icon": "./assets/data/nsi/logos/vmpetroleum-ea0204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vmpetroleum-ea0204.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231939,7 +232283,7 @@ }, { "question": "Waitomo", - "icon": "./assets/data/nsi/logos/waitomo-34a242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waitomo-34a242.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231954,7 +232298,7 @@ }, { "question": "Walmart", - "icon": "./assets/data/nsi/logos/walmart-445a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmart-445a61.jpg", "osmTags": { "and": [ "advertising=totem", @@ -231978,7 +232322,7 @@ }, { "question": "Wawa", - "icon": "./assets/data/nsi/logos/wawa-c92643.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wawa-c92643.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232007,7 +232351,7 @@ }, { "question": "Weis Gas N' Go", - "icon": "./assets/data/nsi/logos/weis-647198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weis-647198.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232022,7 +232366,7 @@ }, { "question": "Wesco", - "icon": "./assets/data/nsi/logos/wesco-647198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wesco-647198.png", "osmTags": { "and": [ "advertising=totem", @@ -232037,7 +232381,7 @@ }, { "question": "Westfalen", - "icon": "./assets/data/nsi/logos/westfalen-3c3d38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfalen-3c3d38.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232052,7 +232396,7 @@ }, { "question": "Winxo", - "icon": "./assets/data/nsi/logos/winxo-3f0b55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winxo-3f0b55.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232067,7 +232411,7 @@ }, { "question": "WOG", - "icon": "./assets/data/nsi/logos/wog-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wog-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232110,7 +232454,7 @@ }, { "question": "YPF", - "icon": "./assets/data/nsi/logos/ypf-2d76fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ypf-2d76fb.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232125,7 +232469,7 @@ }, { "question": "YX", - "icon": "./assets/data/nsi/logos/yx-38cbf4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yx-38cbf4.png", "osmTags": { "and": [ "advertising=totem", @@ -232158,7 +232502,7 @@ }, { "question": "Z", - "icon": "./assets/data/nsi/logos/z-34a242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/z-34a242.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232173,7 +232517,7 @@ }, { "question": "ZEN Petroleum", - "icon": "./assets/data/nsi/logos/zen-875bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zen-875bd4.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232190,7 +232534,7 @@ }, { "question": "ZG Raiffeisen Energie", - "icon": "./assets/data/nsi/logos/zgraiffeisen-3c3d38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zgraiffeisen-3c3d38.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232205,7 +232549,7 @@ }, { "question": "Ziz", - "icon": "./assets/data/nsi/logos/ziz-3f0b55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ziz-3f0b55.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232238,7 +232582,7 @@ }, { "question": "ΕΛΙΝΟΙΛ", - "icon": "./assets/data/nsi/logos/a9320e-d67647.png", + "icon": "https://data.mapcomplete.org/nsi//logos/a9320e-d67647.png", "osmTags": { "and": [ "advertising=totem", @@ -232253,7 +232597,7 @@ }, { "question": "ΕΤΕΚΑ", - "icon": "./assets/data/nsi/logos/1b5559-d67647.png", + "icon": "https://data.mapcomplete.org/nsi//logos/1b5559-d67647.png", "osmTags": { "and": [ "advertising=totem", @@ -232268,7 +232612,7 @@ }, { "question": "Авіас", - "icon": "./assets/data/nsi/logos/avias-b3069c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avias-b3069c.svg", "osmTags": { "and": [ "advertising=totem", @@ -232287,7 +232631,7 @@ }, { "question": "Башнефть", - "icon": "./assets/data/nsi/logos/bashneft-16dca8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bashneft-16dca8.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232306,7 +232650,7 @@ }, { "question": "Белоруснефть", - "icon": "./assets/data/nsi/logos/ed92ce-c011c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ed92ce-c011c3.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232321,7 +232665,7 @@ }, { "question": "Бенита", - "icon": "./assets/data/nsi/logos/benita-ea0204.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benita-ea0204.png", "osmTags": { "and": [ "advertising=totem", @@ -232338,7 +232682,7 @@ }, { "question": "БРСМ-Нафта", - "icon": "./assets/data/nsi/logos/69e648-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/69e648-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232353,7 +232697,7 @@ }, { "question": "Газпромнефть", - "icon": "./assets/data/nsi/logos/0b910f-dec76e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/0b910f-dec76e.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232418,7 +232762,7 @@ }, { "question": "Кнез Петрол", - "icon": "./assets/data/nsi/logos/knezpetrol-1cc55f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knezpetrol-1cc55f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232458,7 +232802,7 @@ }, { "question": "ҚазМұнайГаз", - "icon": "./assets/data/nsi/logos/ef63bd-cac4e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ef63bd-cac4e0.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232477,7 +232821,7 @@ }, { "question": "Лукойл", - "icon": "./assets/data/nsi/logos/lukoil-0d2801.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-0d2801.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232496,7 +232840,7 @@ }, { "question": "Лукойл (България)", - "icon": "./assets/data/nsi/logos/lukoil-ea0204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-ea0204.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232515,7 +232859,7 @@ }, { "question": "Макпетрол", - "icon": "./assets/data/nsi/logos/c21137-09b245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c21137-09b245.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232530,7 +232874,7 @@ }, { "question": "Маркет", - "icon": "./assets/data/nsi/logos/market-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/market-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232549,7 +232893,7 @@ }, { "question": "Нефтьмагистраль", - "icon": "./assets/data/nsi/logos/neftmagistral-16dca8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neftmagistral-16dca8.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232568,7 +232912,7 @@ }, { "question": "НИС Петрол", - "icon": "./assets/data/nsi/logos/nispetrol-1cc55f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nispetrol-1cc55f.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232612,7 +232956,7 @@ }, { "question": "ОККО", - "icon": "./assets/data/nsi/logos/okko-b3069c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okko-b3069c.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232631,7 +232975,7 @@ }, { "question": "ОКТА", - "icon": "./assets/data/nsi/logos/okta-09b245.png", + "icon": "https://data.mapcomplete.org/nsi//logos/okta-09b245.png", "osmTags": { "and": [ "advertising=totem", @@ -232648,7 +232992,7 @@ }, { "question": "ОМВ", - "icon": "./assets/data/nsi/logos/637ba4-ea0204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/637ba4-ea0204.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232677,7 +233021,7 @@ }, { "question": "Петрол", - "icon": "./assets/data/nsi/logos/petrol-ea0204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrol-ea0204.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232696,7 +233040,7 @@ }, { "question": "ПТК", - "icon": "./assets/data/nsi/logos/thepetersburgfuelcompany-16dca8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thepetersburgfuelcompany-16dca8.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232715,7 +233059,7 @@ }, { "question": "Ромпетрол", - "icon": "./assets/data/nsi/logos/rompetrol-ea0204.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rompetrol-ea0204.png", "osmTags": { "and": [ "advertising=totem", @@ -232732,7 +233076,7 @@ }, { "question": "Роснефть", - "icon": "./assets/data/nsi/logos/rosneft-16dca8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rosneft-16dca8.png", "osmTags": { "and": [ "advertising=totem", @@ -232769,7 +233113,7 @@ }, { "question": "Сургутнефтегаз", - "icon": "./assets/data/nsi/logos/surgutneftegas-16dca8.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/surgutneftegas-16dca8.gif", "osmTags": { "and": [ "advertising=totem", @@ -232815,7 +233159,7 @@ }, { "question": "Татнефть", - "icon": "./assets/data/nsi/logos/tatneft-16dca8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tatneft-16dca8.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232880,7 +233224,7 @@ }, { "question": "გალფი", - "icon": "./assets/data/nsi/logos/gulf-4e8c26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gulf-4e8c26.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232922,7 +233266,7 @@ }, { "question": "ეკოპეტროლი", - "icon": "./assets/data/nsi/logos/ekopetrol-4e8c26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekopetrol-4e8c26.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232963,7 +233307,7 @@ }, { "question": "ლუკოილი", - "icon": "./assets/data/nsi/logos/lukoil-4e8c26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-4e8c26.jpg", "osmTags": { "and": [ "advertising=totem", @@ -232987,7 +233331,7 @@ }, { "question": "ნეოგაზი", - "icon": "./assets/data/nsi/logos/neogas-4e8c26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neogas-4e8c26.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233028,7 +233372,7 @@ }, { "question": "პორტალი", - "icon": "./assets/data/nsi/logos/portal-4e8c26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portal-4e8c26.png", "osmTags": { "and": [ "advertising=totem", @@ -233047,7 +233391,7 @@ }, { "question": "რომპეტროლი", - "icon": "./assets/data/nsi/logos/rompetrol-4e8c26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rompetrol-4e8c26.png", "osmTags": { "and": [ "advertising=totem", @@ -233066,7 +233410,7 @@ }, { "question": "სოკარი", - "icon": "./assets/data/nsi/logos/socar-4e8c26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/socar-4e8c26.png", "osmTags": { "and": [ "advertising=totem", @@ -233088,7 +233432,7 @@ }, { "question": "ქონექთი", - "icon": "./assets/data/nsi/logos/connect-4e8c26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/connect-4e8c26.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233107,7 +233451,7 @@ }, { "question": "דור אלון", - "icon": "./assets/data/nsi/logos/doralon-30ed24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/doralon-30ed24.png", "osmTags": { "and": [ "advertising=totem", @@ -233126,7 +233470,7 @@ }, { "question": "סונול", - "icon": "./assets/data/nsi/logos/sonol-30ed24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sonol-30ed24.png", "osmTags": { "and": [ "advertising=totem", @@ -233145,7 +233489,7 @@ }, { "question": "פז", - "icon": "./assets/data/nsi/logos/paz-30ed24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paz-30ed24.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233164,7 +233508,7 @@ }, { "question": "أدنوك", - "icon": "./assets/data/nsi/logos/adnoc-44b58a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adnoc-44b58a.png", "osmTags": { "and": [ "advertising=totem", @@ -233183,7 +233527,7 @@ }, { "question": "أرامكو", - "icon": "./assets/data/nsi/logos/aramco-b07de9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aramco-b07de9.png", "osmTags": { "and": [ "advertising=totem", @@ -233202,7 +233546,7 @@ }, { "question": "الدريس", - "icon": "./assets/data/nsi/logos/aldrees-b07de9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldrees-b07de9.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233221,7 +233565,7 @@ }, { "question": "امارات", - "icon": "./assets/data/nsi/logos/emarat-2e14a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emarat-2e14a2.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233240,7 +233584,7 @@ }, { "question": "اينوك", - "icon": "./assets/data/nsi/logos/enoc-a1d67d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enoc-a1d67d.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233259,7 +233603,7 @@ }, { "question": "بترومين", - "icon": "./assets/data/nsi/logos/petromin-b07de9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petromin-b07de9.svg", "osmTags": { "and": [ "advertising=totem", @@ -233278,7 +233622,7 @@ }, { "question": "پاکستان اسٹیٹ آئل", - "icon": "./assets/data/nsi/logos/pakistanstateoil-2e14a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pakistanstateoil-2e14a2.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233302,7 +233646,7 @@ }, { "question": "توتال", - "icon": "./assets/data/nsi/logos/total-a1d67d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/total-a1d67d.png", "osmTags": { "and": [ "advertising=totem", @@ -233330,7 +233674,7 @@ }, { "question": "ساسكو", - "icon": "./assets/data/nsi/logos/sasco-b07de9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sasco-b07de9.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233358,7 +233702,7 @@ }, { "question": "شل", - "icon": "./assets/data/nsi/logos/shell-ad9852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-ad9852.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233377,7 +233721,7 @@ }, { "question": "شیل", - "icon": "./assets/data/nsi/logos/shell-2e14a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-2e14a2.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233409,7 +233753,7 @@ }, { "question": "عجيل", - "icon": "./assets/data/nsi/logos/agil-2df895.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agil-2df895.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233437,7 +233781,7 @@ }, { "question": "نفط", - "icon": "./assets/data/nsi/logos/naft-b07de9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naft-b07de9.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233465,7 +233809,7 @@ }, { "question": "เชลล์", - "icon": "./assets/data/nsi/logos/shell-f2ecb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-f2ecb6.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233484,7 +233828,7 @@ }, { "question": "บางจาก", - "icon": "./assets/data/nsi/logos/bangchak-f2ecb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangchak-f2ecb6.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233503,7 +233847,7 @@ }, { "question": "ป.ต.ท.", - "icon": "./assets/data/nsi/logos/ptt-f2ecb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ptt-f2ecb6.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233522,7 +233866,7 @@ }, { "question": "เอสโซ่", - "icon": "./assets/data/nsi/logos/esso-f2ecb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-f2ecb6.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233541,7 +233885,7 @@ }, { "question": "현대오일뱅크", - "icon": "./assets/data/nsi/logos/hyundaioilbank-b6aff4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyundaioilbank-b6aff4.svg", "osmTags": { "and": [ "advertising=totem", @@ -233560,7 +233904,7 @@ }, { "question": "キグナス石油", - "icon": "./assets/data/nsi/logos/kygnus-525bb3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kygnus-525bb3.svg", "osmTags": { "and": [ "advertising=totem", @@ -233579,7 +233923,7 @@ }, { "question": "コストコ ガスステーション", - "icon": "./assets/data/nsi/logos/costcogasoline-525bb3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcogasoline-525bb3.svg", "osmTags": { "and": [ "advertising=totem", @@ -233598,11 +233942,10 @@ }, { "question": "コスモ", - "icon": "./assets/data/nsi/logos/cosmo-525bb3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosmo-525bb3.svg", "osmTags": { "and": [ "advertising=totem", - "official_name=コスモ石油", { "or": [ "brand=コスモ", @@ -233610,7 +233953,8 @@ "brand:ja=コスモ", "brand:wikidata=Q2498318", "name:en=Cosmo", - "name:ja=コスモ" + "name:ja=コスモ", + "official_name=コスモ石油" ] } ] @@ -233690,7 +234034,7 @@ }, { "question": "中国石化", - "icon": "./assets/data/nsi/logos/sinopec-24568b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinopec-24568b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233709,7 +234053,7 @@ }, { "question": "中国石油", - "icon": "./assets/data/nsi/logos/petrochina-24568b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrochina-24568b.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233728,7 +234072,7 @@ }, { "question": "中國石化 Sinopec", - "icon": "./assets/data/nsi/logos/sinopec-7f9d5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinopec-7f9d5e.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233751,7 +234095,7 @@ }, { "question": "中國石油 PetroChina", - "icon": "./assets/data/nsi/logos/petrochina-7f9d5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrochina-7f9d5e.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233811,7 +234155,7 @@ }, { "question": "出光", - "icon": "./assets/data/nsi/logos/idemitsu-525bb3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/idemitsu-525bb3.svg", "osmTags": { "and": [ "advertising=totem", @@ -233830,7 +234174,7 @@ }, { "question": "台塑石油", - "icon": "./assets/data/nsi/logos/formosapetrochemicalcorporation-77fe4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/formosapetrochemicalcorporation-77fe4a.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233849,7 +234193,7 @@ }, { "question": "台灣中油", - "icon": "./assets/data/nsi/logos/cpccorporationtaiwan-77fe4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpccorporationtaiwan-77fe4a.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233886,7 +234230,7 @@ }, { "question": "好市多加油站", - "icon": "./assets/data/nsi/logos/costcogasoline-77fe4a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcogasoline-77fe4a.svg", "osmTags": { "and": [ "advertising=totem", @@ -233944,7 +234288,7 @@ }, { "question": "昭和シェル", - "icon": "./assets/data/nsi/logos/showashell-525bb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/showashell-525bb3.jpg", "osmTags": { "and": [ "advertising=totem", @@ -233979,7 +234323,7 @@ }, { "question": "Dogtopia", - "icon": "./assets/data/nsi/logos/dogtopia-03770a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dogtopia-03770a.png", "osmTags": { "and": [ "amenity=animal_boarding", @@ -233996,7 +234340,7 @@ }, { "question": "PetsHotel", - "icon": "./assets/data/nsi/logos/petshotel-03770a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petshotel-03770a.jpg", "osmTags": { "and": [ "amenity=animal_boarding", @@ -234013,7 +234357,7 @@ }, { "question": "PetSuites", - "icon": "./assets/data/nsi/logos/petsuites-a2c409.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petsuites-a2c409.png", "osmTags": { "and": [ "amenity=animal_boarding", @@ -234030,7 +234374,7 @@ }, { "question": "Blue Cross Rehoming Centre", - "icon": "./assets/data/nsi/logos/bluecrossrehomingcentre-ae7821.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluecrossrehomingcentre-ae7821.jpg", "osmTags": { "and": [ "amenity=animal_shelter", @@ -234046,16 +234390,16 @@ }, { "question": "Société Protectrice des Animaux (SPA)", - "icon": "./assets/data/nsi/logos/spa-89458d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spa-89458d.png", "osmTags": { "and": [ "amenity=animal_shelter", - "official_name=Société protectrice des animaux", { "or": [ "brand=SPA", "brand:wikidata=Q47391644", - "name=SPA" + "name=SPA", + "official_name=Société protectrice des animaux" ] } ] @@ -234105,7 +234449,7 @@ }, { "question": "Auro Domus", - "icon": "./assets/data/nsi/logos/aurodomus-4d8c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aurodomus-4d8c03.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234122,7 +234466,7 @@ }, { "question": "Banco24Horas", - "icon": "./assets/data/nsi/logos/banco24horas-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banco24horas-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234153,7 +234497,7 @@ }, { "question": "Bitcoin Depot", - "icon": "./assets/data/nsi/logos/bitcoindepot-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bitcoindepot-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234213,7 +234557,7 @@ }, { "question": "Chime", - "icon": "./assets/data/nsi/logos/chime-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chime-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -234228,7 +234572,7 @@ }, { "question": "China UnionPay", - "icon": "./assets/data/nsi/logos/chinaunionpay-7886cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaunionpay-7886cb.png", "osmTags": { "and": [ "amenity=atm", @@ -234257,7 +234601,7 @@ }, { "question": "CoinFlip", - "icon": "./assets/data/nsi/logos/coinflip-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coinflip-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234273,7 +234617,7 @@ }, { "question": "Coinhub", - "icon": "./assets/data/nsi/logos/coinhub-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coinhub-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -234290,7 +234634,7 @@ }, { "question": "Coinsource", - "icon": "./assets/data/nsi/logos/coinsource-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coinsource-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234321,7 +234665,7 @@ }, { "question": "Deutsche Post", - "icon": "./assets/data/nsi/logos/deutschepost-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschepost-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234336,7 +234680,7 @@ }, { "question": "EasyPay", - "icon": "./assets/data/nsi/logos/easypay-e5108a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/easypay-e5108a.png", "osmTags": { "and": [ "amenity=atm", @@ -234351,7 +234695,7 @@ }, { "question": "Euronet", - "icon": "./assets/data/nsi/logos/euronet-d5d850.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/euronet-d5d850.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234368,7 +234712,7 @@ }, { "question": "Geldmaat", - "icon": "./assets/data/nsi/logos/geldmaat-5333ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/geldmaat-5333ab.png", "osmTags": { "and": [ "amenity=atm", @@ -234385,7 +234729,7 @@ }, { "question": "Hitachi Money Spot ATM", - "icon": "./assets/data/nsi/logos/hitachi-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hitachi-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234400,7 +234744,7 @@ }, { "question": "LibertyX", - "icon": "./assets/data/nsi/logos/libertyx-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libertyx-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234416,7 +234760,7 @@ }, { "question": "MEPS", - "icon": "./assets/data/nsi/logos/meps-bc168a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meps-bc168a.png", "osmTags": { "and": [ "amenity=atm", @@ -234433,7 +234777,7 @@ }, { "question": "MoneyGet", - "icon": "./assets/data/nsi/logos/moneyget-7535fc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/moneyget-7535fc.svg", "osmTags": { "and": [ "amenity=atm", @@ -234481,7 +234825,7 @@ }, { "question": "Old Mutual", - "icon": "./assets/data/nsi/logos/oldmutual-ff45b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oldmutual-ff45b4.png", "osmTags": { "and": [ "amenity=atm", @@ -234526,7 +234870,7 @@ }, { "question": "Post Office", - "icon": "./assets/data/nsi/logos/postoffice-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postoffice-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234541,7 +234885,7 @@ }, { "question": "Postamat", - "icon": "./assets/data/nsi/logos/postamat-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postamat-64483a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234558,7 +234902,7 @@ }, { "question": "Postomat", - "icon": "./assets/data/nsi/logos/postomat-ba97f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postomat-ba97f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234574,7 +234918,7 @@ }, { "question": "RockItCoin", - "icon": "./assets/data/nsi/logos/rockitcoin-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockitcoin-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234590,7 +234934,7 @@ }, { "question": "Sainsbury's Bank", - "icon": "./assets/data/nsi/logos/sainsburysbank-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sainsburysbank-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234607,7 +234951,7 @@ }, { "question": "Tesco Bank", - "icon": "./assets/data/nsi/logos/tescobank-396707.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tescobank-396707.png", "osmTags": { "and": [ "amenity=atm", @@ -234622,7 +234966,7 @@ }, { "question": "Тинькофф Банк", - "icon": "./assets/data/nsi/logos/tinkoffbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tinkoffbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234641,7 +234985,7 @@ }, { "question": "中華郵政", - "icon": "./assets/data/nsi/logos/chunghwapost-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chunghwapost-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234663,7 +235007,7 @@ }, { "question": "1st Security Bank", - "icon": "./assets/data/nsi/logos/1stsecuritybank-686806.png", + "icon": "https://data.mapcomplete.org/nsi//logos/1stsecuritybank-686806.png", "osmTags": { "and": [ "amenity=atm", @@ -234680,7 +235024,7 @@ }, { "question": "3 Banka", - "icon": "./assets/data/nsi/logos/3bank-4fcc55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/3bank-4fcc55.png", "osmTags": { "and": [ "amenity=atm", @@ -234702,15 +235046,15 @@ }, { "question": "365.bank", - "icon": "./assets/data/nsi/logos/365bank-6843ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/365bank-6843ee.png", "osmTags": { "and": [ "amenity=atm", - "official_name=365.bank, a.s.", { "or": [ "brand=365.bank", "brand:wikidata=Q7237158", + "official_name=365.bank, a.s.", "operator=365.bank", "operator:wikidata=Q7237158" ] @@ -234720,7 +235064,7 @@ }, { "question": "Aargauische Kantonalbank", - "icon": "./assets/data/nsi/logos/aargauischekantonalbank-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aargauischekantonalbank-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -234738,15 +235082,15 @@ }, { "question": "Abanca", - "icon": "./assets/data/nsi/logos/abanca-3f27ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abanca-3f27ef.png", "osmTags": { "and": [ "amenity=atm", - "official_name=ABANCA Corporación Bancaria", { "or": [ "brand=Abanca", "brand:wikidata=Q9598744", + "official_name=ABANCA Corporación Bancaria", "operator=Abanca", "operator:wikidata=Q9598744" ] @@ -234756,7 +235100,7 @@ }, { "question": "Abound Credit Union", - "icon": "./assets/data/nsi/logos/aboundcreditunion-6603b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aboundcreditunion-6603b3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234773,7 +235117,7 @@ }, { "question": "Absa (Ghana)", - "icon": "./assets/data/nsi/logos/absa-843442.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/absa-843442.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234791,7 +235135,7 @@ }, { "question": "ABSA (South Africa)", - "icon": "./assets/data/nsi/logos/absa-997829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/absa-997829.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234808,7 +235152,7 @@ }, { "question": "Abu Dhabi Commercial Bank", - "icon": "./assets/data/nsi/logos/abudhabicommercialbank-878fb9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/abudhabicommercialbank-878fb9.svg", "osmTags": { "and": [ "amenity=atm", @@ -234847,7 +235191,7 @@ }, { "question": "ACBA", - "icon": "./assets/data/nsi/logos/acba-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acba-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234870,7 +235214,7 @@ }, { "question": "Access Bank", - "icon": "./assets/data/nsi/logos/accessbank-04aa13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accessbank-04aa13.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234887,7 +235231,7 @@ }, { "question": "ActivoBank", - "icon": "./assets/data/nsi/logos/activobank-9411e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/activobank-9411e1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234922,7 +235266,7 @@ }, { "question": "Addiko Bank", - "icon": "./assets/data/nsi/logos/addikobank-bd7eed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/addikobank-bd7eed.svg", "osmTags": { "and": [ "amenity=atm", @@ -234939,7 +235283,7 @@ }, { "question": "Affin Bank", - "icon": "./assets/data/nsi/logos/affinbank-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/affinbank-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234956,7 +235300,7 @@ }, { "question": "Affinity Credit Union", - "icon": "./assets/data/nsi/logos/affinitycreditunion-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/affinitycreditunion-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234973,7 +235317,7 @@ }, { "question": "African Bank", - "icon": "./assets/data/nsi/logos/africanbank-997829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/africanbank-997829.jpg", "osmTags": { "and": [ "amenity=atm", @@ -234990,7 +235334,7 @@ }, { "question": "Agibank", - "icon": "./assets/data/nsi/logos/agibank-a02d2b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agibank-a02d2b.svg", "osmTags": { "and": [ "amenity=atm", @@ -235007,7 +235351,7 @@ }, { "question": "Agram banka", - "icon": "./assets/data/nsi/logos/agrambanka-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrambanka-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -235024,7 +235368,7 @@ }, { "question": "Agribank (USA)", - "icon": "./assets/data/nsi/logos/agribank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agribank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -235041,17 +235385,17 @@ }, { "question": "Agribank (Việt Nam)", - "icon": "./assets/data/nsi/logos/agribank-cfdb1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agribank-cfdb1a.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", - "official_name:en=Vietnam Bank for Agriculture and Rural Development", - "official_name:vi=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", { "or": [ "brand=Agribank", "brand:wikidata=Q1924723", + "official_name=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", + "official_name:en=Vietnam Bank for Agriculture and Rural Development", + "official_name:vi=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", "operator=Agribank", "operator:wikidata=Q1924723" ] @@ -235061,7 +235405,7 @@ }, { "question": "Agribank (Zimbabwe)", - "icon": "./assets/data/nsi/logos/agribank-7adf11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agribank-7adf11.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235078,7 +235422,7 @@ }, { "question": "Agrobank", - "icon": "./assets/data/nsi/logos/agrobank-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrobank-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235095,15 +235439,15 @@ }, { "question": "AIB", - "icon": "./assets/data/nsi/logos/aib-e569c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aib-e569c1.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Allied Irish Banks", { "or": [ "brand=AIB", "brand:wikidata=Q1642179", + "official_name=Allied Irish Banks", "operator=AIB", "operator:wikidata=Q1642179" ] @@ -235113,7 +235457,7 @@ }, { "question": "AIK banka", - "icon": "./assets/data/nsi/logos/aikbank-4fcc55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aikbank-4fcc55.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235133,7 +235477,7 @@ }, { "question": "Air Bank", - "icon": "./assets/data/nsi/logos/airbank-767782.png", + "icon": "https://data.mapcomplete.org/nsi//logos/airbank-767782.png", "osmTags": { "and": [ "amenity=atm", @@ -235150,7 +235494,7 @@ }, { "question": "Akbank", - "icon": "./assets/data/nsi/logos/akbank-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akbank-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235167,7 +235511,7 @@ }, { "question": "Akfinans Bank", - "icon": "./assets/data/nsi/logos/akfinansbank-a0e164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akfinansbank-a0e164.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235184,7 +235528,7 @@ }, { "question": "Aktia", - "icon": "./assets/data/nsi/logos/aktia-6eeb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aktia-6eeb13.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235201,7 +235545,7 @@ }, { "question": "Ålandsbanken", - "icon": "./assets/data/nsi/logos/alandsbanken-6eeb13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alandsbanken-6eeb13.png", "osmTags": { "and": [ "amenity=atm", @@ -235218,7 +235562,7 @@ }, { "question": "Alior Bank", - "icon": "./assets/data/nsi/logos/aliorbank-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aliorbank-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235235,7 +235579,7 @@ }, { "question": "Allahabad Bank", - "icon": "./assets/data/nsi/logos/allahabadbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allahabadbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235252,7 +235596,7 @@ }, { "question": "Alliance Bank", - "icon": "./assets/data/nsi/logos/alliancebank-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliancebank-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235269,7 +235613,7 @@ }, { "question": "Allianz", - "icon": "./assets/data/nsi/logos/allianz-e5108a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allianz-e5108a.png", "osmTags": { "and": [ "amenity=atm", @@ -235288,7 +235632,7 @@ }, { "question": "Allied Bank (Pakistan)", - "icon": "./assets/data/nsi/logos/alliedbank-c8ef8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliedbank-c8ef8c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235309,7 +235653,7 @@ }, { "question": "Allied Bank (Philippines)", - "icon": "./assets/data/nsi/logos/alliedbank-f377ee.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliedbank-f377ee.svg", "osmTags": { "and": [ "amenity=atm", @@ -235326,7 +235670,7 @@ }, { "question": "Almora Urban Cooperative Bank Limited", - "icon": "./assets/data/nsi/logos/almoraurbancooperativebanklimited-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/almoraurbancooperativebanklimited-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235343,7 +235687,7 @@ }, { "question": "Alpha Bank", - "icon": "./assets/data/nsi/logos/alphabank-39c6ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alphabank-39c6ab.png", "osmTags": { "and": [ "amenity=atm", @@ -235360,7 +235704,7 @@ }, { "question": "Alterna Savings", - "icon": "./assets/data/nsi/logos/alternasavings-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alternasavings-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235377,7 +235721,7 @@ }, { "question": "Alternatif Bank", - "icon": "./assets/data/nsi/logos/alternatifbank-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alternatifbank-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235394,7 +235738,7 @@ }, { "question": "AmBank", - "icon": "./assets/data/nsi/logos/ambank-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambank-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235411,7 +235755,7 @@ }, { "question": "Amegy Bank", - "icon": "./assets/data/nsi/logos/amegybankoftexas-18eb57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amegybankoftexas-18eb57.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235428,7 +235772,7 @@ }, { "question": "AMEN", - "icon": "./assets/data/nsi/logos/amen-74adc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amen-74adc2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235445,7 +235789,7 @@ }, { "question": "Ameriabank", - "icon": "./assets/data/nsi/logos/ameriabank-056506.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameriabank-056506.png", "osmTags": { "and": [ "amenity=atm", @@ -235468,7 +235812,7 @@ }, { "question": "America First Credit Union", - "icon": "./assets/data/nsi/logos/americafirstcreditunion-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americafirstcreditunion-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235486,7 +235830,7 @@ }, { "question": "Ameris Bank", - "icon": "./assets/data/nsi/logos/amerisbank-42e885.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amerisbank-42e885.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235503,15 +235847,15 @@ }, { "question": "AMP", - "icon": "./assets/data/nsi/logos/amp-53bc34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amp-53bc34.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=AMP Limited", { "or": [ "brand=AMP", "brand:wikidata=Q295261", + "official_name=AMP Limited", "operator=AMP", "operator:wikidata=Q295261" ] @@ -235521,7 +235865,7 @@ }, { "question": "Anadolubank", - "icon": "./assets/data/nsi/logos/anadolubank-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anadolubank-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235538,7 +235882,7 @@ }, { "question": "Andhra Bank", - "icon": "./assets/data/nsi/logos/andhrabank-ad0527.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/andhrabank-ad0527.svg", "osmTags": { "and": [ "amenity=atm", @@ -235555,7 +235899,7 @@ }, { "question": "Andhra Pradesh Grameena Vikas Bank", - "icon": "./assets/data/nsi/logos/andhrapradeshgrameenavikasbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andhrapradeshgrameenavikasbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235576,7 +235920,7 @@ }, { "question": "Androscoggin Bank", - "icon": "./assets/data/nsi/logos/androscogginbank-e408c9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/androscogginbank-e408c9.svg", "osmTags": { "and": [ "amenity=atm", @@ -235593,15 +235937,15 @@ }, { "question": "ANZ", - "icon": "./assets/data/nsi/logos/anz-53bc34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anz-53bc34.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Australia and New Zealand Banking Group Limited", { "or": [ "brand=ANZ", "brand:wikidata=Q714641", + "official_name=Australia and New Zealand Banking Group Limited", "operator=ANZ", "operator:wikidata=Q714641" ] @@ -235611,7 +235955,7 @@ }, { "question": "Appenzeller Kantonalbank", - "icon": "./assets/data/nsi/logos/appenzellerkantonalbank-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/appenzellerkantonalbank-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -235629,7 +235973,7 @@ }, { "question": "Apple Bank", - "icon": "./assets/data/nsi/logos/applebank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/applebank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235646,7 +235990,7 @@ }, { "question": "Araratbank", - "icon": "./assets/data/nsi/logos/araratbank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/araratbank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235669,7 +236013,7 @@ }, { "question": "Ardshinbank", - "icon": "./assets/data/nsi/logos/ardshinbank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ardshinbank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235692,7 +236036,7 @@ }, { "question": "Argenta", - "icon": "./assets/data/nsi/logos/argenta-854f43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/argenta-854f43.png", "osmTags": { "and": [ "amenity=atm", @@ -235709,7 +236053,7 @@ }, { "question": "Armbusinessbank", - "icon": "./assets/data/nsi/logos/armbusinessbank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armbusinessbank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235736,7 +236080,7 @@ }, { "question": "Armeconombank", - "icon": "./assets/data/nsi/logos/armeconombank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armeconombank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235763,7 +236107,7 @@ }, { "question": "ArmSwissBank", - "icon": "./assets/data/nsi/logos/armswissbank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armswissbank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235808,7 +236152,7 @@ }, { "question": "Arvest Bank", - "icon": "./assets/data/nsi/logos/arvestbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arvestbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235825,7 +236169,7 @@ }, { "question": "ASB Bank", - "icon": "./assets/data/nsi/logos/asbbank-6bd214.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asbbank-6bd214.png", "osmTags": { "and": [ "amenity=atm", @@ -235842,7 +236186,7 @@ }, { "question": "Asbank", - "icon": "./assets/data/nsi/logos/asbank-a0e164.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asbank-a0e164.png", "osmTags": { "and": [ "amenity=atm", @@ -235859,7 +236203,7 @@ }, { "question": "Asia United Bank", - "icon": "./assets/data/nsi/logos/asiaunitedbank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asiaunitedbank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235877,7 +236221,7 @@ }, { "question": "Askari Bank (عسکری بینک)", - "icon": "./assets/data/nsi/logos/askaribank-ed31a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/askaribank-ed31a6.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235898,7 +236242,7 @@ }, { "question": "Assam Gramin Vikash Bank", - "icon": "./assets/data/nsi/logos/assamgraminvikashbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/assamgraminvikashbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235915,7 +236259,7 @@ }, { "question": "Associated Bank", - "icon": "./assets/data/nsi/logos/associatedbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/associatedbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -235932,15 +236276,15 @@ }, { "question": "ATB Financial", - "icon": "./assets/data/nsi/logos/atbfinancial-6bfb2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atbfinancial-6bfb2d.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Alberta Treasury Branches", { "or": [ "brand=ATB Financial", "brand:wikidata=Q298762", + "official_name=Alberta Treasury Branches", "operator=ATB Financial", "operator:wikidata=Q298762" ] @@ -235950,7 +236294,7 @@ }, { "question": "Atlantic Union Bank", - "icon": "./assets/data/nsi/logos/atlanticunionbank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atlanticunionbank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -235967,7 +236311,7 @@ }, { "question": "Attijariwafa Bank (التجاري وفا بنك)", - "icon": "./assets/data/nsi/logos/attijariwafabank-e568eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/attijariwafabank-e568eb.png", "osmTags": { "and": [ "amenity=atm", @@ -235988,7 +236332,7 @@ }, { "question": "AU Small Finance Bank", - "icon": "./assets/data/nsi/logos/ausmallfinancebank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausmallfinancebank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236005,7 +236349,7 @@ }, { "question": "AXA", - "icon": "./assets/data/nsi/logos/axa-2f6feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axa-2f6feb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236022,7 +236366,7 @@ }, { "question": "Axis Bank", - "icon": "./assets/data/nsi/logos/axisbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axisbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236039,7 +236383,7 @@ }, { "question": "BAC Credomatic", - "icon": "./assets/data/nsi/logos/baccredomatic-9c7dd6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baccredomatic-9c7dd6.png", "osmTags": { "and": [ "amenity=atm", @@ -236072,15 +236416,15 @@ }, { "question": "BAI", - "icon": "./assets/data/nsi/logos/bai-d8c228.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bai-d8c228.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Angolano de Investimentos", { "or": [ "brand=BAI", "brand:wikidata=Q806172", + "official_name=Banco Angolano de Investimentos", "operator=BAI", "operator:wikidata=Q806172" ] @@ -236093,11 +236437,11 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Agromercantil de Guatemala", { "or": [ "brand=Bam", "brand:wikidata=Q129652114", + "official_name=Banco Agromercantil de Guatemala", "operator=Bam", "operator:wikidata=Q129652114" ] @@ -236107,15 +236451,15 @@ }, { "question": "Banamex", - "icon": "./assets/data/nsi/logos/banamex-8c8932.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banamex-8c8932.svg", "osmTags": { "and": [ "amenity=atm", - "official_name=Grupo Financiero Banamex", { "or": [ "brand=Banamex", "brand:wikidata=Q749474", + "official_name=Grupo Financiero Banamex", "operator=Banamex", "operator:wikidata=Q749474" ] @@ -236141,7 +236485,7 @@ }, { "question": "Banca Agricola Popolare di Ragusa", - "icon": "./assets/data/nsi/logos/bancaagricolapopolarediragusa-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancaagricolapopolarediragusa-64483a.png", "osmTags": { "and": [ "amenity=atm", @@ -236158,15 +236502,15 @@ }, { "question": "Banca di Asti", - "icon": "./assets/data/nsi/logos/bancadiasti-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancadiasti-64483a.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Cassa di Risparmio di Asti", { "or": [ "brand=Banca di Asti", "brand:wikidata=Q3661919", + "official_name=Cassa di Risparmio di Asti", "operator=Banca di Asti", "operator:wikidata=Q3661919" ] @@ -236176,7 +236520,7 @@ }, { "question": "Banca Generali", - "icon": "./assets/data/nsi/logos/bancagenerali-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancagenerali-64483a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236193,7 +236537,7 @@ }, { "question": "Banca March", - "icon": "./assets/data/nsi/logos/bancamarch-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancamarch-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236210,7 +236554,7 @@ }, { "question": "Banca Mediolanum", - "icon": "./assets/data/nsi/logos/bancamediolanum-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancamediolanum-64483a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236227,7 +236571,7 @@ }, { "question": "Banca Popolare di Sondrio", - "icon": "./assets/data/nsi/logos/bancapopolaredisondrio-64483a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancapopolaredisondrio-64483a.svg", "osmTags": { "and": [ "amenity=atm", @@ -236260,7 +236604,7 @@ }, { "question": "Banca Sella", - "icon": "./assets/data/nsi/logos/bancasella-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancasella-64483a.png", "osmTags": { "and": [ "amenity=atm", @@ -236277,7 +236621,7 @@ }, { "question": "Banca Transilvania", - "icon": "./assets/data/nsi/logos/bancatransilvania-1de605.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancatransilvania-1de605.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236294,7 +236638,7 @@ }, { "question": "Bancaribe", - "icon": "./assets/data/nsi/logos/bancaribe-f50cd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancaribe-f50cd1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236311,15 +236655,15 @@ }, { "question": "BancaStato", - "icon": "./assets/data/nsi/logos/bancastato-79920e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancastato-79920e.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banca dello Stato del Cantone Ticino", { "or": [ "brand=BancaStato", "brand:wikidata=Q806158", + "official_name=Banca dello Stato del Cantone Ticino", "operator=BancaStato", "operator:wikidata=Q806158" ] @@ -236329,15 +236673,15 @@ }, { "question": "Banco Agrario", - "icon": "./assets/data/nsi/logos/bancoagrario-850243.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoagrario-850243.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Agrario de Colombia", { "or": [ "brand=Banco Agrario", "brand:wikidata=Q20013358", + "official_name=Banco Agrario de Colombia", "operator=Banco Agrario", "operator:wikidata=Q20013358" ] @@ -236347,7 +236691,7 @@ }, { "question": "Banco AV Villas", - "icon": "./assets/data/nsi/logos/bancoavvillas-850243.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoavvillas-850243.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236364,7 +236708,7 @@ }, { "question": "Banco Azteca", - "icon": "./assets/data/nsi/logos/bancoazteca-6e6832.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoazteca-6e6832.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236381,7 +236725,7 @@ }, { "question": "Banco Bicentenario", - "icon": "./assets/data/nsi/logos/bancobicentenario-f50cd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobicentenario-f50cd1.png", "osmTags": { "and": [ "amenity=atm", @@ -236398,7 +236742,7 @@ }, { "question": "Banco BISA", - "icon": "./assets/data/nsi/logos/bancobisa-caae63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobisa-caae63.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236415,7 +236759,7 @@ }, { "question": "Banco BMG", - "icon": "./assets/data/nsi/logos/bancobmg-a02d2b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobmg-a02d2b.svg", "osmTags": { "and": [ "amenity=atm", @@ -236432,16 +236776,16 @@ }, { "question": "Banco BPI (Portugal)", - "icon": "./assets/data/nsi/logos/bancobpi-9411e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobpi-9411e1.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Português de Investimento", "short_name=BPI", { "or": [ "brand=Banco BPI", "brand:wikidata=Q537886", + "official_name=Banco Português de Investimento", "operator=Banco BPI", "operator:wikidata=Q537886" ] @@ -236451,7 +236795,7 @@ }, { "question": "Banco BPM", - "icon": "./assets/data/nsi/logos/bancobpm-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobpm-64483a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236468,7 +236812,7 @@ }, { "question": "Banco Caja Social", - "icon": "./assets/data/nsi/logos/bancocajasocial-850243.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancocajasocial-850243.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236485,15 +236829,15 @@ }, { "question": "Banco Ciudad", - "icon": "./assets/data/nsi/logos/bancociudad-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancociudad-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Ciudad de Buenos Aires", { "or": [ "brand=Banco Ciudad", "brand:wikidata=Q4856204", + "official_name=Banco Ciudad de Buenos Aires", "operator=Banco Ciudad", "operator:wikidata=Q4856204" ] @@ -236503,7 +236847,7 @@ }, { "question": "Banco Continental (Paraguay)", - "icon": "./assets/data/nsi/logos/bancocontinental-d0d073.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancocontinental-d0d073.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236520,7 +236864,7 @@ }, { "question": "Banco CTT", - "icon": "./assets/data/nsi/logos/bancoctt-9411e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoctt-9411e1.png", "osmTags": { "and": [ "amenity=atm", @@ -236537,7 +236881,7 @@ }, { "question": "Banco da Amazônia", - "icon": "./assets/data/nsi/logos/bancodaamazonia-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodaamazonia-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236554,7 +236898,7 @@ }, { "question": "Banco de Bogotá", - "icon": "./assets/data/nsi/logos/bancodebogota-850243.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodebogota-850243.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236571,7 +236915,7 @@ }, { "question": "Banco de Brasília", - "icon": "./assets/data/nsi/logos/brb-a02d2b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brb-a02d2b.png", "osmTags": { "and": [ "amenity=atm", @@ -236589,7 +236933,7 @@ }, { "question": "Banco de Chile", - "icon": "./assets/data/nsi/logos/bancodechile-914056.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodechile-914056.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236606,16 +236950,16 @@ }, { "question": "Banco de Córdoba", - "icon": "./assets/data/nsi/logos/bancodecordoba-6b467f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodecordoba-6b467f.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de la Provincia de Córdoba S.A.", "short_name=Bancor", { "or": [ "brand=Banco de Córdoba", "brand:wikidata=Q5718071", + "official_name=Banco de la Provincia de Córdoba S.A.", "operator=Banco de Córdoba", "operator:wikidata=Q5718071" ] @@ -236625,7 +236969,7 @@ }, { "question": "Banco de Crédito y Comercio", - "icon": "./assets/data/nsi/logos/bancodecreditoycomercio-94b01c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodecreditoycomercio-94b01c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236642,7 +236986,7 @@ }, { "question": "Banco de Desarrollo Banrural", - "icon": "./assets/data/nsi/logos/bancodedesarrollobanrural-40d5b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodedesarrollobanrural-40d5b9.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236659,7 +237003,7 @@ }, { "question": "Banco de Fomento Angola", - "icon": "./assets/data/nsi/logos/bancodefomentoangola-d8c228.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodefomentoangola-d8c228.png", "osmTags": { "and": [ "amenity=atm", @@ -236678,7 +237022,7 @@ }, { "question": "Banco de la Nación (Perú)", - "icon": "./assets/data/nsi/logos/bancodelanacion-98e68c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodelanacion-98e68c.png", "osmTags": { "and": [ "amenity=atm", @@ -236711,7 +237055,7 @@ }, { "question": "Banco de Occidente (Colombia)", - "icon": "./assets/data/nsi/logos/bancodeoccidente-850243.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodeoccidente-850243.png", "osmTags": { "and": [ "amenity=atm", @@ -236728,7 +237072,7 @@ }, { "question": "Banco de Occidente (Honduras)", - "icon": "./assets/data/nsi/logos/bancodeoccidente-925355.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodeoccidente-925355.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236745,7 +237089,7 @@ }, { "question": "Banco de Venezuela", - "icon": "./assets/data/nsi/logos/bancodevenezuela-f50cd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodevenezuela-f50cd1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236762,7 +237106,7 @@ }, { "question": "Banco del Austro", - "icon": "./assets/data/nsi/logos/bancodelaustro-67d8b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodelaustro-67d8b6.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236779,7 +237123,7 @@ }, { "question": "Banco del Bienestar", - "icon": "./assets/data/nsi/logos/bancodelbienestar-8c8932.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodelbienestar-8c8932.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236796,7 +237140,7 @@ }, { "question": "Banco Desio", - "icon": "./assets/data/nsi/logos/bancodesio-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodesio-64483a.png", "osmTags": { "and": [ "amenity=atm", @@ -236813,7 +237157,7 @@ }, { "question": "Banco di Sardegna", - "icon": "./assets/data/nsi/logos/bancodisardegna-64483a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodisardegna-64483a.svg", "osmTags": { "and": [ "amenity=atm", @@ -236830,7 +237174,7 @@ }, { "question": "Banco do Brasil", - "icon": "./assets/data/nsi/logos/bancodobrasil-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodobrasil-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236847,7 +237191,7 @@ }, { "question": "Banco do Nordeste", - "icon": "./assets/data/nsi/logos/bancodonordeste-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodonordeste-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236865,7 +237209,7 @@ }, { "question": "Banco Económico", - "icon": "./assets/data/nsi/logos/bancoeconomico-caae63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoeconomico-caae63.png", "osmTags": { "and": [ "amenity=atm", @@ -236882,15 +237226,15 @@ }, { "question": "Banco Estado", - "icon": "./assets/data/nsi/logos/bancoestado-914056.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoestado-914056.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco del Estado de Chile", { "or": [ "brand=Banco Estado", "brand:wikidata=Q5718188", + "official_name=Banco del Estado de Chile", "operator=Banco Estado", "operator:wikidata=Q5718188" ] @@ -236900,7 +237244,7 @@ }, { "question": "Banco Falabella", - "icon": "./assets/data/nsi/logos/bancofalabella-b9bb6a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancofalabella-b9bb6a.svg", "osmTags": { "and": [ "amenity=atm", @@ -236917,7 +237261,7 @@ }, { "question": "Banco Fassil", - "icon": "./assets/data/nsi/logos/bancofassil-caae63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancofassil-caae63.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236934,15 +237278,15 @@ }, { "question": "Banco Fie", - "icon": "./assets/data/nsi/logos/bancofie-caae63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancofie-caae63.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco para el Fomento a Iniciativas Económicas", { "or": [ "brand=Banco Fie", "brand:wikidata=Q81782924", + "official_name=Banco para el Fomento a Iniciativas Económicas", "operator=Banco Fie", "operator:wikidata=Q81782924" ] @@ -236952,7 +237296,7 @@ }, { "question": "Banco Fondo Común", - "icon": "./assets/data/nsi/logos/bancofondocomun-f50cd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancofondocomun-f50cd1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -236986,7 +237330,7 @@ }, { "question": "Banco G&T Continental", - "icon": "./assets/data/nsi/logos/bancogandtcontinental-1466f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancogandtcontinental-1466f5.png", "osmTags": { "and": [ "amenity=atm", @@ -237003,7 +237347,7 @@ }, { "question": "Banco Ganadero", - "icon": "./assets/data/nsi/logos/bancoganadero-caae63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoganadero-caae63.png", "osmTags": { "and": [ "amenity=atm", @@ -237021,7 +237365,7 @@ }, { "question": "Banco General", - "icon": "./assets/data/nsi/logos/bwbank-a6d133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bwbank-a6d133.png", "osmTags": { "and": [ "amenity=atm", @@ -237038,7 +237382,7 @@ }, { "question": "Banco Industrial", - "icon": "./assets/data/nsi/logos/bancoindustrial-b67a7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoindustrial-b67a7c.png", "osmTags": { "and": [ "amenity=atm", @@ -237055,7 +237399,7 @@ }, { "question": "Banco Internacional (Chile)", - "icon": "./assets/data/nsi/logos/bancointernacional-914056.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancointernacional-914056.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237072,7 +237416,7 @@ }, { "question": "Banco Internacional (Ecuador)", - "icon": "./assets/data/nsi/logos/bancointernacional-67d8b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancointernacional-67d8b6.png", "osmTags": { "and": [ "amenity=atm", @@ -237089,7 +237433,7 @@ }, { "question": "Banco Mercantil", - "icon": "./assets/data/nsi/logos/bancomercantilsantacruz-caae63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancomercantilsantacruz-caae63.png", "osmTags": { "and": [ "amenity=atm", @@ -237107,7 +237451,7 @@ }, { "question": "Banco Mercantil do Brasil", - "icon": "./assets/data/nsi/logos/bancomercantildobrasil-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancomercantildobrasil-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237124,7 +237468,7 @@ }, { "question": "Banco Metropolitano", - "icon": "./assets/data/nsi/logos/bancometropolitano-94b01c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancometropolitano-94b01c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237141,15 +237485,15 @@ }, { "question": "Banco Nación", - "icon": "./assets/data/nsi/logos/banconacion-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banconacion-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de la Nación Argentina", { "or": [ "brand=Banco Nación", "brand:wikidata=Q2883376", + "official_name=Banco de la Nación Argentina", "operator=Banco Nación", "operator:wikidata=Q2883376" ] @@ -237159,16 +237503,16 @@ }, { "question": "Banco Nacional", - "icon": "./assets/data/nsi/logos/banconacionaldecostarica-a6d133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banconacionaldecostarica-a6d133.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Nacional de Costa Rica", "short_name=BNCR", { "or": [ "brand=Banco Nacional de Costa Rica", "brand:wikidata=Q2917708", + "official_name=Banco Nacional de Costa Rica", "operator=Banco Nacional de Costa Rica", "operator:wikidata=Q2917708" ] @@ -237178,7 +237522,7 @@ }, { "question": "Banco Nacional de Bolivia", - "icon": "./assets/data/nsi/logos/banconacionaldebolivia-caae63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banconacionaldebolivia-caae63.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237196,7 +237540,7 @@ }, { "question": "Banco Nacional de Crédito", - "icon": "./assets/data/nsi/logos/banconacionaldecredito-f50cd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banconacionaldecredito-f50cd1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237214,15 +237558,15 @@ }, { "question": "Banco Pastor", - "icon": "./assets/data/nsi/logos/bancopastor-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopastor-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Popular Pastor", { "or": [ "brand=Banco Pastor", "brand:wikidata=Q806193", + "official_name=Banco Popular Pastor", "operator=Banco Pastor", "operator:wikidata=Q806193" ] @@ -237232,7 +237576,7 @@ }, { "question": "Banco Patagonia", - "icon": "./assets/data/nsi/logos/bancopatagonia-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopatagonia-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237249,7 +237593,7 @@ }, { "question": "Banco Pichincha", - "icon": "./assets/data/nsi/logos/bancopichincha-89e930.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopichincha-89e930.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237266,7 +237610,7 @@ }, { "question": "Banco Popular (Colombia)", - "icon": "./assets/data/nsi/logos/bancopopular-850243.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopopular-850243.png", "osmTags": { "and": [ "amenity=atm", @@ -237283,7 +237627,7 @@ }, { "question": "Banco Popular de Ahorro", - "icon": "./assets/data/nsi/logos/bancopopulardeahorro-94b01c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopopulardeahorro-94b01c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237300,15 +237644,15 @@ }, { "question": "Banco Provincia", - "icon": "./assets/data/nsi/logos/bancoprovincia-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoprovincia-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de la Provincia de Buenos Aires", { "or": [ "brand=Banco Provincia", "brand:wikidata=Q4856209", + "official_name=Banco de la Provincia de Buenos Aires", "operator=Banco Provincia", "operator:wikidata=Q4856209" ] @@ -237318,7 +237662,7 @@ }, { "question": "Banco Provincia de Neuquén", - "icon": "./assets/data/nsi/logos/bancoprovinciadeneuquen-b67a7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoprovinciadeneuquen-b67a7c.png", "osmTags": { "and": [ "amenity=atm", @@ -237335,11 +237679,10 @@ }, { "question": "Banco Sabadell", - "icon": "./assets/data/nsi/logos/bancosabadell-b48e80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosabadell-b48e80.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de Sabadell, S.A.", { "or": [ "brand=Banco Sabadell", @@ -237348,6 +237691,7 @@ "brand:wikidata=Q762330", "name:ca=Banc Sabadell", "name:es=Banco Sabadell", + "official_name=Banco de Sabadell, S.A.", "operator=Banco Sabadell", "operator:wikidata=Q762330" ] @@ -237357,7 +237701,7 @@ }, { "question": "Banco Safra", - "icon": "./assets/data/nsi/logos/bancosafra-a02d2b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosafra-a02d2b.png", "osmTags": { "and": [ "amenity=atm", @@ -237374,15 +237718,15 @@ }, { "question": "Banco Santa Fe", - "icon": "./assets/data/nsi/logos/bancosantafe-b67a7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosantafe-b67a7c.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Nuevo Banco de Santa Fe", { "or": [ "brand=Banco Santa Fe", "brand:wikidata=Q6046871", + "official_name=Nuevo Banco de Santa Fe", "operator=Banco Santa Fe", "operator:wikidata=Q6046871" ] @@ -237392,15 +237736,15 @@ }, { "question": "Banco Santander", - "icon": "./assets/data/nsi/logos/bancosantander-0380b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosantander-0380b8.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Santander Group", { "or": [ "brand=Banco Santander", "brand:wikidata=Q6496310", + "official_name=Santander Group", "operator=Banco Santander", "operator:wikidata=Q6496310" ] @@ -237410,7 +237754,7 @@ }, { "question": "Banco Sol (Angola)", - "icon": "./assets/data/nsi/logos/bancosol-d8c228.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosol-d8c228.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237427,15 +237771,15 @@ }, { "question": "Banco Sol (Bolivia)", - "icon": "./assets/data/nsi/logos/bancosol-caae63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosol-caae63.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Solidario", { "or": [ "brand=Banco Sol", "brand:wikidata=Q62118746", + "official_name=Banco Solidario", "operator=Banco Sol", "operator:wikidata=Q62118746" ] @@ -237445,15 +237789,15 @@ }, { "question": "Banco Unión", - "icon": "./assets/data/nsi/logos/bancounion-caae63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancounion-caae63.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de la Unión", { "or": [ "brand=Banco Unión", "brand:wikidata=Q72315494", + "official_name=Banco de la Unión", "operator=Banco Unión", "operator:wikidata=Q72315494" ] @@ -237463,7 +237807,7 @@ }, { "question": "Bancolombia", - "icon": "./assets/data/nsi/logos/bancolombia-850243.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancolombia-850243.png", "osmTags": { "and": [ "amenity=atm", @@ -237480,7 +237824,7 @@ }, { "question": "Bancomeeva", - "icon": "./assets/data/nsi/logos/bancomeeva-850243.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancomeeva-850243.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237513,7 +237857,7 @@ }, { "question": "Bandhan Bank", - "icon": "./assets/data/nsi/logos/bandhanbank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bandhanbank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -237530,7 +237874,7 @@ }, { "question": "Banesco", - "icon": "./assets/data/nsi/logos/banesco-f50cd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banesco-f50cd1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237547,7 +237891,7 @@ }, { "question": "Banese", - "icon": "./assets/data/nsi/logos/banese-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banese-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237564,15 +237908,15 @@ }, { "question": "Banestes", - "icon": "./assets/data/nsi/logos/banestes-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banestes-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco do Estado do Espírito Santo", { "or": [ "brand=Banestes", "brand:wikidata=Q4854848", + "official_name=Banco do Estado do Espírito Santo", "operator=Banestes", "operator:wikidata=Q4854848" ] @@ -237582,7 +237926,7 @@ }, { "question": "Bangkok Bank", - "icon": "./assets/data/nsi/logos/bangkokbank-cf5c86.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangkokbank-cf5c86.svg", "osmTags": { "and": [ "amenity=atm", @@ -237599,7 +237943,7 @@ }, { "question": "Bangor Savings Bank", - "icon": "./assets/data/nsi/logos/bangorsavingsbank-9ae6ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bangorsavingsbank-9ae6ff.png", "osmTags": { "and": [ "amenity=atm", @@ -237616,7 +237960,7 @@ }, { "question": "Bank 1 Saar", - "icon": "./assets/data/nsi/logos/bank1saar-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bank1saar-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237633,7 +237977,7 @@ }, { "question": "Bank Al Habib (بينک الحبيب)", - "icon": "./assets/data/nsi/logos/bankalhabib-ed31a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankalhabib-ed31a6.png", "osmTags": { "and": [ "amenity=atm", @@ -237654,7 +237998,7 @@ }, { "question": "Bank Al-Maghrib (بنك المغرب)", - "icon": "./assets/data/nsi/logos/2f0a35-c2e240.png", + "icon": "https://data.mapcomplete.org/nsi//logos/2f0a35-c2e240.png", "osmTags": { "and": [ "amenity=atm", @@ -237675,7 +238019,7 @@ }, { "question": "Bank Alfalah (بینک الفلاح)", - "icon": "./assets/data/nsi/logos/bankalfalah-d0578d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankalfalah-d0578d.png", "osmTags": { "and": [ "amenity=atm", @@ -237712,7 +238056,7 @@ }, { "question": "Bank BJB", - "icon": "./assets/data/nsi/logos/bankbjb-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankbjb-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237729,7 +238073,7 @@ }, { "question": "Bank BPS", - "icon": "./assets/data/nsi/logos/bankpolskiejspoldzielczosci-53bcca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankpolskiejspoldzielczosci-53bcca.png", "osmTags": { "and": [ "amenity=atm", @@ -237746,7 +238090,7 @@ }, { "question": "Bank Bukopin", - "icon": "./assets/data/nsi/logos/bankbukopin-16476e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankbukopin-16476e.svg", "osmTags": { "and": [ "amenity=atm", @@ -237763,7 +238107,7 @@ }, { "question": "Bank Central Asia", - "icon": "./assets/data/nsi/logos/bankcentralasia-16476e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankcentralasia-16476e.svg", "osmTags": { "and": [ "amenity=atm", @@ -237780,7 +238124,7 @@ }, { "question": "Bank Danamon", - "icon": "./assets/data/nsi/logos/bankdanamon-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankdanamon-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237797,7 +238141,7 @@ }, { "question": "Bank Islam", - "icon": "./assets/data/nsi/logos/bankislam-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankislam-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237814,7 +238158,7 @@ }, { "question": "Bank Jago", - "icon": "./assets/data/nsi/logos/bankjago-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankjago-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237831,7 +238175,7 @@ }, { "question": "Bank Mandiri", - "icon": "./assets/data/nsi/logos/bankmandiri-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmandiri-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237848,7 +238192,7 @@ }, { "question": "Bank Mega", - "icon": "./assets/data/nsi/logos/bankmega-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmega-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237865,7 +238209,7 @@ }, { "question": "Bank Muamalat", - "icon": "./assets/data/nsi/logos/bankmuamalat-465f88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmuamalat-465f88.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237882,7 +238226,7 @@ }, { "question": "Bank of Africa", - "icon": "./assets/data/nsi/logos/bankofafrica-daf274.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofafrica-daf274.png", "osmTags": { "and": [ "amenity=atm", @@ -237900,7 +238244,7 @@ }, { "question": "Bank of Africa (Ghana)", - "icon": "./assets/data/nsi/logos/bankofafrica-843442.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofafrica-843442.png", "osmTags": { "and": [ "amenity=atm", @@ -237919,7 +238263,7 @@ }, { "question": "Bank of America", - "icon": "./assets/data/nsi/logos/bankofamerica-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofamerica-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237936,7 +238280,7 @@ }, { "question": "Bank of Baroda", - "icon": "./assets/data/nsi/logos/bankofbaroda-83b186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofbaroda-83b186.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237953,7 +238297,7 @@ }, { "question": "Bank of Ceylon", - "icon": "./assets/data/nsi/logos/bankofceylon-960663.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofceylon-960663.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237970,7 +238314,7 @@ }, { "question": "Bank of Commerce", - "icon": "./assets/data/nsi/logos/bankofcommerce-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofcommerce-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -237987,7 +238331,7 @@ }, { "question": "Bank of Cyprus", - "icon": "./assets/data/nsi/logos/bankofcyprus-524a78.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofcyprus-524a78.png", "osmTags": { "and": [ "amenity=atm", @@ -238007,7 +238351,7 @@ }, { "question": "Bank of Hawaii", - "icon": "./assets/data/nsi/logos/bankofhawaii-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofhawaii-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238024,7 +238368,7 @@ }, { "question": "Bank of India", - "icon": "./assets/data/nsi/logos/bankofindia-83b186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofindia-83b186.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238041,7 +238385,7 @@ }, { "question": "Bank of Ireland", - "icon": "./assets/data/nsi/logos/bankofireland-e569c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofireland-e569c1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238058,7 +238402,7 @@ }, { "question": "Bank of Maharashtra", - "icon": "./assets/data/nsi/logos/bankofmaharashtra-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofmaharashtra-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -238075,7 +238419,7 @@ }, { "question": "Bank of New Hampshire", - "icon": "./assets/data/nsi/logos/bankofnewhampshire-e19454.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofnewhampshire-e19454.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238092,7 +238436,7 @@ }, { "question": "Bank of New Zealand", - "icon": "./assets/data/nsi/logos/bankofnewzealand-6bd214.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofnewzealand-6bd214.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238109,7 +238453,7 @@ }, { "question": "Bank of Scotland", - "icon": "./assets/data/nsi/logos/bankofscotland-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofscotland-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238126,7 +238470,7 @@ }, { "question": "Bank of the Sierra", - "icon": "./assets/data/nsi/logos/bankofthesierra-f9d961.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofthesierra-f9d961.png", "osmTags": { "and": [ "amenity=atm", @@ -238143,7 +238487,7 @@ }, { "question": "Bank OZK", - "icon": "./assets/data/nsi/logos/bankozk-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankozk-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238160,7 +238504,7 @@ }, { "question": "Bank Pekao", - "icon": "./assets/data/nsi/logos/bankpekao-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankpekao-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238177,7 +238521,7 @@ }, { "question": "Bank Permata", - "icon": "./assets/data/nsi/logos/bankpermata-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankpermata-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238210,7 +238554,7 @@ }, { "question": "Bank Rakyat", - "icon": "./assets/data/nsi/logos/bankrakyat-bc168a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankrakyat-bc168a.png", "osmTags": { "and": [ "amenity=atm", @@ -238227,12 +238571,10 @@ }, { "question": "Bank RBK", - "icon": "./assets/data/nsi/logos/bankrbk-228817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankrbk-228817.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name:kk=«Bank RBK» АҚ", - "official_name:ru=АО «Bank RBK»", { "or": [ "brand=Bank RBK", @@ -238240,6 +238582,8 @@ "name:en=Bank RBK", "name:kk=РБК Банкі", "name:ru=Банк РБК", + "official_name:kk=«Bank RBK» АҚ", + "official_name:ru=АО «Bank RBK»", "operator=Bank RBK", "operator:wikidata=Q21843640" ] @@ -238249,7 +238593,7 @@ }, { "question": "Bank Simpanan Nasional", - "icon": "./assets/data/nsi/logos/banksimpanannasional-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banksimpanannasional-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238267,7 +238611,7 @@ }, { "question": "Bank Syariah Indonesia", - "icon": "./assets/data/nsi/logos/banksyariahindonesia-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banksyariahindonesia-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238285,7 +238629,7 @@ }, { "question": "bank99", - "icon": "./assets/data/nsi/logos/bank99-fc110f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bank99-fc110f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238302,7 +238646,7 @@ }, { "question": "Banka Kombëtare Tregtare", - "icon": "./assets/data/nsi/logos/bankakombetaretregtare-038d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankakombetaretregtare-038d28.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238320,7 +238664,7 @@ }, { "question": "Banka Kovanica", - "icon": "./assets/data/nsi/logos/bankakovanica-4d8c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankakovanica-4d8c03.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238353,7 +238697,7 @@ }, { "question": "Bankia", - "icon": "./assets/data/nsi/logos/bankia-b48e80.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankia-b48e80.svg", "osmTags": { "and": [ "amenity=atm", @@ -238370,7 +238714,7 @@ }, { "question": "Bankinter", - "icon": "./assets/data/nsi/logos/bankinter-3f27ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankinter-3f27ef.png", "osmTags": { "and": [ "amenity=atm", @@ -238387,7 +238731,7 @@ }, { "question": "Bankwest (Australia)", - "icon": "./assets/data/nsi/logos/bankwest-8509c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankwest-8509c1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238404,7 +238748,7 @@ }, { "question": "BankWest (USA)", - "icon": "./assets/data/nsi/logos/bankwest-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankwest-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238421,7 +238765,7 @@ }, { "question": "Banner Bank", - "icon": "./assets/data/nsi/logos/bannerbank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bannerbank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -238438,7 +238782,7 @@ }, { "question": "Banorte", - "icon": "./assets/data/nsi/logos/banorte-8c8932.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banorte-8c8932.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238455,7 +238799,7 @@ }, { "question": "Banpais", - "icon": "./assets/data/nsi/logos/banpais-925355.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banpais-925355.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238488,7 +238832,7 @@ }, { "question": "Banque Atlantique", - "icon": "./assets/data/nsi/logos/banqueatlantique-d61c57.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banqueatlantique-d61c57.png", "osmTags": { "and": [ "amenity=atm", @@ -238505,7 +238849,7 @@ }, { "question": "Banque Cantonale de Fribourg", - "icon": "./assets/data/nsi/logos/banquecantonaledefribourg-5f720b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaledefribourg-5f720b.svg", "osmTags": { "and": [ "amenity=atm", @@ -238529,7 +238873,7 @@ }, { "question": "Banque Cantonale de Genève", - "icon": "./assets/data/nsi/logos/banquecantonaledegeneve-097ff6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaledegeneve-097ff6.svg", "osmTags": { "and": [ "amenity=atm", @@ -238547,7 +238891,7 @@ }, { "question": "Banque Cantonale du Jura", - "icon": "./assets/data/nsi/logos/banquecantonaledujura-eaf18e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaledujura-eaf18e.svg", "osmTags": { "and": [ "amenity=atm", @@ -238565,7 +238909,7 @@ }, { "question": "Banque Cantonale du Valais", - "icon": "./assets/data/nsi/logos/banquecantonaleduvalais-79e460.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaleduvalais-79e460.svg", "osmTags": { "and": [ "amenity=atm", @@ -238589,7 +238933,7 @@ }, { "question": "Banque Cantonale Neuchâteloise", - "icon": "./assets/data/nsi/logos/banquecantonaleneuchateloise-d187a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaleneuchateloise-d187a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238607,7 +238951,7 @@ }, { "question": "Banque Cantonale Vaudoise", - "icon": "./assets/data/nsi/logos/banquecantonalevaudoise-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonalevaudoise-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -238625,7 +238969,7 @@ }, { "question": "Banque de France", - "icon": "./assets/data/nsi/logos/banquedefrance-134295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquedefrance-134295.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238674,7 +239018,7 @@ }, { "question": "Banque Laurentienne", - "icon": "./assets/data/nsi/logos/banquelaurentienne-ddac74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banquelaurentienne-ddac74.png", "osmTags": { "and": [ "amenity=atm", @@ -238691,7 +239035,7 @@ }, { "question": "Banque Misr", - "icon": "./assets/data/nsi/logos/banquemisr-443494.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquemisr-443494.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238723,13 +239067,10 @@ }, { "question": "Banque Nationale", - "icon": "./assets/data/nsi/logos/nationalbank-de364b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbank-de364b.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banque Nationale du Canada", - "official_name:en=National Bank of Canada", - "official_name:fr=Banque Nationale du Canada", "short_name:en=NBC", "short_name:fr=BNC", { @@ -238740,6 +239081,9 @@ "brand:wikidata=Q634298", "name:en=National Bank", "name:fr=Banque Nationale", + "official_name=Banque Nationale du Canada", + "official_name:en=National Bank of Canada", + "official_name:fr=Banque Nationale du Canada", "operator=Banque Nationale", "operator:wikidata=Q634298" ] @@ -238749,7 +239093,7 @@ }, { "question": "Banque Palatine", - "icon": "./assets/data/nsi/logos/banquepalatine-2f8fb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banquepalatine-2f8fb0.png", "osmTags": { "and": [ "amenity=atm", @@ -238766,7 +239110,7 @@ }, { "question": "Banque Populaire (France)", - "icon": "./assets/data/nsi/logos/banquepopulaire-134295.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banquepopulaire-134295.png", "osmTags": { "and": [ "amenity=atm", @@ -238783,7 +239127,7 @@ }, { "question": "Banque Populaire (البنك الشعبي)", - "icon": "./assets/data/nsi/logos/banquepopulaire-2e486a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquepopulaire-2e486a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238804,7 +239148,7 @@ }, { "question": "Banque populaire Grand Ouest", - "icon": "./assets/data/nsi/logos/banquepopulairegrandouest-2f8fb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquepopulairegrandouest-2f8fb0.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238821,7 +239165,7 @@ }, { "question": "Banregio", - "icon": "./assets/data/nsi/logos/banregio-8c8932.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banregio-8c8932.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238838,7 +239182,7 @@ }, { "question": "Banrisul", - "icon": "./assets/data/nsi/logos/banrisul-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banrisul-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238855,7 +239199,7 @@ }, { "question": "Banrural", - "icon": "./assets/data/nsi/logos/banrural-33bba5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banrural-33bba5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238872,7 +239216,7 @@ }, { "question": "Barclays", - "icon": "./assets/data/nsi/logos/barclays-53ff29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barclays-53ff29.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238889,7 +239233,7 @@ }, { "question": "Basellandschaftliche Kantonalbank", - "icon": "./assets/data/nsi/logos/basellandschaftlichekantonalbank-ba97f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/basellandschaftlichekantonalbank-ba97f3.png", "osmTags": { "and": [ "amenity=atm", @@ -238907,7 +239251,7 @@ }, { "question": "Basler Kantonalbank", - "icon": "./assets/data/nsi/logos/baslerkantonalbank-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/baslerkantonalbank-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -238925,7 +239269,7 @@ }, { "question": "BAWAG PSK", - "icon": "./assets/data/nsi/logos/bawagpsk-fc110f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bawagpsk-fc110f.svg", "osmTags": { "and": [ "amenity=atm", @@ -238942,15 +239286,15 @@ }, { "question": "BB&T", - "icon": "./assets/data/nsi/logos/bbandt-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbandt-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Branch Banking and Trust Company", { "or": [ "brand=BB&T", "brand:wikidata=Q95984154", + "official_name=Branch Banking and Trust Company", "operator=BB&T", "operator:wikidata=Q95984154" ] @@ -238960,7 +239304,7 @@ }, { "question": "BBBank", - "icon": "./assets/data/nsi/logos/bbbank-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbbank-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -238977,15 +239321,15 @@ }, { "question": "BBVA", - "icon": "./assets/data/nsi/logos/bbva-9f580f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bbva-9f580f.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Bilbao Vizcaya Argentaria", { "or": [ "brand=BBVA", "brand:wikidata=Q806189", + "official_name=Banco Bilbao Vizcaya Argentaria", "operator=BBVA", "operator:wikidata=Q806189" ] @@ -238995,16 +239339,16 @@ }, { "question": "BBVA (USA)", - "icon": "./assets/data/nsi/logos/bbva-93d3a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbva-93d3a2.svg", "osmTags": { "and": [ "amenity=atm", - "official_name=BBVA USA", { "or": [ "alt_name=BBVA Compass", "brand=BBVA", "brand:wikidata=Q4835088", + "official_name=BBVA USA", "operator=BBVA", "operator:wikidata=Q4835088" ] @@ -239014,7 +239358,7 @@ }, { "question": "BBVA Argentina", - "icon": "./assets/data/nsi/logos/bbvaargentina-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbvaargentina-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239031,7 +239375,7 @@ }, { "question": "BBVA México", - "icon": "./assets/data/nsi/logos/bbvamexico-8c8932.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbvamexico-8c8932.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239048,7 +239392,7 @@ }, { "question": "BBVA Perú", - "icon": "./assets/data/nsi/logos/bbvaperu-98e68c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bbvaperu-98e68c.png", "osmTags": { "and": [ "amenity=atm", @@ -239065,7 +239409,7 @@ }, { "question": "BBVA Provincial", - "icon": "./assets/data/nsi/logos/bbvaprovincial-f50cd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbvaprovincial-f50cd1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239082,15 +239426,15 @@ }, { "question": "BCC Roma", - "icon": "./assets/data/nsi/logos/bccroma-b6231a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bccroma-b6231a.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banca di Credito Cooperativo di Roma", { "or": [ "brand=BCC Roma", "brand:wikidata=Q25060394", + "official_name=Banca di Credito Cooperativo di Roma", "operator=BCC Roma", "operator:wikidata=Q25060394" ] @@ -239100,11 +239444,10 @@ }, { "question": "BCEE", - "icon": "./assets/data/nsi/logos/bcee-8c9eca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bcee-8c9eca.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Banque et Caisse d'Épargne de l'État", { "or": [ "alt_name=S-Bank", @@ -239112,6 +239455,7 @@ "alt_name:lb=Spuerkeess", "brand=BCEE", "brand:wikidata=Q668996", + "official_name=Banque et Caisse d'Épargne de l'État", "operator=BCEE", "operator:wikidata=Q668996" ] @@ -239121,15 +239465,15 @@ }, { "question": "BCI (Chile)", - "icon": "./assets/data/nsi/logos/bci-914056.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bci-914056.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de Crédito e Inversiones", { "or": [ "brand=BCI", "brand:wikidata=Q2882083", + "official_name=Banco de Crédito e Inversiones", "operator=BCI", "operator:wikidata=Q2882083" ] @@ -239139,15 +239483,15 @@ }, { "question": "BCI (Mozambique)", - "icon": "./assets/data/nsi/logos/bci-36ddf9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bci-36ddf9.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Comercial e de Investimentos", { "or": [ "brand=BCI", "brand:wikidata=Q9645132", + "official_name=Banco Comercial e de Investimentos", "operator=BCI", "operator:wikidata=Q9645132" ] @@ -239157,15 +239501,15 @@ }, { "question": "BCP (Bolivia)", - "icon": "./assets/data/nsi/logos/bcp-caae63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcp-caae63.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de Crédito de Bolivia", { "or": [ "brand=BCP", "brand:wikidata=Q16826675", + "official_name=Banco de Crédito de Bolivia", "operator=BCP", "operator:wikidata=Q16826675" ] @@ -239175,7 +239519,7 @@ }, { "question": "BCP (France)", - "icon": "./assets/data/nsi/logos/bcp-2f8fb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bcp-2f8fb0.png", "osmTags": { "and": [ "amenity=atm", @@ -239192,7 +239536,7 @@ }, { "question": "BCP (Luxembourg)", - "icon": "./assets/data/nsi/logos/bcp-8c9eca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bcp-8c9eca.png", "osmTags": { "and": [ "amenity=atm", @@ -239209,15 +239553,15 @@ }, { "question": "BCP (Perú)", - "icon": "./assets/data/nsi/logos/bcp-98e68c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcp-98e68c.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de Crédito del Perú", { "or": [ "brand=BCP", "brand:wikidata=Q4854124", + "official_name=Banco de Crédito del Perú", "operator=BCP", "operator:wikidata=Q4854124" ] @@ -239227,15 +239571,15 @@ }, { "question": "BCR (Banca Comercială Română)", - "icon": "./assets/data/nsi/logos/bcr-1de605.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcr-1de605.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banca Comercială Română", { "or": [ "brand=BCR", "brand:wikidata=Q806149", + "official_name=Banca Comercială Română", "operator=BCR", "operator:wikidata=Q806149" ] @@ -239245,15 +239589,15 @@ }, { "question": "BCR (Costa Rica)", - "icon": "./assets/data/nsi/logos/bcr-5cb8d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcr-5cb8d1.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de Costa Rica", { "or": [ "brand=BCR", "brand:wikidata=Q6951632", + "official_name=Banco de Costa Rica", "operator=BCR", "operator:wikidata=Q6951632" ] @@ -239263,15 +239607,15 @@ }, { "question": "BDC", - "icon": "./assets/data/nsi/logos/bdc-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdc-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Business Development Bank of Canada", { "or": [ "brand=BDC", "brand:wikidata=Q2883027", + "official_name=Business Development Bank of Canada", "operator=BDC", "operator:wikidata=Q2883027" ] @@ -239281,19 +239625,19 @@ }, { "question": "BDL, بنك التنمية المحلية", - "icon": "./assets/data/nsi/logos/cebee2-f957e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cebee2-f957e0.png", "osmTags": { "and": [ "amenity=atm", - "official_name=بنك التنمية المحلية", - "official_name:ar=بنك التنمية المحلية", - "official_name:fr=Banque de Développement Local", { "or": [ "brand=بنك التنمية المحلية", "brand:ar=بنك التنمية المحلية", "brand:fr=Banque de Développement Local", "brand:wikidata=Q64410371", + "official_name=بنك التنمية المحلية", + "official_name:ar=بنك التنمية المحلية", + "official_name:fr=Banque de Développement Local", "operator=بنك التنمية المحلية", "operator:wikidata=Q64410371" ] @@ -239303,15 +239647,15 @@ }, { "question": "BDM", - "icon": "./assets/data/nsi/logos/bdm-3ba76d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdm-3ba76d.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banque du Développement du Mali", { "or": [ "brand=BDM", "brand:wikidata=Q2883022", + "official_name=Banque du Développement du Mali", "operator=BDM", "operator:wikidata=Q2883022" ] @@ -239321,7 +239665,7 @@ }, { "question": "BdM Banca", - "icon": "./assets/data/nsi/logos/bdmbanca-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdmbanca-64483a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239338,7 +239682,7 @@ }, { "question": "BDO", - "icon": "./assets/data/nsi/logos/bdo-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdo-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239356,7 +239700,7 @@ }, { "question": "BDO Network Bank", - "icon": "./assets/data/nsi/logos/bdonetworkbank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdonetworkbank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239373,7 +239717,7 @@ }, { "question": "BEA (البنك الجزائري الخارجي)", - "icon": "./assets/data/nsi/logos/bea-f957e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bea-f957e0.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239394,7 +239738,7 @@ }, { "question": "BECU", - "icon": "./assets/data/nsi/logos/becu-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/becu-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -239411,7 +239755,7 @@ }, { "question": "Belfius", - "icon": "./assets/data/nsi/logos/belfius-8a4913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belfius-8a4913.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239428,7 +239772,7 @@ }, { "question": "Bendigo Bank", - "icon": "./assets/data/nsi/logos/bendigobank-8509c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bendigobank-8509c1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239445,7 +239789,7 @@ }, { "question": "Beobank", - "icon": "./assets/data/nsi/logos/beobank-8a4913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beobank-8a4913.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239462,20 +239806,20 @@ }, { "question": "Bereke Bank", - "icon": "./assets/data/nsi/logos/berekebank-228817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berekebank-228817.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bereke Bank JSC", - "official_name:en=Bereke Bank JSC", - "official_name:kk=«Bereke Bank» АҚ", - "official_name:ru=АО «Bereke Bank»", { "or": [ "brand=Bereke Bank", "brand:wikidata=Q4153367", "name:en=Bereke Bank", "name:ru=Береке Банк", + "official_name=Bereke Bank JSC", + "official_name:en=Bereke Bank JSC", + "official_name:kk=«Bereke Bank» АҚ", + "official_name:ru=АО «Bereke Bank»", "operator=Bereke Bank", "operator:wikidata=Q4153367" ] @@ -239485,7 +239829,7 @@ }, { "question": "Berliner Volksbank", - "icon": "./assets/data/nsi/logos/berlinervolksbank-fb8bf5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinervolksbank-fb8bf5.png", "osmTags": { "and": [ "amenity=atm", @@ -239502,7 +239846,7 @@ }, { "question": "Berner Kantonalbank", - "icon": "./assets/data/nsi/logos/bernerkantonalbank-ba97f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bernerkantonalbank-ba97f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239526,7 +239870,7 @@ }, { "question": "BGL BNP Paribas", - "icon": "./assets/data/nsi/logos/bglbnpparibas-8c9eca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bglbnpparibas-8c9eca.png", "osmTags": { "and": [ "amenity=atm", @@ -239543,15 +239887,15 @@ }, { "question": "BIAT", - "icon": "./assets/data/nsi/logos/biat-74adc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biat-74adc2.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banque internationale arabe de Tunisie", { "or": [ "brand=BIAT", "brand:wikidata=Q690739", + "official_name=Banque internationale arabe de Tunisie", "operator=BIAT", "operator:wikidata=Q690739" ] @@ -239561,7 +239905,7 @@ }, { "question": "Bicici", - "icon": "./assets/data/nsi/logos/bicici-b783ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bicici-b783ed.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239578,17 +239922,17 @@ }, { "question": "BIDV", - "icon": "./assets/data/nsi/logos/bidv-cfdb1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bidv-cfdb1a.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Ngân hàng Đầu tư và Phát triển Việt Nam", - "official_name:en=Bank for Investment and Development of Vietnam", - "official_name:vi=Ngân hàng Đầu tư và Phát triển Việt Nam", { "or": [ "brand=BIDV", "brand:wikidata=Q1003180", + "official_name=Ngân hàng Đầu tư và Phát triển Việt Nam", + "official_name:en=Bank for Investment and Development of Vietnam", + "official_name:vi=Ngân hàng Đầu tư và Phát triển Việt Nam", "operator=BIDV", "operator:wikidata=Q1003180" ] @@ -239598,7 +239942,7 @@ }, { "question": "Bidvest Bank", - "icon": "./assets/data/nsi/logos/bidvestbank-997829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bidvestbank-997829.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239615,15 +239959,15 @@ }, { "question": "BIL", - "icon": "./assets/data/nsi/logos/bil-8c9eca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bil-8c9eca.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banque Internationale à Luxembourg", { "or": [ "brand=BIL", "brand:wikidata=Q2883404", + "official_name=Banque Internationale à Luxembourg", "operator=BIL", "operator:wikidata=Q2883404" ] @@ -239633,15 +239977,15 @@ }, { "question": "BKS Bank", - "icon": "./assets/data/nsi/logos/bksbank-fc110f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bksbank-fc110f.svg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank für Kärnten und Steiermark", { "or": [ "brand=BKS Bank", "brand:wikidata=Q796136", + "official_name=Bank für Kärnten und Steiermark", "operator=BKS Bank", "operator:wikidata=Q796136" ] @@ -239651,7 +239995,7 @@ }, { "question": "Blue Federal Credit Union", - "icon": "./assets/data/nsi/logos/bluefederalcreditunion-7e60b6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluefederalcreditunion-7e60b6.svg", "osmTags": { "and": [ "amenity=atm", @@ -239668,13 +240012,10 @@ }, { "question": "BMCE Bank (البنك المغربي للتجارة الخارجية)", - "icon": "./assets/data/nsi/logos/bmcebank-c2e240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmcebank-c2e240.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=البنك المغربي للتجارة الخارجية", - "official_name:ar=البنك المغربي للتجارة الخارجية", - "official_name:en=Moroccan Bank of Foreign Commerce", { "or": [ "brand=BMCE Bank", @@ -239683,6 +240024,9 @@ "brand:wikidata=Q2300433", "name:ar=البنك المغربي للتجارة الخارجية", "name:en=BMCE Bank", + "official_name=البنك المغربي للتجارة الخارجية", + "official_name:ar=البنك المغربي للتجارة الخارجية", + "official_name:en=Moroccan Bank of Foreign Commerce", "operator=BMCE Bank", "operator:wikidata=Q2300433" ] @@ -239692,7 +240036,7 @@ }, { "question": "BMCI (البنك المغربي للتجارة والصناعة)", - "icon": "./assets/data/nsi/logos/bmci-c2e240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmci-c2e240.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239713,15 +240057,15 @@ }, { "question": "BMN", - "icon": "./assets/data/nsi/logos/bmn-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmn-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Mare Nostrum", { "or": [ "brand=BMN", "brand:wikidata=Q3754900", + "official_name=Banco Mare Nostrum", "operator=BMN", "operator:wikidata=Q3754900" ] @@ -239731,15 +240075,15 @@ }, { "question": "BMO (Canada)", - "icon": "./assets/data/nsi/logos/bmo-ddac74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bmo-ddac74.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank of Montreal", { "or": [ "brand=BMO", "brand:wikidata=Q806693", + "official_name=Bank of Montreal", "operator=BMO", "operator:wikidata=Q806693" ] @@ -239749,7 +240093,7 @@ }, { "question": "BMO (USA)", - "icon": "./assets/data/nsi/logos/bmo-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bmo-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -239766,15 +240110,15 @@ }, { "question": "BNA (Algeria)", - "icon": "./assets/data/nsi/logos/bna-f957e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bna-f957e0.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banque nationale d'Algérie", { "or": [ "brand=BNA", "brand:wikidata=Q2883410", + "official_name=Banque nationale d'Algérie", "operator=BNA", "operator:wikidata=Q2883410" ] @@ -239784,7 +240128,7 @@ }, { "question": "BNA (Tunisia)", - "icon": "./assets/data/nsi/logos/bna-74adc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bna-74adc2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239801,15 +240145,15 @@ }, { "question": "BNDA", - "icon": "./assets/data/nsi/logos/bnda-3ba76d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnda-3ba76d.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banque Nationale de Développement Agricole", { "or": [ "brand=BNDA", "brand:wikidata=Q30594734", + "official_name=Banque Nationale de Développement Agricole", "operator=BNDA", "operator:wikidata=Q30594734" ] @@ -239819,15 +240163,15 @@ }, { "question": "BNI", - "icon": "./assets/data/nsi/logos/bni-d4d2b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bni-d4d2b6.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank Negara Indonesia", { "or": [ "brand=BNI", "brand:wikidata=Q2882611", + "official_name=Bank Negara Indonesia", "operator=BNI", "operator:wikidata=Q2882611" ] @@ -239837,15 +240181,15 @@ }, { "question": "BNL", - "icon": "./assets/data/nsi/logos/bnl-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bnl-64483a.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Banca Nazionale del Lavoro", { "or": [ "brand=BNL", "brand:wikidata=Q2201225", + "official_name=Banca Nazionale del Lavoro", "operator=BNL", "operator:wikidata=Q2201225" ] @@ -239855,7 +240199,7 @@ }, { "question": "BNP Paribas", - "icon": "./assets/data/nsi/logos/bnpparibas-2d9890.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnpparibas-2d9890.svg", "osmTags": { "and": [ "amenity=atm", @@ -239872,7 +240216,7 @@ }, { "question": "BNP Paribas Bank Polska", - "icon": "./assets/data/nsi/logos/bnpparibasbankpolska-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnpparibasbankpolska-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239889,7 +240233,7 @@ }, { "question": "BNP Paribas Fortis", - "icon": "./assets/data/nsi/logos/bnpparibasfortis-8a4913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnpparibasfortis-8a4913.jpg", "osmTags": { "and": [ "amenity=atm", @@ -239906,15 +240250,15 @@ }, { "question": "BOC", - "icon": "./assets/data/nsi/logos/boc-d5d850.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boc-d5d850.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank of China", { "or": [ "brand=BOC", "brand:wikidata=Q790068", + "official_name=Bank of China", "operator=BOC", "operator:wikidata=Q790068" ] @@ -239924,15 +240268,15 @@ }, { "question": "BOM", - "icon": "./assets/data/nsi/logos/bom-8509c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bom-8509c1.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank of Melbourne", { "or": [ "brand=BOM", "brand:wikidata=Q4856151", + "official_name=Bank of Melbourne", "operator=BOM", "operator:wikidata=Q4856151" ] @@ -239942,15 +240286,15 @@ }, { "question": "BOQ", - "icon": "./assets/data/nsi/logos/boq-8509c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boq-8509c1.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank of Queensland", { "or": [ "brand=BOQ", "brand:wikidata=Q4856173", + "official_name=Bank of Queensland", "operator=BOQ", "operator:wikidata=Q4856173" ] @@ -239960,15 +240304,15 @@ }, { "question": "BPC", - "icon": "./assets/data/nsi/logos/bpc-d8c228.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpc-d8c228.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco de Poupança e Crédito", { "or": [ "brand=BPC", "brand:wikidata=Q4854132", + "official_name=Banco de Poupança e Crédito", "operator=BPC", "operator:wikidata=Q4854132" ] @@ -239978,15 +240322,15 @@ }, { "question": "BPER Banca", - "icon": "./assets/data/nsi/logos/bperbanca-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bperbanca-64483a.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banca Popolare dell'Emilia Romagna", { "or": [ "brand=BPER Banca", "brand:wikidata=Q806167", + "official_name=Banca Popolare dell'Emilia Romagna", "operator=BPER Banca", "operator:wikidata=Q806167" ] @@ -239996,15 +240340,15 @@ }, { "question": "BPI", - "icon": "./assets/data/nsi/logos/bpi-5ced8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpi-5ced8e.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank of the Philippine Islands", { "or": [ "brand=BPI", "brand:wikidata=Q2501256", + "official_name=Bank of the Philippine Islands", "operator=BPI", "operator:wikidata=Q2501256" ] @@ -240014,7 +240358,7 @@ }, { "question": "Bradesco", - "icon": "./assets/data/nsi/logos/bradesco-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bradesco-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240031,7 +240375,7 @@ }, { "question": "BRD", - "icon": "./assets/data/nsi/logos/brd-1de605.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brd-1de605.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240048,15 +240392,15 @@ }, { "question": "BRED", - "icon": "./assets/data/nsi/logos/bred-134295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bred-134295.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banque régionale d'escompte et de dépôts", { "or": [ "brand=BRED", "brand:wikidata=Q2877455", + "official_name=Banque régionale d'escompte et de dépôts", "operator=BRED", "operator:wikidata=Q2877455" ] @@ -240066,15 +240410,15 @@ }, { "question": "BRI", - "icon": "./assets/data/nsi/logos/bri-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bri-16476e.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank Rakyat Indonesia", { "or": [ "brand=BRI", "brand:wikidata=Q623042", + "official_name=Bank Rakyat Indonesia", "operator=BRI", "operator:wikidata=Q623042" ] @@ -240084,17 +240428,17 @@ }, { "question": "BTN", - "icon": "./assets/data/nsi/logos/btn-16476e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/btn-16476e.svg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank Tabungan Negara", { "or": [ "brand=BTN", "brand:en=BTN", "brand:id=BTN", "brand:wikidata=Q12474534", + "official_name=Bank Tabungan Negara", "operator=BTN", "operator:wikidata=Q12474534" ] @@ -240104,17 +240448,17 @@ }, { "question": "BTPN", - "icon": "./assets/data/nsi/logos/btpn-16476e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/btpn-16476e.svg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank BTPN", { "or": [ "brand=BTPN", "brand:en=BTPN", "brand:id=BTPN", "brand:wikidata=Q12474535", + "official_name=Bank BTPN", "operator=BTPN", "operator:wikidata=Q12474535" ] @@ -240124,15 +240468,15 @@ }, { "question": "BTV", - "icon": "./assets/data/nsi/logos/btv-8f6c73.png", + "icon": "https://data.mapcomplete.org/nsi//logos/btv-8f6c73.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank für Tirol und Vorarlberg", { "or": [ "brand=BTV", "brand:wikidata=Q806665", + "official_name=Bank für Tirol und Vorarlberg", "operator=BTV", "operator:wikidata=Q806665" ] @@ -240142,7 +240486,7 @@ }, { "question": "Budapest Bank", - "icon": "./assets/data/nsi/logos/budapestbank-681c6d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/budapestbank-681c6d.svg", "osmTags": { "and": [ "amenity=atm", @@ -240159,7 +240503,7 @@ }, { "question": "Busey Bank", - "icon": "./assets/data/nsi/logos/buseybank-25700e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/buseybank-25700e.png", "osmTags": { "and": [ "amenity=atm", @@ -240176,7 +240520,7 @@ }, { "question": "BW-Bank", - "icon": "./assets/data/nsi/logos/bwbank-fb8bf5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bwbank-fb8bf5.png", "osmTags": { "and": [ "amenity=atm", @@ -240215,7 +240559,7 @@ }, { "question": "Byline Bank", - "icon": "./assets/data/nsi/logos/bylinebank-ce0e38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bylinebank-ce0e38.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240232,7 +240576,7 @@ }, { "question": "Cadence Bank", - "icon": "./assets/data/nsi/logos/cadencebank-4b4e36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cadencebank-4b4e36.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240249,7 +240593,7 @@ }, { "question": "Caisse d'Épargne", - "icon": "./assets/data/nsi/logos/caissedepargne-2f6feb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caissedepargne-2f6feb.png", "osmTags": { "and": [ "amenity=atm", @@ -240269,12 +240613,12 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Caixa Rural d'Altea", { "or": [ "brand=Caixa Altea", "brand:wikidata=Q115774046", "name:ca=Caixa Altea", + "official_name=Caixa Rural d'Altea", "operator=Caixa Altea", "operator:wikidata=Q115774046" ] @@ -240287,12 +240631,12 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Caixa Rural de Callosa d'en Sarrià", { "or": [ "brand=Caixa Callosa", "brand:wikidata=Q115774219", "name:ca=Caixa Callosa", + "official_name=Caixa Rural de Callosa d'en Sarrià", "operator=Caixa Callosa", "operator:wikidata=Q115774219" ] @@ -240302,7 +240646,7 @@ }, { "question": "Caixa Econômica Federal (Brasil)", - "icon": "./assets/data/nsi/logos/caixaeconomicafederal-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixaeconomicafederal-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240319,7 +240663,7 @@ }, { "question": "Caixa Geral de Depósitos", - "icon": "./assets/data/nsi/logos/caixageraldedepositos-49554e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixageraldedepositos-49554e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240337,7 +240681,7 @@ }, { "question": "Caixa Ontinyent", - "icon": "./assets/data/nsi/logos/caixaontinyent-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixaontinyent-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240355,7 +240699,7 @@ }, { "question": "Caixa Popular", - "icon": "./assets/data/nsi/logos/caixapopular-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixapopular-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240372,7 +240716,7 @@ }, { "question": "Caixabank (España)", - "icon": "./assets/data/nsi/logos/caixabank-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixabank-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240419,7 +240763,7 @@ }, { "question": "Caja España", - "icon": "./assets/data/nsi/logos/cajaespana-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cajaespana-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240436,7 +240780,7 @@ }, { "question": "Caja Rural", - "icon": "./assets/data/nsi/logos/cajarural-b48e80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cajarural-b48e80.png", "osmTags": { "and": [ "amenity=atm", @@ -240453,7 +240797,7 @@ }, { "question": "Caja Rural de Aragón", - "icon": "./assets/data/nsi/logos/cajaruraldearagon-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cajaruraldearagon-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240470,7 +240814,7 @@ }, { "question": "Caja Rural de Jaén", - "icon": "./assets/data/nsi/logos/cajaruraldejaen-b48e80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cajaruraldejaen-b48e80.png", "osmTags": { "and": [ "amenity=atm", @@ -240487,7 +240831,7 @@ }, { "question": "Cajamar", - "icon": "./assets/data/nsi/logos/cajamar-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cajamar-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240504,7 +240848,7 @@ }, { "question": "CajaSur", - "icon": "./assets/data/nsi/logos/cajasur-b48e80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cajasur-b48e80.png", "osmTags": { "and": [ "amenity=atm", @@ -240521,7 +240865,7 @@ }, { "question": "CalBank", - "icon": "./assets/data/nsi/logos/calbank-843442.png", + "icon": "https://data.mapcomplete.org/nsi//logos/calbank-843442.png", "osmTags": { "and": [ "amenity=atm", @@ -240539,7 +240883,7 @@ }, { "question": "California Coast Credit Union", - "icon": "./assets/data/nsi/logos/californiacoastcreditunion-f9d961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiacoastcreditunion-f9d961.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240556,7 +240900,7 @@ }, { "question": "Camden National Bank", - "icon": "./assets/data/nsi/logos/camdennationalbank-9ae6ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camdennationalbank-9ae6ff.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240573,7 +240917,7 @@ }, { "question": "Canadian Western Bank", - "icon": "./assets/data/nsi/logos/canadianwesternbank-ddac74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canadianwesternbank-ddac74.png", "osmTags": { "and": [ "amenity=atm", @@ -240590,7 +240934,7 @@ }, { "question": "Canandaigua National Bank & Trust", - "icon": "./assets/data/nsi/logos/canandaiguanationalbankandtrust-85c59a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canandaiguanationalbankandtrust-85c59a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240607,7 +240951,7 @@ }, { "question": "Canara Bank", - "icon": "./assets/data/nsi/logos/canarabank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canarabank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240636,7 +240980,7 @@ }, { "question": "Capital Bank", - "icon": "./assets/data/nsi/logos/capitalbank-5df443.png", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalbank-5df443.png", "osmTags": { "and": [ "amenity=atm", @@ -240653,7 +240997,7 @@ }, { "question": "Capital One", - "icon": "./assets/data/nsi/logos/capitalone-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalone-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240684,7 +241028,7 @@ }, { "question": "Capital Small Finance Bank", - "icon": "./assets/data/nsi/logos/capitalsmallfinancebank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalsmallfinancebank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240717,7 +241061,7 @@ }, { "question": "Capitec Bank", - "icon": "./assets/data/nsi/logos/capitecbank-997829.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitecbank-997829.svg", "osmTags": { "and": [ "amenity=atm", @@ -240750,7 +241094,7 @@ }, { "question": "Casden", - "icon": "./assets/data/nsi/logos/casden-134295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casden-134295.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240767,7 +241111,7 @@ }, { "question": "CatalunyaCaixa", - "icon": "./assets/data/nsi/logos/catalunyacaixa-b48e80.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/catalunyacaixa-b48e80.svg", "osmTags": { "and": [ "amenity=atm", @@ -240784,7 +241128,7 @@ }, { "question": "Cathay Bank", - "icon": "./assets/data/nsi/logos/cathaybank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cathaybank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240801,7 +241145,7 @@ }, { "question": "CBAO", - "icon": "./assets/data/nsi/logos/cbao-bac240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cbao-bac240.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240818,7 +241162,7 @@ }, { "question": "CCF", - "icon": "./assets/data/nsi/logos/ccf-2f8fb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ccf-2f8fb0.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240835,7 +241179,7 @@ }, { "question": "CEC Bank", - "icon": "./assets/data/nsi/logos/cecbank-1de605.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cecbank-1de605.png", "osmTags": { "and": [ "amenity=atm", @@ -240852,7 +241196,7 @@ }, { "question": "Centennial Bank", - "icon": "./assets/data/nsi/logos/centennialbank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centennialbank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -240869,14 +241213,10 @@ }, { "question": "CenterCredit", - "icon": "./assets/data/nsi/logos/bankcentercredit-228817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankcentercredit-228817.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank CenterCredit JSC", - "official_name:en=Bank CenterCredit JSC", - "official_name:kk=«Банк ЦентрКредит» АҚ", - "official_name:ru=АО «Банк ЦентрКредит»", { "or": [ "brand=Bank CenterCredit", @@ -240884,6 +241224,10 @@ "name:en=Bank CenterCredit", "name:kk=Банк ЦентрКредит", "name:ru=Банк ЦентрКредит", + "official_name=Bank CenterCredit JSC", + "official_name:en=Bank CenterCredit JSC", + "official_name:kk=«Банк ЦентрКредит» АҚ", + "official_name:ru=АО «Банк ЦентрКредит»", "operator=Bank CenterCredit", "operator:wikidata=Q806624" ] @@ -240893,7 +241237,7 @@ }, { "question": "Central Bank", - "icon": "./assets/data/nsi/logos/centralbank-5249e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralbank-5249e2.png", "osmTags": { "and": [ "amenity=atm", @@ -240910,7 +241254,7 @@ }, { "question": "Central Bank of India", - "icon": "./assets/data/nsi/logos/centralbankofindia-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralbankofindia-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240927,7 +241271,7 @@ }, { "question": "Česká spořitelna", - "icon": "./assets/data/nsi/logos/ceskasporitelna-767782.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskasporitelna-767782.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240944,7 +241288,7 @@ }, { "question": "Chase", - "icon": "./assets/data/nsi/logos/chase-83b186.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chase-83b186.png", "osmTags": { "and": [ "amenity=atm", @@ -240977,7 +241321,7 @@ }, { "question": "China Bank Savings", - "icon": "./assets/data/nsi/logos/chinabanksavings-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinabanksavings-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -240994,7 +241338,7 @@ }, { "question": "China Construction Bank", - "icon": "./assets/data/nsi/logos/chinaconstructionbank-3780b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-3780b1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241012,7 +241356,7 @@ }, { "question": "Chinabank", - "icon": "./assets/data/nsi/logos/chinabank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinabank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241029,7 +241373,7 @@ }, { "question": "CIB Bank", - "icon": "./assets/data/nsi/logos/cibbank-681c6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cibbank-681c6d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241046,7 +241390,7 @@ }, { "question": "CIBC", - "icon": "./assets/data/nsi/logos/cibc-ddac74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cibc-ddac74.png", "osmTags": { "and": [ "amenity=atm", @@ -241063,7 +241407,7 @@ }, { "question": "CIC", - "icon": "./assets/data/nsi/logos/cic-2f8fb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cic-2f8fb0.png", "osmTags": { "and": [ "amenity=atm", @@ -241080,7 +241424,7 @@ }, { "question": "CIH Bank (القرض العقاري والسياحي)", - "icon": "./assets/data/nsi/logos/cihbank-c2e240.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cihbank-c2e240.png", "osmTags": { "and": [ "amenity=atm", @@ -241101,7 +241445,7 @@ }, { "question": "CIMB Bank", - "icon": "./assets/data/nsi/logos/cimbbank-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cimbbank-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241118,7 +241462,7 @@ }, { "question": "CIMB Niaga", - "icon": "./assets/data/nsi/logos/cimbniaga-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cimbniaga-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241135,7 +241479,7 @@ }, { "question": "Citadele", - "icon": "./assets/data/nsi/logos/citadelebank-ea222c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citadelebank-ea222c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241155,7 +241499,7 @@ }, { "question": "Citibank", - "icon": "./assets/data/nsi/logos/citibank-3f6fd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citibank-3f6fd4.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241173,7 +241517,7 @@ }, { "question": "Citizens Bank (Eastern USA)", - "icon": "./assets/data/nsi/logos/citizensbank-0bad27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citizensbank-0bad27.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241191,17 +241535,17 @@ }, { "question": "Citizens Bank (Kentucky)", - "icon": "./assets/data/nsi/logos/citizensbank-a1f4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citizensbank-a1f4cf.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Citizens National Bank", "short_name=Citizens", { "or": [ "alt_name=Citizens Bank of Kentucky", "brand=Citizens Bank", "brand:wikidata=Q5122711", + "official_name=Citizens National Bank", "operator=Citizens Bank", "operator:wikidata=Q5122711" ] @@ -241211,16 +241555,16 @@ }, { "question": "Citizens Bank (Nepal)", - "icon": "./assets/data/nsi/logos/citizensbankinternational-1b6814.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citizensbankinternational-1b6814.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Citizens Bank International Ltd.", "short_name=Citizens", { "or": [ "brand=Citizens Bank International", "brand:wikidata=Q13186934", + "official_name=Citizens Bank International Ltd.", "operator=Citizens Bank International", "operator:wikidata=Q13186934" ] @@ -241245,7 +241589,7 @@ }, { "question": "City National Bank (California-based)", - "icon": "./assets/data/nsi/logos/citynationalbank-7f15af.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citynationalbank-7f15af.png", "osmTags": { "and": [ "amenity=atm", @@ -241262,15 +241606,15 @@ }, { "question": "City National Bank (Florida)", - "icon": "./assets/data/nsi/logos/citynationalbank-29a210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citynationalbank-29a210.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=City National Bank of Florida", { "or": [ "brand=City National Bank", "brand:wikidata=Q16958644", + "official_name=City National Bank of Florida", "operator=City National Bank", "operator:wikidata=Q16958644" ] @@ -241280,7 +241624,7 @@ }, { "question": "City National Bank (West Virginia)", - "icon": "./assets/data/nsi/logos/citynationalbank-12b850.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citynationalbank-12b850.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241320,7 +241664,7 @@ }, { "question": "CiviBank", - "icon": "./assets/data/nsi/logos/civibank-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/civibank-64483a.png", "osmTags": { "and": [ "amenity=atm", @@ -241337,7 +241681,7 @@ }, { "question": "CNEP (الصندوق الوطني للتوفير والاحتياط)", - "icon": "./assets/data/nsi/logos/cnep-f957e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cnep-f957e0.png", "osmTags": { "and": [ "amenity=atm", @@ -241360,15 +241704,15 @@ }, { "question": "Coast Capital Savings", - "icon": "./assets/data/nsi/logos/coastcapitalsavings-ddac74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coastcapitalsavings-ddac74.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Coast Capital Savings Federal Credit Union", { "or": [ "brand=Coast Capital Savings", "brand:wikidata=Q5138088", + "official_name=Coast Capital Savings Federal Credit Union", "operator=Coast Capital Savings", "operator:wikidata=Q5138088" ] @@ -241378,6 +241722,7 @@ }, { "question": "Columbia Bank (New Jersey)", + "icon": "https://data.mapcomplete.org/nsi//logos/columbiabank-f73770.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241410,7 +241755,7 @@ }, { "question": "Comerica Bank", - "icon": "./assets/data/nsi/logos/comericabank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comericabank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241427,7 +241772,7 @@ }, { "question": "ComInBank", - "icon": "./assets/data/nsi/logos/cominbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cominbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241448,7 +241793,7 @@ }, { "question": "Commerce Bank", - "icon": "./assets/data/nsi/logos/commercebank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/commercebank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -241465,7 +241810,7 @@ }, { "question": "Commercial Bank of Ceylon", - "icon": "./assets/data/nsi/logos/commercialbankofceylon-960663.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commercialbankofceylon-960663.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241482,7 +241827,7 @@ }, { "question": "Commercial Bank of Ethiopia", - "icon": "./assets/data/nsi/logos/commercialbankofethiopia-b796ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commercialbankofethiopia-b796ca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241501,7 +241846,7 @@ }, { "question": "Commerzbank", - "icon": "./assets/data/nsi/logos/commerzbank-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commerzbank-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241518,7 +241863,7 @@ }, { "question": "Commonwealth Bank", - "icon": "./assets/data/nsi/logos/commonwealthbank-83b186.png", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthbank-83b186.png", "osmTags": { "and": [ "amenity=atm", @@ -241535,7 +241880,7 @@ }, { "question": "Community Bank", - "icon": "./assets/data/nsi/logos/communitybank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communitybank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241568,7 +241913,7 @@ }, { "question": "Community First Credit Union (Florida)", - "icon": "./assets/data/nsi/logos/communityfirstcreditunion-1c09a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communityfirstcreditunion-1c09a7.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241619,7 +241964,7 @@ }, { "question": "Consumers Credit Union (Illinois)", - "icon": "./assets/data/nsi/logos/consumerscreditunion-09683f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumerscreditunion-09683f.png", "osmTags": { "and": [ "amenity=atm", @@ -241636,7 +241981,7 @@ }, { "question": "Consumers Credit Union (Michigan)", - "icon": "./assets/data/nsi/logos/consumerscreditunion-9aa6fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumerscreditunion-9aa6fc.png", "osmTags": { "and": [ "amenity=atm", @@ -241653,7 +241998,7 @@ }, { "question": "Converse Bank", - "icon": "./assets/data/nsi/logos/conversebank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conversebank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241676,7 +242021,7 @@ }, { "question": "Corporation Bank", - "icon": "./assets/data/nsi/logos/corporationbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/corporationbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241693,7 +242038,7 @@ }, { "question": "CPA (القرض الشعبي الجزائري)", - "icon": "./assets/data/nsi/logos/cpa-f957e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cpa-f957e0.png", "osmTags": { "and": [ "amenity=atm", @@ -241712,7 +242057,7 @@ }, { "question": "CRDB Bank", - "icon": "./assets/data/nsi/logos/crdbbank-14cdb2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/crdbbank-14cdb2.png", "osmTags": { "and": [ "amenity=atm", @@ -241729,15 +242074,15 @@ }, { "question": "Credem", - "icon": "./assets/data/nsi/logos/credem-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/credem-64483a.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Credito Emiliano", { "or": [ "brand=Credem", "brand:wikidata=Q3696881", + "official_name=Credito Emiliano", "operator=Credem", "operator:wikidata=Q3696881" ] @@ -241747,7 +242092,7 @@ }, { "question": "Credicoop", - "icon": "./assets/data/nsi/logos/credicoop-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/credicoop-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241764,7 +242109,7 @@ }, { "question": "Crédit Agricole", - "icon": "./assets/data/nsi/logos/creditagricole-bcd54e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditagricole-bcd54e.png", "osmTags": { "and": [ "amenity=atm", @@ -241781,7 +242126,7 @@ }, { "question": "Crédit agricole du Maroc (القرض الفلاحي)", - "icon": "./assets/data/nsi/logos/77b207-c2e240.png", + "icon": "https://data.mapcomplete.org/nsi//logos/77b207-c2e240.png", "osmTags": { "and": [ "amenity=atm", @@ -241802,7 +242147,7 @@ }, { "question": "Crédit Agricole Italia", - "icon": "./assets/data/nsi/logos/creditagricole-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditagricole-64483a.png", "osmTags": { "and": [ "amenity=atm", @@ -241819,7 +242164,7 @@ }, { "question": "Crédit Coopératif", - "icon": "./assets/data/nsi/logos/creditcooperatif-2f8fb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditcooperatif-2f8fb0.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241836,7 +242181,7 @@ }, { "question": "Crédit du Maroc (مصرف المغرب)", - "icon": "./assets/data/nsi/logos/baf583-c2e240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baf583-c2e240.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241857,7 +242202,7 @@ }, { "question": "Crédit du Nord", - "icon": "./assets/data/nsi/logos/creditdunord-2f8fb0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditdunord-2f8fb0.svg", "osmTags": { "and": [ "amenity=atm", @@ -241874,7 +242219,7 @@ }, { "question": "Crédit Maritime", - "icon": "./assets/data/nsi/logos/creditmaritime-134295.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditmaritime-134295.png", "osmTags": { "and": [ "amenity=atm", @@ -241891,7 +242236,7 @@ }, { "question": "Crédit Mutuel", - "icon": "./assets/data/nsi/logos/creditmutuel-2f6feb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditmutuel-2f6feb.png", "osmTags": { "and": [ "amenity=atm", @@ -241908,7 +242253,7 @@ }, { "question": "Crédit Mutuel de Bretagne", - "icon": "./assets/data/nsi/logos/creditmutueldebretagne-2f8fb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditmutueldebretagne-2f8fb0.png", "osmTags": { "and": [ "amenity=atm", @@ -241925,7 +242270,7 @@ }, { "question": "Credit Suisse", - "icon": "./assets/data/nsi/logos/creditsuisse-ba97f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditsuisse-ba97f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241942,7 +242287,7 @@ }, { "question": "Crédito Agrícola", - "icon": "./assets/data/nsi/logos/creditoagricola-9411e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditoagricola-9411e1.png", "osmTags": { "and": [ "amenity=atm", @@ -241959,7 +242304,7 @@ }, { "question": "Creditwest Bank", - "icon": "./assets/data/nsi/logos/creditwestbank-a0e164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditwestbank-a0e164.jpg", "osmTags": { "and": [ "amenity=atm", @@ -241976,7 +242321,7 @@ }, { "question": "Crelan", - "icon": "./assets/data/nsi/logos/crelan-8a4913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crelan-8a4913.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242007,7 +242352,7 @@ }, { "question": "Crnogorska Komercijalna Banka", - "icon": "./assets/data/nsi/logos/crnogorskakomercijalnabanka-0bf2d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crnogorskakomercijalnabanka-0bf2d9.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242024,7 +242369,7 @@ }, { "question": "Croatia banka", - "icon": "./assets/data/nsi/logos/croatiabanka-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/croatiabanka-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -242041,15 +242386,15 @@ }, { "question": "CSB Bank", - "icon": "./assets/data/nsi/logos/csbbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csbbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Catholic Syrian Bank", { "or": [ "brand=CSB Bank", "brand:wikidata=Q5053244", + "official_name=Catholic Syrian Bank", "operator=CSB Bank", "operator:wikidata=Q5053244" ] @@ -242059,7 +242404,7 @@ }, { "question": "ČSOB", - "icon": "./assets/data/nsi/logos/csob-58e2e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csob-58e2e6.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242076,7 +242421,7 @@ }, { "question": "Danske Bank", - "icon": "./assets/data/nsi/logos/danskebank-a2bade.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/danskebank-a2bade.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242093,7 +242438,7 @@ }, { "question": "Davivienda", - "icon": "./assets/data/nsi/logos/davivienda-ad7b0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/davivienda-ad7b0d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242110,7 +242455,7 @@ }, { "question": "Dayspring Bank", - "icon": "./assets/data/nsi/logos/dayspringbank-e62620.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dayspringbank-e62620.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242127,7 +242472,7 @@ }, { "question": "DBank", - "icon": "./assets/data/nsi/logos/dbank-e5108a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dbank-e5108a.png", "osmTags": { "and": [ "amenity=atm", @@ -242144,7 +242489,7 @@ }, { "question": "DBP", - "icon": "./assets/data/nsi/logos/dbp-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbp-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242161,7 +242506,7 @@ }, { "question": "DBS Bank India", - "icon": "./assets/data/nsi/logos/dbsbankindia-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dbsbankindia-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -242178,7 +242523,7 @@ }, { "question": "Degussa Bank", - "icon": "./assets/data/nsi/logos/degussabank-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/degussabank-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242195,7 +242540,7 @@ }, { "question": "Denizbank", - "icon": "./assets/data/nsi/logos/denizbank-2f6feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/denizbank-2f6feb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242212,7 +242557,7 @@ }, { "question": "Desjardins", - "icon": "./assets/data/nsi/logos/desjardins-ddac74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/desjardins-ddac74.png", "osmTags": { "and": [ "amenity=atm", @@ -242229,7 +242574,7 @@ }, { "question": "Deutsche Bank", - "icon": "./assets/data/nsi/logos/deutschebank-83b186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebank-83b186.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242246,7 +242591,7 @@ }, { "question": "Dhanlaxmi Bank", - "icon": "./assets/data/nsi/logos/dhanlaxmibank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dhanlaxmibank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -242277,7 +242622,7 @@ }, { "question": "Digital Federal Credit Union", - "icon": "./assets/data/nsi/logos/digitalfederalcreditunion-a6ea74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/digitalfederalcreditunion-a6ea74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242295,7 +242640,7 @@ }, { "question": "DNB", - "icon": "./assets/data/nsi/logos/dnb-3693fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dnb-3693fd.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242312,7 +242657,7 @@ }, { "question": "Dollar Bank", - "icon": "./assets/data/nsi/logos/dollarbank-425d54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dollarbank-425d54.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242329,7 +242674,7 @@ }, { "question": "Dubai Islamic Bank", - "icon": "./assets/data/nsi/logos/dubaiislamicbank-4e81d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dubaiislamicbank-4e81d9.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242352,7 +242697,7 @@ }, { "question": "East West Bank", - "icon": "./assets/data/nsi/logos/eastwestbank-c14adf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastwestbank-c14adf.png", "osmTags": { "and": [ "amenity=atm", @@ -242373,7 +242718,7 @@ }, { "question": "Eastern Bank", - "icon": "./assets/data/nsi/logos/easternbank-a6ea74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easternbank-a6ea74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242390,7 +242735,7 @@ }, { "question": "EastWest Unibank", - "icon": "./assets/data/nsi/logos/eastwestunibank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastwestunibank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242407,7 +242752,7 @@ }, { "question": "Ecobank", - "icon": "./assets/data/nsi/logos/ecobank-4ab2bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecobank-4ab2bd.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242424,7 +242769,7 @@ }, { "question": "Ecobank (Ghana)", - "icon": "./assets/data/nsi/logos/ecobank-843442.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecobank-843442.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242442,7 +242787,7 @@ }, { "question": "Educators Credit Union (Wisconsin)", - "icon": "./assets/data/nsi/logos/educatorscreditunion-2d3cec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/educatorscreditunion-2d3cec.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242459,7 +242804,7 @@ }, { "question": "Emirates NBD", - "icon": "./assets/data/nsi/logos/emiratesnbd-a44f4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emiratesnbd-a44f4b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242476,7 +242821,7 @@ }, { "question": "Equitas Small Finance Bank", - "icon": "./assets/data/nsi/logos/equitassmallfinancebank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equitassmallfinancebank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -242493,7 +242838,7 @@ }, { "question": "Equity Bank (Congo)", - "icon": "./assets/data/nsi/logos/equitybank-39f68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-39f68b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242510,7 +242855,7 @@ }, { "question": "Equity Bank (Kenya)", - "icon": "./assets/data/nsi/logos/equitybank-cb8d4d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-cb8d4d.png", "osmTags": { "and": [ "amenity=atm", @@ -242527,7 +242872,7 @@ }, { "question": "Equity Bank (Rwanda)", - "icon": "./assets/data/nsi/logos/equitybank-f04c00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-f04c00.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242544,7 +242889,7 @@ }, { "question": "Equity Bank (South Sudan)", - "icon": "./assets/data/nsi/logos/equitybank-0cfb4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-0cfb4b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242561,7 +242906,7 @@ }, { "question": "Equity Bank (Tanzania)", - "icon": "./assets/data/nsi/logos/equitybank-14cdb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-14cdb2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242578,7 +242923,7 @@ }, { "question": "Equity Bank (Uganda)", - "icon": "./assets/data/nsi/logos/equitybank-624ccc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-624ccc.png", "osmTags": { "and": [ "amenity=atm", @@ -242611,7 +242956,7 @@ }, { "question": "Erste Bank", - "icon": "./assets/data/nsi/logos/erstebank-1343ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erstebank-1343ca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242628,7 +242973,7 @@ }, { "question": "ESAF Small Finance Bank", - "icon": "./assets/data/nsi/logos/esafsmallfinancebank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esafsmallfinancebank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242645,7 +242990,7 @@ }, { "question": "ESL Federal Credit Union", - "icon": "./assets/data/nsi/logos/eslfederalcreditunion-85c59a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eslfederalcreditunion-85c59a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242665,10 +243010,6 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Eurasian Bank JSC", - "official_name:en=Eurasian Bank JSC", - "official_name:kk=«Еуразиялық банк» АҚ", - "official_name:ru=АО «Евразийский Банк»", { "or": [ "brand=Eurasian Bank", @@ -242676,6 +243017,10 @@ "name:en=Eurasian Bank", "name:kk=Еуразиялық банк", "name:ru=Евразийский банк", + "official_name=Eurasian Bank JSC", + "official_name:en=Eurasian Bank JSC", + "official_name:kk=«Еуразиялық банк» АҚ", + "official_name:ru=АО «Евразийский Банк»", "operator=Eurasian Bank", "operator:wikidata=Q143852" ] @@ -242685,7 +243030,7 @@ }, { "question": "Eurobank (Србија)", - "icon": "./assets/data/nsi/logos/eurobank-4fcc55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurobank-4fcc55.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242702,7 +243047,7 @@ }, { "question": "Eurobank Ergasias", - "icon": "./assets/data/nsi/logos/eurobank-f234fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurobank-f234fb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242722,11 +243067,11 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Banco BIC Português", { "or": [ "brand=EuroBic", "brand:wikidata=Q806175", + "official_name=Banco BIC Português", "operator=EuroBic", "operator:wikidata=Q806175" ] @@ -242736,7 +243081,7 @@ }, { "question": "Europabank", - "icon": "./assets/data/nsi/logos/europabank-8a4913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/europabank-8a4913.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242753,7 +243098,7 @@ }, { "question": "Evocabank", - "icon": "./assets/data/nsi/logos/evocabank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evocabank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242776,7 +243121,7 @@ }, { "question": "Farmers National Bank", - "icon": "./assets/data/nsi/logos/farmersnationalbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmersnationalbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242793,7 +243138,7 @@ }, { "question": "Fast Bank", - "icon": "./assets/data/nsi/logos/fastbank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastbank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242838,7 +243183,7 @@ }, { "question": "Federal Bank", - "icon": "./assets/data/nsi/logos/federalbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/federalbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242855,7 +243200,7 @@ }, { "question": "Fibabanka", - "icon": "./assets/data/nsi/logos/fibabanka-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fibabanka-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242872,7 +243217,7 @@ }, { "question": "Fibank", - "icon": "./assets/data/nsi/logos/fibank-e5108a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fibank-e5108a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242894,7 +243239,7 @@ }, { "question": "Ficohsa", - "icon": "./assets/data/nsi/logos/ficohsa-3c5276.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ficohsa-3c5276.png", "osmTags": { "and": [ "amenity=atm", @@ -242911,7 +243256,7 @@ }, { "question": "Fidelity Bank (Ghana)", - "icon": "./assets/data/nsi/logos/fidelitybank-843442.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-843442.jpg", "osmTags": { "and": [ "amenity=atm", @@ -242929,7 +243274,7 @@ }, { "question": "Fidelity Bank (Kansas)", - "icon": "./assets/data/nsi/logos/fidelitybank-6623a1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-6623a1.svg", "osmTags": { "and": [ "amenity=atm", @@ -242946,7 +243291,7 @@ }, { "question": "Fidelity Bank (Louisiana)", - "icon": "./assets/data/nsi/logos/fidelitybank-82e895.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-82e895.png", "osmTags": { "and": [ "amenity=atm", @@ -242963,7 +243308,7 @@ }, { "question": "Fidelity Bank (Massachusetts)", - "icon": "./assets/data/nsi/logos/fidelitybank-d66204.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-d66204.png", "osmTags": { "and": [ "amenity=atm", @@ -242980,7 +243325,7 @@ }, { "question": "Fidelity Bank (NC/SC/VA)", - "icon": "./assets/data/nsi/logos/fidelitybank-bfc54c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-bfc54c.svg", "osmTags": { "and": [ "amenity=atm", @@ -242997,7 +243342,7 @@ }, { "question": "Fidelity Bank (Nigeria)", - "icon": "./assets/data/nsi/logos/fidelitybank-f95bbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-f95bbc.png", "osmTags": { "and": [ "amenity=atm", @@ -243014,7 +243359,7 @@ }, { "question": "Fidelity Bank (Pennsylvania)", - "icon": "./assets/data/nsi/logos/fidelitybank-17cbf7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-17cbf7.svg", "osmTags": { "and": [ "amenity=atm", @@ -243031,7 +243376,7 @@ }, { "question": "Fidelity Bank & Trust", - "icon": "./assets/data/nsi/logos/fidelitybankandtrust-79138c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybankandtrust-79138c.png", "osmTags": { "and": [ "amenity=atm", @@ -243048,7 +243393,7 @@ }, { "question": "Fifth Third Bank", - "icon": "./assets/data/nsi/logos/fifththirdbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fifththirdbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243066,7 +243411,7 @@ }, { "question": "Fineco", - "icon": "./assets/data/nsi/logos/fineco-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fineco-64483a.png", "osmTags": { "and": [ "amenity=atm", @@ -243083,7 +243428,7 @@ }, { "question": "Fintro", - "icon": "./assets/data/nsi/logos/fintro-8a4913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fintro-8a4913.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243100,7 +243445,7 @@ }, { "question": "Fio banka", - "icon": "./assets/data/nsi/logos/fiobanka-58e2e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiobanka-58e2e6.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243117,7 +243462,7 @@ }, { "question": "First Abu Dhabi Bank", - "icon": "./assets/data/nsi/logos/firstabudhabibank-a44f4b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstabudhabibank-a44f4b.svg", "osmTags": { "and": [ "amenity=atm", @@ -243155,7 +243500,7 @@ }, { "question": "First Bank (North and South Carolina)", - "icon": "./assets/data/nsi/logos/firstbank-ff9fe1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstbank-ff9fe1.png", "osmTags": { "and": [ "amenity=atm", @@ -243172,7 +243517,7 @@ }, { "question": "First Bank (Puerto Rico)", - "icon": "./assets/data/nsi/logos/firstbank-2e2bd2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstbank-2e2bd2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243189,7 +243534,7 @@ }, { "question": "First Bank (Western USA)", - "icon": "./assets/data/nsi/logos/firstbank-cb0b6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstbank-cb0b6c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243207,7 +243552,7 @@ }, { "question": "First Citizens Bank (Trinidad and Tobago)", - "icon": "./assets/data/nsi/logos/firstcitizensbank-1ff3d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcitizensbank-1ff3d8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243224,7 +243569,7 @@ }, { "question": "First Citizens Bank (USA)", - "icon": "./assets/data/nsi/logos/firstcitizensbank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcitizensbank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -243241,7 +243586,7 @@ }, { "question": "First Commonwealth Bank", - "icon": "./assets/data/nsi/logos/firstcommonwealthbank-d1eed2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcommonwealthbank-d1eed2.png", "osmTags": { "and": [ "amenity=atm", @@ -243275,7 +243620,7 @@ }, { "question": "First Community Credit Union", - "icon": "./assets/data/nsi/logos/firstcommunitycreditunion-50220c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcommunitycreditunion-50220c.png", "osmTags": { "and": [ "amenity=atm", @@ -243324,7 +243669,7 @@ }, { "question": "First Financial Bank", - "icon": "./assets/data/nsi/logos/firstfinancialbank-a035b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstfinancialbank-a035b2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243341,7 +243686,7 @@ }, { "question": "First Horizon Bank", - "icon": "./assets/data/nsi/logos/firsthorizonbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firsthorizonbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243358,7 +243703,7 @@ }, { "question": "First Interstate Bank", - "icon": "./assets/data/nsi/logos/firstinterstatebancsystem-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstinterstatebancsystem-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243391,7 +243736,7 @@ }, { "question": "First National Bank (Ghana)", - "icon": "./assets/data/nsi/logos/firstnationalbank-843442.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstnationalbank-843442.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243442,7 +243787,7 @@ }, { "question": "First National Bank of Long Island", - "icon": "./assets/data/nsi/logos/firstnationalbankoflongisland-85c59a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstnationalbankoflongisland-85c59a.png", "osmTags": { "and": [ "amenity=atm", @@ -243459,7 +243804,7 @@ }, { "question": "First National Bank of Scotia", - "icon": "./assets/data/nsi/logos/firstnationalbankofscotia-d93ebb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstnationalbankofscotia-d93ebb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243524,7 +243869,7 @@ }, { "question": "First Security Bank (Arkansas)", - "icon": "./assets/data/nsi/logos/firstsecuritybank-0e6416.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstsecuritybank-0e6416.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243541,7 +243886,7 @@ }, { "question": "First Security Bank (Montana)", - "icon": "./assets/data/nsi/logos/firstsecuritybank-4fe039.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstsecuritybank-4fe039.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243558,7 +243903,7 @@ }, { "question": "First State Bank (East Nebraska)", - "icon": "./assets/data/nsi/logos/firststatebank-b94a54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-b94a54.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243575,7 +243920,7 @@ }, { "question": "First State Bank (Florida)", - "icon": "./assets/data/nsi/logos/firststatebank-68c916.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-68c916.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243592,7 +243937,7 @@ }, { "question": "First State Bank (Illinois)", - "icon": "./assets/data/nsi/logos/firststatebank-09683f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-09683f.png", "osmTags": { "and": [ "amenity=atm", @@ -243609,7 +243954,7 @@ }, { "question": "First State Bank (Michigan)", - "icon": "./assets/data/nsi/logos/firststatebank-9aa6fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-9aa6fc.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243626,7 +243971,7 @@ }, { "question": "First State Bank (Mississippi)", - "icon": "./assets/data/nsi/logos/firststatebank-6d98c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-6d98c2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243659,7 +244004,7 @@ }, { "question": "First State Bank (Texas)", - "icon": "./assets/data/nsi/logos/firststatebank-18eb57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-18eb57.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243676,7 +244021,7 @@ }, { "question": "First Tech Federal Credit Union", - "icon": "./assets/data/nsi/logos/firsttechfederalcreditunion-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firsttechfederalcreditunion-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243693,7 +244038,7 @@ }, { "question": "First United Bank", - "icon": "./assets/data/nsi/logos/firstunitedbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstunitedbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243711,7 +244056,7 @@ }, { "question": "First West Credit Union", - "icon": "./assets/data/nsi/logos/firstwestcreditunion-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstwestcreditunion-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243729,7 +244074,7 @@ }, { "question": "FirstBank Ghana", - "icon": "./assets/data/nsi/logos/firstbankofnigeria-843442.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstbankofnigeria-843442.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243748,7 +244093,7 @@ }, { "question": "Flagstar Bank", - "icon": "./assets/data/nsi/logos/flagstarbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flagstarbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243765,15 +244110,15 @@ }, { "question": "FNB (South Africa)", - "icon": "./assets/data/nsi/logos/fnb-2eaa9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fnb-2eaa9a.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=First National Bank", { "or": [ "brand=FNB", "brand:wikidata=Q3072956", + "official_name=First National Bank", "operator=FNB", "operator:wikidata=Q3072956" ] @@ -243783,15 +244128,15 @@ }, { "question": "FNBO", - "icon": "./assets/data/nsi/logos/fnbo-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fnbo-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=First National Bank of Omaha", { "or": [ "brand=FNBO", "brand:wikidata=Q5453412", + "official_name=First National Bank of Omaha", "operator=FNBO", "operator:wikidata=Q5453412" ] @@ -243801,7 +244146,7 @@ }, { "question": "ForteBank", - "icon": "./assets/data/nsi/logos/fortebank-228817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortebank-228817.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243818,18 +244163,18 @@ }, { "question": "Freedom Bank", - "icon": "./assets/data/nsi/logos/freedombank-228817.png", + "icon": "https://data.mapcomplete.org/nsi//logos/freedombank-228817.png", "osmTags": { "and": [ "amenity=atm", - "official_name:kk=«Банк Фридом Финанс Қазақстан» АҚ", - "official_name:ru=АО «Банк Фридом Финанс Казахстан»", { "or": [ "brand=Freedom Bank", "brand:wikidata=Q21843099", "name:en=Freedom Bank", "name:ru=Фридом Банк", + "official_name:kk=«Банк Фридом Финанс Қазақстан» АҚ", + "official_name:ru=АО «Банк Фридом Финанс Казахстан»", "operator=Freedom Bank", "operator:wikidata=Q21843099" ] @@ -243839,7 +244184,7 @@ }, { "question": "Frost Bank", - "icon": "./assets/data/nsi/logos/frostbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frostbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243872,7 +244217,7 @@ }, { "question": "Galicia", - "icon": "./assets/data/nsi/logos/galicia-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/galicia-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243889,7 +244234,7 @@ }, { "question": "Garanti BBVA", - "icon": "./assets/data/nsi/logos/garantibankasi-3780b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/garantibankasi-3780b1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243906,7 +244251,7 @@ }, { "question": "GCB Bank", - "icon": "./assets/data/nsi/logos/gcbbank-843442.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gcbbank-843442.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243925,7 +244270,7 @@ }, { "question": "German American", - "icon": "./assets/data/nsi/logos/germanamerican-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/germanamerican-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243942,7 +244287,7 @@ }, { "question": "Getin Bank", - "icon": "./assets/data/nsi/logos/getinbank-53bcca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/getinbank-53bcca.png", "osmTags": { "and": [ "amenity=atm", @@ -243959,7 +244304,7 @@ }, { "question": "Glarner Kantonalbank", - "icon": "./assets/data/nsi/logos/glarnerkantonalbank-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/glarnerkantonalbank-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -243977,7 +244322,7 @@ }, { "question": "Global Credit Union", - "icon": "./assets/data/nsi/logos/globalcreditunion-ce67eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globalcreditunion-ce67eb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -243994,7 +244339,7 @@ }, { "question": "GNB Sudameris", - "icon": "./assets/data/nsi/logos/gnbsudameris-850243.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gnbsudameris-850243.png", "osmTags": { "and": [ "amenity=atm", @@ -244011,7 +244356,7 @@ }, { "question": "Golden 1 Credit Union", - "icon": "./assets/data/nsi/logos/golden1creditunion-f9d961.png", + "icon": "https://data.mapcomplete.org/nsi//logos/golden1creditunion-f9d961.png", "osmTags": { "and": [ "amenity=atm", @@ -244028,7 +244373,7 @@ }, { "question": "Graubündner Kantonalbank", - "icon": "./assets/data/nsi/logos/graubundnerkantonalbank-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/graubundnerkantonalbank-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -244068,7 +244413,7 @@ }, { "question": "GreenState Credit Union", - "icon": "./assets/data/nsi/logos/greenstatecreditunion-897a9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenstatecreditunion-897a9e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244085,7 +244430,7 @@ }, { "question": "Groupama", - "icon": "./assets/data/nsi/logos/groupama-01bd3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupama-01bd3b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244102,15 +244447,15 @@ }, { "question": "GT Bank", - "icon": "./assets/data/nsi/logos/gtbank-55d972.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gtbank-55d972.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Guaranty Trust Bank", { "or": [ "brand=GT Bank", "brand:wikidata=Q579747", + "official_name=Guaranty Trust Bank", "operator=GT Bank", "operator:wikidata=Q579747" ] @@ -244120,7 +244465,7 @@ }, { "question": "Gulf Coast Bank & Trust", - "icon": "./assets/data/nsi/logos/gulfcoastbankandtrust-82e895.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gulfcoastbankandtrust-82e895.png", "osmTags": { "and": [ "amenity=atm", @@ -244137,7 +244482,7 @@ }, { "question": "Halifax", - "icon": "./assets/data/nsi/logos/halifax-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halifax-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244154,7 +244499,7 @@ }, { "question": "Halkbank", - "icon": "./assets/data/nsi/logos/halkbank-6f1d1d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/halkbank-6f1d1d.svg", "osmTags": { "and": [ "amenity=atm", @@ -244171,7 +244516,7 @@ }, { "question": "Halkbank (Србија)", - "icon": "./assets/data/nsi/logos/halkbank-4fcc55.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/halkbank-4fcc55.svg", "osmTags": { "and": [ "amenity=atm", @@ -244190,12 +244535,10 @@ }, { "question": "Halyk Bank", - "icon": "./assets/data/nsi/logos/halykbank-89b827.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halykbank-89b827.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name:kk=«Қазақстан Халық Банкі» АҚ", - "official_name:ru=АО «Народный Банк Казахстана»", "old_name=Народный банк", { "or": [ @@ -244204,6 +244547,8 @@ "name:en=Halyk Bank", "name:kk=Халық Банкі", "name:ru=Халык банк", + "official_name:kk=«Қазақстан Халық Банкі» АҚ", + "official_name:ru=АО «Народный Банк Казахстана»", "operator=Halyk Bank", "operator:wikidata=Q1046186" ] @@ -244213,7 +244558,7 @@ }, { "question": "Hamburger Sparkasse", - "icon": "./assets/data/nsi/logos/hamburgersparkasse-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamburgersparkasse-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244247,7 +244592,7 @@ }, { "question": "Hancock Whitney", - "icon": "./assets/data/nsi/logos/hancockwhitney-cfedfe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hancockwhitney-cfedfe.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244264,7 +244609,7 @@ }, { "question": "Handelsbanken", - "icon": "./assets/data/nsi/logos/handelsbanken-6789c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/handelsbanken-6789c7.png", "osmTags": { "and": [ "amenity=atm", @@ -244297,7 +244642,7 @@ }, { "question": "Hatton National Bank", - "icon": "./assets/data/nsi/logos/hattonnationalbank-960663.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hattonnationalbank-960663.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244315,7 +244660,7 @@ }, { "question": "Hawaiian First Bank", - "icon": "./assets/data/nsi/logos/hawaiianfirstbank-bc3288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiianfirstbank-bc3288.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244332,7 +244677,7 @@ }, { "question": "HBL Bank (ایچ بی ایل پاکستان)", - "icon": "./assets/data/nsi/logos/hblbank-ed31a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hblbank-ed31a6.png", "osmTags": { "and": [ "amenity=atm", @@ -244353,7 +244698,7 @@ }, { "question": "HDFC Bank", - "icon": "./assets/data/nsi/logos/hdfcbank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hdfcbank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -244371,15 +244716,15 @@ }, { "question": "Heartland Bank (Illinois)", - "icon": "./assets/data/nsi/logos/heartlandbank-09683f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heartlandbank-09683f.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Heartland Bank and Trust Company", { "or": [ "brand=Heartland Bank", "brand:wikidata=Q109870322", + "official_name=Heartland Bank and Trust Company", "operator=Heartland Bank", "operator:wikidata=Q109870322" ] @@ -244407,7 +244752,7 @@ }, { "question": "Heritage Bank (Australia)", - "icon": "./assets/data/nsi/logos/heritagebank-8509c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heritagebank-8509c1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244438,7 +244783,7 @@ }, { "question": "Heritage Bank (Kentucky)", - "icon": "./assets/data/nsi/logos/heritagebank-07627b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heritagebank-07627b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244455,7 +244800,7 @@ }, { "question": "Heritage Bank (Nigeria)", - "icon": "./assets/data/nsi/logos/heritagebank-f95bbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heritagebank-f95bbc.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244472,7 +244817,7 @@ }, { "question": "Heritage Bank (Northwest USA)", - "icon": "./assets/data/nsi/logos/heritagebank-f7c6e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heritagebank-f7c6e0.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244489,7 +244834,7 @@ }, { "question": "HNB", - "icon": "./assets/data/nsi/logos/hnb-960663.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hnb-960663.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244506,7 +244851,7 @@ }, { "question": "Home Credit Bank", - "icon": "./assets/data/nsi/logos/homecreditbank-228817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homecreditbank-228817.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244523,7 +244868,7 @@ }, { "question": "HomeStreet Bank", - "icon": "./assets/data/nsi/logos/homestreetbank-9527f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homestreetbank-9527f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244540,7 +244885,7 @@ }, { "question": "Hong Leong Bank", - "icon": "./assets/data/nsi/logos/hongleongbank-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongleongbank-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244561,7 +244906,7 @@ }, { "question": "Horizon Credit Union", - "icon": "./assets/data/nsi/logos/horizoncreditunion-e9287c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/horizoncreditunion-e9287c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244578,7 +244923,7 @@ }, { "question": "Hrvatska poštanska banka", - "icon": "./assets/data/nsi/logos/hrvatskapostanskabanka-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hrvatskapostanskabanka-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -244596,7 +244941,7 @@ }, { "question": "HSBC (Global)", - "icon": "./assets/data/nsi/logos/hsbc-e19463.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbc-e19463.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244613,7 +244958,7 @@ }, { "question": "HSBC Armenia", - "icon": "./assets/data/nsi/logos/hsbc-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbc-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244636,7 +244981,7 @@ }, { "question": "HSBC UK", - "icon": "./assets/data/nsi/logos/hsbcuk-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbcuk-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244653,7 +244998,7 @@ }, { "question": "Huntington Bank", - "icon": "./assets/data/nsi/logos/huntingtonbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntingtonbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244670,7 +245015,7 @@ }, { "question": "HypoVereinsbank", - "icon": "./assets/data/nsi/logos/hypovereinsbank-fb8bf5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hypovereinsbank-fb8bf5.png", "osmTags": { "and": [ "amenity=atm", @@ -244687,7 +245032,7 @@ }, { "question": "Ibercaja", - "icon": "./assets/data/nsi/logos/ibercaja-b48e80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ibercaja-b48e80.png", "osmTags": { "and": [ "amenity=atm", @@ -244704,7 +245049,7 @@ }, { "question": "IBK기업은행", - "icon": "./assets/data/nsi/logos/industrialbankofkorea-cfe76c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/industrialbankofkorea-cfe76c.svg", "osmTags": { "and": [ "amenity=atm", @@ -244725,7 +245070,7 @@ }, { "question": "ICBC", - "icon": "./assets/data/nsi/logos/icbc-5e71de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icbc-5e71de.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244742,7 +245087,7 @@ }, { "question": "ICICI Bank", - "icon": "./assets/data/nsi/logos/icicibank-4fa341.png", + "icon": "https://data.mapcomplete.org/nsi//logos/icicibank-4fa341.png", "osmTags": { "and": [ "amenity=atm", @@ -244760,7 +245105,7 @@ }, { "question": "ID Bank", - "icon": "./assets/data/nsi/logos/idbank-056506.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idbank-056506.png", "osmTags": { "and": [ "amenity=atm", @@ -244780,7 +245125,7 @@ }, { "question": "IDBI Bank", - "icon": "./assets/data/nsi/logos/idbibank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idbibank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244798,7 +245143,7 @@ }, { "question": "Idea Bank (România)", - "icon": "./assets/data/nsi/logos/ideabank-1de605.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ideabank-1de605.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244815,7 +245160,7 @@ }, { "question": "Idea Bank (Україна)", - "icon": "./assets/data/nsi/logos/ideabank-968b58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ideabank-968b58.png", "osmTags": { "and": [ "amenity=atm", @@ -244836,7 +245181,7 @@ }, { "question": "IDFC First Bank", - "icon": "./assets/data/nsi/logos/idfcfirstbank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idfcfirstbank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -244853,7 +245198,7 @@ }, { "question": "İktisatbank", - "icon": "./assets/data/nsi/logos/iktisatbank-a0e164.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iktisatbank-a0e164.png", "osmTags": { "and": [ "amenity=atm", @@ -244870,7 +245215,7 @@ }, { "question": "Imex banka", - "icon": "./assets/data/nsi/logos/imexbanka-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/imexbanka-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -244887,7 +245232,7 @@ }, { "question": "Inbursa", - "icon": "./assets/data/nsi/logos/inbursa-8c8932.png", + "icon": "https://data.mapcomplete.org/nsi//logos/inbursa-8c8932.png", "osmTags": { "and": [ "amenity=atm", @@ -244904,7 +245249,7 @@ }, { "question": "India Post Payments Bank", - "icon": "./assets/data/nsi/logos/indiapostpaymentsbank-ad0527.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/indiapostpaymentsbank-ad0527.svg", "osmTags": { "and": [ "amenity=atm", @@ -244925,7 +245270,7 @@ }, { "question": "Indian Bank", - "icon": "./assets/data/nsi/logos/indianbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244942,7 +245287,7 @@ }, { "question": "Indian Overseas Bank", - "icon": "./assets/data/nsi/logos/indianoverseasbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianoverseasbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244959,7 +245304,7 @@ }, { "question": "IndusInd Bank", - "icon": "./assets/data/nsi/logos/indusindbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indusindbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244976,7 +245321,7 @@ }, { "question": "Inecobank", - "icon": "./assets/data/nsi/logos/inecobank-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inecobank-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -244999,7 +245344,7 @@ }, { "question": "ING", - "icon": "./assets/data/nsi/logos/ing-83b186.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ing-83b186.png", "osmTags": { "and": [ "amenity=atm", @@ -245016,7 +245361,7 @@ }, { "question": "ING Bank Śląski", - "icon": "./assets/data/nsi/logos/ingbankslaski-53bcca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ingbankslaski-53bcca.png", "osmTags": { "and": [ "amenity=atm", @@ -245033,7 +245378,7 @@ }, { "question": "Interbank (Perú)", - "icon": "./assets/data/nsi/logos/interbank-98e68c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/interbank-98e68c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245050,7 +245395,7 @@ }, { "question": "InterBank (USA)", - "icon": "./assets/data/nsi/logos/interbank-674035.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/interbank-674035.svg", "osmTags": { "and": [ "amenity=atm", @@ -245067,7 +245412,7 @@ }, { "question": "International Asset Bank", - "icon": "./assets/data/nsi/logos/internationalassetbank-e5108a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/internationalassetbank-e5108a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245084,7 +245429,7 @@ }, { "question": "Intesa Sanpaolo", - "icon": "./assets/data/nsi/logos/intesasanpaolo-f49ff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/intesasanpaolo-f49ff1.png", "osmTags": { "and": [ "amenity=atm", @@ -245117,7 +245462,7 @@ }, { "question": "Ipak Yoʻli banki", - "icon": "./assets/data/nsi/logos/db7b15-184f05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/db7b15-184f05.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245134,7 +245479,7 @@ }, { "question": "Iran Zamin Bank", - "icon": "./assets/data/nsi/logos/iranzaminbank-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iranzaminbank-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245155,7 +245500,7 @@ }, { "question": "İşbank", - "icon": "./assets/data/nsi/logos/isbank-ceff81.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/isbank-ceff81.svg", "osmTags": { "and": [ "amenity=atm", @@ -245172,7 +245517,7 @@ }, { "question": "Istarska kreditna banka Umag", - "icon": "./assets/data/nsi/logos/istarskakreditnabankaumag-4d8c03.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/istarskakreditnabankaumag-4d8c03.svg", "osmTags": { "and": [ "amenity=atm", @@ -245189,7 +245534,7 @@ }, { "question": "Itaú", - "icon": "./assets/data/nsi/logos/itauunibanco-bbb1a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itauunibanco-bbb1a4.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245206,7 +245551,7 @@ }, { "question": "Itaú Corpbanca", - "icon": "./assets/data/nsi/logos/itaucorpbanca-2999f5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itaucorpbanca-2999f5.svg", "osmTags": { "and": [ "amenity=atm", @@ -245223,7 +245568,7 @@ }, { "question": "J&T Banka", - "icon": "./assets/data/nsi/logos/jandtbanka-9a90af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jandtbanka-9a90af.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245256,7 +245601,7 @@ }, { "question": "Jana Small Finance Bank", - "icon": "./assets/data/nsi/logos/janasmallfinancebank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/janasmallfinancebank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245273,7 +245618,7 @@ }, { "question": "JAバンク", - "icon": "./assets/data/nsi/logos/jabank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jabank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -245295,7 +245640,7 @@ }, { "question": "Jusan", - "icon": "./assets/data/nsi/logos/jusan-228817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jusan-228817.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245312,7 +245657,7 @@ }, { "question": "Jyske Bank", - "icon": "./assets/data/nsi/logos/jyskebank-198cfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jyskebank-198cfd.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245329,7 +245674,7 @@ }, { "question": "K&H Bank", - "icon": "./assets/data/nsi/logos/kandhbank-681c6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kandhbank-681c6d.png", "osmTags": { "and": [ "amenity=atm", @@ -245346,7 +245691,7 @@ }, { "question": "Karafarin Bank", - "icon": "./assets/data/nsi/logos/karafarinbank-243651.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/karafarinbank-243651.svg", "osmTags": { "and": [ "amenity=atm", @@ -245367,7 +245712,7 @@ }, { "question": "Karlovačka banka", - "icon": "./assets/data/nsi/logos/karlovackabanka-4d8c03.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlovackabanka-4d8c03.svg", "osmTags": { "and": [ "amenity=atm", @@ -245384,7 +245729,7 @@ }, { "question": "Karnataka Bank", - "icon": "./assets/data/nsi/logos/karnatakabank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karnatakabank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245401,7 +245746,7 @@ }, { "question": "Karnataka Gramin Bank", - "icon": "./assets/data/nsi/logos/karnatakagraminbank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/karnatakagraminbank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -245418,7 +245763,7 @@ }, { "question": "Karnataka Vikas Grameena Bank", - "icon": "./assets/data/nsi/logos/karnatakavikasgrameenabank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karnatakavikasgrameenabank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245436,7 +245781,7 @@ }, { "question": "Karur Vysya Bank", - "icon": "./assets/data/nsi/logos/karurvysyabank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/karurvysyabank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -245453,7 +245798,7 @@ }, { "question": "Kasa Stefczyka", - "icon": "./assets/data/nsi/logos/kasastefczyka-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kasastefczyka-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245486,7 +245831,7 @@ }, { "question": "KBC", - "icon": "./assets/data/nsi/logos/kbc-a224e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kbc-a224e8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245503,7 +245848,7 @@ }, { "question": "KBZ Bank", - "icon": "./assets/data/nsi/logos/kbzbank-4d84db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kbzbank-4d84db.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245520,7 +245865,7 @@ }, { "question": "KB국민은행", - "icon": "./assets/data/nsi/logos/kbkookminbank-cfe76c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kbkookminbank-cfe76c.png", "osmTags": { "and": [ "amenity=atm", @@ -245541,7 +245886,7 @@ }, { "question": "KentBank", - "icon": "./assets/data/nsi/logos/kentbank-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentbank-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -245558,7 +245903,7 @@ }, { "question": "Kerala Gramin Bank", - "icon": "./assets/data/nsi/logos/keralagraminbank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keralagraminbank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -245575,7 +245920,7 @@ }, { "question": "KeyBank", - "icon": "./assets/data/nsi/logos/keybank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keybank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -245592,7 +245937,7 @@ }, { "question": "Kiwibank", - "icon": "./assets/data/nsi/logos/kiwibank-6bd214.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiwibank-6bd214.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245609,7 +245954,7 @@ }, { "question": "Komercijalna banka", - "icon": "./assets/data/nsi/logos/komercijalnabanka-afa18c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komercijalnabanka-afa18c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245626,7 +245971,7 @@ }, { "question": "Komerční banka", - "icon": "./assets/data/nsi/logos/komercnibanka-767782.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komercnibanka-767782.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245643,7 +245988,7 @@ }, { "question": "Koopbank", - "icon": "./assets/data/nsi/logos/koopbank-a0e164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koopbank-a0e164.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245660,7 +246005,7 @@ }, { "question": "Kotak Mahindra Bank", - "icon": "./assets/data/nsi/logos/kotakmahindrabank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kotakmahindrabank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -245693,7 +246038,7 @@ }, { "question": "KredoBank", - "icon": "./assets/data/nsi/logos/kredobank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kredobank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245730,7 +246075,7 @@ }, { "question": "Kutxabank", - "icon": "./assets/data/nsi/logos/kutxabank-b48e80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kutxabank-b48e80.png", "osmTags": { "and": [ "amenity=atm", @@ -245747,7 +246092,7 @@ }, { "question": "Kuveyt Türk", - "icon": "./assets/data/nsi/logos/kuveytturk-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuveytturk-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245764,7 +246109,7 @@ }, { "question": "La Banque Postale", - "icon": "./assets/data/nsi/logos/labanquepostale-134295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/labanquepostale-134295.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245781,7 +246126,7 @@ }, { "question": "La Caixa", - "icon": "./assets/data/nsi/logos/lacaixa-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacaixa-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245798,7 +246143,7 @@ }, { "question": "Laboral Kutxa", - "icon": "./assets/data/nsi/logos/laboralkutxa-b48e80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laboralkutxa-b48e80.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245815,7 +246160,7 @@ }, { "question": "Lake Michigan Credit Union", - "icon": "./assets/data/nsi/logos/lakemichigancreditunion-95c887.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lakemichigancreditunion-95c887.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245833,7 +246178,7 @@ }, { "question": "Landbank", - "icon": "./assets/data/nsi/logos/landbank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landbank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245850,7 +246195,7 @@ }, { "question": "Landmark Credit Union (Wisconsin)", - "icon": "./assets/data/nsi/logos/landmarkcreditunion-2d3cec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landmarkcreditunion-2d3cec.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245867,7 +246212,7 @@ }, { "question": "LBS", - "icon": "./assets/data/nsi/logos/lbs-fb8bf5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lbs-fb8bf5.svg", "osmTags": { "and": [ "amenity=atm", @@ -245884,7 +246229,7 @@ }, { "question": "LCL", - "icon": "./assets/data/nsi/logos/lcl-134295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lcl-134295.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245901,16 +246246,16 @@ }, { "question": "LCNB", - "icon": "./assets/data/nsi/logos/lcnb-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lcnb-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=LCNB National Bank", { "or": [ "alt_name=Lebanon Citizens National Bank", "brand=LCNB", "brand:wikidata=Q65095575", + "official_name=LCNB National Bank", "operator=LCNB", "operator:wikidata=Q65095575" ] @@ -245920,7 +246265,7 @@ }, { "question": "Leeds Building Society", - "icon": "./assets/data/nsi/logos/leedsbuildingsociety-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leedsbuildingsociety-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245937,7 +246282,7 @@ }, { "question": "Liberbank", - "icon": "./assets/data/nsi/logos/liberbank-b48e80.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/liberbank-b48e80.svg", "osmTags": { "and": [ "amenity=atm", @@ -245954,7 +246299,7 @@ }, { "question": "Liberty Bank (Connecticut)", - "icon": "./assets/data/nsi/logos/libertybank-7bb27b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libertybank-7bb27b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -245971,7 +246316,7 @@ }, { "question": "Lighthouse Credit Union", - "icon": "./assets/data/nsi/logos/lighthousecreditunion-e19454.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lighthousecreditunion-e19454.svg", "osmTags": { "and": [ "amenity=atm", @@ -245988,7 +246333,7 @@ }, { "question": "Limasol Türk Kooperatif Bankası", - "icon": "./assets/data/nsi/logos/limasolturkkooperatifbankasi-a0e164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/limasolturkkooperatifbankasi-a0e164.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246005,7 +246350,7 @@ }, { "question": "Lloyds Bank", - "icon": "./assets/data/nsi/logos/lloydsbank-119e30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lloydsbank-119e30.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246022,7 +246367,7 @@ }, { "question": "Luminor Bank", - "icon": "./assets/data/nsi/logos/luminorbank-82bd77.png", + "icon": "https://data.mapcomplete.org/nsi//logos/luminorbank-82bd77.png", "osmTags": { "and": [ "amenity=atm", @@ -246039,7 +246384,7 @@ }, { "question": "Luzerner Kantonalbank", - "icon": "./assets/data/nsi/logos/luzernerkantonalbank-ba97f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luzernerkantonalbank-ba97f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246057,7 +246402,7 @@ }, { "question": "M&T Bank", - "icon": "./assets/data/nsi/logos/mandtbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandtbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246074,7 +246419,7 @@ }, { "question": "Macro", - "icon": "./assets/data/nsi/logos/macro-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macro-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246091,7 +246436,7 @@ }, { "question": "Madhyanchal Gramin Bank", - "icon": "./assets/data/nsi/logos/madhyanchalgraminbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madhyanchalgraminbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246132,7 +246477,7 @@ }, { "question": "Marine Credit Union (Wisconsin)", - "icon": "./assets/data/nsi/logos/marinecreditunion-2d3cec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marinecreditunion-2d3cec.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246149,7 +246494,7 @@ }, { "question": "Mashreq", - "icon": "./assets/data/nsi/logos/mashreq-878fb9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mashreq-878fb9.png", "osmTags": { "and": [ "amenity=atm", @@ -246168,7 +246513,7 @@ }, { "question": "Maybank", - "icon": "./assets/data/nsi/logos/maybank-2f6feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maybank-2f6feb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246185,7 +246530,7 @@ }, { "question": "mBank (Europe)", - "icon": "./assets/data/nsi/logos/mbank-ede12f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mbank-ede12f.png", "osmTags": { "and": [ "amenity=atm", @@ -246202,7 +246547,7 @@ }, { "question": "MBH Bank", - "icon": "./assets/data/nsi/logos/mbhbank-681c6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mbhbank-681c6d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246219,7 +246564,7 @@ }, { "question": "MCB (Caribbean)", - "icon": "./assets/data/nsi/logos/mcb-4d5a9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcb-4d5a9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246250,7 +246595,7 @@ }, { "question": "MCB (Pakistan)", - "icon": "./assets/data/nsi/logos/mcb-a8db09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcb-a8db09.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246271,7 +246616,7 @@ }, { "question": "Meezan Bank (میزان بینک)", - "icon": "./assets/data/nsi/logos/meezanbank-ed31a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meezanbank-ed31a6.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246330,7 +246675,7 @@ }, { "question": "Meridian Credit Union", - "icon": "./assets/data/nsi/logos/meridiancreditunion-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meridiancreditunion-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246348,7 +246693,7 @@ }, { "question": "Metairie Bank", - "icon": "./assets/data/nsi/logos/metairiebank-82e895.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metairiebank-82e895.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246365,7 +246710,7 @@ }, { "question": "Metro Bank (UK)", - "icon": "./assets/data/nsi/logos/metrobank-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrobank-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246382,7 +246727,7 @@ }, { "question": "Metrobank (Philippines)", - "icon": "./assets/data/nsi/logos/metrobank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrobank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246399,7 +246744,7 @@ }, { "question": "MG새마을금고", - "icon": "./assets/data/nsi/logos/219d89-cfe76c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/219d89-cfe76c.png", "osmTags": { "and": [ "amenity=atm", @@ -246418,7 +246763,7 @@ }, { "question": "Mibanco", - "icon": "./assets/data/nsi/logos/mibanco-98e68c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mibanco-98e68c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246435,7 +246780,7 @@ }, { "question": "MidFirst Bank", - "icon": "./assets/data/nsi/logos/midfirstbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midfirstbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246452,7 +246797,7 @@ }, { "question": "Migros Bank", - "icon": "./assets/data/nsi/logos/migrosbank-ba97f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/migrosbank-ba97f3.png", "osmTags": { "and": [ "amenity=atm", @@ -246475,7 +246820,7 @@ }, { "question": "Millennium Bank", - "icon": "./assets/data/nsi/logos/millenniumbank-53bcca.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/millenniumbank-53bcca.svg", "osmTags": { "and": [ "amenity=atm", @@ -246492,15 +246837,15 @@ }, { "question": "Millennium bcp", - "icon": "./assets/data/nsi/logos/millenniumbcp-9411e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/millenniumbcp-9411e1.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Comercial Português", { "or": [ "brand=Millennium bcp", "brand:wikidata=Q118581", + "official_name=Banco Comercial Português", "operator=Millennium bcp", "operator:wikidata=Q118581" ] @@ -246510,7 +246855,7 @@ }, { "question": "Mission Federal Credit Union", - "icon": "./assets/data/nsi/logos/missionfederalcreditunion-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missionfederalcreditunion-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246527,7 +246872,7 @@ }, { "question": "Mittelbrandenburgische Sparkasse", - "icon": "./assets/data/nsi/logos/mittelbrandenburgischesparkasse-fb8bf5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mittelbrandenburgischesparkasse-fb8bf5.png", "osmTags": { "and": [ "amenity=atm", @@ -246544,7 +246889,7 @@ }, { "question": "Mizoram Rural Bank", - "icon": "./assets/data/nsi/logos/mizoramruralbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mizoramruralbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246561,7 +246906,7 @@ }, { "question": "MKB Bank", - "icon": "./assets/data/nsi/logos/mkbbank-681c6d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mkbbank-681c6d.svg", "osmTags": { "and": [ "amenity=atm", @@ -246578,7 +246923,7 @@ }, { "question": "Moldindconbank", - "icon": "./assets/data/nsi/logos/moldindconbank-7a75e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moldindconbank-7a75e5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246595,7 +246940,7 @@ }, { "question": "Moldova Agroindbank", - "icon": "./assets/data/nsi/logos/moldovaagroindbank-7a75e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moldovaagroindbank-7a75e5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246612,7 +246957,7 @@ }, { "question": "MONETA Money Bank", - "icon": "./assets/data/nsi/logos/monetamoneybank-767782.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/monetamoneybank-767782.svg", "osmTags": { "and": [ "amenity=atm", @@ -246629,7 +246974,7 @@ }, { "question": "Monte dei Paschi di Siena", - "icon": "./assets/data/nsi/logos/montedeipaschidisiena-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montedeipaschidisiena-64483a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246646,7 +246991,7 @@ }, { "question": "Montepio", - "icon": "./assets/data/nsi/logos/montepio-9411e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/montepio-9411e1.png", "osmTags": { "and": [ "amenity=atm", @@ -246663,7 +247008,7 @@ }, { "question": "Mountain America Credit Union", - "icon": "./assets/data/nsi/logos/mountainamericacreditunion-35eca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mountainamericacreditunion-35eca1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246680,7 +247025,7 @@ }, { "question": "MTB Bank", - "icon": "./assets/data/nsi/logos/mtbbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtbbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246701,7 +247046,7 @@ }, { "question": "NAB", - "icon": "./assets/data/nsi/logos/nab-8509c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nab-8509c1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246734,7 +247079,7 @@ }, { "question": "NASA Federal Credit Union", - "icon": "./assets/data/nsi/logos/nasafederalcreditunion-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nasafederalcreditunion-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -246751,13 +247096,10 @@ }, { "question": "National Bank (Canada)", - "icon": "./assets/data/nsi/logos/nationalbank-53b5c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbank-53b5c4.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=National Bank of Canada", - "official_name:en=National Bank of Canada", - "official_name:fr=Banque Nationale du Canada", { "or": [ "brand=National Bank", @@ -246766,6 +247108,9 @@ "brand:wikidata=Q634298", "name:en=National Bank", "name:fr=Banque Nationale", + "official_name=National Bank of Canada", + "official_name:en=National Bank of Canada", + "official_name:fr=Banque Nationale du Canada", "operator=National Bank", "operator:wikidata=Q634298" ] @@ -246775,7 +247120,7 @@ }, { "question": "National Investment Bank (Ghana)", - "icon": "./assets/data/nsi/logos/nationalinvestmentbank-843442.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalinvestmentbank-843442.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246794,7 +247139,7 @@ }, { "question": "Nationwide", - "icon": "./assets/data/nsi/logos/nationwide-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationwide-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246811,7 +247156,7 @@ }, { "question": "NatWest", - "icon": "./assets/data/nsi/logos/natwest-8cfc37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/natwest-8cfc37.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246828,7 +247173,7 @@ }, { "question": "Navy Federal Credit Union", - "icon": "./assets/data/nsi/logos/navyfederalcreditunion-2f6feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/navyfederalcreditunion-2f6feb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246845,7 +247190,7 @@ }, { "question": "NBT Bank", - "icon": "./assets/data/nsi/logos/nbtbank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nbtbank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -246862,7 +247207,7 @@ }, { "question": "Near East Bank", - "icon": "./assets/data/nsi/logos/neareastbank-a0e164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neareastbank-a0e164.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246879,7 +247224,7 @@ }, { "question": "Nedbank", - "icon": "./assets/data/nsi/logos/nedbank-2f6feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nedbank-2f6feb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246896,7 +247241,7 @@ }, { "question": "Nest Bank", - "icon": "./assets/data/nsi/logos/nestbank-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nestbank-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246913,7 +247258,7 @@ }, { "question": "NH농협은행", - "icon": "./assets/data/nsi/logos/nhbank-cfe76c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nhbank-cfe76c.png", "osmTags": { "and": [ "amenity=atm", @@ -246934,7 +247279,7 @@ }, { "question": "Nicolet National Bank", - "icon": "./assets/data/nsi/logos/nicoletnationalbank-54f474.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nicoletnationalbank-54f474.png", "osmTags": { "and": [ "amenity=atm", @@ -246951,7 +247296,7 @@ }, { "question": "Nidwaldner Kantonalbank", - "icon": "./assets/data/nsi/logos/nidwaldnerkantonalbank-ba97f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nidwaldnerkantonalbank-ba97f3.png", "osmTags": { "and": [ "amenity=atm", @@ -246969,7 +247314,7 @@ }, { "question": "NLB", - "icon": "./assets/data/nsi/logos/nlb-3c4621.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nlb-3c4621.jpg", "osmTags": { "and": [ "amenity=atm", @@ -246986,7 +247331,7 @@ }, { "question": "NMB Bank (Nepal)", - "icon": "./assets/data/nsi/logos/nmbbank-1b6814.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nmbbank-1b6814.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247004,7 +247349,7 @@ }, { "question": "NMB Bank (Tanzania)", - "icon": "./assets/data/nsi/logos/nmbbank-14cdb2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nmbbank-14cdb2.png", "osmTags": { "and": [ "amenity=atm", @@ -247022,7 +247367,7 @@ }, { "question": "NMB Bank (Zimbabwe)", - "icon": "./assets/data/nsi/logos/nmbbank-7adf11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nmbbank-7adf11.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247040,7 +247385,7 @@ }, { "question": "Nord-Ostsee Sparkasse", - "icon": "./assets/data/nsi/logos/nordostseesparkasse-54c314.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordostseesparkasse-54c314.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247057,7 +247402,7 @@ }, { "question": "Nordea", - "icon": "./assets/data/nsi/logos/nordea-b6011c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nordea-b6011c.png", "osmTags": { "and": [ "amenity=atm", @@ -247074,7 +247419,7 @@ }, { "question": "Northwest Bank", - "icon": "./assets/data/nsi/logos/northwestbank-dd05cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestbank-dd05cf.png", "osmTags": { "and": [ "amenity=atm", @@ -247107,7 +247452,7 @@ }, { "question": "Novo Banco", - "icon": "./assets/data/nsi/logos/novobanco-3f27ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novobanco-3f27ef.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247124,7 +247469,7 @@ }, { "question": "NSB", - "icon": "./assets/data/nsi/logos/nsb-960663.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nsb-960663.png", "osmTags": { "and": [ "amenity=atm", @@ -247141,14 +247486,10 @@ }, { "question": "Nurbank", - "icon": "./assets/data/nsi/logos/nurbank-228817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nurbank-228817.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Nurbank JSC", - "official_name:en=Nurbank JSC", - "official_name:kk=«Нұрбанк» АҚ", - "official_name:ru=АО «Нурбанк»", { "or": [ "brand=Nurbank", @@ -247156,6 +247497,10 @@ "name:en=Nurbank", "name:kk=Нурбанк", "name:ru=Нурбанк", + "official_name=Nurbank JSC", + "official_name:en=Nurbank JSC", + "official_name:kk=«Нұрбанк» АҚ", + "official_name:ru=АО «Нурбанк»", "operator=Nurbank", "operator:wikidata=Q1638772" ] @@ -247165,7 +247510,7 @@ }, { "question": "Nusenda", - "icon": "./assets/data/nsi/logos/nusenda-78b862.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nusenda-78b862.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247183,7 +247528,7 @@ }, { "question": "Oberbank", - "icon": "./assets/data/nsi/logos/oberbank-54e4c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oberbank-54e4c0.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247200,7 +247545,7 @@ }, { "question": "Obwaldner Kantonalbank", - "icon": "./assets/data/nsi/logos/obwaldnerkantonalbank-ba97f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obwaldnerkantonalbank-ba97f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247218,15 +247563,15 @@ }, { "question": "OCBC (Indonesia)", - "icon": "./assets/data/nsi/logos/ocbc-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocbc-16476e.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Bank OCBC NISP", { "or": [ "brand=OCBC", "brand:wikidata=Q19724214", + "official_name=Bank OCBC NISP", "operator=OCBC", "operator:wikidata=Q19724214" ] @@ -247236,7 +247581,7 @@ }, { "question": "OCBC Bank (Malaysia/Singapore)", - "icon": "./assets/data/nsi/logos/ocbcbank-2b05e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocbcbank-2b05e9.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247257,7 +247602,7 @@ }, { "question": "Occidental de Descuento", - "icon": "./assets/data/nsi/logos/occidentaldedescuento-f50cd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/occidentaldedescuento-f50cd1.png", "osmTags": { "and": [ "amenity=atm", @@ -247274,7 +247619,7 @@ }, { "question": "OCCU", - "icon": "./assets/data/nsi/logos/occu-50220c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/occu-50220c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247292,7 +247637,7 @@ }, { "question": "Odeabank", - "icon": "./assets/data/nsi/logos/odeabank-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/odeabank-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247309,7 +247654,7 @@ }, { "question": "Odisha Gramya Bank", - "icon": "./assets/data/nsi/logos/odishagramyabank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/odishagramyabank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -247330,7 +247675,7 @@ }, { "question": "Oʻzsanoatqurilishbank", - "icon": "./assets/data/nsi/logos/7e41fb-184f05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7e41fb-184f05.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247348,7 +247693,7 @@ }, { "question": "Old National Bank", - "icon": "./assets/data/nsi/logos/oldnationalbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldnationalbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247365,7 +247710,7 @@ }, { "question": "Old Second National Bank", - "icon": "./assets/data/nsi/logos/oldsecondnationalbank-09683f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldsecondnationalbank-09683f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247382,7 +247727,7 @@ }, { "question": "Oldenburgische Landesbank", - "icon": "./assets/data/nsi/logos/oldenburgischelandesbank-fb8bf5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oldenburgischelandesbank-fb8bf5.png", "osmTags": { "and": [ "amenity=atm", @@ -247417,7 +247762,7 @@ }, { "question": "OnPoint", - "icon": "./assets/data/nsi/logos/onpoint-686806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onpoint-686806.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247465,7 +247810,7 @@ }, { "question": "Oriental", - "icon": "./assets/data/nsi/logos/oriental-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oriental-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247483,7 +247828,7 @@ }, { "question": "Oriental Bank of Commerce", - "icon": "./assets/data/nsi/logos/orientalbankofcommerce-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orientalbankofcommerce-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247500,7 +247845,7 @@ }, { "question": "Osuuspankki", - "icon": "./assets/data/nsi/logos/osuuspankki-6eeb13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/osuuspankki-6eeb13.png", "osmTags": { "and": [ "amenity=atm", @@ -247517,7 +247862,7 @@ }, { "question": "OTP Bank", - "icon": "./assets/data/nsi/logos/otpbank-52756a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbank-52756a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247535,7 +247880,7 @@ }, { "question": "OTP Bank (Україна)", - "icon": "./assets/data/nsi/logos/otpbank-968b58.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbank-968b58.svg", "osmTags": { "and": [ "amenity=atm", @@ -247556,7 +247901,7 @@ }, { "question": "OTP banka (Hrvatska)", - "icon": "./assets/data/nsi/logos/otpbanka-4d8c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbanka-4d8c03.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247573,7 +247918,7 @@ }, { "question": "OTP banka (Србија)", - "icon": "./assets/data/nsi/logos/otpbank-4fcc55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbank-4fcc55.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247593,7 +247938,7 @@ }, { "question": "Panin Bank", - "icon": "./assets/data/nsi/logos/paninbank-16476e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paninbank-16476e.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247610,7 +247955,7 @@ }, { "question": "Partner banka", - "icon": "./assets/data/nsi/logos/partnerbanka-4d8c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/partnerbanka-4d8c03.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247627,7 +247972,7 @@ }, { "question": "PBCom", - "icon": "./assets/data/nsi/logos/pbcom-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pbcom-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247644,15 +247989,15 @@ }, { "question": "PC Financial", - "icon": "./assets/data/nsi/logos/pcfinancial-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pcfinancial-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=President's Choice Financial", { "or": [ "brand=PC Financial", "brand:wikidata=Q7241126", + "official_name=President's Choice Financial", "operator=PC Financial", "operator:wikidata=Q7241126" ] @@ -247662,7 +248007,7 @@ }, { "question": "PenFed Credit Union", - "icon": "./assets/data/nsi/logos/penfedcreditunion-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penfedcreditunion-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247681,7 +248026,7 @@ }, { "question": "Pennsylvania State Employees Credit Union", - "icon": "./assets/data/nsi/logos/psecu-17cbf7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/psecu-17cbf7.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247699,7 +248044,7 @@ }, { "question": "People's United Bank", - "icon": "./assets/data/nsi/logos/peoplesunitedbank-7bb27b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peoplesunitedbank-7bb27b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247719,10 +248064,10 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Peoples Bank of Kentucky", { "or": [ "brand=Peoples Bank", + "official_name=Peoples Bank of Kentucky", "operator=Peoples Bank" ] } @@ -247747,7 +248092,7 @@ }, { "question": "Peoples Bank (Washington)", - "icon": "./assets/data/nsi/logos/peoplesbank-bc6619.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peoplesbank-bc6619.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247764,7 +248109,7 @@ }, { "question": "Permanent TSB", - "icon": "./assets/data/nsi/logos/permanenttsb-7aac0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/permanenttsb-7aac0a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247781,7 +248126,7 @@ }, { "question": "Philippine Business Bank", - "icon": "./assets/data/nsi/logos/philippinebusinessbank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/philippinebusinessbank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247798,7 +248143,7 @@ }, { "question": "Pinnacle Bank (Midwest & Southwest USA)", - "icon": "./assets/data/nsi/logos/pinnaclebank-495a05.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pinnaclebank-495a05.png", "osmTags": { "and": [ "amenity=atm", @@ -247818,11 +248163,11 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Pinnacle Financial Partners", { "or": [ "brand=Pinnacle Bank", "brand:wikidata=Q7196294", + "official_name=Pinnacle Financial Partners", "operator=Pinnacle Bank", "operator:wikidata=Q7196294" ] @@ -247832,7 +248177,7 @@ }, { "question": "Piraeus Bank (Україна)", - "icon": "./assets/data/nsi/logos/piraeusbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piraeusbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247853,7 +248198,7 @@ }, { "question": "PKO BP", - "icon": "./assets/data/nsi/logos/pkobp-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pkobp-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247886,15 +248231,15 @@ }, { "question": "PNB", - "icon": "./assets/data/nsi/logos/pnb-f377ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pnb-f377ee.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Philippine National Bank", { "or": [ "brand=PNB", "brand:wikidata=Q1657971", + "official_name=Philippine National Bank", "operator=PNB", "operator:wikidata=Q1657971" ] @@ -247904,7 +248249,7 @@ }, { "question": "PNC Bank", - "icon": "./assets/data/nsi/logos/pncbank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pncbank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -247921,7 +248266,7 @@ }, { "question": "Podravska banka", - "icon": "./assets/data/nsi/logos/podravskabanka-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/podravskabanka-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -247938,17 +248283,17 @@ }, { "question": "Popular", - "icon": "./assets/data/nsi/logos/popular-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popular-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Banco Popular de Puerto Rico", "short_name=BPPR", { "or": [ "alt_name=Banco Popular", "brand=Popular", "brand:wikidata=Q7229656", + "official_name=Banco Popular de Puerto Rico", "operator=Popular", "operator:wikidata=Q7229656" ] @@ -247958,7 +248303,7 @@ }, { "question": "Poštanska štedionica", - "icon": "./assets/data/nsi/logos/postanskastedionica-4fcc55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postanskastedionica-4fcc55.png", "osmTags": { "and": [ "amenity=atm", @@ -247981,7 +248326,7 @@ }, { "question": "Postbank (Deutschland)", - "icon": "./assets/data/nsi/logos/postbank-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postbank-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -247998,7 +248343,7 @@ }, { "question": "Poštová banka", - "icon": "./assets/data/nsi/logos/postovabanka-6843ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postovabanka-6843ee.png", "osmTags": { "and": [ "amenity=atm", @@ -248045,7 +248390,7 @@ }, { "question": "Prima banka", - "icon": "./assets/data/nsi/logos/primabanka-6843ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/primabanka-6843ee.png", "osmTags": { "and": [ "amenity=atm", @@ -248062,7 +248407,7 @@ }, { "question": "Privatbanka", - "icon": "./assets/data/nsi/logos/privatbanka-6843ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/privatbanka-6843ee.png", "osmTags": { "and": [ "amenity=atm", @@ -248079,7 +248424,7 @@ }, { "question": "Privredna banka Zagreb", - "icon": "./assets/data/nsi/logos/privrednabankazagreb-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/privrednabankazagreb-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -248097,7 +248442,7 @@ }, { "question": "ProCredit Bank", - "icon": "./assets/data/nsi/logos/procreditbank-5cd6db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-5cd6db.png", "osmTags": { "and": [ "amenity=atm", @@ -248114,7 +248459,7 @@ }, { "question": "ProCredit Bank (Северна Македонија)", - "icon": "./assets/data/nsi/logos/procreditbank-32e64b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-32e64b.png", "osmTags": { "and": [ "amenity=atm", @@ -248133,7 +248478,7 @@ }, { "question": "ProCredit Bank (Україна)", - "icon": "./assets/data/nsi/logos/procreditbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248154,7 +248499,7 @@ }, { "question": "ProCredit banka (Србија)", - "icon": "./assets/data/nsi/logos/procreditbank-4fcc55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-4fcc55.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248174,7 +248519,7 @@ }, { "question": "Produbanco", - "icon": "./assets/data/nsi/logos/produbanco-67d8b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/produbanco-67d8b6.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248191,7 +248536,7 @@ }, { "question": "Producers Bank", - "icon": "./assets/data/nsi/logos/producersbank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/producersbank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248222,7 +248567,7 @@ }, { "question": "Prosperity Bank", - "icon": "./assets/data/nsi/logos/prosperitybank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prosperitybank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248239,7 +248584,7 @@ }, { "question": "Provident Bank", - "icon": "./assets/data/nsi/logos/providentbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/providentbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248273,7 +248618,7 @@ }, { "question": "Prvá stavebná sporiteľňa", - "icon": "./assets/data/nsi/logos/prvastavebnasporitelna-6843ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prvastavebnasporitelna-6843ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248290,7 +248635,7 @@ }, { "question": "PSBank", - "icon": "./assets/data/nsi/logos/psbank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/psbank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248307,7 +248652,7 @@ }, { "question": "Public Bank (Malaysia)", - "icon": "./assets/data/nsi/logos/publicbank-bc168a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicbank-bc168a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248328,7 +248673,7 @@ }, { "question": "Puduvai Bharathiar Grama Bank", - "icon": "./assets/data/nsi/logos/puduvaibharathiargramabank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puduvaibharathiargramabank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248345,7 +248690,7 @@ }, { "question": "Punjab & Sind Bank", - "icon": "./assets/data/nsi/logos/punjabandsindbank-ad0527.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/punjabandsindbank-ad0527.svg", "osmTags": { "and": [ "amenity=atm", @@ -248366,7 +248711,7 @@ }, { "question": "Punjab National Bank", - "icon": "./assets/data/nsi/logos/punjabnationalbank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/punjabnationalbank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -248383,7 +248728,7 @@ }, { "question": "QNB Finansbank", - "icon": "./assets/data/nsi/logos/qnbfinansbank-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qnbfinansbank-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248400,7 +248745,7 @@ }, { "question": "Rabobank", - "icon": "./assets/data/nsi/logos/rabobank-f970f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rabobank-f970f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248417,7 +248762,7 @@ }, { "question": "Raiffeisen (Luxembourg)", - "icon": "./assets/data/nsi/logos/raiffeisen-8c9eca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisen-8c9eca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248434,7 +248779,7 @@ }, { "question": "Raiffeisen (Schweiz)", - "icon": "./assets/data/nsi/logos/raiffeisen-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisen-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -248451,7 +248796,7 @@ }, { "question": "Raiffeisen bank (Hrvatska)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -248468,7 +248813,7 @@ }, { "question": "Raiffeisen Bank (Magyarország)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-681c6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-681c6d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248485,7 +248830,7 @@ }, { "question": "Raiffeisen Bank (Österreich)", - "icon": "./assets/data/nsi/logos/raiffeisen-fc110f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisen-fc110f.svg", "osmTags": { "and": [ "amenity=atm", @@ -248502,7 +248847,7 @@ }, { "question": "Raiffeisen Bank (România)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-1de605.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-1de605.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248519,7 +248864,7 @@ }, { "question": "Raiffeisen Bank (Shqipëri)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-038d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-038d28.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248536,7 +248881,7 @@ }, { "question": "Raiffeisen Bank (Україна)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248559,7 +248904,7 @@ }, { "question": "Raiffeisen Bank Polska", - "icon": "./assets/data/nsi/logos/raiffeisenbankpolska-53bcca.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbankpolska-53bcca.svg", "osmTags": { "and": [ "amenity=atm", @@ -248576,7 +248921,7 @@ }, { "question": "Raiffeisen banka Slovensko", - "icon": "./assets/data/nsi/logos/raiffeisenbanka-6843ee.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbanka-6843ee.svg", "osmTags": { "and": [ "amenity=atm", @@ -248593,7 +248938,7 @@ }, { "question": "Raiffeisen banka Srbije", - "icon": "./assets/data/nsi/logos/raiffeisenbank-4fcc55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-4fcc55.png", "osmTags": { "and": [ "amenity=atm", @@ -248610,7 +248955,7 @@ }, { "question": "Raiffeisenbank (Česko)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-767782.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-767782.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248627,7 +248972,7 @@ }, { "question": "Raiffeisenkasse (Südtirol)", - "icon": "./assets/data/nsi/logos/raiffeisen-64483a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisen-64483a.svg", "osmTags": { "and": [ "amenity=atm", @@ -248644,7 +248989,7 @@ }, { "question": "RAKBANK", - "icon": "./assets/data/nsi/logos/rakbank-a44f4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rakbank-a44f4b.png", "osmTags": { "and": [ "amenity=atm", @@ -248665,11 +249010,10 @@ }, { "question": "RBC", - "icon": "./assets/data/nsi/logos/rbcroyalbank-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rbcroyalbank-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Royal Bank of Canada", { "or": [ "brand=RBC", @@ -248678,6 +249022,7 @@ "brand:wikidata=Q735261", "name:en=RBC Royal Bank", "name:fr=RBC Banque Royale", + "official_name=Royal Bank of Canada", "operator=RBC", "operator:wikidata=Q735261" ] @@ -248687,7 +249032,7 @@ }, { "question": "RBL Bank", - "icon": "./assets/data/nsi/logos/rblbank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rblbank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -248704,15 +249049,15 @@ }, { "question": "RBS", - "icon": "./assets/data/nsi/logos/rbs-1729b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rbs-1729b5.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Royal Bank of Scotland", { "or": [ "brand=RBS", "brand:wikidata=Q160126", + "official_name=Royal Bank of Scotland", "operator=RBS", "operator:wikidata=Q160126" ] @@ -248754,15 +249099,15 @@ }, { "question": "RCBC", - "icon": "./assets/data/nsi/logos/rcbc-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rcbc-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Rizal Commercial Banking Corporation", { "or": [ "brand=RCBC", "brand:wikidata=Q7339070", + "official_name=Rizal Commercial Banking Corporation", "operator=RCBC", "operator:wikidata=Q7339070" ] @@ -248772,7 +249117,7 @@ }, { "question": "RegioBank", - "icon": "./assets/data/nsi/logos/regiobank-5333ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/regiobank-5333ab.svg", "osmTags": { "and": [ "amenity=atm", @@ -248789,7 +249134,7 @@ }, { "question": "Regions Bank", - "icon": "./assets/data/nsi/logos/regionsbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regionsbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248806,7 +249151,7 @@ }, { "question": "Reisebank", - "icon": "./assets/data/nsi/logos/reisebank-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reisebank-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248823,7 +249168,7 @@ }, { "question": "Repco Bank", - "icon": "./assets/data/nsi/logos/repcobank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/repcobank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248840,7 +249185,7 @@ }, { "question": "Republic Bank (Eastern Caribbean)", - "icon": "./assets/data/nsi/logos/republicbank-6b5972.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republicbank-6b5972.png", "osmTags": { "and": [ "amenity=atm", @@ -248857,7 +249202,7 @@ }, { "question": "Republic Bank (Ghana)", - "icon": "./assets/data/nsi/logos/republicbank-843442.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republicbank-843442.png", "osmTags": { "and": [ "amenity=atm", @@ -248875,15 +249220,15 @@ }, { "question": "Republic Bank (Kentucky)", - "icon": "./assets/data/nsi/logos/republicbank-10254d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republicbank-10254d.png", "osmTags": { "and": [ "amenity=atm", - "official_name=Republic Bank & Trust Company", { "or": [ "brand=Republic Bank", "brand:wikidata=Q7314387", + "official_name=Republic Bank & Trust Company", "operator=Republic Bank", "operator:wikidata=Q7314387" ] @@ -248909,7 +249254,7 @@ }, { "question": "República", - "icon": "./assets/data/nsi/logos/republica-78a393.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republica-78a393.png", "osmTags": { "and": [ "amenity=atm", @@ -248926,7 +249271,7 @@ }, { "question": "RHB Bank", - "icon": "./assets/data/nsi/logos/rhbbank-309a65.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhbbank-309a65.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248943,7 +249288,7 @@ }, { "question": "Rheinhessen Sparkasse", - "icon": "./assets/data/nsi/logos/rheinhessensparkasse-cc91ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinhessensparkasse-cc91ba.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248960,7 +249305,7 @@ }, { "question": "Robinsons Bank", - "icon": "./assets/data/nsi/logos/robinsonsbank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robinsonsbank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248977,7 +249322,7 @@ }, { "question": "Rockland Trust", - "icon": "./assets/data/nsi/logos/rocklandtrust-77ec0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rocklandtrust-77ec0f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -248994,7 +249339,7 @@ }, { "question": "Rogue Credit Union", - "icon": "./assets/data/nsi/logos/roguecreditunion-2c2e8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roguecreditunion-2c2e8a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249011,7 +249356,7 @@ }, { "question": "Royal Business Bank", - "icon": "./assets/data/nsi/logos/royalbusinessbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalbusinessbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249028,7 +249373,7 @@ }, { "question": "S-Pankki", - "icon": "./assets/data/nsi/logos/spankki-6eeb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spankki-6eeb13.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249045,7 +249390,7 @@ }, { "question": "Sacombank", - "icon": "./assets/data/nsi/logos/sacombank-2f6feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacombank-2f6feb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249062,7 +249407,7 @@ }, { "question": "Salem Five Bank", - "icon": "./assets/data/nsi/logos/salemfivebank-d66204.png", + "icon": "https://data.mapcomplete.org/nsi//logos/salemfivebank-d66204.png", "osmTags": { "and": [ "amenity=atm", @@ -249079,7 +249424,7 @@ }, { "question": "Samoborska banka", - "icon": "./assets/data/nsi/logos/samoborskabanka-4d8c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/samoborskabanka-4d8c03.png", "osmTags": { "and": [ "amenity=atm", @@ -249096,7 +249441,7 @@ }, { "question": "Sampath Bank", - "icon": "./assets/data/nsi/logos/sampathbank-960663.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sampathbank-960663.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249113,7 +249458,7 @@ }, { "question": "San Diego County Credit Union", - "icon": "./assets/data/nsi/logos/sandiegocountycreditunion-f9d961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegocountycreditunion-f9d961.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249131,7 +249476,7 @@ }, { "question": "Santander (Deutschland)", - "icon": "./assets/data/nsi/logos/santander-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santander-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249148,7 +249493,7 @@ }, { "question": "Santander (Polska)", - "icon": "./assets/data/nsi/logos/santander-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santander-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249165,7 +249510,7 @@ }, { "question": "Santander (UK)", - "icon": "./assets/data/nsi/logos/santander-396707.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santander-396707.png", "osmTags": { "and": [ "amenity=atm", @@ -249182,7 +249527,7 @@ }, { "question": "Santander (USA)", - "icon": "./assets/data/nsi/logos/santander-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santander-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249199,7 +249544,7 @@ }, { "question": "Santander Consumer Bank", - "icon": "./assets/data/nsi/logos/santanderconsumerbank-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santanderconsumerbank-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249216,7 +249561,7 @@ }, { "question": "Santander Río", - "icon": "./assets/data/nsi/logos/santanderrio-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santanderrio-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249233,7 +249578,7 @@ }, { "question": "Santander Totta", - "icon": "./assets/data/nsi/logos/santandertotta-9411e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santandertotta-9411e1.png", "osmTags": { "and": [ "amenity=atm", @@ -249250,7 +249595,7 @@ }, { "question": "Sberbank", - "icon": "./assets/data/nsi/logos/sberbank-6ad715.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sberbank-6ad715.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249267,7 +249612,7 @@ }, { "question": "SBI新生銀行", - "icon": "./assets/data/nsi/logos/sbishinseibank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbishinseibank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -249288,7 +249633,7 @@ }, { "question": "SBS Bank", - "icon": "./assets/data/nsi/logos/sbsbank-6bd214.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbsbank-6bd214.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249305,7 +249650,7 @@ }, { "question": "Schaffhauser Kantonalbank", - "icon": "./assets/data/nsi/logos/schaffhauserkantonalbank-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schaffhauserkantonalbank-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -249323,7 +249668,7 @@ }, { "question": "Schwyzer Kantonalbank", - "icon": "./assets/data/nsi/logos/schwyzerkantonalbank-ba97f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schwyzerkantonalbank-ba97f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249341,7 +249686,7 @@ }, { "question": "Scotiabank (non-Québec)", - "icon": "./assets/data/nsi/logos/scotiabank-2f6feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scotiabank-2f6feb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249358,7 +249703,7 @@ }, { "question": "Scotiabank (Québec)", - "icon": "./assets/data/nsi/logos/banquescotia-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquescotia-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249375,7 +249720,7 @@ }, { "question": "SC제일은행", - "icon": "./assets/data/nsi/logos/2a04be-cfe76c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2a04be-cfe76c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249394,7 +249739,7 @@ }, { "question": "SEB", - "icon": "./assets/data/nsi/logos/seb-7527a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seb-7527a2.png", "osmTags": { "and": [ "amenity=atm", @@ -249411,7 +249756,7 @@ }, { "question": "Security Bank", - "icon": "./assets/data/nsi/logos/securitybank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/securitybank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249428,7 +249773,7 @@ }, { "question": "Security Service Federal Credit Union", - "icon": "./assets/data/nsi/logos/securityservicefederalcreditunion-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/securityservicefederalcreditunion-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -249446,7 +249791,7 @@ }, { "question": "Şekerbank", - "icon": "./assets/data/nsi/logos/sekerbank-254ed3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sekerbank-254ed3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249479,7 +249824,7 @@ }, { "question": "Self-Help Federal Credit Union", - "icon": "./assets/data/nsi/logos/selfhelpfederalcreditunion-f52673.png", + "icon": "https://data.mapcomplete.org/nsi//logos/selfhelpfederalcreditunion-f52673.png", "osmTags": { "and": [ "amenity=atm", @@ -249496,7 +249841,7 @@ }, { "question": "Sense Bank", - "icon": "./assets/data/nsi/logos/sensebank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sensebank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249519,7 +249864,7 @@ }, { "question": "Service Credit Union", - "icon": "./assets/data/nsi/logos/servicecreditunion-e9e430.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicecreditunion-e9e430.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249536,7 +249881,7 @@ }, { "question": "Servus Credit Union", - "icon": "./assets/data/nsi/logos/servuscreditunion-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servuscreditunion-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249554,7 +249899,7 @@ }, { "question": "Seylan Bank", - "icon": "./assets/data/nsi/logos/seylanbank-960663.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seylanbank-960663.png", "osmTags": { "and": [ "amenity=atm", @@ -249571,7 +249916,7 @@ }, { "question": "Sharjah Islamic Bank", - "icon": "./assets/data/nsi/logos/sharjahislamicbank-a44f4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sharjahislamicbank-a44f4b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249592,7 +249937,7 @@ }, { "question": "Shore United Bank", - "icon": "./assets/data/nsi/logos/shoreunitedbank-89554d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoreunitedbank-89554d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249609,7 +249954,7 @@ }, { "question": "Sicoob", - "icon": "./assets/data/nsi/logos/sicoob-a02d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sicoob-a02d2b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249626,7 +249971,7 @@ }, { "question": "Sicredi", - "icon": "./assets/data/nsi/logos/sicredi-a02d2b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sicredi-a02d2b.png", "osmTags": { "and": [ "amenity=atm", @@ -249643,7 +249988,7 @@ }, { "question": "Simmons Bank", - "icon": "./assets/data/nsi/logos/simmonsbank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/simmonsbank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -249660,7 +250005,7 @@ }, { "question": "SKB Banka", - "icon": "./assets/data/nsi/logos/skbbanka-c633d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skbbanka-c633d2.png", "osmTags": { "and": [ "amenity=atm", @@ -249677,7 +250022,7 @@ }, { "question": "Skipton Building Society", - "icon": "./assets/data/nsi/logos/skiptonbuildingsociety-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skiptonbuildingsociety-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249694,7 +250039,7 @@ }, { "question": "Slatinska banka", - "icon": "./assets/data/nsi/logos/slatinskabanka-4d8c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slatinskabanka-4d8c03.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249711,7 +250056,7 @@ }, { "question": "Slovenská sporiteľňa", - "icon": "./assets/data/nsi/logos/slovenskasporitelna-6843ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskasporitelna-6843ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249746,7 +250091,7 @@ }, { "question": "SNS Bank", - "icon": "./assets/data/nsi/logos/snsbank-5333ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snsbank-5333ab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249763,7 +250108,7 @@ }, { "question": "Société Générale", - "icon": "./assets/data/nsi/logos/societegenerale-4113ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegenerale-4113ae.png", "osmTags": { "and": [ "amenity=atm", @@ -249780,7 +250125,7 @@ }, { "question": "Société Générale (France)", - "icon": "./assets/data/nsi/logos/sg-2f8fb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sg-2f8fb0.png", "osmTags": { "and": [ "amenity=atm", @@ -249797,7 +250142,7 @@ }, { "question": "Société Générale (Ghana)", - "icon": "./assets/data/nsi/logos/societegenerale-843442.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegenerale-843442.png", "osmTags": { "and": [ "amenity=atm", @@ -249815,7 +250160,7 @@ }, { "question": "Société Générale (الشركة العامة)", - "icon": "./assets/data/nsi/logos/576e54-c2e240.png", + "icon": "https://data.mapcomplete.org/nsi//logos/576e54-c2e240.png", "osmTags": { "and": [ "amenity=atm", @@ -249836,7 +250181,7 @@ }, { "question": "Société générale Côte d'Ivoire", - "icon": "./assets/data/nsi/logos/societegeneralecotedivoire-b783ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegeneralecotedivoire-b783ed.png", "osmTags": { "and": [ "amenity=atm", @@ -249871,7 +250216,7 @@ }, { "question": "South Indian Bank", - "icon": "./assets/data/nsi/logos/southindianbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southindianbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249888,7 +250233,7 @@ }, { "question": "South State Bank", - "icon": "./assets/data/nsi/logos/southstatebank-e1eaf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southstatebank-e1eaf2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249905,7 +250250,7 @@ }, { "question": "Southern Bank (Midwest USA)", - "icon": "./assets/data/nsi/logos/southernbank-39c83a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southernbank-39c83a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249922,7 +250267,7 @@ }, { "question": "Southern Bank (North Carolina/Virginia)", - "icon": "./assets/data/nsi/logos/southernbank-9b6e92.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southernbank-9b6e92.png", "osmTags": { "and": [ "amenity=atm", @@ -249939,7 +250284,7 @@ }, { "question": "Sparda-Bank (Deutschland)", - "icon": "./assets/data/nsi/logos/spardabank-eb9668.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabank-eb9668.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249956,7 +250301,7 @@ }, { "question": "Sparda-Bank (Österreich)", - "icon": "./assets/data/nsi/logos/spardabank-fc110f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabank-fc110f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -249973,7 +250318,7 @@ }, { "question": "Sparda-Bank Baden-Württemberg", - "icon": "./assets/data/nsi/logos/spardabankbadenwurttemberg-f84ca7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabankbadenwurttemberg-f84ca7.png", "osmTags": { "and": [ "amenity=atm", @@ -249990,7 +250335,7 @@ }, { "question": "Sparda-Bank Berlin", - "icon": "./assets/data/nsi/logos/spardabankberlin-f2a41d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabankberlin-f2a41d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250007,7 +250352,7 @@ }, { "question": "Sparda-Bank Hamburg", - "icon": "./assets/data/nsi/logos/spardabankhamburg-ff8f99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabankhamburg-ff8f99.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250024,7 +250369,7 @@ }, { "question": "Sparda-Bank Hessen", - "icon": "./assets/data/nsi/logos/spardabankhessen-47fbe2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabankhessen-47fbe2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250041,7 +250386,7 @@ }, { "question": "Sparda-Bank Südwest", - "icon": "./assets/data/nsi/logos/spardabanksudwest-36c3e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabanksudwest-36c3e3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250058,17 +250403,17 @@ }, { "question": "Sparkasse - Cassa di Risparmio", - "icon": "./assets/data/nsi/logos/sparkassecassadirisparmio-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkassecassadirisparmio-64483a.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Südtiroler Sparkasse – Cassa di Risparmio di Bolzano", { "or": [ "brand=Sparkasse - Cassa di Risparmio", "brand:wikidata=Q3661920", "name:de=Sparkasse", "name:it=Cassa di Risparmio", + "official_name=Südtiroler Sparkasse – Cassa di Risparmio di Bolzano", "operator=Sparkasse - Cassa di Risparmio", "operator:wikidata=Q3661920" ] @@ -250078,7 +250423,7 @@ }, { "question": "Sparkasse (Österreich)", - "icon": "./assets/data/nsi/logos/sparkasse-fc110f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkasse-fc110f.svg", "osmTags": { "and": [ "amenity=atm", @@ -250095,7 +250440,7 @@ }, { "question": "Sparkassen", - "icon": "./assets/data/nsi/logos/sparkassen-292760.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkassen-292760.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250112,7 +250457,7 @@ }, { "question": "St. Galler Kantonalbank", - "icon": "./assets/data/nsi/logos/stgallerkantonalbank-ba97f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stgallerkantonalbank-ba97f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250130,7 +250475,7 @@ }, { "question": "St.George", - "icon": "./assets/data/nsi/logos/stgeorge-8509c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stgeorge-8509c1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250147,7 +250492,7 @@ }, { "question": "Stanbic Bank", - "icon": "./assets/data/nsi/logos/stanbicbank-71787f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stanbicbank-71787f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250164,7 +250509,7 @@ }, { "question": "Stanbic Bank (Ghana)", - "icon": "./assets/data/nsi/logos/standardbank-843442.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/standardbank-843442.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250182,7 +250527,7 @@ }, { "question": "Standard Bank", - "icon": "./assets/data/nsi/logos/standardbank-83b186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/standardbank-83b186.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250199,7 +250544,7 @@ }, { "question": "Standard Chartered", - "icon": "./assets/data/nsi/logos/standardchartered-de84c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardchartered-de84c0.png", "osmTags": { "and": [ "amenity=atm", @@ -250216,7 +250561,7 @@ }, { "question": "Standard Chartered (Ghana)", - "icon": "./assets/data/nsi/logos/standardchartered-843442.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardchartered-843442.png", "osmTags": { "and": [ "amenity=atm", @@ -250234,7 +250579,7 @@ }, { "question": "State Bank of India (California)", - "icon": "./assets/data/nsi/logos/statebankofindiacalifornia-f9d961.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statebankofindiacalifornia-f9d961.png", "osmTags": { "and": [ "amenity=atm", @@ -250252,7 +250597,7 @@ }, { "question": "State Bank of India (Global)", - "icon": "./assets/data/nsi/logos/statebankofindia-42021d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statebankofindia-42021d.png", "osmTags": { "and": [ "amenity=atm", @@ -250270,7 +250615,7 @@ }, { "question": "State Employees Credit Union (Maryland)", - "icon": "./assets/data/nsi/logos/stateemployeescreditunion-5990bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-5990bb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250288,7 +250633,7 @@ }, { "question": "State Employees Credit Union (New Mexico)", - "icon": "./assets/data/nsi/logos/stateemployeescreditunion-78b862.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-78b862.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250306,7 +250651,7 @@ }, { "question": "State Employees Credit Union (North Carolina)", - "icon": "./assets/data/nsi/logos/stateemployeescreditunion-693cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-693cad.png", "osmTags": { "and": [ "amenity=atm", @@ -250340,7 +250685,7 @@ }, { "question": "Summit Credit Union (Wisconsin)", - "icon": "./assets/data/nsi/logos/summitcreditunion-2d3cec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/summitcreditunion-2d3cec.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250357,7 +250702,7 @@ }, { "question": "Suncoast Credit Union", - "icon": "./assets/data/nsi/logos/suncoastcreditunion-1c09a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/suncoastcreditunion-1c09a7.png", "osmTags": { "and": [ "amenity=atm", @@ -250374,7 +250719,7 @@ }, { "question": "Suncorp", - "icon": "./assets/data/nsi/logos/suncorp-8509c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suncorp-8509c1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250391,7 +250736,7 @@ }, { "question": "SunTrust", - "icon": "./assets/data/nsi/logos/suntrust-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suntrust-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250408,7 +250753,7 @@ }, { "question": "Supervielle", - "icon": "./assets/data/nsi/logos/supervielle-b67a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supervielle-b67a7c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250425,7 +250770,7 @@ }, { "question": "Swedbank", - "icon": "./assets/data/nsi/logos/swedbank-ab2e60.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swedbank-ab2e60.png", "osmTags": { "and": [ "amenity=atm", @@ -250442,7 +250787,7 @@ }, { "question": "Sydbank", - "icon": "./assets/data/nsi/logos/sydbank-ea875f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sydbank-ea875f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250459,7 +250804,7 @@ }, { "question": "Syndicate Bank", - "icon": "./assets/data/nsi/logos/syndicatebank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/syndicatebank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250476,7 +250821,7 @@ }, { "question": "Synovus", - "icon": "./assets/data/nsi/logos/synovus-1b5c6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/synovus-1b5c6b.png", "osmTags": { "and": [ "amenity=atm", @@ -250529,7 +250874,7 @@ }, { "question": "Tamilnad Mercantile Bank Limited", - "icon": "./assets/data/nsi/logos/tamilnadmercantilebanklimited-ad0527.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamilnadmercantilebanklimited-ad0527.svg", "osmTags": { "and": [ "amenity=atm", @@ -250546,7 +250891,7 @@ }, { "question": "Tangerine", - "icon": "./assets/data/nsi/logos/tangerine-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tangerine-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250563,7 +250908,7 @@ }, { "question": "Targobank", - "icon": "./assets/data/nsi/logos/targobank-3246f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/targobank-3246f9.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250580,7 +250925,7 @@ }, { "question": "Tatra banka", - "icon": "./assets/data/nsi/logos/tatrabanka-6843ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tatrabanka-6843ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250613,7 +250958,7 @@ }, { "question": "TBI Bank", - "icon": "./assets/data/nsi/logos/tbibank-7ff203.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tbibank-7ff203.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250644,7 +250989,7 @@ }, { "question": "TD Bank (Canada)", - "icon": "./assets/data/nsi/logos/td-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/td-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250662,7 +251007,7 @@ }, { "question": "TD Bank (USA)", - "icon": "./assets/data/nsi/logos/tdbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tdbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250680,7 +251025,7 @@ }, { "question": "TEB", - "icon": "./assets/data/nsi/logos/teb-254ed3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teb-254ed3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250697,7 +251042,7 @@ }, { "question": "Techcombank", - "icon": "./assets/data/nsi/logos/techcombank-cfdb1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/techcombank-cfdb1a.png", "osmTags": { "and": [ "amenity=atm", @@ -250717,11 +251062,11 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Banco del Tesoro", { "or": [ "brand=Tesoro", "brand:wikidata=Q5718196", + "official_name=Banco del Tesoro", "operator=Tesoro", "operator:wikidata=Q5718196" ] @@ -250747,7 +251092,7 @@ }, { "question": "The Co-operative Bank", - "icon": "./assets/data/nsi/logos/thecooperativebank-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecooperativebank-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250764,7 +251109,7 @@ }, { "question": "The Cumberland", - "icon": "./assets/data/nsi/logos/thecumberland-9feecb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecumberland-9feecb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250781,7 +251126,7 @@ }, { "question": "The Nottingham", - "icon": "./assets/data/nsi/logos/thenottingham-1fd8e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thenottingham-1fd8e4.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250798,7 +251143,7 @@ }, { "question": "Thurgauer Kantonalbank", - "icon": "./assets/data/nsi/logos/thurgauerkantonalbank-ba97f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thurgauerkantonalbank-ba97f3.png", "osmTags": { "and": [ "amenity=atm", @@ -250816,7 +251161,7 @@ }, { "question": "Tompkins Community Bank", - "icon": "./assets/data/nsi/logos/tompkinscommunitybank-60f9d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tompkinscommunitybank-60f9d8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250834,7 +251179,7 @@ }, { "question": "Tripura Gramin Bank", - "icon": "./assets/data/nsi/logos/tripuragraminbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tripuragraminbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250857,7 +251202,7 @@ }, { "question": "Truist", - "icon": "./assets/data/nsi/logos/truist-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truist-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250874,7 +251219,7 @@ }, { "question": "TSB (New Zealand)", - "icon": "./assets/data/nsi/logos/tsb-6bd214.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tsb-6bd214.png", "osmTags": { "and": [ "amenity=atm", @@ -250891,7 +251236,7 @@ }, { "question": "TSB (UK)", - "icon": "./assets/data/nsi/logos/tsb-396707.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsb-396707.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250924,7 +251269,7 @@ }, { "question": "Türkiye Finans", - "icon": "./assets/data/nsi/logos/turkiyefinans-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkiyefinans-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250941,7 +251286,7 @@ }, { "question": "Türkiye İş Bankası", - "icon": "./assets/data/nsi/logos/turkiyeisbankasi-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkiyeisbankasi-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250958,7 +251303,7 @@ }, { "question": "U.S. Bank", - "icon": "./assets/data/nsi/logos/usbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -250975,15 +251320,15 @@ }, { "question": "UBA", - "icon": "./assets/data/nsi/logos/uba-69edd8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uba-69edd8.png", "osmTags": { "and": [ "amenity=atm", - "official_name=United Bank for Africa", { "or": [ "brand=UBA", "brand:wikidata=Q513457", + "official_name=United Bank for Africa", "operator=UBA", "operator:wikidata=Q513457" ] @@ -250993,7 +251338,7 @@ }, { "question": "UBS", - "icon": "./assets/data/nsi/logos/ubs-2f6feb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ubs-2f6feb.png", "osmTags": { "and": [ "amenity=atm", @@ -251010,7 +251355,7 @@ }, { "question": "UCO Bank", - "icon": "./assets/data/nsi/logos/ucobank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucobank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251027,7 +251372,7 @@ }, { "question": "UCPB Savings Bank", - "icon": "./assets/data/nsi/logos/ucpbsavingsbank-f377ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucpbsavingsbank-f377ee.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251045,7 +251390,7 @@ }, { "question": "UGB", - "icon": "./assets/data/nsi/logos/ugb-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ugb-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251066,17 +251411,17 @@ }, { "question": "UIB", - "icon": "./assets/data/nsi/logos/uib-74adc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uib-74adc2.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Union internationale de banques", { "or": [ "brand=UIB", "brand:wikidata=Q3550305", "name:ar=الاتحاد الدولي للبنوك", "name:en=UIB", + "official_name=Union internationale de banques", "operator=UIB", "operator:wikidata=Q3550305" ] @@ -251086,7 +251431,7 @@ }, { "question": "Ujjivan Small Finance Bank", - "icon": "./assets/data/nsi/logos/ujjivansmallfinancebank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ujjivansmallfinancebank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251103,7 +251448,7 @@ }, { "question": "UkrSibbank", - "icon": "./assets/data/nsi/logos/ukrsibbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrsibbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251124,7 +251469,7 @@ }, { "question": "Ulster Bank", - "icon": "./assets/data/nsi/logos/ulsterbank-e569c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ulsterbank-e569c1.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251141,7 +251486,7 @@ }, { "question": "UMB Bank", - "icon": "./assets/data/nsi/logos/umbbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umbbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251158,7 +251503,7 @@ }, { "question": "Umpqua Bank", - "icon": "./assets/data/nsi/logos/umpquabank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umpquabank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251175,7 +251520,7 @@ }, { "question": "Unex Bank", - "icon": "./assets/data/nsi/logos/unexbank-968b58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unexbank-968b58.png", "osmTags": { "and": [ "amenity=atm", @@ -251196,15 +251541,15 @@ }, { "question": "UNI", - "icon": "./assets/data/nsi/logos/uni-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uni-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=UNI Coopération financière", { "or": [ "brand=UNI", "brand:wikidata=Q2933348", + "official_name=UNI Coopération financière", "operator=UNI", "operator:wikidata=Q2933348" ] @@ -251214,7 +251559,7 @@ }, { "question": "Unibank", - "icon": "./assets/data/nsi/logos/unibank-056506.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unibank-056506.png", "osmTags": { "and": [ "amenity=atm", @@ -251237,7 +251582,7 @@ }, { "question": "Unicaja Banco", - "icon": "./assets/data/nsi/logos/unicajabanco-b48e80.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unicajabanco-b48e80.svg", "osmTags": { "and": [ "amenity=atm", @@ -251271,7 +251616,7 @@ }, { "question": "UniCredit Bank", - "icon": "./assets/data/nsi/logos/unicreditbank-3ecec5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unicreditbank-3ecec5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251288,7 +251633,7 @@ }, { "question": "UniCredit Bulbank", - "icon": "./assets/data/nsi/logos/unicreditbulbank-e5108a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unicreditbulbank-e5108a.png", "osmTags": { "and": [ "amenity=atm", @@ -251307,7 +251652,7 @@ }, { "question": "Union Bank (USA)", - "icon": "./assets/data/nsi/logos/unionbank-93d3a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbank-93d3a2.svg", "osmTags": { "and": [ "amenity=atm", @@ -251325,7 +251670,7 @@ }, { "question": "Union Bank of India", - "icon": "./assets/data/nsi/logos/unionbankofindia-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbankofindia-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -251342,7 +251687,7 @@ }, { "question": "Union Savings Bank", - "icon": "./assets/data/nsi/logos/unionsavingsbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionsavingsbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251359,7 +251704,7 @@ }, { "question": "UnionBank (Philippines)", - "icon": "./assets/data/nsi/logos/unionbank-f377ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbank-f377ee.png", "osmTags": { "and": [ "amenity=atm", @@ -251376,7 +251721,7 @@ }, { "question": "United Bank (Connecticut)", - "icon": "./assets/data/nsi/logos/unitedbank-7bb27b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedbank-7bb27b.png", "osmTags": { "and": [ "amenity=atm", @@ -251393,7 +251738,7 @@ }, { "question": "United Bank (Mid-Atlantic USA)", - "icon": "./assets/data/nsi/logos/unitedbank-b1562d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedbank-b1562d.png", "osmTags": { "and": [ "amenity=atm", @@ -251426,7 +251771,7 @@ }, { "question": "United Community Bank", - "icon": "./assets/data/nsi/logos/unitedcommunitybank-b39253.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedcommunitybank-b39253.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251459,7 +251804,7 @@ }, { "question": "Unitus", - "icon": "./assets/data/nsi/logos/unitus-686806.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitus-686806.png", "osmTags": { "and": [ "amenity=atm", @@ -251477,7 +251822,7 @@ }, { "question": "Universal Bank", - "icon": "./assets/data/nsi/logos/universalbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universalbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251516,7 +251861,7 @@ }, { "question": "University Federal Credit Union", - "icon": "./assets/data/nsi/logos/universityfederalcreditunion-18eb57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityfederalcreditunion-18eb57.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251534,7 +251879,7 @@ }, { "question": "UOB", - "icon": "./assets/data/nsi/logos/uob-441a96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uob-441a96.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251555,7 +251900,7 @@ }, { "question": "Urner Kantonalbank", - "icon": "./assets/data/nsi/logos/urnerkantonalbank-ba97f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/urnerkantonalbank-ba97f3.svg", "osmTags": { "and": [ "amenity=atm", @@ -251573,15 +251918,15 @@ }, { "question": "USAA", - "icon": "./assets/data/nsi/logos/usaa-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usaa-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=United Services Automobile Association", { "or": [ "brand=USAA", "brand:wikidata=Q7865722", + "official_name=United Services Automobile Association", "operator=USAA", "operator:wikidata=Q7865722" ] @@ -251591,7 +251936,7 @@ }, { "question": "Uttarakhand Gramin Bank", - "icon": "./assets/data/nsi/logos/uttarakhandgraminbank-ad0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uttarakhandgraminbank-ad0527.png", "osmTags": { "and": [ "amenity=atm", @@ -251608,7 +251953,7 @@ }, { "question": "UW Credit Union", - "icon": "./assets/data/nsi/logos/uwcreditunion-2d3cec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uwcreditunion-2d3cec.png", "osmTags": { "and": [ "amenity=atm", @@ -251625,7 +251970,7 @@ }, { "question": "Vakıf Katılım", - "icon": "./assets/data/nsi/logos/vakifkatilim-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vakifkatilim-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251642,7 +251987,7 @@ }, { "question": "Vakıfbank", - "icon": "./assets/data/nsi/logos/vakifbank-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vakifbank-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251659,7 +252004,7 @@ }, { "question": "Valiant", - "icon": "./assets/data/nsi/logos/valiant-ba97f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valiant-ba97f3.png", "osmTags": { "and": [ "amenity=atm", @@ -251676,15 +252021,15 @@ }, { "question": "Vancity", - "icon": "./assets/data/nsi/logos/vancity-ddac74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vancity-ddac74.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Vancouver City Savings Credit Union", { "or": [ "brand=Vancity", "brand:wikidata=Q7914085", + "official_name=Vancouver City Savings Credit Union", "operator=Vancity", "operator:wikidata=Q7914085" ] @@ -251694,7 +252039,7 @@ }, { "question": "VeloBank", - "icon": "./assets/data/nsi/logos/velobank-53bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velobank-53bcca.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251711,7 +252056,7 @@ }, { "question": "Victoriabank", - "icon": "./assets/data/nsi/logos/victoriabank-7a75e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/victoriabank-7a75e5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251728,7 +252073,7 @@ }, { "question": "Vietcombank", - "icon": "./assets/data/nsi/logos/vietcombank-cfdb1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vietcombank-cfdb1a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251745,7 +252090,7 @@ }, { "question": "VietinBank", - "icon": "./assets/data/nsi/logos/vietinbank-cfdb1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vietinbank-cfdb1a.png", "osmTags": { "and": [ "amenity=atm", @@ -251762,7 +252107,7 @@ }, { "question": "Virgin Money", - "icon": "./assets/data/nsi/logos/virginmoney-396707.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virginmoney-396707.png", "osmTags": { "and": [ "amenity=atm", @@ -251779,7 +252124,7 @@ }, { "question": "ViviBanca", - "icon": "./assets/data/nsi/logos/vivibanca-64483a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vivibanca-64483a.png", "osmTags": { "and": [ "amenity=atm", @@ -251796,17 +252141,17 @@ }, { "question": "Volksbank (Italia)", - "icon": "./assets/data/nsi/logos/volksbank-64483a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volksbank-64483a.jpg", "osmTags": { "and": [ "amenity=atm", - "official_name=Südtiroler Volksbank - Banca Popolare dell'Alto Adige", - "official_name:de=Südtiroler Volksbank", - "official_name:it=Banca Popolare dell'Alto Adige", { "or": [ "brand=Volksbank", "brand:wikidata=Q3633728", + "official_name=Südtiroler Volksbank - Banca Popolare dell'Alto Adige", + "official_name:de=Südtiroler Volksbank", + "official_name:it=Banca Popolare dell'Alto Adige", "operator=Volksbank", "operator:wikidata=Q3633728" ] @@ -251816,7 +252161,7 @@ }, { "question": "Volksbank (Österreich)", - "icon": "./assets/data/nsi/logos/volksbank-fc110f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/volksbank-fc110f.svg", "osmTags": { "and": [ "amenity=atm", @@ -251833,7 +252178,7 @@ }, { "question": "Volksbank Köln Bonn eG", - "icon": "./assets/data/nsi/logos/volksbankkolnbonneg-fb8bf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volksbankkolnbonneg-fb8bf5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251850,7 +252195,7 @@ }, { "question": "Všeobecná úverová banka", - "icon": "./assets/data/nsi/logos/vseobecnauverovabanka-6843ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vseobecnauverovabanka-6843ee.png", "osmTags": { "and": [ "amenity=atm", @@ -251868,7 +252213,7 @@ }, { "question": "VTB Armenia", - "icon": "./assets/data/nsi/logos/vtb-056506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vtb-056506.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251891,7 +252236,7 @@ }, { "question": "WaFd Bank", - "icon": "./assets/data/nsi/logos/wafdbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wafdbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251909,7 +252254,7 @@ }, { "question": "WebsterBank", - "icon": "./assets/data/nsi/logos/websterbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/websterbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251926,7 +252271,7 @@ }, { "question": "Wells Fargo", - "icon": "./assets/data/nsi/logos/wellsfargo-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellsfargo-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251943,7 +252288,7 @@ }, { "question": "WesBanco", - "icon": "./assets/data/nsi/logos/wesbanco-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wesbanco-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251960,7 +252305,7 @@ }, { "question": "WESTconsin Credit Union", - "icon": "./assets/data/nsi/logos/westconsincreditunion-2d3cec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westconsincreditunion-2d3cec.png", "osmTags": { "and": [ "amenity=atm", @@ -251977,7 +252322,7 @@ }, { "question": "Western Union", - "icon": "./assets/data/nsi/logos/westernunion-b183ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westernunion-b183ae.jpg", "osmTags": { "and": [ "amenity=atm", @@ -251994,7 +252339,7 @@ }, { "question": "Westpac", - "icon": "./assets/data/nsi/logos/westpac-53bc34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westpac-53bc34.png", "osmTags": { "and": [ "amenity=atm", @@ -252027,7 +252372,7 @@ }, { "question": "Woodforest National Bank", - "icon": "./assets/data/nsi/logos/woodforestnationalbank-93d3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woodforestnationalbank-93d3a2.png", "osmTags": { "and": [ "amenity=atm", @@ -252044,7 +252389,7 @@ }, { "question": "WSFS Bank", - "icon": "./assets/data/nsi/logos/wsfsbank-21e4b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wsfsbank-21e4b8.png", "osmTags": { "and": [ "amenity=atm", @@ -252081,7 +252426,7 @@ }, { "question": "Yapı Kredi", - "icon": "./assets/data/nsi/logos/yapikredi-6f1d1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yapikredi-6f1d1d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252098,7 +252443,7 @@ }, { "question": "Yes Bank", - "icon": "./assets/data/nsi/logos/yesbank-ad0527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yesbank-ad0527.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252115,7 +252460,7 @@ }, { "question": "Yettel bank", - "icon": "./assets/data/nsi/logos/yettelbank-4fcc55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yettelbank-4fcc55.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252151,7 +252496,7 @@ }, { "question": "Yorkshire Building Society", - "icon": "./assets/data/nsi/logos/yorkshirebuildingsociety-396707.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yorkshirebuildingsociety-396707.png", "osmTags": { "and": [ "amenity=atm", @@ -252168,7 +252513,7 @@ }, { "question": "Zagrebačka banka", - "icon": "./assets/data/nsi/logos/zagrebackabanka-4d8c03.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zagrebackabanka-4d8c03.svg", "osmTags": { "and": [ "amenity=atm", @@ -252189,10 +252534,6 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=Islamic Bank “Zaman-Bank” JSC", - "official_name:en=Islamic Bank “Zaman-Bank” JSC", - "official_name:kk=«Заман-Банк «Ислам банкі» АҚ", - "official_name:ru=АО «Исламский банк «Заман-Банк»", { "or": [ "brand=Zaman-Bank", @@ -252200,6 +252541,10 @@ "name:en=Zaman-Bank", "name:kk=Заман-Банк", "name:ru=Заман-Банк", + "official_name=Islamic Bank “Zaman-Bank” JSC", + "official_name:en=Islamic Bank “Zaman-Bank” JSC", + "official_name:kk=«Заман-Банк «Ислам банкі» АҚ", + "official_name:ru=АО «Исламский банк «Заман-Банк»", "operator=Zaman-Bank", "operator:wikidata=Q4185641" ] @@ -252209,7 +252554,7 @@ }, { "question": "Zenith Bank", - "icon": "./assets/data/nsi/logos/zenithbank-a665db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zenithbank-a665db.png", "osmTags": { "and": [ "amenity=atm", @@ -252226,7 +252571,7 @@ }, { "question": "Zions Bank", - "icon": "./assets/data/nsi/logos/zionsbank-93d3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zionsbank-93d3a2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252259,7 +252604,7 @@ }, { "question": "Ziraat Bankası", - "icon": "./assets/data/nsi/logos/ziraatbankasi-254ed3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ziraatbankasi-254ed3.png", "osmTags": { "and": [ "amenity=atm", @@ -252276,7 +252621,7 @@ }, { "question": "Ziraat Katılım", - "icon": "./assets/data/nsi/logos/ziraatkatilim-6f1d1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ziraatkatilim-6f1d1d.png", "osmTags": { "and": [ "amenity=atm", @@ -252293,7 +252638,7 @@ }, { "question": "Zuger Kantonalbank", - "icon": "./assets/data/nsi/logos/zugerkantonalbank-ba97f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zugerkantonalbank-ba97f3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252310,7 +252655,7 @@ }, { "question": "Zürcher Kantonalbank", - "icon": "./assets/data/nsi/logos/zurcherkantonalbank-ba97f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zurcherkantonalbank-ba97f3.png", "osmTags": { "and": [ "amenity=atm", @@ -252328,7 +252673,7 @@ }, { "question": "Εθνική Τράπεζα", - "icon": "./assets/data/nsi/logos/nationalbankofgreece-650be4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbankofgreece-650be4.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252349,7 +252694,7 @@ }, { "question": "Τράπεζα Πειραιώς", - "icon": "./assets/data/nsi/logos/piraeusbank-650be4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/piraeusbank-650be4.png", "osmTags": { "and": [ "amenity=atm", @@ -252373,7 +252718,7 @@ }, { "question": "а̀банк", - "icon": "./assets/data/nsi/logos/abank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252394,7 +252739,7 @@ }, { "question": "Абсолют", - "icon": "./assets/data/nsi/logos/absolutbank-da35c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/absolutbank-da35c8.png", "osmTags": { "and": [ "amenity=atm", @@ -252415,7 +252760,7 @@ }, { "question": "Абсолютбанк", - "icon": "./assets/data/nsi/logos/absolutbank-18595f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/absolutbank-18595f.svg", "osmTags": { "and": [ "amenity=atm", @@ -252438,7 +252783,7 @@ }, { "question": "Авангард", - "icon": "./assets/data/nsi/logos/avangardbank-da35c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avangardbank-da35c8.png", "osmTags": { "and": [ "amenity=atm", @@ -252459,7 +252804,7 @@ }, { "question": "Азиатско-Тихоокеанский Банк", - "icon": "./assets/data/nsi/logos/asianpacificbank-da35c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asianpacificbank-da35c8.png", "osmTags": { "and": [ "amenity=atm", @@ -252480,7 +252825,7 @@ }, { "question": "Ак Барс Банк", - "icon": "./assets/data/nsi/logos/akbarsbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akbarsbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252501,7 +252846,7 @@ }, { "question": "Акордбанк", - "icon": "./assets/data/nsi/logos/accordbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accordbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252522,7 +252867,7 @@ }, { "question": "Альфа-Банк (Беларусь)", - "icon": "./assets/data/nsi/logos/alfabank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfabank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252545,7 +252890,7 @@ }, { "question": "Альфа-Банк (Россия)", - "icon": "./assets/data/nsi/logos/alfabank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfabank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252566,7 +252911,7 @@ }, { "question": "Бакай банк", - "icon": "./assets/data/nsi/logos/27e679-03a30b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/27e679-03a30b.png", "osmTags": { "and": [ "amenity=atm", @@ -252583,7 +252928,7 @@ }, { "question": "Банк ВТБ (Беларусь)", - "icon": "./assets/data/nsi/logos/vtbbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vtbbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252606,7 +252951,7 @@ }, { "question": "Банк Дабрабыт", - "icon": "./assets/data/nsi/logos/bankdabrabyt-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankdabrabyt-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252629,7 +252974,7 @@ }, { "question": "Банк Кредит Дніпро", - "icon": "./assets/data/nsi/logos/bankcreditdnipro-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankcreditdnipro-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252650,7 +252995,7 @@ }, { "question": "Банк Львів", - "icon": "./assets/data/nsi/logos/banklviv-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banklviv-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252671,7 +253016,7 @@ }, { "question": "Банк Південний", - "icon": "./assets/data/nsi/logos/pivdennybank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pivdennybank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252692,7 +253037,7 @@ }, { "question": "Банк Решение", - "icon": "./assets/data/nsi/logos/resheniebank-18595f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/resheniebank-18595f.png", "osmTags": { "and": [ "amenity=atm", @@ -252715,7 +253060,7 @@ }, { "question": "Банк Санкт-Петербург", - "icon": "./assets/data/nsi/logos/bankofsaintpetersburg-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofsaintpetersburg-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252736,7 +253081,7 @@ }, { "question": "Банка ДСК", - "icon": "./assets/data/nsi/logos/dskbank-e5108a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dskbank-e5108a.png", "osmTags": { "and": [ "amenity=atm", @@ -252757,7 +253102,7 @@ }, { "question": "Белагропромбанк", - "icon": "./assets/data/nsi/logos/belagroprombank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belagroprombank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252780,7 +253125,7 @@ }, { "question": "Беларусбанк", - "icon": "./assets/data/nsi/logos/belarusbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belarusbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252803,7 +253148,7 @@ }, { "question": "БелВЭБ", - "icon": "./assets/data/nsi/logos/belveb-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belveb-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252827,7 +253172,7 @@ }, { "question": "Белгазпромбанк", - "icon": "./assets/data/nsi/logos/belgazprombank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belgazprombank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252850,7 +253195,7 @@ }, { "question": "Белинвестбанк", - "icon": "./assets/data/nsi/logos/belinvestbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belinvestbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252873,7 +253218,7 @@ }, { "question": "Бинбанк", - "icon": "./assets/data/nsi/logos/bandnbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandnbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252894,7 +253239,7 @@ }, { "question": "БНБ-Банк", - "icon": "./assets/data/nsi/logos/bnbbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnbbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252917,7 +253262,7 @@ }, { "question": "БСБ Банк", - "icon": "./assets/data/nsi/logos/bsbbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bsbbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -252940,7 +253285,7 @@ }, { "question": "БТА Банк (Беларусь)", - "icon": "./assets/data/nsi/logos/btabank-18595f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/btabank-18595f.svg", "osmTags": { "and": [ "amenity=atm", @@ -252963,7 +253308,7 @@ }, { "question": "БТА Банк (Україна)", - "icon": "./assets/data/nsi/logos/btabank-968b58.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/btabank-968b58.svg", "osmTags": { "and": [ "amenity=atm", @@ -252984,7 +253329,7 @@ }, { "question": "Българо-американска кредитна банка", - "icon": "./assets/data/nsi/logos/bacb-e5108a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bacb-e5108a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253026,7 +253371,7 @@ }, { "question": "Восточный", - "icon": "./assets/data/nsi/logos/vostochnybank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vostochnybank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253047,7 +253392,7 @@ }, { "question": "ВТБ (Россия)", - "icon": "./assets/data/nsi/logos/vtbbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vtbbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253068,7 +253413,7 @@ }, { "question": "Газпромбанк", - "icon": "./assets/data/nsi/logos/gazprombank-da35c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gazprombank-da35c8.svg", "osmTags": { "and": [ "amenity=atm", @@ -253089,7 +253434,7 @@ }, { "question": "Генбанк", - "icon": "./assets/data/nsi/logos/3b7e11-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3b7e11-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253128,7 +253473,7 @@ }, { "question": "Зенит", - "icon": "./assets/data/nsi/logos/zenit-da35c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zenit-da35c8.png", "osmTags": { "and": [ "amenity=atm", @@ -253149,7 +253494,7 @@ }, { "question": "Инвестбанк", - "icon": "./assets/data/nsi/logos/investbank-e5108a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/investbank-e5108a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253169,7 +253514,7 @@ }, { "question": "Індустріалбанк", - "icon": "./assets/data/nsi/logos/industrialbank-968b58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/industrialbank-968b58.png", "osmTags": { "and": [ "amenity=atm", @@ -253190,7 +253535,7 @@ }, { "question": "Комерцијална банка", - "icon": "./assets/data/nsi/logos/a53bba-32e64b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/a53bba-32e64b.png", "osmTags": { "and": [ "amenity=atm", @@ -253207,7 +253552,7 @@ }, { "question": "Комінвестбанк", - "icon": "./assets/data/nsi/logos/cominvestbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cominvestbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253288,7 +253633,7 @@ }, { "question": "Московский кредитный банк", - "icon": "./assets/data/nsi/logos/creditbankofmoscow-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditbankofmoscow-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253329,7 +253674,7 @@ }, { "question": "МТБанк", - "icon": "./assets/data/nsi/logos/mtbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253352,7 +253697,7 @@ }, { "question": "МТС Банк", - "icon": "./assets/data/nsi/logos/mtsbank-da35c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mtsbank-da35c8.png", "osmTags": { "and": [ "amenity=atm", @@ -253373,7 +253718,7 @@ }, { "question": "НЛБ Тутунска Банка", - "icon": "./assets/data/nsi/logos/nlbtutunskabanka-32e64b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nlbtutunskabanka-32e64b.svg", "osmTags": { "and": [ "amenity=atm", @@ -253392,7 +253737,7 @@ }, { "question": "ОББ* (България)", - "icon": "./assets/data/nsi/logos/ubb-e5108a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ubb-e5108a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253413,7 +253758,7 @@ }, { "question": "Обединена Българска Банка", - "icon": "./assets/data/nsi/logos/unitedbulgarianbank-e5108a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedbulgarianbank-e5108a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253436,7 +253781,7 @@ }, { "question": "Общинска банка", - "icon": "./assets/data/nsi/logos/municipalbank-e5108a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalbank-e5108a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253457,7 +253802,7 @@ }, { "question": "Открытие", - "icon": "./assets/data/nsi/logos/ce06bd-da35c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ce06bd-da35c8.png", "osmTags": { "and": [ "amenity=atm", @@ -253474,7 +253819,7 @@ }, { "question": "ОТП Банк (Россия)", - "icon": "./assets/data/nsi/logos/otpbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253496,7 +253841,7 @@ }, { "question": "Ощадбанк", - "icon": "./assets/data/nsi/logos/oschadbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oschadbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253517,7 +253862,7 @@ }, { "question": "Паритетбанк", - "icon": "./assets/data/nsi/logos/paritetbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paritetbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253560,7 +253905,7 @@ }, { "question": "Почта Банк", - "icon": "./assets/data/nsi/logos/postbank-da35c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postbank-da35c8.png", "osmTags": { "and": [ "amenity=atm", @@ -253581,7 +253926,7 @@ }, { "question": "Пощенска банка", - "icon": "./assets/data/nsi/logos/postbank-e5108a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postbank-e5108a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253600,7 +253945,7 @@ }, { "question": "Правекс-Банк", - "icon": "./assets/data/nsi/logos/pravexbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pravexbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253621,7 +253966,7 @@ }, { "question": "ПриватБанк", - "icon": "./assets/data/nsi/logos/privatbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/privatbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253642,7 +253987,7 @@ }, { "question": "Приднестровский Сбербанк", - "icon": "./assets/data/nsi/logos/pridnestroviansavingsbank-7a75e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pridnestroviansavingsbank-7a75e5.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253663,7 +254008,7 @@ }, { "question": "Приорбанк", - "icon": "./assets/data/nsi/logos/priorbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/priorbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253688,7 +254033,7 @@ }, { "question": "ПроКредит Банк (България)", - "icon": "./assets/data/nsi/logos/procreditbank-e5108a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-e5108a.png", "osmTags": { "and": [ "amenity=atm", @@ -253709,7 +254054,7 @@ }, { "question": "Промсвязьбанк", - "icon": "./assets/data/nsi/logos/promsvyazbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/promsvyazbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253730,7 +254075,7 @@ }, { "question": "ПУМБ", - "icon": "./assets/data/nsi/logos/firstukrainianinternationalbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstukrainianinternationalbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253751,7 +254096,7 @@ }, { "question": "Райффайзен", - "icon": "./assets/data/nsi/logos/raiffeisenbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253772,7 +254117,7 @@ }, { "question": "РГС Банк", - "icon": "./assets/data/nsi/logos/rgsbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rgsbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253793,7 +254138,7 @@ }, { "question": "Ренессанс Кредит", - "icon": "./assets/data/nsi/logos/renaissancecredit-da35c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/renaissancecredit-da35c8.svg", "osmTags": { "and": [ "amenity=atm", @@ -253814,7 +254159,7 @@ }, { "question": "РНКБ", - "icon": "./assets/data/nsi/logos/f27cb2-da35c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/f27cb2-da35c8.svg", "osmTags": { "and": [ "amenity=atm", @@ -253831,7 +254176,7 @@ }, { "question": "Росбанк", - "icon": "./assets/data/nsi/logos/rosbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253872,7 +254217,7 @@ }, { "question": "РРБ-Банк", - "icon": "./assets/data/nsi/logos/gbdbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gbdbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253896,7 +254241,7 @@ }, { "question": "Русский Стандарт", - "icon": "./assets/data/nsi/logos/russianstandardbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/russianstandardbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253917,7 +254262,7 @@ }, { "question": "Сбер Банк (Беларусь)", - "icon": "./assets/data/nsi/logos/sberbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sberbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253940,7 +254285,7 @@ }, { "question": "Сбербанк", - "icon": "./assets/data/nsi/logos/sberbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sberbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253961,7 +254306,7 @@ }, { "question": "Совкомбанк", - "icon": "./assets/data/nsi/logos/sovcombank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sovcombank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -253982,7 +254327,7 @@ }, { "question": "СтатусБанк", - "icon": "./assets/data/nsi/logos/statusbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/statusbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254005,7 +254350,7 @@ }, { "question": "Стопанска банка Битола", - "icon": "./assets/data/nsi/logos/c62c01-32e64b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c62c01-32e64b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254022,7 +254367,7 @@ }, { "question": "Стопанска банка Скопје", - "icon": "./assets/data/nsi/logos/67eeb1-32e64b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/67eeb1-32e64b.png", "osmTags": { "and": [ "amenity=atm", @@ -254039,7 +254384,7 @@ }, { "question": "Таскомбанк", - "icon": "./assets/data/nsi/logos/tascombank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tascombank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254060,7 +254405,7 @@ }, { "question": "Технобанк", - "icon": "./assets/data/nsi/logos/technobank-18595f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technobank-18595f.png", "osmTags": { "and": [ "amenity=atm", @@ -254106,7 +254451,7 @@ }, { "question": "Төрийн банк", - "icon": "./assets/data/nsi/logos/statebank-ebb8d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/statebank-ebb8d3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254127,7 +254472,7 @@ }, { "question": "Укрексімбанк", - "icon": "./assets/data/nsi/logos/ukreximbank-968b58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukreximbank-968b58.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254148,7 +254493,7 @@ }, { "question": "УНИБанка", - "icon": "./assets/data/nsi/logos/unibank-32e64b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unibank-32e64b.png", "osmTags": { "and": [ "amenity=atm", @@ -254167,7 +254512,7 @@ }, { "question": "Уралсиб", - "icon": "./assets/data/nsi/logos/uralsibbank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uralsibbank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254188,7 +254533,7 @@ }, { "question": "Уральский банк реконструкции и развития", - "icon": "./assets/data/nsi/logos/uralbankforreconstructionanddevelopment-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uralbankforreconstructionanddevelopment-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254233,7 +254578,7 @@ }, { "question": "Хаан банк", - "icon": "./assets/data/nsi/logos/khanbank-ebb8d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/khanbank-ebb8d3.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254254,7 +254599,7 @@ }, { "question": "Халк Банка (Северна Македонија)", - "icon": "./assets/data/nsi/logos/halkbank-32e64b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/halkbank-32e64b.svg", "osmTags": { "and": [ "amenity=atm", @@ -254273,7 +254618,7 @@ }, { "question": "Хоум Кредит", - "icon": "./assets/data/nsi/logos/homecreditandfinancebank-da35c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homecreditandfinancebank-da35c8.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254294,7 +254639,7 @@ }, { "question": "Централна Кооперативна Банка", - "icon": "./assets/data/nsi/logos/centralcooperativebank-e5108a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralcooperativebank-e5108a.png", "osmTags": { "and": [ "amenity=atm", @@ -254317,7 +254662,7 @@ }, { "question": "Централна Кооперативна Банка Скопје", - "icon": "./assets/data/nsi/logos/centralcooperativebank-32e64b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralcooperativebank-32e64b.png", "osmTags": { "and": [ "amenity=atm", @@ -254340,7 +254685,7 @@ }, { "question": "Цептер Банк", - "icon": "./assets/data/nsi/logos/zepterbank-18595f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zepterbank-18595f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254363,7 +254708,7 @@ }, { "question": "Шпаркасе", - "icon": "./assets/data/nsi/logos/sparkassen-32e64b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkassen-32e64b.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254402,7 +254747,7 @@ }, { "question": "ბაზისბანკი", - "icon": "./assets/data/nsi/logos/basisbank-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/basisbank-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254426,7 +254771,7 @@ }, { "question": "ბანკი ქართუ", - "icon": "./assets/data/nsi/logos/cartubank-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cartubank-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254450,7 +254795,7 @@ }, { "question": "ზირაათ ბანკი", - "icon": "./assets/data/nsi/logos/ziraatbank-9cc31f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ziraatbank-9cc31f.png", "osmTags": { "and": [ "amenity=atm", @@ -254476,7 +254821,7 @@ }, { "question": "თიბისი ბანკი", - "icon": "./assets/data/nsi/logos/tbcbank-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tbcbank-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254503,7 +254848,7 @@ }, { "question": "იშბანკი", - "icon": "./assets/data/nsi/logos/isbank-a7d7a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isbank-a7d7a7.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254530,7 +254875,7 @@ }, { "question": "იშბანკი (საქართველო)", - "icon": "./assets/data/nsi/logos/isbank-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isbank-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254557,7 +254902,7 @@ }, { "question": "კრედო ბანკი", - "icon": "./assets/data/nsi/logos/credobank-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/credobank-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254604,7 +254949,7 @@ }, { "question": "ლიბერთი ბანკი", - "icon": "./assets/data/nsi/logos/liberty-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liberty-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254628,7 +254973,7 @@ }, { "question": "პროკრედიტ ბანკი", - "icon": "./assets/data/nsi/logos/procreditbank-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254676,7 +255021,7 @@ }, { "question": "საქართველოს ბანკი", - "icon": "./assets/data/nsi/logos/solo-9cc31f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/solo-9cc31f.png", "osmTags": { "and": [ "amenity=atm", @@ -254701,7 +255046,7 @@ }, { "question": "ტერაბანკი", - "icon": "./assets/data/nsi/logos/terabank-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terabank-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254725,7 +255070,7 @@ }, { "question": "ხალიკ ბანკი", - "icon": "./assets/data/nsi/logos/halykbank-9cc31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halykbank-9cc31f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254752,7 +255097,7 @@ }, { "question": "בנק אגוד", - "icon": "./assets/data/nsi/logos/unionbankofisrael-f1b480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbankofisrael-f1b480.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254794,7 +255139,7 @@ }, { "question": "בנק דיסקונט", - "icon": "./assets/data/nsi/logos/bankdiscount-f1b480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankdiscount-f1b480.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254815,7 +255160,7 @@ }, { "question": "בנק הפועלים", - "icon": "./assets/data/nsi/logos/bankhapoalim-f1b480.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankhapoalim-f1b480.svg", "osmTags": { "and": [ "amenity=atm", @@ -254836,7 +255181,7 @@ }, { "question": "בנק יהד", - "icon": "./assets/data/nsi/logos/bankyahav-f1b480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankyahav-f1b480.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254857,7 +255202,7 @@ }, { "question": "בנק ירושלים", - "icon": "./assets/data/nsi/logos/bankofjerusalem-f1b480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofjerusalem-f1b480.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254878,7 +255223,7 @@ }, { "question": "בנק לאומי", - "icon": "./assets/data/nsi/logos/bankleumi-f1b480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankleumi-f1b480.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254919,7 +255264,7 @@ }, { "question": "הבנק הבינלאומי", - "icon": "./assets/data/nsi/logos/firstinternationalbankofisrael-f1b480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstinternationalbankofisrael-f1b480.jpg", "osmTags": { "and": [ "amenity=atm", @@ -254940,7 +255285,7 @@ }, { "question": "מזרחי טפחות", - "icon": "./assets/data/nsi/logos/bankmizrahitefahot-f1b480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmizrahitefahot-f1b480.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255003,7 +255348,7 @@ }, { "question": "البنك الأهلي السعودي", - "icon": "./assets/data/nsi/logos/saudinationalbank-fc7317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saudinationalbank-fc7317.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255025,7 +255370,7 @@ }, { "question": "البنك الأول", - "icon": "./assets/data/nsi/logos/alawwalbank-fc7317.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alawwalbank-fc7317.svg", "osmTags": { "and": [ "amenity=atm", @@ -255046,7 +255391,7 @@ }, { "question": "البنك السعودي البريطاني", - "icon": "./assets/data/nsi/logos/saudibritishbank-fc7317.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saudibritishbank-fc7317.svg", "osmTags": { "and": [ "amenity=atm", @@ -255068,7 +255413,7 @@ }, { "question": "البنك السعودي الفرنسي", - "icon": "./assets/data/nsi/logos/banquesaudifransi-fc7317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquesaudifransi-fc7317.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255090,7 +255435,7 @@ }, { "question": "البنك السعودي للاستثمار", - "icon": "./assets/data/nsi/logos/saudiinvestmentbank-fc7317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saudiinvestmentbank-fc7317.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255126,7 +255471,7 @@ }, { "question": "البنك العربي الوطني", - "icon": "./assets/data/nsi/logos/arabnationalbank-fc7317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arabnationalbank-fc7317.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255148,7 +255493,7 @@ }, { "question": "البنك العربي لتونس", - "icon": "./assets/data/nsi/logos/arabtunisianbank-74adc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arabtunisianbank-74adc2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255170,7 +255515,7 @@ }, { "question": "البنك الوطني الجزائري", - "icon": "./assets/data/nsi/logos/nationalbankofalgeria-f957e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbankofalgeria-f957e0.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255191,7 +255536,7 @@ }, { "question": "بانک آینده", - "icon": "./assets/data/nsi/logos/ayandehbank-243651.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayandehbank-243651.png", "osmTags": { "and": [ "amenity=atm", @@ -255212,7 +255557,7 @@ }, { "question": "بانک اقتصاد نوین", - "icon": "./assets/data/nsi/logos/enbank-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enbank-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255253,7 +255598,7 @@ }, { "question": "بانک ایران زمین", - "icon": "./assets/data/nsi/logos/1bf094-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1bf094-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255290,7 +255635,7 @@ }, { "question": "بانک پاسارگاد", - "icon": "./assets/data/nsi/logos/bankpasargad-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankpasargad-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255311,7 +255656,7 @@ }, { "question": "بانک تجارت", - "icon": "./assets/data/nsi/logos/667eb5-243651.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/667eb5-243651.svg", "osmTags": { "and": [ "amenity=atm", @@ -255328,7 +255673,7 @@ }, { "question": "بانک توسعه تعاون", - "icon": "./assets/data/nsi/logos/9d24d1-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9d24d1-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255365,7 +255710,7 @@ }, { "question": "بانک رفاه", - "icon": "./assets/data/nsi/logos/refahbank-243651.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/refahbank-243651.svg", "osmTags": { "and": [ "amenity=atm", @@ -255386,7 +255731,7 @@ }, { "question": "بانک سامان", - "icon": "./assets/data/nsi/logos/samanbank-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samanbank-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255407,7 +255752,7 @@ }, { "question": "بانک سپه", - "icon": "./assets/data/nsi/logos/banksepah-243651.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banksepah-243651.png", "osmTags": { "and": [ "amenity=atm", @@ -255428,7 +255773,7 @@ }, { "question": "بانک سرمایه", - "icon": "./assets/data/nsi/logos/sarmayehbank-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sarmayehbank-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255449,7 +255794,7 @@ }, { "question": "بانک سینا", - "icon": "./assets/data/nsi/logos/sinabank-243651.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinabank-243651.svg", "osmTags": { "and": [ "amenity=atm", @@ -255470,7 +255815,7 @@ }, { "question": "بانک شهر", - "icon": "./assets/data/nsi/logos/shahrbank-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shahrbank-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255491,7 +255836,7 @@ }, { "question": "بانک صادرات", - "icon": "./assets/data/nsi/logos/banksaderatiran-243651.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banksaderatiran-243651.png", "osmTags": { "and": [ "amenity=atm", @@ -255553,7 +255898,7 @@ }, { "question": "بانک کشاورزی", - "icon": "./assets/data/nsi/logos/bankkeshavarziiran-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankkeshavarziiran-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255588,7 +255933,7 @@ }, { "question": "بانک مسکن", - "icon": "./assets/data/nsi/logos/bankmaskan-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmaskan-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255667,7 +256012,7 @@ }, { "question": "بنك البلاد", - "icon": "./assets/data/nsi/logos/bankalbilad-fc7317.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankalbilad-fc7317.png", "osmTags": { "and": [ "amenity=atm", @@ -255689,7 +256034,7 @@ }, { "question": "بنك الجزيرة", - "icon": "./assets/data/nsi/logos/bankaljazira-fc7317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankaljazira-fc7317.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255711,7 +256056,7 @@ }, { "question": "بنك الرياض", - "icon": "./assets/data/nsi/logos/riyadbank-fc7317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/riyadbank-fc7317.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255732,7 +256077,7 @@ }, { "question": "بنك تونس العربي الدولي", - "icon": "./assets/data/nsi/logos/arabinternationalbankoftunisia-74adc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arabinternationalbankoftunisia-74adc2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255753,7 +256098,7 @@ }, { "question": "پست بانک", - "icon": "./assets/data/nsi/logos/postbankofiran-243651.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postbankofiran-243651.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255774,7 +256119,7 @@ }, { "question": "جے ایس بینک", - "icon": "./assets/data/nsi/logos/jsbank-ed31a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jsbank-ed31a6.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255795,7 +256140,7 @@ }, { "question": "سوسيتيه جنرال", - "icon": "./assets/data/nsi/logos/societegenerale-de4691.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegenerale-de4691.png", "osmTags": { "and": [ "amenity=atm", @@ -255816,7 +256161,7 @@ }, { "question": "مصرف الإنماء", - "icon": "./assets/data/nsi/logos/alinmabank-fc7317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alinmabank-fc7317.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255840,7 +256185,7 @@ }, { "question": "مصرف الراجحي", - "icon": "./assets/data/nsi/logos/333979-5b8686.png", + "icon": "https://data.mapcomplete.org/nsi//logos/333979-5b8686.png", "osmTags": { "and": [ "amenity=atm", @@ -255857,7 +256202,7 @@ }, { "question": "مصرف الزيتونة", - "icon": "./assets/data/nsi/logos/2e6f93-74adc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2e6f93-74adc2.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255878,7 +256223,7 @@ }, { "question": "نیشنل بینک آف پاکستان", - "icon": "./assets/data/nsi/logos/nationalbankofpakistan-ed31a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbankofpakistan-ed31a6.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255902,7 +256247,7 @@ }, { "question": "یونائیٹڈ بینک لمیٹڈ", - "icon": "./assets/data/nsi/logos/unitedbanklimited-ed31a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedbanklimited-ed31a6.png", "osmTags": { "and": [ "amenity=atm", @@ -255927,7 +256272,7 @@ }, { "question": "অগ্রণী ব্যাংক", - "icon": "./assets/data/nsi/logos/agranibank-9cdc0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agranibank-9cdc0f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255948,7 +256293,7 @@ }, { "question": "গ্রামীণ ব্যাংক", - "icon": "./assets/data/nsi/logos/grameenbank-9cdc0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grameenbank-9cdc0f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -255969,7 +256314,7 @@ }, { "question": "জনতা ব্যাংক লিমিটেড", - "icon": "./assets/data/nsi/logos/janatabanklimited-9cdc0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/janatabanklimited-9cdc0f.png", "osmTags": { "and": [ "amenity=atm", @@ -255990,7 +256335,7 @@ }, { "question": "বাংলাদেশ কৃষি ব্যাংক", - "icon": "./assets/data/nsi/logos/bangladeshkrishibank-9cdc0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangladeshkrishibank-9cdc0f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256011,7 +256356,7 @@ }, { "question": "সোনালী ব্যাংক লিমিটেড", - "icon": "./assets/data/nsi/logos/sonalibank-9cdc0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sonalibank-9cdc0f.png", "osmTags": { "and": [ "amenity=atm", @@ -256032,7 +256377,7 @@ }, { "question": "กรุงศรี", - "icon": "./assets/data/nsi/logos/bankofayudhya-9d348a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofayudhya-9d348a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256054,7 +256399,7 @@ }, { "question": "ธนาคารกรุงเทพ", - "icon": "./assets/data/nsi/logos/bangkokbank-9d348a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangkokbank-9d348a.svg", "osmTags": { "and": [ "amenity=atm", @@ -256075,7 +256420,7 @@ }, { "question": "ธนาคารกรุงไทย", - "icon": "./assets/data/nsi/logos/krungthaibank-9d348a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krungthaibank-9d348a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256096,7 +256441,7 @@ }, { "question": "ธนาคารกสิกรไทย", - "icon": "./assets/data/nsi/logos/kasikornbank-9d348a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kasikornbank-9d348a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256117,7 +256462,7 @@ }, { "question": "ธนาคารทหารไทย", - "icon": "./assets/data/nsi/logos/tmbthanachartbank-9d348a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tmbthanachartbank-9d348a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256139,7 +256484,7 @@ }, { "question": "ธนาคารไทยพาณิชย์", - "icon": "./assets/data/nsi/logos/siamcommercialbank-9d348a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siamcommercialbank-9d348a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256180,7 +256525,7 @@ }, { "question": "ธนาคารออมสิน", - "icon": "./assets/data/nsi/logos/governmentsavingsbank-9d348a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentsavingsbank-9d348a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256201,7 +256546,7 @@ }, { "question": "농협", - "icon": "./assets/data/nsi/logos/nonghyupbank-cfe76c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nonghyupbank-cfe76c.png", "osmTags": { "and": [ "amenity=atm", @@ -256222,7 +256567,7 @@ }, { "question": "신한은행", - "icon": "./assets/data/nsi/logos/shinhanbank-cfe76c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shinhanbank-cfe76c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256259,7 +256604,7 @@ }, { "question": "우리은행", - "icon": "./assets/data/nsi/logos/wooribank-cfe76c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wooribank-cfe76c.png", "osmTags": { "and": [ "amenity=atm", @@ -256280,7 +256625,7 @@ }, { "question": "하나은행", - "icon": "./assets/data/nsi/logos/kebhanabank-cfe76c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kebhanabank-cfe76c.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256301,7 +256646,7 @@ }, { "question": "イオン銀行", - "icon": "./assets/data/nsi/logos/aeonbank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeonbank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -256342,7 +256687,7 @@ }, { "question": "スルガ銀行", - "icon": "./assets/data/nsi/logos/surugabank-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surugabank-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256363,7 +256708,7 @@ }, { "question": "セブン銀行", - "icon": "./assets/data/nsi/logos/sevenbank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sevenbank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -256384,7 +256729,7 @@ }, { "question": "みずほ銀行", - "icon": "./assets/data/nsi/logos/mizuhobank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mizuhobank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -256405,7 +256750,7 @@ }, { "question": "ゆうちょ銀行", - "icon": "./assets/data/nsi/logos/japanpostbank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/japanpostbank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -256426,7 +256771,7 @@ }, { "question": "りそな銀行", - "icon": "./assets/data/nsi/logos/resonabank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/resonabank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -256447,7 +256792,7 @@ }, { "question": "三井住友信託銀行", - "icon": "./assets/data/nsi/logos/sumitomomitsuitrustbank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sumitomomitsuitrustbank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -256468,7 +256813,7 @@ }, { "question": "三井住友銀行", - "icon": "./assets/data/nsi/logos/sumitomomitsuibankingcorporation-52efab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sumitomomitsuibankingcorporation-52efab.png", "osmTags": { "and": [ "amenity=atm", @@ -256514,7 +256859,7 @@ }, { "question": "三菱UFJ信託銀行", - "icon": "./assets/data/nsi/logos/mitsubishiufjtrustandbankingcorporation-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mitsubishiufjtrustandbankingcorporation-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -256535,7 +256880,7 @@ }, { "question": "三菱UFJ銀行", - "icon": "./assets/data/nsi/logos/mufgbank-52efab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mufgbank-52efab.png", "osmTags": { "and": [ "amenity=atm", @@ -256576,7 +256921,7 @@ }, { "question": "上海商業儲蓄銀行", - "icon": "./assets/data/nsi/logos/shanghaicommercialandsavingsbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shanghaicommercialandsavingsbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256601,7 +256946,7 @@ }, { "question": "上海商業銀行 Shanghai Commercial Bank", - "icon": "./assets/data/nsi/logos/shanghaicommercialbank-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shanghaicommercialbank-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256627,7 +256972,7 @@ }, { "question": "上海浦东发展银行", - "icon": "./assets/data/nsi/logos/shanghaipudongdevelopmentbank-7886cb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shanghaipudongdevelopmentbank-7886cb.svg", "osmTags": { "and": [ "amenity=atm", @@ -256668,7 +257013,7 @@ }, { "question": "东亚银行", - "icon": "./assets/data/nsi/logos/bankofeastasia-a6154f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofeastasia-a6154f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256689,7 +257034,7 @@ }, { "question": "中信銀行(國際) China CITIC Bank International", - "icon": "./assets/data/nsi/logos/chinaciticbankinternational-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaciticbankinternational-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256714,7 +257059,7 @@ }, { "question": "中信银行", - "icon": "./assets/data/nsi/logos/chinaciticbank-a6154f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaciticbank-a6154f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256795,7 +257140,7 @@ }, { "question": "中国工商銀行 (日本)", - "icon": "./assets/data/nsi/logos/industrialandcommercialbankofchina-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/industrialandcommercialbankofchina-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256818,7 +257163,7 @@ }, { "question": "中国工商银行", - "icon": "./assets/data/nsi/logos/industrialandcommercialbankofchina-e9a054.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/industrialandcommercialbankofchina-e9a054.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256839,7 +257184,7 @@ }, { "question": "中国建设银行", - "icon": "./assets/data/nsi/logos/chinaconstructionbank-e9a054.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-e9a054.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256860,7 +257205,7 @@ }, { "question": "中国民生银行", - "icon": "./assets/data/nsi/logos/chinaminshengbank-7886cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaminshengbank-7886cb.png", "osmTags": { "and": [ "amenity=atm", @@ -256881,7 +257226,7 @@ }, { "question": "中国邮政储蓄银行", - "icon": "./assets/data/nsi/logos/postalsavingsbankofchina-7886cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postalsavingsbankofchina-7886cb.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256902,7 +257247,7 @@ }, { "question": "中国银行", - "icon": "./assets/data/nsi/logos/bankofchina-e9a054.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofchina-e9a054.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256923,7 +257268,7 @@ }, { "question": "中國信託商業銀行", - "icon": "./assets/data/nsi/logos/ctbcbank-9a6797.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ctbcbank-9a6797.png", "osmTags": { "and": [ "amenity=atm", @@ -256948,7 +257293,7 @@ }, { "question": "中國工商銀行(亞洲) Industrial and Commercial Bank of China (Asia)", - "icon": "./assets/data/nsi/logos/icbcasia-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icbcasia-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -256973,7 +257318,7 @@ }, { "question": "中國建設銀行 Banco de Construção da China", - "icon": "./assets/data/nsi/logos/chinaconstructionbank-a6c792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-a6c792.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257000,7 +257345,7 @@ }, { "question": "中國建設銀行(亞洲) China Construction Bank (Asia)", - "icon": "./assets/data/nsi/logos/ccbasia-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ccbasia-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257025,7 +257370,7 @@ }, { "question": "中國銀行", - "icon": "./assets/data/nsi/logos/bankofchina-a6c792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofchina-a6c792.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257052,7 +257397,7 @@ }, { "question": "中國銀行(香港) Bank of China (Hong Kong)", - "icon": "./assets/data/nsi/logos/bankofchinahongkong-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofchinahongkong-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257080,7 +257425,6 @@ "osmTags": { "and": [ "amenity=atm", - "official_name=云南省农村信用社联合社", { "or": [ "brand=云南省农村信用社", @@ -257089,6 +257433,7 @@ "brand:zh=云南省农村信用社", "name:en=Yunnan Rural Credit Cooperatives", "name:zh=云南省农村信用社", + "official_name=云南省农村信用社联合社", "operator=云南省农村信用社", "operator:wikidata=Q114321959" ] @@ -257098,7 +257443,7 @@ }, { "question": "交通銀行 Bank of Communications", - "icon": "./assets/data/nsi/logos/bankofcommunications-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofcommunications-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257122,7 +257467,7 @@ }, { "question": "交通银行", - "icon": "./assets/data/nsi/logos/bankofcommunications-a6154f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofcommunications-a6154f.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257143,7 +257488,7 @@ }, { "question": "京城商業銀行", - "icon": "./assets/data/nsi/logos/kingstownbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingstownbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257167,7 +257512,7 @@ }, { "question": "京葉銀行", - "icon": "./assets/data/nsi/logos/keiyobank-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keiyobank-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257189,7 +257534,7 @@ }, { "question": "京都中央信用金庫", - "icon": "./assets/data/nsi/logos/kyotochuoshinkinbank-52efab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyotochuoshinkinbank-52efab.png", "osmTags": { "and": [ "amenity=atm", @@ -257210,7 +257555,7 @@ }, { "question": "京都銀行", - "icon": "./assets/data/nsi/logos/bankofkyoto-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofkyoto-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257231,7 +257576,7 @@ }, { "question": "伊予銀行", - "icon": "./assets/data/nsi/logos/iyobank-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iyobank-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257252,7 +257597,7 @@ }, { "question": "元大商業銀行", - "icon": "./assets/data/nsi/logos/yuantacommercialbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yuantacommercialbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257277,7 +257622,7 @@ }, { "question": "兆豐國際商業銀行", - "icon": "./assets/data/nsi/logos/megainternationalcommercialbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megainternationalcommercialbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257302,7 +257647,7 @@ }, { "question": "八十二銀行", - "icon": "./assets/data/nsi/logos/hachijunibank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hachijunibank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -257343,7 +257688,7 @@ }, { "question": "凱基商業銀行", - "icon": "./assets/data/nsi/logos/kgicommercialbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kgicommercialbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257368,7 +257713,7 @@ }, { "question": "創興銀行 Chong Hing Bank", - "icon": "./assets/data/nsi/logos/chonghingbank-aa3d3d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chonghingbank-aa3d3d.png", "osmTags": { "and": [ "amenity=atm", @@ -257433,7 +257778,7 @@ }, { "question": "北洋銀行", - "icon": "./assets/data/nsi/logos/northpacificbank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/northpacificbank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -257488,7 +257833,7 @@ }, { "question": "十六銀行", - "icon": "./assets/data/nsi/logos/jurokubank-52efab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jurokubank-52efab.png", "osmTags": { "and": [ "amenity=atm", @@ -257529,7 +257874,7 @@ }, { "question": "千葉銀行", - "icon": "./assets/data/nsi/logos/chibabank-52efab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chibabank-52efab.png", "osmTags": { "and": [ "amenity=atm", @@ -257615,7 +257960,7 @@ }, { "question": "南都銀行", - "icon": "./assets/data/nsi/logos/nantobank-3b4db7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nantobank-3b4db7.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257636,7 +257981,7 @@ }, { "question": "台中商業銀行", - "icon": "./assets/data/nsi/logos/taichungbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taichungbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257661,7 +258006,7 @@ }, { "question": "台北富邦商業銀行", - "icon": "./assets/data/nsi/logos/taipeifubonbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taipeifubonbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257686,7 +258031,7 @@ }, { "question": "台新國際商業銀行", - "icon": "./assets/data/nsi/logos/taishininternationalbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taishininternationalbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257711,7 +258056,7 @@ }, { "question": "合作金庫商業銀行", - "icon": "./assets/data/nsi/logos/taiwancooperativebank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwancooperativebank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257736,7 +258081,7 @@ }, { "question": "商工中金", - "icon": "./assets/data/nsi/logos/shokochukinbank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shokochukinbank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -257757,7 +258102,7 @@ }, { "question": "国泰银行", - "icon": "./assets/data/nsi/logos/cathaybank-5a3a19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cathaybank-5a3a19.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257778,7 +258123,7 @@ }, { "question": "國泰世華商業銀行", - "icon": "./assets/data/nsi/logos/cathayunitedbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cathayunitedbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257803,7 +258148,7 @@ }, { "question": "埼玉りそな銀行", - "icon": "./assets/data/nsi/logos/saitamaresonabank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saitamaresonabank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -257824,7 +258169,7 @@ }, { "question": "多摩信用金庫", - "icon": "./assets/data/nsi/logos/tamashinkinbank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamashinkinbank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -257848,7 +258193,7 @@ }, { "question": "大新銀行 Dah Sing Bank", - "icon": "./assets/data/nsi/logos/dahsingbank-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dahsingbank-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257873,7 +258218,7 @@ }, { "question": "大眾銀行(香港) Public Bank (Hong Kong)", - "icon": "./assets/data/nsi/logos/publicbankhongkong-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicbankhongkong-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257898,7 +258243,7 @@ }, { "question": "大西洋銀行 Banco Nacional Ultramarino", - "icon": "./assets/data/nsi/logos/2997e9-a6c792.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/2997e9-a6c792.svg", "osmTags": { "and": [ "amenity=atm", @@ -257919,7 +258264,7 @@ }, { "question": "大豐銀行 Banco Tai Fung", - "icon": "./assets/data/nsi/logos/taifungbank-a6c792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taifungbank-a6c792.jpg", "osmTags": { "and": [ "amenity=atm", @@ -257982,7 +258327,7 @@ }, { "question": "安泰商業銀行", - "icon": "./assets/data/nsi/logos/entiecommercialbank-9a6797.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/entiecommercialbank-9a6797.svg", "osmTags": { "and": [ "amenity=atm", @@ -258031,7 +258376,7 @@ }, { "question": "山梨中央銀行", - "icon": "./assets/data/nsi/logos/yamanashichuobank-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamanashichuobank-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258052,7 +258397,7 @@ }, { "question": "工銀澳門 ICBC", - "icon": "./assets/data/nsi/logos/icbc-a6c792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icbc-a6c792.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258077,7 +258422,7 @@ }, { "question": "常陽銀行", - "icon": "./assets/data/nsi/logos/joyobank-52efab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/joyobank-52efab.png", "osmTags": { "and": [ "amenity=atm", @@ -258098,7 +258443,7 @@ }, { "question": "平安银行", - "icon": "./assets/data/nsi/logos/pinganbank-7886cb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pinganbank-7886cb.svg", "osmTags": { "and": [ "amenity=atm", @@ -258139,7 +258484,7 @@ }, { "question": "彰化商業銀行", - "icon": "./assets/data/nsi/logos/changhwabank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/changhwabank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258204,7 +258549,7 @@ }, { "question": "恒生銀行 Hang Seng Bank", - "icon": "./assets/data/nsi/logos/hangsengbank-aa3d3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hangsengbank-aa3d3d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258229,7 +258574,7 @@ }, { "question": "愛知銀行", - "icon": "./assets/data/nsi/logos/aichibank-52efab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aichibank-52efab.png", "osmTags": { "and": [ "amenity=atm", @@ -258294,7 +258639,7 @@ }, { "question": "日本銀行", - "icon": "./assets/data/nsi/logos/bankofjapan-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofjapan-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258315,7 +258660,7 @@ }, { "question": "星展(台灣)商業銀行", - "icon": "./assets/data/nsi/logos/dbsbanktaiwan-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbsbanktaiwan-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258336,7 +258681,7 @@ }, { "question": "星展銀行 DBS", - "icon": "./assets/data/nsi/logos/dbs-aa3d3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbs-aa3d3d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258361,7 +258706,7 @@ }, { "question": "星展银行", - "icon": "./assets/data/nsi/logos/dbs-e9a054.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbs-e9a054.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258406,7 +258751,7 @@ }, { "question": "東亞銀行 Bank of East Asia", - "icon": "./assets/data/nsi/logos/bankofeastasia-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofeastasia-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258471,7 +258816,7 @@ }, { "question": "板信商業銀行", - "icon": "./assets/data/nsi/logos/bankofpanshin-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofpanshin-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258516,7 +258861,7 @@ }, { "question": "武蔵野銀行", - "icon": "./assets/data/nsi/logos/musashinobank-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/musashinobank-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258537,7 +258882,7 @@ }, { "question": "永豐商業銀行", - "icon": "./assets/data/nsi/logos/banksinopac-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banksinopac-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258642,7 +258987,7 @@ }, { "question": "渣打國際商業銀行", - "icon": "./assets/data/nsi/logos/standardcharteredtaiwan-9a6797.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardcharteredtaiwan-9a6797.png", "osmTags": { "and": [ "amenity=atm", @@ -258663,7 +259008,7 @@ }, { "question": "渣打銀行 Standard Chartered", - "icon": "./assets/data/nsi/logos/standardchartered-e57d9a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardchartered-e57d9a.png", "osmTags": { "and": [ "amenity=atm", @@ -258688,7 +259033,7 @@ }, { "question": "渣打银行", - "icon": "./assets/data/nsi/logos/standardchartered-a6154f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardchartered-a6154f.png", "osmTags": { "and": [ "amenity=atm", @@ -258729,7 +259074,7 @@ }, { "question": "滙豐(台灣)商業銀行", - "icon": "./assets/data/nsi/logos/hsbcbanktaiwan-9a6797.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbcbanktaiwan-9a6797.png", "osmTags": { "and": [ "amenity=atm", @@ -258772,7 +259117,7 @@ }, { "question": "澳門國際銀行 Banco Luso Internacional", - "icon": "./assets/data/nsi/logos/lusointernationalbanking-a6c792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lusointernationalbanking-a6c792.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258795,7 +259140,7 @@ }, { "question": "玉山商業銀行", - "icon": "./assets/data/nsi/logos/esuncommercialbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esuncommercialbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258820,7 +259165,7 @@ }, { "question": "瑞興商業銀行", - "icon": "./assets/data/nsi/logos/taipeistarbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taipeistarbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258845,7 +259190,7 @@ }, { "question": "百五銀行", - "icon": "./assets/data/nsi/logos/c48abb-52efab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c48abb-52efab.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258862,7 +259207,7 @@ }, { "question": "盤谷銀行 Bangkok Bank", - "icon": "./assets/data/nsi/logos/bangkokbank-e57d9a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangkokbank-e57d9a.svg", "osmTags": { "and": [ "amenity=atm", @@ -258887,7 +259232,7 @@ }, { "question": "立橋銀行 Well Link Bank", - "icon": "./assets/data/nsi/logos/welllinkbank-a6c792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welllinkbank-a6c792.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258910,7 +259255,7 @@ }, { "question": "第一商業銀行", - "icon": "./assets/data/nsi/logos/firstcommercialbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcommercialbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258935,7 +259280,7 @@ }, { "question": "聯邦商業銀行", - "icon": "./assets/data/nsi/logos/unionbankoftaiwan-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbankoftaiwan-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258960,7 +259305,7 @@ }, { "question": "臺灣中小企業銀行", - "icon": "./assets/data/nsi/logos/taiwanbusinessbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanbusinessbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -258985,7 +259330,7 @@ }, { "question": "臺灣土地銀行", - "icon": "./assets/data/nsi/logos/landbankoftaiwan-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landbankoftaiwan-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -259011,7 +259356,7 @@ }, { "question": "臺灣新光商業銀行", - "icon": "./assets/data/nsi/logos/shinkongcommercialbank-9a6797.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shinkongcommercialbank-9a6797.png", "osmTags": { "and": [ "amenity=atm", @@ -259036,7 +259381,7 @@ }, { "question": "臺灣銀行", - "icon": "./assets/data/nsi/logos/bankoftaiwan-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankoftaiwan-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -259082,7 +259427,7 @@ }, { "question": "花旗銀行 Citibank", - "icon": "./assets/data/nsi/logos/citibank-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citibank-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -259108,7 +259453,7 @@ }, { "question": "華僑銀行 Banco OCBC", - "icon": "./assets/data/nsi/logos/ocbcbank-a6c792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocbcbank-a6c792.jpg", "osmTags": { "and": [ "amenity=atm", @@ -259135,7 +259480,7 @@ }, { "question": "華僑銀行 OCBC Bank", - "icon": "./assets/data/nsi/logos/ocbcbank-e57d9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocbcbank-e57d9a.jpg", "osmTags": { "and": [ "amenity=atm", @@ -259160,7 +259505,7 @@ }, { "question": "華南商業銀行", - "icon": "./assets/data/nsi/logos/huanancommercialbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huanancommercialbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -259209,7 +259554,7 @@ }, { "question": "近畿大阪銀行", - "icon": "./assets/data/nsi/logos/kinkiosakabank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinkiosakabank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -259230,7 +259575,7 @@ }, { "question": "遠東國際商業銀行", - "icon": "./assets/data/nsi/logos/fareasterninternationalbank-9a6797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fareasterninternationalbank-9a6797.jpg", "osmTags": { "and": [ "amenity=atm", @@ -259323,7 +259668,7 @@ }, { "question": "香港上海滙豐銀行 HSBC", - "icon": "./assets/data/nsi/logos/hsbc-aa3d3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbc-aa3d3d.jpg", "osmTags": { "and": [ "amenity=atm", @@ -259372,7 +259717,7 @@ }, { "question": "鹿児島銀行", - "icon": "./assets/data/nsi/logos/kagoshimabank-52efab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kagoshimabank-52efab.svg", "osmTags": { "and": [ "amenity=atm", @@ -259393,7 +259738,7 @@ }, { "question": "1st Security Bank", - "icon": "./assets/data/nsi/logos/1stsecuritybank-181391.png", + "icon": "https://data.mapcomplete.org/nsi//logos/1stsecuritybank-181391.png", "osmTags": { "and": [ "amenity=bank", @@ -259409,7 +259754,7 @@ }, { "question": "3 Banka", - "icon": "./assets/data/nsi/logos/3bank-e9ea45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/3bank-e9ea45.png", "osmTags": { "and": [ "amenity=bank", @@ -259430,16 +259775,16 @@ }, { "question": "365.bank", - "icon": "./assets/data/nsi/logos/365bank-6a1dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/365bank-6a1dfb.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=365.bank, a.s.", { "or": [ "brand=365.bank", "brand:wikidata=Q7237158", - "name=365.bank" + "name=365.bank", + "official_name=365.bank, a.s." ] } ] @@ -259447,7 +259792,7 @@ }, { "question": "Aargauische Kantonalbank", - "icon": "./assets/data/nsi/logos/aargauischekantonalbank-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aargauischekantonalbank-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -259464,16 +259809,16 @@ }, { "question": "Abanca", - "icon": "./assets/data/nsi/logos/abanca-151324.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abanca-151324.png", "osmTags": { "and": [ "amenity=bank", - "official_name=ABANCA Corporación Bancaria", { "or": [ "brand=Abanca", "brand:wikidata=Q9598744", - "name=Abanca" + "name=Abanca", + "official_name=ABANCA Corporación Bancaria" ] } ] @@ -259481,16 +259826,16 @@ }, { "question": "ABN AMRO", - "icon": "./assets/data/nsi/logos/abnamro-fb21a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abnamro-fb21a8.png", "osmTags": { "and": [ "amenity=bank", - "official_name=ABN AMRO Bank N.V.", { "or": [ "brand=ABN AMRO", "brand:wikidata=Q287471", - "name=ABN AMRO" + "name=ABN AMRO", + "official_name=ABN AMRO Bank N.V." ] } ] @@ -259498,7 +259843,7 @@ }, { "question": "ABN AMRO MeesPierson", - "icon": "./assets/data/nsi/logos/abnamromeespierson-fb21a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abnamromeespierson-fb21a8.png", "osmTags": { "and": [ "amenity=bank", @@ -259514,7 +259859,7 @@ }, { "question": "Abound Credit Union", - "icon": "./assets/data/nsi/logos/aboundcreditunion-1458de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aboundcreditunion-1458de.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259530,7 +259875,7 @@ }, { "question": "Absa (Ghana)", - "icon": "./assets/data/nsi/logos/absa-9d35ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/absa-9d35ea.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259549,7 +259894,7 @@ }, { "question": "ABSA (South Africa)", - "icon": "./assets/data/nsi/logos/absa-50d637.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/absa-50d637.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259565,7 +259910,7 @@ }, { "question": "Abu Dhabi Commercial Bank", - "icon": "./assets/data/nsi/logos/abudhabicommercialbank-b21eb1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/abudhabicommercialbank-b21eb1.svg", "osmTags": { "and": [ "amenity=bank", @@ -259602,7 +259947,7 @@ }, { "question": "ACBA", - "icon": "./assets/data/nsi/logos/acba-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acba-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259624,7 +259969,7 @@ }, { "question": "Access Bank", - "icon": "./assets/data/nsi/logos/accessbank-155277.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accessbank-155277.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259640,7 +259985,7 @@ }, { "question": "ActivoBank", - "icon": "./assets/data/nsi/logos/activobank-4028ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/activobank-4028ed.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259675,7 +260020,7 @@ }, { "question": "Addiko Bank", - "icon": "./assets/data/nsi/logos/addikobank-975383.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/addikobank-975383.svg", "osmTags": { "and": [ "amenity=bank", @@ -259691,7 +260036,7 @@ }, { "question": "Affin Bank", - "icon": "./assets/data/nsi/logos/affinbank-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/affinbank-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259707,7 +260052,7 @@ }, { "question": "Affinity Credit Union", - "icon": "./assets/data/nsi/logos/affinitycreditunion-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/affinitycreditunion-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259723,7 +260068,7 @@ }, { "question": "African Bank", - "icon": "./assets/data/nsi/logos/africanbank-50d637.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/africanbank-50d637.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259739,7 +260084,7 @@ }, { "question": "Agibank", - "icon": "./assets/data/nsi/logos/agibank-0ed44d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agibank-0ed44d.svg", "osmTags": { "and": [ "amenity=bank", @@ -259755,7 +260100,7 @@ }, { "question": "Agram banka", - "icon": "./assets/data/nsi/logos/agrambanka-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrambanka-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -259771,7 +260116,7 @@ }, { "question": "Agribank (USA)", - "icon": "./assets/data/nsi/logos/agribank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agribank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -259787,18 +260132,18 @@ }, { "question": "Agribank (Việt Nam)", - "icon": "./assets/data/nsi/logos/agribank-a28d32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agribank-a28d32.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", - "official_name:en=Vietnam Bank for Agriculture and Rural Development", - "official_name:vi=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", { "or": [ "brand=Agribank", "brand:wikidata=Q1924723", - "name=Agribank" + "name=Agribank", + "official_name=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam", + "official_name:en=Vietnam Bank for Agriculture and Rural Development", + "official_name:vi=Ngân hàng Nông nghiệp và Phát triển Nông thôn Việt Nam" ] } ] @@ -259806,7 +260151,7 @@ }, { "question": "Agribank (Zimbabwe)", - "icon": "./assets/data/nsi/logos/agribank-ce50d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agribank-ce50d7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259822,7 +260167,7 @@ }, { "question": "Agrobank", - "icon": "./assets/data/nsi/logos/agrobank-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrobank-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259838,16 +260183,16 @@ }, { "question": "AIB", - "icon": "./assets/data/nsi/logos/aib-018fb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aib-018fb8.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Allied Irish Banks", { "or": [ "brand=AIB", "brand:wikidata=Q1642179", - "name=AIB" + "name=AIB", + "official_name=Allied Irish Banks" ] } ] @@ -259855,7 +260200,7 @@ }, { "question": "AIK banka", - "icon": "./assets/data/nsi/logos/aikbanka-e9ea45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aikbanka-e9ea45.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259874,7 +260219,7 @@ }, { "question": "Air Bank", - "icon": "./assets/data/nsi/logos/airbank-7d13c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/airbank-7d13c0.png", "osmTags": { "and": [ "amenity=bank", @@ -259890,7 +260235,7 @@ }, { "question": "Akbank", - "icon": "./assets/data/nsi/logos/akbank-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akbank-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259906,7 +260251,7 @@ }, { "question": "Akfinans Bank", - "icon": "./assets/data/nsi/logos/akfinansbank-c9effc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akfinansbank-c9effc.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259922,7 +260267,7 @@ }, { "question": "Aktia", - "icon": "./assets/data/nsi/logos/aktia-22526e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aktia-22526e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259938,7 +260283,7 @@ }, { "question": "Ålandsbanken", - "icon": "./assets/data/nsi/logos/alandsbanken-22526e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alandsbanken-22526e.png", "osmTags": { "and": [ "amenity=bank", @@ -259954,7 +260299,7 @@ }, { "question": "Alior Bank", - "icon": "./assets/data/nsi/logos/aliorbank-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aliorbank-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259970,7 +260315,7 @@ }, { "question": "Allahabad Bank", - "icon": "./assets/data/nsi/logos/allahabadbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allahabadbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -259986,7 +260331,7 @@ }, { "question": "Alliance Bank", - "icon": "./assets/data/nsi/logos/alliancebank-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliancebank-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260002,7 +260347,7 @@ }, { "question": "Allianz", - "icon": "./assets/data/nsi/logos/allianz-126296.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allianz-126296.png", "osmTags": { "and": [ "amenity=bank", @@ -260020,7 +260365,7 @@ }, { "question": "Allied Bank (Pakistan)", - "icon": "./assets/data/nsi/logos/alliedbank-4c5401.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliedbank-4c5401.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260040,7 +260385,7 @@ }, { "question": "Allied Bank (Philippines)", - "icon": "./assets/data/nsi/logos/alliedbank-431f82.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliedbank-431f82.svg", "osmTags": { "and": [ "amenity=bank", @@ -260056,7 +260401,7 @@ }, { "question": "Almora Urban Cooperative Bank Limited", - "icon": "./assets/data/nsi/logos/almoraurbancooperativebanklimited-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/almoraurbancooperativebanklimited-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260072,7 +260417,7 @@ }, { "question": "Alpha Bank", - "icon": "./assets/data/nsi/logos/alphabank-438bef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alphabank-438bef.png", "osmTags": { "and": [ "amenity=bank", @@ -260088,7 +260433,7 @@ }, { "question": "Alterna Savings", - "icon": "./assets/data/nsi/logos/alternasavings-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alternasavings-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260104,7 +260449,7 @@ }, { "question": "Alternatif Bank", - "icon": "./assets/data/nsi/logos/alternatifbank-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alternatifbank-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260120,7 +260465,7 @@ }, { "question": "AmBank", - "icon": "./assets/data/nsi/logos/ambank-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambank-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260136,7 +260481,7 @@ }, { "question": "Amegy Bank", - "icon": "./assets/data/nsi/logos/amegybank-718014.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amegybank-718014.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260152,7 +260497,7 @@ }, { "question": "AMEN", - "icon": "./assets/data/nsi/logos/amen-367f6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amen-367f6f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260168,7 +260513,7 @@ }, { "question": "Ameriabank", - "icon": "./assets/data/nsi/logos/ameriabank-9c44ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameriabank-9c44ae.png", "osmTags": { "and": [ "amenity=bank", @@ -260190,7 +260535,7 @@ }, { "question": "America First Credit Union", - "icon": "./assets/data/nsi/logos/americafirstcreditunion-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americafirstcreditunion-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260207,7 +260552,7 @@ }, { "question": "Ameris Bank", - "icon": "./assets/data/nsi/logos/amerisbank-246182.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amerisbank-246182.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260223,16 +260568,16 @@ }, { "question": "AMP", - "icon": "./assets/data/nsi/logos/amp-510934.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amp-510934.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=AMP Limited", { "or": [ "brand=AMP", "brand:wikidata=Q295261", - "name=AMP" + "name=AMP", + "official_name=AMP Limited" ] } ] @@ -260240,7 +260585,7 @@ }, { "question": "Anadolubank", - "icon": "./assets/data/nsi/logos/anadolubank-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anadolubank-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260256,7 +260601,7 @@ }, { "question": "Andhra Bank", - "icon": "./assets/data/nsi/logos/andhrabank-34f411.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/andhrabank-34f411.svg", "osmTags": { "and": [ "amenity=bank", @@ -260272,7 +260617,7 @@ }, { "question": "Andhra Pradesh Grameena Vikas Bank", - "icon": "./assets/data/nsi/logos/andhrapradeshgrameenavikasbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andhrapradeshgrameenavikasbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260292,7 +260637,7 @@ }, { "question": "Androscoggin Bank", - "icon": "./assets/data/nsi/logos/androscogginbank-b5f099.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/androscogginbank-b5f099.svg", "osmTags": { "and": [ "amenity=bank", @@ -260308,16 +260653,16 @@ }, { "question": "ANZ", - "icon": "./assets/data/nsi/logos/anz-510934.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anz-510934.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Australia and New Zealand Banking Group Limited", { "or": [ "brand=ANZ", "brand:wikidata=Q714641", - "name=ANZ" + "name=ANZ", + "official_name=Australia and New Zealand Banking Group Limited" ] } ] @@ -260325,7 +260670,7 @@ }, { "question": "Appenzeller Kantonalbank", - "icon": "./assets/data/nsi/logos/appenzellerkantonalbank-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/appenzellerkantonalbank-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -260342,7 +260687,7 @@ }, { "question": "Apple Bank", - "icon": "./assets/data/nsi/logos/applebank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/applebank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260358,7 +260703,7 @@ }, { "question": "Araratbank", - "icon": "./assets/data/nsi/logos/araratbank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/araratbank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260380,7 +260725,7 @@ }, { "question": "Ardshinbank", - "icon": "./assets/data/nsi/logos/ardshinbank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ardshinbank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260402,7 +260747,7 @@ }, { "question": "Argenta", - "icon": "./assets/data/nsi/logos/argenta-c47d60.png", + "icon": "https://data.mapcomplete.org/nsi//logos/argenta-c47d60.png", "osmTags": { "and": [ "amenity=bank", @@ -260418,7 +260763,7 @@ }, { "question": "Armbusinessbank", - "icon": "./assets/data/nsi/logos/armbusinessbank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armbusinessbank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260444,7 +260789,7 @@ }, { "question": "Armeconombank", - "icon": "./assets/data/nsi/logos/armeconombank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armeconombank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260470,7 +260815,7 @@ }, { "question": "ArmSwissBank", - "icon": "./assets/data/nsi/logos/armswissbank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armswissbank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260513,7 +260858,7 @@ }, { "question": "Arvest Bank", - "icon": "./assets/data/nsi/logos/arvestbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arvestbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260529,7 +260874,7 @@ }, { "question": "ASB Bank", - "icon": "./assets/data/nsi/logos/asbbank-279fc5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asbbank-279fc5.png", "osmTags": { "and": [ "amenity=bank", @@ -260545,7 +260890,7 @@ }, { "question": "Asbank", - "icon": "./assets/data/nsi/logos/asbank-c9effc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asbank-c9effc.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260561,7 +260906,7 @@ }, { "question": "Asia United Bank", - "icon": "./assets/data/nsi/logos/asiaunitedbank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asiaunitedbank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260578,7 +260923,7 @@ }, { "question": "Askari Bank (عسکری بینک)", - "icon": "./assets/data/nsi/logos/askaribank-da5806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/askaribank-da5806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260598,7 +260943,7 @@ }, { "question": "Assam Gramin Vikash Bank", - "icon": "./assets/data/nsi/logos/assamgraminvikashbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/assamgraminvikashbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260614,7 +260959,7 @@ }, { "question": "Associated Bank", - "icon": "./assets/data/nsi/logos/associatedbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/associatedbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260630,16 +260975,16 @@ }, { "question": "ATB Financial", - "icon": "./assets/data/nsi/logos/atbfinancial-5e244f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atbfinancial-5e244f.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Alberta Treasury Branches", { "or": [ "brand=ATB Financial", "brand:wikidata=Q298762", - "name=ATB Financial" + "name=ATB Financial", + "official_name=Alberta Treasury Branches" ] } ] @@ -260647,7 +260992,7 @@ }, { "question": "Atlantic Union Bank", - "icon": "./assets/data/nsi/logos/atlanticunionbank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atlanticunionbank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -260663,7 +261008,7 @@ }, { "question": "Attijariwafa Bank (التجاري وفا بنك)", - "icon": "./assets/data/nsi/logos/attijariwafabank-c1cae6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/attijariwafabank-c1cae6.png", "osmTags": { "and": [ "amenity=bank", @@ -260682,7 +261027,7 @@ }, { "question": "AU Small Finance Bank", - "icon": "./assets/data/nsi/logos/ausmallfinancebank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausmallfinancebank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260698,7 +261043,7 @@ }, { "question": "AXA", - "icon": "./assets/data/nsi/logos/axa-b7a026.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axa-b7a026.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260714,7 +261059,7 @@ }, { "question": "Axis Bank", - "icon": "./assets/data/nsi/logos/axisbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axisbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260730,7 +261075,7 @@ }, { "question": "BAC Credomatic", - "icon": "./assets/data/nsi/logos/baccredomatic-a7c666.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baccredomatic-a7c666.png", "osmTags": { "and": [ "amenity=bank", @@ -260761,16 +261106,16 @@ }, { "question": "BAI", - "icon": "./assets/data/nsi/logos/bai-706633.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bai-706633.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Angolano de Investimentos", { "or": [ "brand=BAI", "brand:wikidata=Q806172", - "name=BAI" + "name=BAI", + "official_name=Banco Angolano de Investimentos" ] } ] @@ -260781,12 +261126,12 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Agromercantil de Guatemala", { "or": [ "brand=Bam", "brand:wikidata=Q129652114", - "name=Bam" + "name=Bam", + "official_name=Banco Agromercantil de Guatemala" ] } ] @@ -260794,16 +261139,16 @@ }, { "question": "Banamex", - "icon": "./assets/data/nsi/logos/banamex-574575.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banamex-574575.svg", "osmTags": { "and": [ "amenity=bank", - "official_name=Grupo Financiero Banamex", { "or": [ "brand=Banamex", "brand:wikidata=Q749474", - "name=Banamex" + "name=Banamex", + "official_name=Grupo Financiero Banamex" ] } ] @@ -260826,7 +261171,7 @@ }, { "question": "Banca Agricola Popolare di Ragusa", - "icon": "./assets/data/nsi/logos/bancaagricolapopolarediragusa-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancaagricolapopolarediragusa-7b36b5.png", "osmTags": { "and": [ "amenity=bank", @@ -260842,16 +261187,16 @@ }, { "question": "Banca di Asti", - "icon": "./assets/data/nsi/logos/bancadiasti-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancadiasti-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Cassa di Risparmio di Asti", { "or": [ "brand=Banca di Asti", "brand:wikidata=Q3661919", - "name=Banca di Asti" + "name=Banca di Asti", + "official_name=Cassa di Risparmio di Asti" ] } ] @@ -260859,7 +261204,7 @@ }, { "question": "Banca Generali", - "icon": "./assets/data/nsi/logos/bancagenerali-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancagenerali-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260875,7 +261220,7 @@ }, { "question": "Banca March", - "icon": "./assets/data/nsi/logos/bancamarch-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancamarch-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260891,7 +261236,7 @@ }, { "question": "Banca Mediolanum", - "icon": "./assets/data/nsi/logos/bancamediolanum-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancamediolanum-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260907,7 +261252,7 @@ }, { "question": "Banca Popolare di Sondrio", - "icon": "./assets/data/nsi/logos/bancapopolaredisondrio-7b36b5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancapopolaredisondrio-7b36b5.svg", "osmTags": { "and": [ "amenity=bank", @@ -260938,7 +261283,7 @@ }, { "question": "Banca Sella", - "icon": "./assets/data/nsi/logos/bancasella-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancasella-7b36b5.png", "osmTags": { "and": [ "amenity=bank", @@ -260954,7 +261299,7 @@ }, { "question": "Banca Transilvania", - "icon": "./assets/data/nsi/logos/bancatransilvania-9a9a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancatransilvania-9a9a30.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260970,7 +261315,7 @@ }, { "question": "Bancaribe", - "icon": "./assets/data/nsi/logos/bancaribe-0269b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancaribe-0269b0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -260986,16 +261331,16 @@ }, { "question": "BancaStato", - "icon": "./assets/data/nsi/logos/bancastato-72646c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancastato-72646c.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banca dello Stato del Cantone Ticino", { "or": [ "brand=BancaStato", "brand:wikidata=Q806158", - "name=BancaStato" + "name=BancaStato", + "official_name=Banca dello Stato del Cantone Ticino" ] } ] @@ -261003,16 +261348,16 @@ }, { "question": "Banco Agrario", - "icon": "./assets/data/nsi/logos/bancoagrario-d049bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoagrario-d049bf.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Agrario de Colombia", { "or": [ "brand=Banco Agrario", "brand:wikidata=Q20013358", - "name=Banco Agrario" + "name=Banco Agrario", + "official_name=Banco Agrario de Colombia" ] } ] @@ -261020,7 +261365,7 @@ }, { "question": "Banco AV Villas", - "icon": "./assets/data/nsi/logos/bancoavvillas-d049bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoavvillas-d049bf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261036,7 +261381,7 @@ }, { "question": "Banco Azteca", - "icon": "./assets/data/nsi/logos/bancoazteca-a695fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoazteca-a695fe.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261052,7 +261397,7 @@ }, { "question": "Banco Bicentenario", - "icon": "./assets/data/nsi/logos/bancobicentenario-0269b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobicentenario-0269b0.png", "osmTags": { "and": [ "amenity=bank", @@ -261068,7 +261413,7 @@ }, { "question": "Banco BISA", - "icon": "./assets/data/nsi/logos/bancobisa-66977e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobisa-66977e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261084,7 +261429,7 @@ }, { "question": "Banco BMG", - "icon": "./assets/data/nsi/logos/bancobmg-0ed44d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobmg-0ed44d.svg", "osmTags": { "and": [ "amenity=bank", @@ -261100,17 +261445,17 @@ }, { "question": "Banco BPI (Portugal)", - "icon": "./assets/data/nsi/logos/bancobpi-4028ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobpi-4028ed.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Português de Investimento", "short_name=BPI", { "or": [ "brand=Banco BPI", "brand:wikidata=Q537886", - "name=Banco BPI" + "name=Banco BPI", + "official_name=Banco Português de Investimento" ] } ] @@ -261118,7 +261463,7 @@ }, { "question": "Banco BPM", - "icon": "./assets/data/nsi/logos/bancobpm-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancobpm-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261134,7 +261479,7 @@ }, { "question": "Banco Caja Social", - "icon": "./assets/data/nsi/logos/bancocajasocial-d049bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancocajasocial-d049bf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261150,16 +261495,16 @@ }, { "question": "Banco Ciudad", - "icon": "./assets/data/nsi/logos/bancociudad-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancociudad-841353.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Ciudad de Buenos Aires", { "or": [ "brand=Banco Ciudad", "brand:wikidata=Q4856204", - "name=Banco Ciudad" + "name=Banco Ciudad", + "official_name=Banco Ciudad de Buenos Aires" ] } ] @@ -261167,7 +261512,7 @@ }, { "question": "Banco Continental (Paraguay)", - "icon": "./assets/data/nsi/logos/bancocontinental-82a931.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancocontinental-82a931.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261183,7 +261528,7 @@ }, { "question": "Banco CTT", - "icon": "./assets/data/nsi/logos/bancoctt-4028ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoctt-4028ed.png", "osmTags": { "and": [ "amenity=bank", @@ -261199,7 +261544,7 @@ }, { "question": "Banco da Amazônia", - "icon": "./assets/data/nsi/logos/bancodaamazonia-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodaamazonia-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261215,7 +261560,7 @@ }, { "question": "Banco de Bogotá", - "icon": "./assets/data/nsi/logos/bancodebogota-d049bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodebogota-d049bf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261231,7 +261576,7 @@ }, { "question": "Banco de Brasília", - "icon": "./assets/data/nsi/logos/bancodebrasilia-0ed44d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodebrasilia-0ed44d.png", "osmTags": { "and": [ "amenity=bank", @@ -261248,7 +261593,7 @@ }, { "question": "Banco de Chile", - "icon": "./assets/data/nsi/logos/bancodechile-dbf1ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodechile-dbf1ad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261264,17 +261609,17 @@ }, { "question": "Banco de Córdoba", - "icon": "./assets/data/nsi/logos/bancodecordoba-2c68df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodecordoba-2c68df.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de la Provincia de Córdoba S.A.", "short_name=Bancor", { "or": [ "brand=Banco de Córdoba", "brand:wikidata=Q5718071", - "name=Banco de Córdoba" + "name=Banco de Córdoba", + "official_name=Banco de la Provincia de Córdoba S.A." ] } ] @@ -261282,7 +261627,7 @@ }, { "question": "Banco de Crédito y Comercio", - "icon": "./assets/data/nsi/logos/bancodecreditoycomercio-23df77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodecreditoycomercio-23df77.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261298,7 +261643,7 @@ }, { "question": "Banco de Desarrollo Banrural", - "icon": "./assets/data/nsi/logos/bancodedesarrollobanrural-2713d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodedesarrollobanrural-2713d7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261314,7 +261659,7 @@ }, { "question": "Banco de Fomento Angola", - "icon": "./assets/data/nsi/logos/bancodefomentoangola-706633.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodefomentoangola-706633.png", "osmTags": { "and": [ "amenity=bank", @@ -261332,7 +261677,7 @@ }, { "question": "Banco de la Nación (Perú)", - "icon": "./assets/data/nsi/logos/bancodelanacion-e2ab80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodelanacion-e2ab80.png", "osmTags": { "and": [ "amenity=bank", @@ -261363,7 +261708,7 @@ }, { "question": "Banco de Occidente (Colombia)", - "icon": "./assets/data/nsi/logos/bancodeoccidente-d049bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodeoccidente-d049bf.png", "osmTags": { "and": [ "amenity=bank", @@ -261379,7 +261724,7 @@ }, { "question": "Banco de Occidente (Honduras)", - "icon": "./assets/data/nsi/logos/bancodeoccidente-321983.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodeoccidente-321983.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261395,7 +261740,7 @@ }, { "question": "Banco de Venezuela", - "icon": "./assets/data/nsi/logos/bancodevenezuela-0269b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodevenezuela-0269b0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261411,7 +261756,7 @@ }, { "question": "Banco del Austro", - "icon": "./assets/data/nsi/logos/bancodelaustro-01e191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodelaustro-01e191.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261427,7 +261772,7 @@ }, { "question": "Banco del Bienestar", - "icon": "./assets/data/nsi/logos/bancodelbienestar-574575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodelbienestar-574575.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261443,7 +261788,7 @@ }, { "question": "Banco Desio", - "icon": "./assets/data/nsi/logos/bancodesio-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodesio-7b36b5.png", "osmTags": { "and": [ "amenity=bank", @@ -261459,7 +261804,7 @@ }, { "question": "Banco di Sardegna", - "icon": "./assets/data/nsi/logos/bancodisardegna-7b36b5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodisardegna-7b36b5.svg", "osmTags": { "and": [ "amenity=bank", @@ -261475,7 +261820,7 @@ }, { "question": "Banco do Brasil", - "icon": "./assets/data/nsi/logos/bancodobrasil-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodobrasil-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261491,7 +261836,7 @@ }, { "question": "Banco do Nordeste", - "icon": "./assets/data/nsi/logos/bancodonordeste-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodonordeste-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261508,7 +261853,7 @@ }, { "question": "Banco Económico", - "icon": "./assets/data/nsi/logos/bancoeconomico-66977e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoeconomico-66977e.png", "osmTags": { "and": [ "amenity=bank", @@ -261524,16 +261869,16 @@ }, { "question": "Banco Estado", - "icon": "./assets/data/nsi/logos/bancoestado-dbf1ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoestado-dbf1ad.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco del Estado de Chile", { "or": [ "brand=Banco Estado", "brand:wikidata=Q5718188", - "name=Banco Estado" + "name=Banco Estado", + "official_name=Banco del Estado de Chile" ] } ] @@ -261541,7 +261886,7 @@ }, { "question": "Banco Falabella", - "icon": "./assets/data/nsi/logos/bancofalabella-7e72a9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancofalabella-7e72a9.svg", "osmTags": { "and": [ "amenity=bank", @@ -261557,7 +261902,7 @@ }, { "question": "Banco Fassil", - "icon": "./assets/data/nsi/logos/bancofassil-66977e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancofassil-66977e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261573,16 +261918,16 @@ }, { "question": "Banco Fie", - "icon": "./assets/data/nsi/logos/bancofie-66977e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancofie-66977e.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco para el Fomento a Iniciativas Económicas", { "or": [ "brand=Banco Fie", "brand:wikidata=Q81782924", - "name=Banco Fie" + "name=Banco Fie", + "official_name=Banco para el Fomento a Iniciativas Económicas" ] } ] @@ -261590,7 +261935,7 @@ }, { "question": "Banco Fondo Común", - "icon": "./assets/data/nsi/logos/bancofondocomun-0269b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancofondocomun-0269b0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261622,7 +261967,7 @@ }, { "question": "Banco G&T Continental", - "icon": "./assets/data/nsi/logos/bancogandtcontinental-4ca2cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancogandtcontinental-4ca2cd.png", "osmTags": { "and": [ "amenity=bank", @@ -261638,7 +261983,7 @@ }, { "question": "Banco Ganadero", - "icon": "./assets/data/nsi/logos/bancoganadero-66977e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoganadero-66977e.png", "osmTags": { "and": [ "amenity=bank", @@ -261655,7 +262000,7 @@ }, { "question": "Banco General", - "icon": "./assets/data/nsi/logos/bancogeneral-865fd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancogeneral-865fd1.png", "osmTags": { "and": [ "amenity=bank", @@ -261671,7 +262016,7 @@ }, { "question": "Banco Industrial", - "icon": "./assets/data/nsi/logos/bancoindustrial-841353.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoindustrial-841353.png", "osmTags": { "and": [ "amenity=bank", @@ -261687,7 +262032,7 @@ }, { "question": "Banco Internacional (Chile)", - "icon": "./assets/data/nsi/logos/bancointernacional-dbf1ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancointernacional-dbf1ad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261703,7 +262048,7 @@ }, { "question": "Banco Internacional (Ecuador)", - "icon": "./assets/data/nsi/logos/bancointernacional-01e191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancointernacional-01e191.png", "osmTags": { "and": [ "amenity=bank", @@ -261719,7 +262064,7 @@ }, { "question": "Banco Mercantil", - "icon": "./assets/data/nsi/logos/bancomercantilsantacruz-66977e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancomercantilsantacruz-66977e.png", "osmTags": { "and": [ "amenity=bank", @@ -261736,7 +262081,7 @@ }, { "question": "Banco Mercantil do Brasil", - "icon": "./assets/data/nsi/logos/bancomercantildobrasil-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancomercantildobrasil-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261752,7 +262097,7 @@ }, { "question": "Banco Metropolitano", - "icon": "./assets/data/nsi/logos/bancometropolitano-23df77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancometropolitano-23df77.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261768,16 +262113,16 @@ }, { "question": "Banco Nación", - "icon": "./assets/data/nsi/logos/banconacion-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banconacion-841353.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de la Nación Argentina", { "or": [ "brand=Banco Nación", "brand:wikidata=Q2883376", - "name=Banco Nación" + "name=Banco Nación", + "official_name=Banco de la Nación Argentina" ] } ] @@ -261785,17 +262130,17 @@ }, { "question": "Banco Nacional", - "icon": "./assets/data/nsi/logos/banconacional-865fd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banconacional-865fd1.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Nacional de Costa Rica", "short_name=BNCR", { "or": [ "brand=Banco Nacional de Costa Rica", "brand:wikidata=Q2917708", - "name=Banco Nacional" + "name=Banco Nacional", + "official_name=Banco Nacional de Costa Rica" ] } ] @@ -261803,7 +262148,7 @@ }, { "question": "Banco Nacional de Bolivia", - "icon": "./assets/data/nsi/logos/banconacionaldebolivia-66977e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banconacionaldebolivia-66977e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261820,7 +262165,7 @@ }, { "question": "Banco Nacional de Crédito", - "icon": "./assets/data/nsi/logos/banconacionaldecredito-0269b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banconacionaldecredito-0269b0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261837,16 +262182,16 @@ }, { "question": "Banco Pastor", - "icon": "./assets/data/nsi/logos/bancopastor-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopastor-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Popular Pastor", { "or": [ "brand=Banco Pastor", "brand:wikidata=Q806193", - "name=Banco Pastor" + "name=Banco Pastor", + "official_name=Banco Popular Pastor" ] } ] @@ -261854,7 +262199,7 @@ }, { "question": "Banco Patagonia", - "icon": "./assets/data/nsi/logos/bancopatagonia-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopatagonia-841353.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261870,7 +262215,7 @@ }, { "question": "Banco Pichincha", - "icon": "./assets/data/nsi/logos/bancopichincha-6de7b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopichincha-6de7b0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261886,7 +262231,7 @@ }, { "question": "Banco Popular (Colombia)", - "icon": "./assets/data/nsi/logos/bancopopular-d049bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopopular-d049bf.png", "osmTags": { "and": [ "amenity=bank", @@ -261902,7 +262247,7 @@ }, { "question": "Banco Popular de Ahorro", - "icon": "./assets/data/nsi/logos/bancopopulardeahorro-23df77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancopopulardeahorro-23df77.jpg", "osmTags": { "and": [ "amenity=bank", @@ -261918,16 +262263,16 @@ }, { "question": "Banco Provincia", - "icon": "./assets/data/nsi/logos/bancoprovincia-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoprovincia-841353.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de la Provincia de Buenos Aires", { "or": [ "brand=Banco Provincia", "brand:wikidata=Q4856209", - "name=Banco Provincia" + "name=Banco Provincia", + "official_name=Banco de la Provincia de Buenos Aires" ] } ] @@ -261935,7 +262280,7 @@ }, { "question": "Banco Provincia de Neuquén", - "icon": "./assets/data/nsi/logos/bancoprovinciadeneuquen-841353.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancoprovinciadeneuquen-841353.png", "osmTags": { "and": [ "amenity=bank", @@ -261951,11 +262296,10 @@ }, { "question": "Banco Sabadell", - "icon": "./assets/data/nsi/logos/bancosabadell-ce59ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosabadell-ce59ab.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de Sabadell, S.A.", { "or": [ "brand=Banco Sabadell", @@ -261964,7 +262308,8 @@ "brand:wikidata=Q762330", "name=Banco Sabadell", "name:ca=Banc Sabadell", - "name:es=Banco Sabadell" + "name:es=Banco Sabadell", + "official_name=Banco de Sabadell, S.A." ] } ] @@ -261972,7 +262317,7 @@ }, { "question": "Banco Safra", - "icon": "./assets/data/nsi/logos/bancosafra-0ed44d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosafra-0ed44d.png", "osmTags": { "and": [ "amenity=bank", @@ -261988,16 +262333,16 @@ }, { "question": "Banco Santa Fe", - "icon": "./assets/data/nsi/logos/bancosantafe-841353.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosantafe-841353.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Nuevo Banco de Santa Fe", { "or": [ "brand=Banco Santa Fe", "brand:wikidata=Q6046871", - "name=Banco Santa Fe" + "name=Banco Santa Fe", + "official_name=Nuevo Banco de Santa Fe" ] } ] @@ -262005,16 +262350,16 @@ }, { "question": "Banco Santander", - "icon": "./assets/data/nsi/logos/bancosantander-77aaa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosantander-77aaa4.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Santander Group", { "or": [ "brand=Banco Santander", "brand:wikidata=Q6496310", - "name=Banco Santander" + "name=Banco Santander", + "official_name=Santander Group" ] } ] @@ -262022,7 +262367,7 @@ }, { "question": "Banco Sol (Angola)", - "icon": "./assets/data/nsi/logos/bancosol-706633.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosol-706633.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262038,16 +262383,16 @@ }, { "question": "Banco Sol (Bolivia)", - "icon": "./assets/data/nsi/logos/bancosol-66977e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancosol-66977e.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Solidario", { "or": [ "brand=Banco Sol", "brand:wikidata=Q62118746", - "name=Banco Sol" + "name=Banco Sol", + "official_name=Banco Solidario" ] } ] @@ -262055,16 +262400,16 @@ }, { "question": "Banco Unión", - "icon": "./assets/data/nsi/logos/bancounion-66977e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancounion-66977e.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de la Unión", { "or": [ "brand=Banco Unión", "brand:wikidata=Q72315494", - "name=Banco Unión" + "name=Banco Unión", + "official_name=Banco de la Unión" ] } ] @@ -262072,7 +262417,7 @@ }, { "question": "Bancolombia", - "icon": "./assets/data/nsi/logos/bancolombia-d049bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancolombia-d049bf.png", "osmTags": { "and": [ "amenity=bank", @@ -262088,7 +262433,7 @@ }, { "question": "Bancomeeva", - "icon": "./assets/data/nsi/logos/bancomeeva-d049bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancomeeva-d049bf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262119,7 +262464,7 @@ }, { "question": "Bandhan Bank", - "icon": "./assets/data/nsi/logos/bandhanbank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bandhanbank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -262135,7 +262480,7 @@ }, { "question": "Banesco", - "icon": "./assets/data/nsi/logos/banesco-0269b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banesco-0269b0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262151,7 +262496,7 @@ }, { "question": "Banese", - "icon": "./assets/data/nsi/logos/banese-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banese-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262167,16 +262512,16 @@ }, { "question": "Banestes", - "icon": "./assets/data/nsi/logos/banestes-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banestes-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco do Estado do Espírito Santo", { "or": [ "brand=Banestes", "brand:wikidata=Q4854848", - "name=Banestes" + "name=Banestes", + "official_name=Banco do Estado do Espírito Santo" ] } ] @@ -262184,7 +262529,7 @@ }, { "question": "Bangkok Bank", - "icon": "./assets/data/nsi/logos/bangkokbank-d07a84.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangkokbank-d07a84.svg", "osmTags": { "and": [ "amenity=bank", @@ -262200,7 +262545,7 @@ }, { "question": "Bangor Savings Bank", - "icon": "./assets/data/nsi/logos/bangorsavingsbank-af5f1b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bangorsavingsbank-af5f1b.png", "osmTags": { "and": [ "amenity=bank", @@ -262216,7 +262561,7 @@ }, { "question": "Bank 1 Saar", - "icon": "./assets/data/nsi/logos/bank1saar-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bank1saar-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262232,7 +262577,7 @@ }, { "question": "Bank Al Habib (بينک الحبيب)", - "icon": "./assets/data/nsi/logos/bankalhabib-da5806.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankalhabib-da5806.png", "osmTags": { "and": [ "amenity=bank", @@ -262252,7 +262597,7 @@ }, { "question": "Bank Al-Maghrib (بنك المغرب)", - "icon": "./assets/data/nsi/logos/2f0a35-11534a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/2f0a35-11534a.png", "osmTags": { "and": [ "amenity=bank", @@ -262272,7 +262617,7 @@ }, { "question": "Bank Alfalah (بینک الفلاح)", - "icon": "./assets/data/nsi/logos/bankalfalah-a78d37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankalfalah-a78d37.png", "osmTags": { "and": [ "amenity=bank", @@ -262306,7 +262651,7 @@ }, { "question": "Bank BJB", - "icon": "./assets/data/nsi/logos/bankbjb-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankbjb-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262322,7 +262667,7 @@ }, { "question": "Bank BPS", - "icon": "./assets/data/nsi/logos/bankbps-68054b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankbps-68054b.png", "osmTags": { "and": [ "amenity=bank", @@ -262338,7 +262683,7 @@ }, { "question": "Bank Bukopin", - "icon": "./assets/data/nsi/logos/bankbukopin-aa7852.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankbukopin-aa7852.svg", "osmTags": { "and": [ "amenity=bank", @@ -262354,7 +262699,7 @@ }, { "question": "Bank Central Asia", - "icon": "./assets/data/nsi/logos/bankcentralasia-aa7852.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankcentralasia-aa7852.svg", "osmTags": { "and": [ "amenity=bank", @@ -262370,7 +262715,7 @@ }, { "question": "Bank Danamon", - "icon": "./assets/data/nsi/logos/bankdanamon-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankdanamon-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262386,7 +262731,7 @@ }, { "question": "Bank Islam", - "icon": "./assets/data/nsi/logos/bankislam-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankislam-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262402,7 +262747,7 @@ }, { "question": "Bank Jago", - "icon": "./assets/data/nsi/logos/bankjago-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankjago-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262418,7 +262763,7 @@ }, { "question": "Bank Mandiri", - "icon": "./assets/data/nsi/logos/bankmandiri-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmandiri-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262434,7 +262779,7 @@ }, { "question": "Bank Mega", - "icon": "./assets/data/nsi/logos/bankmega-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmega-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262450,7 +262795,7 @@ }, { "question": "Bank Muamalat", - "icon": "./assets/data/nsi/logos/bankmuamalat-74c287.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmuamalat-74c287.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262466,7 +262811,7 @@ }, { "question": "Bank of Africa", - "icon": "./assets/data/nsi/logos/bankofafrica-dae5c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofafrica-dae5c5.png", "osmTags": { "and": [ "amenity=bank", @@ -262483,7 +262828,7 @@ }, { "question": "Bank of Africa (Ghana)", - "icon": "./assets/data/nsi/logos/bankofafrica-9d35ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofafrica-9d35ea.png", "osmTags": { "and": [ "amenity=bank", @@ -262503,7 +262848,7 @@ }, { "question": "Bank of America", - "icon": "./assets/data/nsi/logos/bankofamerica-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofamerica-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262519,7 +262864,7 @@ }, { "question": "Bank of Baroda", - "icon": "./assets/data/nsi/logos/bankofbaroda-2a7aac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofbaroda-2a7aac.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262535,7 +262880,7 @@ }, { "question": "Bank of Ceylon", - "icon": "./assets/data/nsi/logos/bankofceylon-358381.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofceylon-358381.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262551,7 +262896,7 @@ }, { "question": "Bank of Commerce", - "icon": "./assets/data/nsi/logos/bankofcommerce-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofcommerce-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262567,7 +262912,7 @@ }, { "question": "Bank of Cyprus", - "icon": "./assets/data/nsi/logos/bankofcyprus-fe69e8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofcyprus-fe69e8.png", "osmTags": { "and": [ "amenity=bank", @@ -262586,7 +262931,7 @@ }, { "question": "Bank of Hawaii", - "icon": "./assets/data/nsi/logos/bankofhawaii-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofhawaii-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262602,7 +262947,7 @@ }, { "question": "Bank of India", - "icon": "./assets/data/nsi/logos/bankofindia-2a7aac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofindia-2a7aac.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262618,7 +262963,7 @@ }, { "question": "Bank of Ireland", - "icon": "./assets/data/nsi/logos/bankofireland-018fb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofireland-018fb8.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262634,7 +262979,7 @@ }, { "question": "Bank of Maharashtra", - "icon": "./assets/data/nsi/logos/bankofmaharashtra-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofmaharashtra-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -262650,7 +262995,7 @@ }, { "question": "Bank of New Hampshire", - "icon": "./assets/data/nsi/logos/bankofnewhampshire-02b74e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofnewhampshire-02b74e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262666,7 +263011,7 @@ }, { "question": "Bank of New Zealand", - "icon": "./assets/data/nsi/logos/bankofnewzealand-279fc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofnewzealand-279fc5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262682,7 +263027,7 @@ }, { "question": "Bank of Scotland", - "icon": "./assets/data/nsi/logos/bankofscotland-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofscotland-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262698,7 +263043,7 @@ }, { "question": "Bank of the Sierra", - "icon": "./assets/data/nsi/logos/bankofthesierra-cf92b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofthesierra-cf92b8.png", "osmTags": { "and": [ "amenity=bank", @@ -262714,7 +263059,7 @@ }, { "question": "Bank OZK", - "icon": "./assets/data/nsi/logos/bankozk-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankozk-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262730,7 +263075,7 @@ }, { "question": "Bank Pekao", - "icon": "./assets/data/nsi/logos/bankpekao-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankpekao-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262746,7 +263091,7 @@ }, { "question": "Bank Permata", - "icon": "./assets/data/nsi/logos/bankpermata-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankpermata-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262777,7 +263122,7 @@ }, { "question": "Bank Rakyat", - "icon": "./assets/data/nsi/logos/bankrakyat-8ab35f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankrakyat-8ab35f.png", "osmTags": { "and": [ "amenity=bank", @@ -262793,12 +263138,10 @@ }, { "question": "Bank RBK", - "icon": "./assets/data/nsi/logos/bankrbk-033b31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankrbk-033b31.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name:kk=«Bank RBK» АҚ", - "official_name:ru=АО «Bank RBK»", { "or": [ "brand=Bank RBK", @@ -262806,7 +263149,9 @@ "name=Bank RBK", "name:en=Bank RBK", "name:kk=РБК Банкі", - "name:ru=Банк РБК" + "name:ru=Банк РБК", + "official_name:kk=«Bank RBK» АҚ", + "official_name:ru=АО «Bank RBK»" ] } ] @@ -262814,7 +263159,7 @@ }, { "question": "Bank Simpanan Nasional", - "icon": "./assets/data/nsi/logos/banksimpanannasional-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banksimpanannasional-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262831,7 +263176,7 @@ }, { "question": "Bank Syariah Indonesia", - "icon": "./assets/data/nsi/logos/banksyariahindonesia-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banksyariahindonesia-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262848,7 +263193,7 @@ }, { "question": "bank99", - "icon": "./assets/data/nsi/logos/bank99-694ab5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bank99-694ab5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262864,7 +263209,7 @@ }, { "question": "Banka Kombëtare Tregtare", - "icon": "./assets/data/nsi/logos/bankakombetaretregtare-c53f64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankakombetaretregtare-c53f64.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262881,7 +263226,7 @@ }, { "question": "Banka Kovanica", - "icon": "./assets/data/nsi/logos/bankakovanica-6f3d3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankakovanica-6f3d3b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262912,7 +263257,7 @@ }, { "question": "Bankia", - "icon": "./assets/data/nsi/logos/bankia-ce59ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankia-ce59ab.svg", "osmTags": { "and": [ "amenity=bank", @@ -262928,7 +263273,7 @@ }, { "question": "Banking Hub", - "icon": "./assets/data/nsi/logos/bankinghub-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankinghub-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262944,7 +263289,7 @@ }, { "question": "Bankinter", - "icon": "./assets/data/nsi/logos/bankinter-151324.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankinter-151324.png", "osmTags": { "and": [ "amenity=bank", @@ -262960,7 +263305,7 @@ }, { "question": "Bankwest (Australia)", - "icon": "./assets/data/nsi/logos/bankwest-f304bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankwest-f304bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262976,7 +263321,7 @@ }, { "question": "BankWest (USA)", - "icon": "./assets/data/nsi/logos/bankwest-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankwest-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -262992,7 +263337,7 @@ }, { "question": "Banner Bank", - "icon": "./assets/data/nsi/logos/bannerbank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bannerbank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -263008,7 +263353,7 @@ }, { "question": "Banorte", - "icon": "./assets/data/nsi/logos/banorte-574575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banorte-574575.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263024,7 +263369,7 @@ }, { "question": "Banpais", - "icon": "./assets/data/nsi/logos/banpais-321983.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banpais-321983.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263055,7 +263400,7 @@ }, { "question": "Banque Atlantique", - "icon": "./assets/data/nsi/logos/banqueatlantique-dc0023.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banqueatlantique-dc0023.png", "osmTags": { "and": [ "amenity=bank", @@ -263071,7 +263416,7 @@ }, { "question": "Banque Cantonale de Fribourg", - "icon": "./assets/data/nsi/logos/banquecantonaledefribourg-67b150.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaledefribourg-67b150.svg", "osmTags": { "and": [ "amenity=bank", @@ -263094,7 +263439,7 @@ }, { "question": "Banque Cantonale de Genève", - "icon": "./assets/data/nsi/logos/banquecantonaledegeneve-e338fc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaledegeneve-e338fc.svg", "osmTags": { "and": [ "amenity=bank", @@ -263111,7 +263456,7 @@ }, { "question": "Banque Cantonale du Jura", - "icon": "./assets/data/nsi/logos/banquecantonaledujura-54afa2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaledujura-54afa2.svg", "osmTags": { "and": [ "amenity=bank", @@ -263128,7 +263473,7 @@ }, { "question": "Banque Cantonale du Valais", - "icon": "./assets/data/nsi/logos/banquecantonaleduvalais-43dddb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaleduvalais-43dddb.svg", "osmTags": { "and": [ "amenity=bank", @@ -263151,7 +263496,7 @@ }, { "question": "Banque Cantonale Neuchâteloise", - "icon": "./assets/data/nsi/logos/banquecantonaleneuchateloise-9b416d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonaleneuchateloise-9b416d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263168,7 +263513,7 @@ }, { "question": "Banque Cantonale Vaudoise", - "icon": "./assets/data/nsi/logos/banquecantonalevaudoise-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquecantonalevaudoise-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -263185,7 +263530,7 @@ }, { "question": "Banque de France", - "icon": "./assets/data/nsi/logos/banquedefrance-ad79d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquedefrance-ad79d4.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263231,7 +263576,7 @@ }, { "question": "Banque Laurentienne", - "icon": "./assets/data/nsi/logos/banquelaurentienne-e1345b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banquelaurentienne-e1345b.png", "osmTags": { "and": [ "amenity=bank", @@ -263247,7 +263592,7 @@ }, { "question": "Banque Misr", - "icon": "./assets/data/nsi/logos/banquemisr-bbd826.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquemisr-bbd826.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263278,13 +263623,10 @@ }, { "question": "Banque Nationale", - "icon": "./assets/data/nsi/logos/banquenationale-ff5d57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquenationale-ff5d57.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banque Nationale du Canada", - "official_name:en=National Bank of Canada", - "official_name:fr=Banque Nationale du Canada", "short_name:en=NBC", "short_name:fr=BNC", { @@ -263295,7 +263637,10 @@ "brand:wikidata=Q634298", "name=Banque Nationale", "name:en=National Bank", - "name:fr=Banque Nationale" + "name:fr=Banque Nationale", + "official_name=Banque Nationale du Canada", + "official_name:en=National Bank of Canada", + "official_name:fr=Banque Nationale du Canada" ] } ] @@ -263303,7 +263648,7 @@ }, { "question": "Banque Palatine", - "icon": "./assets/data/nsi/logos/banquepalatine-b30a91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banquepalatine-b30a91.png", "osmTags": { "and": [ "amenity=bank", @@ -263319,7 +263664,7 @@ }, { "question": "Banque Populaire (France)", - "icon": "./assets/data/nsi/logos/banquepopulaire-ad79d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banquepopulaire-ad79d4.png", "osmTags": { "and": [ "amenity=bank", @@ -263335,7 +263680,7 @@ }, { "question": "Banque Populaire (البنك الشعبي)", - "icon": "./assets/data/nsi/logos/banquepopulaire-4fc013.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquepopulaire-4fc013.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263354,7 +263699,7 @@ }, { "question": "Banque populaire Grand Ouest", - "icon": "./assets/data/nsi/logos/banquepopulairegrandouest-b30a91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquepopulairegrandouest-b30a91.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263370,7 +263715,7 @@ }, { "question": "Banregio", - "icon": "./assets/data/nsi/logos/banregio-574575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banregio-574575.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263386,7 +263731,7 @@ }, { "question": "Banrisul", - "icon": "./assets/data/nsi/logos/banrisul-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banrisul-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263402,7 +263747,7 @@ }, { "question": "Banrural", - "icon": "./assets/data/nsi/logos/banrural-e6a553.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banrural-e6a553.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263418,7 +263763,7 @@ }, { "question": "Barclays", - "icon": "./assets/data/nsi/logos/barclays-d3e17e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barclays-d3e17e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263434,7 +263779,7 @@ }, { "question": "Basellandschaftliche Kantonalbank", - "icon": "./assets/data/nsi/logos/basellandschaftlichekantonalbank-74b036.png", + "icon": "https://data.mapcomplete.org/nsi//logos/basellandschaftlichekantonalbank-74b036.png", "osmTags": { "and": [ "amenity=bank", @@ -263451,7 +263796,7 @@ }, { "question": "Basler Kantonalbank", - "icon": "./assets/data/nsi/logos/baslerkantonalbank-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/baslerkantonalbank-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -263468,7 +263813,7 @@ }, { "question": "BAWAG PSK", - "icon": "./assets/data/nsi/logos/bawagpsk-694ab5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bawagpsk-694ab5.svg", "osmTags": { "and": [ "amenity=bank", @@ -263484,16 +263829,16 @@ }, { "question": "BB&T", - "icon": "./assets/data/nsi/logos/bbandt-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbandt-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Branch Banking and Trust Company", { "or": [ "brand=BB&T", "brand:wikidata=Q95984154", - "name=BB&T" + "name=BB&T", + "official_name=Branch Banking and Trust Company" ] } ] @@ -263501,7 +263846,7 @@ }, { "question": "BBBank", - "icon": "./assets/data/nsi/logos/bbbank-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbbank-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263517,16 +263862,16 @@ }, { "question": "BBVA", - "icon": "./assets/data/nsi/logos/bbva-3d410b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bbva-3d410b.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Bilbao Vizcaya Argentaria", { "or": [ "brand=BBVA", "brand:wikidata=Q806189", - "name=BBVA" + "name=BBVA", + "official_name=Banco Bilbao Vizcaya Argentaria" ] } ] @@ -263534,17 +263879,17 @@ }, { "question": "BBVA (USA)", - "icon": "./assets/data/nsi/logos/bbva-ea2e2d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbva-ea2e2d.svg", "osmTags": { "and": [ "amenity=bank", - "official_name=BBVA USA", { "or": [ "alt_name=BBVA Compass", "brand=BBVA", "brand:wikidata=Q4835088", - "name=BBVA" + "name=BBVA", + "official_name=BBVA USA" ] } ] @@ -263552,7 +263897,7 @@ }, { "question": "BBVA Argentina", - "icon": "./assets/data/nsi/logos/bbvaargentina-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbvaargentina-841353.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263568,7 +263913,7 @@ }, { "question": "BBVA México", - "icon": "./assets/data/nsi/logos/bbvamexico-574575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbvamexico-574575.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263584,7 +263929,7 @@ }, { "question": "BBVA Perú", - "icon": "./assets/data/nsi/logos/bbvaperu-e2ab80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bbvaperu-e2ab80.png", "osmTags": { "and": [ "amenity=bank", @@ -263600,7 +263945,7 @@ }, { "question": "BBVA Provincial", - "icon": "./assets/data/nsi/logos/bbvaprovincial-0269b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbvaprovincial-0269b0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263616,16 +263961,16 @@ }, { "question": "BCC Roma", - "icon": "./assets/data/nsi/logos/bccroma-427c59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bccroma-427c59.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banca di Credito Cooperativo di Roma", { "or": [ "brand=BCC Roma", "brand:wikidata=Q25060394", - "name=BCC Roma" + "name=BCC Roma", + "official_name=Banca di Credito Cooperativo di Roma" ] } ] @@ -263633,11 +263978,10 @@ }, { "question": "BCEE", - "icon": "./assets/data/nsi/logos/bcee-d335b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bcee-d335b6.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Banque et Caisse d'Épargne de l'État", { "or": [ "alt_name=S-Bank", @@ -263645,7 +263989,8 @@ "alt_name:lb=Spuerkeess", "brand=BCEE", "brand:wikidata=Q668996", - "name=BCEE" + "name=BCEE", + "official_name=Banque et Caisse d'Épargne de l'État" ] } ] @@ -263653,16 +263998,16 @@ }, { "question": "BCI (Chile)", - "icon": "./assets/data/nsi/logos/bci-dbf1ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bci-dbf1ad.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de Crédito e Inversiones", { "or": [ "brand=BCI", "brand:wikidata=Q2882083", - "name=BCI" + "name=BCI", + "official_name=Banco de Crédito e Inversiones" ] } ] @@ -263670,16 +264015,16 @@ }, { "question": "BCI (Mozambique)", - "icon": "./assets/data/nsi/logos/bci-1f1dae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bci-1f1dae.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Comercial e de Investimentos", { "or": [ "brand=BCI", "brand:wikidata=Q9645132", - "name=BCI" + "name=BCI", + "official_name=Banco Comercial e de Investimentos" ] } ] @@ -263687,16 +264032,16 @@ }, { "question": "BCP (Bolivia)", - "icon": "./assets/data/nsi/logos/bcp-66977e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcp-66977e.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de Crédito de Bolivia", { "or": [ "brand=BCP", "brand:wikidata=Q16826675", - "name=BCP" + "name=BCP", + "official_name=Banco de Crédito de Bolivia" ] } ] @@ -263704,7 +264049,7 @@ }, { "question": "BCP (France)", - "icon": "./assets/data/nsi/logos/bcp-b30a91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bcp-b30a91.png", "osmTags": { "and": [ "amenity=bank", @@ -263720,7 +264065,7 @@ }, { "question": "BCP (Luxembourg)", - "icon": "./assets/data/nsi/logos/bcp-d335b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bcp-d335b6.png", "osmTags": { "and": [ "amenity=bank", @@ -263736,16 +264081,16 @@ }, { "question": "BCP (Perú)", - "icon": "./assets/data/nsi/logos/bcp-e2ab80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcp-e2ab80.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de Crédito del Perú", { "or": [ "brand=BCP", "brand:wikidata=Q4854124", - "name=BCP" + "name=BCP", + "official_name=Banco de Crédito del Perú" ] } ] @@ -263753,16 +264098,16 @@ }, { "question": "BCR (Banca Comercială Română)", - "icon": "./assets/data/nsi/logos/bcr-9a9a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcr-9a9a30.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banca Comercială Română", { "or": [ "brand=BCR", "brand:wikidata=Q806149", - "name=BCR" + "name=BCR", + "official_name=Banca Comercială Română" ] } ] @@ -263770,16 +264115,16 @@ }, { "question": "BCR (Costa Rica)", - "icon": "./assets/data/nsi/logos/bcr-8702f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcr-8702f4.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de Costa Rica", { "or": [ "brand=BCR", "brand:wikidata=Q6951632", - "name=BCR" + "name=BCR", + "official_name=Banco de Costa Rica" ] } ] @@ -263787,16 +264132,16 @@ }, { "question": "BDC", - "icon": "./assets/data/nsi/logos/bdc-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdc-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Business Development Bank of Canada", { "or": [ "brand=BDC", "brand:wikidata=Q2883027", - "name=BDC" + "name=BDC", + "official_name=Business Development Bank of Canada" ] } ] @@ -263804,20 +264149,20 @@ }, { "question": "BDL, بنك التنمية المحلية", - "icon": "./assets/data/nsi/logos/bdl-47c9bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bdl-47c9bd.png", "osmTags": { "and": [ "amenity=bank", - "official_name=بنك التنمية المحلية", - "official_name:ar=بنك التنمية المحلية", - "official_name:fr=Banque de Développement Local", { "or": [ "brand=بنك التنمية المحلية", "brand:ar=بنك التنمية المحلية", "brand:fr=Banque de Développement Local", "brand:wikidata=Q64410371", - "name=BDL" + "name=BDL", + "official_name=بنك التنمية المحلية", + "official_name:ar=بنك التنمية المحلية", + "official_name:fr=Banque de Développement Local" ] } ] @@ -263825,16 +264170,16 @@ }, { "question": "BDM", - "icon": "./assets/data/nsi/logos/bdm-edd991.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdm-edd991.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banque du Développement du Mali", { "or": [ "brand=BDM", "brand:wikidata=Q2883022", - "name=BDM" + "name=BDM", + "official_name=Banque du Développement du Mali" ] } ] @@ -263842,7 +264187,7 @@ }, { "question": "BdM Banca", - "icon": "./assets/data/nsi/logos/bdmbanca-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdmbanca-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263858,7 +264203,7 @@ }, { "question": "BDO", - "icon": "./assets/data/nsi/logos/bdo-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdo-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263875,7 +264220,7 @@ }, { "question": "BDO Network Bank", - "icon": "./assets/data/nsi/logos/bdonetworkbank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdonetworkbank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263891,7 +264236,7 @@ }, { "question": "BEA (البنك الجزائري الخارجي)", - "icon": "./assets/data/nsi/logos/bea-47c9bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bea-47c9bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263910,7 +264255,7 @@ }, { "question": "BECU", - "icon": "./assets/data/nsi/logos/becu-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/becu-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -263926,7 +264271,7 @@ }, { "question": "Belfius", - "icon": "./assets/data/nsi/logos/belfius-96da90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belfius-96da90.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263942,7 +264287,7 @@ }, { "question": "Bendigo Bank", - "icon": "./assets/data/nsi/logos/bendigobank-f304bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bendigobank-f304bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263958,7 +264303,7 @@ }, { "question": "Beobank", - "icon": "./assets/data/nsi/logos/beobank-96da90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beobank-96da90.jpg", "osmTags": { "and": [ "amenity=bank", @@ -263974,21 +264319,21 @@ }, { "question": "Bereke Bank", - "icon": "./assets/data/nsi/logos/berekebank-033b31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berekebank-033b31.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bereke Bank JSC", - "official_name:en=Bereke Bank JSC", - "official_name:kk=«Bereke Bank» АҚ", - "official_name:ru=АО «Bereke Bank»", { "or": [ "brand=Bereke Bank", "brand:wikidata=Q4153367", "name=Bereke Bank", "name:en=Bereke Bank", - "name:ru=Береке Банк" + "name:ru=Береке Банк", + "official_name=Bereke Bank JSC", + "official_name:en=Bereke Bank JSC", + "official_name:kk=«Bereke Bank» АҚ", + "official_name:ru=АО «Bereke Bank»" ] } ] @@ -263996,7 +264341,7 @@ }, { "question": "Berliner Volksbank", - "icon": "./assets/data/nsi/logos/berlinervolksbank-1180cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinervolksbank-1180cf.png", "osmTags": { "and": [ "amenity=bank", @@ -264012,7 +264357,7 @@ }, { "question": "Berner Kantonalbank", - "icon": "./assets/data/nsi/logos/bernerkantonalbank-74b036.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bernerkantonalbank-74b036.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264035,7 +264380,7 @@ }, { "question": "BGL BNP Paribas", - "icon": "./assets/data/nsi/logos/bglbnpparibas-d335b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bglbnpparibas-d335b6.png", "osmTags": { "and": [ "amenity=bank", @@ -264051,16 +264396,16 @@ }, { "question": "BIAT", - "icon": "./assets/data/nsi/logos/biat-367f6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biat-367f6f.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banque internationale arabe de Tunisie", { "or": [ "brand=BIAT", "brand:wikidata=Q690739", - "name=BIAT" + "name=BIAT", + "official_name=Banque internationale arabe de Tunisie" ] } ] @@ -264068,7 +264413,7 @@ }, { "question": "Bicici", - "icon": "./assets/data/nsi/logos/bicici-720a42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bicici-720a42.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264084,18 +264429,18 @@ }, { "question": "BIDV", - "icon": "./assets/data/nsi/logos/bidv-a28d32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bidv-a28d32.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Ngân hàng Đầu tư và Phát triển Việt Nam", - "official_name:en=Bank for Investment and Development of Vietnam", - "official_name:vi=Ngân hàng Đầu tư và Phát triển Việt Nam", { "or": [ "brand=BIDV", "brand:wikidata=Q1003180", - "name=BIDV" + "name=BIDV", + "official_name=Ngân hàng Đầu tư và Phát triển Việt Nam", + "official_name:en=Bank for Investment and Development of Vietnam", + "official_name:vi=Ngân hàng Đầu tư và Phát triển Việt Nam" ] } ] @@ -264103,7 +264448,7 @@ }, { "question": "Bidvest Bank", - "icon": "./assets/data/nsi/logos/bidvestbank-50d637.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bidvestbank-50d637.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264119,16 +264464,16 @@ }, { "question": "BIL", - "icon": "./assets/data/nsi/logos/bil-d335b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bil-d335b6.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banque Internationale à Luxembourg", { "or": [ "brand=BIL", "brand:wikidata=Q2883404", - "name=BIL" + "name=BIL", + "official_name=Banque Internationale à Luxembourg" ] } ] @@ -264136,16 +264481,16 @@ }, { "question": "BKS Bank", - "icon": "./assets/data/nsi/logos/bksbank-694ab5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bksbank-694ab5.svg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank für Kärnten und Steiermark", { "or": [ "brand=BKS Bank", "brand:wikidata=Q796136", - "name=BKS Bank" + "name=BKS Bank", + "official_name=Bank für Kärnten und Steiermark" ] } ] @@ -264153,7 +264498,7 @@ }, { "question": "Blue Federal Credit Union", - "icon": "./assets/data/nsi/logos/bluefederalcreditunion-406be7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluefederalcreditunion-406be7.svg", "osmTags": { "and": [ "amenity=bank", @@ -264169,13 +264514,10 @@ }, { "question": "BMCE Bank (البنك المغربي للتجارة الخارجية)", - "icon": "./assets/data/nsi/logos/bmcebank-11534a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmcebank-11534a.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=البنك المغربي للتجارة الخارجية", - "official_name:ar=البنك المغربي للتجارة الخارجية", - "official_name:en=Moroccan Bank of Foreign Commerce", { "or": [ "brand=BMCE Bank", @@ -264183,7 +264525,10 @@ "brand:en=BMCE Bank", "brand:wikidata=Q2300433", "name:ar=البنك المغربي للتجارة الخارجية", - "name:en=BMCE Bank" + "name:en=BMCE Bank", + "official_name=البنك المغربي للتجارة الخارجية", + "official_name:ar=البنك المغربي للتجارة الخارجية", + "official_name:en=Moroccan Bank of Foreign Commerce" ] } ] @@ -264191,7 +264536,7 @@ }, { "question": "BMCI (البنك المغربي للتجارة والصناعة)", - "icon": "./assets/data/nsi/logos/bmci-11534a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmci-11534a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264210,16 +264555,16 @@ }, { "question": "BMN", - "icon": "./assets/data/nsi/logos/bmn-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmn-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Mare Nostrum", { "or": [ "brand=BMN", "brand:wikidata=Q3754900", - "name=BMN" + "name=BMN", + "official_name=Banco Mare Nostrum" ] } ] @@ -264227,16 +264572,16 @@ }, { "question": "BMO (Canada)", - "icon": "./assets/data/nsi/logos/bmo-e1345b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bmo-e1345b.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank of Montreal", { "or": [ "brand=BMO", "brand:wikidata=Q806693", - "name=BMO" + "name=BMO", + "official_name=Bank of Montreal" ] } ] @@ -264244,7 +264589,7 @@ }, { "question": "BMO (USA)", - "icon": "./assets/data/nsi/logos/bmo-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bmo-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -264260,16 +264605,16 @@ }, { "question": "BNA (Algeria)", - "icon": "./assets/data/nsi/logos/bna-47c9bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bna-47c9bd.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banque nationale d'Algérie", { "or": [ "brand=BNA", "brand:wikidata=Q2883410", - "name=BNA" + "name=BNA", + "official_name=Banque nationale d'Algérie" ] } ] @@ -264277,7 +264622,7 @@ }, { "question": "BNA (Tunisia)", - "icon": "./assets/data/nsi/logos/bna-367f6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bna-367f6f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264293,16 +264638,16 @@ }, { "question": "BNDA", - "icon": "./assets/data/nsi/logos/bnda-edd991.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnda-edd991.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banque Nationale de Développement Agricole", { "or": [ "brand=BNDA", "brand:wikidata=Q30594734", - "name=BNDA" + "name=BNDA", + "official_name=Banque Nationale de Développement Agricole" ] } ] @@ -264310,16 +264655,16 @@ }, { "question": "BNI", - "icon": "./assets/data/nsi/logos/bni-27dfb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bni-27dfb6.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank Negara Indonesia", { "or": [ "brand=BNI", "brand:wikidata=Q2882611", - "name=BNI" + "name=BNI", + "official_name=Bank Negara Indonesia" ] } ] @@ -264327,16 +264672,16 @@ }, { "question": "BNL", - "icon": "./assets/data/nsi/logos/bnl-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bnl-7b36b5.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Banca Nazionale del Lavoro", { "or": [ "brand=BNL", "brand:wikidata=Q2201225", - "name=BNL" + "name=BNL", + "official_name=Banca Nazionale del Lavoro" ] } ] @@ -264344,7 +264689,7 @@ }, { "question": "BNP Paribas", - "icon": "./assets/data/nsi/logos/bnpparibas-5bc033.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnpparibas-5bc033.svg", "osmTags": { "and": [ "amenity=bank", @@ -264360,7 +264705,7 @@ }, { "question": "BNP Paribas Bank Polska", - "icon": "./assets/data/nsi/logos/bnpparibaspolska-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnpparibaspolska-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264376,7 +264721,7 @@ }, { "question": "BNP Paribas Fortis", - "icon": "./assets/data/nsi/logos/bnpparibasfortis-96da90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnpparibasfortis-96da90.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264392,16 +264737,16 @@ }, { "question": "BOC", - "icon": "./assets/data/nsi/logos/boc-df101c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boc-df101c.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank of China", { "or": [ "brand=BOC", "brand:wikidata=Q790068", - "name=BOC" + "name=BOC", + "official_name=Bank of China" ] } ] @@ -264409,16 +264754,16 @@ }, { "question": "BOM", - "icon": "./assets/data/nsi/logos/bom-f304bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bom-f304bd.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank of Melbourne", { "or": [ "brand=BOM", "brand:wikidata=Q4856151", - "name=BOM" + "name=BOM", + "official_name=Bank of Melbourne" ] } ] @@ -264426,16 +264771,16 @@ }, { "question": "BOQ", - "icon": "./assets/data/nsi/logos/boq-f304bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boq-f304bd.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank of Queensland", { "or": [ "brand=BOQ", "brand:wikidata=Q4856173", - "name=BOQ" + "name=BOQ", + "official_name=Bank of Queensland" ] } ] @@ -264443,16 +264788,16 @@ }, { "question": "BPC", - "icon": "./assets/data/nsi/logos/bpc-706633.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpc-706633.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco de Poupança e Crédito", { "or": [ "brand=BPC", "brand:wikidata=Q4854132", - "name=BPC" + "name=BPC", + "official_name=Banco de Poupança e Crédito" ] } ] @@ -264460,16 +264805,16 @@ }, { "question": "BPER Banca", - "icon": "./assets/data/nsi/logos/bperbanca-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bperbanca-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banca Popolare dell'Emilia Romagna", { "or": [ "brand=BPER Banca", "brand:wikidata=Q806167", - "name=BPER Banca" + "name=BPER Banca", + "official_name=Banca Popolare dell'Emilia Romagna" ] } ] @@ -264477,16 +264822,16 @@ }, { "question": "BPI", - "icon": "./assets/data/nsi/logos/bpi-1f11c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpi-1f11c5.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank of the Philippine Islands", { "or": [ "brand=BPI", "brand:wikidata=Q2501256", - "name=BPI" + "name=BPI", + "official_name=Bank of the Philippine Islands" ] } ] @@ -264494,7 +264839,7 @@ }, { "question": "Bradesco", - "icon": "./assets/data/nsi/logos/bradesco-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bradesco-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264510,7 +264855,7 @@ }, { "question": "BRD", - "icon": "./assets/data/nsi/logos/brd-9a9a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brd-9a9a30.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264526,16 +264871,16 @@ }, { "question": "BRED", - "icon": "./assets/data/nsi/logos/bred-ad79d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bred-ad79d4.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banque régionale d'escompte et de dépôts", { "or": [ "brand=BRED", "brand:wikidata=Q2877455", - "name=BRED" + "name=BRED", + "official_name=Banque régionale d'escompte et de dépôts" ] } ] @@ -264543,16 +264888,16 @@ }, { "question": "BRI", - "icon": "./assets/data/nsi/logos/bri-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bri-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank Rakyat Indonesia", { "or": [ "brand=BRI", "brand:wikidata=Q623042", - "name=BRI" + "name=BRI", + "official_name=Bank Rakyat Indonesia" ] } ] @@ -264560,18 +264905,18 @@ }, { "question": "BTN", - "icon": "./assets/data/nsi/logos/btn-aa7852.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/btn-aa7852.svg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank Tabungan Negara", { "or": [ "brand=BTN", "brand:en=BTN", "brand:id=BTN", "brand:wikidata=Q12474534", - "name=BTN" + "name=BTN", + "official_name=Bank Tabungan Negara" ] } ] @@ -264579,18 +264924,18 @@ }, { "question": "BTPN", - "icon": "./assets/data/nsi/logos/btpn-aa7852.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/btpn-aa7852.svg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank BTPN", { "or": [ "brand=BTPN", "brand:en=BTPN", "brand:id=BTPN", "brand:wikidata=Q12474535", - "name=BTPN" + "name=BTPN", + "official_name=Bank BTPN" ] } ] @@ -264598,16 +264943,16 @@ }, { "question": "BTV", - "icon": "./assets/data/nsi/logos/btv-9ffa74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/btv-9ffa74.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank für Tirol und Vorarlberg", { "or": [ "brand=BTV", "brand:wikidata=Q806665", - "name=BTV" + "name=BTV", + "official_name=Bank für Tirol und Vorarlberg" ] } ] @@ -264615,7 +264960,7 @@ }, { "question": "Budapest Bank", - "icon": "./assets/data/nsi/logos/budapestbank-60884a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/budapestbank-60884a.svg", "osmTags": { "and": [ "amenity=bank", @@ -264631,7 +264976,7 @@ }, { "question": "Busey Bank", - "icon": "./assets/data/nsi/logos/buseybank-8fb7e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/buseybank-8fb7e1.png", "osmTags": { "and": [ "amenity=bank", @@ -264647,7 +264992,7 @@ }, { "question": "BW-Bank", - "icon": "./assets/data/nsi/logos/bwbank-1180cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bwbank-1180cf.png", "osmTags": { "and": [ "amenity=bank", @@ -264684,7 +265029,7 @@ }, { "question": "Byline Bank", - "icon": "./assets/data/nsi/logos/bylinebank-2c73b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bylinebank-2c73b9.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264700,7 +265045,7 @@ }, { "question": "Cadence Bank", - "icon": "./assets/data/nsi/logos/cadencebank-e05e09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cadencebank-e05e09.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264716,7 +265061,7 @@ }, { "question": "Caisse d'Épargne", - "icon": "./assets/data/nsi/logos/caissedepargne-b7a026.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caissedepargne-b7a026.png", "osmTags": { "and": [ "amenity=bank", @@ -264735,13 +265080,13 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Caixa Rural d'Altea", { "or": [ "brand=Caixa Altea", "brand:wikidata=Q115774046", "name=Caixa Altea", - "name:ca=Caixa Altea" + "name:ca=Caixa Altea", + "official_name=Caixa Rural d'Altea" ] } ] @@ -264752,13 +265097,13 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Caixa Rural de Callosa d'en Sarrià", { "or": [ "brand=Caixa Callosa", "brand:wikidata=Q115774219", "name=Caixa Callosa", - "name:ca=Caixa Callosa" + "name:ca=Caixa Callosa", + "official_name=Caixa Rural de Callosa d'en Sarrià" ] } ] @@ -264766,7 +265111,7 @@ }, { "question": "Caixa Econômica Federal (Brasil)", - "icon": "./assets/data/nsi/logos/caixaeconomicafederal-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixaeconomicafederal-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264782,7 +265127,7 @@ }, { "question": "Caixa Geral de Depósitos", - "icon": "./assets/data/nsi/logos/caixageraldedepositos-74f292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixageraldedepositos-74f292.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264799,7 +265144,7 @@ }, { "question": "Caixa Ontinyent", - "icon": "./assets/data/nsi/logos/caixaontinyent-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixaontinyent-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264816,7 +265161,7 @@ }, { "question": "Caixa Popular", - "icon": "./assets/data/nsi/logos/caixapopular-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixapopular-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264832,7 +265177,7 @@ }, { "question": "Caixabank (España)", - "icon": "./assets/data/nsi/logos/caixabank-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caixabank-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264877,7 +265222,7 @@ }, { "question": "Caja España", - "icon": "./assets/data/nsi/logos/cajaespana-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cajaespana-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264893,7 +265238,7 @@ }, { "question": "Caja Rural", - "icon": "./assets/data/nsi/logos/cajarural-ce59ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cajarural-ce59ab.png", "osmTags": { "and": [ "amenity=bank", @@ -264909,7 +265254,7 @@ }, { "question": "Caja Rural de Aragón", - "icon": "./assets/data/nsi/logos/cajaruraldearagon-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cajaruraldearagon-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264925,7 +265270,7 @@ }, { "question": "Caja Rural de Jaén", - "icon": "./assets/data/nsi/logos/cajaruraldejaen-ce59ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cajaruraldejaen-ce59ab.png", "osmTags": { "and": [ "amenity=bank", @@ -264941,7 +265286,7 @@ }, { "question": "Cajamar", - "icon": "./assets/data/nsi/logos/cajamar-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cajamar-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -264957,7 +265302,7 @@ }, { "question": "CajaSur", - "icon": "./assets/data/nsi/logos/cajasur-ce59ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cajasur-ce59ab.png", "osmTags": { "and": [ "amenity=bank", @@ -264973,7 +265318,7 @@ }, { "question": "CalBank", - "icon": "./assets/data/nsi/logos/calbank-9d35ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/calbank-9d35ea.png", "osmTags": { "and": [ "amenity=bank", @@ -264992,7 +265337,7 @@ }, { "question": "California Coast Credit Union", - "icon": "./assets/data/nsi/logos/californiacoastcreditunion-cf92b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiacoastcreditunion-cf92b8.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265008,7 +265353,7 @@ }, { "question": "Camden National Bank", - "icon": "./assets/data/nsi/logos/camdennationalbank-af5f1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camdennationalbank-af5f1b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265024,7 +265369,7 @@ }, { "question": "Canadian Western Bank", - "icon": "./assets/data/nsi/logos/canadianwesternbank-e1345b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canadianwesternbank-e1345b.png", "osmTags": { "and": [ "amenity=bank", @@ -265040,7 +265385,7 @@ }, { "question": "Canandaigua National Bank & Trust", - "icon": "./assets/data/nsi/logos/canandaiguanationalbankandtrust-51c67b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canandaiguanationalbankandtrust-51c67b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265056,7 +265401,7 @@ }, { "question": "Canara Bank", - "icon": "./assets/data/nsi/logos/canarabank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canarabank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265084,7 +265429,7 @@ }, { "question": "Capital Bank", - "icon": "./assets/data/nsi/logos/capitalbank-4b3cf2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalbank-4b3cf2.png", "osmTags": { "and": [ "amenity=bank", @@ -265100,7 +265445,7 @@ }, { "question": "Capital One", - "icon": "./assets/data/nsi/logos/capitalone-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalone-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265130,7 +265475,7 @@ }, { "question": "Capital Small Finance Bank", - "icon": "./assets/data/nsi/logos/capitalsmallfinancebank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalsmallfinancebank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265161,7 +265506,7 @@ }, { "question": "Capitec Bank", - "icon": "./assets/data/nsi/logos/capitecbank-50d637.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitecbank-50d637.svg", "osmTags": { "and": [ "amenity=bank", @@ -265192,7 +265537,7 @@ }, { "question": "Casden", - "icon": "./assets/data/nsi/logos/casden-ad79d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casden-ad79d4.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265208,7 +265553,7 @@ }, { "question": "CatalunyaCaixa", - "icon": "./assets/data/nsi/logos/catalunyacaixa-ce59ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/catalunyacaixa-ce59ab.svg", "osmTags": { "and": [ "amenity=bank", @@ -265224,7 +265569,7 @@ }, { "question": "Cathay Bank", - "icon": "./assets/data/nsi/logos/cathaybank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cathaybank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265240,7 +265585,7 @@ }, { "question": "CBAO", - "icon": "./assets/data/nsi/logos/cbao-a33d3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cbao-a33d3b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265256,7 +265601,7 @@ }, { "question": "CCF", - "icon": "./assets/data/nsi/logos/ccf-b30a91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ccf-b30a91.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265272,7 +265617,7 @@ }, { "question": "CEC Bank", - "icon": "./assets/data/nsi/logos/cecbank-9a9a30.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cecbank-9a9a30.png", "osmTags": { "and": [ "amenity=bank", @@ -265288,7 +265633,7 @@ }, { "question": "Centennial Bank", - "icon": "./assets/data/nsi/logos/centennialbank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centennialbank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -265304,14 +265649,10 @@ }, { "question": "CenterCredit", - "icon": "./assets/data/nsi/logos/bankcentercredit-033b31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankcentercredit-033b31.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank CenterCredit JSC", - "official_name:en=Bank CenterCredit JSC", - "official_name:kk=«Банк ЦентрКредит» АҚ", - "official_name:ru=АО «Банк ЦентрКредит»", { "or": [ "brand=Bank CenterCredit", @@ -265319,7 +265660,11 @@ "name=Bank CenterCredit", "name:en=Bank CenterCredit", "name:kk=Банк ЦентрКредит", - "name:ru=Банк ЦентрКредит" + "name:ru=Банк ЦентрКредит", + "official_name=Bank CenterCredit JSC", + "official_name:en=Bank CenterCredit JSC", + "official_name:kk=«Банк ЦентрКредит» АҚ", + "official_name:ru=АО «Банк ЦентрКредит»" ] } ] @@ -265327,7 +265672,7 @@ }, { "question": "Central Bank", - "icon": "./assets/data/nsi/logos/centralbank-43524a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralbank-43524a.png", "osmTags": { "and": [ "amenity=bank", @@ -265343,7 +265688,7 @@ }, { "question": "Central Bank of India", - "icon": "./assets/data/nsi/logos/centralbankofindia-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralbankofindia-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265359,7 +265704,7 @@ }, { "question": "Česká spořitelna", - "icon": "./assets/data/nsi/logos/ceskasporitelna-7d13c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskasporitelna-7d13c0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265375,7 +265720,7 @@ }, { "question": "Chase", - "icon": "./assets/data/nsi/logos/chase-2a7aac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chase-2a7aac.png", "osmTags": { "and": [ "amenity=bank", @@ -265406,7 +265751,7 @@ }, { "question": "China Bank Savings", - "icon": "./assets/data/nsi/logos/chinabanksavings-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinabanksavings-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265422,7 +265767,7 @@ }, { "question": "China Construction Bank", - "icon": "./assets/data/nsi/logos/chinaconstructionbank-4dfec6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-4dfec6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265439,7 +265784,7 @@ }, { "question": "Chinabank", - "icon": "./assets/data/nsi/logos/chinabank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinabank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265455,7 +265800,7 @@ }, { "question": "CIB Bank", - "icon": "./assets/data/nsi/logos/cibbank-60884a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cibbank-60884a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265471,7 +265816,7 @@ }, { "question": "CIBC", - "icon": "./assets/data/nsi/logos/cibc-e1345b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cibc-e1345b.png", "osmTags": { "and": [ "amenity=bank", @@ -265487,7 +265832,7 @@ }, { "question": "CIC", - "icon": "./assets/data/nsi/logos/cic-b30a91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cic-b30a91.png", "osmTags": { "and": [ "amenity=bank", @@ -265503,7 +265848,7 @@ }, { "question": "CIH Bank (القرض العقاري والسياحي)", - "icon": "./assets/data/nsi/logos/cihbank-11534a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cihbank-11534a.png", "osmTags": { "and": [ "amenity=bank", @@ -265522,7 +265867,7 @@ }, { "question": "CIMB Bank", - "icon": "./assets/data/nsi/logos/cimbbank-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cimbbank-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265538,7 +265883,7 @@ }, { "question": "CIMB Niaga", - "icon": "./assets/data/nsi/logos/cimbniaga-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cimbniaga-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265554,7 +265899,7 @@ }, { "question": "Citadele", - "icon": "./assets/data/nsi/logos/citadele-2d4942.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citadele-2d4942.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265573,7 +265918,7 @@ }, { "question": "Citibank", - "icon": "./assets/data/nsi/logos/citibank-4bddfc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citibank-4bddfc.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265590,7 +265935,7 @@ }, { "question": "Citizens Bank (Eastern USA)", - "icon": "./assets/data/nsi/logos/citizensbank-8621dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citizensbank-8621dd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265607,18 +265952,18 @@ }, { "question": "Citizens Bank (Kentucky)", - "icon": "./assets/data/nsi/logos/citizensbank-485d4a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citizensbank-485d4a.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Citizens National Bank", "short_name=Citizens", { "or": [ "alt_name=Citizens Bank of Kentucky", "brand=Citizens Bank", "brand:wikidata=Q5122711", - "name=Citizens Bank" + "name=Citizens Bank", + "official_name=Citizens National Bank" ] } ] @@ -265626,17 +265971,17 @@ }, { "question": "Citizens Bank (Nepal)", - "icon": "./assets/data/nsi/logos/citizensbank-b0fe63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citizensbank-b0fe63.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Citizens Bank International Ltd.", "short_name=Citizens", { "or": [ "brand=Citizens Bank International", "brand:wikidata=Q13186934", - "name=Citizens Bank" + "name=Citizens Bank", + "official_name=Citizens Bank International Ltd." ] } ] @@ -265659,7 +266004,7 @@ }, { "question": "City National Bank (California-based)", - "icon": "./assets/data/nsi/logos/citynationalbank-2ff887.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citynationalbank-2ff887.png", "osmTags": { "and": [ "amenity=bank", @@ -265675,16 +266020,16 @@ }, { "question": "City National Bank (Florida)", - "icon": "./assets/data/nsi/logos/citynationalbank-622ed0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citynationalbank-622ed0.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=City National Bank of Florida", { "or": [ "brand=City National Bank", "brand:wikidata=Q16958644", - "name=City National Bank" + "name=City National Bank", + "official_name=City National Bank of Florida" ] } ] @@ -265692,7 +266037,7 @@ }, { "question": "City National Bank (West Virginia)", - "icon": "./assets/data/nsi/logos/citynationalbank-3abc7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citynationalbank-3abc7d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265730,7 +266075,7 @@ }, { "question": "CiviBank", - "icon": "./assets/data/nsi/logos/civibank-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/civibank-7b36b5.png", "osmTags": { "and": [ "amenity=bank", @@ -265746,7 +266091,7 @@ }, { "question": "CNEP (الصندوق الوطني للتوفير والاحتياط)", - "icon": "./assets/data/nsi/logos/cnep-47c9bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cnep-47c9bd.png", "osmTags": { "and": [ "amenity=bank", @@ -265768,16 +266113,16 @@ }, { "question": "Coast Capital Savings", - "icon": "./assets/data/nsi/logos/coastcapitalsavings-e1345b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coastcapitalsavings-e1345b.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Coast Capital Savings Federal Credit Union", { "or": [ "brand=Coast Capital Savings", "brand:wikidata=Q5138088", - "name=Coast Capital Savings" + "name=Coast Capital Savings", + "official_name=Coast Capital Savings Federal Credit Union" ] } ] @@ -265785,6 +266130,7 @@ }, { "question": "Columbia Bank (New Jersey)", + "icon": "https://data.mapcomplete.org/nsi//logos/columbiabank-fb7447.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265815,7 +266161,7 @@ }, { "question": "Comerica Bank", - "icon": "./assets/data/nsi/logos/comericabank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comericabank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265831,7 +266177,7 @@ }, { "question": "ComInBank", - "icon": "./assets/data/nsi/logos/cominbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cominbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265851,7 +266197,7 @@ }, { "question": "Commerce Bank", - "icon": "./assets/data/nsi/logos/commercebank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/commercebank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -265867,7 +266213,7 @@ }, { "question": "Commercial Bank of Ceylon", - "icon": "./assets/data/nsi/logos/commercialbankofceylon-358381.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commercialbankofceylon-358381.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265883,7 +266229,7 @@ }, { "question": "Commercial Bank of Ethiopia", - "icon": "./assets/data/nsi/logos/commercialbankofethiopia-60242d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commercialbankofethiopia-60242d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265901,7 +266247,7 @@ }, { "question": "Commerzbank", - "icon": "./assets/data/nsi/logos/commerzbank-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commerzbank-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265917,7 +266263,7 @@ }, { "question": "Commonwealth Bank", - "icon": "./assets/data/nsi/logos/commonwealthbank-2a7aac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthbank-2a7aac.png", "osmTags": { "and": [ "amenity=bank", @@ -265933,7 +266279,7 @@ }, { "question": "Community Bank", - "icon": "./assets/data/nsi/logos/communitybank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communitybank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -265964,7 +266310,7 @@ }, { "question": "Community First Credit Union (Florida)", - "icon": "./assets/data/nsi/logos/communityfirstcreditunion-9ffb0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communityfirstcreditunion-9ffb0f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266014,7 +266360,7 @@ }, { "question": "Consumers Credit Union (Illinois)", - "icon": "./assets/data/nsi/logos/consumerscreditunion-6bd15c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumerscreditunion-6bd15c.png", "osmTags": { "and": [ "amenity=bank", @@ -266030,7 +266376,7 @@ }, { "question": "Consumers Credit Union (Michigan)", - "icon": "./assets/data/nsi/logos/consumerscreditunion-6ca06a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumerscreditunion-6ca06a.png", "osmTags": { "and": [ "amenity=bank", @@ -266046,7 +266392,7 @@ }, { "question": "Converse Bank", - "icon": "./assets/data/nsi/logos/conversebank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conversebank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266068,7 +266414,7 @@ }, { "question": "Corporation Bank", - "icon": "./assets/data/nsi/logos/corporationbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/corporationbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266084,7 +266430,7 @@ }, { "question": "CPA (القرض الشعبي الجزائري)", - "icon": "./assets/data/nsi/logos/cpa-47c9bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cpa-47c9bd.png", "osmTags": { "and": [ "amenity=bank", @@ -266102,7 +266448,7 @@ }, { "question": "CRDB Bank", - "icon": "./assets/data/nsi/logos/crdbbank-e14cdd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/crdbbank-e14cdd.png", "osmTags": { "and": [ "amenity=bank", @@ -266118,16 +266464,16 @@ }, { "question": "Credem", - "icon": "./assets/data/nsi/logos/credem-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/credem-7b36b5.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Credito Emiliano", { "or": [ "brand=Credem", "brand:wikidata=Q3696881", - "name=Credem" + "name=Credem", + "official_name=Credito Emiliano" ] } ] @@ -266135,7 +266481,7 @@ }, { "question": "Credicoop", - "icon": "./assets/data/nsi/logos/credicoop-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/credicoop-841353.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266151,7 +266497,7 @@ }, { "question": "Crédit Agricole", - "icon": "./assets/data/nsi/logos/creditagricole-e0f11e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditagricole-e0f11e.png", "osmTags": { "and": [ "amenity=bank", @@ -266167,7 +266513,7 @@ }, { "question": "Crédit agricole du Maroc (القرض الفلاحي)", - "icon": "./assets/data/nsi/logos/77b207-11534a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/77b207-11534a.png", "osmTags": { "and": [ "amenity=bank", @@ -266187,7 +266533,7 @@ }, { "question": "Crédit Agricole Italia", - "icon": "./assets/data/nsi/logos/creditagricole-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditagricole-7b36b5.png", "osmTags": { "and": [ "amenity=bank", @@ -266203,7 +266549,7 @@ }, { "question": "Crédit Coopératif", - "icon": "./assets/data/nsi/logos/creditcooperatif-b30a91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditcooperatif-b30a91.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266219,7 +266565,7 @@ }, { "question": "Crédit du Maroc (مصرف المغرب)", - "icon": "./assets/data/nsi/logos/baf583-11534a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baf583-11534a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266239,7 +266585,7 @@ }, { "question": "Crédit du Nord", - "icon": "./assets/data/nsi/logos/creditdunord-b30a91.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditdunord-b30a91.svg", "osmTags": { "and": [ "amenity=bank", @@ -266255,7 +266601,7 @@ }, { "question": "Crédit Maritime", - "icon": "./assets/data/nsi/logos/creditmaritime-ad79d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditmaritime-ad79d4.png", "osmTags": { "and": [ "amenity=bank", @@ -266271,7 +266617,7 @@ }, { "question": "Crédit Mutuel", - "icon": "./assets/data/nsi/logos/creditmutuel-b7a026.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditmutuel-b7a026.png", "osmTags": { "and": [ "amenity=bank", @@ -266287,7 +266633,7 @@ }, { "question": "Crédit Mutuel de Bretagne", - "icon": "./assets/data/nsi/logos/creditmutueldebretagne-b30a91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditmutueldebretagne-b30a91.png", "osmTags": { "and": [ "amenity=bank", @@ -266303,7 +266649,7 @@ }, { "question": "Credit Suisse", - "icon": "./assets/data/nsi/logos/creditsuisse-74b036.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditsuisse-74b036.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266319,7 +266665,7 @@ }, { "question": "Crédito Agrícola", - "icon": "./assets/data/nsi/logos/creditoagricola-4028ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditoagricola-4028ed.png", "osmTags": { "and": [ "amenity=bank", @@ -266335,7 +266681,7 @@ }, { "question": "Creditwest Bank", - "icon": "./assets/data/nsi/logos/creditwestbank-c9effc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditwestbank-c9effc.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266351,7 +266697,7 @@ }, { "question": "Crelan", - "icon": "./assets/data/nsi/logos/crelan-96da90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crelan-96da90.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266381,7 +266727,7 @@ }, { "question": "Crnogorska Komercijalna Banka", - "icon": "./assets/data/nsi/logos/crnogorskakomercijalnabanka-529d4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crnogorskakomercijalnabanka-529d4b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266397,7 +266743,7 @@ }, { "question": "Croatia banka", - "icon": "./assets/data/nsi/logos/croatiabanka-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/croatiabanka-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -266413,16 +266759,16 @@ }, { "question": "CSB Bank", - "icon": "./assets/data/nsi/logos/csbbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csbbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Catholic Syrian Bank", { "or": [ "brand=CSB Bank", "brand:wikidata=Q5053244", - "name=CSB Bank" + "name=CSB Bank", + "official_name=Catholic Syrian Bank" ] } ] @@ -266430,7 +266776,7 @@ }, { "question": "ČSOB", - "icon": "./assets/data/nsi/logos/csob-dde967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csob-dde967.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266446,7 +266792,7 @@ }, { "question": "Danske Bank", - "icon": "./assets/data/nsi/logos/danskebank-c75d31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/danskebank-c75d31.png", "osmTags": { "and": [ "amenity=bank", @@ -266462,7 +266808,7 @@ }, { "question": "Davivienda", - "icon": "./assets/data/nsi/logos/davivienda-0357a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/davivienda-0357a0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266478,7 +266824,7 @@ }, { "question": "Dayspring Bank", - "icon": "./assets/data/nsi/logos/dayspringbank-4f9ba3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dayspringbank-4f9ba3.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266494,7 +266840,7 @@ }, { "question": "DBank", - "icon": "./assets/data/nsi/logos/dbank-126296.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dbank-126296.png", "osmTags": { "and": [ "amenity=bank", @@ -266510,7 +266856,7 @@ }, { "question": "DBP", - "icon": "./assets/data/nsi/logos/dbp-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbp-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266526,7 +266872,7 @@ }, { "question": "DBS Bank India", - "icon": "./assets/data/nsi/logos/dbsbankindia-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dbsbankindia-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -266542,7 +266888,7 @@ }, { "question": "Degussa Bank", - "icon": "./assets/data/nsi/logos/degussabank-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/degussabank-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266558,7 +266904,7 @@ }, { "question": "Denizbank", - "icon": "./assets/data/nsi/logos/denizbank-b7a026.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/denizbank-b7a026.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266574,7 +266920,7 @@ }, { "question": "Desjardins", - "icon": "./assets/data/nsi/logos/desjardins-e1345b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/desjardins-e1345b.png", "osmTags": { "and": [ "amenity=bank", @@ -266590,7 +266936,7 @@ }, { "question": "Deutsche Bank", - "icon": "./assets/data/nsi/logos/deutschebank-2a7aac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebank-2a7aac.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266606,7 +266952,7 @@ }, { "question": "Dhanlaxmi Bank", - "icon": "./assets/data/nsi/logos/dhanlaxmibank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dhanlaxmibank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -266636,7 +266982,7 @@ }, { "question": "Digital Federal Credit Union", - "icon": "./assets/data/nsi/logos/digitalfederalcreditunion-f376c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/digitalfederalcreditunion-f376c6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266653,7 +266999,7 @@ }, { "question": "DNB", - "icon": "./assets/data/nsi/logos/dnb-825b55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dnb-825b55.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266668,7 +267014,7 @@ }, { "question": "Dollar Bank", - "icon": "./assets/data/nsi/logos/dollarbank-824f9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dollarbank-824f9e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266684,7 +267030,7 @@ }, { "question": "Dubai Islamic Bank", - "icon": "./assets/data/nsi/logos/dubaiislamicbank-bd7e2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dubaiislamicbank-bd7e2a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266706,7 +267052,7 @@ }, { "question": "East West Bank", - "icon": "./assets/data/nsi/logos/eastwestbank-a566ac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastwestbank-a566ac.png", "osmTags": { "and": [ "amenity=bank", @@ -266726,7 +267072,7 @@ }, { "question": "Eastern Bank", - "icon": "./assets/data/nsi/logos/easternbank-f376c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easternbank-f376c6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266742,7 +267088,7 @@ }, { "question": "EastWest Unibank", - "icon": "./assets/data/nsi/logos/eastwestunibank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastwestunibank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266758,7 +267104,7 @@ }, { "question": "Ecobank", - "icon": "./assets/data/nsi/logos/ecobank-8a3497.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecobank-8a3497.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266774,7 +267120,7 @@ }, { "question": "Ecobank (Ghana)", - "icon": "./assets/data/nsi/logos/ecobank-9d35ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecobank-9d35ea.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266793,7 +267139,7 @@ }, { "question": "Educators Credit Union (Wisconsin)", - "icon": "./assets/data/nsi/logos/educatorscreditunion-347d8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/educatorscreditunion-347d8f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266809,7 +267155,7 @@ }, { "question": "Emirates NBD", - "icon": "./assets/data/nsi/logos/emiratesnbd-d9ce9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emiratesnbd-d9ce9c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266825,7 +267171,7 @@ }, { "question": "Equitas Small Finance Bank", - "icon": "./assets/data/nsi/logos/equitassmallfinancebank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equitassmallfinancebank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -266841,7 +267187,7 @@ }, { "question": "Equity Bank (Congo)", - "icon": "./assets/data/nsi/logos/equitybank-0eac7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-0eac7f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266857,7 +267203,7 @@ }, { "question": "Equity Bank (Kenya)", - "icon": "./assets/data/nsi/logos/equitybank-8efa9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-8efa9d.png", "osmTags": { "and": [ "amenity=bank", @@ -266873,7 +267219,7 @@ }, { "question": "Equity Bank (Rwanda)", - "icon": "./assets/data/nsi/logos/equitybank-41c6c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-41c6c3.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266889,7 +267235,7 @@ }, { "question": "Equity Bank (South Sudan)", - "icon": "./assets/data/nsi/logos/equitybank-158a0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-158a0b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266905,7 +267251,7 @@ }, { "question": "Equity Bank (Tanzania)", - "icon": "./assets/data/nsi/logos/equitybank-e14cdd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-e14cdd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266921,7 +267267,7 @@ }, { "question": "Equity Bank (Uganda)", - "icon": "./assets/data/nsi/logos/equitybank-72d450.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equitybank-72d450.png", "osmTags": { "and": [ "amenity=bank", @@ -266952,7 +267298,7 @@ }, { "question": "Erste Bank", - "icon": "./assets/data/nsi/logos/erstebank-d01b30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erstebank-d01b30.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266968,7 +267314,7 @@ }, { "question": "ESAF Small Finance Bank", - "icon": "./assets/data/nsi/logos/esafsmallfinancebank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esafsmallfinancebank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -266984,7 +267330,7 @@ }, { "question": "ESL Federal Credit Union", - "icon": "./assets/data/nsi/logos/eslfederalcreditunion-51c67b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eslfederalcreditunion-51c67b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267003,10 +267349,6 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Eurasian Bank JSC", - "official_name:en=Eurasian Bank JSC", - "official_name:kk=«Еуразиялық банк» АҚ", - "official_name:ru=АО «Евразийский Банк»", { "or": [ "brand=Eurasian Bank", @@ -267014,7 +267356,11 @@ "name=Eurasian Bank", "name:en=Eurasian Bank", "name:kk=Еуразиялық банк", - "name:ru=Евразийский банк" + "name:ru=Евразийский банк", + "official_name=Eurasian Bank JSC", + "official_name:en=Eurasian Bank JSC", + "official_name:kk=«Еуразиялық банк» АҚ", + "official_name:ru=АО «Евразийский Банк»" ] } ] @@ -267022,7 +267368,7 @@ }, { "question": "Eurobank (Србија)", - "icon": "./assets/data/nsi/logos/eurobank-e9ea45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurobank-e9ea45.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267038,7 +267384,7 @@ }, { "question": "Eurobank Ergasias", - "icon": "./assets/data/nsi/logos/eurobank-158d7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurobank-158d7a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267057,12 +267403,12 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Banco BIC Português", { "or": [ "brand=EuroBic", "brand:wikidata=Q806175", - "name=EuroBic" + "name=EuroBic", + "official_name=Banco BIC Português" ] } ] @@ -267070,7 +267416,7 @@ }, { "question": "Europabank", - "icon": "./assets/data/nsi/logos/europabank-96da90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/europabank-96da90.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267086,7 +267432,7 @@ }, { "question": "Evocabank", - "icon": "./assets/data/nsi/logos/evocabank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evocabank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267108,7 +267454,7 @@ }, { "question": "Farmers National Bank", - "icon": "./assets/data/nsi/logos/farmersnationalbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmersnationalbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267124,7 +267470,7 @@ }, { "question": "Fast Bank", - "icon": "./assets/data/nsi/logos/fastbank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastbank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267167,7 +267513,7 @@ }, { "question": "Federal Bank", - "icon": "./assets/data/nsi/logos/federalbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/federalbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267183,7 +267529,7 @@ }, { "question": "Fibabanka", - "icon": "./assets/data/nsi/logos/fibabanka-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fibabanka-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267199,7 +267545,7 @@ }, { "question": "Fibank", - "icon": "./assets/data/nsi/logos/fibank-126296.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fibank-126296.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267220,7 +267566,7 @@ }, { "question": "Ficohsa", - "icon": "./assets/data/nsi/logos/ficohsa-47ab19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ficohsa-47ab19.png", "osmTags": { "and": [ "amenity=bank", @@ -267236,7 +267582,7 @@ }, { "question": "Fidelity Bank (Ghana)", - "icon": "./assets/data/nsi/logos/fidelitybank-9d35ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-9d35ea.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267255,7 +267601,7 @@ }, { "question": "Fidelity Bank (Kansas)", - "icon": "./assets/data/nsi/logos/fidelitybank-40cba0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-40cba0.svg", "osmTags": { "and": [ "amenity=bank", @@ -267271,7 +267617,7 @@ }, { "question": "Fidelity Bank (Louisiana)", - "icon": "./assets/data/nsi/logos/fidelitybank-2214b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-2214b7.png", "osmTags": { "and": [ "amenity=bank", @@ -267287,7 +267633,7 @@ }, { "question": "Fidelity Bank (Massachusetts)", - "icon": "./assets/data/nsi/logos/fidelitybank-1bf72c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-1bf72c.png", "osmTags": { "and": [ "amenity=bank", @@ -267303,7 +267649,7 @@ }, { "question": "Fidelity Bank (NC/SC/VA)", - "icon": "./assets/data/nsi/logos/fidelitybank-5f055b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-5f055b.svg", "osmTags": { "and": [ "amenity=bank", @@ -267319,7 +267665,7 @@ }, { "question": "Fidelity Bank (Nigeria)", - "icon": "./assets/data/nsi/logos/fidelitybank-db0de1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-db0de1.png", "osmTags": { "and": [ "amenity=bank", @@ -267335,7 +267681,7 @@ }, { "question": "Fidelity Bank (Pennsylvania)", - "icon": "./assets/data/nsi/logos/fidelitybank-7bc61e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybank-7bc61e.svg", "osmTags": { "and": [ "amenity=bank", @@ -267351,7 +267697,7 @@ }, { "question": "Fidelity Bank & Trust", - "icon": "./assets/data/nsi/logos/fidelitybankandtrust-9c627e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelitybankandtrust-9c627e.png", "osmTags": { "and": [ "amenity=bank", @@ -267367,7 +267713,7 @@ }, { "question": "Fifth Third Bank", - "icon": "./assets/data/nsi/logos/fifththirdbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fifththirdbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267384,7 +267730,7 @@ }, { "question": "Fineco", - "icon": "./assets/data/nsi/logos/fineco-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fineco-7b36b5.png", "osmTags": { "and": [ "amenity=bank", @@ -267400,7 +267746,7 @@ }, { "question": "Fintro", - "icon": "./assets/data/nsi/logos/fintro-96da90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fintro-96da90.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267416,7 +267762,7 @@ }, { "question": "Fio banka", - "icon": "./assets/data/nsi/logos/fiobanka-dde967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiobanka-dde967.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267432,7 +267778,7 @@ }, { "question": "First Abu Dhabi Bank", - "icon": "./assets/data/nsi/logos/firstabudhabibank-d9ce9c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstabudhabibank-d9ce9c.svg", "osmTags": { "and": [ "amenity=bank", @@ -267470,7 +267816,7 @@ }, { "question": "First Bank (North and South Carolina)", - "icon": "./assets/data/nsi/logos/firstbank-96a776.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstbank-96a776.png", "osmTags": { "and": [ "amenity=bank", @@ -267486,7 +267832,7 @@ }, { "question": "First Bank (Puerto Rico)", - "icon": "./assets/data/nsi/logos/firstbank-9794e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstbank-9794e6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267502,7 +267848,7 @@ }, { "question": "First Bank (Western USA)", - "icon": "./assets/data/nsi/logos/firstbank-b6cd24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstbank-b6cd24.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267519,7 +267865,7 @@ }, { "question": "First Citizens Bank (Trinidad and Tobago)", - "icon": "./assets/data/nsi/logos/firstcitizensbank-ffbbe8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcitizensbank-ffbbe8.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267535,7 +267881,7 @@ }, { "question": "First Citizens Bank (USA)", - "icon": "./assets/data/nsi/logos/firstcitizensbank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcitizensbank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -267551,7 +267897,7 @@ }, { "question": "First Commonwealth Bank", - "icon": "./assets/data/nsi/logos/firstcommonwealthbank-b6467d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcommonwealthbank-b6467d.png", "osmTags": { "and": [ "amenity=bank", @@ -267583,7 +267929,7 @@ }, { "question": "First Community Credit Union", - "icon": "./assets/data/nsi/logos/firstcommunitycreditunion-4ac31a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcommunitycreditunion-4ac31a.png", "osmTags": { "and": [ "amenity=bank", @@ -267629,7 +267975,7 @@ }, { "question": "First Financial Bank", - "icon": "./assets/data/nsi/logos/firstfinancialbank-c8207a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstfinancialbank-c8207a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267645,7 +267991,7 @@ }, { "question": "First Horizon Bank", - "icon": "./assets/data/nsi/logos/firsthorizonbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firsthorizonbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267661,7 +268007,7 @@ }, { "question": "First Interstate Bank", - "icon": "./assets/data/nsi/logos/firstinterstatebank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstinterstatebank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267692,7 +268038,7 @@ }, { "question": "First National Bank (Ghana)", - "icon": "./assets/data/nsi/logos/firstnationalbank-9d35ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstnationalbank-9d35ea.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267742,7 +268088,7 @@ }, { "question": "First National Bank of Long Island", - "icon": "./assets/data/nsi/logos/firstnationalbankoflongisland-51c67b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstnationalbankoflongisland-51c67b.png", "osmTags": { "and": [ "amenity=bank", @@ -267758,7 +268104,7 @@ }, { "question": "First National Bank of Scotia", - "icon": "./assets/data/nsi/logos/firstnationalbankofscotia-9d21b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstnationalbankofscotia-9d21b1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267819,7 +268165,7 @@ }, { "question": "First Security Bank (Arkansas)", - "icon": "./assets/data/nsi/logos/firstsecuritybank-76df1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstsecuritybank-76df1a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267835,7 +268181,7 @@ }, { "question": "First Security Bank (Montana)", - "icon": "./assets/data/nsi/logos/firstsecuritybank-d96d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstsecuritybank-d96d23.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267851,7 +268197,7 @@ }, { "question": "First State Bank (East Nebraska)", - "icon": "./assets/data/nsi/logos/firststatebank-fa34d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-fa34d1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267867,7 +268213,7 @@ }, { "question": "First State Bank (Florida)", - "icon": "./assets/data/nsi/logos/firststatebank-12ddb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-12ddb3.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267883,7 +268229,7 @@ }, { "question": "First State Bank (Illinois)", - "icon": "./assets/data/nsi/logos/firststatebank-6bd15c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-6bd15c.png", "osmTags": { "and": [ "amenity=bank", @@ -267899,7 +268245,7 @@ }, { "question": "First State Bank (Michigan)", - "icon": "./assets/data/nsi/logos/firststatebank-6ca06a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-6ca06a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267915,7 +268261,7 @@ }, { "question": "First State Bank (Mississippi)", - "icon": "./assets/data/nsi/logos/firststatebank-f6b900.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-f6b900.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267946,7 +268292,7 @@ }, { "question": "First State Bank (Texas)", - "icon": "./assets/data/nsi/logos/firststatebank-718014.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firststatebank-718014.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267962,7 +268308,7 @@ }, { "question": "First Tech Federal Credit Union", - "icon": "./assets/data/nsi/logos/firsttechfederalcreditunion-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firsttechfederalcreditunion-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267978,7 +268324,7 @@ }, { "question": "First United Bank", - "icon": "./assets/data/nsi/logos/firstunitedbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstunitedbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -267995,7 +268341,7 @@ }, { "question": "First West Credit Union", - "icon": "./assets/data/nsi/logos/firstwestcreditunion-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstwestcreditunion-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268012,7 +268358,7 @@ }, { "question": "FirstBank Ghana", - "icon": "./assets/data/nsi/logos/firstbankghana-9d35ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstbankghana-9d35ea.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268031,7 +268377,7 @@ }, { "question": "Flagstar Bank", - "icon": "./assets/data/nsi/logos/flagstarbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flagstarbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268047,16 +268393,16 @@ }, { "question": "FNB (South Africa)", - "icon": "./assets/data/nsi/logos/fnb-154feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fnb-154feb.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=First National Bank", { "or": [ "brand=FNB", "brand:wikidata=Q3072956", - "name=FNB" + "name=FNB", + "official_name=First National Bank" ] } ] @@ -268064,16 +268410,16 @@ }, { "question": "FNBO", - "icon": "./assets/data/nsi/logos/fnbo-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fnbo-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=First National Bank of Omaha", { "or": [ "brand=FNBO", "brand:wikidata=Q5453412", - "name=FNBO" + "name=FNBO", + "official_name=First National Bank of Omaha" ] } ] @@ -268081,7 +268427,7 @@ }, { "question": "ForteBank", - "icon": "./assets/data/nsi/logos/fortebank-033b31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortebank-033b31.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268097,19 +268443,19 @@ }, { "question": "Freedom Bank", - "icon": "./assets/data/nsi/logos/freedombank-033b31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/freedombank-033b31.png", "osmTags": { "and": [ "amenity=bank", - "official_name:kk=«Банк Фридом Финанс Қазақстан» АҚ", - "official_name:ru=АО «Банк Фридом Финанс Казахстан»", { "or": [ "brand=Freedom Bank", "brand:wikidata=Q21843099", "name=Freedom Bank", "name:en=Freedom Bank", - "name:ru=Фридом Банк" + "name:ru=Фридом Банк", + "official_name:kk=«Банк Фридом Финанс Қазақстан» АҚ", + "official_name:ru=АО «Банк Фридом Финанс Казахстан»" ] } ] @@ -268117,7 +268463,7 @@ }, { "question": "Frost Bank", - "icon": "./assets/data/nsi/logos/frostbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frostbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268148,7 +268494,7 @@ }, { "question": "Galicia", - "icon": "./assets/data/nsi/logos/galicia-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/galicia-841353.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268164,7 +268510,7 @@ }, { "question": "Garanti BBVA", - "icon": "./assets/data/nsi/logos/garantibankasi-4dfec6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/garantibankasi-4dfec6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268180,7 +268526,7 @@ }, { "question": "GCB Bank", - "icon": "./assets/data/nsi/logos/gcbbank-9d35ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gcbbank-9d35ea.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268200,7 +268546,7 @@ }, { "question": "German American", - "icon": "./assets/data/nsi/logos/germanamerican-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/germanamerican-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268216,7 +268562,7 @@ }, { "question": "Getin Bank", - "icon": "./assets/data/nsi/logos/getinbank-68054b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/getinbank-68054b.png", "osmTags": { "and": [ "amenity=bank", @@ -268232,7 +268578,7 @@ }, { "question": "Glarner Kantonalbank", - "icon": "./assets/data/nsi/logos/glarnerkantonalbank-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/glarnerkantonalbank-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -268249,7 +268595,7 @@ }, { "question": "Global Credit Union", - "icon": "./assets/data/nsi/logos/globalcreditunion-8159d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globalcreditunion-8159d3.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268265,7 +268611,7 @@ }, { "question": "GNB Sudameris", - "icon": "./assets/data/nsi/logos/gnbsudameris-d049bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gnbsudameris-d049bf.png", "osmTags": { "and": [ "amenity=bank", @@ -268281,7 +268627,7 @@ }, { "question": "Golden 1 Credit Union", - "icon": "./assets/data/nsi/logos/golden1creditunion-cf92b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/golden1creditunion-cf92b8.png", "osmTags": { "and": [ "amenity=bank", @@ -268297,7 +268643,7 @@ }, { "question": "Graubündner Kantonalbank", - "icon": "./assets/data/nsi/logos/graubundnerkantonalbank-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/graubundnerkantonalbank-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -268335,7 +268681,7 @@ }, { "question": "GreenState Credit Union", - "icon": "./assets/data/nsi/logos/greenstatecreditunion-9a0c47.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenstatecreditunion-9a0c47.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268351,7 +268697,7 @@ }, { "question": "Groupama", - "icon": "./assets/data/nsi/logos/groupama-c6d1da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupama-c6d1da.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268367,16 +268713,16 @@ }, { "question": "GT Bank", - "icon": "./assets/data/nsi/logos/gtbank-b3c39a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gtbank-b3c39a.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Guaranty Trust Bank", { "or": [ "brand=GT Bank", "brand:wikidata=Q579747", - "name=GT Bank" + "name=GT Bank", + "official_name=Guaranty Trust Bank" ] } ] @@ -268384,7 +268730,7 @@ }, { "question": "Gulf Coast Bank & Trust", - "icon": "./assets/data/nsi/logos/gulfcoastbankandtrust-2214b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gulfcoastbankandtrust-2214b7.png", "osmTags": { "and": [ "amenity=bank", @@ -268400,7 +268746,7 @@ }, { "question": "Halifax", - "icon": "./assets/data/nsi/logos/halifax-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halifax-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268416,7 +268762,7 @@ }, { "question": "Halkbank", - "icon": "./assets/data/nsi/logos/halkbank-a30806.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/halkbank-a30806.svg", "osmTags": { "and": [ "amenity=bank", @@ -268432,7 +268778,7 @@ }, { "question": "Halkbank (Србија)", - "icon": "./assets/data/nsi/logos/halkbank-e9ea45.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/halkbank-e9ea45.svg", "osmTags": { "and": [ "amenity=bank", @@ -268450,12 +268796,10 @@ }, { "question": "Halyk Bank", - "icon": "./assets/data/nsi/logos/halykbank-93fd52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halykbank-93fd52.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name:kk=«Қазақстан Халық Банкі» АҚ", - "official_name:ru=АО «Народный Банк Казахстана»", "old_name=Народный банк", { "or": [ @@ -268464,7 +268808,9 @@ "name=Halyk Bank", "name:en=Halyk Bank", "name:kk=Халық Банкі", - "name:ru=Халык банк" + "name:ru=Халык банк", + "official_name:kk=«Қазақстан Халық Банкі» АҚ", + "official_name:ru=АО «Народный Банк Казахстана»" ] } ] @@ -268472,7 +268818,7 @@ }, { "question": "Hamburger Sparkasse", - "icon": "./assets/data/nsi/logos/hamburgersparkasse-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamburgersparkasse-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268504,7 +268850,7 @@ }, { "question": "Hancock Whitney", - "icon": "./assets/data/nsi/logos/hancockwhitney-78aa9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hancockwhitney-78aa9a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268520,7 +268866,7 @@ }, { "question": "Handelsbanken", - "icon": "./assets/data/nsi/logos/handelsbanken-1834eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/handelsbanken-1834eb.png", "osmTags": { "and": [ "amenity=bank", @@ -268551,7 +268897,7 @@ }, { "question": "Hatton National Bank", - "icon": "./assets/data/nsi/logos/hattonnationalbank-358381.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hattonnationalbank-358381.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268568,7 +268914,7 @@ }, { "question": "Hawaiian First Bank", - "icon": "./assets/data/nsi/logos/hawaiianfirstbank-ae6ba2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiianfirstbank-ae6ba2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268584,7 +268930,7 @@ }, { "question": "HBL Bank (ایچ بی ایل پاکستان)", - "icon": "./assets/data/nsi/logos/hblbank-da5806.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hblbank-da5806.png", "osmTags": { "and": [ "amenity=bank", @@ -268604,7 +268950,7 @@ }, { "question": "HDFC Bank", - "icon": "./assets/data/nsi/logos/hdfcbank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hdfcbank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -268621,16 +268967,16 @@ }, { "question": "Heartland Bank (Illinois)", - "icon": "./assets/data/nsi/logos/heartlandbank-6bd15c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heartlandbank-6bd15c.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Heartland Bank and Trust Company", { "or": [ "brand=Heartland Bank", "brand:wikidata=Q109870322", - "name=Heartland Bank" + "name=Heartland Bank", + "official_name=Heartland Bank and Trust Company" ] } ] @@ -268655,7 +269001,7 @@ }, { "question": "Heritage Bank (Australia)", - "icon": "./assets/data/nsi/logos/heritagebank-f304bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heritagebank-f304bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268685,7 +269031,7 @@ }, { "question": "Heritage Bank (Kentucky)", - "icon": "./assets/data/nsi/logos/heritagebank-6787e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heritagebank-6787e9.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268701,7 +269047,7 @@ }, { "question": "Heritage Bank (Nigeria)", - "icon": "./assets/data/nsi/logos/heritagebank-db0de1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heritagebank-db0de1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268717,7 +269063,7 @@ }, { "question": "Heritage Bank (Northwest USA)", - "icon": "./assets/data/nsi/logos/heritagebank-c20fa5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heritagebank-c20fa5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268733,7 +269079,7 @@ }, { "question": "HNB", - "icon": "./assets/data/nsi/logos/hnb-358381.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hnb-358381.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268749,7 +269095,7 @@ }, { "question": "Home Credit Bank", - "icon": "./assets/data/nsi/logos/homecreditbank-033b31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homecreditbank-033b31.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268765,7 +269111,7 @@ }, { "question": "HomeStreet Bank", - "icon": "./assets/data/nsi/logos/homestreetbank-80e3ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homestreetbank-80e3ed.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268781,7 +269127,7 @@ }, { "question": "Hong Leong Bank", - "icon": "./assets/data/nsi/logos/hongleongbank-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongleongbank-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268801,7 +269147,7 @@ }, { "question": "Horizon Credit Union", - "icon": "./assets/data/nsi/logos/horizoncreditunion-420495.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/horizoncreditunion-420495.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268817,7 +269163,7 @@ }, { "question": "Hrvatska poštanska banka", - "icon": "./assets/data/nsi/logos/hrvatskapostanskabanka-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hrvatskapostanskabanka-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -268834,7 +269180,7 @@ }, { "question": "HSBC (Global)", - "icon": "./assets/data/nsi/logos/hsbc-e7b32e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbc-e7b32e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268850,7 +269196,7 @@ }, { "question": "HSBC Armenia", - "icon": "./assets/data/nsi/logos/hsbc-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbc-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268872,7 +269218,7 @@ }, { "question": "HSBC UK", - "icon": "./assets/data/nsi/logos/hsbcuk-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbcuk-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268888,7 +269234,7 @@ }, { "question": "Huntington Bank", - "icon": "./assets/data/nsi/logos/huntingtonbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntingtonbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268904,7 +269250,7 @@ }, { "question": "HypoVereinsbank", - "icon": "./assets/data/nsi/logos/hypovereinsbank-1180cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hypovereinsbank-1180cf.png", "osmTags": { "and": [ "amenity=bank", @@ -268920,7 +269266,7 @@ }, { "question": "Ibercaja", - "icon": "./assets/data/nsi/logos/ibercaja-ce59ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ibercaja-ce59ab.png", "osmTags": { "and": [ "amenity=bank", @@ -268936,7 +269282,7 @@ }, { "question": "IBK기업은행", - "icon": "./assets/data/nsi/logos/industrialbankofkorea-10d607.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/industrialbankofkorea-10d607.svg", "osmTags": { "and": [ "amenity=bank", @@ -268956,7 +269302,7 @@ }, { "question": "ICBC", - "icon": "./assets/data/nsi/logos/icbc-6e2e2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icbc-6e2e2c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -268972,7 +269318,7 @@ }, { "question": "ICICI Bank", - "icon": "./assets/data/nsi/logos/icicibank-4f7c25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/icicibank-4f7c25.png", "osmTags": { "and": [ "amenity=bank", @@ -268989,7 +269335,7 @@ }, { "question": "ID Bank", - "icon": "./assets/data/nsi/logos/idbank-9c44ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idbank-9c44ae.png", "osmTags": { "and": [ "amenity=bank", @@ -269008,7 +269354,7 @@ }, { "question": "IDBI Bank", - "icon": "./assets/data/nsi/logos/idbibank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idbibank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269025,7 +269371,7 @@ }, { "question": "Idea Bank (România)", - "icon": "./assets/data/nsi/logos/ideabank-9a9a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ideabank-9a9a30.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269041,7 +269387,7 @@ }, { "question": "Idea Bank (Україна)", - "icon": "./assets/data/nsi/logos/ideabank-c8dc19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ideabank-c8dc19.png", "osmTags": { "and": [ "amenity=bank", @@ -269061,7 +269407,7 @@ }, { "question": "IDFC First Bank", - "icon": "./assets/data/nsi/logos/idfcfirstbank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idfcfirstbank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -269077,7 +269423,7 @@ }, { "question": "İktisatbank", - "icon": "./assets/data/nsi/logos/iktisatbank-c9effc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iktisatbank-c9effc.png", "osmTags": { "and": [ "amenity=bank", @@ -269093,7 +269439,7 @@ }, { "question": "Imex banka", - "icon": "./assets/data/nsi/logos/imexbanka-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/imexbanka-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -269109,7 +269455,7 @@ }, { "question": "Inbursa", - "icon": "./assets/data/nsi/logos/inbursa-574575.png", + "icon": "https://data.mapcomplete.org/nsi//logos/inbursa-574575.png", "osmTags": { "and": [ "amenity=bank", @@ -269125,7 +269471,7 @@ }, { "question": "India Post Payments Bank", - "icon": "./assets/data/nsi/logos/indiapostpaymentsbank-34f411.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/indiapostpaymentsbank-34f411.svg", "osmTags": { "and": [ "amenity=bank", @@ -269145,7 +269491,7 @@ }, { "question": "Indian Bank", - "icon": "./assets/data/nsi/logos/indianbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269161,7 +269507,7 @@ }, { "question": "Indian Overseas Bank", - "icon": "./assets/data/nsi/logos/indianoverseasbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianoverseasbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269177,7 +269523,7 @@ }, { "question": "IndusInd Bank", - "icon": "./assets/data/nsi/logos/indusindbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indusindbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269193,7 +269539,7 @@ }, { "question": "Inecobank", - "icon": "./assets/data/nsi/logos/inecobank-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inecobank-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269215,7 +269561,7 @@ }, { "question": "ING", - "icon": "./assets/data/nsi/logos/ing-2a7aac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ing-2a7aac.png", "osmTags": { "and": [ "amenity=bank", @@ -269231,7 +269577,7 @@ }, { "question": "ING Bank Śląski", - "icon": "./assets/data/nsi/logos/ingbankslaski-68054b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ingbankslaski-68054b.png", "osmTags": { "and": [ "amenity=bank", @@ -269247,7 +269593,7 @@ }, { "question": "Interbank (Perú)", - "icon": "./assets/data/nsi/logos/interbank-e2ab80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/interbank-e2ab80.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269263,7 +269609,7 @@ }, { "question": "InterBank (USA)", - "icon": "./assets/data/nsi/logos/interbank-18c2ac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/interbank-18c2ac.svg", "osmTags": { "and": [ "amenity=bank", @@ -269279,7 +269625,7 @@ }, { "question": "International Asset Bank", - "icon": "./assets/data/nsi/logos/internationalassetbank-126296.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/internationalassetbank-126296.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269295,7 +269641,7 @@ }, { "question": "Intesa Sanpaolo", - "icon": "./assets/data/nsi/logos/intesasanpaolo-efe23b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/intesasanpaolo-efe23b.png", "osmTags": { "and": [ "amenity=bank", @@ -269326,7 +269672,7 @@ }, { "question": "Ipak Yoʻli banki", - "icon": "./assets/data/nsi/logos/db7b15-99790d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/db7b15-99790d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269342,7 +269688,7 @@ }, { "question": "Iran Zamin Bank", - "icon": "./assets/data/nsi/logos/iranzaminbank-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iranzaminbank-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269362,7 +269708,7 @@ }, { "question": "İşbank", - "icon": "./assets/data/nsi/logos/isbank-b4c574.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/isbank-b4c574.svg", "osmTags": { "and": [ "amenity=bank", @@ -269378,7 +269724,7 @@ }, { "question": "Istarska kreditna banka Umag", - "icon": "./assets/data/nsi/logos/istarskakreditnabankaumag-6f3d3b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/istarskakreditnabankaumag-6f3d3b.svg", "osmTags": { "and": [ "amenity=bank", @@ -269394,7 +269740,7 @@ }, { "question": "Itaú", - "icon": "./assets/data/nsi/logos/itau-1923f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itau-1923f1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269410,7 +269756,7 @@ }, { "question": "Itaú Corpbanca", - "icon": "./assets/data/nsi/logos/itau-891146.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itau-891146.svg", "osmTags": { "and": [ "amenity=bank", @@ -269426,7 +269772,7 @@ }, { "question": "J&T Banka", - "icon": "./assets/data/nsi/logos/jandtbanka-9e9a79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jandtbanka-9e9a79.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269457,7 +269803,7 @@ }, { "question": "Jana Small Finance Bank", - "icon": "./assets/data/nsi/logos/janasmallfinancebank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/janasmallfinancebank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269473,7 +269819,7 @@ }, { "question": "JAバンク", - "icon": "./assets/data/nsi/logos/jabank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jabank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -269494,7 +269840,7 @@ }, { "question": "Jusan", - "icon": "./assets/data/nsi/logos/jusan-033b31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jusan-033b31.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269510,7 +269856,7 @@ }, { "question": "Jyske Bank", - "icon": "./assets/data/nsi/logos/jyskebank-cc27e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jyskebank-cc27e5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269526,7 +269872,7 @@ }, { "question": "K&H Bank", - "icon": "./assets/data/nsi/logos/kandhbank-60884a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kandhbank-60884a.png", "osmTags": { "and": [ "amenity=bank", @@ -269542,7 +269888,7 @@ }, { "question": "Karafarin Bank", - "icon": "./assets/data/nsi/logos/karafarinbank-cdfa72.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/karafarinbank-cdfa72.svg", "osmTags": { "and": [ "amenity=bank", @@ -269562,7 +269908,7 @@ }, { "question": "Karlovačka banka", - "icon": "./assets/data/nsi/logos/karlovackabanka-6f3d3b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlovackabanka-6f3d3b.svg", "osmTags": { "and": [ "amenity=bank", @@ -269578,7 +269924,7 @@ }, { "question": "Karnataka Bank", - "icon": "./assets/data/nsi/logos/karnatakabank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karnatakabank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269594,7 +269940,7 @@ }, { "question": "Karnataka Gramin Bank", - "icon": "./assets/data/nsi/logos/karnatakagraminbank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/karnatakagraminbank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -269610,7 +269956,7 @@ }, { "question": "Karnataka Vikas Grameena Bank", - "icon": "./assets/data/nsi/logos/karnatakavikasgrameenabank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karnatakavikasgrameenabank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269627,7 +269973,7 @@ }, { "question": "Karur Vysya Bank", - "icon": "./assets/data/nsi/logos/karurvysyabank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/karurvysyabank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -269643,7 +269989,7 @@ }, { "question": "Kasa Stefczyka", - "icon": "./assets/data/nsi/logos/kasastefczyka-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kasastefczyka-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269674,7 +270020,7 @@ }, { "question": "KBC", - "icon": "./assets/data/nsi/logos/kbc-09ee8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kbc-09ee8b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269690,7 +270036,7 @@ }, { "question": "KBZ Bank", - "icon": "./assets/data/nsi/logos/kbzbank-ac4544.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kbzbank-ac4544.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269706,7 +270052,7 @@ }, { "question": "KB국민은행", - "icon": "./assets/data/nsi/logos/kbkookminbank-10d607.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kbkookminbank-10d607.png", "osmTags": { "and": [ "amenity=bank", @@ -269726,7 +270072,7 @@ }, { "question": "KentBank", - "icon": "./assets/data/nsi/logos/kentbank-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentbank-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -269742,7 +270088,7 @@ }, { "question": "Kerala Gramin Bank", - "icon": "./assets/data/nsi/logos/keralagraminbank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keralagraminbank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -269758,7 +270104,7 @@ }, { "question": "KeyBank", - "icon": "./assets/data/nsi/logos/keybank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keybank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -269774,7 +270120,7 @@ }, { "question": "Kiwibank", - "icon": "./assets/data/nsi/logos/kiwibank-279fc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiwibank-279fc5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269790,7 +270136,7 @@ }, { "question": "Komercijalna banka", - "icon": "./assets/data/nsi/logos/komercijalnabanka-0c399e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komercijalnabanka-0c399e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269806,7 +270152,7 @@ }, { "question": "Komerční banka", - "icon": "./assets/data/nsi/logos/komercnibanka-7d13c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komercnibanka-7d13c0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269822,7 +270168,7 @@ }, { "question": "Koopbank", - "icon": "./assets/data/nsi/logos/koopbank-c9effc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koopbank-c9effc.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269838,7 +270184,7 @@ }, { "question": "Kotak Mahindra Bank", - "icon": "./assets/data/nsi/logos/kotakmahindrabank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kotakmahindrabank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -269869,7 +270215,7 @@ }, { "question": "KredoBank", - "icon": "./assets/data/nsi/logos/kredobank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kredobank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269904,7 +270250,7 @@ }, { "question": "Kutxabank", - "icon": "./assets/data/nsi/logos/kutxabank-ce59ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kutxabank-ce59ab.png", "osmTags": { "and": [ "amenity=bank", @@ -269920,7 +270266,7 @@ }, { "question": "Kuveyt Türk", - "icon": "./assets/data/nsi/logos/kuveytturk-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuveytturk-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269936,7 +270282,7 @@ }, { "question": "La Banque Postale", - "icon": "./assets/data/nsi/logos/labanquepostale-ad79d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/labanquepostale-ad79d4.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269952,7 +270298,7 @@ }, { "question": "La Caixa", - "icon": "./assets/data/nsi/logos/lacaixa-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacaixa-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269968,7 +270314,7 @@ }, { "question": "Laboral Kutxa", - "icon": "./assets/data/nsi/logos/laboralkutxa-ce59ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laboralkutxa-ce59ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -269984,7 +270330,7 @@ }, { "question": "Lake Michigan Credit Union", - "icon": "./assets/data/nsi/logos/lakemichigancreditunion-985922.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lakemichigancreditunion-985922.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270001,7 +270347,7 @@ }, { "question": "Landbank", - "icon": "./assets/data/nsi/logos/landbank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landbank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270017,7 +270363,7 @@ }, { "question": "Landmark Credit Union (Wisconsin)", - "icon": "./assets/data/nsi/logos/landmarkcreditunion-347d8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landmarkcreditunion-347d8f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270033,7 +270379,7 @@ }, { "question": "LBS", - "icon": "./assets/data/nsi/logos/lbs-1180cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lbs-1180cf.svg", "osmTags": { "and": [ "amenity=bank", @@ -270049,7 +270395,7 @@ }, { "question": "LCL", - "icon": "./assets/data/nsi/logos/lcl-ad79d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lcl-ad79d4.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270065,17 +270411,17 @@ }, { "question": "LCNB", - "icon": "./assets/data/nsi/logos/lcnb-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lcnb-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=LCNB National Bank", { "or": [ "alt_name=Lebanon Citizens National Bank", "brand=LCNB", "brand:wikidata=Q65095575", - "name=LCNB" + "name=LCNB", + "official_name=LCNB National Bank" ] } ] @@ -270083,7 +270429,7 @@ }, { "question": "Leeds Building Society", - "icon": "./assets/data/nsi/logos/leedsbuildingsociety-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leedsbuildingsociety-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270099,7 +270445,7 @@ }, { "question": "Liberbank", - "icon": "./assets/data/nsi/logos/liberbank-ce59ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/liberbank-ce59ab.svg", "osmTags": { "and": [ "amenity=bank", @@ -270115,7 +270461,7 @@ }, { "question": "Liberty Bank (Connecticut)", - "icon": "./assets/data/nsi/logos/libertybank-9baf35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libertybank-9baf35.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270131,7 +270477,7 @@ }, { "question": "Lighthouse Credit Union", - "icon": "./assets/data/nsi/logos/lighthousecreditunion-02b74e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lighthousecreditunion-02b74e.svg", "osmTags": { "and": [ "amenity=bank", @@ -270147,7 +270493,7 @@ }, { "question": "Limasol Türk Kooperatif Bankası", - "icon": "./assets/data/nsi/logos/limasolturkkooperatifbankasi-c9effc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/limasolturkkooperatifbankasi-c9effc.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270163,7 +270509,7 @@ }, { "question": "Lloyds Bank", - "icon": "./assets/data/nsi/logos/lloydsbank-28a61d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lloydsbank-28a61d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270179,7 +270525,7 @@ }, { "question": "Luminor Bank", - "icon": "./assets/data/nsi/logos/luminorbank-3ce14c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/luminorbank-3ce14c.png", "osmTags": { "and": [ "amenity=bank", @@ -270195,7 +270541,7 @@ }, { "question": "Luzerner Kantonalbank", - "icon": "./assets/data/nsi/logos/luzernerkantonalbank-74b036.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luzernerkantonalbank-74b036.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270212,7 +270558,7 @@ }, { "question": "M&T Bank", - "icon": "./assets/data/nsi/logos/mandtbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandtbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270228,7 +270574,7 @@ }, { "question": "Macro", - "icon": "./assets/data/nsi/logos/macro-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macro-841353.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270244,7 +270590,7 @@ }, { "question": "Madhyanchal Gramin Bank", - "icon": "./assets/data/nsi/logos/madhyanchalgraminbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madhyanchalgraminbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270283,7 +270629,7 @@ }, { "question": "Marine Credit Union (Wisconsin)", - "icon": "./assets/data/nsi/logos/marinecreditunion-347d8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marinecreditunion-347d8f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270299,7 +270645,7 @@ }, { "question": "Mashreq", - "icon": "./assets/data/nsi/logos/mashreq-b21eb1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mashreq-b21eb1.png", "osmTags": { "and": [ "amenity=bank", @@ -270317,7 +270663,7 @@ }, { "question": "Maybank", - "icon": "./assets/data/nsi/logos/maybank-b7a026.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maybank-b7a026.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270333,7 +270679,7 @@ }, { "question": "mBank (Europe)", - "icon": "./assets/data/nsi/logos/mbank-b95c32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mbank-b95c32.png", "osmTags": { "and": [ "amenity=bank", @@ -270349,7 +270695,7 @@ }, { "question": "MBH Bank", - "icon": "./assets/data/nsi/logos/mbhbank-60884a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mbhbank-60884a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270365,7 +270711,7 @@ }, { "question": "MCB (Caribbean)", - "icon": "./assets/data/nsi/logos/mcb-93215e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcb-93215e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270395,7 +270741,7 @@ }, { "question": "MCB (Pakistan)", - "icon": "./assets/data/nsi/logos/mcb-57526d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcb-57526d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270415,7 +270761,7 @@ }, { "question": "Meezan Bank (میزان بینک)", - "icon": "./assets/data/nsi/logos/meezanbank-da5806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meezanbank-da5806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270456,7 +270802,7 @@ }, { "question": "Mercantil", - "icon": "./assets/data/nsi/logos/mercantil-b7a026.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mercantil-b7a026.png", "osmTags": { "and": [ "amenity=bank", @@ -270472,7 +270818,7 @@ }, { "question": "Meridian Credit Union", - "icon": "./assets/data/nsi/logos/meridiancreditunion-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meridiancreditunion-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270489,7 +270835,7 @@ }, { "question": "Metairie Bank", - "icon": "./assets/data/nsi/logos/metairiebank-2214b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metairiebank-2214b7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270505,7 +270851,7 @@ }, { "question": "Metro Bank (UK)", - "icon": "./assets/data/nsi/logos/metrobank-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrobank-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270521,7 +270867,7 @@ }, { "question": "Metrobank (Philippines)", - "icon": "./assets/data/nsi/logos/metrobank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrobank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270537,7 +270883,7 @@ }, { "question": "MG새마을금고", - "icon": "./assets/data/nsi/logos/219d89-10d607.png", + "icon": "https://data.mapcomplete.org/nsi//logos/219d89-10d607.png", "osmTags": { "and": [ "amenity=bank", @@ -270555,7 +270901,7 @@ }, { "question": "Mibanco", - "icon": "./assets/data/nsi/logos/mibanco-e2ab80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mibanco-e2ab80.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270571,7 +270917,7 @@ }, { "question": "MidFirst Bank", - "icon": "./assets/data/nsi/logos/midfirstbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midfirstbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270587,7 +270933,7 @@ }, { "question": "Migros Bank", - "icon": "./assets/data/nsi/logos/migrosbank-74b036.png", + "icon": "https://data.mapcomplete.org/nsi//logos/migrosbank-74b036.png", "osmTags": { "and": [ "amenity=bank", @@ -270609,7 +270955,7 @@ }, { "question": "Millennium Bank", - "icon": "./assets/data/nsi/logos/millenniumbank-68054b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/millenniumbank-68054b.svg", "osmTags": { "and": [ "amenity=bank", @@ -270625,16 +270971,16 @@ }, { "question": "Millennium bcp", - "icon": "./assets/data/nsi/logos/millenniumbcp-4028ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/millenniumbcp-4028ed.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Comercial Português", { "or": [ "brand=Millennium bcp", "brand:wikidata=Q118581", - "name=Millennium bcp" + "name=Millennium bcp", + "official_name=Banco Comercial Português" ] } ] @@ -270642,7 +270988,7 @@ }, { "question": "Mission Federal Credit Union", - "icon": "./assets/data/nsi/logos/missionfederalcreditunion-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missionfederalcreditunion-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270658,7 +271004,7 @@ }, { "question": "Mittelbrandenburgische Sparkasse", - "icon": "./assets/data/nsi/logos/mittelbrandenburgischesparkasse-1180cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mittelbrandenburgischesparkasse-1180cf.png", "osmTags": { "and": [ "amenity=bank", @@ -270674,7 +271020,7 @@ }, { "question": "Mizoram Rural Bank", - "icon": "./assets/data/nsi/logos/mizoramruralbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mizoramruralbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270690,7 +271036,7 @@ }, { "question": "MKB Bank", - "icon": "./assets/data/nsi/logos/mkbbank-60884a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mkbbank-60884a.svg", "osmTags": { "and": [ "amenity=bank", @@ -270706,7 +271052,7 @@ }, { "question": "Moldindconbank", - "icon": "./assets/data/nsi/logos/moldindconbank-59fea4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moldindconbank-59fea4.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270722,7 +271068,7 @@ }, { "question": "Moldova Agroindbank", - "icon": "./assets/data/nsi/logos/moldovaagroindbank-59fea4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moldovaagroindbank-59fea4.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270738,7 +271084,7 @@ }, { "question": "MONETA Money Bank", - "icon": "./assets/data/nsi/logos/monetamoneybank-7d13c0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/monetamoneybank-7d13c0.svg", "osmTags": { "and": [ "amenity=bank", @@ -270754,7 +271100,7 @@ }, { "question": "Monobank", - "icon": "./assets/data/nsi/logos/monobank-c8dc19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/monobank-c8dc19.png", "osmTags": { "and": [ "amenity=bank", @@ -270770,7 +271116,7 @@ }, { "question": "Monte dei Paschi di Siena", - "icon": "./assets/data/nsi/logos/montedeipaschidisiena-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montedeipaschidisiena-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270786,7 +271132,7 @@ }, { "question": "Montepio", - "icon": "./assets/data/nsi/logos/montepio-4028ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/montepio-4028ed.png", "osmTags": { "and": [ "amenity=bank", @@ -270802,7 +271148,7 @@ }, { "question": "Mountain America Credit Union", - "icon": "./assets/data/nsi/logos/mountainamericacreditunion-1d85ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mountainamericacreditunion-1d85ab.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270818,7 +271164,7 @@ }, { "question": "MTB Bank", - "icon": "./assets/data/nsi/logos/mtbbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtbbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270838,7 +271184,7 @@ }, { "question": "NAB", - "icon": "./assets/data/nsi/logos/nab-f304bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nab-f304bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270869,7 +271215,7 @@ }, { "question": "NASA Federal Credit Union", - "icon": "./assets/data/nsi/logos/nasafederalcreditunion-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nasafederalcreditunion-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -270885,13 +271231,10 @@ }, { "question": "National Bank (Canada)", - "icon": "./assets/data/nsi/logos/nationalbank-9178f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbank-9178f2.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=National Bank of Canada", - "official_name:en=National Bank of Canada", - "official_name:fr=Banque Nationale du Canada", { "or": [ "brand=National Bank", @@ -270900,7 +271243,10 @@ "brand:wikidata=Q634298", "name=National Bank", "name:en=National Bank", - "name:fr=Banque Nationale" + "name:fr=Banque Nationale", + "official_name=National Bank of Canada", + "official_name:en=National Bank of Canada", + "official_name:fr=Banque Nationale du Canada" ] } ] @@ -270908,7 +271254,7 @@ }, { "question": "National Investment Bank (Ghana)", - "icon": "./assets/data/nsi/logos/nationalinvestmentbank-9d35ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalinvestmentbank-9d35ea.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270928,7 +271274,7 @@ }, { "question": "Nationwide", - "icon": "./assets/data/nsi/logos/nationwide-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationwide-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270944,7 +271290,7 @@ }, { "question": "NatWest", - "icon": "./assets/data/nsi/logos/natwest-6bb648.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/natwest-6bb648.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270960,7 +271306,7 @@ }, { "question": "Navy Federal Credit Union", - "icon": "./assets/data/nsi/logos/navyfederalcreditunion-b7a026.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/navyfederalcreditunion-b7a026.jpg", "osmTags": { "and": [ "amenity=bank", @@ -270976,7 +271322,7 @@ }, { "question": "NBT Bank", - "icon": "./assets/data/nsi/logos/nbtbank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nbtbank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -270992,7 +271338,7 @@ }, { "question": "Near East Bank", - "icon": "./assets/data/nsi/logos/neareastbank-c9effc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neareastbank-c9effc.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271008,7 +271354,7 @@ }, { "question": "Nedbank", - "icon": "./assets/data/nsi/logos/nedbank-b7a026.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nedbank-b7a026.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271024,7 +271370,7 @@ }, { "question": "Nest Bank", - "icon": "./assets/data/nsi/logos/nestbank-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nestbank-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271040,7 +271386,7 @@ }, { "question": "NH농협은행", - "icon": "./assets/data/nsi/logos/nhbank-10d607.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nhbank-10d607.png", "osmTags": { "and": [ "amenity=bank", @@ -271060,7 +271406,7 @@ }, { "question": "Nicolet National Bank", - "icon": "./assets/data/nsi/logos/nicoletnationalbank-625518.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nicoletnationalbank-625518.png", "osmTags": { "and": [ "amenity=bank", @@ -271076,7 +271422,7 @@ }, { "question": "Nidwaldner Kantonalbank", - "icon": "./assets/data/nsi/logos/nidwaldnerkantonalbank-74b036.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nidwaldnerkantonalbank-74b036.png", "osmTags": { "and": [ "amenity=bank", @@ -271093,7 +271439,7 @@ }, { "question": "NLB", - "icon": "./assets/data/nsi/logos/nlb-c48f09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nlb-c48f09.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271109,7 +271455,7 @@ }, { "question": "NMB Bank (Nepal)", - "icon": "./assets/data/nsi/logos/nmbbank-b0fe63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nmbbank-b0fe63.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271126,7 +271472,7 @@ }, { "question": "NMB Bank (Tanzania)", - "icon": "./assets/data/nsi/logos/nmbbank-e14cdd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nmbbank-e14cdd.png", "osmTags": { "and": [ "amenity=bank", @@ -271143,7 +271489,7 @@ }, { "question": "NMB Bank (Zimbabwe)", - "icon": "./assets/data/nsi/logos/nmbbank-ce50d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nmbbank-ce50d7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271160,7 +271506,7 @@ }, { "question": "Nord-Ostsee Sparkasse", - "icon": "./assets/data/nsi/logos/nordostseesparkasse-a957a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordostseesparkasse-a957a3.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271176,7 +271522,7 @@ }, { "question": "Nordea", - "icon": "./assets/data/nsi/logos/nordea-5e8542.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nordea-5e8542.png", "osmTags": { "and": [ "amenity=bank", @@ -271192,7 +271538,7 @@ }, { "question": "Northwest Bank", - "icon": "./assets/data/nsi/logos/northwestbank-7df23e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestbank-7df23e.png", "osmTags": { "and": [ "amenity=bank", @@ -271223,7 +271569,7 @@ }, { "question": "Novo Banco", - "icon": "./assets/data/nsi/logos/novobanco-151324.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novobanco-151324.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271239,7 +271585,7 @@ }, { "question": "NSB", - "icon": "./assets/data/nsi/logos/nsb-358381.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nsb-358381.png", "osmTags": { "and": [ "amenity=bank", @@ -271255,14 +271601,10 @@ }, { "question": "Nurbank", - "icon": "./assets/data/nsi/logos/nurbank-033b31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nurbank-033b31.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Nurbank JSC", - "official_name:en=Nurbank JSC", - "official_name:kk=«Нұрбанк» АҚ", - "official_name:ru=АО «Нурбанк»", { "or": [ "brand=Nurbank", @@ -271270,7 +271612,11 @@ "name=Nurbank", "name:en=Nurbank", "name:kk=Нурбанк", - "name:ru=Нурбанк" + "name:ru=Нурбанк", + "official_name=Nurbank JSC", + "official_name:en=Nurbank JSC", + "official_name:kk=«Нұрбанк» АҚ", + "official_name:ru=АО «Нурбанк»" ] } ] @@ -271278,7 +271624,7 @@ }, { "question": "Nusenda", - "icon": "./assets/data/nsi/logos/nusenda-1e2f31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nusenda-1e2f31.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271295,7 +271641,7 @@ }, { "question": "Oberbank", - "icon": "./assets/data/nsi/logos/oberbank-f71288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oberbank-f71288.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271311,7 +271657,7 @@ }, { "question": "Obwaldner Kantonalbank", - "icon": "./assets/data/nsi/logos/obwaldnerkantonalbank-74b036.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obwaldnerkantonalbank-74b036.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271328,16 +271674,16 @@ }, { "question": "OCBC (Indonesia)", - "icon": "./assets/data/nsi/logos/ocbc-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocbc-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Bank OCBC NISP", { "or": [ "brand=OCBC", "brand:wikidata=Q19724214", - "name=OCBC" + "name=OCBC", + "official_name=Bank OCBC NISP" ] } ] @@ -271345,7 +271691,7 @@ }, { "question": "OCBC Bank (Malaysia/Singapore)", - "icon": "./assets/data/nsi/logos/ocbcbank-ae45e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocbcbank-ae45e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271365,7 +271711,7 @@ }, { "question": "Occidental de Descuento", - "icon": "./assets/data/nsi/logos/occidentaldedescuento-0269b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/occidentaldedescuento-0269b0.png", "osmTags": { "and": [ "amenity=bank", @@ -271381,7 +271727,7 @@ }, { "question": "OCCU", - "icon": "./assets/data/nsi/logos/occu-4ac31a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/occu-4ac31a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271398,7 +271744,7 @@ }, { "question": "Odeabank", - "icon": "./assets/data/nsi/logos/odeabank-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/odeabank-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271414,7 +271760,7 @@ }, { "question": "Odisha Gramya Bank", - "icon": "./assets/data/nsi/logos/odishagramyabank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/odishagramyabank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -271434,7 +271780,7 @@ }, { "question": "Oʻzsanoatqurilishbank", - "icon": "./assets/data/nsi/logos/7e41fb-99790d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7e41fb-99790d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271451,7 +271797,7 @@ }, { "question": "Old National Bank", - "icon": "./assets/data/nsi/logos/oldnationalbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldnationalbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271467,7 +271813,7 @@ }, { "question": "Old Second National Bank", - "icon": "./assets/data/nsi/logos/oldsecondnationalbank-6bd15c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldsecondnationalbank-6bd15c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271483,7 +271829,7 @@ }, { "question": "Oldenburgische Landesbank", - "icon": "./assets/data/nsi/logos/oldenburgischelandesbank-1180cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oldenburgischelandesbank-1180cf.png", "osmTags": { "and": [ "amenity=bank", @@ -271518,7 +271864,7 @@ }, { "question": "OnPoint", - "icon": "./assets/data/nsi/logos/onpoint-181391.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onpoint-181391.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271564,7 +271910,7 @@ }, { "question": "Oriental", - "icon": "./assets/data/nsi/logos/oriental-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oriental-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271581,7 +271927,7 @@ }, { "question": "Oriental Bank of Commerce", - "icon": "./assets/data/nsi/logos/orientalbankofcommerce-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orientalbankofcommerce-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271597,7 +271943,7 @@ }, { "question": "Osuuspankki", - "icon": "./assets/data/nsi/logos/osuuspankki-22526e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/osuuspankki-22526e.png", "osmTags": { "and": [ "amenity=bank", @@ -271613,7 +271959,7 @@ }, { "question": "OTP Bank", - "icon": "./assets/data/nsi/logos/otpbank-2ef74c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbank-2ef74c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271630,7 +271976,7 @@ }, { "question": "OTP Bank (Україна)", - "icon": "./assets/data/nsi/logos/otpbank-c8dc19.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbank-c8dc19.svg", "osmTags": { "and": [ "amenity=bank", @@ -271650,7 +271996,7 @@ }, { "question": "OTP banka (Hrvatska)", - "icon": "./assets/data/nsi/logos/otpbanka-6f3d3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbanka-6f3d3b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271666,7 +272012,7 @@ }, { "question": "OTP banka (Србија)", - "icon": "./assets/data/nsi/logos/otpbanka-e9ea45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbanka-e9ea45.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271685,7 +272031,7 @@ }, { "question": "Panin Bank", - "icon": "./assets/data/nsi/logos/paninbank-aa7852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paninbank-aa7852.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271701,7 +272047,7 @@ }, { "question": "Partner banka", - "icon": "./assets/data/nsi/logos/partnerbanka-6f3d3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/partnerbanka-6f3d3b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271717,7 +272063,7 @@ }, { "question": "PBCom", - "icon": "./assets/data/nsi/logos/pbcom-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pbcom-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271733,16 +272079,16 @@ }, { "question": "PC Financial", - "icon": "./assets/data/nsi/logos/pcfinancial-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pcfinancial-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=President's Choice Financial", { "or": [ "brand=PC Financial", "brand:wikidata=Q7241126", - "name=PC Financial" + "name=PC Financial", + "official_name=President's Choice Financial" ] } ] @@ -271750,7 +272096,7 @@ }, { "question": "PenFed Credit Union", - "icon": "./assets/data/nsi/logos/penfedcreditunion-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penfedcreditunion-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271768,7 +272114,7 @@ }, { "question": "Pennsylvania State Employees Credit Union", - "icon": "./assets/data/nsi/logos/psecu-7bc61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/psecu-7bc61e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271785,7 +272131,7 @@ }, { "question": "People's United Bank", - "icon": "./assets/data/nsi/logos/peoplesunitedbank-9baf35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peoplesunitedbank-9baf35.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271804,11 +272150,11 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Peoples Bank of Kentucky", { "or": [ "brand=Peoples Bank", - "name=Peoples Bank" + "name=Peoples Bank", + "official_name=Peoples Bank of Kentucky" ] } ] @@ -271831,7 +272177,7 @@ }, { "question": "Peoples Bank (Washington)", - "icon": "./assets/data/nsi/logos/peoplesbank-35da18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peoplesbank-35da18.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271847,7 +272193,7 @@ }, { "question": "Permanent TSB", - "icon": "./assets/data/nsi/logos/permanenttsb-030d9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/permanenttsb-030d9e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271863,7 +272209,7 @@ }, { "question": "Philippine Business Bank", - "icon": "./assets/data/nsi/logos/philippinebusinessbank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/philippinebusinessbank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271879,7 +272225,7 @@ }, { "question": "Pinnacle Bank (Midwest & Southwest USA)", - "icon": "./assets/data/nsi/logos/pinnaclebank-ebf4c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pinnaclebank-ebf4c6.png", "osmTags": { "and": [ "amenity=bank", @@ -271898,12 +272244,12 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Pinnacle Financial Partners", { "or": [ "brand=Pinnacle Bank", "brand:wikidata=Q7196294", - "name=Pinnacle Bank" + "name=Pinnacle Bank", + "official_name=Pinnacle Financial Partners" ] } ] @@ -271911,7 +272257,7 @@ }, { "question": "Piraeus Bank (Україна)", - "icon": "./assets/data/nsi/logos/piraeusbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piraeusbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271931,7 +272277,7 @@ }, { "question": "PKO BP", - "icon": "./assets/data/nsi/logos/pkobp-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pkobp-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -271962,16 +272308,16 @@ }, { "question": "PNB", - "icon": "./assets/data/nsi/logos/pnb-431f82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pnb-431f82.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Philippine National Bank", { "or": [ "brand=PNB", "brand:wikidata=Q1657971", - "name=PNB" + "name=PNB", + "official_name=Philippine National Bank" ] } ] @@ -271979,7 +272325,7 @@ }, { "question": "PNC Bank", - "icon": "./assets/data/nsi/logos/pncbank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pncbank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -271995,7 +272341,7 @@ }, { "question": "Podravska banka", - "icon": "./assets/data/nsi/logos/podravskabanka-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/podravskabanka-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -272011,18 +272357,18 @@ }, { "question": "Popular", - "icon": "./assets/data/nsi/logos/popular-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popular-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Banco Popular de Puerto Rico", "short_name=BPPR", { "or": [ "alt_name=Banco Popular", "brand=Popular", "brand:wikidata=Q7229656", - "name=Popular" + "name=Popular", + "official_name=Banco Popular de Puerto Rico" ] } ] @@ -272030,7 +272376,7 @@ }, { "question": "Poštanska štedionica", - "icon": "./assets/data/nsi/logos/postanskastedionica-e9ea45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postanskastedionica-e9ea45.png", "osmTags": { "and": [ "amenity=bank", @@ -272052,7 +272398,7 @@ }, { "question": "Postbank (Deutschland)", - "icon": "./assets/data/nsi/logos/postbank-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postbank-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272068,7 +272414,7 @@ }, { "question": "Poštová banka", - "icon": "./assets/data/nsi/logos/postovabanka-6a1dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postovabanka-6a1dfb.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272113,7 +272459,7 @@ }, { "question": "Prima banka", - "icon": "./assets/data/nsi/logos/primabanka-6a1dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/primabanka-6a1dfb.png", "osmTags": { "and": [ "amenity=bank", @@ -272129,7 +272475,7 @@ }, { "question": "Privatbanka", - "icon": "./assets/data/nsi/logos/privatbanka-6a1dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/privatbanka-6a1dfb.png", "osmTags": { "and": [ "amenity=bank", @@ -272145,7 +272491,7 @@ }, { "question": "Privredna banka Zagreb", - "icon": "./assets/data/nsi/logos/privrednabankazagreb-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/privrednabankazagreb-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -272162,7 +272508,7 @@ }, { "question": "ProCredit Bank", - "icon": "./assets/data/nsi/logos/procreditbank-f3fcbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-f3fcbc.png", "osmTags": { "and": [ "amenity=bank", @@ -272178,7 +272524,7 @@ }, { "question": "ProCredit Bank (Северна Македонија)", - "icon": "./assets/data/nsi/logos/procreditbank-39118c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-39118c.png", "osmTags": { "and": [ "amenity=bank", @@ -272196,7 +272542,7 @@ }, { "question": "ProCredit Bank (Україна)", - "icon": "./assets/data/nsi/logos/procreditbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272216,7 +272562,7 @@ }, { "question": "ProCredit banka (Србија)", - "icon": "./assets/data/nsi/logos/procreditbanka-e9ea45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbanka-e9ea45.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272235,7 +272581,7 @@ }, { "question": "Produbanco", - "icon": "./assets/data/nsi/logos/produbanco-01e191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/produbanco-01e191.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272251,7 +272597,7 @@ }, { "question": "Producers Bank", - "icon": "./assets/data/nsi/logos/producersbank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/producersbank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272281,7 +272627,7 @@ }, { "question": "Prosperity Bank", - "icon": "./assets/data/nsi/logos/prosperitybank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prosperitybank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272297,7 +272643,7 @@ }, { "question": "Provident Bank", - "icon": "./assets/data/nsi/logos/providentbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/providentbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272331,7 +272677,7 @@ }, { "question": "Prvá stavebná sporiteľňa", - "icon": "./assets/data/nsi/logos/prvastavebnasporitelna-6a1dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prvastavebnasporitelna-6a1dfb.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272347,7 +272693,7 @@ }, { "question": "PSBank", - "icon": "./assets/data/nsi/logos/psbank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/psbank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272363,7 +272709,7 @@ }, { "question": "Public Bank (Malaysia)", - "icon": "./assets/data/nsi/logos/publicbank-8ab35f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicbank-8ab35f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272383,7 +272729,7 @@ }, { "question": "Puduvai Bharathiar Grama Bank", - "icon": "./assets/data/nsi/logos/puduvaibharathiargramabank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puduvaibharathiargramabank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272399,7 +272745,7 @@ }, { "question": "Punjab & Sind Bank", - "icon": "./assets/data/nsi/logos/punjabandsindbank-34f411.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/punjabandsindbank-34f411.svg", "osmTags": { "and": [ "amenity=bank", @@ -272419,7 +272765,7 @@ }, { "question": "Punjab National Bank", - "icon": "./assets/data/nsi/logos/punjabnationalbank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/punjabnationalbank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -272435,7 +272781,7 @@ }, { "question": "QNB Finansbank", - "icon": "./assets/data/nsi/logos/qnbfinansbank-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qnbfinansbank-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272451,7 +272797,7 @@ }, { "question": "Rabobank", - "icon": "./assets/data/nsi/logos/rabobank-c61987.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rabobank-c61987.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272467,7 +272813,7 @@ }, { "question": "Raiffeisen (Luxembourg)", - "icon": "./assets/data/nsi/logos/raiffeisen-d335b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisen-d335b6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272483,7 +272829,7 @@ }, { "question": "Raiffeisen (Schweiz)", - "icon": "./assets/data/nsi/logos/raiffeisen-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisen-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -272499,7 +272845,7 @@ }, { "question": "Raiffeisen bank (Hrvatska)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -272515,7 +272861,7 @@ }, { "question": "Raiffeisen Bank (Magyarország)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-60884a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-60884a.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272531,7 +272877,7 @@ }, { "question": "Raiffeisen Bank (Österreich)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-694ab5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-694ab5.svg", "osmTags": { "and": [ "amenity=bank", @@ -272547,7 +272893,7 @@ }, { "question": "Raiffeisen Bank (România)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-9a9a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-9a9a30.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272563,7 +272909,7 @@ }, { "question": "Raiffeisen Bank (Shqipëri)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-c53f64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-c53f64.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272579,7 +272925,7 @@ }, { "question": "Raiffeisen Bank (Україна)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272601,7 +272947,7 @@ }, { "question": "Raiffeisen Bank Polska", - "icon": "./assets/data/nsi/logos/raiffeisenbankpolska-68054b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbankpolska-68054b.svg", "osmTags": { "and": [ "amenity=bank", @@ -272617,7 +272963,7 @@ }, { "question": "Raiffeisen banka Slovensko", - "icon": "./assets/data/nsi/logos/raiffeisenbanka-6a1dfb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbanka-6a1dfb.svg", "osmTags": { "and": [ "amenity=bank", @@ -272633,7 +272979,7 @@ }, { "question": "Raiffeisen banka Srbije", - "icon": "./assets/data/nsi/logos/raiffeisenbank-e9ea45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-e9ea45.png", "osmTags": { "and": [ "amenity=bank", @@ -272649,7 +272995,7 @@ }, { "question": "Raiffeisenbank (Česko)", - "icon": "./assets/data/nsi/logos/raiffeisenbank-7d13c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-7d13c0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272665,7 +273011,7 @@ }, { "question": "Raiffeisenkasse (Südtirol)", - "icon": "./assets/data/nsi/logos/raiffeisen-7b36b5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisen-7b36b5.svg", "osmTags": { "and": [ "amenity=bank", @@ -272681,7 +273027,7 @@ }, { "question": "RAKBANK", - "icon": "./assets/data/nsi/logos/rakbank-d9ce9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rakbank-d9ce9c.png", "osmTags": { "and": [ "amenity=bank", @@ -272701,11 +273047,10 @@ }, { "question": "RBC", - "icon": "./assets/data/nsi/logos/rbc-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rbc-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Royal Bank of Canada", { "or": [ "brand=RBC", @@ -272714,7 +273059,8 @@ "brand:wikidata=Q735261", "name=RBC", "name:en=RBC Royal Bank", - "name:fr=RBC Banque Royale" + "name:fr=RBC Banque Royale", + "official_name=Royal Bank of Canada" ] } ] @@ -272722,7 +273068,7 @@ }, { "question": "RBL Bank", - "icon": "./assets/data/nsi/logos/rblbank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rblbank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -272738,16 +273084,16 @@ }, { "question": "RBS", - "icon": "./assets/data/nsi/logos/rbs-23753a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rbs-23753a.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Royal Bank of Scotland", { "or": [ "brand=RBS", "brand:wikidata=Q160126", - "name=RBS" + "name=RBS", + "official_name=Royal Bank of Scotland" ] } ] @@ -272785,16 +273131,16 @@ }, { "question": "RCBC", - "icon": "./assets/data/nsi/logos/rcbc-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rcbc-431f82.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Rizal Commercial Banking Corporation", { "or": [ "brand=RCBC", "brand:wikidata=Q7339070", - "name=RCBC" + "name=RCBC", + "official_name=Rizal Commercial Banking Corporation" ] } ] @@ -272802,7 +273148,7 @@ }, { "question": "RegioBank", - "icon": "./assets/data/nsi/logos/regiobank-fb21a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/regiobank-fb21a8.svg", "osmTags": { "and": [ "amenity=bank", @@ -272818,7 +273164,7 @@ }, { "question": "Regions Bank", - "icon": "./assets/data/nsi/logos/regionsbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regionsbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272834,7 +273180,7 @@ }, { "question": "Reisebank", - "icon": "./assets/data/nsi/logos/reisebank-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reisebank-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272850,7 +273196,7 @@ }, { "question": "Repco Bank", - "icon": "./assets/data/nsi/logos/repcobank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/repcobank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272866,7 +273212,7 @@ }, { "question": "Republic Bank (Eastern Caribbean)", - "icon": "./assets/data/nsi/logos/republicbank-1e52aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republicbank-1e52aa.png", "osmTags": { "and": [ "amenity=bank", @@ -272882,7 +273228,7 @@ }, { "question": "Republic Bank (Ghana)", - "icon": "./assets/data/nsi/logos/republicbank-9d35ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republicbank-9d35ea.png", "osmTags": { "and": [ "amenity=bank", @@ -272901,16 +273247,16 @@ }, { "question": "Republic Bank (Kentucky)", - "icon": "./assets/data/nsi/logos/republicbank-6552d3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republicbank-6552d3.png", "osmTags": { "and": [ "amenity=bank", - "official_name=Republic Bank & Trust Company", { "or": [ "brand=Republic Bank", "brand:wikidata=Q7314387", - "name=Republic Bank" + "name=Republic Bank", + "official_name=Republic Bank & Trust Company" ] } ] @@ -272933,7 +273279,7 @@ }, { "question": "República", - "icon": "./assets/data/nsi/logos/republica-146753.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republica-146753.png", "osmTags": { "and": [ "amenity=bank", @@ -272949,7 +273295,7 @@ }, { "question": "RHB Bank", - "icon": "./assets/data/nsi/logos/rhbbank-ea52df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhbbank-ea52df.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272965,7 +273311,7 @@ }, { "question": "Rheinhessen Sparkasse", - "icon": "./assets/data/nsi/logos/sparkasse-a144f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkasse-a144f5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272982,7 +273328,7 @@ }, { "question": "Robinsons Bank", - "icon": "./assets/data/nsi/logos/robinsonsbank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robinsonsbank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -272998,7 +273344,7 @@ }, { "question": "Rockland Trust", - "icon": "./assets/data/nsi/logos/rocklandtrust-893667.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rocklandtrust-893667.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273014,7 +273360,7 @@ }, { "question": "Rogue Credit Union", - "icon": "./assets/data/nsi/logos/roguecreditunion-05b4aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roguecreditunion-05b4aa.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273030,7 +273376,7 @@ }, { "question": "Royal Business Bank", - "icon": "./assets/data/nsi/logos/royalbusinessbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalbusinessbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273046,7 +273392,7 @@ }, { "question": "S-Pankki", - "icon": "./assets/data/nsi/logos/spankki-22526e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spankki-22526e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273062,7 +273408,7 @@ }, { "question": "Sacombank", - "icon": "./assets/data/nsi/logos/sacombank-b7a026.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacombank-b7a026.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273078,7 +273424,7 @@ }, { "question": "Salem Five Bank", - "icon": "./assets/data/nsi/logos/salemfivebank-1bf72c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/salemfivebank-1bf72c.png", "osmTags": { "and": [ "amenity=bank", @@ -273094,7 +273440,7 @@ }, { "question": "Samoborska banka", - "icon": "./assets/data/nsi/logos/samoborskabanka-6f3d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/samoborskabanka-6f3d3b.png", "osmTags": { "and": [ "amenity=bank", @@ -273110,7 +273456,7 @@ }, { "question": "Sampath Bank", - "icon": "./assets/data/nsi/logos/sampathbank-358381.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sampathbank-358381.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273126,7 +273472,7 @@ }, { "question": "San Diego County Credit Union", - "icon": "./assets/data/nsi/logos/sandiegocountycreditunion-cf92b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegocountycreditunion-cf92b8.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273143,7 +273489,7 @@ }, { "question": "Santander (Deutschland)", - "icon": "./assets/data/nsi/logos/santander-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santander-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273159,7 +273505,7 @@ }, { "question": "Santander (Polska)", - "icon": "./assets/data/nsi/logos/santander-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santander-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273175,7 +273521,7 @@ }, { "question": "Santander (UK)", - "icon": "./assets/data/nsi/logos/santander-e1e9d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santander-e1e9d0.png", "osmTags": { "and": [ "amenity=bank", @@ -273191,7 +273537,7 @@ }, { "question": "Santander (USA)", - "icon": "./assets/data/nsi/logos/santander-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santander-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273207,7 +273553,7 @@ }, { "question": "Santander Consumer Bank", - "icon": "./assets/data/nsi/logos/santanderconsumerbank-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santanderconsumerbank-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273223,7 +273569,7 @@ }, { "question": "Santander Río", - "icon": "./assets/data/nsi/logos/santanderrio-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santanderrio-841353.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273239,7 +273585,7 @@ }, { "question": "Santander Totta", - "icon": "./assets/data/nsi/logos/santandertotta-4028ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santandertotta-4028ed.png", "osmTags": { "and": [ "amenity=bank", @@ -273255,7 +273601,7 @@ }, { "question": "Sberbank", - "icon": "./assets/data/nsi/logos/sberbank-4ff616.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sberbank-4ff616.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273271,7 +273617,7 @@ }, { "question": "SBI新生銀行", - "icon": "./assets/data/nsi/logos/sbishinseibank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbishinseibank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -273291,7 +273637,7 @@ }, { "question": "SBS Bank", - "icon": "./assets/data/nsi/logos/sbsbank-279fc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbsbank-279fc5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273307,7 +273653,7 @@ }, { "question": "Schaffhauser Kantonalbank", - "icon": "./assets/data/nsi/logos/schaffhauserkantonalbank-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schaffhauserkantonalbank-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -273324,7 +273670,7 @@ }, { "question": "Schwyzer Kantonalbank", - "icon": "./assets/data/nsi/logos/schwyzerkantonalbank-74b036.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schwyzerkantonalbank-74b036.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273341,7 +273687,7 @@ }, { "question": "Scotiabank (non-Québec)", - "icon": "./assets/data/nsi/logos/scotiabank-b7a026.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scotiabank-b7a026.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273357,7 +273703,7 @@ }, { "question": "Scotiabank (Québec)", - "icon": "./assets/data/nsi/logos/banquescotia-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquescotia-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273373,7 +273719,7 @@ }, { "question": "SC제일은행", - "icon": "./assets/data/nsi/logos/2a04be-10d607.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2a04be-10d607.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273391,7 +273737,7 @@ }, { "question": "SEB", - "icon": "./assets/data/nsi/logos/seb-e3cf16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seb-e3cf16.png", "osmTags": { "and": [ "amenity=bank", @@ -273407,7 +273753,7 @@ }, { "question": "Security Bank", - "icon": "./assets/data/nsi/logos/securitybank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/securitybank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273423,7 +273769,7 @@ }, { "question": "Security Service Federal Credit Union", - "icon": "./assets/data/nsi/logos/securityservicefederalcreditunion-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/securityservicefederalcreditunion-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -273440,7 +273786,7 @@ }, { "question": "Şekerbank", - "icon": "./assets/data/nsi/logos/sekerbank-f79a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sekerbank-f79a7c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273471,7 +273817,7 @@ }, { "question": "Self-Help Federal Credit Union", - "icon": "./assets/data/nsi/logos/selfhelpfederalcreditunion-8dbd99.png", + "icon": "https://data.mapcomplete.org/nsi//logos/selfhelpfederalcreditunion-8dbd99.png", "osmTags": { "and": [ "amenity=bank", @@ -273487,7 +273833,7 @@ }, { "question": "Sense Bank", - "icon": "./assets/data/nsi/logos/sensebank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sensebank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273510,7 +273856,7 @@ }, { "question": "Service Credit Union", - "icon": "./assets/data/nsi/logos/servicecreditunion-f961e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicecreditunion-f961e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273526,7 +273872,7 @@ }, { "question": "Servus Credit Union", - "icon": "./assets/data/nsi/logos/servuscreditunion-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servuscreditunion-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273543,7 +273889,7 @@ }, { "question": "Seylan Bank", - "icon": "./assets/data/nsi/logos/seylanbank-358381.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seylanbank-358381.png", "osmTags": { "and": [ "amenity=bank", @@ -273559,7 +273905,7 @@ }, { "question": "Sharjah Islamic Bank", - "icon": "./assets/data/nsi/logos/sharjahislamicbank-d9ce9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sharjahislamicbank-d9ce9c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273579,7 +273925,7 @@ }, { "question": "Shore United Bank", - "icon": "./assets/data/nsi/logos/shoreunitedbank-57aa5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoreunitedbank-57aa5c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273595,7 +273941,7 @@ }, { "question": "Sicoob", - "icon": "./assets/data/nsi/logos/sicoob-0ed44d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sicoob-0ed44d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273611,7 +273957,7 @@ }, { "question": "Sicredi", - "icon": "./assets/data/nsi/logos/sicredi-0ed44d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sicredi-0ed44d.png", "osmTags": { "and": [ "amenity=bank", @@ -273627,7 +273973,7 @@ }, { "question": "Simmons Bank", - "icon": "./assets/data/nsi/logos/simmonsbank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/simmonsbank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -273643,7 +273989,7 @@ }, { "question": "SKB Banka", - "icon": "./assets/data/nsi/logos/skbbanka-30392e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skbbanka-30392e.png", "osmTags": { "and": [ "amenity=bank", @@ -273659,7 +274005,7 @@ }, { "question": "Skipton Building Society", - "icon": "./assets/data/nsi/logos/skiptonbuildingsociety-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skiptonbuildingsociety-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273675,7 +274021,7 @@ }, { "question": "Slatinska banka", - "icon": "./assets/data/nsi/logos/slatinskabanka-6f3d3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slatinskabanka-6f3d3b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273691,7 +274037,7 @@ }, { "question": "Slovenská sporiteľňa", - "icon": "./assets/data/nsi/logos/slovenskasporitelna-6a1dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskasporitelna-6a1dfb.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273724,7 +274070,7 @@ }, { "question": "SNS Bank", - "icon": "./assets/data/nsi/logos/snsbank-fb21a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snsbank-fb21a8.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273740,7 +274086,7 @@ }, { "question": "Société Générale", - "icon": "./assets/data/nsi/logos/societegenerale-18922e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegenerale-18922e.png", "osmTags": { "and": [ "amenity=bank", @@ -273756,7 +274102,7 @@ }, { "question": "Société Générale (France)", - "icon": "./assets/data/nsi/logos/sg-b30a91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sg-b30a91.png", "osmTags": { "and": [ "amenity=bank", @@ -273772,7 +274118,7 @@ }, { "question": "Société Générale (Ghana)", - "icon": "./assets/data/nsi/logos/societegenerale-9d35ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegenerale-9d35ea.png", "osmTags": { "and": [ "amenity=bank", @@ -273791,7 +274137,7 @@ }, { "question": "Société Générale (الشركة العامة)", - "icon": "./assets/data/nsi/logos/576e54-11534a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/576e54-11534a.png", "osmTags": { "and": [ "amenity=bank", @@ -273811,7 +274157,7 @@ }, { "question": "Société générale Côte d'Ivoire", - "icon": "./assets/data/nsi/logos/societegeneralecotedivoire-720a42.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegeneralecotedivoire-720a42.png", "osmTags": { "and": [ "amenity=bank", @@ -273844,7 +274190,7 @@ }, { "question": "South Indian Bank", - "icon": "./assets/data/nsi/logos/southindianbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southindianbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273860,7 +274206,7 @@ }, { "question": "South State Bank", - "icon": "./assets/data/nsi/logos/southstatebank-7bc186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southstatebank-7bc186.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273876,7 +274222,7 @@ }, { "question": "Southern Bank (Midwest USA)", - "icon": "./assets/data/nsi/logos/southernbank-c8bf03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southernbank-c8bf03.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273892,7 +274238,7 @@ }, { "question": "Southern Bank (North Carolina/Virginia)", - "icon": "./assets/data/nsi/logos/southernbank-fd5937.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southernbank-fd5937.png", "osmTags": { "and": [ "amenity=bank", @@ -273908,7 +274254,7 @@ }, { "question": "Sparda-Bank (Deutschland)", - "icon": "./assets/data/nsi/logos/spardabank-a7f91c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabank-a7f91c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273924,7 +274270,7 @@ }, { "question": "Sparda-Bank (Österreich)", - "icon": "./assets/data/nsi/logos/spardabank-694ab5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabank-694ab5.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273940,7 +274286,7 @@ }, { "question": "Sparda-Bank Baden-Württemberg", - "icon": "./assets/data/nsi/logos/spardabankbadenwurttemberg-5068f2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabankbadenwurttemberg-5068f2.png", "osmTags": { "and": [ "amenity=bank", @@ -273956,7 +274302,7 @@ }, { "question": "Sparda-Bank Berlin", - "icon": "./assets/data/nsi/logos/spardabankberlin-d82d38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabankberlin-d82d38.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273972,7 +274318,7 @@ }, { "question": "Sparda-Bank Hamburg", - "icon": "./assets/data/nsi/logos/spardabankhamburg-b869bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabankhamburg-b869bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -273988,7 +274334,7 @@ }, { "question": "Sparda-Bank Hessen", - "icon": "./assets/data/nsi/logos/spardabankhessen-9ffcae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabankhessen-9ffcae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274004,7 +274350,7 @@ }, { "question": "Sparda-Bank Südwest", - "icon": "./assets/data/nsi/logos/spardabanksudwest-75cfbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spardabanksudwest-75cfbb.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274020,18 +274366,18 @@ }, { "question": "Sparkasse - Cassa di Risparmio", - "icon": "./assets/data/nsi/logos/sparkassecassadirisparmio-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkassecassadirisparmio-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Südtiroler Sparkasse – Cassa di Risparmio di Bolzano", { "or": [ "brand=Sparkasse - Cassa di Risparmio", "brand:wikidata=Q3661920", "name=Sparkasse - Cassa di Risparmio", "name:de=Sparkasse", - "name:it=Cassa di Risparmio" + "name:it=Cassa di Risparmio", + "official_name=Südtiroler Sparkasse – Cassa di Risparmio di Bolzano" ] } ] @@ -274039,7 +274385,7 @@ }, { "question": "Sparkasse (Österreich)", - "icon": "./assets/data/nsi/logos/sparkasse-694ab5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkasse-694ab5.svg", "osmTags": { "and": [ "amenity=bank", @@ -274055,7 +274401,7 @@ }, { "question": "Sparkassen", - "icon": "./assets/data/nsi/logos/sparkassen-f2a422.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkassen-f2a422.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274071,7 +274417,7 @@ }, { "question": "St. Galler Kantonalbank", - "icon": "./assets/data/nsi/logos/stgallerkantonalbank-74b036.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stgallerkantonalbank-74b036.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274088,7 +274434,7 @@ }, { "question": "St.George", - "icon": "./assets/data/nsi/logos/stgeorge-f304bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stgeorge-f304bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274104,7 +274450,7 @@ }, { "question": "Stanbic Bank", - "icon": "./assets/data/nsi/logos/stanbicbank-b79c2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stanbicbank-b79c2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274120,7 +274466,7 @@ }, { "question": "Stanbic Bank (Ghana)", - "icon": "./assets/data/nsi/logos/stanbicbank-9d35ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stanbicbank-9d35ea.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274138,7 +274484,7 @@ }, { "question": "Standard Bank", - "icon": "./assets/data/nsi/logos/standardbank-2a7aac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/standardbank-2a7aac.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274154,7 +274500,7 @@ }, { "question": "Standard Chartered", - "icon": "./assets/data/nsi/logos/standardchartered-cd5b09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardchartered-cd5b09.png", "osmTags": { "and": [ "amenity=bank", @@ -274170,7 +274516,7 @@ }, { "question": "Standard Chartered (Ghana)", - "icon": "./assets/data/nsi/logos/standardchartered-9d35ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardchartered-9d35ea.png", "osmTags": { "and": [ "amenity=bank", @@ -274189,7 +274535,7 @@ }, { "question": "State Bank of India (California)", - "icon": "./assets/data/nsi/logos/statebankofindiacalifornia-cf92b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statebankofindiacalifornia-cf92b8.png", "osmTags": { "and": [ "amenity=bank", @@ -274206,7 +274552,7 @@ }, { "question": "State Bank of India (Global)", - "icon": "./assets/data/nsi/logos/statebankofindia-981cfe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statebankofindia-981cfe.png", "osmTags": { "and": [ "amenity=bank", @@ -274223,7 +274569,7 @@ }, { "question": "State Employees Credit Union (Maryland)", - "icon": "./assets/data/nsi/logos/stateemployeescreditunion-06946f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-06946f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274240,7 +274586,7 @@ }, { "question": "State Employees Credit Union (New Mexico)", - "icon": "./assets/data/nsi/logos/stateemployeescreditunion-1e2f31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-1e2f31.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274257,7 +274603,7 @@ }, { "question": "State Employees Credit Union (North Carolina)", - "icon": "./assets/data/nsi/logos/stateemployeescreditunion-cc7b9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stateemployeescreditunion-cc7b9c.png", "osmTags": { "and": [ "amenity=bank", @@ -274289,7 +274635,7 @@ }, { "question": "Summit Credit Union (Wisconsin)", - "icon": "./assets/data/nsi/logos/summitcreditunion-347d8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/summitcreditunion-347d8f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274305,7 +274651,7 @@ }, { "question": "Suncoast Credit Union", - "icon": "./assets/data/nsi/logos/suncoastcreditunion-9ffb0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/suncoastcreditunion-9ffb0f.png", "osmTags": { "and": [ "amenity=bank", @@ -274321,7 +274667,7 @@ }, { "question": "Suncorp", - "icon": "./assets/data/nsi/logos/suncorp-f304bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suncorp-f304bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274337,7 +274683,7 @@ }, { "question": "SunTrust", - "icon": "./assets/data/nsi/logos/suntrust-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suntrust-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274353,7 +274699,7 @@ }, { "question": "Supervielle", - "icon": "./assets/data/nsi/logos/supervielle-841353.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supervielle-841353.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274369,7 +274715,7 @@ }, { "question": "Swedbank", - "icon": "./assets/data/nsi/logos/swedbank-2cd0b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swedbank-2cd0b2.png", "osmTags": { "and": [ "amenity=bank", @@ -274385,7 +274731,7 @@ }, { "question": "Sydbank", - "icon": "./assets/data/nsi/logos/sydbank-9eeba7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sydbank-9eeba7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274401,7 +274747,7 @@ }, { "question": "Syndicate Bank", - "icon": "./assets/data/nsi/logos/syndicatebank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/syndicatebank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274417,7 +274763,7 @@ }, { "question": "Synovus", - "icon": "./assets/data/nsi/logos/synovus-ffe122.png", + "icon": "https://data.mapcomplete.org/nsi//logos/synovus-ffe122.png", "osmTags": { "and": [ "amenity=bank", @@ -274467,7 +274813,7 @@ }, { "question": "Tamilnad Mercantile Bank Limited", - "icon": "./assets/data/nsi/logos/tamilnadmercantilebanklimited-34f411.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamilnadmercantilebanklimited-34f411.svg", "osmTags": { "and": [ "amenity=bank", @@ -274483,7 +274829,7 @@ }, { "question": "Tangerine", - "icon": "./assets/data/nsi/logos/tangerine-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tangerine-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274499,7 +274845,7 @@ }, { "question": "Targobank", - "icon": "./assets/data/nsi/logos/targobank-236711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/targobank-236711.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274515,7 +274861,7 @@ }, { "question": "Tatra banka", - "icon": "./assets/data/nsi/logos/tatrabanka-6a1dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tatrabanka-6a1dfb.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274546,7 +274892,7 @@ }, { "question": "TBI Bank", - "icon": "./assets/data/nsi/logos/tbibank-1ad94e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tbibank-1ad94e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274576,7 +274922,7 @@ }, { "question": "TD Bank (Canada)", - "icon": "./assets/data/nsi/logos/td-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/td-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274593,7 +274939,7 @@ }, { "question": "TD Bank (USA)", - "icon": "./assets/data/nsi/logos/tdbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tdbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274610,7 +274956,7 @@ }, { "question": "TEB", - "icon": "./assets/data/nsi/logos/teb-f79a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teb-f79a7c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274626,7 +274972,7 @@ }, { "question": "Techcombank", - "icon": "./assets/data/nsi/logos/techcombank-a28d32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/techcombank-a28d32.png", "osmTags": { "and": [ "amenity=bank", @@ -274645,12 +274991,12 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Banco del Tesoro", { "or": [ "brand=Tesoro", "brand:wikidata=Q5718196", - "name=Tesoro" + "name=Tesoro", + "official_name=Banco del Tesoro" ] } ] @@ -274673,7 +275019,7 @@ }, { "question": "The Co-operative Bank", - "icon": "./assets/data/nsi/logos/thecooperativebank-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecooperativebank-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274689,7 +275035,7 @@ }, { "question": "The Cumberland", - "icon": "./assets/data/nsi/logos/thecumberland-ef8e70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecumberland-ef8e70.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274705,7 +275051,7 @@ }, { "question": "The Nottingham", - "icon": "./assets/data/nsi/logos/thenottingham-390947.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thenottingham-390947.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274721,7 +275067,7 @@ }, { "question": "Thurgauer Kantonalbank", - "icon": "./assets/data/nsi/logos/thurgauerkantonalbank-74b036.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thurgauerkantonalbank-74b036.png", "osmTags": { "and": [ "amenity=bank", @@ -274738,7 +275084,7 @@ }, { "question": "Tompkins Community Bank", - "icon": "./assets/data/nsi/logos/tompkinscommunitybank-0e1628.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tompkinscommunitybank-0e1628.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274755,7 +275101,7 @@ }, { "question": "Tripura Gramin Bank", - "icon": "./assets/data/nsi/logos/tripuragraminbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tripuragraminbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274777,7 +275123,7 @@ }, { "question": "Truist", - "icon": "./assets/data/nsi/logos/truist-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truist-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274793,7 +275139,7 @@ }, { "question": "TSB (New Zealand)", - "icon": "./assets/data/nsi/logos/tsb-279fc5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tsb-279fc5.png", "osmTags": { "and": [ "amenity=bank", @@ -274809,7 +275155,7 @@ }, { "question": "TSB (UK)", - "icon": "./assets/data/nsi/logos/tsb-e1e9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsb-e1e9d0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274840,7 +275186,7 @@ }, { "question": "Türkiye Finans", - "icon": "./assets/data/nsi/logos/turkiyefinans-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkiyefinans-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274856,7 +275202,7 @@ }, { "question": "Türkiye İş Bankası", - "icon": "./assets/data/nsi/logos/turkiyeisbankasi-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkiyeisbankasi-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274872,7 +275218,7 @@ }, { "question": "U.S. Bank", - "icon": "./assets/data/nsi/logos/usbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274888,16 +275234,16 @@ }, { "question": "UBA", - "icon": "./assets/data/nsi/logos/uba-95540f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uba-95540f.png", "osmTags": { "and": [ "amenity=bank", - "official_name=United Bank for Africa", { "or": [ "brand=UBA", "brand:wikidata=Q513457", - "name=UBA" + "name=UBA", + "official_name=United Bank for Africa" ] } ] @@ -274905,7 +275251,7 @@ }, { "question": "UBS", - "icon": "./assets/data/nsi/logos/ubs-b7a026.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ubs-b7a026.png", "osmTags": { "and": [ "amenity=bank", @@ -274921,7 +275267,7 @@ }, { "question": "UCO Bank", - "icon": "./assets/data/nsi/logos/ucobank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucobank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274937,7 +275283,7 @@ }, { "question": "UCPB Savings Bank", - "icon": "./assets/data/nsi/logos/ucpbsavingsbank-431f82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucpbsavingsbank-431f82.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274954,7 +275300,7 @@ }, { "question": "UGB", - "icon": "./assets/data/nsi/logos/ugb-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ugb-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -274974,18 +275320,18 @@ }, { "question": "UIB", - "icon": "./assets/data/nsi/logos/uib-367f6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uib-367f6f.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Union internationale de banques", { "or": [ "brand=UIB", "brand:wikidata=Q3550305", "name=UIB", "name:ar=الاتحاد الدولي للبنوك", - "name:en=UIB" + "name:en=UIB", + "official_name=Union internationale de banques" ] } ] @@ -274993,7 +275339,7 @@ }, { "question": "Ujjivan Small Finance Bank", - "icon": "./assets/data/nsi/logos/ujjivansmallfinancebank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ujjivansmallfinancebank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275009,7 +275355,7 @@ }, { "question": "UkrSibbank", - "icon": "./assets/data/nsi/logos/ukrsibbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrsibbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275029,7 +275375,7 @@ }, { "question": "Ulster Bank", - "icon": "./assets/data/nsi/logos/ulsterbank-018fb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ulsterbank-018fb8.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275045,7 +275391,7 @@ }, { "question": "UMB Bank", - "icon": "./assets/data/nsi/logos/umbbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umbbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275061,7 +275407,7 @@ }, { "question": "Umpqua Bank", - "icon": "./assets/data/nsi/logos/umpquabank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umpquabank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275077,7 +275423,7 @@ }, { "question": "Unex Bank", - "icon": "./assets/data/nsi/logos/unexbank-c8dc19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unexbank-c8dc19.png", "osmTags": { "and": [ "amenity=bank", @@ -275097,16 +275443,16 @@ }, { "question": "UNI", - "icon": "./assets/data/nsi/logos/uni-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uni-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=UNI Coopération financière", { "or": [ "brand=UNI", "brand:wikidata=Q2933348", - "name=UNI" + "name=UNI", + "official_name=UNI Coopération financière" ] } ] @@ -275114,7 +275460,7 @@ }, { "question": "Unibank", - "icon": "./assets/data/nsi/logos/unibank-9c44ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unibank-9c44ae.png", "osmTags": { "and": [ "amenity=bank", @@ -275136,7 +275482,7 @@ }, { "question": "Unicaja Banco", - "icon": "./assets/data/nsi/logos/unicajabanco-ce59ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unicajabanco-ce59ab.svg", "osmTags": { "and": [ "amenity=bank", @@ -275168,7 +275514,7 @@ }, { "question": "UniCredit Bank", - "icon": "./assets/data/nsi/logos/unicreditbank-ff6e1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unicreditbank-ff6e1c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275184,7 +275530,7 @@ }, { "question": "UniCredit Bulbank", - "icon": "./assets/data/nsi/logos/unicreditbulbank-126296.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unicreditbulbank-126296.png", "osmTags": { "and": [ "amenity=bank", @@ -275202,7 +275548,7 @@ }, { "question": "Union Bank (USA)", - "icon": "./assets/data/nsi/logos/unionbank-ea2e2d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbank-ea2e2d.svg", "osmTags": { "and": [ "amenity=bank", @@ -275219,7 +275565,7 @@ }, { "question": "Union Bank of India", - "icon": "./assets/data/nsi/logos/unionbankofindia-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbankofindia-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -275235,7 +275581,7 @@ }, { "question": "Union Savings Bank", - "icon": "./assets/data/nsi/logos/unionsavingsbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionsavingsbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275251,7 +275597,7 @@ }, { "question": "UnionBank (Philippines)", - "icon": "./assets/data/nsi/logos/unionbank-431f82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbank-431f82.png", "osmTags": { "and": [ "amenity=bank", @@ -275267,7 +275613,7 @@ }, { "question": "United Bank (Connecticut)", - "icon": "./assets/data/nsi/logos/unitedbank-9baf35.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedbank-9baf35.png", "osmTags": { "and": [ "amenity=bank", @@ -275283,7 +275629,7 @@ }, { "question": "United Bank (Mid-Atlantic USA)", - "icon": "./assets/data/nsi/logos/unitedbank-d6a32a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedbank-d6a32a.png", "osmTags": { "and": [ "amenity=bank", @@ -275314,7 +275660,7 @@ }, { "question": "United Community Bank", - "icon": "./assets/data/nsi/logos/unitedcommunitybank-6749f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedcommunitybank-6749f1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275345,7 +275691,7 @@ }, { "question": "Unitus", - "icon": "./assets/data/nsi/logos/unitus-181391.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitus-181391.png", "osmTags": { "and": [ "amenity=bank", @@ -275362,7 +275708,7 @@ }, { "question": "Universal Bank", - "icon": "./assets/data/nsi/logos/universalbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universalbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275401,7 +275747,7 @@ }, { "question": "University Federal Credit Union", - "icon": "./assets/data/nsi/logos/universityfederalcreditunion-718014.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityfederalcreditunion-718014.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275418,7 +275764,7 @@ }, { "question": "UOB", - "icon": "./assets/data/nsi/logos/uob-dadccc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uob-dadccc.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275438,7 +275784,7 @@ }, { "question": "Urner Kantonalbank", - "icon": "./assets/data/nsi/logos/urnerkantonalbank-74b036.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/urnerkantonalbank-74b036.svg", "osmTags": { "and": [ "amenity=bank", @@ -275455,16 +275801,16 @@ }, { "question": "USAA", - "icon": "./assets/data/nsi/logos/usaa-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usaa-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=United Services Automobile Association", { "or": [ "brand=USAA", "brand:wikidata=Q7865722", - "name=USAA" + "name=USAA", + "official_name=United Services Automobile Association" ] } ] @@ -275472,7 +275818,7 @@ }, { "question": "Uttarakhand Gramin Bank", - "icon": "./assets/data/nsi/logos/uttarakhandgraminbank-34f411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uttarakhandgraminbank-34f411.png", "osmTags": { "and": [ "amenity=bank", @@ -275488,7 +275834,7 @@ }, { "question": "UW Credit Union", - "icon": "./assets/data/nsi/logos/uwcreditunion-347d8f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uwcreditunion-347d8f.png", "osmTags": { "and": [ "amenity=bank", @@ -275504,7 +275850,7 @@ }, { "question": "Vakıf Katılım", - "icon": "./assets/data/nsi/logos/vakifkatilim-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vakifkatilim-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275520,7 +275866,7 @@ }, { "question": "Vakıfbank", - "icon": "./assets/data/nsi/logos/vakifbank-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vakifbank-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275536,7 +275882,7 @@ }, { "question": "Valiant", - "icon": "./assets/data/nsi/logos/valiant-74b036.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valiant-74b036.png", "osmTags": { "and": [ "amenity=bank", @@ -275552,16 +275898,16 @@ }, { "question": "Vancity", - "icon": "./assets/data/nsi/logos/vancity-e1345b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vancity-e1345b.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Vancouver City Savings Credit Union", { "or": [ "brand=Vancity", "brand:wikidata=Q7914085", - "name=Vancity" + "name=Vancity", + "official_name=Vancouver City Savings Credit Union" ] } ] @@ -275569,7 +275915,7 @@ }, { "question": "VeloBank", - "icon": "./assets/data/nsi/logos/velobank-68054b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velobank-68054b.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275585,7 +275931,7 @@ }, { "question": "Victoriabank", - "icon": "./assets/data/nsi/logos/victoriabank-59fea4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/victoriabank-59fea4.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275601,7 +275947,7 @@ }, { "question": "Vietcombank", - "icon": "./assets/data/nsi/logos/vietcombank-a28d32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vietcombank-a28d32.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275617,7 +275963,7 @@ }, { "question": "VietinBank", - "icon": "./assets/data/nsi/logos/vietinbank-a28d32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vietinbank-a28d32.png", "osmTags": { "and": [ "amenity=bank", @@ -275633,7 +275979,7 @@ }, { "question": "Virgin Money", - "icon": "./assets/data/nsi/logos/virginmoney-e1e9d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virginmoney-e1e9d0.png", "osmTags": { "and": [ "amenity=bank", @@ -275649,7 +275995,7 @@ }, { "question": "ViviBanca", - "icon": "./assets/data/nsi/logos/vivibanca-7b36b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vivibanca-7b36b5.png", "osmTags": { "and": [ "amenity=bank", @@ -275665,18 +276011,18 @@ }, { "question": "Volksbank (Italia)", - "icon": "./assets/data/nsi/logos/volksbank-7b36b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volksbank-7b36b5.jpg", "osmTags": { "and": [ "amenity=bank", - "official_name=Südtiroler Volksbank - Banca Popolare dell'Alto Adige", - "official_name:de=Südtiroler Volksbank", - "official_name:it=Banca Popolare dell'Alto Adige", { "or": [ "brand=Volksbank", "brand:wikidata=Q3633728", - "name=Volksbank" + "name=Volksbank", + "official_name=Südtiroler Volksbank - Banca Popolare dell'Alto Adige", + "official_name:de=Südtiroler Volksbank", + "official_name:it=Banca Popolare dell'Alto Adige" ] } ] @@ -275684,7 +276030,7 @@ }, { "question": "Volksbank (Österreich)", - "icon": "./assets/data/nsi/logos/volksbank-694ab5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/volksbank-694ab5.svg", "osmTags": { "and": [ "amenity=bank", @@ -275700,7 +276046,7 @@ }, { "question": "Volksbank Köln Bonn eG", - "icon": "./assets/data/nsi/logos/volksbankkolnbonneg-1180cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volksbankkolnbonneg-1180cf.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275716,7 +276062,7 @@ }, { "question": "Všeobecná úverová banka", - "icon": "./assets/data/nsi/logos/vseobecnauverovabanka-6a1dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vseobecnauverovabanka-6a1dfb.png", "osmTags": { "and": [ "amenity=bank", @@ -275733,7 +276079,7 @@ }, { "question": "VTB Armenia", - "icon": "./assets/data/nsi/logos/vtb-9c44ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vtb-9c44ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275755,7 +276101,7 @@ }, { "question": "WaFd Bank", - "icon": "./assets/data/nsi/logos/wafdbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wafdbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275772,7 +276118,7 @@ }, { "question": "WebsterBank", - "icon": "./assets/data/nsi/logos/websterbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/websterbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275788,7 +276134,7 @@ }, { "question": "Wells Fargo", - "icon": "./assets/data/nsi/logos/wellsfargo-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellsfargo-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275804,7 +276150,7 @@ }, { "question": "WesBanco", - "icon": "./assets/data/nsi/logos/wesbanco-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wesbanco-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275820,7 +276166,7 @@ }, { "question": "WESTconsin Credit Union", - "icon": "./assets/data/nsi/logos/westconsincreditunion-347d8f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westconsincreditunion-347d8f.png", "osmTags": { "and": [ "amenity=bank", @@ -275836,7 +276182,7 @@ }, { "question": "Western Union", - "icon": "./assets/data/nsi/logos/westernunion-c846ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westernunion-c846ae.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275852,7 +276198,7 @@ }, { "question": "Westpac", - "icon": "./assets/data/nsi/logos/westpac-510934.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westpac-510934.png", "osmTags": { "and": [ "amenity=bank", @@ -275883,7 +276229,7 @@ }, { "question": "Woodforest National Bank", - "icon": "./assets/data/nsi/logos/woodforestnationalbank-ea2e2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woodforestnationalbank-ea2e2d.png", "osmTags": { "and": [ "amenity=bank", @@ -275899,7 +276245,7 @@ }, { "question": "WSFS Bank", - "icon": "./assets/data/nsi/logos/wsfsbank-ecc1eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wsfsbank-ecc1eb.png", "osmTags": { "and": [ "amenity=bank", @@ -275934,7 +276280,7 @@ }, { "question": "Yapı Kredi", - "icon": "./assets/data/nsi/logos/yapikredi-a30806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yapikredi-a30806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275950,7 +276296,7 @@ }, { "question": "Yes Bank", - "icon": "./assets/data/nsi/logos/yesbank-34f411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yesbank-34f411.jpg", "osmTags": { "and": [ "amenity=bank", @@ -275966,7 +276312,7 @@ }, { "question": "Yettel bank", - "icon": "./assets/data/nsi/logos/yettelbank-e9ea45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yettelbank-e9ea45.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276000,7 +276346,7 @@ }, { "question": "Yorkshire Building Society", - "icon": "./assets/data/nsi/logos/yorkshirebuildingsociety-e1e9d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yorkshirebuildingsociety-e1e9d0.png", "osmTags": { "and": [ "amenity=bank", @@ -276016,7 +276362,7 @@ }, { "question": "Zagrebačka banka", - "icon": "./assets/data/nsi/logos/zagrebackabanka-6f3d3b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zagrebackabanka-6f3d3b.svg", "osmTags": { "and": [ "amenity=bank", @@ -276036,10 +276382,6 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=Islamic Bank “Zaman-Bank” JSC", - "official_name:en=Islamic Bank “Zaman-Bank” JSC", - "official_name:kk=«Заман-Банк «Ислам банкі» АҚ", - "official_name:ru=АО «Исламский банк «Заман-Банк»", { "or": [ "brand=Zaman-Bank", @@ -276047,7 +276389,11 @@ "name=Zaman-Bank", "name:en=Zaman-Bank", "name:kk=Заман-Банк", - "name:ru=Заман-Банк" + "name:ru=Заман-Банк", + "official_name=Islamic Bank “Zaman-Bank” JSC", + "official_name:en=Islamic Bank “Zaman-Bank” JSC", + "official_name:kk=«Заман-Банк «Ислам банкі» АҚ", + "official_name:ru=АО «Исламский банк «Заман-Банк»" ] } ] @@ -276055,7 +276401,7 @@ }, { "question": "Zenith Bank", - "icon": "./assets/data/nsi/logos/zenithbank-603eac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zenithbank-603eac.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276071,7 +276417,7 @@ }, { "question": "Zions Bank", - "icon": "./assets/data/nsi/logos/zionsbank-ea2e2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zionsbank-ea2e2d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276102,7 +276448,7 @@ }, { "question": "Ziraat Bankası", - "icon": "./assets/data/nsi/logos/ziraatbankasi-f79a7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ziraatbankasi-f79a7c.png", "osmTags": { "and": [ "amenity=bank", @@ -276118,7 +276464,7 @@ }, { "question": "Ziraat Katılım", - "icon": "./assets/data/nsi/logos/ziraatkatilim-a30806.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ziraatkatilim-a30806.png", "osmTags": { "and": [ "amenity=bank", @@ -276134,7 +276480,7 @@ }, { "question": "Zuger Kantonalbank", - "icon": "./assets/data/nsi/logos/zugerkantonalbank-74b036.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zugerkantonalbank-74b036.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276150,7 +276496,7 @@ }, { "question": "Zürcher Kantonalbank", - "icon": "./assets/data/nsi/logos/zurcherkantonalbank-74b036.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zurcherkantonalbank-74b036.png", "osmTags": { "and": [ "amenity=bank", @@ -276167,7 +276513,7 @@ }, { "question": "Εθνική Τράπεζα", - "icon": "./assets/data/nsi/logos/nationalbankofgreece-f14c4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbankofgreece-f14c4e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276187,7 +276533,7 @@ }, { "question": "Τράπεζα Πειραιώς", - "icon": "./assets/data/nsi/logos/piraeusbank-f14c4e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/piraeusbank-f14c4e.png", "osmTags": { "and": [ "amenity=bank", @@ -276210,7 +276556,7 @@ }, { "question": "а̀банк", - "icon": "./assets/data/nsi/logos/abank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276230,7 +276576,7 @@ }, { "question": "Абсолют", - "icon": "./assets/data/nsi/logos/absolutbank-0eb427.png", + "icon": "https://data.mapcomplete.org/nsi//logos/absolutbank-0eb427.png", "osmTags": { "and": [ "amenity=bank", @@ -276250,7 +276596,7 @@ }, { "question": "Абсолютбанк", - "icon": "./assets/data/nsi/logos/absolutbank-4aad73.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/absolutbank-4aad73.svg", "osmTags": { "and": [ "amenity=bank", @@ -276272,7 +276618,7 @@ }, { "question": "Авангард", - "icon": "./assets/data/nsi/logos/avangardbank-0eb427.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avangardbank-0eb427.png", "osmTags": { "and": [ "amenity=bank", @@ -276292,7 +276638,7 @@ }, { "question": "Азиатско-Тихоокеанский Банк", - "icon": "./assets/data/nsi/logos/asianpacificbank-0eb427.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asianpacificbank-0eb427.png", "osmTags": { "and": [ "amenity=bank", @@ -276312,7 +276658,7 @@ }, { "question": "Ак Барс Банк", - "icon": "./assets/data/nsi/logos/akbarsbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akbarsbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276332,7 +276678,7 @@ }, { "question": "Акордбанк", - "icon": "./assets/data/nsi/logos/accordbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accordbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276352,7 +276698,7 @@ }, { "question": "Альфа-Банк (Беларусь)", - "icon": "./assets/data/nsi/logos/alfabank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfabank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276374,7 +276720,7 @@ }, { "question": "Альфа-Банк (Россия)", - "icon": "./assets/data/nsi/logos/alfabank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfabank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276394,7 +276740,7 @@ }, { "question": "Бакай банк", - "icon": "./assets/data/nsi/logos/27e679-cf89ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/27e679-cf89ba.png", "osmTags": { "and": [ "amenity=bank", @@ -276410,7 +276756,7 @@ }, { "question": "Банк ВТБ (Беларусь)", - "icon": "./assets/data/nsi/logos/vtbbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vtbbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276432,7 +276778,7 @@ }, { "question": "Банк Дабрабыт", - "icon": "./assets/data/nsi/logos/bankdabrabyt-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankdabrabyt-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276454,7 +276800,7 @@ }, { "question": "Банк Кредит Дніпро", - "icon": "./assets/data/nsi/logos/bankcreditdnipro-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankcreditdnipro-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276474,7 +276820,7 @@ }, { "question": "Банк Львів", - "icon": "./assets/data/nsi/logos/banklviv-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banklviv-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276494,7 +276840,7 @@ }, { "question": "Банк Південний", - "icon": "./assets/data/nsi/logos/pivdennybank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pivdennybank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276514,7 +276860,7 @@ }, { "question": "Банк Решение", - "icon": "./assets/data/nsi/logos/resheniebank-4aad73.png", + "icon": "https://data.mapcomplete.org/nsi//logos/resheniebank-4aad73.png", "osmTags": { "and": [ "amenity=bank", @@ -276536,7 +276882,7 @@ }, { "question": "Банк Санкт-Петербург", - "icon": "./assets/data/nsi/logos/bankofsaintpetersburg-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofsaintpetersburg-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276556,7 +276902,7 @@ }, { "question": "Банка ДСК", - "icon": "./assets/data/nsi/logos/dskbank-126296.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dskbank-126296.png", "osmTags": { "and": [ "amenity=bank", @@ -276576,7 +276922,7 @@ }, { "question": "Белагропромбанк", - "icon": "./assets/data/nsi/logos/belagroprombank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belagroprombank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276598,7 +276944,7 @@ }, { "question": "Беларусбанк", - "icon": "./assets/data/nsi/logos/belarusbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belarusbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276620,7 +276966,7 @@ }, { "question": "БелВЭБ", - "icon": "./assets/data/nsi/logos/belveb-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belveb-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276643,7 +276989,7 @@ }, { "question": "Белгазпромбанк", - "icon": "./assets/data/nsi/logos/belgazprombank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belgazprombank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276665,7 +277011,7 @@ }, { "question": "Белинвестбанк", - "icon": "./assets/data/nsi/logos/belinvestbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belinvestbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276687,7 +277033,7 @@ }, { "question": "Бинбанк", - "icon": "./assets/data/nsi/logos/bandnbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandnbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276707,7 +277053,7 @@ }, { "question": "БНБ-Банк", - "icon": "./assets/data/nsi/logos/bnbbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnbbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276729,7 +277075,7 @@ }, { "question": "БСБ Банк", - "icon": "./assets/data/nsi/logos/bsbbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bsbbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276751,7 +277097,7 @@ }, { "question": "БТА Банк (Беларусь)", - "icon": "./assets/data/nsi/logos/btabank-4aad73.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/btabank-4aad73.svg", "osmTags": { "and": [ "amenity=bank", @@ -276773,7 +277119,7 @@ }, { "question": "БТА Банк (Україна)", - "icon": "./assets/data/nsi/logos/btabank-c8dc19.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/btabank-c8dc19.svg", "osmTags": { "and": [ "amenity=bank", @@ -276793,7 +277139,7 @@ }, { "question": "Българо-американска кредитна банка", - "icon": "./assets/data/nsi/logos/bacb-126296.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bacb-126296.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276833,7 +277179,7 @@ }, { "question": "Восточный", - "icon": "./assets/data/nsi/logos/vostochnybank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vostochnybank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276853,7 +277199,7 @@ }, { "question": "ВТБ (Россия)", - "icon": "./assets/data/nsi/logos/vtbbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vtbbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276873,7 +277219,7 @@ }, { "question": "Газпромбанк", - "icon": "./assets/data/nsi/logos/gazprombank-0eb427.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gazprombank-0eb427.svg", "osmTags": { "and": [ "amenity=bank", @@ -276893,7 +277239,7 @@ }, { "question": "Генбанк", - "icon": "./assets/data/nsi/logos/3b7e11-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3b7e11-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276930,7 +277276,7 @@ }, { "question": "Зенит", - "icon": "./assets/data/nsi/logos/zenit-0eb427.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zenit-0eb427.png", "osmTags": { "and": [ "amenity=bank", @@ -276950,7 +277296,7 @@ }, { "question": "Инвестбанк", - "icon": "./assets/data/nsi/logos/investbank-126296.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/investbank-126296.jpg", "osmTags": { "and": [ "amenity=bank", @@ -276969,7 +277315,7 @@ }, { "question": "Індустріалбанк", - "icon": "./assets/data/nsi/logos/industrialbank-c8dc19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/industrialbank-c8dc19.png", "osmTags": { "and": [ "amenity=bank", @@ -276989,7 +277335,7 @@ }, { "question": "Комерцијална банка", - "icon": "./assets/data/nsi/logos/a53bba-39118c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/a53bba-39118c.png", "osmTags": { "and": [ "amenity=bank", @@ -277005,7 +277351,7 @@ }, { "question": "Комінвестбанк", - "icon": "./assets/data/nsi/logos/cominvestbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cominvestbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277082,7 +277428,7 @@ }, { "question": "Московский кредитный банк", - "icon": "./assets/data/nsi/logos/creditbankofmoscow-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creditbankofmoscow-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277121,7 +277467,7 @@ }, { "question": "МТБанк", - "icon": "./assets/data/nsi/logos/mtbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277143,7 +277489,7 @@ }, { "question": "МТС Банк", - "icon": "./assets/data/nsi/logos/mtsbank-0eb427.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mtsbank-0eb427.png", "osmTags": { "and": [ "amenity=bank", @@ -277163,7 +277509,7 @@ }, { "question": "НЛБ Тутунска Банка", - "icon": "./assets/data/nsi/logos/nlbtutunskabanka-39118c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nlbtutunskabanka-39118c.svg", "osmTags": { "and": [ "amenity=bank", @@ -277181,7 +277527,7 @@ }, { "question": "ОББ* (България)", - "icon": "./assets/data/nsi/logos/ubb-126296.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ubb-126296.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277200,7 +277546,7 @@ }, { "question": "Обединена Българска Банка", - "icon": "./assets/data/nsi/logos/unitedbulgarianbank-126296.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedbulgarianbank-126296.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277222,7 +277568,7 @@ }, { "question": "Общинска банка", - "icon": "./assets/data/nsi/logos/municipalbank-126296.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalbank-126296.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277242,7 +277588,7 @@ }, { "question": "Открытие", - "icon": "./assets/data/nsi/logos/ce06bd-0eb427.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ce06bd-0eb427.png", "osmTags": { "and": [ "amenity=bank", @@ -277258,7 +277604,7 @@ }, { "question": "ОТП Банк (Россия)", - "icon": "./assets/data/nsi/logos/otpbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277279,7 +277625,7 @@ }, { "question": "Ощадбанк", - "icon": "./assets/data/nsi/logos/oschadbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oschadbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277299,7 +277645,7 @@ }, { "question": "Паритетбанк", - "icon": "./assets/data/nsi/logos/paritetbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paritetbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277340,7 +277686,7 @@ }, { "question": "Почта Банк", - "icon": "./assets/data/nsi/logos/postbank-0eb427.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postbank-0eb427.png", "osmTags": { "and": [ "amenity=bank", @@ -277360,7 +277706,7 @@ }, { "question": "Пощенска банка", - "icon": "./assets/data/nsi/logos/postbank-126296.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postbank-126296.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277378,7 +277724,7 @@ }, { "question": "Правекс-Банк", - "icon": "./assets/data/nsi/logos/pravexbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pravexbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277398,7 +277744,7 @@ }, { "question": "ПриватБанк", - "icon": "./assets/data/nsi/logos/privatbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/privatbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277418,7 +277764,7 @@ }, { "question": "Приднестровский Сбербанк", - "icon": "./assets/data/nsi/logos/pridnestroviansavingsbank-59fea4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pridnestroviansavingsbank-59fea4.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277438,7 +277784,7 @@ }, { "question": "Приорбанк", - "icon": "./assets/data/nsi/logos/priorbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/priorbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277462,7 +277808,7 @@ }, { "question": "ПроКредит Банк (България)", - "icon": "./assets/data/nsi/logos/procreditbank-126296.png", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-126296.png", "osmTags": { "and": [ "amenity=bank", @@ -277482,7 +277828,7 @@ }, { "question": "Промсвязьбанк", - "icon": "./assets/data/nsi/logos/promsvyazbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/promsvyazbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277502,7 +277848,7 @@ }, { "question": "ПУМБ", - "icon": "./assets/data/nsi/logos/firstukrainianinternationalbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstukrainianinternationalbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277522,7 +277868,7 @@ }, { "question": "Райффайзен", - "icon": "./assets/data/nsi/logos/raiffeisenbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277542,7 +277888,7 @@ }, { "question": "РГС Банк", - "icon": "./assets/data/nsi/logos/rgsbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rgsbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277562,7 +277908,7 @@ }, { "question": "Ренессанс Кредит", - "icon": "./assets/data/nsi/logos/renaissancecredit-0eb427.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/renaissancecredit-0eb427.svg", "osmTags": { "and": [ "amenity=bank", @@ -277582,7 +277928,7 @@ }, { "question": "РНКБ", - "icon": "./assets/data/nsi/logos/f27cb2-0eb427.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/f27cb2-0eb427.svg", "osmTags": { "and": [ "amenity=bank", @@ -277598,7 +277944,7 @@ }, { "question": "Росбанк", - "icon": "./assets/data/nsi/logos/rosbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277637,7 +277983,7 @@ }, { "question": "РРБ-Банк", - "icon": "./assets/data/nsi/logos/gbdbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gbdbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277660,7 +278006,7 @@ }, { "question": "Русский Стандарт", - "icon": "./assets/data/nsi/logos/russianstandardbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/russianstandardbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277680,7 +278026,7 @@ }, { "question": "Сбер Банк (Беларусь)", - "icon": "./assets/data/nsi/logos/sberbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sberbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277702,7 +278048,7 @@ }, { "question": "Сбербанк", - "icon": "./assets/data/nsi/logos/sberbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sberbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277722,7 +278068,7 @@ }, { "question": "Совкомбанк", - "icon": "./assets/data/nsi/logos/sovcombank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sovcombank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277742,7 +278088,7 @@ }, { "question": "СтатусБанк", - "icon": "./assets/data/nsi/logos/statusbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/statusbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277764,7 +278110,7 @@ }, { "question": "Стопанска банка Битола", - "icon": "./assets/data/nsi/logos/c62c01-39118c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c62c01-39118c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277780,7 +278126,7 @@ }, { "question": "Стопанска банка Скопје", - "icon": "./assets/data/nsi/logos/67eeb1-39118c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/67eeb1-39118c.png", "osmTags": { "and": [ "amenity=bank", @@ -277796,7 +278142,7 @@ }, { "question": "Таскомбанк", - "icon": "./assets/data/nsi/logos/tascombank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tascombank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277816,7 +278162,7 @@ }, { "question": "Технобанк", - "icon": "./assets/data/nsi/logos/technobank-4aad73.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technobank-4aad73.png", "osmTags": { "and": [ "amenity=bank", @@ -277860,7 +278206,7 @@ }, { "question": "Төрийн банк", - "icon": "./assets/data/nsi/logos/statebank-031586.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/statebank-031586.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277880,7 +278226,7 @@ }, { "question": "Укрексімбанк", - "icon": "./assets/data/nsi/logos/ukreximbank-c8dc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukreximbank-c8dc19.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277900,7 +278246,7 @@ }, { "question": "УНИБанка", - "icon": "./assets/data/nsi/logos/unibank-39118c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unibank-39118c.png", "osmTags": { "and": [ "amenity=bank", @@ -277918,7 +278264,7 @@ }, { "question": "Уралсиб", - "icon": "./assets/data/nsi/logos/uralsibbank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uralsibbank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277938,7 +278284,7 @@ }, { "question": "Уральский банк реконструкции и развития", - "icon": "./assets/data/nsi/logos/uralbankforreconstructionanddevelopment-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uralbankforreconstructionanddevelopment-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -277981,7 +278327,7 @@ }, { "question": "Хаан банк", - "icon": "./assets/data/nsi/logos/khanbank-031586.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/khanbank-031586.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278001,7 +278347,7 @@ }, { "question": "Халк Банка (Северна Македонија)", - "icon": "./assets/data/nsi/logos/halkbank-39118c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/halkbank-39118c.svg", "osmTags": { "and": [ "amenity=bank", @@ -278019,7 +278365,7 @@ }, { "question": "Хоум Кредит", - "icon": "./assets/data/nsi/logos/homecreditandfinancebank-0eb427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homecreditandfinancebank-0eb427.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278039,7 +278385,7 @@ }, { "question": "Централна Кооперативна Банка", - "icon": "./assets/data/nsi/logos/centralcooperativebank-126296.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralcooperativebank-126296.png", "osmTags": { "and": [ "amenity=bank", @@ -278061,7 +278407,7 @@ }, { "question": "Централна Кооперативна Банка Скопје", - "icon": "./assets/data/nsi/logos/centralcooperativebank-39118c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralcooperativebank-39118c.png", "osmTags": { "and": [ "amenity=bank", @@ -278083,7 +278429,7 @@ }, { "question": "Цептер Банк", - "icon": "./assets/data/nsi/logos/zepterbank-4aad73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zepterbank-4aad73.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278105,7 +278451,7 @@ }, { "question": "Шпаркасе", - "icon": "./assets/data/nsi/logos/sparkassen-39118c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkassen-39118c.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278142,7 +278488,7 @@ }, { "question": "ბაზისბანკი", - "icon": "./assets/data/nsi/logos/basisbank-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/basisbank-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278165,7 +278511,7 @@ }, { "question": "ბანკი ქართუ", - "icon": "./assets/data/nsi/logos/cartubank-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cartubank-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278188,7 +278534,7 @@ }, { "question": "ზირაათ ბანკი", - "icon": "./assets/data/nsi/logos/ziraatbank-293074.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ziraatbank-293074.png", "osmTags": { "and": [ "amenity=bank", @@ -278213,7 +278559,7 @@ }, { "question": "თიბისი ბანკი", - "icon": "./assets/data/nsi/logos/tbcbank-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tbcbank-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278239,7 +278585,7 @@ }, { "question": "იშბანკი", - "icon": "./assets/data/nsi/logos/isbank-088e7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isbank-088e7d.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278266,7 +278612,7 @@ }, { "question": "იშბანკი (საქართველო)", - "icon": "./assets/data/nsi/logos/isbank-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isbank-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278293,7 +278639,7 @@ }, { "question": "კრედო ბანკი", - "icon": "./assets/data/nsi/logos/credobank-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/credobank-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278339,7 +278685,7 @@ }, { "question": "ლიბერთი ბანკი", - "icon": "./assets/data/nsi/logos/liberty-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liberty-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278362,7 +278708,7 @@ }, { "question": "პროკრედიტ ბანკი", - "icon": "./assets/data/nsi/logos/procreditbank-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procreditbank-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278409,7 +278755,7 @@ }, { "question": "საქართველოს ბანკი", - "icon": "./assets/data/nsi/logos/solo-293074.png", + "icon": "https://data.mapcomplete.org/nsi//logos/solo-293074.png", "osmTags": { "and": [ "amenity=bank", @@ -278433,7 +278779,7 @@ }, { "question": "ტერაბანკი", - "icon": "./assets/data/nsi/logos/terabank-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terabank-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278456,7 +278802,7 @@ }, { "question": "ხალიკ ბანკი", - "icon": "./assets/data/nsi/logos/halykbank-293074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halykbank-293074.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278483,7 +278829,7 @@ }, { "question": "בנק אגוד", - "icon": "./assets/data/nsi/logos/unionbankofisrael-563f7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbankofisrael-563f7f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278523,7 +278869,7 @@ }, { "question": "בנק דיסקונט", - "icon": "./assets/data/nsi/logos/bankdiscount-563f7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankdiscount-563f7f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278543,7 +278889,7 @@ }, { "question": "בנק הפועלים", - "icon": "./assets/data/nsi/logos/bankhapoalim-563f7f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankhapoalim-563f7f.svg", "osmTags": { "and": [ "amenity=bank", @@ -278563,7 +278909,7 @@ }, { "question": "בנק יהד", - "icon": "./assets/data/nsi/logos/bankyahav-563f7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankyahav-563f7f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278583,7 +278929,7 @@ }, { "question": "בנק ירושלים", - "icon": "./assets/data/nsi/logos/bankofjerusalem-563f7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofjerusalem-563f7f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278603,7 +278949,7 @@ }, { "question": "בנק לאומי", - "icon": "./assets/data/nsi/logos/bankleumi-563f7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankleumi-563f7f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278642,7 +278988,7 @@ }, { "question": "הבנק הבינלאומי", - "icon": "./assets/data/nsi/logos/firstinternationalbankofisrael-563f7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstinternationalbankofisrael-563f7f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278662,7 +279008,7 @@ }, { "question": "מזרחי טפחות", - "icon": "./assets/data/nsi/logos/bankmizrahitefahot-563f7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmizrahitefahot-563f7f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278722,7 +279068,7 @@ }, { "question": "البنك الأهلي السعودي", - "icon": "./assets/data/nsi/logos/saudinationalbank-8f3bad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saudinationalbank-8f3bad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278743,7 +279089,7 @@ }, { "question": "البنك الأول", - "icon": "./assets/data/nsi/logos/alawwalbank-8f3bad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alawwalbank-8f3bad.svg", "osmTags": { "and": [ "amenity=bank", @@ -278763,7 +279109,7 @@ }, { "question": "البنك السعودي البريطاني", - "icon": "./assets/data/nsi/logos/saudibritishbank-8f3bad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saudibritishbank-8f3bad.svg", "osmTags": { "and": [ "amenity=bank", @@ -278784,7 +279130,7 @@ }, { "question": "البنك السعودي الفرنسي", - "icon": "./assets/data/nsi/logos/banquesaudifransi-8f3bad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquesaudifransi-8f3bad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278805,7 +279151,7 @@ }, { "question": "البنك السعودي للاستثمار", - "icon": "./assets/data/nsi/logos/saudiinvestmentbank-8f3bad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saudiinvestmentbank-8f3bad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278840,7 +279186,7 @@ }, { "question": "البنك العربي الوطني", - "icon": "./assets/data/nsi/logos/arabnationalbank-8f3bad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arabnationalbank-8f3bad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278861,7 +279207,7 @@ }, { "question": "البنك العربي لتونس", - "icon": "./assets/data/nsi/logos/arabtunisianbank-367f6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arabtunisianbank-367f6f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278882,7 +279228,7 @@ }, { "question": "البنك الوطني الجزائري", - "icon": "./assets/data/nsi/logos/nationalbankofalgeria-47c9bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbankofalgeria-47c9bd.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278902,7 +279248,7 @@ }, { "question": "بانک آینده", - "icon": "./assets/data/nsi/logos/ayandehbank-cdfa72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayandehbank-cdfa72.png", "osmTags": { "and": [ "amenity=bank", @@ -278922,7 +279268,7 @@ }, { "question": "بانک اقتصاد نوین", - "icon": "./assets/data/nsi/logos/enbank-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enbank-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278961,7 +279307,7 @@ }, { "question": "بانک ایران زمین", - "icon": "./assets/data/nsi/logos/1bf094-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1bf094-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -278996,7 +279342,7 @@ }, { "question": "بانک پاسارگاد", - "icon": "./assets/data/nsi/logos/bankpasargad-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankpasargad-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279016,7 +279362,7 @@ }, { "question": "بانک تجارت", - "icon": "./assets/data/nsi/logos/667eb5-cdfa72.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/667eb5-cdfa72.svg", "osmTags": { "and": [ "amenity=bank", @@ -279032,7 +279378,7 @@ }, { "question": "بانک توسعه تعاون", - "icon": "./assets/data/nsi/logos/9d24d1-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9d24d1-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279067,7 +279413,7 @@ }, { "question": "بانک رفاه", - "icon": "./assets/data/nsi/logos/refahbank-cdfa72.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/refahbank-cdfa72.svg", "osmTags": { "and": [ "amenity=bank", @@ -279087,7 +279433,7 @@ }, { "question": "بانک سامان", - "icon": "./assets/data/nsi/logos/samanbank-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samanbank-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279107,7 +279453,7 @@ }, { "question": "بانک سپه", - "icon": "./assets/data/nsi/logos/banksepah-cdfa72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banksepah-cdfa72.png", "osmTags": { "and": [ "amenity=bank", @@ -279127,7 +279473,7 @@ }, { "question": "بانک سرمایه", - "icon": "./assets/data/nsi/logos/sarmayehbank-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sarmayehbank-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279147,7 +279493,7 @@ }, { "question": "بانک سینا", - "icon": "./assets/data/nsi/logos/sinabank-cdfa72.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinabank-cdfa72.svg", "osmTags": { "and": [ "amenity=bank", @@ -279167,7 +279513,7 @@ }, { "question": "بانک شهر", - "icon": "./assets/data/nsi/logos/shahrbank-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shahrbank-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279187,7 +279533,7 @@ }, { "question": "بانک صادرات", - "icon": "./assets/data/nsi/logos/banksaderatiran-cdfa72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banksaderatiran-cdfa72.png", "osmTags": { "and": [ "amenity=bank", @@ -279246,7 +279592,7 @@ }, { "question": "بانک کشاورزی", - "icon": "./assets/data/nsi/logos/bankkeshavarziiran-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankkeshavarziiran-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279280,7 +279626,7 @@ }, { "question": "بانک مسکن", - "icon": "./assets/data/nsi/logos/bankmaskan-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankmaskan-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279355,7 +279701,7 @@ }, { "question": "بنك البلاد", - "icon": "./assets/data/nsi/logos/bankalbilad-8f3bad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankalbilad-8f3bad.png", "osmTags": { "and": [ "amenity=bank", @@ -279376,7 +279722,7 @@ }, { "question": "بنك الجزيرة", - "icon": "./assets/data/nsi/logos/bankaljazira-8f3bad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankaljazira-8f3bad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279397,7 +279743,7 @@ }, { "question": "بنك الرياض", - "icon": "./assets/data/nsi/logos/riyadbank-8f3bad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/riyadbank-8f3bad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279417,7 +279763,7 @@ }, { "question": "بنك تونس العربي الدولي", - "icon": "./assets/data/nsi/logos/arabinternationalbankoftunisia-367f6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arabinternationalbankoftunisia-367f6f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279437,7 +279783,7 @@ }, { "question": "پست بانک", - "icon": "./assets/data/nsi/logos/postbankofiran-cdfa72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postbankofiran-cdfa72.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279457,7 +279803,7 @@ }, { "question": "جے ایس بینک", - "icon": "./assets/data/nsi/logos/jsbank-da5806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jsbank-da5806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279477,7 +279823,7 @@ }, { "question": "سوسيتيه جنرال", - "icon": "./assets/data/nsi/logos/societegenerale-3601cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegenerale-3601cd.png", "osmTags": { "and": [ "amenity=bank", @@ -279497,7 +279843,7 @@ }, { "question": "مصرف الإنماء", - "icon": "./assets/data/nsi/logos/alinmabank-8f3bad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alinmabank-8f3bad.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279520,7 +279866,7 @@ }, { "question": "مصرف الراجحي", - "icon": "./assets/data/nsi/logos/333979-c05ba5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/333979-c05ba5.png", "osmTags": { "and": [ "amenity=bank", @@ -279536,7 +279882,7 @@ }, { "question": "مصرف الزيتونة", - "icon": "./assets/data/nsi/logos/2e6f93-367f6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2e6f93-367f6f.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279556,7 +279902,7 @@ }, { "question": "نیشنل بینک آف پاکستان", - "icon": "./assets/data/nsi/logos/nationalbankofpakistan-da5806.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbankofpakistan-da5806.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279579,7 +279925,7 @@ }, { "question": "یونائیٹڈ بینک لمیٹڈ", - "icon": "./assets/data/nsi/logos/unitedbanklimited-da5806.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedbanklimited-da5806.png", "osmTags": { "and": [ "amenity=bank", @@ -279603,7 +279949,7 @@ }, { "question": "অগ্রণী ব্যাংক", - "icon": "./assets/data/nsi/logos/agranibank-240b09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agranibank-240b09.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279623,7 +279969,7 @@ }, { "question": "গ্রামীণ ব্যাংক", - "icon": "./assets/data/nsi/logos/grameenbank-240b09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grameenbank-240b09.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279643,7 +279989,7 @@ }, { "question": "জনতা ব্যাংক লিমিটেড", - "icon": "./assets/data/nsi/logos/janatabanklimited-240b09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/janatabanklimited-240b09.png", "osmTags": { "and": [ "amenity=bank", @@ -279663,7 +280009,7 @@ }, { "question": "বাংলাদেশ কৃষি ব্যাংক", - "icon": "./assets/data/nsi/logos/bangladeshkrishibank-240b09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangladeshkrishibank-240b09.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279683,7 +280029,7 @@ }, { "question": "সোনালী ব্যাংক লিমিটেড", - "icon": "./assets/data/nsi/logos/sonalibank-240b09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sonalibank-240b09.png", "osmTags": { "and": [ "amenity=bank", @@ -279703,7 +280049,7 @@ }, { "question": "กรุงศรี", - "icon": "./assets/data/nsi/logos/bankofayudhya-3229f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofayudhya-3229f1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279724,7 +280070,7 @@ }, { "question": "ธนาคารกรุงเทพ", - "icon": "./assets/data/nsi/logos/bangkokbank-3229f1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangkokbank-3229f1.svg", "osmTags": { "and": [ "amenity=bank", @@ -279744,7 +280090,7 @@ }, { "question": "ธนาคารกรุงไทย", - "icon": "./assets/data/nsi/logos/krungthaibank-3229f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krungthaibank-3229f1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279764,7 +280110,7 @@ }, { "question": "ธนาคารกสิกรไทย", - "icon": "./assets/data/nsi/logos/kasikornbank-3229f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kasikornbank-3229f1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279784,7 +280130,7 @@ }, { "question": "ธนาคารทหารไทย", - "icon": "./assets/data/nsi/logos/tmbthanachartbank-3229f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tmbthanachartbank-3229f1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279805,7 +280151,7 @@ }, { "question": "ธนาคารไทยพาณิชย์", - "icon": "./assets/data/nsi/logos/siamcommercialbank-3229f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siamcommercialbank-3229f1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279844,7 +280190,7 @@ }, { "question": "ธนาคารออมสิน", - "icon": "./assets/data/nsi/logos/governmentsavingsbank-3229f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentsavingsbank-3229f1.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279864,7 +280210,7 @@ }, { "question": "농협", - "icon": "./assets/data/nsi/logos/nonghyupbank-10d607.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nonghyupbank-10d607.png", "osmTags": { "and": [ "amenity=bank", @@ -279884,7 +280230,7 @@ }, { "question": "신한은행", - "icon": "./assets/data/nsi/logos/shinhanbank-10d607.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shinhanbank-10d607.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279920,7 +280266,7 @@ }, { "question": "우리은행", - "icon": "./assets/data/nsi/logos/wooribank-10d607.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wooribank-10d607.png", "osmTags": { "and": [ "amenity=bank", @@ -279940,7 +280286,7 @@ }, { "question": "하나은행", - "icon": "./assets/data/nsi/logos/kebhanabank-10d607.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kebhanabank-10d607.jpg", "osmTags": { "and": [ "amenity=bank", @@ -279960,7 +280306,7 @@ }, { "question": "イオン銀行", - "icon": "./assets/data/nsi/logos/aeonbank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeonbank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -279999,7 +280345,7 @@ }, { "question": "スルガ銀行", - "icon": "./assets/data/nsi/logos/surugabank-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surugabank-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280019,7 +280365,7 @@ }, { "question": "セブン銀行", - "icon": "./assets/data/nsi/logos/sevenbank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sevenbank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -280039,7 +280385,7 @@ }, { "question": "みずほ銀行", - "icon": "./assets/data/nsi/logos/mizuhobank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mizuhobank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -280059,7 +280405,7 @@ }, { "question": "ゆうちょ銀行", - "icon": "./assets/data/nsi/logos/japanpostbank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/japanpostbank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -280079,7 +280425,7 @@ }, { "question": "りそな銀行", - "icon": "./assets/data/nsi/logos/resonabank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/resonabank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -280099,7 +280445,7 @@ }, { "question": "三井住友信託銀行", - "icon": "./assets/data/nsi/logos/sumitomomitsuitrustbank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sumitomomitsuitrustbank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -280119,7 +280465,7 @@ }, { "question": "三井住友銀行", - "icon": "./assets/data/nsi/logos/sumitomomitsuibankingcorporation-d7a9e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sumitomomitsuibankingcorporation-d7a9e7.png", "osmTags": { "and": [ "amenity=bank", @@ -280163,7 +280509,7 @@ }, { "question": "三菱UFJ信託銀行", - "icon": "./assets/data/nsi/logos/mitsubishiufjtrustandbankingcorporation-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mitsubishiufjtrustandbankingcorporation-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -280183,7 +280529,7 @@ }, { "question": "三菱UFJ銀行", - "icon": "./assets/data/nsi/logos/mufgbank-d7a9e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mufgbank-d7a9e7.png", "osmTags": { "and": [ "amenity=bank", @@ -280222,7 +280568,7 @@ }, { "question": "上海商業儲蓄銀行", - "icon": "./assets/data/nsi/logos/shanghaicommercialandsavingsbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shanghaicommercialandsavingsbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280246,7 +280592,7 @@ }, { "question": "上海商業銀行 Shanghai Commercial Bank", - "icon": "./assets/data/nsi/logos/shanghaicommercialbank-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shanghaicommercialbank-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280271,7 +280617,7 @@ }, { "question": "上海浦东发展银行", - "icon": "./assets/data/nsi/logos/shanghaipudongdevelopmentbank-da74c0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shanghaipudongdevelopmentbank-da74c0.svg", "osmTags": { "and": [ "amenity=bank", @@ -280310,7 +280656,7 @@ }, { "question": "东亚银行", - "icon": "./assets/data/nsi/logos/bankofeastasia-267261.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofeastasia-267261.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280330,7 +280676,7 @@ }, { "question": "中信銀行(國際) China CITIC Bank International", - "icon": "./assets/data/nsi/logos/chinaciticbankinternational-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaciticbankinternational-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280354,7 +280700,7 @@ }, { "question": "中信银行", - "icon": "./assets/data/nsi/logos/chinaciticbank-267261.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaciticbank-267261.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280431,7 +280777,7 @@ }, { "question": "中国工商銀行 (日本)", - "icon": "./assets/data/nsi/logos/industrialandcommercialbankofchina-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/industrialandcommercialbankofchina-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280453,7 +280799,7 @@ }, { "question": "中国工商银行", - "icon": "./assets/data/nsi/logos/industrialandcommercialbankofchina-d2dfa9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/industrialandcommercialbankofchina-d2dfa9.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280473,7 +280819,7 @@ }, { "question": "中国建设银行", - "icon": "./assets/data/nsi/logos/chinaconstructionbank-d2dfa9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-d2dfa9.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280493,7 +280839,7 @@ }, { "question": "中国民生银行", - "icon": "./assets/data/nsi/logos/chinaminshengbank-da74c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaminshengbank-da74c0.png", "osmTags": { "and": [ "amenity=bank", @@ -280513,7 +280859,7 @@ }, { "question": "中国邮政储蓄银行", - "icon": "./assets/data/nsi/logos/postalsavingsbankofchina-da74c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postalsavingsbankofchina-da74c0.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280533,7 +280879,7 @@ }, { "question": "中国银行", - "icon": "./assets/data/nsi/logos/bankofchina-d2dfa9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofchina-d2dfa9.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280553,7 +280899,7 @@ }, { "question": "中國信託商業銀行", - "icon": "./assets/data/nsi/logos/ctbcbank-47d9e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ctbcbank-47d9e2.png", "osmTags": { "and": [ "amenity=bank", @@ -280577,7 +280923,7 @@ }, { "question": "中國工商銀行(亞洲) Industrial and Commercial Bank of China (Asia)", - "icon": "./assets/data/nsi/logos/icbcasia-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icbcasia-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280601,7 +280947,7 @@ }, { "question": "中國建設銀行 Banco de Construção da China", - "icon": "./assets/data/nsi/logos/chinaconstructionbank-fa24a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaconstructionbank-fa24a7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280627,7 +280973,7 @@ }, { "question": "中國建設銀行(亞洲) China Construction Bank (Asia)", - "icon": "./assets/data/nsi/logos/ccbasia-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ccbasia-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280651,7 +280997,7 @@ }, { "question": "中國銀行", - "icon": "./assets/data/nsi/logos/bankofchina-fa24a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofchina-fa24a7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280677,7 +281023,7 @@ }, { "question": "中國銀行(香港) Bank of China (Hong Kong)", - "icon": "./assets/data/nsi/logos/bankofchinahongkong-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofchinahongkong-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280704,7 +281050,6 @@ "osmTags": { "and": [ "amenity=bank", - "official_name=云南省农村信用社联合社", { "or": [ "brand=云南省农村信用社", @@ -280713,7 +281058,8 @@ "brand:zh=云南省农村信用社", "name=云南省农村信用社", "name:en=Yunnan Rural Credit Cooperatives", - "name:zh=云南省农村信用社" + "name:zh=云南省农村信用社", + "official_name=云南省农村信用社联合社" ] } ] @@ -280721,7 +281067,7 @@ }, { "question": "交通銀行 Bank of Communications", - "icon": "./assets/data/nsi/logos/bankofcommunications-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofcommunications-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280744,7 +281090,7 @@ }, { "question": "交通银行", - "icon": "./assets/data/nsi/logos/bankofcommunications-267261.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofcommunications-267261.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280764,7 +281110,7 @@ }, { "question": "京城商業銀行", - "icon": "./assets/data/nsi/logos/kingstownbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingstownbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280787,7 +281133,7 @@ }, { "question": "京葉銀行", - "icon": "./assets/data/nsi/logos/keiyobank-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keiyobank-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280808,7 +281154,7 @@ }, { "question": "京都中央信用金庫", - "icon": "./assets/data/nsi/logos/kyotochuoshinkinbank-d7a9e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyotochuoshinkinbank-d7a9e7.png", "osmTags": { "and": [ "amenity=bank", @@ -280828,7 +281174,7 @@ }, { "question": "京都銀行", - "icon": "./assets/data/nsi/logos/bankofkyoto-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofkyoto-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280848,7 +281194,7 @@ }, { "question": "伊予銀行", - "icon": "./assets/data/nsi/logos/iyobank-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iyobank-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280868,7 +281214,7 @@ }, { "question": "元大商業銀行", - "icon": "./assets/data/nsi/logos/yuantacommercialbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yuantacommercialbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280892,7 +281238,7 @@ }, { "question": "兆豐國際商業銀行", - "icon": "./assets/data/nsi/logos/megainternationalcommercialbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megainternationalcommercialbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280916,7 +281262,7 @@ }, { "question": "八十二銀行", - "icon": "./assets/data/nsi/logos/hachijunibank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hachijunibank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -280955,7 +281301,7 @@ }, { "question": "凱基商業銀行", - "icon": "./assets/data/nsi/logos/kgicommercialbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kgicommercialbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -280979,7 +281325,7 @@ }, { "question": "創興銀行 Chong Hing Bank", - "icon": "./assets/data/nsi/logos/chonghingbank-075cf6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chonghingbank-075cf6.png", "osmTags": { "and": [ "amenity=bank", @@ -281041,7 +281387,7 @@ }, { "question": "北洋銀行", - "icon": "./assets/data/nsi/logos/northpacificbank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/northpacificbank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -281094,7 +281440,7 @@ }, { "question": "十六銀行", - "icon": "./assets/data/nsi/logos/jurokubank-d7a9e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jurokubank-d7a9e7.png", "osmTags": { "and": [ "amenity=bank", @@ -281133,7 +281479,7 @@ }, { "question": "千葉銀行", - "icon": "./assets/data/nsi/logos/chibabank-d7a9e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chibabank-d7a9e7.png", "osmTags": { "and": [ "amenity=bank", @@ -281215,7 +281561,7 @@ }, { "question": "南都銀行", - "icon": "./assets/data/nsi/logos/nantobank-e30a8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nantobank-e30a8e.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281235,7 +281581,7 @@ }, { "question": "台中商業銀行", - "icon": "./assets/data/nsi/logos/taichungbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taichungbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281259,7 +281605,7 @@ }, { "question": "台北富邦商業銀行", - "icon": "./assets/data/nsi/logos/taipeifubonbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taipeifubonbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281283,7 +281629,7 @@ }, { "question": "台新國際商業銀行", - "icon": "./assets/data/nsi/logos/taishininternationalbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taishininternationalbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281307,7 +281653,7 @@ }, { "question": "合作金庫商業銀行", - "icon": "./assets/data/nsi/logos/taiwancooperativebank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwancooperativebank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281331,7 +281677,7 @@ }, { "question": "商工中金", - "icon": "./assets/data/nsi/logos/shokochukinbank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shokochukinbank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -281351,7 +281697,7 @@ }, { "question": "国泰银行", - "icon": "./assets/data/nsi/logos/cathaybank-f11880.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cathaybank-f11880.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281371,7 +281717,7 @@ }, { "question": "國泰世華商業銀行", - "icon": "./assets/data/nsi/logos/cathayunitedbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cathayunitedbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281395,7 +281741,7 @@ }, { "question": "埼玉りそな銀行", - "icon": "./assets/data/nsi/logos/saitamaresonabank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saitamaresonabank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -281415,7 +281761,7 @@ }, { "question": "多摩信用金庫", - "icon": "./assets/data/nsi/logos/tamashinkinbank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamashinkinbank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -281438,7 +281784,7 @@ }, { "question": "大新銀行 Dah Sing Bank", - "icon": "./assets/data/nsi/logos/dahsingbank-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dahsingbank-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281462,7 +281808,7 @@ }, { "question": "大眾銀行(香港) Public Bank (Hong Kong)", - "icon": "./assets/data/nsi/logos/publicbankhongkong-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicbankhongkong-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281486,7 +281832,7 @@ }, { "question": "大西洋銀行 Banco Nacional Ultramarino", - "icon": "./assets/data/nsi/logos/2997e9-fa24a7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/2997e9-fa24a7.svg", "osmTags": { "and": [ "amenity=bank", @@ -281506,7 +281852,7 @@ }, { "question": "大豐銀行 Banco Tai Fung", - "icon": "./assets/data/nsi/logos/taifungbank-fa24a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taifungbank-fa24a7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281566,7 +281912,7 @@ }, { "question": "安泰商業銀行", - "icon": "./assets/data/nsi/logos/entiecommercialbank-47d9e2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/entiecommercialbank-47d9e2.svg", "osmTags": { "and": [ "amenity=bank", @@ -281613,7 +281959,7 @@ }, { "question": "山梨中央銀行", - "icon": "./assets/data/nsi/logos/yamanashichuobank-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamanashichuobank-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281633,7 +281979,7 @@ }, { "question": "工銀澳門 ICBC", - "icon": "./assets/data/nsi/logos/icbc-fa24a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icbc-fa24a7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281657,7 +282003,7 @@ }, { "question": "常陽銀行", - "icon": "./assets/data/nsi/logos/joyobank-d7a9e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/joyobank-d7a9e7.png", "osmTags": { "and": [ "amenity=bank", @@ -281677,7 +282023,7 @@ }, { "question": "平安银行", - "icon": "./assets/data/nsi/logos/pinganbank-da74c0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pinganbank-da74c0.svg", "osmTags": { "and": [ "amenity=bank", @@ -281716,7 +282062,7 @@ }, { "question": "彰化商業銀行", - "icon": "./assets/data/nsi/logos/changhwabank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/changhwabank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281778,7 +282124,7 @@ }, { "question": "恒生銀行 Hang Seng Bank", - "icon": "./assets/data/nsi/logos/hangsengbank-075cf6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hangsengbank-075cf6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281802,7 +282148,7 @@ }, { "question": "愛知銀行", - "icon": "./assets/data/nsi/logos/aichibank-d7a9e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aichibank-d7a9e7.png", "osmTags": { "and": [ "amenity=bank", @@ -281864,7 +282210,7 @@ }, { "question": "日本銀行", - "icon": "./assets/data/nsi/logos/bankofjapan-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofjapan-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281884,7 +282230,7 @@ }, { "question": "星展(台灣)商業銀行", - "icon": "./assets/data/nsi/logos/dbsbanktaiwan-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbsbanktaiwan-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281904,7 +282250,7 @@ }, { "question": "星展銀行 DBS", - "icon": "./assets/data/nsi/logos/dbs-075cf6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbs-075cf6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281928,7 +282274,7 @@ }, { "question": "星展银行", - "icon": "./assets/data/nsi/logos/dbs-d2dfa9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbs-d2dfa9.jpg", "osmTags": { "and": [ "amenity=bank", @@ -281971,7 +282317,7 @@ }, { "question": "東亞銀行 Bank of East Asia", - "icon": "./assets/data/nsi/logos/bankofeastasia-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofeastasia-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282033,7 +282379,7 @@ }, { "question": "板信商業銀行", - "icon": "./assets/data/nsi/logos/bankofpanshin-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofpanshin-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282076,7 +282422,7 @@ }, { "question": "武蔵野銀行", - "icon": "./assets/data/nsi/logos/musashinobank-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/musashinobank-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282096,7 +282442,7 @@ }, { "question": "永豐商業銀行", - "icon": "./assets/data/nsi/logos/banksinopac-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banksinopac-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282196,7 +282542,7 @@ }, { "question": "渣打國際商業銀行", - "icon": "./assets/data/nsi/logos/standardcharteredtaiwan-47d9e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardcharteredtaiwan-47d9e2.png", "osmTags": { "and": [ "amenity=bank", @@ -282216,7 +282562,7 @@ }, { "question": "渣打銀行 Standard Chartered", - "icon": "./assets/data/nsi/logos/standardchartered-442838.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardchartered-442838.png", "osmTags": { "and": [ "amenity=bank", @@ -282240,7 +282586,7 @@ }, { "question": "渣打银行", - "icon": "./assets/data/nsi/logos/standardchartered-267261.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standardchartered-267261.png", "osmTags": { "and": [ "amenity=bank", @@ -282279,7 +282625,7 @@ }, { "question": "滙豐(台灣)商業銀行", - "icon": "./assets/data/nsi/logos/hsbcbanktaiwan-47d9e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbcbanktaiwan-47d9e2.png", "osmTags": { "and": [ "amenity=bank", @@ -282320,7 +282666,7 @@ }, { "question": "澳門國際銀行 Banco Luso Internacional", - "icon": "./assets/data/nsi/logos/lusointernationalbanking-fa24a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lusointernationalbanking-fa24a7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282342,7 +282688,7 @@ }, { "question": "玉山商業銀行", - "icon": "./assets/data/nsi/logos/esuncommercialbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esuncommercialbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282366,7 +282712,7 @@ }, { "question": "瑞興商業銀行", - "icon": "./assets/data/nsi/logos/taipeistarbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taipeistarbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282390,7 +282736,7 @@ }, { "question": "百五銀行", - "icon": "./assets/data/nsi/logos/c48abb-d7a9e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c48abb-d7a9e7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282406,7 +282752,7 @@ }, { "question": "盤谷銀行 Bangkok Bank", - "icon": "./assets/data/nsi/logos/bangkokbank-442838.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangkokbank-442838.svg", "osmTags": { "and": [ "amenity=bank", @@ -282430,7 +282776,7 @@ }, { "question": "立橋銀行 Well Link Bank", - "icon": "./assets/data/nsi/logos/welllinkbank-fa24a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welllinkbank-fa24a7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282452,7 +282798,7 @@ }, { "question": "第一商業銀行", - "icon": "./assets/data/nsi/logos/firstcommercialbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstcommercialbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282476,7 +282822,7 @@ }, { "question": "聯邦商業銀行", - "icon": "./assets/data/nsi/logos/unionbankoftaiwan-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionbankoftaiwan-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282500,7 +282846,7 @@ }, { "question": "臺灣中小企業銀行", - "icon": "./assets/data/nsi/logos/taiwanbusinessbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanbusinessbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282524,7 +282870,7 @@ }, { "question": "臺灣土地銀行", - "icon": "./assets/data/nsi/logos/landbankoftaiwan-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landbankoftaiwan-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282549,7 +282895,7 @@ }, { "question": "臺灣新光商業銀行", - "icon": "./assets/data/nsi/logos/shinkongcommercialbank-47d9e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shinkongcommercialbank-47d9e2.png", "osmTags": { "and": [ "amenity=bank", @@ -282573,7 +282919,7 @@ }, { "question": "臺灣銀行", - "icon": "./assets/data/nsi/logos/bankoftaiwan-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bankoftaiwan-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282617,7 +282963,7 @@ }, { "question": "花旗銀行 Citibank", - "icon": "./assets/data/nsi/logos/citibank-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citibank-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282642,7 +282988,7 @@ }, { "question": "華僑銀行 Banco OCBC", - "icon": "./assets/data/nsi/logos/ocbcbank-fa24a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocbcbank-fa24a7.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282668,7 +283014,7 @@ }, { "question": "華僑銀行 OCBC Bank", - "icon": "./assets/data/nsi/logos/ocbcbank-442838.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocbcbank-442838.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282692,7 +283038,7 @@ }, { "question": "華南商業銀行", - "icon": "./assets/data/nsi/logos/huanancommercialbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huanancommercialbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282739,7 +283085,7 @@ }, { "question": "近畿大阪銀行", - "icon": "./assets/data/nsi/logos/kinkiosakabank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinkiosakabank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -282759,7 +283105,7 @@ }, { "question": "遠東國際商業銀行", - "icon": "./assets/data/nsi/logos/fareasterninternationalbank-47d9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fareasterninternationalbank-47d9e2.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282848,7 +283194,7 @@ }, { "question": "香港上海滙豐銀行 HSBC", - "icon": "./assets/data/nsi/logos/hsbc-075cf6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsbc-075cf6.jpg", "osmTags": { "and": [ "amenity=bank", @@ -282895,7 +283241,7 @@ }, { "question": "鹿児島銀行", - "icon": "./assets/data/nsi/logos/kagoshimabank-d7a9e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kagoshimabank-d7a9e7.svg", "osmTags": { "and": [ "amenity=bank", @@ -282915,7 +283261,7 @@ }, { "question": "All Bar One", - "icon": "./assets/data/nsi/logos/allbarone-60d62f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allbarone-60d62f.png", "osmTags": { "and": [ "amenity=bar", @@ -282932,7 +283278,7 @@ }, { "question": "Bar Louie", - "icon": "./assets/data/nsi/logos/barlouie-f5e33a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barlouie-f5e33a.jpg", "osmTags": { "and": [ "amenity=bar", @@ -282949,7 +283295,7 @@ }, { "question": "Barrio", - "icon": "./assets/data/nsi/logos/barrio-f3bc39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barrio-f3bc39.jpg", "osmTags": { "and": [ "amenity=bar", @@ -282966,7 +283312,7 @@ }, { "question": "Be At One", - "icon": "./assets/data/nsi/logos/beatone-60d62f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beatone-60d62f.jpg", "osmTags": { "and": [ "amenity=bar", @@ -282998,7 +283344,7 @@ }, { "question": "Coyote Ugly", - "icon": "./assets/data/nsi/logos/coyoteugly-163d6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coyoteugly-163d6e.jpg", "osmTags": { "and": [ "amenity=bar", @@ -283014,7 +283360,7 @@ }, { "question": "Flight Club", - "icon": "./assets/data/nsi/logos/flightclub-dd725d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/flightclub-dd725d.png", "osmTags": { "and": [ "amenity=bar", @@ -283032,7 +283378,7 @@ }, { "question": "Piana Vyshnia", - "icon": "./assets/data/nsi/logos/pianavyshnia-1dc747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pianavyshnia-1dc747.jpg", "osmTags": { "and": [ "amenity=bar", @@ -283048,7 +283394,7 @@ }, { "question": "Pijalnia Wódki i Piwa", - "icon": "./assets/data/nsi/logos/pijalniawodkiipiwa-ca2c56.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pijalniawodkiipiwa-ca2c56.svg", "osmTags": { "and": [ "amenity=bar", @@ -283064,7 +283410,7 @@ }, { "question": "Pijana Wiśnia", - "icon": "./assets/data/nsi/logos/pijanawisnia-ca2c56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pijanawisnia-ca2c56.jpg", "osmTags": { "and": [ "amenity=bar", @@ -283095,7 +283441,7 @@ }, { "question": "Revolution", - "icon": "./assets/data/nsi/logos/revolution-60d62f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/revolution-60d62f.jpg", "osmTags": { "and": [ "amenity=bar", @@ -283177,7 +283523,7 @@ }, { "question": "Vagabond", - "icon": "./assets/data/nsi/logos/vagabond-149b5d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vagabond-149b5d.png", "osmTags": { "and": [ "amenity=bar", @@ -283193,7 +283539,7 @@ }, { "question": "Vino Volo", - "icon": "./assets/data/nsi/logos/vinovolo-197df4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vinovolo-197df4.jpg", "osmTags": { "and": [ "amenity=bar", @@ -283209,7 +283555,7 @@ }, { "question": "Пʼяна Вишня", - "icon": "./assets/data/nsi/logos/2db45d-10ce3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2db45d-10ce3b.jpg", "osmTags": { "and": [ "amenity=bar", @@ -283226,7 +283572,7 @@ }, { "question": "吧東 Bar East", - "icon": "./assets/data/nsi/logos/bareast-63b5b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bareast-63b5b7.jpg", "osmTags": { "and": [ "amenity=bar", @@ -283265,7 +283611,7 @@ }, { "question": "BikeTower", - "icon": "./assets/data/nsi/logos/biketower-f70454.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biketower-f70454.jpg", "osmTags": { "and": [ "amenity=bicycle_parking", @@ -283284,7 +283630,7 @@ }, { "question": "[TO]BIKE", - "icon": "./assets/data/nsi/logos/tobike-a9bfcc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tobike-a9bfcc.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283302,7 +283648,7 @@ }, { "question": "Aarhus Kommune", - "icon": "./assets/data/nsi/logos/aarhuskommune-578125.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aarhuskommune-578125.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283339,7 +283685,7 @@ }, { "question": "AMBici", - "icon": "./assets/data/nsi/logos/ambici-ec9ce2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambici-ec9ce2.svg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -283361,7 +283707,7 @@ }, { "question": "ANTIK SmartWay", - "icon": "./assets/data/nsi/logos/antiksmartway-3e2129.png", + "icon": "https://data.mapcomplete.org/nsi//logos/antiksmartway-3e2129.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283414,7 +283760,7 @@ }, { "question": "àVélo", - "icon": "./assets/data/nsi/logos/avelo-05ea99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avelo-05ea99.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283434,7 +283780,7 @@ }, { "question": "BA Ecobici", - "icon": "./assets/data/nsi/logos/baecobici-01b149.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baecobici-01b149.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283469,7 +283815,7 @@ }, { "question": "BatumVelo docking station", - "icon": "./assets/data/nsi/logos/batumvelo-c6bd00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/batumvelo-c6bd00.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283498,7 +283844,7 @@ }, { "question": "Bay Wheels", - "icon": "./assets/data/nsi/logos/baywheels-2a665b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baywheels-2a665b.png", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -283521,14 +283867,11 @@ }, { "question": "baybike", - "icon": "./assets/data/nsi/logos/baybike-813eb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baybike-813eb7.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", "fee=yes", - "official_name=横浜コミュニティサイクル", - "official_name:en=Yokohama Bike Share", - "official_name:ja=横浜コミュニティサイクル", { "or": [ "brand=baybike", @@ -283538,6 +283881,9 @@ "name=baybike", "name:en=baybike", "name:ja=ベイバイク", + "official_name=横浜コミュニティサイクル", + "official_name:en=Yokohama Bike Share", + "official_name:ja=横浜コミュニティサイクル", "operator=baybike", "operator:en=baybike", "operator:ja=ベイバイク", @@ -283550,7 +283896,7 @@ }, { "question": "BCycle", - "icon": "./assets/data/nsi/logos/bcycle-97ea79.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bcycle-97ea79.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283569,7 +283915,7 @@ }, { "question": "Belfast Bikes", - "icon": "./assets/data/nsi/logos/belfastbikes-a358c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belfastbikes-a358c0.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283589,7 +283935,7 @@ }, { "question": "Bergen Bysykkel", - "icon": "./assets/data/nsi/logos/bergenbysykkel-e79826.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bergenbysykkel-e79826.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283608,7 +283954,7 @@ }, { "question": "Beryl", - "icon": "./assets/data/nsi/logos/beryl-b88dc4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beryl-b88dc4.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283689,7 +284035,7 @@ }, { "question": "Bicicas", - "icon": "./assets/data/nsi/logos/bicicas-f59a8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bicicas-f59a8b.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283742,7 +284088,7 @@ }, { "question": "BicikeLJ", - "icon": "./assets/data/nsi/logos/bicikelj-3dc1ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bicikelj-3dc1ae.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283777,7 +284123,7 @@ }, { "question": "BiciMAD", - "icon": "./assets/data/nsi/logos/bicimad-f59a8b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bicimad-f59a8b.svg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -283817,7 +284163,7 @@ }, { "question": "bicing", - "icon": "./assets/data/nsi/logos/bicing-1df649.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bicing-1df649.png", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -283838,7 +284184,7 @@ }, { "question": "BiciQuito", - "icon": "./assets/data/nsi/logos/biciquito-3e9425.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/biciquito-3e9425.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -283871,7 +284217,7 @@ }, { "question": "Bicloo", - "icon": "./assets/data/nsi/logos/bicloo-fb0739.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bicloo-fb0739.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284020,7 +284366,7 @@ }, { "question": "Bike Share Toronto", - "icon": "./assets/data/nsi/logos/bikesharetoronto-843836.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikesharetoronto-843836.jpg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -284082,7 +284428,7 @@ }, { "question": "BikeMi", - "icon": "./assets/data/nsi/logos/bikemi-2861f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikemi-2861f8.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284116,7 +284462,7 @@ }, { "question": "bikenow", - "icon": "./assets/data/nsi/logos/bikenow-a162ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikenow-a162ac.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284165,7 +284511,7 @@ }, { "question": "Bikesantiago", - "icon": "./assets/data/nsi/logos/bikesantiago-70bf31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikesantiago-70bf31.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284184,7 +284530,7 @@ }, { "question": "Biketown PDX", - "icon": "./assets/data/nsi/logos/biketown-b463a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biketown-b463a6.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284206,7 +284552,7 @@ }, { "question": "Biketown WHQ", - "icon": "./assets/data/nsi/logos/biketown-c3d163.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biketown-c3d163.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284226,7 +284572,7 @@ }, { "question": "BikeU", - "icon": "./assets/data/nsi/logos/bikeu-4d145c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bikeu-4d145c.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284246,7 +284592,7 @@ }, { "question": "Biki (Honolulu)", - "icon": "./assets/data/nsi/logos/biki-1f7ada.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biki-1f7ada.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284267,7 +284613,7 @@ }, { "question": "Biki (Valladolid)", - "icon": "./assets/data/nsi/logos/biki-f59a8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biki-f59a8b.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284341,7 +284687,7 @@ }, { "question": "Bixi", - "icon": "./assets/data/nsi/logos/bixi-3eadaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bixi-3eadaa.jpg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -284396,7 +284742,7 @@ }, { "question": "Blue-bike", - "icon": "./assets/data/nsi/logos/bluebike-18cad7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bluebike-18cad7.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284415,7 +284761,7 @@ }, { "question": "Bluebikes", - "icon": "./assets/data/nsi/logos/bluebikes-b3cb11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluebikes-b3cb11.jpg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -284437,7 +284783,7 @@ }, { "question": "Boseh", - "icon": "./assets/data/nsi/logos/boseh-2db6d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boseh-2db6d2.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284549,7 +284895,7 @@ }, { "question": "Bublr Bikes", - "icon": "./assets/data/nsi/logos/bublrbikes-f2dea6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bublrbikes-f2dea6.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284568,7 +284914,7 @@ }, { "question": "Bycyklen", - "icon": "./assets/data/nsi/logos/bycyklen-e198ac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bycyklen-e198ac.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284605,7 +284951,7 @@ }, { "question": "Bysykkel (Oslo)", - "icon": "./assets/data/nsi/logos/oslobysykkel-e79826.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oslobysykkel-e79826.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284624,7 +284970,7 @@ }, { "question": "C.vélo", - "icon": "./assets/data/nsi/logos/cvelo-d06f5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cvelo-d06f5d.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284653,7 +284999,7 @@ }, { "question": "Call a Bike", - "icon": "./assets/data/nsi/logos/callabike-937152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/callabike-937152.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284673,7 +285019,7 @@ }, { "question": "Capital Bikeshare", - "icon": "./assets/data/nsi/logos/capitalbikeshare-f7b29d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalbikeshare-f7b29d.jpg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -284696,7 +285042,7 @@ }, { "question": "carvelo2go", - "icon": "./assets/data/nsi/logos/carvelo2go-61df48.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/carvelo2go-61df48.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -284766,7 +285112,7 @@ }, { "question": "Citi Bike", - "icon": "./assets/data/nsi/logos/citibike-6b7d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citibike-6b7d28.jpg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -284895,7 +285241,7 @@ }, { "question": "CoGo Bike Share", - "icon": "./assets/data/nsi/logos/cogo-919639.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cogo-919639.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285003,7 +285349,7 @@ }, { "question": "Date Bike", - "icon": "./assets/data/nsi/logos/datebike-813eb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/datebike-813eb7.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285059,7 +285405,7 @@ }, { "question": "Divvy", - "icon": "./assets/data/nsi/logos/divvy-6b0679.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/divvy-6b0679.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285097,7 +285443,7 @@ }, { "question": "Donkey Republic", - "icon": "./assets/data/nsi/logos/donkeyrepublic-c32b83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donkeyrepublic-c32b83.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285182,7 +285528,7 @@ }, { "question": "Ecobici (Ciudad de México)", - "icon": "./assets/data/nsi/logos/ecobici-0c0e40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecobici-0c0e40.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285232,7 +285578,7 @@ }, { "question": "Explore Bike Share", - "icon": "./assets/data/nsi/logos/explorebikeshare-6206fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/explorebikeshare-6206fb.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285251,7 +285597,7 @@ }, { "question": "fLotte", - "icon": "./assets/data/nsi/logos/flotte-937152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/flotte-937152.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285269,7 +285615,7 @@ }, { "question": "Föli-fillarit", - "icon": "./assets/data/nsi/logos/folifillarit-5c40d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/folifillarit-5c40d5.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285375,7 +285721,7 @@ }, { "question": "Gira", - "icon": "./assets/data/nsi/logos/gira-e6d7a6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gira-e6d7a6.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285513,7 +285859,7 @@ }, { "question": "Hamilton Bike Share", - "icon": "./assets/data/nsi/logos/hamiltonbikeshare-3eadaa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hamiltonbikeshare-3eadaa.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285549,7 +285895,7 @@ }, { "question": "HELLO CYCLING", - "icon": "./assets/data/nsi/logos/hellocycling-813eb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hellocycling-813eb7.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285593,7 +285939,7 @@ }, { "question": "Houston B-cycle", - "icon": "./assets/data/nsi/logos/houstonbcycle-bf6a4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/houstonbcycle-bf6a4b.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285623,7 +285969,7 @@ }, { "question": "I'Velo", - "icon": "./assets/data/nsi/logos/ivelo-8ba172.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ivelo-8ba172.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285641,7 +285987,7 @@ }, { "question": "IDEcycle", - "icon": "./assets/data/nsi/logos/idecycle-d06f5d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idecycle-d06f5d.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285661,7 +286007,7 @@ }, { "question": "Indego", - "icon": "./assets/data/nsi/logos/indego-d5d8a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indego-d5d8a9.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285681,7 +286027,7 @@ }, { "question": "Indiana Pacers Bikeshare", - "icon": "./assets/data/nsi/logos/indianapacersbikeshare-a05471.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianapacersbikeshare-a05471.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285735,7 +286081,7 @@ }, { "question": "Just Eat Cycles", - "icon": "./assets/data/nsi/logos/justeatcycles-f9bbc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/justeatcycles-f9bbc5.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -285853,7 +286199,7 @@ }, { "question": "Komunikacja Miejska w Szczecinku", - "icon": "./assets/data/nsi/logos/komunikacjamiejskawszczecinku-4d145c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/komunikacjamiejskawszczecinku-4d145c.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286110,7 +286456,7 @@ }, { "question": "Lubelski Rower Miejski", - "icon": "./assets/data/nsi/logos/lubelskirowermiejski-76b763.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lubelskirowermiejski-76b763.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286148,7 +286494,7 @@ }, { "question": "Lyft Bike", - "icon": "./assets/data/nsi/logos/lyftbike-94cb92.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lyftbike-94cb92.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286203,7 +286549,7 @@ }, { "question": "Metro Bike Share", - "icon": "./assets/data/nsi/logos/metrobikeshare-c0ce12.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrobikeshare-c0ce12.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286223,7 +286569,7 @@ }, { "question": "metropolradruhr", - "icon": "./assets/data/nsi/logos/metropolradruhr-130ced.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolradruhr-130ced.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286243,7 +286589,7 @@ }, { "question": "Metrorower", - "icon": "./assets/data/nsi/logos/metrorower-044cb3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrorower-044cb3.svg", "osmTags": { "and": [ "bicycle_rental=dropoff_point", @@ -286265,6 +286611,7 @@ }, { "question": "Métrovélo", + "icon": "https://data.mapcomplete.org/nsi//logos/metrovelo-d06f5d.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286284,7 +286631,7 @@ }, { "question": "MEVO", - "icon": "./assets/data/nsi/logos/mevo-022cbd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mevo-022cbd.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286303,7 +286650,7 @@ }, { "question": "Mi Bici Tu Bici", - "icon": "./assets/data/nsi/logos/mibicitubici-ffc303.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mibicitubici-ffc303.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286323,7 +286670,7 @@ }, { "question": "MiBici", - "icon": "./assets/data/nsi/logos/mibici-e0aaa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mibici-e0aaa7.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286342,7 +286689,7 @@ }, { "question": "Mobi", - "icon": "./assets/data/nsi/logos/mobi-3eadaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobi-3eadaa.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286381,7 +286728,7 @@ }, { "question": "MoGo", - "icon": "./assets/data/nsi/logos/mogo-e32d72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mogo-e32d72.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286398,7 +286745,7 @@ }, { "question": "MOL Bubi", - "icon": "./assets/data/nsi/logos/molbubi-7b42f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/molbubi-7b42f4.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286466,7 +286813,7 @@ }, { "question": "MVG Rad", - "icon": "./assets/data/nsi/logos/mvgrad-122f49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mvgrad-122f49.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286486,7 +286833,7 @@ }, { "question": "MVGmeinRad", - "icon": "./assets/data/nsi/logos/mvgmeinrad-db5602.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mvgmeinrad-db5602.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286506,7 +286853,7 @@ }, { "question": "nextbike (Україна)", - "icon": "./assets/data/nsi/logos/nextbike-a162ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nextbike-a162ac.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286529,7 +286876,7 @@ }, { "question": "nextbike Berlin", - "icon": "./assets/data/nsi/logos/nextbike-aad226.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nextbike-aad226.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286548,7 +286895,7 @@ }, { "question": "nextbike Cyprus", - "icon": "./assets/data/nsi/logos/nextbike-063331.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nextbike-063331.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286736,7 +287083,7 @@ }, { "question": "OV-fiets", - "icon": "./assets/data/nsi/logos/ovfiets-8def75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ovfiets-8def75.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286817,7 +287164,7 @@ }, { "question": "PeaceHealth Rides", - "icon": "./assets/data/nsi/logos/peacehealthrides-f8e6b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peacehealthrides-f8e6b8.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286980,7 +287327,7 @@ }, { "question": "PubliBike (Agglo Fribourg-Freiburg)", - "icon": "./assets/data/nsi/logos/publibike-53b479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publibike-53b479.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -286999,7 +287346,7 @@ }, { "question": "PubliBike (Lausanne-Morges)", - "icon": "./assets/data/nsi/logos/publibike-9ea11b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publibike-9ea11b.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287018,7 +287365,7 @@ }, { "question": "PubliBike (Lugano-Malcantone)", - "icon": "./assets/data/nsi/logos/publibike-0bf680.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publibike-0bf680.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287037,7 +287384,7 @@ }, { "question": "PubliBike (Région de Nyon)", - "icon": "./assets/data/nsi/logos/publibike-61be25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publibike-61be25.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287056,7 +287403,7 @@ }, { "question": "PubliBike (Sierre)", - "icon": "./assets/data/nsi/logos/publibike-04d31e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publibike-04d31e.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287075,7 +287422,7 @@ }, { "question": "PubliBike (Sion)", - "icon": "./assets/data/nsi/logos/publibike-31ea02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publibike-31ea02.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287094,7 +287441,7 @@ }, { "question": "PubliBike (Velo Bern)", - "icon": "./assets/data/nsi/logos/publibike-a8de7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publibike-a8de7e.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287139,7 +287486,7 @@ }, { "question": "Red Bike", - "icon": "./assets/data/nsi/logos/redbike-fb884c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redbike-fb884c.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287259,7 +287606,7 @@ }, { "question": "Santander Cycles (Brunel)", - "icon": "./assets/data/nsi/logos/santandercycles-977a2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santandercycles-977a2d.png", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -287279,7 +287626,7 @@ }, { "question": "Santander Cycles (London)", - "icon": "./assets/data/nsi/logos/santandercycles-fa09d1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santandercycles-fa09d1.png", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -287299,7 +287646,7 @@ }, { "question": "Santander Cycles (Milton Keynes)", - "icon": "./assets/data/nsi/logos/santandercyclesmk-a6b443.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santandercyclesmk-a6b443.png", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -287319,7 +287666,7 @@ }, { "question": "Santander Cycles (Swansea)", - "icon": "./assets/data/nsi/logos/santandercycles-61a333.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santandercycles-61a333.png", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -287356,7 +287703,7 @@ }, { "question": "Sevici", - "icon": "./assets/data/nsi/logos/sevici-e72e4e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sevici-e72e4e.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287386,7 +287733,7 @@ }, { "question": "sigo E-Lastenrad Sharing", - "icon": "./assets/data/nsi/logos/sigo-937152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sigo-937152.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287440,7 +287787,7 @@ }, { "question": "Slovnaft Bajk", - "icon": "./assets/data/nsi/logos/slovnaftbajk-3e2129.png", + "icon": "https://data.mapcomplete.org/nsi//logos/slovnaftbajk-3e2129.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287513,7 +287860,7 @@ }, { "question": "StadtRAD Hamburg", - "icon": "./assets/data/nsi/logos/stadtradhamburg-937152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtradhamburg-937152.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287552,7 +287899,7 @@ }, { "question": "STAR", - "icon": "./assets/data/nsi/logos/star-d06f5d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/star-d06f5d.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287590,7 +287937,7 @@ }, { "question": "Styr & Ställ", - "icon": "./assets/data/nsi/logos/styrandstall-bc0237.png", + "icon": "https://data.mapcomplete.org/nsi//logos/styrandstall-bc0237.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287647,7 +287994,7 @@ }, { "question": "Swapfiets", - "icon": "./assets/data/nsi/logos/swapfiets-76ee17.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swapfiets-76ee17.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287712,7 +288059,7 @@ }, { "question": "Taipei City Government", - "icon": "./assets/data/nsi/logos/taipeicitygovernment-1bb859.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taipeicitygovernment-1bb859.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287730,7 +288077,7 @@ }, { "question": "Tar Heel Bikes", - "icon": "./assets/data/nsi/logos/tarheelbikes-b77896.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tarheelbikes-b77896.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287811,7 +288158,7 @@ }, { "question": "TFI Bikes", - "icon": "./assets/data/nsi/logos/tfibikes-afbce7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tfibikes-afbce7.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287829,7 +288176,7 @@ }, { "question": "TINK", - "icon": "./assets/data/nsi/logos/tink-937152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tink-937152.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -287862,7 +288209,7 @@ }, { "question": "Torrebici", - "icon": "./assets/data/nsi/logos/torrebici-f59a8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/torrebici-f59a8b.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288027,7 +288374,7 @@ }, { "question": "V'Lille", - "icon": "./assets/data/nsi/logos/vlille-d06f5d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vlille-d06f5d.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288047,7 +288394,7 @@ }, { "question": "VAG_Rad", - "icon": "./assets/data/nsi/logos/vagrad-55ffd4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vagrad-55ffd4.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288067,7 +288414,7 @@ }, { "question": "Valenbisi", - "icon": "./assets/data/nsi/logos/valenbisi-630ce5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/valenbisi-630ce5.svg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -288125,7 +288472,7 @@ }, { "question": "Vel'oh!", - "icon": "./assets/data/nsi/logos/veloh-5de2c3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/veloh-5de2c3.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288195,7 +288542,7 @@ }, { "question": "Vélhop", - "icon": "./assets/data/nsi/logos/velhop-f1e41c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velhop-f1e41c.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288213,7 +288560,7 @@ }, { "question": "Vélib' Métropole", - "icon": "./assets/data/nsi/logos/velibmetropole-d44bc5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/velibmetropole-d44bc5.png", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -288269,7 +288616,7 @@ }, { "question": "Velo", - "icon": "./assets/data/nsi/logos/velo-18cad7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velo-18cad7.jpg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -288309,7 +288656,7 @@ }, { "question": "Vélo'v", - "icon": "./assets/data/nsi/logos/velov-59fa9e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/velov-59fa9e.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288384,7 +288731,7 @@ }, { "question": "Velocity Aachen", - "icon": "./assets/data/nsi/logos/velocityaachen-937152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/velocityaachen-937152.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288439,7 +288786,7 @@ }, { "question": "Velospot", - "icon": "./assets/data/nsi/logos/velospot-61df48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velospot-61df48.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288457,7 +288804,7 @@ }, { "question": "vélOstan'lib", - "icon": "./assets/data/nsi/logos/velostanlib-c77569.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/velostanlib-c77569.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288493,7 +288840,7 @@ }, { "question": "VélôToulouse", - "icon": "./assets/data/nsi/logos/velotoulouse-84a6ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/velotoulouse-84a6ff.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288523,7 +288870,7 @@ }, { "question": "Veturilo", - "icon": "./assets/data/nsi/logos/veturilo-196f80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/veturilo-196f80.png", "osmTags": { "and": [ "bicycle_rental=dropoff_point", @@ -288544,7 +288891,7 @@ }, { "question": "Villo!", - "icon": "./assets/data/nsi/logos/villo-cb30df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villo-cb30df.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288638,7 +288985,7 @@ }, { "question": "WienMobil Rad", - "icon": "./assets/data/nsi/logos/wienmobilrad-9cd234.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienmobilrad-9cd234.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288694,7 +289041,7 @@ }, { "question": "Yélo", - "icon": "./assets/data/nsi/logos/yelo-d06f5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yelo-d06f5d.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288758,7 +289105,7 @@ }, { "question": "Yulu", - "icon": "./assets/data/nsi/logos/yulu-6d1b20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yulu-6d1b20.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288777,7 +289124,7 @@ }, { "question": "Zagster", - "icon": "./assets/data/nsi/logos/zagster-97ea79.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zagster-97ea79.png", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288858,7 +289205,7 @@ }, { "question": "Велобайк", - "icon": "./assets/data/nsi/logos/velobike-e8a367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velobike-e8a367.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -288922,7 +289269,7 @@ }, { "question": "서울자전거 따릉이", - "icon": "./assets/data/nsi/logos/seoulbike-3cba94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seoulbike-3cba94.jpg", "osmTags": { "and": [ "bicycle_rental=docking_station", @@ -288970,7 +289317,7 @@ }, { "question": "ダイチャリ", - "icon": "./assets/data/nsi/logos/daichari-813eb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daichari-813eb7.jpg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -289000,9 +289347,6 @@ "and": [ "amenity=bicycle_rental", "fee=yes", - "official_name=千代田区コミュニティサイクル", - "official_name:en=Chiyoda City Bike Share", - "official_name:ja=千代田区コミュニティサイクル", { "or": [ "brand=ちよくる", @@ -289012,6 +289356,9 @@ "name=ちよくる", "name:en=Chiyocle", "name:ja=ちよくる", + "official_name=千代田区コミュニティサイクル", + "official_name:en=Chiyoda City Bike Share", + "official_name:ja=千代田区コミュニティサイクル", "operator=ちよくる", "operator:en=Chiyocle", "operator:ja=ちよくる", @@ -289045,7 +289392,7 @@ }, { "question": "ドコモ・バイクシェア", - "icon": "./assets/data/nsi/logos/docomobikeshare-813eb7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/docomobikeshare-813eb7.svg", "osmTags": { "and": [ "amenity=bicycle_rental", @@ -289376,7 +289723,7 @@ }, { "question": "Al Ansari Exchange", - "icon": "./assets/data/nsi/logos/alansariexchange-7792bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alansariexchange-7792bb.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289396,7 +289743,7 @@ }, { "question": "CADECA", - "icon": "./assets/data/nsi/logos/cadeca-bd5e7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cadeca-bd5e7d.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289412,7 +289759,7 @@ }, { "question": "Confidence Câmbio", - "icon": "./assets/data/nsi/logos/confidencecambio-b1f712.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/confidencecambio-b1f712.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289428,7 +289775,7 @@ }, { "question": "DayCâmbio", - "icon": "./assets/data/nsi/logos/daycambio-b1f712.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daycambio-b1f712.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289444,7 +289791,7 @@ }, { "question": "Eurochange", - "icon": "./assets/data/nsi/logos/eurochange-236adc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurochange-236adc.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289460,7 +289807,7 @@ }, { "question": "Exclusive Change", - "icon": "./assets/data/nsi/logos/exclusivechange-216703.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exclusivechange-216703.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289476,7 +289823,7 @@ }, { "question": "NM Money", - "icon": "./assets/data/nsi/logos/nmmoney-236adc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nmmoney-236adc.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289492,7 +289839,7 @@ }, { "question": "No1 Currency", - "icon": "./assets/data/nsi/logos/no1currency-f53601.png", + "icon": "https://data.mapcomplete.org/nsi//logos/no1currency-f53601.png", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289508,7 +289855,7 @@ }, { "question": "PocketChange", - "icon": "./assets/data/nsi/logos/pocketchange-f742ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pocketchange-f742ee.png", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289528,7 +289875,7 @@ }, { "question": "Reisebank", - "icon": "./assets/data/nsi/logos/reisebank-442fa6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reisebank-442fa6.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289544,7 +289891,7 @@ }, { "question": "Sainsbury's Bank Travel Money", - "icon": "./assets/data/nsi/logos/sainsburysbanktravelmoney-236adc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sainsburysbanktravelmoney-236adc.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289560,7 +289907,7 @@ }, { "question": "Travel Money Oz", - "icon": "./assets/data/nsi/logos/travelmoneyoz-840d20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/travelmoneyoz-840d20.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289576,7 +289923,7 @@ }, { "question": "Travelex", - "icon": "./assets/data/nsi/logos/travelex-fab709.png", + "icon": "https://data.mapcomplete.org/nsi//logos/travelex-fab709.png", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289607,7 +289954,7 @@ }, { "question": "Беларусбанк", - "icon": "./assets/data/nsi/logos/belarusbank-126d17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belarusbank-126d17.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289627,7 +289974,7 @@ }, { "question": "КИТ Group", - "icon": "./assets/data/nsi/logos/1d4d46-dba32e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1d4d46-dba32e.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289643,7 +289990,7 @@ }, { "question": "ვალუტო", - "icon": "./assets/data/nsi/logos/valuto-db9fb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valuto-db9fb2.jpg", "osmTags": { "and": [ "amenity=bureau_de_change", @@ -289711,7 +290058,7 @@ }, { "question": "% Arabica", - "icon": "./assets/data/nsi/logos/arabica-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arabica-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -289729,7 +290076,7 @@ }, { "question": "49th Parallel Coffee Roasters", - "icon": "./assets/data/nsi/logos/49thparallelcoffeeroasters-aa8067.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/49thparallelcoffeeroasters-aa8067.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -289747,7 +290094,7 @@ }, { "question": "5 to go", - "icon": "./assets/data/nsi/logos/5togo-24f015.png", + "icon": "https://data.mapcomplete.org/nsi//logos/5togo-24f015.png", "osmTags": { "and": [ "amenity=cafe", @@ -289786,7 +290133,7 @@ }, { "question": "7 Leaves Cafe", - "icon": "./assets/data/nsi/logos/7leavescafe-32992d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/7leavescafe-32992d.png", "osmTags": { "and": [ "amenity=cafe", @@ -289804,7 +290151,7 @@ }, { "question": "85°C", - "icon": "./assets/data/nsi/logos/ef3f02-07c6ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ef3f02-07c6ab.png", "osmTags": { "and": [ "amenity=cafe", @@ -289823,7 +290170,7 @@ }, { "question": "85度C", - "icon": "./assets/data/nsi/logos/957ff6-f1b18f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/957ff6-f1b18f.png", "osmTags": { "and": [ "amenity=cafe", @@ -289845,7 +290192,7 @@ }, { "question": "85度C 85°C Bakery Cafe", - "icon": "./assets/data/nsi/logos/947985-b3d618.png", + "icon": "https://data.mapcomplete.org/nsi//logos/947985-b3d618.png", "osmTags": { "and": [ "amenity=cafe", @@ -289867,7 +290214,7 @@ }, { "question": "aïda", - "icon": "./assets/data/nsi/logos/aida-42834c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aida-42834c.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -289885,7 +290232,7 @@ }, { "question": "AMT Coffee", - "icon": "./assets/data/nsi/logos/amtcoffee-ff9b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtcoffee-ff9b1e.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -289903,7 +290250,7 @@ }, { "question": "Anne&Max", - "icon": "./assets/data/nsi/logos/anneandmax-4a052f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anneandmax-4a052f.png", "osmTags": { "and": [ "amenity=cafe", @@ -289922,7 +290269,7 @@ }, { "question": "Arcaffe", - "icon": "./assets/data/nsi/logos/arcaffe-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arcaffe-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -289944,7 +290291,7 @@ }, { "question": "Aroma", - "icon": "./assets/data/nsi/logos/aroma-6ea26d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aroma-6ea26d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -289962,7 +290309,7 @@ }, { "question": "Aroma Espresso Bar", - "icon": "./assets/data/nsi/logos/aromaespressobar-1ae0cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aromaespressobar-1ae0cd.png", "osmTags": { "and": [ "amenity=cafe", @@ -289980,7 +290327,7 @@ }, { "question": "Aroma Joe's", - "icon": "./assets/data/nsi/logos/aromajoes-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aromajoes-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -289998,7 +290345,7 @@ }, { "question": "Aroma Kava", - "icon": "./assets/data/nsi/logos/aromakava-d74022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aromakava-d74022.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290016,7 +290363,7 @@ }, { "question": "Asda Café", - "icon": "./assets/data/nsi/logos/asdacafe-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asdacafe-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290034,7 +290381,7 @@ }, { "question": "Attendant", - "icon": "./assets/data/nsi/logos/attendant-eb3447.png", + "icon": "https://data.mapcomplete.org/nsi//logos/attendant-eb3447.png", "osmTags": { "and": [ "amenity=cafe", @@ -290052,7 +290399,7 @@ }, { "question": "Bagels & Beans", - "icon": "./assets/data/nsi/logos/bagelsandbeans-4a052f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bagelsandbeans-4a052f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290070,7 +290417,7 @@ }, { "question": "Baggins Coffee", - "icon": "./assets/data/nsi/logos/bagginscoffee-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bagginscoffee-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290088,7 +290435,7 @@ }, { "question": "Bakers + Baristas", - "icon": "./assets/data/nsi/logos/bakersbaristas-ff9b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bakersbaristas-ff9b1e.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290106,7 +290453,7 @@ }, { "question": "Bambu", - "icon": "./assets/data/nsi/logos/bambu-243cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bambu-243cad.png", "osmTags": { "and": [ "amenity=cafe", @@ -290124,7 +290471,7 @@ }, { "question": "Barista", - "icon": "./assets/data/nsi/logos/barista-56abeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barista-56abeb.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290142,7 +290489,7 @@ }, { "question": "Baristi", - "icon": "./assets/data/nsi/logos/baristi-2f3766.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baristi-2f3766.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290182,7 +290529,7 @@ }, { "question": "BenGong's Tea", - "icon": "./assets/data/nsi/logos/bengongstea-27c575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bengongstea-27c575.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290200,7 +290547,7 @@ }, { "question": "Better Buzz Coffee", - "icon": "./assets/data/nsi/logos/betterbuzzcoffee-19c2e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/betterbuzzcoffee-19c2e6.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290236,7 +290583,7 @@ }, { "question": "Biggby Coffee", - "icon": "./assets/data/nsi/logos/biggbycoffee-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biggbycoffee-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290254,7 +290601,7 @@ }, { "question": "Black Canyon", - "icon": "./assets/data/nsi/logos/blackcanyon-0e73cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackcanyon-0e73cd.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290272,7 +290619,7 @@ }, { "question": "Black Rock Coffee", - "icon": "./assets/data/nsi/logos/blackrockcoffee-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackrockcoffee-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290290,7 +290637,7 @@ }, { "question": "Black Sheep Coffee", - "icon": "./assets/data/nsi/logos/blacksheepcoffee-9244ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/blacksheepcoffee-9244ab.png", "osmTags": { "and": [ "amenity=cafe", @@ -290308,7 +290655,7 @@ }, { "question": "Blank Street Coffee", - "icon": "./assets/data/nsi/logos/blankstreetcoffee-db9177.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blankstreetcoffee-db9177.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290343,7 +290690,7 @@ }, { "question": "BloomsYard", - "icon": "./assets/data/nsi/logos/bloomsyard-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bloomsyard-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290362,7 +290709,7 @@ }, { "question": "Blue Bottle Coffee", - "icon": "./assets/data/nsi/logos/bluebottlecoffee-7856c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bluebottlecoffee-7856c0.png", "osmTags": { "and": [ "amenity=cafe", @@ -290384,7 +290731,7 @@ }, { "question": "Bo's Coffee", - "icon": "./assets/data/nsi/logos/boscoffee-054740.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boscoffee-054740.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290402,7 +290749,7 @@ }, { "question": "Bob & Berts", - "icon": "./assets/data/nsi/logos/bobandberts-ff9b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobandberts-ff9b1e.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290420,7 +290767,7 @@ }, { "question": "Boba Guys", - "icon": "./assets/data/nsi/logos/bobaguys-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobaguys-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290438,7 +290785,7 @@ }, { "question": "Bombay Cutting Chai", - "icon": "./assets/data/nsi/logos/bombaycuttingchai-12649c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bombaycuttingchai-12649c.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290457,7 +290804,7 @@ }, { "question": "Bonafide", - "icon": "./assets/data/nsi/logos/bonafide-ba14cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonafide-ba14cf.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290475,7 +290822,7 @@ }, { "question": "Boost Juice", - "icon": "./assets/data/nsi/logos/boostjuice-2ad454.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boostjuice-2ad454.png", "osmTags": { "and": [ "amenity=cafe", @@ -290493,7 +290840,7 @@ }, { "question": "Bootlegger Coffee Company", - "icon": "./assets/data/nsi/logos/bootleggercoffeecompany-9d066f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bootleggercoffeecompany-9d066f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290511,7 +290858,7 @@ }, { "question": "Boston Tea Party", - "icon": "./assets/data/nsi/logos/bostonteaparty-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bostonteaparty-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290529,7 +290876,7 @@ }, { "question": "Braganza Tea", - "icon": "./assets/data/nsi/logos/braganzatea-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/braganzatea-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290547,7 +290894,7 @@ }, { "question": "Bridgehead", - "icon": "./assets/data/nsi/logos/bridgehead-aa8067.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bridgehead-aa8067.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290584,7 +290931,7 @@ }, { "question": "Buenas Migas", - "icon": "./assets/data/nsi/logos/buenasmigas-4351d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buenasmigas-4351d9.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290601,7 +290948,7 @@ }, { "question": "Café Amazon", - "icon": "./assets/data/nsi/logos/cafeamazon-ea0f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafeamazon-ea0f6a.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290619,7 +290966,7 @@ }, { "question": "Café Cappuccino", - "icon": "./assets/data/nsi/logos/cafecappuccino-42834c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafecappuccino-42834c.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290637,7 +290984,7 @@ }, { "question": "Cafe Coffee Day", - "icon": "./assets/data/nsi/logos/cafecoffeeday-93bf5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafecoffeeday-93bf5b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290655,7 +291002,7 @@ }, { "question": "Café Dépôt", - "icon": "./assets/data/nsi/logos/cafedepot-aa8067.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafedepot-aa8067.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290689,7 +291036,7 @@ }, { "question": "Café du Monde", - "icon": "./assets/data/nsi/logos/cafedumonde-63d1a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cafedumonde-63d1a0.png", "osmTags": { "and": [ "amenity=cafe", @@ -290707,7 +291054,7 @@ }, { "question": "Cafe Extrablatt", - "icon": "./assets/data/nsi/logos/cafeextrablatt-c024da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafeextrablatt-c024da.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290725,7 +291072,7 @@ }, { "question": "Cafe Frei", - "icon": "./assets/data/nsi/logos/cafefrei-b37b54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafefrei-b37b54.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290743,7 +291090,7 @@ }, { "question": "Café Joyeux", - "icon": "./assets/data/nsi/logos/cafejoyeux-39ab79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafejoyeux-39ab79.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290761,7 +291108,7 @@ }, { "question": "Café Martínez", - "icon": "./assets/data/nsi/logos/cafemartinez-2da85d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafemartinez-2da85d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290779,7 +291126,7 @@ }, { "question": "Café OMA", - "icon": "./assets/data/nsi/logos/cafeoma-6b7f50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafeoma-6b7f50.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290797,7 +291144,7 @@ }, { "question": "Café Punta del Cielo", - "icon": "./assets/data/nsi/logos/cafepuntadelcielo-2f3766.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafepuntadelcielo-2f3766.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290815,7 +291162,7 @@ }, { "question": "Caffè Nero", - "icon": "./assets/data/nsi/logos/caffenero-0d98f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caffenero-0d98f2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290833,7 +291180,7 @@ }, { "question": "Caffè Pascucci", - "icon": "./assets/data/nsi/logos/caffepascucci-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caffepascucci-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290851,7 +291198,7 @@ }, { "question": "Caffè Spettacolo", - "icon": "./assets/data/nsi/logos/caffespettacolo-54dc58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caffespettacolo-54dc58.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290869,7 +291216,7 @@ }, { "question": "Caffebene咖啡伴", - "icon": "./assets/data/nsi/logos/caffebene-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caffebene-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290909,7 +291256,7 @@ }, { "question": "Cali Press", - "icon": "./assets/data/nsi/logos/calipress-482b3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/calipress-482b3e.png", "osmTags": { "and": [ "amenity=cafe", @@ -290927,7 +291274,7 @@ }, { "question": "Campus Suite", - "icon": "./assets/data/nsi/logos/campussuite-c024da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/campussuite-c024da.png", "osmTags": { "and": [ "amenity=cafe", @@ -290961,7 +291308,7 @@ }, { "question": "Caribou Coffee", - "icon": "./assets/data/nsi/logos/cariboucoffee-d73092.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cariboucoffee-d73092.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290979,7 +291326,7 @@ }, { "question": "Casa do Pão de Queijo", - "icon": "./assets/data/nsi/logos/casadopaodequeijo-1d07e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casadopaodequeijo-1d07e0.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -290997,7 +291344,7 @@ }, { "question": "Chaayos", - "icon": "./assets/data/nsi/logos/chaayos-656fa1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chaayos-656fa1.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291015,7 +291362,7 @@ }, { "question": "Chagee", - "icon": "./assets/data/nsi/logos/chagee-c961b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chagee-c961b9.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291050,7 +291397,7 @@ }, { "question": "Chaiiwala", - "icon": "./assets/data/nsi/logos/chaiiwala-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chaiiwala-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291068,7 +291415,7 @@ }, { "question": "Change Please", - "icon": "./assets/data/nsi/logos/changeplease-418c6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/changeplease-418c6b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291086,7 +291433,7 @@ }, { "question": "Chao Doi", - "icon": "./assets/data/nsi/logos/chaodoi-b6dfae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chaodoi-b6dfae.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291104,7 +291451,7 @@ }, { "question": "Chatime", - "icon": "./assets/data/nsi/logos/chatime-859a55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chatime-859a55.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291122,7 +291469,7 @@ }, { "question": "ChaTraMue", - "icon": "./assets/data/nsi/logos/chatramue-0932fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chatramue-0932fe.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291140,7 +291487,7 @@ }, { "question": "Chocolate Company", - "icon": "./assets/data/nsi/logos/chocolatecompany-4a052f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chocolatecompany-4a052f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291158,7 +291505,7 @@ }, { "question": "Cibo Espresso", - "icon": "./assets/data/nsi/logos/ciboespresso-70e4e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ciboespresso-70e4e4.png", "osmTags": { "and": [ "amenity=cafe", @@ -291176,7 +291523,7 @@ }, { "question": "Clean Eatz", - "icon": "./assets/data/nsi/logos/cleaneatz-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleaneatz-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291194,7 +291541,7 @@ }, { "question": "CoCo", - "icon": "./assets/data/nsi/logos/cocofreshteaandjuice-615ca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocofreshteaandjuice-615ca1.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291213,7 +291560,7 @@ }, { "question": "CoCo都可", - "icon": "./assets/data/nsi/logos/cocofreshteaandjuice-60211c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocofreshteaandjuice-60211c.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291267,7 +291614,7 @@ }, { "question": "Coffee Company", - "icon": "./assets/data/nsi/logos/coffeecompany-4a052f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeecompany-4a052f.png", "osmTags": { "and": [ "amenity=cafe", @@ -291285,7 +291632,7 @@ }, { "question": "Coffee Culture (Canada)", - "icon": "./assets/data/nsi/logos/coffeeculture-b3bd97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeeculture-b3bd97.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291303,7 +291650,7 @@ }, { "question": "Coffee Culture (New Zealand)", - "icon": "./assets/data/nsi/logos/coffeeculture-3d1dae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeeculture-3d1dae.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291321,7 +291668,7 @@ }, { "question": "Coffee Fellows", - "icon": "./assets/data/nsi/logos/coffeefellows-6873ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeefellows-6873ad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291339,7 +291686,7 @@ }, { "question": "Coffee House (Suomi)", - "icon": "./assets/data/nsi/logos/coffeehouse-7a8d18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeehouse-7a8d18.png", "osmTags": { "and": [ "amenity=cafe", @@ -291357,7 +291704,7 @@ }, { "question": "Coffee Island", - "icon": "./assets/data/nsi/logos/coffeeisland-7939ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeeisland-7939ef.png", "osmTags": { "and": [ "amenity=cafe", @@ -291375,7 +291722,7 @@ }, { "question": "Coffee Lab", - "icon": "./assets/data/nsi/logos/coffeelab-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeelab-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291393,7 +291740,7 @@ }, { "question": "Coffee Like", - "icon": "./assets/data/nsi/logos/coffeelike-9c7c7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeelike-9c7c7f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291411,7 +291758,7 @@ }, { "question": "Coffee Republic", - "icon": "./assets/data/nsi/logos/coffeerepublic-e1ef51.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeerepublic-e1ef51.png", "osmTags": { "and": [ "amenity=cafe", @@ -291429,7 +291776,7 @@ }, { "question": "Coffee Time", - "icon": "./assets/data/nsi/logos/coffeetime-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeetime-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291447,7 +291794,7 @@ }, { "question": "Coffee#1", - "icon": "./assets/data/nsi/logos/coffee1-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coffee1-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291465,7 +291812,7 @@ }, { "question": "Coffeeshop Company", - "icon": "./assets/data/nsi/logos/coffeeshopcompany-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coffeeshopcompany-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291483,7 +291830,7 @@ }, { "question": "Cofix", - "icon": "./assets/data/nsi/logos/cofix-5bbbf0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cofix-5bbbf0.png", "osmTags": { "and": [ "amenity=cafe", @@ -291505,7 +291852,7 @@ }, { "question": "Cofizz", - "icon": "./assets/data/nsi/logos/cofizz-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cofizz-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291527,7 +291874,7 @@ }, { "question": "Colicci", - "icon": "./assets/data/nsi/logos/colicci-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colicci-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291544,7 +291891,7 @@ }, { "question": "Columbus Café & Co", - "icon": "./assets/data/nsi/logos/columbuscafeandco-d3efe9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/columbuscafeandco-d3efe9.png", "osmTags": { "and": [ "amenity=cafe", @@ -291562,7 +291909,7 @@ }, { "question": "Cộng Cà Phê", - "icon": "./assets/data/nsi/logos/congcaphe-6f4c59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/congcaphe-6f4c59.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291581,7 +291928,7 @@ }, { "question": "Corner Bakery", - "icon": "./assets/data/nsi/logos/cornerbakery-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornerbakery-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291599,7 +291946,7 @@ }, { "question": "Costa", - "icon": "./assets/data/nsi/logos/costa-93bf5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/costa-93bf5b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291617,7 +291964,7 @@ }, { "question": "Costa Drive Thru", - "icon": "./assets/data/nsi/logos/costadrivethru-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/costadrivethru-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291636,7 +291983,7 @@ }, { "question": "Country Style", - "icon": "./assets/data/nsi/logos/countrystyle-aa8067.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/countrystyle-aa8067.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291671,7 +292018,7 @@ }, { "question": "Ding Tea", - "icon": "./assets/data/nsi/logos/dingtea-12bfe8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dingtea-12bfe8.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291691,7 +292038,7 @@ }, { "question": "Ding Tea 薡茶", - "icon": "./assets/data/nsi/logos/dingtea-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dingtea-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291715,7 +292062,7 @@ }, { "question": "Dôme", - "icon": "./assets/data/nsi/logos/dome-d33fa1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dome-d33fa1.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291733,7 +292080,7 @@ }, { "question": "Doppio Espresso", - "icon": "./assets/data/nsi/logos/doppioespresso-4a052f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doppioespresso-4a052f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291767,7 +292114,7 @@ }, { "question": "DuckBill Cookies & Coffee", - "icon": "./assets/data/nsi/logos/duckbillcookiesandcoffee-1d07e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duckbillcookiesandcoffee-1d07e0.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291785,7 +292132,7 @@ }, { "question": "Dunn Brothers Coffee", - "icon": "./assets/data/nsi/logos/dunnbrotherscoffee-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunnbrotherscoffee-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291803,7 +292150,7 @@ }, { "question": "Dutch Bros. Coffee", - "icon": "./assets/data/nsi/logos/dutchbroscoffee-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dutchbroscoffee-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291821,7 +292168,7 @@ }, { "question": "Einstein Kaffee", - "icon": "./assets/data/nsi/logos/einsteinkaffee-c024da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/einsteinkaffee-c024da.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291839,7 +292186,7 @@ }, { "question": "EL&N", - "icon": "./assets/data/nsi/logos/elandn-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elandn-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291858,7 +292205,7 @@ }, { "question": "Equatorial Coffee", - "icon": "./assets/data/nsi/logos/equatorialcoffee-9d066f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equatorialcoffee-9d066f.png", "osmTags": { "and": [ "amenity=cafe", @@ -291876,7 +292223,7 @@ }, { "question": "Espresso House", - "icon": "./assets/data/nsi/logos/espressohouse-99eace.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/espressohouse-99eace.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291894,7 +292241,7 @@ }, { "question": "Espressolab", - "icon": "./assets/data/nsi/logos/espressolab-e2a804.png", + "icon": "https://data.mapcomplete.org/nsi//logos/espressolab-e2a804.png", "osmTags": { "and": [ "amenity=cafe", @@ -291912,7 +292259,7 @@ }, { "question": "Euro Café", - "icon": "./assets/data/nsi/logos/eurocafe-6ea26d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurocafe-6ea26d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291931,7 +292278,7 @@ }, { "question": "FCB Coffee", - "icon": "./assets/data/nsi/logos/fcbcoffee-418c6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fcbcoffee-418c6b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291949,7 +292296,7 @@ }, { "question": "Figaro", - "icon": "./assets/data/nsi/logos/figaro-d8802f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/figaro-d8802f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -291984,7 +292331,7 @@ }, { "question": "Flying Horse Coffee", - "icon": "./assets/data/nsi/logos/flyinghorsecoffee-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flyinghorsecoffee-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292004,7 +292351,7 @@ }, { "question": "Fore Coffee", - "icon": "./assets/data/nsi/logos/forecoffee-4ccab9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/forecoffee-4ccab9.png", "osmTags": { "and": [ "amenity=cafe", @@ -292022,7 +292369,7 @@ }, { "question": "Fran's Café", - "icon": "./assets/data/nsi/logos/franscafe-1d07e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/franscafe-1d07e0.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292040,18 +292387,18 @@ }, { "question": "Gloria Jean's", - "icon": "./assets/data/nsi/logos/gloriajeans-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gloriajeans-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=Gloria Jean's Coffees", "takeaway=yes", { "or": [ "brand=Gloria Jean's", "brand:wikidata=Q2666365", - "name=Gloria Jean's" + "name=Gloria Jean's", + "official_name=Gloria Jean's Coffees" ] } ] @@ -292076,7 +292423,7 @@ }, { "question": "Gong Cha", - "icon": "./assets/data/nsi/logos/gongcha-17742a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gongcha-17742a.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292097,7 +292444,7 @@ }, { "question": "Gong Cha (Việt Nam)", - "icon": "./assets/data/nsi/logos/gongcha-fd99aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gongcha-fd99aa.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292120,7 +292467,7 @@ }, { "question": "Grão Espresso", - "icon": "./assets/data/nsi/logos/graoespresso-1d07e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/graoespresso-1d07e0.png", "osmTags": { "and": [ "amenity=cafe", @@ -292138,7 +292485,7 @@ }, { "question": "Green Caffè Nero", - "icon": "./assets/data/nsi/logos/greencaffenero-391a99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greencaffenero-391a99.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292156,7 +292503,7 @@ }, { "question": "Grind", - "icon": "./assets/data/nsi/logos/grind-5c7288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/grind-5c7288.png", "osmTags": { "and": [ "amenity=cafe", @@ -292174,7 +292521,7 @@ }, { "question": "Happy Lemon", - "icon": "./assets/data/nsi/logos/happylemon-859a55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happylemon-859a55.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292192,7 +292539,7 @@ }, { "question": "Harris + Hoole", - "icon": "./assets/data/nsi/logos/harrishoole-418c6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harrishoole-418c6b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292227,7 +292574,7 @@ }, { "question": "Havanna", - "icon": "./assets/data/nsi/logos/havanna-ffe1b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/havanna-ffe1b3.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292245,7 +292592,7 @@ }, { "question": "Hermanos Colombian Coffee Roasters", - "icon": "./assets/data/nsi/logos/hermanoscolombiancoffeeroasters-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hermanoscolombiancoffeeroasters-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292263,7 +292610,7 @@ }, { "question": "Heytea", - "icon": "./assets/data/nsi/logos/heytea-3ecb75.png", + "icon": "https://data.mapcomplete.org/nsi//logos/heytea-3ecb75.png", "osmTags": { "and": [ "amenity=cafe", @@ -292285,7 +292632,7 @@ }, { "question": "Highlands Coffee", - "icon": "./assets/data/nsi/logos/highlandscoffee-fd99aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/highlandscoffee-fd99aa.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292325,7 +292672,7 @@ }, { "question": "Honey Dew Donuts", - "icon": "./assets/data/nsi/logos/honeydew-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honeydew-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292364,7 +292711,7 @@ }, { "question": "Hopper Coffee", - "icon": "./assets/data/nsi/logos/hoppercoffee-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoppercoffee-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292382,7 +292729,7 @@ }, { "question": "Hudsons Coffee", - "icon": "./assets/data/nsi/logos/hudsonscoffee-f5c0bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hudsonscoffee-f5c0bd.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292421,7 +292768,7 @@ }, { "question": "IKEA Café", - "icon": "./assets/data/nsi/logos/ikeacafe-f21598.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikeacafe-f21598.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292439,7 +292786,7 @@ }, { "question": "Insomnia", - "icon": "./assets/data/nsi/logos/insomnia-180c7a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/insomnia-180c7a.png", "osmTags": { "and": [ "amenity=cafe", @@ -292457,7 +292804,7 @@ }, { "question": "It's Boba Time", - "icon": "./assets/data/nsi/logos/itsbobatime-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itsbobatime-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292475,7 +292822,7 @@ }, { "question": "IzyCoffee", - "icon": "./assets/data/nsi/logos/izycoffee-16b565.png", + "icon": "https://data.mapcomplete.org/nsi//logos/izycoffee-16b565.png", "osmTags": { "and": [ "amenity=cafe", @@ -292493,7 +292840,7 @@ }, { "question": "Jamaica Blue", - "icon": "./assets/data/nsi/logos/jamaicablue-941da9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jamaicablue-941da9.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292511,7 +292858,7 @@ }, { "question": "Janji Jiwa", - "icon": "./assets/data/nsi/logos/janjijiwa-4ccab9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/janjijiwa-4ccab9.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292529,7 +292876,7 @@ }, { "question": "Java House", - "icon": "./assets/data/nsi/logos/javahouse-226f44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/javahouse-226f44.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292547,7 +292894,7 @@ }, { "question": "Jazen Tea", - "icon": "./assets/data/nsi/logos/jazentea-6ea26d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jazentea-6ea26d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292566,7 +292913,7 @@ }, { "question": "JJ Bean", - "icon": "./assets/data/nsi/logos/jjbean-aa8067.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jjbean-aa8067.png", "osmTags": { "and": [ "amenity=cafe", @@ -292584,7 +292931,7 @@ }, { "question": "Joe & The Juice", - "icon": "./assets/data/nsi/logos/joeandthejuice-ff94db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/joeandthejuice-ff94db.png", "osmTags": { "and": [ "amenity=cafe", @@ -292602,7 +292949,7 @@ }, { "question": "Juan Valdez Café", - "icon": "./assets/data/nsi/logos/juanvaldezcafe-ff94db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juanvaldezcafe-ff94db.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292621,7 +292968,7 @@ }, { "question": "Julius Meinl", - "icon": "./assets/data/nsi/logos/juliusmeinl-d9fed5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/juliusmeinl-d9fed5.png", "osmTags": { "and": [ "amenity=cafe", @@ -292639,7 +292986,7 @@ }, { "question": "Kahve Dünyası", - "icon": "./assets/data/nsi/logos/kahvedunyasi-9278bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kahvedunyasi-9278bc.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292657,7 +293004,7 @@ }, { "question": "Kitanda", - "icon": "./assets/data/nsi/logos/kitanda-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitanda-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292675,7 +293022,7 @@ }, { "question": "Kopi Kenangan", - "icon": "./assets/data/nsi/logos/kopikenangan-4ccab9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kopikenangan-4ccab9.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292711,7 +293058,7 @@ }, { "question": "Kung Fu Tea", - "icon": "./assets/data/nsi/logos/kungfutea-e1ef51.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kungfutea-e1ef51.png", "osmTags": { "and": [ "amenity=cafe", @@ -292729,7 +293076,7 @@ }, { "question": "Kuzina", - "icon": "./assets/data/nsi/logos/kuzina-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuzina-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292747,7 +293094,7 @@ }, { "question": "La Colombe Coffee Roasters", - "icon": "./assets/data/nsi/logos/lacolombecoffeeroasters-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacolombecoffeeroasters-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292766,7 +293113,7 @@ }, { "question": "Lavazza", - "icon": "./assets/data/nsi/logos/lavazza-e1ef51.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lavazza-e1ef51.png", "osmTags": { "and": [ "amenity=cafe", @@ -292784,7 +293131,7 @@ }, { "question": "Le Pain Quotidien", - "icon": "./assets/data/nsi/logos/lepainquotidien-ff94db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lepainquotidien-ff94db.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292802,7 +293149,7 @@ }, { "question": "Luckin Coffee", - "icon": "./assets/data/nsi/logos/luckincoffee-93bf5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luckincoffee-93bf5b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292837,7 +293184,7 @@ }, { "question": "M&S Café", - "icon": "./assets/data/nsi/logos/mandscafe-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandscafe-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292875,7 +293222,7 @@ }, { "question": "Mado", - "icon": "./assets/data/nsi/logos/mado-e2a804.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mado-e2a804.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292910,7 +293257,7 @@ }, { "question": "Mango Mango Dessert", - "icon": "./assets/data/nsi/logos/mangomangodessert-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mangomangodessert-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292945,7 +293292,7 @@ }, { "question": "Manolo Bakes", - "icon": "./assets/data/nsi/logos/manolobakes-4351d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manolobakes-4351d9.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292963,7 +293310,7 @@ }, { "question": "Matcha Cafe Maiko", - "icon": "./assets/data/nsi/logos/matchacafemaiko-005405.png", + "icon": "https://data.mapcomplete.org/nsi//logos/matchacafemaiko-005405.png", "osmTags": { "and": [ "amenity=cafe", @@ -292981,7 +293328,7 @@ }, { "question": "Matto Espresso", - "icon": "./assets/data/nsi/logos/mattoespresso-df2cdd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mattoespresso-df2cdd.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -292999,7 +293346,7 @@ }, { "question": "Max Brenner", - "icon": "./assets/data/nsi/logos/maxbrenner-15f3f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxbrenner-15f3f0.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293019,7 +293366,7 @@ }, { "question": "Maxx Coffee", - "icon": "./assets/data/nsi/logos/maxxcoffee-4ccab9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxxcoffee-4ccab9.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293037,7 +293384,7 @@ }, { "question": "McCafé", - "icon": "./assets/data/nsi/logos/mccafe-e1ef51.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mccafe-e1ef51.svg", "osmTags": { "and": [ "amenity=cafe", @@ -293055,7 +293402,7 @@ }, { "question": "Meama Collect", - "icon": "./assets/data/nsi/logos/meamacollect-cf8cd3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meamacollect-cf8cd3.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293080,7 +293427,7 @@ }, { "question": "Michel's Patisserie", - "icon": "./assets/data/nsi/logos/michelspatisserie-d7a541.png", + "icon": "https://data.mapcomplete.org/nsi//logos/michelspatisserie-d7a541.png", "osmTags": { "and": [ "amenity=cafe", @@ -293098,7 +293445,7 @@ }, { "question": "Mikel", - "icon": "./assets/data/nsi/logos/mikel-349bad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mikel-349bad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293116,7 +293463,7 @@ }, { "question": "Mikucha", - "icon": "./assets/data/nsi/logos/mikucha-b6dfae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mikucha-b6dfae.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293134,7 +293481,7 @@ }, { "question": "Mixue", - "icon": "./assets/data/nsi/logos/mixue-f440b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mixue-f440b6.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293173,7 +293520,7 @@ }, { "question": "Mooboo", - "icon": "./assets/data/nsi/logos/mooboo-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mooboo-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293191,7 +293538,7 @@ }, { "question": "Morrisons Cafe", - "icon": "./assets/data/nsi/logos/morrisonscafe-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morrisonscafe-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293209,7 +293556,7 @@ }, { "question": "Mövenpick Café", - "icon": "./assets/data/nsi/logos/movenpickcafe-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/movenpickcafe-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293227,7 +293574,7 @@ }, { "question": "Mr. Brown 伯朗咖啡館", - "icon": "./assets/data/nsi/logos/mrbrowncafe-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrbrowncafe-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293253,7 +293600,7 @@ }, { "question": "Mr. Wish", - "icon": "./assets/data/nsi/logos/mrwish-7d270d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrwish-7d270d.png", "osmTags": { "and": [ "amenity=cafe", @@ -293271,7 +293618,7 @@ }, { "question": "Muffin Break", - "icon": "./assets/data/nsi/logos/muffinbreak-66b6c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/muffinbreak-66b6c2.png", "osmTags": { "and": [ "amenity=cafe", @@ -293289,7 +293636,7 @@ }, { "question": "Mugg & Bean", - "icon": "./assets/data/nsi/logos/muggandbean-72fcd2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/muggandbean-72fcd2.png", "osmTags": { "and": [ "amenity=cafe", @@ -293307,7 +293654,7 @@ }, { "question": "Muzz Buzz", - "icon": "./assets/data/nsi/logos/muzzbuzz-4c3c5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/muzzbuzz-4c3c5a.png", "osmTags": { "and": [ "amenity=cafe", @@ -293325,7 +293672,7 @@ }, { "question": "Nero Express (Caffè Nero)", - "icon": "./assets/data/nsi/logos/neroexpress-4a2ca5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neroexpress-4a2ca5.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293343,7 +293690,7 @@ }, { "question": "Notes", - "icon": "./assets/data/nsi/logos/notes-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/notes-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293361,7 +293708,7 @@ }, { "question": "Nü Health Food", - "icon": "./assets/data/nsi/logos/nuhealthfood-9d066f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nuhealthfood-9d066f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293379,7 +293726,7 @@ }, { "question": "NUTTEA", - "icon": "./assets/data/nsi/logos/nuttea-485ab4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nuttea-485ab4.png", "osmTags": { "and": [ "amenity=cafe", @@ -293398,7 +293745,7 @@ }, { "question": "O'Briens Café", - "icon": "./assets/data/nsi/logos/obriens-20e9d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obriens-20e9d6.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293416,7 +293763,7 @@ }, { "question": "OldTown White Coffee", - "icon": "./assets/data/nsi/logos/oldtownwhitecoffee-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldtownwhitecoffee-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293434,7 +293781,7 @@ }, { "question": "OneZo Tapioca", - "icon": "./assets/data/nsi/logos/onezotapioca-859a55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onezotapioca-859a55.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293456,7 +293803,7 @@ }, { "question": "Özsüt", - "icon": "./assets/data/nsi/logos/ozsut-e2a804.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ozsut-e2a804.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293495,7 +293842,7 @@ }, { "question": "Patisserie Valerie", - "icon": "./assets/data/nsi/logos/patisserievalerie-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/patisserievalerie-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293513,7 +293860,7 @@ }, { "question": "Pausa", - "icon": "./assets/data/nsi/logos/pausa-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pausa-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293533,7 +293880,7 @@ }, { "question": "Peet's Coffee", - "icon": "./assets/data/nsi/logos/peetscoffee-243cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/peetscoffee-243cad.png", "osmTags": { "and": [ "amenity=cafe", @@ -293568,7 +293915,7 @@ }, { "question": "Perky Blenders", - "icon": "./assets/data/nsi/logos/perkyblenders-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perkyblenders-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293586,7 +293933,7 @@ }, { "question": "Petit Pret", - "icon": "./assets/data/nsi/logos/petitpret-a89223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petitpret-a89223.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293621,7 +293968,7 @@ }, { "question": "Pie Face", - "icon": "./assets/data/nsi/logos/pieface-70e4e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pieface-70e4e4.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293639,7 +293986,7 @@ }, { "question": "PJ's Coffee of New Orleans", - "icon": "./assets/data/nsi/logos/pjscoffeeofneworleans-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pjscoffeeofneworleans-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293657,7 +294004,7 @@ }, { "question": "Plato Coffee", - "icon": "./assets/data/nsi/logos/platocoffee-9d066f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/platocoffee-9d066f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293675,7 +294022,7 @@ }, { "question": "Point Coffee", - "icon": "./assets/data/nsi/logos/pointcoffee-4ccab9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pointcoffee-4ccab9.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293694,7 +294041,7 @@ }, { "question": "Prime", - "icon": "./assets/data/nsi/logos/prime-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prime-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293750,7 +294097,7 @@ }, { "question": "Quickly", - "icon": "./assets/data/nsi/logos/quickly-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quickly-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293772,7 +294119,7 @@ }, { "question": "Real Fruit Bubble Tea", - "icon": "./assets/data/nsi/logos/realfruitbubbletea-aa8067.png", + "icon": "https://data.mapcomplete.org/nsi//logos/realfruitbubbletea-aa8067.png", "osmTags": { "and": [ "amenity=cafe", @@ -293790,7 +294137,7 @@ }, { "question": "Redemption Roasters", - "icon": "./assets/data/nsi/logos/redemptionroasters-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redemptionroasters-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293808,7 +294155,7 @@ }, { "question": "Rei do Mate", - "icon": "./assets/data/nsi/logos/reidomate-1d07e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reidomate-1d07e0.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293826,7 +294173,7 @@ }, { "question": "Robert Harris", - "icon": "./assets/data/nsi/logos/robertharris-3d1dae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/robertharris-3d1dae.png", "osmTags": { "and": [ "amenity=cafe", @@ -293844,7 +294191,7 @@ }, { "question": "Royaltea 皇茶", - "icon": "./assets/data/nsi/logos/royaltea-2403e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royaltea-2403e7.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293882,7 +294229,7 @@ }, { "question": "S&P", - "icon": "./assets/data/nsi/logos/sandp-b6dfae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandp-b6dfae.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293900,7 +294247,7 @@ }, { "question": "Saint Espresso", - "icon": "./assets/data/nsi/logos/saintespresso-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintespresso-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293918,7 +294265,7 @@ }, { "question": "Scooter's Coffee", - "icon": "./assets/data/nsi/logos/scooterscoffee-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scooterscoffee-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293936,7 +294283,7 @@ }, { "question": "Seattle Coffee Company", - "icon": "./assets/data/nsi/logos/seattlecoffeecompany-d9a901.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlecoffeecompany-d9a901.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293954,7 +294301,7 @@ }, { "question": "Seattle's Best Coffee", - "icon": "./assets/data/nsi/logos/seattlesbestcoffee-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlesbestcoffee-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293972,7 +294319,7 @@ }, { "question": "Second Cup", - "icon": "./assets/data/nsi/logos/secondcup-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/secondcup-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -293990,7 +294337,7 @@ }, { "question": "Segafredo", - "icon": "./assets/data/nsi/logos/segafredo-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/segafredo-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294026,7 +294373,7 @@ }, { "question": "Sharetea", - "icon": "./assets/data/nsi/logos/sharetea-a284fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sharetea-a284fa.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294046,7 +294393,7 @@ }, { "question": "Sharetea شيرتي", - "icon": "./assets/data/nsi/logos/sharetea-aa818b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sharetea-aa818b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294067,7 +294414,7 @@ }, { "question": "Sharetea 歇腳亭", - "icon": "./assets/data/nsi/logos/sharetea-ed30b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sharetea-ed30b2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294111,7 +294458,7 @@ }, { "question": "Skuratov Coffee", - "icon": "./assets/data/nsi/logos/skuratovcoffee-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skuratovcoffee-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294131,7 +294478,7 @@ }, { "question": "Speedy Café", - "icon": "./assets/data/nsi/logos/speedycafe-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedycafe-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294149,7 +294496,7 @@ }, { "question": "Stan's Donuts & Coffee", - "icon": "./assets/data/nsi/logos/stansdonutsandcoffee-da6469.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stansdonutsandcoffee-da6469.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294167,7 +294514,7 @@ }, { "question": "Starbaks", - "icon": "./assets/data/nsi/logos/starbucks-95edc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucks-95edc3.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294191,18 +294538,18 @@ }, { "question": "Starbucks", - "icon": "./assets/data/nsi/logos/starbucks-795f60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucks-795f60.jpg", "osmTags": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=Starbucks Coffee", "takeaway=yes", { "or": [ "brand=Starbucks", "brand:wikidata=Q37158", - "name=Starbucks" + "name=Starbucks", + "official_name=Starbucks Coffee" ] } ] @@ -294210,7 +294557,7 @@ }, { "question": "Starbucks Reserve", - "icon": "./assets/data/nsi/logos/starbucksreserve-7b6aac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucksreserve-7b6aac.svg", "osmTags": { "and": [ "amenity=cafe", @@ -294228,7 +294575,7 @@ }, { "question": "Stars Coffee", - "icon": "./assets/data/nsi/logos/starscoffee-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starscoffee-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294246,7 +294593,7 @@ }, { "question": "Stop Cafe", - "icon": "./assets/data/nsi/logos/stopcafe-7e9986.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stopcafe-7e9986.png", "osmTags": { "and": [ "amenity=cafe", @@ -294264,7 +294611,7 @@ }, { "question": "Store Street Espresso", - "icon": "./assets/data/nsi/logos/storestreetespresso-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/storestreetespresso-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294282,7 +294629,7 @@ }, { "question": "Streamer Coffee Company", - "icon": "./assets/data/nsi/logos/streamercoffeecompany-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/streamercoffeecompany-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294300,7 +294647,7 @@ }, { "question": "Stumptown Coffee Roasters", - "icon": "./assets/data/nsi/logos/stumptowncoffeeroasters-a41f70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stumptowncoffeeroasters-a41f70.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294318,7 +294665,7 @@ }, { "question": "Sulbing (설빙)", - "icon": "./assets/data/nsi/logos/sulbing-77c68b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sulbing-77c68b.png", "osmTags": { "and": [ "amenity=cafe", @@ -294340,7 +294687,7 @@ }, { "question": "Surf Coffee", - "icon": "./assets/data/nsi/logos/surfcoffee-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surfcoffee-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294358,7 +294705,7 @@ }, { "question": "Sweethoney Dessert", - "icon": "./assets/data/nsi/logos/sweethoneydessert-6ea26d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sweethoneydessert-6ea26d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294380,7 +294727,7 @@ }, { "question": "T4 Tea House", - "icon": "./assets/data/nsi/logos/t4teaforu-e1ef51.png", + "icon": "https://data.mapcomplete.org/nsi//logos/t4teaforu-e1ef51.png", "osmTags": { "and": [ "amenity=cafe", @@ -294399,7 +294746,7 @@ }, { "question": "Tapioca Express", - "icon": "./assets/data/nsi/logos/tapiocaexpress-243cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tapiocaexpress-243cad.png", "osmTags": { "and": [ "amenity=cafe", @@ -294417,7 +294764,7 @@ }, { "question": "Tastea", - "icon": "./assets/data/nsi/logos/tastea-87bfec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tastea-87bfec.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294452,7 +294799,7 @@ }, { "question": "Tealive", - "icon": "./assets/data/nsi/logos/tealive-2aa1ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tealive-2aa1ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294503,7 +294850,7 @@ }, { "question": "Tesco Café", - "icon": "./assets/data/nsi/logos/tescocafe-a89223.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tescocafe-a89223.png", "osmTags": { "and": [ "amenity=cafe", @@ -294542,7 +294889,7 @@ }, { "question": "The Barn", - "icon": "./assets/data/nsi/logos/thebarn-72cbb9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thebarn-72cbb9.png", "osmTags": { "and": [ "amenity=cafe", @@ -294560,7 +294907,7 @@ }, { "question": "The Bean", - "icon": "./assets/data/nsi/logos/thebean-1d96ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebean-1d96ac.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294578,7 +294925,7 @@ }, { "question": "The Coffee", - "icon": "./assets/data/nsi/logos/thecoffee-f04833.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecoffee-f04833.svg", "osmTags": { "and": [ "amenity=cafe", @@ -294596,7 +294943,7 @@ }, { "question": "The Coffee Bean & Tea Leaf", - "icon": "./assets/data/nsi/logos/thecoffeebeanandtealeaf-ff94db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thecoffeebeanandtealeaf-ff94db.png", "osmTags": { "and": [ "amenity=cafe", @@ -294614,7 +294961,7 @@ }, { "question": "The Coffee Club", - "icon": "./assets/data/nsi/logos/thecoffeeclub-19ebdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecoffeeclub-19ebdf.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294632,7 +294979,7 @@ }, { "question": "The Coffee House (Việt Nam)", - "icon": "./assets/data/nsi/logos/thecoffeehouse-fd99aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecoffeehouse-fd99aa.svg", "osmTags": { "and": [ "amenity=cafe", @@ -294651,7 +294998,7 @@ }, { "question": "The Gentlemen Baristas", - "icon": "./assets/data/nsi/logos/thegentlemenbaristas-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegentlemenbaristas-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294669,7 +295016,7 @@ }, { "question": "The Grumpy Baker", - "icon": "./assets/data/nsi/logos/thegrumpybaker-482b3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegrumpybaker-482b3e.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294687,7 +295034,7 @@ }, { "question": "The Human Bean", - "icon": "./assets/data/nsi/logos/thehumanbean-243cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehumanbean-243cad.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294721,7 +295068,7 @@ }, { "question": "Thelins konditori", - "icon": "./assets/data/nsi/logos/thelinskonditori-46f791.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thelinskonditori-46f791.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294774,7 +295121,7 @@ }, { "question": "Tiger Sugar", - "icon": "./assets/data/nsi/logos/tigersugar-859a55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tigersugar-859a55.png", "osmTags": { "and": [ "amenity=cafe", @@ -294792,7 +295139,7 @@ }, { "question": "Tim Hortons", - "icon": "./assets/data/nsi/logos/timhortons-ff94db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timhortons-ff94db.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294827,7 +295174,7 @@ }, { "question": "Toast Box", - "icon": "./assets/data/nsi/logos/toastbox-ccae53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toastbox-ccae53.png", "osmTags": { "and": [ "amenity=cafe", @@ -294845,7 +295192,7 @@ }, { "question": "Toby's Estate", - "icon": "./assets/data/nsi/logos/tobysestate-5dc2d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tobysestate-5dc2d4.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294863,7 +295210,7 @@ }, { "question": "Tom N Toms", - "icon": "./assets/data/nsi/logos/tomntoms-16c022.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tomntoms-16c022.png", "osmTags": { "and": [ "amenity=cafe", @@ -294885,7 +295232,7 @@ }, { "question": "TOMORO Coffee", - "icon": "./assets/data/nsi/logos/tomorocoffee-f6b874.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomorocoffee-f6b874.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294920,18 +295267,18 @@ }, { "question": "Tostao'", - "icon": "./assets/data/nsi/logos/tostao-6b7f50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tostao-6b7f50.jpg", "osmTags": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=TOSTAO' Café & Pan", "takeaway=yes", { "or": [ "brand=Tostao'", "brand:wikidata=Q60632476", - "name=Tostao'" + "name=Tostao'", + "official_name=TOSTAO' Café & Pan" ] } ] @@ -294939,7 +295286,7 @@ }, { "question": "TP Tea", - "icon": "./assets/data/nsi/logos/tptea-243cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tptea-243cad.png", "osmTags": { "and": [ "amenity=cafe", @@ -294957,7 +295304,7 @@ }, { "question": "Traveler's Coffee", - "icon": "./assets/data/nsi/logos/travelerscoffee-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/travelerscoffee-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -294975,7 +295322,7 @@ }, { "question": "Trung Nguyên Coffee", - "icon": "./assets/data/nsi/logos/trungnguyencoffee-fd99aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trungnguyencoffee-fd99aa.png", "osmTags": { "and": [ "amenity=cafe", @@ -294995,7 +295342,7 @@ }, { "question": "Urban Baristas", - "icon": "./assets/data/nsi/logos/urbanbaristas-eb3447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/urbanbaristas-eb3447.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295013,7 +295360,7 @@ }, { "question": "Vida e Caffè", - "icon": "./assets/data/nsi/logos/vidaecaffe-79a73c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vidaecaffe-79a73c.png", "osmTags": { "and": [ "amenity=cafe", @@ -295068,7 +295415,7 @@ }, { "question": "WatchHouse", - "icon": "./assets/data/nsi/logos/watchhouse-289991.png", + "icon": "https://data.mapcomplete.org/nsi//logos/watchhouse-289991.png", "osmTags": { "and": [ "amenity=cafe", @@ -295086,7 +295433,7 @@ }, { "question": "Waves Coffee House", - "icon": "./assets/data/nsi/logos/wavescoffeehouse-aa8067.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wavescoffeehouse-aa8067.png", "osmTags": { "and": [ "amenity=cafe", @@ -295104,7 +295451,7 @@ }, { "question": "Wayne's Coffee", - "icon": "./assets/data/nsi/logos/waynescoffee-460348.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waynescoffee-460348.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295122,7 +295469,7 @@ }, { "question": "Wild & The Moon", - "icon": "./assets/data/nsi/logos/wildandthemoon-50ce08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wildandthemoon-50ce08.png", "osmTags": { "and": [ "amenity=cafe", @@ -295142,7 +295489,7 @@ }, { "question": "Wild Bean Cafe", - "icon": "./assets/data/nsi/logos/wildbeancafe-e1ef51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wildbeancafe-e1ef51.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295160,7 +295507,7 @@ }, { "question": "WonderWaffel", - "icon": "./assets/data/nsi/logos/wonderwaffel-5db831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wonderwaffel-5db831.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295178,7 +295525,7 @@ }, { "question": "Xing Fu Tang", - "icon": "./assets/data/nsi/logos/xingfutang-a90eeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xingfutang-a90eeb.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295200,7 +295547,7 @@ }, { "question": "Ya Kun Kaya Toast", - "icon": "./assets/data/nsi/logos/yakunkayatoast-ccae53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yakunkayatoast-ccae53.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295218,7 +295565,7 @@ }, { "question": "Yi Fang Tea", - "icon": "./assets/data/nsi/logos/yifangtea-a90eeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yifangtea-a90eeb.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295240,7 +295587,7 @@ }, { "question": "Your Coffee Hub", - "icon": "./assets/data/nsi/logos/yourcoffeehub-eb3447.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yourcoffeehub-eb3447.png", "osmTags": { "and": [ "amenity=cafe", @@ -295259,7 +295606,7 @@ }, { "question": "Zarraffa's Coffee", - "icon": "./assets/data/nsi/logos/zarraffascoffee-70e4e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zarraffascoffee-70e4e4.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295277,7 +295624,7 @@ }, { "question": "ZUS Coffee", - "icon": "./assets/data/nsi/logos/zuscoffee-5f28be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zuscoffee-5f28be.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295295,7 +295642,7 @@ }, { "question": "Бистро ИКЕА (России)", - "icon": "./assets/data/nsi/logos/ikeacafe-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikeacafe-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295317,7 +295664,7 @@ }, { "question": "Британские пекарни", - "icon": "./assets/data/nsi/logos/britishbakery-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/britishbakery-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295339,7 +295686,7 @@ }, { "question": "Брынза", - "icon": "./assets/data/nsi/logos/b847e5-1c12ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/b847e5-1c12ef.png", "osmTags": { "and": [ "amenity=cafe", @@ -295373,7 +295720,7 @@ }, { "question": "Даблби", - "icon": "./assets/data/nsi/logos/doubleb-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doubleb-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295395,7 +295742,7 @@ }, { "question": "Кафетерија", - "icon": "./assets/data/nsi/logos/kafeteria-e777fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kafeteria-e777fa.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295472,7 +295819,7 @@ }, { "question": "Кофе Хауз", - "icon": "./assets/data/nsi/logos/14d894-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/14d894-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295506,7 +295853,7 @@ }, { "question": "Львівська Майстерня Шоколаду", - "icon": "./assets/data/nsi/logos/lvivhandmadechocolate-d74022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lvivhandmadechocolate-d74022.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295528,7 +295875,7 @@ }, { "question": "Люди любят", - "icon": "./assets/data/nsi/logos/b38de2-1c12ef.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/b38de2-1c12ef.svg", "osmTags": { "and": [ "amenity=cafe", @@ -295563,7 +295910,7 @@ }, { "question": "Пироговый дворик", - "icon": "./assets/data/nsi/logos/852353-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/852353-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295614,7 +295961,7 @@ }, { "question": "Франс.уа", - "icon": "./assets/data/nsi/logos/ad3ee0-d74022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ad3ee0-d74022.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295648,7 +295995,7 @@ }, { "question": "Цех85", - "icon": "./assets/data/nsi/logos/54c425-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/54c425-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295666,7 +296013,7 @@ }, { "question": "Шоколадница", - "icon": "./assets/data/nsi/logos/shokoladnitsa-1c12ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shokoladnitsa-1c12ef.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295688,7 +296035,7 @@ }, { "question": "Штолле", - "icon": "./assets/data/nsi/logos/stolle-d874f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stolle-d874f4.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295726,7 +296073,7 @@ }, { "question": "დი რომა", - "icon": "./assets/data/nsi/logos/diroma-cf8cd3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diroma-cf8cd3.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295751,7 +296098,7 @@ }, { "question": "ארומה", - "icon": "./assets/data/nsi/logos/aromaespressobar-10eb89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aromaespressobar-10eb89.png", "osmTags": { "and": [ "amenity=cafe", @@ -295773,7 +296120,7 @@ }, { "question": "לנדוור", - "icon": "./assets/data/nsi/logos/landwer-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landwer-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295795,7 +296142,7 @@ }, { "question": "סי קפה", - "icon": "./assets/data/nsi/logos/sicafe-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sicafe-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295820,7 +296167,7 @@ }, { "question": "קפה ג'ו", - "icon": "./assets/data/nsi/logos/cafejoe-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafejoe-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295843,7 +296190,7 @@ }, { "question": "קפה גרג", - "icon": "./assets/data/nsi/logos/gregcafe-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gregcafe-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295865,7 +296212,7 @@ }, { "question": "קפה נמרוד", - "icon": "./assets/data/nsi/logos/cafenimrod-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafenimrod-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295887,7 +296234,7 @@ }, { "question": "קפה קפה", - "icon": "./assets/data/nsi/logos/cafecafe-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafecafe-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295909,7 +296256,7 @@ }, { "question": "רולדין", - "icon": "./assets/data/nsi/logos/roladin-10eb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roladin-10eb89.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295951,7 +296298,7 @@ }, { "question": "تيم هورتونز", - "icon": "./assets/data/nsi/logos/timhortons-2ad4e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timhortons-2ad4e1.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -295973,7 +296320,7 @@ }, { "question": "جافا تايم", - "icon": "./assets/data/nsi/logos/javatime-f27832.png", + "icon": "https://data.mapcomplete.org/nsi//logos/javatime-f27832.png", "osmTags": { "and": [ "amenity=cafe", @@ -295995,7 +296342,7 @@ }, { "question": "د.كيف", - "icon": "./assets/data/nsi/logos/drcafe-f27832.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drcafe-f27832.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296017,14 +296364,11 @@ }, { "question": "ستاربكس", - "icon": "./assets/data/nsi/logos/starbucks-0dcee5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucks-0dcee5.jpg", "osmTags": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=ستاربكس كافية", - "official_name:ar=ستاربكس كافية", - "official_name:en=Starbucks Coffee", "takeaway=yes", { "or": [ @@ -296034,7 +296378,10 @@ "brand:wikidata=Q37158", "name=ستاربكس", "name:ar=ستاربكس", - "name:en=Starbucks" + "name:en=Starbucks", + "official_name=ستاربكس كافية", + "official_name:ar=ستاربكس كافية", + "official_name:en=Starbucks Coffee" ] } ] @@ -296042,7 +296389,7 @@ }, { "question": "كاريبو كوفي", - "icon": "./assets/data/nsi/logos/cariboucoffee-9bd633.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cariboucoffee-9bd633.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296064,7 +296411,7 @@ }, { "question": "هاف مليون", - "icon": "./assets/data/nsi/logos/halfmillion-f27832.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halfmillion-f27832.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296086,7 +296433,7 @@ }, { "question": "คาเฟ่ อเมซอน", - "icon": "./assets/data/nsi/logos/cafeamazon-b6dfae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafeamazon-b6dfae.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296108,7 +296455,7 @@ }, { "question": "공차", - "icon": "./assets/data/nsi/logos/gongcha-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gongcha-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296132,7 +296479,7 @@ }, { "question": "달.콤", - "icon": "./assets/data/nsi/logos/dalkommcoffee-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dalkommcoffee-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296154,7 +296501,7 @@ }, { "question": "더벤티", - "icon": "./assets/data/nsi/logos/theventi-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theventi-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296176,7 +296523,7 @@ }, { "question": "매머드커피", - "icon": "./assets/data/nsi/logos/mammothcoffee-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mammothcoffee-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296198,7 +296545,7 @@ }, { "question": "메가MGC커피", - "icon": "./assets/data/nsi/logos/megacoffee-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megacoffee-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296221,7 +296568,7 @@ }, { "question": "바나프레소", - "icon": "./assets/data/nsi/logos/banapresso-77c68b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banapresso-77c68b.png", "osmTags": { "and": [ "amenity=cafe", @@ -296243,7 +296590,7 @@ }, { "question": "빽다방", - "icon": "./assets/data/nsi/logos/paikscoffee-77c68b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paikscoffee-77c68b.png", "osmTags": { "and": [ "amenity=cafe", @@ -296265,7 +296612,7 @@ }, { "question": "스타벅스", - "icon": "./assets/data/nsi/logos/starbucks-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucks-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296308,7 +296655,7 @@ }, { "question": "요거프레소", - "icon": "./assets/data/nsi/logos/yogerpresso-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yogerpresso-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296330,7 +296677,7 @@ }, { "question": "이디야커피", - "icon": "./assets/data/nsi/logos/ediyacoffee-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ediyacoffee-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296373,7 +296720,7 @@ }, { "question": "카페베네", - "icon": "./assets/data/nsi/logos/caffebene-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caffebene-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296437,7 +296784,7 @@ }, { "question": "커피에반하다", - "icon": "./assets/data/nsi/logos/vanadacoffee-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vanadacoffee-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296459,7 +296806,7 @@ }, { "question": "컴포즈커피", - "icon": "./assets/data/nsi/logos/composecoffee-77c68b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/composecoffee-77c68b.svg", "osmTags": { "and": [ "amenity=cafe", @@ -296502,7 +296849,7 @@ }, { "question": "투썸플레이스", - "icon": "./assets/data/nsi/logos/atwosomeplace-77c68b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atwosomeplace-77c68b.png", "osmTags": { "and": [ "amenity=cafe", @@ -296545,7 +296892,7 @@ }, { "question": "허유산", - "icon": "./assets/data/nsi/logos/huilaushan-77c68b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huilaushan-77c68b.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296569,7 +296916,7 @@ }, { "question": "エクセルシオール カフェ", - "icon": "./assets/data/nsi/logos/excelsiorcafe-0cf217.png", + "icon": "https://data.mapcomplete.org/nsi//logos/excelsiorcafe-0cf217.png", "osmTags": { "and": [ "amenity=cafe", @@ -296591,7 +296938,7 @@ }, { "question": "カフェ・ド・クリエ", - "icon": "./assets/data/nsi/logos/cafedecrie-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafedecrie-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296613,7 +296960,7 @@ }, { "question": "カフェ・ベローチェ", - "icon": "./assets/data/nsi/logos/cafeveloce-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafeveloce-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296635,7 +296982,7 @@ }, { "question": "コメダ珈琲店", - "icon": "./assets/data/nsi/logos/komedascoffee-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komedascoffee-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296657,7 +297004,7 @@ }, { "question": "サンマルクカフェ", - "icon": "./assets/data/nsi/logos/saintmarccafe-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintmarccafe-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296680,14 +297027,11 @@ }, { "question": "スターバックス", - "icon": "./assets/data/nsi/logos/starbucks-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucks-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=スターバックスコーヒー", - "official_name:en=Starbucks Coffee", - "official_name:ja=スターバックスコーヒー", "takeaway=yes", { "or": [ @@ -296697,7 +297041,10 @@ "brand:wikidata=Q37158", "name=スターバックス", "name:en=Starbucks", - "name:ja=スターバックス" + "name:ja=スターバックス", + "official_name=スターバックスコーヒー", + "official_name:en=Starbucks Coffee", + "official_name:ja=スターバックスコーヒー" ] } ] @@ -296705,7 +297052,7 @@ }, { "question": "タリーズコーヒー", - "icon": "./assets/data/nsi/logos/tullyscoffee-0cf217.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tullyscoffee-0cf217.png", "osmTags": { "and": [ "amenity=cafe", @@ -296727,7 +297074,7 @@ }, { "question": "ドトールコーヒーショップ", - "icon": "./assets/data/nsi/logos/doutorcoffeeshop-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doutorcoffeeshop-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296772,14 +297119,11 @@ }, { "question": "ルノアール", - "icon": "./assets/data/nsi/logos/renoir-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renoir-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", "cuisine=coffee_shop", - "official_name=喫茶室ルノアール", - "official_name:en=Ginza Renoir", - "official_name:ja=喫茶室ルノアール", "takeaway=yes", { "or": [ @@ -296789,7 +297133,10 @@ "brand:wikidata=Q11649991", "name=ルノアール", "name:en=Renoir", - "name:ja=ルノアール" + "name:ja=ルノアール", + "official_name=喫茶室ルノアール", + "official_name:en=Ginza Renoir", + "official_name:ja=喫茶室ルノアール" ] } ] @@ -296797,7 +297144,7 @@ }, { "question": "一沐日", - "icon": "./assets/data/nsi/logos/aniceholiday-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aniceholiday-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296840,7 +297187,7 @@ }, { "question": "一芳水果茶", - "icon": "./assets/data/nsi/logos/yifangtea-bd86e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yifangtea-bd86e2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296862,7 +297209,7 @@ }, { "question": "一芳水果茶 Yi Fang Tea", - "icon": "./assets/data/nsi/logos/yifangtea-59dcf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yifangtea-59dcf2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296884,7 +297231,7 @@ }, { "question": "一芳水果茶(台灣)", - "icon": "./assets/data/nsi/logos/yifangtea-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yifangtea-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296907,7 +297254,7 @@ }, { "question": "三分春色", - "icon": "./assets/data/nsi/logos/trinitea3-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trinitea3-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296929,7 +297276,7 @@ }, { "question": "上島珈琲店", - "icon": "./assets/data/nsi/logos/ueshimacoffeehouse-7f2f5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ueshimacoffeehouse-7f2f5a.png", "osmTags": { "and": [ "amenity=cafe", @@ -296951,7 +297298,7 @@ }, { "question": "丸作食茶", - "icon": "./assets/data/nsi/logos/onezotapioca-783c92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onezotapioca-783c92.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -296994,7 +297341,7 @@ }, { "question": "五桐號", - "icon": "./assets/data/nsi/logos/wootea-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wootea-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297016,7 +297363,7 @@ }, { "question": "亚马逊咖啡", - "icon": "./assets/data/nsi/logos/cafeamazon-3300f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafeamazon-3300f4.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297059,7 +297406,7 @@ }, { "question": "八曜和茶", - "icon": "./assets/data/nsi/logos/hachiyotea-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hachiyotea-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297104,7 +297451,7 @@ }, { "question": "再睡五分鐘", - "icon": "./assets/data/nsi/logos/naptea-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naptea-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297190,7 +297537,7 @@ }, { "question": "咖世家", - "icon": "./assets/data/nsi/logos/costa-3300f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/costa-3300f4.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297212,7 +297559,7 @@ }, { "question": "喜茶", - "icon": "./assets/data/nsi/logos/heytea-823e31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/heytea-823e31.png", "osmTags": { "and": [ "amenity=cafe", @@ -297234,7 +297581,7 @@ }, { "question": "喜茶 Heytea", - "icon": "./assets/data/nsi/logos/heytea-b3d618.png", + "icon": "https://data.mapcomplete.org/nsi//logos/heytea-b3d618.png", "osmTags": { "and": [ "amenity=cafe", @@ -297256,7 +297603,7 @@ }, { "question": "堅果奶茶 NUTTEA", - "icon": "./assets/data/nsi/logos/nuttea-b3d618.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nuttea-b3d618.png", "osmTags": { "and": [ "amenity=cafe", @@ -297324,7 +297671,7 @@ }, { "question": "大茗本位製茶堂", - "icon": "./assets/data/nsi/logos/daming-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daming-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297346,7 +297693,7 @@ }, { "question": "天仁茗茶", - "icon": "./assets/data/nsi/logos/tenrenstea-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tenrenstea-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297368,7 +297715,7 @@ }, { "question": "天仁茗茶 TenRen's Tea", - "icon": "./assets/data/nsi/logos/tenrenstea-59dcf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tenrenstea-59dcf2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297390,7 +297737,7 @@ }, { "question": "太平洋咖啡", - "icon": "./assets/data/nsi/logos/pacificcoffee-2d7d61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificcoffee-2d7d61.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297412,7 +297759,7 @@ }, { "question": "太平洋咖啡 Pacific Coffee", - "icon": "./assets/data/nsi/logos/pacificcoffee-b3d618.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificcoffee-b3d618.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297434,7 +297781,7 @@ }, { "question": "奈雪的茶", - "icon": "./assets/data/nsi/logos/nayuki-3300f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nayuki-3300f4.png", "osmTags": { "and": [ "amenity=cafe", @@ -297456,7 +297803,7 @@ }, { "question": "客美多咖啡", - "icon": "./assets/data/nsi/logos/komedacoffeeshop-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komedacoffeeshop-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297480,7 +297827,7 @@ }, { "question": "幸福堂", - "icon": "./assets/data/nsi/logos/xingfutang-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xingfutang-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297503,7 +297850,7 @@ }, { "question": "幸福堂 Xing Fu Tang", - "icon": "./assets/data/nsi/logos/xingfutang-59dcf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xingfutang-59dcf2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297567,7 +297914,7 @@ }, { "question": "快乐柠檬", - "icon": "./assets/data/nsi/logos/happylemon-aa349e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happylemon-aa349e.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297589,7 +297936,7 @@ }, { "question": "快可立", - "icon": "./assets/data/nsi/logos/quickly-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quickly-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297611,7 +297958,7 @@ }, { "question": "日出茶太 (中国大陆)", - "icon": "./assets/data/nsi/logos/chatime-3300f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chatime-3300f4.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297634,7 +297981,7 @@ }, { "question": "日出茶太 (臺灣)", - "icon": "./assets/data/nsi/logos/chatime-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chatime-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297656,7 +298003,7 @@ }, { "question": "星乃珈琲店", - "icon": "./assets/data/nsi/logos/hoshinocoffee-7f2f5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hoshinocoffee-7f2f5a.png", "osmTags": { "and": [ "amenity=cafe", @@ -297680,7 +298027,7 @@ }, { "question": "星巴克", - "icon": "./assets/data/nsi/logos/starbucks-823e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucks-823e31.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297702,7 +298049,7 @@ }, { "question": "星巴克 Starbucks", - "icon": "./assets/data/nsi/logos/starbucks-b3d618.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucks-b3d618.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297724,7 +298071,7 @@ }, { "question": "星巴克(台灣)", - "icon": "./assets/data/nsi/logos/starbucks-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbucks-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297747,7 +298094,7 @@ }, { "question": "春水堂人文茶館", - "icon": "./assets/data/nsi/logos/chunshuitang-880fa5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chunshuitang-880fa5.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297773,7 +298120,7 @@ }, { "question": "本宫的茶", - "icon": "./assets/data/nsi/logos/bengongstea-823e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bengongstea-823e31.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297816,7 +298163,7 @@ }, { "question": "清心福全", - "icon": "./assets/data/nsi/logos/chingshin-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chingshin-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297838,7 +298185,7 @@ }, { "question": "珈琲館", - "icon": "./assets/data/nsi/logos/kohikan-0cf217.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kohikan-0cf217.png", "osmTags": { "and": [ "amenity=cafe", @@ -297860,7 +298207,7 @@ }, { "question": "珍煮丹", - "icon": "./assets/data/nsi/logos/truedan-7f2f5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truedan-7f2f5a.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297885,7 +298232,7 @@ }, { "question": "珍煮丹 Truedan", - "icon": "./assets/data/nsi/logos/truedan-59dcf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truedan-59dcf2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297908,7 +298255,7 @@ }, { "question": "瑞幸咖啡", - "icon": "./assets/data/nsi/logos/luckincoffee-3300f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luckincoffee-3300f4.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297930,7 +298277,7 @@ }, { "question": "甲文青", - "icon": "./assets/data/nsi/logos/jiawencing-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jiawencing-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -297973,7 +298320,7 @@ }, { "question": "老虎堂", - "icon": "./assets/data/nsi/logos/tigersugar-2851bb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tigersugar-2851bb.png", "osmTags": { "and": [ "amenity=cafe", @@ -297995,7 +298342,7 @@ }, { "question": "老虎堂 Tiger Sugar", - "icon": "./assets/data/nsi/logos/tigersugar-59dcf2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tigersugar-59dcf2.png", "osmTags": { "and": [ "amenity=cafe", @@ -298017,7 +298364,7 @@ }, { "question": "茶星人 E.Tea", - "icon": "./assets/data/nsi/logos/etea-59dcf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etea-59dcf2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298039,7 +298386,7 @@ }, { "question": "茶湯會", - "icon": "./assets/data/nsi/logos/tptea-7d270d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tptea-7d270d.png", "osmTags": { "and": [ "amenity=cafe", @@ -298063,7 +298410,7 @@ }, { "question": "茶湯會 TP Tea", - "icon": "./assets/data/nsi/logos/tptea-59dcf2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tptea-59dcf2.png", "osmTags": { "and": [ "amenity=cafe", @@ -298089,7 +298436,7 @@ }, { "question": "茶百道", - "icon": "./assets/data/nsi/logos/chabaidao-bd86e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chabaidao-bd86e2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298111,7 +298458,7 @@ }, { "question": "茶百道 ChaPanda", - "icon": "./assets/data/nsi/logos/chapanda-59dcf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chapanda-59dcf2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298133,7 +298480,7 @@ }, { "question": "茶的魔手", - "icon": "./assets/data/nsi/logos/teaandmagichand-7d270d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/teaandmagichand-7d270d.png", "osmTags": { "and": [ "amenity=cafe", @@ -298176,7 +298523,7 @@ }, { "question": "薡茶", - "icon": "./assets/data/nsi/logos/dingtea-f1b18f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dingtea-f1b18f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298198,7 +298545,7 @@ }, { "question": "蜜雪冰城", - "icon": "./assets/data/nsi/logos/mixuebingcheng-bd86e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mixuebingcheng-bd86e2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298220,7 +298567,7 @@ }, { "question": "蜜雪冰城 Mixue Ice Cream & Tea", - "icon": "./assets/data/nsi/logos/mixueicecreamandtea-59dcf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mixueicecreamandtea-59dcf2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298242,7 +298589,7 @@ }, { "question": "西雅圖極品咖啡", - "icon": "./assets/data/nsi/logos/baristacoffee-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baristacoffee-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298267,7 +298614,7 @@ }, { "question": "許留山", - "icon": "./assets/data/nsi/logos/huilaushan-f1b18f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huilaushan-f1b18f.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298289,7 +298636,7 @@ }, { "question": "許留山 Hui Lau Shan", - "icon": "./assets/data/nsi/logos/huilaushan-b3d618.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huilaushan-b3d618.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298311,7 +298658,7 @@ }, { "question": "貢茶 (日本)", - "icon": "./assets/data/nsi/logos/gongcha-0cf217.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gongcha-0cf217.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298335,7 +298682,7 @@ }, { "question": "貢茶 (臺灣)", - "icon": "./assets/data/nsi/logos/gongcha-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gongcha-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298362,7 +298709,7 @@ }, { "question": "貢茶 Gong Cha", - "icon": "./assets/data/nsi/logos/gongcha-b3d618.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gongcha-b3d618.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298384,7 +298731,7 @@ }, { "question": "贡茶 (中国)", - "icon": "./assets/data/nsi/logos/gongcha-823e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gongcha-823e31.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298411,7 +298758,7 @@ }, { "question": "路易莎咖啡", - "icon": "./assets/data/nsi/logos/louisacoffee-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisacoffee-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298433,7 +298780,7 @@ }, { "question": "迷客夏", - "icon": "./assets/data/nsi/logos/milkshop-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milkshop-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298455,7 +298802,7 @@ }, { "question": "霸王茶姬", - "icon": "./assets/data/nsi/logos/chagee-823e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chagee-823e31.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298477,7 +298824,7 @@ }, { "question": "霸王茶姬 Chagee", - "icon": "./assets/data/nsi/logos/chagee-59dcf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chagee-59dcf2.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298499,7 +298846,7 @@ }, { "question": "鮮茶道", - "icon": "./assets/data/nsi/logos/e7db71-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/e7db71-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298517,7 +298864,7 @@ }, { "question": "鶴茶樓", - "icon": "./assets/data/nsi/logos/hechaloutea-7d270d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hechaloutea-7d270d.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -298561,7 +298908,7 @@ }, { "question": "麻古茶坊", - "icon": "./assets/data/nsi/logos/macu-7d270d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/macu-7d270d.svg", "osmTags": { "and": [ "amenity=cafe", @@ -298583,7 +298930,7 @@ }, { "question": "99rent", - "icon": "./assets/data/nsi/logos/99rent-f36412.png", + "icon": "https://data.mapcomplete.org/nsi//logos/99rent-f36412.png", "osmTags": { "and": [ "amenity=car_rental", @@ -298599,7 +298946,7 @@ }, { "question": "ADA", - "icon": "./assets/data/nsi/logos/ada-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ada-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298615,7 +298962,7 @@ }, { "question": "Alamo", - "icon": "./assets/data/nsi/logos/alamo-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alamo-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298631,7 +298978,7 @@ }, { "question": "Apex", - "icon": "./assets/data/nsi/logos/apex-f8249a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apex-f8249a.png", "osmTags": { "and": [ "amenity=car_rental", @@ -298647,7 +298994,7 @@ }, { "question": "Arnold Clark Car & Van Rental", - "icon": "./assets/data/nsi/logos/arnoldclarkcarandvanrental-94e308.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arnoldclarkcarandvanrental-94e308.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298663,7 +299010,7 @@ }, { "question": "Autohopper", - "icon": "./assets/data/nsi/logos/autohopper-76827b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autohopper-76827b.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298679,16 +299026,16 @@ }, { "question": "Avis", - "icon": "./assets/data/nsi/logos/avis-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avis-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", - "official_name=Avis Car Rental", { "or": [ "brand=Avis", "brand:wikidata=Q791136", - "name=Avis" + "name=Avis", + "official_name=Avis Car Rental" ] } ] @@ -298696,7 +299043,7 @@ }, { "question": "Buchbinder", - "icon": "./assets/data/nsi/logos/buchbinder-407895.png", + "icon": "https://data.mapcomplete.org/nsi//logos/buchbinder-407895.png", "osmTags": { "and": [ "amenity=car_rental", @@ -298712,16 +299059,16 @@ }, { "question": "Budget", - "icon": "./assets/data/nsi/logos/budget-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budget-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", - "official_name=Budget Rent a Car", { "or": [ "brand=Budget", "brand:wikidata=Q1001437", - "name=Budget" + "name=Budget", + "official_name=Budget Rent a Car" ] } ] @@ -298729,7 +299076,7 @@ }, { "question": "Budget Truck Rental", - "icon": "./assets/data/nsi/logos/budgettruckrental-d50162.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budgettruckrental-d50162.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298745,7 +299092,7 @@ }, { "question": "CarGo", - "icon": "./assets/data/nsi/logos/cargo-8fb45c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cargo-8fb45c.png", "osmTags": { "and": [ "amenity=car_rental", @@ -298776,7 +299123,7 @@ }, { "question": "Dollar Car Rental", - "icon": "./assets/data/nsi/logos/dollarcarrental-d50162.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dollarcarrental-d50162.png", "osmTags": { "and": [ "amenity=car_rental", @@ -298792,7 +299139,7 @@ }, { "question": "E.Leclerc Location", - "icon": "./assets/data/nsi/logos/eleclerclocation-8fb45c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclerclocation-8fb45c.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298808,16 +299155,16 @@ }, { "question": "Enterprise", - "icon": "./assets/data/nsi/logos/enterprise-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enterprise-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", - "official_name=Enterprise Rent-A-Car", { "or": [ "brand=Enterprise", "brand:wikidata=Q17085454", - "name=Enterprise" + "name=Enterprise", + "official_name=Enterprise Rent-A-Car" ] } ] @@ -298841,7 +299188,7 @@ }, { "question": "Euromobil", - "icon": "./assets/data/nsi/logos/euromobil-76827b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/euromobil-76827b.png", "osmTags": { "and": [ "amenity=car_rental", @@ -298857,7 +299204,7 @@ }, { "question": "Europcar", - "icon": "./assets/data/nsi/logos/europcar-802794.png", + "icon": "https://data.mapcomplete.org/nsi//logos/europcar-802794.png", "osmTags": { "and": [ "amenity=car_rental", @@ -298873,7 +299220,7 @@ }, { "question": "Europcar (Scandinavia)", - "icon": "./assets/data/nsi/logos/europcar-95cde7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/europcar-95cde7.png", "osmTags": { "and": [ "amenity=car_rental", @@ -298889,7 +299236,7 @@ }, { "question": "GarentaDAY", - "icon": "./assets/data/nsi/logos/garentaday-48a8d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/garentaday-48a8d7.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298905,7 +299252,7 @@ }, { "question": "Green Motion", - "icon": "./assets/data/nsi/logos/greenmotion-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenmotion-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298921,7 +299268,7 @@ }, { "question": "Hertz", - "icon": "./assets/data/nsi/logos/hertz-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hertz-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298937,7 +299284,7 @@ }, { "question": "Jucy", - "icon": "./assets/data/nsi/logos/jucy-fde8ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jucy-fde8ea.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298953,7 +299300,7 @@ }, { "question": "Localiza", - "icon": "./assets/data/nsi/logos/localiza-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/localiza-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298969,7 +299316,7 @@ }, { "question": "Movida", - "icon": "./assets/data/nsi/logos/movida-7721c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/movida-7721c7.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -298985,16 +299332,16 @@ }, { "question": "National", - "icon": "./assets/data/nsi/logos/national-6ebae1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/national-6ebae1.jpg", "osmTags": { "and": [ "amenity=car_rental", - "official_name=National Car Rental", { "or": [ "brand=National", "brand:wikidata=Q1424142", - "name=National" + "name=National", + "official_name=National Car Rental" ] } ] @@ -299002,7 +299349,7 @@ }, { "question": "Opel Rent", - "icon": "./assets/data/nsi/logos/opelrent-608338.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opelrent-608338.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299018,7 +299365,7 @@ }, { "question": "Payless", - "icon": "./assets/data/nsi/logos/payless-d9531a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/payless-d9531a.svg", "osmTags": { "and": [ "amenity=car_rental", @@ -299034,7 +299381,7 @@ }, { "question": "Practical", - "icon": "./assets/data/nsi/logos/practical-9ff876.png", + "icon": "https://data.mapcomplete.org/nsi//logos/practical-9ff876.png", "osmTags": { "and": [ "amenity=car_rental", @@ -299050,7 +299397,7 @@ }, { "question": "Redspot Car Rentals", - "icon": "./assets/data/nsi/logos/redspotcarrentals-ba918c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redspotcarrentals-ba918c.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299066,7 +299413,7 @@ }, { "question": "Rent A Car", - "icon": "./assets/data/nsi/logos/rentacar-8fb45c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rentacar-8fb45c.png", "osmTags": { "and": [ "amenity=car_rental", @@ -299082,7 +299429,7 @@ }, { "question": "SIXT", - "icon": "./assets/data/nsi/logos/sixt-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sixt-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299098,7 +299445,7 @@ }, { "question": "SK렌터카", - "icon": "./assets/data/nsi/logos/skrentacar-1f06f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skrentacar-1f06f0.png", "osmTags": { "and": [ "amenity=car_rental", @@ -299118,7 +299465,7 @@ }, { "question": "STARCAR", - "icon": "./assets/data/nsi/logos/starcar-608338.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starcar-608338.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299134,7 +299481,7 @@ }, { "question": "Thrifty", - "icon": "./assets/data/nsi/logos/thrifty-d9531a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thrifty-d9531a.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299150,16 +299497,16 @@ }, { "question": "U-Save", - "icon": "./assets/data/nsi/logos/usave-c212fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usave-c212fd.jpg", "osmTags": { "and": [ "amenity=car_rental", - "official_name=U-Save Car & Truck Rental", { "or": [ "brand=U-Save", "brand:wikidata=Q123005345", - "name=U-Save" + "name=U-Save", + "official_name=U-Save Car & Truck Rental" ] } ] @@ -299167,7 +299514,7 @@ }, { "question": "Ucar", - "icon": "./assets/data/nsi/logos/ucar-8fb45c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucar-8fb45c.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299183,7 +299530,7 @@ }, { "question": "Unidas", - "icon": "./assets/data/nsi/logos/unidas-7721c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unidas-7721c7.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299199,7 +299546,7 @@ }, { "question": "롯데렌터카", - "icon": "./assets/data/nsi/logos/lotterentacar-1f06f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotterentacar-1f06f0.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299219,7 +299566,7 @@ }, { "question": "オリックスレンタカー", - "icon": "./assets/data/nsi/logos/orixrentacar-f05847.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orixrentacar-f05847.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299239,7 +299586,7 @@ }, { "question": "トヨタレンタカー", - "icon": "./assets/data/nsi/logos/toyotarentacar-f05847.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toyotarentacar-f05847.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299259,7 +299606,7 @@ }, { "question": "ニコニコレンタカー", - "icon": "./assets/data/nsi/logos/niconicorentacar-f05847.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niconicorentacar-f05847.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299298,7 +299645,7 @@ }, { "question": "中租租車", - "icon": "./assets/data/nsi/logos/chailease-9fc5e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chailease-9fc5e0.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299318,7 +299665,7 @@ }, { "question": "和運租車", - "icon": "./assets/data/nsi/logos/hotaileasing-9fc5e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotaileasing-9fc5e0.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299338,7 +299685,7 @@ }, { "question": "小馬租車", - "icon": "./assets/data/nsi/logos/ponyrentacar-9fc5e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ponyrentacar-9fc5e0.png", "osmTags": { "and": [ "amenity=car_rental", @@ -299377,7 +299724,7 @@ }, { "question": "日産レンタカー", - "icon": "./assets/data/nsi/logos/nissanrentacar-f05847.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nissanrentacar-f05847.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299397,7 +299744,7 @@ }, { "question": "格上租車", - "icon": "./assets/data/nsi/logos/carplus-9fc5e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carplus-9fc5e0.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299417,7 +299764,7 @@ }, { "question": "直航租車", - "icon": "./assets/data/nsi/logos/chihhangcarrental-9fc5e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chihhangcarrental-9fc5e0.jpg", "osmTags": { "and": [ "amenity=car_rental", @@ -299475,7 +299822,7 @@ }, { "question": "Stadtmobil Berlin", - "icon": "./assets/data/nsi/logos/stadtmobil-205356.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobil-205356.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299493,7 +299840,7 @@ }, { "question": "Stadtmobil Hannover", - "icon": "./assets/data/nsi/logos/stadtmobil-f851cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobil-f851cd.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299511,7 +299858,7 @@ }, { "question": "Stadtmobil Karlsruhe", - "icon": "./assets/data/nsi/logos/stadtmobil-3038c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobil-3038c5.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299529,7 +299876,7 @@ }, { "question": "Stadtmobil Rhein-Main", - "icon": "./assets/data/nsi/logos/stadtmobil-c2ae2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobil-c2ae2a.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299547,7 +299894,7 @@ }, { "question": "Stadtmobil Rhein-Neckar", - "icon": "./assets/data/nsi/logos/stadtmobil-5a8828.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobil-5a8828.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299565,7 +299912,7 @@ }, { "question": "Stadtmobil Rhein-Ruhr", - "icon": "./assets/data/nsi/logos/stadtmobil-545eb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobil-545eb6.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299583,7 +299930,7 @@ }, { "question": "Stadtmobil Stuttgart", - "icon": "./assets/data/nsi/logos/stadtmobil-fd587a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobil-fd587a.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299601,7 +299948,7 @@ }, { "question": "Stadtmobil Südbaden", - "icon": "./assets/data/nsi/logos/stadtmobilsudbaden-ff69c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobilsudbaden-ff69c7.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299619,7 +299966,7 @@ }, { "question": "Stadtmobil Trier", - "icon": "./assets/data/nsi/logos/stadtmobil-9bf665.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmobil-9bf665.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299637,7 +299984,7 @@ }, { "question": "teilAuto", - "icon": "./assets/data/nsi/logos/teilauto-c26449.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teilauto-c26449.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -299673,7 +300020,7 @@ }, { "question": "Alltown", - "icon": "./assets/data/nsi/logos/alltown-cac12f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alltown-cac12f.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299689,7 +300036,7 @@ }, { "question": "Aral", - "icon": "./assets/data/nsi/logos/aral-78fe7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aral-78fe7d.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299705,7 +300052,7 @@ }, { "question": "Aral SuperWash", - "icon": "./assets/data/nsi/logos/aralsuperwash-26327d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aralsuperwash-26327d.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299721,7 +300068,7 @@ }, { "question": "AS 24", - "icon": "./assets/data/nsi/logos/as24-d24fa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/as24-d24fa4.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299737,7 +300084,7 @@ }, { "question": "Blue Beacon", - "icon": "./assets/data/nsi/logos/bluebeacon-244496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluebeacon-244496.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299754,7 +300101,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-43b899.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-43b899.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299770,7 +300117,7 @@ }, { "question": "Brown Bear Car Wash", - "icon": "./assets/data/nsi/logos/brownbearcarwash-244496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brownbearcarwash-244496.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299786,7 +300133,7 @@ }, { "question": "Chevron", - "icon": "./assets/data/nsi/logos/chevron-43b899.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chevron-43b899.png", "osmTags": { "and": [ "amenity=car_wash", @@ -299802,7 +300149,7 @@ }, { "question": "Circle K", - "icon": "./assets/data/nsi/logos/circlek-43b899.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-43b899.png", "osmTags": { "and": [ "amenity=car_wash", @@ -299818,7 +300165,7 @@ }, { "question": "Club Car Wash", - "icon": "./assets/data/nsi/logos/clubcarwash-d2c834.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubcarwash-d2c834.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299834,7 +300181,7 @@ }, { "question": "Costco", - "icon": "./assets/data/nsi/logos/costco-244496.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costco-244496.svg", "osmTags": { "and": [ "amenity=car_wash", @@ -299850,7 +300197,7 @@ }, { "question": "Darner", - "icon": "./assets/data/nsi/logos/darner-95225d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/darner-95225d.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299866,7 +300213,7 @@ }, { "question": "Delta Sonic Car Wash", - "icon": "./assets/data/nsi/logos/deltasoniccarwash-afae69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deltasoniccarwash-afae69.png", "osmTags": { "and": [ "amenity=car_wash", @@ -299882,7 +300229,7 @@ }, { "question": "Ehrle", - "icon": "./assets/data/nsi/logos/ehrle-316c1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ehrle-316c1a.png", "osmTags": { "and": [ "amenity=car_wash", @@ -299898,7 +300245,7 @@ }, { "question": "Elefante Azul", - "icon": "./assets/data/nsi/logos/elefanteazul-99bbad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elefanteazul-99bbad.png", "osmTags": { "and": [ "amenity=car_wash", @@ -299914,7 +300261,7 @@ }, { "question": "Éléphant Bleu", - "icon": "./assets/data/nsi/logos/elephantbleu-6a6dda.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elephantbleu-6a6dda.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299930,7 +300277,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-5d96a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-5d96a3.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299946,7 +300293,7 @@ }, { "question": "Esso TigerWash", - "icon": "./assets/data/nsi/logos/essotigerwash-26327d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essotigerwash-26327d.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299977,7 +300324,7 @@ }, { "question": "Globus", - "icon": "./assets/data/nsi/logos/globus-f2c690.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globus-f2c690.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -299993,7 +300340,7 @@ }, { "question": "Golden Nozzle Car Wash", - "icon": "./assets/data/nsi/logos/goldennozzlecarwash-cac12f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goldennozzlecarwash-cac12f.png", "osmTags": { "and": [ "amenity=car_wash", @@ -300009,7 +300356,7 @@ }, { "question": "H-E-B Car Wash", - "icon": "./assets/data/nsi/logos/hebcarwash-244496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hebcarwash-244496.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300026,7 +300373,7 @@ }, { "question": "IMO Car Wash", - "icon": "./assets/data/nsi/logos/imocarwash-43b899.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imocarwash-43b899.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300043,7 +300390,7 @@ }, { "question": "Intermarché", - "icon": "./assets/data/nsi/logos/intermarche-5d96a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarche-5d96a3.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300059,7 +300406,7 @@ }, { "question": "Kaady Car Wash", - "icon": "./assets/data/nsi/logos/kaadycarwash-4e367a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaadycarwash-4e367a.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300075,7 +300422,7 @@ }, { "question": "Kärcher", - "icon": "./assets/data/nsi/logos/karcher-43b899.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/karcher-43b899.svg", "osmTags": { "and": [ "amenity=car_wash", @@ -300091,7 +300438,7 @@ }, { "question": "Kwik Trip", - "icon": "./assets/data/nsi/logos/kwiktrip-3ffd21.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwiktrip-3ffd21.svg", "osmTags": { "and": [ "amenity=car_wash", @@ -300107,7 +300454,7 @@ }, { "question": "Migrol Car Wash", - "icon": "./assets/data/nsi/logos/migrolcarwash-4c245c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/migrolcarwash-4c245c.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300123,7 +300470,7 @@ }, { "question": "Mister Car Wash", - "icon": "./assets/data/nsi/logos/mistercarwash-244496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mistercarwash-244496.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300139,7 +300486,7 @@ }, { "question": "Mobil", - "icon": "./assets/data/nsi/logos/mobil-43b899.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobil-43b899.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300155,7 +300502,7 @@ }, { "question": "ModWash", - "icon": "./assets/data/nsi/logos/modwash-244496.png", + "icon": "https://data.mapcomplete.org/nsi//logos/modwash-244496.png", "osmTags": { "and": [ "amenity=car_wash", @@ -300171,7 +300518,7 @@ }, { "question": "Mr. Wash", - "icon": "./assets/data/nsi/logos/mrwash-26327d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrwash-26327d.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300187,7 +300534,7 @@ }, { "question": "OMV", - "icon": "./assets/data/nsi/logos/omv-43b899.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omv-43b899.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300203,7 +300550,7 @@ }, { "question": "Orlen", - "icon": "./assets/data/nsi/logos/orlen-c680df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlen-c680df.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300219,7 +300566,7 @@ }, { "question": "Penový raj", - "icon": "./assets/data/nsi/logos/penovyraj-3482c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penovyraj-3482c3.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300235,7 +300582,7 @@ }, { "question": "Petro-Canada", - "icon": "./assets/data/nsi/logos/petrocanada-9ea365.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrocanada-9ea365.svg", "osmTags": { "and": [ "amenity=car_wash", @@ -300251,7 +300598,7 @@ }, { "question": "Quick Quack Car Wash", - "icon": "./assets/data/nsi/logos/quickquackcarwash-244496.png", + "icon": "https://data.mapcomplete.org/nsi//logos/quickquackcarwash-244496.png", "osmTags": { "and": [ "amenity=car_wash", @@ -300267,7 +300614,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-a01e11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-a01e11.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300283,7 +300630,7 @@ }, { "question": "Slovnaft", - "icon": "./assets/data/nsi/logos/slovnaft-9d2a81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/slovnaft-9d2a81.png", "osmTags": { "and": [ "amenity=car_wash", @@ -300299,7 +300646,7 @@ }, { "question": "Soapy Noble", - "icon": "./assets/data/nsi/logos/soapynoble-244496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/soapynoble-244496.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300315,7 +300662,7 @@ }, { "question": "Super Wash", - "icon": "./assets/data/nsi/logos/superwash-244496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superwash-244496.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300331,7 +300678,7 @@ }, { "question": "Take 5 Car Wash", - "icon": "./assets/data/nsi/logos/take5carwash-d518c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/take5carwash-d518c0.png", "osmTags": { "and": [ "shop=car_repair", @@ -300348,7 +300695,7 @@ }, { "question": "Terrible's", - "icon": "./assets/data/nsi/logos/terribles-244496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terribles-244496.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300364,7 +300711,7 @@ }, { "question": "Tidal Wave Auto Spa", - "icon": "./assets/data/nsi/logos/tidalwaveautospa-244496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tidalwaveautospa-244496.jpg", "osmTags": { "and": [ "amenity=car_wash", @@ -300410,7 +300757,7 @@ }, { "question": "Waves", - "icon": "./assets/data/nsi/logos/waves-d2c834.png", + "icon": "https://data.mapcomplete.org/nsi//logos/waves-d2c834.png", "osmTags": { "and": [ "amenity=car_wash", @@ -300485,7 +300832,7 @@ }, { "question": "BANCO CASINO", - "icon": "./assets/data/nsi/logos/bancocasino-efca36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancocasino-efca36.png", "osmTags": { "and": [ "amenity=casino", @@ -300501,7 +300848,7 @@ }, { "question": "Codere", - "icon": "./assets/data/nsi/logos/codere-3dfd07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/codere-3dfd07.png", "osmTags": { "and": [ "amenity=casino", @@ -300579,7 +300926,7 @@ }, { "question": "Holland Casino", - "icon": "./assets/data/nsi/logos/hollandcasino-cf45c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hollandcasino-cf45c0.jpg", "osmTags": { "and": [ "amenity=casino", @@ -300625,7 +300972,7 @@ }, { "question": "Luckia", - "icon": "./assets/data/nsi/logos/luckia-5a89e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/luckia-5a89e4.svg", "osmTags": { "and": [ "amenity=casino", @@ -300655,7 +301002,7 @@ }, { "question": "Olympic Casino", - "icon": "./assets/data/nsi/logos/olympiccasino-7eadd8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/olympiccasino-7eadd8.png", "osmTags": { "and": [ "amenity=casino", @@ -300671,7 +301018,7 @@ }, { "question": "Palms Bet", - "icon": "./assets/data/nsi/logos/palmsbet-cfc6fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmsbet-cfc6fe.jpg", "osmTags": { "and": [ "amenity=casino", @@ -300687,7 +301034,7 @@ }, { "question": "Topsport", - "icon": "./assets/data/nsi/logos/topsport-c593f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topsport-c593f4.png", "osmTags": { "and": [ "amenity=casino", @@ -300718,7 +301065,7 @@ }, { "question": "Believ", - "icon": "./assets/data/nsi/logos/believ-cc3397.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/believ-cc3397.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300734,7 +301081,7 @@ }, { "question": "BP Pulse", - "icon": "./assets/data/nsi/logos/bppulse-ed9b3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bppulse-ed9b3b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300751,7 +301098,7 @@ }, { "question": "char.gy", - "icon": "./assets/data/nsi/logos/chargy-cc3397.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chargy-cc3397.png", "osmTags": { "and": [ "amenity=charging_station", @@ -300775,7 +301122,7 @@ }, { "question": "Chargy", - "icon": "./assets/data/nsi/logos/chargy-e87a7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chargy-e87a7c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300793,7 +301140,7 @@ }, { "question": "Eviny", - "icon": "./assets/data/nsi/logos/eviny-054d0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eviny-054d0f.png", "osmTags": { "and": [ "amenity=charging_station", @@ -300809,7 +301156,7 @@ }, { "question": "Indigo", - "icon": "./assets/data/nsi/logos/indigo-fd0ca8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indigo-fd0ca8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -300824,7 +301171,7 @@ }, { "question": "Ionity", - "icon": "./assets/data/nsi/logos/ionity-b625d6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ionity-b625d6.png", "osmTags": { "and": [ "amenity=charging_station", @@ -300848,7 +301195,7 @@ }, { "question": "Kople", - "icon": "./assets/data/nsi/logos/kople-054d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kople-054d0f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300863,7 +301210,7 @@ }, { "question": "Mer", - "icon": "./assets/data/nsi/logos/mer-36d5f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mer-36d5f6.png", "osmTags": { "and": [ "amenity=charging_station", @@ -300879,7 +301226,7 @@ }, { "question": "MOL Plugee", - "icon": "./assets/data/nsi/logos/molplugee-ce45cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/molplugee-ce45cd.png", "osmTags": { "and": [ "amenity=charging_station", @@ -300896,7 +301243,7 @@ }, { "question": "NIO Power Charger", - "icon": "./assets/data/nsi/logos/niopowercharger-9dbcd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowercharger-9dbcd7.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300914,7 +301261,7 @@ }, { "question": "NIO Power Destination", - "icon": "./assets/data/nsi/logos/niopowerdestination-9dbcd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowerdestination-9dbcd7.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300932,7 +301279,7 @@ }, { "question": "NIO Power Swap", - "icon": "./assets/data/nsi/logos/niopowerswap-9dbcd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowerswap-9dbcd7.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300950,7 +301297,7 @@ }, { "question": "OpenLoop", - "icon": "./assets/data/nsi/logos/openloop-dd8b2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/openloop-dd8b2e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300967,7 +301314,7 @@ }, { "question": "Plugit", - "icon": "./assets/data/nsi/logos/plugit-4d533b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/plugit-4d533b.png", "osmTags": { "and": [ "amenity=charging_station", @@ -300982,7 +301329,7 @@ }, { "question": "Powerbox.one", - "icon": "./assets/data/nsi/logos/powerboxone-391bca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerboxone-391bca.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -300997,7 +301344,7 @@ }, { "question": "Powerdot", - "icon": "./assets/data/nsi/logos/powerdot-f718d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/powerdot-f718d2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -301031,7 +301378,7 @@ }, { "question": "Rivian Adventure Network", - "icon": "./assets/data/nsi/logos/rivianadventurenetwork-d2b245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rivianadventurenetwork-d2b245.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -301046,7 +301393,7 @@ }, { "question": "Rivian Waypoints", - "icon": "./assets/data/nsi/logos/rivianwaypoints-d2b245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rivianwaypoints-d2b245.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -301077,7 +301424,7 @@ }, { "question": "Tesla Destination Charger", - "icon": "./assets/data/nsi/logos/tesladestinationcharger-67e574.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tesladestinationcharger-67e574.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -301110,7 +301457,7 @@ }, { "question": "Tesla Supercharger (Norge)", - "icon": "./assets/data/nsi/logos/teslasupercharger-054d0f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/teslasupercharger-054d0f.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -301126,7 +301473,7 @@ }, { "question": "ubitricity", - "icon": "./assets/data/nsi/logos/ubitricity-ef5e60.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ubitricity-ef5e60.png", "osmTags": { "and": [ "amenity=charging_station", @@ -301144,7 +301491,7 @@ }, { "question": "WINK Charging", - "icon": "./assets/data/nsi/logos/wink-59a92d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wink-59a92d.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -301176,7 +301523,7 @@ }, { "question": "ZSE Drive", - "icon": "./assets/data/nsi/logos/zsedrive-8610f2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zsedrive-8610f2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -301236,7 +301583,7 @@ }, { "question": "小鹏超充站", - "icon": "./assets/data/nsi/logos/xpengsupercharger-07dd34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xpengsupercharger-07dd34.png", "osmTags": { "and": [ "amenity=charging_station", @@ -301256,7 +301603,7 @@ }, { "question": "特来电", - "icon": "./assets/data/nsi/logos/teld-07dd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teld-07dd34.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -301276,7 +301623,7 @@ }, { "question": "蔚来换电站", - "icon": "./assets/data/nsi/logos/niopowerswap-07dd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowerswap-07dd34.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -301295,7 +301642,7 @@ }, { "question": "蔚来目充站", - "icon": "./assets/data/nsi/logos/niopowerdestination-07dd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowerdestination-07dd34.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -301314,7 +301661,7 @@ }, { "question": "蔚来超充站", - "icon": "./assets/data/nsi/logos/niopowercharger-07dd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowercharger-07dd34.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -301372,7 +301719,7 @@ }, { "question": "Arbeiterwohlfahrt", - "icon": "./assets/data/nsi/logos/arbeiterwohlfahrt-284c2e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-284c2e.svg", "osmTags": { "and": [ "amenity=childcare", @@ -301387,7 +301734,7 @@ }, { "question": "Busy Bees", - "icon": "./assets/data/nsi/logos/busybees-e7c9ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/busybees-e7c9ca.jpg", "osmTags": { "and": [ "amenity=childcare", @@ -301417,7 +301764,7 @@ }, { "question": "Deutsches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/deutschesroteskreuz-284c2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-284c2e.jpg", "osmTags": { "and": [ "amenity=childcare", @@ -301432,7 +301779,7 @@ }, { "question": "Kidango", - "icon": "./assets/data/nsi/logos/kidango-fd7b3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kidango-fd7b3f.jpg", "osmTags": { "and": [ "amenity=childcare", @@ -301448,20 +301795,20 @@ }, { "question": "Kids 'R' Kids", - "icon": "./assets/data/nsi/logos/kidsrkids-fd7b3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kidsrkids-fd7b3f.jpg", "osmTags": { "and": [ "after_school=yes", "amenity=childcare", "grades=PK", "nursery=yes", - "official_name=Kids 'R' Kids Learning Academies", "preschool=yes", { "or": [ "brand=Kids 'R' Kids", "brand:wikidata=Q65560342", - "name=Kids 'R' Kids" + "name=Kids 'R' Kids", + "official_name=Kids 'R' Kids Learning Academies" ] } ] @@ -301469,7 +301816,7 @@ }, { "question": "Merryhill Preschool", - "icon": "./assets/data/nsi/logos/merryhillpreschool-fd7b3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/merryhillpreschool-fd7b3f.jpg", "osmTags": { "and": [ "amenity=childcare", @@ -301485,7 +301832,7 @@ }, { "question": "N. Family Club", - "icon": "./assets/data/nsi/logos/nfamilyclub-de54b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nfamilyclub-de54b7.png", "osmTags": { "and": [ "amenity=childcare", @@ -301501,7 +301848,7 @@ }, { "question": "YMCA Child Care", - "icon": "./assets/data/nsi/logos/ymcachildcare-fd7b3f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ymcachildcare-fd7b3f.png", "osmTags": { "and": [ "amenity=childcare", @@ -301535,7 +301882,7 @@ }, { "question": "グローバルキッズ", - "icon": "./assets/data/nsi/logos/globalkids-46ae55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globalkids-46ae55.jpg", "osmTags": { "and": [ "amenity=childcare", @@ -301555,7 +301902,7 @@ }, { "question": "ちびっこランド", - "icon": "./assets/data/nsi/logos/chibikkoland-46ae55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chibikkoland-46ae55.png", "osmTags": { "and": [ "amenity=childcare", @@ -301575,7 +301922,7 @@ }, { "question": "ポポラー", - "icon": "./assets/data/nsi/logos/popolar-46ae55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/popolar-46ae55.png", "osmTags": { "and": [ "amenity=childcare", @@ -301595,7 +301942,7 @@ }, { "question": "109シネマズ", - "icon": "./assets/data/nsi/logos/109cinemas-35c174.png", + "icon": "https://data.mapcomplete.org/nsi//logos/109cinemas-35c174.png", "osmTags": { "and": [ "amenity=cinema", @@ -301615,7 +301962,7 @@ }, { "question": "Alamo Drafthouse Cinema", - "icon": "./assets/data/nsi/logos/alamodrafthousecinema-a7c63e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alamodrafthousecinema-a7c63e.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301631,7 +301978,7 @@ }, { "question": "AMC", - "icon": "./assets/data/nsi/logos/amc-71ff56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amc-71ff56.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301663,7 +302010,7 @@ }, { "question": "Caribbean Cinemas", - "icon": "./assets/data/nsi/logos/caribbeancinemas-77ba3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caribbeancinemas-77ba3f.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301679,7 +302026,7 @@ }, { "question": "Century Theatres", - "icon": "./assets/data/nsi/logos/centurytheatres-a7c63e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centurytheatres-a7c63e.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301696,7 +302043,7 @@ }, { "question": "CGR", - "icon": "./assets/data/nsi/logos/cgrcinemas-24fd45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cgrcinemas-24fd45.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301712,7 +302059,7 @@ }, { "question": "CGV影城", - "icon": "./assets/data/nsi/logos/cgvcinema-d2999b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cgvcinema-d2999b.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301732,7 +302079,7 @@ }, { "question": "Cine Center", - "icon": "./assets/data/nsi/logos/cinecenter-276738.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinecenter-276738.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301748,7 +302095,7 @@ }, { "question": "Cinema City", - "icon": "./assets/data/nsi/logos/cinemacity-2b5fb2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cinemacity-2b5fb2.png", "osmTags": { "and": [ "amenity=cinema", @@ -301764,7 +302111,7 @@ }, { "question": "Cinema NOS", - "icon": "./assets/data/nsi/logos/cinemanos-97a9e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinemanos-97a9e2.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301780,7 +302127,7 @@ }, { "question": "Cinema XXI", - "icon": "./assets/data/nsi/logos/cinemaxxi-ee9238.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinemaxxi-ee9238.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301797,7 +302144,7 @@ }, { "question": "Cinemark", - "icon": "./assets/data/nsi/logos/cinemark-dc12dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinemark-dc12dc.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301813,7 +302160,7 @@ }, { "question": "Cinemax", - "icon": "./assets/data/nsi/logos/cinemax-396cc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinemax-396cc7.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301844,7 +302191,7 @@ }, { "question": "Cinemaxx (Europe)", - "icon": "./assets/data/nsi/logos/cinemaxx-49be64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cinemaxx-49be64.png", "osmTags": { "and": [ "amenity=cinema", @@ -301860,7 +302207,7 @@ }, { "question": "Cinemex", - "icon": "./assets/data/nsi/logos/cinemex-217d43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinemex-217d43.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301876,7 +302223,7 @@ }, { "question": "Cineplanet", - "icon": "./assets/data/nsi/logos/cineplanet-7fe2a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cineplanet-7fe2a4.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301892,7 +302239,7 @@ }, { "question": "Cineplex (Canada)", - "icon": "./assets/data/nsi/logos/cineplex-4ad1c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cineplex-4ad1c3.png", "osmTags": { "and": [ "amenity=cinema", @@ -301908,7 +302255,7 @@ }, { "question": "Cineplex (Deutschland)", - "icon": "./assets/data/nsi/logos/cineplex-00435d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cineplex-00435d.png", "osmTags": { "and": [ "amenity=cinema", @@ -301924,7 +302271,7 @@ }, { "question": "Cineplexx", - "icon": "./assets/data/nsi/logos/cineplexx-8f1bb5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cineplexx-8f1bb5.png", "osmTags": { "and": [ "amenity=cinema", @@ -301940,7 +302287,7 @@ }, { "question": "Cinépolis", - "icon": "./assets/data/nsi/logos/cinepolis-dc12dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinepolis-dc12dc.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301956,7 +302303,7 @@ }, { "question": "Cinesa", - "icon": "./assets/data/nsi/logos/cinesa-408f25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinesa-408f25.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -301972,7 +302319,7 @@ }, { "question": "CineStar", - "icon": "./assets/data/nsi/logos/cinestar-a7029a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cinestar-a7029a.png", "osmTags": { "and": [ "amenity=cinema", @@ -301988,7 +302335,7 @@ }, { "question": "Cinéville", - "icon": "./assets/data/nsi/logos/cineville-24fd45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cineville-24fd45.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302004,7 +302351,7 @@ }, { "question": "Cineworld", - "icon": "./assets/data/nsi/logos/cineworld-5b33a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cineworld-5b33a1.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302020,7 +302367,7 @@ }, { "question": "CJ CGV", - "icon": "./assets/data/nsi/logos/cgvcinema-963a2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cgvcinema-963a2a.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302040,7 +302387,7 @@ }, { "question": "Curzon", - "icon": "./assets/data/nsi/logos/curzon-5b33a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/curzon-5b33a1.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302071,7 +302418,7 @@ }, { "question": "Event Cinemas", - "icon": "./assets/data/nsi/logos/eventcinemas-402915.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eventcinemas-402915.png", "osmTags": { "and": [ "amenity=cinema", @@ -302087,7 +302434,7 @@ }, { "question": "Everyman", - "icon": "./assets/data/nsi/logos/everyman-5b33a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/everyman-5b33a1.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302103,7 +302450,7 @@ }, { "question": "Golden Screen Cinemas", - "icon": "./assets/data/nsi/logos/goldenscreencinemas-ee5a85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenscreencinemas-ee5a85.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302120,7 +302467,7 @@ }, { "question": "Harkins Theatres", - "icon": "./assets/data/nsi/logos/harkinstheatres-a7c63e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harkinstheatres-a7c63e.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302137,7 +302484,7 @@ }, { "question": "Haut et Court", - "icon": "./assets/data/nsi/logos/hautetcourt-24fd45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hautetcourt-24fd45.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302153,7 +302500,7 @@ }, { "question": "Helios", - "icon": "./assets/data/nsi/logos/helios-696d99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/helios-696d99.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302169,7 +302516,7 @@ }, { "question": "Hoyts", - "icon": "./assets/data/nsi/logos/hoyts-402915.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoyts-402915.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302204,7 +302551,7 @@ }, { "question": "INOX Leisure", - "icon": "./assets/data/nsi/logos/inoxleisure-41b2b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inoxleisure-41b2b7.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302221,7 +302568,7 @@ }, { "question": "Irish Multiplex Cinemas", - "icon": "./assets/data/nsi/logos/imc-668c40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imc-668c40.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302237,7 +302584,7 @@ }, { "question": "Kinepolis", - "icon": "./assets/data/nsi/logos/kinepolis-bc363a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinepolis-bc363a.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302253,7 +302600,7 @@ }, { "question": "Kino za Rogiem", - "icon": "./assets/data/nsi/logos/kinozarogiem-696d99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinozarogiem-696d99.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302269,7 +302616,7 @@ }, { "question": "Landmark Cinemas", - "icon": "./assets/data/nsi/logos/landmarkcinemas-4ad1c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landmarkcinemas-4ad1c3.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302285,7 +302632,7 @@ }, { "question": "Landmark Theatres", - "icon": "./assets/data/nsi/logos/landmarktheatres-a7c63e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landmarktheatres-a7c63e.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302302,7 +302649,7 @@ }, { "question": "Les Écrans de Paris", - "icon": "./assets/data/nsi/logos/lesecransdeparis-24fd45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lesecransdeparis-24fd45.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302318,7 +302665,7 @@ }, { "question": "Lotus Five Star", - "icon": "./assets/data/nsi/logos/lotusfivestar-ee5a85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotusfivestar-ee5a85.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302335,7 +302682,7 @@ }, { "question": "Majestic", - "icon": "./assets/data/nsi/logos/majestic-24fd45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/majestic-24fd45.png", "osmTags": { "and": [ "amenity=cinema", @@ -302351,7 +302698,7 @@ }, { "question": "Major Cineplex", - "icon": "./assets/data/nsi/logos/majorcineplex-4fe5f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/majorcineplex-4fe5f1.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302367,7 +302714,7 @@ }, { "question": "Marcus Cinema", - "icon": "./assets/data/nsi/logos/marcuscinema-a7c63e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marcuscinema-a7c63e.png", "osmTags": { "and": [ "amenity=cinema", @@ -302384,7 +302731,7 @@ }, { "question": "MBO Cinemas", - "icon": "./assets/data/nsi/logos/mbocinemas-ee5a85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mbocinemas-ee5a85.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302401,7 +302748,7 @@ }, { "question": "Megarama", - "icon": "./assets/data/nsi/logos/megarama-2d2421.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megarama-2d2421.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302417,7 +302764,7 @@ }, { "question": "Merlin Cinemas", - "icon": "./assets/data/nsi/logos/merlincinemas-5b33a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/merlincinemas-5b33a1.png", "osmTags": { "and": [ "amenity=cinema", @@ -302432,7 +302779,7 @@ }, { "question": "MK2", - "icon": "./assets/data/nsi/logos/mk2-65cef4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mk2-65cef4.png", "osmTags": { "and": [ "amenity=cinema", @@ -302448,7 +302795,7 @@ }, { "question": "Movie Tavern", - "icon": "./assets/data/nsi/logos/movietavern-a7c63e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/movietavern-a7c63e.png", "osmTags": { "and": [ "amenity=cinema", @@ -302464,7 +302811,7 @@ }, { "question": "Moviecom", - "icon": "./assets/data/nsi/logos/moviecom-82f832.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moviecom-82f832.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302483,14 +302830,14 @@ "osmTags": { "and": [ "amenity=cinema", - "official_name=松竹マルチプレックスシアターズ", - "official_name:en=Shochiku Multiplex Theatres", - "official_name:ja=松竹マルチプレックスシアターズ", { "or": [ "brand=MOVIX", "brand:wikidata=Q11532184", - "name=MOVIX" + "name=MOVIX", + "official_name=松竹マルチプレックスシアターズ", + "official_name:en=Shochiku Multiplex Theatres", + "official_name:ja=松竹マルチプレックスシアターズ" ] } ] @@ -302498,7 +302845,7 @@ }, { "question": "MultiCine", - "icon": "./assets/data/nsi/logos/multicine-276738.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/multicine-276738.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302514,7 +302861,7 @@ }, { "question": "Multikino", - "icon": "./assets/data/nsi/logos/multikino-f97ba6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/multikino-f97ba6.png", "osmTags": { "and": [ "amenity=cinema", @@ -302531,7 +302878,7 @@ }, { "question": "Nu Metro Cinemas", - "icon": "./assets/data/nsi/logos/numetro-06ed22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/numetro-06ed22.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302547,7 +302894,7 @@ }, { "question": "Odeon", - "icon": "./assets/data/nsi/logos/odeon-031144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/odeon-031144.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302563,7 +302910,7 @@ }, { "question": "Omniplex Cinemas", - "icon": "./assets/data/nsi/logos/omniplex-668c40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omniplex-668c40.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302579,7 +302926,7 @@ }, { "question": "Palace Cinemas", - "icon": "./assets/data/nsi/logos/palacecinemas-1a8a27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palacecinemas-1a8a27.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302609,7 +302956,7 @@ }, { "question": "Pathé", - "icon": "./assets/data/nsi/logos/pathe-484389.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pathe-484389.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302625,7 +302972,7 @@ }, { "question": "Pathé Gaumont", - "icon": "./assets/data/nsi/logos/pathegaumont-22090e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pathegaumont-22090e.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302641,7 +302988,7 @@ }, { "question": "Picturehouse Cinemas", - "icon": "./assets/data/nsi/logos/picturehousecinemas-5b33a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/picturehousecinemas-5b33a1.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302656,7 +303003,7 @@ }, { "question": "PVR Cinemas", - "icon": "./assets/data/nsi/logos/pvrcinemas-41b2b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pvrcinemas-41b2b7.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302673,11 +303020,10 @@ }, { "question": "rạp chiếu phim CGV", - "icon": "./assets/data/nsi/logos/rapchieuphimcgv-360d00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rapchieuphimcgv-360d00.jpg", "osmTags": { "and": [ "amenity=cinema", - "official_name=CGV Cinemas Vietnam", { "or": [ "brand=rạp chiếu phim CGV", @@ -302686,7 +303032,8 @@ "brand:wikidata=Q5012261", "name=rạp chiếu phim CGV", "name:en=CGV Cinema", - "name:vi=rạp chiếu phim CGV" + "name:vi=rạp chiếu phim CGV", + "official_name=CGV Cinemas Vietnam" ] } ] @@ -302709,7 +303056,7 @@ }, { "question": "REEL Cinemas", - "icon": "./assets/data/nsi/logos/reelcinema-5b33a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reelcinema-5b33a1.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302725,7 +303072,7 @@ }, { "question": "Regal Cinemas", - "icon": "./assets/data/nsi/logos/regalcinemas-a7c63e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regalcinemas-a7c63e.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302742,7 +303089,7 @@ }, { "question": "Renoir", - "icon": "./assets/data/nsi/logos/renoir-408f25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renoir-408f25.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302758,7 +303105,7 @@ }, { "question": "Scott Cinemas", - "icon": "./assets/data/nsi/logos/scottcinemas-9af70b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scottcinemas-9af70b.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302774,7 +303121,7 @@ }, { "question": "Showcase Cinemas", - "icon": "./assets/data/nsi/logos/showcasecinemas-481888.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/showcasecinemas-481888.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302791,7 +303138,7 @@ }, { "question": "Ster-Kinekor", - "icon": "./assets/data/nsi/logos/sterkinekor-794bcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sterkinekor-794bcb.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302807,7 +303154,7 @@ }, { "question": "TGV Cinemas", - "icon": "./assets/data/nsi/logos/tgvcinemas-ee5a85.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tgvcinemas-ee5a85.png", "osmTags": { "and": [ "amenity=cinema", @@ -302824,7 +303171,7 @@ }, { "question": "The Space Cinema", - "icon": "./assets/data/nsi/logos/thespacecinema-2446c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thespacecinema-2446c8.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302840,7 +303187,7 @@ }, { "question": "TOHOシネマズ", - "icon": "./assets/data/nsi/logos/tohocinemas-35c174.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tohocinemas-35c174.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302861,7 +303208,7 @@ }, { "question": "UCI", - "icon": "./assets/data/nsi/logos/uci-9c82de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uci-9c82de.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302877,7 +303224,7 @@ }, { "question": "UCI Kinowelt", - "icon": "./assets/data/nsi/logos/ucikinowelt-00435d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucikinowelt-00435d.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302894,7 +303241,7 @@ }, { "question": "UGC", - "icon": "./assets/data/nsi/logos/ugc-259e3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ugc-259e3e.png", "osmTags": { "and": [ "amenity=cinema", @@ -302925,7 +303272,7 @@ }, { "question": "Village Cinemas", - "icon": "./assets/data/nsi/logos/villagecinemas-1a8a27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villagecinemas-1a8a27.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302941,7 +303288,7 @@ }, { "question": "Vue (Ireland/UK)", - "icon": "./assets/data/nsi/logos/vue-05c111.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vue-05c111.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302957,7 +303304,7 @@ }, { "question": "Vue (Nederland)", - "icon": "./assets/data/nsi/logos/vue-484389.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vue-484389.png", "osmTags": { "and": [ "amenity=cinema", @@ -302973,7 +303320,7 @@ }, { "question": "Wallis Cinemas", - "icon": "./assets/data/nsi/logos/walliscinemas-1a8a27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walliscinemas-1a8a27.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -302989,7 +303336,7 @@ }, { "question": "Yelmo", - "icon": "./assets/data/nsi/logos/yelmo-408f25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yelmo-408f25.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -303005,7 +303352,7 @@ }, { "question": "კავეა", - "icon": "./assets/data/nsi/logos/cavea-91a71a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cavea-91a71a.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -303027,7 +303374,7 @@ }, { "question": "イオンシネマ", - "icon": "./assets/data/nsi/logos/aeoncinema-35c174.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeoncinema-35c174.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -303047,7 +303394,7 @@ }, { "question": "ユナイテッド・シネマ", - "icon": "./assets/data/nsi/logos/unitedcinemas-35c174.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedcinemas-35c174.png", "osmTags": { "and": [ "amenity=cinema", @@ -303124,7 +303471,7 @@ }, { "question": "國賓影城", - "icon": "./assets/data/nsi/logos/ambassadortheatres-4205fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ambassadortheatres-4205fd.png", "osmTags": { "and": [ "amenity=cinema", @@ -303144,7 +303491,7 @@ }, { "question": "威秀影城", - "icon": "./assets/data/nsi/logos/vieshowcinemas-4205fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vieshowcinemas-4205fd.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -303164,7 +303511,7 @@ }, { "question": "新光影城", - "icon": "./assets/data/nsi/logos/shinkongcinemas-4205fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shinkongcinemas-4205fd.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -303184,7 +303531,7 @@ }, { "question": "洲立影藝 MCL Cinema", - "icon": "./assets/data/nsi/logos/mclcinema-74d7ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mclcinema-74d7ca.png", "osmTags": { "and": [ "amenity=cinema", @@ -303204,7 +303551,7 @@ }, { "question": "百老匯戲院 Broadway Circuit", - "icon": "./assets/data/nsi/logos/broadwaycircuit-03b75b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/broadwaycircuit-03b75b.png", "osmTags": { "and": [ "amenity=cinema", @@ -303224,7 +303571,7 @@ }, { "question": "百老汇影城", - "icon": "./assets/data/nsi/logos/broadwaycircuit-d2999b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/broadwaycircuit-d2999b.png", "osmTags": { "and": [ "amenity=cinema", @@ -303244,7 +303591,7 @@ }, { "question": "秀泰影城", - "icon": "./assets/data/nsi/logos/showtimecinemas-4205fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/showtimecinemas-4205fd.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -303283,7 +303630,7 @@ }, { "question": "英皇戲院 Emperor Cinemas", - "icon": "./assets/data/nsi/logos/emperorcinemas-03b75b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emperorcinemas-03b75b.jpg", "osmTags": { "and": [ "amenity=cinema", @@ -303303,7 +303650,7 @@ }, { "question": "Advocate Health Care", - "icon": "./assets/data/nsi/logos/advocatehealthcare-b56bf7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/advocatehealthcare-b56bf7.png", "osmTags": { "and": [ "amenity=clinic", @@ -303319,7 +303666,7 @@ }, { "question": "Agel", - "icon": "./assets/data/nsi/logos/agel-4f1f63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agel-4f1f63.png", "osmTags": { "and": [ "amenity=clinic", @@ -303335,7 +303682,7 @@ }, { "question": "Carbon Health", - "icon": "./assets/data/nsi/logos/carbonhealth-a594ec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carbonhealth-a594ec.png", "osmTags": { "and": [ "amenity=clinic", @@ -303354,7 +303701,7 @@ }, { "question": "GoHealth Urgent Care", - "icon": "./assets/data/nsi/logos/gohealthurgentcare-b3ff53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gohealthurgentcare-b3ff53.png", "osmTags": { "and": [ "amenity=clinic", @@ -303371,7 +303718,7 @@ }, { "question": "IQ Laser Vision", - "icon": "./assets/data/nsi/logos/iqlaservision-f10d23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iqlaservision-f10d23.png", "osmTags": { "and": [ "amenity=clinic", @@ -303389,6 +303736,7 @@ }, { "question": "KfH", + "icon": "https://data.mapcomplete.org/nsi//logos/kfh-5fb5d4.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -303405,7 +303753,7 @@ }, { "question": "LASIK MD", - "icon": "./assets/data/nsi/logos/lasikmd-a4b770.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lasikmd-a4b770.svg", "osmTags": { "and": [ "amenity=clinic", @@ -303423,7 +303771,7 @@ }, { "question": "LasikPlus", - "icon": "./assets/data/nsi/logos/lasikplus-b3ff53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lasikplus-b3ff53.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -303441,7 +303789,7 @@ }, { "question": "MD Now Urgent Care", - "icon": "./assets/data/nsi/logos/mdnowurgentcare-81c39b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mdnowurgentcare-81c39b.png", "osmTags": { "and": [ "amenity=clinic", @@ -303460,7 +303808,7 @@ }, { "question": "Northwestern Medicine", - "icon": "./assets/data/nsi/logos/northwesternmedicine-7453f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternmedicine-7453f3.png", "osmTags": { "and": [ "amenity=clinic", @@ -303476,7 +303824,7 @@ }, { "question": "NVISION Eye Centers", - "icon": "./assets/data/nsi/logos/nvision-b3ff53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nvision-b3ff53.png", "osmTags": { "and": [ "amenity=clinic", @@ -303511,7 +303859,7 @@ }, { "question": "Sentara Healthcare", - "icon": "./assets/data/nsi/logos/sentara-9e9fc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sentara-9e9fc2.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -303528,7 +303876,7 @@ }, { "question": "Sutter Surgery Center", - "icon": "./assets/data/nsi/logos/suttersurgerycenter-6bb225.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suttersurgerycenter-6bb225.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -303546,7 +303894,7 @@ }, { "question": "The Lasik Vision Institute", - "icon": "./assets/data/nsi/logos/thelasikvisioninstitute-b3ff53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thelasikvisioninstitute-b3ff53.png", "osmTags": { "and": [ "amenity=clinic", @@ -303564,7 +303912,7 @@ }, { "question": "TLC Laser Eye Centers", - "icon": "./assets/data/nsi/logos/tlclasereyecenters-b3ff53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tlclasereyecenters-b3ff53.png", "osmTags": { "and": [ "amenity=clinic", @@ -303582,7 +303930,7 @@ }, { "question": "Touchstone Imaging", - "icon": "./assets/data/nsi/logos/touchstoneimaging-50ed08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/touchstoneimaging-50ed08.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -303617,7 +303965,7 @@ }, { "question": "Vein Clinics of America", - "icon": "./assets/data/nsi/logos/veinclinicsofamerica-12a747.png", + "icon": "https://data.mapcomplete.org/nsi//logos/veinclinicsofamerica-12a747.png", "osmTags": { "and": [ "amenity=clinic", @@ -303633,7 +303981,7 @@ }, { "question": "Akademie Deutsche POP", - "icon": "./assets/data/nsi/logos/akademiedeutschepop-7c5a79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akademiedeutschepop-7c5a79.jpg", "osmTags": { "and": [ "amenity=college", @@ -303649,7 +303997,7 @@ }, { "question": "ComCave", - "icon": "./assets/data/nsi/logos/comcave-7c5a79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comcave-7c5a79.jpg", "osmTags": { "and": [ "amenity=college", @@ -303665,7 +304013,7 @@ }, { "question": "SAE Institute", - "icon": "./assets/data/nsi/logos/saeinstitute-7a11fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saeinstitute-7a11fb.png", "osmTags": { "and": [ "amenity=college", @@ -303681,7 +304029,7 @@ }, { "question": "Deutsches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/deutschesroteskreuz-b90b9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-b90b9c.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -303697,7 +304045,7 @@ }, { "question": "Pilares", - "icon": "./assets/data/nsi/logos/pilares-75e088.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pilares-75e088.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -303712,16 +304060,16 @@ }, { "question": "The Royal British Legion", - "icon": "./assets/data/nsi/logos/britishlegion-805bd2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/britishlegion-805bd2.png", "osmTags": { "and": [ "amenity=community_centre", - "official_name=The Royal British Legion", { "or": [ "brand=The Royal British Legion", "brand:wikidata=Q1621811", - "name=British Legion" + "name=British Legion", + "official_name=The Royal British Legion" ] } ] @@ -303729,7 +304077,7 @@ }, { "question": "etc.venues", - "icon": "./assets/data/nsi/logos/etcvenues-e6785d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etcvenues-e6785d.jpg", "osmTags": { "and": [ "amenity=conference_centre", @@ -303745,7 +304093,7 @@ }, { "question": "Altima Dental", - "icon": "./assets/data/nsi/logos/altimadental-4d0a29.png", + "icon": "https://data.mapcomplete.org/nsi//logos/altimadental-4d0a29.png", "osmTags": { "and": [ "amenity=dentist", @@ -303762,7 +304110,7 @@ }, { "question": "Aspen Dental", - "icon": "./assets/data/nsi/logos/aspendental-708bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aspendental-708bdc.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -303779,7 +304127,7 @@ }, { "question": "Bright Now! Dental", - "icon": "./assets/data/nsi/logos/brightnowdental-708bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightnowdental-708bdc.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -303796,7 +304144,7 @@ }, { "question": "Bupa Dental Care", - "icon": "./assets/data/nsi/logos/bupadentalcare-475ab9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bupadentalcare-475ab9.png", "osmTags": { "and": [ "amenity=dentist", @@ -303813,7 +304161,7 @@ }, { "question": "Castle Dental", - "icon": "./assets/data/nsi/logos/castledental-708bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/castledental-708bdc.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -303830,7 +304178,7 @@ }, { "question": "Comfort Dental", - "icon": "./assets/data/nsi/logos/comfortdental-708bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comfortdental-708bdc.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -303847,7 +304195,7 @@ }, { "question": "Damira Dental Studios", - "icon": "./assets/data/nsi/logos/damiradentalstudios-475ab9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/damiradentalstudios-475ab9.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -303895,7 +304243,7 @@ }, { "question": "Dentix", - "icon": "./assets/data/nsi/logos/dentix-1194d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dentix-1194d5.png", "osmTags": { "and": [ "amenity=dentist", @@ -303912,7 +304260,7 @@ }, { "question": "Distriktstandvården", - "icon": "./assets/data/nsi/logos/distriktstandvarden-a3d4a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/distriktstandvarden-a3d4a5.png", "osmTags": { "and": [ "amenity=dentist", @@ -303961,7 +304309,7 @@ }, { "question": "Kool Smiles", - "icon": "./assets/data/nsi/logos/koolsmiles-708bdc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/koolsmiles-708bdc.png", "osmTags": { "and": [ "amenity=dentist", @@ -303978,7 +304326,7 @@ }, { "question": "MEINDENTIST", - "icon": "./assets/data/nsi/logos/meindentist-d9b135.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meindentist-d9b135.png", "osmTags": { "and": [ "amenity=dentist", @@ -303995,7 +304343,7 @@ }, { "question": "Merit Dental", - "icon": "./assets/data/nsi/logos/meritdental-708bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meritdental-708bdc.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -304012,7 +304360,7 @@ }, { "question": "Midwest Dental", - "icon": "./assets/data/nsi/logos/midwestdental-708bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midwestdental-708bdc.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -304029,7 +304377,7 @@ }, { "question": "Monarch Dental", - "icon": "./assets/data/nsi/logos/monarchdental-708bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monarchdental-708bdc.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -304046,7 +304394,7 @@ }, { "question": "Mondovi Dental", - "icon": "./assets/data/nsi/logos/mondovidental-708bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mondovidental-708bdc.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -304079,7 +304427,7 @@ }, { "question": "mydentist (UK)", - "icon": "./assets/data/nsi/logos/mydentist-475ab9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mydentist-475ab9.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -304112,7 +304460,7 @@ }, { "question": "Vitaldent", - "icon": "./assets/data/nsi/logos/vitaldent-23a76b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitaldent-23a76b.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -304144,7 +304492,7 @@ }, { "question": "Western Dental", - "icon": "./assets/data/nsi/logos/westerndental-e883ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westerndental-e883ee.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -304162,7 +304510,7 @@ }, { "question": "Western Dental Kids", - "icon": "./assets/data/nsi/logos/westerndentalkids-2924e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westerndentalkids-2924e1.jpg", "osmTags": { "and": [ "amenity=dentist", @@ -304180,7 +304528,7 @@ }, { "question": "White Essence", - "icon": "./assets/data/nsi/logos/whiteessence-287a03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/whiteessence-287a03.png", "osmTags": { "and": [ "amenity=dentist", @@ -304201,7 +304549,7 @@ }, { "question": "Willamette Dental Group", - "icon": "./assets/data/nsi/logos/willamettedentalgroup-cbc6dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/willamettedentalgroup-cbc6dc.png", "osmTags": { "and": [ "amenity=dentist", @@ -304249,7 +304597,7 @@ }, { "question": "MinuteClinic", - "icon": "./assets/data/nsi/logos/minuteclinic-e57666.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minuteclinic-e57666.png", "osmTags": { "and": [ "amenity=doctors", @@ -304267,7 +304615,7 @@ }, { "question": "Point Vision", - "icon": "./assets/data/nsi/logos/pointvision-0fcd2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pointvision-0fcd2d.png", "osmTags": { "and": [ "amenity=doctors", @@ -304285,7 +304633,7 @@ }, { "question": "RediClinic", - "icon": "./assets/data/nsi/logos/rediclinic-e57666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rediclinic-e57666.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -304303,7 +304651,7 @@ }, { "question": "Sentara Healthcare", - "icon": "./assets/data/nsi/logos/sentara-b1bdb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sentara-b1bdb7.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -304320,7 +304668,7 @@ }, { "question": "Sutter Walk-In Care", - "icon": "./assets/data/nsi/logos/sutterwalkincare-b04fc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sutterwalkincare-b04fc4.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -304355,7 +304703,7 @@ }, { "question": "Walgreens Healthcare Clinic", - "icon": "./assets/data/nsi/logos/walgreenshealthcareclinic-e57666.png", + "icon": "https://data.mapcomplete.org/nsi//logos/walgreenshealthcareclinic-e57666.png", "osmTags": { "and": [ "amenity=doctors", @@ -304373,7 +304721,7 @@ }, { "question": "École de Conduite Française", - "icon": "./assets/data/nsi/logos/ecf-7fb17b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ecf-7fb17b.png", "osmTags": { "and": [ "amenity=driving_school", @@ -304403,7 +304751,7 @@ }, { "question": "Pointcode", - "icon": "./assets/data/nsi/logos/pointcode-50cd0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pointcode-50cd0e.jpg", "osmTags": { "and": [ "amenity=driving_school", @@ -304419,7 +304767,7 @@ }, { "question": "Young Drivers of Canada", - "icon": "./assets/data/nsi/logos/youngdriversofcanada-b5a395.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/youngdriversofcanada-b5a395.jpg", "osmTags": { "and": [ "amenity=driving_school", @@ -304435,7 +304783,7 @@ }, { "question": "&pizza", - "icon": "./assets/data/nsi/logos/andpizza-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andpizza-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304453,7 +304801,7 @@ }, { "question": "241 Pizza", - "icon": "./assets/data/nsi/logos/241pizza-e49d2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/241pizza-e49d2e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -304471,7 +304819,7 @@ }, { "question": "4Fingers Crispy Chicken", - "icon": "./assets/data/nsi/logos/4fingerscrispychicken-aadea7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/4fingerscrispychicken-aadea7.png", "osmTags": { "and": [ "amenity=fast_food", @@ -304510,7 +304858,7 @@ }, { "question": "A&W (Canada)", - "icon": "./assets/data/nsi/logos/aandw-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aandw-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304545,7 +304893,7 @@ }, { "question": "A&W (USA)", - "icon": "./assets/data/nsi/logos/aandw-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aandw-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304580,7 +304928,7 @@ }, { "question": "Açaí Concept", - "icon": "./assets/data/nsi/logos/acaiconcept-989340.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acaiconcept-989340.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304631,7 +304979,7 @@ }, { "question": "Aladin Foods", - "icon": "./assets/data/nsi/logos/aladinfoods-1fab0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aladinfoods-1fab0a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304666,7 +305014,7 @@ }, { "question": "Alice", - "icon": "./assets/data/nsi/logos/alice-8391d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alice-8391d7.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304684,7 +305032,7 @@ }, { "question": "Aloha Pokē Co", - "icon": "./assets/data/nsi/logos/alohapokeco-6b3f2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alohapokeco-6b3f2b.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304702,7 +305050,7 @@ }, { "question": "Amato's", - "icon": "./assets/data/nsi/logos/amatos-862b87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amatos-862b87.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304720,7 +305068,7 @@ }, { "question": "American Deli", - "icon": "./assets/data/nsi/logos/americandeli-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americandeli-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -304738,7 +305086,7 @@ }, { "question": "Andok's", - "icon": "./assets/data/nsi/logos/andoks-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andoks-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304756,7 +305104,7 @@ }, { "question": "Angel's Burger", - "icon": "./assets/data/nsi/logos/angelsburger-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/angelsburger-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304774,7 +305122,7 @@ }, { "question": "AnyTyme", - "icon": "./assets/data/nsi/logos/anytyme-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anytyme-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304792,7 +305140,7 @@ }, { "question": "Apache Pizza", - "icon": "./assets/data/nsi/logos/apachepizza-1b23ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apachepizza-1b23ec.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304810,7 +305158,7 @@ }, { "question": "Arby's", - "icon": "./assets/data/nsi/logos/arbys-3c08fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arbys-3c08fb.png", "osmTags": { "and": [ "amenity=fast_food", @@ -304828,7 +305176,7 @@ }, { "question": "Arctic Circle", - "icon": "./assets/data/nsi/logos/arcticcircle-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arcticcircle-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304846,7 +305194,7 @@ }, { "question": "Asiahung", - "icon": "./assets/data/nsi/logos/asiahung-6ea233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asiahung-6ea233.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304864,7 +305212,7 @@ }, { "question": "Au Bon Pain", - "icon": "./assets/data/nsi/logos/aubonpain-9652cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aubonpain-9652cd.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304882,7 +305230,7 @@ }, { "question": "Auntie Anne's", - "icon": "./assets/data/nsi/logos/auntieannes-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/auntieannes-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304900,7 +305248,7 @@ }, { "question": "B-Bop's", - "icon": "./assets/data/nsi/logos/bbops-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bbops-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -304918,7 +305266,7 @@ }, { "question": "Back Yard Burgers", - "icon": "./assets/data/nsi/logos/backyardburgers-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backyardburgers-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304936,7 +305284,7 @@ }, { "question": "Bafang Dumpling", - "icon": "./assets/data/nsi/logos/bafangdumpling-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bafangdumpling-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304954,7 +305302,7 @@ }, { "question": "Bafra Kebab", - "icon": "./assets/data/nsi/logos/bafrakebab-3eab78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bafrakebab-3eab78.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304972,7 +305320,7 @@ }, { "question": "Bagel Corner", - "icon": "./assets/data/nsi/logos/bagelcorner-11ef38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bagelcorner-11ef38.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -304990,7 +305338,7 @@ }, { "question": "Bageterie Boulevard", - "icon": "./assets/data/nsi/logos/bageterieboulevard-57c7d8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bageterieboulevard-57c7d8.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305008,7 +305356,7 @@ }, { "question": "Baguette & Baguette", - "icon": "./assets/data/nsi/logos/baguetteandbaguette-8d41ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baguetteandbaguette-8d41ca.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305026,18 +305374,18 @@ }, { "question": "Baja Fresh", - "icon": "./assets/data/nsi/logos/bajafresh-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bajafresh-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Baja Fresh Mexican Grill", "takeaway=yes", { "or": [ "brand=Baja Fresh", "brand:wikidata=Q2880019", - "name=Baja Fresh" + "name=Baja Fresh", + "official_name=Baja Fresh Mexican Grill" ] } ] @@ -305045,7 +305393,7 @@ }, { "question": "Baliwag", - "icon": "./assets/data/nsi/logos/baliwag-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baliwag-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305063,7 +305411,7 @@ }, { "question": "Barberitos", - "icon": "./assets/data/nsi/logos/barberitos-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barberitos-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305081,7 +305429,7 @@ }, { "question": "BarBurrito (Canada)", - "icon": "./assets/data/nsi/logos/barburrito-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barburrito-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305099,7 +305447,7 @@ }, { "question": "Barburrito (UK)", - "icon": "./assets/data/nsi/logos/barburrito-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barburrito-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305117,7 +305465,7 @@ }, { "question": "Basil Box", - "icon": "./assets/data/nsi/logos/basilbox-72d462.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/basilbox-72d462.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305135,7 +305483,7 @@ }, { "question": "Baydöner", - "icon": "./assets/data/nsi/logos/baydoner-8ef00c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baydoner-8ef00c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305171,7 +305519,7 @@ }, { "question": "Bembos", - "icon": "./assets/data/nsi/logos/bembos-654705.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bembos-654705.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305189,7 +305537,7 @@ }, { "question": "Bento", - "icon": "./assets/data/nsi/logos/bento-44927b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bento-44927b.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305207,7 +305555,7 @@ }, { "question": "Berlin Döner Kebap", - "icon": "./assets/data/nsi/logos/berlindonerkebap-3eab78.png", + "icon": "https://data.mapcomplete.org/nsi//logos/berlindonerkebap-3eab78.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305225,7 +305573,7 @@ }, { "question": "Betty's Burgers", - "icon": "./assets/data/nsi/logos/bettysburgers-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bettysburgers-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305243,7 +305591,7 @@ }, { "question": "Big Apple Bagels", - "icon": "./assets/data/nsi/logos/bigapplebagels-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigapplebagels-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305261,7 +305609,7 @@ }, { "question": "Big Bite", - "icon": "./assets/data/nsi/logos/bigbite-86f814.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bigbite-86f814.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305278,7 +305626,7 @@ }, { "question": "Big Fernand", - "icon": "./assets/data/nsi/logos/bigfernand-8ddd61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigfernand-8ddd61.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305296,7 +305644,7 @@ }, { "question": "Billy Tacos", - "icon": "./assets/data/nsi/logos/billytacos-b4e8f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/billytacos-b4e8f3.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305314,7 +305662,7 @@ }, { "question": "Biscuitville", - "icon": "./assets/data/nsi/logos/biscuitville-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biscuitville-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305332,7 +305680,7 @@ }, { "question": "Blackjack Pizza", - "icon": "./assets/data/nsi/logos/blackjackpizza-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/blackjackpizza-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305350,7 +305698,7 @@ }, { "question": "Blake's Lotaburger", - "icon": "./assets/data/nsi/logos/blakeslotaburger-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/blakeslotaburger-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305368,7 +305716,7 @@ }, { "question": "Blimpie", - "icon": "./assets/data/nsi/logos/blimpie-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blimpie-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305386,7 +305734,7 @@ }, { "question": "Blue Star Donuts", - "icon": "./assets/data/nsi/logos/bluestardonuts-1e4066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluestardonuts-1e4066.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305404,7 +305752,7 @@ }, { "question": "BMS Българска кухня", - "icon": "./assets/data/nsi/logos/e1f395-1fab0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/e1f395-1fab0a.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305422,7 +305770,7 @@ }, { "question": "Board & Brew", - "icon": "./assets/data/nsi/logos/boardandbrew-2b51a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boardandbrew-2b51a7.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305440,7 +305788,7 @@ }, { "question": "Bob's", - "icon": "./assets/data/nsi/logos/bobs-02d9fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobs-02d9fb.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305458,7 +305806,7 @@ }, { "question": "Bobablastic", - "icon": "./assets/data/nsi/logos/bobablastic-c26124.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobablastic-c26124.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305476,18 +305824,18 @@ }, { "question": "Bojangles'", - "icon": "./assets/data/nsi/logos/bojangles-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bojangles-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=chicken", - "official_name=Bojangles' Famous Chicken 'n Biscuits", "takeaway=yes", { "or": [ "brand=Bojangles'", "brand:wikidata=Q891163", - "name=Bojangles'" + "name=Bojangles'", + "official_name=Bojangles' Famous Chicken 'n Biscuits" ] } ] @@ -305495,7 +305843,7 @@ }, { "question": "Boojum", - "icon": "./assets/data/nsi/logos/boojum-1b23ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boojum-1b23ec.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305513,7 +305861,7 @@ }, { "question": "Booster Juice", - "icon": "./assets/data/nsi/logos/boosterjuice-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boosterjuice-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305531,7 +305879,7 @@ }, { "question": "Boston Market", - "icon": "./assets/data/nsi/logos/bostonmarket-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bostonmarket-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305566,7 +305914,7 @@ }, { "question": "Bram Ladage", - "icon": "./assets/data/nsi/logos/bramladage-60a83c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bramladage-60a83c.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305584,7 +305932,7 @@ }, { "question": "Braum's", - "icon": "./assets/data/nsi/logos/braums-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/braums-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305603,7 +305951,7 @@ }, { "question": "Brezelkönig", - "icon": "./assets/data/nsi/logos/brezelkonig-157c6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brezelkonig-157c6b.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305621,7 +305969,7 @@ }, { "question": "Bronson's Burgers", - "icon": "./assets/data/nsi/logos/bronsonsburgers-8bf212.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bronsonsburgers-8bf212.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305659,7 +306007,7 @@ }, { "question": "Bruegger's Bagels", - "icon": "./assets/data/nsi/logos/brueggersbagels-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brueggersbagels-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305678,7 +306026,7 @@ }, { "question": "Brut Butcher", - "icon": "./assets/data/nsi/logos/brutbutcher-11ef38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brutbutcher-11ef38.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305696,7 +306044,7 @@ }, { "question": "Bubbakoo's Burritos", - "icon": "./assets/data/nsi/logos/bubbakoosburritos-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bubbakoosburritos-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305714,7 +306062,7 @@ }, { "question": "Bufkes", - "icon": "./assets/data/nsi/logos/bufkes-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bufkes-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305732,7 +306080,7 @@ }, { "question": "Buona", - "icon": "./assets/data/nsi/logos/buona-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buona-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305750,7 +306098,7 @@ }, { "question": "Burger King", - "icon": "./assets/data/nsi/logos/burgerking-6ff656.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-6ff656.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305768,7 +306116,7 @@ }, { "question": "Burger Machine", - "icon": "./assets/data/nsi/logos/burgermachine-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgermachine-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305803,7 +306151,7 @@ }, { "question": "Burger Urge", - "icon": "./assets/data/nsi/logos/burgerurge-d43c69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerurge-d43c69.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305840,7 +306188,7 @@ }, { "question": "BurgerFi", - "icon": "./assets/data/nsi/logos/burgerfi-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerfi-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305858,7 +306206,7 @@ }, { "question": "BurgerFuel", - "icon": "./assets/data/nsi/logos/burgerfuel-ba88db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerfuel-ba88db.png", "osmTags": { "and": [ "amenity=fast_food", @@ -305876,7 +306224,7 @@ }, { "question": "Burgerim (Israel)", - "icon": "./assets/data/nsi/logos/burgerim-dbdcb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerim-dbdcb8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305898,7 +306246,7 @@ }, { "question": "BurgerIM (USA)", - "icon": "./assets/data/nsi/logos/burgerim-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerim-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305916,7 +306264,7 @@ }, { "question": "burgerme", - "icon": "./assets/data/nsi/logos/burgerme-29392a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerme-29392a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305935,7 +306283,7 @@ }, { "question": "Burgermeister", - "icon": "./assets/data/nsi/logos/burgermeister-6ea233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgermeister-6ea233.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305953,7 +306301,7 @@ }, { "question": "Burgers Bar", - "icon": "./assets/data/nsi/logos/burgersbar-dbdcb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgersbar-dbdcb8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -305976,7 +306324,7 @@ }, { "question": "Burgerville", - "icon": "./assets/data/nsi/logos/burgerville-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerville-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306011,7 +306359,7 @@ }, { "question": "Burrito Company", - "icon": "./assets/data/nsi/logos/burritocompany-6ea233.png", + "icon": "https://data.mapcomplete.org/nsi//logos/burritocompany-6ea233.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306029,7 +306377,7 @@ }, { "question": "Bush's Chicken", - "icon": "./assets/data/nsi/logos/bushschicken-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bushschicken-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306064,7 +306412,7 @@ }, { "question": "Café Yumm!", - "icon": "./assets/data/nsi/logos/cafeyumm-647c80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cafeyumm-647c80.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306082,7 +306430,7 @@ }, { "question": "Café Zupas", - "icon": "./assets/data/nsi/logos/cafezupas-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafezupas-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306100,7 +306448,7 @@ }, { "question": "California Fish Grill", - "icon": "./assets/data/nsi/logos/californiafishgrill-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/californiafishgrill-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306118,7 +306466,7 @@ }, { "question": "California Sandwiches", - "icon": "./assets/data/nsi/logos/californiasandwiches-72d462.png", + "icon": "https://data.mapcomplete.org/nsi//logos/californiasandwiches-72d462.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306136,7 +306484,7 @@ }, { "question": "Call a Pizza", - "icon": "./assets/data/nsi/logos/callapizza-6ea233.png", + "icon": "https://data.mapcomplete.org/nsi//logos/callapizza-6ea233.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306154,7 +306502,7 @@ }, { "question": "Caprinos Pizza", - "icon": "./assets/data/nsi/logos/caprinospizza-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caprinospizza-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306172,7 +306520,7 @@ }, { "question": "Capriotti's", - "icon": "./assets/data/nsi/logos/capriottis-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/capriottis-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306190,18 +306538,18 @@ }, { "question": "Captain D's", - "icon": "./assets/data/nsi/logos/captainds-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/captainds-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", "cuisine=seafood", - "official_name=Captain D's Seafood Kitchen", "takeaway=yes", { "or": [ "brand=Captain D's", "brand:wikidata=Q5036616", - "name=Captain D's" + "name=Captain D's", + "official_name=Captain D's Seafood Kitchen" ] } ] @@ -306209,7 +306557,7 @@ }, { "question": "Carl's Jr.", - "icon": "./assets/data/nsi/logos/carlsjr-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carlsjr-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306227,7 +306575,7 @@ }, { "question": "Chamas Tacos", - "icon": "./assets/data/nsi/logos/chamastacos-11ef38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chamastacos-11ef38.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306245,7 +306593,7 @@ }, { "question": "Champs Chicken", - "icon": "./assets/data/nsi/logos/champschicken-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/champschicken-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306263,7 +306611,7 @@ }, { "question": "Charleys Philly Steaks", - "icon": "./assets/data/nsi/logos/charleysphillysteaks-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/charleysphillysteaks-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306281,7 +306629,7 @@ }, { "question": "Checkers", - "icon": "./assets/data/nsi/logos/checkers-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/checkers-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306299,7 +306647,7 @@ }, { "question": "Cheezzy pizza", - "icon": "./assets/data/nsi/logos/cheezzypizza-0ae65d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cheezzypizza-0ae65d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306318,7 +306666,7 @@ }, { "question": "Chefette", - "icon": "./assets/data/nsi/logos/chefette-40578b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chefette-40578b.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306336,7 +306684,7 @@ }, { "question": "Chester's", - "icon": "./assets/data/nsi/logos/chesters-e5e868.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chesters-e5e868.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306354,7 +306702,7 @@ }, { "question": "Chez Ashton", - "icon": "./assets/data/nsi/logos/chezashton-e49d2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chezashton-e49d2e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306389,7 +306737,7 @@ }, { "question": "Chick-fil-A", - "icon": "./assets/data/nsi/logos/chickfila-437ecc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chickfila-437ecc.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306407,7 +306755,7 @@ }, { "question": "Chicken Cottage", - "icon": "./assets/data/nsi/logos/chickencottage-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chickencottage-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306425,7 +306773,7 @@ }, { "question": "Chicken Express", - "icon": "./assets/data/nsi/logos/chickenexpress-aef212.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chickenexpress-aef212.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306460,7 +306808,7 @@ }, { "question": "Chicken Republic", - "icon": "./assets/data/nsi/logos/chickenrepublic-3eb11d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chickenrepublic-3eb11d.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306478,7 +306826,7 @@ }, { "question": "Chicken Salad Chick", - "icon": "./assets/data/nsi/logos/chickensaladchick-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chickensaladchick-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306496,7 +306844,7 @@ }, { "question": "Chicken Shop", - "icon": "./assets/data/nsi/logos/chickenshop-8bf212.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chickenshop-8bf212.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306531,7 +306879,7 @@ }, { "question": "Chicken Street", - "icon": "./assets/data/nsi/logos/chickenstreet-f60ed0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chickenstreet-f60ed0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306550,7 +306898,7 @@ }, { "question": "Chicken Treat", - "icon": "./assets/data/nsi/logos/chickentreat-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chickentreat-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306568,7 +306916,7 @@ }, { "question": "Chigo x Flip", - "icon": "./assets/data/nsi/logos/chigoxflip-034122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chigoxflip-034122.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306587,7 +306935,7 @@ }, { "question": "Chilango", - "icon": "./assets/data/nsi/logos/chilango-1abd07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chilango-1abd07.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306605,7 +306953,7 @@ }, { "question": "China in Box", - "icon": "./assets/data/nsi/logos/chinainbox-ffb863.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinainbox-ffb863.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306623,7 +306971,7 @@ }, { "question": "China Wok", - "icon": "./assets/data/nsi/logos/chinawok-76be89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinawok-76be89.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306641,18 +306989,18 @@ }, { "question": "Chipotle", - "icon": "./assets/data/nsi/logos/chipotle-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chipotle-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Chipotle Mexican Grill", "takeaway=yes", { "or": [ "brand=Chipotle", "brand:wikidata=Q465751", - "name=Chipotle" + "name=Chipotle", + "official_name=Chipotle Mexican Grill" ] } ] @@ -306660,7 +307008,7 @@ }, { "question": "Chooks to Go", - "icon": "./assets/data/nsi/logos/chookstogo-33d36e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chookstogo-33d36e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306678,7 +307026,7 @@ }, { "question": "ChopChop", - "icon": "./assets/data/nsi/logos/chopchop-72e24f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chopchop-72e24f.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306696,7 +307044,7 @@ }, { "question": "Chopstix", - "icon": "./assets/data/nsi/logos/chopstix-2dcf5d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chopstix-2dcf5d.png", "osmTags": { "and": [ "amenity=fast_food", @@ -306714,7 +307062,7 @@ }, { "question": "Chopt", - "icon": "./assets/data/nsi/logos/chopt-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chopt-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306732,7 +307080,7 @@ }, { "question": "Chowking", - "icon": "./assets/data/nsi/logos/chowking-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chowking-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306771,7 +307119,7 @@ }, { "question": "Church's Chicken", - "icon": "./assets/data/nsi/logos/churchschicken-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/churchschicken-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306789,7 +307137,7 @@ }, { "question": "Çiğköftem", - "icon": "./assets/data/nsi/logos/cigkoftem-7c8ccc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cigkoftem-7c8ccc.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306809,7 +307157,7 @@ }, { "question": "Cinnabon", - "icon": "./assets/data/nsi/logos/cinnabon-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cinnabon-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306827,7 +307175,7 @@ }, { "question": "Class'croute", - "icon": "./assets/data/nsi/logos/classcroute-77e135.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/classcroute-77e135.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306845,7 +307193,7 @@ }, { "question": "Clean Juice", - "icon": "./assets/data/nsi/logos/cleanjuice-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleanjuice-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306880,7 +307228,7 @@ }, { "question": "Coco di Mama", - "icon": "./assets/data/nsi/logos/cocodimama-1abd07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocodimama-1abd07.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306919,7 +307267,7 @@ }, { "question": "Cojean", - "icon": "./assets/data/nsi/logos/cojean-11ef38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cojean-11ef38.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306937,7 +307285,7 @@ }, { "question": "Cook Door", - "icon": "./assets/data/nsi/logos/cookdoor-5f7df6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cookdoor-5f7df6.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306955,7 +307303,7 @@ }, { "question": "Cook Out", - "icon": "./assets/data/nsi/logos/cookout-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cookout-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306973,7 +307321,7 @@ }, { "question": "Così", - "icon": "./assets/data/nsi/logos/cosi-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosi-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -306991,18 +307339,18 @@ }, { "question": "Costa Vida", - "icon": "./assets/data/nsi/logos/costavida-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/costavida-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Costa Vida Fresh Mexican Grill", "takeaway=yes", { "or": [ "brand=Costa Vida", "brand:wikidata=Q108403192", - "name=Costa Vida" + "name=Costa Vida", + "official_name=Costa Vida Fresh Mexican Grill" ] } ] @@ -307010,7 +307358,7 @@ }, { "question": "Costco Food Court", - "icon": "./assets/data/nsi/logos/costcofoodcourt-2909a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcofoodcourt-2909a2.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -307028,7 +307376,7 @@ }, { "question": "Côté Sushi", - "icon": "./assets/data/nsi/logos/cotesushi-11ef38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cotesushi-11ef38.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307046,7 +307394,7 @@ }, { "question": "Cousins Subs", - "icon": "./assets/data/nsi/logos/cousinssubs-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cousinssubs-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307064,7 +307412,7 @@ }, { "question": "Crosstown", - "icon": "./assets/data/nsi/logos/crosstown-1abd07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crosstown-1abd07.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307083,18 +307431,18 @@ }, { "question": "Crust", - "icon": "./assets/data/nsi/logos/crust-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crust-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=pizza", - "official_name=Crust Gourmet Pizza Bar", "takeaway=yes", { "or": [ "brand=Crust", "brand:wikidata=Q100792715", - "name=Crust" + "name=Crust", + "official_name=Crust Gourmet Pizza Bar" ] } ] @@ -307102,7 +307450,7 @@ }, { "question": "Cultures", - "icon": "./assets/data/nsi/logos/cultures-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cultures-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307120,7 +307468,7 @@ }, { "question": "Culver's", - "icon": "./assets/data/nsi/logos/culvers-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/culvers-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307138,7 +307486,7 @@ }, { "question": "D'Angelo Grilled Sandwiches", - "icon": "./assets/data/nsi/logos/dangelogrilledsandwiches-ea8dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dangelogrilledsandwiches-ea8dd1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307156,7 +307504,7 @@ }, { "question": "Dairy Queen", - "icon": "./assets/data/nsi/logos/dairyqueen-9b2018.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dairyqueen-9b2018.png", "osmTags": { "and": [ "amenity=fast_food", @@ -307191,7 +307539,7 @@ }, { "question": "Daniel's Donuts", - "icon": "./assets/data/nsi/logos/danielsdonuts-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/danielsdonuts-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307209,7 +307557,7 @@ }, { "question": "Dave's Hot Chicken", - "icon": "./assets/data/nsi/logos/daveshotchicken-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daveshotchicken-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307227,7 +307575,7 @@ }, { "question": "Daylight Donuts", - "icon": "./assets/data/nsi/logos/daylightdonuts-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daylightdonuts-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307245,7 +307593,7 @@ }, { "question": "dean&david", - "icon": "./assets/data/nsi/logos/deananddavid-f9c825.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deananddavid-f9c825.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307263,7 +307611,7 @@ }, { "question": "Debonairs Pizza", - "icon": "./assets/data/nsi/logos/debonairspizza-10dad6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/debonairspizza-10dad6.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307281,7 +307629,7 @@ }, { "question": "Del Taco", - "icon": "./assets/data/nsi/logos/deltaco-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deltaco-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307299,7 +307647,7 @@ }, { "question": "Deliway", - "icon": "./assets/data/nsi/logos/deliway-68a7b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deliway-68a7b8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307317,7 +307665,7 @@ }, { "question": "Dig", - "icon": "./assets/data/nsi/logos/dig-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dig-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307352,7 +307700,7 @@ }, { "question": "District Taco", - "icon": "./assets/data/nsi/logos/districttaco-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/districttaco-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307404,7 +307752,7 @@ }, { "question": "Dog Haus", - "icon": "./assets/data/nsi/logos/doghaus-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doghaus-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307422,7 +307770,7 @@ }, { "question": "Domino's", - "icon": "./assets/data/nsi/logos/dominos-609f2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dominos-609f2a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307456,7 +307804,7 @@ }, { "question": "Don.C", - "icon": "./assets/data/nsi/logos/donc-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donc-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307474,7 +307822,7 @@ }, { "question": "Döner Маркет", - "icon": "./assets/data/nsi/logos/b373c6-50e0ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/b373c6-50e0ae.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307492,7 +307840,7 @@ }, { "question": "Donut King", - "icon": "./assets/data/nsi/logos/donutking-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donutking-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307510,7 +307858,7 @@ }, { "question": "Doughnut Time", - "icon": "./assets/data/nsi/logos/doughnuttime-1abd07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doughnuttime-1abd07.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307528,7 +307876,7 @@ }, { "question": "DQ Grill & Chill", - "icon": "./assets/data/nsi/logos/dqgrillandchill-d2abf0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dqgrillandchill-d2abf0.png", "osmTags": { "and": [ "amenity=fast_food", @@ -307563,7 +307911,7 @@ }, { "question": "Duck Donuts", - "icon": "./assets/data/nsi/logos/duckdonuts-6333a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duckdonuts-6333a9.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307581,7 +307929,7 @@ }, { "question": "Dunkin'", - "icon": "./assets/data/nsi/logos/dunkin-e46fb5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunkin-e46fb5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307600,7 +307948,7 @@ }, { "question": "Dunkin' Coffee", - "icon": "./assets/data/nsi/logos/dunkincoffee-34e6e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunkincoffee-34e6e8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307618,7 +307966,7 @@ }, { "question": "DUNKIN唐恩都乐'", - "icon": "./assets/data/nsi/logos/dunkindonuts-65b4e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunkindonuts-65b4e8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307640,7 +307988,7 @@ }, { "question": "East of Chicago Pizza", - "icon": "./assets/data/nsi/logos/eastofchicagopizza-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastofchicagopizza-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307658,7 +308006,7 @@ }, { "question": "Eazie", - "icon": "./assets/data/nsi/logos/eazie-60a83c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eazie-60a83c.png", "osmTags": { "and": [ "amenity=fast_food", @@ -307693,7 +308041,7 @@ }, { "question": "Eddys Pizza", - "icon": "./assets/data/nsi/logos/eddyspizza-0ae65d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eddyspizza-0ae65d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307729,7 +308077,7 @@ }, { "question": "Eegee's", - "icon": "./assets/data/nsi/logos/eegees-22d252.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eegees-22d252.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307747,7 +308095,7 @@ }, { "question": "Eggslut", - "icon": "./assets/data/nsi/logos/eggslut-26c4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eggslut-26c4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307765,7 +308113,7 @@ }, { "question": "Einstein Bros. Bagels", - "icon": "./assets/data/nsi/logos/einsteinbrosbagels-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/einsteinbrosbagels-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -307784,18 +308132,18 @@ }, { "question": "El Corral", - "icon": "./assets/data/nsi/logos/elcorral-9bc101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elcorral-9bc101.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=Hamburguesas El Corral", "takeaway=yes", { "or": [ "brand=El Corral", "brand:wikidata=Q4703422", - "name=El Corral" + "name=El Corral", + "official_name=Hamburguesas El Corral" ] } ] @@ -307803,7 +308151,7 @@ }, { "question": "El Pollo Loco", - "icon": "./assets/data/nsi/logos/elpolloloco-bca76b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elpolloloco-bca76b.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307821,7 +308169,7 @@ }, { "question": "El Rinconsito", - "icon": "./assets/data/nsi/logos/elrinconsito-7f5bd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elrinconsito-7f5bd1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307839,7 +308187,7 @@ }, { "question": "Elevation Burger", - "icon": "./assets/data/nsi/logos/elevationburger-203491.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elevationburger-203491.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307857,7 +308205,7 @@ }, { "question": "Epic Wings N' Things", - "icon": "./assets/data/nsi/logos/epicwingsnthings-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epicwingsnthings-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307875,18 +308223,18 @@ }, { "question": "Erbert & Gerbert's Sandwich Shop", - "icon": "./assets/data/nsi/logos/erbertandgerberts-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erbertandgerberts-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=sandwich", - "official_name=Erbert & Gerbert's Sandwich Shop", "takeaway=yes", { "or": [ "brand=Erbert & Gerbert's", "brand:wikidata=Q5385097", - "name=Erbert & Gerbert's" + "name=Erbert & Gerbert's", + "official_name=Erbert & Gerbert's Sandwich Shop" ] } ] @@ -307894,7 +308242,7 @@ }, { "question": "Erik's DeliCafé", - "icon": "./assets/data/nsi/logos/eriksdelicafe-ffd771.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eriksdelicafe-ffd771.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307912,7 +308260,7 @@ }, { "question": "Es Teler 77", - "icon": "./assets/data/nsi/logos/esteler77-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esteler77-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307930,7 +308278,7 @@ }, { "question": "Everbowl", - "icon": "./assets/data/nsi/logos/everbowl-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/everbowl-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -307948,7 +308296,7 @@ }, { "question": "Everest", - "icon": "./assets/data/nsi/logos/everest-6b115c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/everest-6b115c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -307966,7 +308314,7 @@ }, { "question": "Evergreens", - "icon": "./assets/data/nsi/logos/evergreens-c26124.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evergreens-c26124.png", "osmTags": { "and": [ "amenity=fast_food", @@ -307984,7 +308332,7 @@ }, { "question": "Exki", - "icon": "./assets/data/nsi/logos/exki-a3472e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exki-a3472e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308003,7 +308351,7 @@ }, { "question": "Extrawurst", - "icon": "./assets/data/nsi/logos/extrawurst-6ea233.png", + "icon": "https://data.mapcomplete.org/nsi//logos/extrawurst-6ea233.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308021,7 +308369,7 @@ }, { "question": "Extreme Pita", - "icon": "./assets/data/nsi/logos/extremepita-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/extremepita-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308039,7 +308387,7 @@ }, { "question": "Extreme Pizza", - "icon": "./assets/data/nsi/logos/extremepizza-9b2018.png", + "icon": "https://data.mapcomplete.org/nsi//logos/extremepizza-9b2018.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308057,7 +308405,7 @@ }, { "question": "Ezell's Chicken", - "icon": "./assets/data/nsi/logos/ezellschicken-c26124.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ezellschicken-c26124.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308076,7 +308424,7 @@ }, { "question": "Farmer Boys", - "icon": "./assets/data/nsi/logos/farmerboys-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmerboys-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308110,7 +308458,7 @@ }, { "question": "Fasfú Burgers", - "icon": "./assets/data/nsi/logos/fasfuburgers-d62fc7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fasfuburgers-d62fc7.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -308129,18 +308477,18 @@ }, { "question": "Fat Bastard Burrito", - "icon": "./assets/data/nsi/logos/fatbastardburrito-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fatbastardburrito-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Fat Bastard Burrito Co.", "takeaway=yes", { "or": [ "brand=Fat Bastard Burrito", "brand:wikidata=Q123865546", - "name=Fat Bastard Burrito" + "name=Fat Bastard Burrito", + "official_name=Fat Bastard Burrito Co." ] } ] @@ -308148,7 +308496,7 @@ }, { "question": "Fatburger", - "icon": "./assets/data/nsi/logos/fatburger-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fatburger-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308166,7 +308514,7 @@ }, { "question": "Favorite Chicken & Ribs", - "icon": "./assets/data/nsi/logos/favoritechickenandribs-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/favoritechickenandribs-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308184,7 +308532,7 @@ }, { "question": "Fazoli's", - "icon": "./assets/data/nsi/logos/fazolis-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fazolis-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308202,7 +308550,7 @@ }, { "question": "FEBO", - "icon": "./assets/data/nsi/logos/febo-60a83c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/febo-60a83c.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308220,7 +308568,7 @@ }, { "question": "Figaro's Pizza", - "icon": "./assets/data/nsi/logos/figarospizza-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/figarospizza-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308238,7 +308586,7 @@ }, { "question": "Fireaway Pizza", - "icon": "./assets/data/nsi/logos/fireawaypizza-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fireawaypizza-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308256,7 +308604,7 @@ }, { "question": "Firehouse Subs", - "icon": "./assets/data/nsi/logos/firehousesubs-d2abf0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firehousesubs-d2abf0.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308274,7 +308622,7 @@ }, { "question": "Fishaways", - "icon": "./assets/data/nsi/logos/fishaways-7fdf05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fishaways-7fdf05.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308292,7 +308640,7 @@ }, { "question": "Fishbowl", - "icon": "./assets/data/nsi/logos/fishbowl-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fishbowl-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308310,18 +308658,18 @@ }, { "question": "Five Guys", - "icon": "./assets/data/nsi/logos/fiveguys-c83461.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fiveguys-c83461.png", "osmTags": { "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=Five Guys Burgers and Fries", "takeaway=yes", { "or": [ "brand=Five Guys", "brand:wikidata=Q1131810", - "name=Five Guys" + "name=Five Guys", + "official_name=Five Guys Burgers and Fries" ] } ] @@ -308329,7 +308677,7 @@ }, { "question": "Five Star Chicken", - "icon": "./assets/data/nsi/logos/fivestarchicken-aba431.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fivestarchicken-aba431.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308348,7 +308696,7 @@ }, { "question": "Flippin' Pizza", - "icon": "./assets/data/nsi/logos/flippinpizza-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flippinpizza-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308366,7 +308714,7 @@ }, { "question": "Flower Burger", - "icon": "./assets/data/nsi/logos/flowerburger-4e7c43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flowerburger-4e7c43.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308402,7 +308750,7 @@ }, { "question": "Foodmaster", - "icon": "./assets/data/nsi/logos/foodmaster-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodmaster-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308420,7 +308768,7 @@ }, { "question": "Fosters Freeze", - "icon": "./assets/data/nsi/logos/fostersfreeze-ffd771.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fostersfreeze-ffd771.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308438,7 +308786,7 @@ }, { "question": "Four Star Pizza", - "icon": "./assets/data/nsi/logos/fourstarpizza-f334ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fourstarpizza-f334ca.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308456,7 +308804,7 @@ }, { "question": "Franks n' Burgers", - "icon": "./assets/data/nsi/logos/franksnburgers-33d36e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/franksnburgers-33d36e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308474,7 +308822,7 @@ }, { "question": "Frasses", - "icon": "./assets/data/nsi/logos/frasses-72e24f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frasses-72e24f.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308492,7 +308840,7 @@ }, { "question": "Freddy Fresh", - "icon": "./assets/data/nsi/logos/freddyfresh-6ea233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freddyfresh-6ea233.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308510,18 +308858,18 @@ }, { "question": "Freddy's", - "icon": "./assets/data/nsi/logos/freddys-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freddys-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=ice_cream;burger", - "official_name=Freddy's Frozen Custard & Steakburgers", "takeaway=yes", { "or": [ "brand=Freddy's", "brand:wikidata=Q5496837", - "name=Freddy's" + "name=Freddy's", + "official_name=Freddy's Frozen Custard & Steakburgers" ] } ] @@ -308529,7 +308877,7 @@ }, { "question": "Freebirds", - "icon": "./assets/data/nsi/logos/freebirds-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freebirds-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308547,7 +308895,7 @@ }, { "question": "Freshëns", - "icon": "./assets/data/nsi/logos/freshens-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshens-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308582,7 +308930,7 @@ }, { "question": "Freshslice Pizza", - "icon": "./assets/data/nsi/logos/freshslicepizza-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshslicepizza-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308600,7 +308948,7 @@ }, { "question": "Frisby", - "icon": "./assets/data/nsi/logos/frisby-9bc101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frisby-9bc101.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308619,7 +308967,7 @@ }, { "question": "Frittenwerk", - "icon": "./assets/data/nsi/logos/frittenwerk-6ea233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frittenwerk-6ea233.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308671,7 +309019,7 @@ }, { "question": "G La Dalle", - "icon": "./assets/data/nsi/logos/gladalle-11ef38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gladalle-11ef38.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308689,7 +309037,7 @@ }, { "question": "Gabriel Pizza", - "icon": "./assets/data/nsi/logos/gabrielpizza-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gabrielpizza-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308724,7 +309072,7 @@ }, { "question": "Galito's", - "icon": "./assets/data/nsi/logos/galitos-00ffa4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/galitos-00ffa4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308759,7 +309107,7 @@ }, { "question": "German Doner Kebab", - "icon": "./assets/data/nsi/logos/germandonerkebab-85aed8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/germandonerkebab-85aed8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308777,7 +309125,7 @@ }, { "question": "Gino's Pizza (Canada)", - "icon": "./assets/data/nsi/logos/ginospizza-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ginospizza-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308812,7 +309160,7 @@ }, { "question": "Gionino's Pizzeria", - "icon": "./assets/data/nsi/logos/gioninospizzeria-f9b143.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gioninospizzeria-f9b143.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308830,7 +309178,7 @@ }, { "question": "Giraffas", - "icon": "./assets/data/nsi/logos/giraffas-ffb863.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giraffas-ffb863.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308848,7 +309196,7 @@ }, { "question": "Giraffe Stop", - "icon": "./assets/data/nsi/logos/giraffestop-c9a924.png", + "icon": "https://data.mapcomplete.org/nsi//logos/giraffestop-c9a924.png", "osmTags": { "and": [ "amenity=fast_food", @@ -308866,7 +309214,7 @@ }, { "question": "Gold Star Chili", - "icon": "./assets/data/nsi/logos/goldstarchili-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldstarchili-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308885,7 +309233,7 @@ }, { "question": "Golden Chick", - "icon": "./assets/data/nsi/logos/goldenchick-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenchick-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308903,7 +309251,7 @@ }, { "question": "Golden Krust Caribbean Bakery & Grill", - "icon": "./assets/data/nsi/logos/goldenkrust-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenkrust-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308921,7 +309269,7 @@ }, { "question": "Goli Vada Pav", - "icon": "./assets/data/nsi/logos/golivadapav-aba431.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/golivadapav-aba431.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308940,18 +309288,18 @@ }, { "question": "Good Times", - "icon": "./assets/data/nsi/logos/goodtimes-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodtimes-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=burger;ice_cream", - "official_name=Good Times Burgers & Frozen Custard", "takeaway=yes", { "or": [ "brand=Good Times", "brand:wikidata=Q5583024", - "name=Good Times" + "name=Good Times", + "official_name=Good Times Burgers & Frozen Custard" ] } ] @@ -308959,7 +309307,7 @@ }, { "question": "GOSCH Sylt", - "icon": "./assets/data/nsi/logos/goschsylt-6ea233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goschsylt-6ea233.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308978,7 +309326,7 @@ }, { "question": "Gourmet Burger Kitchen", - "icon": "./assets/data/nsi/logos/gourmetburgerkitchen-2db3d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gourmetburgerkitchen-2db3d2.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -308997,7 +309345,7 @@ }, { "question": "Great American Cookies", - "icon": "./assets/data/nsi/logos/greatamericancookies-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greatamericancookies-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309015,7 +309363,7 @@ }, { "question": "Great Wraps", - "icon": "./assets/data/nsi/logos/greatwraps-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greatwraps-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309033,7 +309381,7 @@ }, { "question": "Greenwich", - "icon": "./assets/data/nsi/logos/greenwich-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenwich-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309051,7 +309399,7 @@ }, { "question": "Greggs", - "icon": "./assets/data/nsi/logos/greggs-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greggs-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309069,7 +309417,7 @@ }, { "question": "Grill'd", - "icon": "./assets/data/nsi/logos/grilld-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grilld-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309104,7 +309452,7 @@ }, { "question": "Guthrie's", - "icon": "./assets/data/nsi/logos/guthries-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guthries-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309122,7 +309470,7 @@ }, { "question": "Guzman y Gomez", - "icon": "./assets/data/nsi/logos/guzmanygomez-2f4cab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/guzmanygomez-2f4cab.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309140,7 +309488,7 @@ }, { "question": "Habib's", - "icon": "./assets/data/nsi/logos/habibs-4b8fdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/habibs-4b8fdf.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309158,7 +309506,7 @@ }, { "question": "Halal Fried Chicken", - "icon": "./assets/data/nsi/logos/halalfriedchicken-7b9471.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halalfriedchicken-7b9471.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309178,7 +309526,7 @@ }, { "question": "Haldiram's", - "icon": "./assets/data/nsi/logos/haldirams-aba431.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haldirams-aba431.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309214,7 +309562,7 @@ }, { "question": "Hangry Joe's Hot Chicken", - "icon": "./assets/data/nsi/logos/hangryjoeshotchicken-10afbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hangryjoeshotchicken-10afbb.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309232,7 +309580,7 @@ }, { "question": "Hardee's", - "icon": "./assets/data/nsi/logos/hardees-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hardees-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309250,7 +309598,7 @@ }, { "question": "Harold's Chicken Shack", - "icon": "./assets/data/nsi/logos/haroldschickenshack-f76ba8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haroldschickenshack-f76ba8.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309268,7 +309616,7 @@ }, { "question": "Harry Ramsden's", - "icon": "./assets/data/nsi/logos/harryramsdens-2dcf5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harryramsdens-2dcf5d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309286,7 +309634,7 @@ }, { "question": "Harvey's", - "icon": "./assets/data/nsi/logos/harveys-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harveys-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309304,7 +309652,7 @@ }, { "question": "Hell Pizza", - "icon": "./assets/data/nsi/logos/hell-6fb486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hell-6fb486.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309322,7 +309670,7 @@ }, { "question": "Hero Certified Burgers", - "icon": "./assets/data/nsi/logos/herocertifiedburgers-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/herocertifiedburgers-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309340,7 +309688,7 @@ }, { "question": "Hesburger", - "icon": "./assets/data/nsi/logos/hesburger-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hesburger-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309358,7 +309706,7 @@ }, { "question": "HokBen", - "icon": "./assets/data/nsi/logos/hokben-034122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hokben-034122.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309377,19 +309725,19 @@ }, { "question": "Honey Baked Ham", - "icon": "./assets/data/nsi/logos/honeybakedham-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/honeybakedham-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", "cuisine=american", - "official_name=The Honey Baked Ham Company", "takeaway=yes", { "or": [ "alt_name=HoneyBaked Ham", "brand=Honey Baked Ham", "brand:wikidata=Q5893363", - "name=Honey Baked Ham" + "name=Honey Baked Ham", + "official_name=The Honey Baked Ham Company" ] } ] @@ -309397,7 +309745,7 @@ }, { "question": "Hopdoddy Burger Bar", - "icon": "./assets/data/nsi/logos/hopdoddyburgerbar-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hopdoddyburgerbar-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309415,7 +309763,7 @@ }, { "question": "Hot Dog on a Stick", - "icon": "./assets/data/nsi/logos/hotdogonastick-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotdogonastick-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309433,7 +309781,7 @@ }, { "question": "Hot Head Burritos", - "icon": "./assets/data/nsi/logos/hotheadburritos-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotheadburritos-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309452,7 +309800,7 @@ }, { "question": "Hungry Howie's", - "icon": "./assets/data/nsi/logos/hungryhowies-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hungryhowies-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309470,7 +309818,7 @@ }, { "question": "Hungry Jack's", - "icon": "./assets/data/nsi/logos/hungryjacks-d43c69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hungryjacks-d43c69.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309505,7 +309853,7 @@ }, { "question": "Hunt Brothers Pizza", - "icon": "./assets/data/nsi/logos/huntbrotherspizza-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntbrotherspizza-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309523,18 +309871,18 @@ }, { "question": "Hwy55", - "icon": "./assets/data/nsi/logos/hwy55-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hwy55-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=burger;fries;ice_cream", - "official_name=Hwy55 Burgers, Shakes & Fries", "takeaway=yes", { "or": [ "brand=Hwy55", "brand:wikidata=Q17183098", - "name=Hwy55" + "name=Hwy55", + "official_name=Hwy55 Burgers, Shakes & Fries" ] } ] @@ -309542,7 +309890,7 @@ }, { "question": "Ike's Love and Sandwiches", - "icon": "./assets/data/nsi/logos/ikesloveandsandwiches-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikesloveandsandwiches-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309561,7 +309909,7 @@ }, { "question": "IKEA Bistro", - "icon": "./assets/data/nsi/logos/ikeabistro-713634.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikeabistro-713634.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309579,7 +309927,7 @@ }, { "question": "IKEA Restaurant", - "icon": "./assets/data/nsi/logos/ikearestaurant-f1d275.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikearestaurant-f1d275.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309599,7 +309947,7 @@ }, { "question": "immergrün", - "icon": "./assets/data/nsi/logos/immergrun-6ea233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/immergrun-6ea233.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309617,7 +309965,7 @@ }, { "question": "Imo's Pizza", - "icon": "./assets/data/nsi/logos/imospizza-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imospizza-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309635,7 +309983,7 @@ }, { "question": "In-N-Out Burger", - "icon": "./assets/data/nsi/logos/innoutburger-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/innoutburger-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309671,7 +310019,7 @@ }, { "question": "Island Poké", - "icon": "./assets/data/nsi/logos/islandpoke-421c9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/islandpoke-421c9e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309689,7 +310037,7 @@ }, { "question": "itsu", - "icon": "./assets/data/nsi/logos/itsu-56a2ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itsu-56a2ff.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309707,7 +310055,7 @@ }, { "question": "Izzo's Illegal Burrito", - "icon": "./assets/data/nsi/logos/izzosillegalburrito-6a04a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/izzosillegalburrito-6a04a1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309726,7 +310074,7 @@ }, { "question": "J.Co Donuts", - "icon": "./assets/data/nsi/logos/jco-67fcce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jco-67fcce.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309745,7 +310093,7 @@ }, { "question": "Jack in the Box", - "icon": "./assets/data/nsi/logos/jackinthebox-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jackinthebox-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309763,7 +310111,7 @@ }, { "question": "Jack's", - "icon": "./assets/data/nsi/logos/jacks-4d2ff4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacks-4d2ff4.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -309781,7 +310129,7 @@ }, { "question": "Jamba", - "icon": "./assets/data/nsi/logos/jamba-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jamba-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309800,7 +310148,7 @@ }, { "question": "Jeno's Pizza", - "icon": "./assets/data/nsi/logos/jenospizza-9bc101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jenospizza-9bc101.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309818,7 +310166,7 @@ }, { "question": "Jersey Mike's Subs", - "icon": "./assets/data/nsi/logos/jerseymikessubs-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseymikessubs-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309837,18 +310185,18 @@ }, { "question": "Jimmy John's", - "icon": "./assets/data/nsi/logos/jimmyjohns-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jimmyjohns-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", "cuisine=sandwich", - "official_name=Jimmy John's Gourmet Sandwiches", "takeaway=yes", { "or": [ "brand=Jimmy John's", "brand:wikidata=Q1689380", - "name=Jimmy John's" + "name=Jimmy John's", + "official_name=Jimmy John's Gourmet Sandwiches" ] } ] @@ -309856,7 +310204,7 @@ }, { "question": "Jimmy the Greek", - "icon": "./assets/data/nsi/logos/jimmythegreek-bf41de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jimmythegreek-bf41de.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309891,7 +310239,7 @@ }, { "question": "Johnny's Burger Company", - "icon": "./assets/data/nsi/logos/johnnysburgercompany-60a83c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johnnysburgercompany-60a83c.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309909,7 +310257,7 @@ }, { "question": "Jollibee", - "icon": "./assets/data/nsi/logos/jollibee-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jollibee-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309944,7 +310292,7 @@ }, { "question": "Juice It Up!", - "icon": "./assets/data/nsi/logos/juiceitup-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juiceitup-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -309962,7 +310310,7 @@ }, { "question": "Juice Press", - "icon": "./assets/data/nsi/logos/juicepress-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/juicepress-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -309980,7 +310328,7 @@ }, { "question": "JuiceLand", - "icon": "./assets/data/nsi/logos/juiceland-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/juiceland-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310015,7 +310363,7 @@ }, { "question": "Jumbo King", - "icon": "./assets/data/nsi/logos/jumboking-aba431.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jumboking-aba431.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310033,7 +310381,7 @@ }, { "question": "Jump Juice", - "icon": "./assets/data/nsi/logos/jumpjuice-f334ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jumpjuice-f334ca.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310051,7 +310399,7 @@ }, { "question": "Jureskogs", - "icon": "./assets/data/nsi/logos/jureskogs-72e24f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jureskogs-72e24f.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310069,7 +310417,7 @@ }, { "question": "Just Salad", - "icon": "./assets/data/nsi/logos/justsalad-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/justsalad-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310087,7 +310435,7 @@ }, { "question": "KaatiZone", - "icon": "./assets/data/nsi/logos/kaatizone-aba431.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaatizone-aba431.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310121,18 +310469,18 @@ }, { "question": "KBTR", - "icon": "./assets/data/nsi/logos/kbtr-9b2018.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kbtr-9b2018.png", "osmTags": { "and": [ "amenity=fast_food", "cuisine=kebab", - "official_name=Kebab Turki Baba Rafi", "takeaway=yes", { "or": [ "brand=KBTR", "brand:wikidata=Q6382370", - "name=KBTR" + "name=KBTR", + "official_name=Kebab Turki Baba Rafi" ] } ] @@ -310140,7 +310488,7 @@ }, { "question": "Kebab King", - "icon": "./assets/data/nsi/logos/kebabking-3eab78.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kebabking-3eab78.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310158,7 +310506,7 @@ }, { "question": "Kebhouze", - "icon": "./assets/data/nsi/logos/kebhouze-65215d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kebhouze-65215d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310176,7 +310524,7 @@ }, { "question": "Kelly's Cajun Grill", - "icon": "./assets/data/nsi/logos/kellyscajungrill-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kellyscajungrill-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310194,7 +310542,7 @@ }, { "question": "Kernels Popcorn", - "icon": "./assets/data/nsi/logos/kernelspopcorn-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kernelspopcorn-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310212,7 +310560,7 @@ }, { "question": "KFC", - "icon": "./assets/data/nsi/logos/kfc-aa87eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-aa87eb.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310231,7 +310579,7 @@ }, { "question": "KFC (India/Pakistan)", - "icon": "./assets/data/nsi/logos/kfc-c522e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-c522e4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310265,7 +310613,7 @@ }, { "question": "KFC (Việt Nam)", - "icon": "./assets/data/nsi/logos/kfc-434b12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-434b12.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310284,7 +310632,7 @@ }, { "question": "Kilimanjaro", - "icon": "./assets/data/nsi/logos/kilimanjaro-3eb11d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kilimanjaro-3eb11d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310318,7 +310666,7 @@ }, { "question": "King of Donair", - "icon": "./assets/data/nsi/logos/kingofdonair-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingofdonair-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310353,7 +310701,7 @@ }, { "question": "King Taco", - "icon": "./assets/data/nsi/logos/kingtaco-ffd771.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingtaco-ffd771.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310371,7 +310719,7 @@ }, { "question": "Kippie", - "icon": "./assets/data/nsi/logos/kippie-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kippie-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310389,7 +310737,7 @@ }, { "question": "Kochlöffel", - "icon": "./assets/data/nsi/logos/kochloffel-af032a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kochloffel-af032a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310407,7 +310755,7 @@ }, { "question": "Kokoriko", - "icon": "./assets/data/nsi/logos/kokoriko-9bc101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kokoriko-9bc101.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310425,7 +310773,7 @@ }, { "question": "KOKORO", - "icon": "./assets/data/nsi/logos/kokoro-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kokoro-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310443,7 +310791,7 @@ }, { "question": "Komagene", - "icon": "./assets/data/nsi/logos/komagene-8ef00c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komagene-8ef00c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310461,7 +310809,7 @@ }, { "question": "Kotipizza", - "icon": "./assets/data/nsi/logos/kotipizza-3dd6de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kotipizza-3dd6de.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310479,7 +310827,7 @@ }, { "question": "Krispy Kreme", - "icon": "./assets/data/nsi/logos/krispykreme-fd6225.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krispykreme-fd6225.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310497,7 +310845,7 @@ }, { "question": "Krispy Krunchy Chicken", - "icon": "./assets/data/nsi/logos/krispykrunchychicken-bca76b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krispykrunchychicken-bca76b.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310515,7 +310863,7 @@ }, { "question": "Krowarzywa", - "icon": "./assets/data/nsi/logos/krowarzywa-3eab78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krowarzywa-3eab78.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310535,7 +310883,7 @@ }, { "question": "Krystal", - "icon": "./assets/data/nsi/logos/krystal-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krystal-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310553,18 +310901,18 @@ }, { "question": "Kura Sushi", - "icon": "./assets/data/nsi/logos/kurasushi-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kurasushi-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=sushi", - "official_name=Kura Revolving Sushi Bar", "takeaway=yes", { "or": [ "brand=Kura Sushi", "brand:wikidata=Q6445491", - "name=Kura Sushi" + "name=Kura Sushi", + "official_name=Kura Revolving Sushi Bar" ] } ] @@ -310572,7 +310920,7 @@ }, { "question": "Kwalitaria", - "icon": "./assets/data/nsi/logos/kwalitaria-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwalitaria-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310590,7 +310938,7 @@ }, { "question": "l'artigiano", - "icon": "./assets/data/nsi/logos/lartigiano-6b115c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lartigiano-6b115c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310609,7 +310957,7 @@ }, { "question": "L&L Drive-Inn", - "icon": "./assets/data/nsi/logos/landldriveinn-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landldriveinn-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310627,7 +310975,7 @@ }, { "question": "L&L Hawaiian Barbecue", - "icon": "./assets/data/nsi/logos/landlhawaiianbarbecue-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landlhawaiianbarbecue-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310645,7 +310993,7 @@ }, { "question": "La Belle Province", - "icon": "./assets/data/nsi/logos/labelleprovince-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/labelleprovince-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310663,7 +311011,7 @@ }, { "question": "La Boîte à Pizza", - "icon": "./assets/data/nsi/logos/laboiteapizza-e4dee6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/laboiteapizza-e4dee6.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310682,7 +311030,7 @@ }, { "question": "La Croissanterie", - "icon": "./assets/data/nsi/logos/lacroissanterie-affad8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacroissanterie-affad8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310700,7 +311048,7 @@ }, { "question": "La Lucha Sangucheria Criolla", - "icon": "./assets/data/nsi/logos/laluchasangucheriacriolla-1a06c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laluchasangucheriacriolla-1a06c0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310719,7 +311067,7 @@ }, { "question": "La Piadineria", - "icon": "./assets/data/nsi/logos/lapiadineria-b4e8f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lapiadineria-b4e8f3.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310737,7 +311085,7 @@ }, { "question": "La Salsa", - "icon": "./assets/data/nsi/logos/lasalsa-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lasalsa-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310755,7 +311103,7 @@ }, { "question": "Lafleur Restaurant", - "icon": "./assets/data/nsi/logos/lafleurrestaurant-e49d2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lafleurrestaurant-e49d2e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310773,7 +311121,7 @@ }, { "question": "Laredo Taco Company", - "icon": "./assets/data/nsi/logos/laredotacocompany-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/laredotacocompany-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310791,7 +311139,7 @@ }, { "question": "Laughing Planet", - "icon": "./assets/data/nsi/logos/laughingplanet-959927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laughingplanet-959927.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310809,7 +311157,7 @@ }, { "question": "Le Kiosque à Pizzas", - "icon": "./assets/data/nsi/logos/lekiosqueapizzas-1781f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lekiosqueapizzas-1781f3.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310827,7 +311175,7 @@ }, { "question": "Le Tacos de Lyon", - "icon": "./assets/data/nsi/logos/letacosdelyon-508db0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/letacosdelyon-508db0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310845,7 +311193,7 @@ }, { "question": "Lee's Famous Recipe Chicken", - "icon": "./assets/data/nsi/logos/leesfamousrecipechicken-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leesfamousrecipechicken-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310863,7 +311211,7 @@ }, { "question": "Lee's Sandwiches", - "icon": "./assets/data/nsi/logos/leessandwiches-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leessandwiches-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310881,7 +311229,7 @@ }, { "question": "LemonShark Poké", - "icon": "./assets/data/nsi/logos/lemonsharkpoke-44dd3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lemonsharkpoke-44dd3c.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310899,7 +311247,7 @@ }, { "question": "LEON", - "icon": "./assets/data/nsi/logos/leon-04566a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leon-04566a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310917,7 +311265,7 @@ }, { "question": "Les Burgers de Papa", - "icon": "./assets/data/nsi/logos/lesburgersdepapa-11ef38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lesburgersdepapa-11ef38.png", "osmTags": { "and": [ "amenity=fast_food", @@ -310935,7 +311283,7 @@ }, { "question": "Little Big Burger", - "icon": "./assets/data/nsi/logos/littlebigburger-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/littlebigburger-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310953,7 +311301,7 @@ }, { "question": "Little Caesars", - "icon": "./assets/data/nsi/logos/littlecaesars-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/littlecaesars-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310971,7 +311319,7 @@ }, { "question": "Loco Burrito", - "icon": "./assets/data/nsi/logos/locoburrito-c56583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/locoburrito-c56583.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -310991,7 +311339,7 @@ }, { "question": "Lola Nena's", - "icon": "./assets/data/nsi/logos/lolanenas-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lolanenas-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311009,7 +311357,7 @@ }, { "question": "Long John Silver's", - "icon": "./assets/data/nsi/logos/longjohnsilvers-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longjohnsilvers-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311027,7 +311375,7 @@ }, { "question": "Lord of the Fries", - "icon": "./assets/data/nsi/logos/lordofthefries-183b7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lordofthefries-183b7d.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311046,7 +311394,7 @@ }, { "question": "Lots'a Pizza", - "icon": "./assets/data/nsi/logos/lotsapizza-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotsapizza-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311064,7 +311412,7 @@ }, { "question": "Lotteria", - "icon": "./assets/data/nsi/logos/lotteria-9b2018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotteria-9b2018.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311082,7 +311430,7 @@ }, { "question": "Louisiana Famous Fried Chicken", - "icon": "./assets/data/nsi/logos/louisianafamousfriedchicken-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/louisianafamousfriedchicken-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311100,7 +311448,7 @@ }, { "question": "Lviv Croissants", - "icon": "./assets/data/nsi/logos/lvivcroissants-1b3cb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lvivcroissants-1b3cb0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311118,7 +311466,7 @@ }, { "question": "Ma'loa", - "icon": "./assets/data/nsi/logos/maloa-accea8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maloa-accea8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311136,7 +311484,7 @@ }, { "question": "Mak.by", - "icon": "./assets/data/nsi/logos/makby-381458.png", + "icon": "https://data.mapcomplete.org/nsi//logos/makby-381458.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311154,7 +311502,7 @@ }, { "question": "Malvón", - "icon": "./assets/data/nsi/logos/malvon-d3d66f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/malvon-d3d66f.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311173,7 +311521,7 @@ }, { "question": "Manchu Wok", - "icon": "./assets/data/nsi/logos/manchuwok-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manchuwok-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311191,7 +311539,7 @@ }, { "question": "Mang Inasal", - "icon": "./assets/data/nsi/logos/manginasal-33d36e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manginasal-33d36e.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -311209,7 +311557,7 @@ }, { "question": "Manhattan Bagel", - "icon": "./assets/data/nsi/logos/manhattanbagel-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manhattanbagel-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311227,7 +311575,7 @@ }, { "question": "Marco's Pizza", - "icon": "./assets/data/nsi/logos/marcospizza-c4364d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marcospizza-c4364d.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311245,7 +311593,7 @@ }, { "question": "Marrybrown", - "icon": "./assets/data/nsi/logos/marrybrown-9b2018.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marrybrown-9b2018.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311264,7 +311612,7 @@ }, { "question": "Marugame Udon", - "icon": "./assets/data/nsi/logos/marugameudon-a3c3a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marugameudon-a3c3a3.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311283,7 +311631,7 @@ }, { "question": "Mary Brown's", - "icon": "./assets/data/nsi/logos/marybrowns-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marybrowns-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311301,7 +311649,7 @@ }, { "question": "Max", - "icon": "./assets/data/nsi/logos/max-829f63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/max-829f63.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311319,7 +311667,7 @@ }, { "question": "McDonald's", - "icon": "./assets/data/nsi/logos/mcdonalds-d24be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-d24be7.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311337,7 +311685,7 @@ }, { "question": "McDonald's (France)", - "icon": "./assets/data/nsi/logos/mcdonalds-e4dee6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-e4dee6.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311355,7 +311703,7 @@ }, { "question": "McDonald's (Norge)", - "icon": "./assets/data/nsi/logos/mcdonalds-86f814.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-86f814.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311373,7 +311721,7 @@ }, { "question": "Mediterráneo", - "icon": "./assets/data/nsi/logos/mediterraneo-654705.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mediterraneo-654705.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311391,7 +311739,7 @@ }, { "question": "Megamatte", - "icon": "./assets/data/nsi/logos/megamatte-ffb863.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megamatte-ffb863.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311409,7 +311757,7 @@ }, { "question": "Mendocino Farms", - "icon": "./assets/data/nsi/logos/mendocinofarms-c19f86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mendocinofarms-c19f86.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311427,7 +311775,7 @@ }, { "question": "Meson Sandwiches", - "icon": "./assets/data/nsi/logos/mesonsandwiches-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mesonsandwiches-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311447,7 +311795,7 @@ }, { "question": "Mesopotamia", - "icon": "./assets/data/nsi/logos/mesopotamia-6566c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mesopotamia-6566c7.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311465,7 +311813,7 @@ }, { "question": "Miami Grill", - "icon": "./assets/data/nsi/logos/miamigrill-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miamigrill-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311483,7 +311831,7 @@ }, { "question": "Mighty Taco", - "icon": "./assets/data/nsi/logos/mightytaco-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mightytaco-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311501,7 +311849,7 @@ }, { "question": "Migros Take Away", - "icon": "./assets/data/nsi/logos/migrostakeaway-2fcd78.png", + "icon": "https://data.mapcomplete.org/nsi//logos/migrostakeaway-2fcd78.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311519,18 +311867,18 @@ }, { "question": "Milio's Sandwiches", - "icon": "./assets/data/nsi/logos/milios-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milios-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=sandwich", - "official_name=Milio's Sandwiches", "takeaway=yes", { "or": [ "brand=Milio's", "brand:wikidata=Q6851893", - "name=Milio's" + "name=Milio's", + "official_name=Milio's Sandwiches" ] } ] @@ -311538,7 +311886,7 @@ }, { "question": "Minute Burger", - "icon": "./assets/data/nsi/logos/minuteburger-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minuteburger-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311556,7 +311904,7 @@ }, { "question": "Miss Millie's", - "icon": "./assets/data/nsi/logos/missmillies-1abd07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missmillies-1abd07.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311574,7 +311922,7 @@ }, { "question": "Mister Donut", - "icon": "./assets/data/nsi/logos/misterdonut-1d9a84.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/misterdonut-1d9a84.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -311594,7 +311942,7 @@ }, { "question": "Mister Donut (臺灣)", - "icon": "./assets/data/nsi/logos/misterdonut-60a4d5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/misterdonut-60a4d5.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -311620,7 +311968,7 @@ }, { "question": "Mizzoni's Pizza", - "icon": "./assets/data/nsi/logos/mizzonispizza-f334ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mizzonispizza-f334ca.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311638,7 +311986,7 @@ }, { "question": "Mleczarnia Jerozolimska", - "icon": "./assets/data/nsi/logos/mleczarniajerozolimska-3eab78.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mleczarniajerozolimska-3eab78.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311656,7 +312004,7 @@ }, { "question": "Mo'men", - "icon": "./assets/data/nsi/logos/momen-f39225.png", + "icon": "https://data.mapcomplete.org/nsi//logos/momen-f39225.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311674,7 +312022,7 @@ }, { "question": "Mochachos", - "icon": "./assets/data/nsi/logos/mochachos-7fdf05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mochachos-7fdf05.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311692,7 +312040,7 @@ }, { "question": "Mochinut", - "icon": "./assets/data/nsi/logos/mochinut-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mochinut-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311710,7 +312058,7 @@ }, { "question": "MOD Pizza", - "icon": "./assets/data/nsi/logos/modpizza-9cbad3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/modpizza-9cbad3.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311728,7 +312076,7 @@ }, { "question": "Moe's Italian Sandwiches", - "icon": "./assets/data/nsi/logos/moesitaliansandwiches-3bfec2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/moesitaliansandwiches-3bfec2.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311746,7 +312094,7 @@ }, { "question": "Moe's Southwest Grill", - "icon": "./assets/data/nsi/logos/moessouthwestgrill-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moessouthwestgrill-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311765,7 +312113,7 @@ }, { "question": "Mooyah", - "icon": "./assets/data/nsi/logos/mooyah-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mooyah-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311800,7 +312148,7 @@ }, { "question": "Mostaza", - "icon": "./assets/data/nsi/logos/mostaza-c1cb89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mostaza-c1cb89.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311818,7 +312166,7 @@ }, { "question": "Mr Bigg's", - "icon": "./assets/data/nsi/logos/mrbiggs-282078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrbiggs-282078.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311836,7 +312184,7 @@ }, { "question": "Mr. Hero", - "icon": "./assets/data/nsi/logos/mrhero-f9b143.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrhero-f9b143.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311854,7 +312202,7 @@ }, { "question": "Mr. Liempo", - "icon": "./assets/data/nsi/logos/mrliempo-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrliempo-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311872,7 +312220,7 @@ }, { "question": "Mr. Pizza", - "icon": "./assets/data/nsi/logos/mrpizza-c56583.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrpizza-c56583.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311908,7 +312256,7 @@ }, { "question": "Mr. Sub", - "icon": "./assets/data/nsi/logos/mrsub-658eea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrsub-658eea.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311926,7 +312274,7 @@ }, { "question": "MrBeast Burger", - "icon": "./assets/data/nsi/logos/mrbeastburger-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrbeastburger-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -311944,7 +312292,7 @@ }, { "question": "Muchas Gracias Mexican Food", - "icon": "./assets/data/nsi/logos/muchasgraciasmexicanfood-c26124.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/muchasgraciasmexicanfood-c26124.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311962,7 +312310,7 @@ }, { "question": "Mucho Burrito", - "icon": "./assets/data/nsi/logos/muchoburrito-437ecc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/muchoburrito-437ecc.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -311997,7 +312345,7 @@ }, { "question": "Nathan's", - "icon": "./assets/data/nsi/logos/nathans-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nathans-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -312015,7 +312363,7 @@ }, { "question": "Neat", - "icon": "./assets/data/nsi/logos/neat-70efcc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neat-70efcc.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312034,7 +312382,7 @@ }, { "question": "Nékter Juice Bar", - "icon": "./assets/data/nsi/logos/nekterjuicebar-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nekterjuicebar-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -312069,7 +312417,7 @@ }, { "question": "New Deli", - "icon": "./assets/data/nsi/logos/newdeli-dbdcb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newdeli-dbdcb8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312106,7 +312454,7 @@ }, { "question": "New York Fries", - "icon": "./assets/data/nsi/logos/newyorkfries-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkfries-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312124,7 +312472,7 @@ }, { "question": "New York Pizza", - "icon": "./assets/data/nsi/logos/newyorkpizza-29392a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkpizza-29392a.png", "osmTags": { "and": [ "amenity=fast_food", @@ -312142,7 +312490,7 @@ }, { "question": "Next Level Burger", - "icon": "./assets/data/nsi/logos/nextlevelburger-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nextlevelburger-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312161,7 +312509,7 @@ }, { "question": "Nick The Greek", - "icon": "./assets/data/nsi/logos/nickthegreek-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nickthegreek-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312179,18 +312527,18 @@ }, { "question": "Noah's Bagels", - "icon": "./assets/data/nsi/logos/noahsbagels-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noahsbagels-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=bagel", - "official_name=Noah's New York Bagels", "takeaway=yes", { "or": [ "brand=Noah's Bagels", "brand:wikidata=Q64517373", - "name=Noah's Bagels" + "name=Noah's Bagels", + "official_name=Noah's New York Bagels" ] } ] @@ -312198,7 +312546,7 @@ }, { "question": "Noodle Box", - "icon": "./assets/data/nsi/logos/noodlebox-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noodlebox-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312216,7 +312564,7 @@ }, { "question": "Noodle Canteen", - "icon": "./assets/data/nsi/logos/noodlecanteen-3a7e06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noodlecanteen-3a7e06.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312234,7 +312582,7 @@ }, { "question": "Noodle King", - "icon": "./assets/data/nsi/logos/noodleking-94178c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noodleking-94178c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312252,7 +312600,7 @@ }, { "question": "Nordsee", - "icon": "./assets/data/nsi/logos/nordsee-da5f5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordsee-da5f5f.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312270,7 +312618,7 @@ }, { "question": "Norky's", - "icon": "./assets/data/nsi/logos/norkys-654705.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norkys-654705.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312305,7 +312653,7 @@ }, { "question": "Num Pang", - "icon": "./assets/data/nsi/logos/numpang-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/numpang-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312323,7 +312671,7 @@ }, { "question": "O'Tacos", - "icon": "./assets/data/nsi/logos/otacos-33c697.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/otacos-33c697.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312341,7 +312689,7 @@ }, { "question": "Oakberry Açaí bowls", - "icon": "./assets/data/nsi/logos/oakberryacaibowls-5bb50d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oakberryacaibowls-5bb50d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312359,7 +312707,7 @@ }, { "question": "Ochaya", - "icon": "./assets/data/nsi/logos/ochaya-5e80eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ochaya-5e80eb.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312377,7 +312725,7 @@ }, { "question": "Old Chang Kee", - "icon": "./assets/data/nsi/logos/oldchangkee-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldchangkee-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312397,7 +312745,7 @@ }, { "question": "Oliver's Super Sandwiches", - "icon": "./assets/data/nsi/logos/oliverssupersandwiches-9f9722.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oliverssupersandwiches-9f9722.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312436,7 +312784,7 @@ }, { "question": "Oowee Vegan", - "icon": "./assets/data/nsi/logos/ooweevegan-1abd07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ooweevegan-1abd07.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312455,7 +312803,7 @@ }, { "question": "Oporto", - "icon": "./assets/data/nsi/logos/oporto-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oporto-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312489,7 +312837,7 @@ }, { "question": "Orange Julius", - "icon": "./assets/data/nsi/logos/orangejulius-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orangejulius-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312541,7 +312889,7 @@ }, { "question": "Osmow's", - "icon": "./assets/data/nsi/logos/osmows-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osmows-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312560,18 +312908,18 @@ }, { "question": "P. Terry's", - "icon": "./assets/data/nsi/logos/pterrys-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pterrys-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=P. Terry's Burger Stand", "takeaway=yes", { "or": [ "brand=P. Terry's", "brand:wikidata=Q19903521", - "name=P. Terry's" + "name=P. Terry's", + "official_name=P. Terry's Burger Stand" ] } ] @@ -312579,18 +312927,18 @@ }, { "question": "Pal's", - "icon": "./assets/data/nsi/logos/pals-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pals-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=Pal's Sudden Service", "takeaway=yes", { "or": [ "brand=Pal's", "brand:wikidata=Q7126094", - "name=Pal's" + "name=Pal's", + "official_name=Pal's Sudden Service" ] } ] @@ -312598,7 +312946,7 @@ }, { "question": "Panago", - "icon": "./assets/data/nsi/logos/panago-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panago-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312616,7 +312964,7 @@ }, { "question": "Panda Express", - "icon": "./assets/data/nsi/logos/pandaexpress-658eea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pandaexpress-658eea.png", "osmTags": { "and": [ "amenity=fast_food", @@ -312634,7 +312982,7 @@ }, { "question": "Panera Bread", - "icon": "./assets/data/nsi/logos/panerabread-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panerabread-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312670,7 +313018,7 @@ }, { "question": "Panos", - "icon": "./assets/data/nsi/logos/panos-2bde2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panos-2bde2f.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312688,6 +313036,7 @@ }, { "question": "Pans & Company", + "icon": "https://data.mapcomplete.org/nsi//logos/pansandcompany-b2cd69.png", "osmTags": { "and": [ "amenity=fast_food", @@ -312705,7 +313054,7 @@ }, { "question": "Papa John's", - "icon": "./assets/data/nsi/logos/papajohns-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/papajohns-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312723,18 +313072,18 @@ }, { "question": "Papa Murphy's", - "icon": "./assets/data/nsi/logos/papamurphys-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/papamurphys-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=pizza", - "official_name=Papa Murphy's Take 'N' Bake Pizza", "takeaway=only", { "or": [ "brand=Papa Murphy's", "brand:wikidata=Q7132349", - "name=Papa Murphy's" + "name=Papa Murphy's", + "official_name=Papa Murphy's Take 'N' Bake Pizza" ] } ] @@ -312742,7 +313091,7 @@ }, { "question": "Papa's Pizza", - "icon": "./assets/data/nsi/logos/papaspizza-0ae65d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/papaspizza-0ae65d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312797,7 +313146,7 @@ }, { "question": "PDQ", - "icon": "./assets/data/nsi/logos/pdq-f02697.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pdq-f02697.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312815,7 +313164,7 @@ }, { "question": "Penn Station", - "icon": "./assets/data/nsi/logos/pennstation-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pennstation-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312833,7 +313182,7 @@ }, { "question": "Pepe's", - "icon": "./assets/data/nsi/logos/pepes-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pepes-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312868,7 +313217,7 @@ }, { "question": "Pepperoni's", - "icon": "./assets/data/nsi/logos/pepperonis-1e257d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pepperonis-1e257d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312886,7 +313235,7 @@ }, { "question": "PFK", - "icon": "./assets/data/nsi/logos/pfk-32490c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pfk-32490c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312905,7 +313254,7 @@ }, { "question": "Philly Pretzel Factory", - "icon": "./assets/data/nsi/logos/phillypretzelfactory-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phillypretzelfactory-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312957,7 +313306,7 @@ }, { "question": "Pita Pit", - "icon": "./assets/data/nsi/logos/pitapit-658eea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pitapit-658eea.png", "osmTags": { "and": [ "amenity=fast_food", @@ -312975,7 +313324,7 @@ }, { "question": "Pitaya", - "icon": "./assets/data/nsi/logos/pitaya-9eb450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pitaya-9eb450.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -312994,7 +313343,7 @@ }, { "question": "Pizza 73", - "icon": "./assets/data/nsi/logos/pizza73-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizza73-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313012,7 +313361,7 @@ }, { "question": "Pizza Boli's", - "icon": "./assets/data/nsi/logos/pizzabolis-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzabolis-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313030,7 +313379,7 @@ }, { "question": "Pizza Capers", - "icon": "./assets/data/nsi/logos/pizzacapers-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzacapers-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313048,7 +313397,7 @@ }, { "question": "Pizza Day", - "icon": "./assets/data/nsi/logos/pizzaday-50e0ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzaday-50e0ae.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313066,7 +313415,7 @@ }, { "question": "Pizza GoGo", - "icon": "./assets/data/nsi/logos/pizzagogo-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzagogo-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313084,7 +313433,7 @@ }, { "question": "Pizza Hut Delivery", - "icon": "./assets/data/nsi/logos/pizzahutdelivery-ff7864.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzahutdelivery-ff7864.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313103,7 +313452,7 @@ }, { "question": "Pizza Hut Delivery (UK)", - "icon": "./assets/data/nsi/logos/pizzahutdelivery-45095e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzahutdelivery-45095e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313122,7 +313471,7 @@ }, { "question": "Pizza Hut Express", - "icon": "./assets/data/nsi/logos/pizzahutexpress-658eea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzahutexpress-658eea.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313140,7 +313489,7 @@ }, { "question": "Pizza Inn", - "icon": "./assets/data/nsi/logos/pizzainn-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzainn-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313158,7 +313507,7 @@ }, { "question": "Pizza Lab", - "icon": "./assets/data/nsi/logos/pizzalab-1fab0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzalab-1fab0a.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313176,7 +313525,7 @@ }, { "question": "Pizza Max (Deutschland)", - "icon": "./assets/data/nsi/logos/pizzamax-6ea233.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzamax-6ea233.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313194,7 +313543,7 @@ }, { "question": "Pizza Max (Ireland)", - "icon": "./assets/data/nsi/logos/pizzamax-f334ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzamax-f334ca.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313212,7 +313561,7 @@ }, { "question": "Pizza Móvil", - "icon": "./assets/data/nsi/logos/pizzamovil-34e6e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzamovil-34e6e8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313230,7 +313579,7 @@ }, { "question": "Pizza Nova", - "icon": "./assets/data/nsi/logos/pizzanova-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzanova-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313248,7 +313597,7 @@ }, { "question": "Pizza Paï", - "icon": "./assets/data/nsi/logos/pizzapai-11ef38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzapai-11ef38.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313266,7 +313615,7 @@ }, { "question": "Pizza Perfect", - "icon": "./assets/data/nsi/logos/pizzaperfect-7fdf05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzaperfect-7fdf05.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313284,7 +313633,7 @@ }, { "question": "Pizza Pizza", - "icon": "./assets/data/nsi/logos/pizzapizza-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzapizza-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313302,7 +313651,7 @@ }, { "question": "Pizza Salvatoré", - "icon": "./assets/data/nsi/logos/pizzasalvatore-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzasalvatore-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313320,7 +313669,7 @@ }, { "question": "Pizza Schmizza", - "icon": "./assets/data/nsi/logos/pizzaschmizza-c26124.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzaschmizza-c26124.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313355,7 +313704,7 @@ }, { "question": "Pizza Union", - "icon": "./assets/data/nsi/logos/pizzaunion-8bf212.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzaunion-8bf212.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313389,7 +313738,7 @@ }, { "question": "Pizzabakeren", - "icon": "./assets/data/nsi/logos/pizzabakeren-4d7dcd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzabakeren-4d7dcd.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313426,7 +313775,7 @@ }, { "question": "Pizzaville", - "icon": "./assets/data/nsi/logos/pizzaville-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzaville-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313444,7 +313793,7 @@ }, { "question": "Planet Smoothie", - "icon": "./assets/data/nsi/logos/planetsmoothie-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/planetsmoothie-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313462,7 +313811,7 @@ }, { "question": "Playa Bowls", - "icon": "./assets/data/nsi/logos/playabowls-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/playabowls-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313480,7 +313829,7 @@ }, { "question": "Pokawa", - "icon": "./assets/data/nsi/logos/pokawa-6a2ed9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pokawa-6a2ed9.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313498,7 +313847,7 @@ }, { "question": "Poke Bros.", - "icon": "./assets/data/nsi/logos/pokebros-eebea8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pokebros-eebea8.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313516,7 +313865,7 @@ }, { "question": "Poke House", - "icon": "./assets/data/nsi/logos/pokehouse-b87c08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pokehouse-b87c08.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313534,7 +313883,7 @@ }, { "question": "Pollo Campero", - "icon": "./assets/data/nsi/logos/pollocampero-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pollocampero-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313569,7 +313918,7 @@ }, { "question": "Pollo Granjero (Costa Rica)", - "icon": "./assets/data/nsi/logos/pollogranjero-916d19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pollogranjero-916d19.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313587,7 +313936,7 @@ }, { "question": "Pollo Granjero (Guatemala)", - "icon": "./assets/data/nsi/logos/pollogranjero-41b0d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pollogranjero-41b0d1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313605,7 +313954,7 @@ }, { "question": "Pollo Tropical", - "icon": "./assets/data/nsi/logos/pollotropical-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pollotropical-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313639,7 +313988,7 @@ }, { "question": "Pomme de Pain", - "icon": "./assets/data/nsi/logos/pommedepain-508db0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pommedepain-508db0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313657,7 +314006,7 @@ }, { "question": "Pommesfreunde", - "icon": "./assets/data/nsi/logos/pommesfreunde-2a245c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pommesfreunde-2a245c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313675,18 +314024,18 @@ }, { "question": "Popeyes", - "icon": "./assets/data/nsi/logos/popeyes-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popeyes-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=chicken", - "official_name=Popeyes Louisiana Kitchen", "takeaway=yes", { "or": [ "brand=Popeyes", "brand:wikidata=Q1330910", - "name=Popeyes" + "name=Popeyes", + "official_name=Popeyes Louisiana Kitchen" ] } ] @@ -313694,7 +314043,7 @@ }, { "question": "Port of Subs", - "icon": "./assets/data/nsi/logos/portofsubs-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portofsubs-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313712,7 +314061,7 @@ }, { "question": "Portillo's", - "icon": "./assets/data/nsi/logos/portillos-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portillos-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313730,7 +314079,7 @@ }, { "question": "Potato Corner", - "icon": "./assets/data/nsi/logos/potatocorner-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potatocorner-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313748,18 +314097,18 @@ }, { "question": "Potbelly", - "icon": "./assets/data/nsi/logos/potbelly-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potbelly-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=sandwich", - "official_name=Potbelly Sandwich Works", "takeaway=yes", { "or": [ "brand=Potbelly", "brand:wikidata=Q7234777", - "name=Potbelly" + "name=Potbelly", + "official_name=Potbelly Sandwich Works" ] } ] @@ -313767,7 +314116,7 @@ }, { "question": "Pressed Juicery", - "icon": "./assets/data/nsi/logos/pressedjuicery-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pressedjuicery-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313785,7 +314134,7 @@ }, { "question": "Presto", - "icon": "./assets/data/nsi/logos/presto-9bc101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/presto-9bc101.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313803,7 +314152,7 @@ }, { "question": "Pret A Manger", - "icon": "./assets/data/nsi/logos/pretamanger-4f61b1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pretamanger-4f61b1.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313822,7 +314171,7 @@ }, { "question": "Pretzelmaker", - "icon": "./assets/data/nsi/logos/pretzelmaker-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pretzelmaker-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313840,7 +314189,7 @@ }, { "question": "Pure", - "icon": "./assets/data/nsi/logos/pure-8bf212.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pure-8bf212.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313858,18 +314207,18 @@ }, { "question": "Qdoba", - "icon": "./assets/data/nsi/logos/qdoba-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qdoba-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Qdoba Mexican Eats", "takeaway=yes", { "or": [ "brand=Qdoba", "brand:wikidata=Q1363885", - "name=Qdoba" + "name=Qdoba", + "official_name=Qdoba Mexican Eats" ] } ] @@ -313877,18 +314226,18 @@ }, { "question": "Quesada", - "icon": "./assets/data/nsi/logos/quesada-e49d2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/quesada-e49d2e.png", "osmTags": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Quesada Burritos & Tacos", "takeaway=yes", { "or": [ "brand=Quesada", "brand:wikidata=Q66070360", - "name=Quesada" + "name=Quesada", + "official_name=Quesada Burritos & Tacos" ] } ] @@ -313896,7 +314245,7 @@ }, { "question": "Quick", - "icon": "./assets/data/nsi/logos/quick-9fdafe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quick-9fdafe.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313914,7 +314263,7 @@ }, { "question": "Quiznos", - "icon": "./assets/data/nsi/logos/quiznos-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quiznos-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313932,18 +314281,18 @@ }, { "question": "Raising Cane's", - "icon": "./assets/data/nsi/logos/raisingcanes-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raisingcanes-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=chicken", - "official_name=Raising Cane's Chicken Fingers", "takeaway=yes", { "or": [ "brand=Raising Cane's", "brand:wikidata=Q7285144", - "name=Raising Cane's" + "name=Raising Cane's", + "official_name=Raising Cane's Chicken Fingers" ] } ] @@ -313951,7 +314300,7 @@ }, { "question": "Rally's", - "icon": "./assets/data/nsi/logos/rallys-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rallys-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -313969,7 +314318,7 @@ }, { "question": "Red Rooster", - "icon": "./assets/data/nsi/logos/redrooster-d43c69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/redrooster-d43c69.png", "osmTags": { "and": [ "amenity=fast_food", @@ -313987,7 +314336,7 @@ }, { "question": "Risa Chicken", - "icon": "./assets/data/nsi/logos/risachicken-6ea233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/risachicken-6ea233.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314005,7 +314354,7 @@ }, { "question": "Robeks", - "icon": "./assets/data/nsi/logos/robeks-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robeks-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314024,7 +314373,7 @@ }, { "question": "Robin's Donuts", - "icon": "./assets/data/nsi/logos/robinsdonuts-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robinsdonuts-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314043,7 +314392,7 @@ }, { "question": "Rodilla", - "icon": "./assets/data/nsi/logos/rodilla-34e6e8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rodilla-34e6e8.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314061,7 +314410,7 @@ }, { "question": "Roky's", - "icon": "./assets/data/nsi/logos/rokys-654705.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rokys-654705.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314079,7 +314428,7 @@ }, { "question": "Roll'd", - "icon": "./assets/data/nsi/logos/rolld-d43c69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rolld-d43c69.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314097,7 +314446,7 @@ }, { "question": "Roman's Pizza", - "icon": "./assets/data/nsi/logos/romanspizza-054529.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romanspizza-054529.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314115,18 +314464,18 @@ }, { "question": "Rosati's Pizza", - "icon": "./assets/data/nsi/logos/rosatis-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosatis-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=pizza", - "official_name=Rosati's Authentic Chicago Pizza", "takeaway=yes", { "or": [ "brand=Rosati's", "brand:wikidata=Q65052579", - "name=Rosati's" + "name=Rosati's", + "official_name=Rosati's Authentic Chicago Pizza" ] } ] @@ -314151,7 +314500,7 @@ }, { "question": "Roy Rogers", - "icon": "./assets/data/nsi/logos/royrogers-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/royrogers-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314169,7 +314518,7 @@ }, { "question": "Royal Donuts", - "icon": "./assets/data/nsi/logos/royaldonuts-6ea233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royaldonuts-6ea233.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314203,18 +314552,18 @@ }, { "question": "Rubio's", - "icon": "./assets/data/nsi/logos/rubios-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rubios-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=mexican", - "official_name=Rubio's Coastal Grill", "takeaway=yes", { "or": [ "brand=Rubio's", "brand:wikidata=Q7376154", - "name=Rubio's" + "name=Rubio's", + "official_name=Rubio's Coastal Grill" ] } ] @@ -314222,7 +314571,7 @@ }, { "question": "Ruby's Diner", - "icon": "./assets/data/nsi/logos/rubysdiner-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rubysdiner-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314240,7 +314589,7 @@ }, { "question": "Runza", - "icon": "./assets/data/nsi/logos/runza-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/runza-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314258,7 +314607,7 @@ }, { "question": "Rush Bowls", - "icon": "./assets/data/nsi/logos/rushbowls-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rushbowls-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314276,7 +314625,7 @@ }, { "question": "Sal's Pizza", - "icon": "./assets/data/nsi/logos/salspizza-3a7e06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salspizza-3a7e06.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314294,7 +314643,7 @@ }, { "question": "Salad and Go", - "icon": "./assets/data/nsi/logos/saladandgo-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saladandgo-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314312,7 +314661,7 @@ }, { "question": "Saladworks", - "icon": "./assets/data/nsi/logos/saladworks-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saladworks-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314330,7 +314679,7 @@ }, { "question": "Salsarita's Fresh Mexican Grill", - "icon": "./assets/data/nsi/logos/salsaritasfreshmexicangrill-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salsaritasfreshmexicangrill-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314366,7 +314715,7 @@ }, { "question": "Sándwich Qbano", - "icon": "./assets/data/nsi/logos/sandwichqbano-9bc101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandwichqbano-9bc101.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314384,7 +314733,7 @@ }, { "question": "Saravanaa Bhavan", - "icon": "./assets/data/nsi/logos/saravanaabhavan-9b2018.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saravanaabhavan-9b2018.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -314402,7 +314751,7 @@ }, { "question": "Sarku Japan", - "icon": "./assets/data/nsi/logos/sarkujapan-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sarkujapan-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314420,7 +314769,7 @@ }, { "question": "Sarpino's Pizzeria", - "icon": "./assets/data/nsi/logos/sarpinospizzeria-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sarpinospizzeria-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314438,7 +314787,7 @@ }, { "question": "Sausage Saloon", - "icon": "./assets/data/nsi/logos/sausagesaloon-080667.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sausagesaloon-080667.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314456,7 +314805,7 @@ }, { "question": "Sbarro", - "icon": "./assets/data/nsi/logos/sbarro-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbarro-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314474,7 +314823,7 @@ }, { "question": "Schlotzsky's", - "icon": "./assets/data/nsi/logos/schlotzskys-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schlotzskys-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314492,7 +314841,7 @@ }, { "question": "Schnitz", - "icon": "./assets/data/nsi/logos/schnitz-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schnitz-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314510,7 +314859,7 @@ }, { "question": "Secret Recipe", - "icon": "./assets/data/nsi/logos/secretrecipe-541408.png", + "icon": "https://data.mapcomplete.org/nsi//logos/secretrecipe-541408.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314528,7 +314877,7 @@ }, { "question": "SHABU to go", - "icon": "./assets/data/nsi/logos/shabutogo-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shabutogo-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314547,7 +314896,7 @@ }, { "question": "Shake Shack", - "icon": "./assets/data/nsi/logos/shakeshack-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shakeshack-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314565,7 +314914,7 @@ }, { "question": "ShakeAway", - "icon": "./assets/data/nsi/logos/shakeaway-3bfa70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shakeaway-3bfa70.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314600,7 +314949,7 @@ }, { "question": "Shipley Do-Nuts", - "icon": "./assets/data/nsi/logos/shipleydonuts-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shipleydonuts-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314618,7 +314967,7 @@ }, { "question": "Sibylla", - "icon": "./assets/data/nsi/logos/sibylla-bdca1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sibylla-bdca1d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314636,7 +314985,7 @@ }, { "question": "Simple Simon's Pizza", - "icon": "./assets/data/nsi/logos/simplesimonspizza-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/simplesimonspizza-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314671,7 +315020,7 @@ }, { "question": "Slapfish", - "icon": "./assets/data/nsi/logos/slapfish-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slapfish-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314689,7 +315038,7 @@ }, { "question": "Slim Chickens", - "icon": "./assets/data/nsi/logos/slimchickens-5b2e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slimchickens-5b2e82.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314707,7 +315056,7 @@ }, { "question": "Smashburger", - "icon": "./assets/data/nsi/logos/smashburger-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smashburger-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314725,7 +315074,7 @@ }, { "question": "Smiley's", - "icon": "./assets/data/nsi/logos/smileys-6ea233.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smileys-6ea233.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314760,7 +315109,7 @@ }, { "question": "Smokin' Joe's", - "icon": "./assets/data/nsi/logos/smokinjoes-d1dde8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smokinjoes-d1dde8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314778,7 +315127,7 @@ }, { "question": "Smoothie King", - "icon": "./assets/data/nsi/logos/smoothieking-d0a8c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smoothieking-d0a8c2.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314796,7 +315145,7 @@ }, { "question": "Smullers", - "icon": "./assets/data/nsi/logos/smullers-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smullers-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314814,7 +315163,7 @@ }, { "question": "Snarf's Sandwiches", - "icon": "./assets/data/nsi/logos/snarfssandwiches-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snarfssandwiches-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314832,7 +315181,7 @@ }, { "question": "Sonic", - "icon": "./assets/data/nsi/logos/sonic-658eea.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonic-658eea.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -314851,7 +315200,7 @@ }, { "question": "Soul Origin", - "icon": "./assets/data/nsi/logos/soulorigin-d43c69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/soulorigin-d43c69.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314903,7 +315252,7 @@ }, { "question": "Spare Rib Express", - "icon": "./assets/data/nsi/logos/spareribexpress-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spareribexpress-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314921,7 +315270,7 @@ }, { "question": "Specialty's", - "icon": "./assets/data/nsi/logos/specialtys-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/specialtys-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314939,7 +315288,7 @@ }, { "question": "Spizzico", - "icon": "./assets/data/nsi/logos/spizzico-7eb3e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spizzico-7eb3e4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -314957,7 +315306,7 @@ }, { "question": "Spoleto", - "icon": "./assets/data/nsi/logos/spoleto-ffb863.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spoleto-ffb863.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314975,7 +315324,7 @@ }, { "question": "St-Hubert Express", - "icon": "./assets/data/nsi/logos/sthubertexpress-e49d2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sthubertexpress-e49d2e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -314993,7 +315342,7 @@ }, { "question": "Steak 'n Shake", - "icon": "./assets/data/nsi/logos/steaknshake-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steaknshake-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315011,7 +315360,7 @@ }, { "question": "Steak Escape", - "icon": "./assets/data/nsi/logos/steakescape-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/steakescape-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -315029,7 +315378,7 @@ }, { "question": "Steers", - "icon": "./assets/data/nsi/logos/steers-7fdf05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steers-7fdf05.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315047,7 +315396,7 @@ }, { "question": "Subway", - "icon": "./assets/data/nsi/logos/subway-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/subway-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315065,7 +315414,7 @@ }, { "question": "Suki Hana", - "icon": "./assets/data/nsi/logos/sukihana-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sukihana-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315083,7 +315432,7 @@ }, { "question": "Sumo Salad", - "icon": "./assets/data/nsi/logos/sumosalad-474d0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sumosalad-474d0a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315101,7 +315450,7 @@ }, { "question": "Super Chix", - "icon": "./assets/data/nsi/logos/superchix-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superchix-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315119,7 +315468,7 @@ }, { "question": "Supermac's", - "icon": "./assets/data/nsi/logos/supermacs-2dcf5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supermacs-2dcf5d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315153,7 +315502,7 @@ }, { "question": "Sushi Shop (Canada)", - "icon": "./assets/data/nsi/logos/sushishop-e49d2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sushishop-e49d2e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -315171,7 +315520,7 @@ }, { "question": "Sushi Shop (Europe)", - "icon": "./assets/data/nsi/logos/sushishop-ac545e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushishop-ac545e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315189,7 +315538,7 @@ }, { "question": "Sushi Story", - "icon": "./assets/data/nsi/logos/sushistory-091bb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushistory-091bb1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315207,7 +315556,7 @@ }, { "question": "SushiDog", - "icon": "./assets/data/nsi/logos/sushidog-8bf212.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushidog-8bf212.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315225,7 +315574,7 @@ }, { "question": "SushiPoint", - "icon": "./assets/data/nsi/logos/sushipoint-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushipoint-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315243,7 +315592,7 @@ }, { "question": "SUSU & Sons", - "icon": "./assets/data/nsi/logos/susuandsons-dbdcb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/susuandsons-dbdcb8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315265,7 +315614,7 @@ }, { "question": "Sweetgreen", - "icon": "./assets/data/nsi/logos/sweetgreen-4d2ff4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sweetgreen-4d2ff4.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -315283,7 +315632,7 @@ }, { "question": "Swing Kitchen", - "icon": "./assets/data/nsi/logos/swingkitchen-157c6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swingkitchen-157c6b.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315302,7 +315651,7 @@ }, { "question": "Taco Bar", - "icon": "./assets/data/nsi/logos/tacobar-72e24f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacobar-72e24f.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315320,7 +315669,7 @@ }, { "question": "Taco Bell", - "icon": "./assets/data/nsi/logos/tacobell-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacobell-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315338,7 +315687,7 @@ }, { "question": "Taco Bell Cantina", - "icon": "./assets/data/nsi/logos/tacobellcantina-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacobellcantina-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315356,7 +315705,7 @@ }, { "question": "Taco Bueno", - "icon": "./assets/data/nsi/logos/tacobueno-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacobueno-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315374,7 +315723,7 @@ }, { "question": "Taco Cabana", - "icon": "./assets/data/nsi/logos/tacocabana-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacocabana-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315392,7 +315741,7 @@ }, { "question": "Taco Casa", - "icon": "./assets/data/nsi/logos/tacocasa-1ab7d8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tacocasa-1ab7d8.png", "osmTags": { "and": [ "amenity=fast_food", @@ -315410,7 +315759,7 @@ }, { "question": "Taco Del Mar", - "icon": "./assets/data/nsi/logos/tacodelmar-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacodelmar-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315428,7 +315777,7 @@ }, { "question": "Taco John's", - "icon": "./assets/data/nsi/logos/tacojohns-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacojohns-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315446,7 +315795,7 @@ }, { "question": "Taco Mayo", - "icon": "./assets/data/nsi/logos/tacomayo-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacomayo-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315464,7 +315813,7 @@ }, { "question": "Taco Mundo", - "icon": "./assets/data/nsi/logos/tacomundo-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacomundo-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315482,7 +315831,7 @@ }, { "question": "Taco Palenque", - "icon": "./assets/data/nsi/logos/tacopalenque-bca76b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacopalenque-bca76b.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315500,7 +315849,7 @@ }, { "question": "Taco Time", - "icon": "./assets/data/nsi/logos/tacotime-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacotime-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315518,7 +315867,7 @@ }, { "question": "Taco Time Northwest", - "icon": "./assets/data/nsi/logos/tacotime-7f5bd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacotime-7f5bd1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315587,7 +315936,7 @@ }, { "question": "Tashir Pizza", - "icon": "./assets/data/nsi/logos/tashirpizza-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tashirpizza-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315608,7 +315957,7 @@ }, { "question": "Tastee Fried Chicken", - "icon": "./assets/data/nsi/logos/tasteefriedchicken-3eb11d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tasteefriedchicken-3eb11d.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315627,7 +315976,7 @@ }, { "question": "Tavuk Dünyası", - "icon": "./assets/data/nsi/logos/tavukdunyasi-8ef00c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tavukdunyasi-8ef00c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315645,7 +315994,7 @@ }, { "question": "Taziki's Mediterranean Cafe", - "icon": "./assets/data/nsi/logos/tazikismediterraneancafe-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tazikismediterraneancafe-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -315664,7 +316013,7 @@ }, { "question": "Ted's Hot Dogs", - "icon": "./assets/data/nsi/logos/tedshotdogs-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tedshotdogs-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315682,7 +316031,7 @@ }, { "question": "Teddy's Bigger Burgers", - "icon": "./assets/data/nsi/logos/teddysbiggerburgers-7b6848.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teddysbiggerburgers-7b6848.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315700,7 +316049,7 @@ }, { "question": "Telepizza", - "icon": "./assets/data/nsi/logos/telepizza-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telepizza-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315718,7 +316067,7 @@ }, { "question": "Temple of Seitan", - "icon": "./assets/data/nsi/logos/templeofseitan-8bf212.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/templeofseitan-8bf212.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315737,7 +316086,7 @@ }, { "question": "Tender Greens", - "icon": "./assets/data/nsi/logos/tendergreens-ffd771.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tendergreens-ffd771.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315755,7 +316104,7 @@ }, { "question": "Teriyaki Experience", - "icon": "./assets/data/nsi/logos/teriyakiexperience-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teriyakiexperience-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315773,7 +316122,7 @@ }, { "question": "Teriyaki Madness", - "icon": "./assets/data/nsi/logos/teriyakimadness-53d9d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teriyakimadness-53d9d9.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315791,7 +316140,7 @@ }, { "question": "Tex's Chicken & Burgers", - "icon": "./assets/data/nsi/logos/texschickenandburgers-577b43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texschickenandburgers-577b43.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315810,7 +316159,7 @@ }, { "question": "Texas Chicken", - "icon": "./assets/data/nsi/logos/texaschicken-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texaschicken-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315829,7 +316178,7 @@ }, { "question": "Thaï Express (North America)", - "icon": "./assets/data/nsi/logos/thaiexpress-d2abf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thaiexpress-d2abf0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315847,7 +316196,7 @@ }, { "question": "Thai Express (Singapore)", - "icon": "./assets/data/nsi/logos/thaiexpress-6f8102.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thaiexpress-6f8102.png", "osmTags": { "and": [ "amenity=fast_food", @@ -315882,7 +316231,7 @@ }, { "question": "The Chicken Rice Shop", - "icon": "./assets/data/nsi/logos/thechickenriceshop-658eea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thechickenriceshop-658eea.png", "osmTags": { "and": [ "amenity=fast_food", @@ -315918,7 +316267,7 @@ }, { "question": "The Fish & Chip Co", - "icon": "./assets/data/nsi/logos/thefishandchipco-7fdf05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thefishandchipco-7fdf05.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315936,7 +316285,7 @@ }, { "question": "The Flame Broiler", - "icon": "./assets/data/nsi/logos/theflamebroiler-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theflamebroiler-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315954,7 +316303,7 @@ }, { "question": "The Good Burger", - "icon": "./assets/data/nsi/logos/thegoodburger-34e6e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegoodburger-34e6e8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315974,7 +316323,7 @@ }, { "question": "The Habit Burger Grill", - "icon": "./assets/data/nsi/logos/thehabitburgergrill-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehabitburgergrill-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -315994,7 +316343,7 @@ }, { "question": "The Halal Guys", - "icon": "./assets/data/nsi/logos/thehalalguys-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehalalguys-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316030,7 +316379,7 @@ }, { "question": "The Pizza Company", - "icon": "./assets/data/nsi/logos/thepizzacompany-abbb1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thepizzacompany-abbb1f.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316066,7 +316415,7 @@ }, { "question": "The Yard Milkshake Bar", - "icon": "./assets/data/nsi/logos/theyardmilkshakebar-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theyardmilkshakebar-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316084,7 +316433,7 @@ }, { "question": "TKK Fried Chicken", - "icon": "./assets/data/nsi/logos/tkkfriedchicken-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tkkfriedchicken-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316106,7 +316455,7 @@ }, { "question": "Togo's", - "icon": "./assets/data/nsi/logos/togos-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/togos-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316124,7 +316473,7 @@ }, { "question": "Tokyo Tokyo", - "icon": "./assets/data/nsi/logos/tokyotokyo-33d36e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokyotokyo-33d36e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316142,7 +316491,7 @@ }, { "question": "Tommi's Burger Joint", - "icon": "./assets/data/nsi/logos/tommisburgerjoint-db46fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tommisburgerjoint-db46fe.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316160,7 +316509,7 @@ }, { "question": "Topper's Pizza (Canada)", - "icon": "./assets/data/nsi/logos/topperspizza-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topperspizza-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316178,7 +316527,7 @@ }, { "question": "Tops Pizza", - "icon": "./assets/data/nsi/logos/topspizza-1abd07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topspizza-1abd07.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316196,7 +316545,7 @@ }, { "question": "Torchy's Tacos", - "icon": "./assets/data/nsi/logos/torchystacos-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torchystacos-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316248,7 +316597,7 @@ }, { "question": "Tropical Smoothie Cafe", - "icon": "./assets/data/nsi/logos/tropicalsmoothiecafe-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tropicalsmoothiecafe-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316266,7 +316615,7 @@ }, { "question": "Tubby's", - "icon": "./assets/data/nsi/logos/tubbys-d6ff93.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tubbys-d6ff93.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316284,7 +316633,7 @@ }, { "question": "Tudor's Biscuit World", - "icon": "./assets/data/nsi/logos/tudorsbiscuitworld-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tudorsbiscuitworld-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316302,7 +316651,7 @@ }, { "question": "Türkis", - "icon": "./assets/data/nsi/logos/turkis-94178c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkis-94178c.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -316321,7 +316670,7 @@ }, { "question": "Tutti Pizza", - "icon": "./assets/data/nsi/logos/tuttipizza-11ef38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuttipizza-11ef38.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316343,13 +316692,13 @@ "and": [ "amenity=fast_food", "cuisine=burger", - "official_name=Twisters Burgers & Burritos", "takeaway=yes", { "or": [ "brand=Twisters", "brand:wikidata=Q18062004", - "name=Twisters" + "name=Twisters", + "official_name=Twisters Burgers & Burritos" ] } ] @@ -316357,7 +316706,7 @@ }, { "question": "Two Hands Corn Dog", - "icon": "./assets/data/nsi/logos/twohands-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/twohands-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316375,7 +316724,7 @@ }, { "question": "UGO", - "icon": "./assets/data/nsi/logos/ugo-9b6fa9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ugo-9b6fa9.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316393,7 +316742,7 @@ }, { "question": "Uling Roasters", - "icon": "./assets/data/nsi/logos/ulingroasters-33d36e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ulingroasters-33d36e.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316428,7 +316777,7 @@ }, { "question": "Urban Plates", - "icon": "./assets/data/nsi/logos/urbanplates-ffd771.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/urbanplates-ffd771.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316447,7 +316796,7 @@ }, { "question": "Usta Dönerci", - "icon": "./assets/data/nsi/logos/ustadonerci-4d8bc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ustadonerci-4d8bc5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316470,7 +316819,7 @@ }, { "question": "Usta Dönerci (Georgia)", - "icon": "./assets/data/nsi/logos/ustadonerci-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ustadonerci-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316493,7 +316842,7 @@ }, { "question": "Valentine", - "icon": "./assets/data/nsi/logos/valentine-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valentine-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316511,7 +316860,7 @@ }, { "question": "Veggie Grill", - "icon": "./assets/data/nsi/logos/veggiegrill-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veggiegrill-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316530,7 +316879,7 @@ }, { "question": "Verhage", - "icon": "./assets/data/nsi/logos/verhage-60a83c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/verhage-60a83c.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316548,7 +316897,7 @@ }, { "question": "Victorico's", - "icon": "./assets/data/nsi/logos/victoricos-c26124.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/victoricos-c26124.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316566,7 +316915,7 @@ }, { "question": "Villa Madina", - "icon": "./assets/data/nsi/logos/villamadina-e49d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villamadina-e49d2e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316584,7 +316933,7 @@ }, { "question": "Vocelli Pizza", - "icon": "./assets/data/nsi/logos/vocellipizza-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vocellipizza-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316602,7 +316951,7 @@ }, { "question": "Voodoo Doughnut", - "icon": "./assets/data/nsi/logos/voodoodoughnut-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/voodoodoughnut-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316620,7 +316969,7 @@ }, { "question": "WaBa Grill", - "icon": "./assets/data/nsi/logos/wabagrill-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wabagrill-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316655,7 +317004,7 @@ }, { "question": "Wahoo's Fish Taco", - "icon": "./assets/data/nsi/logos/wahoosfishtaco-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wahoosfishtaco-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316691,7 +317040,7 @@ }, { "question": "Wasabi", - "icon": "./assets/data/nsi/logos/wasabi-7f8d78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wasabi-7f8d78.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316709,7 +317058,7 @@ }, { "question": "Wayback Burgers", - "icon": "./assets/data/nsi/logos/waybackburgers-658eea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/waybackburgers-658eea.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316727,7 +317076,7 @@ }, { "question": "Wendy's", - "icon": "./assets/data/nsi/logos/wendys-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wendys-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316745,7 +317094,7 @@ }, { "question": "West Cornwall Pasty Co.", - "icon": "./assets/data/nsi/logos/westcornwallpastyco-d78b85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westcornwallpastyco-d78b85.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316763,7 +317112,7 @@ }, { "question": "Wetzel's Pretzels", - "icon": "./assets/data/nsi/logos/wetzelspretzels-d2abf0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wetzelspretzels-d2abf0.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316781,7 +317130,7 @@ }, { "question": "Whataburger", - "icon": "./assets/data/nsi/logos/whataburger-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whataburger-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316799,7 +317148,7 @@ }, { "question": "Which Wich?", - "icon": "./assets/data/nsi/logos/whichwich-536de9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/whichwich-536de9.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316817,7 +317166,7 @@ }, { "question": "White Castle", - "icon": "./assets/data/nsi/logos/whitecastle-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whitecastle-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316835,7 +317184,7 @@ }, { "question": "Wienerschnitzel", - "icon": "./assets/data/nsi/logos/wienerschnitzel-4d2ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienerschnitzel-4d2ff4.png", "osmTags": { "and": [ "amenity=fast_food", @@ -316853,7 +317202,7 @@ }, { "question": "Wimpy", - "icon": "./assets/data/nsi/logos/wimpy-658eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wimpy-658eea.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316871,7 +317220,7 @@ }, { "question": "Winchell's Donut House", - "icon": "./assets/data/nsi/logos/winchellsdonuthouse-96f2d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winchellsdonuthouse-96f2d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316889,7 +317238,7 @@ }, { "question": "Wingstop", - "icon": "./assets/data/nsi/logos/wingstop-72c67c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wingstop-72c67c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316907,7 +317256,7 @@ }, { "question": "WingStreet", - "icon": "./assets/data/nsi/logos/wingstreet-1c2e03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wingstreet-1c2e03.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316925,7 +317274,7 @@ }, { "question": "Wok a Holic", - "icon": "./assets/data/nsi/logos/wokaholic-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wokaholic-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316943,7 +317292,7 @@ }, { "question": "Wok To Go", - "icon": "./assets/data/nsi/logos/woktogo-60a83c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woktogo-60a83c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316961,7 +317310,7 @@ }, { "question": "Wok to Walk", - "icon": "./assets/data/nsi/logos/woktowalk-f5ada9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woktowalk-f5ada9.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316979,7 +317328,7 @@ }, { "question": "Wow! Momo", - "icon": "./assets/data/nsi/logos/wowmomo-aba431.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wowmomo-aba431.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -316997,7 +317346,7 @@ }, { "question": "Wrapchic", - "icon": "./assets/data/nsi/logos/wrapchic-45095e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wrapchic-45095e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317015,7 +317364,7 @@ }, { "question": "Xi'an Famous Foods", - "icon": "./assets/data/nsi/logos/xianfamousfoods-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xianfamousfoods-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317033,7 +317382,7 @@ }, { "question": "Yard Sale Pizza", - "icon": "./assets/data/nsi/logos/yardsalepizza-8bf212.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yardsalepizza-8bf212.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317069,7 +317418,7 @@ }, { "question": "Yolk", - "icon": "./assets/data/nsi/logos/yolk-8bf212.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yolk-8bf212.png", "osmTags": { "and": [ "amenity=fast_food", @@ -317088,7 +317437,7 @@ }, { "question": "Yoshinoya", - "icon": "./assets/data/nsi/logos/yoshinoya-ffe475.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yoshinoya-ffe475.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317109,7 +317458,7 @@ }, { "question": "You Me Sushi", - "icon": "./assets/data/nsi/logos/youmesushi-1abd07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/youmesushi-1abd07.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317127,7 +317476,7 @@ }, { "question": "Yum Yum Donuts", - "icon": "./assets/data/nsi/logos/yumyumdonuts-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yumyumdonuts-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317145,7 +317494,7 @@ }, { "question": "Z!Eats", - "icon": "./assets/data/nsi/logos/zeats-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeats-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317163,7 +317512,7 @@ }, { "question": "Zahir Kebab", - "icon": "./assets/data/nsi/logos/zahirkebab-3eab78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zahirkebab-3eab78.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317181,7 +317530,7 @@ }, { "question": "Zambrero", - "icon": "./assets/data/nsi/logos/zambrero-ee9f0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zambrero-ee9f0e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317199,18 +317548,18 @@ }, { "question": "Zaxby's", - "icon": "./assets/data/nsi/logos/zaxbys-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zaxbys-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=chicken", - "official_name=Zaxby's Chicken Fingers & Buffalo Wings", "takeaway=yes", { "or": [ "brand=Zaxby's", "brand:wikidata=Q8067525", - "name=Zaxby's" + "name=Zaxby's", + "official_name=Zaxby's Chicken Fingers & Buffalo Wings" ] } ] @@ -317235,7 +317584,7 @@ }, { "question": "Zero Degrees", - "icon": "./assets/data/nsi/logos/zerodegrees-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zerodegrees-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317253,7 +317602,7 @@ }, { "question": "Zippy's", - "icon": "./assets/data/nsi/logos/zippys-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zippys-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317271,7 +317620,7 @@ }, { "question": "Zoës Kitchen", - "icon": "./assets/data/nsi/logos/zoeskitchen-4d2ff4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zoeskitchen-4d2ff4.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317289,7 +317638,7 @@ }, { "question": "ΒΕΑΤ", - "icon": "./assets/data/nsi/logos/57e3ef-6b115c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/57e3ef-6b115c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317310,7 +317659,7 @@ }, { "question": "Γρηγόρης", - "icon": "./assets/data/nsi/logos/gregorys-2c3287.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gregorys-2c3287.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317348,7 +317697,7 @@ }, { "question": "Белоруснефть", - "icon": "./assets/data/nsi/logos/ed92ce-381458.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ed92ce-381458.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317366,7 +317715,7 @@ }, { "question": "Бургер Кинг", - "icon": "./assets/data/nsi/logos/burgerking-e25654.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-e25654.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317388,7 +317737,7 @@ }, { "question": "Вкусно — и точка", - "icon": "./assets/data/nsi/logos/vkusnoitochka-7582d1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vkusnoitochka-7582d1.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -317410,7 +317759,7 @@ }, { "question": "Додо Пицца", - "icon": "./assets/data/nsi/logos/dodopizza-e25654.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dodopizza-e25654.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317432,7 +317781,7 @@ }, { "question": "Домино'c", - "icon": "./assets/data/nsi/logos/dominos-23683e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dominos-23683e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317454,7 +317803,7 @@ }, { "question": "Евро Кебаб", - "icon": "./assets/data/nsi/logos/eurokebab-7582d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurokebab-7582d1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317476,7 +317825,7 @@ }, { "question": "Крошка Картошка", - "icon": "./assets/data/nsi/logos/kroshkakartoshka-7582d1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kroshkakartoshka-7582d1.png", "osmTags": { "and": [ "amenity=fast_food", @@ -317514,7 +317863,7 @@ }, { "question": "Папа Джонс", - "icon": "./assets/data/nsi/logos/papajohns-23683e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/papajohns-23683e.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317568,7 +317917,7 @@ }, { "question": "Пузата Хата", - "icon": "./assets/data/nsi/logos/puzatahata-50e0ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puzatahata-50e0ae.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317593,7 +317942,7 @@ }, { "question": "Робин Сдобин", - "icon": "./assets/data/nsi/logos/robinsdobin-7582d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robinsdobin-7582d1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317615,7 +317964,7 @@ }, { "question": "Русский Аппетит", - "icon": "./assets/data/nsi/logos/russkiyappetit-7582d1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/russkiyappetit-7582d1.png", "osmTags": { "and": [ "amenity=fast_food", @@ -317637,7 +317986,7 @@ }, { "question": "Стардогs", - "icon": "./assets/data/nsi/logos/stardogs-7582d1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stardogs-7582d1.png", "osmTags": { "and": [ "amenity=fast_food", @@ -317659,7 +318008,7 @@ }, { "question": "Суши Wok", - "icon": "./assets/data/nsi/logos/sushiwok-7582d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiwok-7582d1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317697,7 +318046,7 @@ }, { "question": "Сушишоп", - "icon": "./assets/data/nsi/logos/sushishop-7582d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushishop-7582d1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317719,7 +318068,7 @@ }, { "question": "Теремок", - "icon": "./assets/data/nsi/logos/teremok-7582d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teremok-7582d1.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317774,7 +318123,7 @@ }, { "question": "ბურგერ კინგი", - "icon": "./assets/data/nsi/logos/burgerking-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317797,7 +318146,7 @@ }, { "question": "დანკინ დონათსი", - "icon": "./assets/data/nsi/logos/dunkindonuts-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunkindonuts-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317819,7 +318168,7 @@ }, { "question": "დეგუსტო", - "icon": "./assets/data/nsi/logos/degusto-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/degusto-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317845,7 +318194,7 @@ }, { "question": "ვენდი'ს", - "icon": "./assets/data/nsi/logos/wendys-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wendys-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317867,7 +318216,7 @@ }, { "question": "კეი ეფ სი", - "icon": "./assets/data/nsi/logos/kfc-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317890,7 +318239,7 @@ }, { "question": "მაკდონალდსი", - "icon": "./assets/data/nsi/logos/mcdonalds-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317915,7 +318264,7 @@ }, { "question": "მაკშაურმა", - "icon": "./assets/data/nsi/logos/macshaurma-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macshaurma-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -317938,7 +318287,7 @@ }, { "question": "საბვეი", - "icon": "./assets/data/nsi/logos/subway-90e404.png", + "icon": "https://data.mapcomplete.org/nsi//logos/subway-90e404.png", "osmTags": { "and": [ "amenity=fast_food", @@ -317982,7 +318331,7 @@ }, { "question": "ტემპო", - "icon": "./assets/data/nsi/logos/tempo-90e404.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tempo-90e404.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318005,7 +318354,7 @@ }, { "question": "אגדיר", - "icon": "./assets/data/nsi/logos/agadir-dbdcb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agadir-dbdcb8.png", "osmTags": { "and": [ "amenity=fast_food", @@ -318027,7 +318376,7 @@ }, { "question": "מקדונלד'ס", - "icon": "./assets/data/nsi/logos/mcdonalds-dbdcb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-dbdcb8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318070,7 +318419,7 @@ }, { "question": "עד העצם אקספרס", - "icon": "./assets/data/nsi/logos/adhaetzemexpress-dbdcb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adhaetzemexpress-dbdcb8.png", "osmTags": { "and": [ "amenity=fast_food", @@ -318092,7 +318441,7 @@ }, { "question": "פיצה פרגו", - "icon": "./assets/data/nsi/logos/pizzaprego-dbdcb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzaprego-dbdcb8.png", "osmTags": { "and": [ "amenity=fast_food", @@ -318116,7 +318465,7 @@ }, { "question": "פיצה שמש", - "icon": "./assets/data/nsi/logos/pizzashemesh-dbdcb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzashemesh-dbdcb8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318140,7 +318489,7 @@ }, { "question": "البيك", - "icon": "./assets/data/nsi/logos/albaik-060f89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albaik-060f89.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318162,7 +318511,7 @@ }, { "question": "الطازج", - "icon": "./assets/data/nsi/logos/altazaj-7c76bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altazaj-7c76bb.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318184,7 +318533,7 @@ }, { "question": "دانكن دونتس", - "icon": "./assets/data/nsi/logos/dunkindonuts-07d3e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunkindonuts-07d3e5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318206,7 +318555,7 @@ }, { "question": "دجاج كنتاكي", - "icon": "./assets/data/nsi/logos/kfc-15a250.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-15a250.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318228,7 +318577,7 @@ }, { "question": "شاورمر", - "icon": "./assets/data/nsi/logos/shawarmer-ade864.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shawarmer-ade864.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318250,7 +318599,7 @@ }, { "question": "كرسبي كريم", - "icon": "./assets/data/nsi/logos/krispykrem-e5f89b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krispykrem-e5f89b.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318272,7 +318621,7 @@ }, { "question": "كودو", - "icon": "./assets/data/nsi/logos/kudu-1b3be3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kudu-1b3be3.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318294,7 +318643,7 @@ }, { "question": "ماكدونالدز", - "icon": "./assets/data/nsi/logos/mcdonalds-19c993.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-19c993.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318316,7 +318665,7 @@ }, { "question": "هرفي", - "icon": "./assets/data/nsi/logos/herfy-5a6b9f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/herfy-5a6b9f.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318338,7 +318687,7 @@ }, { "question": "교촌치킨", - "icon": "./assets/data/nsi/logos/kyochon-c56583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kyochon-c56583.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318384,7 +318733,7 @@ }, { "question": "롯데리아", - "icon": "./assets/data/nsi/logos/lotteria-c56583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotteria-c56583.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318406,7 +318755,7 @@ }, { "question": "맘스터치", - "icon": "./assets/data/nsi/logos/momstouch-c56583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/momstouch-c56583.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318428,7 +318777,7 @@ }, { "question": "맥도날드", - "icon": "./assets/data/nsi/logos/mcdonalds-c56583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-c56583.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318450,7 +318799,7 @@ }, { "question": "버거킹", - "icon": "./assets/data/nsi/logos/burgerking-c56583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-c56583.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318493,7 +318842,7 @@ }, { "question": "크리스피크림도넛", - "icon": "./assets/data/nsi/logos/krispykreme-c56583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krispykreme-c56583.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318515,7 +318864,7 @@ }, { "question": "홍루이젠", - "icon": "./assets/data/nsi/logos/horngrueyjensandwich-c56583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/horngrueyjensandwich-c56583.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318539,7 +318888,7 @@ }, { "question": "ウェンディーズ", - "icon": "./assets/data/nsi/logos/wendys-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wendys-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318582,7 +318931,7 @@ }, { "question": "かっぱ寿司", - "icon": "./assets/data/nsi/logos/kappasushi-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kappasushi-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", @@ -318648,14 +318997,11 @@ }, { "question": "くら寿司", - "icon": "./assets/data/nsi/logos/kurasushi-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kurasushi-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=sushi", - "official_name=無添くら寿司", - "official_name:en=Muten Kura Sushi", - "official_name:ja=無添くら寿司", "takeaway=yes", { "or": [ @@ -318666,7 +319012,10 @@ "brand:wikidata=Q6445491", "name=くら寿司", "name:en=Kura Sushi", - "name:ja=くら寿司" + "name:ja=くら寿司", + "official_name=無添くら寿司", + "official_name:en=Muten Kura Sushi", + "official_name:ja=無添くら寿司" ] } ] @@ -318674,7 +319023,7 @@ }, { "question": "クリスピー・クリーム・ドーナツ", - "icon": "./assets/data/nsi/logos/krispykremedoughnuts-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krispykremedoughnuts-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318697,7 +319046,7 @@ }, { "question": "ケンタッキーフライドチキン", - "icon": "./assets/data/nsi/logos/kfc-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318720,7 +319069,7 @@ }, { "question": "ゴーゴーカレー", - "icon": "./assets/data/nsi/logos/gogocurry-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gogocurry-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318743,7 +319092,7 @@ }, { "question": "サブウェイ", - "icon": "./assets/data/nsi/logos/subway-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/subway-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", @@ -318765,7 +319114,7 @@ }, { "question": "すき家 (日本)", - "icon": "./assets/data/nsi/logos/sukiya-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sukiya-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318787,7 +319136,7 @@ }, { "question": "すき家 (臺灣)", - "icon": "./assets/data/nsi/logos/sukiya-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sukiya-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318811,7 +319160,7 @@ }, { "question": "すき家 Sukiya", - "icon": "./assets/data/nsi/logos/sukiya-9f9722.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sukiya-9f9722.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318835,14 +319184,11 @@ }, { "question": "スシロー", - "icon": "./assets/data/nsi/logos/sushiro-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiro-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", "cuisine=sushi", - "official_name=あきんどスシロー", - "official_name:en=Akindo Sushiro", - "official_name:ja=あきんどスシロー", "takeaway=yes", { "or": [ @@ -318853,7 +319199,10 @@ "name=スシロー", "name:en=Sushiro", "name:ja=スシロー", - "name:zh=壽司郎" + "name:zh=壽司郎", + "official_name=あきんどスシロー", + "official_name:en=Akindo Sushiro", + "official_name:ja=あきんどスシロー" ] } ] @@ -318861,7 +319210,7 @@ }, { "question": "ちよだ鮨", - "icon": "./assets/data/nsi/logos/chiyodasushi-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chiyodasushi-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", @@ -318887,9 +319236,6 @@ "and": [ "amenity=fast_food", "cuisine=fries", - "official_name=天丼てんや", - "official_name:en=Tendon Tenya", - "official_name:ja=天丼てんや", "takeaway=yes", { "or": [ @@ -318899,7 +319245,10 @@ "brand:wikidata=Q11319830", "name=てんや", "name:en=Tenya", - "name:ja=てんや" + "name:ja=てんや", + "official_name=天丼てんや", + "official_name:en=Tendon Tenya", + "official_name:ja=天丼てんや" ] } ] @@ -318907,7 +319256,7 @@ }, { "question": "ドミノ・ピザ", - "icon": "./assets/data/nsi/logos/dominospizza-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dominospizza-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318932,7 +319281,7 @@ }, { "question": "どんどん亭", - "icon": "./assets/data/nsi/logos/dondontei-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dondontei-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318954,7 +319303,7 @@ }, { "question": "なか卯", - "icon": "./assets/data/nsi/logos/nakau-3e7699.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nakau-3e7699.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -318976,7 +319325,7 @@ }, { "question": "バーガーキング", - "icon": "./assets/data/nsi/logos/burgerking-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -318998,7 +319347,7 @@ }, { "question": "はま寿司", - "icon": "./assets/data/nsi/logos/hamasushi-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamasushi-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319021,7 +319370,7 @@ }, { "question": "はま寿司 (臺灣)", - "icon": "./assets/data/nsi/logos/hamasushi-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamasushi-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319066,7 +319415,7 @@ }, { "question": "ピザーラ", - "icon": "./assets/data/nsi/logos/pizzala-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzala-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319088,7 +319437,7 @@ }, { "question": "ピザハット", - "icon": "./assets/data/nsi/logos/pizzahut-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzahut-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", @@ -319131,7 +319480,7 @@ }, { "question": "ファーストキッチン", - "icon": "./assets/data/nsi/logos/firstkitchen-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstkitchen-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", @@ -319153,7 +319502,7 @@ }, { "question": "フレッシュネスバーガー", - "icon": "./assets/data/nsi/logos/freshnessburger-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/freshnessburger-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", @@ -319175,7 +319524,7 @@ }, { "question": "ほっかほっか亭", - "icon": "./assets/data/nsi/logos/hokkahokkatei-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hokkahokkatei-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319197,7 +319546,7 @@ }, { "question": "ほっともっと", - "icon": "./assets/data/nsi/logos/hottomotto-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hottomotto-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", @@ -319219,7 +319568,7 @@ }, { "question": "マクドナルド", - "icon": "./assets/data/nsi/logos/mcdonalds-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319241,7 +319590,7 @@ }, { "question": "ミスタードーナツ", - "icon": "./assets/data/nsi/logos/misterdonut-3e7699.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/misterdonut-3e7699.svg", "osmTags": { "and": [ "amenity=fast_food", @@ -319263,7 +319612,7 @@ }, { "question": "モスバーガー", - "icon": "./assets/data/nsi/logos/mosburger-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mosburger-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319285,7 +319634,7 @@ }, { "question": "ゆで太郎", - "icon": "./assets/data/nsi/logos/yudetaro-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yudetaro-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319307,7 +319656,7 @@ }, { "question": "ラーメン二郎", - "icon": "./assets/data/nsi/logos/ramenjiro-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ramenjiro-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319329,7 +319678,7 @@ }, { "question": "ロッテリア", - "icon": "./assets/data/nsi/logos/lotteria-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotteria-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319351,7 +319700,7 @@ }, { "question": "一粥麵 Super Super Congee & Noodles", - "icon": "./assets/data/nsi/logos/supersupercongeeandnoodles-9f9722.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supersupercongeeandnoodles-9f9722.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319402,7 +319751,7 @@ }, { "question": "丸亀製麺", - "icon": "./assets/data/nsi/logos/marugameseimen-f9a382.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marugameseimen-f9a382.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319457,7 +319806,7 @@ }, { "question": "元気寿司", - "icon": "./assets/data/nsi/logos/genkisushi-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genkisushi-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319479,7 +319828,7 @@ }, { "question": "八方雲集", - "icon": "./assets/data/nsi/logos/eightway-70aa35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eightway-70aa35.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319501,7 +319850,7 @@ }, { "question": "八方雲集 Bafang Dumpling", - "icon": "./assets/data/nsi/logos/bafangdumpling-17dd9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bafangdumpling-17dd9a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319548,7 +319897,7 @@ }, { "question": "吉野家", - "icon": "./assets/data/nsi/logos/yoshinoya-de27a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yoshinoya-de27a3.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319576,7 +319925,7 @@ }, { "question": "吉野家 Yoshinoya", - "icon": "./assets/data/nsi/logos/yoshinoya-17dd9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yoshinoya-17dd9a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319646,7 +319995,7 @@ }, { "question": "大家乐", - "icon": "./assets/data/nsi/logos/cafedecoral-19ae3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafedecoral-19ae3c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319668,7 +320017,7 @@ }, { "question": "大家樂 Café de Coral", - "icon": "./assets/data/nsi/logos/cafedecoral-17dd9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafedecoral-17dd9a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319694,7 +320043,7 @@ }, { "question": "大快活 Fairwood", - "icon": "./assets/data/nsi/logos/fairwood-9f9722.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fairwood-9f9722.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319741,7 +320090,7 @@ }, { "question": "宜家家居餐廳 IKEA Restaurant", - "icon": "./assets/data/nsi/logos/ikearestaurant-17dd9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikearestaurant-17dd9a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319763,7 +320112,7 @@ }, { "question": "宜家餐厅", - "icon": "./assets/data/nsi/logos/ikearestaurant-19ae3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikearestaurant-19ae3c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319785,7 +320134,7 @@ }, { "question": "富士そば", - "icon": "./assets/data/nsi/logos/fujisoba-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fujisoba-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319872,7 +320221,7 @@ }, { "question": "幸楽苑", - "icon": "./assets/data/nsi/logos/kourakuen-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kourakuen-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -319936,7 +320285,7 @@ }, { "question": "弘爺漢堡", - "icon": "./assets/data/nsi/logos/hongyahambuger-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongyahambuger-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320001,7 +320350,7 @@ }, { "question": "拉亞漢堡", - "icon": "./assets/data/nsi/logos/layaburger-60a4d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/layaburger-60a4d5.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320048,7 +320397,7 @@ }, { "question": "摩斯漢堡", - "icon": "./assets/data/nsi/logos/mosburger-c9f110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mosburger-c9f110.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320070,7 +320419,7 @@ }, { "question": "摩斯漢堡 MOS Burger", - "icon": "./assets/data/nsi/logos/mosburger-17dd9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mosburger-17dd9a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320096,7 +320445,7 @@ }, { "question": "日高屋", - "icon": "./assets/data/nsi/logos/hidakaya-3e7699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hidakaya-3e7699.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320118,7 +320467,7 @@ }, { "question": "早安美芝城", - "icon": "./assets/data/nsi/logos/goodmorningmacc-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodmorningmacc-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320163,7 +320512,7 @@ }, { "question": "松屋", - "icon": "./assets/data/nsi/logos/matsuya-992e2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/matsuya-992e2a.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320190,7 +320539,7 @@ }, { "question": "栄寿司", - "icon": "./assets/data/nsi/logos/sakaesushi-1ef1da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sakaesushi-1ef1da.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320254,7 +320603,7 @@ }, { "question": "汉堡王", - "icon": "./assets/data/nsi/logos/burgerking-65b4e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-65b4e8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320276,7 +320625,7 @@ }, { "question": "漢堡王", - "icon": "./assets/data/nsi/logos/burgerking-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320300,7 +320649,7 @@ }, { "question": "瑞麟美而美", - "icon": "./assets/data/nsi/logos/rueilinmeiandmei-60a4d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rueilinmeiandmei-60a4d5.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320323,7 +320672,7 @@ }, { "question": "真功夫", - "icon": "./assets/data/nsi/logos/kungfu-65b4e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kungfu-65b4e8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320366,7 +320715,7 @@ }, { "question": "築地銀だこ", - "icon": "./assets/data/nsi/logos/gindaco-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gindaco-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320390,7 +320739,7 @@ }, { "question": "築地銀だこ Gindaco", - "icon": "./assets/data/nsi/logos/gindaco-9f9722.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gindaco-9f9722.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320412,7 +320761,7 @@ }, { "question": "繼光香香雞", - "icon": "./assets/data/nsi/logos/jandgfriedchicken-60a4d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jandgfriedchicken-60a4d5.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320442,7 +320791,7 @@ }, { "question": "繼光香香雞 J&G Fried Chicken", - "icon": "./assets/data/nsi/logos/jandgfriedchicken-17dd9a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jandgfriedchicken-17dd9a.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320464,7 +320813,7 @@ }, { "question": "美心MX Maxim's MX", - "icon": "./assets/data/nsi/logos/maximsmx-9f9722.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maximsmx-9f9722.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320507,7 +320856,7 @@ }, { "question": "翠华餐厅", - "icon": "./assets/data/nsi/logos/tsuiwahrestaurant-19ae3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsuiwahrestaurant-19ae3c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320529,7 +320878,7 @@ }, { "question": "翠華餐廳 Tsui Wah Restaurant", - "icon": "./assets/data/nsi/logos/tsuiwahrestaurant-8b51a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsuiwahrestaurant-8b51a0.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320551,7 +320900,7 @@ }, { "question": "老曾记", - "icon": "./assets/data/nsi/logos/oldchangkee-65b4e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldchangkee-65b4e8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320573,7 +320922,7 @@ }, { "question": "肯德基", - "icon": "./assets/data/nsi/logos/kfc-70aa35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-70aa35.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320595,7 +320944,7 @@ }, { "question": "肯德基 KFC", - "icon": "./assets/data/nsi/logos/kfc-17dd9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-17dd9a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320621,7 +320970,7 @@ }, { "question": "芳珍蔬食", - "icon": "./assets/data/nsi/logos/fjveggie-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fjveggie-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320647,7 +320996,7 @@ }, { "question": "華御結 hana-musubi", - "icon": "./assets/data/nsi/logos/hanamusubi-9f9722.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hanamusubi-9f9722.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320669,7 +321018,7 @@ }, { "question": "藏壽司", - "icon": "./assets/data/nsi/logos/kurasushi-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kurasushi-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320691,7 +321040,7 @@ }, { "question": "赛百味", - "icon": "./assets/data/nsi/logos/subway-19ae3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/subway-19ae3c.png", "osmTags": { "and": [ "amenity=fast_food", @@ -320735,7 +321084,7 @@ }, { "question": "达美乐比萨", - "icon": "./assets/data/nsi/logos/dominos-19ae3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dominos-19ae3c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320757,14 +321106,11 @@ }, { "question": "道とん堀", - "icon": "./assets/data/nsi/logos/dohtonbori-3e7699.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dohtonbori-3e7699.png", "osmTags": { "and": [ "amenity=fast_food", "cuisine=okonomiyaki", - "official_name=お好み焼道とん堀", - "official_name:en=Okonomiyaki Dohtonbori", - "official_name:ja=お好み焼道とん堀", "takeaway=yes", { "or": [ @@ -320774,7 +321120,10 @@ "brand:wikidata=Q11640595", "name=道とん堀", "name:en=Dohtonbori", - "name:ja=道とん堀" + "name:ja=道とん堀", + "official_name=お好み焼道とん堀", + "official_name:en=Okonomiyaki Dohtonbori", + "official_name:ja=お好み焼道とん堀" ] } ] @@ -320782,7 +321131,7 @@ }, { "question": "達美樂披薩", - "icon": "./assets/data/nsi/logos/dominos-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dominos-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320810,7 +321159,6 @@ "and": [ "amenity=fast_food", "cuisine=sushi", - "official_name=すし銚子丸", "takeaway=yes", { "or": [ @@ -320820,7 +321168,8 @@ "brand:wikidata=Q11650214", "name=銚子丸", "name:en=Choushimaru", - "name:ja=銚子丸" + "name:ja=銚子丸", + "official_name=すし銚子丸" ] } ] @@ -320828,7 +321177,7 @@ }, { "question": "頂呱呱", - "icon": "./assets/data/nsi/logos/tkkfriedchicken-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tkkfriedchicken-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320850,7 +321199,7 @@ }, { "question": "顶呱呱", - "icon": "./assets/data/nsi/logos/tkkfriedchicken-65b4e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tkkfriedchicken-65b4e8.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320872,7 +321221,7 @@ }, { "question": "食其家", - "icon": "./assets/data/nsi/logos/sukiya-19ae3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sukiya-19ae3c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320917,7 +321266,7 @@ }, { "question": "麥當勞", - "icon": "./assets/data/nsi/logos/mcdonalds-60a4d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-60a4d5.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320941,7 +321290,7 @@ }, { "question": "麥當勞 McDonald's", - "icon": "./assets/data/nsi/logos/mcdonalds-17dd9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-17dd9a.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320967,7 +321316,7 @@ }, { "question": "麦当劳", - "icon": "./assets/data/nsi/logos/mcdonalds-19ae3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-19ae3c.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -320989,7 +321338,7 @@ }, { "question": "齊柏林熱狗 Zeppelin Hot Dog", - "icon": "./assets/data/nsi/logos/zeppelinhotdog-9f9722.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeppelinhotdog-9f9722.jpg", "osmTags": { "and": [ "amenity=fast_food", @@ -321011,7 +321360,7 @@ }, { "question": "Little Free Pantry", - "icon": "./assets/data/nsi/logos/littlefreepantry-f0545b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/littlefreepantry-f0545b.jpg", "osmTags": { "and": [ "amenity=food_sharing", @@ -321027,7 +321376,7 @@ }, { "question": "Madame Frigo", - "icon": "./assets/data/nsi/logos/madamefrigo-7b9f77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madamefrigo-7b9f77.jpg", "osmTags": { "and": [ "amenity=food_sharing", @@ -321059,7 +321408,7 @@ }, { "question": "7-Eleven", - "icon": "./assets/data/nsi/logos/7eleven-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7eleven-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321075,7 +321424,7 @@ }, { "question": "76", - "icon": "./assets/data/nsi/logos/76-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/76-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321091,7 +321440,7 @@ }, { "question": "8 à Huit", - "icon": "./assets/data/nsi/logos/8ahuit-3772a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/8ahuit-3772a0.svg", "osmTags": { "and": [ "amenity=fuel", @@ -321122,7 +321471,7 @@ }, { "question": "Aegean", - "icon": "./assets/data/nsi/logos/aegean-c67f2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aegean-c67f2c.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321155,7 +321504,7 @@ }, { "question": "Afriquia", - "icon": "./assets/data/nsi/logos/afriquia-d0fa88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/afriquia-d0fa88.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321171,7 +321520,7 @@ }, { "question": "Afriquia أفريقيا", - "icon": "./assets/data/nsi/logos/afriquia-144a57.png", + "icon": "https://data.mapcomplete.org/nsi//logos/afriquia-144a57.png", "osmTags": { "and": [ "amenity=fuel", @@ -321237,7 +321586,7 @@ }, { "question": "Agrola", - "icon": "./assets/data/nsi/logos/agrola-27a80f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrola-27a80f.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321253,7 +321602,7 @@ }, { "question": "Air Liquide", - "icon": "./assets/data/nsi/logos/airliquide-b3d110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airliquide-b3d110.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321269,7 +321618,7 @@ }, { "question": "Alcampo", - "icon": "./assets/data/nsi/logos/alcampo-83f854.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alcampo-83f854.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321285,7 +321634,7 @@ }, { "question": "Ale", - "icon": "./assets/data/nsi/logos/ale-c14748.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ale-c14748.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321300,7 +321649,7 @@ }, { "question": "Alexela", - "icon": "./assets/data/nsi/logos/alexela-00a67a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alexela-00a67a.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321350,7 +321699,7 @@ }, { "question": "Allied Petroleum", - "icon": "./assets/data/nsi/logos/alliedpetroleum-088dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliedpetroleum-088dbb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321366,16 +321715,16 @@ }, { "question": "Aloha Petroleum", - "icon": "./assets/data/nsi/logos/alohapetroleum-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alohapetroleum-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", - "official_name=Aloha Petroleum Ltd", { "or": [ "brand=Aloha Petroleum", "brand:wikidata=Q4734197", - "name=Aloha Petroleum" + "name=Aloha Petroleum", + "official_name=Aloha Petroleum Ltd" ] } ] @@ -321383,7 +321732,7 @@ }, { "question": "Alon", - "icon": "./assets/data/nsi/logos/alon-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alon-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321399,7 +321748,7 @@ }, { "question": "Alpet", - "icon": "./assets/data/nsi/logos/alpet-67f29f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alpet-67f29f.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321415,7 +321764,7 @@ }, { "question": "Alves Bandeira", - "icon": "./assets/data/nsi/logos/alvesbandeira-bb4e16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alvesbandeira-bb4e16.png", "osmTags": { "and": [ "amenity=fuel", @@ -321446,7 +321795,7 @@ }, { "question": "Amic", - "icon": "./assets/data/nsi/logos/amic-4797a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amic-4797a1.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321477,7 +321826,7 @@ }, { "question": "Amoco", - "icon": "./assets/data/nsi/logos/amoco-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amoco-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -321493,7 +321842,7 @@ }, { "question": "Ampol", - "icon": "./assets/data/nsi/logos/ampol-9ed9c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ampol-9ed9c0.png", "osmTags": { "and": [ "amenity=fuel", @@ -321509,7 +321858,7 @@ }, { "question": "Amser Oil", - "icon": "./assets/data/nsi/logos/amseroil-fdaf22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amseroil-fdaf22.png", "osmTags": { "and": [ "amenity=fuel", @@ -321539,16 +321888,16 @@ }, { "question": "ANCAP", - "icon": "./assets/data/nsi/logos/ancap-c21fc2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ancap-c21fc2.png", "osmTags": { "and": [ "amenity=fuel", - "official_name=Administración Nacional de Combustibles, Alcoholes y Portland", { "or": [ "brand=ANCAP", "brand:wikidata=Q2824522", - "name=ANCAP" + "name=ANCAP", + "official_name=Administración Nacional de Combustibles, Alcoholes y Portland" ] } ] @@ -321556,7 +321905,7 @@ }, { "question": "ANP", - "icon": "./assets/data/nsi/logos/anp-ed4144.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anp-ed4144.png", "osmTags": { "and": [ "amenity=fuel", @@ -321606,7 +321955,7 @@ }, { "question": "Applegreen", - "icon": "./assets/data/nsi/logos/applegreen-08ff39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/applegreen-08ff39.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321622,7 +321971,7 @@ }, { "question": "Aral", - "icon": "./assets/data/nsi/logos/aral-f69389.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aral-f69389.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321638,7 +321987,7 @@ }, { "question": "Arco", - "icon": "./assets/data/nsi/logos/arco-c87a80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arco-c87a80.png", "osmTags": { "and": [ "amenity=fuel", @@ -321654,7 +322003,7 @@ }, { "question": "Argos", - "icon": "./assets/data/nsi/logos/argos-6cdea6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/argos-6cdea6.png", "osmTags": { "and": [ "amenity=fuel", @@ -321670,7 +322019,7 @@ }, { "question": "AS 24", - "icon": "./assets/data/nsi/logos/as24-3463db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/as24-3463db.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321687,7 +322036,7 @@ }, { "question": "Asda", - "icon": "./assets/data/nsi/logos/asda-20aed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asda-20aed2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321703,7 +322052,7 @@ }, { "question": "Asda Express", - "icon": "./assets/data/nsi/logos/asdaexpress-20aed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asdaexpress-20aed2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321734,7 +322083,7 @@ }, { "question": "Astron Energy", - "icon": "./assets/data/nsi/logos/astronenergy-d9e54e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/astronenergy-d9e54e.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321750,7 +322099,7 @@ }, { "question": "Atem", - "icon": "./assets/data/nsi/logos/atem-c14748.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atem-c14748.png", "osmTags": { "and": [ "amenity=fuel", @@ -321766,7 +322115,7 @@ }, { "question": "Auchan", - "icon": "./assets/data/nsi/logos/auchan-fcb99f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchan-fcb99f.png", "osmTags": { "and": [ "amenity=fuel", @@ -321782,7 +322131,7 @@ }, { "question": "AutoLPGas", - "icon": "./assets/data/nsi/logos/autolpgas-7489db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autolpgas-7489db.png", "osmTags": { "and": [ "amenity=fuel", @@ -321802,7 +322151,7 @@ }, { "question": "Avanti", - "icon": "./assets/data/nsi/logos/avanti-565075.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avanti-565075.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321818,7 +322167,7 @@ }, { "question": "Avia", - "icon": "./assets/data/nsi/logos/avia-6504b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avia-6504b2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321849,7 +322198,7 @@ }, { "question": "Avin", - "icon": "./assets/data/nsi/logos/avin-c67f2c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avin-c67f2c.png", "osmTags": { "and": [ "amenity=fuel", @@ -321865,7 +322214,7 @@ }, { "question": "Axion", - "icon": "./assets/data/nsi/logos/axion-b21aa1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axion-b21aa1.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321881,7 +322230,7 @@ }, { "question": "Aygaz", - "icon": "./assets/data/nsi/logos/aygaz-ec7588.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aygaz-ec7588.svg", "osmTags": { "and": [ "amenity=fuel", @@ -321897,7 +322246,7 @@ }, { "question": "Aytemiz", - "icon": "./assets/data/nsi/logos/aytemiz-ec7588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aytemiz-ec7588.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321913,7 +322262,7 @@ }, { "question": "Azpetrol", - "icon": "./assets/data/nsi/logos/azpetrol-0dbc25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/azpetrol-0dbc25.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321944,7 +322293,7 @@ }, { "question": "Ballenoil", - "icon": "./assets/data/nsi/logos/ballenoil-83f854.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ballenoil-83f854.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321960,7 +322309,7 @@ }, { "question": "Baltic Petroleum", - "icon": "./assets/data/nsi/logos/balticpetroleum-d665db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/balticpetroleum-d665db.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -321990,16 +322339,16 @@ }, { "question": "Bapco", - "icon": "./assets/data/nsi/logos/bapco-f97176.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bapco-f97176.jpg", "osmTags": { "and": [ "amenity=fuel", - "official_name=Bahrain Petroleum Company", { "or": [ "brand=Bapco", "brand:wikidata=Q803640", - "name=Bapco" + "name=Bapco", + "official_name=Bahrain Petroleum Company" ] } ] @@ -322039,7 +322388,7 @@ }, { "question": "Bennett's Petroleum", - "icon": "./assets/data/nsi/logos/bennettspetroleum-5e56e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bennettspetroleum-5e56e7.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322055,7 +322404,7 @@ }, { "question": "Benzina", - "icon": "./assets/data/nsi/logos/benzina-5f489f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benzina-5f489f.png", "osmTags": { "and": [ "amenity=fuel", @@ -322071,7 +322420,7 @@ }, { "question": "Berkman", - "icon": "./assets/data/nsi/logos/berkman-6cdea6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berkman-6cdea6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322102,7 +322451,7 @@ }, { "question": "Beyfin", - "icon": "./assets/data/nsi/logos/beyfin-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beyfin-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322133,7 +322482,7 @@ }, { "question": "bft", - "icon": "./assets/data/nsi/logos/bft-495186.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bft-495186.svg", "osmTags": { "and": [ "amenity=fuel", @@ -322164,7 +322513,7 @@ }, { "question": "Bharat Petroleum", - "icon": "./assets/data/nsi/logos/bharatpetroleum-989925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bharatpetroleum-989925.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322180,7 +322529,7 @@ }, { "question": "BHPetrol", - "icon": "./assets/data/nsi/logos/bhpetrol-d13f8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bhpetrol-d13f8d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322196,7 +322545,7 @@ }, { "question": "bi1", - "icon": "./assets/data/nsi/logos/bi1-acec89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bi1-acec89.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322227,7 +322576,7 @@ }, { "question": "Biomax", - "icon": "./assets/data/nsi/logos/biomax-a98521.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biomax-a98521.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322243,7 +322592,7 @@ }, { "question": "BJ's Gas", - "icon": "./assets/data/nsi/logos/bjsgas-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bjsgas-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322289,7 +322638,7 @@ }, { "question": "BonÀrea", - "icon": "./assets/data/nsi/logos/bonarea-83f854.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonarea-83f854.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322305,7 +322654,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-aef194.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-aef194.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322336,7 +322685,7 @@ }, { "question": "BR", - "icon": "./assets/data/nsi/logos/br-c14748.png", + "icon": "https://data.mapcomplete.org/nsi//logos/br-c14748.png", "osmTags": { "and": [ "amenity=fuel", @@ -322352,7 +322701,7 @@ }, { "question": "Buc-ee's", - "icon": "./assets/data/nsi/logos/bucees-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bucees-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -322368,7 +322717,7 @@ }, { "question": "BVS", - "icon": "./assets/data/nsi/logos/bvs-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bvs-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322384,16 +322733,16 @@ }, { "question": "BWOC", - "icon": "./assets/data/nsi/logos/bwoc-20aed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bwoc-20aed2.jpg", "osmTags": { "and": [ "amenity=fuel", - "official_name=Bob Wayne's Oil Company", { "or": [ "brand=BWOC", "brand:wikidata=Q4836845", - "name=BWOC" + "name=BWOC", + "official_name=Bob Wayne's Oil Company" ] } ] @@ -322401,7 +322750,7 @@ }, { "question": "Byrne Dairy", - "icon": "./assets/data/nsi/logos/byrnedairy-a4f01d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byrnedairy-a4f01d.png", "osmTags": { "and": [ "amenity=fuel", @@ -322417,7 +322766,7 @@ }, { "question": "Caltex", - "icon": "./assets/data/nsi/logos/caltex-a02c05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caltex-a02c05.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322433,7 +322782,7 @@ }, { "question": "Canadian Tire Gas+", - "icon": "./assets/data/nsi/logos/canadiantire-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadiantire-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322468,7 +322817,7 @@ }, { "question": "Carrefour", - "icon": "./assets/data/nsi/logos/carrefour-b3d110.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-b3d110.png", "osmTags": { "and": [ "amenity=fuel", @@ -322514,7 +322863,7 @@ }, { "question": "Carroll Motor Fuels", - "icon": "./assets/data/nsi/logos/carrollmotorfuels-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carrollmotorfuels-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322530,7 +322879,7 @@ }, { "question": "Casey's General Store", - "icon": "./assets/data/nsi/logos/caseysgeneralstore-b3d110.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caseysgeneralstore-b3d110.svg", "osmTags": { "and": [ "amenity=fuel", @@ -322561,7 +322910,7 @@ }, { "question": "Casino", - "icon": "./assets/data/nsi/logos/casino-3772a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casino-3772a0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322577,7 +322926,7 @@ }, { "question": "CEFCO", - "icon": "./assets/data/nsi/logos/cefco-7de6f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cefco-7de6f8.png", "osmTags": { "and": [ "amenity=fuel", @@ -322593,7 +322942,7 @@ }, { "question": "Cenex", - "icon": "./assets/data/nsi/logos/cenex-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cenex-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -322652,16 +323001,16 @@ }, { "question": "Certified", - "icon": "./assets/data/nsi/logos/certified-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/certified-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", - "official_name=Certified Oil", { "or": [ "brand=Certified", "brand:wikidata=Q100148356", - "name=Certified" + "name=Certified", + "official_name=Certified Oil" ] } ] @@ -322684,7 +323033,7 @@ }, { "question": "Challenge", - "icon": "./assets/data/nsi/logos/challenge-088dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/challenge-088dbb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322700,7 +323049,7 @@ }, { "question": "Champion Oil", - "icon": "./assets/data/nsi/logos/champion-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/champion-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322732,7 +323081,7 @@ }, { "question": "Chevron", - "icon": "./assets/data/nsi/logos/chevron-b3d110.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chevron-b3d110.png", "osmTags": { "and": [ "amenity=fuel", @@ -322748,7 +323097,7 @@ }, { "question": "Chipo", - "icon": "./assets/data/nsi/logos/chipo-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chipo-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322779,7 +323128,7 @@ }, { "question": "Circle K", - "icon": "./assets/data/nsi/logos/circlek-b3d110.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-b3d110.png", "osmTags": { "and": [ "amenity=fuel", @@ -322795,7 +323144,7 @@ }, { "question": "Citgo", - "icon": "./assets/data/nsi/logos/citgo-16b3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citgo-16b3c2.png", "osmTags": { "and": [ "amenity=fuel", @@ -322811,7 +323160,7 @@ }, { "question": "Clark", - "icon": "./assets/data/nsi/logos/clark-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clark-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -322827,7 +323176,7 @@ }, { "question": "Classic", - "icon": "./assets/data/nsi/logos/classic-495186.png", + "icon": "https://data.mapcomplete.org/nsi//logos/classic-495186.png", "osmTags": { "and": [ "amenity=fuel", @@ -322859,7 +323208,7 @@ }, { "question": "Co-op (Canada)", - "icon": "./assets/data/nsi/logos/coop-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322906,7 +323255,7 @@ }, { "question": "Conoco", - "icon": "./assets/data/nsi/logos/conoco-c5cf43.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/conoco-c5cf43.svg", "osmTags": { "and": [ "amenity=fuel", @@ -322936,7 +323285,7 @@ }, { "question": "Copec", - "icon": "./assets/data/nsi/logos/copec-16fba4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/copec-16fba4.svg", "osmTags": { "and": [ "amenity=fuel", @@ -322952,7 +323301,7 @@ }, { "question": "Copetrol", - "icon": "./assets/data/nsi/logos/copetrol-c4a95f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/copetrol-c4a95f.png", "osmTags": { "and": [ "amenity=fuel", @@ -322982,7 +323331,7 @@ }, { "question": "Cosan", - "icon": "./assets/data/nsi/logos/cosan-c14748.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosan-c14748.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -322998,7 +323347,7 @@ }, { "question": "Costantin", - "icon": "./assets/data/nsi/logos/costantin-e8f712.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costantin-e8f712.svg", "osmTags": { "and": [ "amenity=fuel", @@ -323014,7 +323363,7 @@ }, { "question": "Costco Gasoline", - "icon": "./assets/data/nsi/logos/costcogasoline-10ec5c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcogasoline-10ec5c.svg", "osmTags": { "and": [ "amenity=fuel", @@ -323030,7 +323379,7 @@ }, { "question": "Couche-Tard", - "icon": "./assets/data/nsi/logos/couchetard-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/couchetard-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323075,7 +323424,7 @@ }, { "question": "Crodux", - "icon": "./assets/data/nsi/logos/crodux-a8f5c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crodux-a8f5c5.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323121,7 +323470,7 @@ }, { "question": "Cumberland Farms", - "icon": "./assets/data/nsi/logos/cumberlandfarms-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cumberlandfarms-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323137,7 +323486,7 @@ }, { "question": "Cupet", - "icon": "./assets/data/nsi/logos/cupet-e04f92.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cupet-e04f92.png", "osmTags": { "and": [ "amenity=fuel", @@ -323167,7 +323516,7 @@ }, { "question": "DALIOIL", - "icon": "./assets/data/nsi/logos/dalioil-11d3b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dalioil-11d3b6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323197,7 +323546,7 @@ }, { "question": "DATS 24", - "icon": "./assets/data/nsi/logos/dats24-08f029.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dats24-08f029.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323213,7 +323562,7 @@ }, { "question": "Delek", - "icon": "./assets/data/nsi/logos/delek-bb4acb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/delek-bb4acb.svg", "osmTags": { "and": [ "amenity=fuel", @@ -323232,7 +323581,7 @@ }, { "question": "Delta (Costa Rica/Panama)", - "icon": "./assets/data/nsi/logos/delta-1fbae0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delta-1fbae0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323263,7 +323612,7 @@ }, { "question": "Delta Sonic", - "icon": "./assets/data/nsi/logos/deltasonic-66290c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deltasonic-66290c.png", "osmTags": { "and": [ "amenity=fuel", @@ -323338,7 +323687,7 @@ }, { "question": "DK", - "icon": "./assets/data/nsi/logos/dk-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dk-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323354,7 +323703,7 @@ }, { "question": "Domo", - "icon": "./assets/data/nsi/logos/domo-04874d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/domo-04874d.svg", "osmTags": { "and": [ "amenity=fuel", @@ -323370,7 +323719,7 @@ }, { "question": "Dyneff", - "icon": "./assets/data/nsi/logos/dyneff-addd1b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dyneff-addd1b.svg", "osmTags": { "and": [ "amenity=fuel", @@ -323386,7 +323735,7 @@ }, { "question": "Eco Petrol", - "icon": "./assets/data/nsi/logos/ecopetrol-b450da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecopetrol-b450da.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323404,7 +323753,7 @@ }, { "question": "EcoOil", - "icon": "./assets/data/nsi/logos/ecooil-289efc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ecooil-289efc.png", "osmTags": { "and": [ "amenity=fuel", @@ -323435,7 +323784,7 @@ }, { "question": "EG Australia", - "icon": "./assets/data/nsi/logos/egaustralia-9ed9c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/egaustralia-9ed9c0.png", "osmTags": { "and": [ "amenity=fuel", @@ -323468,7 +323817,7 @@ }, { "question": "EKO (Canada)", - "icon": "./assets/data/nsi/logos/eko-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323484,7 +323833,7 @@ }, { "question": "EKO (Cyprus)", - "icon": "./assets/data/nsi/logos/eko-96daf2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-96daf2.png", "osmTags": { "and": [ "amenity=fuel", @@ -323500,7 +323849,7 @@ }, { "question": "EKO (Montenegro)", - "icon": "./assets/data/nsi/logos/eko-b273c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-b273c8.png", "osmTags": { "and": [ "amenity=fuel", @@ -323516,7 +323865,7 @@ }, { "question": "EKO (Ελλάδα)", - "icon": "./assets/data/nsi/logos/eko-c67f2c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-c67f2c.png", "osmTags": { "and": [ "amenity=fuel", @@ -323532,7 +323881,7 @@ }, { "question": "EKO (България)", - "icon": "./assets/data/nsi/logos/eko-b450da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-b450da.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323550,7 +323899,7 @@ }, { "question": "EKO (Србија)", - "icon": "./assets/data/nsi/logos/eko-a971aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eko-a971aa.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323566,7 +323915,7 @@ }, { "question": "Elan", - "icon": "./assets/data/nsi/logos/elan-3c75bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elan-3c75bd.svg", "osmTags": { "and": [ "amenity=fuel", @@ -323582,7 +323931,7 @@ }, { "question": "Emarat", - "icon": "./assets/data/nsi/logos/emarat-b7987c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emarat-b7987c.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323617,7 +323966,7 @@ }, { "question": "ENEOS", - "icon": "./assets/data/nsi/logos/eneos-fbe2e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneos-fbe2e4.png", "osmTags": { "and": [ "amenity=fuel", @@ -323637,7 +323986,7 @@ }, { "question": "Enercoop", - "icon": "./assets/data/nsi/logos/enercoop-e8f712.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enercoop-e8f712.png", "osmTags": { "and": [ "amenity=fuel", @@ -323653,7 +324002,7 @@ }, { "question": "Energas", - "icon": "./assets/data/nsi/logos/energas-e8f712.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energas-e8f712.png", "osmTags": { "and": [ "amenity=fuel", @@ -323669,7 +324018,7 @@ }, { "question": "Enerpetroli", - "icon": "./assets/data/nsi/logos/enerpetroli-e8f712.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enerpetroli-e8f712.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323685,7 +324034,7 @@ }, { "question": "Engen", - "icon": "./assets/data/nsi/logos/engen-506e13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engen-506e13.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323701,7 +324050,7 @@ }, { "question": "Engen Truck Stop", - "icon": "./assets/data/nsi/logos/truckstop-506e13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truckstop-506e13.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323718,7 +324067,7 @@ }, { "question": "Eni", - "icon": "./assets/data/nsi/logos/eni-0330be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eni-0330be.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323734,7 +324083,7 @@ }, { "question": "Enmarket", - "icon": "./assets/data/nsi/logos/enmarket-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enmarket-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323750,7 +324099,7 @@ }, { "question": "Equador", - "icon": "./assets/data/nsi/logos/equador-c14748.png", + "icon": "https://data.mapcomplete.org/nsi//logos/equador-c14748.png", "osmTags": { "and": [ "amenity=fuel", @@ -323766,7 +324115,7 @@ }, { "question": "EsclatOil", - "icon": "./assets/data/nsi/logos/esclatoil-83f854.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esclatoil-83f854.png", "osmTags": { "and": [ "amenity=fuel", @@ -323797,7 +324146,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-053960.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-053960.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323813,7 +324162,7 @@ }, { "question": "Esso Express", - "icon": "./assets/data/nsi/logos/essoexpress-4973ca.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/essoexpress-4973ca.svg", "osmTags": { "and": [ "amenity=fuel", @@ -323858,7 +324207,7 @@ }, { "question": "EuroOil (Česko)", - "icon": "./assets/data/nsi/logos/eurooil-45c895.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurooil-45c895.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323874,7 +324223,7 @@ }, { "question": "Europam", - "icon": "./assets/data/nsi/logos/europam-e8f712.png", + "icon": "https://data.mapcomplete.org/nsi//logos/europam-e8f712.png", "osmTags": { "and": [ "amenity=fuel", @@ -323890,7 +324239,7 @@ }, { "question": "Everfuel", - "icon": "./assets/data/nsi/logos/everfuel-06f3d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/everfuel-06f3d9.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323921,7 +324270,7 @@ }, { "question": "Exxon", - "icon": "./assets/data/nsi/logos/exxon-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exxon-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323952,7 +324301,7 @@ }, { "question": "Fas Gas", - "icon": "./assets/data/nsi/logos/fasgas-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fasgas-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -323998,7 +324347,7 @@ }, { "question": "Fieten Olie", - "icon": "./assets/data/nsi/logos/fietenolie-6cdea6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fietenolie-6cdea6.png", "osmTags": { "and": [ "amenity=fuel", @@ -324014,7 +324363,7 @@ }, { "question": "Firezone", - "icon": "./assets/data/nsi/logos/firezone-6cdea6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firezone-6cdea6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324044,7 +324393,7 @@ }, { "question": "Flyers", - "icon": "./assets/data/nsi/logos/flyers-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flyers-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324064,7 +324413,7 @@ }, { "question": "Flying J", - "icon": "./assets/data/nsi/logos/flyingj-337af2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/flyingj-337af2.png", "osmTags": { "and": [ "amenity=fuel", @@ -324080,7 +324429,7 @@ }, { "question": "Flying V", - "icon": "./assets/data/nsi/logos/flyingv-289efc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/flyingv-289efc.png", "osmTags": { "and": [ "amenity=fuel", @@ -324096,7 +324445,7 @@ }, { "question": "Food 4 Less", - "icon": "./assets/data/nsi/logos/food4less-25dc49.png", + "icon": "https://data.mapcomplete.org/nsi//logos/food4less-25dc49.png", "osmTags": { "and": [ "amenity=fuel", @@ -324112,7 +324461,7 @@ }, { "question": "Foods Co", - "icon": "./assets/data/nsi/logos/foodsco-b96be0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foodsco-b96be0.png", "osmTags": { "and": [ "amenity=fuel", @@ -324128,7 +324477,7 @@ }, { "question": "Fraga Oil", - "icon": "./assets/data/nsi/logos/fragaoil-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fragaoil-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324146,7 +324495,7 @@ }, { "question": "Fred Meyer", - "icon": "./assets/data/nsi/logos/fredmeyer-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fredmeyer-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -324162,7 +324511,7 @@ }, { "question": "Freie Tankstelle", - "icon": "./assets/data/nsi/logos/freietankstelle-495186.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/freietankstelle-495186.svg", "osmTags": { "and": [ "amenity=fuel", @@ -324178,7 +324527,7 @@ }, { "question": "Friendly Express", - "icon": "./assets/data/nsi/logos/friendlyexpress-e7c562.png", + "icon": "https://data.mapcomplete.org/nsi//logos/friendlyexpress-e7c562.png", "osmTags": { "and": [ "amenity=fuel", @@ -324211,7 +324560,7 @@ }, { "question": "G.A.S.", - "icon": "./assets/data/nsi/logos/gas-088dbb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gas-088dbb.png", "osmTags": { "and": [ "amenity=fuel", @@ -324227,7 +324576,7 @@ }, { "question": "G500", - "icon": "./assets/data/nsi/logos/g500-8d9e82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/g500-8d9e82.png", "osmTags": { "and": [ "amenity=fuel", @@ -324272,7 +324621,7 @@ }, { "question": "Galp", - "icon": "./assets/data/nsi/logos/galp-57abaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/galp-57abaf.png", "osmTags": { "and": [ "amenity=fuel", @@ -324301,7 +324650,7 @@ }, { "question": "Gas", - "icon": "./assets/data/nsi/logos/gas-11d3b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gas-11d3b6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324389,7 +324738,7 @@ }, { "question": "Gazprom", - "icon": "./assets/data/nsi/logos/gazprom-a10c9b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gazprom-a10c9b.svg", "osmTags": { "and": [ "amenity=fuel", @@ -324405,7 +324754,7 @@ }, { "question": "Gazprom (България)", - "icon": "./assets/data/nsi/logos/gazprom-b450da.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gazprom-b450da.svg", "osmTags": { "and": [ "amenity=fuel", @@ -324452,7 +324801,7 @@ }, { "question": "Giant (Carlisle)", - "icon": "./assets/data/nsi/logos/giant-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/giant-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -324468,7 +324817,7 @@ }, { "question": "Giap", - "icon": "./assets/data/nsi/logos/giap-e8f712.png", + "icon": "https://data.mapcomplete.org/nsi//logos/giap-e8f712.png", "osmTags": { "and": [ "amenity=fuel", @@ -324484,7 +324833,7 @@ }, { "question": "Global", - "icon": "./assets/data/nsi/logos/global-c2b77c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/global-c2b77c.svg", "osmTags": { "and": [ "amenity=fuel", @@ -324500,7 +324849,7 @@ }, { "question": "Global Oil", - "icon": "./assets/data/nsi/logos/global-0ba9a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/global-0ba9a1.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324516,7 +324865,7 @@ }, { "question": "Globus", - "icon": "./assets/data/nsi/logos/globus-68ecd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globus-68ecd5.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324532,7 +324881,7 @@ }, { "question": "Glory Oil", - "icon": "./assets/data/nsi/logos/gloryoil-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gloryoil-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324550,7 +324899,7 @@ }, { "question": "GNP", - "icon": "./assets/data/nsi/logos/gnp-e8f712.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gnp-e8f712.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324581,7 +324930,7 @@ }, { "question": "Goil", - "icon": "./assets/data/nsi/logos/goil-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goil-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324597,7 +324946,7 @@ }, { "question": "GoMart", - "icon": "./assets/data/nsi/logos/gomart-8a82f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gomart-8a82f2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324613,7 +324962,7 @@ }, { "question": "Green Oil", - "icon": "./assets/data/nsi/logos/greenoil-144a57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenoil-144a57.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324647,7 +324996,7 @@ }, { "question": "Gulf", - "icon": "./assets/data/nsi/logos/gulf-c8d6b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gulf-c8d6b9.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324678,7 +325027,7 @@ }, { "question": "Gull (New Zealand)", - "icon": "./assets/data/nsi/logos/gull-088dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gull-088dbb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324694,7 +325043,7 @@ }, { "question": "H-E-B Fuel", - "icon": "./assets/data/nsi/logos/hebfuel-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hebfuel-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324726,7 +325075,7 @@ }, { "question": "Haffner's", - "icon": "./assets/data/nsi/logos/haffners-5050cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haffners-5050cd.png", "osmTags": { "and": [ "amenity=fuel", @@ -324742,7 +325091,7 @@ }, { "question": "Harnois", - "icon": "./assets/data/nsi/logos/harnois-04874d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/harnois-04874d.png", "osmTags": { "and": [ "amenity=fuel", @@ -324758,7 +325107,7 @@ }, { "question": "Harvest Energy", - "icon": "./assets/data/nsi/logos/harvestenergy-20aed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harvestenergy-20aed2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324774,7 +325123,7 @@ }, { "question": "Hele", - "icon": "./assets/data/nsi/logos/hele-45054e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hele-45054e.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324790,7 +325139,7 @@ }, { "question": "HEM", - "icon": "./assets/data/nsi/logos/hem-495186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hem-495186.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324806,7 +325155,7 @@ }, { "question": "Hess", - "icon": "./assets/data/nsi/logos/hess-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hess-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324822,7 +325171,7 @@ }, { "question": "Hidrosina", - "icon": "./assets/data/nsi/logos/hidrosina-8d9e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hidrosina-8d9e82.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324838,7 +325187,7 @@ }, { "question": "High's", - "icon": "./assets/data/nsi/logos/highs-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/highs-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -324854,7 +325203,7 @@ }, { "question": "Hofer Diskont", - "icon": "./assets/data/nsi/logos/hoferdiskont-3baa0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hoferdiskont-3baa0f.png", "osmTags": { "and": [ "amenity=fuel", @@ -324870,7 +325219,7 @@ }, { "question": "Holiday", - "icon": "./assets/data/nsi/logos/holiday-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holiday-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324886,7 +325235,7 @@ }, { "question": "Holiday Oil", - "icon": "./assets/data/nsi/logos/holidayoil-b0257b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/holidayoil-b0257b.png", "osmTags": { "and": [ "amenity=fuel", @@ -324902,7 +325251,7 @@ }, { "question": "Hoyer", - "icon": "./assets/data/nsi/logos/hoyer-495186.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoyer-495186.svg", "osmTags": { "and": [ "amenity=fuel", @@ -324918,16 +325267,16 @@ }, { "question": "HP", - "icon": "./assets/data/nsi/logos/hp-989925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hp-989925.jpg", "osmTags": { "and": [ "amenity=fuel", - "official_name=Hindustan Petroleum", { "or": [ "brand=Hindustan Petroleum", "brand:wikidata=Q1619375", - "name=HP" + "name=HP", + "official_name=Hindustan Petroleum" ] } ] @@ -324951,7 +325300,7 @@ }, { "question": "Husky", - "icon": "./assets/data/nsi/logos/husky-04874d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/husky-04874d.png", "osmTags": { "and": [ "amenity=fuel", @@ -324967,7 +325316,7 @@ }, { "question": "Hy-Vee Gas", - "icon": "./assets/data/nsi/logos/hyveegas-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyveegas-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -324997,7 +325346,7 @@ }, { "question": "Iberdoex", - "icon": "./assets/data/nsi/logos/iberdoex-83f854.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdoex-83f854.png", "osmTags": { "and": [ "amenity=fuel", @@ -325028,7 +325377,7 @@ }, { "question": "iGas", - "icon": "./assets/data/nsi/logos/igas-b450da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/igas-b450da.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325044,7 +325393,7 @@ }, { "question": "IGL (Indraprastha Gas Limited)", - "icon": "./assets/data/nsi/logos/igl-989925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/igl-989925.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325060,7 +325409,7 @@ }, { "question": "INA", - "icon": "./assets/data/nsi/logos/ina-f27d94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ina-f27d94.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325076,7 +325425,7 @@ }, { "question": "Indian Oil", - "icon": "./assets/data/nsi/logos/indianoil-989925.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianoil-989925.png", "osmTags": { "and": [ "amenity=fuel", @@ -325092,7 +325441,7 @@ }, { "question": "Ingles Gas Express", - "icon": "./assets/data/nsi/logos/inglesgasexpress-b3451c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inglesgasexpress-b3451c.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325108,7 +325457,7 @@ }, { "question": "Ingo", - "icon": "./assets/data/nsi/logos/ingo-eef03e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ingo-eef03e.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325124,7 +325473,7 @@ }, { "question": "Innogy", - "icon": "./assets/data/nsi/logos/innogy-45c895.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogy-45c895.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325140,7 +325489,7 @@ }, { "question": "InsaOil", - "icon": "./assets/data/nsi/logos/insaoil-b450da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/insaoil-b450da.png", "osmTags": { "and": [ "amenity=fuel", @@ -325159,7 +325508,7 @@ }, { "question": "Intermarché", - "icon": "./assets/data/nsi/logos/intermarche-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarche-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325175,7 +325524,7 @@ }, { "question": "Inver", - "icon": "./assets/data/nsi/logos/inver-f499fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inver-f499fc.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325191,7 +325540,7 @@ }, { "question": "IP", - "icon": "./assets/data/nsi/logos/ip-16b3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ip-16b3c2.png", "osmTags": { "and": [ "amenity=fuel", @@ -325207,7 +325556,7 @@ }, { "question": "Ipiranga", - "icon": "./assets/data/nsi/logos/ipiranga-c14748.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ipiranga-c14748.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325250,7 +325599,7 @@ }, { "question": "Irving", - "icon": "./assets/data/nsi/logos/irving-337af2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irving-337af2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325285,7 +325634,7 @@ }, { "question": "JET", - "icon": "./assets/data/nsi/logos/jet-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jet-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325315,7 +325664,7 @@ }, { "question": "Jetti", - "icon": "./assets/data/nsi/logos/jetti-289efc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jetti-289efc.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325331,7 +325680,7 @@ }, { "question": "JIO BP", - "icon": "./assets/data/nsi/logos/jiobp-989925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jiobp-989925.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325390,7 +325739,7 @@ }, { "question": "Kangaroo Express", - "icon": "./assets/data/nsi/logos/kangarooexpress-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kangarooexpress-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -325421,7 +325770,7 @@ }, { "question": "Kastrati", - "icon": "./assets/data/nsi/logos/kastrati-7b349a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kastrati-7b349a.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325437,7 +325786,7 @@ }, { "question": "Keropetrol", - "icon": "./assets/data/nsi/logos/keropetrol-e8f712.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keropetrol-e8f712.png", "osmTags": { "and": [ "amenity=fuel", @@ -325453,7 +325802,7 @@ }, { "question": "King Soopers", - "icon": "./assets/data/nsi/logos/kingsoopers-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kingsoopers-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -325469,7 +325818,7 @@ }, { "question": "KLO", - "icon": "./assets/data/nsi/logos/klo-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klo-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325500,7 +325849,7 @@ }, { "question": "Krist", - "icon": "./assets/data/nsi/logos/krist-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/krist-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -325516,7 +325865,7 @@ }, { "question": "Kroger", - "icon": "./assets/data/nsi/logos/kroger-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kroger-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -325532,7 +325881,7 @@ }, { "question": "Kum & Go", - "icon": "./assets/data/nsi/logos/kumandgo-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kumandgo-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325548,7 +325897,7 @@ }, { "question": "Kwik Fill", - "icon": "./assets/data/nsi/logos/kwikfill-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikfill-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -325564,7 +325913,7 @@ }, { "question": "Kwik Shop", - "icon": "./assets/data/nsi/logos/kwikshop-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikshop-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325580,7 +325929,7 @@ }, { "question": "Kwik Star", - "icon": "./assets/data/nsi/logos/kwikstar-1d29fd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikstar-1d29fd.svg", "osmTags": { "and": [ "amenity=fuel", @@ -325596,7 +325945,7 @@ }, { "question": "Kwik Trip", - "icon": "./assets/data/nsi/logos/kwiktrip-076225.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwiktrip-076225.svg", "osmTags": { "and": [ "amenity=fuel", @@ -325687,7 +326036,7 @@ }, { "question": "Liberty (USA)", - "icon": "./assets/data/nsi/logos/liberty-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liberty-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325718,7 +326067,7 @@ }, { "question": "Loaf 'N Jug", - "icon": "./assets/data/nsi/logos/loafnjug-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loafnjug-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325779,7 +326128,7 @@ }, { "question": "Love's", - "icon": "./assets/data/nsi/logos/loves-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/loves-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -325795,7 +326144,7 @@ }, { "question": "Lukoil", - "icon": "./assets/data/nsi/logos/lukoil-ca892b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-ca892b.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325811,7 +326160,7 @@ }, { "question": "MacEwen", - "icon": "./assets/data/nsi/logos/macewen-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macewen-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325841,7 +326190,7 @@ }, { "question": "Mapco", - "icon": "./assets/data/nsi/logos/mapco-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mapco-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325857,7 +326206,7 @@ }, { "question": "Marathon", - "icon": "./assets/data/nsi/logos/marathon-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathon-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325887,7 +326236,7 @@ }, { "question": "Marshal", - "icon": "./assets/data/nsi/logos/marshal-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshal-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325903,7 +326252,7 @@ }, { "question": "Maverik", - "icon": "./assets/data/nsi/logos/maverik-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maverik-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325919,7 +326268,7 @@ }, { "question": "Maxol", - "icon": "./assets/data/nsi/logos/maxol-9c7c7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxol-9c7c7c.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325964,7 +326313,7 @@ }, { "question": "Meijer", - "icon": "./assets/data/nsi/logos/meijer-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meijer-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -325980,7 +326329,7 @@ }, { "question": "MEROIL", - "icon": "./assets/data/nsi/logos/meroil-83f854.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meroil-83f854.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326025,7 +326374,7 @@ }, { "question": "METRO", - "icon": "./assets/data/nsi/logos/metro-bcded2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-bcded2.svg", "osmTags": { "and": [ "amenity=fuel", @@ -326041,7 +326390,7 @@ }, { "question": "Metro Petroleum", - "icon": "./assets/data/nsi/logos/metropetroleum-9ed9c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropetroleum-9ed9c0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326057,7 +326406,7 @@ }, { "question": "Migrol", - "icon": "./assets/data/nsi/logos/migrol-27a80f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/migrol-27a80f.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326073,7 +326422,7 @@ }, { "question": "Mobil", - "icon": "./assets/data/nsi/logos/mobil-00679c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobil-00679c.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326119,7 +326468,7 @@ }, { "question": "Moil", - "icon": "./assets/data/nsi/logos/moil-ec7588.png", + "icon": "https://data.mapcomplete.org/nsi//logos/moil-ec7588.png", "osmTags": { "and": [ "amenity=fuel", @@ -326135,7 +326484,7 @@ }, { "question": "MOL", - "icon": "./assets/data/nsi/logos/mol-b3d110.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mol-b3d110.png", "osmTags": { "and": [ "amenity=fuel", @@ -326151,7 +326500,7 @@ }, { "question": "Morrisons", - "icon": "./assets/data/nsi/logos/morrisons-20aed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morrisons-20aed2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326167,7 +326516,7 @@ }, { "question": "Motto", - "icon": "./assets/data/nsi/logos/motto-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/motto-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326228,7 +326577,7 @@ }, { "question": "Murphy Express", - "icon": "./assets/data/nsi/logos/murphyexpress-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/murphyexpress-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -326244,7 +326593,7 @@ }, { "question": "Murphy USA", - "icon": "./assets/data/nsi/logos/murphyusa-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/murphyusa-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -326260,7 +326609,7 @@ }, { "question": "N1", - "icon": "./assets/data/nsi/logos/n1-3ac543.png", + "icon": "https://data.mapcomplete.org/nsi//logos/n1-3ac543.png", "osmTags": { "and": [ "amenity=fuel", @@ -326290,7 +326639,7 @@ }, { "question": "Naftë", - "icon": "./assets/data/nsi/logos/nafte-83f854.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nafte-83f854.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326306,7 +326655,7 @@ }, { "question": "Nasona Oil", - "icon": "./assets/data/nsi/logos/nasona-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nasona-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326324,7 +326673,7 @@ }, { "question": "Nayara", - "icon": "./assets/data/nsi/logos/nayara-989925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nayara-989925.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326340,7 +326689,7 @@ }, { "question": "Neste", - "icon": "./assets/data/nsi/logos/neste-b3d110.png", + "icon": "https://data.mapcomplete.org/nsi//logos/neste-b3d110.png", "osmTags": { "and": [ "amenity=fuel", @@ -326370,7 +326719,7 @@ }, { "question": "Nordoel", - "icon": "./assets/data/nsi/logos/nordoel-495186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordoel-495186.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326386,7 +326735,7 @@ }, { "question": "Nouria", - "icon": "./assets/data/nsi/logos/nouria-b09892.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nouria-b09892.png", "osmTags": { "and": [ "amenity=fuel", @@ -326402,7 +326751,7 @@ }, { "question": "NP", - "icon": "./assets/data/nsi/logos/np-9a6cc7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/np-9a6cc7.png", "osmTags": { "and": [ "amenity=fuel", @@ -326418,7 +326767,7 @@ }, { "question": "npd", - "icon": "./assets/data/nsi/logos/npd-088dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/npd-088dbb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326448,7 +326797,7 @@ }, { "question": "OIL!", - "icon": "./assets/data/nsi/logos/oil-b3d110.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/oil-b3d110.svg", "osmTags": { "and": [ "amenity=fuel", @@ -326478,7 +326827,7 @@ }, { "question": "Oilibya", - "icon": "./assets/data/nsi/logos/oilibya-5288c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oilibya-5288c9.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326511,7 +326860,7 @@ }, { "question": "OK (Nederland)", - "icon": "./assets/data/nsi/logos/ok-6cdea6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ok-6cdea6.png", "osmTags": { "and": [ "amenity=fuel", @@ -326527,7 +326876,7 @@ }, { "question": "OKQ8", - "icon": "./assets/data/nsi/logos/okq8-a1affa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okq8-a1affa.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326557,7 +326906,7 @@ }, { "question": "Olerex", - "icon": "./assets/data/nsi/logos/olerex-00a67a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/olerex-00a67a.png", "osmTags": { "and": [ "amenity=fuel", @@ -326573,7 +326922,7 @@ }, { "question": "Olís", - "icon": "./assets/data/nsi/logos/olis-3ac543.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/olis-3ac543.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326589,7 +326938,7 @@ }, { "question": "OMV", - "icon": "./assets/data/nsi/logos/omv-b3d110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omv-b3d110.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326619,7 +326968,7 @@ }, { "question": "Opet", - "icon": "./assets/data/nsi/logos/opet-ec7588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opet-ec7588.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326635,7 +326984,7 @@ }, { "question": "Orkan", - "icon": "./assets/data/nsi/logos/orkan-3ac543.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orkan-3ac543.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326651,7 +327000,7 @@ }, { "question": "Orlen", - "icon": "./assets/data/nsi/logos/orlen-5730fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlen-5730fb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326667,7 +327016,7 @@ }, { "question": "Orlen express", - "icon": "./assets/data/nsi/logos/orlenexpress-83551a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlenexpress-83551a.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326697,7 +327046,7 @@ }, { "question": "OTR", - "icon": "./assets/data/nsi/logos/otr-9ed9c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/otr-9ed9c0.png", "osmTags": { "and": [ "amenity=fuel", @@ -326713,7 +327062,7 @@ }, { "question": "Oxxo", - "icon": "./assets/data/nsi/logos/oxxo-b3d110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxxo-b3d110.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326758,7 +327107,7 @@ }, { "question": "Pacific Oil Ghana", - "icon": "./assets/data/nsi/logos/pacific-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacific-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326776,7 +327125,7 @@ }, { "question": "Pacific Pride", - "icon": "./assets/data/nsi/logos/pacificpride-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificpride-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326792,7 +327141,7 @@ }, { "question": "PAK'nSAVE Fuel", - "icon": "./assets/data/nsi/logos/paknsavefuel-088dbb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paknsavefuel-088dbb.png", "osmTags": { "and": [ "amenity=fuel", @@ -326808,7 +327157,7 @@ }, { "question": "Parallel", - "icon": "./assets/data/nsi/logos/parallel-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parallel-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326838,7 +327187,7 @@ }, { "question": "Pecsa", - "icon": "./assets/data/nsi/logos/pecsa-877762.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pecsa-877762.png", "osmTags": { "and": [ "amenity=fuel", @@ -326854,7 +327203,7 @@ }, { "question": "Pemex", - "icon": "./assets/data/nsi/logos/pemex-8d9e82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pemex-8d9e82.png", "osmTags": { "and": [ "amenity=fuel", @@ -326870,7 +327219,7 @@ }, { "question": "Pertamina", - "icon": "./assets/data/nsi/logos/pertamina-d2ad30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pertamina-d2ad30.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326886,7 +327235,7 @@ }, { "question": "Petro", - "icon": "./assets/data/nsi/logos/petro-337af2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petro-337af2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326917,7 +327266,7 @@ }, { "question": "Petro Seven", - "icon": "./assets/data/nsi/logos/petroseven-8d9e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroseven-8d9e82.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326933,7 +327282,7 @@ }, { "question": "Petro-Canada", - "icon": "./assets/data/nsi/logos/petrocanada-04874d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrocanada-04874d.svg", "osmTags": { "and": [ "amenity=fuel", @@ -326949,7 +327298,7 @@ }, { "question": "Petro-T", - "icon": "./assets/data/nsi/logos/petrot-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrot-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326980,7 +327329,7 @@ }, { "question": "Petroecuador", - "icon": "./assets/data/nsi/logos/petroecuador-07d016.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroecuador-07d016.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -326996,7 +327345,7 @@ }, { "question": "Petrol", - "icon": "./assets/data/nsi/logos/petrol-7302f5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrol-7302f5.svg", "osmTags": { "and": [ "amenity=fuel", @@ -327012,7 +327361,7 @@ }, { "question": "Petrol Ofisi", - "icon": "./assets/data/nsi/logos/petrolofisi-b3d110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrolofisi-b3d110.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327028,7 +327377,7 @@ }, { "question": "Petrolimex", - "icon": "./assets/data/nsi/logos/petrolimex-b3d110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrolimex-b3d110.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327044,7 +327393,7 @@ }, { "question": "Petrolina", - "icon": "./assets/data/nsi/logos/petrolina-96daf2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrolina-96daf2.png", "osmTags": { "and": [ "amenity=fuel", @@ -327060,7 +327409,7 @@ }, { "question": "Petrom (Maroc)", - "icon": "./assets/data/nsi/logos/petrom-144a57.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrom-144a57.png", "osmTags": { "and": [ "amenity=fuel", @@ -327076,7 +327425,7 @@ }, { "question": "Petrom (Moldova/România)", - "icon": "./assets/data/nsi/logos/petrom-871b5c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrom-871b5c.png", "osmTags": { "and": [ "amenity=fuel", @@ -327106,7 +327455,7 @@ }, { "question": "Petron", - "icon": "./assets/data/nsi/logos/petron-21bb35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petron-21bb35.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327122,7 +327471,7 @@ }, { "question": "Petronas", - "icon": "./assets/data/nsi/logos/petronas-b3d110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petronas-b3d110.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327138,7 +327487,7 @@ }, { "question": "Petronor", - "icon": "./assets/data/nsi/logos/petronor-83f854.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petronor-83f854.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327154,7 +327503,7 @@ }, { "question": "PetroPerú", - "icon": "./assets/data/nsi/logos/petroperu-877762.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petroperu-877762.png", "osmTags": { "and": [ "amenity=fuel", @@ -327170,7 +327519,7 @@ }, { "question": "Petroprix", - "icon": "./assets/data/nsi/logos/petroprix-57abaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroprix-57abaf.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327186,7 +327535,7 @@ }, { "question": "Petrosol", - "icon": "./assets/data/nsi/logos/petrosol-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrosol-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327217,7 +327566,7 @@ }, { "question": "Phillips 66", - "icon": "./assets/data/nsi/logos/phillips66-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phillips66-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327233,7 +327582,7 @@ }, { "question": "Phoenix", - "icon": "./assets/data/nsi/logos/phoenix-289efc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/phoenix-289efc.png", "osmTags": { "and": [ "amenity=fuel", @@ -327263,7 +327612,7 @@ }, { "question": "Pilot", - "icon": "./assets/data/nsi/logos/pilot-337af2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pilot-337af2.png", "osmTags": { "and": [ "amenity=fuel", @@ -327280,7 +327629,7 @@ }, { "question": "Pioneer", - "icon": "./assets/data/nsi/logos/pioneer-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pioneer-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327324,7 +327673,7 @@ }, { "question": "Power", - "icon": "./assets/data/nsi/logos/power-a23ac0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/power-a23ac0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327340,7 +327689,7 @@ }, { "question": "Preem", - "icon": "./assets/data/nsi/logos/preem-906b06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/preem-906b06.png", "osmTags": { "and": [ "amenity=fuel", @@ -327356,7 +327705,7 @@ }, { "question": "Primax (Ecuador)", - "icon": "./assets/data/nsi/logos/primax-07d016.png", + "icon": "https://data.mapcomplete.org/nsi//logos/primax-07d016.png", "osmTags": { "and": [ "amenity=fuel", @@ -327372,7 +327721,7 @@ }, { "question": "Primax (Perú)", - "icon": "./assets/data/nsi/logos/primax-877762.png", + "icon": "https://data.mapcomplete.org/nsi//logos/primax-877762.png", "osmTags": { "and": [ "amenity=fuel", @@ -327388,7 +327737,7 @@ }, { "question": "Prio", - "icon": "./assets/data/nsi/logos/prio-bb4e16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prio-bb4e16.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327418,7 +327767,7 @@ }, { "question": "PT", - "icon": "./assets/data/nsi/logos/pt-56d9b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pt-56d9b3.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327434,7 +327783,7 @@ }, { "question": "PTT", - "icon": "./assets/data/nsi/logos/ptt-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ptt-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327450,7 +327799,7 @@ }, { "question": "Puma", - "icon": "./assets/data/nsi/logos/puma-16b3c2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/puma-16b3c2.svg", "osmTags": { "and": [ "amenity=fuel", @@ -327495,7 +327844,7 @@ }, { "question": "Q1", - "icon": "./assets/data/nsi/logos/q1-495186.png", + "icon": "https://data.mapcomplete.org/nsi//logos/q1-495186.png", "osmTags": { "and": [ "amenity=fuel", @@ -327511,7 +327860,7 @@ }, { "question": "Q8", - "icon": "./assets/data/nsi/logos/q8-7bb553.png", + "icon": "https://data.mapcomplete.org/nsi//logos/q8-7bb553.png", "osmTags": { "and": [ "amenity=fuel", @@ -327527,7 +327876,7 @@ }, { "question": "Q8 Easy", - "icon": "./assets/data/nsi/logos/q8easy-578c5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/q8easy-578c5e.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327543,7 +327892,7 @@ }, { "question": "Qazaq Oil", - "icon": "./assets/data/nsi/logos/qazaqoil-6daebb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qazaqoil-6daebb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327559,7 +327908,7 @@ }, { "question": "Qik-n-EZ", - "icon": "./assets/data/nsi/logos/qiknez-e7bc16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qiknez-e7bc16.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327590,7 +327939,7 @@ }, { "question": "QuickChek", - "icon": "./assets/data/nsi/logos/quickchek-c5cf43.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/quickchek-c5cf43.svg", "osmTags": { "and": [ "amenity=fuel", @@ -327621,7 +327970,7 @@ }, { "question": "QuikTrip", - "icon": "./assets/data/nsi/logos/quiktrip-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quiktrip-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327638,7 +327987,7 @@ }, { "question": "RaceTrac", - "icon": "./assets/data/nsi/logos/racetrac-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/racetrac-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327654,7 +328003,7 @@ }, { "question": "RaceWay", - "icon": "./assets/data/nsi/logos/raceway-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raceway-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327684,7 +328033,7 @@ }, { "question": "RD Petroleum", - "icon": "./assets/data/nsi/logos/rdpetroleum-088dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rdpetroleum-088dbb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327702,7 +328051,7 @@ }, { "question": "RealK", - "icon": "./assets/data/nsi/logos/realk-11d3b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/realk-11d3b6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327718,7 +328067,7 @@ }, { "question": "Refinor", - "icon": "./assets/data/nsi/logos/refinor-dca697.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/refinor-dca697.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327748,7 +328097,7 @@ }, { "question": "Reliance (India)", - "icon": "./assets/data/nsi/logos/reliance-989925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reliance-989925.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327764,7 +328113,7 @@ }, { "question": "Rendichicas", - "icon": "./assets/data/nsi/logos/rendichicas-8d9e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rendichicas-8d9e82.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327794,7 +328143,7 @@ }, { "question": "Repsol", - "icon": "./assets/data/nsi/logos/repsol-b3d110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/repsol-b3d110.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327810,7 +328159,7 @@ }, { "question": "Retitalia", - "icon": "./assets/data/nsi/logos/retitalia-e8f712.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/retitalia-e8f712.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327826,7 +328175,7 @@ }, { "question": "Revoil", - "icon": "./assets/data/nsi/logos/revoil-c67f2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/revoil-c67f2c.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327842,7 +328191,7 @@ }, { "question": "Rhodes", - "icon": "./assets/data/nsi/logos/rhodes-03973e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodes-03973e.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327858,7 +328207,7 @@ }, { "question": "RodOil", - "icon": "./assets/data/nsi/logos/rodoil-c14748.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rodoil-c14748.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327874,7 +328223,7 @@ }, { "question": "Rompetrol", - "icon": "./assets/data/nsi/logos/rompetrol-871b5c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rompetrol-871b5c.png", "osmTags": { "and": [ "amenity=fuel", @@ -327890,7 +328239,7 @@ }, { "question": "Rotten Robbie", - "icon": "./assets/data/nsi/logos/rottenrobbie-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rottenrobbie-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -327906,7 +328255,7 @@ }, { "question": "Royal Farms", - "icon": "./assets/data/nsi/logos/royalfarms-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalfarms-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327922,7 +328271,7 @@ }, { "question": "Rubis", - "icon": "./assets/data/nsi/logos/rubis-16b3c2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rubis-16b3c2.svg", "osmTags": { "and": [ "amenity=fuel", @@ -327953,7 +328302,7 @@ }, { "question": "Rutter's", - "icon": "./assets/data/nsi/logos/rutters-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rutters-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -327969,7 +328318,7 @@ }, { "question": "S-Oil", - "icon": "./assets/data/nsi/logos/soil-ae677b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/soil-ae677b.svg", "osmTags": { "and": [ "amenity=fuel", @@ -327985,7 +328334,7 @@ }, { "question": "Safeway Fuel Station", - "icon": "./assets/data/nsi/logos/safewayfuelstation-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safewayfuelstation-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328001,7 +328350,7 @@ }, { "question": "Sainsbury's", - "icon": "./assets/data/nsi/logos/sainsburys-20aed2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sainsburys-20aed2.png", "osmTags": { "and": [ "amenity=fuel", @@ -328017,7 +328366,7 @@ }, { "question": "Sam's Club", - "icon": "./assets/data/nsi/logos/samsclub-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samsclub-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328033,7 +328382,7 @@ }, { "question": "San Marco Petroli", - "icon": "./assets/data/nsi/logos/sanmarcopetroli-e8f712.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanmarcopetroli-e8f712.png", "osmTags": { "and": [ "amenity=fuel", @@ -328049,7 +328398,7 @@ }, { "question": "Sasol", - "icon": "./assets/data/nsi/logos/sasol-0ba9a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sasol-0ba9a1.png", "osmTags": { "and": [ "amenity=fuel", @@ -328065,7 +328414,7 @@ }, { "question": "SB Tank", - "icon": "./assets/data/nsi/logos/sbtank-495186.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbtank-495186.svg", "osmTags": { "and": [ "amenity=fuel", @@ -328081,7 +328430,7 @@ }, { "question": "Seaoil", - "icon": "./assets/data/nsi/logos/seaoil-289efc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seaoil-289efc.png", "osmTags": { "and": [ "amenity=fuel", @@ -328111,7 +328460,7 @@ }, { "question": "Sheetz", - "icon": "./assets/data/nsi/logos/sheetz-8ea4ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sheetz-8ea4ad.png", "osmTags": { "and": [ "amenity=fuel", @@ -328127,7 +328476,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-00679c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-00679c.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328143,7 +328492,7 @@ }, { "question": "Shell Express", - "icon": "./assets/data/nsi/logos/shellexpress-4a6616.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shellexpress-4a6616.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328159,7 +328508,7 @@ }, { "question": "Shiptech", - "icon": "./assets/data/nsi/logos/shiptech-ddc474.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shiptech-ddc474.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328189,7 +328538,7 @@ }, { "question": "SIM", - "icon": "./assets/data/nsi/logos/sim-c14748.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sim-c14748.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328205,7 +328554,7 @@ }, { "question": "Sinclair", - "icon": "./assets/data/nsi/logos/sinclair-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinclair-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328255,7 +328604,7 @@ }, { "question": "Slovnaft", - "icon": "./assets/data/nsi/logos/slovnaft-d7c78f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/slovnaft-d7c78f.png", "osmTags": { "and": [ "amenity=fuel", @@ -328271,7 +328620,7 @@ }, { "question": "Smartfuels", - "icon": "./assets/data/nsi/logos/smartfuels-289efc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smartfuels-289efc.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328304,7 +328653,7 @@ }, { "question": "SOCAR", - "icon": "./assets/data/nsi/logos/socar-619b60.png", + "icon": "https://data.mapcomplete.org/nsi//logos/socar-619b60.png", "osmTags": { "and": [ "amenity=fuel", @@ -328320,7 +328669,7 @@ }, { "question": "Sokimex", - "icon": "./assets/data/nsi/logos/sokimex-dc29c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sokimex-dc29c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328336,7 +328685,7 @@ }, { "question": "Sol", - "icon": "./assets/data/nsi/logos/sol-6e9b5c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sol-6e9b5c.png", "osmTags": { "and": [ "amenity=fuel", @@ -328367,7 +328716,7 @@ }, { "question": "Sonangol", - "icon": "./assets/data/nsi/logos/sonangol-a1d251.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonangol-a1d251.svg", "osmTags": { "and": [ "amenity=fuel", @@ -328383,7 +328732,7 @@ }, { "question": "Sonic", - "icon": "./assets/data/nsi/logos/sonic-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonic-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328427,7 +328776,7 @@ }, { "question": "Speedway", - "icon": "./assets/data/nsi/logos/speedway-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedway-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328443,7 +328792,7 @@ }, { "question": "Spinx", - "icon": "./assets/data/nsi/logos/spinx-251f50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spinx-251f50.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328459,7 +328808,7 @@ }, { "question": "Sprint", - "icon": "./assets/data/nsi/logos/sprint-495186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sprint-495186.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328475,7 +328824,7 @@ }, { "question": "St1", - "icon": "./assets/data/nsi/logos/st1-cf1d83.png", + "icon": "https://data.mapcomplete.org/nsi//logos/st1-cf1d83.png", "osmTags": { "and": [ "amenity=fuel", @@ -328491,7 +328840,7 @@ }, { "question": "star", - "icon": "./assets/data/nsi/logos/star-495186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/star-495186.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328521,7 +328870,7 @@ }, { "question": "StarOil (Ghana)", - "icon": "./assets/data/nsi/logos/staroil-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/staroil-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328539,7 +328888,7 @@ }, { "question": "Station Service E.Leclerc", - "icon": "./assets/data/nsi/logos/stationserviceeleclerc-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stationserviceeleclerc-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328569,7 +328918,7 @@ }, { "question": "Statoil", - "icon": "./assets/data/nsi/logos/statoil-442e61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/statoil-442e61.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328585,7 +328934,7 @@ }, { "question": "Stewart's", - "icon": "./assets/data/nsi/logos/stewarts-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stewarts-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328616,7 +328965,7 @@ }, { "question": "Stop & Shop", - "icon": "./assets/data/nsi/logos/stopandshop-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stopandshop-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328646,7 +328995,7 @@ }, { "question": "Sunoco", - "icon": "./assets/data/nsi/logos/sunoco-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sunoco-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -328662,7 +329011,7 @@ }, { "question": "Sunpet", - "icon": "./assets/data/nsi/logos/sunpet-ec7588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunpet-ec7588.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328678,7 +329027,7 @@ }, { "question": "Super U", - "icon": "./assets/data/nsi/logos/superu-3772a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superu-3772a0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328708,7 +329057,7 @@ }, { "question": "Système U", - "icon": "./assets/data/nsi/logos/systemeu-acec89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/systemeu-acec89.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328724,16 +329073,16 @@ }, { "question": "TA", - "icon": "./assets/data/nsi/logos/ta-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ta-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", - "official_name=TravelCenters of America", { "or": [ "brand=TA", "brand:wikidata=Q7835892", - "name=TA" + "name=TA", + "official_name=TravelCenters of America" ] } ] @@ -328741,7 +329090,7 @@ }, { "question": "TAM Autohof", - "icon": "./assets/data/nsi/logos/tamautohof-5f489f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamautohof-5f489f.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328757,7 +329106,7 @@ }, { "question": "Tamoil", - "icon": "./assets/data/nsi/logos/tamoil-c25a01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamoil-c25a01.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328773,7 +329122,7 @@ }, { "question": "Tamoil Express", - "icon": "./assets/data/nsi/logos/tamoilexpress-6cdea6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamoilexpress-6cdea6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328789,7 +329138,7 @@ }, { "question": "Tango", - "icon": "./assets/data/nsi/logos/tango-e5aa28.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tango-e5aa28.png", "osmTags": { "and": [ "amenity=fuel", @@ -328820,7 +329169,7 @@ }, { "question": "Tanka", - "icon": "./assets/data/nsi/logos/tanka-a1affa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tanka-a1affa.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328836,7 +329185,7 @@ }, { "question": "Tanker", - "icon": "./assets/data/nsi/logos/tanker-11d3b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tanker-11d3b6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328852,7 +329201,7 @@ }, { "question": "tankpool24", - "icon": "./assets/data/nsi/logos/tankpool24-0c8e6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tankpool24-0c8e6e.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328868,7 +329217,7 @@ }, { "question": "TanQyou", - "icon": "./assets/data/nsi/logos/tanqyou-6cdea6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tanqyou-6cdea6.png", "osmTags": { "and": [ "amenity=fuel", @@ -328884,7 +329233,7 @@ }, { "question": "Teboil", - "icon": "./assets/data/nsi/logos/teboil-2a28c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/teboil-2a28c8.png", "osmTags": { "and": [ "amenity=fuel", @@ -328900,7 +329249,7 @@ }, { "question": "Tela", - "icon": "./assets/data/nsi/logos/tela-dc29c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tela-dc29c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328916,7 +329265,7 @@ }, { "question": "Telenergy", - "icon": "./assets/data/nsi/logos/telenergy-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenergy-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328934,7 +329283,7 @@ }, { "question": "Tempo", - "icon": "./assets/data/nsi/logos/tempo-04874d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tempo-04874d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328950,7 +329299,7 @@ }, { "question": "termo", - "icon": "./assets/data/nsi/logos/termo-ec7588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/termo-ec7588.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328966,7 +329315,7 @@ }, { "question": "Terpel", - "icon": "./assets/data/nsi/logos/terpel-23f925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terpel-23f925.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328982,7 +329331,7 @@ }, { "question": "Terrible's", - "icon": "./assets/data/nsi/logos/terribles-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terribles-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -328998,7 +329347,7 @@ }, { "question": "Terrible's Diesel", - "icon": "./assets/data/nsi/logos/terriblesdiesel-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terriblesdiesel-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329015,7 +329364,7 @@ }, { "question": "Tesco", - "icon": "./assets/data/nsi/logos/tesco-99b029.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tesco-99b029.png", "osmTags": { "and": [ "amenity=fuel", @@ -329031,7 +329380,7 @@ }, { "question": "Tesoro", - "icon": "./assets/data/nsi/logos/tesoro-c5cf43.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tesoro-c5cf43.svg", "osmTags": { "and": [ "amenity=fuel", @@ -329047,7 +329396,7 @@ }, { "question": "Texaco", - "icon": "./assets/data/nsi/logos/texaco-20647b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texaco-20647b.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329063,7 +329412,7 @@ }, { "question": "Thorntons", - "icon": "./assets/data/nsi/logos/thorntons-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thorntons-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -329079,7 +329428,7 @@ }, { "question": "TinQ", - "icon": "./assets/data/nsi/logos/tinq-56839d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tinq-56839d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329095,7 +329444,7 @@ }, { "question": "Tirex Petrol", - "icon": "./assets/data/nsi/logos/tirexpetrol-66cb39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tirexpetrol-66cb39.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329111,7 +329460,7 @@ }, { "question": "Tom Thumb (Texas)", - "icon": "./assets/data/nsi/logos/tomthumb-bc7b86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomthumb-bc7b86.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329142,16 +329491,16 @@ }, { "question": "Top", - "icon": "./assets/data/nsi/logos/top-5afa7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/top-5afa7a.jpg", "osmTags": { "and": [ "amenity=fuel", - "official_name=Tedcastles Oil Products", { "or": [ "brand=Top", "brand:wikidata=Q7693933", - "name=Top" + "name=Top", + "official_name=Tedcastles Oil Products" ] } ] @@ -329159,7 +329508,7 @@ }, { "question": "Top Oil", - "icon": "./assets/data/nsi/logos/topoil-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topoil-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329192,16 +329541,16 @@ }, { "question": "Tops", - "icon": "./assets/data/nsi/logos/tops-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tops-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", - "official_name=Tops Gasoline", { "or": [ "brand=Tops", "brand:wikidata=Q7825137", - "name=Tops" + "name=Tops", + "official_name=Tops Gasoline" ] } ] @@ -329223,7 +329572,7 @@ }, { "question": "Total طوطال", - "icon": "./assets/data/nsi/logos/total-389b37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/total-389b37.png", "osmTags": { "and": [ "amenity=fuel", @@ -329241,7 +329590,7 @@ }, { "question": "TotalEnergies", - "icon": "./assets/data/nsi/logos/totalenergies-ff2f90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalenergies-ff2f90.png", "osmTags": { "and": [ "amenity=fuel", @@ -329286,7 +329635,7 @@ }, { "question": "True Zero", - "icon": "./assets/data/nsi/logos/truezero-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/truezero-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -329303,7 +329652,7 @@ }, { "question": "Turkey Hill", - "icon": "./assets/data/nsi/logos/turkeyhill-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkeyhill-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329319,7 +329668,7 @@ }, { "question": "Türkiye Petrolleri", - "icon": "./assets/data/nsi/logos/turkiyepetrolleri-ec7588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkiyepetrolleri-ec7588.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329335,7 +329684,7 @@ }, { "question": "Turmöl", - "icon": "./assets/data/nsi/logos/turmol-565075.png", + "icon": "https://data.mapcomplete.org/nsi//logos/turmol-565075.png", "osmTags": { "and": [ "amenity=fuel", @@ -329351,7 +329700,7 @@ }, { "question": "U", - "icon": "./assets/data/nsi/logos/u-3772a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/u-3772a0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329367,7 +329716,7 @@ }, { "question": "U.GO", - "icon": "./assets/data/nsi/logos/ugo-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ugo-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329383,7 +329732,7 @@ }, { "question": "UDF Fuel", - "icon": "./assets/data/nsi/logos/udffuel-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/udffuel-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329400,7 +329749,7 @@ }, { "question": "UFA", - "icon": "./assets/data/nsi/logos/ufa-22e5cc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ufa-22e5cc.svg", "osmTags": { "and": [ "amenity=fuel", @@ -329416,7 +329765,7 @@ }, { "question": "Ukrnafta", - "icon": "./assets/data/nsi/logos/ukrnafta-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrnafta-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329436,7 +329785,7 @@ }, { "question": "Ultramar", - "icon": "./assets/data/nsi/logos/ultramar-16b3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ultramar-16b3c2.png", "osmTags": { "and": [ "amenity=fuel", @@ -329466,7 +329815,7 @@ }, { "question": "United", - "icon": "./assets/data/nsi/logos/united-9ed9c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/united-9ed9c0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329499,7 +329848,7 @@ }, { "question": "Uno", - "icon": "./assets/data/nsi/logos/uno-24faf9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uno-24faf9.png", "osmTags": { "and": [ "amenity=fuel", @@ -329515,7 +329864,7 @@ }, { "question": "Uno-X", - "icon": "./assets/data/nsi/logos/unox-9449e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unox-9449e0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329531,7 +329880,7 @@ }, { "question": "UPG", - "icon": "./assets/data/nsi/logos/upg-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/upg-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329547,7 +329896,7 @@ }, { "question": "USA Gasoline", - "icon": "./assets/data/nsi/logos/usagasoline-c5cf43.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/usagasoline-c5cf43.svg", "osmTags": { "and": [ "amenity=fuel", @@ -329614,7 +329963,7 @@ }, { "question": "Valero", - "icon": "./assets/data/nsi/logos/valero-16b3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valero-16b3c2.png", "osmTags": { "and": [ "amenity=fuel", @@ -329630,7 +329979,7 @@ }, { "question": "Vega Carburanti", - "icon": "./assets/data/nsi/logos/vegacarburanti-e8f712.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vegacarburanti-e8f712.png", "osmTags": { "and": [ "amenity=fuel", @@ -329646,7 +329995,7 @@ }, { "question": "Viada", - "icon": "./assets/data/nsi/logos/viada-86cad0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/viada-86cad0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329662,7 +330011,7 @@ }, { "question": "Virši", - "icon": "./assets/data/nsi/logos/virsi-a63b5f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virsi-a63b5f.png", "osmTags": { "and": [ "amenity=fuel", @@ -329678,7 +330027,7 @@ }, { "question": "Vito", - "icon": "./assets/data/nsi/logos/vito-3772a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vito-3772a0.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329694,7 +330043,7 @@ }, { "question": "VM Petroleum", - "icon": "./assets/data/nsi/logos/vmpetroleum-b450da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vmpetroleum-b450da.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329710,7 +330059,7 @@ }, { "question": "Waitomo", - "icon": "./assets/data/nsi/logos/waitomo-088dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waitomo-088dbb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329726,7 +330075,7 @@ }, { "question": "Walmart", - "icon": "./assets/data/nsi/logos/walmart-16b3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmart-16b3c2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329756,7 +330105,7 @@ }, { "question": "Wawa", - "icon": "./assets/data/nsi/logos/wawa-f5bad4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wawa-f5bad4.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329787,7 +330136,7 @@ }, { "question": "Weis Gas N' Go", - "icon": "./assets/data/nsi/logos/weisgasngo-c5cf43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weisgasngo-c5cf43.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329803,7 +330152,7 @@ }, { "question": "Wesco", - "icon": "./assets/data/nsi/logos/wesco-c5cf43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wesco-c5cf43.png", "osmTags": { "and": [ "amenity=fuel", @@ -329819,7 +330168,7 @@ }, { "question": "Westfalen", - "icon": "./assets/data/nsi/logos/westfalen-495186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfalen-495186.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329835,7 +330184,7 @@ }, { "question": "Winxo", - "icon": "./assets/data/nsi/logos/winxo-144a57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winxo-144a57.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329851,7 +330200,7 @@ }, { "question": "WOG", - "icon": "./assets/data/nsi/logos/wog-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wog-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329897,7 +330246,7 @@ }, { "question": "YPF", - "icon": "./assets/data/nsi/logos/ypf-dca697.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ypf-dca697.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329913,7 +330262,7 @@ }, { "question": "YX", - "icon": "./assets/data/nsi/logos/yx-9449e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yx-9449e0.png", "osmTags": { "and": [ "amenity=fuel", @@ -329957,7 +330306,7 @@ }, { "question": "Z", - "icon": "./assets/data/nsi/logos/z-088dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/z-088dbb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329973,7 +330322,7 @@ }, { "question": "ZEN Petroleum", - "icon": "./assets/data/nsi/logos/zen-fdaf22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zen-fdaf22.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -329991,7 +330340,7 @@ }, { "question": "ZG Raiffeisen Energie", - "icon": "./assets/data/nsi/logos/zgraiffeisenenergie-495186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zgraiffeisenenergie-495186.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330007,7 +330356,7 @@ }, { "question": "Ziz", - "icon": "./assets/data/nsi/logos/ziz-144a57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ziz-144a57.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330051,7 +330400,7 @@ }, { "question": "ΕΛΙΝΟΙΛ", - "icon": "./assets/data/nsi/logos/a9320e-c67f2c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/a9320e-c67f2c.png", "osmTags": { "and": [ "amenity=fuel", @@ -330067,7 +330416,7 @@ }, { "question": "ΕΤΕΚΑ", - "icon": "./assets/data/nsi/logos/1b5559-c67f2c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/1b5559-c67f2c.png", "osmTags": { "and": [ "amenity=fuel", @@ -330083,7 +330432,7 @@ }, { "question": "Авіас", - "icon": "./assets/data/nsi/logos/avias-ed4144.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avias-ed4144.svg", "osmTags": { "and": [ "amenity=fuel", @@ -330103,7 +330452,7 @@ }, { "question": "Башнефть", - "icon": "./assets/data/nsi/logos/bashneft-14ecc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bashneft-14ecc6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330123,7 +330472,7 @@ }, { "question": "Белоруснефть", - "icon": "./assets/data/nsi/logos/ed92ce-3aaa6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ed92ce-3aaa6d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330139,7 +330488,7 @@ }, { "question": "Бенита", - "icon": "./assets/data/nsi/logos/benita-b450da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benita-b450da.png", "osmTags": { "and": [ "amenity=fuel", @@ -330157,7 +330506,7 @@ }, { "question": "БРСМ-Нафта", - "icon": "./assets/data/nsi/logos/69e648-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/69e648-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330173,7 +330522,7 @@ }, { "question": "Газпромнефть", - "icon": "./assets/data/nsi/logos/0b910f-bb6729.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/0b910f-bb6729.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330251,7 +330600,7 @@ }, { "question": "Кнез Петрол", - "icon": "./assets/data/nsi/logos/knezpetrol-a971aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knezpetrol-a971aa.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330298,7 +330647,7 @@ }, { "question": "ҚазМұнайГаз", - "icon": "./assets/data/nsi/logos/ef63bd-6daebb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ef63bd-6daebb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330318,7 +330667,7 @@ }, { "question": "Лукойл", - "icon": "./assets/data/nsi/logos/lukoil-0962f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-0962f2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330338,7 +330687,7 @@ }, { "question": "Лукойл (България)", - "icon": "./assets/data/nsi/logos/lukoil-b450da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-b450da.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330358,7 +330707,7 @@ }, { "question": "Макпетрол", - "icon": "./assets/data/nsi/logos/c21137-fb1891.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c21137-fb1891.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330374,7 +330723,7 @@ }, { "question": "Маркет", - "icon": "./assets/data/nsi/logos/market-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/market-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330394,7 +330743,7 @@ }, { "question": "Нефтьмагистраль", - "icon": "./assets/data/nsi/logos/neftmagistral-14ecc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neftmagistral-14ecc6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330414,7 +330763,7 @@ }, { "question": "НИС Петрол", - "icon": "./assets/data/nsi/logos/nispetrol-a971aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nispetrol-a971aa.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330465,7 +330814,7 @@ }, { "question": "ОККО", - "icon": "./assets/data/nsi/logos/okko-ed4144.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okko-ed4144.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330485,7 +330834,7 @@ }, { "question": "ОКТА", - "icon": "./assets/data/nsi/logos/okta-fb1891.png", + "icon": "https://data.mapcomplete.org/nsi//logos/okta-fb1891.png", "osmTags": { "and": [ "amenity=fuel", @@ -330503,7 +330852,7 @@ }, { "question": "ОМВ", - "icon": "./assets/data/nsi/logos/637ba4-b450da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/637ba4-b450da.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330534,7 +330883,7 @@ }, { "question": "Петрол", - "icon": "./assets/data/nsi/logos/petrol-b450da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrol-b450da.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330554,7 +330903,7 @@ }, { "question": "ПТК", - "icon": "./assets/data/nsi/logos/thepetersburgfuelcompany-14ecc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thepetersburgfuelcompany-14ecc6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330574,7 +330923,7 @@ }, { "question": "Ромпетрол", - "icon": "./assets/data/nsi/logos/rompetrol-b450da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rompetrol-b450da.png", "osmTags": { "and": [ "amenity=fuel", @@ -330592,7 +330941,7 @@ }, { "question": "Роснефть", - "icon": "./assets/data/nsi/logos/rosneft-14ecc6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rosneft-14ecc6.png", "osmTags": { "and": [ "amenity=fuel", @@ -330640,7 +330989,7 @@ }, { "question": "Сургутнефтегаз", - "icon": "./assets/data/nsi/logos/surgutneftegas-14ecc6.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/surgutneftegas-14ecc6.gif", "osmTags": { "and": [ "amenity=fuel", @@ -330693,7 +331042,7 @@ }, { "question": "Татнефть", - "icon": "./assets/data/nsi/logos/tatneft-14ecc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tatneft-14ecc6.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330771,7 +331120,7 @@ }, { "question": "გალფი", - "icon": "./assets/data/nsi/logos/gulf-7489db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gulf-7489db.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330815,7 +331164,7 @@ }, { "question": "ეკოპეტროლი", - "icon": "./assets/data/nsi/logos/ekopetrol-7489db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekopetrol-7489db.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330858,7 +331207,7 @@ }, { "question": "ლუკოილი", - "icon": "./assets/data/nsi/logos/lukoil-7489db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-7489db.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330883,7 +331232,7 @@ }, { "question": "ნეოგაზი", - "icon": "./assets/data/nsi/logos/neogas-7489db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neogas-7489db.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -330926,7 +331275,7 @@ }, { "question": "პორტალი", - "icon": "./assets/data/nsi/logos/portal-7489db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portal-7489db.png", "osmTags": { "and": [ "amenity=fuel", @@ -330946,7 +331295,7 @@ }, { "question": "რომპეტროლი", - "icon": "./assets/data/nsi/logos/rompetrol-7489db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rompetrol-7489db.png", "osmTags": { "and": [ "amenity=fuel", @@ -330966,7 +331315,7 @@ }, { "question": "სოკარი", - "icon": "./assets/data/nsi/logos/socar-7489db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/socar-7489db.png", "osmTags": { "and": [ "amenity=fuel", @@ -330989,7 +331338,7 @@ }, { "question": "ქონექთი", - "icon": "./assets/data/nsi/logos/connect-7489db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/connect-7489db.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331009,7 +331358,7 @@ }, { "question": "דור אלון", - "icon": "./assets/data/nsi/logos/doralon-bb4acb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/doralon-bb4acb.png", "osmTags": { "and": [ "amenity=fuel", @@ -331029,7 +331378,7 @@ }, { "question": "סונול", - "icon": "./assets/data/nsi/logos/sonol-bb4acb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sonol-bb4acb.png", "osmTags": { "and": [ "amenity=fuel", @@ -331049,7 +331398,7 @@ }, { "question": "פז", - "icon": "./assets/data/nsi/logos/paz-bb4acb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paz-bb4acb.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331069,7 +331418,7 @@ }, { "question": "أدنوك", - "icon": "./assets/data/nsi/logos/adnoc-cfa330.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adnoc-cfa330.png", "osmTags": { "and": [ "amenity=fuel", @@ -331089,7 +331438,7 @@ }, { "question": "أرامكو", - "icon": "./assets/data/nsi/logos/aramco-13ec76.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aramco-13ec76.png", "osmTags": { "and": [ "amenity=fuel", @@ -331109,7 +331458,7 @@ }, { "question": "الدريس", - "icon": "./assets/data/nsi/logos/aldrees-13ec76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldrees-13ec76.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331129,7 +331478,7 @@ }, { "question": "امارات", - "icon": "./assets/data/nsi/logos/emarat-47133a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emarat-47133a.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331149,7 +331498,7 @@ }, { "question": "اينوك", - "icon": "./assets/data/nsi/logos/enoc-7d34dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enoc-7d34dd.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331169,7 +331518,7 @@ }, { "question": "بترومين", - "icon": "./assets/data/nsi/logos/petromin-13ec76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petromin-13ec76.svg", "osmTags": { "and": [ "amenity=fuel", @@ -331189,7 +331538,7 @@ }, { "question": "پاکستان اسٹیٹ آئل", - "icon": "./assets/data/nsi/logos/pakistanstateoil-47133a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pakistanstateoil-47133a.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331214,7 +331563,7 @@ }, { "question": "توتال", - "icon": "./assets/data/nsi/logos/total-7d34dd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/total-7d34dd.png", "osmTags": { "and": [ "amenity=fuel", @@ -331248,7 +331597,7 @@ }, { "question": "ساسكو", - "icon": "./assets/data/nsi/logos/sasco-13ec76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sasco-13ec76.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331282,7 +331631,7 @@ }, { "question": "شل", - "icon": "./assets/data/nsi/logos/shell-7a1cc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-7a1cc2.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331302,7 +331651,7 @@ }, { "question": "شیل", - "icon": "./assets/data/nsi/logos/shell-47133a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-47133a.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331340,7 +331689,7 @@ }, { "question": "عجيل", - "icon": "./assets/data/nsi/logos/agil-7aee9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agil-7aee9d.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331374,7 +331723,7 @@ }, { "question": "نفط", - "icon": "./assets/data/nsi/logos/naft-13ec76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naft-13ec76.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331408,7 +331757,7 @@ }, { "question": "เชลล์", - "icon": "./assets/data/nsi/logos/shell-56d9b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-56d9b3.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331428,7 +331777,7 @@ }, { "question": "บางจาก", - "icon": "./assets/data/nsi/logos/bangchak-56d9b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangchak-56d9b3.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331448,7 +331797,7 @@ }, { "question": "ป.ต.ท.", - "icon": "./assets/data/nsi/logos/ptt-56d9b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ptt-56d9b3.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331468,7 +331817,7 @@ }, { "question": "เอสโซ่", - "icon": "./assets/data/nsi/logos/esso-56d9b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-56d9b3.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331488,7 +331837,7 @@ }, { "question": "현대오일뱅크", - "icon": "./assets/data/nsi/logos/hyundaioilbank-ae677b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyundaioilbank-ae677b.svg", "osmTags": { "and": [ "amenity=fuel", @@ -331508,7 +331857,7 @@ }, { "question": "キグナス石油", - "icon": "./assets/data/nsi/logos/kygnus-fbe2e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kygnus-fbe2e4.svg", "osmTags": { "and": [ "amenity=fuel", @@ -331528,7 +331877,7 @@ }, { "question": "コストコ ガスステーション", - "icon": "./assets/data/nsi/logos/costcogasoline-fbe2e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcogasoline-fbe2e4.svg", "osmTags": { "and": [ "amenity=fuel", @@ -331548,11 +331897,10 @@ }, { "question": "コスモ", - "icon": "./assets/data/nsi/logos/cosmo-fbe2e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosmo-fbe2e4.svg", "osmTags": { "and": [ "amenity=fuel", - "official_name=コスモ石油", { "or": [ "brand=コスモ", @@ -331561,7 +331909,8 @@ "brand:wikidata=Q2498318", "name=コスモ", "name:en=Cosmo", - "name:ja=コスモ" + "name:ja=コスモ", + "official_name=コスモ石油" ] } ] @@ -331645,7 +331994,7 @@ }, { "question": "中国石化", - "icon": "./assets/data/nsi/logos/sinopec-7eecbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinopec-7eecbc.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331684,7 +332033,7 @@ }, { "question": "中國石化 Sinopec", - "icon": "./assets/data/nsi/logos/sinopec-a5d248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinopec-a5d248.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331708,7 +332057,7 @@ }, { "question": "中國石油 PetroChina", - "icon": "./assets/data/nsi/logos/petrochina-a5d248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrochina-a5d248.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331771,7 +332120,7 @@ }, { "question": "出光", - "icon": "./assets/data/nsi/logos/idemitsu-fbe2e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/idemitsu-fbe2e4.svg", "osmTags": { "and": [ "amenity=fuel", @@ -331791,7 +332140,7 @@ }, { "question": "台塑石油", - "icon": "./assets/data/nsi/logos/formosapetrochemicalcorporation-db3418.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/formosapetrochemicalcorporation-db3418.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331811,7 +332160,7 @@ }, { "question": "台灣中油", - "icon": "./assets/data/nsi/logos/cpccorporationtaiwan-db3418.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpccorporationtaiwan-db3418.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331850,7 +332199,7 @@ }, { "question": "好市多加油站", - "icon": "./assets/data/nsi/logos/costcogasoline-db3418.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcogasoline-db3418.svg", "osmTags": { "and": [ "amenity=fuel", @@ -331911,7 +332260,7 @@ }, { "question": "昭和シェル", - "icon": "./assets/data/nsi/logos/showashell-fbe2e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/showashell-fbe2e4.jpg", "osmTags": { "and": [ "amenity=fuel", @@ -331948,7 +332297,7 @@ }, { "question": "Buzz Bingo", - "icon": "./assets/data/nsi/logos/buzzbingo-738ef2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buzzbingo-738ef2.jpg", "osmTags": { "and": [ "amenity=gambling", @@ -331965,7 +332314,7 @@ }, { "question": "Mecca Bingo", - "icon": "./assets/data/nsi/logos/meccabingo-738ef2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/meccabingo-738ef2.svg", "osmTags": { "and": [ "amenity=gambling", @@ -331982,7 +332331,7 @@ }, { "question": "Agel", - "icon": "./assets/data/nsi/logos/agel-df0cb5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agel-df0cb5.png", "osmTags": { "and": [ "amenity=hospital", @@ -331998,7 +332347,7 @@ }, { "question": "Bangkok Hospital", - "icon": "./assets/data/nsi/logos/bangkokhospital-e6bd8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangkokhospital-e6bd8c.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -332022,7 +332371,7 @@ }, { "question": "Deutsches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/deutschesroteskreuz-befdb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-befdb8.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -332039,7 +332388,7 @@ }, { "question": "Penta Hospitals", - "icon": "./assets/data/nsi/logos/pentahospitals-0d8c15.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pentahospitals-0d8c15.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -332055,7 +332404,7 @@ }, { "question": "Sentara Healthcare", - "icon": "./assets/data/nsi/logos/sentara-7551ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sentara-7551ac.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -332075,7 +332424,7 @@ }, { "question": "31冰淇淋", - "icon": "./assets/data/nsi/logos/baskinrobbins-cc8b8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baskinrobbins-cc8b8b.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332098,7 +332447,7 @@ }, { "question": "33 пингвина", - "icon": "./assets/data/nsi/logos/fd1d7e-3c9560.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fd1d7e-3c9560.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332114,7 +332463,7 @@ }, { "question": "Abbott's Frozen Custard", - "icon": "./assets/data/nsi/logos/abbottsfrozencustard-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abbottsfrozencustard-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332131,7 +332480,7 @@ }, { "question": "Afters Original", - "icon": "./assets/data/nsi/logos/aftersoriginal-22b8b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aftersoriginal-22b8b7.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332147,7 +332496,7 @@ }, { "question": "Amorino", - "icon": "./assets/data/nsi/logos/amorino-d14110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amorino-d14110.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332163,7 +332512,7 @@ }, { "question": "Amy's Ice Creams", - "icon": "./assets/data/nsi/logos/amysicecreams-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amysicecreams-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332179,7 +332528,7 @@ }, { "question": "Andy's Frozen Custard", - "icon": "./assets/data/nsi/logos/andysfrozencustard-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andysfrozencustard-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332196,7 +332545,7 @@ }, { "question": "Bacio di Latte", - "icon": "./assets/data/nsi/logos/baciodilatte-46659e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baciodilatte-46659e.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332214,7 +332563,7 @@ }, { "question": "Baskin-Robbins", - "icon": "./assets/data/nsi/logos/baskinrobbins-076da2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baskinrobbins-076da2.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332231,7 +332580,7 @@ }, { "question": "Ben & Jerry's", - "icon": "./assets/data/nsi/logos/benandjerrys-87d971.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benandjerrys-87d971.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332248,7 +332597,7 @@ }, { "question": "Bico de Xeado", - "icon": "./assets/data/nsi/logos/bicodexeado-2a89e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bicodexeado-2a89e9.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332264,7 +332613,7 @@ }, { "question": "Bruster's Ice Cream", - "icon": "./assets/data/nsi/logos/brustersicecream-8697a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brustersicecream-8697a4.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332281,7 +332630,7 @@ }, { "question": "Carvel", - "icon": "./assets/data/nsi/logos/carvel-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carvel-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332299,7 +332648,7 @@ }, { "question": "Chiquinho Sorvetes", - "icon": "./assets/data/nsi/logos/chiquinhosorvetes-9359b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chiquinhosorvetes-9359b6.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332315,7 +332664,7 @@ }, { "question": "Cold Rock Ice Creamery", - "icon": "./assets/data/nsi/logos/coldrockicecreamery-e699dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coldrockicecreamery-e699dd.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332333,7 +332682,7 @@ }, { "question": "Cold Stone Creamery", - "icon": "./assets/data/nsi/logos/coldstonecreamery-87d971.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coldstonecreamery-87d971.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332367,7 +332716,7 @@ }, { "question": "Creams", - "icon": "./assets/data/nsi/logos/creams-546be0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creams-546be0.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332384,7 +332733,7 @@ }, { "question": "D'Onofrio", - "icon": "./assets/data/nsi/logos/donofrio-93a72a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/donofrio-93a72a.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332401,7 +332750,7 @@ }, { "question": "De IJswinckel", - "icon": "./assets/data/nsi/logos/deijswinckel-e6af0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deijswinckel-e6af0f.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332417,7 +332766,7 @@ }, { "question": "Dippin' Dots", - "icon": "./assets/data/nsi/logos/dippindots-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dippindots-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332448,7 +332797,7 @@ }, { "question": "Freddo", - "icon": "./assets/data/nsi/logos/freddo-3a94a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freddo-3a94a6.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332465,7 +332814,7 @@ }, { "question": "Gelateria di Berna", - "icon": "./assets/data/nsi/logos/gelateriadiberna-656c68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gelateriadiberna-656c68.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332483,7 +332832,7 @@ }, { "question": "Gelatissimo", - "icon": "./assets/data/nsi/logos/gelatissimo-17af97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gelatissimo-17af97.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332501,7 +332850,7 @@ }, { "question": "Gelato Borelli", - "icon": "./assets/data/nsi/logos/gelatoborelli-9359b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gelatoborelli-9359b6.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332517,7 +332866,7 @@ }, { "question": "Good Lood", - "icon": "./assets/data/nsi/logos/goodlood-944e1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodlood-944e1d.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332533,7 +332882,7 @@ }, { "question": "Graeter's", - "icon": "./assets/data/nsi/logos/graeters-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/graeters-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332551,7 +332900,7 @@ }, { "question": "Grido", - "icon": "./assets/data/nsi/logos/grido-1a8176.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grido-1a8176.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332568,7 +332917,7 @@ }, { "question": "Grom", - "icon": "./assets/data/nsi/logos/grom-48073a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/grom-48073a.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332586,7 +332935,7 @@ }, { "question": "Grycan", - "icon": "./assets/data/nsi/logos/grycan-944e1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grycan-944e1d.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332602,7 +332951,7 @@ }, { "question": "Häagen-Dazs", - "icon": "./assets/data/nsi/logos/haagendazs-61f56c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/haagendazs-61f56c.svg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332618,7 +332967,7 @@ }, { "question": "Handel's Homemade Ice Cream", - "icon": "./assets/data/nsi/logos/handelshomemadeicecream-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/handelshomemadeicecream-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332635,7 +332984,7 @@ }, { "question": "Janny's Eis", - "icon": "./assets/data/nsi/logos/jannyseis-4549fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jannyseis-4549fd.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332651,7 +333000,7 @@ }, { "question": "Jeni's Splendid Ice Cream", - "icon": "./assets/data/nsi/logos/jenissplendidicecreams-53b2e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jenissplendidicecreams-53b2e0.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332668,7 +333017,7 @@ }, { "question": "Jeremiah's Italian Ice", - "icon": "./assets/data/nsi/logos/jeremiahsitalianice-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeremiahsitalianice-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332684,7 +333033,7 @@ }, { "question": "Jijonenca", - "icon": "./assets/data/nsi/logos/jijonenca-f20d3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jijonenca-f20d3f.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332700,7 +333049,7 @@ }, { "question": "La Michoacana", - "icon": "./assets/data/nsi/logos/lamichoacana-7f1444.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamichoacana-7f1444.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332716,7 +333065,7 @@ }, { "question": "Llaollao", - "icon": "./assets/data/nsi/logos/llaollao-dd9462.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/llaollao-dd9462.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332733,7 +333082,7 @@ }, { "question": "Lody Bonano", - "icon": "./assets/data/nsi/logos/lodybonano-944e1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lodybonano-944e1d.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332751,7 +333100,7 @@ }, { "question": "Luciano", - "icon": "./assets/data/nsi/logos/luciano-e6af0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luciano-e6af0f.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332767,7 +333116,7 @@ }, { "question": "Marble Slab Creamery", - "icon": "./assets/data/nsi/logos/marbleslabcreamery-5880a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marbleslabcreamery-5880a0.svg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332784,7 +333133,7 @@ }, { "question": "Menchie's", - "icon": "./assets/data/nsi/logos/menchies-411174.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/menchies-411174.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332801,7 +333150,7 @@ }, { "question": "Messina", - "icon": "./assets/data/nsi/logos/messina-e699dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/messina-e699dd.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332818,7 +333167,7 @@ }, { "question": "Milky Lane", - "icon": "./assets/data/nsi/logos/milkylane-2b047e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milkylane-2b047e.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332834,7 +333183,7 @@ }, { "question": "Naturals", - "icon": "./assets/data/nsi/logos/naturals-c284d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturals-c284d9.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332851,7 +333200,7 @@ }, { "question": "Nutrisa", - "icon": "./assets/data/nsi/logos/nutrisa-7f1444.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nutrisa-7f1444.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332867,7 +333216,7 @@ }, { "question": "Oggi Sorvetes", - "icon": "./assets/data/nsi/logos/oggisorvetes-9359b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oggisorvetes-9359b6.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332883,7 +333232,7 @@ }, { "question": "Orange Leaf", - "icon": "./assets/data/nsi/logos/orangeleaffrozenyogurt-4cfb80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orangeleaffrozenyogurt-4cfb80.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -332900,7 +333249,7 @@ }, { "question": "Peachwave", - "icon": "./assets/data/nsi/logos/peachwave-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peachwave-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332917,7 +333266,7 @@ }, { "question": "Pinkberry", - "icon": "./assets/data/nsi/logos/pinkberry-87d971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pinkberry-87d971.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332952,7 +333301,7 @@ }, { "question": "Pops", - "icon": "./assets/data/nsi/logos/pops-74244e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pops-74244e.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -332968,18 +333317,18 @@ }, { "question": "Popsy", - "icon": "./assets/data/nsi/logos/popsy-d81526.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popsy-d81526.jpg", "osmTags": { "and": [ "amenity=ice_cream", "cuisine=ice_cream", - "official_name=Helados Gourmet Popsy", "takeaway=yes", { "or": [ "brand=Popsy", "brand:wikidata=Q100156171", - "name=Popsy" + "name=Popsy", + "official_name=Helados Gourmet Popsy" ] } ] @@ -332987,17 +333336,17 @@ }, { "question": "Ralph's Italian Ices", - "icon": "./assets/data/nsi/logos/ralphsitalianices-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ralphsitalianices-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", "cuisine=ice_cream", - "official_name=Ralph's Famous Italian Ices", { "or": [ "brand=Ralph's Italian Ices", "brand:wikidata=Q62576909", - "name=Ralph's Italian Ices" + "name=Ralph's Italian Ices", + "official_name=Ralph's Famous Italian Ices" ] } ] @@ -333005,7 +333354,7 @@ }, { "question": "Red Mango", - "icon": "./assets/data/nsi/logos/redmango-73fcc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redmango-73fcc9.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333021,7 +333370,7 @@ }, { "question": "Regma", - "icon": "./assets/data/nsi/logos/regma-2a89e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regma-2a89e9.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333038,7 +333387,7 @@ }, { "question": "Rita's Italian Ice", - "icon": "./assets/data/nsi/logos/ritasitalianice-8697a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ritasitalianice-8697a4.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333055,7 +333404,7 @@ }, { "question": "Salt & Straw", - "icon": "./assets/data/nsi/logos/saltandstraw-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saltandstraw-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333071,7 +333420,7 @@ }, { "question": "San Paolo Gelato & Café", - "icon": "./assets/data/nsi/logos/sanpaologelatoandcafe-9359b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanpaologelatoandcafe-9359b6.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333088,16 +333437,16 @@ }, { "question": "Shake's", - "icon": "./assets/data/nsi/logos/shakes-8697a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shakes-8697a4.png", "osmTags": { "and": [ "amenity=ice_cream", - "official_name=Shake's Frozen Custard", { "or": [ "brand=Shake's", "brand:wikidata=Q17032842", - "name=Shake's" + "name=Shake's", + "official_name=Shake's Frozen Custard" ] } ] @@ -333105,16 +333454,16 @@ }, { "question": "smöoy", - "icon": "./assets/data/nsi/logos/smooy-ae897d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smooy-ae897d.png", "osmTags": { "and": [ "amenity=ice_cream", - "official_name=Softy Cream", { "or": [ "brand=smöoy", "brand:wikidata=Q21573945", - "name=smöoy" + "name=smöoy", + "official_name=Softy Cream" ] } ] @@ -333122,17 +333471,17 @@ }, { "question": "SomiSomi", - "icon": "./assets/data/nsi/logos/somisomi-8697a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/somisomi-8697a4.png", "osmTags": { "and": [ "amenity=ice_cream", "cuisine=soft_serve;taiyaki;bungeoppang", - "official_name=SomiSomi Soft Serve & Taiyaki", { "or": [ "brand=SomiSomi", "brand:wikidata=Q104879354", - "name=SomiSomi" + "name=SomiSomi", + "official_name=SomiSomi Soft Serve & Taiyaki" ] } ] @@ -333140,16 +333489,16 @@ }, { "question": "Sub Zero", - "icon": "./assets/data/nsi/logos/subzero-8697a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/subzero-8697a4.png", "osmTags": { "and": [ "amenity=ice_cream", - "official_name=Sub Zero Nitrogen Ice Cream", { "or": [ "brand=Sub Zero", "brand:wikidata=Q108413623", - "name=Sub Zero" + "name=Sub Zero", + "official_name=Sub Zero Nitrogen Ice Cream" ] } ] @@ -333157,7 +333506,7 @@ }, { "question": "sweetFrog", - "icon": "./assets/data/nsi/logos/sweetfrog-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sweetfrog-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333174,7 +333523,7 @@ }, { "question": "Swensen's", - "icon": "./assets/data/nsi/logos/swensens-570cf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swensens-570cf0.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333191,7 +333540,7 @@ }, { "question": "TCBY", - "icon": "./assets/data/nsi/logos/tcby-87d971.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tcby-87d971.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333209,7 +333558,7 @@ }, { "question": "The Baked Bear", - "icon": "./assets/data/nsi/logos/thebakedbear-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebakedbear-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333228,7 +333577,7 @@ }, { "question": "Toscana", - "icon": "./assets/data/nsi/logos/toscana-e6af0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toscana-e6af0f.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333244,7 +333593,7 @@ }, { "question": "Twistee Treat", - "icon": "./assets/data/nsi/logos/twisteetreat-a9be0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/twisteetreat-a9be0b.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333260,7 +333609,7 @@ }, { "question": "Van Leeuwen Ice Cream", - "icon": "./assets/data/nsi/logos/vanleeuwenicecream-8697a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vanleeuwenicecream-8697a4.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333278,7 +333627,7 @@ }, { "question": "Veganista", - "icon": "./assets/data/nsi/logos/veganista-131346.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veganista-131346.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333295,7 +333644,7 @@ }, { "question": "Yogen Früz", - "icon": "./assets/data/nsi/logos/yogenfruz-87d971.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yogenfruz-87d971.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333313,7 +333662,7 @@ }, { "question": "Yogorino", - "icon": "./assets/data/nsi/logos/yogorino-87d971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yogorino-87d971.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333331,7 +333680,7 @@ }, { "question": "Yogurt Factory", - "icon": "./assets/data/nsi/logos/yogurtfactory-321c46.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yogurtfactory-321c46.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333349,7 +333698,7 @@ }, { "question": "Yogurt Mountain", - "icon": "./assets/data/nsi/logos/yogurtmountain-8697a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yogurtmountain-8697a4.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333367,7 +333716,7 @@ }, { "question": "Yogurtland", - "icon": "./assets/data/nsi/logos/yogurtland-4111ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yogurtland-4111ef.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333385,7 +333734,7 @@ }, { "question": "Yumilicious", - "icon": "./assets/data/nsi/logos/yumilicious-0da7a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yumilicious-0da7a6.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333419,7 +333768,7 @@ }, { "question": "ბასკინ რობინსი", - "icon": "./assets/data/nsi/logos/baskinrobbins-9f5e40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baskinrobbins-9f5e40.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333441,7 +333790,7 @@ }, { "question": "თოლია", - "icon": "./assets/data/nsi/logos/tolia-9f5e40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tolia-9f5e40.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333464,7 +333813,7 @@ }, { "question": "ლუქა პოლარე", - "icon": "./assets/data/nsi/logos/lucapolare-9f5e40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lucapolare-9f5e40.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333486,7 +333835,7 @@ }, { "question": "サーティワンアイスクリーム", - "icon": "./assets/data/nsi/logos/baskinrobbins-7ba154.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baskinrobbins-7ba154.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333507,7 +333856,7 @@ }, { "question": "哈根达斯", - "icon": "./assets/data/nsi/logos/haagendazs-460b92.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/haagendazs-460b92.svg", "osmTags": { "and": [ "amenity=ice_cream", @@ -333525,7 +333874,7 @@ }, { "question": "鮮芋仙", - "icon": "./assets/data/nsi/logos/meetfresh-cc8b8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meetfresh-cc8b8b.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333546,7 +333895,7 @@ }, { "question": "鮮芋仙 Meet Fresh", - "icon": "./assets/data/nsi/logos/meetfresh-cccbe8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meetfresh-cccbe8.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333567,7 +333916,7 @@ }, { "question": "鲜芋仙", - "icon": "./assets/data/nsi/logos/meetfresh-136fc8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meetfresh-136fc8.png", "osmTags": { "and": [ "amenity=ice_cream", @@ -333657,7 +334006,7 @@ }, { "question": "コミック・バスター", - "icon": "./assets/data/nsi/logos/comicbuster-340adf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comicbuster-340adf.jpg", "osmTags": { "and": [ "amenity=internet_cafe", @@ -333718,7 +334067,7 @@ }, { "question": "快活CLUB", - "icon": "./assets/data/nsi/logos/kaikatsuclub-340adf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaikatsuclub-340adf.jpg", "osmTags": { "and": [ "amenity=internet_cafe", @@ -333755,7 +334104,7 @@ }, { "question": "自遊空間", - "icon": "./assets/data/nsi/logos/spacecreate-340adf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spacecreate-340adf.jpg", "osmTags": { "and": [ "amenity=internet_cafe", @@ -333777,7 +334126,7 @@ }, { "question": "Neway", - "icon": "./assets/data/nsi/logos/neway-a8953e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neway-a8953e.jpg", "osmTags": { "and": [ "amenity=karaoke_box", @@ -333794,7 +334143,7 @@ }, { "question": "カラオケ まねきねこ", - "icon": "./assets/data/nsi/logos/karaokemanekineko-c40f09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karaokemanekineko-c40f09.jpg", "osmTags": { "and": [ "amenity=karaoke_box", @@ -333835,7 +334184,7 @@ }, { "question": "カラオケ館", - "icon": "./assets/data/nsi/logos/karaokekan-c40f09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karaokekan-c40f09.jpg", "osmTags": { "and": [ "amenity=karaoke_box", @@ -333896,7 +334245,7 @@ }, { "question": "ジョイサウンド", - "icon": "./assets/data/nsi/logos/joysound-c40f09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joysound-c40f09.jpg", "osmTags": { "and": [ "amenity=karaoke_box", @@ -333917,7 +334266,7 @@ }, { "question": "ビッグエコー", - "icon": "./assets/data/nsi/logos/bigecho-c40f09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigecho-c40f09.jpg", "osmTags": { "and": [ "amenity=karaoke_box", @@ -333938,7 +334287,7 @@ }, { "question": "好樂迪KTV", - "icon": "./assets/data/nsi/logos/holiday-54981d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holiday-54981d.jpg", "osmTags": { "and": [ "amenity=karaoke_box", @@ -333979,7 +334328,7 @@ }, { "question": "錢櫃Partyworld", - "icon": "./assets/data/nsi/logos/cashboxpartyworld-54981d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cashboxpartyworld-54981d.jpg", "osmTags": { "and": [ "amenity=karaoke_box", @@ -334000,7 +334349,7 @@ }, { "question": "Arbeiter-Samariter-Bund (Deutschland)", - "icon": "./assets/data/nsi/logos/arbeitersamariterbund-6709ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-6709ec.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334015,7 +334364,7 @@ }, { "question": "Arbeiterwohlfahrt", - "icon": "./assets/data/nsi/logos/arbeiterwohlfahrt-6709ec.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-6709ec.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334030,7 +334379,7 @@ }, { "question": "Auckland Kindergarten Association", - "icon": "./assets/data/nsi/logos/aucklandkindergartenassociation-e215a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aucklandkindergartenassociation-e215a2.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -334045,7 +334394,7 @@ }, { "question": "Babilou", - "icon": "./assets/data/nsi/logos/babilou-f5662b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/babilou-f5662b.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -334061,7 +334410,7 @@ }, { "question": "BestStart Educare", - "icon": "./assets/data/nsi/logos/beststarteducare-06f88c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beststarteducare-06f88c.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334077,7 +334426,7 @@ }, { "question": "Bright Horizons", - "icon": "./assets/data/nsi/logos/brighthorizons-ab065c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brighthorizons-ab065c.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334115,7 +334464,7 @@ }, { "question": "Chesterbrook Academy", - "icon": "./assets/data/nsi/logos/chesterbrookacademy-39c780.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chesterbrookacademy-39c780.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -334134,7 +334483,7 @@ }, { "question": "Childcare Network", - "icon": "./assets/data/nsi/logos/childcarenetwork-39c780.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/childcarenetwork-39c780.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334150,7 +334499,7 @@ }, { "question": "Children's Learning Adventure", - "icon": "./assets/data/nsi/logos/childrenslearningadventure-39c780.png", + "icon": "https://data.mapcomplete.org/nsi//logos/childrenslearningadventure-39c780.png", "osmTags": { "and": [ "after_school=yes", @@ -334172,7 +334521,7 @@ }, { "question": "Childtime", - "icon": "./assets/data/nsi/logos/childtime-39c780.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/childtime-39c780.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334192,7 +334541,7 @@ }, { "question": "Crèche People & Baby", - "icon": "./assets/data/nsi/logos/crechepeopleandbaby-9b7dc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crechepeopleandbaby-9b7dc9.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334223,7 +334572,7 @@ }, { "question": "Deutsches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/deutschesroteskreuz-6709ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-6709ec.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334238,7 +334587,7 @@ }, { "question": "Diakonie", - "icon": "./assets/data/nsi/logos/diakonie-6709ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diakonie-6709ec.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334253,7 +334602,7 @@ }, { "question": "Guidepost Montessori", - "icon": "./assets/data/nsi/logos/guidepostmontessori-b03e52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guidepostmontessori-b03e52.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334269,21 +334618,21 @@ }, { "question": "Kïdo", - "icon": "./assets/data/nsi/logos/kido-0883b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kido-0883b2.jpg", "osmTags": { "and": [ "amenity=kindergarten", "fee=yes", "isced:level=0", "nursery=yes", - "official_name=Kïdo International Preschool", "preschool=yes", { "or": [ "alt_name=Kido", "brand=Kïdo", "brand:wikidata=Q104849185", - "name=Kïdo" + "name=Kïdo", + "official_name=Kïdo International Preschool" ] } ] @@ -334291,7 +334640,7 @@ }, { "question": "Kidsfirst", - "icon": "./assets/data/nsi/logos/kidsfirst-06f88c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kidsfirst-06f88c.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -334307,7 +334656,7 @@ }, { "question": "Kindercare (New Zealand)", - "icon": "./assets/data/nsi/logos/kindercare-06f88c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kindercare-06f88c.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334323,7 +334672,7 @@ }, { "question": "KinderCare (USA)", - "icon": "./assets/data/nsi/logos/kindercare-39c780.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kindercare-39c780.png", "osmTags": { "and": [ "after_school=yes", @@ -334345,7 +334694,7 @@ }, { "question": "La Petite Academy", - "icon": "./assets/data/nsi/logos/lapetiteacademy-39c780.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lapetiteacademy-39c780.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334365,7 +334714,7 @@ }, { "question": "Lebenshilfe", - "icon": "./assets/data/nsi/logos/lebenshilfe-6709ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lebenshilfe-6709ec.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334380,7 +334729,7 @@ }, { "question": "Les Petits Chaperons Rouges", - "icon": "./assets/data/nsi/logos/lespetitschaperonsrouges-9b7dc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lespetitschaperonsrouges-9b7dc9.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334410,7 +334759,7 @@ }, { "question": "Merryhill Preschool", - "icon": "./assets/data/nsi/logos/merryhillpreschool-39c780.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/merryhillpreschool-39c780.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334448,7 +334797,7 @@ }, { "question": "Primrose School", - "icon": "./assets/data/nsi/logos/primroseschool-39c780.png", + "icon": "https://data.mapcomplete.org/nsi//logos/primroseschool-39c780.png", "osmTags": { "and": [ "after_school=yes", @@ -334472,7 +334821,7 @@ }, { "question": "Safari Kid", - "icon": "./assets/data/nsi/logos/safarikid-39c780.png", + "icon": "https://data.mapcomplete.org/nsi//logos/safarikid-39c780.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -334492,7 +334841,7 @@ }, { "question": "The Children's Courtyard", - "icon": "./assets/data/nsi/logos/thechildrenscourtyard-39c780.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thechildrenscourtyard-39c780.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334512,7 +334861,7 @@ }, { "question": "The Goddard School", - "icon": "./assets/data/nsi/logos/thegoddardschool-39c780.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegoddardschool-39c780.jpg", "osmTags": { "and": [ "after_school=yes", @@ -334535,7 +334884,7 @@ }, { "question": "Tutor Time", - "icon": "./assets/data/nsi/logos/tutortime-39c780.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tutortime-39c780.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334555,7 +334904,7 @@ }, { "question": "Volkssolidarität", - "icon": "./assets/data/nsi/logos/volkssolidaritat-6709ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkssolidaritat-6709ec.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -334586,7 +334935,7 @@ }, { "question": "枫叶小熊", - "icon": "./assets/data/nsi/logos/561f33-179cd5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/561f33-179cd5.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -334639,7 +334988,7 @@ }, { "question": "AEON", - "icon": "./assets/data/nsi/logos/aeon-411869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeon-411869.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334664,7 +335013,7 @@ }, { "question": "Berlitz", - "icon": "./assets/data/nsi/logos/berlitz-ce4245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlitz-ce4245.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334680,7 +335029,7 @@ }, { "question": "CCAA", - "icon": "./assets/data/nsi/logos/ccaa-d56926.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ccaa-d56926.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334698,7 +335047,7 @@ }, { "question": "CNA", - "icon": "./assets/data/nsi/logos/cna-d56926.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cna-d56926.png", "osmTags": { "and": [ "amenity=language_school", @@ -334716,7 +335065,7 @@ }, { "question": "Cultura Inglesa", - "icon": "./assets/data/nsi/logos/culturainglesa-d56926.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/culturainglesa-d56926.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334733,7 +335082,7 @@ }, { "question": "ECC外語学院", - "icon": "./assets/data/nsi/logos/eccforeignlanguageinstitute-411869.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eccforeignlanguageinstitute-411869.png", "osmTags": { "and": [ "amenity=language_school", @@ -334763,20 +335112,20 @@ }, { "question": "ELS", - "icon": "./assets/data/nsi/logos/els-89568f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/els-89568f.jpg", "osmTags": { "and": [ "amenity=language_school", "language:en=main", - "official_name=ELS Language Centers", - "official_name:en=ELS Language Centers", { "or": [ "brand=ELS", "brand:en=ELS", "brand:wikidata=Q5323325", "name=ELS", - "name:en=ELS" + "name:en=ELS", + "official_name=ELS Language Centers", + "official_name:en=ELS Language Centers" ] } ] @@ -334784,7 +335133,7 @@ }, { "question": "Fisk", - "icon": "./assets/data/nsi/logos/fisk-d56926.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fisk-d56926.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334802,7 +335151,7 @@ }, { "question": "GABA", - "icon": "./assets/data/nsi/logos/gaba-411869.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gaba-411869.png", "osmTags": { "and": [ "amenity=language_school", @@ -334827,7 +335176,7 @@ }, { "question": "NOVA", - "icon": "./assets/data/nsi/logos/nova-411869.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nova-411869.png", "osmTags": { "and": [ "amenity=language_school", @@ -334854,7 +335203,7 @@ }, { "question": "Shane English School", - "icon": "./assets/data/nsi/logos/shaneenglishschool-f8b177.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shaneenglishschool-f8b177.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334877,7 +335226,7 @@ }, { "question": "Wall Street English", - "icon": "./assets/data/nsi/logos/wallstreetenglish-ce4245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wallstreetenglish-ce4245.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334893,7 +335242,7 @@ }, { "question": "Wizard", - "icon": "./assets/data/nsi/logos/wizard-d56926.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wizard-d56926.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334909,7 +335258,7 @@ }, { "question": "Yes! Idiomas", - "icon": "./assets/data/nsi/logos/yesidiomas-d56926.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yesidiomas-d56926.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334925,7 +335274,7 @@ }, { "question": "シェーン英会話", - "icon": "./assets/data/nsi/logos/shaneenglishschool-411869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shaneenglishschool-411869.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334972,7 +335321,7 @@ }, { "question": "ペッピーキッズクラブ", - "icon": "./assets/data/nsi/logos/peppykidsclub-411869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peppykidsclub-411869.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -334995,7 +335344,7 @@ }, { "question": "ベルリッツ", - "icon": "./assets/data/nsi/logos/berlitz-411869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlitz-411869.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -335039,7 +335388,7 @@ }, { "question": "夏恩英語學校", - "icon": "./assets/data/nsi/logos/shaneenglishschool-85e50b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shaneenglishschool-85e50b.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -335060,7 +335409,7 @@ }, { "question": "夏恩英语学校", - "icon": "./assets/data/nsi/logos/shaneenglishschool-ffc9b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shaneenglishschool-ffc9b7.jpg", "osmTags": { "and": [ "amenity=language_school", @@ -335160,7 +335509,7 @@ }, { "question": "CCRLS", - "icon": "./assets/data/nsi/logos/chemeketacooperativeregionallibraryservice-0b187f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chemeketacooperativeregionallibraryservice-0b187f.jpg", "osmTags": { "and": [ "amenity=library", @@ -335176,7 +335525,7 @@ }, { "question": "LEO", - "icon": "./assets/data/nsi/logos/librariesofeasternoregon-0b187f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/librariesofeasternoregon-0b187f.jpg", "osmTags": { "and": [ "amenity=library", @@ -335192,7 +335541,7 @@ }, { "question": "LINCC", - "icon": "./assets/data/nsi/logos/librariesinclackamascounty-0b187f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/librariesinclackamascounty-0b187f.jpg", "osmTags": { "and": [ "amenity=library", @@ -335208,7 +335557,7 @@ }, { "question": "WCCLS", - "icon": "./assets/data/nsi/logos/washingtoncountycooperativelibraryservices-0b187f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtoncountycooperativelibraryservices-0b187f.png", "osmTags": { "and": [ "amenity=library", @@ -335238,7 +335587,7 @@ }, { "question": "Express Union", - "icon": "./assets/data/nsi/logos/expressunion-bf90ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressunion-bf90ce.jpg", "osmTags": { "and": [ "amenity=money_transfer", @@ -335270,7 +335619,7 @@ }, { "question": "MoneyGram", - "icon": "./assets/data/nsi/logos/moneygram-1032f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moneygram-1032f8.jpg", "osmTags": { "and": [ "amenity=money_transfer", @@ -335286,7 +335635,7 @@ }, { "question": "Orange Money", - "icon": "./assets/data/nsi/logos/orangemoney-b39c4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orangemoney-b39c4d.jpg", "osmTags": { "and": [ "amenity=money_transfer", @@ -335302,7 +335651,7 @@ }, { "question": "Ria", - "icon": "./assets/data/nsi/logos/ria-1032f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ria-1032f8.jpg", "osmTags": { "and": [ "amenity=money_transfer", @@ -335318,7 +335667,7 @@ }, { "question": "Western Union", - "icon": "./assets/data/nsi/logos/westernunion-1032f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westernunion-1032f8.jpg", "osmTags": { "and": [ "amenity=money_transfer", @@ -335373,7 +335722,7 @@ }, { "question": "Icebolethu Funerals", - "icon": "./assets/data/nsi/logos/icebolethufunerals-27942e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icebolethufunerals-27942e.jpg", "osmTags": { "and": [ "amenity=mortuary", @@ -335403,7 +335752,7 @@ }, { "question": "EagleRider", - "icon": "./assets/data/nsi/logos/eaglerider-7bb7ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eaglerider-7bb7ec.jpg", "osmTags": { "and": [ "amenity=motorcycle_rental", @@ -335419,7 +335768,7 @@ }, { "question": "Bach to Rock", - "icon": "./assets/data/nsi/logos/bachtorock-342afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bachtorock-342afb.jpg", "osmTags": { "and": [ "amenity=music_school", @@ -335435,7 +335784,7 @@ }, { "question": "School of Rock", - "icon": "./assets/data/nsi/logos/schoolofrock-6dbeaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schoolofrock-6dbeaf.png", "osmTags": { "and": [ "amenity=music_school", @@ -335451,7 +335800,7 @@ }, { "question": "Yamaha音樂教室", - "icon": "./assets/data/nsi/logos/yamahamusicschool-fc8739.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamahamusicschool-fc8739.jpg", "osmTags": { "and": [ "amenity=music_school", @@ -335473,7 +335822,7 @@ }, { "question": "ヤマハ音楽教室", - "icon": "./assets/data/nsi/logos/yamahamusicschool-dc9529.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamahamusicschool-dc9529.jpg", "osmTags": { "and": [ "amenity=music_school", @@ -335495,7 +335844,7 @@ }, { "question": "搖滾教室", - "icon": "./assets/data/nsi/logos/schoolofrock-fc8739.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schoolofrock-fc8739.png", "osmTags": { "and": [ "amenity=music_school", @@ -335529,7 +335878,7 @@ }, { "question": "Allegro One Box", - "icon": "./assets/data/nsi/logos/allegroonebox-85cd80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allegroonebox-85cd80.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335546,7 +335895,7 @@ }, { "question": "AlzaBox", - "icon": "./assets/data/nsi/logos/alzabox-bee63b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alzabox-bee63b.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335565,7 +335914,7 @@ }, { "question": "Amazon Hub Locker", - "icon": "./assets/data/nsi/logos/amazonhub-f85b1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amazonhub-f85b1f.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335580,7 +335929,7 @@ }, { "question": "Amazon Hub ロッカー", - "icon": "./assets/data/nsi/logos/amazonhublocker-5c1de3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amazonhublocker-5c1de3.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335600,7 +335949,7 @@ }, { "question": "Amazon Locker", - "icon": "./assets/data/nsi/logos/amazonlocker-f85b1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amazonlocker-f85b1f.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335624,7 +335973,7 @@ }, { "question": "Australia Post Parcel Locker", - "icon": "./assets/data/nsi/logos/australiapostparcellocker-a2f344.png", + "icon": "https://data.mapcomplete.org/nsi//logos/australiapostparcellocker-a2f344.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335640,7 +335989,7 @@ }, { "question": "automat przesyłkowy AliExpress", - "icon": "./assets/data/nsi/logos/aliexpress-ce4e28.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aliexpress-ce4e28.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335656,7 +336005,7 @@ }, { "question": "BalíkoBOX", - "icon": "./assets/data/nsi/logos/balikobox-cda9c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/balikobox-cda9c4.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335674,7 +336023,7 @@ }, { "question": "balíkovo box", - "icon": "./assets/data/nsi/logos/balikovobox-cda9c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/balikovobox-cda9c4.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335692,7 +336041,7 @@ }, { "question": "Box Now (Hrvatska)", - "icon": "./assets/data/nsi/logos/boxnow-30ebd7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boxnow-30ebd7.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335707,7 +336056,7 @@ }, { "question": "Box Now (Ελλάδα)", - "icon": "./assets/data/nsi/logos/boxnow-510af3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boxnow-510af3.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335722,7 +336071,7 @@ }, { "question": "Box Now (България)", - "icon": "./assets/data/nsi/logos/boxnow-8234c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boxnow-8234c4.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335739,7 +336088,7 @@ }, { "question": "bpost", - "icon": "./assets/data/nsi/logos/bpost-a3df6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpost-a3df6a.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335756,7 +336105,7 @@ }, { "question": "Budbee", - "icon": "./assets/data/nsi/logos/budbee-8c9d85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budbee-8c9d85.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335806,7 +336155,7 @@ }, { "question": "Costco.com", - "icon": "./assets/data/nsi/logos/costcocom-b3da58.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcocom-b3da58.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335822,7 +336171,7 @@ }, { "question": "de Buren", - "icon": "./assets/data/nsi/logos/deburen-476b76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deburen-476b76.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335842,7 +336191,7 @@ }, { "question": "Deutsche Post", - "icon": "./assets/data/nsi/logos/deutschepost-83cc4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschepost-83cc4d.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335871,7 +336220,7 @@ }, { "question": "DHL BOX 24/7", - "icon": "./assets/data/nsi/logos/dhlbox247-ce4e28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhlbox247-ce4e28.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335901,7 +336250,7 @@ }, { "question": "DHL Packstation", - "icon": "./assets/data/nsi/logos/dhlpackstation-83cc4d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dhlpackstation-83cc4d.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335933,7 +336282,7 @@ }, { "question": "DHL Pakketautomaat", - "icon": "./assets/data/nsi/logos/dhlpakketautomaat-476b76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhlpakketautomaat-476b76.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335966,7 +336315,7 @@ }, { "question": "DPD", - "icon": "./assets/data/nsi/logos/dpd-e45cee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dpd-e45cee.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -335985,7 +336334,7 @@ }, { "question": "DPD Pickup Station", - "icon": "./assets/data/nsi/logos/dpdpickupstation-db785e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dpdpickupstation-db785e.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336002,7 +336351,7 @@ }, { "question": "DSV Locker", - "icon": "./assets/data/nsi/logos/dsvlocker-6115c3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dsvlocker-6115c3.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336019,7 +336368,7 @@ }, { "question": "easybox", - "icon": "./assets/data/nsi/logos/easybox-cd92a3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/easybox-cd92a3.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336044,7 +336393,7 @@ }, { "question": "Evri", - "icon": "./assets/data/nsi/logos/evri-ad77d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evri-ad77d0.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336075,7 +336424,7 @@ }, { "question": "FANbox", - "icon": "./assets/data/nsi/logos/fanbox-ba4d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fanbox-ba4d23.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336091,7 +336440,7 @@ }, { "question": "Foxpost", - "icon": "./assets/data/nsi/logos/foxpost-68603c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foxpost-68603c.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336108,7 +336457,7 @@ }, { "question": "GLS", - "icon": "./assets/data/nsi/logos/gls-6a219a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gls-6a219a.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336139,7 +336488,7 @@ }, { "question": "Growing Communities", - "icon": "./assets/data/nsi/logos/growingcommunities-6089a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/growingcommunities-6089a2.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336171,7 +336520,7 @@ }, { "question": "InPost", - "icon": "./assets/data/nsi/logos/inpost-6b37ec.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/inpost-6b37ec.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336188,7 +336537,7 @@ }, { "question": "Instabox", - "icon": "./assets/data/nsi/logos/instabox-f97fed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/instabox-f97fed.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336238,7 +336587,7 @@ }, { "question": "Latvijas Pasts", - "icon": "./assets/data/nsi/logos/latvijaspasts-e45cee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/latvijaspasts-e45cee.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336281,7 +336630,7 @@ }, { "question": "Meest", - "icon": "./assets/data/nsi/logos/meest-7c151e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meest-7c151e.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336299,7 +336648,7 @@ }, { "question": "Mondial Relay", - "icon": "./assets/data/nsi/logos/mondialrelay-318f10.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mondialrelay-318f10.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336331,7 +336680,7 @@ }, { "question": "My Post 24", - "icon": "./assets/data/nsi/logos/mypost24-237d95.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mypost24-237d95.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336371,7 +336720,7 @@ }, { "question": "Nova Poshta", - "icon": "./assets/data/nsi/logos/novaposhta-abee27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novaposhta-abee27.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336387,7 +336736,7 @@ }, { "question": "Omniva", - "icon": "./assets/data/nsi/logos/omniva-b4a3f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omniva-b4a3f3.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336405,7 +336754,7 @@ }, { "question": "Orlen Paczka", - "icon": "./assets/data/nsi/logos/orlenpaczka-ce4e28.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlenpaczka-ce4e28.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336424,7 +336773,7 @@ }, { "question": "Ozon Box", - "icon": "./assets/data/nsi/logos/ozonbox-c00268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ozonbox-c00268.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336440,7 +336789,7 @@ }, { "question": "Packeta", - "icon": "./assets/data/nsi/logos/zbox-5a86e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zbox-5a86e9.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336458,7 +336807,7 @@ }, { "question": "Paczkomat InPost", - "icon": "./assets/data/nsi/logos/paczkomatinpost-ce4e28.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/paczkomatinpost-ce4e28.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336477,7 +336826,7 @@ }, { "question": "Paket24", - "icon": "./assets/data/nsi/logos/paket24-30ebd7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paket24-30ebd7.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336515,7 +336864,7 @@ }, { "question": "Parcel Pending", - "icon": "./assets/data/nsi/logos/parcelpending-6a219a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parcelpending-6a219a.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336534,7 +336883,7 @@ }, { "question": "Penguin Box", - "icon": "./assets/data/nsi/logos/penguinbox-7c84a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penguinbox-7c84a0.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336567,7 +336916,7 @@ }, { "question": "PickPoint", - "icon": "./assets/data/nsi/logos/pickpoint-c00268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pickpoint-c00268.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336583,7 +336932,7 @@ }, { "question": "Pickup Station", - "icon": "./assets/data/nsi/logos/pickupstation-b94a6a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pickupstation-b94a6a.svg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336602,7 +336951,7 @@ }, { "question": "Pilulka Box", - "icon": "./assets/data/nsi/logos/pilulkabox-7c84a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pilulkabox-7c84a0.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336620,7 +336969,7 @@ }, { "question": "Pocztex", - "icon": "./assets/data/nsi/logos/pocztex-ce4e28.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pocztex-ce4e28.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336675,7 +337024,7 @@ }, { "question": "POST PackUp", - "icon": "./assets/data/nsi/logos/packup-f54db3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/packup-f54db3.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336693,7 +337042,7 @@ }, { "question": "PostNL Pakketautomaat", - "icon": "./assets/data/nsi/logos/postnlpakketautomaat-476b76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postnlpakketautomaat-476b76.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336713,7 +337062,7 @@ }, { "question": "PostNord", - "icon": "./assets/data/nsi/logos/postnord-aa986b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postnord-aa986b.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336730,7 +337079,7 @@ }, { "question": "PPL Parcelbox", - "icon": "./assets/data/nsi/logos/pplparcelbox-48c9bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pplparcelbox-48c9bb.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336822,7 +337171,7 @@ }, { "question": "Royal Mail", - "icon": "./assets/data/nsi/logos/royalmail-ad77d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalmail-ad77d0.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336839,7 +337188,7 @@ }, { "question": "Rozetka", - "icon": "./assets/data/nsi/logos/rozetka-7c151e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rozetka-7c151e.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336857,7 +337206,7 @@ }, { "question": "Ship & Go", - "icon": "./assets/data/nsi/logos/cargusshipandgo-ba4d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cargusshipandgo-ba4d23.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336908,7 +337257,7 @@ }, { "question": "Speedy", - "icon": "./assets/data/nsi/logos/speedy-8234c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/speedy-8234c4.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336958,7 +337307,7 @@ }, { "question": "Yeep", - "icon": "./assets/data/nsi/logos/yeep-ad77d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yeep-ad77d0.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336976,7 +337325,7 @@ }, { "question": "Еконтомат", - "icon": "./assets/data/nsi/logos/econt-8234c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/econt-8234c4.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -336999,7 +337348,7 @@ }, { "question": "Епіцентр К", - "icon": "./assets/data/nsi/logos/13cf8e-7c151e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/13cf8e-7c151e.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -337017,7 +337366,7 @@ }, { "question": "Қазпошта", - "icon": "./assets/data/nsi/logos/kazpost-a244bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kazpost-a244bc.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -337035,7 +337384,7 @@ }, { "question": "Нова Пошта", - "icon": "./assets/data/nsi/logos/530f2c-7c151e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/530f2c-7c151e.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -337072,7 +337421,7 @@ }, { "question": "Почта России", - "icon": "./assets/data/nsi/logos/russianpost-c00268.png", + "icon": "https://data.mapcomplete.org/nsi//logos/russianpost-c00268.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -337206,7 +337555,7 @@ }, { "question": "智郵寄 iPostal Kiosk", - "icon": "./assets/data/nsi/logos/ipostalkiosk-a94f22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipostalkiosk-a94f22.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -337231,7 +337580,7 @@ }, { "question": "智郵站 iPostal Station", - "icon": "./assets/data/nsi/logos/ipostalstation-a94f22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipostalstation-a94f22.png", "osmTags": { "and": [ "amenity=parcel_locker", @@ -337256,7 +337605,7 @@ }, { "question": "順豐自助櫃 SF Locker", - "icon": "./assets/data/nsi/logos/sflocker-482a52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sflocker-482a52.jpg", "osmTags": { "and": [ "amenity=parcel_locker", @@ -337302,7 +337651,7 @@ }, { "question": "JustPark", - "icon": "./assets/data/nsi/logos/justpark-aa7823.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/justpark-aa7823.jpg", "osmTags": { "and": [ "amenity=parking", @@ -337318,7 +337667,7 @@ }, { "question": "Abitab", - "icon": "./assets/data/nsi/logos/abitab-80cf76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abitab-80cf76.jpg", "osmTags": { "and": [ "amenity=payment_centre", @@ -337334,7 +337683,7 @@ }, { "question": "Bayad Center", - "icon": "./assets/data/nsi/logos/bayadcenter-a6c1c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bayadcenter-a6c1c5.png", "osmTags": { "and": [ "amenity=payment_centre", @@ -337350,7 +337699,7 @@ }, { "question": "EasyPay", - "icon": "./assets/data/nsi/logos/easypay-56e7b3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/easypay-56e7b3.png", "osmTags": { "and": [ "amenity=payment_centre", @@ -337384,7 +337733,7 @@ }, { "question": "FastPay", - "icon": "./assets/data/nsi/logos/fastpay-56e7b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastpay-56e7b3.jpg", "osmTags": { "and": [ "amenity=payment_centre", @@ -337405,18 +337754,18 @@ }, { "question": "Fina - Financijska agencija", - "icon": "./assets/data/nsi/logos/fina-9c5e01.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fina-9c5e01.svg", "osmTags": { "and": [ "amenity=payment_centre", "bureau_de_change=yes", "money_transfer=western_union", - "official_name=Financijska agencija", { "or": [ "brand=Financijska agencija", "brand:wikidata=Q12631015", - "name=Fina" + "name=Fina", + "official_name=Financijska agencija" ] } ] @@ -337424,7 +337773,7 @@ }, { "question": "N Kolay", - "icon": "./assets/data/nsi/logos/nkolay-18647a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nkolay-18647a.jpg", "osmTags": { "and": [ "amenity=payment_centre", @@ -337440,7 +337789,7 @@ }, { "question": "Pago Fácil", - "icon": "./assets/data/nsi/logos/pagofacil-8bbf0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pagofacil-8bbf0d.jpg", "osmTags": { "and": [ "amenity=payment_centre", @@ -337456,7 +337805,7 @@ }, { "question": "Rapipago", - "icon": "./assets/data/nsi/logos/rapipago-8bbf0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rapipago-8bbf0d.jpg", "osmTags": { "and": [ "amenity=payment_centre", @@ -337472,18 +337821,18 @@ }, { "question": "U Super Service Center", - "icon": "./assets/data/nsi/logos/usuperservicecenter-a6c1c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usuperservicecenter-a6c1c5.jpg", "osmTags": { "and": [ "amenity=payment_centre", "bureau_de_change=yes", "money_transfer=moneygram;remitly;ria;uniteller;xoom;western_union", - "official_name=Universal Storefront Services Corporation", { "or": [ "brand=USSC", "brand:wikidata=Q120679538", - "name=U Super Service Center" + "name=U Super Service Center", + "official_name=Universal Storefront Services Corporation" ] } ] @@ -337522,7 +337871,7 @@ }, { "question": "BottleDrop", - "icon": "./assets/data/nsi/logos/bottledrop-530181.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bottledrop-530181.png", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337538,7 +337887,7 @@ }, { "question": "BottleDrop Plus", - "icon": "./assets/data/nsi/logos/bottledropplus-530181.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bottledropplus-530181.png", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337554,7 +337903,7 @@ }, { "question": "Cashterminal", - "icon": "./assets/data/nsi/logos/cashterminal-f7157a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cashterminal-f7157a.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337570,7 +337919,7 @@ }, { "question": "City24", - "icon": "./assets/data/nsi/logos/city24-73846e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/city24-73846e.png", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337586,7 +337935,7 @@ }, { "question": "Coinstar", - "icon": "./assets/data/nsi/logos/coinstar-8dd7cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coinstar-8dd7cb.png", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337656,7 +338005,7 @@ }, { "question": "Easy Pay Armenia", - "icon": "./assets/data/nsi/logos/easypay-15d44b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/easypay-15d44b.png", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337678,7 +338027,7 @@ }, { "question": "EasyPay (Україна)", - "icon": "./assets/data/nsi/logos/easypay-73846e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easypay-73846e.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337711,7 +338060,7 @@ }, { "question": "Fast Shift", - "icon": "./assets/data/nsi/logos/fastshift-15d44b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastshift-15d44b.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337733,7 +338082,7 @@ }, { "question": "Florida MV Express", - "icon": "./assets/data/nsi/logos/floridamvexpress-d0eb4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/floridamvexpress-d0eb4d.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337769,7 +338118,7 @@ }, { "question": "Hawaii DMV Now", - "icon": "./assets/data/nsi/logos/hawaiidmvnow-54c279.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiidmvnow-54c279.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337785,7 +338134,7 @@ }, { "question": "Idram", - "icon": "./assets/data/nsi/logos/idram-15d44b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idram-15d44b.png", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337821,7 +338170,7 @@ }, { "question": "Liberty 365 Paybox / ლიბერთი 365-ის ჩასარიცხი აპარატი / Пейбокс Либерти 365", - "icon": "./assets/data/nsi/logos/liberty-ebda91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liberty-ebda91.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337947,7 +338296,7 @@ }, { "question": "OTP Bank (Україна)", - "icon": "./assets/data/nsi/logos/otpbank-73846e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/otpbank-73846e.svg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337967,7 +338316,7 @@ }, { "question": "Paynet", - "icon": "./assets/data/nsi/logos/paynet-a0f381.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paynet-a0f381.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -337983,7 +338332,7 @@ }, { "question": "Qiwi", - "icon": "./assets/data/nsi/logos/qiwi-e1a7cd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/qiwi-e1a7cd.svg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338015,7 +338364,7 @@ }, { "question": "Telcell Armenia", - "icon": "./assets/data/nsi/logos/telcell-15d44b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telcell-15d44b.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338037,7 +338386,7 @@ }, { "question": "Ukrsibbank", - "icon": "./assets/data/nsi/logos/ukrsibbank-73846e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrsibbank-73846e.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338057,7 +338406,7 @@ }, { "question": "West Virginia DMV Now", - "icon": "./assets/data/nsi/logos/westvirginiadmvnow-80179e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westvirginiadmvnow-80179e.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338089,7 +338438,7 @@ }, { "question": "Ощадбанк", - "icon": "./assets/data/nsi/logos/oschadbank-73846e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oschadbank-73846e.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338109,7 +338458,7 @@ }, { "question": "ПриватБанк", - "icon": "./assets/data/nsi/logos/privatbank-73846e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/privatbank-73846e.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338129,7 +338478,7 @@ }, { "question": "ПУМБ", - "icon": "./assets/data/nsi/logos/firstukrainianinternationalbank-73846e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstukrainianinternationalbank-73846e.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338149,7 +338498,7 @@ }, { "question": "Сбербанк", - "icon": "./assets/data/nsi/logos/fdcab6-e97c8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fdcab6-e97c8f.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338165,7 +338514,7 @@ }, { "question": "Таскомбанк", - "icon": "./assets/data/nsi/logos/tascombank-73846e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tascombank-73846e.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338185,7 +338534,7 @@ }, { "question": "Элекснет", - "icon": "./assets/data/nsi/logos/de4add-e1a7cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/de4add-e1a7cd.png", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338201,7 +338550,7 @@ }, { "question": "თიბისი ბანკის ჩასარიცხი აპარატი", - "icon": "./assets/data/nsi/logos/tbcbank-ebda91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tbcbank-ebda91.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338247,7 +338596,7 @@ }, { "question": "საქართველოს ბანკის ჩასარიცხი აპარატი", - "icon": "./assets/data/nsi/logos/bankofgeorgia-ebda91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankofgeorgia-ebda91.png", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338273,7 +338622,7 @@ }, { "question": "ფეიბოქსი", - "icon": "./assets/data/nsi/logos/paybox-ebda91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paybox-ebda91.jpg", "osmTags": { "and": [ "amenity=payment_terminal", @@ -338304,7 +338653,7 @@ }, { "question": "1 Соціальна Аптека", - "icon": "./assets/data/nsi/logos/06361d-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/06361d-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338323,7 +338672,7 @@ }, { "question": "36,6", - "icon": "./assets/data/nsi/logos/366-288c27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/366-288c27.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338340,7 +338689,7 @@ }, { "question": "36.6", - "icon": "./assets/data/nsi/logos/366-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/366-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338363,7 +338712,7 @@ }, { "question": "3і", - "icon": "./assets/data/nsi/logos/3i-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3i-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338399,7 +338748,7 @@ }, { "question": "Agafarma", - "icon": "./assets/data/nsi/logos/agafarma-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agafarma-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338416,7 +338765,7 @@ }, { "question": "Agel", - "icon": "./assets/data/nsi/logos/agel-627b3f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agel-627b3f.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338433,7 +338782,7 @@ }, { "question": "Albertsons Pharmacy", - "icon": "./assets/data/nsi/logos/albertsonspharmacy-3ab288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albertsonspharmacy-3ab288.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338450,7 +338799,7 @@ }, { "question": "Alfa Pharm Armenia", - "icon": "./assets/data/nsi/logos/alfapharm-447e41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfapharm-447e41.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338473,7 +338822,7 @@ }, { "question": "Allied Pharmacies", - "icon": "./assets/data/nsi/logos/alliedpharmacy-c9f407.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliedpharmacy-c9f407.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338490,7 +338839,7 @@ }, { "question": "Alma Gyógyszertár", - "icon": "./assets/data/nsi/logos/almagyogyszertar-3674c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/almagyogyszertar-3674c9.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338507,7 +338856,7 @@ }, { "question": "Alpha Pharm", - "icon": "./assets/data/nsi/logos/alphapharm-091dbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alphapharm-091dbc.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338539,7 +338888,7 @@ }, { "question": "Amavita", - "icon": "./assets/data/nsi/logos/amavita-7092c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amavita-7092c5.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338556,7 +338905,7 @@ }, { "question": "Amcal", - "icon": "./assets/data/nsi/logos/amcal-a4bb5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amcal-a4bb5f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338588,7 +338937,7 @@ }, { "question": "Anri-Pharm", - "icon": "./assets/data/nsi/logos/anripharm-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anripharm-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338605,7 +338954,7 @@ }, { "question": "Anton et Willem", - "icon": "./assets/data/nsi/logos/antonandwillem-f887ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/antonandwillem-f887ab.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338622,7 +338971,7 @@ }, { "question": "Apollo Pharmacy", - "icon": "./assets/data/nsi/logos/apollopharmacy-95192b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apollopharmacy-95192b.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338639,7 +338988,7 @@ }, { "question": "Apotek 1", - "icon": "./assets/data/nsi/logos/apotek1-bfbf58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apotek1-bfbf58.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338655,7 +339004,7 @@ }, { "question": "Apotek Hjärtat", - "icon": "./assets/data/nsi/logos/apotekhjartat-bc5266.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apotekhjartat-bc5266.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338672,7 +339021,7 @@ }, { "question": "Apotek K-24", - "icon": "./assets/data/nsi/logos/apotekk24-5c6039.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apotekk24-5c6039.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338689,7 +339038,7 @@ }, { "question": "Apoteket", - "icon": "./assets/data/nsi/logos/apoteket-bc5266.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apoteket-bc5266.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338706,7 +339055,7 @@ }, { "question": "Apoteksgruppen", - "icon": "./assets/data/nsi/logos/apoteksgruppen-bc5266.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apoteksgruppen-bc5266.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338783,7 +339132,7 @@ }, { "question": "Asda", - "icon": "./assets/data/nsi/logos/asda-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asda-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338800,7 +339149,7 @@ }, { "question": "Aster Pharmacy", - "icon": "./assets/data/nsi/logos/asterpharmacy-15bf8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asterpharmacy-15bf8e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338817,7 +339166,7 @@ }, { "question": "Avicenna Pharmacy", - "icon": "./assets/data/nsi/logos/avicennapharmacy-b98d4f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avicennapharmacy-b98d4f.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338833,7 +339182,7 @@ }, { "question": "Bargain Chemist", - "icon": "./assets/data/nsi/logos/bargainchemist-8496bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bargainchemist-8496bc.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338850,7 +339199,7 @@ }, { "question": "Bartell Drugs", - "icon": "./assets/data/nsi/logos/bartelldrugs-3ab288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bartelldrugs-3ab288.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338883,7 +339232,7 @@ }, { "question": "Benavides", - "icon": "./assets/data/nsi/logos/benavides-7a195a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/benavides-7a195a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -338900,7 +339249,7 @@ }, { "question": "Benu", - "icon": "./assets/data/nsi/logos/benu-1cd44c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benu-1cd44c.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338935,7 +339284,7 @@ }, { "question": "Betty", - "icon": "./assets/data/nsi/logos/betty-768624.png", + "icon": "https://data.mapcomplete.org/nsi//logos/betty-768624.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338966,7 +339315,7 @@ }, { "question": "Blooms The Chemist", - "icon": "./assets/data/nsi/logos/bloomsthechemist-a4bb5f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bloomsthechemist-a4bb5f.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -338984,7 +339333,7 @@ }, { "question": "Boots", - "icon": "./assets/data/nsi/logos/boots-3d082e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boots-3d082e.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339033,7 +339382,7 @@ }, { "question": "Brookshire Brothers Pharmacy", - "icon": "./assets/data/nsi/logos/brookshirebrotherspharmacy-3ab288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brookshirebrotherspharmacy-3ab288.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339050,7 +339399,7 @@ }, { "question": "Brookshire's Pharmacy", - "icon": "./assets/data/nsi/logos/brookshirespharmacy-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brookshirespharmacy-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339067,7 +339416,7 @@ }, { "question": "Brunet", - "icon": "./assets/data/nsi/logos/brunet-b56451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brunet-b56451.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339084,7 +339433,7 @@ }, { "question": "Camelia", - "icon": "./assets/data/nsi/logos/camelia-503e9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camelia-503e9a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339116,7 +339465,7 @@ }, { "question": "Catena", - "icon": "./assets/data/nsi/logos/catena-8861f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/catena-8861f5.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339180,7 +339529,7 @@ }, { "question": "Chemist King Discount Pharmacy", - "icon": "./assets/data/nsi/logos/chemistkingdiscountpharmacy-a4bb5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chemistkingdiscountpharmacy-a4bb5f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339197,7 +339546,7 @@ }, { "question": "Chemist Warehouse", - "icon": "./assets/data/nsi/logos/chemistwarehouse-382a5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chemistwarehouse-382a5b.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339214,7 +339563,7 @@ }, { "question": "Cincotta Chemist", - "icon": "./assets/data/nsi/logos/cincottadiscountchemist-a4bb5f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cincottadiscountchemist-a4bb5f.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339246,7 +339595,7 @@ }, { "question": "Clicks", - "icon": "./assets/data/nsi/logos/clicks-9c61f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clicks-9c61f8.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339263,7 +339612,7 @@ }, { "question": "Clockwork Pharmacy", - "icon": "./assets/data/nsi/logos/clockworkpharmacy-caaa26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clockworkpharmacy-caaa26.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339280,7 +339629,7 @@ }, { "question": "Cohens Chemist", - "icon": "./assets/data/nsi/logos/cohenschemist-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cohenschemist-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339297,7 +339646,7 @@ }, { "question": "Coop Vitality", - "icon": "./assets/data/nsi/logos/coopvitality-7092c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopvitality-7092c5.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339329,7 +339678,7 @@ }, { "question": "Costco Pharmacy", - "icon": "./assets/data/nsi/logos/costcopharmacy-5d3b40.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcopharmacy-5d3b40.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339346,7 +339695,7 @@ }, { "question": "Cruz Azul", - "icon": "./assets/data/nsi/logos/cruzazul-235c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzazul-235c18.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339363,7 +339712,7 @@ }, { "question": "Cruz Verde", - "icon": "./assets/data/nsi/logos/cruzverde-e06365.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzverde-e06365.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339380,7 +339729,7 @@ }, { "question": "CVS Pharmacy", - "icon": "./assets/data/nsi/logos/cvspharmacy-3ab288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cvspharmacy-3ab288.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339398,7 +339747,7 @@ }, { "question": "D.S.", - "icon": "./assets/data/nsi/logos/ds-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ds-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339430,7 +339779,7 @@ }, { "question": "Day Lewis Pharmacy", - "icon": "./assets/data/nsi/logos/daylewispharmacy-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daylewispharmacy-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339447,7 +339796,7 @@ }, { "question": "Dbam o Zdrowie", - "icon": "./assets/data/nsi/logos/dbamozdrowie-cf61fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dbamozdrowie-cf61fb.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339510,7 +339859,7 @@ }, { "question": "Dis-Chem", - "icon": "./assets/data/nsi/logos/dischem-172f09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dischem-172f09.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339527,7 +339876,7 @@ }, { "question": "Discount Drug Mart", - "icon": "./assets/data/nsi/logos/discountdrugmart-5a530e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/discountdrugmart-5a530e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339590,7 +339939,7 @@ }, { "question": "DOZ Apotek", - "icon": "./assets/data/nsi/logos/dozapotek-bc5266.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dozapotek-bc5266.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339607,7 +339956,7 @@ }, { "question": "Dr. Max", - "icon": "./assets/data/nsi/logos/drmax-d40f7b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drmax-d40f7b.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339624,7 +339973,7 @@ }, { "question": "Droga Quinze", - "icon": "./assets/data/nsi/logos/drogaquinze-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drogaquinze-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339657,7 +340006,7 @@ }, { "question": "Drogaria Araujo", - "icon": "./assets/data/nsi/logos/drogariaaraujo-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drogariaaraujo-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339674,7 +340023,7 @@ }, { "question": "Drogaria Globo", - "icon": "./assets/data/nsi/logos/drogariaglobo-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drogariaglobo-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339691,7 +340040,7 @@ }, { "question": "Drogaria São Paulo", - "icon": "./assets/data/nsi/logos/drogariasaopaulo-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drogariasaopaulo-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339708,7 +340057,7 @@ }, { "question": "Drogarias Farmáxima", - "icon": "./assets/data/nsi/logos/drogariasfarmaxima-295f06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drogariasfarmaxima-295f06.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339725,7 +340074,7 @@ }, { "question": "Drogasil", - "icon": "./assets/data/nsi/logos/drogasil-295f06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drogasil-295f06.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339743,7 +340092,7 @@ }, { "question": "Duane Reade", - "icon": "./assets/data/nsi/logos/duanereade-3ab288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duanereade-3ab288.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339760,7 +340109,7 @@ }, { "question": "E.Leclerc Parapharmacie", - "icon": "./assets/data/nsi/logos/eleclercparapharmacie-4ed69f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclercparapharmacie-4ed69f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339777,7 +340126,7 @@ }, { "question": "easyApotheke", - "icon": "./assets/data/nsi/logos/easyapotheke-c222ec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/easyapotheke-c222ec.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339901,7 +340250,7 @@ }, { "question": "EvoFarm", - "icon": "./assets/data/nsi/logos/evofarm-8861f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evofarm-8861f5.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -339918,7 +340267,7 @@ }, { "question": "Extrafarma", - "icon": "./assets/data/nsi/logos/extrafarma-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/extrafarma-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339935,7 +340284,7 @@ }, { "question": "Familiprix", - "icon": "./assets/data/nsi/logos/familiprix-b56451.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/familiprix-b56451.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339952,7 +340301,7 @@ }, { "question": "Farma Conde", - "icon": "./assets/data/nsi/logos/farmaconde-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaconde-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339969,7 +340318,7 @@ }, { "question": "Farmacenter (Colombia)", - "icon": "./assets/data/nsi/logos/farmacenter-e95dde.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmacenter-e95dde.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -339986,7 +340335,7 @@ }, { "question": "Farmacenter (Paraguay)", - "icon": "./assets/data/nsi/logos/farmacenter-0e462a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmacenter-0e462a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340003,7 +340352,7 @@ }, { "question": "Farmacia (Hrvatska)", - "icon": "./assets/data/nsi/logos/farmacia-e8d74c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmacia-e8d74c.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340020,7 +340369,7 @@ }, { "question": "Farmacia (Україна)", - "icon": "./assets/data/nsi/logos/farmacia-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmacia-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340037,7 +340386,7 @@ }, { "question": "Farmacia Chávez", - "icon": "./assets/data/nsi/logos/farmaciachavez-552afd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciachavez-552afd.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340069,7 +340418,7 @@ }, { "question": "Farmacia Dona", - "icon": "./assets/data/nsi/logos/farmaciadona-8861f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciadona-8861f5.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340178,7 +340527,7 @@ }, { "question": "Farmacia SAAS", - "icon": "./assets/data/nsi/logos/farmaciasaas-291746.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciasaas-291746.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340195,7 +340544,7 @@ }, { "question": "Farmácia São João", - "icon": "./assets/data/nsi/logos/farmaciasaojoao-295f06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciasaojoao-295f06.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340212,7 +340561,7 @@ }, { "question": "Farmacias Ahumada", - "icon": "./assets/data/nsi/logos/farmaciasahumada-af67e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciasahumada-af67e0.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340229,7 +340578,7 @@ }, { "question": "Farmacias Bolivia", - "icon": "./assets/data/nsi/logos/farmaciasbolivia-552afd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciasbolivia-552afd.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340246,7 +340595,7 @@ }, { "question": "Farmacias del Ahorro", - "icon": "./assets/data/nsi/logos/farmaciasdelahorro-7a195a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciasdelahorro-7a195a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340263,7 +340612,7 @@ }, { "question": "Farmacias del Dr. Simi", - "icon": "./assets/data/nsi/logos/farmaciasdeldrsimi-369474.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciasdeldrsimi-369474.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340280,7 +340629,7 @@ }, { "question": "Farmacias Económicas (Ecuador)", - "icon": "./assets/data/nsi/logos/farmaciaseconomicas-235c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciaseconomicas-235c18.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340297,7 +340646,7 @@ }, { "question": "Farmacias Económicas (El Salvador)", - "icon": "./assets/data/nsi/logos/farmaciaseconomicas-fa48f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciaseconomicas-fa48f5.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340314,7 +340663,7 @@ }, { "question": "Farmacias Similares", - "icon": "./assets/data/nsi/logos/farmaciassimilares-7a195a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciassimilares-7a195a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340331,7 +340680,7 @@ }, { "question": "Farmacias Unión", - "icon": "./assets/data/nsi/logos/farmaciasunion-7a195a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciasunion-7a195a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340348,7 +340697,7 @@ }, { "question": "Farmacias Yza", - "icon": "./assets/data/nsi/logos/farmaciasyza-7a195a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaciasyza-7a195a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340365,7 +340714,7 @@ }, { "question": "Farmacity", - "icon": "./assets/data/nsi/logos/farmacity-901f91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmacity-901f91.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340382,7 +340731,7 @@ }, { "question": "Farmacorp", - "icon": "./assets/data/nsi/logos/farmacorp-552afd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmacorp-552afd.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340399,7 +340748,7 @@ }, { "question": "FarmaElías", - "icon": "./assets/data/nsi/logos/farmaelias-552afd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmaelias-552afd.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340416,7 +340765,7 @@ }, { "question": "Farmahorro", - "icon": "./assets/data/nsi/logos/farmahorro-291746.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmahorro-291746.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340433,7 +340782,7 @@ }, { "question": "Farmatodo", - "icon": "./assets/data/nsi/logos/farmatodo-f5140f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmatodo-f5140f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340465,7 +340814,7 @@ }, { "question": "Felicia", - "icon": "./assets/data/nsi/logos/felicia-52cb11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/felicia-52cb11.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340482,7 +340831,7 @@ }, { "question": "Fred Meyer Pharmacy", - "icon": "./assets/data/nsi/logos/fredmeyerpharmacy-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fredmeyerpharmacy-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340499,7 +340848,7 @@ }, { "question": "Fybeca", - "icon": "./assets/data/nsi/logos/fybeca-235c18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fybeca-235c18.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340516,7 +340865,7 @@ }, { "question": "Galen pharm", - "icon": "./assets/data/nsi/logos/galenpharm-72c291.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/galenpharm-72c291.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340535,7 +340884,7 @@ }, { "question": "GBarbosa", - "icon": "./assets/data/nsi/logos/gbarbosa-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gbarbosa-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340574,7 +340923,7 @@ }, { "question": "Gemini", - "icon": "./assets/data/nsi/logos/gemini-cf61fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemini-cf61fb.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340591,7 +340940,7 @@ }, { "question": "Generika", - "icon": "./assets/data/nsi/logos/generika-2ddb76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generika-2ddb76.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340609,7 +340958,7 @@ }, { "question": "Gintarinė vaistinė", - "icon": "./assets/data/nsi/logos/gintarinevaistine-503e9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gintarinevaistine-503e9a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340642,7 +340991,7 @@ }, { "question": "Good Neighbor Pharmacy", - "icon": "./assets/data/nsi/logos/goodneighborpharmacy-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodneighborpharmacy-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340659,7 +341008,7 @@ }, { "question": "GOOD PHARM", - "icon": "./assets/data/nsi/logos/goodpharm-b1ecfe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodpharm-b1ecfe.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340678,7 +341027,7 @@ }, { "question": "Gordons Chemists", - "icon": "./assets/data/nsi/logos/gordonschemists-3e1c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gordonschemists-3e1c81.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340695,7 +341044,7 @@ }, { "question": "Grace Pharmacy", - "icon": "./assets/data/nsi/logos/gracepharmacy-2ddb76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gracepharmacy-2ddb76.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340713,7 +341062,7 @@ }, { "question": "Gradska ljekarna Zagreb", - "icon": "./assets/data/nsi/logos/gradskaljekarnazagreb-e8d74c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gradskaljekarnazagreb-e8d74c.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340730,7 +341079,7 @@ }, { "question": "Guardian (Asia)", - "icon": "./assets/data/nsi/logos/guardian-c3738d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guardian-c3738d.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340747,7 +341096,7 @@ }, { "question": "Guardian (Canada)", - "icon": "./assets/data/nsi/logos/guardian-b56451.png", + "icon": "https://data.mapcomplete.org/nsi//logos/guardian-b56451.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340809,7 +341158,7 @@ }, { "question": "H-E-B Pharmacy", - "icon": "./assets/data/nsi/logos/hebpharmacy-3ab288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hebpharmacy-3ab288.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340873,7 +341222,7 @@ }, { "question": "Health Mart", - "icon": "./assets/data/nsi/logos/healthmart-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/healthmart-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340890,7 +341239,7 @@ }, { "question": "Help Net", - "icon": "./assets/data/nsi/logos/helpnet-8861f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/helpnet-8861f5.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340922,7 +341271,7 @@ }, { "question": "Hy-Vee Pharmacy", - "icon": "./assets/data/nsi/logos/hyveepharmacy-3ab288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyveepharmacy-3ab288.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -340939,7 +341288,7 @@ }, { "question": "I.D.A.", - "icon": "./assets/data/nsi/logos/ida-b56451.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ida-b56451.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340956,7 +341305,7 @@ }, { "question": "Inkafarma", - "icon": "./assets/data/nsi/logos/inkafarma-141e89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/inkafarma-141e89.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -340973,17 +341322,17 @@ }, { "question": "Jan Aushadhi", - "icon": "./assets/data/nsi/logos/janaushadhi-95192b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/janaushadhi-95192b.jpg", "osmTags": { "and": [ "amenity=pharmacy", "healthcare=pharmacy", - "official_name=Pradhan Mantri Bharatiya Janaushadhi Pariyojana Kendra", { "or": [ "brand=Pradhan Mantri Bharatiya Janaushadhi Pariyojana Kendra", "brand:wikidata=Q39058281", - "name=Jan Aushadhi" + "name=Jan Aushadhi", + "official_name=Pradhan Mantri Bharatiya Janaushadhi Pariyojana Kendra" ] } ] @@ -340991,7 +341340,7 @@ }, { "question": "Jean Coutu", - "icon": "./assets/data/nsi/logos/jeancoutu-b56451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeancoutu-b56451.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341008,7 +341357,7 @@ }, { "question": "Jhoots Pharmacy", - "icon": "./assets/data/nsi/logos/jhootspharmacy-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jhootspharmacy-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341025,7 +341374,7 @@ }, { "question": "Kimia Farma", - "icon": "./assets/data/nsi/logos/kimiafarma-5c6039.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kimiafarma-5c6039.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341042,7 +341391,7 @@ }, { "question": "Kinney Drugs", - "icon": "./assets/data/nsi/logos/kinneydrugs-3ab288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinneydrugs-3ab288.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341059,7 +341408,7 @@ }, { "question": "Kroger Pharmacy", - "icon": "./assets/data/nsi/logos/krogerpharmacy-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/krogerpharmacy-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341076,7 +341425,7 @@ }, { "question": "Kronans Apotek", - "icon": "./assets/data/nsi/logos/kronansapotek-bc5266.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kronansapotek-bc5266.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341108,7 +341457,7 @@ }, { "question": "Lafayette", - "icon": "./assets/data/nsi/logos/lafayette-4ed69f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayette-4ed69f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341125,7 +341474,7 @@ }, { "question": "Life Pharmacy", - "icon": "./assets/data/nsi/logos/lifepharmacy-8496bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lifepharmacy-8496bc.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341187,7 +341536,7 @@ }, { "question": "Lloyds Pharmacy", - "icon": "./assets/data/nsi/logos/lloydspharmacy-ab6db1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lloydspharmacy-ab6db1.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341204,7 +341553,7 @@ }, { "question": "Loblaws Pharmacy", - "icon": "./assets/data/nsi/logos/loblawspharmacy-b56451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loblawspharmacy-b56451.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341221,7 +341570,7 @@ }, { "question": "Locatel", - "icon": "./assets/data/nsi/logos/locatel-71f222.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/locatel-71f222.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341238,7 +341587,7 @@ }, { "question": "London Drugs", - "icon": "./assets/data/nsi/logos/londondrugs-b56451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londondrugs-b56451.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341255,7 +341604,7 @@ }, { "question": "Longs Drugs", - "icon": "./assets/data/nsi/logos/longsdrugs-f53864.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/longsdrugs-f53864.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341321,7 +341670,7 @@ }, { "question": "Mediprix", - "icon": "./assets/data/nsi/logos/mediprix-4ed69f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mediprix-4ed69f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341338,7 +341687,7 @@ }, { "question": "Mediq", - "icon": "./assets/data/nsi/logos/mediq-7bb21a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mediq-7bb21a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341355,7 +341704,7 @@ }, { "question": "MediRite", - "icon": "./assets/data/nsi/logos/medirite-091dbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/medirite-091dbc.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341388,7 +341737,7 @@ }, { "question": "Mēness aptieka", - "icon": "./assets/data/nsi/logos/menessaptieka-0eac7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/menessaptieka-0eac7e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341405,7 +341754,7 @@ }, { "question": "Mercury Drug", - "icon": "./assets/data/nsi/logos/mercurydrug-2ddb76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercurydrug-2ddb76.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341453,7 +341802,7 @@ }, { "question": "Mifarma", - "icon": "./assets/data/nsi/logos/mifarma-141e89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mifarma-141e89.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341470,7 +341819,7 @@ }, { "question": "Morrisons Pharmacy", - "icon": "./assets/data/nsi/logos/morrisonspharmacy-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morrisonspharmacy-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341487,7 +341836,7 @@ }, { "question": "Multipharma", - "icon": "./assets/data/nsi/logos/multipharma-c9bc6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/multipharma-c9bc6f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341519,7 +341868,7 @@ }, { "question": "Natali Pharm", - "icon": "./assets/data/nsi/logos/natalipharm-447e41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/natalipharm-447e41.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341603,7 +341952,7 @@ }, { "question": "Numark", - "icon": "./assets/data/nsi/logos/numark-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/numark-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341694,7 +342043,7 @@ }, { "question": "Pacheco", - "icon": "./assets/data/nsi/logos/pacheco-295f06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacheco-295f06.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341711,7 +342060,7 @@ }, { "question": "Pague Menos", - "icon": "./assets/data/nsi/logos/paguemenos-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paguemenos-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341743,7 +342092,7 @@ }, { "question": "Panvel", - "icon": "./assets/data/nsi/logos/panvel-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panvel-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341775,7 +342124,7 @@ }, { "question": "Paydens", - "icon": "./assets/data/nsi/logos/paydens-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paydens-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341791,7 +342140,7 @@ }, { "question": "Peak Pharmacy", - "icon": "./assets/data/nsi/logos/peakpharmacy-b98d4f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/peakpharmacy-b98d4f.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341807,7 +342156,7 @@ }, { "question": "Pharmaca", - "icon": "./assets/data/nsi/logos/pharmaca-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmaca-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341886,7 +342235,7 @@ }, { "question": "Pharmacie Principale", - "icon": "./assets/data/nsi/logos/pharmacieprincipale-7092c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmacieprincipale-7092c5.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341903,7 +342252,7 @@ }, { "question": "Pharmacity", - "icon": "./assets/data/nsi/logos/pharmacity-59b438.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmacity-59b438.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341920,7 +342269,7 @@ }, { "question": "Pharmacy 4 Less", - "icon": "./assets/data/nsi/logos/pharmacy4less-a4bb5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmacy4less-a4bb5f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341937,7 +342286,7 @@ }, { "question": "Pharmacy at SPAR", - "icon": "./assets/data/nsi/logos/pharmacyatspar-091dbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmacyatspar-091dbc.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341954,7 +342303,7 @@ }, { "question": "Pharmaprix", - "icon": "./assets/data/nsi/logos/pharmaprix-b56451.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmaprix-b56451.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -341971,7 +342320,7 @@ }, { "question": "PharmaSave (Australia)", - "icon": "./assets/data/nsi/logos/pharmasave-a4bb5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmasave-a4bb5f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -341988,7 +342337,7 @@ }, { "question": "Pharmasave (Canada)", - "icon": "./assets/data/nsi/logos/pharmasave-b56451.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmasave-b56451.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342005,7 +342354,7 @@ }, { "question": "Pilulka", - "icon": "./assets/data/nsi/logos/pilulka-550654.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pilulka-550654.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342022,7 +342371,7 @@ }, { "question": "Pingvin Patika", - "icon": "./assets/data/nsi/logos/pingvinpatika-3674c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pingvinpatika-3674c9.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342056,7 +342405,7 @@ }, { "question": "PLUS LEKÁREŇ", - "icon": "./assets/data/nsi/logos/pluslekaren-f39a0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pluslekaren-f39a0c.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342088,7 +342437,7 @@ }, { "question": "Priceline Pharmacy", - "icon": "./assets/data/nsi/logos/pricelinepharmacy-a4bb5f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pricelinepharmacy-a4bb5f.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342135,7 +342484,7 @@ }, { "question": "Proxim", - "icon": "./assets/data/nsi/logos/proxim-b56451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/proxim-b56451.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342167,7 +342516,7 @@ }, { "question": "Publix", - "icon": "./assets/data/nsi/logos/publix-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/publix-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342200,7 +342549,7 @@ }, { "question": "Punto Farma (Honduras)", - "icon": "./assets/data/nsi/logos/puntofarma-30ead0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puntofarma-30ead0.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342217,7 +342566,7 @@ }, { "question": "Punto Farma (Paraguay)", - "icon": "./assets/data/nsi/logos/puntofarma-0e462a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puntofarma-0e462a.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342234,7 +342583,7 @@ }, { "question": "Pure Pharmacy", - "icon": "./assets/data/nsi/logos/purepharmacy-f98a60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/purepharmacy-f98a60.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342251,7 +342600,7 @@ }, { "question": "Remedy'sRx", - "icon": "./assets/data/nsi/logos/remedysrx-b56451.png", + "icon": "https://data.mapcomplete.org/nsi//logos/remedysrx-b56451.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342268,7 +342617,7 @@ }, { "question": "Rexall", - "icon": "./assets/data/nsi/logos/rexall-b56451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rexall-b56451.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342285,7 +342634,7 @@ }, { "question": "Rite Aid", - "icon": "./assets/data/nsi/logos/riteaid-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riteaid-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342317,7 +342666,7 @@ }, { "question": "Rose Pharmacy", - "icon": "./assets/data/nsi/logos/rosepharmacy-2ddb76.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rosepharmacy-2ddb76.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342335,7 +342684,7 @@ }, { "question": "Rowlands Pharmacy", - "icon": "./assets/data/nsi/logos/rowlandspharmacy-b98d4f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rowlandspharmacy-b98d4f.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342352,7 +342701,7 @@ }, { "question": "Safeway", - "icon": "./assets/data/nsi/logos/safeway-5d3b40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safeway-5d3b40.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342401,7 +342750,7 @@ }, { "question": "SalcoBrand", - "icon": "./assets/data/nsi/logos/salcobrand-af67e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/salcobrand-af67e0.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342418,7 +342767,7 @@ }, { "question": "Sana Sana", - "icon": "./assets/data/nsi/logos/sanasana-235c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanasana-235c18.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342435,7 +342784,7 @@ }, { "question": "São João", - "icon": "./assets/data/nsi/logos/saojoao-295f06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saojoao-295f06.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342452,7 +342801,7 @@ }, { "question": "Schneider", - "icon": "./assets/data/nsi/logos/schneider-f39a0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schneider-f39a0c.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342469,7 +342818,7 @@ }, { "question": "Service Apotheek", - "icon": "./assets/data/nsi/logos/serviceapotheek-7bb21a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/serviceapotheek-7bb21a.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342486,7 +342835,7 @@ }, { "question": "Shoppers Drug Mart", - "icon": "./assets/data/nsi/logos/shoppersdrugmart-b56451.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoppersdrugmart-b56451.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342533,7 +342882,7 @@ }, { "question": "Sobeys Pharmacy", - "icon": "./assets/data/nsi/logos/sobeyspharmacy-b56451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sobeyspharmacy-b56451.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342550,7 +342899,7 @@ }, { "question": "SOpharmacy", - "icon": "./assets/data/nsi/logos/sopharmacy-768624.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sopharmacy-768624.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342567,7 +342916,7 @@ }, { "question": "Soul Pattinson Chemist", - "icon": "./assets/data/nsi/logos/soulpattinsonchemist-a4bb5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/soulpattinsonchemist-a4bb5f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342584,7 +342933,7 @@ }, { "question": "Southstar Drug", - "icon": "./assets/data/nsi/logos/southstardrug-2ddb76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southstardrug-2ddb76.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342602,7 +342951,7 @@ }, { "question": "Subra", - "icon": "./assets/data/nsi/logos/subra-768624.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/subra-768624.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342636,7 +342985,7 @@ }, { "question": "Sun Store", - "icon": "./assets/data/nsi/logos/sunstore-7092c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunstore-7092c5.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342653,7 +343002,7 @@ }, { "question": "Super-Pharm", - "icon": "./assets/data/nsi/logos/superpharm-8f2066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superpharm-8f2066.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342676,7 +343025,7 @@ }, { "question": "Superdrug", - "icon": "./assets/data/nsi/logos/superdrug-956ac7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superdrug-956ac7.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342709,7 +343058,7 @@ }, { "question": "Szimpatika", - "icon": "./assets/data/nsi/logos/szimpatika-3674c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/szimpatika-3674c9.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342726,7 +343075,7 @@ }, { "question": "TerryWhite Chemmart", - "icon": "./assets/data/nsi/logos/terrywhitechemmart-a4bb5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terrywhitechemmart-a4bb5f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342743,7 +343092,7 @@ }, { "question": "Tesco Pharmacy", - "icon": "./assets/data/nsi/logos/tescopharmacy-b98d4f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tescopharmacy-b98d4f.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342760,18 +343109,18 @@ }, { "question": "TGP", - "icon": "./assets/data/nsi/logos/tgp-2ddb76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tgp-2ddb76.jpg", "osmTags": { "and": [ "amenity=pharmacy", "dispensing=yes", "healthcare=pharmacy", - "official_name=The Generics Pharmacy", { "or": [ "brand=The Generics Pharmacy", "brand:wikidata=Q61948677", - "name=TGP" + "name=TGP", + "official_name=The Generics Pharmacy" ] } ] @@ -342779,7 +343128,7 @@ }, { "question": "The Medicine Shoppe", - "icon": "./assets/data/nsi/logos/themedicineshoppe-5d3b40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/themedicineshoppe-5d3b40.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342796,7 +343145,7 @@ }, { "question": "ThreeSixty Pharmacy", - "icon": "./assets/data/nsi/logos/threesixty-2ddb76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/threesixty-2ddb76.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342814,7 +343163,7 @@ }, { "question": "Times Supermarkets", - "icon": "./assets/data/nsi/logos/timessupermarkets-f53864.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timessupermarkets-f53864.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342832,7 +343181,7 @@ }, { "question": "Tonus-Les", - "icon": "./assets/data/nsi/logos/tonusles-447e41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tonusles-447e41.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342855,7 +343204,7 @@ }, { "question": "TopPharm", - "icon": "./assets/data/nsi/logos/toppharm-7092c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toppharm-7092c5.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342872,7 +343221,7 @@ }, { "question": "Totalhealth Pharmacy", - "icon": "./assets/data/nsi/logos/totalhealthpharmacy-102af8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalhealthpharmacy-102af8.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -342888,7 +343237,7 @@ }, { "question": "Uai Farma", - "icon": "./assets/data/nsi/logos/uaifarma-295f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uaifarma-295f06.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342951,7 +343300,7 @@ }, { "question": "Unichem (New Zealand)", - "icon": "./assets/data/nsi/logos/unichem-8496bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unichem-8496bc.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -342968,7 +343317,7 @@ }, { "question": "Uniprix", - "icon": "./assets/data/nsi/logos/uniprix-b56451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniprix-b56451.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343005,7 +343354,7 @@ }, { "question": "Vaga Pharm", - "icon": "./assets/data/nsi/logos/vagapharm-447e41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vagapharm-447e41.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343026,7 +343375,7 @@ }, { "question": "Vaša Lekáreň", - "icon": "./assets/data/nsi/logos/vasalekaren-f39a0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vasalekaren-f39a0c.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343073,7 +343422,7 @@ }, { "question": "Vitusapotek", - "icon": "./assets/data/nsi/logos/vitusapotek-bfbf58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitusapotek-bfbf58.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343090,7 +343439,7 @@ }, { "question": "Walgreens", - "icon": "./assets/data/nsi/logos/walgreens-3ab288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/walgreens-3ab288.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -343107,7 +343456,7 @@ }, { "question": "Walmart Pharmacy", - "icon": "./assets/data/nsi/logos/walmartpharmacy-5d3b40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartpharmacy-5d3b40.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343124,7 +343473,7 @@ }, { "question": "Watsons", - "icon": "./assets/data/nsi/logos/watsons-113cd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watsons-113cd8.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343141,7 +343490,7 @@ }, { "question": "Weldricks", - "icon": "./assets/data/nsi/logos/weldrickspharmacy-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weldrickspharmacy-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343158,7 +343507,7 @@ }, { "question": "Well Pharmacy", - "icon": "./assets/data/nsi/logos/wellpharmacy-b98d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellpharmacy-b98d4f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343175,7 +343524,7 @@ }, { "question": "Wellness Forever", - "icon": "./assets/data/nsi/logos/wellnessforever-95192b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wellnessforever-95192b.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -343237,7 +343586,7 @@ }, { "question": "Zeelab Pharmacy", - "icon": "./assets/data/nsi/logos/zeelabpharmacy-95192b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeelabpharmacy-95192b.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343254,7 +343603,7 @@ }, { "question": "Ziko Apteka", - "icon": "./assets/data/nsi/logos/zikoapteka-cf61fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zikoapteka-cf61fb.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -343303,7 +343652,7 @@ }, { "question": "Алоэ", - "icon": "./assets/data/nsi/logos/0aaf88-288c27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/0aaf88-288c27.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343339,7 +343688,7 @@ }, { "question": "АНЦ", - "icon": "./assets/data/nsi/logos/6d99c6-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/6d99c6-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343372,7 +343721,7 @@ }, { "question": "Аптека 911", - "icon": "./assets/data/nsi/logos/121e69-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/121e69-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343419,7 +343768,7 @@ }, { "question": "Аптека Доброго Дня", - "icon": "./assets/data/nsi/logos/941286-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/941286-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343436,7 +343785,7 @@ }, { "question": "Аптека оптових ц‥", - "icon": "./assets/data/nsi/logos/62cbb3-996e17.png", + "icon": "https://data.mapcomplete.org/nsi//logos/62cbb3-996e17.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -343468,7 +343817,7 @@ }, { "question": "Аптека Твоєї Родини", - "icon": "./assets/data/nsi/logos/e30e48-996e17.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/e30e48-996e17.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343500,7 +343849,7 @@ }, { "question": "Бажаємо здоровʼя", - "icon": "./assets/data/nsi/logos/6cde22-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/6cde22-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343517,7 +343866,7 @@ }, { "question": "БАМ", - "icon": "./assets/data/nsi/logos/6122e4-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/6122e4-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343534,7 +343883,7 @@ }, { "question": "Бережная аптека", - "icon": "./assets/data/nsi/logos/01555e-288c27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/01555e-288c27.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343551,7 +343900,7 @@ }, { "question": "Біла ромашка", - "icon": "./assets/data/nsi/logos/24f190-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/24f190-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343613,7 +343962,7 @@ }, { "question": "Вита Центральная", - "icon": "./assets/data/nsi/logos/96b33d-288c27.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/96b33d-288c27.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343630,7 +343979,7 @@ }, { "question": "Вита Экспресс", - "icon": "./assets/data/nsi/logos/7f69f5-288c27.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/7f69f5-288c27.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343662,7 +344011,7 @@ }, { "question": "Вітамін", - "icon": "./assets/data/nsi/logos/a0012f-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a0012f-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -343837,7 +344186,7 @@ }, { "question": "Доктор Столетов", - "icon": "./assets/data/nsi/logos/c0ed6e-288c27.png", + "icon": "https://data.mapcomplete.org/nsi//logos/c0ed6e-288c27.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -343934,7 +344283,7 @@ }, { "question": "Здорова Родина", - "icon": "./assets/data/nsi/logos/780176-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/780176-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344011,7 +344360,7 @@ }, { "question": "Конекс", - "icon": "./assets/data/nsi/logos/ebe68b-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ebe68b-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344028,7 +344377,7 @@ }, { "question": "Копійка", - "icon": "./assets/data/nsi/logos/e23c32-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/e23c32-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344045,7 +344394,7 @@ }, { "question": "Кршенковић", - "icon": "./assets/data/nsi/logos/krsenkovic-72c291.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krsenkovic-72c291.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344170,7 +344519,7 @@ }, { "question": "Марешки", - "icon": "./assets/data/nsi/logos/mareshki-768624.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mareshki-768624.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -344189,7 +344538,7 @@ }, { "question": "Мед-сервіс", - "icon": "./assets/data/nsi/logos/96fc9f-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/96fc9f-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344206,7 +344555,7 @@ }, { "question": "Медея (България)", - "icon": "./assets/data/nsi/logos/medeya-768624.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/medeya-768624.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344342,7 +344691,7 @@ }, { "question": "Невис", - "icon": "./assets/data/nsi/logos/2b155a-288c27.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/2b155a-288c27.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344389,7 +344738,7 @@ }, { "question": "Озерки", - "icon": "./assets/data/nsi/logos/a55607-288c27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a55607-288c27.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344421,7 +344770,7 @@ }, { "question": "Ощад Аптека", - "icon": "./assets/data/nsi/logos/eb5276-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eb5276-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344468,7 +344817,7 @@ }, { "question": "Первая помощь", - "icon": "./assets/data/nsi/logos/16f0aa-288c27.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/16f0aa-288c27.gif", "osmTags": { "and": [ "amenity=pharmacy", @@ -344501,7 +344850,7 @@ }, { "question": "Планета здоровья (Беларусь)", - "icon": "./assets/data/nsi/logos/healthplanet-c16414.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/healthplanet-c16414.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344526,7 +344875,7 @@ }, { "question": "Планета здоровья (Россия)", - "icon": "./assets/data/nsi/logos/b0231d-288c27.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/b0231d-288c27.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344543,7 +344892,7 @@ }, { "question": "Подорожник", - "icon": "./assets/data/nsi/logos/926a9f-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/926a9f-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344575,7 +344924,7 @@ }, { "question": "Пульс (Україна)", - "icon": "./assets/data/nsi/logos/e4475d-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/e4475d-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344607,7 +344956,7 @@ }, { "question": "Ремедиум", - "icon": "./assets/data/nsi/logos/remedium-768624.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/remedium-768624.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344626,7 +344975,7 @@ }, { "question": "Ригла", - "icon": "./assets/data/nsi/logos/1de184-288c27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1de184-288c27.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344662,7 +345011,7 @@ }, { "question": "Сбер Еаптека", - "icon": "./assets/data/nsi/logos/ffbae9-288c27.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ffbae9-288c27.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -344709,7 +345058,7 @@ }, { "question": "Столички", - "icon": "./assets/data/nsi/logos/98589d-288c27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/98589d-288c27.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344834,7 +345183,7 @@ }, { "question": "Фиалка", - "icon": "./assets/data/nsi/logos/fialka-288c27.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fialka-288c27.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -344854,7 +345203,7 @@ }, { "question": "Фрамар", - "icon": "./assets/data/nsi/logos/framar-768624.png", + "icon": "https://data.mapcomplete.org/nsi//logos/framar-768624.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -344888,7 +345237,7 @@ }, { "question": "Шар@", - "icon": "./assets/data/nsi/logos/7616ce-996e17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7616ce-996e17.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344935,7 +345284,7 @@ }, { "question": "ავერსი", - "icon": "./assets/data/nsi/logos/aversi-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aversi-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344958,7 +345307,7 @@ }, { "question": "დოიჩე აფთიაქი", - "icon": "./assets/data/nsi/logos/deutschepharmacy-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschepharmacy-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -344979,7 +345328,7 @@ }, { "question": "იბერიფარმა", - "icon": "./assets/data/nsi/logos/iberipharma-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberipharma-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345002,7 +345351,7 @@ }, { "question": "იმპექსი", - "icon": "./assets/data/nsi/logos/impex-6b8b1e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/impex-6b8b1e.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -345025,7 +345374,7 @@ }, { "question": "იმპულსი", - "icon": "./assets/data/nsi/logos/impulse-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/impulse-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345048,7 +345397,7 @@ }, { "question": "ნეოფარმი", - "icon": "./assets/data/nsi/logos/neopharmi-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neopharmi-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345071,7 +345420,7 @@ }, { "question": "პსპ", - "icon": "./assets/data/nsi/logos/psp-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/psp-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345091,7 +345440,7 @@ }, { "question": "ფარმადეპო", - "icon": "./assets/data/nsi/logos/pharmadepot-6b8b1e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmadepot-6b8b1e.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -345114,7 +345463,7 @@ }, { "question": "ფარმსახლი", - "icon": "./assets/data/nsi/logos/pharmhouse-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmhouse-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345137,7 +345486,7 @@ }, { "question": "ჯპს", - "icon": "./assets/data/nsi/logos/gpc-6b8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gpc-6b8b1e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345180,7 +345529,7 @@ }, { "question": "בית מרקחת כללית", - "icon": "./assets/data/nsi/logos/clalitpharmacy-b1ecfe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clalitpharmacy-b1ecfe.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345241,7 +345590,7 @@ }, { "question": "صيدلية النهدي", - "icon": "./assets/data/nsi/logos/nahdi-3cfaa8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nahdi-3cfaa8.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345343,7 +345692,7 @@ }, { "question": "オーエスドラッグ", - "icon": "./assets/data/nsi/logos/osdrug-650eee.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/osdrug-650eee.svg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345445,7 +345794,7 @@ }, { "question": "くすりの福太郎", - "icon": "./assets/data/nsi/logos/kusurinofukutaro-650eee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kusurinofukutaro-650eee.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -345508,14 +345857,11 @@ }, { "question": "コクミン", - "icon": "./assets/data/nsi/logos/kokumin-650eee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kokumin-650eee.jpg", "osmTags": { "and": [ "amenity=pharmacy", "healthcare=pharmacy", - "official_name=コクミンドラッグ", - "official_name:en=Kokumin Drug", - "official_name:ja=コクミンドラッグ", { "or": [ "brand=コクミン", @@ -345524,7 +345870,10 @@ "brand:wikidata=Q11301923", "name=コクミン", "name:en=Kokumin", - "name:ja=コクミン" + "name:ja=コクミン", + "official_name=コクミンドラッグ", + "official_name:en=Kokumin Drug", + "official_name:ja=コクミンドラッグ" ] } ] @@ -345769,7 +346118,7 @@ }, { "question": "ドラッグイレブン", - "icon": "./assets/data/nsi/logos/drugeleven-650eee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drugeleven-650eee.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -345909,7 +346258,7 @@ }, { "question": "マツモトキヨシ", - "icon": "./assets/data/nsi/logos/matsumotokiyoshi-650eee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/matsumotokiyoshi-650eee.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345933,7 +346282,7 @@ }, { "question": "丁丁藥局", - "icon": "./assets/data/nsi/logos/tintindrugstore-9d8b4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tintindrugstore-9d8b4e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345955,7 +346304,7 @@ }, { "question": "北京同仁堂 Beijing Tong Ren Tang", - "icon": "./assets/data/nsi/logos/beijingtongrentang-ccc53f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beijingtongrentang-ccc53f.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -345980,7 +346329,7 @@ }, { "question": "同仁堂", - "icon": "./assets/data/nsi/logos/tongrentangpharmacy-ede427.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tongrentangpharmacy-ede427.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -346021,7 +346370,7 @@ }, { "question": "大樹藥局", - "icon": "./assets/data/nsi/logos/greattreepharmacy-9d8b4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greattreepharmacy-9d8b4e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -346082,7 +346431,7 @@ }, { "question": "杏一醫療用品", - "icon": "./assets/data/nsi/logos/medfirst-9d8b4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/medfirst-9d8b4e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -346103,7 +346452,7 @@ }, { "question": "杏林堂", - "icon": "./assets/data/nsi/logos/kyorindo-650eee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyorindo-650eee.png", "osmTags": { "and": [ "amenity=pharmacy", @@ -346124,7 +346473,7 @@ }, { "question": "松本清", - "icon": "./assets/data/nsi/logos/matsumotokiyoshi-9d8b4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/matsumotokiyoshi-9d8b4e.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -346147,7 +346496,7 @@ }, { "question": "松本清 Matsumoto Kiyoshi", - "icon": "./assets/data/nsi/logos/matsumotokiyoshi-d98f99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/matsumotokiyoshi-d98f99.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -346352,7 +346701,7 @@ }, { "question": "Max Spielmann photo booth", - "icon": "./assets/data/nsi/logos/maxspielmann-72d3a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxspielmann-72d3a7.jpg", "osmTags": { "and": [ "amenity=photo_booth", @@ -346387,7 +346736,7 @@ }, { "question": "Photo-Me", - "icon": "./assets/data/nsi/logos/photome-207538.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/photome-207538.jpg", "osmTags": { "and": [ "amenity=photo_booth", @@ -346403,7 +346752,7 @@ }, { "question": "Photomaton", - "icon": "./assets/data/nsi/logos/photomaton-94071a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/photomaton-94071a.jpg", "osmTags": { "and": [ "amenity=photo_booth", @@ -346419,7 +346768,7 @@ }, { "question": "Prontophot", - "icon": "./assets/data/nsi/logos/prontophot-84b0f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prontophot-84b0f3.svg", "osmTags": { "and": [ "amenity=photo_booth", @@ -346454,7 +346803,7 @@ }, { "question": "Amazon", - "icon": "./assets/data/nsi/logos/amazon-2083a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amazon-2083a7.png", "osmTags": { "and": [ "amenity=post_depot", @@ -346472,7 +346821,7 @@ }, { "question": "DHL", - "icon": "./assets/data/nsi/logos/dhl-2083a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhl-2083a7.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -346491,7 +346840,7 @@ }, { "question": "DPD", - "icon": "./assets/data/nsi/logos/dpd-402e3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dpd-402e3b.png", "osmTags": { "and": [ "amenity=post_depot", @@ -346510,7 +346859,7 @@ }, { "question": "FedEx", - "icon": "./assets/data/nsi/logos/fedex-2083a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fedex-2083a7.png", "osmTags": { "and": [ "amenity=post_depot", @@ -346528,7 +346877,7 @@ }, { "question": "InXpress", - "icon": "./assets/data/nsi/logos/inxpress-182e7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inxpress-182e7a.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -346546,7 +346895,7 @@ }, { "question": "Speedy", - "icon": "./assets/data/nsi/logos/speedy-bb90e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/speedy-bb90e2.png", "osmTags": { "and": [ "amenity=post_depot", @@ -346564,7 +346913,7 @@ }, { "question": "UPS", - "icon": "./assets/data/nsi/logos/ups-2083a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ups-2083a7.png", "osmTags": { "and": [ "amenity=post_depot", @@ -346582,7 +346931,7 @@ }, { "question": "Yodel", - "icon": "./assets/data/nsi/logos/yodel-d5dfdd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yodel-d5dfdd.svg", "osmTags": { "and": [ "amenity=post_depot", @@ -346601,7 +346950,7 @@ }, { "question": "Agência dos Correios", - "icon": "./assets/data/nsi/logos/correios-6c9171.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correios-6c9171.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346618,7 +346967,7 @@ }, { "question": "Best Express", - "icon": "./assets/data/nsi/logos/bestexpress-4c54ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bestexpress-4c54ab.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346639,7 +346988,7 @@ }, { "question": "City Express (Србија)", - "icon": "./assets/data/nsi/logos/cityexpress-59a7c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityexpress-59a7c7.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346654,7 +347003,7 @@ }, { "question": "DHL", - "icon": "./assets/data/nsi/logos/dhl-27cb18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhl-27cb18.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346670,7 +347019,7 @@ }, { "question": "DPD", - "icon": "./assets/data/nsi/logos/dpd-f31092.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dpd-f31092.png", "osmTags": { "and": [ "amenity=post_office", @@ -346686,7 +347035,7 @@ }, { "question": "Estafeta", - "icon": "./assets/data/nsi/logos/estafeta-d15952.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/estafeta-d15952.svg", "osmTags": { "and": [ "amenity=post_office", @@ -346702,7 +347051,7 @@ }, { "question": "Express One (Bosnia & Herzegovina)", - "icon": "./assets/data/nsi/logos/expressone-e1935e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressone-e1935e.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346717,7 +347066,7 @@ }, { "question": "Express One (Magyarország)", - "icon": "./assets/data/nsi/logos/expressone-9e675c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressone-9e675c.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346760,7 +347109,7 @@ }, { "question": "Express One (България)", - "icon": "./assets/data/nsi/logos/expressone-628448.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressone-628448.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346775,7 +347124,7 @@ }, { "question": "FedEx Office", - "icon": "./assets/data/nsi/logos/fedexoffice-27cb18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fedexoffice-27cb18.png", "osmTags": { "and": [ "amenity=post_office", @@ -346792,7 +347141,7 @@ }, { "question": "FedEx Ship Center", - "icon": "./assets/data/nsi/logos/fedexshipcenter-27cb18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fedexshipcenter-27cb18.png", "osmTags": { "and": [ "amenity=post_office", @@ -346808,7 +347157,7 @@ }, { "question": "Inter Rapidisimo", - "icon": "./assets/data/nsi/logos/interrapidisimo-722495.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/interrapidisimo-722495.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346824,7 +347173,7 @@ }, { "question": "InTime", - "icon": "./assets/data/nsi/logos/intime-628448.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intime-628448.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346839,7 +347188,7 @@ }, { "question": "Mail Boxes Etc.", - "icon": "./assets/data/nsi/logos/mailboxesetc-187121.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mailboxesetc-187121.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346856,7 +347205,7 @@ }, { "question": "Mail Boxes Etc. (Ireland/UK)", - "icon": "./assets/data/nsi/logos/mailboxesetc-a028f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mailboxesetc-a028f7.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346873,7 +347222,7 @@ }, { "question": "Oman Post / بريد عمان", - "icon": "./assets/data/nsi/logos/omanpost-dcf1e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omanpost-dcf1e6.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346893,7 +347242,7 @@ }, { "question": "Orlen Paczka", - "icon": "./assets/data/nsi/logos/orlenpaczka-4d399f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlenpaczka-4d399f.svg", "osmTags": { "and": [ "amenity=post_office", @@ -346910,7 +347259,7 @@ }, { "question": "Overseas Express (Hrvatska)", - "icon": "./assets/data/nsi/logos/cityexpress-de0e55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityexpress-de0e55.png", "osmTags": { "and": [ "amenity=post_office", @@ -346925,7 +347274,7 @@ }, { "question": "Pak Mail", - "icon": "./assets/data/nsi/logos/pakmail-b9aa24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pakmail-b9aa24.png", "osmTags": { "and": [ "amenity=post_office", @@ -346941,7 +347290,7 @@ }, { "question": "Paquetexpress", - "icon": "./assets/data/nsi/logos/paquetexpress-d15952.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paquetexpress-d15952.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346957,7 +347306,7 @@ }, { "question": "Poczta Polska", - "icon": "./assets/data/nsi/logos/pocztapolska-4d399f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pocztapolska-4d399f.png", "osmTags": { "and": [ "amenity=post_office", @@ -346972,7 +347321,7 @@ }, { "question": "Post Office (UK)", - "icon": "./assets/data/nsi/logos/postoffice-a028f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postoffice-a028f7.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -346987,7 +347336,7 @@ }, { "question": "Posta Kenya", - "icon": "./assets/data/nsi/logos/postakenya-411fca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postakenya-411fca.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347003,7 +347352,7 @@ }, { "question": "Posten (Norge)", - "icon": "./assets/data/nsi/logos/posten-0526a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/posten-0526a8.png", "osmTags": { "and": [ "amenity=post_office", @@ -347018,7 +347367,7 @@ }, { "question": "PostNet", - "icon": "./assets/data/nsi/logos/postnet-7f7712.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postnet-7f7712.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347034,7 +347383,7 @@ }, { "question": "Speedy", - "icon": "./assets/data/nsi/logos/speedy-628448.png", + "icon": "https://data.mapcomplete.org/nsi//logos/speedy-628448.png", "osmTags": { "and": [ "amenity=post_office", @@ -347050,7 +347399,7 @@ }, { "question": "The Courier Guy", - "icon": "./assets/data/nsi/logos/thecourierguy-8373b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecourierguy-8373b7.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347066,7 +347415,7 @@ }, { "question": "The UPS Store", - "icon": "./assets/data/nsi/logos/theupsstore-d4e3fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theupsstore-d4e3fc.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347084,7 +347433,7 @@ }, { "question": "Български пощи", - "icon": "./assets/data/nsi/logos/6d0749-628448.png", + "icon": "https://data.mapcomplete.org/nsi//logos/6d0749-628448.png", "osmTags": { "and": [ "amenity=post_office", @@ -347099,7 +347448,7 @@ }, { "question": "Еконт", - "icon": "./assets/data/nsi/logos/4f7c8b-628448.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/4f7c8b-628448.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347114,7 +347463,7 @@ }, { "question": "СДЭК", - "icon": "./assets/data/nsi/logos/5ac048-1328c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/5ac048-1328c6.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347189,7 +347538,7 @@ }, { "question": "圆通速递", - "icon": "./assets/data/nsi/logos/ytoexpress-de5f7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ytoexpress-de5f7a.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347210,7 +347559,7 @@ }, { "question": "德邦快递", - "icon": "./assets/data/nsi/logos/depponexpress-de5f7a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/depponexpress-de5f7a.svg", "osmTags": { "and": [ "amenity=post_office", @@ -347251,7 +347600,7 @@ }, { "question": "菜鸟驿站", - "icon": "./assets/data/nsi/logos/cainiao-de5f7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cainiao-de5f7a.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347291,7 +347640,7 @@ }, { "question": "順豐速運 SF Express", - "icon": "./assets/data/nsi/logos/sfexpress-5291fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sfexpress-5291fc.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347315,7 +347664,7 @@ }, { "question": "顺丰速运", - "icon": "./assets/data/nsi/logos/sfexpress-316e92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sfexpress-316e92.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -347336,7 +347685,7 @@ }, { "question": "Best Brains", - "icon": "./assets/data/nsi/logos/bestbrains-c36518.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bestbrains-c36518.png", "osmTags": { "and": [ "amenity=prep_school", @@ -347352,7 +347701,7 @@ }, { "question": "C2 Education", - "icon": "./assets/data/nsi/logos/c2education-6f378a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c2education-6f378a.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347368,7 +347717,7 @@ }, { "question": "Huntington Learning Center", - "icon": "./assets/data/nsi/logos/huntingtonlearningcenter-6f378a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/huntingtonlearningcenter-6f378a.png", "osmTags": { "and": [ "amenity=prep_school", @@ -347384,7 +347733,7 @@ }, { "question": "Kumon (International)", - "icon": "./assets/data/nsi/logos/kumon-e16d00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kumon-e16d00.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347400,7 +347749,7 @@ }, { "question": "KUMON (日本)", - "icon": "./assets/data/nsi/logos/kumon-cae330.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kumon-cae330.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347419,7 +347768,7 @@ }, { "question": "Mathnasium", - "icon": "./assets/data/nsi/logos/mathnasium-57f7a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mathnasium-57f7a3.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347435,7 +347784,7 @@ }, { "question": "Oxford Learning", - "icon": "./assets/data/nsi/logos/oxfordlearning-9c8dc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfordlearning-9c8dc0.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347451,7 +347800,7 @@ }, { "question": "Russian School of Mathematics", - "icon": "./assets/data/nsi/logos/russianschoolofmathematics-6f378a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/russianschoolofmathematics-6f378a.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347467,7 +347816,7 @@ }, { "question": "Schülerhilfe", - "icon": "./assets/data/nsi/logos/schulerhilfe-089158.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schulerhilfe-089158.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347483,7 +347832,7 @@ }, { "question": "Studienkreis", - "icon": "./assets/data/nsi/logos/studienkreis-fce332.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/studienkreis-fce332.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347499,7 +347848,7 @@ }, { "question": "Sylvan", - "icon": "./assets/data/nsi/logos/sylvan-6f378a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sylvan-6f378a.jpg", "osmTags": { "and": [ "amenity=prep_school", @@ -347832,7 +348181,7 @@ }, { "question": "栄光ゼミナール", - "icon": "./assets/data/nsi/logos/eikohseminar-cae330.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eikohseminar-cae330.svg", "osmTags": { "and": [ "amenity=prep_school", @@ -347893,7 +348242,7 @@ }, { "question": "秀英予備校", - "icon": "./assets/data/nsi/logos/shueiyobiko-cae330.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shueiyobiko-cae330.png", "osmTags": { "and": [ "amenity=prep_school", @@ -347986,7 +348335,7 @@ }, { "question": "Amber Taverns", - "icon": "./assets/data/nsi/logos/ambertaverns-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambertaverns-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348001,7 +348350,7 @@ }, { "question": "Antic", - "icon": "./assets/data/nsi/logos/antic-eaed91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/antic-eaed91.png", "osmTags": { "and": [ "amenity=pub", @@ -348016,7 +348365,7 @@ }, { "question": "BEFeD", - "icon": "./assets/data/nsi/logos/befed-1d1bef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/befed-1d1bef.png", "osmTags": { "and": [ "amenity=pub", @@ -348032,7 +348381,7 @@ }, { "question": "Belhaven Pubs", - "icon": "./assets/data/nsi/logos/belhavenpubs-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belhavenpubs-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348047,7 +348396,7 @@ }, { "question": "BrewDog", - "icon": "./assets/data/nsi/logos/brewdog-f93a3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brewdog-f93a3c.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348063,7 +348412,7 @@ }, { "question": "Brewers Fayre", - "icon": "./assets/data/nsi/logos/brewersfayre-eaed91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brewersfayre-eaed91.png", "osmTags": { "and": [ "amenity=pub", @@ -348094,7 +348443,7 @@ }, { "question": "Castle Rock", - "icon": "./assets/data/nsi/logos/castlerock-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/castlerock-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348111,7 +348460,7 @@ }, { "question": "Chef & Brewer", - "icon": "./assets/data/nsi/logos/chefandbrewer-eaed91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chefandbrewer-eaed91.png", "osmTags": { "and": [ "amenity=pub", @@ -348184,7 +348533,7 @@ }, { "question": "Greene King", - "icon": "./assets/data/nsi/logos/greeneking-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greeneking-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348243,7 +348592,7 @@ }, { "question": "Hungry Horse", - "icon": "./assets/data/nsi/logos/hungryhorse-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hungryhorse-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348274,7 +348623,7 @@ }, { "question": "Marston's", - "icon": "./assets/data/nsi/logos/marstons-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marstons-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348289,7 +348638,7 @@ }, { "question": "MásQMenos", - "icon": "./assets/data/nsi/logos/masqmenos-575688.png", + "icon": "https://data.mapcomplete.org/nsi//logos/masqmenos-575688.png", "osmTags": { "and": [ "amenity=pub", @@ -348306,7 +348655,7 @@ }, { "question": "McMenamins", - "icon": "./assets/data/nsi/logos/mcmenamins-3769c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcmenamins-3769c3.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348366,7 +348715,7 @@ }, { "question": "Palmers Brewery", - "icon": "./assets/data/nsi/logos/palmersbrewery-9ddc26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmersbrewery-9ddc26.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348381,7 +348730,7 @@ }, { "question": "Pitcher & Piano", - "icon": "./assets/data/nsi/logos/pitcherandpiano-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pitcherandpiano-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348415,7 +348764,7 @@ }, { "question": "Samuel Smith", - "icon": "./assets/data/nsi/logos/samuelsmith-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samuelsmith-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348433,7 +348782,7 @@ }, { "question": "Schmizza Pub & Grub", - "icon": "./assets/data/nsi/logos/schmizzapubandgrub-3769c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schmizzapubandgrub-3769c3.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348451,7 +348800,7 @@ }, { "question": "Schmizza Public House", - "icon": "./assets/data/nsi/logos/schmizzapublichouse-3769c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schmizzapublichouse-3769c3.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348526,7 +348875,7 @@ }, { "question": "The Brass Tap", - "icon": "./assets/data/nsi/logos/thebrasstap-41045b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thebrasstap-41045b.png", "osmTags": { "and": [ "amenity=pub", @@ -348542,7 +348891,7 @@ }, { "question": "The Craft Beer Co.", - "icon": "./assets/data/nsi/logos/thecraftbeerco-f71e9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecraftbeerco-f71e9b.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348558,7 +348907,7 @@ }, { "question": "Thwaites", - "icon": "./assets/data/nsi/logos/thwaites-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thwaites-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348588,7 +348937,7 @@ }, { "question": "Walkabout", - "icon": "./assets/data/nsi/logos/walkabout-eaed91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walkabout-eaed91.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348604,7 +348953,7 @@ }, { "question": "Wetherspoon", - "icon": "./assets/data/nsi/logos/wetherspoon-eaed91.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wetherspoon-eaed91.svg", "osmTags": { "and": [ "dog=no", @@ -348653,7 +349002,7 @@ }, { "question": "はなの舞", - "icon": "./assets/data/nsi/logos/hananomai-0435b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hananomai-0435b9.png", "osmTags": { "and": [ "amenity=pub", @@ -348692,7 +349041,7 @@ }, { "question": "和民", - "icon": "./assets/data/nsi/logos/watami-0435b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watami-0435b9.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348728,7 +349077,7 @@ }, { "question": "白木屋", - "icon": "./assets/data/nsi/logos/shirokiya-0435b9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shirokiya-0435b9.svg", "osmTags": { "and": [ "amenity=pub", @@ -348802,7 +349151,7 @@ }, { "question": "養老乃瀧", - "icon": "./assets/data/nsi/logos/yoronotaki-0435b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yoronotaki-0435b9.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348841,7 +349190,7 @@ }, { "question": "鳥貴族", - "icon": "./assets/data/nsi/logos/torikizoku-0435b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torikizoku-0435b9.jpg", "osmTags": { "and": [ "amenity=pub", @@ -348861,7 +349210,7 @@ }, { "question": "Bibliocabine", - "icon": "./assets/data/nsi/logos/bibliocabina-227ad5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bibliocabina-227ad5.png", "osmTags": { "and": [ "amenity=public_bookcase", @@ -348891,7 +349240,7 @@ }, { "question": "Boekentil (Stad Leuven)", - "icon": "./assets/data/nsi/logos/boekentil-31eb16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boekentil-31eb16.jpg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -348921,7 +349270,7 @@ }, { "question": "Bücherhäuschen (Seiteneinsteiger e.V.)", - "icon": "./assets/data/nsi/logos/bucherhauschen-49b5a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bucherhauschen-49b5a5.jpg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -348953,7 +349302,7 @@ }, { "question": "Enjoy a book (NMBS/SNCB)", - "icon": "./assets/data/nsi/logos/enjoyabook-31eb16.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enjoyabook-31eb16.svg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -348969,7 +349318,7 @@ }, { "question": "Innogy Bücherschrank", - "icon": "./assets/data/nsi/logos/innogybucherschrank-49b5a5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogybucherschrank-49b5a5.svg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349000,7 +349349,7 @@ }, { "question": "Lesekiosk (Foreningen !les)", - "icon": "./assets/data/nsi/logos/lesekiosk-1271c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lesekiosk-1271c4.jpg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349044,7 +349393,7 @@ }, { "question": "Little Free Library", - "icon": "./assets/data/nsi/logos/littlefreelibrary-6e8312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/littlefreelibrary-6e8312.png", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349059,7 +349408,7 @@ }, { "question": "Mercator Bücherschrank", - "icon": "./assets/data/nsi/logos/mercatorbucherschrank-49b5a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercatorbucherschrank-49b5a5.jpg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349075,7 +349424,7 @@ }, { "question": "Minibib Torhout", - "icon": "./assets/data/nsi/logos/minibib-31eb16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minibib-31eb16.jpg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349119,7 +349468,7 @@ }, { "question": "Official BookCrossing Zone (OBCZ)", - "icon": "./assets/data/nsi/logos/obcz-6e8312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obcz-6e8312.jpg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349135,7 +349484,7 @@ }, { "question": "RWE Bücherschrank", - "icon": "./assets/data/nsi/logos/rwebucherschrank-49b5a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwebucherschrank-49b5a5.jpg", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349151,7 +349500,7 @@ }, { "question": "Street Library", - "icon": "./assets/data/nsi/logos/streetlibrary-ff483e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/streetlibrary-ff483e.png", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349167,7 +349516,7 @@ }, { "question": "Westenergie Bücherschrank", - "icon": "./assets/data/nsi/logos/westenergiebucherschrank-49b5a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westenergiebucherschrank-49b5a5.png", "osmTags": { "and": [ "amenity=public_bookcase", @@ -349203,7 +349552,7 @@ }, { "question": "AIM Recyclage", - "icon": "./assets/data/nsi/logos/aimrecyclage-a73b99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aimrecyclage-a73b99.jpg", "osmTags": { "and": [ "recycling_type=centre", @@ -349220,7 +349569,7 @@ }, { "question": "AIM Recycling", - "icon": "./assets/data/nsi/logos/aimrecycling-1b67de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aimrecycling-1b67de.jpg", "osmTags": { "and": [ "recycling_type=centre", @@ -349237,7 +349586,7 @@ }, { "question": "Arbeiter-Samariter-Bund", - "icon": "./assets/data/nsi/logos/arbeitersamariterbund-f6fab4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-f6fab4.jpg", "osmTags": { "and": [ "recycling_type=container", @@ -349253,7 +349602,7 @@ }, { "question": "Arbeiterwohlfahrt", - "icon": "./assets/data/nsi/logos/arbeiterwohlfahrt-f6fab4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-f6fab4.svg", "osmTags": { "and": [ "recycling_type=container", @@ -349269,7 +349618,7 @@ }, { "question": "Bayerisches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/bayerischesroteskreuz-ec47a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-ec47a1.jpg", "osmTags": { "and": [ "recycling_type=container", @@ -349285,7 +349634,7 @@ }, { "question": "BottleDrop Express", - "icon": "./assets/data/nsi/logos/bottledropexpress-95a314.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bottledropexpress-95a314.png", "osmTags": { "and": [ "recycling:cans=yes", @@ -349306,7 +349655,7 @@ }, { "question": "BottleDrop Redemption Center", - "icon": "./assets/data/nsi/logos/bottledropredemptioncenter-95a314.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bottledropredemptioncenter-95a314.png", "osmTags": { "and": [ "recycling:cans=yes", @@ -349327,7 +349676,7 @@ }, { "question": "Caritas (Deutschland)", - "icon": "./assets/data/nsi/logos/caritas-f6fab4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-f6fab4.png", "osmTags": { "and": [ "recycling_type=container", @@ -349362,7 +349711,7 @@ }, { "question": "Depozīta punkts", - "icon": "./assets/data/nsi/logos/depozitapunkts-831330.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/depozitapunkts-831330.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -349381,7 +349730,7 @@ }, { "question": "Deutsches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/deutschesroteskreuz-f6fab4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-f6fab4.jpg", "osmTags": { "and": [ "recycling_type=container", @@ -349397,7 +349746,7 @@ }, { "question": "Diakonie", - "icon": "./assets/data/nsi/logos/diakonie-f6fab4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diakonie-f6fab4.jpg", "osmTags": { "and": [ "recycling_type=container", @@ -349413,7 +349762,7 @@ }, { "question": "ecoATM", - "icon": "./assets/data/nsi/logos/ecoatm-f8d7ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecoatm-f8d7ba.jpg", "osmTags": { "and": [ "recycling:mobile_phones=yes", @@ -349431,7 +349780,7 @@ }, { "question": "ecoco", - "icon": "./assets/data/nsi/logos/ecoco-d37f05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecoco-d37f05.jpg", "osmTags": { "and": [ "recycling_type=container", @@ -349455,7 +349804,7 @@ }, { "question": "Islamic Relief", - "icon": "./assets/data/nsi/logos/islamicrelief-a9e339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/islamicrelief-a9e339.jpg", "osmTags": { "and": [ "recycling:clothes=yes", @@ -349476,7 +349825,7 @@ }, { "question": "Kolpingwerk", - "icon": "./assets/data/nsi/logos/kolpingwerk-f6fab4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kolpingwerk-f6fab4.jpg", "osmTags": { "and": [ "recycling_type=container", @@ -349492,7 +349841,7 @@ }, { "question": "Malteser Hilfsdienst", - "icon": "./assets/data/nsi/logos/malteserhilfsdienst-f6fab4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/malteserhilfsdienst-f6fab4.png", "osmTags": { "and": [ "recycling_type=container", @@ -349509,7 +349858,7 @@ }, { "question": "Oxfam", - "icon": "./assets/data/nsi/logos/oxfam-a9e339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfam-a9e339.jpg", "osmTags": { "and": [ "recycling:clothes=yes", @@ -349529,7 +349878,7 @@ }, { "question": "Planet Aid", - "icon": "./assets/data/nsi/logos/planetaid-f8d7ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/planetaid-f8d7ba.jpg", "osmTags": { "and": [ "recycling:clothes=yes", @@ -349567,7 +349916,7 @@ }, { "question": "Saint Vincent de Paul", - "icon": "./assets/data/nsi/logos/saintvincentdepaul-f8d7ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintvincentdepaul-f8d7ba.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -349586,7 +349935,7 @@ }, { "question": "The Salvation Army (UK)", - "icon": "./assets/data/nsi/logos/thesalvationarmy-a9e339.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-a9e339.png", "osmTags": { "and": [ "recycling:clothes=yes", @@ -349603,7 +349952,7 @@ }, { "question": "The Salvation Army (USA)", - "icon": "./assets/data/nsi/logos/thesalvationarmy-f8d7ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-f8d7ba.png", "osmTags": { "and": [ "recycling:clothes=yes", @@ -349621,7 +349970,7 @@ }, { "question": "TRAID", - "icon": "./assets/data/nsi/logos/traid-a9e339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/traid-a9e339.jpg", "osmTags": { "and": [ "recycling:clothes=yes", @@ -349642,7 +349991,7 @@ }, { "question": "USAgain", - "icon": "./assets/data/nsi/logos/usagain-f8d7ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/usagain-f8d7ba.png", "osmTags": { "and": [ "recycling:clothes=yes", @@ -349662,7 +350011,7 @@ }, { "question": "Лѣпта", - "icon": "./assets/data/nsi/logos/b6327b-f85e9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/b6327b-f85e9d.png", "osmTags": { "and": [ "recycling:bags=yes", @@ -349686,7 +350035,7 @@ }, { "question": "Спасибо!", - "icon": "./assets/data/nsi/logos/e4ddd4-f85e9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/e4ddd4-f85e9d.jpg", "osmTags": { "and": [ "recycling:books=yes", @@ -349708,7 +350057,7 @@ }, { "question": "綠在區區 GREEN@COMMUNITY", - "icon": "./assets/data/nsi/logos/greencommunity-f66c52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greencommunity-f66c52.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -349734,7 +350083,7 @@ }, { "question": "'t Zusje", - "icon": "./assets/data/nsi/logos/tzusje-2b67bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tzusje-2b67bf.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -349751,7 +350100,7 @@ }, { "question": "100 Montaditos", - "icon": "./assets/data/nsi/logos/100montaditos-f7c5fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/100montaditos-f7c5fe.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -349768,7 +350117,7 @@ }, { "question": "110 Grill", - "icon": "./assets/data/nsi/logos/110grill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/110grill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -349785,19 +350134,19 @@ }, { "question": "3 Brewers (Ontario)", - "icon": "./assets/data/nsi/logos/3brewers-f8643e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3brewers-f8643e.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=burger;pizza;seafood", - "official_name=Les 3 Brasseurs", { "or": [ "brand=3 Brasseurs", "brand:wikidata=Q3230326", "name=3 Brewers", "name:en=3 Brewers", - "name:fr=3 Brasseurs" + "name:fr=3 Brasseurs", + "official_name=Les 3 Brasseurs" ] } ] @@ -349805,7 +350154,7 @@ }, { "question": "54th Street Grill and Bar", - "icon": "./assets/data/nsi/logos/54thstreetgrillandbar-28ad39.png", + "icon": "https://data.mapcomplete.org/nsi//logos/54thstreetgrillandbar-28ad39.png", "osmTags": { "and": [ "amenity=restaurant", @@ -349822,7 +350171,7 @@ }, { "question": "60 seconds to napoli", - "icon": "./assets/data/nsi/logos/60secondstonapoli-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/60secondstonapoli-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -349839,17 +350188,17 @@ }, { "question": "Abby's", - "icon": "./assets/data/nsi/logos/abbys-7af206.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abbys-7af206.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=pizza", - "official_name=Abby's Legendary Pizza", { "or": [ "brand=Abby's Pizza", "brand:wikidata=Q112648278", - "name=Abby's" + "name=Abby's", + "official_name=Abby's Legendary Pizza" ] } ] @@ -349857,7 +350206,7 @@ }, { "question": "AFURI", - "icon": "./assets/data/nsi/logos/afuri-9b358b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/afuri-9b358b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -349890,7 +350239,7 @@ }, { "question": "Amici's East Coast Pizzeria", - "icon": "./assets/data/nsi/logos/amici-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amici-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -349925,7 +350274,7 @@ }, { "question": "Anthony's Coal Fired Pizza", - "icon": "./assets/data/nsi/logos/anthonyscoalfiredpizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anthonyscoalfiredpizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -349942,7 +350291,7 @@ }, { "question": "Aposto", - "icon": "./assets/data/nsi/logos/aposto-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aposto-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -349959,17 +350308,17 @@ }, { "question": "Applebee's", - "icon": "./assets/data/nsi/logos/applebees-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/applebees-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Applebee's Neighborhood Grill & Bar", { "or": [ "brand=Applebee's Neighborhood Grill & Bar", "brand:wikidata=Q621532", - "name=Applebee's" + "name=Applebee's", + "official_name=Applebee's Neighborhood Grill & Bar" ] } ] @@ -349977,7 +350326,7 @@ }, { "question": "Arepa & Co", - "icon": "./assets/data/nsi/logos/arepaandco-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arepaandco-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -349994,17 +350343,17 @@ }, { "question": "Arooga's", - "icon": "./assets/data/nsi/logos/aroogas-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aroogas-96af40.png", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Arooga's Grille House and Sports Bar", { "or": [ "brand=Arooga's", "brand:wikidata=Q72963322", - "name=Arooga's" + "name=Arooga's", + "official_name=Arooga's Grille House and Sports Bar" ] } ] @@ -350012,7 +350361,7 @@ }, { "question": "ASK Italian", - "icon": "./assets/data/nsi/logos/askitalian-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/askitalian-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350029,7 +350378,7 @@ }, { "question": "Au Bureau", - "icon": "./assets/data/nsi/logos/aubureau-dee615.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aubureau-dee615.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350046,7 +350395,7 @@ }, { "question": "Aurelio's Pizza", - "icon": "./assets/data/nsi/logos/aureliospizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aureliospizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350063,7 +350412,7 @@ }, { "question": "Autogrill", - "icon": "./assets/data/nsi/logos/autogrill-4c0f72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autogrill-4c0f72.png", "osmTags": { "and": [ "amenity=restaurant", @@ -350080,7 +350429,7 @@ }, { "question": "Azzip Pizza", - "icon": "./assets/data/nsi/logos/azzippizza-96af40.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/azzippizza-96af40.svg", "osmTags": { "and": [ "amenity=restaurant", @@ -350097,7 +350446,7 @@ }, { "question": "B.C. Pizza", - "icon": "./assets/data/nsi/logos/bcpizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcpizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350114,17 +350463,17 @@ }, { "question": "Bahama Breeze", - "icon": "./assets/data/nsi/logos/bahamabreeze-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bahamabreeze-96af40.png", "osmTags": { "and": [ "amenity=restaurant", "cuisine=caribbean", - "official_name=Bahama Breeze Island Grille", { "or": [ "brand=Bahama Breeze", "brand:wikidata=Q4842316", - "name=Bahama Breeze" + "name=Bahama Breeze", + "official_name=Bahama Breeze Island Grille" ] } ] @@ -350132,7 +350481,7 @@ }, { "question": "Banana Tree", - "icon": "./assets/data/nsi/logos/bananatree-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bananatree-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350149,7 +350498,7 @@ }, { "question": "Bar + Block", - "icon": "./assets/data/nsi/logos/barblock-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barblock-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350166,7 +350515,7 @@ }, { "question": "Bar-B-Q Plaza", - "icon": "./assets/data/nsi/logos/barbqplaza-5a3582.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barbqplaza-5a3582.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350187,7 +350536,7 @@ }, { "question": "Barro's Pizza", - "icon": "./assets/data/nsi/logos/barrospizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barrospizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350204,7 +350553,7 @@ }, { "question": "Bartaco", - "icon": "./assets/data/nsi/logos/bartaco-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bartaco-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350221,7 +350570,7 @@ }, { "question": "Basilic & Co", - "icon": "./assets/data/nsi/logos/basilicandco-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/basilicandco-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350254,7 +350603,7 @@ }, { "question": "Bastard Burgers", - "icon": "./assets/data/nsi/logos/bastardburgers-45c141.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bastardburgers-45c141.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350272,7 +350621,7 @@ }, { "question": "bb.q Chicken", - "icon": "./assets/data/nsi/logos/bbqchicken-d60782.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbqchicken-d60782.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350289,7 +350638,7 @@ }, { "question": "BBB", - "icon": "./assets/data/nsi/logos/bbb-b691b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbb-b691b2.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350310,7 +350659,7 @@ }, { "question": "BBQ치킨", - "icon": "./assets/data/nsi/logos/bbqolivechickencafe-5f8110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bbqolivechickencafe-5f8110.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350331,7 +350680,7 @@ }, { "question": "BCD Tofu House", - "icon": "./assets/data/nsi/logos/bcdtofuhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcdtofuhouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350348,7 +350697,7 @@ }, { "question": "bd's Mongolian Grill", - "icon": "./assets/data/nsi/logos/bdsmongoliangrill-bcd08b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdsmongoliangrill-bcd08b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350381,7 +350730,7 @@ }, { "question": "Beefeater", - "icon": "./assets/data/nsi/logos/beefeater-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beefeater-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350397,7 +350746,7 @@ }, { "question": "Beets & Roots", - "icon": "./assets/data/nsi/logos/beetsandroots-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beetsandroots-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350413,7 +350762,7 @@ }, { "question": "Beggars Pizza", - "icon": "./assets/data/nsi/logos/beggarspizza-b2316d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beggarspizza-b2316d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350430,7 +350779,7 @@ }, { "question": "Bella Italia", - "icon": "./assets/data/nsi/logos/bellaitalia-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellaitalia-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350447,7 +350796,7 @@ }, { "question": "Benihana", - "icon": "./assets/data/nsi/logos/benihana-934c20.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benihana-934c20.png", "osmTags": { "and": [ "amenity=restaurant", @@ -350464,7 +350813,7 @@ }, { "question": "Benny & Co.", - "icon": "./assets/data/nsi/logos/bennyandco-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bennyandco-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350498,7 +350847,7 @@ }, { "question": "Bertucci's", - "icon": "./assets/data/nsi/logos/bertuccis-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bertuccis-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350533,7 +350882,7 @@ }, { "question": "Biesiadowo", - "icon": "./assets/data/nsi/logos/biesiadowo-07fabc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biesiadowo-07fabc.png", "osmTags": { "and": [ "amenity=restaurant", @@ -350550,17 +350899,17 @@ }, { "question": "Big Boy", - "icon": "./assets/data/nsi/logos/bigboy-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigboy-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=burger", - "official_name=Big Boy Restaurant & Bakery", { "or": [ "brand=Big Boy", "brand:wikidata=Q4386779", - "name=Big Boy" + "name=Big Boy", + "official_name=Big Boy Restaurant & Bakery" ] } ] @@ -350568,7 +350917,7 @@ }, { "question": "Bill's", - "icon": "./assets/data/nsi/logos/bills-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bills-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350601,7 +350950,7 @@ }, { "question": "Bisquets Obregón", - "icon": "./assets/data/nsi/logos/bisquetsobregon-f5830e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bisquetsobregon-f5830e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350618,7 +350967,7 @@ }, { "question": "Bistro Régent", - "icon": "./assets/data/nsi/logos/bistroregent-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bistroregent-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350635,17 +350984,17 @@ }, { "question": "BJ's", - "icon": "./assets/data/nsi/logos/bjs-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bjs-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=BJ's Restaurant & Brewhouse", { "or": [ "brand=BJ's", "brand:wikidata=Q4835755", - "name=BJ's" + "name=BJ's", + "official_name=BJ's Restaurant & Brewhouse" ] } ] @@ -350653,7 +351002,7 @@ }, { "question": "Black", - "icon": "./assets/data/nsi/logos/black-b691b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/black-b691b2.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350674,7 +351023,7 @@ }, { "question": "Black Angus", - "icon": "./assets/data/nsi/logos/blackangus-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackangus-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350691,7 +351040,7 @@ }, { "question": "Black Bear Diner", - "icon": "./assets/data/nsi/logos/blackbeardiner-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackbeardiner-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350708,7 +351057,7 @@ }, { "question": "Blaze Pizza", - "icon": "./assets/data/nsi/logos/blazepizza-902636.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blazepizza-902636.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350725,7 +351074,7 @@ }, { "question": "BLOCK HOUSE", - "icon": "./assets/data/nsi/logos/blockhouse-12455c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blockhouse-12455c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350742,7 +351091,7 @@ }, { "question": "Bob Evans", - "icon": "./assets/data/nsi/logos/bobevans-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobevans-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350759,7 +351108,7 @@ }, { "question": "Bonanza Steakhouse", - "icon": "./assets/data/nsi/logos/bonanzasteakhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonanzasteakhouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350776,7 +351125,7 @@ }, { "question": "Bonchon Chicken", - "icon": "./assets/data/nsi/logos/bonchonchicken-b76b63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonchonchicken-b76b63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350793,7 +351142,7 @@ }, { "question": "Bone Daddies", - "icon": "./assets/data/nsi/logos/bonedaddies-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonedaddies-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350813,7 +351162,7 @@ }, { "question": "Bonefish Grill", - "icon": "./assets/data/nsi/logos/bonefishgrill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonefishgrill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350846,7 +351195,7 @@ }, { "question": "Boston Pizza", - "icon": "./assets/data/nsi/logos/bostonpizza-85c92c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bostonpizza-85c92c.png", "osmTags": { "and": [ "amenity=restaurant", @@ -350863,7 +351212,7 @@ }, { "question": "Bravo", - "icon": "./assets/data/nsi/logos/bravo-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bravo-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350881,7 +351230,7 @@ }, { "question": "BreWingZ", - "icon": "./assets/data/nsi/logos/brewingz-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brewingz-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350916,7 +351265,7 @@ }, { "question": "Brio", - "icon": "./assets/data/nsi/logos/brio-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brio-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350934,7 +351283,7 @@ }, { "question": "Browns", - "icon": "./assets/data/nsi/logos/browns-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/browns-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350950,7 +351299,7 @@ }, { "question": "Bubba Gump Shrimp Company", - "icon": "./assets/data/nsi/logos/bubbagumpshrimpcompany-a282f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bubbagumpshrimpcompany-a282f9.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350967,7 +351316,7 @@ }, { "question": "Bubba's 33", - "icon": "./assets/data/nsi/logos/bubbas33-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bubbas33-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -350984,7 +351333,7 @@ }, { "question": "Buca di Beppo", - "icon": "./assets/data/nsi/logos/bucadibeppo-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bucadibeppo-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351001,7 +351350,7 @@ }, { "question": "Bucking Bull", - "icon": "./assets/data/nsi/logos/buckingbull-3c82e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buckingbull-3c82e9.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351018,7 +351367,7 @@ }, { "question": "Buffalo Grill", - "icon": "./assets/data/nsi/logos/buffalogrill-3d86c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/buffalogrill-3d86c6.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351035,7 +351384,7 @@ }, { "question": "Buffalo Wild Wings", - "icon": "./assets/data/nsi/logos/buffalowildwings-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buffalowildwings-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351053,7 +351402,7 @@ }, { "question": "Buffalo Wings & Rings", - "icon": "./assets/data/nsi/logos/buffalowingsandrings-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buffalowingsandrings-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351071,7 +351420,7 @@ }, { "question": "Burger & Lobster", - "icon": "./assets/data/nsi/logos/burgerandlobster-d7fd53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerandlobster-d7fd53.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351088,7 +351437,7 @@ }, { "question": "Burgerheart", - "icon": "./assets/data/nsi/logos/burgerheart-051971.png", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerheart-051971.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351105,7 +351454,7 @@ }, { "question": "Busaba", - "icon": "./assets/data/nsi/logos/busaba-9a0837.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/busaba-9a0837.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351122,7 +351471,7 @@ }, { "question": "Byron", - "icon": "./assets/data/nsi/logos/byron-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/byron-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351139,7 +351488,7 @@ }, { "question": "Cactus Club Cafe", - "icon": "./assets/data/nsi/logos/cactusclubcafe-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cactusclubcafe-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351156,7 +351505,7 @@ }, { "question": "Cafe & Bar Celona", - "icon": "./assets/data/nsi/logos/cafeandbarcelona-3fc85c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafeandbarcelona-3fc85c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351173,7 +351522,7 @@ }, { "question": "Cafe Del Sol", - "icon": "./assets/data/nsi/logos/cafedelsol-b8cc79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafedelsol-b8cc79.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351208,7 +351557,7 @@ }, { "question": "Cafe Rio", - "icon": "./assets/data/nsi/logos/caferio-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caferio-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351225,7 +351574,7 @@ }, { "question": "Café Rouge", - "icon": "./assets/data/nsi/logos/caferouge-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caferouge-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351258,7 +351607,7 @@ }, { "question": "California Fried Chicken", - "icon": "./assets/data/nsi/logos/cfc-25c4a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cfc-25c4a5.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351275,7 +351624,7 @@ }, { "question": "California Pizza Kitchen", - "icon": "./assets/data/nsi/logos/californiapizzakitchen-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/californiapizzakitchen-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351293,7 +351642,7 @@ }, { "question": "Campanile", - "icon": "./assets/data/nsi/logos/campanile-ee8eff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/campanile-ee8eff.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351326,7 +351675,7 @@ }, { "question": "Carluccio's", - "icon": "./assets/data/nsi/logos/carluccios-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carluccios-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351343,7 +351692,7 @@ }, { "question": "Carrabba's Italian Grill", - "icon": "./assets/data/nsi/logos/carrabbasitaliangrill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carrabbasitaliangrill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351375,7 +351724,7 @@ }, { "question": "CAVA", - "icon": "./assets/data/nsi/logos/cava-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cava-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351392,17 +351741,17 @@ }, { "question": "Cheddar's", - "icon": "./assets/data/nsi/logos/cheddars-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cheddars-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Cheddar's Scratch Kitchen", { "or": [ "brand=Cheddar's", "brand:wikidata=Q5089187", - "name=Cheddar's" + "name=Cheddar's", + "official_name=Cheddar's Scratch Kitchen" ] } ] @@ -351410,7 +351759,7 @@ }, { "question": "Cheeburger Cheeburger", - "icon": "./assets/data/nsi/logos/cheeburgercheeburger-d5e034.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cheeburgercheeburger-d5e034.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351427,17 +351776,17 @@ }, { "question": "Chevys", - "icon": "./assets/data/nsi/logos/chevys-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chevys-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=mexican", - "official_name=Chevys Fresh Mex", { "or": [ "brand=Chevys Fresh Mex", "brand:wikidata=Q5094466", - "name=Chevys" + "name=Chevys", + "official_name=Chevys Fresh Mex" ] } ] @@ -351445,17 +351794,17 @@ }, { "question": "Chili's", - "icon": "./assets/data/nsi/logos/chilis-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chilis-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=tex-mex", - "official_name=Chili's Grill & Bar", { "or": [ "brand=Chili's", "brand:wikidata=Q1072948", - "name=Chili's" + "name=Chili's", + "official_name=Chili's Grill & Bar" ] } ] @@ -351463,7 +351812,7 @@ }, { "question": "Chimcking", - "icon": "./assets/data/nsi/logos/chimcking-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chimcking-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351498,7 +351847,7 @@ }, { "question": "Chiquito", - "icon": "./assets/data/nsi/logos/chiquito-9b5453.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chiquito-9b5453.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351530,7 +351879,7 @@ }, { "question": "Chuck E. Cheese", - "icon": "./assets/data/nsi/logos/chuckecheese-826402.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chuckecheese-826402.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351548,7 +351897,7 @@ }, { "question": "Chuck's Roadhouse", - "icon": "./assets/data/nsi/logos/chucksroadhouse-0314e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chucksroadhouse-0314e3.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351565,7 +351914,7 @@ }, { "question": "Chuy's", - "icon": "./assets/data/nsi/logos/chuys-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chuys-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351582,7 +351931,7 @@ }, { "question": "Cicis", - "icon": "./assets/data/nsi/logos/cicis-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cicis-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351599,7 +351948,7 @@ }, { "question": "Claim Jumper", - "icon": "./assets/data/nsi/logos/claimjumper-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/claimjumper-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351616,7 +351965,7 @@ }, { "question": "Club Mexicana", - "icon": "./assets/data/nsi/logos/clubmexicana-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubmexicana-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351634,7 +351983,7 @@ }, { "question": "Club Milanesa", - "icon": "./assets/data/nsi/logos/clubmilanesa-8d1dc1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubmilanesa-8d1dc1.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351651,7 +352000,7 @@ }, { "question": "Coast to Coast", - "icon": "./assets/data/nsi/logos/coasttocoast-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coasttocoast-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351668,7 +352017,7 @@ }, { "question": "CoCo Ichibanya", - "icon": "./assets/data/nsi/logos/cocoichibanya-a00c19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocoichibanya-a00c19.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351690,7 +352039,7 @@ }, { "question": "Coco's Bakery", - "icon": "./assets/data/nsi/logos/cocosbakery-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cocosbakery-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351707,7 +352056,7 @@ }, { "question": "CoCo壱番屋", - "icon": "./assets/data/nsi/logos/cocoichibanya-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocoichibanya-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351732,7 +352081,7 @@ }, { "question": "CoCo壱番屋 (臺灣)", - "icon": "./assets/data/nsi/logos/cocoichibanya-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocoichibanya-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351759,7 +352108,7 @@ }, { "question": "CoCo壹番屋咖喱", - "icon": "./assets/data/nsi/logos/cocoichibanya-2b8b0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocoichibanya-2b8b0b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351783,7 +352132,7 @@ }, { "question": "Col'Cacchio Pizzeria", - "icon": "./assets/data/nsi/logos/colcacchiopizzeria-13b08d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colcacchiopizzeria-13b08d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351800,7 +352149,7 @@ }, { "question": "Condado Tacos", - "icon": "./assets/data/nsi/logos/condadotacos-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/condadotacos-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351817,7 +352166,7 @@ }, { "question": "Coop Restaurant", - "icon": "./assets/data/nsi/logos/cooprestaurant-282f19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cooprestaurant-282f19.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351834,18 +352183,18 @@ }, { "question": "Cooper's Hawk", - "icon": "./assets/data/nsi/logos/coopershawk-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopershawk-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Cooper's Hawk Winery & Restaurants", "shop=wine", { "or": [ "brand=Cooper's Hawk", "brand:wikidata=Q17511079", - "name=Cooper's Hawk" + "name=Cooper's Hawk", + "official_name=Cooper's Hawk Winery & Restaurants" ] } ] @@ -351853,7 +352202,7 @@ }, { "question": "Copeland's", - "icon": "./assets/data/nsi/logos/copelands-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copelands-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351870,7 +352219,7 @@ }, { "question": "Cora (non-Quebec)", - "icon": "./assets/data/nsi/logos/cora-3080a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cora-3080a2.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351887,7 +352236,7 @@ }, { "question": "Cora (Quebec)", - "icon": "./assets/data/nsi/logos/cora-71aa4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cora-71aa4c.png", "osmTags": { "and": [ "amenity=restaurant", @@ -351904,7 +352253,7 @@ }, { "question": "Cosmo", - "icon": "./assets/data/nsi/logos/cosmo-bd06d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosmo-bd06d9.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351921,7 +352270,7 @@ }, { "question": "Cosy Club", - "icon": "./assets/data/nsi/logos/cosyclub-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosyclub-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351937,7 +352286,7 @@ }, { "question": "Côte Brasserie", - "icon": "./assets/data/nsi/logos/cotebrasserie-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cotebrasserie-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351954,7 +352303,7 @@ }, { "question": "Country Kitchen", - "icon": "./assets/data/nsi/logos/countrykitchen-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/countrykitchen-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -351971,7 +352320,7 @@ }, { "question": "Country Pride", - "icon": "./assets/data/nsi/logos/countrypride-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countrypride-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352004,7 +352353,7 @@ }, { "question": "Courtepaille", - "icon": "./assets/data/nsi/logos/courtepaille-dee615.png", + "icon": "https://data.mapcomplete.org/nsi//logos/courtepaille-dee615.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352021,17 +352370,17 @@ }, { "question": "Cracker Barrel", - "icon": "./assets/data/nsi/logos/crackerbarrel-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crackerbarrel-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Cracker Barrel Old Country Store", { "or": [ "brand=Cracker Barrel", "brand:wikidata=Q4492609", - "name=Cracker Barrel" + "name=Cracker Barrel", + "official_name=Cracker Barrel Old Country Store" ] } ] @@ -352039,7 +352388,7 @@ }, { "question": "Crepes & Waffles", - "icon": "./assets/data/nsi/logos/crepesandwaffles-7b5290.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crepesandwaffles-7b5290.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352057,7 +352406,7 @@ }, { "question": "D.P. Dough", - "icon": "./assets/data/nsi/logos/dpdough-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dpdough-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352074,7 +352423,7 @@ }, { "question": "Da Grasso", - "icon": "./assets/data/nsi/logos/dagrasso-07fabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dagrasso-07fabc.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352126,7 +352475,7 @@ }, { "question": "Davanni's", - "icon": "./assets/data/nsi/logos/davannis-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/davannis-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352143,7 +352492,7 @@ }, { "question": "Dave & Buster's", - "icon": "./assets/data/nsi/logos/daveandbusters-85c92c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daveandbusters-85c92c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352161,7 +352510,7 @@ }, { "question": "De Beren", - "icon": "./assets/data/nsi/logos/deberen-2b67bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deberen-2b67bf.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352178,7 +352527,7 @@ }, { "question": "De Pizzabakkers", - "icon": "./assets/data/nsi/logos/depizzabakkers-2b67bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/depizzabakkers-2b67bf.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352196,7 +352545,7 @@ }, { "question": "Del Frisco's Double Eagle Steakhouse", - "icon": "./assets/data/nsi/logos/delfriscosdoubleeaglesteakhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delfriscosdoubleeaglesteakhouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352229,7 +352578,7 @@ }, { "question": "Denny's", - "icon": "./assets/data/nsi/logos/dennys-a531a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dennys-a531a3.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352246,7 +352595,7 @@ }, { "question": "Dickey's Barbecue Pit", - "icon": "./assets/data/nsi/logos/dickeysbarbecuepit-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dickeysbarbecuepit-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352263,7 +352612,7 @@ }, { "question": "Din Tai Fung", - "icon": "./assets/data/nsi/logos/dintaifung-4a64f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dintaifung-4a64f1.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352302,7 +352651,7 @@ }, { "question": "Dishoom", - "icon": "./assets/data/nsi/logos/dishoom-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dishoom-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352319,7 +352668,7 @@ }, { "question": "Donatos Pizza", - "icon": "./assets/data/nsi/logos/donatospizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donatospizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352337,7 +352686,7 @@ }, { "question": "Doppio Malto", - "icon": "./assets/data/nsi/logos/doppiomalto-94430a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/doppiomalto-94430a.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352354,7 +352703,7 @@ }, { "question": "Doppio Zero", - "icon": "./assets/data/nsi/logos/doppiozero-0e7480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doppiozero-0e7480.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352371,7 +352720,7 @@ }, { "question": "Dough Zone", - "icon": "./assets/data/nsi/logos/doughzone-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/doughzone-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352409,7 +352758,7 @@ }, { "question": "Earls", - "icon": "./assets/data/nsi/logos/earls-85c92c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/earls-85c92c.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352426,7 +352775,7 @@ }, { "question": "East Side Mario's", - "icon": "./assets/data/nsi/logos/eastsidemarios-e68b16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastsidemarios-e68b16.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352443,7 +352792,7 @@ }, { "question": "Eat Happy", - "icon": "./assets/data/nsi/logos/eathappy-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eathappy-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352460,7 +352809,7 @@ }, { "question": "Eat'n Park", - "icon": "./assets/data/nsi/logos/eatnpark-96af40.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eatnpark-96af40.svg", "osmTags": { "and": [ "amenity=restaurant", @@ -352493,7 +352842,7 @@ }, { "question": "Eggs Up Grill", - "icon": "./assets/data/nsi/logos/eggsupgrill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eggsupgrill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352510,7 +352859,7 @@ }, { "question": "Eggsmart", - "icon": "./assets/data/nsi/logos/eggsmart-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eggsmart-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352527,7 +352876,7 @@ }, { "question": "Egon", - "icon": "./assets/data/nsi/logos/egon-0a0782.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/egon-0a0782.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352544,7 +352893,7 @@ }, { "question": "Elephant Bar", - "icon": "./assets/data/nsi/logos/elephantbar-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elephantbar-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352579,7 +352928,7 @@ }, { "question": "Enchilada", - "icon": "./assets/data/nsi/logos/enchilada-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enchilada-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352596,7 +352945,7 @@ }, { "question": "Famous Dave's", - "icon": "./assets/data/nsi/logos/famousdaves-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/famousdaves-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352613,7 +352962,7 @@ }, { "question": "Farmhouse Inns", - "icon": "./assets/data/nsi/logos/farmhouseinns-9b5453.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmhouseinns-9b5453.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352629,7 +352978,7 @@ }, { "question": "Fatto a Mano", - "icon": "./assets/data/nsi/logos/fattoamano-37e076.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fattoamano-37e076.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352663,17 +353012,17 @@ }, { "question": "First Watch", - "icon": "./assets/data/nsi/logos/firstwatch-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstwatch-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american;breakfast", - "official_name=First Watch The Daytime Cafe", { "or": [ "brand=First Watch", "brand:wikidata=Q5454064", - "name=First Watch" + "name=First Watch", + "official_name=First Watch The Daytime Cafe" ] } ] @@ -352681,7 +353030,7 @@ }, { "question": "Flat Iron", - "icon": "./assets/data/nsi/logos/flatiron-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flatiron-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352698,17 +353047,17 @@ }, { "question": "Fleming's", - "icon": "./assets/data/nsi/logos/flemings-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flemings-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=steak_house", - "official_name=Fleming's Prime Steakhouse & Wine Bar", { "or": [ "brand=Fleming's", "brand:wikidata=Q5458552", - "name=Fleming's" + "name=Fleming's", + "official_name=Fleming's Prime Steakhouse & Wine Bar" ] } ] @@ -352716,7 +353065,7 @@ }, { "question": "Flunch", - "icon": "./assets/data/nsi/logos/flunch-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flunch-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352733,7 +353082,7 @@ }, { "question": "Fogo de Chão", - "icon": "./assets/data/nsi/logos/fogodechao-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fogodechao-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352750,7 +353099,7 @@ }, { "question": "Foster's Hollywood", - "icon": "./assets/data/nsi/logos/fostershollywood-acf031.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fostershollywood-acf031.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352767,7 +353116,7 @@ }, { "question": "Fournos Bakery", - "icon": "./assets/data/nsi/logos/fournosbakery-69fbf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fournosbakery-69fbf5.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352800,7 +353149,7 @@ }, { "question": "Franco Manca", - "icon": "./assets/data/nsi/logos/francomanca-6f1a9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/francomanca-6f1a9d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352818,7 +353167,7 @@ }, { "question": "Frankie & Benny's", - "icon": "./assets/data/nsi/logos/frankieandbennys-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frankieandbennys-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352850,7 +353199,7 @@ }, { "question": "Fresh Corner Restaurant", - "icon": "./assets/data/nsi/logos/freshcornerrestaurant-c8a273.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshcornerrestaurant-c8a273.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352867,7 +353216,7 @@ }, { "question": "Freshii", - "icon": "./assets/data/nsi/logos/freshii-2d261b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshii-2d261b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352884,7 +353233,7 @@ }, { "question": "Friendly's", - "icon": "./assets/data/nsi/logos/friendlys-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/friendlys-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352901,7 +353250,7 @@ }, { "question": "Frisch's Big Boy", - "icon": "./assets/data/nsi/logos/frischsbigboy-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frischsbigboy-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352919,7 +353268,7 @@ }, { "question": "Fuddruckers", - "icon": "./assets/data/nsi/logos/fuddruckers-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fuddruckers-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -352952,7 +353301,7 @@ }, { "question": "Gatti's Pizza", - "icon": "./assets/data/nsi/logos/gattispizza-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gattispizza-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352969,7 +353318,7 @@ }, { "question": "Gaucho", - "icon": "./assets/data/nsi/logos/gaucho-9b5453.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gaucho-9b5453.png", "osmTags": { "and": [ "amenity=restaurant", @@ -352986,7 +353335,7 @@ }, { "question": "Gen Korean BBQ", - "icon": "./assets/data/nsi/logos/genkoreanbbq-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/genkoreanbbq-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353003,7 +353352,7 @@ }, { "question": "Genki Sushi", - "icon": "./assets/data/nsi/logos/genkisushi-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genkisushi-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353020,7 +353369,7 @@ }, { "question": "Giggling Squid", - "icon": "./assets/data/nsi/logos/gigglingsquid-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gigglingsquid-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353037,7 +353386,7 @@ }, { "question": "Gino's East", - "icon": "./assets/data/nsi/logos/ginoseast-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ginoseast-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353054,7 +353403,7 @@ }, { "question": "Ginos", - "icon": "./assets/data/nsi/logos/ginos-acf031.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ginos-acf031.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353071,7 +353420,7 @@ }, { "question": "Giordano's Pizzeria", - "icon": "./assets/data/nsi/logos/giordanospizzeria-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giordanospizzeria-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353088,7 +353437,7 @@ }, { "question": "Giraffe", - "icon": "./assets/data/nsi/logos/giraffe-c20144.png", + "icon": "https://data.mapcomplete.org/nsi//logos/giraffe-c20144.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353105,7 +353454,7 @@ }, { "question": "Godfather's Pizza", - "icon": "./assets/data/nsi/logos/godfatherspizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/godfatherspizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353122,7 +353471,7 @@ }, { "question": "Golden Corral", - "icon": "./assets/data/nsi/logos/goldencorral-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goldencorral-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353139,7 +353488,7 @@ }, { "question": "Grimaldi's Pizzeria", - "icon": "./assets/data/nsi/logos/grimaldispizzeria-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/grimaldispizzeria-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353156,7 +353505,7 @@ }, { "question": "Gringo's Mexican Kitchen", - "icon": "./assets/data/nsi/logos/gringosmexicankitchen-5297f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gringosmexicankitchen-5297f1.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353173,7 +353522,7 @@ }, { "question": "Grotto Pizza", - "icon": "./assets/data/nsi/logos/grottopizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grottopizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353190,7 +353539,7 @@ }, { "question": "Gusto (UK)", - "icon": "./assets/data/nsi/logos/gusto-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gusto-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353207,7 +353556,7 @@ }, { "question": "Gyu-Kaku", - "icon": "./assets/data/nsi/logos/gyukaku-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gyukaku-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353263,7 +353612,7 @@ }, { "question": "Haidilao Hot Pot", - "icon": "./assets/data/nsi/logos/haidilaohotpot-ce6bab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haidilaohotpot-ce6bab.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353300,7 +353649,7 @@ }, { "question": "Hans im Glück", - "icon": "./assets/data/nsi/logos/hansimgluck-a53895.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hansimgluck-a53895.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353317,7 +353666,7 @@ }, { "question": "Happy Bar & Grill", - "icon": "./assets/data/nsi/logos/happybarandgrill-76698e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happybarandgrill-76698e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353334,7 +353683,7 @@ }, { "question": "Happy Italy", - "icon": "./assets/data/nsi/logos/happyitaly-2b67bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happyitaly-2b67bf.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353351,7 +353700,7 @@ }, { "question": "Happy Lamb Hot Pot", - "icon": "./assets/data/nsi/logos/happylambhotpot-20752b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happylambhotpot-20752b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353372,7 +353721,7 @@ }, { "question": "Happy's Pizza", - "icon": "./assets/data/nsi/logos/happyspizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happyspizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353389,7 +353738,7 @@ }, { "question": "Hard Rock Cafe", - "icon": "./assets/data/nsi/logos/hardrockcafe-2fabb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hardrockcafe-2fabb0.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353406,7 +353755,7 @@ }, { "question": "Harvester", - "icon": "./assets/data/nsi/logos/harvester-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harvester-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353422,7 +353771,7 @@ }, { "question": "Hawksmoor", - "icon": "./assets/data/nsi/logos/hawksmoor-39693e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hawksmoor-39693e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353455,7 +353804,7 @@ }, { "question": "Hippopotamus", - "icon": "./assets/data/nsi/logos/hippopotamus-dee615.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hippopotamus-dee615.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353472,7 +353821,7 @@ }, { "question": "Hog's Breath Cafe", - "icon": "./assets/data/nsi/logos/hogsbreathcafe-3c82e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hogsbreathcafe-3c82e9.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353506,7 +353855,7 @@ }, { "question": "Home Run Inn Pizzeria", - "icon": "./assets/data/nsi/logos/homeruninnpizzeria-b2316d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/homeruninnpizzeria-b2316d.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353523,7 +353872,7 @@ }, { "question": "Homeslice", - "icon": "./assets/data/nsi/logos/homeslice-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homeslice-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353541,7 +353890,7 @@ }, { "question": "Honest Burgers", - "icon": "./assets/data/nsi/logos/honestburgers-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honestburgers-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353558,7 +353907,7 @@ }, { "question": "Honest Greens", - "icon": "./assets/data/nsi/logos/honestgreens-1d6b00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honestgreens-1d6b00.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353575,7 +353924,7 @@ }, { "question": "Hooters", - "icon": "./assets/data/nsi/logos/hooters-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hooters-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353592,7 +353941,7 @@ }, { "question": "Hoss's Steak & Sea House", - "icon": "./assets/data/nsi/logos/hossssteakandseahouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hossssteakandseahouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353610,7 +353959,7 @@ }, { "question": "HOT POT Buffet", - "icon": "./assets/data/nsi/logos/hotpotbuffet-5a3582.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotpotbuffet-5a3582.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353643,7 +353992,7 @@ }, { "question": "Houlihan's", - "icon": "./assets/data/nsi/logos/houlihans-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houlihans-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353660,7 +354009,7 @@ }, { "question": "House of Blues", - "icon": "./assets/data/nsi/logos/houseofblues-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/houseofblues-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353677,7 +354026,7 @@ }, { "question": "Hubbox", - "icon": "./assets/data/nsi/logos/hubbox-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hubbox-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353694,7 +354043,7 @@ }, { "question": "Huddle House", - "icon": "./assets/data/nsi/logos/huddlehouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huddlehouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353711,17 +354060,17 @@ }, { "question": "HuHot", - "icon": "./assets/data/nsi/logos/huhot-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huhot-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=mongolian_grill", - "official_name=HuHot Mongolian Grill", { "or": [ "brand=HuHot", "brand:wikidata=Q5924606", - "name=HuHot" + "name=HuHot", + "official_name=HuHot Mongolian Grill" ] } ] @@ -353729,7 +354078,7 @@ }, { "question": "Husky House", - "icon": "./assets/data/nsi/logos/huskyhouse-e68b16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/huskyhouse-e68b16.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353746,7 +354095,7 @@ }, { "question": "IHOP", - "icon": "./assets/data/nsi/logos/ihop-2fabb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ihop-2fabb0.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353763,7 +354112,7 @@ }, { "question": "Il Fornaio", - "icon": "./assets/data/nsi/logos/ilfornaio-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ilfornaio-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353780,7 +354129,7 @@ }, { "question": "IL Патио", - "icon": "./assets/data/nsi/logos/0aeb30-642268.png", + "icon": "https://data.mapcomplete.org/nsi//logos/0aeb30-642268.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353829,7 +354178,7 @@ }, { "question": "Interspar Restaurant", - "icon": "./assets/data/nsi/logos/intersparrestaurant-c7016b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intersparrestaurant-c7016b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353846,7 +354195,7 @@ }, { "question": "Ippudo", - "icon": "./assets/data/nsi/logos/ippudo-b715b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ippudo-b715b9.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353867,7 +354216,7 @@ }, { "question": "Iron Skillet", - "icon": "./assets/data/nsi/logos/ironskillet-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ironskillet-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353884,7 +354233,7 @@ }, { "question": "Jack Astor's", - "icon": "./assets/data/nsi/logos/jackastors-85c92c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jackastors-85c92c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353901,17 +354250,17 @@ }, { "question": "Jack Stack Barbecue", - "icon": "./assets/data/nsi/logos/jackstackbarbecue-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jackstackbarbecue-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=barbecue", - "official_name=Fiorella's Jack Stack Barbecue", { "or": [ "brand=Jack Stack Barbecue", "brand:wikidata=Q5451169", - "name=Jack Stack Barbecue" + "name=Jack Stack Barbecue", + "official_name=Fiorella's Jack Stack Barbecue" ] } ] @@ -353919,7 +354268,7 @@ }, { "question": "Jason's Deli", - "icon": "./assets/data/nsi/logos/jasonsdeli-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jasonsdeli-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353936,7 +354285,7 @@ }, { "question": "Jet's Pizza", - "icon": "./assets/data/nsi/logos/jetspizza-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jetspizza-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353953,7 +354302,7 @@ }, { "question": "Jim 'N Nick's", - "icon": "./assets/data/nsi/logos/jimnnicks-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jimnnicks-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -353970,7 +354319,7 @@ }, { "question": "JINYA Ramen Bar", - "icon": "./assets/data/nsi/logos/jinyaramenbar-85c92c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jinyaramenbar-85c92c.png", "osmTags": { "and": [ "amenity=restaurant", @@ -353988,7 +354337,7 @@ }, { "question": "Joe's Crab Shack", - "icon": "./assets/data/nsi/logos/joescrabshack-c6bbaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joescrabshack-c6bbaa.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354005,7 +354354,7 @@ }, { "question": "Joey", - "icon": "./assets/data/nsi/logos/joey-85c92c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joey-85c92c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354022,7 +354371,7 @@ }, { "question": "John Dory's", - "icon": "./assets/data/nsi/logos/johndorys-f0d76a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johndorys-f0d76a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354039,7 +354388,7 @@ }, { "question": "John's Incredible Pizza", - "icon": "./assets/data/nsi/logos/johnsincrediblepizza-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johnsincrediblepizza-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354057,7 +354406,7 @@ }, { "question": "Johnny Carino's", - "icon": "./assets/data/nsi/logos/johnnycarinos-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnnycarinos-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354074,7 +354423,7 @@ }, { "question": "Johnny Rockets", - "icon": "./assets/data/nsi/logos/johnnyrockets-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnnyrockets-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354091,7 +354440,7 @@ }, { "question": "Karas", - "icon": "./assets/data/nsi/logos/karas-86098b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/karas-86098b.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354114,7 +354463,7 @@ }, { "question": "Kauai", - "icon": "./assets/data/nsi/logos/kauai-14572f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kauai-14572f.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354131,7 +354480,7 @@ }, { "question": "Keke's Breakfast Cafe", - "icon": "./assets/data/nsi/logos/kekesbreakfastcafe-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kekesbreakfastcafe-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354148,17 +354497,17 @@ }, { "question": "Kelsey's", - "icon": "./assets/data/nsi/logos/kelseys-e68b16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kelseys-e68b16.png", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Kelsey's Original Roadhouse", { "or": [ "brand=Kelsey's", "brand:wikidata=Q6386459", - "name=Kelsey's" + "name=Kelsey's", + "official_name=Kelsey's Original Roadhouse" ] } ] @@ -354166,7 +354515,7 @@ }, { "question": "Köfteci Yusuf", - "icon": "./assets/data/nsi/logos/kofteciyusuf-9743a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kofteciyusuf-9743a1.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354183,7 +354532,7 @@ }, { "question": "Kona Grill", - "icon": "./assets/data/nsi/logos/konagrill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/konagrill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354215,7 +354564,7 @@ }, { "question": "L'Osteria", - "icon": "./assets/data/nsi/logos/losteria-454d96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losteria-454d96.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354232,7 +354581,7 @@ }, { "question": "La Boucherie", - "icon": "./assets/data/nsi/logos/laboucherie-dee615.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laboucherie-dee615.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354249,7 +354598,7 @@ }, { "question": "La Cage", - "icon": "./assets/data/nsi/logos/lacage-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacage-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354266,7 +354615,7 @@ }, { "question": "La Casa de Toño", - "icon": "./assets/data/nsi/logos/lacasadetono-f5830e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacasadetono-f5830e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354283,7 +354632,7 @@ }, { "question": "La Cubanita", - "icon": "./assets/data/nsi/logos/lacubanita-2b67bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacubanita-2b67bf.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354300,7 +354649,7 @@ }, { "question": "La Pataterie", - "icon": "./assets/data/nsi/logos/lapataterie-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lapataterie-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354318,7 +354667,7 @@ }, { "question": "La Place", - "icon": "./assets/data/nsi/logos/laplace-179420.png", + "icon": "https://data.mapcomplete.org/nsi//logos/laplace-179420.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354335,7 +354684,7 @@ }, { "question": "La Porchetta", - "icon": "./assets/data/nsi/logos/laporchetta-bb079b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/laporchetta-bb079b.svg", "osmTags": { "and": [ "amenity=restaurant", @@ -354352,7 +354701,7 @@ }, { "question": "La Sureña", - "icon": "./assets/data/nsi/logos/lasurena-acf031.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lasurena-acf031.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354369,7 +354718,7 @@ }, { "question": "La Tagliatella", - "icon": "./assets/data/nsi/logos/latagliatella-1d6b00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/latagliatella-1d6b00.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354386,7 +354735,7 @@ }, { "question": "Lantana", - "icon": "./assets/data/nsi/logos/lantana-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lantana-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354404,7 +354753,7 @@ }, { "question": "LaRosa's Pizzeria", - "icon": "./assets/data/nsi/logos/larosaspizzeria-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/larosaspizzeria-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354422,7 +354771,7 @@ }, { "question": "Las Iguanas", - "icon": "./assets/data/nsi/logos/lasiguanas-9b5453.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lasiguanas-9b5453.svg", "osmTags": { "and": [ "amenity=restaurant", @@ -354439,7 +354788,7 @@ }, { "question": "Las Palmas Food Centre", - "icon": "./assets/data/nsi/logos/laspalmasfoodcentre-e66c3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laspalmasfoodcentre-e66c3e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354458,7 +354807,7 @@ }, { "question": "Lazy Dog", - "icon": "./assets/data/nsi/logos/lazydog-f4f1ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lazydog-f4f1ab.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354475,7 +354824,7 @@ }, { "question": "Ledo Pizza", - "icon": "./assets/data/nsi/logos/ledopizza-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ledopizza-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354492,7 +354841,7 @@ }, { "question": "Legal Sea Foods", - "icon": "./assets/data/nsi/logos/legalseafoods-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/legalseafoods-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354509,7 +354858,7 @@ }, { "question": "Léon de Bruxelles", - "icon": "./assets/data/nsi/logos/leondebruxelles-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leondebruxelles-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354526,19 +354875,19 @@ }, { "question": "Les 3 Brasseurs (Brasil/France/Quebec)", - "icon": "./assets/data/nsi/logos/3brasseurs-17e7d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3brasseurs-17e7d6.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=burger;pizza;seafood", - "official_name=Les 3 Brasseurs", { "or": [ "brand=3 Brasseurs", "brand:wikidata=Q3230326", "name=3 Brasseurs", "name:en=3 Brewers", - "name:fr=3 Brasseurs" + "name:fr=3 Brasseurs", + "official_name=Les 3 Brasseurs" ] } ] @@ -354582,7 +354931,7 @@ }, { "question": "Loetje", - "icon": "./assets/data/nsi/logos/loetje-2b67bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loetje-2b67bf.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354602,7 +354951,7 @@ }, { "question": "Logan's Roadhouse", - "icon": "./assets/data/nsi/logos/logansroadhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/logansroadhouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354619,7 +354968,7 @@ }, { "question": "LongHorn Steakhouse", - "icon": "./assets/data/nsi/logos/longhornsteakhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longhornsteakhouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354636,7 +354985,7 @@ }, { "question": "Lou Malnati's Pizzeria", - "icon": "./assets/data/nsi/logos/loumalnatispizzeria-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loumalnatispizzeria-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354653,7 +355002,7 @@ }, { "question": "Lounges", - "icon": "./assets/data/nsi/logos/lounges-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lounges-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354669,7 +355018,7 @@ }, { "question": "Loving Hut", - "icon": "./assets/data/nsi/logos/lovinghut-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lovinghut-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354687,7 +355036,7 @@ }, { "question": "Luby's", - "icon": "./assets/data/nsi/logos/lubys-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubys-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354704,17 +355053,17 @@ }, { "question": "Lucille's Smokehouse BBQ", - "icon": "./assets/data/nsi/logos/lucillessmokehousebbq-385edb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lucillessmokehousebbq-385edb.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=barbecue", - "official_name=Lucille's Smokehouse Bar-B-Que", { "or": [ "brand=Lucille's Smokehouse BBQ", "brand:wikidata=Q17019306", - "name=Lucille's Smokehouse BBQ" + "name=Lucille's Smokehouse BBQ", + "official_name=Lucille's Smokehouse Bar-B-Que" ] } ] @@ -354722,7 +355071,7 @@ }, { "question": "Lucky Sushi", - "icon": "./assets/data/nsi/logos/luckysushi-f5830e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luckysushi-f5830e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354739,7 +355088,7 @@ }, { "question": "Lunch Garden", - "icon": "./assets/data/nsi/logos/lunchgarden-c1dacf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lunchgarden-c1dacf.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354756,7 +355105,7 @@ }, { "question": "Mad Mex Fresh Mexican Grill", - "icon": "./assets/data/nsi/logos/madmexfreshmexicangrill-bb079b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madmexfreshmexicangrill-bb079b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354773,7 +355122,7 @@ }, { "question": "Madero", - "icon": "./assets/data/nsi/logos/madero-ad49e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madero-ad49e6.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354790,7 +355139,7 @@ }, { "question": "Maggiano's Little Italy", - "icon": "./assets/data/nsi/logos/maggianoslittleitaly-acf8ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maggianoslittleitaly-acf8ec.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354807,7 +355156,7 @@ }, { "question": "Main Event", - "icon": "./assets/data/nsi/logos/mainevent-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mainevent-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354842,7 +355191,7 @@ }, { "question": "Maple Street Biscuit Company", - "icon": "./assets/data/nsi/logos/maplestreetbiscuitcompany-d344e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maplestreetbiscuitcompany-d344e2.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354859,7 +355208,7 @@ }, { "question": "Maredo", - "icon": "./assets/data/nsi/logos/maredo-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maredo-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354876,17 +355225,17 @@ }, { "question": "Margaritas", - "icon": "./assets/data/nsi/logos/margaritas-46ca2f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/margaritas-46ca2f.png", "osmTags": { "and": [ "amenity=restaurant", "cuisine=mexican", - "official_name=Margaritas Mexican Restaurant", { "or": [ "brand=Margaritas", "brand:wikidata=Q6760185", - "name=Margaritas" + "name=Margaritas", + "official_name=Margaritas Mexican Restaurant" ] } ] @@ -354894,17 +355243,17 @@ }, { "question": "Marie Callender's", - "icon": "./assets/data/nsi/logos/mariecallenders-27c30e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mariecallenders-27c30e.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Marie Callender's Restaurant & Bakery", { "or": [ "brand=Marie Callender's", "brand:wikidata=Q6762784", - "name=Marie Callender's" + "name=Marie Callender's", + "official_name=Marie Callender's Restaurant & Bakery" ] } ] @@ -354912,7 +355261,7 @@ }, { "question": "Mark's Pizzeria", - "icon": "./assets/data/nsi/logos/markspizzeria-9e0453.png", + "icon": "https://data.mapcomplete.org/nsi//logos/markspizzeria-9e0453.png", "osmTags": { "and": [ "amenity=restaurant", @@ -354929,7 +355278,7 @@ }, { "question": "Mary Grace", - "icon": "./assets/data/nsi/logos/marygrace-5259a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marygrace-5259a4.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354962,7 +355311,7 @@ }, { "question": "Max's Restaurant", - "icon": "./assets/data/nsi/logos/maxsrestaurant-5259a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxsrestaurant-5259a4.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354979,7 +355328,7 @@ }, { "question": "Maxi's", - "icon": "./assets/data/nsi/logos/maxis-2bd789.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxis-2bd789.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -354996,7 +355345,7 @@ }, { "question": "Mazzio's", - "icon": "./assets/data/nsi/logos/mazzios-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mazzios-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355013,7 +355362,7 @@ }, { "question": "McAlister's Deli", - "icon": "./assets/data/nsi/logos/mcalistersdeli-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcalistersdeli-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355030,7 +355379,7 @@ }, { "question": "McCormick & Schmick's", - "icon": "./assets/data/nsi/logos/mccormickandschmicks-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mccormickandschmicks-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355079,7 +355428,7 @@ }, { "question": "Meet Fresh", - "icon": "./assets/data/nsi/logos/meetfresh-44e003.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meetfresh-44e003.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355096,7 +355445,7 @@ }, { "question": "Meizhou Dongpo", - "icon": "./assets/data/nsi/logos/meizhoudongpo-697b62.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meizhoudongpo-697b62.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355117,7 +355466,7 @@ }, { "question": "Mellow Mushroom", - "icon": "./assets/data/nsi/logos/mellowmushroom-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mellowmushroom-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355134,7 +355483,7 @@ }, { "question": "Memphis", - "icon": "./assets/data/nsi/logos/memphis-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphis-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355151,7 +355500,7 @@ }, { "question": "Metro Diner", - "icon": "./assets/data/nsi/logos/metrodiner-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrodiner-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355184,7 +355533,7 @@ }, { "question": "Mezeh Mediterranean Grill", - "icon": "./assets/data/nsi/logos/mezehmediterraneangrill-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mezehmediterraneangrill-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355201,7 +355550,7 @@ }, { "question": "Mie Gacoan", - "icon": "./assets/data/nsi/logos/miegacoan-25c4a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miegacoan-25c4a5.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355218,7 +355567,7 @@ }, { "question": "Mighty Quinn's", - "icon": "./assets/data/nsi/logos/mightyquinns-55b11d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mightyquinns-55b11d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355235,7 +355584,7 @@ }, { "question": "Migros Restaurant", - "icon": "./assets/data/nsi/logos/migrosrestaurant-282f19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/migrosrestaurant-282f19.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355252,7 +355601,7 @@ }, { "question": "Mikes", - "icon": "./assets/data/nsi/logos/mikes-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mikes-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355269,7 +355618,7 @@ }, { "question": "Mildreds", - "icon": "./assets/data/nsi/logos/mildreds-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mildreds-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355287,7 +355636,7 @@ }, { "question": "Milestones", - "icon": "./assets/data/nsi/logos/milestones-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milestones-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355320,7 +355669,7 @@ }, { "question": "Miller's Ale House", - "icon": "./assets/data/nsi/logos/millersalehouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/millersalehouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355337,7 +355686,7 @@ }, { "question": "Mimi's Cafe", - "icon": "./assets/data/nsi/logos/mimiscafe-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mimiscafe-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355354,7 +355703,7 @@ }, { "question": "Mission BBQ", - "icon": "./assets/data/nsi/logos/missionbbq-2fabb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/missionbbq-2fabb0.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355371,7 +355720,7 @@ }, { "question": "MK Restaurants", - "icon": "./assets/data/nsi/logos/mkrestaurants-5a3582.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mkrestaurants-5a3582.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355404,7 +355753,7 @@ }, { "question": "Mo's", - "icon": "./assets/data/nsi/logos/mos-effa94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mos-effa94.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355438,17 +355787,17 @@ }, { "question": "Montana's", - "icon": "./assets/data/nsi/logos/montanas-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montanas-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=barbecue", - "official_name=Montana's BBQ & Bar", { "or": [ "brand=Montana's", "brand:wikidata=Q17022490", - "name=Montana's" + "name=Montana's", + "official_name=Montana's BBQ & Bar" ] } ] @@ -355456,7 +355805,7 @@ }, { "question": "Moo Moo Meet & Whine", - "icon": "./assets/data/nsi/logos/moomoo-69fbf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moomoo-69fbf5.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355473,7 +355822,7 @@ }, { "question": "Morton's Grille", - "icon": "./assets/data/nsi/logos/mortonsgrille-1830bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mortonsgrille-1830bd.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355490,7 +355839,7 @@ }, { "question": "Morton's The Steakhouse", - "icon": "./assets/data/nsi/logos/mortonsthesteakhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mortonsthesteakhouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355507,7 +355856,7 @@ }, { "question": "Moses", - "icon": "./assets/data/nsi/logos/moses-b691b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/moses-b691b2.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355528,7 +355877,7 @@ }, { "question": "Mountain Mike's", - "icon": "./assets/data/nsi/logos/mountainmikes-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mountainmikes-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355547,7 +355896,7 @@ }, { "question": "Mowgli Street Food", - "icon": "./assets/data/nsi/logos/mowglistreetfood-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mowglistreetfood-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355564,7 +355913,7 @@ }, { "question": "Moxie's", - "icon": "./assets/data/nsi/logos/moxies-12e5ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moxies-12e5ab.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355581,7 +355930,7 @@ }, { "question": "Mr. Greek", - "icon": "./assets/data/nsi/logos/mrgreek-e68b16.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrgreek-e68b16.svg", "osmTags": { "and": [ "amenity=restaurant", @@ -355598,7 +355947,7 @@ }, { "question": "Mr. Mike's", - "icon": "./assets/data/nsi/logos/mrmikes-e68b16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrmikes-e68b16.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355615,7 +355964,7 @@ }, { "question": "Naf Naf Grill", - "icon": "./assets/data/nsi/logos/nafnafgrill-8ff1c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nafnafgrill-8ff1c6.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355632,7 +355981,7 @@ }, { "question": "Nando's", - "icon": "./assets/data/nsi/logos/nandos-32ebee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nandos-32ebee.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355665,7 +356014,7 @@ }, { "question": "Nice To Meet You Hot Pot", - "icon": "./assets/data/nsi/logos/nicetomeetyouhotpot-697b62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nicetomeetyouhotpot-697b62.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355686,7 +356035,7 @@ }, { "question": "Ninety Nine Restaurant & Pub", - "icon": "./assets/data/nsi/logos/ninetyninerestaurantandpub-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ninetyninerestaurantandpub-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355703,7 +356052,7 @@ }, { "question": "Nobu", - "icon": "./assets/data/nsi/logos/nobu-2fabb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nobu-2fabb0.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355720,7 +356069,7 @@ }, { "question": "Noodles & Company", - "icon": "./assets/data/nsi/logos/noodlesandcompany-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noodlesandcompany-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355737,7 +356086,7 @@ }, { "question": "Norky's", - "icon": "./assets/data/nsi/logos/norkys-39b0af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norkys-39b0af.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355754,7 +356103,7 @@ }, { "question": "O'Charley's", - "icon": "./assets/data/nsi/logos/ocharleys-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocharleys-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355771,7 +356120,7 @@ }, { "question": "Ocean Basket", - "icon": "./assets/data/nsi/logos/oceanbasket-5d9698.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oceanbasket-5d9698.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355788,7 +356137,7 @@ }, { "question": "Oishi Ramen", - "icon": "./assets/data/nsi/logos/oishiramen-5a3582.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oishiramen-5a3582.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355805,17 +356154,17 @@ }, { "question": "Old Chicago", - "icon": "./assets/data/nsi/logos/oldchicago-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldchicago-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=pizza", - "official_name=Old Chicago Pizza & Taproom", { "or": [ "brand=Old Chicago", "brand:wikidata=Q64411347", - "name=Old Chicago" + "name=Old Chicago", + "official_name=Old Chicago Pizza & Taproom" ] } ] @@ -355823,7 +356172,7 @@ }, { "question": "Old Country Buffet", - "icon": "./assets/data/nsi/logos/oldcountrybuffet-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldcountrybuffet-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355840,7 +356189,7 @@ }, { "question": "Old Wild West", - "icon": "./assets/data/nsi/logos/oldwildwest-a042ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldwildwest-a042ef.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355857,7 +356206,7 @@ }, { "question": "Olive Garden", - "icon": "./assets/data/nsi/logos/olivegarden-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/olivegarden-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355874,17 +356223,17 @@ }, { "question": "On The Border", - "icon": "./assets/data/nsi/logos/ontheborder-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ontheborder-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=tex-mex", - "official_name=On The Border Mexican Grill & Cantina", { "or": [ "brand=On The Border", "brand:wikidata=Q7091305", - "name=On The Border" + "name=On The Border", + "official_name=On The Border Mexican Grill & Cantina" ] } ] @@ -355892,7 +356241,7 @@ }, { "question": "Ono Hawaiian BBQ", - "icon": "./assets/data/nsi/logos/onohawaiianbbq-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/onohawaiianbbq-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -355909,7 +356258,7 @@ }, { "question": "Original Joe's", - "icon": "./assets/data/nsi/logos/originaljoes-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/originaljoes-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355926,7 +356275,7 @@ }, { "question": "Original Roadhouse Grill", - "icon": "./assets/data/nsi/logos/originalroadhousegrill-f1be6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/originalroadhousegrill-f1be6c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355943,7 +356292,7 @@ }, { "question": "Otto Pizza", - "icon": "./assets/data/nsi/logos/ottopizza-f45aef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottopizza-f45aef.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355960,7 +356309,7 @@ }, { "question": "Outback Steakhouse", - "icon": "./assets/data/nsi/logos/outbacksteakhouse-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/outbacksteakhouse-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -355977,17 +356326,17 @@ }, { "question": "P.F. Chang's", - "icon": "./assets/data/nsi/logos/pfchangs-f036fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pfchangs-f036fe.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=asian", - "official_name=P.F. Chang's China Bistro", { "or": [ "brand=P.F. Chang's", "brand:wikidata=Q5360181", - "name=P.F. Chang's" + "name=P.F. Chang's", + "official_name=P.F. Chang's China Bistro" ] } ] @@ -355995,7 +356344,7 @@ }, { "question": "Panarottis", - "icon": "./assets/data/nsi/logos/panarottis-0539cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panarottis-0539cf.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356012,7 +356361,7 @@ }, { "question": "Pancheros Mexican Grill", - "icon": "./assets/data/nsi/logos/pancherosmexicangrill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pancherosmexicangrill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356029,7 +356378,7 @@ }, { "question": "Papa Gino's", - "icon": "./assets/data/nsi/logos/papaginos-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/papaginos-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356046,7 +356395,7 @@ }, { "question": "PappaRich", - "icon": "./assets/data/nsi/logos/papparich-2fabb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/papparich-2fabb0.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356063,7 +356412,7 @@ }, { "question": "Pardos Chicken", - "icon": "./assets/data/nsi/logos/pardoschicken-39b0af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pardoschicken-39b0af.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356098,7 +356447,7 @@ }, { "question": "Pastini", - "icon": "./assets/data/nsi/logos/pastini-effa94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pastini-effa94.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356115,7 +356464,7 @@ }, { "question": "Patroni", - "icon": "./assets/data/nsi/logos/patroni-07a6d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/patroni-07a6d4.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356132,7 +356481,7 @@ }, { "question": "Patty & Bun", - "icon": "./assets/data/nsi/logos/pattyandbun-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pattyandbun-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356151,7 +356500,7 @@ }, { "question": "PB Poulet Braisé", - "icon": "./assets/data/nsi/logos/pbpouletbraise-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pbpouletbraise-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356167,7 +356516,7 @@ }, { "question": "Pedros", - "icon": "./assets/data/nsi/logos/pedros-0e7480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pedros-0e7480.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356184,7 +356533,7 @@ }, { "question": "Pei Wei", - "icon": "./assets/data/nsi/logos/peiwei-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peiwei-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356201,7 +356550,7 @@ }, { "question": "Pelicana", - "icon": "./assets/data/nsi/logos/pelicanachicken-d60782.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pelicanachicken-d60782.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356218,7 +356567,7 @@ }, { "question": "Peppes Pizza", - "icon": "./assets/data/nsi/logos/peppespizza-0a0782.png", + "icon": "https://data.mapcomplete.org/nsi//logos/peppespizza-0a0782.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356235,17 +356584,17 @@ }, { "question": "Perkins", - "icon": "./assets/data/nsi/logos/perkins-85c92c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/perkins-85c92c.png", "osmTags": { "and": [ "amenity=restaurant", "cuisine=american", - "official_name=Perkins Restaurant and Bakery", { "or": [ "brand=Perkins", "brand:wikidata=Q7169056", - "name=Perkins" + "name=Perkins", + "official_name=Perkins Restaurant and Bakery" ] } ] @@ -356253,7 +356602,7 @@ }, { "question": "Peter Pane", - "icon": "./assets/data/nsi/logos/peterpane-b8cc79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peterpane-b8cc79.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356270,7 +356619,7 @@ }, { "question": "Peter Piper Pizza", - "icon": "./assets/data/nsi/logos/peterpiperpizza-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/peterpiperpizza-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356287,7 +356636,7 @@ }, { "question": "Pho", - "icon": "./assets/data/nsi/logos/pho-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pho-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356304,7 +356653,7 @@ }, { "question": "Phở 24", - "icon": "./assets/data/nsi/logos/pho24-d3bf7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pho24-d3bf7d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356323,7 +356672,7 @@ }, { "question": "Phở Hòa", - "icon": "./assets/data/nsi/logos/phohoa-13c988.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phohoa-13c988.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356344,7 +356693,7 @@ }, { "question": "Piada Italian Street Food", - "icon": "./assets/data/nsi/logos/piadaitalianstreetfood-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piadaitalianstreetfood-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356361,7 +356710,7 @@ }, { "question": "Pie Five", - "icon": "./assets/data/nsi/logos/piefivepizzaco-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piefivepizzaco-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356378,7 +356727,7 @@ }, { "question": "Pieminister", - "icon": "./assets/data/nsi/logos/pieminister-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pieminister-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356397,7 +356746,7 @@ }, { "question": "Pieology Pizzeria", - "icon": "./assets/data/nsi/logos/pieologypizzeria-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pieologypizzeria-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356414,7 +356763,7 @@ }, { "question": "Pizza Cosy", - "icon": "./assets/data/nsi/logos/pizzacosy-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzacosy-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356447,7 +356796,7 @@ }, { "question": "Pizza Factory", - "icon": "./assets/data/nsi/logos/pizzafactory-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzafactory-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356464,7 +356813,7 @@ }, { "question": "Pizza Hut", - "icon": "./assets/data/nsi/logos/pizzahut-2fabb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzahut-2fabb0.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356481,7 +356830,7 @@ }, { "question": "Pizza Paï", - "icon": "./assets/data/nsi/logos/pizzapai-47e37e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzapai-47e37e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356498,7 +356847,7 @@ }, { "question": "Pizza Pilgrims", - "icon": "./assets/data/nsi/logos/pizzapilgrims-37e076.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzapilgrims-37e076.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356532,7 +356881,7 @@ }, { "question": "Pizza Salvatoré", - "icon": "./assets/data/nsi/logos/pizzasalvatore-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzasalvatore-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356551,7 +356900,7 @@ }, { "question": "PizzaExpress", - "icon": "./assets/data/nsi/logos/pizzaexpress-ebbd3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzaexpress-ebbd3d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356568,7 +356917,7 @@ }, { "question": "Pizzeria 105", - "icon": "./assets/data/nsi/logos/pizzeria105-07fabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzeria105-07fabc.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356585,7 +356934,7 @@ }, { "question": "Poivre Rouge", - "icon": "./assets/data/nsi/logos/poivrerouge-47e37e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/poivrerouge-47e37e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356602,7 +356951,7 @@ }, { "question": "Pomodoro", - "icon": "./assets/data/nsi/logos/pomodoro-acf031.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pomodoro-acf031.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356619,7 +356968,7 @@ }, { "question": "Ponderosa Steakhouse", - "icon": "./assets/data/nsi/logos/ponderosasteakhouse-56c3a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ponderosasteakhouse-56c3a6.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356640,7 +356989,7 @@ }, { "question": "Poutineville", - "icon": "./assets/data/nsi/logos/poutineville-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poutineville-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356657,7 +357006,7 @@ }, { "question": "Prezzo", - "icon": "./assets/data/nsi/logos/prezzo-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prezzo-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356674,7 +357023,7 @@ }, { "question": "Primanti Bros.", - "icon": "./assets/data/nsi/logos/primantibros-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primantibros-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356709,7 +357058,7 @@ }, { "question": "Pür & Simple", - "icon": "./assets/data/nsi/logos/purandsimple-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/purandsimple-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356726,7 +357075,7 @@ }, { "question": "Purezza", - "icon": "./assets/data/nsi/logos/purezza-37e076.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/purezza-37e076.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356745,7 +357094,7 @@ }, { "question": "Quaker Steak & Lube", - "icon": "./assets/data/nsi/logos/quakersteakandlube-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quakersteakandlube-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356762,7 +357111,7 @@ }, { "question": "RA Sushi", - "icon": "./assets/data/nsi/logos/rasushi-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rasushi-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356779,7 +357128,7 @@ }, { "question": "Rainforest Cafe", - "icon": "./assets/data/nsi/logos/rainforestcafe-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rainforestcafe-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356811,7 +357160,7 @@ }, { "question": "Red Lobster", - "icon": "./assets/data/nsi/logos/redlobster-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redlobster-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356828,17 +357177,17 @@ }, { "question": "Red Robin", - "icon": "./assets/data/nsi/logos/redrobin-85c92c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redrobin-85c92c.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=burger", - "official_name=Red Robin Gourmet Burgers and Brews", { "or": [ "brand=Red Robin", "brand:wikidata=Q7304886", - "name=Red Robin" + "name=Red Robin", + "official_name=Red Robin Gourmet Burgers and Brews" ] } ] @@ -356846,7 +357195,7 @@ }, { "question": "RibCrib", - "icon": "./assets/data/nsi/logos/ribcrib-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ribcrib-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356863,7 +357212,7 @@ }, { "question": "Ristorante Del Arte", - "icon": "./assets/data/nsi/logos/ristorantedelarte-47e37e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ristorantedelarte-47e37e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356880,7 +357229,7 @@ }, { "question": "Roadhouse", - "icon": "./assets/data/nsi/logos/roadhouse-8aae3d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/roadhouse-8aae3d.png", "osmTags": { "and": [ "amenity=restaurant", @@ -356897,7 +357246,7 @@ }, { "question": "Rocky Rococo", - "icon": "./assets/data/nsi/logos/rockyrococo-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockyrococo-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356914,7 +357263,7 @@ }, { "question": "RocoMamas", - "icon": "./assets/data/nsi/logos/rocomamas-a7acfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rocomamas-a7acfa.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356931,7 +357280,7 @@ }, { "question": "Rolls", - "icon": "./assets/data/nsi/logos/rolls-fe858e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rolls-fe858e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356948,7 +357297,7 @@ }, { "question": "Romano's Macaroni Grill", - "icon": "./assets/data/nsi/logos/romanosmacaronigrill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romanosmacaronigrill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356965,7 +357314,7 @@ }, { "question": "Romantik", - "icon": "./assets/data/nsi/logos/romantikrestaurant-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romantikrestaurant-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -356982,7 +357331,7 @@ }, { "question": "Rosa's Thai Cafe", - "icon": "./assets/data/nsi/logos/rosasthaicafe-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosasthaicafe-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357000,7 +357349,7 @@ }, { "question": "Rossopomodoro", - "icon": "./assets/data/nsi/logos/rossopomodoro-8aae3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rossopomodoro-8aae3d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357017,7 +357366,7 @@ }, { "question": "Round Table Pizza", - "icon": "./assets/data/nsi/logos/roundtablepizza-6267fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roundtablepizza-6267fd.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357034,7 +357383,7 @@ }, { "question": "Ruby Tuesday", - "icon": "./assets/data/nsi/logos/rubytuesday-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rubytuesday-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357072,7 +357421,7 @@ }, { "question": "Ruth's Chris Steak House", - "icon": "./assets/data/nsi/logos/ruthschrissteakhouse-f036fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ruthschrissteakhouse-f036fe.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357105,7 +357454,7 @@ }, { "question": "Saizeriya", - "icon": "./assets/data/nsi/logos/saizeriya-10ab86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saizeriya-10ab86.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357130,7 +357479,7 @@ }, { "question": "Saltgrass Steak House", - "icon": "./assets/data/nsi/logos/saltgrasssteakhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saltgrasssteakhouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357147,7 +357496,7 @@ }, { "question": "Salvatore's Old Fashioned Pizzeria", - "icon": "./assets/data/nsi/logos/salvatoresoldfashionedpizzeria-5273d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salvatoresoldfashionedpizzeria-5273d6.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357181,7 +357530,7 @@ }, { "question": "Santa Fé", - "icon": "./assets/data/nsi/logos/santafe-4dd75c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santafe-4dd75c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357198,7 +357547,7 @@ }, { "question": "Santa Lucia", - "icon": "./assets/data/nsi/logos/santalucia-282f19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/santalucia-282f19.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357216,7 +357565,7 @@ }, { "question": "Sausalitos", - "icon": "./assets/data/nsi/logos/sausalitos-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sausalitos-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357233,7 +357582,7 @@ }, { "question": "Schweinske", - "icon": "./assets/data/nsi/logos/schweinske-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schweinske-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357250,7 +357599,7 @@ }, { "question": "Scores", - "icon": "./assets/data/nsi/logos/scores-e68b16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scores-e68b16.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357267,7 +357616,7 @@ }, { "question": "Seasons 52", - "icon": "./assets/data/nsi/logos/seasons52-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seasons52-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357300,7 +357649,7 @@ }, { "question": "Shakey's", - "icon": "./assets/data/nsi/logos/shakeys-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shakeys-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357317,7 +357666,7 @@ }, { "question": "Shari's", - "icon": "./assets/data/nsi/logos/sharis-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sharis-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357386,7 +357735,7 @@ }, { "question": "Shoney's", - "icon": "./assets/data/nsi/logos/shoneys-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoneys-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357423,7 +357772,7 @@ }, { "question": "Shoryu", - "icon": "./assets/data/nsi/logos/shoryu-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoryu-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357440,7 +357789,7 @@ }, { "question": "Signorizza", - "icon": "./assets/data/nsi/logos/signorizza-47e37e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/signorizza-47e37e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357457,7 +357806,7 @@ }, { "question": "Simply Asia", - "icon": "./assets/data/nsi/logos/simplyasia-69fbf5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/simplyasia-69fbf5.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357474,7 +357823,7 @@ }, { "question": "Sizzle Pie", - "icon": "./assets/data/nsi/logos/sizzlepie-effa94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sizzlepie-effa94.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357492,7 +357841,7 @@ }, { "question": "Sizzler", - "icon": "./assets/data/nsi/logos/sizzler-96c99b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sizzler-96c99b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357509,7 +357858,7 @@ }, { "question": "Skyline Chili", - "icon": "./assets/data/nsi/logos/skylinechili-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skylinechili-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357527,7 +357876,7 @@ }, { "question": "Smitty's", - "icon": "./assets/data/nsi/logos/smittys-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smittys-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357544,7 +357893,7 @@ }, { "question": "Smokey Bones", - "icon": "./assets/data/nsi/logos/smokeybones-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smokeybones-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357561,7 +357910,7 @@ }, { "question": "Snappy Tomato Pizza", - "icon": "./assets/data/nsi/logos/snappytomatopizza-5e4871.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snappytomatopizza-5e4871.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357579,17 +357928,17 @@ }, { "question": "Snooze", - "icon": "./assets/data/nsi/logos/snooze-62450c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snooze-62450c.jpg", "osmTags": { "and": [ "amenity=restaurant", "cuisine=breakfast", - "official_name=Snooze, an A.M. Eatery", { "or": [ "brand=Snooze", "brand:wikidata=Q111304345", - "name=Snooze" + "name=Snooze", + "official_name=Snooze, an A.M. Eatery" ] } ] @@ -357613,7 +357962,7 @@ }, { "question": "Solaria", - "icon": "./assets/data/nsi/logos/solaria-25c4a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/solaria-25c4a5.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357630,7 +357979,7 @@ }, { "question": "Sonny's BBQ", - "icon": "./assets/data/nsi/logos/sonnysbbq-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonnysbbq-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357647,7 +357996,7 @@ }, { "question": "Sphinx", - "icon": "./assets/data/nsi/logos/sphinx-07fabc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sphinx-07fabc.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357664,7 +358013,7 @@ }, { "question": "Spudbar", - "icon": "./assets/data/nsi/logos/spudbar-3c82e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spudbar-3c82e9.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357681,7 +358030,7 @@ }, { "question": "Spur", - "icon": "./assets/data/nsi/logos/spur-efd5c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spur-efd5c1.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357698,7 +358047,7 @@ }, { "question": "St Pierre's Sushi", - "icon": "./assets/data/nsi/logos/stpierressushi-8ced4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stpierressushi-8ced4c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357715,7 +358064,7 @@ }, { "question": "St-Hubert", - "icon": "./assets/data/nsi/logos/sthubert-e68b16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sthubert-e68b16.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357732,7 +358081,7 @@ }, { "question": "St. Louis Bar & Grill", - "icon": "./assets/data/nsi/logos/stlouisbarandgrill-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stlouisbarandgrill-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357780,7 +358129,7 @@ }, { "question": "Stoney River", - "icon": "./assets/data/nsi/logos/stoneyriver-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stoneyriver-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357797,7 +358146,7 @@ }, { "question": "Street Burger", - "icon": "./assets/data/nsi/logos/streetburger-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/streetburger-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357814,7 +358163,7 @@ }, { "question": "Street Pizza", - "icon": "./assets/data/nsi/logos/streetpizza-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/streetpizza-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357846,7 +358195,7 @@ }, { "question": "Sunset Grill", - "icon": "./assets/data/nsi/logos/sunsetgrill-85c92c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sunsetgrill-85c92c.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357863,7 +358212,7 @@ }, { "question": "Sushi Express", - "icon": "./assets/data/nsi/logos/sushiexpress-4023ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiexpress-4023ac.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357880,7 +358229,7 @@ }, { "question": "Sushi King", - "icon": "./assets/data/nsi/logos/sushiking-8a5996.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiking-8a5996.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357897,7 +358246,7 @@ }, { "question": "Sushi Roll", - "icon": "./assets/data/nsi/logos/sushiroll-f5830e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiroll-f5830e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357914,7 +358263,7 @@ }, { "question": "Sushi Sushi", - "icon": "./assets/data/nsi/logos/sushisushi-3c82e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sushisushi-3c82e9.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357931,7 +358280,7 @@ }, { "question": "Sushi Yama", - "icon": "./assets/data/nsi/logos/sushiyama-45c141.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiyama-45c141.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357963,7 +358312,7 @@ }, { "question": "Swiss Chalet", - "icon": "./assets/data/nsi/logos/swisschalet-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisschalet-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -357980,7 +358329,7 @@ }, { "question": "Table Table", - "icon": "./assets/data/nsi/logos/tabletable-9b5453.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tabletable-9b5453.png", "osmTags": { "and": [ "amenity=restaurant", @@ -357996,7 +358345,7 @@ }, { "question": "Tacombi", - "icon": "./assets/data/nsi/logos/tacombi-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacombi-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358013,7 +358362,7 @@ }, { "question": "Taquieria Los Comales", - "icon": "./assets/data/nsi/logos/taquierialoscomales-86098b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taquierialoscomales-86098b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358030,7 +358379,7 @@ }, { "question": "Taro", - "icon": "./assets/data/nsi/logos/taro-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taro-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358047,7 +358396,7 @@ }, { "question": "Tashir Pizza", - "icon": "./assets/data/nsi/logos/tashirpizza-86098b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tashirpizza-86098b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358070,7 +358419,7 @@ }, { "question": "Ted's Montana Grill", - "icon": "./assets/data/nsi/logos/tedsmontanagrill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tedsmontanagrill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358122,7 +358471,7 @@ }, { "question": "Texas Roadhouse", - "icon": "./assets/data/nsi/logos/texasroadhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasroadhouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358139,7 +358488,7 @@ }, { "question": "TGI Fridays", - "icon": "./assets/data/nsi/logos/tgifridays-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tgifridays-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358172,7 +358521,7 @@ }, { "question": "The Breakfast Club", - "icon": "./assets/data/nsi/logos/thebreakfastclub-37e076.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebreakfastclub-37e076.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358190,7 +358539,7 @@ }, { "question": "The Cheesecake Factory", - "icon": "./assets/data/nsi/logos/thecheesecakefactory-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecheesecakefactory-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358208,7 +358557,7 @@ }, { "question": "The Chopped Leaf", - "icon": "./assets/data/nsi/logos/thechoppedleaf-85c92c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thechoppedleaf-85c92c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358225,7 +358574,7 @@ }, { "question": "The Counter", - "icon": "./assets/data/nsi/logos/thecounter-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecounter-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358242,7 +358591,7 @@ }, { "question": "The Great Greek Mediterranean Grill", - "icon": "./assets/data/nsi/logos/thegreatgreekmediterraneangrill-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegreatgreekmediterraneangrill-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358259,7 +358608,7 @@ }, { "question": "The Groove Train", - "icon": "./assets/data/nsi/logos/thegroovetrain-3c82e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegroovetrain-3c82e9.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358276,7 +358625,7 @@ }, { "question": "The Hussar Grill", - "icon": "./assets/data/nsi/logos/thehussargrill-69fbf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehussargrill-69fbf5.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358293,7 +358642,7 @@ }, { "question": "The Ivy Collection", - "icon": "./assets/data/nsi/logos/theivy-bd06d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/theivy-bd06d9.png", "osmTags": { "and": [ "amenity=restaurant", @@ -358310,7 +358659,7 @@ }, { "question": "The Keg", - "icon": "./assets/data/nsi/logos/thekeg-85c92c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thekeg-85c92c.png", "osmTags": { "and": [ "amenity=restaurant", @@ -358327,7 +358676,7 @@ }, { "question": "The Melting Pot", - "icon": "./assets/data/nsi/logos/themeltingpot-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/themeltingpot-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358345,7 +358694,7 @@ }, { "question": "The Old Spaghetti Factory", - "icon": "./assets/data/nsi/logos/theoldspaghettifactory-e21bab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theoldspaghettifactory-e21bab.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358362,7 +358711,7 @@ }, { "question": "The Original Pancake House", - "icon": "./assets/data/nsi/logos/theoriginalpancakehouse-832bb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theoriginalpancakehouse-832bb4.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358397,7 +358746,7 @@ }, { "question": "The Real Greek", - "icon": "./assets/data/nsi/logos/therealgreek-37e076.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/therealgreek-37e076.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358414,7 +358763,7 @@ }, { "question": "The Works", - "icon": "./assets/data/nsi/logos/theworks-f8643e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theworks-f8643e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358447,7 +358796,7 @@ }, { "question": "Tijuana Flats", - "icon": "./assets/data/nsi/logos/tijuanaflats-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tijuanaflats-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358464,7 +358813,7 @@ }, { "question": "Tinseltown", - "icon": "./assets/data/nsi/logos/tinseltown-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tinseltown-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358497,7 +358846,7 @@ }, { "question": "Toks", - "icon": "./assets/data/nsi/logos/toks-f5830e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toks-f5830e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -358514,7 +358863,7 @@ }, { "question": "Tonkotsu", - "icon": "./assets/data/nsi/logos/tonkotsu-37e076.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tonkotsu-37e076.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358532,7 +358881,7 @@ }, { "question": "Tony Roma's", - "icon": "./assets/data/nsi/logos/tonyromas-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tonyromas-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358549,7 +358898,7 @@ }, { "question": "Toppers Pizza (USA)", - "icon": "./assets/data/nsi/logos/topperspizza-aa0521.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topperspizza-aa0521.png", "osmTags": { "and": [ "amenity=restaurant", @@ -358566,7 +358915,7 @@ }, { "question": "True Food Kitchen", - "icon": "./assets/data/nsi/logos/truefoodkitchen-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truefoodkitchen-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358583,7 +358932,7 @@ }, { "question": "Truffle Burger", - "icon": "./assets/data/nsi/logos/truffleburger-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truffleburger-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358600,7 +358949,7 @@ }, { "question": "Turtle Bay", - "icon": "./assets/data/nsi/logos/turtlebay-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turtlebay-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358617,7 +358966,7 @@ }, { "question": "Twin Peaks", - "icon": "./assets/data/nsi/logos/twinpeaks-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/twinpeaks-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358634,7 +358983,7 @@ }, { "question": "UDON", - "icon": "./assets/data/nsi/logos/udon-5e8163.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/udon-5e8163.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358651,7 +359000,7 @@ }, { "question": "Uno Pizzeria & Grill", - "icon": "./assets/data/nsi/logos/unopizzeriaandgrill-76ab79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unopizzeriaandgrill-76ab79.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358669,7 +359018,7 @@ }, { "question": "Valentino's", - "icon": "./assets/data/nsi/logos/valentinos-77ac66.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valentinos-77ac66.png", "osmTags": { "and": [ "amenity=restaurant", @@ -358686,7 +359035,7 @@ }, { "question": "Vapiano", - "icon": "./assets/data/nsi/logos/vapiano-2fabb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vapiano-2fabb0.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358703,7 +359052,7 @@ }, { "question": "Village Inn", - "icon": "./assets/data/nsi/logos/villageinn-96af40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/villageinn-96af40.png", "osmTags": { "and": [ "amenity=restaurant", @@ -358720,7 +359069,7 @@ }, { "question": "Vips (España)", - "icon": "./assets/data/nsi/logos/vips-acf031.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vips-acf031.png", "osmTags": { "and": [ "amenity=restaurant", @@ -358737,7 +359086,7 @@ }, { "question": "Vips (México)", - "icon": "./assets/data/nsi/logos/vips-f5830e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vips-f5830e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358754,7 +359103,7 @@ }, { "question": "Waffle House", - "icon": "./assets/data/nsi/logos/wafflehouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wafflehouse-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358772,7 +359121,7 @@ }, { "question": "Wagamama", - "icon": "./assets/data/nsi/logos/wagamama-2fabb0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wagamama-2fabb0.svg", "osmTags": { "and": [ "amenity=restaurant", @@ -358805,7 +359154,7 @@ }, { "question": "Wahlburgers", - "icon": "./assets/data/nsi/logos/wahlburgers-730025.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wahlburgers-730025.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358822,7 +359171,7 @@ }, { "question": "Western Sizzlin'", - "icon": "./assets/data/nsi/logos/westernsizzlin-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westernsizzlin-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358839,7 +359188,7 @@ }, { "question": "White Spot", - "icon": "./assets/data/nsi/logos/whitespot-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whitespot-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358856,7 +359205,7 @@ }, { "question": "Wild Wing", - "icon": "./assets/data/nsi/logos/wildwing-e68b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wildwing-e68b16.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358873,7 +359222,7 @@ }, { "question": "Wildwood", - "icon": "./assets/data/nsi/logos/wildwood-9b5453.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wildwood-9b5453.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358890,7 +359239,7 @@ }, { "question": "Wilma Wunder", - "icon": "./assets/data/nsi/logos/wilmawunder-051971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilmawunder-051971.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358943,7 +359292,7 @@ }, { "question": "Yard House", - "icon": "./assets/data/nsi/logos/yardhouse-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yardhouse-96af40.jpg", "osmTags": { "and": [ "alcohol=yes", @@ -358961,7 +359310,7 @@ }, { "question": "YO! Sushi", - "icon": "./assets/data/nsi/logos/yosushi-9b5453.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yosushi-9b5453.png", "osmTags": { "and": [ "amenity=restaurant", @@ -358978,7 +359327,7 @@ }, { "question": "Yunshang Rice Noodle", - "icon": "./assets/data/nsi/logos/yunshangricenoodle-85c92c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yunshangricenoodle-85c92c.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -358999,7 +359348,7 @@ }, { "question": "Zia Lucia", - "icon": "./assets/data/nsi/logos/zialucia-e997f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zialucia-e997f8.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359016,7 +359365,7 @@ }, { "question": "Zippy's", - "icon": "./assets/data/nsi/logos/zippys-96af40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zippys-96af40.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359033,7 +359382,7 @@ }, { "question": "Zizzi", - "icon": "./assets/data/nsi/logos/zizzi-bd06d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zizzi-bd06d9.png", "osmTags": { "and": [ "amenity=restaurant", @@ -359066,7 +359415,7 @@ }, { "question": "Євразія", - "icon": "./assets/data/nsi/logos/d1906a-f6a2df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d1906a-f6a2df.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359087,7 +359436,7 @@ }, { "question": "Планета Суши", - "icon": "./assets/data/nsi/logos/planetsushi-642268.png", + "icon": "https://data.mapcomplete.org/nsi//logos/planetsushi-642268.png", "osmTags": { "and": [ "amenity=restaurant", @@ -359106,7 +359455,7 @@ }, { "question": "Тануки", - "icon": "./assets/data/nsi/logos/tanuki-dd767d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tanuki-dd767d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359125,7 +359474,7 @@ }, { "question": "Токио-Сити", - "icon": "./assets/data/nsi/logos/tokyocity-642268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokyocity-642268.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359145,7 +359494,7 @@ }, { "question": "Якитория", - "icon": "./assets/data/nsi/logos/afb5a1-642268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/afb5a1-642268.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359162,7 +359511,7 @@ }, { "question": "בורגר סאלון", - "icon": "./assets/data/nsi/logos/burgersaloon-b691b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgersaloon-b691b2.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359254,7 +359603,7 @@ }, { "question": "빕스", - "icon": "./assets/data/nsi/logos/vips-5f8110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vips-5f8110.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359275,7 +359624,7 @@ }, { "question": "치맥킹", - "icon": "./assets/data/nsi/logos/chimcking-5f8110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chimcking-5f8110.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359296,7 +359645,7 @@ }, { "question": "페리카나", - "icon": "./assets/data/nsi/logos/pelicanachicken-5f8110.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pelicanachicken-5f8110.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359317,7 +359666,7 @@ }, { "question": "あさくま", - "icon": "./assets/data/nsi/logos/asakuma-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asakuma-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359338,7 +359687,7 @@ }, { "question": "いきなり!ステーキ", - "icon": "./assets/data/nsi/logos/ikinaristeak-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikinaristeak-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359399,7 +359748,7 @@ }, { "question": "カプリチョーザ", - "icon": "./assets/data/nsi/logos/capricciosa-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capricciosa-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359420,7 +359769,7 @@ }, { "question": "からやま", - "icon": "./assets/data/nsi/logos/karayama-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karayama-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359481,7 +359830,7 @@ }, { "question": "くるまやラーメン", - "icon": "./assets/data/nsi/logos/kurumayaramen-36ca8e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kurumayaramen-36ca8e.svg", "osmTags": { "and": [ "amenity=restaurant", @@ -359522,7 +359871,7 @@ }, { "question": "サイゼリヤ", - "icon": "./assets/data/nsi/logos/saizeriya-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saizeriya-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359600,7 +359949,7 @@ }, { "question": "ジョイフル", - "icon": "./assets/data/nsi/logos/joyfull-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joyfull-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359621,7 +359970,7 @@ }, { "question": "ジョナサン", - "icon": "./assets/data/nsi/logos/jonathans-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jonathans-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -359642,7 +359991,7 @@ }, { "question": "ジョリーパスタ", - "icon": "./assets/data/nsi/logos/jollypasta-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jollypasta-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -359663,7 +360012,7 @@ }, { "question": "すたみな太郎", - "icon": "./assets/data/nsi/logos/staminataro-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/staminataro-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359704,7 +360053,7 @@ }, { "question": "ステーキのどん", - "icon": "./assets/data/nsi/logos/steakdon-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/steakdon-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -359745,7 +360094,7 @@ }, { "question": "デニーズ", - "icon": "./assets/data/nsi/logos/dennys-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dennys-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -359766,7 +360115,7 @@ }, { "question": "トマト&オニオン", - "icon": "./assets/data/nsi/logos/tomatoandonion-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomatoandonion-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359807,7 +360156,7 @@ }, { "question": "バーミヤン", - "icon": "./assets/data/nsi/logos/bamiyan-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bamiyan-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359828,7 +360177,7 @@ }, { "question": "はなまるうどん", - "icon": "./assets/data/nsi/logos/hanamarudon-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hanamarudon-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -359849,7 +360198,7 @@ }, { "question": "ビッグボーイ", - "icon": "./assets/data/nsi/logos/bigboy-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigboy-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359870,7 +360219,7 @@ }, { "question": "びっくりドンキー", - "icon": "./assets/data/nsi/logos/bikkuridonkey-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikkuridonkey-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359911,7 +360260,7 @@ }, { "question": "やよい軒", - "icon": "./assets/data/nsi/logos/yayoiken-73219d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yayoiken-73219d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359934,7 +360283,7 @@ }, { "question": "ラーメン山岡家", - "icon": "./assets/data/nsi/logos/ramenyamaokaya-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ramenyamaokaya-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359955,7 +360304,7 @@ }, { "question": "リンガーハット", - "icon": "./assets/data/nsi/logos/ringerhut-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ringerhut-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -359996,7 +360345,7 @@ }, { "question": "ロイヤルホスト", - "icon": "./assets/data/nsi/logos/royalhost-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalhost-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360017,7 +360366,7 @@ }, { "question": "一風堂", - "icon": "./assets/data/nsi/logos/ippudo-8a40ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ippudo-8a40ea.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360040,7 +360389,7 @@ }, { "question": "一风堂", - "icon": "./assets/data/nsi/logos/ippudo-2b8b0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ippudo-2b8b0b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360063,7 +360412,7 @@ }, { "question": "三商巧福 (日本)", - "icon": "./assets/data/nsi/logos/mercuriesfood-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercuriesfood-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360089,7 +360438,7 @@ }, { "question": "三商巧福 (臺灣)", - "icon": "./assets/data/nsi/logos/mercuriesfood-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercuriesfood-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360118,7 +360467,7 @@ }, { "question": "三媽臭臭鍋", - "icon": "./assets/data/nsi/logos/goldseight-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldseight-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360138,7 +360487,7 @@ }, { "question": "三顧茅廬", - "icon": "./assets/data/nsi/logos/sangumaolu-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sangumaolu-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360222,7 +360571,7 @@ }, { "question": "争鲜", - "icon": "./assets/data/nsi/logos/sushiexpress-22b83d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiexpress-22b83d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360280,7 +360629,7 @@ }, { "question": "元氣壽司 Genki Sushi", - "icon": "./assets/data/nsi/logos/genkisushi-8b6c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genkisushi-8b6c9a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360327,7 +360676,7 @@ }, { "question": "六扇門時尚湯鍋", - "icon": "./assets/data/nsi/logos/6owldoor-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/6owldoor-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360432,7 +360781,7 @@ }, { "question": "味千拉面", - "icon": "./assets/data/nsi/logos/ajisenramen-22b83d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajisenramen-22b83d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360455,7 +360804,7 @@ }, { "question": "味千拉麵 Ajisen Ramen", - "icon": "./assets/data/nsi/logos/ajisenramen-8b6c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajisenramen-8b6c9a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360482,7 +360831,7 @@ }, { "question": "味爱普思", - "icon": "./assets/data/nsi/logos/vips-0a8e9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vips-0a8e9b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360563,7 +360912,7 @@ }, { "question": "和食さと", - "icon": "./assets/data/nsi/logos/washokusato-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/washokusato-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -360584,7 +360933,7 @@ }, { "question": "和食さと (臺灣)", - "icon": "./assets/data/nsi/logos/washokusato-aafd63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/washokusato-aafd63.png", "osmTags": { "and": [ "amenity=restaurant", @@ -360627,7 +360976,7 @@ }, { "question": "四海遊龍", - "icon": "./assets/data/nsi/logos/yuloong-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yuloong-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360648,7 +360997,7 @@ }, { "question": "壽司郎", - "icon": "./assets/data/nsi/logos/sushiro-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiro-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360671,7 +361020,7 @@ }, { "question": "壽司郎 Sushiro", - "icon": "./assets/data/nsi/logos/sushiro-8b6c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiro-8b6c9a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360718,7 +361067,7 @@ }, { "question": "夢庵", - "icon": "./assets/data/nsi/logos/yumean-36ca8e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yumean-36ca8e.svg", "osmTags": { "and": [ "amenity=restaurant", @@ -360739,7 +361088,7 @@ }, { "question": "大埔平價鐵板燒", - "icon": "./assets/data/nsi/logos/daproteppanyaki-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daproteppanyaki-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360804,7 +361153,7 @@ }, { "question": "大戸屋", - "icon": "./assets/data/nsi/logos/ootoya-d30421.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ootoya-d30421.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360827,7 +361176,7 @@ }, { "question": "大阪王将", - "icon": "./assets/data/nsi/logos/osakaohsho-d30421.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osakaohsho-d30421.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360850,7 +361199,7 @@ }, { "question": "天下一品", - "icon": "./assets/data/nsi/logos/tenkaippin-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tenkaippin-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360871,7 +361220,7 @@ }, { "question": "孫東寶台式牛排", - "icon": "./assets/data/nsi/logos/sundongbaobeefsteak-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sundongbaobeefsteak-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -360956,7 +361305,7 @@ }, { "question": "寿司郎", - "icon": "./assets/data/nsi/logos/sushiro-22b83d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiro-22b83d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361064,7 +361413,7 @@ }, { "question": "龐德羅莎", - "icon": "./assets/data/nsi/logos/ponderosasteakhouse-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ponderosasteakhouse-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361105,7 +361454,7 @@ }, { "question": "強尼兄弟", - "icon": "./assets/data/nsi/logos/johnnybro-aafd63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johnnybro-aafd63.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361147,7 +361496,7 @@ }, { "question": "得來素", - "icon": "./assets/data/nsi/logos/derlife-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derlife-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361170,7 +361519,7 @@ }, { "question": "必勝客 (臺灣)", - "icon": "./assets/data/nsi/logos/pizzahut-aafd63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzahut-aafd63.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361194,7 +361543,7 @@ }, { "question": "必勝客 Pizza Hut", - "icon": "./assets/data/nsi/logos/pizzahut-edf541.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzahut-edf541.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361219,7 +361568,7 @@ }, { "question": "必胜客 (中国)", - "icon": "./assets/data/nsi/logos/pizzahut-2b8b0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pizzahut-2b8b0b.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361240,7 +361589,7 @@ }, { "question": "快乐小羊", - "icon": "./assets/data/nsi/logos/happylambhotpot-0a8e9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happylambhotpot-0a8e9b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361337,7 +361686,7 @@ }, { "question": "来来亭", - "icon": "./assets/data/nsi/logos/rairaitei-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rairaitei-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361420,7 +361769,7 @@ }, { "question": "梁社漢排骨", - "icon": "./assets/data/nsi/logos/liangshehanbuyfood-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liangshehanbuyfood-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361441,7 +361790,7 @@ }, { "question": "樂雅樂", - "icon": "./assets/data/nsi/logos/royalhost-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalhost-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361488,7 +361837,7 @@ }, { "question": "永和豆浆 (中国)", - "icon": "./assets/data/nsi/logos/yonghesoymilk-0a8e9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yonghesoymilk-0a8e9b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361511,7 +361860,7 @@ }, { "question": "永和豆漿 (臺灣)", - "icon": "./assets/data/nsi/logos/yonghesoymilk-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yonghesoymilk-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361534,7 +361883,7 @@ }, { "question": "海底捞火锅", - "icon": "./assets/data/nsi/logos/haidilaohotpot-2b8b0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haidilaohotpot-2b8b0b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361559,7 +361908,7 @@ }, { "question": "海底撈火鍋", - "icon": "./assets/data/nsi/logos/haidilaohotpot-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haidilaohotpot-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361584,7 +361933,7 @@ }, { "question": "海底撈火鍋 Haidilao Hot Pot", - "icon": "./assets/data/nsi/logos/haidilaohotpot-edf541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haidilaohotpot-edf541.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361673,7 +362022,7 @@ }, { "question": "焼肉きんぐ", - "icon": "./assets/data/nsi/logos/yakinikuking-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yakinikuking-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361694,7 +362043,7 @@ }, { "question": "焼肉ライク", - "icon": "./assets/data/nsi/logos/yakinikulike-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yakinikulike-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361715,7 +362064,7 @@ }, { "question": "燒肉スマイル", - "icon": "./assets/data/nsi/logos/yakinikusmile-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yakinikusmile-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361742,7 +362091,7 @@ }, { "question": "爭鮮", - "icon": "./assets/data/nsi/logos/sushiexpress-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiexpress-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361767,7 +362116,7 @@ }, { "question": "爭鮮 Sushi Express", - "icon": "./assets/data/nsi/logos/sushiexpress-8b6c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sushiexpress-8b6c9a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361812,7 +362161,7 @@ }, { "question": "牛角", - "icon": "./assets/data/nsi/logos/gyukaku-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gyukaku-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361833,7 +362182,7 @@ }, { "question": "牛角 (Chinese)", - "icon": "./assets/data/nsi/logos/gyukaku-e68d5b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gyukaku-e68d5b.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361856,7 +362205,7 @@ }, { "question": "牛角 Gyu-Kaku", - "icon": "./assets/data/nsi/logos/gyukaku-8b6c9a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gyukaku-8b6c9a.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361922,7 +362271,7 @@ }, { "question": "町田商店", - "icon": "./assets/data/nsi/logos/machidashouten-36ca8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/machidashouten-36ca8e.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361943,7 +362292,7 @@ }, { "question": "百八魚場", - "icon": "./assets/data/nsi/logos/fish180-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fish180-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -361964,7 +362313,7 @@ }, { "question": "眉州东坡", - "icon": "./assets/data/nsi/logos/meizhoudongpo-0a8e9b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meizhoudongpo-0a8e9b.png", "osmTags": { "and": [ "amenity=restaurant", @@ -361986,7 +362335,7 @@ }, { "question": "福勝亭", - "icon": "./assets/data/nsi/logos/tonkatsu-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tonkatsu-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362035,7 +362384,7 @@ }, { "question": "築間酸菜魚", - "icon": "./assets/data/nsi/logos/jhujiansuancaiyu-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jhujiansuancaiyu-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362162,7 +362511,7 @@ }, { "question": "萨莉亚", - "icon": "./assets/data/nsi/logos/saizeriya-22b83d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saizeriya-22b83d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362203,7 +362552,7 @@ }, { "question": "薩莉亞", - "icon": "./assets/data/nsi/logos/saizeriya-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saizeriya-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362228,7 +362577,7 @@ }, { "question": "薩莉亞 Saizeriya", - "icon": "./assets/data/nsi/logos/saizeriya-8b6c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saizeriya-8b6c9a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362257,6 +362606,7 @@ }, { "question": "袁记云饺", + "icon": "https://data.mapcomplete.org/nsi//logos/yuanjiyunjiao-0a8e9b.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362314,7 +362664,7 @@ }, { "question": "譚仔三哥 TamJai SamGor", - "icon": "./assets/data/nsi/logos/tamjaisamgor-8b6c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamjaisamgor-8b6c9a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362339,7 +362689,7 @@ }, { "question": "譚仔雲南米線 TamJai Yunnan Mixian", - "icon": "./assets/data/nsi/logos/tamjaiyunnanmixian-8b6c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamjaiyunnanmixian-8b6c9a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362363,7 +362713,7 @@ }, { "question": "貴族世家", - "icon": "./assets/data/nsi/logos/noblesteak-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noblesteak-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362467,7 +362817,7 @@ }, { "question": "非常泰概念餐坊", - "icon": "./assets/data/nsi/logos/verythairestaurant-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verythairestaurant-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362492,7 +362842,7 @@ }, { "question": "餃子の王将", - "icon": "./assets/data/nsi/logos/gyozanoohsho-36ca8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gyozanoohsho-36ca8e.png", "osmTags": { "and": [ "amenity=restaurant", @@ -362513,7 +362863,7 @@ }, { "question": "餃子的王將", - "icon": "./assets/data/nsi/logos/gyozanoohsho-aafd63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gyozanoohsho-aafd63.png", "osmTags": { "and": [ "amenity=restaurant", @@ -362536,7 +362886,7 @@ }, { "question": "饗食天堂", - "icon": "./assets/data/nsi/logos/eatogether-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eatogether-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362561,7 +362911,7 @@ }, { "question": "鬍鬚張", - "icon": "./assets/data/nsi/logos/formosachang-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/formosachang-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362608,7 +362958,7 @@ }, { "question": "鼎泰丰", - "icon": "./assets/data/nsi/logos/dintaifung-22b83d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dintaifung-22b83d.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362629,7 +362979,7 @@ }, { "question": "鼎泰豐", - "icon": "./assets/data/nsi/logos/dintaifung-aafd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dintaifung-aafd63.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362657,7 +363007,7 @@ }, { "question": "鼎泰豐 Din Tai Fung", - "icon": "./assets/data/nsi/logos/dintaifung-8b6c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dintaifung-8b6c9a.jpg", "osmTags": { "and": [ "amenity=restaurant", @@ -362682,7 +363032,7 @@ }, { "question": "APEC Schools", - "icon": "./assets/data/nsi/logos/apecschools-b5c910.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apecschools-b5c910.png", "osmTags": { "and": [ "amenity=school", @@ -362699,7 +363049,7 @@ }, { "question": "Bahçeşehir Koleji", - "icon": "./assets/data/nsi/logos/bahcesehirkoleji-8696da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bahcesehirkoleji-8696da.jpg", "osmTags": { "and": [ "amenity=school", @@ -362714,7 +363064,7 @@ }, { "question": "Bilfen Okulları", - "icon": "./assets/data/nsi/logos/bilfenokullari-8696da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bilfenokullari-8696da.jpg", "osmTags": { "and": [ "amenity=school", @@ -362729,15 +363079,15 @@ }, { "question": "Doğa Koleji", - "icon": "./assets/data/nsi/logos/dogakoleji-8696da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dogakoleji-8696da.jpg", "osmTags": { "and": [ "amenity=school", - "official_name=İTÜ ETA Vakfı Doğa Koleji", { "or": [ "brand=Doğa Koleji", - "brand:wikidata=Q5303858" + "brand:wikidata=Q5303858", + "official_name=İTÜ ETA Vakfı Doğa Koleji" ] } ] @@ -362745,7 +363095,7 @@ }, { "question": "Imagine Schools", - "icon": "./assets/data/nsi/logos/imagineschools-f520e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imagineschools-f520e3.jpg", "osmTags": { "and": [ "amenity=school", @@ -362776,7 +363126,7 @@ }, { "question": "Kendriya Vidyalaya", - "icon": "./assets/data/nsi/logos/kendriyavidyalaya-198395.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kendriyavidyalaya-198395.jpg", "osmTags": { "and": [ "amenity=school", @@ -362792,16 +363142,16 @@ }, { "question": "KIPP", - "icon": "./assets/data/nsi/logos/kipp-f520e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kipp-f520e3.jpg", "osmTags": { "and": [ "amenity=school", - "official_name=Knowledge Is Power Program", { "or": [ "brand=KIPP", "brand:wikidata=Q6423304", - "name=KIPP" + "name=KIPP", + "official_name=Knowledge Is Power Program" ] } ] @@ -362818,7 +363168,7 @@ }, { "question": "Maple Bear", - "icon": "./assets/data/nsi/logos/maplebear-101006.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maplebear-101006.png", "osmTags": { "and": [ "amenity=school", @@ -362834,7 +363184,7 @@ }, { "question": "Merryhill School", - "icon": "./assets/data/nsi/logos/merryhillschool-f520e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/merryhillschool-f520e3.jpg", "osmTags": { "and": [ "amenity=school", @@ -362850,7 +363200,7 @@ }, { "question": "Okyanus Koleji", - "icon": "./assets/data/nsi/logos/okyanuskoleji-8696da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okyanuskoleji-8696da.jpg", "osmTags": { "and": [ "amenity=school", @@ -362865,7 +363215,7 @@ }, { "question": "Success Academy", - "icon": "./assets/data/nsi/logos/successacademy-f520e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/successacademy-f520e3.png", "osmTags": { "and": [ "amenity=school", @@ -362900,7 +363250,7 @@ }, { "question": "遵理學校 Beacon College", - "icon": "./assets/data/nsi/logos/beaconcollege-7e66f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beaconcollege-7e66f3.jpg", "osmTags": { "and": [ "amenity=school", @@ -362920,7 +363270,7 @@ }, { "question": "AHEPA Hall", - "icon": "./assets/data/nsi/logos/ahepahall-30ca27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ahepahall-30ca27.jpg", "osmTags": { "and": [ "amenity=social_centre", @@ -362936,7 +363286,7 @@ }, { "question": "American Legion Hall", - "icon": "./assets/data/nsi/logos/americanlegionhall-7c1650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americanlegionhall-7c1650.jpg", "osmTags": { "and": [ "amenity=social_centre", @@ -362953,7 +363303,7 @@ }, { "question": "AMVETS Post", - "icon": "./assets/data/nsi/logos/amvetspost-7c1650.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amvetspost-7c1650.png", "osmTags": { "and": [ "amenity=social_centre", @@ -362970,18 +363320,18 @@ }, { "question": "Eagles Lodge", - "icon": "./assets/data/nsi/logos/eagleslodge-7c1650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eagleslodge-7c1650.jpg", "osmTags": { "and": [ "amenity=social_centre", - "official_name=Fraternal Order of Eagles", "short_name=FOE", { "or": [ "alt_name=Aeries Lodge", "brand=Fraternal Order of Eagles", "brand:wikidata=Q5493810", - "name=Eagles Lodge" + "name=Eagles Lodge", + "official_name=Fraternal Order of Eagles" ] } ] @@ -362989,17 +363339,17 @@ }, { "question": "Elks Lodge", - "icon": "./assets/data/nsi/logos/elkslodge-7c1650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elkslodge-7c1650.jpg", "osmTags": { "and": [ "amenity=social_centre", - "official_name=Benevolent and Protective Order of Elks", "short_name=BPOE", { "or": [ "brand=Benevolent and Protective Order of Elks", "brand:wikidata=Q2895789", - "name=Elks Lodge" + "name=Elks Lodge", + "official_name=Benevolent and Protective Order of Elks" ] } ] @@ -363023,7 +363373,7 @@ }, { "question": "Knights of Columbus", - "icon": "./assets/data/nsi/logos/knightsofcolumbuscouncil-7c1650.png", + "icon": "https://data.mapcomplete.org/nsi//logos/knightsofcolumbuscouncil-7c1650.png", "osmTags": { "and": [ "amenity=social_centre", @@ -363040,7 +363390,7 @@ }, { "question": "Lions Clubs International", - "icon": "./assets/data/nsi/logos/lionsclubsinternational-8e336b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lionsclubsinternational-8e336b.jpg", "osmTags": { "and": [ "amenity=social_centre", @@ -363056,16 +363406,16 @@ }, { "question": "Moose Lodge", - "icon": "./assets/data/nsi/logos/mooselodge-148cd3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mooselodge-148cd3.jpg", "osmTags": { "and": [ "amenity=social_centre", - "official_name=Loyal Order of Moose", { "or": [ "brand=Loyal Order of Moose", "brand:wikidata=Q6908585", - "name=Moose Lodge" + "name=Moose Lodge", + "official_name=Loyal Order of Moose" ] } ] @@ -363073,17 +363423,17 @@ }, { "question": "Odd Fellows Hall", - "icon": "./assets/data/nsi/logos/oddfellowshall-8e336b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oddfellowshall-8e336b.jpg", "osmTags": { "and": [ "amenity=social_centre", - "official_name=Independent Order of Odd Fellows", "short_name=IOOF", { "or": [ "brand=Independent Order of Odd Fellows", "brand:wikidata=Q1425508", - "name=Odd Fellows Hall" + "name=Odd Fellows Hall", + "official_name=Independent Order of Odd Fellows" ] } ] @@ -363091,17 +363441,17 @@ }, { "question": "Orioles Nest", - "icon": "./assets/data/nsi/logos/oriolesnest-7c1650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oriolesnest-7c1650.jpg", "osmTags": { "and": [ "amenity=social_centre", - "official_name=Fraternal Order Orioles", "short_name=FOO", { "or": [ "brand=Fraternal Order Orioles", "brand:wikidata=Q5493805", - "name=Orioles Nest" + "name=Orioles Nest", + "official_name=Fraternal Order Orioles" ] } ] @@ -363109,7 +363459,7 @@ }, { "question": "Royal Canadian Legion Hall", - "icon": "./assets/data/nsi/logos/royalcanadianlegionhall-c03cd4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/royalcanadianlegionhall-c03cd4.png", "osmTags": { "and": [ "amenity=social_centre", @@ -363127,7 +363477,7 @@ }, { "question": "The National Grange", - "icon": "./assets/data/nsi/logos/thenationalgrangeoftheorderofpatronsofhusbandry-7c1650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thenationalgrangeoftheorderofpatronsofhusbandry-7c1650.jpg", "osmTags": { "and": [ "amenity=social_centre", @@ -363142,11 +363492,10 @@ }, { "question": "VFW Post", - "icon": "./assets/data/nsi/logos/vfwpost-8be9ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vfwpost-8be9ec.jpg", "osmTags": { "and": [ "amenity=social_centre", - "official_name=Veterans of Foreign Wars of the United States", "short_name=VFW", "social_centre:for=veteran", { @@ -363154,7 +363503,8 @@ "brand=Veterans of Foreign Wars of the United States", "brand:wikidata=Q3556413", "name=VFW Post", - "name:en=VFW Post" + "name:en=VFW Post", + "official_name=Veterans of Foreign Wars of the United States" ] } ] @@ -363162,7 +363512,7 @@ }, { "question": "Arbeiter-Samariter-Bund", - "icon": "./assets/data/nsi/logos/arbeitersamariterbund-da0ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-da0ff2.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363178,7 +363528,7 @@ }, { "question": "Arbeiterwohlfahrt", - "icon": "./assets/data/nsi/logos/arbeiterwohlfahrt-da0ff2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-da0ff2.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -363228,7 +363578,7 @@ }, { "question": "Bayerisches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/bayerischesroteskreuz-718a33.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-718a33.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363244,7 +363594,7 @@ }, { "question": "Bethel", - "icon": "./assets/data/nsi/logos/bethel-da0ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bethel-da0ff2.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363260,7 +363610,7 @@ }, { "question": "Big Brothers Big Sisters Lone Star", - "icon": "./assets/data/nsi/logos/bigbrothersbigsisterslonestar-233ba4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bigbrothersbigsisterslonestar-233ba4.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363276,7 +363626,7 @@ }, { "question": "Boys & Girls Club", - "icon": "./assets/data/nsi/logos/boysandgirlsclub-233ba4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boysandgirlsclub-233ba4.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363294,7 +363644,7 @@ }, { "question": "Canadian Red Cross", - "icon": "./assets/data/nsi/logos/canadianredcross-cf1346.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canadianredcross-cf1346.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363318,7 +363668,7 @@ }, { "question": "Caritas", - "icon": "./assets/data/nsi/logos/caritas-c8e87f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-c8e87f.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363334,7 +363684,7 @@ }, { "question": "Caritas (Deutschland)", - "icon": "./assets/data/nsi/logos/caritas-da0ff2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-da0ff2.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363349,7 +363699,7 @@ }, { "question": "Caritas (Österreich)", - "icon": "./assets/data/nsi/logos/caritas-257965.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-257965.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363364,7 +363714,7 @@ }, { "question": "Caritas (Schweiz)", - "icon": "./assets/data/nsi/logos/caritas-7e98f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-7e98f6.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363379,7 +363729,7 @@ }, { "question": "Caritas (Slovensko)", - "icon": "./assets/data/nsi/logos/caritas-07e566.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-07e566.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363409,7 +363759,7 @@ }, { "question": "Citizens Advice", - "icon": "./assets/data/nsi/logos/citizensadvice-71aff3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citizensadvice-71aff3.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363425,7 +363775,7 @@ }, { "question": "Croix-Rouge de Belgique", - "icon": "./assets/data/nsi/logos/croixrougedebelgique-8298e5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/croixrougedebelgique-8298e5.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -363444,7 +363794,7 @@ }, { "question": "Croix-Rouge française", - "icon": "./assets/data/nsi/logos/croixrougefrancaise-8d024d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/croixrougefrancaise-8d024d.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363463,7 +363813,7 @@ }, { "question": "Croix-Rouge luxembourgeoise", - "icon": "./assets/data/nsi/logos/croixrougeluxembourgeoise-090a38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/croixrougeluxembourgeoise-090a38.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363502,7 +363852,7 @@ }, { "question": "Deutsches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/deutschesroteskreuz-da0ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-da0ff2.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363518,7 +363868,7 @@ }, { "question": "Diakonie", - "icon": "./assets/data/nsi/logos/diakonie-da0ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diakonie-da0ff2.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363547,7 +363897,7 @@ }, { "question": "Johanniter", - "icon": "./assets/data/nsi/logos/johanniter-da0ff2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johanniter-da0ff2.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363562,7 +363912,7 @@ }, { "question": "Johanniter-Unfall-Hilfe", - "icon": "./assets/data/nsi/logos/johanniterunfallhilfe-da0ff2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfe-da0ff2.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363577,7 +363927,7 @@ }, { "question": "Lebenshilfe", - "icon": "./assets/data/nsi/logos/lebenshilfe-da0ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lebenshilfe-da0ff2.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363592,7 +363942,7 @@ }, { "question": "Les Petites Cantines", - "icon": "./assets/data/nsi/logos/lespetitescantines-f6f802.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lespetitescantines-f6f802.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363613,7 +363963,7 @@ }, { "question": "Life Care Centers of America", - "icon": "./assets/data/nsi/logos/lifecarecentersofamerica-233ba4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifecarecentersofamerica-233ba4.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363629,7 +363979,7 @@ }, { "question": "Malteser Hilfsdienst", - "icon": "./assets/data/nsi/logos/malteserhilfsdienst-da0ff2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/malteserhilfsdienst-da0ff2.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363686,18 +364036,18 @@ }, { "question": "ONCE", - "icon": "./assets/data/nsi/logos/once-bb7a05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/once-bb7a05.jpg", "osmTags": { "and": [ "amenity=social_facility", - "official_name=Organización Nacional de Ciegos Españoles", "social_facility=outreach", "social_facility:for=blind", { "or": [ "brand=ONCE", "brand:wikidata=Q1750397", - "name=ONCE" + "name=ONCE", + "official_name=Organización Nacional de Ciegos Españoles" ] } ] @@ -363705,7 +364055,7 @@ }, { "question": "SOMPOケア", - "icon": "./assets/data/nsi/logos/sompocare-58dbc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sompocare-58dbc8.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363744,7 +364094,7 @@ }, { "question": "Tafel", - "icon": "./assets/data/nsi/logos/tafel-da0ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tafel-da0ff2.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363761,7 +364111,7 @@ }, { "question": "Vet Center", - "icon": "./assets/data/nsi/logos/vetcenter-233ba4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vetcenter-233ba4.png", "osmTags": { "and": [ "healthcare=counselling", @@ -363810,7 +364160,7 @@ }, { "question": "Volkssolidarität", - "icon": "./assets/data/nsi/logos/volkssolidaritat-da0ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkssolidaritat-da0ff2.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363826,7 +364176,7 @@ }, { "question": "Weißer Ring", - "icon": "./assets/data/nsi/logos/weisserring-da0ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weisserring-da0ff2.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363842,7 +364192,7 @@ }, { "question": "Карітас", - "icon": "./assets/data/nsi/logos/caritas-0fc399.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-0fc399.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363860,7 +364210,7 @@ }, { "question": "Карітас-Спес", - "icon": "./assets/data/nsi/logos/caritasspes-0fc399.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritasspes-0fc399.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363878,7 +364228,7 @@ }, { "question": "Товариство Червоного Хреста України", - "icon": "./assets/data/nsi/logos/ukrainianredcrosssociety-0fc399.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrainianredcrosssociety-0fc399.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363899,7 +364249,7 @@ }, { "question": "ツクイ", - "icon": "./assets/data/nsi/logos/tsukui-58dbc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsukui-58dbc8.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363921,7 +364271,7 @@ }, { "question": "リハプライド", - "icon": "./assets/data/nsi/logos/rehapride-58dbc8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rehapride-58dbc8.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363943,7 +364293,7 @@ }, { "question": "レコードブック", - "icon": "./assets/data/nsi/logos/recordbook-58dbc8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/recordbook-58dbc8.png", "osmTags": { "and": [ "amenity=social_facility", @@ -363965,7 +364315,7 @@ }, { "question": "明愛會 Caritas", - "icon": "./assets/data/nsi/logos/caritas-c6051e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-c6051e.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -363985,7 +364335,7 @@ }, { "question": "NTT", - "icon": "./assets/data/nsi/logos/ntt-cd9a04.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntt-cd9a04.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -364004,7 +364354,7 @@ }, { "question": "Aveda Institutes", - "icon": "./assets/data/nsi/logos/avedainstitute-0baf38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avedainstitute-0baf38.jpg", "osmTags": { "and": [ "amenity=training", @@ -364021,7 +364371,7 @@ }, { "question": "Code Ninjas", - "icon": "./assets/data/nsi/logos/codeninjas-406d99.png", + "icon": "https://data.mapcomplete.org/nsi//logos/codeninjas-406d99.png", "osmTags": { "and": [ "amenity=training", @@ -364038,7 +364388,7 @@ }, { "question": "Color Me Mine", - "icon": "./assets/data/nsi/logos/colormemine-93dfd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colormemine-93dfd1.jpg", "osmTags": { "and": [ "amenity=training", @@ -364071,7 +364421,7 @@ }, { "question": "GOLFTEC", - "icon": "./assets/data/nsi/logos/golftec-804fd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/golftec-804fd8.jpg", "osmTags": { "and": [ "amenity=training", @@ -364103,7 +364453,7 @@ }, { "question": "Little Kitchen Academy", - "icon": "./assets/data/nsi/logos/littlekitchenacademy-0baf38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/littlekitchenacademy-0baf38.png", "osmTags": { "and": [ "amenity=training", @@ -364120,7 +364470,7 @@ }, { "question": "Mad Science", - "icon": "./assets/data/nsi/logos/madscience-0435a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madscience-0435a3.jpg", "osmTags": { "and": [ "amenity=training", @@ -364137,7 +364487,7 @@ }, { "question": "Paul Mitchell Schools", - "icon": "./assets/data/nsi/logos/paulmitchelltheschool-93dfd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paulmitchelltheschool-93dfd1.jpg", "osmTags": { "and": [ "amenity=training", @@ -364183,7 +364533,7 @@ }, { "question": "Smarte Carte", - "icon": "./assets/data/nsi/logos/smartecarte-0866fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smartecarte-0866fc.png", "osmTags": { "and": [ "amenity=trolley_bay", @@ -364200,7 +364550,7 @@ }, { "question": "American National University", - "icon": "./assets/data/nsi/logos/americannationaluniversity-d62529.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/americannationaluniversity-d62529.svg", "osmTags": { "and": [ "amenity=university", @@ -364217,7 +364567,7 @@ }, { "question": "DeVry University", - "icon": "./assets/data/nsi/logos/devryuniversity-d62529.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devryuniversity-d62529.jpg", "osmTags": { "and": [ "amenity=university", @@ -364234,7 +364584,7 @@ }, { "question": "ECPI University", - "icon": "./assets/data/nsi/logos/ecpiuniversity-d62529.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecpiuniversity-d62529.jpg", "osmTags": { "and": [ "amenity=university", @@ -364250,7 +364600,7 @@ }, { "question": "Rasmussen University", - "icon": "./assets/data/nsi/logos/rasmussenuniversity-d62529.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rasmussenuniversity-d62529.jpg", "osmTags": { "and": [ "amenity=university", @@ -364266,7 +364616,7 @@ }, { "question": "Strayer University", - "icon": "./assets/data/nsi/logos/strayeruniversity-d62529.png", + "icon": "https://data.mapcomplete.org/nsi//logos/strayeruniversity-d62529.png", "osmTags": { "and": [ "amenity=university", @@ -364283,7 +364633,7 @@ }, { "question": "University of Phoenix", - "icon": "./assets/data/nsi/logos/universityofphoenix-d62529.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofphoenix-d62529.png", "osmTags": { "and": [ "amenity=university", @@ -364300,7 +364650,7 @@ }, { "question": "Applus Bilsyn", - "icon": "./assets/data/nsi/logos/applusbilsyn-d8b9f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/applusbilsyn-d8b9f3.png", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364330,7 +364680,7 @@ }, { "question": "Autosur", - "icon": "./assets/data/nsi/logos/autosur-53baa7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autosur-53baa7.png", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364346,7 +364696,7 @@ }, { "question": "Autovision", - "icon": "./assets/data/nsi/logos/autovision-53baa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autovision-53baa7.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364362,7 +364712,7 @@ }, { "question": "Besikta Bilprovning", - "icon": "./assets/data/nsi/logos/besiktabilprovning-ca3d1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/besiktabilprovning-ca3d1c.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364378,7 +364728,7 @@ }, { "question": "Dekra", - "icon": "./assets/data/nsi/logos/dekra-5e3362.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dekra-5e3362.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364394,7 +364744,7 @@ }, { "question": "FDM Bilsyn", - "icon": "./assets/data/nsi/logos/fdmbilsyn-d8b9f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fdmbilsyn-d8b9f3.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364410,7 +364760,7 @@ }, { "question": "GTÜ", - "icon": "./assets/data/nsi/logos/gtu-da4a1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gtu-da4a1b.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364454,7 +364804,7 @@ }, { "question": "Puspakom", - "icon": "./assets/data/nsi/logos/puspakom-0c47dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puspakom-0c47dd.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364470,7 +364820,7 @@ }, { "question": "Sécuritest", - "icon": "./assets/data/nsi/logos/securitest-53baa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/securitest-53baa7.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364500,7 +364850,7 @@ }, { "question": "TÜV Hanse", - "icon": "./assets/data/nsi/logos/tuvhanse-da4a1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuvhanse-da4a1b.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364516,7 +364866,7 @@ }, { "question": "TÜV Hessen", - "icon": "./assets/data/nsi/logos/tuvhessen-da4a1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuvhessen-da4a1b.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364532,7 +364882,7 @@ }, { "question": "TÜV Nord", - "icon": "./assets/data/nsi/logos/tuvnord-da4a1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuvnord-da4a1b.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364548,7 +364898,7 @@ }, { "question": "TÜV Rheinland", - "icon": "./assets/data/nsi/logos/tuvrheinland-da4a1b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tuvrheinland-da4a1b.png", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364564,7 +364914,7 @@ }, { "question": "TÜV Saarland", - "icon": "./assets/data/nsi/logos/tuvsaarland-da4a1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuvsaarland-da4a1b.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364580,7 +364930,7 @@ }, { "question": "TÜV Süd", - "icon": "./assets/data/nsi/logos/tuvsud-da4a1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuvsud-da4a1b.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364596,7 +364946,7 @@ }, { "question": "TÜV Thüringen", - "icon": "./assets/data/nsi/logos/tuvthuringen-da4a1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuvthuringen-da4a1b.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364612,7 +364962,7 @@ }, { "question": "TÜVTÜRK", - "icon": "./assets/data/nsi/logos/tuvturk-9c5bc9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tuvturk-9c5bc9.png", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364628,7 +364978,7 @@ }, { "question": "VTNZ", - "icon": "./assets/data/nsi/logos/vtnz-31002f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vtnz-31002f.png", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364644,7 +364994,7 @@ }, { "question": "ホリデー車検", - "icon": "./assets/data/nsi/logos/holiday-f4e150.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holiday-f4e150.jpg", "osmTags": { "and": [ "amenity=vehicle_inspection", @@ -364664,7 +365014,7 @@ }, { "question": "7 Up (Canada/USA)", - "icon": "./assets/data/nsi/logos/7up-ff8484.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/7up-ff8484.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -364682,7 +365032,7 @@ }, { "question": "7up", - "icon": "./assets/data/nsi/logos/7up-54a292.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/7up-54a292.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -364700,7 +365050,7 @@ }, { "question": "Abendzeitung", - "icon": "./assets/data/nsi/logos/abendzeitung-a242c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abendzeitung-a242c5.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -364736,7 +365086,7 @@ }, { "question": "AmeriGas", - "icon": "./assets/data/nsi/logos/amerigas-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amerigas-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -364754,7 +365104,7 @@ }, { "question": "Aqvagold", - "icon": "./assets/data/nsi/logos/aqvagold-13a866.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aqvagold-13a866.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -364811,7 +365161,7 @@ }, { "question": "Best Buy Express", - "icon": "./assets/data/nsi/logos/bestbuyexpress-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bestbuyexpress-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -364828,7 +365178,7 @@ }, { "question": "Bild", - "icon": "./assets/data/nsi/logos/bild-a242c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bild-a242c5.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -364844,7 +365194,7 @@ }, { "question": "BioBag", - "icon": "./assets/data/nsi/logos/biobag-ff8484.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biobag-ff8484.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -364877,7 +365227,7 @@ }, { "question": "Blue Rhino", - "icon": "./assets/data/nsi/logos/bluerhino-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluerhino-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -364915,7 +365265,7 @@ }, { "question": "BottleDrop", - "icon": "./assets/data/nsi/logos/bottledrop-54b61f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bottledrop-54b61f.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -364946,7 +365296,7 @@ }, { "question": "Break & Wash", - "icon": "./assets/data/nsi/logos/breakandwash-bd9635.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/breakandwash-bd9635.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -364983,7 +365333,7 @@ }, { "question": "bwegt", - "icon": "./assets/data/nsi/logos/bwegt-a242c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bwegt-a242c5.jpg", "osmTags": { "and": [ "vending=public_transport_tickets", @@ -364999,7 +365349,7 @@ }, { "question": "BWT Aqua", - "icon": "./assets/data/nsi/logos/bwtaqua-9e3915.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bwtaqua-9e3915.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -365036,7 +365386,7 @@ }, { "question": "Chaqwa", - "icon": "./assets/data/nsi/logos/chaqwa-a242c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chaqwa-a242c5.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365052,7 +365402,7 @@ }, { "question": "Coca-Cola", - "icon": "./assets/data/nsi/logos/cocacola-0a7392.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cocacola-0a7392.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -365070,7 +365420,7 @@ }, { "question": "Continental", - "icon": "./assets/data/nsi/logos/continental-123edb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/continental-123edb.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365086,7 +365436,7 @@ }, { "question": "Costa Express", - "icon": "./assets/data/nsi/logos/costaexpress-37500c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/costaexpress-37500c.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365118,7 +365468,7 @@ }, { "question": "CVS Pharmacy", - "icon": "./assets/data/nsi/logos/cvspharmacy-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cvspharmacy-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365136,7 +365486,7 @@ }, { "question": "Decathlon Radtour-Retter", - "icon": "./assets/data/nsi/logos/decathlonradtourretter-a242c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decathlonradtourretter-a242c5.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365153,7 +365503,7 @@ }, { "question": "Depozīta punkts", - "icon": "./assets/data/nsi/logos/depozitapunkts-cc4c61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/depozitapunkts-cc4c61.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365173,7 +365523,7 @@ }, { "question": "Deutsche Bahn", - "icon": "./assets/data/nsi/logos/deutschebahn-a242c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebahn-a242c5.png", "osmTags": { "and": [ "vending=public_transport_tickets", @@ -365191,7 +365541,7 @@ }, { "question": "Deutsche Post", - "icon": "./assets/data/nsi/logos/deutschepost-a242c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschepost-a242c5.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -365224,7 +365574,7 @@ }, { "question": "Doggie Walk Bags", - "icon": "./assets/data/nsi/logos/doggiewalkbags-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doggiewalkbags-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365240,7 +365590,7 @@ }, { "question": "DogiPot", - "icon": "./assets/data/nsi/logos/dogipot-ff8484.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dogipot-ff8484.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365256,7 +365606,7 @@ }, { "question": "Durex", - "icon": "./assets/data/nsi/logos/durex-ceeccb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/durex-ceeccb.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365272,7 +365622,7 @@ }, { "question": "FastKey", - "icon": "./assets/data/nsi/logos/fastkey-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastkey-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365314,7 +365664,7 @@ }, { "question": "FuelRod", - "icon": "./assets/data/nsi/logos/fuelrod-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fuelrod-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365331,7 +365681,7 @@ }, { "question": "Glacier Water", - "icon": "./assets/data/nsi/logos/glacierwater-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glacierwater-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365393,7 +365743,7 @@ }, { "question": "Home City Ice", - "icon": "./assets/data/nsi/logos/homecityice-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homecityice-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365430,19 +365780,19 @@ }, { "question": "JT", - "icon": "./assets/data/nsi/logos/jt-bf11a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jt-bf11a2.png", "osmTags": { "and": [ "amenity=vending_machine", - "official_name=日本たばこ産業", - "official_name:en=Japan Tobacco", - "official_name:ja=日本たばこ産業", "vending=cigarettes", { "or": [ "brand=JT", "brand:wikidata=Q898568", - "name=JT" + "name=JT", + "official_name=日本たばこ産業", + "official_name:en=Japan Tobacco", + "official_name:ja=日本たばこ産業" ] } ] @@ -365450,7 +365800,7 @@ }, { "question": "Karlsruher Verkehrsverbund", - "icon": "./assets/data/nsi/logos/karlsruherverkehrsverbund-a242c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlsruherverkehrsverbund-a242c5.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365470,7 +365820,7 @@ }, { "question": "KeyMe", - "icon": "./assets/data/nsi/logos/keyme-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keyme-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365533,7 +365883,7 @@ }, { "question": "Lavazza", - "icon": "./assets/data/nsi/logos/lavazza-ceeccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lavazza-ceeccb.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -365550,7 +365900,7 @@ }, { "question": "Lego", - "icon": "./assets/data/nsi/logos/lego-ceeccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lego-ceeccb.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365567,7 +365917,7 @@ }, { "question": "LEON", - "icon": "./assets/data/nsi/logos/leon-a7479d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leon-a7479d.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365604,7 +365954,7 @@ }, { "question": "MIKA Hundetoiletten", - "icon": "./assets/data/nsi/logos/mika-a242c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mika-a242c5.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365620,7 +365970,7 @@ }, { "question": "Mini Melts", - "icon": "./assets/data/nsi/logos/minimelts-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minimelts-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365637,7 +365987,7 @@ }, { "question": "Minute Key", - "icon": "./assets/data/nsi/logos/minutekey-ff8484.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minutekey-ff8484.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365654,7 +366004,7 @@ }, { "question": "Münchner Merkur", - "icon": "./assets/data/nsi/logos/munchnermerkur-a242c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/munchnermerkur-a242c5.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365685,7 +366035,7 @@ }, { "question": "My Key Machine", - "icon": "./assets/data/nsi/logos/mykeymachine-a7479d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mykeymachine-a7479d.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365702,7 +366052,7 @@ }, { "question": "Parkeon", - "icon": "./assets/data/nsi/logos/parkeon-ceeccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkeon-ceeccb.jpg", "osmTags": { "and": [ "vending=parking_tickets", @@ -365757,7 +366107,7 @@ }, { "question": "ParkPlus (Calgary)", - "icon": "./assets/data/nsi/logos/parkplus-b46c08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkplus-b46c08.jpg", "osmTags": { "and": [ "vending=parking_tickets", @@ -365774,7 +366124,7 @@ }, { "question": "Pepsi", - "icon": "./assets/data/nsi/logos/pepsi-ceeccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pepsi-ceeccb.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365792,7 +366142,7 @@ }, { "question": "PharmaBox", - "icon": "./assets/data/nsi/logos/pharmabox-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmabox-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365809,7 +366159,7 @@ }, { "question": "Primo Water", - "icon": "./assets/data/nsi/logos/primowater-7e3927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primowater-7e3927.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365826,7 +366176,7 @@ }, { "question": "Proactiv", - "icon": "./assets/data/nsi/logos/proactiv-7e3927.png", + "icon": "https://data.mapcomplete.org/nsi//logos/proactiv-7e3927.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -365862,7 +366212,7 @@ }, { "question": "Quick Tag", - "icon": "./assets/data/nsi/logos/quicktag-7e3927.png", + "icon": "https://data.mapcomplete.org/nsi//logos/quicktag-7e3927.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -365879,7 +366229,7 @@ }, { "question": "Redbox", - "icon": "./assets/data/nsi/logos/redbox-7e3927.png", + "icon": "https://data.mapcomplete.org/nsi//logos/redbox-7e3927.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -365896,7 +366246,7 @@ }, { "question": "Reddy Ice", - "icon": "./assets/data/nsi/logos/reddyice-7e3927.png", + "icon": "https://data.mapcomplete.org/nsi//logos/reddyice-7e3927.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -365928,7 +366278,7 @@ }, { "question": "Robidog", - "icon": "./assets/data/nsi/logos/robidog-742585.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/robidog-742585.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365955,7 +366305,7 @@ }, { "question": "Schwalbe", - "icon": "./assets/data/nsi/logos/schwalbe-123edb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schwalbe-123edb.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365971,7 +366321,7 @@ }, { "question": "Selecta", - "icon": "./assets/data/nsi/logos/selecta-ed4d31.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/selecta-ed4d31.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -365987,7 +366337,7 @@ }, { "question": "Sephora", - "icon": "./assets/data/nsi/logos/sephora-ceeccb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sephora-ceeccb.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366020,7 +366370,7 @@ }, { "question": "Süddeutsche Zeitung", - "icon": "./assets/data/nsi/logos/suddeutschezeitung-a242c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/suddeutschezeitung-a242c5.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -366036,7 +366386,7 @@ }, { "question": "Teika", - "icon": "./assets/data/nsi/logos/teika-9a306d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/teika-9a306d.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -366077,7 +366427,7 @@ }, { "question": "Timpson", - "icon": "./assets/data/nsi/logos/timpson-37500c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timpson-37500c.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366146,7 +366496,7 @@ }, { "question": "tz", - "icon": "./assets/data/nsi/logos/tz-a242c5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tz-a242c5.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366162,19 +366512,19 @@ }, { "question": "UCC", - "icon": "./assets/data/nsi/logos/ucc-bf11a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucc-bf11a2.jpg", "osmTags": { "and": [ "amenity=vending_machine", - "official_name=上島珈琲", - "official_name:en=Ueshima Coffee", - "official_name:ja=上島珈琲", "vending=coffee", { "or": [ "brand=UCC", "brand:wikidata=Q1185060", - "name=UCC" + "name=UCC", + "official_name=上島珈琲", + "official_name:en=Ueshima Coffee", + "official_name:ja=上島珈琲" ] } ] @@ -366233,7 +366583,7 @@ }, { "question": "Zernova", - "icon": "./assets/data/nsi/logos/zernova-9e3915.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zernova-9e3915.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366331,7 +366681,7 @@ }, { "question": "アサヒビール", - "icon": "./assets/data/nsi/logos/asahibreweries-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/asahibreweries-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366355,7 +366705,7 @@ }, { "question": "アサヒ飲料", - "icon": "./assets/data/nsi/logos/asahisoftdrinks-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/asahisoftdrinks-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366377,7 +366727,7 @@ }, { "question": "アペックス", - "icon": "./assets/data/nsi/logos/apex-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/apex-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366420,7 +366770,7 @@ }, { "question": "カップヌードル", - "icon": "./assets/data/nsi/logos/cupnoodle-bf11a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cupnoodle-bf11a2.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366441,7 +366791,7 @@ }, { "question": "カルピス", - "icon": "./assets/data/nsi/logos/calpis-bf11a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/calpis-bf11a2.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -366463,12 +366813,11 @@ }, { "question": "キリンビール", - "icon": "./assets/data/nsi/logos/kirinbrewery-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kirinbrewery-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", "drink:brewery=yes", - "official_name=麒麟麦酒", "vending=drinks", { "or": [ @@ -366479,7 +366828,8 @@ "brand:wikidata=Q13403399", "name=キリンビール", "name:en=Kirin Brewery", - "name:ja=キリンビール" + "name:ja=キリンビール", + "official_name=麒麟麦酒" ] } ] @@ -366487,7 +366837,7 @@ }, { "question": "キリンビバレッジ", - "icon": "./assets/data/nsi/logos/kirinbeverage-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kirinbeverage-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366510,7 +366860,7 @@ }, { "question": "コカ・コーラ", - "icon": "./assets/data/nsi/logos/cocacola-bf11a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cocacola-bf11a2.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -366532,7 +366882,7 @@ }, { "question": "サントリー", - "icon": "./assets/data/nsi/logos/suntory-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/suntory-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366593,7 +366943,7 @@ }, { "question": "ダイドードリンコ", - "icon": "./assets/data/nsi/logos/dydodrinco-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dydodrinco-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366657,7 +367007,7 @@ }, { "question": "ドール", - "icon": "./assets/data/nsi/logos/dole-bf11a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dole-bf11a2.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366678,7 +367028,7 @@ }, { "question": "ニチレイフーズ", - "icon": "./assets/data/nsi/logos/nichireifoods-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nichireifoods-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366720,7 +367070,7 @@ }, { "question": "ポッカサッポロ", - "icon": "./assets/data/nsi/logos/pokkasapporo-bf11a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pokkasapporo-bf11a2.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366762,7 +367112,7 @@ }, { "question": "ヤクルト", - "icon": "./assets/data/nsi/logos/yakult-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yakult-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366784,7 +367134,7 @@ }, { "question": "ロッテアイス", - "icon": "./assets/data/nsi/logos/lotteicecream-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotteicecream-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366805,7 +367155,7 @@ }, { "question": "伊藤園", - "icon": "./assets/data/nsi/logos/itoen-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itoen-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366828,7 +367178,7 @@ }, { "question": "可口可樂 Coca-Cola", - "icon": "./assets/data/nsi/logos/cocacola-c02c6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cocacola-c02c6e.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -366850,7 +367200,7 @@ }, { "question": "大塚食品", - "icon": "./assets/data/nsi/logos/otsukafoods-bf11a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/otsukafoods-bf11a2.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366871,7 +367221,7 @@ }, { "question": "明治", - "icon": "./assets/data/nsi/logos/meiji-bf11a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meiji-bf11a2.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -366892,7 +367242,7 @@ }, { "question": "維他 Vita", - "icon": "./assets/data/nsi/logos/vita-c02c6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vita-c02c6e.png", "osmTags": { "and": [ "amenity=vending_machine", @@ -366917,7 +367267,7 @@ }, { "question": "維他奶 Vitasoy", - "icon": "./assets/data/nsi/logos/vitasoy-c02c6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitasoy-c02c6e.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -366942,7 +367292,7 @@ }, { "question": "AniCura", - "icon": "./assets/data/nsi/logos/anicura-acf389.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anicura-acf389.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -366958,7 +367308,7 @@ }, { "question": "Animates Vetcare", - "icon": "./assets/data/nsi/logos/animatesvetcare-023837.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/animatesvetcare-023837.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -366974,7 +367324,7 @@ }, { "question": "Banfield Pet Hospital", - "icon": "./assets/data/nsi/logos/banfieldpethospital-146b24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banfieldpethospital-146b24.png", "osmTags": { "and": [ "amenity=veterinary", @@ -366990,7 +367340,7 @@ }, { "question": "Blue Cross Pet Clinic", - "icon": "./assets/data/nsi/logos/bluecrosspetclinic-45f750.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluecrosspetclinic-45f750.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -367006,7 +367356,7 @@ }, { "question": "BluePearl", - "icon": "./assets/data/nsi/logos/bluepearl-146b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluepearl-146b24.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -367022,7 +367372,7 @@ }, { "question": "Goddard Veterinary Group", - "icon": "./assets/data/nsi/logos/goddardveterinarygroup-1f839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goddardveterinarygroup-1f839e.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -367038,7 +367388,7 @@ }, { "question": "Greencross Vets", - "icon": "./assets/data/nsi/logos/greencrossvets-42dd12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greencrossvets-42dd12.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -367054,7 +367404,7 @@ }, { "question": "Medivet", - "icon": "./assets/data/nsi/logos/medivet-45f750.png", + "icon": "https://data.mapcomplete.org/nsi//logos/medivet-45f750.png", "osmTags": { "and": [ "amenity=veterinary", @@ -367084,7 +367434,7 @@ }, { "question": "VCA Animal Hospitals", - "icon": "./assets/data/nsi/logos/vcaanimalhospital-e02471.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vcaanimalhospital-e02471.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -367100,7 +367450,7 @@ }, { "question": "VetIQ Petcare", - "icon": "./assets/data/nsi/logos/vetiq-146b24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vetiq-146b24.png", "osmTags": { "and": [ "amenity=veterinary", @@ -367117,6 +367467,7 @@ }, { "question": "Vets4Pets", + "icon": "https://data.mapcomplete.org/nsi//logos/vets4pets-45f750.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -367132,7 +367483,7 @@ }, { "question": "WellHaven Pet Health", - "icon": "./assets/data/nsi/logos/wellhavenpethealth-146b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellhavenpethealth-146b24.jpg", "osmTags": { "and": [ "amenity=veterinary", @@ -367181,7 +367532,7 @@ }, { "question": "慈愛動物醫院", - "icon": "./assets/data/nsi/logos/nationalveterinaryhospital-093749.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalveterinaryhospital-093749.png", "osmTags": { "and": [ "amenity=veterinary", @@ -367201,7 +367552,7 @@ }, { "question": "BigBelly Solar Compactor", - "icon": "./assets/data/nsi/logos/bigbelly-4695b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigbelly-4695b1.jpg", "osmTags": { "and": [ "amenity=waste_basket", @@ -367231,7 +367582,7 @@ }, { "question": "Robidog", - "icon": "./assets/data/nsi/logos/robidog-253083.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/robidog-253083.svg", "osmTags": { "and": [ "amenity=waste_basket", @@ -367247,7 +367598,7 @@ }, { "question": "CAT Scale", - "icon": "./assets/data/nsi/logos/catscale-8a30f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/catscale-8a30f0.png", "osmTags": { "and": [ "amenity=weighbridge", @@ -367277,7 +367628,7 @@ }, { "question": "Associação de Escuteiros de Angola", - "icon": "./assets/data/nsi/logos/associacaodeescuteirosdeangola-110cb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/associacaodeescuteirosdeangola-110cb7.jpg", "osmTags": { "and": [ "club=scout", @@ -367292,7 +367643,7 @@ }, { "question": "Bund der Pfadfinderinnen und Pfadfinder", - "icon": "./assets/data/nsi/logos/bundderpfadfinderinnenundpfadfinder-9e77d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bundderpfadfinderinnenundpfadfinder-9e77d2.png", "osmTags": { "and": [ "club=scout", @@ -367307,7 +367658,7 @@ }, { "question": "Bund Muslimischer Pfadfinderinnen und Pfadfinder Deutschlands", - "icon": "./assets/data/nsi/logos/bundmuslimischerpfadfinderinnenundpfadfinderdeutschlands-9e77d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundmuslimischerpfadfinderinnenundpfadfinderdeutschlands-9e77d2.jpg", "osmTags": { "and": [ "club=scout", @@ -367322,7 +367673,7 @@ }, { "question": "Deutsche Pfadfinderschaft Sankt Georg", - "icon": "./assets/data/nsi/logos/deutschepfadfinderschaftsanktgeorg-9e77d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschepfadfinderschaftsanktgeorg-9e77d2.jpg", "osmTags": { "and": [ "club=scout", @@ -367337,7 +367688,7 @@ }, { "question": "Girl Scouts", - "icon": "./assets/data/nsi/logos/girlscouts-c1b996.png", + "icon": "https://data.mapcomplete.org/nsi//logos/girlscouts-c1b996.png", "osmTags": { "and": [ "club=scout", @@ -367353,7 +367704,7 @@ }, { "question": "Norges KFUK-KFUM-speidere", - "icon": "./assets/data/nsi/logos/norgeskfukkfumspeidere-964e52.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norgeskfukkfumspeidere-964e52.png", "osmTags": { "and": [ "club=scout", @@ -367368,7 +367719,7 @@ }, { "question": "Norges speiderforbund", - "icon": "./assets/data/nsi/logos/norgesspeiderforbund-964e52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norgesspeiderforbund-964e52.jpg", "osmTags": { "and": [ "club=scout", @@ -367383,7 +367734,7 @@ }, { "question": "Pfadfinderbund Weltenbummler", - "icon": "./assets/data/nsi/logos/pfadfinderbundweltenbummler-9e77d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pfadfinderbundweltenbummler-9e77d2.jpg", "osmTags": { "and": [ "club=scout", @@ -367398,7 +367749,7 @@ }, { "question": "Pfadfinderinnenschaft St. Georg", - "icon": "./assets/data/nsi/logos/pfadfinderinnenschaftstgeorg-9e77d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pfadfinderinnenschaftstgeorg-9e77d2.jpg", "osmTags": { "and": [ "club=scout", @@ -367413,7 +367764,7 @@ }, { "question": "Scoutisme Béninois", - "icon": "./assets/data/nsi/logos/scoutismebeninois-7b4b06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scoutismebeninois-7b4b06.jpg", "osmTags": { "and": [ "club=scout", @@ -367428,7 +367779,7 @@ }, { "question": "Scouts South Africa", - "icon": "./assets/data/nsi/logos/scoutssouthafrica-c3326c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scoutssouthafrica-c3326c.png", "osmTags": { "and": [ "club=scout", @@ -367443,7 +367794,7 @@ }, { "question": "The Botswana Scouts Association", - "icon": "./assets/data/nsi/logos/thebotswanascoutsassociation-96bced.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebotswanascoutsassociation-96bced.jpg", "osmTags": { "and": [ "club=scout", @@ -367458,7 +367809,7 @@ }, { "question": "The Scout Association", - "icon": "./assets/data/nsi/logos/thescoutassociation-d2f01b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thescoutassociation-d2f01b.png", "osmTags": { "and": [ "club=scout", @@ -367474,7 +367825,7 @@ }, { "question": "Verband Christlicher Pfadfinder*innen", - "icon": "./assets/data/nsi/logos/verbandchristlicherpfadfinderinnen-9e77d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandchristlicherpfadfinderinnen-9e77d2.jpg", "osmTags": { "and": [ "club=scout", @@ -367489,7 +367840,7 @@ }, { "question": "香港女童軍總會 Hong Kong Girl Guides Association", - "icon": "./assets/data/nsi/logos/hongkonggirlguidesassociation-d7bac8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkonggirlguidesassociation-d7bac8.jpg", "osmTags": { "and": [ "club=scout", @@ -367508,7 +367859,7 @@ }, { "question": "香港童軍總會 Scout Association of Hong Kong", - "icon": "./assets/data/nsi/logos/scoutassociationofhongkong-d7bac8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scoutassociationofhongkong-d7bac8.jpg", "osmTags": { "and": [ "club=scout", @@ -367527,7 +367878,7 @@ }, { "question": "プロタイムズ", - "icon": "./assets/data/nsi/logos/protimes-01a309.png", + "icon": "https://data.mapcomplete.org/nsi//logos/protimes-01a309.png", "osmTags": { "and": [ "craft=carpenter", @@ -367547,7 +367898,7 @@ }, { "question": "Merry Maids", - "icon": "./assets/data/nsi/logos/merrymaids-7432ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/merrymaids-7432ef.png", "osmTags": { "and": [ "craft=cleaning", @@ -367563,7 +367914,7 @@ }, { "question": "Molly Maid", - "icon": "./assets/data/nsi/logos/mollymaid-90fa14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mollymaid-90fa14.jpg", "osmTags": { "and": [ "craft=cleaning", @@ -367579,7 +367930,7 @@ }, { "question": "Onet", - "icon": "./assets/data/nsi/logos/onet-ecf61b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/onet-ecf61b.svg", "osmTags": { "and": [ "craft=cleaning", @@ -367595,7 +367946,7 @@ }, { "question": "ServiceMaster", - "icon": "./assets/data/nsi/logos/servicemaster-2dac42.png", + "icon": "https://data.mapcomplete.org/nsi//logos/servicemaster-2dac42.png", "osmTags": { "and": [ "craft=cleaning", @@ -367611,7 +367962,7 @@ }, { "question": "Servpro", - "icon": "./assets/data/nsi/logos/servpro-2dac42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servpro-2dac42.jpg", "osmTags": { "and": [ "craft=cleaning", @@ -367627,7 +367978,7 @@ }, { "question": "Shiva", - "icon": "./assets/data/nsi/logos/shiva-0ba6c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shiva-0ba6c8.jpg", "osmTags": { "and": [ "craft=cleaning", @@ -367643,7 +367994,7 @@ }, { "question": "Stanley Steemer", - "icon": "./assets/data/nsi/logos/stanleysteemer-f0dc25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stanleysteemer-f0dc25.png", "osmTags": { "and": [ "craft=cleaning", @@ -367659,7 +368010,7 @@ }, { "question": "Mr. Electric", - "icon": "./assets/data/nsi/logos/mrelectric-2adf7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrelectric-2adf7e.jpg", "osmTags": { "and": [ "craft=electrician", @@ -367675,7 +368026,7 @@ }, { "question": "Asurion Tech Repair & Solutions", - "icon": "./assets/data/nsi/logos/asuriontechrepairandsolutions-592655.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asuriontechrepairandsolutions-592655.png", "osmTags": { "and": [ "craft=electronics_repair", @@ -367692,7 +368043,7 @@ }, { "question": "Cell Phone Repair", - "icon": "./assets/data/nsi/logos/cellphonerepair-2e20d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cellphonerepair-2e20d7.png", "osmTags": { "and": [ "craft=electronics_repair", @@ -367710,7 +368061,7 @@ }, { "question": "Cellairis", - "icon": "./assets/data/nsi/logos/cellairis-592655.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cellairis-592655.jpg", "osmTags": { "and": [ "craft=electronics_repair", @@ -367727,7 +368078,7 @@ }, { "question": "Cellaxs", - "icon": "./assets/data/nsi/logos/cellaxs-592655.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cellaxs-592655.png", "osmTags": { "and": [ "craft=electronics_repair", @@ -367744,7 +368095,7 @@ }, { "question": "DNS", - "icon": "./assets/data/nsi/logos/dns-37346b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dns-37346b.jpg", "osmTags": { "and": [ "craft=electronics_repair", @@ -367760,7 +368111,7 @@ }, { "question": "DNS Сервисный центр", - "icon": "./assets/data/nsi/logos/338c9d-37346b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/338c9d-37346b.jpg", "osmTags": { "and": [ "craft=electronics_repair", @@ -367776,7 +368127,7 @@ }, { "question": "Geek Squad", - "icon": "./assets/data/nsi/logos/geeksquad-592655.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/geeksquad-592655.svg", "osmTags": { "and": [ "craft=electronics_repair", @@ -367793,7 +368144,7 @@ }, { "question": "iSmash", - "icon": "./assets/data/nsi/logos/ismash-59b122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ismash-59b122.jpg", "osmTags": { "and": [ "craft=electronics_repair", @@ -367810,7 +368161,7 @@ }, { "question": "Mobile Klinik", - "icon": "./assets/data/nsi/logos/mobileklinik-b7d48e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobileklinik-b7d48e.jpg", "osmTags": { "and": [ "craft=electronics_repair", @@ -367827,7 +368178,7 @@ }, { "question": "PCexpres", - "icon": "./assets/data/nsi/logos/pcexpres-96c0e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pcexpres-96c0e5.jpg", "osmTags": { "and": [ "craft=electronics_repair", @@ -367861,7 +368212,7 @@ }, { "question": "uBreakiFix", - "icon": "./assets/data/nsi/logos/ubreakifix-592655.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ubreakifix-592655.jpg", "osmTags": { "and": [ "craft=electronics_repair", @@ -367892,7 +368243,7 @@ }, { "question": "Glass Doctor", - "icon": "./assets/data/nsi/logos/glassdoctor-eb6cea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glassdoctor-eb6cea.jpg", "osmTags": { "and": [ "craft=glaziery", @@ -367908,7 +368259,7 @@ }, { "question": "Portland Glass", - "icon": "./assets/data/nsi/logos/portlandglass-57b99e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandglass-57b99e.jpg", "osmTags": { "and": [ "craft=glaziery", @@ -367924,7 +368275,7 @@ }, { "question": "Bademiljø", - "icon": "./assets/data/nsi/logos/bademiljo-8a50ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bademiljo-8a50ba.jpg", "osmTags": { "and": [ "craft=plumber", @@ -367954,17 +368305,17 @@ }, { "question": "Mr. Rooter", - "icon": "./assets/data/nsi/logos/mrrooter-6831b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrrooter-6831b5.jpg", "osmTags": { "and": [ "craft=plumber", - "official_name=Mr. Rooter Plumbing", { "or": [ "alt_name=Mister Rooter", "brand=Mr. Rooter", "brand:wikidata=Q6929145", - "name=Mr. Rooter" + "name=Mr. Rooter", + "official_name=Mr. Rooter Plumbing" ] } ] @@ -367986,7 +368337,7 @@ }, { "question": "Fastsigns", - "icon": "./assets/data/nsi/logos/fastsigns-4c87b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastsigns-4c87b7.jpg", "osmTags": { "and": [ "craft=signmaker", @@ -368002,7 +368353,7 @@ }, { "question": "Signarama", - "icon": "./assets/data/nsi/logos/signarama-4d07a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/signarama-4d07a5.jpg", "osmTags": { "and": [ "craft=signmaker", @@ -368018,7 +368369,7 @@ }, { "question": "SpeedPro", - "icon": "./assets/data/nsi/logos/speedpro-05d3ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedpro-05d3ca.jpg", "osmTags": { "and": [ "craft=signmaker", @@ -368034,7 +368385,7 @@ }, { "question": "K par K", - "icon": "./assets/data/nsi/logos/kpark-64a527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kpark-64a527.png", "osmTags": { "and": [ "craft=window_construction", @@ -368050,7 +368401,7 @@ }, { "question": "Komilfo", - "icon": "./assets/data/nsi/logos/komilfo-64a527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/komilfo-64a527.png", "osmTags": { "and": [ "craft=window_construction", @@ -368066,7 +368417,7 @@ }, { "question": "Tryba", - "icon": "./assets/data/nsi/logos/tryba-85969b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tryba-85969b.jpg", "osmTags": { "and": [ "craft=window_construction", @@ -368082,7 +368433,7 @@ }, { "question": "WDS", - "icon": "./assets/data/nsi/logos/wds-8a03ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wds-8a03ba.jpg", "osmTags": { "and": [ "craft=window_construction", @@ -368112,7 +368463,7 @@ }, { "question": "Arbeiter-Samariter-Bund (Deutschland)", - "icon": "./assets/data/nsi/logos/arbeitersamariterbund-e7575e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-e7575e.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368128,7 +368479,7 @@ }, { "question": "Arbeiter-Samariter-Bund (Österreichs)", - "icon": "./assets/data/nsi/logos/arbeitersamariterbund-0c07b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-0c07b2.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368144,7 +368495,7 @@ }, { "question": "Bayerisches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/bayerischesroteskreuz-e7575e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-e7575e.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368161,7 +368512,7 @@ }, { "question": "Croce Rossa Italiana", - "icon": "./assets/data/nsi/logos/crocerossaitaliana-6310f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crocerossaitaliana-6310f2.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368177,7 +368528,7 @@ }, { "question": "Cruz Roja Argentina", - "icon": "./assets/data/nsi/logos/cruzrojaargentina-74039c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojaargentina-74039c.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368193,7 +368544,7 @@ }, { "question": "Cruz Roja Boliviana", - "icon": "./assets/data/nsi/logos/cruzrojaboliviana-97b2ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojaboliviana-97b2ba.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368209,7 +368560,7 @@ }, { "question": "Cruz Roja Chilena", - "icon": "./assets/data/nsi/logos/cruzrojachilena-3bf263.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojachilena-3bf263.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368225,7 +368576,7 @@ }, { "question": "Cruz Roja Colombiana", - "icon": "./assets/data/nsi/logos/cruzrojacolombiana-5927df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojacolombiana-5927df.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368241,7 +368592,7 @@ }, { "question": "Cruz Roja Costarricense", - "icon": "./assets/data/nsi/logos/cruzrojacostarricense-644419.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojacostarricense-644419.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368257,7 +368608,7 @@ }, { "question": "Cruz Roja Cubana", - "icon": "./assets/data/nsi/logos/cruzrojacubana-8b68ec.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojacubana-8b68ec.svg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368273,7 +368624,7 @@ }, { "question": "Cruz Roja Dominicana", - "icon": "./assets/data/nsi/logos/cruzrojadominicana-0c9972.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojadominicana-0c9972.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368289,7 +368640,7 @@ }, { "question": "Cruz Roja Española", - "icon": "./assets/data/nsi/logos/cruzrojaespanola-0b685a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojaespanola-0b685a.svg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368305,7 +368656,7 @@ }, { "question": "Cruz Roja Guatemalteca", - "icon": "./assets/data/nsi/logos/cruzrojaguatemalteca-9e6bb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojaguatemalteca-9e6bb6.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368321,7 +368672,7 @@ }, { "question": "Cruz Roja Hondureña", - "icon": "./assets/data/nsi/logos/cruzrojahondurena-e2b7fc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojahondurena-e2b7fc.svg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368337,7 +368688,7 @@ }, { "question": "Cruz Roja Mexicana", - "icon": "./assets/data/nsi/logos/cruzrojamexicana-2ff2b0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojamexicana-2ff2b0.svg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368353,7 +368704,7 @@ }, { "question": "Cruz Roja Nicaragüense", - "icon": "./assets/data/nsi/logos/cruzrojanicaraguense-8c4110.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojanicaraguense-8c4110.svg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368369,7 +368720,7 @@ }, { "question": "Cruz Roja Panameña", - "icon": "./assets/data/nsi/logos/cruzrojapanamena-8f239b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojapanamena-8f239b.svg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368385,7 +368736,7 @@ }, { "question": "Cruz Roja Paraguaya", - "icon": "./assets/data/nsi/logos/cruzrojaparaguaya-d62a2b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojaparaguaya-d62a2b.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368401,7 +368752,7 @@ }, { "question": "Cruz Roja Peruana", - "icon": "./assets/data/nsi/logos/cruzrojaperuana-02fe85.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojaperuana-02fe85.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368417,7 +368768,7 @@ }, { "question": "Cruz Roja Salvadoreña", - "icon": "./assets/data/nsi/logos/cruzrojasalvadorena-38e9d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojasalvadorena-38e9d5.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368433,7 +368784,7 @@ }, { "question": "Cruz Roja Venezolana", - "icon": "./assets/data/nsi/logos/cruzrojavenezolana-52281f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzrojavenezolana-52281f.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368449,7 +368800,7 @@ }, { "question": "Deutsche Lebens-Rettungs-Gesellschaft", - "icon": "./assets/data/nsi/logos/deutschelebensrettungsgesellschaft-e7575e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschelebensrettungsgesellschaft-e7575e.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368466,7 +368817,7 @@ }, { "question": "Deutsches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/deutschesroteskreuz-e7575e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-e7575e.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368482,7 +368833,7 @@ }, { "question": "Johanniter-Unfall-Hilfe", - "icon": "./assets/data/nsi/logos/johanniterunfallhilfe-e7575e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfe-e7575e.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368499,7 +368850,7 @@ }, { "question": "Malteser Hilfsdienst", - "icon": "./assets/data/nsi/logos/malteserhilfsdienst-e7575e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/malteserhilfsdienst-e7575e.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368516,7 +368867,7 @@ }, { "question": "Österreichisches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/osterreichischesroteskreuz-0c07b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuz-0c07b2.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -368533,7 +368884,7 @@ }, { "question": "HealthSource America's Chiropractor", - "icon": "./assets/data/nsi/logos/healthsourceamericaschiropractor-59bca8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/healthsourceamericaschiropractor-59bca8.jpg", "osmTags": { "and": [ "healthcare=alternative", @@ -368550,7 +368901,7 @@ }, { "question": "The Joint Chiropractic", - "icon": "./assets/data/nsi/logos/thejointchiropractic-59bca8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thejointchiropractic-59bca8.jpg", "osmTags": { "and": [ "healthcare=alternative", @@ -368567,7 +368918,7 @@ }, { "question": "Imperial Hearing", - "icon": "./assets/data/nsi/logos/imperialhearing-b5f786.png", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialhearing-b5f786.png", "osmTags": { "and": [ "healthcare=audiologist", @@ -368583,18 +368934,18 @@ }, { "question": "American Red Cross", - "icon": "./assets/data/nsi/logos/americanredcross-cf4bd7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanredcross-cf4bd7.png", "osmTags": { "and": [ "donation:compensation=no", "healthcare=blood_donation", - "official_name=The American National Red Cross", "short_name=Red Cross", { "or": [ "brand=American Red Cross", "brand:wikidata=Q470110", - "name=American Red Cross" + "name=American Red Cross", + "official_name=The American National Red Cross" ] } ] @@ -368602,7 +368953,7 @@ }, { "question": "Australian Red Cross Blood Service", - "icon": "./assets/data/nsi/logos/australianredcrossbloodservice-ed38a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/australianredcrossbloodservice-ed38a1.png", "osmTags": { "and": [ "donation:compensation=no", @@ -368620,7 +368971,7 @@ }, { "question": "Canadian Blood Services", - "icon": "./assets/data/nsi/logos/canadianbloodservices-cbadc5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canadianbloodservices-cbadc5.png", "osmTags": { "and": [ "healthcare=blood_donation", @@ -368635,7 +368986,7 @@ }, { "question": "CSL Plasma", - "icon": "./assets/data/nsi/logos/cslplasma-cf4bd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cslplasma-cf4bd7.jpg", "osmTags": { "and": [ "blood:plasma=yes", @@ -368653,17 +369004,17 @@ }, { "question": "EFS", - "icon": "./assets/data/nsi/logos/efs-81b8df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/efs-81b8df.png", "osmTags": { "and": [ "donation:compensation=no", "healthcare=blood_donation", - "official_name=Établissement français du sang", { "or": [ "brand=EFS", "brand:wikidata=Q3591543", - "name=EFS" + "name=EFS", + "official_name=Établissement français du sang" ] } ] @@ -368671,7 +369022,7 @@ }, { "question": "San Diego Blood Bank", - "icon": "./assets/data/nsi/logos/sandiegobloodbank-cf4bd7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegobloodbank-cf4bd7.png", "osmTags": { "and": [ "healthcare=blood_donation", @@ -368688,7 +369039,7 @@ }, { "question": "Thai Red Cross Society", - "icon": "./assets/data/nsi/logos/thairedcrosssociety-1f63d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thairedcrosssociety-1f63d6.jpg", "osmTags": { "and": [ "donation:compensation=no", @@ -368706,17 +369057,17 @@ }, { "question": "Türk Kızılayı", - "icon": "./assets/data/nsi/logos/turkkizilayi-52e991.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkkizilayi-52e991.svg", "osmTags": { "and": [ "healthcare=blood_donation", - "official_name=Türkiye Kızılay Derneği", "short_name=Kızılay", { "or": [ "brand=Türk Kızılayı", "brand:wikidata=Q1059602", - "name=Türk Kızılayı" + "name=Türk Kızılayı", + "official_name=Türkiye Kızılay Derneği" ] } ] @@ -368724,7 +369075,7 @@ }, { "question": "Vitalant", - "icon": "./assets/data/nsi/logos/vitalant-cf4bd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitalant-cf4bd7.jpg", "osmTags": { "and": [ "healthcare=blood_donation", @@ -368740,7 +369091,7 @@ }, { "question": "香港紅十字會 Hong Kong Red Cross", - "icon": "./assets/data/nsi/logos/hongkongredcross-d0af39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongredcross-d0af39.jpg", "osmTags": { "and": [ "healthcare=blood_donation", @@ -368759,7 +369110,7 @@ }, { "question": "Jenny Craig", - "icon": "./assets/data/nsi/logos/jennycraig-364e20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jennycraig-364e20.jpg", "osmTags": { "and": [ "healthcare=counselling", @@ -368777,7 +369128,7 @@ }, { "question": "WW Studio", - "icon": "./assets/data/nsi/logos/wwstudio-da5d0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wwstudio-da5d0f.png", "osmTags": { "and": [ "healthcare=counselling", @@ -368796,7 +369147,7 @@ }, { "question": "a+ Medicina Diagnóstica", - "icon": "./assets/data/nsi/logos/amedicinadiagnostica-4627ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amedicinadiagnostica-4627ab.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -368812,7 +369163,7 @@ }, { "question": "Beo-lab", - "icon": "./assets/data/nsi/logos/beolab-ed8186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beolab-ed8186.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -368828,7 +369179,7 @@ }, { "question": "Bio-Val", - "icon": "./assets/data/nsi/logos/bioval-d3c03e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bioval-d3c03e.png", "osmTags": { "and": [ "healthcare=laboratory", @@ -368892,7 +369243,7 @@ }, { "question": "Biogroup", - "icon": "./assets/data/nsi/logos/biogroup-d77f29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biogroup-d77f29.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -368956,7 +369307,7 @@ }, { "question": "BioneXt", - "icon": "./assets/data/nsi/logos/bionext-067987.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bionext-067987.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -368972,7 +369323,7 @@ }, { "question": "Biopath (Hauts de France)", - "icon": "./assets/data/nsi/logos/biopath-dce716.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biopath-dce716.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369037,7 +369388,7 @@ }, { "question": "Bodimed", - "icon": "./assets/data/nsi/logos/bodimed-59f78c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodimed-59f78c.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369071,7 +369422,7 @@ }, { "question": "Cerballiance", - "icon": "./assets/data/nsi/logos/cerballiance-c89743.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cerballiance-c89743.png", "osmTags": { "and": [ "healthcare=laboratory", @@ -369091,12 +369442,12 @@ "osmTags": { "and": [ "healthcare=laboratory", - "official_name=Laboratorio Médico del Chopo", { "or": [ "brand=Chopo", "brand:wikidata=Q132213839", - "name=Chopo" + "name=Chopo", + "official_name=Laboratorio Médico del Chopo" ] } ] @@ -369104,7 +369455,7 @@ }, { "question": "Cibalab", - "icon": "./assets/data/nsi/logos/cibalab-59f78c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cibalab-59f78c.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369165,7 +369516,7 @@ }, { "question": "Confiance Medicina Diagnóstica", - "icon": "./assets/data/nsi/logos/confiancemedicinadiagnostica-4627ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/confiancemedicinadiagnostica-4627ab.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369181,7 +369532,7 @@ }, { "question": "Diagnostyka (laboratorium)", - "icon": "./assets/data/nsi/logos/diagnostyka-a4d57c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diagnostyka-a4d57c.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369197,7 +369548,7 @@ }, { "question": "Dr Lal Path Labs", - "icon": "./assets/data/nsi/logos/drlalpathlabs-e99f45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drlalpathlabs-e99f45.png", "osmTags": { "and": [ "healthcare=laboratory", @@ -369212,7 +369563,7 @@ }, { "question": "Dynacare", - "icon": "./assets/data/nsi/logos/dynacare-81e83d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dynacare-81e83d.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369245,7 +369596,7 @@ }, { "question": "Eurofins Biolab", - "icon": "./assets/data/nsi/logos/eurofinsbiolab-d77f29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurofinsbiolab-d77f29.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369278,7 +369629,7 @@ }, { "question": "IMD Berlin", - "icon": "./assets/data/nsi/logos/imdberlin-e049ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imdberlin-e049ab.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369322,7 +369673,7 @@ }, { "question": "Ketterthill", - "icon": "./assets/data/nsi/logos/ketterthill-067987.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ketterthill-067987.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369338,7 +369689,7 @@ }, { "question": "LabCorp", - "icon": "./assets/data/nsi/logos/labcorp-9476e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/labcorp-9476e1.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369368,7 +369719,7 @@ }, { "question": "Laboratoires Réunis", - "icon": "./assets/data/nsi/logos/laboratoiresreunis-067987.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laboratoiresreunis-067987.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369430,7 +369781,7 @@ }, { "question": "LifeLabs", - "icon": "./assets/data/nsi/logos/lifelabs-81e83d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifelabs-81e83d.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369479,7 +369830,7 @@ }, { "question": "Picken Doheem", - "icon": "./assets/data/nsi/logos/pickendoheem-067987.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pickendoheem-067987.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369495,7 +369846,7 @@ }, { "question": "Quest Diagnostics", - "icon": "./assets/data/nsi/logos/questdiagnostics-7c8b3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/questdiagnostics-7c8b3a.png", "osmTags": { "and": [ "healthcare=laboratory", @@ -369528,7 +369879,7 @@ }, { "question": "Sabin", - "icon": "./assets/data/nsi/logos/sabin-4627ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sabin-4627ab.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369544,7 +369895,7 @@ }, { "question": "Salud Digna", - "icon": "./assets/data/nsi/logos/saluddigna-fe7e70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saluddigna-fe7e70.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369560,7 +369911,7 @@ }, { "question": "Synevo (Moldova)", - "icon": "./assets/data/nsi/logos/synevo-e59e51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-e59e51.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369576,7 +369927,7 @@ }, { "question": "Synevo (Polska)", - "icon": "./assets/data/nsi/logos/synevo-a4d57c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-a4d57c.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369592,7 +369943,7 @@ }, { "question": "Synevo (România)", - "icon": "./assets/data/nsi/logos/synevo-80efe5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-80efe5.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369608,7 +369959,7 @@ }, { "question": "Synevo (Türkiye)", - "icon": "./assets/data/nsi/logos/synevo-c2c658.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-c2c658.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369624,7 +369975,7 @@ }, { "question": "Synlab", - "icon": "./assets/data/nsi/logos/synlab-deddc9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/synlab-deddc9.svg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369641,7 +369992,7 @@ }, { "question": "Unibio", - "icon": "./assets/data/nsi/logos/unibio-d77f29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unibio-d77f29.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369724,7 +370075,7 @@ }, { "question": "Инвитро", - "icon": "./assets/data/nsi/logos/invitro-7c30a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/invitro-7c30a4.png", "osmTags": { "and": [ "healthcare=laboratory", @@ -369784,7 +370135,7 @@ }, { "question": "Рамус", - "icon": "./assets/data/nsi/logos/ramus-59f78c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ramus-59f78c.png", "osmTags": { "and": [ "healthcare=laboratory", @@ -369802,7 +370153,7 @@ }, { "question": "Синево (България)", - "icon": "./assets/data/nsi/logos/synevo-59f78c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-59f78c.png", "osmTags": { "and": [ "healthcare=laboratory", @@ -369834,7 +370185,7 @@ }, { "question": "Хеликс", - "icon": "./assets/data/nsi/logos/helix-8e8a61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/helix-8e8a61.jpg", "osmTags": { "and": [ "healthcare=laboratory", @@ -369852,7 +370203,7 @@ }, { "question": "Athletico Physical Therapy", - "icon": "./assets/data/nsi/logos/athleticophysicaltherapy-61735f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/athleticophysicaltherapy-61735f.jpg", "osmTags": { "and": [ "healthcare=physiotherapist", @@ -369868,7 +370219,7 @@ }, { "question": "ATI Physical Therapy", - "icon": "./assets/data/nsi/logos/atiphysicaltherapy-61735f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atiphysicaltherapy-61735f.jpg", "osmTags": { "and": [ "healthcare=physiotherapist", @@ -369899,7 +370250,7 @@ }, { "question": "Lifemark Physiotherapy", - "icon": "./assets/data/nsi/logos/lifemarkphysiotherapy-a46221.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifemarkphysiotherapy-a46221.jpg", "osmTags": { "and": [ "healthcare=physiotherapist", @@ -369915,7 +370266,7 @@ }, { "question": "Therapydia", - "icon": "./assets/data/nsi/logos/therapydia-61735f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/therapydia-61735f.jpg", "osmTags": { "and": [ "healthcare=physiotherapist", @@ -369931,7 +370282,7 @@ }, { "question": "Australian Clinical Labs", - "icon": "./assets/data/nsi/logos/australianclinicallabs-b42694.png", + "icon": "https://data.mapcomplete.org/nsi//logos/australianclinicallabs-b42694.png", "osmTags": { "and": [ "healthcare=sample_collection", @@ -369962,7 +370313,7 @@ }, { "question": "Bodimed", - "icon": "./assets/data/nsi/logos/bodimed-271471.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodimed-271471.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -369980,7 +370331,7 @@ }, { "question": "Cibalab", - "icon": "./assets/data/nsi/logos/cibalab-271471.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cibalab-271471.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -369998,7 +370349,7 @@ }, { "question": "Clinica Sante", - "icon": "./assets/data/nsi/logos/clinicasante-9f4d9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clinicasante-9f4d9c.png", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370014,7 +370365,7 @@ }, { "question": "CSD", - "icon": "./assets/data/nsi/logos/csd-c54d89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csd-c54d89.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370030,7 +370381,7 @@ }, { "question": "Diagnostyka", - "icon": "./assets/data/nsi/logos/diagnostyka-42d0f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diagnostyka-42d0f5.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370046,7 +370397,7 @@ }, { "question": "Douglass Hanly Moir", - "icon": "./assets/data/nsi/logos/douglasshanlymoir-b42694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/douglasshanlymoir-b42694.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370063,7 +370414,7 @@ }, { "question": "Dr Lal Path Labs", - "icon": "./assets/data/nsi/logos/drlalpathlabs-f3fd3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drlalpathlabs-f3fd3c.png", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370078,7 +370429,7 @@ }, { "question": "Invivo (Україна)", - "icon": "./assets/data/nsi/logos/invivo-c54d89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invivo-c54d89.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370109,7 +370460,7 @@ }, { "question": "LifeLabs", - "icon": "./assets/data/nsi/logos/lifelabs-dfeab4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifelabs-dfeab4.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370126,7 +370477,7 @@ }, { "question": "Nikolab", - "icon": "./assets/data/nsi/logos/nikolab-c54d89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nikolab-c54d89.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370142,7 +370493,7 @@ }, { "question": "Synevo", - "icon": "./assets/data/nsi/logos/synevo-42d0f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-42d0f5.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370158,7 +370509,7 @@ }, { "question": "Діла", - "icon": "./assets/data/nsi/logos/dila-c54d89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dila-c54d89.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370177,7 +370528,7 @@ }, { "question": "Ескулаб", - "icon": "./assets/data/nsi/logos/bd71fa-c54d89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bd71fa-c54d89.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370212,7 +370563,7 @@ }, { "question": "МедЛаб", - "icon": "./assets/data/nsi/logos/medlab-c54d89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/medlab-c54d89.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370231,7 +370582,7 @@ }, { "question": "Рамус", - "icon": "./assets/data/nsi/logos/ramus-271471.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ramus-271471.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370249,7 +370600,7 @@ }, { "question": "Синево (България)", - "icon": "./assets/data/nsi/logos/synevo-271471.png", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-271471.png", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370267,7 +370618,7 @@ }, { "question": "Сінево", - "icon": "./assets/data/nsi/logos/synevo-c54d89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-c54d89.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370288,7 +370639,7 @@ }, { "question": "სინევო", - "icon": "./assets/data/nsi/logos/synevo-5675a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synevo-5675a4.jpg", "osmTags": { "and": [ "healthcare=sample_collection", @@ -370310,7 +370661,7 @@ }, { "question": "Buc-ee's", - "icon": "./assets/data/nsi/logos/bucees-35c0ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bucees-35c0ca.png", "osmTags": { "and": [ "highway=services", @@ -370326,7 +370677,7 @@ }, { "question": "Flying J Travel Center", - "icon": "./assets/data/nsi/logos/flyingjtravelcenter-13bea2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/flyingjtravelcenter-13bea2.png", "osmTags": { "and": [ "highway=services", @@ -370342,7 +370693,7 @@ }, { "question": "Love's Travel Stop", - "icon": "./assets/data/nsi/logos/lovestravelstop-35c0ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lovestravelstop-35c0ca.png", "osmTags": { "and": [ "highway=services", @@ -370372,7 +370723,7 @@ }, { "question": "Onvo Travel Plaza", - "icon": "./assets/data/nsi/logos/onvotravelplaza-35c0ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/onvotravelplaza-35c0ca.png", "osmTags": { "and": [ "highway=services", @@ -370388,7 +370739,7 @@ }, { "question": "Petro Stopping Centers", - "icon": "./assets/data/nsi/logos/petrostoppingcenters-35c0ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrostoppingcenters-35c0ca.jpg", "osmTags": { "and": [ "highway=services", @@ -370404,7 +370755,7 @@ }, { "question": "Pilot Travel Center", - "icon": "./assets/data/nsi/logos/pilottravelcenter-35c0ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pilottravelcenter-35c0ca.png", "osmTags": { "and": [ "highway=services", @@ -370420,7 +370771,7 @@ }, { "question": "Road Ranger", - "icon": "./assets/data/nsi/logos/roadranger-35c0ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/roadranger-35c0ca.png", "osmTags": { "and": [ "highway=services", @@ -370436,7 +370787,7 @@ }, { "question": "Roady's Truck Stops", - "icon": "./assets/data/nsi/logos/roadystruckstops-35c0ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/roadystruckstops-35c0ca.png", "osmTags": { "and": [ "highway=services", @@ -370452,7 +370803,7 @@ }, { "question": "Serways", - "icon": "./assets/data/nsi/logos/serways-86c4b3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/serways-86c4b3.svg", "osmTags": { "and": [ "highway=services", @@ -370468,16 +370819,16 @@ }, { "question": "TA", - "icon": "./assets/data/nsi/logos/ta-35c0ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ta-35c0ca.jpg", "osmTags": { "and": [ "highway=services", - "official_name=TravelCenters of America", { "or": [ "brand=TA", "brand:wikidata=Q7835892", - "name=TA" + "name=TA", + "official_name=TravelCenters of America" ] } ] @@ -370485,7 +370836,7 @@ }, { "question": "Tank & Rast", - "icon": "./assets/data/nsi/logos/tankandrast-86c4b3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tankandrast-86c4b3.png", "osmTags": { "and": [ "highway=services", @@ -370501,7 +370852,7 @@ }, { "question": "Town Pump", - "icon": "./assets/data/nsi/logos/townpump-35c0ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townpump-35c0ca.png", "osmTags": { "and": [ "highway=services", @@ -370517,7 +370868,7 @@ }, { "question": "Avalon", - "icon": "./assets/data/nsi/logos/avalon-4e5c5e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avalon-4e5c5e.png", "osmTags": { "and": [ "landuse=residential", @@ -370534,7 +370885,7 @@ }, { "question": "Hometown America", - "icon": "./assets/data/nsi/logos/hometownamerica-4e5c5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hometownamerica-4e5c5e.jpg", "osmTags": { "and": [ "landuse=residential", @@ -370617,7 +370968,7 @@ }, { "question": "P ARK", - "icon": "./assets/data/nsi/logos/park-9f6610.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/park-9f6610.jpg", "osmTags": { "and": [ "gambling=pachinko", @@ -370638,7 +370989,7 @@ }, { "question": "ガイア", - "icon": "./assets/data/nsi/logos/gaia-9f6610.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gaia-9f6610.jpg", "osmTags": { "and": [ "gambling=pachinko", @@ -370659,7 +371010,7 @@ }, { "question": "ダイナム", - "icon": "./assets/data/nsi/logos/dynam-9f6610.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dynam-9f6610.jpg", "osmTags": { "and": [ "gambling=pachinko", @@ -370680,7 +371031,7 @@ }, { "question": "マルハン", - "icon": "./assets/data/nsi/logos/maruhan-9f6610.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maruhan-9f6610.png", "osmTags": { "and": [ "gambling=pachinko", @@ -370701,7 +371052,7 @@ }, { "question": "Four Quarters", - "icon": "./assets/data/nsi/logos/fourquarters-0f0c9e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fourquarters-0f0c9e.png", "osmTags": { "and": [ "bar=yes", @@ -370720,7 +371071,7 @@ }, { "question": "Laser Game Evolution", - "icon": "./assets/data/nsi/logos/lasergameevolution-60da35.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lasergameevolution-60da35.png", "osmTags": { "and": [ "bar=yes", @@ -370757,7 +371108,7 @@ }, { "question": "Taito Station", - "icon": "./assets/data/nsi/logos/taitostation-10c094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taitostation-10c094.jpg", "osmTags": { "and": [ "leisure=amusement_arcade", @@ -370777,7 +371128,7 @@ }, { "question": "Timezone", - "icon": "./assets/data/nsi/logos/timezone-bbc11e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/timezone-bbc11e.png", "osmTags": { "and": [ "leisure=amusement_arcade", @@ -370793,7 +371144,7 @@ }, { "question": "Tom's World", - "icon": "./assets/data/nsi/logos/tomsworld-e5ed7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomsworld-e5ed7a.jpg", "osmTags": { "and": [ "leisure=amusement_arcade", @@ -370861,7 +371212,7 @@ }, { "question": "クラブセガ", - "icon": "./assets/data/nsi/logos/clubsega-c3bbfb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubsega-c3bbfb.svg", "osmTags": { "and": [ "leisure=amusement_arcade", @@ -370884,7 +371235,7 @@ }, { "question": "タイトーステーション", - "icon": "./assets/data/nsi/logos/taitostation-c3bbfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taitostation-c3bbfb.jpg", "osmTags": { "and": [ "leisure=amusement_arcade", @@ -370923,7 +371274,7 @@ }, { "question": "湯姆熊歡樂世界", - "icon": "./assets/data/nsi/logos/tomsworld-043bd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomsworld-043bd9.jpg", "osmTags": { "and": [ "leisure=amusement_arcade", @@ -370943,7 +371294,7 @@ }, { "question": "Bowlero", - "icon": "./assets/data/nsi/logos/bowlero-deeedb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bowlero-deeedb.jpg", "osmTags": { "and": [ "leisure=bowling_alley", @@ -370975,7 +371326,7 @@ }, { "question": "Round1", - "icon": "./assets/data/nsi/logos/round1-deeedb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/round1-deeedb.png", "osmTags": { "and": [ "sport=10pin", @@ -370992,7 +371343,7 @@ }, { "question": "Strike Bowling Bar", - "icon": "./assets/data/nsi/logos/strikebowlingbar-16aa6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/strikebowlingbar-16aa6f.jpg", "osmTags": { "and": [ "leisure=bowling_alley", @@ -371008,7 +371359,7 @@ }, { "question": "tenpin", - "icon": "./assets/data/nsi/logos/tenpin-d57e08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tenpin-d57e08.jpg", "osmTags": { "and": [ "sport=10pin", @@ -371025,7 +371376,7 @@ }, { "question": "Zone Bowling", - "icon": "./assets/data/nsi/logos/zonebowling-16aa6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zonebowling-16aa6f.jpg", "osmTags": { "and": [ "leisure=bowling_alley", @@ -371041,7 +371392,7 @@ }, { "question": "ラウンドワン", - "icon": "./assets/data/nsi/logos/round1-08832c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/round1-08832c.png", "osmTags": { "and": [ "sport=10pin", @@ -371062,7 +371413,7 @@ }, { "question": "Arthur Murray Dance Center", - "icon": "./assets/data/nsi/logos/arthurmurraydancecenter-3e2f00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arthurmurraydancecenter-3e2f00.jpg", "osmTags": { "and": [ "dance:teaching=yes", @@ -371079,7 +371430,7 @@ }, { "question": "Fred Astaire Dance Studios", - "icon": "./assets/data/nsi/logos/fredastairedancestudios-3e2f00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fredastairedancestudios-3e2f00.jpg", "osmTags": { "and": [ "dance:teaching=yes", @@ -371096,7 +371447,7 @@ }, { "question": "Kamp K9", - "icon": "./assets/data/nsi/logos/kampk9-92ff81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kampk9-92ff81.jpg", "osmTags": { "and": [ "leisure=dog_park", @@ -371112,7 +371463,7 @@ }, { "question": "Escapology", - "icon": "./assets/data/nsi/logos/escapology-838ff3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/escapology-838ff3.jpg", "osmTags": { "and": [ "leisure=escape_game", @@ -371128,7 +371479,7 @@ }, { "question": "[solidcore]", - "icon": "./assets/data/nsi/logos/solidcore-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/solidcore-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371144,7 +371495,7 @@ }, { "question": "24 Hour Fitness", - "icon": "./assets/data/nsi/logos/24hourfitness-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/24hourfitness-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371160,7 +371511,7 @@ }, { "question": "24 Hour Fitness Sport", - "icon": "./assets/data/nsi/logos/24hourfitnesssport-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/24hourfitnesssport-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371176,7 +371527,7 @@ }, { "question": "24 Hour Fitness Super Sport", - "icon": "./assets/data/nsi/logos/24hourfitnesssupersport-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/24hourfitnesssupersport-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371192,7 +371543,7 @@ }, { "question": "24/7 Fitness", - "icon": "./assets/data/nsi/logos/247fitness-68bf34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/247fitness-68bf34.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371210,7 +371561,7 @@ }, { "question": "9Round", - "icon": "./assets/data/nsi/logos/9round-c8777b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/9round-c8777b.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371227,7 +371578,7 @@ }, { "question": "Activ Fitness", - "icon": "./assets/data/nsi/logos/activfitness-2831bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/activfitness-2831bb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371243,7 +371594,7 @@ }, { "question": "Alex Fitness", - "icon": "./assets/data/nsi/logos/alexfitness-2b2465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alexfitness-2b2465.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371259,7 +371610,7 @@ }, { "question": "Anytime Fitness", - "icon": "./assets/data/nsi/logos/anytimefitness-f3f46d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anytimefitness-f3f46d.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371276,7 +371627,7 @@ }, { "question": "Bannatyne Health Club", - "icon": "./assets/data/nsi/logos/bannatynehealthclub-2770cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bannatynehealthclub-2770cb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371292,7 +371643,7 @@ }, { "question": "Barre3", - "icon": "./assets/data/nsi/logos/barre3-571e6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barre3-571e6b.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371309,7 +371660,7 @@ }, { "question": "Barry's", - "icon": "./assets/data/nsi/logos/barrys-1b6d66.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barrys-1b6d66.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371325,7 +371676,7 @@ }, { "question": "Basic-Fit", - "icon": "./assets/data/nsi/logos/basicfit-4741dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/basicfit-4741dc.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371341,7 +371692,7 @@ }, { "question": "Beat81", - "icon": "./assets/data/nsi/logos/beat81-6c61eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beat81-6c61eb.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371357,7 +371708,7 @@ }, { "question": "Beone", - "icon": "./assets/data/nsi/logos/beone-14abfa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beone-14abfa.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371373,7 +371724,7 @@ }, { "question": "Better (Greenwich Leisure Limited)", - "icon": "./assets/data/nsi/logos/better-2770cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/better-2770cb.png", "osmTags": { "and": [ "fee=yes", @@ -371406,7 +371757,7 @@ }, { "question": "Blink Fitness", - "icon": "./assets/data/nsi/logos/blinkfitness-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blinkfitness-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371422,7 +371773,7 @@ }, { "question": "Bluefit", - "icon": "./assets/data/nsi/logos/bluefit-777e0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluefit-777e0e.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371438,7 +371789,7 @@ }, { "question": "Bodystreet", - "icon": "./assets/data/nsi/logos/bodystreet-c8777b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bodystreet-c8777b.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371454,7 +371805,7 @@ }, { "question": "Bodytech", - "icon": "./assets/data/nsi/logos/bodytech-526e49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodytech-526e49.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371470,7 +371821,7 @@ }, { "question": "Bodytech (Brasil)", - "icon": "./assets/data/nsi/logos/bodytech-777e0e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bodytech-777e0e.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371486,7 +371837,7 @@ }, { "question": "Burn Boot Camp", - "icon": "./assets/data/nsi/logos/burnbootcamp-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burnbootcamp-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371502,7 +371853,7 @@ }, { "question": "Buzz Gym", - "icon": "./assets/data/nsi/logos/buzzgym-a89c8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buzzgym-a89c8d.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371519,7 +371870,7 @@ }, { "question": "Calypso", - "icon": "./assets/data/nsi/logos/calypso-78c701.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calypso-78c701.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371535,7 +371886,7 @@ }, { "question": "Celebrity Fitness", - "icon": "./assets/data/nsi/logos/celebrityfitness-412a8d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/celebrityfitness-412a8d.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371570,7 +371921,7 @@ }, { "question": "CityFitness", - "icon": "./assets/data/nsi/logos/cityfitness-745622.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityfitness-745622.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371586,7 +371937,7 @@ }, { "question": "Clever fit", - "icon": "./assets/data/nsi/logos/cleverfit-1d011d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cleverfit-1d011d.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371602,7 +371953,7 @@ }, { "question": "Club Fitness", - "icon": "./assets/data/nsi/logos/clubfitness-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubfitness-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371618,7 +371969,7 @@ }, { "question": "Club Pilates", - "icon": "./assets/data/nsi/logos/clubpilates-9a38b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubpilates-9a38b2.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371635,7 +371986,7 @@ }, { "question": "CorePower Yoga", - "icon": "./assets/data/nsi/logos/corepoweryoga-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/corepoweryoga-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371652,7 +372003,7 @@ }, { "question": "CrossFit", - "icon": "./assets/data/nsi/logos/crossfit-c8777b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crossfit-c8777b.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371668,7 +372019,7 @@ }, { "question": "Crunch Fitness", - "icon": "./assets/data/nsi/logos/crunchfitness-39883b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crunchfitness-39883b.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371714,7 +372065,7 @@ }, { "question": "CycleBar", - "icon": "./assets/data/nsi/logos/cyclebar-3542a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyclebar-3542a4.jpg", "osmTags": { "and": [ "sport=cycling", @@ -371731,7 +372082,7 @@ }, { "question": "EasyFitness", - "icon": "./assets/data/nsi/logos/easyfitness-d6de51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easyfitness-d6de51.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371747,7 +372098,7 @@ }, { "question": "Éconofitness", - "icon": "./assets/data/nsi/logos/econofitness-122858.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/econofitness-122858.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371763,7 +372114,7 @@ }, { "question": "énergie Fitness", - "icon": "./assets/data/nsi/logos/energiefitness-db9195.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiefitness-db9195.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371779,7 +372130,7 @@ }, { "question": "Equinox", - "icon": "./assets/data/nsi/logos/equinox-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equinox-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371795,7 +372146,7 @@ }, { "question": "Esporta Fitness", - "icon": "./assets/data/nsi/logos/esportafitness-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esportafitness-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371811,7 +372162,7 @@ }, { "question": "Everlast Gyms", - "icon": "./assets/data/nsi/logos/everlastgyms-2770cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/everlastgyms-2770cb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371828,7 +372179,7 @@ }, { "question": "F45 Training", - "icon": "./assets/data/nsi/logos/f45training-e76881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/f45training-e76881.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371845,7 +372196,7 @@ }, { "question": "Fernwood Fitness", - "icon": "./assets/data/nsi/logos/fernwoodfitness-c88de3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fernwoodfitness-c88de3.jpg", "osmTags": { "and": [ "female=yes", @@ -371877,7 +372228,7 @@ }, { "question": "Fit4Less (Canada)", - "icon": "./assets/data/nsi/logos/fit4less-aa8143.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fit4less-aa8143.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371893,7 +372244,7 @@ }, { "question": "Fit4less (UK)", - "icon": "./assets/data/nsi/logos/fit4less-2770cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fit4less-2770cb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371909,7 +372260,7 @@ }, { "question": "FitActive", - "icon": "./assets/data/nsi/logos/fitactive-b06a0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitactive-b06a0d.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371925,7 +372276,7 @@ }, { "question": "Fitbox", - "icon": "./assets/data/nsi/logos/fitbox-c83d0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitbox-c83d0c.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371941,7 +372292,7 @@ }, { "question": "FITINN", - "icon": "./assets/data/nsi/logos/fitinn-48d938.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitinn-48d938.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371957,7 +372308,7 @@ }, { "question": "Fitness 19", - "icon": "./assets/data/nsi/logos/fitness19-809afb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fitness19-809afb.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371973,7 +372324,7 @@ }, { "question": "Fitness First", - "icon": "./assets/data/nsi/logos/fitnessfirst-6ff977.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitnessfirst-6ff977.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -371989,7 +372340,7 @@ }, { "question": "Fitness First Ladies", - "icon": "./assets/data/nsi/logos/fitnessfirstladies-6c61eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitnessfirstladies-6c61eb.jpg", "osmTags": { "and": [ "female=yes", @@ -372021,7 +372372,7 @@ }, { "question": "Fitness Park", - "icon": "./assets/data/nsi/logos/fitnesspark-678d1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitnesspark-678d1b.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372037,7 +372388,7 @@ }, { "question": "Fitness Together", - "icon": "./assets/data/nsi/logos/fitnesstogether-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitnesstogether-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372053,7 +372404,7 @@ }, { "question": "Fitness24Seven", - "icon": "./assets/data/nsi/logos/fitness24seven-5fc685.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitness24seven-5fc685.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372069,7 +372420,7 @@ }, { "question": "FITSEVENELEVEN", - "icon": "./assets/data/nsi/logos/fitseveneleven-6c61eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitseveneleven-6c61eb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372085,7 +372436,7 @@ }, { "question": "FitX", - "icon": "./assets/data/nsi/logos/fitx-6c61eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitx-6c61eb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372101,7 +372452,7 @@ }, { "question": "Frame", - "icon": "./assets/data/nsi/logos/frame-fd4e20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frame-fd4e20.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372117,7 +372468,7 @@ }, { "question": "Friskis & Svettis", - "icon": "./assets/data/nsi/logos/friskisandsvettis-f113b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/friskisandsvettis-f113b7.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372133,7 +372484,7 @@ }, { "question": "Genesis Health and Fitness", - "icon": "./assets/data/nsi/logos/genesishealthandfitness-c88de3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/genesishealthandfitness-c88de3.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372149,7 +372500,7 @@ }, { "question": "Gold's Gym", - "icon": "./assets/data/nsi/logos/goldsgym-72c4b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goldsgym-72c4b8.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372165,7 +372516,7 @@ }, { "question": "GoodLife Fitness", - "icon": "./assets/data/nsi/logos/goodlifefitness-aa8143.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodlifefitness-aa8143.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372181,7 +372532,7 @@ }, { "question": "High5", - "icon": "./assets/data/nsi/logos/high5-6c61eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/high5-6c61eb.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372197,7 +372548,7 @@ }, { "question": "Holmes Place", - "icon": "./assets/data/nsi/logos/holmesplace-901199.png", + "icon": "https://data.mapcomplete.org/nsi//logos/holmesplace-901199.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372213,7 +372564,7 @@ }, { "question": "Hotworx", - "icon": "./assets/data/nsi/logos/hotworx-cee411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hotworx-cee411.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372229,7 +372580,7 @@ }, { "question": "iLoveKickboxing", - "icon": "./assets/data/nsi/logos/ilovekickboxing-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ilovekickboxing-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372245,7 +372596,7 @@ }, { "question": "INJOY", - "icon": "./assets/data/nsi/logos/injoy-c83d0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/injoy-c83d0c.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372261,7 +372612,7 @@ }, { "question": "Jazzercise", - "icon": "./assets/data/nsi/logos/jazzercise-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jazzercise-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372277,7 +372628,7 @@ }, { "question": "JD Gyms", - "icon": "./assets/data/nsi/logos/jdgyms-2770cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jdgyms-2770cb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372293,7 +372644,7 @@ }, { "question": "Jetts Fitness", - "icon": "./assets/data/nsi/logos/jettsfitness-8f2b5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jettsfitness-8f2b5b.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372310,7 +372661,7 @@ }, { "question": "JOHN REED Fitness", - "icon": "./assets/data/nsi/logos/johnreedfitness-c8777b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johnreedfitness-c8777b.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372326,7 +372677,7 @@ }, { "question": "KeepCool", - "icon": "./assets/data/nsi/logos/keepcool-a3e665.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keepcool-a3e665.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372342,7 +372693,7 @@ }, { "question": "KidStrong", - "icon": "./assets/data/nsi/logos/kidstrong-9a38b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kidstrong-9a38b2.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372358,7 +372709,7 @@ }, { "question": "Kieser Training", - "icon": "./assets/data/nsi/logos/kiesertraining-a70e35.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiesertraining-a70e35.svg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372374,7 +372725,7 @@ }, { "question": "Körperformen", - "icon": "./assets/data/nsi/logos/korperformen-d924c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/korperformen-d924c7.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372390,7 +372741,7 @@ }, { "question": "Kuntokeskus Liikku", - "icon": "./assets/data/nsi/logos/kuntokeskusliikku-a9beea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kuntokeskusliikku-a9beea.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372406,7 +372757,7 @@ }, { "question": "L'Appart Fitness", - "icon": "./assets/data/nsi/logos/lappartfitness-2caaa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lappartfitness-2caaa4.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372422,7 +372773,7 @@ }, { "question": "L'Orange Bleue", - "icon": "./assets/data/nsi/logos/lorangebleue-5ce32b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lorangebleue-5ce32b.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372438,7 +372789,7 @@ }, { "question": "LA Fitness", - "icon": "./assets/data/nsi/logos/lafitness-34886f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafitness-34886f.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372468,7 +372819,7 @@ }, { "question": "Liberty Gym", - "icon": "./assets/data/nsi/logos/libertygym-678d1b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/libertygym-678d1b.svg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372484,7 +372835,7 @@ }, { "question": "Life Time", - "icon": "./assets/data/nsi/logos/lifetime-9a38b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifetime-9a38b2.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372500,7 +372851,7 @@ }, { "question": "LOOP Fitness", - "icon": "./assets/data/nsi/logos/loopfitness-a32a51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loopfitness-a32a51.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372516,7 +372867,7 @@ }, { "question": "MACFit", - "icon": "./assets/data/nsi/logos/macfit-a2f75d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macfit-a2f75d.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372532,7 +372883,7 @@ }, { "question": "McFit", - "icon": "./assets/data/nsi/logos/mcfit-0ebac9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcfit-0ebac9.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372548,7 +372899,7 @@ }, { "question": "Mrs. Sporty", - "icon": "./assets/data/nsi/logos/mrssporty-658820.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrssporty-658820.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372564,7 +372915,7 @@ }, { "question": "Neoness", - "icon": "./assets/data/nsi/logos/neoness-2caaa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoness-2caaa4.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372580,7 +372931,7 @@ }, { "question": "Next Level", - "icon": "./assets/data/nsi/logos/nextlevel-144da6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nextlevel-144da6.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372596,7 +372947,7 @@ }, { "question": "Nordic Wellness", - "icon": "./assets/data/nsi/logos/nordicwellness-f113b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nordicwellness-f113b7.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372612,7 +372963,7 @@ }, { "question": "Nuffield Health Fitness & Wellbeing", - "icon": "./assets/data/nsi/logos/nuffieldhealthfitnessandwellbeing-2770cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nuffieldhealthfitnessandwellbeing-2770cb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372628,7 +372979,7 @@ }, { "question": "Orangetheory Fitness", - "icon": "./assets/data/nsi/logos/orangetheoryfitness-f1c5c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orangetheoryfitness-f1c5c5.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372644,7 +372995,7 @@ }, { "question": "Panobianco", - "icon": "./assets/data/nsi/logos/panobianco-777e0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panobianco-777e0e.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372660,7 +373011,7 @@ }, { "question": "Planet Fitness", - "icon": "./assets/data/nsi/logos/planetfitness-9a38b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/planetfitness-9a38b2.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372676,7 +373027,7 @@ }, { "question": "Plus Fitness", - "icon": "./assets/data/nsi/logos/plusfitness-737f81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plusfitness-737f81.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372692,7 +373043,7 @@ }, { "question": "Powerhouse Gym", - "icon": "./assets/data/nsi/logos/powerhousegym-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerhousegym-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372708,7 +373059,7 @@ }, { "question": "Psycle", - "icon": "./assets/data/nsi/logos/psycle-fd4e20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/psycle-fd4e20.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372724,7 +373075,7 @@ }, { "question": "Pure Barre", - "icon": "./assets/data/nsi/logos/purebarre-9a38b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/purebarre-9a38b2.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372741,7 +373092,7 @@ }, { "question": "Pure Fitness", - "icon": "./assets/data/nsi/logos/purefitness-4ac78e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/purefitness-4ac78e.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372759,7 +373110,7 @@ }, { "question": "PureGym Danmark", - "icon": "./assets/data/nsi/logos/puregym-a32a51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puregym-a32a51.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372775,7 +373126,7 @@ }, { "question": "PureGym Swiss", - "icon": "./assets/data/nsi/logos/puregym-2831bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puregym-2831bb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372791,7 +373142,7 @@ }, { "question": "PureGym UK", - "icon": "./assets/data/nsi/logos/puregym-2770cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puregym-2770cb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372807,7 +373158,7 @@ }, { "question": "Retro Fitness", - "icon": "./assets/data/nsi/logos/retrofitness-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/retrofitness-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372823,7 +373174,7 @@ }, { "question": "Sats", - "icon": "./assets/data/nsi/logos/sats-44c5d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sats-44c5d4.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372839,7 +373190,7 @@ }, { "question": "Selfit", - "icon": "./assets/data/nsi/logos/selfit-777e0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selfit-777e0e.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372855,7 +373206,7 @@ }, { "question": "Skyfit", - "icon": "./assets/data/nsi/logos/skyfit-777e0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skyfit-777e0e.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372871,7 +373222,7 @@ }, { "question": "Smart Fit", - "icon": "./assets/data/nsi/logos/smartfit-cd44e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smartfit-cd44e6.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372887,7 +373238,7 @@ }, { "question": "Snap Fitness", - "icon": "./assets/data/nsi/logos/snapfitness-551086.png", + "icon": "https://data.mapcomplete.org/nsi//logos/snapfitness-551086.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372903,7 +373254,7 @@ }, { "question": "SoulCycle", - "icon": "./assets/data/nsi/logos/soulcycle-895212.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/soulcycle-895212.jpg", "osmTags": { "and": [ "sport=cycling", @@ -372920,7 +373271,7 @@ }, { "question": "Sport Life (Україна)", - "icon": "./assets/data/nsi/logos/sportlife-d4e539.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportlife-d4e539.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372936,7 +373287,7 @@ }, { "question": "SportClub", - "icon": "./assets/data/nsi/logos/sportclub-547721.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sportclub-547721.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372952,7 +373303,7 @@ }, { "question": "SPORTLIFE", - "icon": "./assets/data/nsi/logos/sportlife-2b2465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportlife-2b2465.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372968,7 +373319,7 @@ }, { "question": "Starting Strength", - "icon": "./assets/data/nsi/logos/startingstrength-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/startingstrength-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -372998,7 +373349,7 @@ }, { "question": "STC", - "icon": "./assets/data/nsi/logos/stc-f113b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stc-f113b7.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373014,7 +373365,7 @@ }, { "question": "Stretch Zone", - "icon": "./assets/data/nsi/logos/stretchzone-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stretchzone-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373030,7 +373381,7 @@ }, { "question": "Talwalkars", - "icon": "./assets/data/nsi/logos/talwalkars-111905.png", + "icon": "https://data.mapcomplete.org/nsi//logos/talwalkars-111905.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373046,7 +373397,7 @@ }, { "question": "The Bar Method", - "icon": "./assets/data/nsi/logos/thebarmethod-9a38b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebarmethod-9a38b2.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373063,7 +373414,7 @@ }, { "question": "The Edge Fitness Club", - "icon": "./assets/data/nsi/logos/theedgefitnessclub-773501.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theedgefitnessclub-773501.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373079,7 +373430,7 @@ }, { "question": "The Exercise Coach", - "icon": "./assets/data/nsi/logos/theexercisecoach-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theexercisecoach-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373095,7 +373446,7 @@ }, { "question": "The Gym", - "icon": "./assets/data/nsi/logos/thegym-2770cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegym-2770cb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373111,7 +373462,7 @@ }, { "question": "Third Space", - "icon": "./assets/data/nsi/logos/thirdspace-fd4e20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thirdspace-fd4e20.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373127,7 +373478,7 @@ }, { "question": "Total Fitness", - "icon": "./assets/data/nsi/logos/totalfitness-2770cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/totalfitness-2770cb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373143,7 +373494,7 @@ }, { "question": "update Fitness", - "icon": "./assets/data/nsi/logos/updatefitness-2831bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/updatefitness-2831bb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373159,7 +373510,7 @@ }, { "question": "VASA Fitness", - "icon": "./assets/data/nsi/logos/vasafitness-809afb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vasafitness-809afb.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373175,7 +373526,7 @@ }, { "question": "Velocity", - "icon": "./assets/data/nsi/logos/velocity-777e0e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/velocity-777e0e.png", "osmTags": { "and": [ "sport=cycling", @@ -373192,7 +373543,7 @@ }, { "question": "Virgin Active", - "icon": "./assets/data/nsi/logos/virginactive-4a682e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginactive-4a682e.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373208,7 +373559,7 @@ }, { "question": "Vita Liberté", - "icon": "./assets/data/nsi/logos/vitaliberte-2caaa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitaliberte-2caaa4.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373224,7 +373575,7 @@ }, { "question": "VivaGym (España)", - "icon": "./assets/data/nsi/logos/vivagym-14abfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivagym-14abfa.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373240,7 +373591,7 @@ }, { "question": "VivaGym (Portugal)", - "icon": "./assets/data/nsi/logos/vivagym-b368e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivagym-b368e8.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373256,7 +373607,7 @@ }, { "question": "wellyou", - "icon": "./assets/data/nsi/logos/wellyou-6c61eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellyou-6c61eb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373272,7 +373623,7 @@ }, { "question": "Workout Anytime", - "icon": "./assets/data/nsi/logos/workoutanytime-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/workoutanytime-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373288,7 +373639,7 @@ }, { "question": "World Class (Ísland)", - "icon": "./assets/data/nsi/logos/worldclass-eed3df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldclass-eed3df.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373304,7 +373655,7 @@ }, { "question": "World Class (România)", - "icon": "./assets/data/nsi/logos/worldclass-fa50b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/worldclass-fa50b9.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373320,7 +373671,7 @@ }, { "question": "World Class (Россия)", - "icon": "./assets/data/nsi/logos/worldclass-2b2465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldclass-2b2465.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373336,7 +373687,7 @@ }, { "question": "World Gym", - "icon": "./assets/data/nsi/logos/worldgym-4c1ca3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldgym-4c1ca3.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373352,7 +373703,7 @@ }, { "question": "World Gym (臺灣)", - "icon": "./assets/data/nsi/logos/worldgym-4fed0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldgym-4fed0f.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373372,7 +373723,7 @@ }, { "question": "Xercise4Less", - "icon": "./assets/data/nsi/logos/xercise4less-2770cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xercise4less-2770cb.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373388,7 +373739,7 @@ }, { "question": "YouFit", - "icon": "./assets/data/nsi/logos/youfit-809afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/youfit-809afb.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373404,7 +373755,7 @@ }, { "question": "Zap Fitness", - "icon": "./assets/data/nsi/logos/zapfitness-c88de3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zapfitness-c88de3.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373420,7 +373771,7 @@ }, { "question": "Zdrofit", - "icon": "./assets/data/nsi/logos/zdrofit-78c701.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zdrofit-78c701.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373436,7 +373787,7 @@ }, { "question": "بودي ماسترز", - "icon": "./assets/data/nsi/logos/bodymasters-eac6d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bodymasters-eac6d0.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373456,7 +373807,7 @@ }, { "question": "وقت اللياقة", - "icon": "./assets/data/nsi/logos/fitnesstime-2210cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitnesstime-2210cf.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373476,7 +373827,7 @@ }, { "question": "エニタイムフィットネス", - "icon": "./assets/data/nsi/logos/anytimefitness-1008e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anytimefitness-1008e2.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373516,7 +373867,7 @@ }, { "question": "コナミスポーツクラブ", - "icon": "./assets/data/nsi/logos/konamisportsclub-1008e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/konamisportsclub-1008e2.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373536,7 +373887,7 @@ }, { "question": "ジョイフィット", - "icon": "./assets/data/nsi/logos/joyfit-1008e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/joyfit-1008e2.png", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373556,7 +373907,7 @@ }, { "question": "ティップネス", - "icon": "./assets/data/nsi/logos/tipness-1008e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tipness-1008e2.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373576,7 +373927,7 @@ }, { "question": "メガロス", - "icon": "./assets/data/nsi/logos/megalos-1008e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megalos-1008e2.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373596,7 +373947,7 @@ }, { "question": "健身工廠", - "icon": "./assets/data/nsi/logos/fitnessfactory-4fed0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitnessfactory-4fed0f.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373636,7 +373987,7 @@ }, { "question": "成吉思汗健身俱樂部", - "icon": "./assets/data/nsi/logos/genghiskhanfitnessclub-4fed0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genghiskhanfitnessclub-4fed0f.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373656,7 +374007,7 @@ }, { "question": "舒適堡 Physical Fitness & Beauty", - "icon": "./assets/data/nsi/logos/physicalfitnessandbeauty-68bf34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/physicalfitnessandbeauty-68bf34.jpg", "osmTags": { "and": [ "leisure=fitness_centre", @@ -373680,7 +374031,7 @@ }, { "question": "Fitness Court", - "icon": "./assets/data/nsi/logos/fitnesscourt-b43b0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitnesscourt-b43b0a.jpg", "osmTags": { "and": [ "leisure=fitness_station", @@ -373696,7 +374047,7 @@ }, { "question": "IKEA Småland", - "icon": "./assets/data/nsi/logos/smaland-89e321.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smaland-89e321.jpg", "osmTags": { "and": [ "leisure=indoor_play", @@ -373713,16 +374064,16 @@ }, { "question": "My Gym", - "icon": "./assets/data/nsi/logos/mygym-42a60f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mygym-42a60f.png", "osmTags": { "and": [ "leisure=indoor_play", - "official_name=My Gym Children's Fitness Center", { "or": [ "brand=My Gym", "brand:wikidata=Q6945604", - "name=My Gym" + "name=My Gym", + "official_name=My Gym Children's Fitness Center" ] } ] @@ -373730,7 +374081,7 @@ }, { "question": "The Little Gym", - "icon": "./assets/data/nsi/logos/thelittlegym-42a60f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thelittlegym-42a60f.jpg", "osmTags": { "and": [ "leisure=indoor_play", @@ -373746,7 +374097,7 @@ }, { "question": "Wacky Warehouse", - "icon": "./assets/data/nsi/logos/wackywarehouse-6e0ce7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wackywarehouse-6e0ce7.jpg", "osmTags": { "and": [ "leisure=indoor_play", @@ -373762,7 +374113,7 @@ }, { "question": "Holey Moley", - "icon": "./assets/data/nsi/logos/holeymoley-5edea1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/holeymoley-5edea1.png", "osmTags": { "and": [ "bar=yes", @@ -373781,7 +374132,7 @@ }, { "question": "Biba Smart Playground", - "icon": "./assets/data/nsi/logos/biba-d25aa3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biba-d25aa3.png", "osmTags": { "and": [ "leisure=playground", @@ -373796,7 +374147,7 @@ }, { "question": "Lollipops Playland", - "icon": "./assets/data/nsi/logos/lollipopsplayland-a3623b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lollipopsplayland-a3623b.jpg", "osmTags": { "and": [ "leisure=playground", @@ -373813,7 +374164,7 @@ }, { "question": "McDonald's PlayPlace", - "icon": "./assets/data/nsi/logos/mcdonaldsplayplace-bacb55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonaldsplayplace-bacb55.jpg", "osmTags": { "and": [ "leisure=playground", @@ -373830,7 +374181,7 @@ }, { "question": "Žihadielko", - "icon": "./assets/data/nsi/logos/zihadielko-aee7ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zihadielko-aee7ff.jpg", "osmTags": { "and": [ "leisure=playground", @@ -373847,7 +374198,7 @@ }, { "question": "モーリーファンタジー", - "icon": "./assets/data/nsi/logos/mollyfantasy-b85b28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mollyfantasy-b85b28.jpg", "osmTags": { "and": [ "leisure=playground", @@ -373868,7 +374219,7 @@ }, { "question": "Aqua-Tots Swim Schools", - "icon": "./assets/data/nsi/logos/aquatotsswimschools-ce9814.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aquatotsswimschools-ce9814.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -373903,7 +374254,7 @@ }, { "question": "Bear Paddle Swim School", - "icon": "./assets/data/nsi/logos/bearpaddleswimschool-f2066e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bearpaddleswimschool-f2066e.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -373920,7 +374271,7 @@ }, { "question": "Better (Greenwich Leisure Limited)", - "icon": "./assets/data/nsi/logos/better-2b43d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/better-2b43d7.png", "osmTags": { "and": [ "fee=yes", @@ -373939,7 +374290,7 @@ }, { "question": "Big Blue Swim School", - "icon": "./assets/data/nsi/logos/bigblueswimschool-f2066e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigblueswimschool-f2066e.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -373956,7 +374307,7 @@ }, { "question": "David Lloyd Clubs", - "icon": "./assets/data/nsi/logos/davidlloydclubs-2b43d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/davidlloydclubs-2b43d7.png", "osmTags": { "and": [ "leisure=sports_centre", @@ -373972,6 +374323,7 @@ }, { "question": "Emler Swim School", + "icon": "https://data.mapcomplete.org/nsi//logos/emlerswimschool-f2066e.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -373988,7 +374340,7 @@ }, { "question": "Everyone Active", - "icon": "./assets/data/nsi/logos/everyoneactive-2b43d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/everyoneactive-2b43d7.jpg", "osmTags": { "and": [ "fee=yes", @@ -374004,7 +374356,7 @@ }, { "question": "Foss Swim School", - "icon": "./assets/data/nsi/logos/fossswimschool-f2066e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fossswimschool-f2066e.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374021,7 +374373,7 @@ }, { "question": "Goals", - "icon": "./assets/data/nsi/logos/goals-2b43d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goals-2b43d7.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374038,7 +374390,7 @@ }, { "question": "Goldfish Swim School", - "icon": "./assets/data/nsi/logos/goldfishswimschool-f2066e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldfishswimschool-f2066e.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374055,7 +374407,7 @@ }, { "question": "Happy Fish Swim School", - "icon": "./assets/data/nsi/logos/happyfishswimschool-ef46fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/happyfishswimschool-ef46fc.png", "osmTags": { "and": [ "leisure=sports_centre", @@ -374072,7 +374424,7 @@ }, { "question": "iFLY", - "icon": "./assets/data/nsi/logos/ifly-ba45e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ifly-ba45e1.png", "osmTags": { "and": [ "leisure=sports_centre", @@ -374089,7 +374441,7 @@ }, { "question": "K1 Speed", - "icon": "./assets/data/nsi/logos/k1speed-fb63c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/k1speed-fb63c7.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374106,7 +374458,7 @@ }, { "question": "Kids First Swim Schools", - "icon": "./assets/data/nsi/logos/kidsfirstswimschool-f2066e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kidsfirstswimschool-f2066e.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374123,7 +374475,7 @@ }, { "question": "Le Five", - "icon": "./assets/data/nsi/logos/lefive-b9c700.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lefive-b9c700.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374153,7 +374505,7 @@ }, { "question": "SafeSplash Swim School", - "icon": "./assets/data/nsi/logos/safesplashswimschool-f2066e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safesplashswimschool-f2066e.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374170,7 +374522,7 @@ }, { "question": "Shapland Swim Schools", - "icon": "./assets/data/nsi/logos/shaplandswimschool-8761a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shaplandswimschool-8761a7.png", "osmTags": { "and": [ "leisure=sports_centre", @@ -374187,7 +374539,7 @@ }, { "question": "Spor İstanbul", - "icon": "./assets/data/nsi/logos/sporistanbul-62337f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sporistanbul-62337f.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374202,7 +374554,7 @@ }, { "question": "SwimLabs Swim School", - "icon": "./assets/data/nsi/logos/swimlabsswimschool-f2066e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swimlabsswimschool-f2066e.png", "osmTags": { "and": [ "leisure=sports_centre", @@ -374219,7 +374571,7 @@ }, { "question": "TeamSport Karting", - "icon": "./assets/data/nsi/logos/teamsportkarting-2b43d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teamsportkarting-2b43d7.jpg", "osmTags": { "and": [ "club=sport", @@ -374237,7 +374589,7 @@ }, { "question": "Topgolf", - "icon": "./assets/data/nsi/logos/topgolf-9025ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topgolf-9025ef.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374269,7 +374621,7 @@ }, { "question": "X Golf", - "icon": "./assets/data/nsi/logos/xgolf-8a88af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xgolf-8a88af.jpg", "osmTags": { "and": [ "leisure=sports_centre", @@ -374287,7 +374639,7 @@ }, { "question": "YMCA", - "icon": "./assets/data/nsi/logos/ymca-ba45e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ymca-ba45e1.png", "osmTags": { "and": [ "leisure=sports_centre", @@ -374345,7 +374697,7 @@ }, { "question": "Altitude", - "icon": "./assets/data/nsi/logos/altitude-88b71c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altitude-88b71c.jpg", "osmTags": { "and": [ "leisure=trampoline_park", @@ -374361,6 +374713,7 @@ }, { "question": "Bounce Inc", + "icon": "https://data.mapcomplete.org/nsi//logos/bounceinc-0b8920.png", "osmTags": { "and": [ "leisure=trampoline_park", @@ -374376,7 +374729,7 @@ }, { "question": "Flip Out", - "icon": "./assets/data/nsi/logos/flipout-002cc1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flipout-002cc1.jpg", "osmTags": { "and": [ "leisure=trampoline_park", @@ -374392,7 +374745,7 @@ }, { "question": "Sky Zone", - "icon": "./assets/data/nsi/logos/skyzone-746047.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skyzone-746047.jpg", "osmTags": { "and": [ "leisure=trampoline_park", @@ -374408,16 +374761,16 @@ }, { "question": "Urban Air", - "icon": "./assets/data/nsi/logos/urbanair-569d04.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/urbanair-569d04.jpg", "osmTags": { "and": [ "leisure=trampoline_park", - "official_name=Urban Air Trampoline and Adventure Park", { "or": [ "brand=Urban Air", "brand:wikidata=Q110172893", - "name=Urban Air" + "name=Urban Air", + "official_name=Urban Air Trampoline and Adventure Park" ] } ] @@ -374425,7 +374778,7 @@ }, { "question": "Believ", - "icon": "./assets/data/nsi/logos/believ-0f0a22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/believ-0f0a22.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374440,7 +374793,7 @@ }, { "question": "BP Pulse", - "icon": "./assets/data/nsi/logos/bppulse-ba9ece.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bppulse-ba9ece.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374457,7 +374810,7 @@ }, { "question": "char.gy", - "icon": "./assets/data/nsi/logos/chargy-0f0a22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chargy-0f0a22.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374481,7 +374834,7 @@ }, { "question": "Chargy", - "icon": "./assets/data/nsi/logos/chargy-a187c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chargy-a187c9.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374498,7 +374851,7 @@ }, { "question": "Eviny", - "icon": "./assets/data/nsi/logos/eviny-a1beea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eviny-a1beea.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374513,7 +374866,7 @@ }, { "question": "Indigo", - "icon": "./assets/data/nsi/logos/indigo-a8a5f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indigo-a8a5f0.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374528,7 +374881,7 @@ }, { "question": "Ionity", - "icon": "./assets/data/nsi/logos/ionity-97d83d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ionity-97d83d.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374552,7 +374905,7 @@ }, { "question": "Kople", - "icon": "./assets/data/nsi/logos/kople-a1beea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kople-a1beea.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374567,7 +374920,7 @@ }, { "question": "Mer", - "icon": "./assets/data/nsi/logos/mer-8d56aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mer-8d56aa.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374582,7 +374935,7 @@ }, { "question": "MOL Plugee", - "icon": "./assets/data/nsi/logos/molplugee-bb0527.png", + "icon": "https://data.mapcomplete.org/nsi//logos/molplugee-bb0527.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374599,7 +374952,7 @@ }, { "question": "NIO Power Charger", - "icon": "./assets/data/nsi/logos/niopowercharger-f8ee9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowercharger-f8ee9e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374616,7 +374969,7 @@ }, { "question": "NIO Power Destination", - "icon": "./assets/data/nsi/logos/niopowerdestination-f8ee9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowerdestination-f8ee9e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374633,7 +374986,7 @@ }, { "question": "NIO Power Swap", - "icon": "./assets/data/nsi/logos/niopowerswap-f8ee9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowerswap-f8ee9e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374650,7 +375003,7 @@ }, { "question": "OpenLoop", - "icon": "./assets/data/nsi/logos/openloop-c04700.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/openloop-c04700.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374667,7 +375020,7 @@ }, { "question": "Plugit", - "icon": "./assets/data/nsi/logos/plugit-f7f4ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/plugit-f7f4ef.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374682,7 +375035,7 @@ }, { "question": "Powerbox.one", - "icon": "./assets/data/nsi/logos/powerboxone-4e1964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerboxone-4e1964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374697,7 +375050,7 @@ }, { "question": "Powerdot", - "icon": "./assets/data/nsi/logos/powerdot-86aeb5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/powerdot-86aeb5.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374729,7 +375082,7 @@ }, { "question": "Rivian Adventure Network", - "icon": "./assets/data/nsi/logos/rivianadventurenetwork-66cd42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rivianadventurenetwork-66cd42.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374744,7 +375097,7 @@ }, { "question": "Rivian Waypoints", - "icon": "./assets/data/nsi/logos/rivianwaypoints-66cd42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rivianwaypoints-66cd42.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374775,7 +375128,7 @@ }, { "question": "Tesla Destination Charger", - "icon": "./assets/data/nsi/logos/teslainc-9b2e7d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/teslainc-9b2e7d.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -374807,7 +375160,7 @@ }, { "question": "Tesla Supercharger (Norge)", - "icon": "./assets/data/nsi/logos/tesla-a1beea.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tesla-a1beea.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -374822,7 +375175,7 @@ }, { "question": "ubitricity", - "icon": "./assets/data/nsi/logos/ubitricity-338196.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ubitricity-338196.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374839,7 +375192,7 @@ }, { "question": "WINK Charging", - "icon": "./assets/data/nsi/logos/wink-d790f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wink-d790f7.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374870,7 +375223,7 @@ }, { "question": "ZSE Drive", - "icon": "./assets/data/nsi/logos/zsedrive-fed676.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zsedrive-fed676.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374929,7 +375282,7 @@ }, { "question": "小鹏超充站", - "icon": "./assets/data/nsi/logos/xpengsupercharger-9ee13d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xpengsupercharger-9ee13d.png", "osmTags": { "and": [ "man_made=charge_point", @@ -374948,7 +375301,7 @@ }, { "question": "特来电", - "icon": "./assets/data/nsi/logos/teld-9ee13d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teld-9ee13d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374967,7 +375320,7 @@ }, { "question": "蔚来换电站", - "icon": "./assets/data/nsi/logos/niopowerswap-9ee13d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowerswap-9ee13d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -374985,7 +375338,7 @@ }, { "question": "蔚来目充站", - "icon": "./assets/data/nsi/logos/niopowerdestination-9ee13d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowerdestination-9ee13d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -375003,7 +375356,7 @@ }, { "question": "蔚来超充站", - "icon": "./assets/data/nsi/logos/niopowercharger-9ee13d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niopowercharger-9ee13d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -375021,16 +375374,16 @@ }, { "question": "ACE", - "icon": "./assets/data/nsi/logos/ace-496920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ace-496920.jpg", "osmTags": { "and": [ "office=association", - "official_name=Auto Club Europa", { "or": [ "brand=ACE", "brand:wikidata=Q784865", - "name=ACE" + "name=ACE", + "official_name=Auto Club Europa" ] } ] @@ -375038,16 +375391,16 @@ }, { "question": "ACV", - "icon": "./assets/data/nsi/logos/acv-496920.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/acv-496920.svg", "osmTags": { "and": [ "office=association", - "official_name=ACV Automobil-Club Verkehr", { "or": [ "brand=ACV", "brand:wikidata=Q288866", - "name=ACV" + "name=ACV", + "official_name=ACV Automobil-Club Verkehr" ] } ] @@ -375055,16 +375408,16 @@ }, { "question": "ADAC", - "icon": "./assets/data/nsi/logos/adac-496920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adac-496920.jpg", "osmTags": { "and": [ "office=association", - "official_name=Allgemeiner Deutscher Automobil-Club", { "or": [ "brand=ADAC", "brand:wikidata=Q289953", - "name=ADAC" + "name=ADAC", + "official_name=Allgemeiner Deutscher Automobil-Club" ] } ] @@ -375072,16 +375425,16 @@ }, { "question": "ADFC", - "icon": "./assets/data/nsi/logos/adfc-496920.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adfc-496920.png", "osmTags": { "and": [ "office=association", - "official_name=Allgemeiner Deutscher Fahrrad-Club", { "or": [ "brand=ADFC", "brand:wikidata=Q24349", - "name=ADFC" + "name=ADFC", + "official_name=Allgemeiner Deutscher Fahrrad-Club" ] } ] @@ -375089,7 +375442,7 @@ }, { "question": "Arbeiter-Samariter-Bund", - "icon": "./assets/data/nsi/logos/arbeitersamariterbund-496920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeitersamariterbund-496920.jpg", "osmTags": { "and": [ "office=association", @@ -375105,7 +375458,7 @@ }, { "question": "Arbeiterwohlfahrt", - "icon": "./assets/data/nsi/logos/arbeiterwohlfahrt-496920.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeiterwohlfahrt-496920.svg", "osmTags": { "and": [ "office=association", @@ -375121,16 +375474,16 @@ }, { "question": "BUND", - "icon": "./assets/data/nsi/logos/bund-496920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bund-496920.jpg", "osmTags": { "and": [ "office=association", - "official_name=Bund für Umwelt und Naturschutz Deutschland", { "or": [ "brand=BUND", "brand:wikidata=Q897009", - "name=BUND" + "name=BUND", + "official_name=Bund für Umwelt und Naturschutz Deutschland" ] } ] @@ -375138,7 +375491,7 @@ }, { "question": "Deutsches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/deutschesroteskreuz-496920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesroteskreuz-496920.jpg", "osmTags": { "and": [ "office=association", @@ -375154,7 +375507,7 @@ }, { "question": "Diakonie", - "icon": "./assets/data/nsi/logos/diakonie-496920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diakonie-496920.jpg", "osmTags": { "and": [ "office=association", @@ -375170,16 +375523,16 @@ }, { "question": "DLRG", - "icon": "./assets/data/nsi/logos/dlrg-496920.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dlrg-496920.png", "osmTags": { "and": [ "office=association", - "official_name=Deutsche Lebens-Rettungs-Gesellschaft", { "or": [ "brand=DLRG", "brand:wikidata=Q871679", - "name=DLRG" + "name=DLRG", + "official_name=Deutsche Lebens-Rettungs-Gesellschaft" ] } ] @@ -375187,7 +375540,7 @@ }, { "question": "Greenpeace", - "icon": "./assets/data/nsi/logos/greenpeace-a7aa2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenpeace-a7aa2a.jpg", "osmTags": { "and": [ "office=association", @@ -375203,7 +375556,7 @@ }, { "question": "Johanniter-Unfall-Hilfe", - "icon": "./assets/data/nsi/logos/johanniterunfallhilfe-496920.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfe-496920.png", "osmTags": { "and": [ "office=association", @@ -375219,7 +375572,7 @@ }, { "question": "Malteser Hilfsdienst", - "icon": "./assets/data/nsi/logos/malteserhilfsdienst-496920.png", + "icon": "https://data.mapcomplete.org/nsi//logos/malteserhilfsdienst-496920.png", "osmTags": { "and": [ "office=association", @@ -375235,16 +375588,16 @@ }, { "question": "NABU", - "icon": "./assets/data/nsi/logos/nabu-496920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nabu-496920.jpg", "osmTags": { "and": [ "office=association", - "official_name=Naturschutzbund Deutschland", { "or": [ "brand=NABU", "brand:wikidata=Q516755", - "name=NABU" + "name=NABU", + "official_name=Naturschutzbund Deutschland" ] } ] @@ -375252,16 +375605,16 @@ }, { "question": "VCD", - "icon": "./assets/data/nsi/logos/vcd-496920.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vcd-496920.png", "osmTags": { "and": [ "office=association", - "official_name=Verkehrsclub Deutschland", { "or": [ "brand=VCD", "brand:wikidata=Q2516162", - "name=VCD" + "name=VCD", + "official_name=Verkehrsclub Deutschland" ] } ] @@ -375269,7 +375622,7 @@ }, { "question": "Aladdin Bail Bonds", - "icon": "./assets/data/nsi/logos/aladdinbailbonds-e2590f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aladdinbailbonds-e2590f.png", "osmTags": { "and": [ "office=bail_bond_agent", @@ -375300,7 +375653,7 @@ }, { "question": "Fischer Homes", - "icon": "./assets/data/nsi/logos/fischerhomes-ae3287.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fischerhomes-ae3287.png", "osmTags": { "and": [ "company=construction", @@ -375331,7 +375684,7 @@ }, { "question": "Google", - "icon": "./assets/data/nsi/logos/google-4a77e8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/google-4a77e8.png", "osmTags": { "and": [ "office=company", @@ -375347,7 +375700,7 @@ }, { "question": "Iron Mountain", - "icon": "./assets/data/nsi/logos/ironmountain-ae3287.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ironmountain-ae3287.jpg", "osmTags": { "and": [ "office=company", @@ -375405,7 +375758,7 @@ }, { "question": "Siemens", - "icon": "./assets/data/nsi/logos/siemens-4a77e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siemens-4a77e8.jpg", "osmTags": { "and": [ "office=company", @@ -375421,7 +375774,7 @@ }, { "question": "Thales", - "icon": "./assets/data/nsi/logos/thales-4a77e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thales-4a77e8.jpg", "osmTags": { "and": [ "office=company", @@ -375437,7 +375790,7 @@ }, { "question": "TomTom", - "icon": "./assets/data/nsi/logos/tomtom-4a77e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomtom-4a77e8.jpg", "osmTags": { "and": [ "office=company", @@ -375495,7 +375848,7 @@ }, { "question": "Accenture", - "icon": "./assets/data/nsi/logos/accenture-2207a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accenture-2207a5.jpg", "osmTags": { "and": [ "office=consulting", @@ -375511,7 +375864,7 @@ }, { "question": "BDO Canada", - "icon": "./assets/data/nsi/logos/bdocanada-89719a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bdocanada-89719a.jpg", "osmTags": { "and": [ "office=consulting", @@ -375527,7 +375880,7 @@ }, { "question": "Boston Consulting Group", - "icon": "./assets/data/nsi/logos/bostonconsultinggroup-2207a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bostonconsultinggroup-2207a5.jpg", "osmTags": { "and": [ "office=consulting", @@ -375543,7 +375896,7 @@ }, { "question": "Deloitte", - "icon": "./assets/data/nsi/logos/deloitte-2207a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deloitte-2207a5.png", "osmTags": { "and": [ "office=consulting", @@ -375559,7 +375912,7 @@ }, { "question": "Ecovis International", - "icon": "./assets/data/nsi/logos/ecovis-10b2fd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecovis-10b2fd.svg", "osmTags": { "and": [ "office=consulting", @@ -375575,16 +375928,16 @@ }, { "question": "EY", - "icon": "./assets/data/nsi/logos/ey-2207a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ey-2207a5.png", "osmTags": { "and": [ "office=consulting", - "official_name=Ernst & Young", { "or": [ "brand=EY", "brand:wikidata=Q489097", - "name=EY" + "name=EY", + "official_name=Ernst & Young" ] } ] @@ -375592,16 +375945,16 @@ }, { "question": "Indra", - "icon": "./assets/data/nsi/logos/indra-2207a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indra-2207a5.jpg", "osmTags": { "and": [ "office=consulting", - "official_name=Indra Sistemas, S.A.", { "or": [ "brand=Indra", "brand:wikidata=Q1661823", - "name=Indra" + "name=Indra", + "official_name=Indra Sistemas, S.A." ] } ] @@ -375609,7 +375962,7 @@ }, { "question": "Kearney", - "icon": "./assets/data/nsi/logos/kearney-2207a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kearney-2207a5.jpg", "osmTags": { "and": [ "office=consulting", @@ -375625,7 +375978,7 @@ }, { "question": "KPMG", - "icon": "./assets/data/nsi/logos/kpmg-2207a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kpmg-2207a5.jpg", "osmTags": { "and": [ "office=consulting", @@ -375641,7 +375994,7 @@ }, { "question": "McKinsey & Company", - "icon": "./assets/data/nsi/logos/mckinseyandcompany-2207a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mckinseyandcompany-2207a5.jpg", "osmTags": { "and": [ "office=consulting", @@ -375657,7 +376010,7 @@ }, { "question": "Morgan, Lewis & Bockius", - "icon": "./assets/data/nsi/logos/morganlewisandbockius-ef3027.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morganlewisandbockius-ef3027.jpg", "osmTags": { "and": [ "office=consulting", @@ -375673,16 +376026,16 @@ }, { "question": "PwC", - "icon": "./assets/data/nsi/logos/pwc-2207a5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pwc-2207a5.svg", "osmTags": { "and": [ "office=consulting", - "official_name=PricewaterhouseCoopers", { "or": [ "brand=PwC", "brand:wikidata=Q488048", - "name=PwC" + "name=PwC", + "official_name=PricewaterhouseCoopers" ] } ] @@ -375690,7 +376043,7 @@ }, { "question": "Synaxon", - "icon": "./assets/data/nsi/logos/synaxon-e9ad7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synaxon-e9ad7a.jpg", "osmTags": { "and": [ "office=consulting", @@ -375737,7 +376090,7 @@ }, { "question": "Awfis", - "icon": "./assets/data/nsi/logos/awfis-2107c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/awfis-2107c0.png", "osmTags": { "and": [ "fee=yes", @@ -375754,7 +376107,7 @@ }, { "question": "Co-Creation Hub", - "icon": "./assets/data/nsi/logos/cocreationhub-745387.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocreationhub-745387.jpg", "osmTags": { "and": [ "fee=yes", @@ -375771,7 +376124,7 @@ }, { "question": "Design Offices", - "icon": "./assets/data/nsi/logos/designoffices-abbc19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/designoffices-abbc19.jpg", "osmTags": { "and": [ "office=coworking", @@ -375787,7 +376140,7 @@ }, { "question": "Drop-in", - "icon": "./assets/data/nsi/logos/dropin-80a88a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dropin-80a88a.jpg", "osmTags": { "and": [ "office=coworking", @@ -375803,7 +376156,7 @@ }, { "question": "Impact Hub", - "icon": "./assets/data/nsi/logos/impacthub-cfb41b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/impacthub-cfb41b.svg", "osmTags": { "and": [ "office=coworking", @@ -375819,7 +376172,7 @@ }, { "question": "Life Time Work", - "icon": "./assets/data/nsi/logos/lifetimework-7094fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifetimework-7094fa.jpg", "osmTags": { "and": [ "membership=required", @@ -375836,7 +376189,7 @@ }, { "question": "Mainyard Studios", - "icon": "./assets/data/nsi/logos/mainyardstudios-80a88a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mainyardstudios-80a88a.jpg", "osmTags": { "and": [ "office=coworking", @@ -375852,7 +376205,7 @@ }, { "question": "Regus", - "icon": "./assets/data/nsi/logos/regus-cfb41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regus-cfb41b.jpg", "osmTags": { "and": [ "office=coworking", @@ -375868,7 +376221,7 @@ }, { "question": "Second Home", - "icon": "./assets/data/nsi/logos/secondhome-b3460a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/secondhome-b3460a.jpg", "osmTags": { "and": [ "fee=yes", @@ -375885,7 +376238,7 @@ }, { "question": "Spaces", - "icon": "./assets/data/nsi/logos/spaces-92cb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spaces-92cb94.jpg", "osmTags": { "and": [ "office=coworking", @@ -375901,7 +376254,7 @@ }, { "question": "Spaces (Scandinavia)", - "icon": "./assets/data/nsi/logos/spaces-ffd6f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spaces-ffd6f1.jpg", "osmTags": { "and": [ "office=coworking", @@ -375917,7 +376270,7 @@ }, { "question": "Techspace", - "icon": "./assets/data/nsi/logos/techspace-8a2e48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/techspace-8a2e48.jpg", "osmTags": { "and": [ "office=coworking", @@ -375933,7 +376286,7 @@ }, { "question": "Ucommune (Hong Kong)", - "icon": "./assets/data/nsi/logos/ucommune-a8f329.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucommune-a8f329.jpg", "osmTags": { "and": [ "fee=yes", @@ -375958,7 +376311,7 @@ }, { "question": "Ucommune (Singapore)", - "icon": "./assets/data/nsi/logos/ucommune-a6089e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucommune-a6089e.jpg", "osmTags": { "and": [ "fee=yes", @@ -375981,7 +376334,7 @@ }, { "question": "Ucommune (中国)", - "icon": "./assets/data/nsi/logos/ucommune-4ed4b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucommune-4ed4b9.jpg", "osmTags": { "and": [ "fee=yes", @@ -376004,7 +376357,7 @@ }, { "question": "Ucommune (臺灣)", - "icon": "./assets/data/nsi/logos/ucommune-4d61d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucommune-4d61d2.jpg", "osmTags": { "and": [ "fee=yes", @@ -376029,7 +376382,7 @@ }, { "question": "WeWork", - "icon": "./assets/data/nsi/logos/wework-cfb41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wework-cfb41b.jpg", "osmTags": { "and": [ "fee=yes", @@ -376046,7 +376399,7 @@ }, { "question": "Work.Life", - "icon": "./assets/data/nsi/logos/worklife-5c713b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worklife-5c713b.jpg", "osmTags": { "and": [ "dog=yes", @@ -376063,7 +376416,7 @@ }, { "question": "Accent Jobs", - "icon": "./assets/data/nsi/logos/accentjobs-26db9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accentjobs-26db9d.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376079,7 +376432,7 @@ }, { "question": "Adecco", - "icon": "./assets/data/nsi/logos/adecco-0baa05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adecco-0baa05.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376095,7 +376448,7 @@ }, { "question": "Agentur für Arbeit", - "icon": "./assets/data/nsi/logos/agenturfurarbeit-d474df.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agenturfurarbeit-d474df.svg", "osmTags": { "and": [ "office=employment_agency", @@ -376125,7 +376478,7 @@ }, { "question": "Arbeitsmarktservice Österreich", - "icon": "./assets/data/nsi/logos/arbeitsmarktserviceosterreich-69b0ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arbeitsmarktserviceosterreich-69b0ce.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376142,7 +376495,7 @@ }, { "question": "cintas", - "icon": "./assets/data/nsi/logos/cintas-61ea6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cintas-61ea6e.png", "osmTags": { "and": [ "office=employment_agency", @@ -376158,7 +376511,7 @@ }, { "question": "CRIT", - "icon": "./assets/data/nsi/logos/critinterim-e5fc42.png", + "icon": "https://data.mapcomplete.org/nsi//logos/critinterim-e5fc42.png", "osmTags": { "and": [ "office=employment_agency", @@ -376174,7 +376527,7 @@ }, { "question": "Driver Hire", - "icon": "./assets/data/nsi/logos/driverhire-e4b4b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/driverhire-e4b4b7.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376190,7 +376543,7 @@ }, { "question": "Express Employment Professionals", - "icon": "./assets/data/nsi/logos/expressemploymentprofessionals-867cf6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressemploymentprofessionals-867cf6.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376206,7 +376559,7 @@ }, { "question": "France Travail", - "icon": "./assets/data/nsi/logos/francetravail-9e0ae6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/francetravail-9e0ae6.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376236,16 +376589,16 @@ }, { "question": "İŞKUR", - "icon": "./assets/data/nsi/logos/iskur-591089.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iskur-591089.jpg", "osmTags": { "and": [ "office=employment_agency", - "official_name=Türkiye İş Kurumu", { "or": [ "brand=İŞKUR", "brand:wikidata=Q6001879", - "name=İŞKUR" + "name=İŞKUR", + "official_name=Türkiye İş Kurumu" ] } ] @@ -376253,7 +376606,7 @@ }, { "question": "Jobcenter", - "icon": "./assets/data/nsi/logos/jobcenter-d474df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jobcenter-d474df.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376269,7 +376622,7 @@ }, { "question": "Jobcentre Plus", - "icon": "./assets/data/nsi/logos/jobcentreplus-e4b4b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jobcentreplus-e4b4b7.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376285,7 +376638,7 @@ }, { "question": "Kelly Services", - "icon": "./assets/data/nsi/logos/kellyservices-0baa05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kellyservices-0baa05.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376301,7 +376654,7 @@ }, { "question": "Manpower", - "icon": "./assets/data/nsi/logos/manpower-0baa05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manpower-0baa05.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376331,7 +376684,7 @@ }, { "question": "Office Angels", - "icon": "./assets/data/nsi/logos/officeangels-e4b4b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/officeangels-e4b4b7.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376347,7 +376700,7 @@ }, { "question": "PeopleReady", - "icon": "./assets/data/nsi/logos/peopleready-81c4e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/peopleready-81c4e9.png", "osmTags": { "and": [ "office=employment_agency", @@ -376363,7 +376716,7 @@ }, { "question": "Proman", - "icon": "./assets/data/nsi/logos/proman-9e0ae6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/proman-9e0ae6.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376379,7 +376732,7 @@ }, { "question": "Randstad", - "icon": "./assets/data/nsi/logos/randstad-f7dc26.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/randstad-f7dc26.svg", "osmTags": { "and": [ "office=employment_agency", @@ -376410,7 +376763,7 @@ }, { "question": "Start People", - "icon": "./assets/data/nsi/logos/startpeople-45a424.png", + "icon": "https://data.mapcomplete.org/nsi//logos/startpeople-45a424.png", "osmTags": { "and": [ "office=employment_agency", @@ -376426,7 +376779,7 @@ }, { "question": "Synergie (France)", - "icon": "./assets/data/nsi/logos/synergie-e5fc42.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/synergie-e5fc42.svg", "osmTags": { "and": [ "office=employment_agency", @@ -376442,7 +376795,7 @@ }, { "question": "Synergie (Italia)", - "icon": "./assets/data/nsi/logos/synergie-c147be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synergie-c147be.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376458,7 +376811,7 @@ }, { "question": "Tempo-Team", - "icon": "./assets/data/nsi/logos/tempoteam-a6688c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tempoteam-a6688c.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376488,7 +376841,7 @@ }, { "question": "The Recruitment Co", - "icon": "./assets/data/nsi/logos/therecruitmentco-e4b4b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/therecruitmentco-e4b4b7.jpg", "osmTags": { "and": [ "office=employment_agency", @@ -376504,7 +376857,7 @@ }, { "question": "パソナ", - "icon": "./assets/data/nsi/logos/pasona-ea06d3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pasona-ea06d3.svg", "osmTags": { "and": [ "office=employment_agency", @@ -376524,13 +376877,10 @@ }, { "question": "ハローワーク", - "icon": "./assets/data/nsi/logos/hellowork-ea06d3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hellowork-ea06d3.png", "osmTags": { "and": [ "office=employment_agency", - "official_name=公共職業安定所", - "official_name:en=Public Employment Security Office", - "official_name:ja=公共職業安定所", { "or": [ "brand=ハローワーク", @@ -376539,7 +376889,10 @@ "brand:wikidata=Q5016578", "name=ハローワーク", "name:en=Hello Work", - "name:ja=ハローワーク" + "name:ja=ハローワーク", + "official_name=公共職業安定所", + "official_name:en=Public Employment Security Office", + "official_name:ja=公共職業安定所" ] } ] @@ -376547,7 +376900,7 @@ }, { "question": "Alstom", - "icon": "./assets/data/nsi/logos/alstom-3739d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alstom-3739d4.png", "osmTags": { "and": [ "office=engineer", @@ -376563,7 +376916,7 @@ }, { "question": "WSP", - "icon": "./assets/data/nsi/logos/wsp-1283df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wsp-1283df.jpg", "osmTags": { "and": [ "office=engineer", @@ -376579,7 +376932,7 @@ }, { "question": "21世紀不動產", - "icon": "./assets/data/nsi/logos/century21-dccb44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/century21-dccb44.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376603,7 +376956,7 @@ }, { "question": "21世纪不动产", - "icon": "./assets/data/nsi/logos/century21-3462c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/century21-3462c2.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376637,7 +376990,7 @@ }, { "question": "Allen & Harris", - "icon": "./assets/data/nsi/logos/allenandharris-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allenandharris-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -376653,7 +377006,7 @@ }, { "question": "Bagshaws Residential", - "icon": "./assets/data/nsi/logos/bagshawsresidential-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bagshawsresidential-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -376669,7 +377022,7 @@ }, { "question": "Bairstow Eves", - "icon": "./assets/data/nsi/logos/bairstoweves-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bairstoweves-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376685,7 +377038,7 @@ }, { "question": "Barfoot & Thompson", - "icon": "./assets/data/nsi/logos/barfootandthompson-8dbc65.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barfootandthompson-8dbc65.png", "osmTags": { "and": [ "office=estate_agent", @@ -376701,7 +377054,7 @@ }, { "question": "Barnard Marcus", - "icon": "./assets/data/nsi/logos/barnardmarcus-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barnardmarcus-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376717,7 +377070,7 @@ }, { "question": "Barnes", - "icon": "./assets/data/nsi/logos/barnes-08bb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barnes-08bb13.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376733,7 +377086,7 @@ }, { "question": "Bayleys", - "icon": "./assets/data/nsi/logos/bayleys-d3667a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayleys-d3667a.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376749,7 +377102,7 @@ }, { "question": "Belle Property", - "icon": "./assets/data/nsi/logos/belleproperty-d66f4e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/belleproperty-d66f4e.png", "osmTags": { "and": [ "office=estate_agent", @@ -376781,7 +377134,7 @@ }, { "question": "Berkshire Hathaway HomeServices", - "icon": "./assets/data/nsi/logos/berkshirehathawayhomeservices-aec949.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berkshirehathawayhomeservices-aec949.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376798,7 +377151,7 @@ }, { "question": "Bradleys", - "icon": "./assets/data/nsi/logos/bradleys-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bradleys-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376814,7 +377167,7 @@ }, { "question": "Bridgfords", - "icon": "./assets/data/nsi/logos/bridgfords-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bridgfords-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376830,7 +377183,7 @@ }, { "question": "Brown & Merry", - "icon": "./assets/data/nsi/logos/brownandmerry-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brownandmerry-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -376846,7 +377199,7 @@ }, { "question": "Buxton", - "icon": "./assets/data/nsi/logos/buxton-f2ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buxton-f2ceb3.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376876,7 +377229,7 @@ }, { "question": "CBRE", - "icon": "./assets/data/nsi/logos/cbre-08bb13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cbre-08bb13.png", "osmTags": { "and": [ "office=estate_agent", @@ -376892,7 +377245,7 @@ }, { "question": "Century 21", - "icon": "./assets/data/nsi/logos/century21-145e3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/century21-145e3e.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376922,7 +377275,7 @@ }, { "question": "Coldwell Banker", - "icon": "./assets/data/nsi/logos/coldwellbanker-08bb13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coldwellbanker-08bb13.png", "osmTags": { "and": [ "office=estate_agent", @@ -376938,7 +377291,7 @@ }, { "question": "Connells", - "icon": "./assets/data/nsi/logos/connells-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/connells-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -376954,7 +377307,7 @@ }, { "question": "Cooper & Tanner", - "icon": "./assets/data/nsi/logos/cooperandtanner-02d235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooperandtanner-02d235.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -376970,7 +377323,7 @@ }, { "question": "Cushman & Wakefield", - "icon": "./assets/data/nsi/logos/cushmanandwakefield-08bb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cushmanandwakefield-08bb13.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377001,7 +377354,7 @@ }, { "question": "Di Jones", - "icon": "./assets/data/nsi/logos/dijones-a43aea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dijones-a43aea.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377017,7 +377370,7 @@ }, { "question": "DNG", - "icon": "./assets/data/nsi/logos/dng-307938.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dng-307938.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377033,7 +377386,7 @@ }, { "question": "Duna House", - "icon": "./assets/data/nsi/logos/dunahouse-e3d705.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dunahouse-e3d705.png", "osmTags": { "and": [ "office=estate_agent", @@ -377049,7 +377402,7 @@ }, { "question": "Edina Realty", - "icon": "./assets/data/nsi/logos/edinarealty-aec949.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edinarealty-aec949.png", "osmTags": { "and": [ "office=estate_agent", @@ -377065,7 +377418,7 @@ }, { "question": "Engel & Völkers", - "icon": "./assets/data/nsi/logos/engelandvolkers-08bb13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/engelandvolkers-08bb13.png", "osmTags": { "and": [ "office=estate_agent", @@ -377081,7 +377434,7 @@ }, { "question": "ERA Immobilier", - "icon": "./assets/data/nsi/logos/eraimmobilier-5155c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eraimmobilier-5155c2.png", "osmTags": { "and": [ "office=estate_agent", @@ -377097,7 +377450,7 @@ }, { "question": "ERA Real Estate", - "icon": "./assets/data/nsi/logos/erarealestate-bdc562.png", + "icon": "https://data.mapcomplete.org/nsi//logos/erarealestate-bdc562.png", "osmTags": { "and": [ "office=estate_agent", @@ -377113,7 +377466,7 @@ }, { "question": "ERA Недвижими имоти", - "icon": "./assets/data/nsi/logos/era-c3df5e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/era-c3df5e.png", "osmTags": { "and": [ "office=estate_agent", @@ -377131,7 +377484,7 @@ }, { "question": "FALC Immobilien", - "icon": "./assets/data/nsi/logos/falcimmobilien-2b2e07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/falcimmobilien-2b2e07.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377147,7 +377500,7 @@ }, { "question": "Felicity J Lord", - "icon": "./assets/data/nsi/logos/felicityjlord-b6a2f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/felicityjlord-b6a2f8.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377163,7 +377516,7 @@ }, { "question": "Fine & Country", - "icon": "./assets/data/nsi/logos/fineandcountry-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fineandcountry-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377179,7 +377532,7 @@ }, { "question": "First National Real Estate", - "icon": "./assets/data/nsi/logos/firstnationalrealestate-54d29c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstnationalrealestate-54d29c.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377195,7 +377548,7 @@ }, { "question": "Fletchers", - "icon": "./assets/data/nsi/logos/fletchers-f2ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fletchers-f2ceb3.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377211,7 +377564,7 @@ }, { "question": "Foncia", - "icon": "./assets/data/nsi/logos/foncia-b7bc37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foncia-b7bc37.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377227,7 +377580,7 @@ }, { "question": "Fox & Sons", - "icon": "./assets/data/nsi/logos/foxandsons-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foxandsons-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377243,7 +377596,7 @@ }, { "question": "Foxtons", - "icon": "./assets/data/nsi/logos/foxtons-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foxtons-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377259,7 +377612,7 @@ }, { "question": "Greenslade Taylor Hunt", - "icon": "./assets/data/nsi/logos/greensladetaylorhunt-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greensladetaylorhunt-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377275,7 +377628,7 @@ }, { "question": "Guy Hoquet", - "icon": "./assets/data/nsi/logos/guyhoquet-ea3ef3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guyhoquet-ea3ef3.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377291,7 +377644,7 @@ }, { "question": "Haart", - "icon": "./assets/data/nsi/logos/haart-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haart-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377307,7 +377660,7 @@ }, { "question": "Hamptons International", - "icon": "./assets/data/nsi/logos/hamptonsinternational-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamptonsinternational-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377324,7 +377677,7 @@ }, { "question": "Harcourts", - "icon": "./assets/data/nsi/logos/harcourts-e2b091.png", + "icon": "https://data.mapcomplete.org/nsi//logos/harcourts-e2b091.png", "osmTags": { "and": [ "office=estate_agent", @@ -377340,16 +377693,16 @@ }, { "question": "Howard Hanna", - "icon": "./assets/data/nsi/logos/howardhanna-aec949.png", + "icon": "https://data.mapcomplete.org/nsi//logos/howardhanna-aec949.png", "osmTags": { "and": [ "office=estate_agent", - "official_name=Howard Hanna Real Estate Services", { "or": [ "brand=Howard Hanna", "brand:wikidata=Q119573413", - "name=Howard Hanna" + "name=Howard Hanna", + "official_name=Howard Hanna Real Estate Services" ] } ] @@ -377357,7 +377710,7 @@ }, { "question": "Human Immobilier", - "icon": "./assets/data/nsi/logos/humanimmobilier-b7bc37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/humanimmobilier-b7bc37.png", "osmTags": { "and": [ "office=estate_agent", @@ -377373,7 +377726,7 @@ }, { "question": "Hunters", - "icon": "./assets/data/nsi/logos/hunters-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hunters-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377389,7 +377742,7 @@ }, { "question": "Jellis Craig", - "icon": "./assets/data/nsi/logos/jelliscraig-f2ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jelliscraig-f2ceb3.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377405,7 +377758,7 @@ }, { "question": "JLL", - "icon": "./assets/data/nsi/logos/jll-08bb13.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jll-08bb13.svg", "osmTags": { "and": [ "office=estate_agent", @@ -377421,7 +377774,7 @@ }, { "question": "John L. Scott", - "icon": "./assets/data/nsi/logos/johnlscott-aec949.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnlscott-aec949.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377437,7 +377790,7 @@ }, { "question": "Jones & Chapman", - "icon": "./assets/data/nsi/logos/jonesandchapman-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jonesandchapman-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -377453,7 +377806,7 @@ }, { "question": "Keatons", - "icon": "./assets/data/nsi/logos/keatons-b6a2f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keatons-b6a2f8.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377469,7 +377822,7 @@ }, { "question": "Keller Williams Realty", - "icon": "./assets/data/nsi/logos/kellerwilliamsrealty-08bb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kellerwilliamsrealty-08bb13.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377485,7 +377838,7 @@ }, { "question": "Knight Frank", - "icon": "./assets/data/nsi/logos/knightfrank-08bb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knightfrank-08bb13.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377501,7 +377854,7 @@ }, { "question": "Laforêt", - "icon": "./assets/data/nsi/logos/laforet-ea3ef3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/laforet-ea3ef3.png", "osmTags": { "and": [ "office=estate_agent", @@ -377517,7 +377870,7 @@ }, { "question": "Leaders", - "icon": "./assets/data/nsi/logos/leaders-02d235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leaders-02d235.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377533,7 +377886,7 @@ }, { "question": "LJ Hooker", - "icon": "./assets/data/nsi/logos/ljhooker-08bb13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ljhooker-08bb13.png", "osmTags": { "and": [ "office=estate_agent", @@ -377549,7 +377902,7 @@ }, { "question": "Long & Foster", - "icon": "./assets/data/nsi/logos/longandfoster-aec949.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longandfoster-aec949.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377565,7 +377918,7 @@ }, { "question": "Manners & Harrison", - "icon": "./assets/data/nsi/logos/mannersandharrison-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mannersandharrison-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377581,7 +377934,7 @@ }, { "question": "Martin & Co", - "icon": "./assets/data/nsi/logos/martinandco-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/martinandco-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -377597,7 +377950,7 @@ }, { "question": "Mayfair Town & Country", - "icon": "./assets/data/nsi/logos/mayfairtownandcountry-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayfairtownandcountry-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377613,7 +377966,7 @@ }, { "question": "McGrath", - "icon": "./assets/data/nsi/logos/mcgrath-d66f4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcgrath-d66f4e.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377629,7 +377982,7 @@ }, { "question": "McMakler", - "icon": "./assets/data/nsi/logos/mcmakler-2b2e07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcmakler-2b2e07.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377645,7 +377998,7 @@ }, { "question": "Nelson Alexander", - "icon": "./assets/data/nsi/logos/nelsonalexander-f2ceb3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nelsonalexander-f2ceb3.png", "osmTags": { "and": [ "office=estate_agent", @@ -377661,7 +378014,7 @@ }, { "question": "Nestenn", - "icon": "./assets/data/nsi/logos/nestenn-b7bc37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nestenn-b7bc37.png", "osmTags": { "and": [ "office=estate_agent", @@ -377677,7 +378030,7 @@ }, { "question": "Nexity", - "icon": "./assets/data/nsi/logos/nexity-b7bc37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nexity-b7bc37.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377693,7 +378046,7 @@ }, { "question": "Orpi", - "icon": "./assets/data/nsi/logos/orpi-ea3ef3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orpi-ea3ef3.png", "osmTags": { "and": [ "office=estate_agent", @@ -377709,7 +378062,7 @@ }, { "question": "Palmer Snell", - "icon": "./assets/data/nsi/logos/palmersnell-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmersnell-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377725,7 +378078,7 @@ }, { "question": "Pam Golding Properties", - "icon": "./assets/data/nsi/logos/pamgoldingproperties-80530e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pamgoldingproperties-80530e.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377741,7 +378094,7 @@ }, { "question": "Parkers", - "icon": "./assets/data/nsi/logos/parkers-02d235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkers-02d235.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377757,7 +378110,7 @@ }, { "question": "Rawson Property Group", - "icon": "./assets/data/nsi/logos/rawsonpropertygroup-0c74af.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rawsonpropertygroup-0c74af.png", "osmTags": { "and": [ "office=estate_agent", @@ -377773,7 +378126,7 @@ }, { "question": "Ray White", - "icon": "./assets/data/nsi/logos/raywhite-85c03d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raywhite-85c03d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377789,7 +378142,7 @@ }, { "question": "RE/MAX", - "icon": "./assets/data/nsi/logos/remax-08bb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/remax-08bb13.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377805,7 +378158,7 @@ }, { "question": "Realty Executives", - "icon": "./assets/data/nsi/logos/realtyexecutives-aec949.png", + "icon": "https://data.mapcomplete.org/nsi//logos/realtyexecutives-aec949.png", "osmTags": { "and": [ "office=estate_agent", @@ -377821,7 +378174,7 @@ }, { "question": "Reeds Rains", - "icon": "./assets/data/nsi/logos/reedsrains-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reedsrains-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377837,7 +378190,7 @@ }, { "question": "Roger Platt", - "icon": "./assets/data/nsi/logos/rogerplatt-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rogerplatt-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -377853,7 +378206,7 @@ }, { "question": "Romans", - "icon": "./assets/data/nsi/logos/romans-02d235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romans-02d235.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377869,7 +378222,7 @@ }, { "question": "Royal LePage", - "icon": "./assets/data/nsi/logos/royallepage-376811.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royallepage-376811.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377885,7 +378238,7 @@ }, { "question": "Savills", - "icon": "./assets/data/nsi/logos/savills-08bb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/savills-08bb13.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377901,7 +378254,7 @@ }, { "question": "Sherry FitzGerald", - "icon": "./assets/data/nsi/logos/sherryfitzgerald-307938.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sherryfitzgerald-307938.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377917,7 +378270,7 @@ }, { "question": "Shipways", - "icon": "./assets/data/nsi/logos/shipways-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shipways-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -377933,7 +378286,7 @@ }, { "question": "Square Habitat", - "icon": "./assets/data/nsi/logos/squarehabitat-b7bc37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/squarehabitat-b7bc37.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377949,7 +378302,7 @@ }, { "question": "Stags", - "icon": "./assets/data/nsi/logos/stags-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stags-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377965,7 +378318,7 @@ }, { "question": "Stéphane Plaza Immobilier", - "icon": "./assets/data/nsi/logos/stephaneplazaimmobilier-b7bc37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stephaneplazaimmobilier-b7bc37.png", "osmTags": { "and": [ "office=estate_agent", @@ -377981,7 +378334,7 @@ }, { "question": "Stirling Ackroyd", - "icon": "./assets/data/nsi/logos/stirlingackroyd-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stirlingackroyd-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -377997,7 +378350,7 @@ }, { "question": "Stone", - "icon": "./assets/data/nsi/logos/stone-d66f4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stone-d66f4e.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378013,7 +378366,7 @@ }, { "question": "Strutt & Parker", - "icon": "./assets/data/nsi/logos/struttandparker-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/struttandparker-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378029,7 +378382,7 @@ }, { "question": "Swetenhams", - "icon": "./assets/data/nsi/logos/swetenhams-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swetenhams-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -378045,7 +378398,7 @@ }, { "question": "Symonds & Sampson", - "icon": "./assets/data/nsi/logos/symondsandsampson-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/symondsandsampson-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378061,7 +378414,7 @@ }, { "question": "Taylors", - "icon": "./assets/data/nsi/logos/taylors-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taylors-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378077,7 +378430,7 @@ }, { "question": "Tecnocasa", - "icon": "./assets/data/nsi/logos/tecnocasa-ed2199.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tecnocasa-ed2199.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378093,7 +378446,7 @@ }, { "question": "Tempocasa", - "icon": "./assets/data/nsi/logos/tempocasa-0731e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tempocasa-0731e9.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378109,7 +378462,7 @@ }, { "question": "Townends", - "icon": "./assets/data/nsi/logos/townends-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townends-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378125,7 +378478,7 @@ }, { "question": "Von Poll Immobilien", - "icon": "./assets/data/nsi/logos/vonpollimmobilien-0fbcd3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vonpollimmobilien-0fbcd3.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378141,7 +378494,7 @@ }, { "question": "von Poll Real Estate", - "icon": "./assets/data/nsi/logos/vonpollrealestate-c99072.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vonpollrealestate-c99072.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378157,7 +378510,7 @@ }, { "question": "Webbers", - "icon": "./assets/data/nsi/logos/webbers-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/webbers-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378173,7 +378526,7 @@ }, { "question": "Weichert, Realtors", - "icon": "./assets/data/nsi/logos/weichert-aec949.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weichert-aec949.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378189,7 +378542,7 @@ }, { "question": "William H. Brown", - "icon": "./assets/data/nsi/logos/williamhbrown-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/williamhbrown-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378205,7 +378558,7 @@ }, { "question": "Windermere Real Estate", - "icon": "./assets/data/nsi/logos/windermererealestate-aa448d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/windermererealestate-aa448d.png", "osmTags": { "and": [ "office=estate_agent", @@ -378221,7 +378574,7 @@ }, { "question": "Winkworth", - "icon": "./assets/data/nsi/logos/winkworth-08bb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winkworth-08bb13.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378237,7 +378590,7 @@ }, { "question": "Your Move", - "icon": "./assets/data/nsi/logos/yourmove-aa448d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yourmove-aa448d.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378253,7 +378606,7 @@ }, { "question": "Адрес недвижими имоти", - "icon": "./assets/data/nsi/logos/address-c3df5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/address-c3df5e.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378300,7 +378653,7 @@ }, { "question": "アパマンショップ", - "icon": "./assets/data/nsi/logos/apamanshop-60400b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apamanshop-60400b.png", "osmTags": { "and": [ "office=estate_agent", @@ -378320,7 +378673,7 @@ }, { "question": "エイブル", - "icon": "./assets/data/nsi/logos/able-60400b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/able-60400b.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378340,7 +378693,7 @@ }, { "question": "センチュリー21", - "icon": "./assets/data/nsi/logos/century21-60400b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/century21-60400b.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378379,7 +378732,7 @@ }, { "question": "ピタットハウス", - "icon": "./assets/data/nsi/logos/pitathouse-60400b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pitathouse-60400b.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378455,7 +378808,7 @@ }, { "question": "三菱UFJ不動産販売", - "icon": "./assets/data/nsi/logos/mitsubishiufjrealestateservices-60400b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mitsubishiufjrealestateservices-60400b.svg", "osmTags": { "and": [ "office=estate_agent", @@ -378475,7 +378828,7 @@ }, { "question": "世紀21 Century 21", - "icon": "./assets/data/nsi/logos/century21-295f7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/century21-295f7a.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378495,7 +378848,7 @@ }, { "question": "中信房屋", - "icon": "./assets/data/nsi/logos/ctbcrealestate-dccb44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ctbcrealestate-dccb44.png", "osmTags": { "and": [ "office=estate_agent", @@ -378519,7 +378872,7 @@ }, { "question": "中原地產 Centaline Property", - "icon": "./assets/data/nsi/logos/centalineproperty-295f7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centalineproperty-295f7a.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378572,7 +378925,7 @@ }, { "question": "信義房屋", - "icon": "./assets/data/nsi/logos/sinyirealty-dccb44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinyirealty-dccb44.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378592,7 +378945,7 @@ }, { "question": "利嘉閣 Ricacorp Properties", - "icon": "./assets/data/nsi/logos/ricacorpproperties-d2db80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ricacorpproperties-d2db80.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378612,7 +378965,7 @@ }, { "question": "台灣房屋", - "icon": "./assets/data/nsi/logos/taiwanrealtyestate-dccb44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanrealtyestate-dccb44.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378684,7 +379037,7 @@ }, { "question": "東森房屋", - "icon": "./assets/data/nsi/logos/easternrealty-dccb44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easternrealty-dccb44.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378708,7 +379061,7 @@ }, { "question": "永慶房屋", - "icon": "./assets/data/nsi/logos/yungching-dccb44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yungching-dccb44.png", "osmTags": { "and": [ "office=estate_agent", @@ -378728,7 +379081,7 @@ }, { "question": "美聯物業 Midland Realty", - "icon": "./assets/data/nsi/logos/midlandrealty-295f7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midlandrealty-295f7a.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378748,7 +379101,7 @@ }, { "question": "链家", - "icon": "./assets/data/nsi/logos/lianjia-3462c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lianjia-3462c2.png", "osmTags": { "and": [ "office=estate_agent", @@ -378768,7 +379121,7 @@ }, { "question": "香港置業 Hong Kong Property", - "icon": "./assets/data/nsi/logos/hongkongproperty-d2db80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongproperty-d2db80.jpg", "osmTags": { "and": [ "office=estate_agent", @@ -378788,7 +379141,7 @@ }, { "question": "Cafpi", - "icon": "./assets/data/nsi/logos/cafpi-1791d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafpi-1791d3.jpg", "osmTags": { "and": [ "office=financial", @@ -378804,7 +379157,7 @@ }, { "question": "CMG Financial", - "icon": "./assets/data/nsi/logos/cmgfinancial-07b653.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cmgfinancial-07b653.jpg", "osmTags": { "and": [ "office=financial", @@ -378820,7 +379173,7 @@ }, { "question": "Cofidis", - "icon": "./assets/data/nsi/logos/cofidis-8d8ca3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cofidis-8d8ca3.svg", "osmTags": { "and": [ "office=financial", @@ -378836,7 +379189,7 @@ }, { "question": "Kerala Financial Corporation", - "icon": "./assets/data/nsi/logos/keralafinancialcorporation-8505f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keralafinancialcorporation-8505f7.png", "osmTags": { "and": [ "office=financial", @@ -378853,16 +379206,16 @@ }, { "question": "Kerala State Financial Enterprises", - "icon": "./assets/data/nsi/logos/ksfe-8505f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ksfe-8505f7.jpg", "osmTags": { "and": [ "office=financial", - "official_name=Kerala State Financial Enterprises", { "or": [ "brand=Kerala State Financial Enterprises", "brand:wikidata=Q6393471", - "name=KSFE" + "name=KSFE", + "official_name=Kerala State Financial Enterprises" ] } ] @@ -378870,7 +379223,7 @@ }, { "question": "Manappuram General Finance and Leasing", - "icon": "./assets/data/nsi/logos/manappuramgeneralfinanceandleasing-8505f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manappuramgeneralfinanceandleasing-8505f7.jpg", "osmTags": { "and": [ "office=financial", @@ -378886,7 +379239,7 @@ }, { "question": "Morgan Stanley", - "icon": "./assets/data/nsi/logos/morganstanley-433028.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morganstanley-433028.jpg", "osmTags": { "and": [ "office=financial", @@ -378902,7 +379255,7 @@ }, { "question": "Muthoot Finance", - "icon": "./assets/data/nsi/logos/muthootfinance-47d4e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/muthootfinance-47d4e7.png", "osmTags": { "and": [ "office=financial", @@ -378918,7 +379271,7 @@ }, { "question": "Old Mutual Finance", - "icon": "./assets/data/nsi/logos/oldmutualfinance-38693f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oldmutualfinance-38693f.png", "osmTags": { "and": [ "office=financial", @@ -378934,7 +379287,7 @@ }, { "question": "Vousfinancer", - "icon": "./assets/data/nsi/logos/vousfinancer-1791d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vousfinancer-1791d3.jpg", "osmTags": { "and": [ "office=financial", @@ -378950,7 +379303,7 @@ }, { "question": "Ymanci", - "icon": "./assets/data/nsi/logos/ymanci-1791d3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ymanci-1791d3.svg", "osmTags": { "and": [ "office=financial", @@ -378982,7 +379335,7 @@ }, { "question": "Ameriprise Financial", - "icon": "./assets/data/nsi/logos/ameriprisefinancial-f55434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameriprisefinancial-f55434.png", "osmTags": { "and": [ "office=financial_advisor", @@ -378998,7 +379351,7 @@ }, { "question": "Charles Schwab", - "icon": "./assets/data/nsi/logos/charlesschwab-f55434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/charlesschwab-f55434.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379014,7 +379367,7 @@ }, { "question": "De Hypotheker", - "icon": "./assets/data/nsi/logos/dehypotheker-59d603.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dehypotheker-59d603.jpg", "osmTags": { "and": [ "office=financial_advisor", @@ -379030,7 +379383,7 @@ }, { "question": "Edward Jones", - "icon": "./assets/data/nsi/logos/edwardjones-ea0e83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edwardjones-ea0e83.jpg", "osmTags": { "and": [ "office=financial_advisor", @@ -379047,7 +379400,7 @@ }, { "question": "Fidelity Investments", - "icon": "./assets/data/nsi/logos/fidelityinvestments-f55434.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelityinvestments-f55434.jpg", "osmTags": { "and": [ "office=financial_advisor", @@ -379064,7 +379417,7 @@ }, { "question": "Merrill Lynch Wealth Management", - "icon": "./assets/data/nsi/logos/merrilllynchwealthmanagement-f55434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/merrilllynchwealthmanagement-f55434.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379080,7 +379433,7 @@ }, { "question": "MLP", - "icon": "./assets/data/nsi/logos/mlp-04d559.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mlp-04d559.svg", "osmTags": { "and": [ "office=financial_advisor", @@ -379096,7 +379449,7 @@ }, { "question": "NM Money", - "icon": "./assets/data/nsi/logos/nmmoney-ce19a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nmmoney-ce19a6.jpg", "osmTags": { "and": [ "office=financial_advisor", @@ -379112,7 +379465,7 @@ }, { "question": "OVB Holding", - "icon": "./assets/data/nsi/logos/ovbholding-04d559.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ovbholding-04d559.svg", "osmTags": { "and": [ "office=financial_advisor", @@ -379128,7 +379481,7 @@ }, { "question": "Raymond James", - "icon": "./assets/data/nsi/logos/raymondjames-ea0e83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raymondjames-ea0e83.jpg", "osmTags": { "and": [ "office=financial_advisor", @@ -379144,7 +379497,7 @@ }, { "question": "RBC Wealth Management", - "icon": "./assets/data/nsi/logos/rbcwealthmanagement-491349.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rbcwealthmanagement-491349.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379160,7 +379513,7 @@ }, { "question": "SageView Advisory Group", - "icon": "./assets/data/nsi/logos/sageviewadvisorygroup-f55434.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sageviewadvisorygroup-f55434.jpg", "osmTags": { "and": [ "office=financial_advisor", @@ -379176,7 +379529,7 @@ }, { "question": "Solva", - "icon": "./assets/data/nsi/logos/solva-255c4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/solva-255c4c.jpg", "osmTags": { "and": [ "office=financial_advisor", @@ -379192,7 +379545,7 @@ }, { "question": "Swiss Life Select", - "icon": "./assets/data/nsi/logos/swisslifeselect-1e9d61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swisslifeselect-1e9d61.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379208,7 +379561,7 @@ }, { "question": "TD Ameritrade", - "icon": "./assets/data/nsi/logos/tdameritrade-f55434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tdameritrade-f55434.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379224,7 +379577,7 @@ }, { "question": "Thrivent", - "icon": "./assets/data/nsi/logos/thrivent-f55434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thrivent-f55434.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379240,7 +379593,7 @@ }, { "question": "UBS Financial Services", - "icon": "./assets/data/nsi/logos/ubsfinancialservices-f55434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ubsfinancialservices-f55434.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379256,7 +379609,7 @@ }, { "question": "Wells Fargo Advisors", - "icon": "./assets/data/nsi/logos/wellsfargoadvisors-f55434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wellsfargoadvisors-f55434.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379288,7 +379641,7 @@ }, { "question": "БКС Мир инвестиций", - "icon": "./assets/data/nsi/logos/bcsfinancialgroup-608a42.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/bcsfinancialgroup-608a42.gif", "osmTags": { "and": [ "office=financial_advisor", @@ -379334,7 +379687,7 @@ }, { "question": "中信建投证券", - "icon": "./assets/data/nsi/logos/chinasecurities-fe1d6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chinasecurities-fe1d6b.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379373,7 +379726,7 @@ }, { "question": "华泰证券", - "icon": "./assets/data/nsi/logos/huataisecurities-fe1d6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/huataisecurities-fe1d6b.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379393,7 +379746,7 @@ }, { "question": "国泰君安证券", - "icon": "./assets/data/nsi/logos/guotaijunansecurities-fe1d6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guotaijunansecurities-fe1d6b.jpg", "osmTags": { "and": [ "office=financial_advisor", @@ -379432,7 +379785,7 @@ }, { "question": "耀才證券 Bright Smart Securities", - "icon": "./assets/data/nsi/logos/brightsmartsecurities-a6a387.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brightsmartsecurities-a6a387.png", "osmTags": { "and": [ "office=financial_advisor", @@ -379550,7 +379903,7 @@ }, { "question": "France Services", - "icon": "./assets/data/nsi/logos/franceservices-9f865c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/franceservices-9f865c.jpg", "osmTags": { "and": [ "office=government", @@ -380131,9 +380484,6 @@ "and": [ "government=public_service", "office=government", - "official_name=Центр государственных и муниципальных услуг \"Мои документы\"", - "official_name:en=Center for State and Municipal Services \"My Documents\"", - "official_name:ru=Центр государственных и муниципальных услуг \"Мои документы\"", "short_name=МФЦ", "short_name:ru=МФЦ", { @@ -380141,7 +380491,10 @@ "brand=Мои документы", "brand:en=My documents", "brand:ru=Мои документы", - "brand:wikidata=Q57449742" + "brand:wikidata=Q57449742", + "official_name=Центр государственных и муниципальных услуг \"Мои документы\"", + "official_name:en=Center for State and Municipal Services \"My Documents\"", + "official_name:ru=Центр государственных и муниципальных услуг \"Мои документы\"" ] } ] @@ -380317,7 +380670,7 @@ }, { "question": "A-MAX Auto Insurance", - "icon": "./assets/data/nsi/logos/amaxautoinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amaxautoinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -380334,7 +380687,7 @@ }, { "question": "AAA Insurance", - "icon": "./assets/data/nsi/logos/aaainsurance-6b1e37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aaainsurance-6b1e37.png", "osmTags": { "and": [ "office=insurance", @@ -380351,7 +380704,7 @@ }, { "question": "Aésio Mutuelle", - "icon": "./assets/data/nsi/logos/aesiomutuelle-8c2e7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aesiomutuelle-8c2e7e.jpg", "osmTags": { "and": [ "office=insurance", @@ -380368,7 +380721,7 @@ }, { "question": "Aflac", - "icon": "./assets/data/nsi/logos/aflac-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aflac-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -380384,7 +380737,7 @@ }, { "question": "Allianz", - "icon": "./assets/data/nsi/logos/allianz-c74935.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allianz-c74935.png", "osmTags": { "and": [ "office=insurance", @@ -380415,7 +380768,7 @@ }, { "question": "Allstate", - "icon": "./assets/data/nsi/logos/allstate-a15ce9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allstate-a15ce9.jpg", "osmTags": { "and": [ "office=insurance", @@ -380431,7 +380784,7 @@ }, { "question": "American Family Insurance", - "icon": "./assets/data/nsi/logos/americanfamilyinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americanfamilyinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -380447,7 +380800,7 @@ }, { "question": "AOK Baden-Württemberg", - "icon": "./assets/data/nsi/logos/aokbadenwurttemberg-acef14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aokbadenwurttemberg-acef14.jpg", "osmTags": { "and": [ "insurance=health", @@ -380464,7 +380817,7 @@ }, { "question": "AOK Bayern", - "icon": "./assets/data/nsi/logos/aokbayern-de4e1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aokbayern-de4e1c.jpg", "osmTags": { "and": [ "insurance=health", @@ -380481,7 +380834,7 @@ }, { "question": "AOK Bremen/Bremerhaven", - "icon": "./assets/data/nsi/logos/aokbremenbremerhaven-b4fc7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aokbremenbremerhaven-b4fc7f.jpg", "osmTags": { "and": [ "insurance=health", @@ -380498,7 +380851,7 @@ }, { "question": "AOK Hessen", - "icon": "./assets/data/nsi/logos/aokhessen-0f1fff.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aokhessen-0f1fff.svg", "osmTags": { "and": [ "insurance=health", @@ -380515,7 +380868,7 @@ }, { "question": "AOK Niedersachsen", - "icon": "./assets/data/nsi/logos/aokniedersachsen-4afeed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aokniedersachsen-4afeed.svg", "osmTags": { "and": [ "insurance=health", @@ -380532,7 +380885,7 @@ }, { "question": "AOK Nordost", - "icon": "./assets/data/nsi/logos/aoknordost-b4a1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aoknordost-b4a1fb.jpg", "osmTags": { "and": [ "insurance=health", @@ -380549,7 +380902,7 @@ }, { "question": "AOK Nordwest", - "icon": "./assets/data/nsi/logos/aoknordwest-e1ae53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aoknordwest-e1ae53.png", "osmTags": { "and": [ "insurance=health", @@ -380566,7 +380919,7 @@ }, { "question": "AOK Plus", - "icon": "./assets/data/nsi/logos/aokplus-6e8fbd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aokplus-6e8fbd.svg", "osmTags": { "and": [ "insurance=health", @@ -380583,7 +380936,7 @@ }, { "question": "AOK Rheinland-Pfalz/Saarland", - "icon": "./assets/data/nsi/logos/aokrheinlandpfalzsaarland-a99a7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aokrheinlandpfalzsaarland-a99a7b.jpg", "osmTags": { "and": [ "insurance=health", @@ -380600,7 +380953,7 @@ }, { "question": "AOK Rheinland/Hamburg", - "icon": "./assets/data/nsi/logos/aokrheinlandhamburg-2c6953.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aokrheinlandhamburg-2c6953.jpg", "osmTags": { "and": [ "insurance=health", @@ -380617,7 +380970,7 @@ }, { "question": "AOK Sachsen-Anhalt", - "icon": "./assets/data/nsi/logos/aoksachsenanhalt-dc3c84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aoksachsenanhalt-dc3c84.jpg", "osmTags": { "and": [ "insurance=health", @@ -380634,7 +380987,7 @@ }, { "question": "ARAG", - "icon": "./assets/data/nsi/logos/arag-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arag-422e71.jpg", "osmTags": { "and": [ "insurance=health", @@ -380651,7 +381004,7 @@ }, { "question": "ARX", - "icon": "./assets/data/nsi/logos/arx-43aba6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arx-43aba6.png", "osmTags": { "and": [ "office=insurance", @@ -380671,7 +381024,7 @@ }, { "question": "Asepeyo", - "icon": "./assets/data/nsi/logos/asepeyo-38d127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asepeyo-38d127.jpg", "osmTags": { "and": [ "office=insurance", @@ -380702,7 +381055,7 @@ }, { "question": "Assu 2000", - "icon": "./assets/data/nsi/logos/assu2000-8c2e7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/assu2000-8c2e7e.jpg", "osmTags": { "and": [ "office=insurance", @@ -380718,7 +381071,7 @@ }, { "question": "Assupol", - "icon": "./assets/data/nsi/logos/assupol-bf6fe2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/assupol-bf6fe2.jpg", "osmTags": { "and": [ "office=insurance", @@ -380734,7 +381087,7 @@ }, { "question": "AssuredPartners", - "icon": "./assets/data/nsi/logos/assuredpartners-a47c9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/assuredpartners-a47c9c.jpg", "osmTags": { "and": [ "office=insurance", @@ -380750,7 +381103,7 @@ }, { "question": "Aviva", - "icon": "./assets/data/nsi/logos/aviva-851fcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aviva-851fcf.jpg", "osmTags": { "and": [ "office=insurance", @@ -380766,7 +381119,7 @@ }, { "question": "AXA", - "icon": "./assets/data/nsi/logos/axa-2e7672.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axa-2e7672.jpg", "osmTags": { "and": [ "office=insurance", @@ -380782,7 +381135,7 @@ }, { "question": "Bahn-BKK", - "icon": "./assets/data/nsi/logos/bahnbkk-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bahnbkk-422e71.jpg", "osmTags": { "and": [ "insurance=health", @@ -380799,7 +381152,7 @@ }, { "question": "Bâloise", - "icon": "./assets/data/nsi/logos/baloise-d9a3dd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/baloise-d9a3dd.svg", "osmTags": { "and": [ "office=insurance", @@ -380815,7 +381168,7 @@ }, { "question": "Banco do Brasil Seguridade", - "icon": "./assets/data/nsi/logos/bancodobrasilseguridade-af18ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bancodobrasilseguridade-af18ad.jpg", "osmTags": { "and": [ "office=insurance", @@ -380832,7 +381185,7 @@ }, { "question": "Bankers Life", - "icon": "./assets/data/nsi/logos/bankerslife-6b1e37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bankerslife-6b1e37.png", "osmTags": { "and": [ "office=insurance", @@ -380848,7 +381201,7 @@ }, { "question": "Barmenia", - "icon": "./assets/data/nsi/logos/barmenia-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barmenia-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -380864,7 +381217,7 @@ }, { "question": "Barmer", - "icon": "./assets/data/nsi/logos/barmer-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barmer-422e71.jpg", "osmTags": { "and": [ "insurance=health", @@ -380881,7 +381234,7 @@ }, { "question": "BGV", - "icon": "./assets/data/nsi/logos/bgv-422e71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bgv-422e71.png", "osmTags": { "and": [ "office=insurance", @@ -380898,7 +381251,7 @@ }, { "question": "BIG Gesundheit", - "icon": "./assets/data/nsi/logos/biggesundheit-422e71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biggesundheit-422e71.png", "osmTags": { "and": [ "insurance=health", @@ -380915,7 +381268,7 @@ }, { "question": "BKK-VBU", - "icon": "./assets/data/nsi/logos/bkkvbu-422e71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bkkvbu-422e71.svg", "osmTags": { "and": [ "insurance=health", @@ -380932,7 +381285,7 @@ }, { "question": "BrokerLink", - "icon": "./assets/data/nsi/logos/brokerlink-0c8028.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brokerlink-0c8028.jpg", "osmTags": { "and": [ "office=insurance", @@ -380948,7 +381301,7 @@ }, { "question": "CAA", - "icon": "./assets/data/nsi/logos/caa-0c8028.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caa-0c8028.png", "osmTags": { "and": [ "office=insurance", @@ -380964,7 +381317,7 @@ }, { "question": "Caser", - "icon": "./assets/data/nsi/logos/caser-38d127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caser-38d127.jpg", "osmTags": { "and": [ "office=insurance", @@ -380980,7 +381333,7 @@ }, { "question": "Catalana Occidente", - "icon": "./assets/data/nsi/logos/catalanaoccidente-38d127.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/catalanaoccidente-38d127.svg", "osmTags": { "and": [ "office=insurance", @@ -380996,7 +381349,7 @@ }, { "question": "Cathay Century Insurance", - "icon": "./assets/data/nsi/logos/cathaycenturyinsurance-6809cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cathaycenturyinsurance-6809cb.jpg", "osmTags": { "and": [ "office=insurance", @@ -381016,16 +381369,16 @@ }, { "question": "CESCE", - "icon": "./assets/data/nsi/logos/cesce-38d127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cesce-38d127.jpg", "osmTags": { "and": [ "office=insurance", - "official_name=Compañía Española de Seguros de Crédito a la Exportación", { "or": [ "brand=CESCE", "brand:wikidata=Q5737049", - "name=CESCE" + "name=CESCE", + "official_name=Compañía Española de Seguros de Crédito a la Exportación" ] } ] @@ -381033,7 +381386,7 @@ }, { "question": "Česká podnikatelská pojišťovna", - "icon": "./assets/data/nsi/logos/ceskapodnikatelskapojistovna-3a544f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskapodnikatelskapojistovna-3a544f.jpg", "osmTags": { "and": [ "office=insurance", @@ -381050,7 +381403,7 @@ }, { "question": "Comparion Insurance Agency", - "icon": "./assets/data/nsi/logos/comparioninsuranceagency-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comparioninsuranceagency-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -381066,7 +381419,7 @@ }, { "question": "Continentale", - "icon": "./assets/data/nsi/logos/continentale-422e71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/continentale-422e71.svg", "osmTags": { "and": [ "insurance=health", @@ -381083,7 +381436,7 @@ }, { "question": "Country Financial", - "icon": "./assets/data/nsi/logos/countryfinancial-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/countryfinancial-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -381114,7 +381467,7 @@ }, { "question": "ČSOB Poisťovňa", - "icon": "./assets/data/nsi/logos/csobpoistovna-780b74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csobpoistovna-780b74.jpg", "osmTags": { "and": [ "office=insurance", @@ -381130,7 +381483,7 @@ }, { "question": "CUK Ubezpieczenia", - "icon": "./assets/data/nsi/logos/cukubezpieczenia-313da8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cukubezpieczenia-313da8.jpg", "osmTags": { "and": [ "office=insurance", @@ -381146,7 +381499,7 @@ }, { "question": "DAK Gesundheit", - "icon": "./assets/data/nsi/logos/dakgesundheit-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dakgesundheit-422e71.jpg", "osmTags": { "and": [ "insurance=health", @@ -381163,7 +381516,7 @@ }, { "question": "Debeka", - "icon": "./assets/data/nsi/logos/debeka-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/debeka-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -381179,7 +381532,7 @@ }, { "question": "Desjardins Insurance", - "icon": "./assets/data/nsi/logos/desjardinsinsurance-0c8028.png", + "icon": "https://data.mapcomplete.org/nsi//logos/desjardinsinsurance-0c8028.png", "osmTags": { "and": [ "office=insurance", @@ -381197,7 +381550,7 @@ }, { "question": "DEVK", - "icon": "./assets/data/nsi/logos/devk-422e71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/devk-422e71.png", "osmTags": { "and": [ "office=insurance", @@ -381213,7 +381566,7 @@ }, { "question": "Direct Auto Insurance", - "icon": "./assets/data/nsi/logos/directautoinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/directautoinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -381229,7 +381582,7 @@ }, { "question": "DKV", - "icon": "./assets/data/nsi/logos/dkv-422e71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dkv-422e71.svg", "osmTags": { "and": [ "insurance=health", @@ -381246,7 +381599,7 @@ }, { "question": "Dôvera", - "icon": "./assets/data/nsi/logos/dovera-780b74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dovera-780b74.png", "osmTags": { "and": [ "insurance=health", @@ -381263,7 +381616,7 @@ }, { "question": "DVV", - "icon": "./assets/data/nsi/logos/dvv-df109b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dvv-df109b.jpg", "osmTags": { "and": [ "office=insurance", @@ -381279,7 +381632,7 @@ }, { "question": "ENSA", - "icon": "./assets/data/nsi/logos/ensa-3c8773.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ensa-3c8773.jpg", "osmTags": { "and": [ "office=insurance", @@ -381295,7 +381648,7 @@ }, { "question": "Ergo", - "icon": "./assets/data/nsi/logos/ergo-38191f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ergo-38191f.jpg", "osmTags": { "and": [ "office=insurance", @@ -381311,7 +381664,7 @@ }, { "question": "Erie Insurance", - "icon": "./assets/data/nsi/logos/erieinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erieinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -381327,7 +381680,7 @@ }, { "question": "Estrella Insurance", - "icon": "./assets/data/nsi/logos/estrellainsurance-6b1e37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/estrellainsurance-6b1e37.png", "osmTags": { "and": [ "office=insurance", @@ -381343,7 +381696,7 @@ }, { "question": "Express Страхування", - "icon": "./assets/data/nsi/logos/020645-43aba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/020645-43aba6.jpg", "osmTags": { "and": [ "office=insurance", @@ -381361,7 +381714,7 @@ }, { "question": "Farm Bureau Financial Services", - "icon": "./assets/data/nsi/logos/farmbureaufinancialservices-6b1e37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmbureaufinancialservices-6b1e37.png", "osmTags": { "and": [ "office=insurance", @@ -381377,7 +381730,7 @@ }, { "question": "Farm Bureau Insurance (Michigan)", - "icon": "./assets/data/nsi/logos/farmbureauinsurance-473946.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmbureauinsurance-473946.png", "osmTags": { "and": [ "office=insurance", @@ -381408,7 +381761,7 @@ }, { "question": "Farmers Insurance", - "icon": "./assets/data/nsi/logos/farmersinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmersinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -381424,7 +381777,7 @@ }, { "question": "Fidelidade", - "icon": "./assets/data/nsi/logos/fidelidade-629ea0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fidelidade-629ea0.png", "osmTags": { "and": [ "office=insurance", @@ -381440,7 +381793,7 @@ }, { "question": "Foyer", - "icon": "./assets/data/nsi/logos/foyer-734c77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foyer-734c77.jpg", "osmTags": { "and": [ "office=insurance", @@ -381456,7 +381809,7 @@ }, { "question": "Fred Loya Insurance", - "icon": "./assets/data/nsi/logos/fredloyainsurance-6b1e37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fredloyainsurance-6b1e37.png", "osmTags": { "and": [ "office=insurance", @@ -381472,7 +381825,7 @@ }, { "question": "Freeway Insurance", - "icon": "./assets/data/nsi/logos/freewayinsurance-6b1e37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/freewayinsurance-6b1e37.png", "osmTags": { "and": [ "office=insurance", @@ -381488,7 +381841,7 @@ }, { "question": "Fremap", - "icon": "./assets/data/nsi/logos/fremap-38d127.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fremap-38d127.png", "osmTags": { "and": [ "office=insurance", @@ -381504,7 +381857,7 @@ }, { "question": "Gan", - "icon": "./assets/data/nsi/logos/gan-6ae572.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gan-6ae572.jpg", "osmTags": { "and": [ "office=insurance", @@ -381520,7 +381873,7 @@ }, { "question": "GEICO", - "icon": "./assets/data/nsi/logos/geico-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geico-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -381536,7 +381889,7 @@ }, { "question": "Generali", - "icon": "./assets/data/nsi/logos/generali-cb13d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generali-cb13d1.jpg", "osmTags": { "and": [ "office=insurance", @@ -381552,7 +381905,7 @@ }, { "question": "Generali Tranquilidade", - "icon": "./assets/data/nsi/logos/generalitranquilidade-629ea0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitranquilidade-629ea0.jpg", "osmTags": { "and": [ "office=insurance", @@ -381568,7 +381921,7 @@ }, { "question": "GMF", - "icon": "./assets/data/nsi/logos/gmf-6ae572.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gmf-6ae572.png", "osmTags": { "and": [ "office=insurance", @@ -381584,7 +381937,7 @@ }, { "question": "Goosehead Insurance", - "icon": "./assets/data/nsi/logos/gooseheadinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gooseheadinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -381600,7 +381953,7 @@ }, { "question": "Gothaer", - "icon": "./assets/data/nsi/logos/gothaer-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gothaer-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -381616,7 +381969,7 @@ }, { "question": "Grange Insurance", - "icon": "./assets/data/nsi/logos/grangeinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grangeinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -381632,7 +381985,7 @@ }, { "question": "Grawe", - "icon": "./assets/data/nsi/logos/grawe-49851b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grawe-49851b.jpg", "osmTags": { "and": [ "office=insurance", @@ -381662,16 +382015,16 @@ }, { "question": "Groupama", - "icon": "./assets/data/nsi/logos/groupama-bb2387.png", + "icon": "https://data.mapcomplete.org/nsi//logos/groupama-bb2387.png", "osmTags": { "and": [ "office=insurance", - "official_name=Groupe des Assurances Mutuelles Agricoles", { "or": [ "brand=Groupama", "brand:wikidata=Q3083531", - "name=Groupama" + "name=Groupama", + "official_name=Groupe des Assurances Mutuelles Agricoles" ] } ] @@ -381679,7 +382032,7 @@ }, { "question": "HanseMerkur", - "icon": "./assets/data/nsi/logos/hansemerkur-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hansemerkur-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -381695,7 +382048,7 @@ }, { "question": "Harmonie Mutuelle", - "icon": "./assets/data/nsi/logos/harmoniemutuelle-8c2e7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harmoniemutuelle-8c2e7e.jpg", "osmTags": { "and": [ "office=insurance", @@ -381711,7 +382064,7 @@ }, { "question": "HDFC Life", - "icon": "./assets/data/nsi/logos/hdfclife-9d27b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hdfclife-9d27b9.jpg", "osmTags": { "and": [ "office=insurance", @@ -381727,7 +382080,7 @@ }, { "question": "HDI", - "icon": "./assets/data/nsi/logos/hdi-422e71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hdi-422e71.svg", "osmTags": { "and": [ "office=insurance", @@ -381743,7 +382096,7 @@ }, { "question": "Helvetia", - "icon": "./assets/data/nsi/logos/helvetia-f9490e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/helvetia-f9490e.png", "osmTags": { "and": [ "office=insurance", @@ -381759,7 +382112,7 @@ }, { "question": "hkk Krankenkasse", - "icon": "./assets/data/nsi/logos/hkkkrankenkasse-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hkkkrankenkasse-422e71.jpg", "osmTags": { "and": [ "insurance=health", @@ -381776,7 +382129,7 @@ }, { "question": "Howden", - "icon": "./assets/data/nsi/logos/howden-23333b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/howden-23333b.jpg", "osmTags": { "and": [ "office=insurance", @@ -381792,7 +382145,7 @@ }, { "question": "HUK-Coburg", - "icon": "./assets/data/nsi/logos/hukcoburg-422e71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hukcoburg-422e71.svg", "osmTags": { "and": [ "office=insurance", @@ -381808,7 +382161,7 @@ }, { "question": "I&G Brokers", - "icon": "./assets/data/nsi/logos/iandgbrokers-ef0911.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iandgbrokers-ef0911.jpg", "osmTags": { "and": [ "office=insurance", @@ -381824,7 +382177,7 @@ }, { "question": "IKK - Die Innovationskasse", - "icon": "./assets/data/nsi/logos/ikkdieinnovationskasse-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikkdieinnovationskasse-422e71.jpg", "osmTags": { "and": [ "insurance=health", @@ -381841,7 +382194,7 @@ }, { "question": "IKK Brandenburg und Berlin", - "icon": "./assets/data/nsi/logos/ikkbrandenburgundberlin-89228e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikkbrandenburgundberlin-89228e.jpg", "osmTags": { "and": [ "insurance=health", @@ -381858,7 +382211,7 @@ }, { "question": "IKK classic", - "icon": "./assets/data/nsi/logos/ikkclassic-422e71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ikkclassic-422e71.png", "osmTags": { "and": [ "insurance=health", @@ -381875,7 +382228,7 @@ }, { "question": "IKK gesund plus", - "icon": "./assets/data/nsi/logos/ikkgesundplus-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikkgesundplus-422e71.jpg", "osmTags": { "and": [ "insurance=health", @@ -381892,7 +382245,7 @@ }, { "question": "IKK Südwest", - "icon": "./assets/data/nsi/logos/ikksudwest-20a36d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikksudwest-20a36d.jpg", "osmTags": { "and": [ "insurance=health", @@ -381909,7 +382262,7 @@ }, { "question": "INGO", - "icon": "./assets/data/nsi/logos/ingo-43aba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ingo-43aba6.jpg", "osmTags": { "and": [ "office=insurance", @@ -381929,7 +382282,7 @@ }, { "question": "Insurance Navy Brokers", - "icon": "./assets/data/nsi/logos/insurancenavybrokers-082118.png", + "icon": "https://data.mapcomplete.org/nsi//logos/insurancenavybrokers-082118.png", "osmTags": { "and": [ "office=insurance", @@ -381945,7 +382298,7 @@ }, { "question": "KKH", - "icon": "./assets/data/nsi/logos/kkh-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kkh-422e71.jpg", "osmTags": { "and": [ "insurance=health", @@ -381962,7 +382315,7 @@ }, { "question": "Knappschaft", - "icon": "./assets/data/nsi/logos/knappschaft-422e71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/knappschaft-422e71.png", "osmTags": { "and": [ "insurance=health", @@ -381979,7 +382332,7 @@ }, { "question": "KOMUNÁLNA poisťovňa", - "icon": "./assets/data/nsi/logos/komunalnapoistovna-780b74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komunalnapoistovna-780b74.jpg", "osmTags": { "and": [ "office=insurance", @@ -381995,7 +382348,7 @@ }, { "question": "Kooperativa", - "icon": "./assets/data/nsi/logos/kooperativa-98fcf6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kooperativa-98fcf6.png", "osmTags": { "and": [ "office=insurance", @@ -382011,7 +382364,7 @@ }, { "question": "LaLux", - "icon": "./assets/data/nsi/logos/lalux-734c77.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lalux-734c77.png", "osmTags": { "and": [ "office=insurance", @@ -382027,7 +382380,7 @@ }, { "question": "LegalWise", - "icon": "./assets/data/nsi/logos/legalwise-bf6fe2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/legalwise-bf6fe2.png", "osmTags": { "and": [ "office=insurance", @@ -382043,7 +382396,7 @@ }, { "question": "Liberty Group Limited", - "icon": "./assets/data/nsi/logos/libertygrouplimited-bf6fe2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libertygrouplimited-bf6fe2.jpg", "osmTags": { "and": [ "office=insurance", @@ -382059,7 +382412,7 @@ }, { "question": "Liberty Mutual Insurance", - "icon": "./assets/data/nsi/logos/libertymutualinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libertymutualinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382075,7 +382428,7 @@ }, { "question": "Liberty Seguros", - "icon": "./assets/data/nsi/logos/libertyseguros-38d127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libertyseguros-38d127.jpg", "osmTags": { "and": [ "office=insurance", @@ -382091,7 +382444,7 @@ }, { "question": "Life Insurance Corporation", - "icon": "./assets/data/nsi/logos/lifeinsurancecorporation-9d27b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifeinsurancecorporation-9d27b9.jpg", "osmTags": { "and": [ "office=insurance", @@ -382108,7 +382461,7 @@ }, { "question": "Línea Directa", - "icon": "./assets/data/nsi/logos/lineadirecta-38d127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lineadirecta-38d127.jpg", "osmTags": { "and": [ "office=insurance", @@ -382124,7 +382477,7 @@ }, { "question": "LVM", - "icon": "./assets/data/nsi/logos/lvm-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lvm-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -382140,7 +382493,7 @@ }, { "question": "MAAF", - "icon": "./assets/data/nsi/logos/maaf-6ae572.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maaf-6ae572.jpg", "osmTags": { "and": [ "office=insurance", @@ -382156,7 +382509,7 @@ }, { "question": "Macif", - "icon": "./assets/data/nsi/logos/macif-8c2e7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/macif-8c2e7e.png", "osmTags": { "and": [ "office=insurance", @@ -382172,16 +382525,16 @@ }, { "question": "Maif", - "icon": "./assets/data/nsi/logos/maif-6ae572.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maif-6ae572.jpg", "osmTags": { "and": [ "office=insurance", - "official_name=Mutuelle d'assurance des instituteurs de France", { "or": [ "brand=Maif", "brand:wikidata=Q3331029", - "name=Maif" + "name=Maif", + "official_name=Mutuelle d'assurance des instituteurs de France" ] } ] @@ -382189,7 +382542,7 @@ }, { "question": "Mapfre", - "icon": "./assets/data/nsi/logos/mapfre-b9b33f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mapfre-b9b33f.jpg", "osmTags": { "and": [ "office=insurance", @@ -382205,7 +382558,7 @@ }, { "question": "Matmut", - "icon": "./assets/data/nsi/logos/matmut-8c2e7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/matmut-8c2e7e.jpg", "osmTags": { "and": [ "office=insurance", @@ -382221,7 +382574,7 @@ }, { "question": "Max Life Insurance", - "icon": "./assets/data/nsi/logos/maxlifeinsurance-9d27b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxlifeinsurance-9d27b9.jpg", "osmTags": { "and": [ "office=insurance", @@ -382237,7 +382590,7 @@ }, { "question": "Mecklenburgische", - "icon": "./assets/data/nsi/logos/mecklenburgische-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mecklenburgische-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -382253,7 +382606,7 @@ }, { "question": "Medibank", - "icon": "./assets/data/nsi/logos/medibank-437259.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/medibank-437259.svg", "osmTags": { "and": [ "insurance=health", @@ -382270,7 +382623,7 @@ }, { "question": "Metropolitan", - "icon": "./assets/data/nsi/logos/metropolitan-bf6fe2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolitan-bf6fe2.jpg", "osmTags": { "and": [ "office=insurance", @@ -382286,7 +382639,7 @@ }, { "question": "Missouri Farm Bureau Insurance", - "icon": "./assets/data/nsi/logos/missourifarmbureauinsurance-2b3a0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missourifarmbureauinsurance-2b3a0f.jpg", "osmTags": { "and": [ "office=insurance", @@ -382302,16 +382655,16 @@ }, { "question": "MMA", - "icon": "./assets/data/nsi/logos/mma-8c2e7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mma-8c2e7e.jpg", "osmTags": { "and": [ "office=insurance", - "official_name=Mutuelles du Mans Assurances", { "or": [ "brand=MMA", "brand:wikidata=Q3331046", - "name=MMA" + "name=MMA", + "official_name=Mutuelles du Mans Assurances" ] } ] @@ -382319,7 +382672,7 @@ }, { "question": "Mutua Madrileña", - "icon": "./assets/data/nsi/logos/mutuamadrilena-38d127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mutuamadrilena-38d127.jpg", "osmTags": { "and": [ "office=insurance", @@ -382335,7 +382688,7 @@ }, { "question": "Mutual of Omaha", - "icon": "./assets/data/nsi/logos/mutualofomaha-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mutualofomaha-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382351,7 +382704,7 @@ }, { "question": "Mutuelle de Poitiers Assurances", - "icon": "./assets/data/nsi/logos/mutuelledepoitiersassurances-8c2e7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mutuelledepoitiersassurances-8c2e7e.png", "osmTags": { "and": [ "office=insurance", @@ -382367,7 +382720,7 @@ }, { "question": "National Insurance Company", - "icon": "./assets/data/nsi/logos/nationalinsurancecompany-9d27b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalinsurancecompany-9d27b9.jpg", "osmTags": { "and": [ "office=insurance", @@ -382383,7 +382736,7 @@ }, { "question": "Nationwide", - "icon": "./assets/data/nsi/logos/nationwide-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationwide-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382399,7 +382752,7 @@ }, { "question": "New India Assurance", - "icon": "./assets/data/nsi/logos/newindiaassurance-9d27b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newindiaassurance-9d27b9.png", "osmTags": { "and": [ "office=insurance", @@ -382415,7 +382768,7 @@ }, { "question": "New York Life", - "icon": "./assets/data/nsi/logos/newyorklife-6b1e37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorklife-6b1e37.png", "osmTags": { "and": [ "office=insurance", @@ -382431,7 +382784,7 @@ }, { "question": "NFU Mutual", - "icon": "./assets/data/nsi/logos/nfumutual-23333b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nfumutual-23333b.jpg", "osmTags": { "and": [ "office=insurance", @@ -382447,16 +382800,16 @@ }, { "question": "NN", - "icon": "./assets/data/nsi/logos/nn-336e34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nn-336e34.png", "osmTags": { "and": [ "office=insurance", - "official_name=Nationale-Nederlanden", { "or": [ "brand=NN", "brand:wikidata=Q1834291", - "name=NN" + "name=NN", + "official_name=Nationale-Nederlanden" ] } ] @@ -382464,7 +382817,7 @@ }, { "question": "Northwestern Mutual", - "icon": "./assets/data/nsi/logos/northwesternmutual-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternmutual-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382480,7 +382833,7 @@ }, { "question": "Nürnberger Versicherung", - "icon": "./assets/data/nsi/logos/nurnberger-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nurnberger-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -382496,7 +382849,7 @@ }, { "question": "Ocaso", - "icon": "./assets/data/nsi/logos/ocaso-ff07dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocaso-ff07dc.jpg", "osmTags": { "and": [ "office=insurance", @@ -382512,7 +382865,7 @@ }, { "question": "Old Mutual Insure", - "icon": "./assets/data/nsi/logos/oldmutualinsure-170662.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oldmutualinsure-170662.png", "osmTags": { "and": [ "office=insurance", @@ -382528,16 +382881,16 @@ }, { "question": "ÖVB", - "icon": "./assets/data/nsi/logos/ovb-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ovb-422e71.jpg", "osmTags": { "and": [ "office=insurance", - "official_name=Öffentliche Versicherung Bremen", { "or": [ "brand=ÖVB", "brand:wikidata=Q294253", - "name=ÖVB" + "name=ÖVB", + "official_name=Öffentliche Versicherung Bremen" ] } ] @@ -382545,7 +382898,7 @@ }, { "question": "Pelayo", - "icon": "./assets/data/nsi/logos/pelayo-38d127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pelayo-38d127.jpg", "osmTags": { "and": [ "office=insurance", @@ -382561,7 +382914,7 @@ }, { "question": "Primerica", - "icon": "./assets/data/nsi/logos/primerica-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primerica-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382577,7 +382930,7 @@ }, { "question": "Progressive", - "icon": "./assets/data/nsi/logos/progressive-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/progressive-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382593,7 +382946,7 @@ }, { "question": "Provinzial", - "icon": "./assets/data/nsi/logos/provinzial-422e71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinzial-422e71.svg", "osmTags": { "and": [ "office=insurance", @@ -382609,7 +382962,7 @@ }, { "question": "Prudential", - "icon": "./assets/data/nsi/logos/prudential-8102ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prudential-8102ff.jpg", "osmTags": { "and": [ "office=insurance", @@ -382625,7 +382978,7 @@ }, { "question": "Prudential Financial", - "icon": "./assets/data/nsi/logos/prudentialfinancial-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prudentialfinancial-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382641,7 +382994,7 @@ }, { "question": "PZU", - "icon": "./assets/data/nsi/logos/pzu-33d2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pzu-33d2fe.jpg", "osmTags": { "and": [ "office=insurance", @@ -382657,7 +383010,7 @@ }, { "question": "R+V Versicherung", - "icon": "./assets/data/nsi/logos/rvversicherung-422e71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rvversicherung-422e71.png", "osmTags": { "and": [ "office=insurance", @@ -382673,17 +383026,17 @@ }, { "question": "RACQ", - "icon": "./assets/data/nsi/logos/racq-57ff94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/racq-57ff94.jpg", "osmTags": { "and": [ "office=insurance", - "official_name=Royal Automobile Club of Queensland", { "or": [ "brand=RACQ", "brand:short=RACQ", "brand:wikidata=Q16822163", - "name=RACQ" + "name=RACQ", + "official_name=Royal Automobile Club of Queensland" ] } ] @@ -382691,7 +383044,7 @@ }, { "question": "Reale", - "icon": "./assets/data/nsi/logos/reale-fe9c1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reale-fe9c1d.jpg", "osmTags": { "and": [ "office=insurance", @@ -382707,7 +383060,7 @@ }, { "question": "Santa Lucía", - "icon": "./assets/data/nsi/logos/santalucia-38d127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santalucia-38d127.jpg", "osmTags": { "and": [ "office=insurance", @@ -382723,7 +383076,7 @@ }, { "question": "SBI General Insurance", - "icon": "./assets/data/nsi/logos/sbigeneralinsurance-9d27b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbigeneralinsurance-9d27b9.jpg", "osmTags": { "and": [ "office=insurance", @@ -382739,7 +383092,7 @@ }, { "question": "SDI Broker", - "icon": "./assets/data/nsi/logos/sdibroker-ef0911.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sdibroker-ef0911.png", "osmTags": { "and": [ "office=insurance", @@ -382755,7 +383108,7 @@ }, { "question": "Shelter Insurance", - "icon": "./assets/data/nsi/logos/shelterinsurance-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shelterinsurance-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382786,7 +383139,7 @@ }, { "question": "Signal Iduna", - "icon": "./assets/data/nsi/logos/signaliduna-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/signaliduna-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -382802,7 +383155,7 @@ }, { "question": "Sociálna poisťovňa", - "icon": "./assets/data/nsi/logos/socialnapoistovna-780b74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/socialnapoistovna-780b74.jpg", "osmTags": { "and": [ "office=insurance", @@ -382819,7 +383172,7 @@ }, { "question": "STABILITA", - "icon": "./assets/data/nsi/logos/stabilita-780b74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stabilita-780b74.jpg", "osmTags": { "and": [ "office=insurance", @@ -382835,7 +383188,7 @@ }, { "question": "State Farm", - "icon": "./assets/data/nsi/logos/statefarm-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/statefarm-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382851,7 +383204,7 @@ }, { "question": "Sun Life Financial", - "icon": "./assets/data/nsi/logos/sunlifefinancial-0c8028.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sunlifefinancial-0c8028.png", "osmTags": { "and": [ "office=insurance", @@ -382867,7 +383220,7 @@ }, { "question": "SV SparkassenVersicherung", - "icon": "./assets/data/nsi/logos/svsparkassenversicherung-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/svsparkassenversicherung-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -382883,7 +383236,7 @@ }, { "question": "Swinton", - "icon": "./assets/data/nsi/logos/swinton-23333b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swinton-23333b.jpg", "osmTags": { "and": [ "office=insurance", @@ -382899,7 +383252,7 @@ }, { "question": "Swiss Life", - "icon": "./assets/data/nsi/logos/swisslife-aab9d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisslife-aab9d2.jpg", "osmTags": { "and": [ "office=insurance", @@ -382915,7 +383268,7 @@ }, { "question": "Techniker Krankenkasse", - "icon": "./assets/data/nsi/logos/technikerkrankenkasse-422e71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technikerkrankenkasse-422e71.png", "osmTags": { "and": [ "insurance=health", @@ -382933,7 +383286,7 @@ }, { "question": "Texas Farm Bureau Insurance", - "icon": "./assets/data/nsi/logos/texasfarmbureauinsurance-92243f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasfarmbureauinsurance-92243f.jpg", "osmTags": { "and": [ "office=insurance", @@ -382949,7 +383302,7 @@ }, { "question": "The Co-operators", - "icon": "./assets/data/nsi/logos/thecooperators-0c8028.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecooperators-0c8028.jpg", "osmTags": { "and": [ "office=insurance", @@ -382965,7 +383318,7 @@ }, { "question": "The Hartford", - "icon": "./assets/data/nsi/logos/thehartford-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehartford-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -382981,7 +383334,7 @@ }, { "question": "The Oriental Insurance Company", - "icon": "./assets/data/nsi/logos/theorientalinsurancecompany-9d27b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/theorientalinsurancecompany-9d27b9.png", "osmTags": { "and": [ "office=insurance", @@ -383014,7 +383367,7 @@ }, { "question": "Union", - "icon": "./assets/data/nsi/logos/union-780b74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/union-780b74.jpg", "osmTags": { "and": [ "office=insurance", @@ -383030,7 +383383,7 @@ }, { "question": "UnipolSai", - "icon": "./assets/data/nsi/logos/unipolsai-7d926c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unipolsai-7d926c.jpg", "osmTags": { "and": [ "office=insurance", @@ -383046,7 +383399,7 @@ }, { "question": "Uniqa", - "icon": "./assets/data/nsi/logos/uniqa-dc7360.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniqa-dc7360.png", "osmTags": { "and": [ "office=insurance", @@ -383062,7 +383415,7 @@ }, { "question": "United Healthcare", - "icon": "./assets/data/nsi/logos/unitedhealthcare-6b1e37.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedhealthcare-6b1e37.svg", "osmTags": { "and": [ "office=insurance", @@ -383078,7 +383431,7 @@ }, { "question": "United India Insurance Company", - "icon": "./assets/data/nsi/logos/unitedindiainsurancecompany-9d27b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedindiainsurancecompany-9d27b9.jpg", "osmTags": { "and": [ "office=insurance", @@ -383094,7 +383447,7 @@ }, { "question": "Universa", - "icon": "./assets/data/nsi/logos/universa-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universa-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -383110,7 +383463,7 @@ }, { "question": "Universalna", - "icon": "./assets/data/nsi/logos/universalna-43aba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universalna-43aba6.jpg", "osmTags": { "and": [ "office=insurance", @@ -383130,7 +383483,7 @@ }, { "question": "USG", - "icon": "./assets/data/nsi/logos/usg-43aba6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/usg-43aba6.png", "osmTags": { "and": [ "office=insurance", @@ -383150,16 +383503,16 @@ }, { "question": "VGH", - "icon": "./assets/data/nsi/logos/vgh-422e71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vgh-422e71.png", "osmTags": { "and": [ "office=insurance", - "official_name=VGH Versicherungen", { "or": [ "brand=VGH", "brand:wikidata=Q2505942", - "name=VGH" + "name=VGH", + "official_name=VGH Versicherungen" ] } ] @@ -383167,7 +383520,7 @@ }, { "question": "VidaCaixa", - "icon": "./assets/data/nsi/logos/vidacaixa-38d127.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vidacaixa-38d127.png", "osmTags": { "and": [ "office=insurance", @@ -383183,7 +383536,7 @@ }, { "question": "Vittoria Assicurazioni", - "icon": "./assets/data/nsi/logos/vittoriaassicurazioni-7d926c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vittoriaassicurazioni-7d926c.png", "osmTags": { "and": [ "office=insurance", @@ -383199,7 +383552,7 @@ }, { "question": "Všeobecná zdravotná poisťovňa", - "icon": "./assets/data/nsi/logos/vseobecnazdravotnapoistovna-780b74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vseobecnazdravotnapoistovna-780b74.jpg", "osmTags": { "and": [ "insurance=health", @@ -383217,7 +383570,7 @@ }, { "question": "VUSO", - "icon": "./assets/data/nsi/logos/vuso-43aba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vuso-43aba6.jpg", "osmTags": { "and": [ "office=insurance", @@ -383237,7 +383590,7 @@ }, { "question": "Warta", - "icon": "./assets/data/nsi/logos/warta-313da8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warta-313da8.jpg", "osmTags": { "and": [ "office=insurance", @@ -383253,7 +383606,7 @@ }, { "question": "WFG National Title Company", - "icon": "./assets/data/nsi/logos/wfgnationaltitleinsurancecompany-6b1e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wfgnationaltitleinsurancecompany-6b1e37.jpg", "osmTags": { "and": [ "office=insurance", @@ -383269,7 +383622,7 @@ }, { "question": "Wiener Städtische Versicherung", - "icon": "./assets/data/nsi/logos/wienerstadtischeversicherung-4ff154.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienerstadtischeversicherung-4ff154.jpg", "osmTags": { "and": [ "office=insurance", @@ -383285,7 +383638,7 @@ }, { "question": "Württembergische", - "icon": "./assets/data/nsi/logos/wurttembergische-422e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wurttembergische-422e71.jpg", "osmTags": { "and": [ "office=insurance", @@ -383301,7 +383654,7 @@ }, { "question": "Wüstenrot", - "icon": "./assets/data/nsi/logos/wustenrot-4e7038.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wustenrot-4e7038.jpg", "osmTags": { "and": [ "office=insurance", @@ -383317,7 +383670,7 @@ }, { "question": "Zurich", - "icon": "./assets/data/nsi/logos/zurich-2d6c95.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zurich-2d6c95.svg", "osmTags": { "and": [ "office=insurance", @@ -383347,7 +383700,7 @@ }, { "question": "Армеец", - "icon": "./assets/data/nsi/logos/039307-ef0911.png", + "icon": "https://data.mapcomplete.org/nsi//logos/039307-ef0911.png", "osmTags": { "and": [ "office=insurance", @@ -383391,7 +383744,7 @@ }, { "question": "Белгосстрах", - "icon": "./assets/data/nsi/logos/belgosstrakh-fe8e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belgosstrakh-fe8e31.jpg", "osmTags": { "and": [ "office=insurance", @@ -383427,7 +383780,7 @@ }, { "question": "ДЗИ", - "icon": "./assets/data/nsi/logos/be0548-ef0911.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/be0548-ef0911.jpg", "osmTags": { "and": [ "office=insurance", @@ -383443,7 +383796,7 @@ }, { "question": "Дунав осигурање", - "icon": "./assets/data/nsi/logos/dunavosiguranje-29f839.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunavosiguranje-29f839.jpg", "osmTags": { "and": [ "office=insurance", @@ -383461,7 +383814,7 @@ }, { "question": "Ингосстрах", - "icon": "./assets/data/nsi/logos/ingosstrakh-1dd572.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ingosstrakh-1dd572.jpg", "osmTags": { "and": [ "office=insurance", @@ -383496,7 +383849,7 @@ }, { "question": "Капитал Медицинское Страхование", - "icon": "./assets/data/nsi/logos/352df3-1dd572.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/352df3-1dd572.jpg", "osmTags": { "and": [ "office=insurance", @@ -383512,7 +383865,7 @@ }, { "question": "Княжа", - "icon": "./assets/data/nsi/logos/7df9f6-43aba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7df9f6-43aba6.jpg", "osmTags": { "and": [ "office=insurance", @@ -383528,7 +383881,7 @@ }, { "question": "ЛевИнс", - "icon": "./assets/data/nsi/logos/levins-ef0911.png", + "icon": "https://data.mapcomplete.org/nsi//logos/levins-ef0911.png", "osmTags": { "and": [ "office=insurance", @@ -383546,7 +383899,7 @@ }, { "question": "Мусала", - "icon": "./assets/data/nsi/logos/mussala-ef0911.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mussala-ef0911.jpg", "osmTags": { "and": [ "office=insurance", @@ -383564,7 +383917,7 @@ }, { "question": "ОЗК", - "icon": "./assets/data/nsi/logos/1fa45d-ef0911.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1fa45d-ef0911.jpg", "osmTags": { "and": [ "office=insurance", @@ -383580,7 +383933,7 @@ }, { "question": "Оранта", - "icon": "./assets/data/nsi/logos/oranta-43aba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oranta-43aba6.jpg", "osmTags": { "and": [ "office=insurance", @@ -383600,7 +383953,7 @@ }, { "question": "Ренессанс страхование", - "icon": "./assets/data/nsi/logos/cbfb4b-1dd572.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cbfb4b-1dd572.png", "osmTags": { "and": [ "office=insurance", @@ -383616,7 +383969,7 @@ }, { "question": "РЕСО-Гарантия", - "icon": "./assets/data/nsi/logos/resoguarantee-1dd572.png", + "icon": "https://data.mapcomplete.org/nsi//logos/resoguarantee-1dd572.png", "osmTags": { "and": [ "office=insurance", @@ -383636,7 +383989,7 @@ }, { "question": "Росгосстрах", - "icon": "./assets/data/nsi/logos/7de24f-1dd572.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7de24f-1dd572.jpg", "osmTags": { "and": [ "office=insurance", @@ -383652,7 +384005,7 @@ }, { "question": "Согласие", - "icon": "./assets/data/nsi/logos/soglasie-1dd572.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/soglasie-1dd572.jpg", "osmTags": { "and": [ "office=insurance", @@ -383672,7 +384025,7 @@ }, { "question": "ТАС", - "icon": "./assets/data/nsi/logos/tas-43aba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tas-43aba6.jpg", "osmTags": { "and": [ "office=insurance", @@ -383706,7 +384059,7 @@ }, { "question": "არდი", - "icon": "./assets/data/nsi/logos/ardi-bd4122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ardi-bd4122.jpg", "osmTags": { "and": [ "office=insurance", @@ -383727,7 +384080,7 @@ }, { "question": "თიბისი დაზღვევა", - "icon": "./assets/data/nsi/logos/tbcinsurance-bd4122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tbcinsurance-bd4122.jpg", "osmTags": { "and": [ "office=insurance", @@ -383768,7 +384121,7 @@ }, { "question": "ირაო", - "icon": "./assets/data/nsi/logos/irao-bd4122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irao-bd4122.jpg", "osmTags": { "and": [ "office=insurance", @@ -383789,7 +384142,7 @@ }, { "question": "ჯი პი აი", - "icon": "./assets/data/nsi/logos/gpi-bd4122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gpi-bd4122.jpg", "osmTags": { "and": [ "office=insurance", @@ -383827,14 +384180,14 @@ "osmTags": { "and": [ "office=insurance", - "official_name:fr=Caisse Nationale des Assurances Sociales des Travailleurs Salariés", { "or": [ "brand=الصندوق الوطني للتأمينات الاجتماعية للعمال الأجراء", "brand:wikidata=Q42343122", "name=الصندوق الوطني للتأمينات الاجتماعية للعمال الأجراء", "name:ar=CNAS الصندوق الوطني للضمان الاجتماعي للعمال الأجراء", - "name:fr=CNAS" + "name:fr=CNAS", + "official_name:fr=Caisse Nationale des Assurances Sociales des Travailleurs Salariés" ] } ] @@ -383856,7 +384209,7 @@ }, { "question": "بیمه ایران", - "icon": "./assets/data/nsi/logos/iraninsurance-cf8369.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iraninsurance-cf8369.jpg", "osmTags": { "and": [ "office=insurance", @@ -383913,7 +384266,7 @@ }, { "question": "中国人民保险", - "icon": "./assets/data/nsi/logos/picc-07bd2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/picc-07bd2d.png", "osmTags": { "and": [ "office=insurance", @@ -383953,7 +384306,7 @@ }, { "question": "中国平安", - "icon": "./assets/data/nsi/logos/pingan-07bd2d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pingan-07bd2d.svg", "osmTags": { "and": [ "office=insurance", @@ -383974,7 +384327,7 @@ }, { "question": "中國人壽", - "icon": "./assets/data/nsi/logos/chinalifeinsurance-6809cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinalifeinsurance-6809cb.jpg", "osmTags": { "and": [ "office=insurance", @@ -383997,7 +384350,7 @@ }, { "question": "中國人壽(海外) China Life Insurance (Overseas)", - "icon": "./assets/data/nsi/logos/chinalifeinsuranceoverseas-6b61cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chinalifeinsuranceoverseas-6b61cd.png", "osmTags": { "and": [ "office=insurance", @@ -384043,7 +384396,7 @@ }, { "question": "兆豐保險", - "icon": "./assets/data/nsi/logos/chungkuoinsurance-6809cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chungkuoinsurance-6809cb.png", "osmTags": { "and": [ "office=insurance", @@ -384064,7 +384417,7 @@ }, { "question": "全球人壽", - "icon": "./assets/data/nsi/logos/transglobelife-6809cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transglobelife-6809cb.jpg", "osmTags": { "and": [ "office=insurance", @@ -384084,7 +384437,7 @@ }, { "question": "台灣人壽", - "icon": "./assets/data/nsi/logos/taiwanlifeinsurance-6809cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanlifeinsurance-6809cb.jpg", "osmTags": { "and": [ "office=insurance", @@ -384105,7 +384458,7 @@ }, { "question": "太平洋保险", - "icon": "./assets/data/nsi/logos/cpic-07bd2d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpic-07bd2d.svg", "osmTags": { "and": [ "office=insurance", @@ -384126,7 +384479,7 @@ }, { "question": "日本生命", - "icon": "./assets/data/nsi/logos/nipponlife-7cc2d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nipponlife-7cc2d1.jpg", "osmTags": { "and": [ "office=insurance", @@ -384147,7 +384500,7 @@ }, { "question": "明治安田生命", - "icon": "./assets/data/nsi/logos/meijiyasudalife-7cc2d1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/meijiyasudalife-7cc2d1.svg", "osmTags": { "and": [ "office=insurance", @@ -384167,7 +384520,7 @@ }, { "question": "泰安產物保險", - "icon": "./assets/data/nsi/logos/taianinsurance-6809cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taianinsurance-6809cb.jpg", "osmTags": { "and": [ "office=insurance", @@ -384187,7 +384540,7 @@ }, { "question": "第一生命", - "icon": "./assets/data/nsi/logos/daiichilife-7cc2d1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/daiichilife-7cc2d1.svg", "osmTags": { "and": [ "office=insurance", @@ -384262,7 +384615,7 @@ }, { "question": "Meta", - "icon": "./assets/data/nsi/logos/meta-124efb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meta-124efb.png", "osmTags": { "and": [ "office=it", @@ -384294,7 +384647,7 @@ }, { "question": "Salesforce", - "icon": "./assets/data/nsi/logos/salesforce-124efb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salesforce-124efb.jpg", "osmTags": { "and": [ "office=it", @@ -384310,7 +384663,7 @@ }, { "question": "TeamLogic IT", - "icon": "./assets/data/nsi/logos/teamlogicit-560843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teamlogicit-560843.jpg", "osmTags": { "and": [ "office=it", @@ -384326,7 +384679,7 @@ }, { "question": "Твій час", - "icon": "./assets/data/nsi/logos/8833b6-c6f3a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/8833b6-c6f3a5.jpg", "osmTags": { "and": [ "office=it", @@ -384342,7 +384695,7 @@ }, { "question": "Becker Büttner Held", - "icon": "./assets/data/nsi/logos/beckerbuttnerheld-8a02aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/beckerbuttnerheld-8a02aa.svg", "osmTags": { "and": [ "office=lawyer", @@ -384359,7 +384712,7 @@ }, { "question": "Dentons", - "icon": "./assets/data/nsi/logos/dentons-0fb954.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dentons-0fb954.png", "osmTags": { "and": [ "office=lawyer", @@ -384375,16 +384728,16 @@ }, { "question": "Fisher & Phillips", - "icon": "./assets/data/nsi/logos/fisherphillips-b93f35.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fisherphillips-b93f35.png", "osmTags": { "and": [ "office=lawyer", - "official_name=Fisher & Phillips", { "or": [ "brand=Fisher & Phillips", "brand:wikidata=Q16993410", - "name=Fisher Phillips" + "name=Fisher Phillips", + "official_name=Fisher & Phillips" ] } ] @@ -384392,16 +384745,16 @@ }, { "question": "Foley", - "icon": "./assets/data/nsi/logos/foley-2b4d11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foley-2b4d11.jpg", "osmTags": { "and": [ "office=lawyer", - "official_name=Foley & Lardner LLP", { "or": [ "brand=Foley", "brand:wikidata=Q5464319", - "name=Foley" + "name=Foley", + "official_name=Foley & Lardner LLP" ] } ] @@ -384409,7 +384762,7 @@ }, { "question": "Görg", - "icon": "./assets/data/nsi/logos/gorg-8a02aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gorg-8a02aa.png", "osmTags": { "and": [ "office=lawyer", @@ -384425,7 +384778,7 @@ }, { "question": "GSK Stockmann", - "icon": "./assets/data/nsi/logos/gskstockmann-8a02aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gskstockmann-8a02aa.png", "osmTags": { "and": [ "office=lawyer", @@ -384441,7 +384794,7 @@ }, { "question": "Morgan & Morgan", - "icon": "./assets/data/nsi/logos/morganandmorgan-1353b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/morganandmorgan-1353b6.png", "osmTags": { "and": [ "office=lawyer", @@ -384457,7 +384810,7 @@ }, { "question": "Shine Lawyers", - "icon": "./assets/data/nsi/logos/shinelawyers-22d653.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shinelawyers-22d653.jpg", "osmTags": { "and": [ "office=lawyer", @@ -384487,7 +384840,7 @@ }, { "question": "Averitt Express", - "icon": "./assets/data/nsi/logos/averittexpress-6e9d18.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/averittexpress-6e9d18.svg", "osmTags": { "and": [ "office=logistics", @@ -384503,7 +384856,7 @@ }, { "question": "DHL", - "icon": "./assets/data/nsi/logos/dhl-00dcbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhl-00dcbe.jpg", "osmTags": { "and": [ "office=logistics", @@ -384603,7 +384956,7 @@ }, { "question": "Ameris Bank", - "icon": "./assets/data/nsi/logos/amerisbank-477daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amerisbank-477daa.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384619,7 +384972,7 @@ }, { "question": "CrossCountry Mortgage", - "icon": "./assets/data/nsi/logos/crosscountrymortgage-f8ef9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crosscountrymortgage-f8ef9d.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384635,7 +384988,7 @@ }, { "question": "De Hypotheekshop", - "icon": "./assets/data/nsi/logos/dehypotheekshop-7b513e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dehypotheekshop-7b513e.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384651,7 +385004,7 @@ }, { "question": "De Hypotheker", - "icon": "./assets/data/nsi/logos/dehypotheker-7b513e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dehypotheker-7b513e.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384667,7 +385020,7 @@ }, { "question": "Embrace Financial Services", - "icon": "./assets/data/nsi/logos/embracefinancialservices-3afe40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/embracefinancialservices-3afe40.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384683,7 +385036,7 @@ }, { "question": "Guaranteed Rate", - "icon": "./assets/data/nsi/logos/guaranteedrate-f8ef9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guaranteedrate-f8ef9d.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384699,7 +385052,7 @@ }, { "question": "Guild Mortgage Company", - "icon": "./assets/data/nsi/logos/guildmortgagecompany-f8ef9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guildmortgagecompany-f8ef9d.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384715,7 +385068,7 @@ }, { "question": "Huis & Hypotheek", - "icon": "./assets/data/nsi/logos/huisandhypotheek-7b513e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huisandhypotheek-7b513e.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384731,7 +385084,7 @@ }, { "question": "loanDepot", - "icon": "./assets/data/nsi/logos/loandepot-f8ef9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/loandepot-f8ef9d.png", "osmTags": { "and": [ "office=mortgage", @@ -384747,7 +385100,7 @@ }, { "question": "Novus Home Mortgage", - "icon": "./assets/data/nsi/logos/novushomemortgage-f8ef9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novushomemortgage-f8ef9d.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384763,7 +385116,7 @@ }, { "question": "ooba", - "icon": "./assets/data/nsi/logos/ooba-d5488f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ooba-d5488f.jpg", "osmTags": { "and": [ "office=mortgage", @@ -384779,7 +385132,7 @@ }, { "question": "Les Déménageurs Bretons", - "icon": "./assets/data/nsi/logos/lesdemenageursbretons-05c8b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lesdemenageursbretons-05c8b7.jpg", "osmTags": { "and": [ "office=moving_company", @@ -384795,7 +385148,7 @@ }, { "question": "Two Men and a Truck", - "icon": "./assets/data/nsi/logos/twomenandatruck-1df089.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/twomenandatruck-1df089.jpg", "osmTags": { "and": [ "office=moving_company", @@ -384850,7 +385203,7 @@ }, { "question": "AAP", - "icon": "./assets/data/nsi/logos/aamaadmiparty-88c6e5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aamaadmiparty-88c6e5.svg", "osmTags": { "and": [ "office=political_party", @@ -384893,7 +385246,7 @@ }, { "question": "BJP", - "icon": "./assets/data/nsi/logos/bhartiyajantaparty-88c6e5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bhartiyajantaparty-88c6e5.svg", "osmTags": { "and": [ "office=political_party", @@ -384908,7 +385261,7 @@ }, { "question": "Bündnis 90/Die Grünen", - "icon": "./assets/data/nsi/logos/bundnis90diegrunen-212c6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundnis90diegrunen-212c6d.jpg", "osmTags": { "and": [ "office=political_party", @@ -384923,7 +385276,7 @@ }, { "question": "CDU", - "icon": "./assets/data/nsi/logos/cdu-212c6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cdu-212c6d.jpg", "osmTags": { "and": [ "office=political_party", @@ -384938,7 +385291,7 @@ }, { "question": "CSU", - "icon": "./assets/data/nsi/logos/csu-212c6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csu-212c6d.jpg", "osmTags": { "and": [ "office=political_party", @@ -384953,7 +385306,7 @@ }, { "question": "Die Linke", - "icon": "./assets/data/nsi/logos/dielinke-212c6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dielinke-212c6d.jpg", "osmTags": { "and": [ "office=political_party", @@ -384968,7 +385321,7 @@ }, { "question": "FDP", - "icon": "./assets/data/nsi/logos/fdp-212c6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fdp-212c6d.jpg", "osmTags": { "and": [ "office=political_party", @@ -384983,7 +385336,7 @@ }, { "question": "INC", - "icon": "./assets/data/nsi/logos/indiannationalcongress-88c6e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indiannationalcongress-88c6e5.jpg", "osmTags": { "and": [ "office=political_party", @@ -384998,7 +385351,7 @@ }, { "question": "PCF", - "icon": "./assets/data/nsi/logos/particommunistefrancais-ed1753.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/particommunistefrancais-ed1753.jpg", "osmTags": { "and": [ "office=political_party", @@ -385014,7 +385367,7 @@ }, { "question": "PDP", - "icon": "./assets/data/nsi/logos/pdp-a60dd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pdp-a60dd5.jpg", "osmTags": { "and": [ "office=political_party", @@ -385029,7 +385382,7 @@ }, { "question": "SPD", - "icon": "./assets/data/nsi/logos/spd-212c6d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/spd-212c6d.svg", "osmTags": { "and": [ "office=political_party", @@ -385058,7 +385411,7 @@ }, { "question": "Allied Universal", - "icon": "./assets/data/nsi/logos/allieduniversal-8dcc43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allieduniversal-8dcc43.jpg", "osmTags": { "and": [ "office=security", @@ -385074,7 +385427,7 @@ }, { "question": "Securitas", - "icon": "./assets/data/nsi/logos/securitas-1f2ee5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/securitas-1f2ee5.svg", "osmTags": { "and": [ "office=security", @@ -385091,13 +385444,10 @@ }, { "question": "セコム", - "icon": "./assets/data/nsi/logos/secom-2b5b95.png", + "icon": "https://data.mapcomplete.org/nsi//logos/secom-2b5b95.png", "osmTags": { "and": [ "office=security", - "official_name=セコムショップ", - "official_name:en=SECOM Shop", - "official_name:ja=セコムショップ", { "or": [ "brand=セコム", @@ -385106,7 +385456,10 @@ "brand:wikidata=Q858957", "name=セコム", "name:en=SECOM", - "name:ja=セコム" + "name:ja=セコム", + "official_name=セコムショップ", + "official_name:en=SECOM Shop", + "official_name:ja=セコムショップ" ] } ] @@ -385114,7 +385467,7 @@ }, { "question": "Block Advisors", - "icon": "./assets/data/nsi/logos/blockadvisors-53d576.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blockadvisors-53d576.jpg", "osmTags": { "and": [ "office=tax_advisor", @@ -385130,7 +385483,7 @@ }, { "question": "H&R Block", - "icon": "./assets/data/nsi/logos/handrblock-c966c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/handrblock-c966c8.jpg", "osmTags": { "and": [ "office=tax_advisor", @@ -385146,16 +385499,16 @@ }, { "question": "Jackson Hewitt", - "icon": "./assets/data/nsi/logos/jacksonhewitt-53d576.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonhewitt-53d576.jpg", "osmTags": { "and": [ "office=tax_advisor", - "official_name=Jackson Hewitt Tax Service", { "or": [ "brand=Jackson Hewitt", "brand:wikidata=Q6117132", - "name=Jackson Hewitt" + "name=Jackson Hewitt", + "official_name=Jackson Hewitt Tax Service" ] } ] @@ -385163,7 +385516,7 @@ }, { "question": "Liberty Tax", - "icon": "./assets/data/nsi/logos/libertytax-15740c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/libertytax-15740c.png", "osmTags": { "and": [ "office=tax_advisor", @@ -385180,7 +385533,7 @@ }, { "question": "Lohnsteuerhilfe Baden-Württemberg", - "icon": "./assets/data/nsi/logos/lohnsteuerhilfebadenwurttemberg-7fe1b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lohnsteuerhilfebadenwurttemberg-7fe1b3.jpg", "osmTags": { "and": [ "office=tax_advisor", @@ -385196,7 +385549,7 @@ }, { "question": "Lohnsteuerhilfe Bayern", - "icon": "./assets/data/nsi/logos/lohnsteuerhilfebayern-8e1f0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lohnsteuerhilfebayern-8e1f0d.png", "osmTags": { "and": [ "office=tax_advisor", @@ -385212,7 +385565,7 @@ }, { "question": "Steuerring", - "icon": "./assets/data/nsi/logos/steuerring-02f00c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/steuerring-02f00c.png", "osmTags": { "and": [ "office=tax_advisor", @@ -385228,7 +385581,7 @@ }, { "question": "TaxAssist Accountants", - "icon": "./assets/data/nsi/logos/taxassistaccountants-6972d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taxassistaccountants-6972d1.jpg", "osmTags": { "and": [ "office=tax_advisor", @@ -385244,7 +385597,7 @@ }, { "question": "Vereinigte Lohnsteuerhilfe", - "icon": "./assets/data/nsi/logos/vereinigtelohnsteuerhilfe-02f00c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vereinigtelohnsteuerhilfe-02f00c.jpg", "osmTags": { "and": [ "office=tax_advisor", @@ -385274,7 +385627,7 @@ }, { "question": "Antik Telecom", - "icon": "./assets/data/nsi/logos/antiktelecom-dd32b3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/antiktelecom-dd32b3.png", "osmTags": { "and": [ "office=telecommunication", @@ -385290,7 +385643,7 @@ }, { "question": "AT&T", - "icon": "./assets/data/nsi/logos/atandt-d4bcbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atandt-d4bcbe.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385306,7 +385659,7 @@ }, { "question": "Azercell", - "icon": "./assets/data/nsi/logos/azercell-898395.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/azercell-898395.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385322,7 +385675,7 @@ }, { "question": "Beeline", - "icon": "./assets/data/nsi/logos/beeline-2f71de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beeline-2f71de.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385352,7 +385705,7 @@ }, { "question": "du", - "icon": "./assets/data/nsi/logos/du-0eff00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/du-0eff00.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385368,16 +385721,16 @@ }, { "question": "ETECSA", - "icon": "./assets/data/nsi/logos/etecsa-0b19c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etecsa-0b19c8.jpg", "osmTags": { "and": [ "office=telecommunication", - "official_name=Empresa de Telecomunicaciones de Cuba", { "or": [ "brand=ETECSA", "brand:wikidata=Q490323", - "name=ETECSA" + "name=ETECSA", + "official_name=Empresa de Telecomunicaciones de Cuba" ] } ] @@ -385399,7 +385752,7 @@ }, { "question": "Indosat Ooredoo", - "icon": "./assets/data/nsi/logos/indosatooredoo-89d943.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/indosatooredoo-89d943.svg", "osmTags": { "and": [ "office=telecommunication", @@ -385416,7 +385769,7 @@ }, { "question": "izzi", - "icon": "./assets/data/nsi/logos/izzi-66ddc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/izzi-66ddc0.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385432,7 +385785,7 @@ }, { "question": "Kcell", - "icon": "./assets/data/nsi/logos/kcell-4679e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kcell-4679e0.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385462,20 +385815,20 @@ }, { "question": "NTT", - "icon": "./assets/data/nsi/logos/ntt-54abba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntt-54abba.jpg", "osmTags": { "and": [ "office=telecommunication", - "official_name=日本電信電話", - "official_name:en=Nippon Telegraph and Telephone", - "official_name:ja=日本電信電話", - "official_name:ja-Latn=Nippon Denshin Denwa", { "or": [ "alt_name=エヌ・ティ・ティ", "brand=NTT", "brand:wikidata=Q1054787", - "name=NTT" + "name=NTT", + "official_name=日本電信電話", + "official_name:en=Nippon Telegraph and Telephone", + "official_name:ja=日本電信電話", + "official_name:ja-Latn=Nippon Denshin Denwa" ] } ] @@ -385511,7 +385864,7 @@ }, { "question": "R", - "icon": "./assets/data/nsi/logos/r-b26dcd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/r-b26dcd.svg", "osmTags": { "and": [ "office=telecommunication", @@ -385527,7 +385880,7 @@ }, { "question": "Rostelecom", - "icon": "./assets/data/nsi/logos/rostelecom-2921eb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rostelecom-2921eb.svg", "osmTags": { "and": [ "office=telecommunication", @@ -385549,7 +385902,7 @@ }, { "question": "Team Telecom Armenia", - "icon": "./assets/data/nsi/logos/teamtelecomarmenia-2921eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teamtelecomarmenia-2921eb.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385571,7 +385924,7 @@ }, { "question": "Telecomm-Telégrafos", - "icon": "./assets/data/nsi/logos/telecommtelegrafos-66ddc0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/telecommtelegrafos-66ddc0.png", "osmTags": { "and": [ "office=telecommunication", @@ -385587,7 +385940,7 @@ }, { "question": "Telkomsel", - "icon": "./assets/data/nsi/logos/telkomsel-89d943.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telkomsel-89d943.svg", "osmTags": { "and": [ "office=telecommunication", @@ -385603,7 +385956,7 @@ }, { "question": "Telmex", - "icon": "./assets/data/nsi/logos/telmex-66ddc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telmex-66ddc0.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385619,7 +385972,7 @@ }, { "question": "Totalplay", - "icon": "./assets/data/nsi/logos/totalplay-66ddc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/totalplay-66ddc0.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385649,7 +386002,7 @@ }, { "question": "Ucom", - "icon": "./assets/data/nsi/logos/ucom-2921eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ucom-2921eb.png", "osmTags": { "and": [ "office=telecommunication", @@ -385671,7 +386024,7 @@ }, { "question": "Viva MTS", - "icon": "./assets/data/nsi/logos/vivamts-2921eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivamts-2921eb.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385693,7 +386046,7 @@ }, { "question": "XL Axiata", - "icon": "./assets/data/nsi/logos/xlaxiata-89d943.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xlaxiata-89d943.png", "osmTags": { "and": [ "office=telecommunication", @@ -385710,7 +386063,7 @@ }, { "question": "Билайн", - "icon": "./assets/data/nsi/logos/beeline-f03186.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beeline-f03186.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385804,7 +386157,7 @@ }, { "question": "სილქნეტი", - "icon": "./assets/data/nsi/logos/silknet-0ca315.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/silknet-0ca315.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385826,7 +386179,7 @@ }, { "question": "زين السعودية", - "icon": "./assets/data/nsi/logos/zainsaudiarabia-d23a06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zainsaudiarabia-d23a06.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385847,7 +386200,7 @@ }, { "question": "شركة اتحاد عذيب للاتصالات", - "icon": "./assets/data/nsi/logos/etihadatheebtelecom-d23a06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etihadatheebtelecom-d23a06.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385868,7 +386221,7 @@ }, { "question": "شركة الاتصالات السعودية", - "icon": "./assets/data/nsi/logos/sauditelecomcompany-d23a06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sauditelecomcompany-d23a06.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385888,7 +386241,7 @@ }, { "question": "موبايلي", - "icon": "./assets/data/nsi/logos/mobily-d23a06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobily-d23a06.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385908,7 +386261,7 @@ }, { "question": "موبيليس", - "icon": "./assets/data/nsi/logos/mobilis-c9e0b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobilis-c9e0b0.jpg", "osmTags": { "and": [ "office=telecommunication", @@ -385928,16 +386281,16 @@ }, { "question": "CFDT", - "icon": "./assets/data/nsi/logos/cfdt-98227a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cfdt-98227a.svg", "osmTags": { "and": [ "office=union", - "official_name=Confédération française démocratique du travail", { "or": [ "brand=CFDT", "brand:wikidata=Q1125605", - "name=CFDT" + "name=CFDT", + "official_name=Confédération française démocratique du travail" ] } ] @@ -385945,16 +386298,16 @@ }, { "question": "CFE-CGC", - "icon": "./assets/data/nsi/logos/cfecgc-98227a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cfecgc-98227a.png", "osmTags": { "and": [ "office=union", - "official_name=Confédération française de l'encadrement - Confédération générale des cadres", { "or": [ "brand=CFE-CGC", "brand:wikidata=Q2992730", - "name=CFE-CGC" + "name=CFE-CGC", + "official_name=Confédération française de l'encadrement - Confédération générale des cadres" ] } ] @@ -385962,16 +386315,16 @@ }, { "question": "CFTC", - "icon": "./assets/data/nsi/logos/cftc-98227a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cftc-98227a.jpg", "osmTags": { "and": [ "office=union", - "official_name=Confédération française des travailleurs chrétiens", { "or": [ "brand=CFTC", "brand:wikidata=Q1125610", - "name=CFTC" + "name=CFTC", + "official_name=Confédération française des travailleurs chrétiens" ] } ] @@ -385979,16 +386332,16 @@ }, { "question": "CGT", - "icon": "./assets/data/nsi/logos/cgt-98227a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cgt-98227a.svg", "osmTags": { "and": [ "office=union", - "official_name=Confédération générale du travail", { "or": [ "brand=CGT", "brand:wikidata=Q1125638", - "name=CGT" + "name=CGT", + "official_name=Confédération générale du travail" ] } ] @@ -385996,16 +386349,16 @@ }, { "question": "DGB", - "icon": "./assets/data/nsi/logos/dgb-321fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dgb-321fbc.jpg", "osmTags": { "and": [ "office=union", - "official_name=Deutscher Gewerkschaftsbund", { "or": [ "brand=DGB", "brand:wikidata=Q586581", - "name=DGB" + "name=DGB", + "official_name=Deutscher Gewerkschaftsbund" ] } ] @@ -386013,16 +386366,16 @@ }, { "question": "EVG", - "icon": "./assets/data/nsi/logos/evg-321fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evg-321fbc.jpg", "osmTags": { "and": [ "office=union", - "official_name=Eisenbahn- und Verkehrsgewerkschaft", { "or": [ "brand=EVG", "brand:wikidata=Q1311386", - "name=EVG" + "name=EVG", + "official_name=Eisenbahn- und Verkehrsgewerkschaft" ] } ] @@ -386030,16 +386383,16 @@ }, { "question": "FO", - "icon": "./assets/data/nsi/logos/fo-98227a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fo-98227a.png", "osmTags": { "and": [ "office=union", - "official_name=Force ouvrière", { "or": [ "brand=FO", "brand:wikidata=Q1125623", - "name=FO" + "name=FO", + "official_name=Force ouvrière" ] } ] @@ -386047,16 +386400,16 @@ }, { "question": "FSE", - "icon": "./assets/data/nsi/logos/fse-98227a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fse-98227a.png", "osmTags": { "and": [ "office=union", - "official_name=Fédération syndicale étudiante", { "or": [ "brand=FSE", "brand:wikidata=Q109037715", - "name=FSE" + "name=FSE", + "official_name=Fédération syndicale étudiante" ] } ] @@ -386064,16 +386417,16 @@ }, { "question": "GdP", - "icon": "./assets/data/nsi/logos/gdp-321fbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gdp-321fbc.png", "osmTags": { "and": [ "office=union", - "official_name=Gewerkschaft der Polizei", { "or": [ "brand=GdP", "brand:wikidata=Q314080", - "name=GdP" + "name=GdP", + "official_name=Gewerkschaft der Polizei" ] } ] @@ -386081,16 +386434,16 @@ }, { "question": "GEW", - "icon": "./assets/data/nsi/logos/gew-321fbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gew-321fbc.png", "osmTags": { "and": [ "office=union", - "official_name=Gewerkschaft Erziehung und Wissenschaft", { "or": [ "brand=GEW", "brand:wikidata=Q325778", - "name=GEW" + "name=GEW", + "official_name=Gewerkschaft Erziehung und Wissenschaft" ] } ] @@ -386098,16 +386451,16 @@ }, { "question": "IG BAU", - "icon": "./assets/data/nsi/logos/igbau-321fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/igbau-321fbc.jpg", "osmTags": { "and": [ "office=union", - "official_name=IG Bauen-Agrar-Umwelt", { "or": [ "brand=IG BAU", "brand:wikidata=Q896472", - "name=IG BAU" + "name=IG BAU", + "official_name=IG Bauen-Agrar-Umwelt" ] } ] @@ -386115,16 +386468,16 @@ }, { "question": "IG BCE", - "icon": "./assets/data/nsi/logos/igbce-321fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/igbce-321fbc.jpg", "osmTags": { "and": [ "office=union", - "official_name=IG Bergbau, Chemie, Energie", { "or": [ "brand=IG BCE", "brand:wikidata=Q871045", - "name=IG BCE" + "name=IG BCE", + "official_name=IG Bergbau, Chemie, Energie" ] } ] @@ -386132,17 +386485,17 @@ }, { "question": "IG Metall", - "icon": "./assets/data/nsi/logos/igmetall-321fbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/igmetall-321fbc.png", "osmTags": { "and": [ "office=union", - "official_name=Industriegewerkschaft Metall", { "or": [ "brand=IG Metall", "brand:short=IGM", "brand:wikidata=Q694821", - "name=IG Metall" + "name=IG Metall", + "official_name=Industriegewerkschaft Metall" ] } ] @@ -386150,16 +386503,16 @@ }, { "question": "NGG", - "icon": "./assets/data/nsi/logos/ngg-321fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ngg-321fbc.jpg", "osmTags": { "and": [ "office=union", - "official_name=Gewerkschaft Nahrung-Genuss-Gaststätten", { "or": [ "brand=NGG", "brand:wikidata=Q896313", - "name=NGG" + "name=NGG", + "official_name=Gewerkschaft Nahrung-Genuss-Gaststätten" ] } ] @@ -386167,16 +386520,16 @@ }, { "question": "SESL", - "icon": "./assets/data/nsi/logos/sesl-98227a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sesl-98227a.png", "osmTags": { "and": [ "office=union", - "official_name=Solidaires étudiant-e-s", { "or": [ "brand=SESL", "brand:wikidata=Q16677410", - "name=SESL" + "name=SESL", + "official_name=Solidaires étudiant-e-s" ] } ] @@ -386184,16 +386537,16 @@ }, { "question": "Solidaires", - "icon": "./assets/data/nsi/logos/solidaires-98227a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/solidaires-98227a.jpg", "osmTags": { "and": [ "office=union", - "official_name=Union syndicale Solidaires", { "or": [ "brand=Solidaires", "brand:wikidata=Q3550610", - "name=Solidaires" + "name=Solidaires", + "official_name=Union syndicale Solidaires" ] } ] @@ -386201,16 +386554,16 @@ }, { "question": "UE", - "icon": "./assets/data/nsi/logos/ue-98227a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ue-98227a.jpg", "osmTags": { "and": [ "office=union", - "official_name=Union étudiante", { "or": [ "brand=UE", "brand:wikidata=Q117428377", - "name=UE" + "name=UE", + "official_name=Union étudiante" ] } ] @@ -386218,16 +386571,16 @@ }, { "question": "UNEF", - "icon": "./assets/data/nsi/logos/unef-98227a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unef-98227a.jpg", "osmTags": { "and": [ "office=union", - "official_name=Union nationale des étudiants de France", { "or": [ "brand=UNEF", "brand:wikidata=Q910798", - "name=UNEF" + "name=UNEF", + "official_name=Union nationale des étudiants de France" ] } ] @@ -386235,16 +386588,16 @@ }, { "question": "ver.di", - "icon": "./assets/data/nsi/logos/verdi-321fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verdi-321fbc.jpg", "osmTags": { "and": [ "office=union", - "official_name=Vereinte Dienstleistungsgewerkschaft", { "or": [ "brand=ver.di", "brand:wikidata=Q547951", - "name=ver.di" + "name=ver.di", + "official_name=Vereinte Dienstleistungsgewerkschaft" ] } ] @@ -386252,7 +386605,7 @@ }, { "question": "AFGRI Equipment", - "icon": "./assets/data/nsi/logos/afgriequipment-e0de78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/afgriequipment-e0de78.jpg", "osmTags": { "and": [ "shop=agrarian", @@ -386283,7 +386636,7 @@ }, { "question": "Coastals", - "icon": "./assets/data/nsi/logos/coastals-ed1376.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coastals-ed1376.jpg", "osmTags": { "and": [ "shop=agrarian", @@ -386299,7 +386652,7 @@ }, { "question": "Felleskjøpet", - "icon": "./assets/data/nsi/logos/felleskjopet-461c53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/felleskjopet-461c53.jpg", "osmTags": { "and": [ "shop=agrarian", @@ -386329,17 +386682,17 @@ }, { "question": "Southern States", - "icon": "./assets/data/nsi/logos/southernstates-0f40aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southernstates-0f40aa.png", "osmTags": { "and": [ "agrarian=seed;feed;tools", - "official_name=Southern States Cooperative", "shop=agrarian", { "or": [ "brand=Southern States", "brand:wikidata=Q7570508", - "name=Southern States" + "name=Southern States", + "official_name=Southern States Cooperative" ] } ] @@ -386347,7 +386700,7 @@ }, { "question": "UFA", - "icon": "./assets/data/nsi/logos/ufa-700bc3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ufa-700bc3.svg", "osmTags": { "and": [ "shop=agrarian", @@ -386363,7 +386716,7 @@ }, { "question": "Wilco", - "icon": "./assets/data/nsi/logos/wilco-25b295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilco-25b295.jpg", "osmTags": { "and": [ "shop=agrarian", @@ -386380,7 +386733,7 @@ }, { "question": "ZG Raiffeisen Agrar", - "icon": "./assets/data/nsi/logos/zgraiffeisenagrar-a7a5a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zgraiffeisenagrar-a7a5a6.jpg", "osmTags": { "and": [ "shop=agrarian", @@ -386396,7 +386749,7 @@ }, { "question": "ZG Raiffeisen Technik", - "icon": "./assets/data/nsi/logos/zgraiffeisentechnik-a7a5a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zgraiffeisentechnik-a7a5a6.jpg", "osmTags": { "and": [ "agrarian=machine_parts", @@ -386413,6 +386766,7 @@ }, { "question": "1. day", + "icon": "https://data.mapcomplete.org/nsi//logos/1day-41aec7.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -386428,7 +386782,7 @@ }, { "question": "ABC (North Carolina)", - "icon": "./assets/data/nsi/logos/abc-bba101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abc-bba101.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -386444,7 +386798,7 @@ }, { "question": "Alcohol & Tabakoff", - "icon": "./assets/data/nsi/logos/alcoholandtabakoff-059946.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alcoholandtabakoff-059946.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -386460,7 +386814,7 @@ }, { "question": "Alko", - "icon": "./assets/data/nsi/logos/alko-d1a8a4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alko-d1a8a4.svg", "osmTags": { "and": [ "shop=alcohol", @@ -386476,7 +386830,7 @@ }, { "question": "Bargain Booze", - "icon": "./assets/data/nsi/logos/bargainbooze-30632a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bargainbooze-30632a.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -386492,7 +386846,7 @@ }, { "question": "Barrique", - "icon": "./assets/data/nsi/logos/barrique-c5afd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barrique-c5afd8.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -386508,7 +386862,7 @@ }, { "question": "BC Liquor Store", - "icon": "./assets/data/nsi/logos/bcliquorstore-0c8640.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcliquorstore-0c8640.svg", "osmTags": { "and": [ "shop=alcohol", @@ -386524,7 +386878,7 @@ }, { "question": "Beer Market", - "icon": "./assets/data/nsi/logos/beermarket-345467.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beermarket-345467.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -386542,13 +386896,13 @@ "question": "Bevco", "osmTags": { "and": [ - "official_name=Kerala State Beverages Corporation Ltd", "shop=alcohol", { "or": [ "brand=Bevco", "brand:wikidata=Q6393413", - "name=Bevco" + "name=Bevco", + "official_name=Kerala State Beverages Corporation Ltd" ] } ] @@ -386556,7 +386910,7 @@ }, { "question": "BevMo!", - "icon": "./assets/data/nsi/logos/bevmo-2740a5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bevmo-2740a5.svg", "osmTags": { "and": [ "shop=alcohol", @@ -386662,7 +387016,7 @@ }, { "question": "Boxer Liquors", - "icon": "./assets/data/nsi/logos/boxerliquors-a774d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boxerliquors-a774d1.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -386812,7 +387166,7 @@ }, { "question": "Duży Ben", - "icon": "./assets/data/nsi/logos/duzyben-48eb32.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/duzyben-48eb32.svg", "osmTags": { "and": [ "shop=alcohol", @@ -386828,7 +387182,7 @@ }, { "question": "Fine Wine & Good Spirits", - "icon": "./assets/data/nsi/logos/finewineandgoodspirits-76c257.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/finewineandgoodspirits-76c257.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -386874,7 +387228,7 @@ }, { "question": "Good Beer", - "icon": "./assets/data/nsi/logos/goodbeer-345467.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodbeer-345467.png", "osmTags": { "and": [ "shop=alcohol", @@ -386905,7 +387259,7 @@ }, { "question": "Hop Hey", - "icon": "./assets/data/nsi/logos/hophey-345467.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hophey-345467.png", "osmTags": { "and": [ "shop=alcohol", @@ -386921,7 +387275,7 @@ }, { "question": "La Cervoiserie", - "icon": "./assets/data/nsi/logos/lacervoiserie-f2c698.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lacervoiserie-f2c698.png", "osmTags": { "and": [ "shop=alcohol", @@ -386951,7 +387305,7 @@ }, { "question": "LCBO", - "icon": "./assets/data/nsi/logos/lcbo-19c622.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lcbo-19c622.svg", "osmTags": { "and": [ "shop=alcohol", @@ -387058,7 +387412,7 @@ }, { "question": "LiquorShop Checkers", - "icon": "./assets/data/nsi/logos/liquorshopcheckers-588b80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liquorshopcheckers-588b80.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387074,7 +387428,7 @@ }, { "question": "LiquorShop Shoprite", - "icon": "./assets/data/nsi/logos/liquorshopshoprite-af1a8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liquorshopshoprite-af1a8e.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387120,7 +387474,7 @@ }, { "question": "Mitra", - "icon": "./assets/data/nsi/logos/mitra-e09280.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mitra-e09280.svg", "osmTags": { "and": [ "shop=alcohol", @@ -387166,7 +387520,7 @@ }, { "question": "New Hampshire Liquor & Wine Outlet", - "icon": "./assets/data/nsi/logos/newhampshireliquorandwineoutlet-05db77.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/newhampshireliquorandwineoutlet-05db77.svg", "osmTags": { "and": [ "shop=alcohol", @@ -387183,7 +387537,7 @@ }, { "question": "Nicolas", - "icon": "./assets/data/nsi/logos/nicolas-699bfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nicolas-699bfb.png", "osmTags": { "and": [ "shop=alcohol", @@ -387244,7 +387598,7 @@ }, { "question": "Pick n Pay Liquor", - "icon": "./assets/data/nsi/logos/picknpayliquor-fa6f87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/picknpayliquor-fa6f87.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387370,7 +387724,7 @@ }, { "question": "Sobeys Liquor", - "icon": "./assets/data/nsi/logos/sobeysliquor-c2c781.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sobeysliquor-c2c781.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387416,7 +387770,7 @@ }, { "question": "Systembolaget", - "icon": "./assets/data/nsi/logos/systembolaget-9afe69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/systembolaget-9afe69.png", "osmTags": { "and": [ "shop=alcohol", @@ -387432,7 +387786,7 @@ }, { "question": "The Beer Store", - "icon": "./assets/data/nsi/logos/thebeerstore-19c622.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thebeerstore-19c622.png", "osmTags": { "and": [ "shop=alcohol", @@ -387510,13 +387864,13 @@ "question": "Total Wine", "osmTags": { "and": [ - "official_name=Total Wine & More", "shop=alcohol", { "or": [ "brand=Total Wine", "brand:wikidata=Q7828084", - "name=Total Wine" + "name=Total Wine", + "official_name=Total Wine & More" ] } ] @@ -387539,7 +387893,7 @@ }, { "question": "V and B", - "icon": "./assets/data/nsi/logos/vandb-f2c698.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vandb-f2c698.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387555,7 +387909,7 @@ }, { "question": "Vinmonopolet", - "icon": "./assets/data/nsi/logos/vinmonopolet-af24f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vinmonopolet-af24f5.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387586,7 +387940,7 @@ }, { "question": "Virginia ABC", - "icon": "./assets/data/nsi/logos/virginiaabc-85cc28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiaabc-85cc28.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387661,7 +388015,7 @@ }, { "question": "Ароматный мир", - "icon": "./assets/data/nsi/logos/5a713f-b9f2fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/5a713f-b9f2fe.png", "osmTags": { "and": [ "shop=alcohol", @@ -387706,7 +388060,7 @@ }, { "question": "Бристоль", - "icon": "./assets/data/nsi/logos/69bf4f-b9f2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/69bf4f-b9f2fe.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387722,7 +388076,7 @@ }, { "question": "Винлаб", - "icon": "./assets/data/nsi/logos/41aea9-b9f2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/41aea9-b9f2fe.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387752,7 +388106,7 @@ }, { "question": "Главпиво", - "icon": "./assets/data/nsi/logos/8e7c78-b9f2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/8e7c78-b9f2fe.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387811,7 +388165,7 @@ }, { "question": "Красное&Белое", - "icon": "./assets/data/nsi/logos/45d784-b9f2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/45d784-b9f2fe.jpg", "osmTags": { "and": [ "shop=alcohol", @@ -387890,7 +388244,7 @@ }, { "question": "Норман", - "icon": "./assets/data/nsi/logos/norman-b9f2fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norman-b9f2fe.png", "osmTags": { "and": [ "shop=alcohol", @@ -388050,7 +388404,7 @@ }, { "question": "Чарка до свята", - "icon": "./assets/data/nsi/logos/1898a0-345467.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/1898a0-345467.gif", "osmTags": { "and": [ "shop=alcohol", @@ -388125,7 +388479,7 @@ }, { "question": "リカーマウンテン", - "icon": "./assets/data/nsi/logos/liquormountain-42f62c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liquormountain-42f62c.png", "osmTags": { "and": [ "shop=alcohol", @@ -388145,7 +388499,7 @@ }, { "question": "アニメイト", - "icon": "./assets/data/nsi/logos/animate-12d6d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/animate-12d6d6.jpg", "osmTags": { "and": [ "shop=anime", @@ -388165,7 +388519,7 @@ }, { "question": "ケイ・ブックス", - "icon": "./assets/data/nsi/logos/kbooks-12d6d6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kbooks-12d6d6.png", "osmTags": { "and": [ "shop=anime", @@ -388185,7 +388539,7 @@ }, { "question": "ジャンプショップ", - "icon": "./assets/data/nsi/logos/jumpshop-12d6d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jumpshop-12d6d6.jpg", "osmTags": { "and": [ "shop=anime", @@ -388205,7 +388559,7 @@ }, { "question": "ポケモンセンター", - "icon": "./assets/data/nsi/logos/pokemoncenter-12d6d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pokemoncenter-12d6d6.jpg", "osmTags": { "and": [ "shop=anime", @@ -388225,7 +388579,7 @@ }, { "question": "まんだらけ", - "icon": "./assets/data/nsi/logos/mandarake-12d6d6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mandarake-12d6d6.png", "osmTags": { "and": [ "shop=anime", @@ -388245,7 +388599,7 @@ }, { "question": "らしんばん", - "icon": "./assets/data/nsi/logos/lashinbang-12d6d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lashinbang-12d6d6.jpg", "osmTags": { "and": [ "shop=anime", @@ -388265,7 +388619,7 @@ }, { "question": "Appliance Repair by Asurion", - "icon": "./assets/data/nsi/logos/appliancerepairbyasurion-70060f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appliancerepairbyasurion-70060f.png", "osmTags": { "and": [ "shop=appliance", @@ -388281,7 +388635,7 @@ }, { "question": "Arçelik", - "icon": "./assets/data/nsi/logos/arcelik-f0338d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arcelik-f0338d.png", "osmTags": { "and": [ "shop=appliance", @@ -388297,7 +388651,7 @@ }, { "question": "Beko", - "icon": "./assets/data/nsi/logos/beko-7f4aaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beko-7f4aaf.jpg", "osmTags": { "and": [ "shop=appliance", @@ -388313,7 +388667,7 @@ }, { "question": "Beko (Georgia)", - "icon": "./assets/data/nsi/logos/beko-5f01e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beko-5f01e3.jpg", "osmTags": { "and": [ "shop=appliance", @@ -388345,7 +388699,7 @@ }, { "question": "Profilo", - "icon": "./assets/data/nsi/logos/profilo-f0338d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/profilo-f0338d.svg", "osmTags": { "and": [ "shop=appliance", @@ -388361,7 +388715,7 @@ }, { "question": "Tien21", - "icon": "./assets/data/nsi/logos/tien21-5228b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tien21-5228b9.jpg", "osmTags": { "and": [ "shop=appliance", @@ -388377,7 +388731,7 @@ }, { "question": "اسنوا", - "icon": "./assets/data/nsi/logos/snowa-e56cf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snowa-e56cf0.jpg", "osmTags": { "and": [ "shop=appliance", @@ -388397,7 +388751,7 @@ }, { "question": "DeSerres", - "icon": "./assets/data/nsi/logos/deserres-52ba64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deserres-52ba64.jpg", "osmTags": { "and": [ "shop=art", @@ -388413,7 +388767,7 @@ }, { "question": "Lumas", - "icon": "./assets/data/nsi/logos/lumas-60f999.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lumas-60f999.jpg", "osmTags": { "and": [ "shop=art", @@ -388429,7 +388783,7 @@ }, { "question": "YellowKorner", - "icon": "./assets/data/nsi/logos/yellowkorner-160161.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yellowkorner-160161.jpg", "osmTags": { "and": [ "shop=art", @@ -388445,7 +388799,7 @@ }, { "question": "Aubert", - "icon": "./assets/data/nsi/logos/aubert-e62f20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aubert-e62f20.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388461,7 +388815,7 @@ }, { "question": "Autour de Bébé", - "icon": "./assets/data/nsi/logos/autourdebebe-e7ec7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autourdebebe-e7ec7f.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388477,7 +388831,7 @@ }, { "question": "Babies R Us (Canada/USA)", - "icon": "./assets/data/nsi/logos/babiesrus-a2ffc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/babiesrus-a2ffc9.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388493,7 +388847,7 @@ }, { "question": "Babies R Us (Southern Africa)", - "icon": "./assets/data/nsi/logos/babiesrus-005aaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/babiesrus-005aaa.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388509,7 +388863,7 @@ }, { "question": "Baby Bunting", - "icon": "./assets/data/nsi/logos/babybunting-124709.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/babybunting-124709.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388525,7 +388879,7 @@ }, { "question": "Baby City", - "icon": "./assets/data/nsi/logos/babycity-27991d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/babycity-27991d.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388541,7 +388895,7 @@ }, { "question": "baby-walz", - "icon": "./assets/data/nsi/logos/babywalz-162756.png", + "icon": "https://data.mapcomplete.org/nsi//logos/babywalz-162756.png", "osmTags": { "and": [ "shop=baby_goods", @@ -388557,7 +388911,7 @@ }, { "question": "BabyOne", - "icon": "./assets/data/nsi/logos/babyone-162756.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/babyone-162756.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388587,7 +388941,7 @@ }, { "question": "Buy Buy Baby", - "icon": "./assets/data/nsi/logos/buybuybaby-a2ffc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buybuybaby-a2ffc9.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388603,7 +388957,7 @@ }, { "question": "Chicco", - "icon": "./assets/data/nsi/logos/chicco-0b3f29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicco-0b3f29.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388634,7 +388988,7 @@ }, { "question": "ebebek", - "icon": "./assets/data/nsi/logos/ebebek-ec78ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ebebek-ec78ad.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388650,7 +389004,7 @@ }, { "question": "Mamas & Papas", - "icon": "./assets/data/nsi/logos/mamasandpapas-9c51ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mamasandpapas-9c51ce.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388666,7 +389020,7 @@ }, { "question": "Mothercare", - "icon": "./assets/data/nsi/logos/mothercare-0b3f29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mothercare-0b3f29.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388682,7 +389036,7 @@ }, { "question": "Natalys", - "icon": "./assets/data/nsi/logos/natalys-e62f20.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/natalys-e62f20.svg", "osmTags": { "and": [ "shop=baby_goods", @@ -388698,7 +389052,7 @@ }, { "question": "Prénatal", - "icon": "./assets/data/nsi/logos/prenatal-5eb52b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prenatal-5eb52b.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388714,7 +389068,7 @@ }, { "question": "Shilav", - "icon": "./assets/data/nsi/logos/shilav-e06f21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shilav-e06f21.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388732,7 +389086,7 @@ }, { "question": "Suavinex", - "icon": "./assets/data/nsi/logos/suavinex-f3fd61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/suavinex-f3fd61.png", "osmTags": { "and": [ "shop=baby_goods", @@ -388748,7 +389102,7 @@ }, { "question": "The Baby Factory", - "icon": "./assets/data/nsi/logos/thebabyfactory-42c98b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebabyfactory-42c98b.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388764,7 +389118,7 @@ }, { "question": "Zippy", - "icon": "./assets/data/nsi/logos/zippy-e93d5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zippy-e93d5f.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388780,7 +389134,7 @@ }, { "question": "Детки", - "icon": "./assets/data/nsi/logos/d8a277-94eb10.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d8a277-94eb10.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388796,7 +389150,7 @@ }, { "question": "Детский мир", - "icon": "./assets/data/nsi/logos/detskiymir-7b1c28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/detskiymir-7b1c28.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388816,7 +389170,7 @@ }, { "question": "Дочки-сыночки", - "icon": "./assets/data/nsi/logos/462766-2eddbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/462766-2eddbc.png", "osmTags": { "and": [ "shop=baby_goods", @@ -388832,7 +389186,7 @@ }, { "question": "アカチャンホンポ", - "icon": "./assets/data/nsi/logos/akachanhonpo-60a866.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akachanhonpo-60a866.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388853,7 +389207,7 @@ }, { "question": "西松屋", - "icon": "./assets/data/nsi/logos/nishimatsuya-60a866.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nishimatsuya-60a866.jpg", "osmTags": { "and": [ "shop=baby_goods", @@ -388873,7 +389227,7 @@ }, { "question": "American Tourister", - "icon": "./assets/data/nsi/logos/americantourister-866b83.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/americantourister-866b83.svg", "osmTags": { "and": [ "shop=bag", @@ -388889,7 +389243,7 @@ }, { "question": "Away", - "icon": "./assets/data/nsi/logos/away-058365.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/away-058365.jpg", "osmTags": { "and": [ "shop=bag", @@ -388905,7 +389259,7 @@ }, { "question": "Bentley", - "icon": "./assets/data/nsi/logos/bentley-93da89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bentley-93da89.jpg", "osmTags": { "and": [ "shop=bag", @@ -388921,7 +389275,7 @@ }, { "question": "Carpisa", - "icon": "./assets/data/nsi/logos/carpisa-ee67c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carpisa-ee67c9.jpg", "osmTags": { "and": [ "shop=bag", @@ -388937,7 +389291,7 @@ }, { "question": "Coach", - "icon": "./assets/data/nsi/logos/coach-bdf41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coach-bdf41b.jpg", "osmTags": { "and": [ "shop=bag", @@ -388953,7 +389307,7 @@ }, { "question": "Coccinelle", - "icon": "./assets/data/nsi/logos/coccinelle-07c9a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coccinelle-07c9a9.png", "osmTags": { "and": [ "shop=bag", @@ -388969,7 +389323,7 @@ }, { "question": "Colette by Colette Hayman", - "icon": "./assets/data/nsi/logos/colettebycolettehayman-51caec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colettebycolettehayman-51caec.jpg", "osmTags": { "and": [ "shop=bag", @@ -388985,7 +389339,7 @@ }, { "question": "Frasers", - "icon": "./assets/data/nsi/logos/frasers-3fbcc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frasers-3fbcc0.jpg", "osmTags": { "and": [ "shop=bag", @@ -389001,7 +389355,7 @@ }, { "question": "Kipling", - "icon": "./assets/data/nsi/logos/kipling-bfaa54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kipling-bfaa54.png", "osmTags": { "and": [ "shop=bag", @@ -389017,7 +389371,7 @@ }, { "question": "LARA BAGS", - "icon": "./assets/data/nsi/logos/larabags-f2ddb9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/larabags-f2ddb9.jpg", "osmTags": { "and": [ "shop=bag", @@ -389033,7 +389387,7 @@ }, { "question": "LIEBESKIND Berlin", - "icon": "./assets/data/nsi/logos/liebeskindberlin-af0c77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liebeskindberlin-af0c77.jpg", "osmTags": { "and": [ "shop=bag", @@ -389049,7 +389403,7 @@ }, { "question": "Misako", - "icon": "./assets/data/nsi/logos/misako-46781a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/misako-46781a.jpg", "osmTags": { "and": [ "shop=bag", @@ -389065,7 +389419,7 @@ }, { "question": "Rimowa", - "icon": "./assets/data/nsi/logos/rimowa-4123fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rimowa-4123fd.jpg", "osmTags": { "and": [ "shop=bag", @@ -389081,7 +389435,7 @@ }, { "question": "Samsonite", - "icon": "./assets/data/nsi/logos/samsonite-4123fd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/samsonite-4123fd.svg", "osmTags": { "and": [ "shop=bag", @@ -389097,7 +389451,7 @@ }, { "question": "Strandbags", - "icon": "./assets/data/nsi/logos/strandbags-e9e78d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/strandbags-e9e78d.jpg", "osmTags": { "and": [ "shop=bag", @@ -389113,7 +389467,7 @@ }, { "question": "Totto", - "icon": "./assets/data/nsi/logos/totto-b66712.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/totto-b66712.jpg", "osmTags": { "and": [ "shop=bag", @@ -389129,7 +389483,7 @@ }, { "question": "Tumi", - "icon": "./assets/data/nsi/logos/tumi-4123fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tumi-4123fd.jpg", "osmTags": { "and": [ "shop=bag", @@ -389145,7 +389499,7 @@ }, { "question": "Vera Bradley", - "icon": "./assets/data/nsi/logos/verabradley-e9ca60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verabradley-e9ca60.jpg", "osmTags": { "and": [ "shop=bag", @@ -389161,7 +389515,7 @@ }, { "question": "A Padaria Portuguesa", - "icon": "./assets/data/nsi/logos/apadariaportuguesa-6fa785.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apadariaportuguesa-6fa785.png", "osmTags": { "and": [ "shop=bakery", @@ -389177,7 +389531,7 @@ }, { "question": "A-1 Bakery", - "icon": "./assets/data/nsi/logos/a1bakery-d71ca5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a1bakery-d71ca5.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389211,7 +389565,7 @@ }, { "question": "Ange", - "icon": "./assets/data/nsi/logos/boulangerieange-731a34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boulangerieange-731a34.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389227,7 +389581,7 @@ }, { "question": "Anker", - "icon": "./assets/data/nsi/logos/anker-4c6659.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anker-4c6659.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389243,7 +389597,7 @@ }, { "question": "Armbruster", - "icon": "./assets/data/nsi/logos/armbruster-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armbruster-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389259,7 +389613,7 @@ }, { "question": "Au Pain de mon Grand-Père", - "icon": "./assets/data/nsi/logos/aupaindemongrandpere-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aupaindemongrandpere-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389290,7 +389644,7 @@ }, { "question": "Awiteks", - "icon": "./assets/data/nsi/logos/awiteks-839c38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/awiteks-839c38.png", "osmTags": { "and": [ "shop=bakery", @@ -389306,7 +389660,7 @@ }, { "question": "Bachmeier", - "icon": "./assets/data/nsi/logos/bachmeier-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bachmeier-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389322,7 +389676,7 @@ }, { "question": "Back-Factory", - "icon": "./assets/data/nsi/logos/backfactory-3f448e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/backfactory-3f448e.png", "osmTags": { "and": [ "shop=bakery", @@ -389338,7 +389692,7 @@ }, { "question": "Bäcker Andresen", - "icon": "./assets/data/nsi/logos/backereiandresen-4c1d19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backereiandresen-4c1d19.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389354,7 +389708,7 @@ }, { "question": "Bäcker Görtz", - "icon": "./assets/data/nsi/logos/backergortz-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backergortz-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389370,7 +389724,7 @@ }, { "question": "Bäckerei Fuchs", - "icon": "./assets/data/nsi/logos/backereifuchs-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backereifuchs-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389386,7 +389740,7 @@ }, { "question": "Bäckerei Grimminger", - "icon": "./assets/data/nsi/logos/backereigrimminger-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backereigrimminger-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389402,7 +389756,7 @@ }, { "question": "Bäckerei Happ", - "icon": "./assets/data/nsi/logos/backereihapp-3f448e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/backereihapp-3f448e.png", "osmTags": { "and": [ "shop=bakery", @@ -389418,7 +389772,7 @@ }, { "question": "Bäckerei Schmidt", - "icon": "./assets/data/nsi/logos/backereischmidt-029c59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/backereischmidt-029c59.png", "osmTags": { "and": [ "shop=bakery", @@ -389434,7 +389788,7 @@ }, { "question": "Bäckerei Schneider", - "icon": "./assets/data/nsi/logos/backereischneider-7c8926.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backereischneider-7c8926.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389450,7 +389804,7 @@ }, { "question": "Bäckerei Wahl", - "icon": "./assets/data/nsi/logos/backereiwahl-16897a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/backereiwahl-16897a.png", "osmTags": { "and": [ "shop=bakery", @@ -389466,7 +389820,7 @@ }, { "question": "Backhaus Hackner", - "icon": "./assets/data/nsi/logos/backhaushackner-7367b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backhaushackner-7367b5.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389482,7 +389836,7 @@ }, { "question": "Backhaus Hennig", - "icon": "./assets/data/nsi/logos/backhaushennig-a5d472.png", + "icon": "https://data.mapcomplete.org/nsi//logos/backhaushennig-a5d472.png", "osmTags": { "and": [ "shop=bakery", @@ -389498,7 +389852,7 @@ }, { "question": "Backhaus Nahrstedt", - "icon": "./assets/data/nsi/logos/backhausnahrstedt-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backhausnahrstedt-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389514,7 +389868,7 @@ }, { "question": "Backstube Wünsche", - "icon": "./assets/data/nsi/logos/backstubewunsche-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backstubewunsche-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389530,7 +389884,7 @@ }, { "question": "Backwerk", - "icon": "./assets/data/nsi/logos/backwerk-5fc8b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/backwerk-5fc8b1.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389546,7 +389900,7 @@ }, { "question": "Baguette", - "icon": "./assets/data/nsi/logos/baguette-2e087b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baguette-2e087b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389562,7 +389916,7 @@ }, { "question": "Baker's Cottage", - "icon": "./assets/data/nsi/logos/bakerscottage-146b0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bakerscottage-146b0c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389578,7 +389932,7 @@ }, { "question": "Bakers Delight", - "icon": "./assets/data/nsi/logos/bakersdelight-3465b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bakersdelight-3465b3.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389594,7 +389948,7 @@ }, { "question": "Bakker Bart", - "icon": "./assets/data/nsi/logos/bakkerbart-8ba7df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bakkerbart-8ba7df.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389610,7 +389964,7 @@ }, { "question": "Bakker van Maanen", - "icon": "./assets/data/nsi/logos/bakkervanmaanen-8eaf6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bakkervanmaanen-8eaf6b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389626,7 +389980,7 @@ }, { "question": "Balfours", - "icon": "./assets/data/nsi/logos/balfours-c119fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/balfours-c119fa.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389643,7 +389997,7 @@ }, { "question": "Banette", - "icon": "./assets/data/nsi/logos/banette-731a34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banette-731a34.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389659,7 +390013,7 @@ }, { "question": "Banjo's Bakery Cafe", - "icon": "./assets/data/nsi/logos/banjosbakerycafe-c119fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banjosbakerycafe-c119fa.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389675,7 +390029,7 @@ }, { "question": "Barbarossa Bäckerei", - "icon": "./assets/data/nsi/logos/barbarossabackerei-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barbarossabackerei-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389691,7 +390045,7 @@ }, { "question": "Bayne's", - "icon": "./assets/data/nsi/logos/baynes-384d80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baynes-384d80.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389707,7 +390061,7 @@ }, { "question": "Beechworth Bakery", - "icon": "./assets/data/nsi/logos/beechworthbakery-c119fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beechworthbakery-c119fa.png", "osmTags": { "and": [ "shop=bakery", @@ -389723,16 +390077,16 @@ }, { "question": "Birds", - "icon": "./assets/data/nsi/logos/birds-680575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birds-680575.jpg", "osmTags": { "and": [ - "official_name=Birds Bakery", "shop=bakery", { "or": [ "brand=Birds", "brand:wikidata=Q63001935", - "name=Birds" + "name=Birds", + "official_name=Birds Bakery" ] } ] @@ -389768,7 +390122,7 @@ }, { "question": "Boulangerie Louise (France)", - "icon": "./assets/data/nsi/logos/boulangerielouise-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boulangerielouise-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389784,7 +390138,7 @@ }, { "question": "Bread Ahead", - "icon": "./assets/data/nsi/logos/breadahead-b4a87a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/breadahead-b4a87a.png", "osmTags": { "and": [ "shop=bakery", @@ -389800,7 +390154,7 @@ }, { "question": "BreadTalk", - "icon": "./assets/data/nsi/logos/breadtalk-96a6b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/breadtalk-96a6b3.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389816,7 +390170,7 @@ }, { "question": "Breadtop", - "icon": "./assets/data/nsi/logos/breadtop-c119fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/breadtop-c119fa.jpg", "osmTags": { "and": [ "cuisine=chinese", @@ -389833,7 +390187,7 @@ }, { "question": "Brioche Dorée", - "icon": "./assets/data/nsi/logos/briochedoree-4f9c7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/briochedoree-4f9c7f.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389864,7 +390218,7 @@ }, { "question": "BrotHaus", - "icon": "./assets/data/nsi/logos/brothaus-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brothaus-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389880,7 +390234,7 @@ }, { "question": "Brumby's Bakeries", - "icon": "./assets/data/nsi/logos/brumbysbakeries-c119fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brumbysbakeries-c119fa.png", "osmTags": { "and": [ "shop=bakery", @@ -389896,7 +390250,7 @@ }, { "question": "Burns the Bread", - "icon": "./assets/data/nsi/logos/burnsthebread-680575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burnsthebread-680575.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389912,7 +390266,7 @@ }, { "question": "Bursa Halk Ekmek", - "icon": "./assets/data/nsi/logos/bursahalkekmek-a32269.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bursahalkekmek-a32269.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389928,7 +390282,7 @@ }, { "question": "Büsch", - "icon": "./assets/data/nsi/logos/busch-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/busch-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389944,7 +390298,7 @@ }, { "question": "Cadera", - "icon": "./assets/data/nsi/logos/cadera-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cadera-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389960,7 +390314,7 @@ }, { "question": "Campaillette", - "icon": "./assets/data/nsi/logos/campaillette-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/campaillette-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -389991,7 +390345,7 @@ }, { "question": "COBS Bread", - "icon": "./assets/data/nsi/logos/cobsbread-515502.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cobsbread-515502.png", "osmTags": { "and": [ "shop=bakery", @@ -390007,7 +390361,7 @@ }, { "question": "Cooplands", - "icon": "./assets/data/nsi/logos/cooplands-680575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooplands-680575.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390023,7 +390377,7 @@ }, { "question": "Cornish Bakery", - "icon": "./assets/data/nsi/logos/cornishbakery-00bbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornishbakery-00bbe7.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390039,16 +390393,16 @@ }, { "question": "Coupland's", - "icon": "./assets/data/nsi/logos/couplands-80e21a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/couplands-80e21a.jpg", "osmTags": { "and": [ - "official_name=Coupland's Bakeries", "shop=bakery", { "or": [ "brand=Coupland's", "brand:wikidata=Q107297544", - "name=Coupland's" + "name=Coupland's", + "official_name=Coupland's Bakeries" ] } ] @@ -390071,7 +390425,7 @@ }, { "question": "Dat Backhus", - "icon": "./assets/data/nsi/logos/datbackhus-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/datbackhus-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390087,7 +390441,7 @@ }, { "question": "De Echte Bakker", - "icon": "./assets/data/nsi/logos/deechtebakker-8eaf6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deechtebakker-8eaf6b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390103,7 +390457,7 @@ }, { "question": "Délifrance", - "icon": "./assets/data/nsi/logos/delifrance-4f9c7f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/delifrance-4f9c7f.svg", "osmTags": { "and": [ "shop=bakery", @@ -390119,7 +390473,7 @@ }, { "question": "Der Bäcker Eifler", - "icon": "./assets/data/nsi/logos/derbackereifler-3aeac5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derbackereifler-3aeac5.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390135,7 +390489,7 @@ }, { "question": "Der Bäcker Ruetz", - "icon": "./assets/data/nsi/logos/derbackerruetz-2e087b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derbackerruetz-2e087b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390151,7 +390505,7 @@ }, { "question": "Der Beck", - "icon": "./assets/data/nsi/logos/derbeck-7367b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/derbeck-7367b5.png", "osmTags": { "and": [ "shop=bakery", @@ -390167,7 +390521,7 @@ }, { "question": "Der Mann", - "icon": "./assets/data/nsi/logos/dermann-2e087b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dermann-2e087b.png", "osmTags": { "and": [ "shop=bakery", @@ -390183,7 +390537,7 @@ }, { "question": "Die Lohner's", - "icon": "./assets/data/nsi/logos/dielohners-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dielohners-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390199,7 +390553,7 @@ }, { "question": "Ditsch", - "icon": "./assets/data/nsi/logos/ditsch-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ditsch-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390215,7 +390569,7 @@ }, { "question": "Döbbe", - "icon": "./assets/data/nsi/logos/dobbe-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dobbe-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390231,7 +390585,7 @@ }, { "question": "Dreißig", - "icon": "./assets/data/nsi/logos/dreissig-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dreissig-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390247,7 +390601,7 @@ }, { "question": "Emil Reimann", - "icon": "./assets/data/nsi/logos/emilreimann-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emilreimann-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390263,7 +390617,7 @@ }, { "question": "Eric Kayser", - "icon": "./assets/data/nsi/logos/erickayser-731a34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erickayser-731a34.jpg", "osmTags": { "and": [ "pastry=yes", @@ -390280,7 +390634,7 @@ }, { "question": "Erster Wiener", - "icon": "./assets/data/nsi/logos/ersterwiener-3f448e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ersterwiener-3f448e.png", "osmTags": { "and": [ "shop=bakery", @@ -390296,7 +390650,7 @@ }, { "question": "Fabrique", - "icon": "./assets/data/nsi/logos/fabrique-38a410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fabrique-38a410.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390312,7 +390666,7 @@ }, { "question": "Ferguson Plarre's Bakehouse", - "icon": "./assets/data/nsi/logos/fergusonplarresbakehouse-4fc062.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fergusonplarresbakehouse-4fc062.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390328,7 +390682,7 @@ }, { "question": "Festival des Pains", - "icon": "./assets/data/nsi/logos/festivaldespains-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/festivaldespains-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390343,7 +390697,7 @@ }, { "question": "Fornetti", - "icon": "./assets/data/nsi/logos/fornetti-0c6f37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fornetti-0c6f37.png", "osmTags": { "and": [ "shop=bakery", @@ -390359,7 +390713,7 @@ }, { "question": "Franz", - "icon": "./assets/data/nsi/logos/franz-03cd91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/franz-03cd91.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390375,7 +390729,7 @@ }, { "question": "GAIL's", - "icon": "./assets/data/nsi/logos/gails-00bbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gails-00bbe7.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390391,7 +390745,7 @@ }, { "question": "Galeria Wypieków Lubaszka", - "icon": "./assets/data/nsi/logos/galeriawypiekowlubaszka-839c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/galeriawypiekowlubaszka-839c38.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390407,7 +390761,7 @@ }, { "question": "Gilgen's", - "icon": "./assets/data/nsi/logos/gilgens-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gilgens-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390423,7 +390777,7 @@ }, { "question": "Glocken Bäckerei", - "icon": "./assets/data/nsi/logos/glockenbackerei-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glockenbackerei-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390439,7 +390793,7 @@ }, { "question": "Goeken backen", - "icon": "./assets/data/nsi/logos/goekenbacken-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goekenbacken-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390455,7 +390809,7 @@ }, { "question": "Goldilocks", - "icon": "./assets/data/nsi/logos/goldilocks-a861d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldilocks-a861d6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390471,7 +390825,7 @@ }, { "question": "Gorąco Polecam", - "icon": "./assets/data/nsi/logos/goracopolecam-839c38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goracopolecam-839c38.png", "osmTags": { "and": [ "shop=bakery", @@ -390487,7 +390841,7 @@ }, { "question": "Granier", - "icon": "./assets/data/nsi/logos/granier-0ef3f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/granier-0ef3f4.png", "osmTags": { "and": [ "shop=bakery", @@ -390503,7 +390857,7 @@ }, { "question": "Great Harvest Bread Company", - "icon": "./assets/data/nsi/logos/greatharvestbreadcompany-03cd91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatharvestbreadcompany-03cd91.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390519,7 +390873,7 @@ }, { "question": "Greenhalgh's", - "icon": "./assets/data/nsi/logos/greenhalghs-680575.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greenhalghs-680575.png", "osmTags": { "and": [ "shop=bakery", @@ -390536,7 +390890,7 @@ }, { "question": "Gromulski", - "icon": "./assets/data/nsi/logos/gromulski-839c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gromulski-839c38.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390552,7 +390906,7 @@ }, { "question": "Grzybki", - "icon": "./assets/data/nsi/logos/grzybki-839c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grzybki-839c38.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390597,7 +390951,7 @@ }, { "question": "Hinnerbäcker", - "icon": "./assets/data/nsi/logos/hinnerbacker-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hinnerbacker-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390613,7 +390967,7 @@ }, { "question": "Hofpfisterei", - "icon": "./assets/data/nsi/logos/hofpfisterei-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hofpfisterei-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390629,7 +390983,7 @@ }, { "question": "Holland Bakery", - "icon": "./assets/data/nsi/logos/hollandbakery-a78b8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hollandbakery-a78b8f.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390645,7 +390999,7 @@ }, { "question": "Hollywood Bakery", - "icon": "./assets/data/nsi/logos/hollywoodbakery-80e21a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hollywoodbakery-80e21a.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390676,7 +391030,7 @@ }, { "question": "Ihle", - "icon": "./assets/data/nsi/logos/ihle-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ihle-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390692,7 +391046,7 @@ }, { "question": "Ihr Landbäcker", - "icon": "./assets/data/nsi/logos/ihrlandbacker-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ihrlandbacker-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390750,7 +391104,7 @@ }, { "question": "İstanbul Halk Ekmek", - "icon": "./assets/data/nsi/logos/istanbulhalkekmek-a32269.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istanbulhalkekmek-a32269.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390766,7 +391120,7 @@ }, { "question": "Julie's", - "icon": "./assets/data/nsi/logos/julies-b6c45f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/julies-b6c45f.png", "osmTags": { "and": [ "old_name=Julie's Bakeshop", @@ -390783,7 +391137,7 @@ }, { "question": "Junge", - "icon": "./assets/data/nsi/logos/junge-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/junge-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390799,7 +391153,7 @@ }, { "question": "K&U Bäckerei", - "icon": "./assets/data/nsi/logos/kandubackerei-3f448e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kandubackerei-3f448e.png", "osmTags": { "and": [ "shop=bakery", @@ -390815,7 +391169,7 @@ }, { "question": "Kaisers Gute Backstube", - "icon": "./assets/data/nsi/logos/kaisersgutebackstube-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaisersgutebackstube-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390831,7 +391185,7 @@ }, { "question": "Kamps", - "icon": "./assets/data/nsi/logos/kamps-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kamps-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390847,7 +391201,7 @@ }, { "question": "Klein's Backstube", - "icon": "./assets/data/nsi/logos/kleinsbackstube-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kleinsbackstube-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390863,7 +391217,7 @@ }, { "question": "Kolls", - "icon": "./assets/data/nsi/logos/kolls-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kolls-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390893,7 +391247,7 @@ }, { "question": "Kuhn", - "icon": "./assets/data/nsi/logos/kuhn-903073.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuhn-903073.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390909,7 +391263,7 @@ }, { "question": "L'Atelier Papilles", - "icon": "./assets/data/nsi/logos/latelierpapilles-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/latelierpapilles-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390925,7 +391279,7 @@ }, { "question": "La Mie Câline", - "icon": "./assets/data/nsi/logos/lamiecaline-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamiecaline-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390956,7 +391310,7 @@ }, { "question": "La Talemelerie", - "icon": "./assets/data/nsi/logos/latalemelerie-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/latalemelerie-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390972,7 +391326,7 @@ }, { "question": "Lagkagehuset", - "icon": "./assets/data/nsi/logos/lagkagehuset-378006.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lagkagehuset-378006.jpg", "osmTags": { "and": [ "shop=bakery", @@ -390988,7 +391342,7 @@ }, { "question": "Lagler", - "icon": "./assets/data/nsi/logos/lagler-6ec796.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lagler-6ec796.png", "osmTags": { "and": [ "shop=bakery", @@ -391004,7 +391358,7 @@ }, { "question": "Landbäckerei Schmidt", - "icon": "./assets/data/nsi/logos/landbackereischmidt-965fe9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landbackereischmidt-965fe9.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391020,7 +391374,7 @@ }, { "question": "Le Crobag", - "icon": "./assets/data/nsi/logos/lecrobag-367eb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lecrobag-367eb3.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391036,7 +391390,7 @@ }, { "question": "Le Pain du Jour", - "icon": "./assets/data/nsi/logos/lepaindujour-08fdce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lepaindujour-08fdce.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391052,7 +391406,7 @@ }, { "question": "Le Pétrin Ribeïrou", - "icon": "./assets/data/nsi/logos/lepetrinribeirou-09ad2c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lepetrinribeirou-09ad2c.png", "osmTags": { "and": [ "shop=bakery", @@ -391068,7 +391422,7 @@ }, { "question": "Leifert", - "icon": "./assets/data/nsi/logos/leifert-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leifert-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391084,7 +391438,7 @@ }, { "question": "Les Fournils de France", - "icon": "./assets/data/nsi/logos/lesfournilsdefrance-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lesfournilsdefrance-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391100,7 +391454,7 @@ }, { "question": "Lila Bäcker", - "icon": "./assets/data/nsi/logos/lilabacker-3f448e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lilabacker-3f448e.svg", "osmTags": { "and": [ "shop=bakery", @@ -391116,7 +391470,7 @@ }, { "question": "Lipóti Pékség", - "icon": "./assets/data/nsi/logos/lipotipekseg-46ae54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lipotipekseg-46ae54.png", "osmTags": { "and": [ "shop=bakery", @@ -391132,7 +391486,7 @@ }, { "question": "Löwenbäcker Schaper", - "icon": "./assets/data/nsi/logos/lowenbackerschaper-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lowenbackerschaper-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391148,7 +391502,7 @@ }, { "question": "Luca", - "icon": "./assets/data/nsi/logos/luca-fd5747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luca-fd5747.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391164,7 +391518,7 @@ }, { "question": "Maison Bécam", - "icon": "./assets/data/nsi/logos/maisonbecam-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maisonbecam-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391180,7 +391534,7 @@ }, { "question": "Maison Planchot", - "icon": "./assets/data/nsi/logos/maisonplanchot-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maisonplanchot-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391196,7 +391550,7 @@ }, { "question": "MAKO Cake and Bakery", - "icon": "./assets/data/nsi/logos/makocakeandbakery-a78b8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/makocakeandbakery-a78b8f.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391212,7 +391566,7 @@ }, { "question": "Malcolm Barnecutt", - "icon": "./assets/data/nsi/logos/malcolmbarnecutt-00bbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/malcolmbarnecutt-00bbe7.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391228,7 +391582,7 @@ }, { "question": "Malzers", - "icon": "./assets/data/nsi/logos/malzers-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/malzers-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391244,7 +391598,7 @@ }, { "question": "Marie Blachère", - "icon": "./assets/data/nsi/logos/marieblachere-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marieblachere-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391275,7 +391629,7 @@ }, { "question": "Martin Auer", - "icon": "./assets/data/nsi/logos/martinauer-2e087b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/martinauer-2e087b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391291,7 +391645,7 @@ }, { "question": "Meffert", - "icon": "./assets/data/nsi/logos/meffert-9a87b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meffert-9a87b1.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391307,7 +391661,7 @@ }, { "question": "Merzenich", - "icon": "./assets/data/nsi/logos/merzenich-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/merzenich-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391323,7 +391677,7 @@ }, { "question": "Milkau", - "icon": "./assets/data/nsi/logos/milkau-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milkau-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391339,7 +391693,7 @@ }, { "question": "Millie's Cookies", - "icon": "./assets/data/nsi/logos/milliescookies-376142.png", + "icon": "https://data.mapcomplete.org/nsi//logos/milliescookies-376142.png", "osmTags": { "and": [ "shop=bakery", @@ -391355,7 +391709,7 @@ }, { "question": "Minit", - "icon": "./assets/data/nsi/logos/minit-3ca1fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minit-3ca1fa.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391371,7 +391725,7 @@ }, { "question": "Mlinar", - "icon": "./assets/data/nsi/logos/mlinar-f94504.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mlinar-f94504.png", "osmTags": { "and": [ "shop=bakery", @@ -391387,7 +391741,7 @@ }, { "question": "Müller & Egerer", - "icon": "./assets/data/nsi/logos/mullerandegerer-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mullerandegerer-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391403,7 +391757,7 @@ }, { "question": "MultiVlaai", - "icon": "./assets/data/nsi/logos/multivlaai-8eaf6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/multivlaai-8eaf6b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391419,7 +391773,7 @@ }, { "question": "Musmanni", - "icon": "./assets/data/nsi/logos/musmanni-8b7146.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/musmanni-8b7146.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391435,7 +391789,7 @@ }, { "question": "Nobis", - "icon": "./assets/data/nsi/logos/nobis-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nobis-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391481,7 +391835,7 @@ }, { "question": "Ogi Berri", - "icon": "./assets/data/nsi/logos/ogiberri-e3bb42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ogiberri-e3bb42.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391497,7 +391851,7 @@ }, { "question": "Ole & Steen", - "icon": "./assets/data/nsi/logos/oleandsteen-f904a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oleandsteen-f904a1.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391513,7 +391867,7 @@ }, { "question": "Oskroba", - "icon": "./assets/data/nsi/logos/oskroba-839c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oskroba-839c38.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391529,7 +391883,7 @@ }, { "question": "Pan de Manila", - "icon": "./assets/data/nsi/logos/pandemanila-b6c45f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pandemanila-b6c45f.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391560,7 +391914,7 @@ }, { "question": "Pan-pek", - "icon": "./assets/data/nsi/logos/panpek-0cc7ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panpek-0cc7ae.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391576,7 +391930,7 @@ }, { "question": "Panishop", - "icon": "./assets/data/nsi/logos/panishop-0ef3f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panishop-0ef3f4.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391592,7 +391946,7 @@ }, { "question": "Pappert", - "icon": "./assets/data/nsi/logos/pappert-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pappert-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391608,7 +391962,7 @@ }, { "question": "Paris Baguette", - "icon": "./assets/data/nsi/logos/parisbaguette-e1a226.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parisbaguette-e1a226.png", "osmTags": { "and": [ "shop=bakery", @@ -391624,7 +391978,7 @@ }, { "question": "Paul", - "icon": "./assets/data/nsi/logos/paul-652955.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paul-652955.png", "osmTags": { "and": [ "shop=bakery", @@ -391654,7 +392008,7 @@ }, { "question": "Peters gute Backstube", - "icon": "./assets/data/nsi/logos/petersgutebackstube-3f448e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petersgutebackstube-3f448e.png", "osmTags": { "and": [ "shop=bakery", @@ -391684,7 +392038,7 @@ }, { "question": "Piekarnia Szwajcarska", - "icon": "./assets/data/nsi/logos/piekarniaszwajcarska-839c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piekarniaszwajcarska-839c38.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391714,7 +392068,7 @@ }, { "question": "Poundbakery", - "icon": "./assets/data/nsi/logos/poundbakery-680575.png", + "icon": "https://data.mapcomplete.org/nsi//logos/poundbakery-680575.png", "osmTags": { "and": [ "shop=bakery", @@ -391730,7 +392084,7 @@ }, { "question": "Przystanek Piekarnia", - "icon": "./assets/data/nsi/logos/przystanekpiekarnia-839c38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/przystanekpiekarnia-839c38.png", "osmTags": { "and": [ "shop=bakery", @@ -391746,7 +392100,7 @@ }, { "question": "Putka", - "icon": "./assets/data/nsi/logos/putka-839c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/putka-839c38.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391762,7 +392116,7 @@ }, { "question": "Red Ribbon", - "icon": "./assets/data/nsi/logos/redribbon-657c23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redribbon-657c23.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391778,7 +392132,7 @@ }, { "question": "Richters Altstadt-Bäckerei", - "icon": "./assets/data/nsi/logos/richtersaltstadtbackerei-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/richtersaltstadtbackerei-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391794,7 +392148,7 @@ }, { "question": "Rischart", - "icon": "./assets/data/nsi/logos/rischart-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rischart-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391810,7 +392164,7 @@ }, { "question": "Ronde des Pains", - "icon": "./assets/data/nsi/logos/rondedespains-a38521.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rondedespains-a38521.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391826,7 +392180,7 @@ }, { "question": "Roti'O", - "icon": "./assets/data/nsi/logos/rotio-a78b8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rotio-a78b8f.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391842,7 +392196,7 @@ }, { "question": "Rotiboy", - "icon": "./assets/data/nsi/logos/rotiboy-ebdfa2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rotiboy-ebdfa2.png", "osmTags": { "and": [ "shop=bakery", @@ -391858,7 +392212,7 @@ }, { "question": "sander's backstube", - "icon": "./assets/data/nsi/logos/sandersbackstube-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandersbackstube-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391874,7 +392228,7 @@ }, { "question": "Santagloria", - "icon": "./assets/data/nsi/logos/santagloria-61d4aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/santagloria-61d4aa.svg", "osmTags": { "and": [ "amenity=cafe", @@ -391891,7 +392245,7 @@ }, { "question": "Schäfer Dein Bäcker", - "icon": "./assets/data/nsi/logos/schaferdeinbacker-a60adf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schaferdeinbacker-a60adf.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391907,7 +392261,7 @@ }, { "question": "Schäfer's", - "icon": "./assets/data/nsi/logos/schafers-3f448e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schafers-3f448e.svg", "osmTags": { "and": [ "shop=bakery", @@ -391923,7 +392277,7 @@ }, { "question": "Schwerdtner", - "icon": "./assets/data/nsi/logos/schwerdtner-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schwerdtner-3f448e.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -391940,7 +392294,7 @@ }, { "question": "Sehne", - "icon": "./assets/data/nsi/logos/sehne-3f448e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sehne-3f448e.svg", "osmTags": { "and": [ "shop=bakery", @@ -391956,7 +392310,7 @@ }, { "question": "Semeur聖娜", - "icon": "./assets/data/nsi/logos/semeur-ea5ee6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/semeur-ea5ee6.png", "osmTags": { "and": [ "shop=bakery", @@ -391976,7 +392330,7 @@ }, { "question": "Simit Sarayı", - "icon": "./assets/data/nsi/logos/simitsarayi-a32269.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/simitsarayi-a32269.jpg", "osmTags": { "and": [ "shop=bakery", @@ -391992,7 +392346,7 @@ }, { "question": "Sipl", - "icon": "./assets/data/nsi/logos/sipl-7367b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sipl-7367b5.png", "osmTags": { "and": [ "shop=bakery", @@ -392008,7 +392362,7 @@ }, { "question": "Somerset Bakehouse", - "icon": "./assets/data/nsi/logos/somersetbakehouse-4b4468.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetbakehouse-4b4468.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392024,7 +392378,7 @@ }, { "question": "Sophie Lebreuilly", - "icon": "./assets/data/nsi/logos/sophielebreuilly-09ad2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sophielebreuilly-09ad2c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392040,7 +392394,7 @@ }, { "question": "SPC", - "icon": "./assets/data/nsi/logos/spc-839c38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spc-839c38.png", "osmTags": { "and": [ "shop=bakery", @@ -392056,7 +392410,7 @@ }, { "question": "Stadtbäckerei Kamp", - "icon": "./assets/data/nsi/logos/stadtbackereikamp-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbackereikamp-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392073,7 +392427,7 @@ }, { "question": "Stangengrüner Mühlenbäckerei", - "icon": "./assets/data/nsi/logos/stangengrunermuhlenbackerei-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stangengrunermuhlenbackerei-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392089,7 +392443,7 @@ }, { "question": "Starke Bäcker", - "icon": "./assets/data/nsi/logos/starkebacker-3f448e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/starkebacker-3f448e.png", "osmTags": { "and": [ "shop=bakery", @@ -392105,7 +392459,7 @@ }, { "question": "Steinecke", - "icon": "./assets/data/nsi/logos/steinecke-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steinecke-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392121,7 +392475,7 @@ }, { "question": "Steiner", - "icon": "./assets/data/nsi/logos/steiner-903073.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steiner-903073.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392137,7 +392491,7 @@ }, { "question": "Steiskal", - "icon": "./assets/data/nsi/logos/steiskal-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steiskal-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392153,7 +392507,7 @@ }, { "question": "Sternenbäck", - "icon": "./assets/data/nsi/logos/sternenback-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sternenback-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392169,7 +392523,7 @@ }, { "question": "Stinges", - "icon": "./assets/data/nsi/logos/stinges-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stinges-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392185,7 +392539,7 @@ }, { "question": "Ströck", - "icon": "./assets/data/nsi/logos/strock-2e087b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/strock-2e087b.png", "osmTags": { "and": [ "shop=bakery", @@ -392201,7 +392555,7 @@ }, { "question": "Taumberger", - "icon": "./assets/data/nsi/logos/taumberger-6ec796.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taumberger-6ec796.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392217,7 +392571,7 @@ }, { "question": "The Cheesecake Shop", - "icon": "./assets/data/nsi/logos/thecheesecakeshop-4d3be5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecheesecakeshop-4d3be5.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392233,7 +392587,7 @@ }, { "question": "Tous les Jours", - "icon": "./assets/data/nsi/logos/touslesjours-e39ddb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/touslesjours-e39ddb.png", "osmTags": { "and": [ "shop=bakery", @@ -392266,7 +392620,7 @@ }, { "question": "Valerio's Tropical Bakeshop", - "icon": "./assets/data/nsi/logos/valeriostropicalbakeshop-515502.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valeriostropicalbakeshop-515502.png", "osmTags": { "and": [ "shop=bakery", @@ -392282,7 +392636,7 @@ }, { "question": "Vincent", - "icon": "./assets/data/nsi/logos/vincent-839c38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vincent-839c38.png", "osmTags": { "and": [ "shop=bakery", @@ -392298,7 +392652,7 @@ }, { "question": "von Allwörden", - "icon": "./assets/data/nsi/logos/vonallworden-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vonallworden-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392314,7 +392668,7 @@ }, { "question": "Warrens Bakery", - "icon": "./assets/data/nsi/logos/warrensbakery-680575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warrensbakery-680575.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392330,7 +392684,7 @@ }, { "question": "Wenzel's", - "icon": "./assets/data/nsi/logos/wenzels-680575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wenzels-680575.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392346,7 +392700,7 @@ }, { "question": "Wiener Feinbäcker Heberer", - "icon": "./assets/data/nsi/logos/wienerfeinbackerheberer-3f448e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienerfeinbackerheberer-3f448e.png", "osmTags": { "and": [ "shop=bakery", @@ -392362,7 +392716,7 @@ }, { "question": "Wienerroither", - "icon": "./assets/data/nsi/logos/wienerroither-2e087b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienerroither-2e087b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392378,7 +392732,7 @@ }, { "question": "Wolf", - "icon": "./assets/data/nsi/logos/wolf-697817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wolf-697817.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392394,7 +392748,7 @@ }, { "question": "Woops!", - "icon": "./assets/data/nsi/logos/woops-03cd91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woops-03cd91.png", "osmTags": { "and": [ "shop=bakery", @@ -392410,7 +392764,7 @@ }, { "question": "Zagrebačke pekarne Klara", - "icon": "./assets/data/nsi/logos/klara-0cc7ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/klara-0cc7ae.png", "osmTags": { "and": [ "shop=bakery", @@ -392426,7 +392780,7 @@ }, { "question": "Zeit für Brot", - "icon": "./assets/data/nsi/logos/zeitfurbrot-3f448e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeitfurbrot-3f448e.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392458,7 +392812,7 @@ }, { "question": "Βενέτη", - "icon": "./assets/data/nsi/logos/veneti-ec42d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veneti-ec42d9.jpg", "osmTags": { "and": [ "int_name=Veneti", @@ -392478,7 +392832,7 @@ }, { "question": "Τερκενλής", - "icon": "./assets/data/nsi/logos/terkenlis-e9ca96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terkenlis-e9ca96.jpg", "osmTags": { "and": [ "int_name=Terkenlis", @@ -392497,7 +392851,7 @@ }, { "question": "Булочные Ф. Вольчека", - "icon": "./assets/data/nsi/logos/3946ef-44faa4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/3946ef-44faa4.png", "osmTags": { "and": [ "shop=bakery", @@ -392527,7 +392881,7 @@ }, { "question": "буше", - "icon": "./assets/data/nsi/logos/bushe-44faa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bushe-44faa4.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392561,7 +392915,7 @@ }, { "question": "Київхліб", - "icon": "./assets/data/nsi/logos/3d7cfd-3664c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3d7cfd-3664c0.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392591,7 +392945,7 @@ }, { "question": "Кулиничі", - "icon": "./assets/data/nsi/logos/kulinichi-3664c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kulinichi-3664c0.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392610,7 +392964,7 @@ }, { "question": "Перша Пекарня Твого Міста", - "icon": "./assets/data/nsi/logos/0397da-3664c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/0397da-3664c0.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392626,7 +392980,7 @@ }, { "question": "Сімейна пекарня", - "icon": "./assets/data/nsi/logos/a93233-3664c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/a93233-3664c0.png", "osmTags": { "and": [ "shop=bakery", @@ -392642,7 +392996,7 @@ }, { "question": "Хлеб Насущный", - "icon": "./assets/data/nsi/logos/d1829c-44faa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d1829c-44faa4.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392658,7 +393012,7 @@ }, { "question": "Хлебник", - "icon": "./assets/data/nsi/logos/f4eaeb-44faa4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/f4eaeb-44faa4.png", "osmTags": { "and": [ "shop=bakery", @@ -392674,7 +393028,7 @@ }, { "question": "Цар Хліб", - "icon": "./assets/data/nsi/logos/9f4099-3664c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9f4099-3664c0.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392690,7 +393044,7 @@ }, { "question": "מאפה נאמן", - "icon": "./assets/data/nsi/logos/neemanbakery-2a1629.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neemanbakery-2a1629.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392780,7 +393134,7 @@ }, { "question": "뚜레쥬르", - "icon": "./assets/data/nsi/logos/touslesjours-e38a76.png", + "icon": "https://data.mapcomplete.org/nsi//logos/touslesjours-e38a76.png", "osmTags": { "and": [ "shop=bakery", @@ -392800,7 +393154,7 @@ }, { "question": "파리바게뜨 (대한민국)", - "icon": "./assets/data/nsi/logos/parisbaguette-e38a76.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parisbaguette-e38a76.png", "osmTags": { "and": [ "shop=bakery", @@ -392821,7 +393175,7 @@ }, { "question": "アンデルセン", - "icon": "./assets/data/nsi/logos/andersen-59bce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andersen-59bce6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392841,7 +393195,7 @@ }, { "question": "ヴィ・ド・フランス", - "icon": "./assets/data/nsi/logos/viedefrance-59bce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/viedefrance-59bce6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392861,7 +393215,7 @@ }, { "question": "サンジェルマン", - "icon": "./assets/data/nsi/logos/saintgermain-59bce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintgermain-59bce6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392881,7 +393235,7 @@ }, { "question": "ドンク", - "icon": "./assets/data/nsi/logos/donq-59bce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donq-59bce6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -392901,7 +393255,7 @@ }, { "question": "ポンパドウル", - "icon": "./assets/data/nsi/logos/pompadour-59bce6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pompadour-59bce6.png", "osmTags": { "and": [ "shop=bakery", @@ -392921,7 +393275,7 @@ }, { "question": "リトルマーメイド", - "icon": "./assets/data/nsi/logos/littlemermaid-59bce6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/littlemermaid-59bce6.svg", "osmTags": { "and": [ "shop=bakery", @@ -393017,7 +393371,7 @@ }, { "question": "多乐之日", - "icon": "./assets/data/nsi/logos/touslesjours-c0ca1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/touslesjours-c0ca1d.png", "osmTags": { "and": [ "shop=bakery", @@ -393037,7 +393391,7 @@ }, { "question": "大班麵包西餅 Taipan Bread & Cakes", - "icon": "./assets/data/nsi/logos/taipanbreadandcakes-ebd86c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taipanbreadandcakes-ebd86c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393057,7 +393411,7 @@ }, { "question": "奇華餅家 Kee Wah Bakery", - "icon": "./assets/data/nsi/logos/keewahbakery-ebd86c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keewahbakery-ebd86c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393100,7 +393454,7 @@ }, { "question": "山崎製パン", - "icon": "./assets/data/nsi/logos/yamazakibaking-59bce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamazakibaking-59bce6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393122,7 +393476,7 @@ }, { "question": "山崎麵包", - "icon": "./assets/data/nsi/logos/yamazakibaking-ea5ee6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamazakibaking-ea5ee6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393144,7 +393498,7 @@ }, { "question": "山崎麵包 Yamazaki Bakery", - "icon": "./assets/data/nsi/logos/yamazakibaking-ebd86c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamazakibaking-ebd86c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393170,7 +393524,7 @@ }, { "question": "巴黎贝甜 (中国)", - "icon": "./assets/data/nsi/logos/parisbaguette-c0ca1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parisbaguette-c0ca1d.png", "osmTags": { "and": [ "shop=bakery", @@ -393190,7 +393544,7 @@ }, { "question": "東海堂 Arome Bakery", - "icon": "./assets/data/nsi/logos/aromebakery-ebd86c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aromebakery-ebd86c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393210,7 +393564,7 @@ }, { "question": "樂田麵包屋", - "icon": "./assets/data/nsi/logos/gakuden-ea5ee6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gakuden-ea5ee6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393249,7 +393603,7 @@ }, { "question": "美心西餅 Maxim's Cakes", - "icon": "./assets/data/nsi/logos/maximscakes-ebd86c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maximscakes-ebd86c.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393269,7 +393623,7 @@ }, { "question": "聖安娜餅屋 Saint Honore Cake Shop", - "icon": "./assets/data/nsi/logos/sainthonorecakeshop-757d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sainthonorecakeshop-757d2b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393289,7 +393643,7 @@ }, { "question": "面包新语", - "icon": "./assets/data/nsi/logos/breadtalk-4517b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/breadtalk-4517b3.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393309,7 +393663,7 @@ }, { "question": "順成蛋糕", - "icon": "./assets/data/nsi/logos/shunchenbakery-ea5ee6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shunchenbakery-ea5ee6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393329,7 +393683,7 @@ }, { "question": "馬可先生", - "icon": "./assets/data/nsi/logos/mrmark-ea5ee6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrmark-ea5ee6.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393368,7 +393722,7 @@ }, { "question": "麵包新語 BreadTalk", - "icon": "./assets/data/nsi/logos/breadtalk-757d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/breadtalk-757d2b.jpg", "osmTags": { "and": [ "shop=bakery", @@ -393388,7 +393742,7 @@ }, { "question": "Easy Bathrooms", - "icon": "./assets/data/nsi/logos/easybathrooms-72592f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/easybathrooms-72592f.png", "osmTags": { "and": [ "shop=bathroom_furnishing", @@ -393404,7 +393758,7 @@ }, { "question": "Kohler", - "icon": "./assets/data/nsi/logos/kohler-89347c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kohler-89347c.jpg", "osmTags": { "and": [ "shop=bathroom_furnishing", @@ -393420,7 +393774,7 @@ }, { "question": "Sani-Dump", - "icon": "./assets/data/nsi/logos/sanidump-ac38ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanidump-ac38ee.png", "osmTags": { "and": [ "shop=bathroom_furnishing", @@ -393436,7 +393790,7 @@ }, { "question": "Sanidirect", - "icon": "./assets/data/nsi/logos/sanidirect-c2f578.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanidirect-c2f578.png", "osmTags": { "and": [ "shop=bathroom_furnishing", @@ -393452,7 +393806,7 @@ }, { "question": "X2O", - "icon": "./assets/data/nsi/logos/x2o-caedbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/x2o-caedbb.jpg", "osmTags": { "and": [ "shop=bathroom_furnishing", @@ -393468,7 +393822,7 @@ }, { "question": "Баня Стил", - "icon": "./assets/data/nsi/logos/d84984-ac38ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d84984-ac38ee.jpg", "osmTags": { "and": [ "shop=bathroom_furnishing", @@ -393512,7 +393866,7 @@ }, { "question": "Barbeques Galore", - "icon": "./assets/data/nsi/logos/barbequesgalore-83e1d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barbequesgalore-83e1d4.png", "osmTags": { "and": [ "shop=bbq", @@ -393528,7 +393882,7 @@ }, { "question": "Amazing Lash Studio", - "icon": "./assets/data/nsi/logos/amazinglashstudio-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amazinglashstudio-cc0daa.jpg", "osmTags": { "and": [ "beauty=eyelash", @@ -393545,7 +393899,7 @@ }, { "question": "Anthony Vincé Nail Spa", - "icon": "./assets/data/nsi/logos/anthonyvincenailspa-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anthonyvincenailspa-cc0daa.jpg", "osmTags": { "and": [ "beauty=nails", @@ -393577,7 +393931,7 @@ }, { "question": "Benefit Brow Bar", - "icon": "./assets/data/nsi/logos/benefitbrowbar-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/benefitbrowbar-cc0daa.jpg", "osmTags": { "and": [ "beauty=eyebrow;eyelash;waxing", @@ -393594,7 +393948,7 @@ }, { "question": "Body Details", - "icon": "./assets/data/nsi/logos/bodydetails-5c9c48.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bodydetails-5c9c48.png", "osmTags": { "and": [ "beauty=hair_removal;tattoo_removal", @@ -393611,7 +393965,7 @@ }, { "question": "Body Minute", - "icon": "./assets/data/nsi/logos/bodyminute-e85977.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodyminute-e85977.jpg", "osmTags": { "and": [ "beauty=cosmetics", @@ -393628,7 +393982,7 @@ }, { "question": "Brow Art 23", - "icon": "./assets/data/nsi/logos/browart23-cc0daa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/browart23-cc0daa.png", "osmTags": { "and": [ "beauty=skin_care;eyebrow;eyelash", @@ -393645,7 +393999,7 @@ }, { "question": "Brow Studio 7", - "icon": "./assets/data/nsi/logos/browstudio7-4be8e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/browstudio7-4be8e1.png", "osmTags": { "and": [ "beauty=skin_care;waxing;eyebrow;eyelash", @@ -393662,7 +394016,7 @@ }, { "question": "Carlance", - "icon": "./assets/data/nsi/logos/carlance-b52040.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carlance-b52040.png", "osmTags": { "and": [ "beauty=hair;nails;skin_care;massage", @@ -393679,7 +394033,7 @@ }, { "question": "Citron Vert", - "icon": "./assets/data/nsi/logos/citronvert-b52040.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citronvert-b52040.jpg", "osmTags": { "and": [ "beauty=hair;nails;skin_care;massage", @@ -393712,7 +394066,7 @@ }, { "question": "Deka Lash", - "icon": "./assets/data/nsi/logos/dekalash-4be8e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dekalash-4be8e1.png", "osmTags": { "and": [ "beauty=eyelash;eyebrow;sugaring", @@ -393745,7 +394099,7 @@ }, { "question": "Depyl Action", - "icon": "./assets/data/nsi/logos/depylaction-69a669.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/depylaction-69a669.jpg", "osmTags": { "and": [ "beauty=hair_removal", @@ -393762,7 +394116,7 @@ }, { "question": "Endlich Ohne Tattooentfernung", - "icon": "./assets/data/nsi/logos/endlichohne-fc55f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endlichohne-fc55f7.jpg", "osmTags": { "and": [ "beauty=tattoo_removal", @@ -393779,7 +394133,7 @@ }, { "question": "Espaçolaser", - "icon": "./assets/data/nsi/logos/espacolaser-751030.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/espacolaser-751030.jpg", "osmTags": { "and": [ "beauty=hair_removal", @@ -393796,7 +394150,7 @@ }, { "question": "Esthetic Center", - "icon": "./assets/data/nsi/logos/estheticcenter-bc649c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/estheticcenter-bc649c.jpg", "osmTags": { "and": [ "beauty=skin_care;hair_removal", @@ -393829,7 +394183,7 @@ }, { "question": "Eyebrow Plus", - "icon": "./assets/data/nsi/logos/eyebrowplus-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eyebrowplus-cc0daa.jpg", "osmTags": { "and": [ "beauty=eyebrow;hair_removal", @@ -393846,7 +394200,7 @@ }, { "question": "Fabutan", - "icon": "./assets/data/nsi/logos/fabutan-8ad523.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fabutan-8ad523.png", "osmTags": { "and": [ "beauty=tanning", @@ -393879,7 +394233,7 @@ }, { "question": "Guinot", - "icon": "./assets/data/nsi/logos/guinot-0c474f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guinot-0c474f.jpg", "osmTags": { "and": [ "beauty=skin_care", @@ -393927,7 +394281,7 @@ }, { "question": "LaserAway", - "icon": "./assets/data/nsi/logos/laseraway-cc0daa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/laseraway-cc0daa.png", "osmTags": { "and": [ "beauty=hair_removal;skin_care", @@ -393944,7 +394298,7 @@ }, { "question": "Madison Reed Color Bar", - "icon": "./assets/data/nsi/logos/madisonreed-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madisonreed-cc0daa.jpg", "osmTags": { "and": [ "beauty=hair_colour", @@ -393961,7 +394315,7 @@ }, { "question": "Me Spa", - "icon": "./assets/data/nsi/logos/mespa-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mespa-cc0daa.jpg", "osmTags": { "and": [ "beauty=spa", @@ -393994,7 +394348,7 @@ }, { "question": "Naturals", - "icon": "./assets/data/nsi/logos/naturals-2dc292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturals-2dc292.jpg", "osmTags": { "and": [ "beauty=hair;spa", @@ -394011,7 +394365,7 @@ }, { "question": "Palm Beach Tan", - "icon": "./assets/data/nsi/logos/palmbeachtan-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmbeachtan-cc0daa.jpg", "osmTags": { "and": [ "beauty=tanning", @@ -394043,7 +394397,7 @@ }, { "question": "Regal Nails", - "icon": "./assets/data/nsi/logos/regalnails-4be8e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regalnails-4be8e1.jpg", "osmTags": { "and": [ "beauty=nails", @@ -394060,7 +394414,7 @@ }, { "question": "Removery", - "icon": "./assets/data/nsi/logos/removery-3175dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/removery-3175dd.jpg", "osmTags": { "and": [ "beauty=tattoo_removal", @@ -394077,7 +394431,7 @@ }, { "question": "Restore Hyper Wellness", - "icon": "./assets/data/nsi/logos/restorehyperwellness-cc0daa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/restorehyperwellness-cc0daa.png", "osmTags": { "and": [ "beauty=aesthetic", @@ -394110,7 +394464,7 @@ }, { "question": "Skin Laundry", - "icon": "./assets/data/nsi/logos/skinlaundry-85c569.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skinlaundry-85c569.jpg", "osmTags": { "and": [ "beauty=skin_care", @@ -394127,7 +394481,7 @@ }, { "question": "Sola Salons", - "icon": "./assets/data/nsi/logos/solasalons-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/solasalons-cc0daa.jpg", "osmTags": { "and": [ "beauty=hair;nails;skin_care;massage", @@ -394144,7 +394498,7 @@ }, { "question": "Sun Tan City", - "icon": "./assets/data/nsi/logos/suntancity-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suntancity-cc0daa.jpg", "osmTags": { "and": [ "beauty=tanning", @@ -394161,7 +394515,7 @@ }, { "question": "Sunpoint", - "icon": "./assets/data/nsi/logos/sunpoint-fc55f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunpoint-fc55f7.jpg", "osmTags": { "and": [ "beauty=tanning", @@ -394178,7 +394532,7 @@ }, { "question": "Tan Republic", - "icon": "./assets/data/nsi/logos/tanrepublic-cc0daa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tanrepublic-cc0daa.png", "osmTags": { "and": [ "beauty=tanning", @@ -394195,7 +394549,7 @@ }, { "question": "Tanning Shop", - "icon": "./assets/data/nsi/logos/tanningshop-2786f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tanningshop-2786f9.jpg", "osmTags": { "and": [ "beauty=tanning", @@ -394212,7 +394566,7 @@ }, { "question": "The Lash Lounge", - "icon": "./assets/data/nsi/logos/thelashlounge-cc0daa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thelashlounge-cc0daa.png", "osmTags": { "and": [ "beauty=eyebrow;eyelash", @@ -394229,7 +394583,7 @@ }, { "question": "The Skin Bar at Ulta Beauty", - "icon": "./assets/data/nsi/logos/theskinbaratultabeauty-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theskinbaratultabeauty-cc0daa.jpg", "osmTags": { "and": [ "beauty=skin_care", @@ -394247,7 +394601,7 @@ }, { "question": "Thérapie Clinic", - "icon": "./assets/data/nsi/logos/therapieclinic-a549e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/therapieclinic-a549e8.jpg", "osmTags": { "and": [ "beauty=aesthetic;hair_removal", @@ -394264,7 +394618,7 @@ }, { "question": "Waxing the City", - "icon": "./assets/data/nsi/logos/waxingthecity-cc0daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waxingthecity-cc0daa.jpg", "osmTags": { "and": [ "beauty=waxing;eyebrow;eyelash", @@ -394281,7 +394635,7 @@ }, { "question": "Yves Rocher", - "icon": "./assets/data/nsi/logos/yvesrocher-422e39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yvesrocher-422e39.jpg", "osmTags": { "and": [ "beauty=cosmetics", @@ -394333,7 +394687,7 @@ }, { "question": "伊夫黎雪", - "icon": "./assets/data/nsi/logos/yvesrocher-a8af93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yvesrocher-a8af93.jpg", "osmTags": { "and": [ "beauty=cosmetics", @@ -394354,7 +394708,7 @@ }, { "question": "葉露芝", - "icon": "./assets/data/nsi/logos/yvesrocher-502b93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yvesrocher-502b93.jpg", "osmTags": { "and": [ "beauty=cosmetics", @@ -394375,7 +394729,7 @@ }, { "question": "葉露芝 Yves Rocher", - "icon": "./assets/data/nsi/logos/yvesrocher-1744e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yvesrocher-1744e8.jpg", "osmTags": { "and": [ "beauty=cosmetics", @@ -394396,7 +394750,7 @@ }, { "question": "Amerisleep", - "icon": "./assets/data/nsi/logos/amerisleep-032196.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amerisleep-032196.png", "osmTags": { "and": [ "shop=bed", @@ -394426,7 +394780,7 @@ }, { "question": "Bambi Yatak", - "icon": "./assets/data/nsi/logos/bambiyatak-a08a8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bambiyatak-a08a8e.jpg", "osmTags": { "and": [ "shop=bed", @@ -394442,7 +394796,7 @@ }, { "question": "BedMart", - "icon": "./assets/data/nsi/logos/bedmart-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedmart-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -394458,7 +394812,7 @@ }, { "question": "Beds R Us (Australia)", - "icon": "./assets/data/nsi/logos/bedsrus-156cc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedsrus-156cc7.jpg", "osmTags": { "and": [ "shop=bed", @@ -394474,7 +394828,7 @@ }, { "question": "Bedshed", - "icon": "./assets/data/nsi/logos/bedshed-156cc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedshed-156cc7.jpg", "osmTags": { "and": [ "shop=bed", @@ -394490,7 +394844,7 @@ }, { "question": "BedsRus (New Zealand)", - "icon": "./assets/data/nsi/logos/bedsrus-a769d8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bedsrus-a769d8.png", "osmTags": { "and": [ "shop=bed", @@ -394506,7 +394860,7 @@ }, { "question": "Bensons for Beds", - "icon": "./assets/data/nsi/logos/bensonsforbeds-d088e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bensonsforbeds-d088e6.jpg", "osmTags": { "and": [ "shop=bed", @@ -394522,7 +394876,7 @@ }, { "question": "Beter Bed", - "icon": "./assets/data/nsi/logos/beterbed-3030e1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/beterbed-3030e1.svg", "osmTags": { "and": [ "shop=bed", @@ -394552,7 +394906,7 @@ }, { "question": "brava", - "icon": "./assets/data/nsi/logos/brava-cd9810.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brava-cd9810.jpg", "osmTags": { "and": [ "shop=bed", @@ -394570,7 +394924,7 @@ }, { "question": "Casper", - "icon": "./assets/data/nsi/logos/casper-a50061.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casper-a50061.jpg", "osmTags": { "and": [ "shop=bed", @@ -394586,7 +394940,7 @@ }, { "question": "Dial-a-Bed", - "icon": "./assets/data/nsi/logos/dialabed-d8cd0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dialabed-d8cd0b.png", "osmTags": { "and": [ "shop=bed", @@ -394602,7 +394956,7 @@ }, { "question": "Dreams", - "icon": "./assets/data/nsi/logos/dreams-8fcb64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dreams-8fcb64.jpg", "osmTags": { "and": [ "shop=bed", @@ -394618,7 +394972,7 @@ }, { "question": "Forty Winks", - "icon": "./assets/data/nsi/logos/fortywinks-156cc7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortywinks-156cc7.png", "osmTags": { "and": [ "shop=bed", @@ -394634,7 +394988,7 @@ }, { "question": "France Literie", - "icon": "./assets/data/nsi/logos/franceliterie-1bbb34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/franceliterie-1bbb34.jpg", "osmTags": { "and": [ "shop=bed", @@ -394650,7 +395004,7 @@ }, { "question": "Grand Litier", - "icon": "./assets/data/nsi/logos/grandlitier-fe1cb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandlitier-fe1cb3.jpg", "osmTags": { "and": [ "shop=bed", @@ -394666,7 +395020,7 @@ }, { "question": "İDAŞ", - "icon": "./assets/data/nsi/logos/idas-a08a8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idas-a08a8e.jpg", "osmTags": { "and": [ "shop=bed", @@ -394682,7 +395036,7 @@ }, { "question": "La Compagnie du Lit", - "icon": "./assets/data/nsi/logos/lacompagniedulit-bec31a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lacompagniedulit-bec31a.png", "osmTags": { "and": [ "shop=bed", @@ -394698,7 +395052,7 @@ }, { "question": "Le Roi du Matelas", - "icon": "./assets/data/nsi/logos/leroidumatelas-1bbb34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leroidumatelas-1bbb34.jpg", "osmTags": { "and": [ "shop=bed", @@ -394714,7 +395068,7 @@ }, { "question": "Lova Yatak", - "icon": "./assets/data/nsi/logos/lovayatak-a08a8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lovayatak-a08a8e.jpg", "osmTags": { "and": [ "shop=bed", @@ -394730,7 +395084,7 @@ }, { "question": "Maison de la Literie", - "icon": "./assets/data/nsi/logos/maisondelaliterie-fe1cb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maisondelaliterie-fe1cb3.jpg", "osmTags": { "and": [ "shop=bed", @@ -394746,7 +395100,7 @@ }, { "question": "Matratzen Concord", - "icon": "./assets/data/nsi/logos/matratzenconcord-795ce0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/matratzenconcord-795ce0.png", "osmTags": { "and": [ "shop=bed", @@ -394762,7 +395116,7 @@ }, { "question": "Mattress Depot USA", - "icon": "./assets/data/nsi/logos/mattressdepotusa-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mattressdepotusa-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -394778,7 +395132,7 @@ }, { "question": "Mattress Firm", - "icon": "./assets/data/nsi/logos/mattressfirm-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mattressfirm-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -394794,7 +395148,7 @@ }, { "question": "Mattress Firm Clearance", - "icon": "./assets/data/nsi/logos/mattressfirmclearance-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mattressfirmclearance-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -394810,7 +395164,7 @@ }, { "question": "Mattress Warehouse", - "icon": "./assets/data/nsi/logos/mattresswarehouse-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mattresswarehouse-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -394826,7 +395180,7 @@ }, { "question": "Mattress World Northwest", - "icon": "./assets/data/nsi/logos/mattressworldnorthwest-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mattressworldnorthwest-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -394842,7 +395196,7 @@ }, { "question": "Metro Mattress", - "icon": "./assets/data/nsi/logos/metromattress-5fccfc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metromattress-5fccfc.png", "osmTags": { "and": [ "shop=bed", @@ -394858,7 +395212,7 @@ }, { "question": "MFO Matratzen", - "icon": "./assets/data/nsi/logos/mfomatratzen-c61a29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mfomatratzen-c61a29.jpg", "osmTags": { "and": [ "shop=bed", @@ -394874,7 +395228,7 @@ }, { "question": "Original Mattress Factory", - "icon": "./assets/data/nsi/logos/originalmattressfactory-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/originalmattressfactory-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -394905,7 +395259,7 @@ }, { "question": "Ortobom", - "icon": "./assets/data/nsi/logos/ortobom-4b84fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ortobom-4b84fc.png", "osmTags": { "and": [ "shop=bed", @@ -394921,7 +395275,7 @@ }, { "question": "PreSpánok", - "icon": "./assets/data/nsi/logos/prespanok-16989e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prespanok-16989e.png", "osmTags": { "and": [ "shop=bed", @@ -394937,7 +395291,7 @@ }, { "question": "ProSpánek", - "icon": "./assets/data/nsi/logos/prospanek-5fff87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prospanek-5fff87.jpg", "osmTags": { "and": [ "shop=bed", @@ -394953,7 +395307,7 @@ }, { "question": "Purple", - "icon": "./assets/data/nsi/logos/purple-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/purple-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -394969,7 +395323,7 @@ }, { "question": "Sleep Country", - "icon": "./assets/data/nsi/logos/sleepcountry-fbfe85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sleepcountry-fbfe85.jpg", "osmTags": { "and": [ "shop=bed", @@ -394985,7 +395339,7 @@ }, { "question": "Sleep Experts", - "icon": "./assets/data/nsi/logos/sleepexperts-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sleepexperts-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -395001,7 +395355,7 @@ }, { "question": "Sleep Number", - "icon": "./assets/data/nsi/logos/sleepnumber-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sleepnumber-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -395017,7 +395371,7 @@ }, { "question": "Sleep Outfitters", - "icon": "./assets/data/nsi/logos/sleepoutfitters-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sleepoutfitters-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -395033,7 +395387,7 @@ }, { "question": "Sleepmasters", - "icon": "./assets/data/nsi/logos/sleepmasters-d8cd0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sleepmasters-d8cd0b.jpg", "osmTags": { "and": [ "shop=bed", @@ -395049,7 +395403,7 @@ }, { "question": "Swiss Sense", - "icon": "./assets/data/nsi/logos/swisssense-80dbc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisssense-80dbc6.jpg", "osmTags": { "and": [ "shop=bed", @@ -395065,7 +395419,7 @@ }, { "question": "Ted", - "icon": "./assets/data/nsi/logos/ted-cd9810.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ted-cd9810.jpg", "osmTags": { "and": [ "shop=bed", @@ -395081,7 +395435,7 @@ }, { "question": "Tempur-Pedic", - "icon": "./assets/data/nsi/logos/tempurpedic-032196.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tempurpedic-032196.png", "osmTags": { "and": [ "shop=bed", @@ -395097,7 +395451,7 @@ }, { "question": "The Bed Store", - "icon": "./assets/data/nsi/logos/thebedstore-d8cd0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebedstore-d8cd0b.jpg", "osmTags": { "and": [ "shop=bed", @@ -395113,7 +395467,7 @@ }, { "question": "Tuft & Needle", - "icon": "./assets/data/nsi/logos/tuftandneedle-032196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuftandneedle-032196.jpg", "osmTags": { "and": [ "shop=bed", @@ -395129,7 +395483,7 @@ }, { "question": "Yataş Bedding", - "icon": "./assets/data/nsi/logos/yatasbedding-1dfb01.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yatasbedding-1dfb01.png", "osmTags": { "and": [ "shop=bed", @@ -395145,7 +395499,7 @@ }, { "question": "Yatsan", - "icon": "./assets/data/nsi/logos/yatsan-a08a8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yatsan-a08a8e.jpg", "osmTags": { "and": [ "shop=bed", @@ -395161,7 +395515,7 @@ }, { "question": "alldrink", - "icon": "./assets/data/nsi/logos/alldrink-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alldrink-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395192,7 +395546,7 @@ }, { "question": "bilgro", - "icon": "./assets/data/nsi/logos/bilgro-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bilgro-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395208,7 +395562,7 @@ }, { "question": "EDEKA Getränkemarkt", - "icon": "./assets/data/nsi/logos/edekagetrankemarkt-c4cb62.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edekagetrankemarkt-c4cb62.png", "osmTags": { "and": [ "shop=beverages", @@ -395224,7 +395578,7 @@ }, { "question": "Fiiz Drinks", - "icon": "./assets/data/nsi/logos/fiizdrinks-dd8a79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiizdrinks-dd8a79.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395270,7 +395624,7 @@ }, { "question": "Fristo", - "icon": "./assets/data/nsi/logos/fristo-650acc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fristo-650acc.svg", "osmTags": { "and": [ "shop=beverages", @@ -395316,7 +395670,7 @@ }, { "question": "Getränke Hoffmann", - "icon": "./assets/data/nsi/logos/getrankehoffmann-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/getrankehoffmann-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395332,7 +395686,7 @@ }, { "question": "Getränke Quelle", - "icon": "./assets/data/nsi/logos/getrankequelle-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/getrankequelle-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395348,7 +395702,7 @@ }, { "question": "Getränkeland", - "icon": "./assets/data/nsi/logos/getrankeland-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/getrankeland-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395364,7 +395718,7 @@ }, { "question": "Getränkewelt", - "icon": "./assets/data/nsi/logos/getrankewelt-f24eb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/getrankewelt-f24eb8.png", "osmTags": { "and": [ "shop=beverages", @@ -395395,7 +395749,7 @@ }, { "question": "Hol'ab", - "icon": "./assets/data/nsi/logos/holab-c4cb62.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/holab-c4cb62.svg", "osmTags": { "and": [ "shop=beverages", @@ -395426,7 +395780,7 @@ }, { "question": "logo Getränke-Fachmarkt", - "icon": "./assets/data/nsi/logos/logogetrankefachmarkt-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/logogetrankefachmarkt-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395443,7 +395797,7 @@ }, { "question": "Markgrafen Getränkemarkt", - "icon": "./assets/data/nsi/logos/markgrafengetrankemarkt-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/markgrafengetrankemarkt-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395459,7 +395813,7 @@ }, { "question": "Netto Getränke-Discount", - "icon": "./assets/data/nsi/logos/nettogetrankediscount-c4cb62.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nettogetrankediscount-c4cb62.png", "osmTags": { "and": [ "shop=beverages", @@ -395475,7 +395829,7 @@ }, { "question": "Orterer Getränkemarkt", - "icon": "./assets/data/nsi/logos/orterergetrankemarkt-c4cb62.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orterergetrankemarkt-c4cb62.png", "osmTags": { "and": [ "shop=beverages", @@ -395491,7 +395845,7 @@ }, { "question": "REWE Getränkemarkt", - "icon": "./assets/data/nsi/logos/rewegetrankemarkt-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rewegetrankemarkt-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395507,7 +395861,7 @@ }, { "question": "Sagasser", - "icon": "./assets/data/nsi/logos/sagasser-c4cb62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sagasser-c4cb62.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395538,7 +395892,7 @@ }, { "question": "Trink & Spare", - "icon": "./assets/data/nsi/logos/trinkandspare-573561.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trinkandspare-573561.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395554,7 +395908,7 @@ }, { "question": "trinkgut", - "icon": "./assets/data/nsi/logos/trinkgut-fe02c7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trinkgut-fe02c7.svg", "osmTags": { "and": [ "shop=beverages", @@ -395570,7 +395924,7 @@ }, { "question": "鴻福堂 Hung Fook Tong", - "icon": "./assets/data/nsi/logos/hungfooktong-71bf69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hungfooktong-71bf69.jpg", "osmTags": { "and": [ "shop=beverages", @@ -395590,7 +395944,7 @@ }, { "question": "99 Bikes", - "icon": "./assets/data/nsi/logos/99bikes-0d00fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/99bikes-0d00fa.png", "osmTags": { "and": [ "shop=bicycle", @@ -395606,7 +395960,7 @@ }, { "question": "Alltricks", - "icon": "./assets/data/nsi/logos/alltricks-64ac44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alltricks-64ac44.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395637,7 +395991,7 @@ }, { "question": "B.O.C.", - "icon": "./assets/data/nsi/logos/boc-b51da6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boc-b51da6.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395653,7 +396007,7 @@ }, { "question": "Balfe's Bikes", - "icon": "./assets/data/nsi/logos/balfesbikes-e982e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/balfesbikes-e982e5.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395669,7 +396023,7 @@ }, { "question": "Bike Totaal", - "icon": "./assets/data/nsi/logos/biketotaal-a0a74d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biketotaal-a0a74d.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395685,7 +396039,7 @@ }, { "question": "Bouticycle", - "icon": "./assets/data/nsi/logos/bouticycle-64ac44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bouticycle-64ac44.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395701,7 +396055,7 @@ }, { "question": "Culture Vélo", - "icon": "./assets/data/nsi/logos/culturevelo-64ac44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/culturevelo-64ac44.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395717,7 +396071,7 @@ }, { "question": "Cyclable", - "icon": "./assets/data/nsi/logos/cyclable-64ac44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyclable-64ac44.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395733,6 +396087,7 @@ }, { "question": "Cycle Lab", + "icon": "https://data.mapcomplete.org/nsi//logos/cyclelab-d271c4.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395748,7 +396103,7 @@ }, { "question": "Evans Cycles", - "icon": "./assets/data/nsi/logos/evanscycles-3697a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evanscycles-3697a8.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395764,7 +396119,7 @@ }, { "question": "Fahrrad XXL", - "icon": "./assets/data/nsi/logos/fahrradxxl-b51da6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fahrradxxl-b51da6.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395780,7 +396135,7 @@ }, { "question": "Fietsenwinkel.nl", - "icon": "./assets/data/nsi/logos/fietsenwinkelnl-a0a74d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fietsenwinkelnl-a0a74d.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395811,7 +396166,7 @@ }, { "question": "Fri BikeShop", - "icon": "./assets/data/nsi/logos/fribikeshop-ff17d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fribikeshop-ff17d0.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395827,7 +396182,7 @@ }, { "question": "Giant", - "icon": "./assets/data/nsi/logos/giant-3628a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giant-3628a9.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395843,7 +396198,7 @@ }, { "question": "Little John Bikes", - "icon": "./assets/data/nsi/logos/littlejohnbikes-b51da6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/littlejohnbikes-b51da6.png", "osmTags": { "and": [ "shop=bicycle", @@ -395859,7 +396214,7 @@ }, { "question": "Materiel-velo.com", - "icon": "./assets/data/nsi/logos/materielvelocom-64ac44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/materielvelocom-64ac44.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395875,7 +396230,7 @@ }, { "question": "Mondovélo", - "icon": "./assets/data/nsi/logos/mondovelo-64ac44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mondovelo-64ac44.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395891,7 +396246,7 @@ }, { "question": "Profile", - "icon": "./assets/data/nsi/logos/profile-a0a74d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/profile-a0a74d.png", "osmTags": { "and": [ "shop=bicycle", @@ -395907,7 +396262,7 @@ }, { "question": "Pure Electric", - "icon": "./assets/data/nsi/logos/pureelectric-3697a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pureelectric-3697a8.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395923,7 +396278,7 @@ }, { "question": "Specialized", - "icon": "./assets/data/nsi/logos/specialized-3628a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/specialized-3628a9.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395939,7 +396294,7 @@ }, { "question": "Stella", - "icon": "./assets/data/nsi/logos/stella-75e76c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stella-75e76c.png", "osmTags": { "and": [ "shop=bicycle", @@ -395955,7 +396310,7 @@ }, { "question": "tokyobike", - "icon": "./assets/data/nsi/logos/tokyobike-1c47bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokyobike-1c47bc.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -395971,7 +396326,7 @@ }, { "question": "Trek", - "icon": "./assets/data/nsi/logos/trek-3628a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trek-3628a9.png", "osmTags": { "and": [ "shop=bicycle", @@ -396002,7 +396357,7 @@ }, { "question": "Zweirad-Center Stadler", - "icon": "./assets/data/nsi/logos/zweiradcenterstadler-d06ca0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zweiradcenterstadler-d06ca0.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -396032,12 +396387,9 @@ }, { "question": "イオンバイク", - "icon": "./assets/data/nsi/logos/aeonbike-1d9d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeonbike-1d9d0f.jpg", "osmTags": { "and": [ - "official_name=イオンサイクルショップ", - "official_name:en=Aeon Bike Shop", - "official_name:ja=イオンサイクルショップ", "shop=bicycle", { "or": [ @@ -396047,7 +396399,10 @@ "brand:wikidata=Q11286054", "name=イオンバイク", "name:en=Aeon Bike", - "name:ja=イオンバイク" + "name:ja=イオンバイク", + "official_name=イオンサイクルショップ", + "official_name:en=Aeon Bike Shop", + "official_name:ja=イオンサイクルショップ" ] } ] @@ -396055,7 +396410,7 @@ }, { "question": "サイクルスポット", - "icon": "./assets/data/nsi/logos/cyclespot-1d9d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyclespot-1d9d0f.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -396075,7 +396430,7 @@ }, { "question": "サイクルベースあさひ", - "icon": "./assets/data/nsi/logos/cyclebaseasahi-1d9d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyclebaseasahi-1d9d0f.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -396114,7 +396469,7 @@ }, { "question": "捷安特", - "icon": "./assets/data/nsi/logos/giant-88c22b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giant-88c22b.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -396134,7 +396489,7 @@ }, { "question": "美利达", - "icon": "./assets/data/nsi/logos/merida-88c22b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/merida-88c22b.jpg", "osmTags": { "and": [ "shop=bicycle", @@ -396154,7 +396509,7 @@ }, { "question": "Burnsco", - "icon": "./assets/data/nsi/logos/burnsco-bc4d2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/burnsco-bc4d2d.png", "osmTags": { "and": [ "seamark:small_craft_facility:category=chandler", @@ -396172,7 +396527,7 @@ }, { "question": "MarineMax", - "icon": "./assets/data/nsi/logos/marinemax-db06dd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marinemax-db06dd.png", "osmTags": { "and": [ "shop=boat", @@ -396188,7 +396543,7 @@ }, { "question": "West Marine", - "icon": "./assets/data/nsi/logos/westmarine-db06dd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westmarine-db06dd.png", "osmTags": { "and": [ "seamark:small_craft_facility:category=chandler", @@ -396278,7 +396633,7 @@ }, { "question": "Betfred", - "icon": "./assets/data/nsi/logos/betfred-58d00b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/betfred-58d00b.png", "osmTags": { "and": [ "shop=bookmaker", @@ -396294,7 +396649,7 @@ }, { "question": "BoyleSports", - "icon": "./assets/data/nsi/logos/boylesports-afd1fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boylesports-afd1fc.png", "osmTags": { "and": [ "shop=bookmaker", @@ -396356,7 +396711,7 @@ }, { "question": "Eurobet", - "icon": "./assets/data/nsi/logos/eurobet-d45505.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eurobet-d45505.png", "osmTags": { "and": [ "shop=bookmaker", @@ -396446,7 +396801,7 @@ }, { "question": "Ladbrokes", - "icon": "./assets/data/nsi/logos/ladbrokes-afd1fc.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/ladbrokes-afd1fc.gif", "osmTags": { "and": [ "shop=bookmaker", @@ -396506,7 +396861,7 @@ }, { "question": "Niké", - "icon": "./assets/data/nsi/logos/nike-faffc2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nike-faffc2.png", "osmTags": { "and": [ "shop=bookmaker", @@ -396522,7 +396877,7 @@ }, { "question": "Paddy Power", - "icon": "./assets/data/nsi/logos/paddypower-afd1fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paddypower-afd1fc.png", "osmTags": { "and": [ "shop=bookmaker", @@ -396553,7 +396908,7 @@ }, { "question": "Stanleybet", - "icon": "./assets/data/nsi/logos/stanleybet-dd4c95.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stanleybet-dd4c95.svg", "osmTags": { "and": [ "shop=bookmaker", @@ -396583,7 +396938,7 @@ }, { "question": "Superbet", - "icon": "./assets/data/nsi/logos/superbet-81d51d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/superbet-81d51d.png", "osmTags": { "and": [ "shop=bookmaker", @@ -396629,7 +396984,7 @@ }, { "question": "Tipico", - "icon": "./assets/data/nsi/logos/tipico-7054e9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tipico-7054e9.svg", "osmTags": { "and": [ "shop=bookmaker", @@ -396660,7 +397015,7 @@ }, { "question": "William Hill", - "icon": "./assets/data/nsi/logos/williamhill-58d00b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/williamhill-58d00b.png", "osmTags": { "and": [ "shop=bookmaker", @@ -396710,7 +397065,7 @@ }, { "question": "Фонбет", - "icon": "./assets/data/nsi/logos/fonbet-867318.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fonbet-867318.jpg", "osmTags": { "and": [ "shop=bookmaker", @@ -396730,7 +397085,7 @@ }, { "question": "Akademibokhandeln", - "icon": "./assets/data/nsi/logos/akademibokhandeln-9645e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akademibokhandeln-9645e8.jpg", "osmTags": { "and": [ "shop=books", @@ -396746,7 +397101,7 @@ }, { "question": "Akateeminen Kirjakauppa", - "icon": "./assets/data/nsi/logos/akateeminenkirjakauppa-0c91f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/akateeminenkirjakauppa-0c91f3.svg", "osmTags": { "and": [ "shop=books", @@ -396792,7 +397147,7 @@ }, { "question": "Amazon Books", - "icon": "./assets/data/nsi/logos/amazonbooks-1bd7b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amazonbooks-1bd7b6.jpg", "osmTags": { "and": [ "shop=books", @@ -396823,7 +397178,7 @@ }, { "question": "Asia Books", - "icon": "./assets/data/nsi/logos/asiabooks-06b756.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asiabooks-06b756.jpg", "osmTags": { "and": [ "shop=books", @@ -396839,7 +397194,7 @@ }, { "question": "Bargain Books", - "icon": "./assets/data/nsi/logos/bargainbooks-8d3b5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bargainbooks-8d3b5b.jpg", "osmTags": { "and": [ "shop=books", @@ -396855,7 +397210,7 @@ }, { "question": "Barnes & Noble", - "icon": "./assets/data/nsi/logos/barnesandnoble-1bd7b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barnesandnoble-1bd7b6.jpg", "osmTags": { "and": [ "shop=books", @@ -396871,7 +397226,7 @@ }, { "question": "Barnes & Noble College", - "icon": "./assets/data/nsi/logos/barnesandnoblecollege-1bd7b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barnesandnoblecollege-1bd7b6.jpg", "osmTags": { "and": [ "shop=books", @@ -396887,7 +397242,7 @@ }, { "question": "Bertrand", - "icon": "./assets/data/nsi/logos/bertrand-817210.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bertrand-817210.png", "osmTags": { "and": [ "shop=books", @@ -396903,7 +397258,7 @@ }, { "question": "Boekenvoordeel", - "icon": "./assets/data/nsi/logos/boekenvoordeel-1267b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boekenvoordeel-1267b5.jpg", "osmTags": { "and": [ "shop=books", @@ -396919,7 +397274,7 @@ }, { "question": "Bog & idé", - "icon": "./assets/data/nsi/logos/bogandide-d03d88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bogandide-d03d88.jpg", "osmTags": { "and": [ "shop=books", @@ -396935,7 +397290,7 @@ }, { "question": "Bonito", - "icon": "./assets/data/nsi/logos/bonito-0c5adb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonito-0c5adb.jpg", "osmTags": { "and": [ "shop=books", @@ -396951,7 +397306,7 @@ }, { "question": "Books-A-Million", - "icon": "./assets/data/nsi/logos/booksamillion-1bd7b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/booksamillion-1bd7b6.jpg", "osmTags": { "and": [ "shop=books", @@ -396967,7 +397322,7 @@ }, { "question": "Booktrading", - "icon": "./assets/data/nsi/logos/booktrading-eec251.png", + "icon": "https://data.mapcomplete.org/nsi//logos/booktrading-eec251.png", "osmTags": { "and": [ "shop=books", @@ -396983,7 +397338,7 @@ }, { "question": "Bruna", - "icon": "./assets/data/nsi/logos/bruna-1267b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bruna-1267b5.jpg", "osmTags": { "and": [ "shop=books", @@ -396999,7 +397354,7 @@ }, { "question": "Bücher Pustet", - "icon": "./assets/data/nsi/logos/bucherpustet-65e1d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bucherpustet-65e1d5.jpg", "osmTags": { "and": [ "shop=books", @@ -397015,7 +397370,7 @@ }, { "question": "Buchhandlung Walther König", - "icon": "./assets/data/nsi/logos/buchhandlungwaltherkonig-dc1b83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buchhandlungwaltherkonig-dc1b83.jpg", "osmTags": { "and": [ "shop=books", @@ -397031,7 +397386,7 @@ }, { "question": "Cărturești", - "icon": "./assets/data/nsi/logos/carturesti-2e1569.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carturesti-2e1569.jpg", "osmTags": { "and": [ "shop=books", @@ -397047,7 +397402,7 @@ }, { "question": "Casa del Libro", - "icon": "./assets/data/nsi/logos/casadellibro-03d7b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casadellibro-03d7b8.jpg", "osmTags": { "and": [ "shop=books", @@ -397063,7 +397418,7 @@ }, { "question": "Chapters", - "icon": "./assets/data/nsi/logos/chapters-285257.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chapters-285257.jpg", "osmTags": { "and": [ "shop=books", @@ -397095,7 +397450,7 @@ }, { "question": "Ciela", - "icon": "./assets/data/nsi/logos/ciela-eec251.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ciela-eec251.jpg", "osmTags": { "and": [ "shop=books", @@ -397111,7 +397466,7 @@ }, { "question": "Coles", - "icon": "./assets/data/nsi/logos/coles-c95919.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/coles-c95919.svg", "osmTags": { "and": [ "shop=books", @@ -397127,7 +397482,7 @@ }, { "question": "Crossword Bookstores", - "icon": "./assets/data/nsi/logos/crosswordbookstores-be6694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crosswordbookstores-be6694.jpg", "osmTags": { "and": [ "shop=books", @@ -397143,7 +397498,7 @@ }, { "question": "Cultura", - "icon": "./assets/data/nsi/logos/cultura-f3b31c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cultura-f3b31c.png", "osmTags": { "and": [ "shop=books", @@ -397159,7 +397514,7 @@ }, { "question": "CUM Books", - "icon": "./assets/data/nsi/logos/cumbooks-8d3b5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cumbooks-8d3b5b.jpg", "osmTags": { "and": [ "books=religion", @@ -397177,7 +397532,7 @@ }, { "question": "D&R", - "icon": "./assets/data/nsi/logos/dandr-c24b88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dandr-c24b88.jpg", "osmTags": { "and": [ "shop=books", @@ -397193,7 +397548,7 @@ }, { "question": "Daunt Books", - "icon": "./assets/data/nsi/logos/dauntbooks-587203.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dauntbooks-587203.jpg", "osmTags": { "and": [ "shop=books", @@ -397209,7 +397564,7 @@ }, { "question": "Dedalus", - "icon": "./assets/data/nsi/logos/dedalus-0c5adb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dedalus-0c5adb.jpg", "osmTags": { "and": [ "shop=books", @@ -397225,7 +397580,7 @@ }, { "question": "Delfi", - "icon": "./assets/data/nsi/logos/delfi-000b97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delfi-000b97.jpg", "osmTags": { "and": [ "shop=books", @@ -397245,7 +397600,7 @@ }, { "question": "Dymocks", - "icon": "./assets/data/nsi/logos/dymocks-e673a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dymocks-e673a5.jpg", "osmTags": { "and": [ "shop=books", @@ -397261,7 +397616,7 @@ }, { "question": "Eason", - "icon": "./assets/data/nsi/logos/eason-202425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eason-202425.jpg", "osmTags": { "and": [ "shop=books", @@ -397277,7 +397632,7 @@ }, { "question": "Empik", - "icon": "./assets/data/nsi/logos/empik-0c5adb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/empik-0c5adb.png", "osmTags": { "and": [ "shop=books", @@ -397293,7 +397648,7 @@ }, { "question": "Exclusive Books", - "icon": "./assets/data/nsi/logos/exclusivebooks-086859.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exclusivebooks-086859.jpg", "osmTags": { "and": [ "shop=books", @@ -397309,7 +397664,7 @@ }, { "question": "Foyles", - "icon": "./assets/data/nsi/logos/foyles-e6b908.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foyles-e6b908.png", "osmTags": { "and": [ "shop=books", @@ -397325,7 +397680,7 @@ }, { "question": "France Loisirs", - "icon": "./assets/data/nsi/logos/franceloisirs-f3b31c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/franceloisirs-f3b31c.png", "osmTags": { "and": [ "shop=books", @@ -397341,7 +397696,7 @@ }, { "question": "Funside", - "icon": "./assets/data/nsi/logos/funside-56c580.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/funside-56c580.jpg", "osmTags": { "and": [ "books=comic;manga", @@ -397358,7 +397713,7 @@ }, { "question": "Gandhi", - "icon": "./assets/data/nsi/logos/gandhi-1ea9d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gandhi-1ea9d6.jpg", "osmTags": { "and": [ "shop=books", @@ -397374,7 +397729,7 @@ }, { "question": "Giunti al Punto", - "icon": "./assets/data/nsi/logos/giuntialpunto-56c580.png", + "icon": "https://data.mapcomplete.org/nsi//logos/giuntialpunto-56c580.png", "osmTags": { "and": [ "shop=books", @@ -397390,7 +397745,7 @@ }, { "question": "Gramedia", - "icon": "./assets/data/nsi/logos/gramedia-828c8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gramedia-828c8f.jpg", "osmTags": { "and": [ "shop=books", @@ -397406,7 +397761,7 @@ }, { "question": "Half Price Books", - "icon": "./assets/data/nsi/logos/halfpricebooks-1bd7b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halfpricebooks-1bd7b6.jpg", "osmTags": { "and": [ "shop=books", @@ -397422,7 +397777,7 @@ }, { "question": "Higginbotham's", - "icon": "./assets/data/nsi/logos/higginbothams-be6694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/higginbothams-be6694.jpg", "osmTags": { "and": [ "shop=books", @@ -397438,7 +397793,7 @@ }, { "question": "Hudson Booksellers", - "icon": "./assets/data/nsi/logos/hudsonbooksellers-285257.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hudsonbooksellers-285257.jpg", "osmTags": { "and": [ "shop=books", @@ -397454,7 +397809,7 @@ }, { "question": "Hugendubel", - "icon": "./assets/data/nsi/logos/hugendubel-65e1d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hugendubel-65e1d5.png", "osmTags": { "and": [ "shop=books", @@ -397470,7 +397825,7 @@ }, { "question": "Indigo", - "icon": "./assets/data/nsi/logos/indigo-285257.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indigo-285257.jpg", "osmTags": { "and": [ "shop=books", @@ -397487,7 +397842,7 @@ }, { "question": "Jokers", - "icon": "./assets/data/nsi/logos/jokers-65e1d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jokers-65e1d5.jpg", "osmTags": { "and": [ "shop=books", @@ -397503,7 +397858,7 @@ }, { "question": "Kanzelsberger", - "icon": "./assets/data/nsi/logos/kanzelsberger-70eb04.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kanzelsberger-70eb04.png", "osmTags": { "and": [ "shop=books", @@ -397519,7 +397874,7 @@ }, { "question": "Kinokuniya", - "icon": "./assets/data/nsi/logos/kinokuniya-3c069b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinokuniya-3c069b.jpg", "osmTags": { "and": [ "shop=books", @@ -397535,7 +397890,7 @@ }, { "question": "La Feltrinelli", - "icon": "./assets/data/nsi/logos/lafeltrinelli-56c580.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafeltrinelli-56c580.svg", "osmTags": { "and": [ "shop=books", @@ -397551,7 +397906,7 @@ }, { "question": "La Procure", - "icon": "./assets/data/nsi/logos/laprocure-9d3dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laprocure-9d3dbd.jpg", "osmTags": { "and": [ "shop=books", @@ -397567,7 +397922,7 @@ }, { "question": "Laguna", - "icon": "./assets/data/nsi/logos/laguna-000b97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/laguna-000b97.png", "osmTags": { "and": [ "shop=books", @@ -397587,7 +397942,7 @@ }, { "question": "Leitura", - "icon": "./assets/data/nsi/logos/leitura-fdaa32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leitura-fdaa32.jpg", "osmTags": { "and": [ "shop=books", @@ -397604,7 +397959,7 @@ }, { "question": "Libris", - "icon": "./assets/data/nsi/logos/libris-1267b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/libris-1267b5.png", "osmTags": { "and": [ "shop=books", @@ -397620,7 +397975,7 @@ }, { "question": "Libro", - "icon": "./assets/data/nsi/logos/libro-95302b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/libro-95302b.png", "osmTags": { "and": [ "shop=books", @@ -397636,7 +397991,7 @@ }, { "question": "Lüthy", - "icon": "./assets/data/nsi/logos/luthy-c5abff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luthy-c5abff.jpg", "osmTags": { "and": [ "shop=books", @@ -397652,7 +398007,7 @@ }, { "question": "Martinus", - "icon": "./assets/data/nsi/logos/martinus-de15da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/martinus-de15da.jpg", "osmTags": { "and": [ "shop=books", @@ -397668,7 +398023,7 @@ }, { "question": "Maxilivres", - "icon": "./assets/data/nsi/logos/maxilivres-9d3dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxilivres-9d3dbd.jpg", "osmTags": { "and": [ "shop=books", @@ -397684,7 +398039,7 @@ }, { "question": "Mayersche", - "icon": "./assets/data/nsi/logos/mayersche-65e1d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayersche-65e1d5.jpg", "osmTags": { "and": [ "shop=books", @@ -397700,7 +398055,7 @@ }, { "question": "Mondadori", - "icon": "./assets/data/nsi/logos/mondadori-56c580.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mondadori-56c580.png", "osmTags": { "and": [ "shop=books", @@ -397716,7 +398071,7 @@ }, { "question": "Morawa", - "icon": "./assets/data/nsi/logos/morawa-95302b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/morawa-95302b.svg", "osmTags": { "and": [ "shop=books", @@ -397732,7 +398087,7 @@ }, { "question": "National Book Store", - "icon": "./assets/data/nsi/logos/nationalbookstore-08d1a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbookstore-08d1a3.jpg", "osmTags": { "and": [ "shop=books", @@ -397748,7 +398103,7 @@ }, { "question": "Norli", - "icon": "./assets/data/nsi/logos/norli-ed60d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norli-ed60d1.jpg", "osmTags": { "and": [ "shop=books", @@ -397764,7 +398119,7 @@ }, { "question": "Orange", - "icon": "./assets/data/nsi/logos/orange-eec251.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orange-eec251.jpg", "osmTags": { "and": [ "shop=books", @@ -397780,7 +398135,7 @@ }, { "question": "Orell Füssli", - "icon": "./assets/data/nsi/logos/orellfussli-c5abff.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/orellfussli-c5abff.svg", "osmTags": { "and": [ "shop=books", @@ -397796,7 +398151,7 @@ }, { "question": "Osiander", - "icon": "./assets/data/nsi/logos/osiander-65e1d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osiander-65e1d5.jpg", "osmTags": { "and": [ "shop=books", @@ -397812,7 +398167,7 @@ }, { "question": "Oxfam Bookshop", - "icon": "./assets/data/nsi/logos/oxfambookshop-4cb062.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfambookshop-4cb062.jpg", "osmTags": { "and": [ "second_hand=only", @@ -397829,7 +398184,7 @@ }, { "question": "Oxford Bookstore", - "icon": "./assets/data/nsi/logos/oxfordbookstore-be6694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfordbookstore-be6694.jpg", "osmTags": { "and": [ "shop=books", @@ -397845,7 +398200,7 @@ }, { "question": "Pandayan Bookshop", - "icon": "./assets/data/nsi/logos/pandayanbookshop-08d1a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pandayanbookshop-08d1a3.jpg", "osmTags": { "and": [ "shop=books", @@ -397861,7 +398216,7 @@ }, { "question": "Panta Rhei", - "icon": "./assets/data/nsi/logos/pantarhei-de15da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pantarhei-de15da.jpg", "osmTags": { "and": [ "shop=books", @@ -397877,7 +398232,7 @@ }, { "question": "Paper Plus", - "icon": "./assets/data/nsi/logos/paperplus-fe66a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paperplus-fe66a8.jpg", "osmTags": { "and": [ "shop=books", @@ -397893,7 +398248,7 @@ }, { "question": "Popular", - "icon": "./assets/data/nsi/logos/popular-a6ba8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popular-a6ba8a.jpg", "osmTags": { "and": [ "shop=books", @@ -397913,7 +398268,7 @@ }, { "question": "Porrúa", - "icon": "./assets/data/nsi/logos/porrua-1ea9d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porrua-1ea9d6.jpg", "osmTags": { "and": [ "shop=books", @@ -397929,7 +398284,7 @@ }, { "question": "Press & Books", - "icon": "./assets/data/nsi/logos/pressandbooks-76a200.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pressandbooks-76a200.jpg", "osmTags": { "and": [ "shop=books", @@ -397945,7 +398300,7 @@ }, { "question": "QBD Books", - "icon": "./assets/data/nsi/logos/qbdbooks-e673a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qbdbooks-e673a5.jpg", "osmTags": { "and": [ "shop=books", @@ -397961,7 +398316,7 @@ }, { "question": "Remzi Kitabevi", - "icon": "./assets/data/nsi/logos/remzikitabevi-c24b88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/remzikitabevi-c24b88.jpg", "osmTags": { "and": [ "shop=books", @@ -397977,7 +398332,7 @@ }, { "question": "Rupprecht", - "icon": "./assets/data/nsi/logos/rupprecht-65e1d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rupprecht-65e1d5.jpg", "osmTags": { "and": [ "shop=books", @@ -397993,7 +398348,7 @@ }, { "question": "Seagull Book", - "icon": "./assets/data/nsi/logos/seagullbook-1bd7b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seagullbook-1bd7b6.jpg", "osmTags": { "and": [ "shop=books", @@ -398009,7 +398364,7 @@ }, { "question": "Službeni glasnik", - "icon": "./assets/data/nsi/logos/sluzbeniglasnik-000b97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sluzbeniglasnik-000b97.png", "osmTags": { "and": [ "shop=books", @@ -398029,7 +398384,7 @@ }, { "question": "Standaard Boekhandel", - "icon": "./assets/data/nsi/logos/standaardboekhandel-7d5083.png", + "icon": "https://data.mapcomplete.org/nsi//logos/standaardboekhandel-7d5083.png", "osmTags": { "and": [ "shop=books", @@ -398045,7 +398400,7 @@ }, { "question": "Suomalainen Kirjakauppa", - "icon": "./assets/data/nsi/logos/suomalainenkirjakauppa-0c91f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suomalainenkirjakauppa-0c91f3.jpg", "osmTags": { "and": [ "shop=books", @@ -398061,7 +398416,7 @@ }, { "question": "Świat Książki", - "icon": "./assets/data/nsi/logos/swiatksiazki-0c5adb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swiatksiazki-0c5adb.jpg", "osmTags": { "and": [ "shop=books", @@ -398077,7 +398432,7 @@ }, { "question": "Thalia", - "icon": "./assets/data/nsi/logos/thalia-5cfe4f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thalia-5cfe4f.png", "osmTags": { "and": [ "shop=books", @@ -398093,7 +398448,7 @@ }, { "question": "The Readshop", - "icon": "./assets/data/nsi/logos/thereadshop-1267b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thereadshop-1267b5.png", "osmTags": { "and": [ "shop=books", @@ -398109,7 +398464,7 @@ }, { "question": "The Works", - "icon": "./assets/data/nsi/logos/theworks-b448ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theworks-b448ba.jpg", "osmTags": { "and": [ "shop=books", @@ -398125,7 +398480,7 @@ }, { "question": "TSUTAYA", - "icon": "./assets/data/nsi/logos/tsutaya-39c53e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tsutaya-39c53e.png", "osmTags": { "and": [ "shop=books", @@ -398141,7 +398496,7 @@ }, { "question": "Ubik", - "icon": "./assets/data/nsi/logos/ubik-56c580.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ubik-56c580.png", "osmTags": { "and": [ "shop=books", @@ -398157,7 +398512,7 @@ }, { "question": "Van Schaik", - "icon": "./assets/data/nsi/logos/vanschaik-8d3b5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vanschaik-8d3b5b.jpg", "osmTags": { "and": [ "shop=books", @@ -398173,7 +398528,7 @@ }, { "question": "Vulkan", - "icon": "./assets/data/nsi/logos/vulkan-000b97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vulkan-000b97.jpg", "osmTags": { "and": [ "shop=books", @@ -398193,7 +398548,7 @@ }, { "question": "Waterstones", - "icon": "./assets/data/nsi/logos/waterstones-3a34ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waterstones-3a34ca.jpg", "osmTags": { "and": [ "shop=books", @@ -398209,7 +398564,7 @@ }, { "question": "Weltbild", - "icon": "./assets/data/nsi/logos/weltbild-65e1d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/weltbild-65e1d5.png", "osmTags": { "and": [ "shop=books", @@ -398240,7 +398595,7 @@ }, { "question": "WHSmith", - "icon": "./assets/data/nsi/logos/whsmith-4d39b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whsmith-4d39b8.jpg", "osmTags": { "and": [ "shop=books", @@ -398256,7 +398611,7 @@ }, { "question": "WH史密斯", - "icon": "./assets/data/nsi/logos/whsmith-1c7751.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whsmith-1c7751.jpg", "osmTags": { "and": [ "shop=books", @@ -398276,7 +398631,7 @@ }, { "question": "Белкнига", - "icon": "./assets/data/nsi/logos/belkniga-9972c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belkniga-9972c8.jpg", "osmTags": { "and": [ "shop=books", @@ -398313,7 +398668,7 @@ }, { "question": "Дом книги", - "icon": "./assets/data/nsi/logos/fcb83c-4175bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fcb83c-4175bc.jpg", "osmTags": { "and": [ "shop=books", @@ -398329,7 +398684,7 @@ }, { "question": "Є", - "icon": "./assets/data/nsi/logos/5b11cd-6e5bbf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/5b11cd-6e5bbf.jpg", "osmTags": { "and": [ "shop=books", @@ -398345,7 +398700,7 @@ }, { "question": "КСД", - "icon": "./assets/data/nsi/logos/ksd-6e5bbf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ksd-6e5bbf.jpg", "osmTags": { "and": [ "shop=books", @@ -398365,7 +398720,7 @@ }, { "question": "Хеликон", - "icon": "./assets/data/nsi/logos/helikon-eec251.png", + "icon": "https://data.mapcomplete.org/nsi//logos/helikon-eec251.png", "osmTags": { "and": [ "shop=books", @@ -398383,7 +398738,7 @@ }, { "question": "Читай-город", - "icon": "./assets/data/nsi/logos/2b704f-4175bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2b704f-4175bc.jpg", "osmTags": { "and": [ "shop=books", @@ -398399,7 +398754,7 @@ }, { "question": "ბიბლუსი", - "icon": "./assets/data/nsi/logos/biblus-4774b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biblus-4774b4.jpg", "osmTags": { "and": [ "shop=books", @@ -398419,7 +398774,7 @@ }, { "question": "პროსპეროს წიგნები", - "icon": "./assets/data/nsi/logos/prosperosbooks-4774b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prosperosbooks-4774b4.jpg", "osmTags": { "and": [ "shop=books", @@ -398439,7 +398794,7 @@ }, { "question": "სულაკაური", - "icon": "./assets/data/nsi/logos/sulakauri-4774b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sulakauri-4774b4.jpg", "osmTags": { "and": [ "shop=books", @@ -398459,7 +398814,7 @@ }, { "question": "סטימצקי", - "icon": "./assets/data/nsi/logos/steimatzky-428a21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steimatzky-428a21.jpg", "osmTags": { "and": [ "shop=books", @@ -398479,7 +398834,7 @@ }, { "question": "צומת ספרים", - "icon": "./assets/data/nsi/logos/tzometsfarm-428a21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tzometsfarm-428a21.jpg", "osmTags": { "and": [ "shop=books", @@ -398518,7 +398873,7 @@ }, { "question": "مكتبة جرير", - "icon": "./assets/data/nsi/logos/jarirbookstore-e19842.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jarirbookstore-e19842.jpg", "osmTags": { "and": [ "shop=books", @@ -398596,7 +398951,7 @@ }, { "question": "ジュンク堂書店", - "icon": "./assets/data/nsi/logos/junkudo-39c53e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/junkudo-39c53e.jpg", "osmTags": { "and": [ "shop=books", @@ -398616,7 +398971,7 @@ }, { "question": "とらのあな", - "icon": "./assets/data/nsi/logos/comictoranoana-39c53e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comictoranoana-39c53e.svg", "osmTags": { "and": [ "books=comic", @@ -398637,7 +398992,7 @@ }, { "question": "ブックオフ", - "icon": "./assets/data/nsi/logos/bookoff-39c53e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bookoff-39c53e.jpg", "osmTags": { "and": [ "shop=books", @@ -398676,7 +399031,7 @@ }, { "question": "メロンブックス", - "icon": "./assets/data/nsi/logos/melonbooks-39c53e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/melonbooks-39c53e.svg", "osmTags": { "and": [ "shop=books", @@ -398696,7 +399051,7 @@ }, { "question": "リブロ", - "icon": "./assets/data/nsi/logos/libro-39c53e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libro-39c53e.jpg", "osmTags": { "and": [ "shop=books", @@ -398716,7 +399071,7 @@ }, { "question": "三省堂書店", - "icon": "./assets/data/nsi/logos/bookssanseido-39c53e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bookssanseido-39c53e.jpg", "osmTags": { "and": [ "shop=books", @@ -398736,7 +399091,7 @@ }, { "question": "三聯書店 Joint Publishing", - "icon": "./assets/data/nsi/logos/jointpublishing-199399.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jointpublishing-199399.jpg", "osmTags": { "and": [ "shop=books", @@ -398785,7 +399140,7 @@ }, { "question": "中華書局 Chung Hwa Book Company", - "icon": "./assets/data/nsi/logos/chunghwabookcompany-199399.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chunghwabookcompany-199399.jpg", "osmTags": { "and": [ "shop=books", @@ -398817,9 +399172,6 @@ "question": "丸善", "osmTags": { "and": [ - "official_name=丸善雄松堂", - "official_name:en=Maruzen Yushodo", - "official_name:ja=丸善雄松堂", "shop=books", { "or": [ @@ -398829,7 +399181,10 @@ "brand:wikidata=Q1906012", "name=丸善", "name:en=MARUZEN", - "name:ja=丸善" + "name:ja=丸善", + "official_name=丸善雄松堂", + "official_name:en=Maruzen Yushodo", + "official_name:ja=丸善雄松堂" ] } ] @@ -398837,7 +399192,7 @@ }, { "question": "商務印書館 The Commercial Press", - "icon": "./assets/data/nsi/logos/thecommercialpress-199399.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecommercialpress-199399.jpg", "osmTags": { "and": [ "shop=books", @@ -398981,7 +399336,7 @@ }, { "question": "有隣堂", - "icon": "./assets/data/nsi/logos/yurindo-39c53e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yurindo-39c53e.jpg", "osmTags": { "and": [ "shop=books", @@ -399001,7 +399356,7 @@ }, { "question": "未来屋書店", - "icon": "./assets/data/nsi/logos/miraiyashoten-39c53e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miraiyashoten-39c53e.png", "osmTags": { "and": [ "shop=books", @@ -399062,7 +399417,7 @@ }, { "question": "紀伊國屋書店", - "icon": "./assets/data/nsi/logos/bookskinokuniya-2bac32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bookskinokuniya-2bac32.jpg", "osmTags": { "and": [ "shop=books", @@ -399082,7 +399437,7 @@ }, { "question": "臺灣蔦屋", - "icon": "./assets/data/nsi/logos/tsutaya-06f630.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tsutaya-06f630.png", "osmTags": { "and": [ "shop=books", @@ -399140,7 +399495,7 @@ }, { "question": "誠品書店", - "icon": "./assets/data/nsi/logos/eslitebookstore-b7aa5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eslitebookstore-b7aa5f.jpg", "osmTags": { "and": [ "shop=books", @@ -399160,7 +399515,7 @@ }, { "question": "誠品書店 Eslite Bookstore", - "icon": "./assets/data/nsi/logos/eslitebookstore-e5bda4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eslitebookstore-e5bda4.jpg", "osmTags": { "and": [ "shop=books", @@ -399184,7 +399539,7 @@ }, { "question": "諾貝爾圖書城", - "icon": "./assets/data/nsi/logos/nobelbookstore-06f630.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nobelbookstore-06f630.png", "osmTags": { "and": [ "shop=books", @@ -399204,7 +399559,7 @@ }, { "question": "金石堂書店", - "icon": "./assets/data/nsi/logos/kingstonebookstore-06f630.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kingstonebookstore-06f630.png", "osmTags": { "and": [ "shop=books", @@ -399246,7 +399601,7 @@ }, { "question": "Bluff Meat Supply", - "icon": "./assets/data/nsi/logos/bluffmeatsupply-dc7578.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluffmeatsupply-dc7578.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399262,7 +399617,7 @@ }, { "question": "Coqivoire", - "icon": "./assets/data/nsi/logos/coqivoire-40403c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coqivoire-40403c.jpg", "osmTags": { "and": [ "butcher=poultry", @@ -399279,7 +399634,7 @@ }, { "question": "Fleischerei Richter", - "icon": "./assets/data/nsi/logos/fleischereirichter-4d0b4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fleischereirichter-4d0b4d.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399295,7 +399650,7 @@ }, { "question": "Foani", - "icon": "./assets/data/nsi/logos/foani-40403c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foani-40403c.png", "osmTags": { "and": [ "butcher=poultry", @@ -399312,7 +399667,7 @@ }, { "question": "Forevers", - "icon": "./assets/data/nsi/logos/forevers-00a516.png", + "icon": "https://data.mapcomplete.org/nsi//logos/forevers-00a516.png", "osmTags": { "and": [ "shop=butcher", @@ -399328,7 +399683,7 @@ }, { "question": "føtex Slagter", - "icon": "./assets/data/nsi/logos/fotexslagter-4aef2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fotexslagter-4aef2d.png", "osmTags": { "and": [ "shop=butcher", @@ -399344,7 +399699,7 @@ }, { "question": "Fresh Options", - "icon": "./assets/data/nsi/logos/freshoptions-1cf7e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshoptions-1cf7e4.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399360,7 +399715,7 @@ }, { "question": "Gaik", - "icon": "./assets/data/nsi/logos/gaik-436f1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gaik-436f1d.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399376,7 +399731,7 @@ }, { "question": "Gzella", - "icon": "./assets/data/nsi/logos/gzella-436f1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gzella-436f1d.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399392,7 +399747,7 @@ }, { "question": "Keurslager", - "icon": "./assets/data/nsi/logos/keurslager-1c7101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keurslager-1c7101.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399408,7 +399763,7 @@ }, { "question": "Les Éleveurs de la Charentonne", - "icon": "./assets/data/nsi/logos/leseleveursdelacharentonne-bd963c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leseleveursdelacharentonne-bd963c.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399439,7 +399794,7 @@ }, { "question": "Mago", - "icon": "./assets/data/nsi/logos/mago-fbfd6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mago-fbfd6e.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399470,7 +399825,7 @@ }, { "question": "Matijević", - "icon": "./assets/data/nsi/logos/matijevic-c999d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/matijevic-c999d0.png", "osmTags": { "and": [ "shop=butcher", @@ -399492,7 +399847,7 @@ }, { "question": "Omaha Steaks", - "icon": "./assets/data/nsi/logos/omahasteaks-523a1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omahasteaks-523a1c.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399508,7 +399863,7 @@ }, { "question": "Renmans", - "icon": "./assets/data/nsi/logos/renmans-533183.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renmans-533183.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399524,7 +399879,7 @@ }, { "question": "Richter Erzgebirge", - "icon": "./assets/data/nsi/logos/richtererzgebirge-4d0b4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/richtererzgebirge-4d0b4d.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399557,7 +399912,7 @@ }, { "question": "Sokołów", - "icon": "./assets/data/nsi/logos/sokolow-436f1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sokolow-436f1d.png", "osmTags": { "and": [ "shop=butcher", @@ -399573,7 +399928,7 @@ }, { "question": "SuperBrugsen Slagter", - "icon": "./assets/data/nsi/logos/superbrugsenslagter-4aef2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superbrugsenslagter-4aef2d.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399589,7 +399944,7 @@ }, { "question": "Świeżyzna", - "icon": "./assets/data/nsi/logos/swiezyzna-436f1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swiezyzna-436f1d.png", "osmTags": { "and": [ "shop=butcher", @@ -399605,7 +399960,7 @@ }, { "question": "Vinzenzmurr", - "icon": "./assets/data/nsi/logos/vinzenzmurr-4d0b4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vinzenzmurr-4d0b4d.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399621,7 +399976,7 @@ }, { "question": "Wierzejki", - "icon": "./assets/data/nsi/logos/wierzejki-436f1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wierzejki-436f1d.png", "osmTags": { "and": [ "shop=butcher", @@ -399637,7 +399992,7 @@ }, { "question": "Yuhor", - "icon": "./assets/data/nsi/logos/yuhor-c999d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yuhor-c999d0.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399653,7 +400008,7 @@ }, { "question": "Ариант", - "icon": "./assets/data/nsi/logos/f172c7-6e607d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/f172c7-6e607d.png", "osmTags": { "and": [ "shop=butcher", @@ -399669,7 +400024,7 @@ }, { "question": "Великолукский мясокомбинат", - "icon": "./assets/data/nsi/logos/fc51bd-6e607d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fc51bd-6e607d.png", "osmTags": { "and": [ "shop=butcher", @@ -399685,7 +400040,7 @@ }, { "question": "Галицька Свіжина", - "icon": "./assets/data/nsi/logos/ef4709-d60de5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ef4709-d60de5.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399730,7 +400085,7 @@ }, { "question": "Ковбасна Мережа", - "icon": "./assets/data/nsi/logos/959c75-d60de5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/959c75-d60de5.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399746,7 +400101,7 @@ }, { "question": "Мʼясомаркет", - "icon": "./assets/data/nsi/logos/580ce4-d60de5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/580ce4-d60de5.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399804,7 +400159,7 @@ }, { "question": "Наша Ряба", - "icon": "./assets/data/nsi/logos/fbd1e6-d60de5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fbd1e6-d60de5.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399834,7 +400189,7 @@ }, { "question": "Родинна ковбаска", - "icon": "./assets/data/nsi/logos/rodynnakovbaska-d60de5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rodynnakovbaska-d60de5.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399854,7 +400209,7 @@ }, { "question": "Салтівський мʼясокомбінат", - "icon": "./assets/data/nsi/logos/21e59d-d60de5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/21e59d-d60de5.jpg", "osmTags": { "and": [ "shop=butcher", @@ -399898,7 +400253,7 @@ }, { "question": "ბიუ ბიუ", - "icon": "./assets/data/nsi/logos/biubiu-f98164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biubiu-f98164.jpg", "osmTags": { "and": [ "butcher=poultry", @@ -399919,7 +400274,7 @@ }, { "question": "ნოსტე", - "icon": "./assets/data/nsi/logos/noste-f98164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noste-f98164.jpg", "osmTags": { "and": [ "butcher=poultry", @@ -399942,7 +400297,7 @@ }, { "question": "肉のハナマサ", - "icon": "./assets/data/nsi/logos/hanamasameat-2bf181.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hanamasameat-2bf181.jpg", "osmTags": { "and": [ "butcher=beef", @@ -399963,7 +400318,7 @@ }, { "question": "Jessops", - "icon": "./assets/data/nsi/logos/jessops-916aa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jessops-916aa2.jpg", "osmTags": { "and": [ "shop=camera", @@ -399979,7 +400334,7 @@ }, { "question": "Kamera Express", - "icon": "./assets/data/nsi/logos/kameraexpress-696f9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kameraexpress-696f9c.png", "osmTags": { "and": [ "shop=camera", @@ -399995,7 +400350,7 @@ }, { "question": "Leica", - "icon": "./assets/data/nsi/logos/leica-ccedc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leica-ccedc8.jpg", "osmTags": { "and": [ "shop=camera", @@ -400011,7 +400366,7 @@ }, { "question": "London Camera Exchange", - "icon": "./assets/data/nsi/logos/londoncameraexchange-916aa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londoncameraexchange-916aa2.jpg", "osmTags": { "and": [ "shop=camera", @@ -400027,7 +400382,7 @@ }, { "question": "Yankee Candle", - "icon": "./assets/data/nsi/logos/yankeecandle-a62b26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yankeecandle-a62b26.jpg", "osmTags": { "and": [ "shop=candles", @@ -400043,7 +400398,7 @@ }, { "question": "BC Cannabis Store", - "icon": "./assets/data/nsi/logos/bccannabisstore-8d0d2a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bccannabisstore-8d0d2a.svg", "osmTags": { "and": [ "shop=cannabis", @@ -400059,7 +400414,7 @@ }, { "question": "Beyond Hello", - "icon": "./assets/data/nsi/logos/beyondhello-f81ec6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beyondhello-f81ec6.jpg", "osmTags": { "and": [ "shop=cannabis", @@ -400075,7 +400430,7 @@ }, { "question": "Cannabist", - "icon": "./assets/data/nsi/logos/cannabist-c9b3a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cannabist-c9b3a7.jpg", "osmTags": { "and": [ "shop=cannabis", @@ -400091,7 +400446,7 @@ }, { "question": "Consume", - "icon": "./assets/data/nsi/logos/consume-f6bf2f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consume-f6bf2f.png", "osmTags": { "and": [ "shop=cannabis", @@ -400107,7 +400462,7 @@ }, { "question": "Curaleaf", - "icon": "./assets/data/nsi/logos/curaleaf-4b9e8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/curaleaf-4b9e8a.jpg", "osmTags": { "and": [ "shop=cannabis", @@ -400123,7 +400478,7 @@ }, { "question": "MÜV", - "icon": "./assets/data/nsi/logos/muv-fc9dca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/muv-fc9dca.png", "osmTags": { "and": [ "shop=cannabis", @@ -400236,7 +400591,7 @@ }, { "question": "Zen Leaf", - "icon": "./assets/data/nsi/logos/zenleaf-65d11e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zenleaf-65d11e.jpg", "osmTags": { "and": [ "shop=cannabis", @@ -400252,7 +400607,7 @@ }, { "question": "Abarth", - "icon": "./assets/data/nsi/logos/abarth-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abarth-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400268,7 +400623,7 @@ }, { "question": "Acura", - "icon": "./assets/data/nsi/logos/acura-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/acura-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -400284,7 +400639,7 @@ }, { "question": "Aixam", - "icon": "./assets/data/nsi/logos/aixam-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aixam-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -400300,7 +400655,7 @@ }, { "question": "Alfa Romeo", - "icon": "./assets/data/nsi/logos/alfaromeo-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfaromeo-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400316,7 +400671,7 @@ }, { "question": "Alpine", - "icon": "./assets/data/nsi/logos/alpine-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alpine-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400332,7 +400687,7 @@ }, { "question": "America's Car-Mart", - "icon": "./assets/data/nsi/logos/americascarmart-71ab24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americascarmart-71ab24.jpg", "osmTags": { "and": [ "shop=car", @@ -400348,7 +400703,7 @@ }, { "question": "Arnold Clark", - "icon": "./assets/data/nsi/logos/arnoldclark-42e946.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arnoldclark-42e946.jpg", "osmTags": { "and": [ "shop=car", @@ -400364,7 +400719,7 @@ }, { "question": "Aston Martin", - "icon": "./assets/data/nsi/logos/astonmartin-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/astonmartin-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400380,7 +400735,7 @@ }, { "question": "Audi", - "icon": "./assets/data/nsi/logos/audi-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/audi-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400396,7 +400751,7 @@ }, { "question": "AutoNation", - "icon": "./assets/data/nsi/logos/autonation-71ab24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autonation-71ab24.jpg", "osmTags": { "and": [ "shop=car", @@ -400412,7 +400767,7 @@ }, { "question": "Avis Car Sales", - "icon": "./assets/data/nsi/logos/avis-71ab24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avis-71ab24.jpg", "osmTags": { "and": [ "second_hand=only", @@ -400429,7 +400784,7 @@ }, { "question": "Bentley", - "icon": "./assets/data/nsi/logos/bentley-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bentley-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400445,7 +400800,7 @@ }, { "question": "BMW", - "icon": "./assets/data/nsi/logos/bmw-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmw-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400461,7 +400816,7 @@ }, { "question": "Bristol Street Motors", - "icon": "./assets/data/nsi/logos/bristolstreetmotors-5338a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristolstreetmotors-5338a7.jpg", "osmTags": { "and": [ "shop=car", @@ -400477,7 +400832,7 @@ }, { "question": "Bugatti", - "icon": "./assets/data/nsi/logos/bugatti-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bugatti-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400493,7 +400848,7 @@ }, { "question": "Buick", - "icon": "./assets/data/nsi/logos/buick-738dde.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buick-738dde.jpg", "osmTags": { "and": [ "shop=car", @@ -400509,7 +400864,7 @@ }, { "question": "BYD", - "icon": "./assets/data/nsi/logos/byd-d4df28.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byd-d4df28.png", "osmTags": { "and": [ "shop=car", @@ -400525,7 +400880,7 @@ }, { "question": "Byrider", - "icon": "./assets/data/nsi/logos/byrider-71ab24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/byrider-71ab24.jpg", "osmTags": { "and": [ "shop=car", @@ -400541,7 +400896,7 @@ }, { "question": "Cadillac", - "icon": "./assets/data/nsi/logos/cadillac-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cadillac-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400557,7 +400912,7 @@ }, { "question": "CarMax", - "icon": "./assets/data/nsi/logos/carmax-71ab24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carmax-71ab24.jpg", "osmTags": { "and": [ "second_hand=only", @@ -400574,7 +400929,7 @@ }, { "question": "CarShop", - "icon": "./assets/data/nsi/logos/carshop-6f2988.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carshop-6f2988.jpg", "osmTags": { "and": [ "shop=car", @@ -400590,7 +400945,7 @@ }, { "question": "Cazoo", - "icon": "./assets/data/nsi/logos/cazoo-42e946.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cazoo-42e946.png", "osmTags": { "and": [ "second_hand=only", @@ -400607,7 +400962,7 @@ }, { "question": "Chery", - "icon": "./assets/data/nsi/logos/chery-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chery-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400623,7 +400978,7 @@ }, { "question": "Chevrolet", - "icon": "./assets/data/nsi/logos/chevrolet-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chevrolet-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400639,7 +400994,7 @@ }, { "question": "Chrysler", - "icon": "./assets/data/nsi/logos/chrysler-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chrysler-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400655,7 +401010,7 @@ }, { "question": "Citroën", - "icon": "./assets/data/nsi/logos/citroen-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citroen-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400671,7 +401026,7 @@ }, { "question": "Cupra", - "icon": "./assets/data/nsi/logos/cupra-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cupra-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400687,7 +401042,7 @@ }, { "question": "Dacia", - "icon": "./assets/data/nsi/logos/dacia-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dacia-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400703,7 +401058,7 @@ }, { "question": "Daihatsu", - "icon": "./assets/data/nsi/logos/daihatsu-0b5c82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daihatsu-0b5c82.png", "osmTags": { "and": [ "shop=car", @@ -400733,7 +401088,7 @@ }, { "question": "Dodge", - "icon": "./assets/data/nsi/logos/dodge-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dodge-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -400749,7 +401104,7 @@ }, { "question": "DriveTime", - "icon": "./assets/data/nsi/logos/drivetime-71ab24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drivetime-71ab24.jpg", "osmTags": { "and": [ "second_hand=only", @@ -400766,7 +401121,7 @@ }, { "question": "DS Automobiles", - "icon": "./assets/data/nsi/logos/dsautomobiles-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dsautomobiles-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400782,7 +401137,7 @@ }, { "question": "Enterprise Car Sales", - "icon": "./assets/data/nsi/logos/enterprisecarsales-71ab24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enterprisecarsales-71ab24.jpg", "osmTags": { "and": [ "second_hand=only", @@ -400813,7 +401168,7 @@ }, { "question": "Ferrari", - "icon": "./assets/data/nsi/logos/ferrari-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ferrari-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -400829,7 +401184,7 @@ }, { "question": "Fiat", - "icon": "./assets/data/nsi/logos/fiat-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiat-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400845,7 +401200,7 @@ }, { "question": "Fiat Professional", - "icon": "./assets/data/nsi/logos/fiatprofessional-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiatprofessional-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400861,7 +401216,7 @@ }, { "question": "Fisker", - "icon": "./assets/data/nsi/logos/fisker-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fisker-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -400877,7 +401232,7 @@ }, { "question": "Ford", - "icon": "./assets/data/nsi/logos/ford-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ford-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -400893,7 +401248,7 @@ }, { "question": "Freightliner", - "icon": "./assets/data/nsi/logos/freightliner-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freightliner-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400909,7 +401264,7 @@ }, { "question": "Geely", - "icon": "./assets/data/nsi/logos/geely-13eeb7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/geely-13eeb7.svg", "osmTags": { "and": [ "shop=car", @@ -400925,7 +401280,7 @@ }, { "question": "Genesis", - "icon": "./assets/data/nsi/logos/genesis-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genesis-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400941,7 +401296,7 @@ }, { "question": "GMC", - "icon": "./assets/data/nsi/logos/gmc-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gmc-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -400957,16 +401312,16 @@ }, { "question": "GWM", - "icon": "./assets/data/nsi/logos/gwm-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gwm-13eeb7.jpg", "osmTags": { "and": [ - "official_name=Great Wall Motor", "shop=car", { "or": [ "brand=GWM", "brand:wikidata=Q1117001", - "name=GWM" + "name=GWM", + "official_name=Great Wall Motor" ] } ] @@ -400974,7 +401329,7 @@ }, { "question": "Haval", - "icon": "./assets/data/nsi/logos/haval-13eeb7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/haval-13eeb7.svg", "osmTags": { "and": [ "shop=car", @@ -400990,7 +401345,7 @@ }, { "question": "Hertz Car Sales", - "icon": "./assets/data/nsi/logos/hertzcarsales-71ab24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hertzcarsales-71ab24.png", "osmTags": { "and": [ "second_hand=only", @@ -401007,7 +401362,7 @@ }, { "question": "Hino Motors", - "icon": "./assets/data/nsi/logos/hinomotors-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hinomotors-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401023,7 +401378,7 @@ }, { "question": "Holden", - "icon": "./assets/data/nsi/logos/holden-e02034.png", + "icon": "https://data.mapcomplete.org/nsi//logos/holden-e02034.png", "osmTags": { "and": [ "shop=car", @@ -401039,7 +401394,7 @@ }, { "question": "Honda", - "icon": "./assets/data/nsi/logos/honda-0b5c82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honda-0b5c82.jpg", "osmTags": { "and": [ "shop=car", @@ -401055,7 +401410,7 @@ }, { "question": "HOT大聯盟", - "icon": "./assets/data/nsi/logos/hotcar-775dfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotcar-775dfd.jpg", "osmTags": { "and": [ "second_hand=only", @@ -401076,7 +401431,7 @@ }, { "question": "Hyundai", - "icon": "./assets/data/nsi/logos/hyundai-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hyundai-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401092,7 +401447,7 @@ }, { "question": "Infiniti", - "icon": "./assets/data/nsi/logos/infiniti-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/infiniti-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401108,7 +401463,7 @@ }, { "question": "Isuzu", - "icon": "./assets/data/nsi/logos/isuzu-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isuzu-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401124,7 +401479,7 @@ }, { "question": "Jaguar", - "icon": "./assets/data/nsi/logos/jaguar-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jaguar-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401140,7 +401495,7 @@ }, { "question": "Jeep", - "icon": "./assets/data/nsi/logos/jeep-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeep-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401156,7 +401511,7 @@ }, { "question": "Karma", - "icon": "./assets/data/nsi/logos/karma-40d0fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karma-40d0fc.jpg", "osmTags": { "and": [ "shop=car", @@ -401172,7 +401527,7 @@ }, { "question": "Kia", - "icon": "./assets/data/nsi/logos/kia-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kia-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401188,7 +401543,7 @@ }, { "question": "Koenigsegg", - "icon": "./assets/data/nsi/logos/koenigsegg-45c2de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koenigsegg-45c2de.jpg", "osmTags": { "and": [ "shop=car", @@ -401204,7 +401559,7 @@ }, { "question": "L'Agence Automobilière", - "icon": "./assets/data/nsi/logos/lagenceautomobiliere-b37b4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lagenceautomobiliere-b37b4e.jpg", "osmTags": { "and": [ "second_hand=only", @@ -401221,7 +401576,7 @@ }, { "question": "Lada", - "icon": "./assets/data/nsi/logos/lada-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lada-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401241,7 +401596,7 @@ }, { "question": "Lamborghini", - "icon": "./assets/data/nsi/logos/lamborghini-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamborghini-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401257,7 +401612,7 @@ }, { "question": "Lancia", - "icon": "./assets/data/nsi/logos/lancia-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancia-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401273,7 +401628,7 @@ }, { "question": "Land Rover", - "icon": "./assets/data/nsi/logos/landrover-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landrover-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401289,7 +401644,7 @@ }, { "question": "Lexus", - "icon": "./assets/data/nsi/logos/lexus-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lexus-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401305,7 +401660,7 @@ }, { "question": "Lincoln", - "icon": "./assets/data/nsi/logos/lincoln-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincoln-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401321,7 +401676,7 @@ }, { "question": "Lotus", - "icon": "./assets/data/nsi/logos/lotus-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotus-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401337,7 +401692,7 @@ }, { "question": "Lucid", - "icon": "./assets/data/nsi/logos/lucid-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lucid-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401353,7 +401708,7 @@ }, { "question": "Lynk & Co", - "icon": "./assets/data/nsi/logos/lynkandco-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lynkandco-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401369,7 +401724,7 @@ }, { "question": "Maruti Suzuki", - "icon": "./assets/data/nsi/logos/marutisuzuki-aa55a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marutisuzuki-aa55a2.jpg", "osmTags": { "and": [ "shop=car", @@ -401385,7 +401740,7 @@ }, { "question": "Maserati", - "icon": "./assets/data/nsi/logos/maserati-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maserati-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401401,7 +401756,7 @@ }, { "question": "Mazda", - "icon": "./assets/data/nsi/logos/mazda-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mazda-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401417,7 +401772,7 @@ }, { "question": "McLaren", - "icon": "./assets/data/nsi/logos/mclaren-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mclaren-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401433,7 +401788,7 @@ }, { "question": "Mercedes-Benz", - "icon": "./assets/data/nsi/logos/mercedesbenz-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercedesbenz-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401449,7 +401804,7 @@ }, { "question": "MG", - "icon": "./assets/data/nsi/logos/mg-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mg-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401465,7 +401820,7 @@ }, { "question": "Mini", - "icon": "./assets/data/nsi/logos/mini-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mini-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401481,7 +401836,7 @@ }, { "question": "Mitsubishi", - "icon": "./assets/data/nsi/logos/mitsubishi-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mitsubishi-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401497,7 +401852,7 @@ }, { "question": "NIO House", - "icon": "./assets/data/nsi/logos/niohouse-465d1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niohouse-465d1f.jpg", "osmTags": { "and": [ "shop=car", @@ -401513,7 +401868,7 @@ }, { "question": "NIO Space", - "icon": "./assets/data/nsi/logos/niospace-465d1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niospace-465d1f.jpg", "osmTags": { "and": [ "shop=car", @@ -401529,7 +401884,7 @@ }, { "question": "Nissan", - "icon": "./assets/data/nsi/logos/nissan-0b5c82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nissan-0b5c82.jpg", "osmTags": { "and": [ "shop=car", @@ -401545,7 +401900,7 @@ }, { "question": "Opel", - "icon": "./assets/data/nsi/logos/opel-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opel-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401561,7 +401916,7 @@ }, { "question": "Ora", - "icon": "./assets/data/nsi/logos/ora-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ora-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401577,7 +401932,7 @@ }, { "question": "Perodua", - "icon": "./assets/data/nsi/logos/perodua-fca759.png", + "icon": "https://data.mapcomplete.org/nsi//logos/perodua-fca759.png", "osmTags": { "and": [ "shop=car", @@ -401593,7 +401948,7 @@ }, { "question": "Peugeot", - "icon": "./assets/data/nsi/logos/peugeot-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peugeot-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401609,7 +401964,7 @@ }, { "question": "Polestar", - "icon": "./assets/data/nsi/logos/polestar-adf3f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polestar-adf3f2.jpg", "osmTags": { "and": [ "shop=car", @@ -401625,7 +401980,7 @@ }, { "question": "Porsche", - "icon": "./assets/data/nsi/logos/porsche-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porsche-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401641,7 +401996,7 @@ }, { "question": "Proton", - "icon": "./assets/data/nsi/logos/proton-576082.png", + "icon": "https://data.mapcomplete.org/nsi//logos/proton-576082.png", "osmTags": { "and": [ "shop=car", @@ -401657,7 +402012,7 @@ }, { "question": "Ram", - "icon": "./assets/data/nsi/logos/ram-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ram-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401673,7 +402028,7 @@ }, { "question": "Renault", - "icon": "./assets/data/nsi/logos/renault-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renault-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401689,7 +402044,7 @@ }, { "question": "Renault Trucks", - "icon": "./assets/data/nsi/logos/renaulttrucks-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renaulttrucks-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401705,7 +402060,7 @@ }, { "question": "Rimac", - "icon": "./assets/data/nsi/logos/rimac-0f1e04.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rimac-0f1e04.jpg", "osmTags": { "and": [ "shop=car", @@ -401721,7 +402076,7 @@ }, { "question": "Rivian", - "icon": "./assets/data/nsi/logos/rivian-870a08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rivian-870a08.jpg", "osmTags": { "and": [ "shop=car", @@ -401737,7 +402092,7 @@ }, { "question": "Rolls-Royce", - "icon": "./assets/data/nsi/logos/rollsroyce-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rollsroyce-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401753,7 +402108,7 @@ }, { "question": "Seat", - "icon": "./assets/data/nsi/logos/seat-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seat-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401769,7 +402124,7 @@ }, { "question": "Škoda", - "icon": "./assets/data/nsi/logos/skoda-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skoda-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401785,7 +402140,7 @@ }, { "question": "Smart", - "icon": "./assets/data/nsi/logos/smart-b77732.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smart-b77732.jpg", "osmTags": { "and": [ "shop=car", @@ -401801,7 +402156,7 @@ }, { "question": "SsangYong", - "icon": "./assets/data/nsi/logos/ssangyong-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ssangyong-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401817,7 +402172,7 @@ }, { "question": "Subaru", - "icon": "./assets/data/nsi/logos/subaru-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/subaru-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401833,7 +402188,7 @@ }, { "question": "Suzuki", - "icon": "./assets/data/nsi/logos/suzuki-59b739.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suzuki-59b739.jpg", "osmTags": { "and": [ "shop=car", @@ -401849,6 +402204,7 @@ }, { "question": "Sytner Select", + "icon": "https://data.mapcomplete.org/nsi//logos/sytnerselect-42e946.jpg", "osmTags": { "and": [ "shop=car", @@ -401864,7 +402220,7 @@ }, { "question": "Tata", - "icon": "./assets/data/nsi/logos/tata-c6af53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tata-c6af53.png", "osmTags": { "and": [ "shop=car", @@ -401880,7 +402236,7 @@ }, { "question": "Tesla", - "icon": "./assets/data/nsi/logos/tesla-7c40a3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tesla-7c40a3.svg", "osmTags": { "and": [ "shop=car", @@ -401896,7 +402252,7 @@ }, { "question": "Toyota", - "icon": "./assets/data/nsi/logos/toyota-0b5c82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toyota-0b5c82.png", "osmTags": { "and": [ "shop=car", @@ -401912,7 +402268,7 @@ }, { "question": "Vauxhall", - "icon": "./assets/data/nsi/logos/vauxhall-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vauxhall-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401928,7 +402284,7 @@ }, { "question": "Volkswagen", - "icon": "./assets/data/nsi/logos/volkswagen-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkswagen-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401944,7 +402300,7 @@ }, { "question": "Volkswagen Commercial Vehicles", - "icon": "./assets/data/nsi/logos/volkswagencommercialvehicles-13eeb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkswagencommercialvehicles-13eeb7.jpg", "osmTags": { "and": [ "shop=car", @@ -401960,7 +402316,7 @@ }, { "question": "Volvo", - "icon": "./assets/data/nsi/logos/volvo-13eeb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/volvo-13eeb7.png", "osmTags": { "and": [ "shop=car", @@ -401976,7 +402332,7 @@ }, { "question": "We Buy Any Car", - "icon": "./assets/data/nsi/logos/webuyanycar-42e946.png", + "icon": "https://data.mapcomplete.org/nsi//logos/webuyanycar-42e946.png", "osmTags": { "and": [ "shop=car", @@ -401992,7 +402348,7 @@ }, { "question": "Xpeng", - "icon": "./assets/data/nsi/logos/xpeng-465d1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xpeng-465d1f.png", "osmTags": { "and": [ "shop=car", @@ -402008,7 +402364,7 @@ }, { "question": "Автомир", - "icon": "./assets/data/nsi/logos/autoworld-7c9618.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autoworld-7c9618.png", "osmTags": { "and": [ "shop=car", @@ -402028,7 +402384,7 @@ }, { "question": "سایپا", - "icon": "./assets/data/nsi/logos/saipa-bd50af.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saipa-bd50af.png", "osmTags": { "and": [ "shop=car", @@ -402048,7 +402404,7 @@ }, { "question": "ガリバー", - "icon": "./assets/data/nsi/logos/gulliver-27c9bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gulliver-27c9bc.png", "osmTags": { "and": [ "shop=car", @@ -402086,7 +402442,7 @@ }, { "question": "ダイハツ", - "icon": "./assets/data/nsi/logos/daihatsu-27c9bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daihatsu-27c9bc.png", "osmTags": { "and": [ "shop=car", @@ -402106,7 +402462,7 @@ }, { "question": "トヨタ", - "icon": "./assets/data/nsi/logos/toyota-27c9bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toyota-27c9bc.png", "osmTags": { "and": [ "shop=car", @@ -402126,7 +402482,7 @@ }, { "question": "ネクステージ", - "icon": "./assets/data/nsi/logos/nextage-27c9bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nextage-27c9bc.jpg", "osmTags": { "and": [ "shop=car", @@ -402146,7 +402502,7 @@ }, { "question": "ネッツ", - "icon": "./assets/data/nsi/logos/netz-27c9bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/netz-27c9bc.png", "osmTags": { "and": [ "shop=car", @@ -402166,7 +402522,7 @@ }, { "question": "ビッグモーター", - "icon": "./assets/data/nsi/logos/bigmotor-27c9bc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigmotor-27c9bc.svg", "osmTags": { "and": [ "shop=car", @@ -402186,7 +402542,7 @@ }, { "question": "ホンダ", - "icon": "./assets/data/nsi/logos/honda-27c9bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honda-27c9bc.jpg", "osmTags": { "and": [ "shop=car", @@ -402206,7 +402562,7 @@ }, { "question": "小鹏", - "icon": "./assets/data/nsi/logos/xpeng-115502.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xpeng-115502.png", "osmTags": { "and": [ "shop=car", @@ -402226,7 +402582,7 @@ }, { "question": "日産", - "icon": "./assets/data/nsi/logos/nissan-27c9bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nissan-27c9bc.jpg", "osmTags": { "and": [ "shop=car", @@ -402246,7 +402602,7 @@ }, { "question": "极氪", - "icon": "./assets/data/nsi/logos/zeekr-115502.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeekr-115502.jpg", "osmTags": { "and": [ "shop=car", @@ -402266,7 +402622,7 @@ }, { "question": "比亚迪", - "icon": "./assets/data/nsi/logos/byd-8e423b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byd-8e423b.png", "osmTags": { "and": [ "shop=car", @@ -402286,7 +402642,7 @@ }, { "question": "特斯拉", - "icon": "./assets/data/nsi/logos/tesla-048197.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tesla-048197.svg", "osmTags": { "and": [ "shop=car", @@ -402306,7 +402662,7 @@ }, { "question": "理想", - "icon": "./assets/data/nsi/logos/liauto-115502.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liauto-115502.jpg", "osmTags": { "and": [ "shop=car", @@ -402326,7 +402682,7 @@ }, { "question": "蔚来中心", - "icon": "./assets/data/nsi/logos/niohouse-115502.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niohouse-115502.jpg", "osmTags": { "and": [ "shop=car", @@ -402346,7 +402702,7 @@ }, { "question": "蔚来空间", - "icon": "./assets/data/nsi/logos/niospace-115502.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niospace-115502.jpg", "osmTags": { "and": [ "shop=car", @@ -402366,7 +402722,7 @@ }, { "question": "零跑汽车", - "icon": "./assets/data/nsi/logos/leapmotor-115502.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leapmotor-115502.jpg", "osmTags": { "and": [ "shop=car", @@ -402386,7 +402742,7 @@ }, { "question": "Advance Auto Parts", - "icon": "./assets/data/nsi/logos/advanceautoparts-c70e2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/advanceautoparts-c70e2b.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402402,7 +402758,7 @@ }, { "question": "Armtek", - "icon": "./assets/data/nsi/logos/armtek-331b80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armtek-331b80.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402418,7 +402774,7 @@ }, { "question": "Auto Depot", - "icon": "./assets/data/nsi/logos/autodepot-935544.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autodepot-935544.png", "osmTags": { "and": [ "shop=car_parts", @@ -402436,16 +402792,16 @@ }, { "question": "Auto Plus", - "icon": "./assets/data/nsi/logos/autoplus-bb9baa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autoplus-bb9baa.png", "osmTags": { "and": [ - "official_name=Auto Plus Auto Parts", "shop=car_parts", { "or": [ "brand=Auto Plus", "brand:wikidata=Q65121114", - "name=Auto Plus" + "name=Auto Plus", + "official_name=Auto Plus Auto Parts" ] } ] @@ -402453,7 +402809,7 @@ }, { "question": "Auto Value", - "icon": "./assets/data/nsi/logos/autovalue-808aac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autovalue-808aac.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402469,7 +402825,7 @@ }, { "question": "Autobarn", - "icon": "./assets/data/nsi/logos/autobarn-5404d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autobarn-5404d0.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402485,7 +402841,7 @@ }, { "question": "Automat", - "icon": "./assets/data/nsi/logos/automat-fc79b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/automat-fc79b7.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402501,7 +402857,7 @@ }, { "question": "AutoZone", - "icon": "./assets/data/nsi/logos/autozone-fd3e11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autozone-fd3e11.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402517,7 +402873,7 @@ }, { "question": "BilXtra", - "icon": "./assets/data/nsi/logos/bilxtra-ccf30a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bilxtra-ccf30a.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402546,7 +402902,7 @@ }, { "question": "Brezan", - "icon": "./assets/data/nsi/logos/brezan-585e8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brezan-585e8e.png", "osmTags": { "and": [ "shop=car_parts", @@ -402562,7 +402918,7 @@ }, { "question": "Bumper to Bumper Auto Parts", - "icon": "./assets/data/nsi/logos/bumpertobumperautoparts-bb9baa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bumpertobumperautoparts-bb9baa.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402578,7 +402934,7 @@ }, { "question": "Burson Auto Parts", - "icon": "./assets/data/nsi/logos/bursonautoparts-5404d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bursonautoparts-5404d0.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402594,16 +402950,16 @@ }, { "question": "Carquest", - "icon": "./assets/data/nsi/logos/carquest-bb9baa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carquest-bb9baa.jpg", "osmTags": { "and": [ - "official_name=Carquest Auto Parts", "shop=car_parts", { "or": [ "brand=Carquest", "brand:wikidata=Q5045948", - "name=Carquest" + "name=Carquest", + "official_name=Carquest Auto Parts" ] } ] @@ -402611,7 +402967,7 @@ }, { "question": "DPaschoal", - "icon": "./assets/data/nsi/logos/dpaschoal-74c620.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dpaschoal-74c620.png", "osmTags": { "and": [ "shop=car_parts", @@ -402627,7 +402983,7 @@ }, { "question": "Euro Car Parts", - "icon": "./assets/data/nsi/logos/eurocarparts-078f70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurocarparts-078f70.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402658,7 +403014,7 @@ }, { "question": "Exist.ua", - "icon": "./assets/data/nsi/logos/existua-39b206.png", + "icon": "https://data.mapcomplete.org/nsi//logos/existua-39b206.png", "osmTags": { "and": [ "shop=car_parts", @@ -402674,7 +403030,7 @@ }, { "question": "FleetPride", - "icon": "./assets/data/nsi/logos/fleetpride-bb9baa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fleetpride-bb9baa.png", "osmTags": { "and": [ "shop=car_parts", @@ -402721,7 +403077,7 @@ }, { "question": "Halfords", - "icon": "./assets/data/nsi/logos/halfords-078f70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halfords-078f70.jpg", "osmTags": { "and": [ "service:bicycle:retail=yes", @@ -402739,7 +403095,7 @@ }, { "question": "Inter Cars", - "icon": "./assets/data/nsi/logos/intercars-a4b6c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intercars-a4b6c1.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402755,7 +403111,7 @@ }, { "question": "Interstate Batteries", - "icon": "./assets/data/nsi/logos/interstatebatteries-bb9baa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/interstatebatteries-bb9baa.png", "osmTags": { "and": [ "shop=car_parts", @@ -402771,7 +403127,7 @@ }, { "question": "KOI Auto Parts", - "icon": "./assets/data/nsi/logos/koiautoparts-bb9baa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koiautoparts-bb9baa.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402816,7 +403172,7 @@ }, { "question": "LKQ", - "icon": "./assets/data/nsi/logos/lkq-9e6a0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lkq-9e6a0d.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402832,7 +403188,7 @@ }, { "question": "Lordco Auto Parts", - "icon": "./assets/data/nsi/logos/lordcoautoparts-00c584.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lordcoautoparts-00c584.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402848,7 +403204,7 @@ }, { "question": "Motor Parts Direct", - "icon": "./assets/data/nsi/logos/motorpartsdirect-66043b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/motorpartsdirect-66043b.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402864,7 +403220,7 @@ }, { "question": "NAPA Auto Parts", - "icon": "./assets/data/nsi/logos/napaautoparts-808aac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/napaautoparts-808aac.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402880,7 +403236,7 @@ }, { "question": "O'Reilly Auto Parts", - "icon": "./assets/data/nsi/logos/oreillyautoparts-bb9baa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oreillyautoparts-bb9baa.png", "osmTags": { "and": [ "shop=car_parts", @@ -402896,7 +403252,7 @@ }, { "question": "PartSource", - "icon": "./assets/data/nsi/logos/partsource-b5fe01.png", + "icon": "https://data.mapcomplete.org/nsi//logos/partsource-b5fe01.png", "osmTags": { "and": [ "shop=car_parts", @@ -402912,7 +403268,7 @@ }, { "question": "PV Automotive", - "icon": "./assets/data/nsi/logos/pvautomotive-776a25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pvautomotive-776a25.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402928,7 +403284,7 @@ }, { "question": "Repco", - "icon": "./assets/data/nsi/logos/repco-ff9108.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/repco-ff9108.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402944,7 +403300,7 @@ }, { "question": "Sanel NAPA", - "icon": "./assets/data/nsi/logos/sanelnapa-a1190a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanelnapa-a1190a.png", "osmTags": { "and": [ "shop=car_parts", @@ -402974,7 +403330,7 @@ }, { "question": "Supercheap Auto", - "icon": "./assets/data/nsi/logos/supercheapauto-ff9108.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supercheapauto-ff9108.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -402990,7 +403346,7 @@ }, { "question": "thansen", - "icon": "./assets/data/nsi/logos/thansen-c9a26e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thansen-c9a26e.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -403007,7 +403363,7 @@ }, { "question": "Tokić", - "icon": "./assets/data/nsi/logos/tokic-5b5de8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokic-5b5de8.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -403023,7 +403379,7 @@ }, { "question": "WM Fahrzeugteile", - "icon": "./assets/data/nsi/logos/wmfahrzeugteile-776a25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wmfahrzeugteile-776a25.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -403040,7 +403396,7 @@ }, { "question": "XL Parts", - "icon": "./assets/data/nsi/logos/xlparts-bb9baa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xlparts-bb9baa.jpg", "osmTags": { "and": [ "shop=car_parts", @@ -403180,7 +403536,7 @@ }, { "question": "アップガレージ", - "icon": "./assets/data/nsi/logos/upgarage-e779db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/upgarage-e779db.png", "osmTags": { "and": [ "shop=car_parts", @@ -403219,7 +403575,7 @@ }, { "question": "オートバックス", - "icon": "./assets/data/nsi/logos/autobacs-e779db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autobacs-e779db.png", "osmTags": { "and": [ "shop=car_parts", @@ -403239,10 +403595,9 @@ }, { "question": "ジェームス", - "icon": "./assets/data/nsi/logos/jms-e779db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jms-e779db.png", "osmTags": { "and": [ - "official_name:en=Joyful Motorist Shop", "shop=car_parts", { "or": [ @@ -403252,7 +403607,8 @@ "brand:wikidata=Q11309404", "name=ジェームス", "name:en=JMS", - "name:ja=ジェームス" + "name:ja=ジェームス", + "official_name:en=Joyful Motorist Shop" ] } ] @@ -403260,7 +403616,7 @@ }, { "question": "タイヤ館", - "icon": "./assets/data/nsi/logos/taiyakan-e779db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/taiyakan-e779db.png", "osmTags": { "and": [ "shop=car_parts", @@ -403280,7 +403636,7 @@ }, { "question": "123 Pare-Brise", - "icon": "./assets/data/nsi/logos/123parebrise-46d04a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/123parebrise-46d04a.png", "osmTags": { "and": [ "shop=car_repair", @@ -403296,7 +403652,7 @@ }, { "question": "1a autoservice", - "icon": "./assets/data/nsi/logos/1aautoservice-4c8afc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1aautoservice-4c8afc.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403312,7 +403668,7 @@ }, { "question": "A.T.U", - "icon": "./assets/data/nsi/logos/atu-6db7c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atu-6db7c0.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403328,7 +403684,7 @@ }, { "question": "A+ Glass", - "icon": "./assets/data/nsi/logos/aglass-98e3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aglass-98e3a2.png", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -403345,7 +403701,7 @@ }, { "question": "AAMCO", - "icon": "./assets/data/nsi/logos/aamco-3fdb50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aamco-3fdb50.jpg", "osmTags": { "and": [ "service:vehicle:transmission=yes", @@ -403362,7 +403718,7 @@ }, { "question": "Active Green + Ross", - "icon": "./assets/data/nsi/logos/activegreenross-9c9847.png", + "icon": "https://data.mapcomplete.org/nsi//logos/activegreenross-9c9847.png", "osmTags": { "and": [ "shop=car_repair", @@ -403378,7 +403734,7 @@ }, { "question": "AD", - "icon": "./assets/data/nsi/logos/ad-98e3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ad-98e3a2.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403394,7 +403750,7 @@ }, { "question": "ATS Euromaster", - "icon": "./assets/data/nsi/logos/atseuromaster-3b6d68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atseuromaster-3b6d68.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403410,16 +403766,16 @@ }, { "question": "Auto Plus", - "icon": "./assets/data/nsi/logos/autoplus-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autoplus-878d90.png", "osmTags": { "and": [ - "official_name=Auto Plus Professional Service Center", "shop=car_repair", { "or": [ "brand=Auto Plus", "brand:wikidata=Q65121114", - "name=Auto Plus" + "name=Auto Plus", + "official_name=Auto Plus Professional Service Center" ] } ] @@ -403427,7 +403783,7 @@ }, { "question": "AUTOFIT", - "icon": "./assets/data/nsi/logos/autofit-c95f1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autofit-c95f1a.png", "osmTags": { "and": [ "shop=car_repair", @@ -403443,7 +403799,7 @@ }, { "question": "Automester", - "icon": "./assets/data/nsi/logos/automester-25491b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/automester-25491b.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403459,7 +403815,7 @@ }, { "question": "AutoPartner", - "icon": "./assets/data/nsi/logos/autopartner-25491b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autopartner-25491b.png", "osmTags": { "and": [ "shop=car_repair", @@ -403490,7 +403846,7 @@ }, { "question": "Autotaalglas", - "icon": "./assets/data/nsi/logos/autotaalglas-854910.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autotaalglas-854910.png", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -403507,7 +403863,7 @@ }, { "question": "Avatacar", - "icon": "./assets/data/nsi/logos/avatacar-46d04a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avatacar-46d04a.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403537,7 +403893,7 @@ }, { "question": "BestDrive", - "icon": "./assets/data/nsi/logos/bestdrive-1b7e7a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bestdrive-1b7e7a.png", "osmTags": { "and": [ "shop=car_repair", @@ -403553,7 +403909,7 @@ }, { "question": "Bosch Car Service", - "icon": "./assets/data/nsi/logos/boschcarservice-dc8719.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/boschcarservice-dc8719.svg", "osmTags": { "and": [ "shop=car_repair", @@ -403569,7 +403925,7 @@ }, { "question": "Brakes Plus", - "icon": "./assets/data/nsi/logos/brakesplus-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brakesplus-878d90.png", "osmTags": { "and": [ "shop=car_repair", @@ -403585,7 +403941,7 @@ }, { "question": "Caliber Collision", - "icon": "./assets/data/nsi/logos/calibercollision-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calibercollision-878d90.jpg", "osmTags": { "and": [ "service:vehicle:body_repair=yes", @@ -403602,7 +403958,7 @@ }, { "question": "Canadian Tire Auto Centre", - "icon": "./assets/data/nsi/logos/canadiantireautocentre-8cbc80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadiantireautocentre-8cbc80.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403618,7 +403974,7 @@ }, { "question": "Car-X", - "icon": "./assets/data/nsi/logos/carx-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carx-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403634,7 +403990,7 @@ }, { "question": "Carglass", - "icon": "./assets/data/nsi/logos/carglass-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carglass-dc8719.jpg", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -403651,7 +404007,7 @@ }, { "question": "CarPeople", - "icon": "./assets/data/nsi/logos/carpeople-25491b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carpeople-25491b.png", "osmTags": { "and": [ "shop=car_repair", @@ -403667,7 +404023,7 @@ }, { "question": "Carstar", - "icon": "./assets/data/nsi/logos/carstar-3fdb50.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carstar-3fdb50.png", "osmTags": { "and": [ "service:vehicle:body_repair=yes", @@ -403684,7 +404040,7 @@ }, { "question": "Centre d'auto Canadian Tire", - "icon": "./assets/data/nsi/logos/centredautocanadiantire-80befd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centredautocanadiantire-80befd.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403700,7 +404056,7 @@ }, { "question": "Christian Brothers Automotive", - "icon": "./assets/data/nsi/logos/christianbrothersautomotive-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/christianbrothersautomotive-878d90.png", "osmTags": { "and": [ "shop=car_repair", @@ -403716,7 +404072,7 @@ }, { "question": "Cockpit", - "icon": "./assets/data/nsi/logos/cockpit-fdc83e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cockpit-fdc83e.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403747,7 +404103,7 @@ }, { "question": "Crash Champions", - "icon": "./assets/data/nsi/logos/crashchampions-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crashchampions-878d90.jpg", "osmTags": { "and": [ "service:vehicle:body_repair=yes", @@ -403764,7 +404120,7 @@ }, { "question": "Delko", - "icon": "./assets/data/nsi/logos/delko-46d04a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delko-46d04a.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403780,7 +404136,7 @@ }, { "question": "Din Bilpartner", - "icon": "./assets/data/nsi/logos/dinbilpartner-25491b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dinbilpartner-25491b.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403796,7 +404152,7 @@ }, { "question": "DS Automobiles", - "icon": "./assets/data/nsi/logos/dsautomobiles-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dsautomobiles-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403812,7 +404168,7 @@ }, { "question": "E.Leclerc Auto", - "icon": "./assets/data/nsi/logos/eleclerc-98e3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclerc-98e3a2.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403844,7 +404200,7 @@ }, { "question": "ETB Autocentres", - "icon": "./assets/data/nsi/logos/etbautocentres-3b6d68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/etbautocentres-3b6d68.png", "osmTags": { "and": [ "shop=car_repair", @@ -403860,7 +404216,7 @@ }, { "question": "Euromaster", - "icon": "./assets/data/nsi/logos/euromaster-2762ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/euromaster-2762ed.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403876,7 +404232,7 @@ }, { "question": "Feu Vert", - "icon": "./assets/data/nsi/logos/feuvert-89b710.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/feuvert-89b710.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403892,16 +404248,16 @@ }, { "question": "Firestone", - "icon": "./assets/data/nsi/logos/firestone-a35932.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firestone-a35932.jpg", "osmTags": { "and": [ - "official_name=Firestone Complete Auto Care", "shop=car_repair", { "or": [ "brand=Firestone", "brand:wikidata=Q420837", - "name=Firestone" + "name=Firestone", + "official_name=Firestone Complete Auto Care" ] } ] @@ -403909,7 +404265,7 @@ }, { "question": "First Stop", - "icon": "./assets/data/nsi/logos/firststop-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firststop-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -403940,7 +404296,7 @@ }, { "question": "Formula One Autocentres", - "icon": "./assets/data/nsi/logos/formulaoneautocentres-3b6d68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/formulaoneautocentres-3b6d68.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403956,7 +404312,7 @@ }, { "question": "France Pare-Brise", - "icon": "./assets/data/nsi/logos/franceparebrise-46d04a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/franceparebrise-46d04a.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -403973,7 +404329,7 @@ }, { "question": "Gerber Collision & Glass", - "icon": "./assets/data/nsi/logos/gerbercollisionandglass-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gerbercollisionandglass-878d90.png", "osmTags": { "and": [ "service:vehicle:body_repair=yes", @@ -403991,7 +404347,7 @@ }, { "question": "Glasfit", - "icon": "./assets/data/nsi/logos/glasfit-28277d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/glasfit-28277d.png", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -404008,7 +404364,7 @@ }, { "question": "Goodyear", - "icon": "./assets/data/nsi/logos/goodyear-d2aca7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodyear-d2aca7.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404024,7 +404380,7 @@ }, { "question": "Grease Monkey", - "icon": "./assets/data/nsi/logos/greasemonkey-85d5b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greasemonkey-85d5b8.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404040,7 +404396,7 @@ }, { "question": "Great Canadian Oil Change", - "icon": "./assets/data/nsi/logos/greatcanadianoilchange-10e248.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greatcanadianoilchange-10e248.png", "osmTags": { "and": [ "shop=car_repair", @@ -404056,7 +404412,7 @@ }, { "question": "Halfords Autocentre", - "icon": "./assets/data/nsi/logos/halfordsautocentre-3b6d68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halfordsautocentre-3b6d68.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404072,7 +404428,7 @@ }, { "question": "Hella Service Partner", - "icon": "./assets/data/nsi/logos/hellaservicepartner-25491b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hellaservicepartner-25491b.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404088,7 +404444,7 @@ }, { "question": "HiQ Tyres & Autocare", - "icon": "./assets/data/nsi/logos/hiqtyresandautocare-3b6d68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hiqtyresandautocare-3b6d68.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404104,7 +404460,7 @@ }, { "question": "Jiffy Lube", - "icon": "./assets/data/nsi/logos/jiffylube-3fdb50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jiffylube-3fdb50.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404120,7 +404476,7 @@ }, { "question": "junited Autoglas", - "icon": "./assets/data/nsi/logos/junitedautoglas-c95f1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/junitedautoglas-c95f1a.jpg", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -404137,7 +404493,7 @@ }, { "question": "Kwik Fit", - "icon": "./assets/data/nsi/logos/kwikfit-b75a4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikfit-b75a4b.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404153,7 +404509,7 @@ }, { "question": "LINE-X", - "icon": "./assets/data/nsi/logos/linex-3fdb50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linex-3fdb50.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404169,7 +404525,7 @@ }, { "question": "MAACO", - "icon": "./assets/data/nsi/logos/maaco-3fdb50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maaco-3fdb50.jpg", "osmTags": { "and": [ "service:vehicle:body_repair=yes", @@ -404203,7 +404559,7 @@ }, { "question": "Mavis Discount Tire", - "icon": "./assets/data/nsi/logos/mavisdiscounttire-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mavisdiscounttire-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404219,7 +404575,7 @@ }, { "question": "Mavis Tires & Brakes", - "icon": "./assets/data/nsi/logos/mavistiresandbrakes-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mavistiresandbrakes-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404235,7 +404591,7 @@ }, { "question": "Meca", - "icon": "./assets/data/nsi/logos/meca-4150a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meca-4150a7.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404251,16 +404607,16 @@ }, { "question": "Meineke", - "icon": "./assets/data/nsi/logos/meineke-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meineke-878d90.jpg", "osmTags": { "and": [ - "official_name=Meineke Car Care Center", "shop=car_repair", { "or": [ "brand=Meineke", "brand:wikidata=Q6810159", - "name=Meineke" + "name=Meineke", + "official_name=Meineke Car Care Center" ] } ] @@ -404268,7 +404624,7 @@ }, { "question": "Mekonomen", - "icon": "./assets/data/nsi/logos/mekonomen-7de64b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mekonomen-7de64b.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404286,13 +404642,13 @@ "question": "Merchant's", "osmTags": { "and": [ - "official_name=Merchant's Tire and Auto", "shop=car_repair", { "or": [ "brand=Merchant's", "brand:wikidata=Q6818350", - "name=Merchant's" + "name=Merchant's", + "official_name=Merchant's Tire and Auto" ] } ] @@ -404300,7 +404656,7 @@ }, { "question": "Midas", - "icon": "./assets/data/nsi/logos/midas-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midas-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404316,7 +404672,7 @@ }, { "question": "Mikona", - "icon": "./assets/data/nsi/logos/mikona-be253d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mikona-be253d.png", "osmTags": { "and": [ "shop=car_repair", @@ -404332,7 +404688,7 @@ }, { "question": "Mister Transmission", - "icon": "./assets/data/nsi/logos/mistertransmission-10e248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mistertransmission-10e248.jpg", "osmTags": { "and": [ "service:vehicle:transmission=yes", @@ -404349,7 +404705,7 @@ }, { "question": "Mobil 1 Lube Express", - "icon": "./assets/data/nsi/logos/mobil1lubeexpress-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mobil1lubeexpress-878d90.png", "osmTags": { "and": [ "shop=car_repair", @@ -404365,7 +404721,7 @@ }, { "question": "Mondial Pare-Brise", - "icon": "./assets/data/nsi/logos/mondialparebrise-98e3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mondialparebrise-98e3a2.png", "osmTags": { "and": [ "shop=car_repair", @@ -404381,7 +404737,7 @@ }, { "question": "Monro Muffler Brake", - "icon": "./assets/data/nsi/logos/monromufflerbrake-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monromufflerbrake-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404397,7 +404753,7 @@ }, { "question": "Motrio", - "icon": "./assets/data/nsi/logos/motrio-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/motrio-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404413,7 +404769,7 @@ }, { "question": "Mr. Lube", - "icon": "./assets/data/nsi/logos/mrlube-10e248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrlube-10e248.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404429,7 +404785,7 @@ }, { "question": "Mr. Tire", - "icon": "./assets/data/nsi/logos/mrtire-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrtire-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404445,7 +404801,7 @@ }, { "question": "mycar Tyre & Auto", - "icon": "./assets/data/nsi/logos/mycartyreandauto-c3960a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mycartyreandauto-c3960a.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404461,7 +404817,7 @@ }, { "question": "NAPA AutoCare Center", - "icon": "./assets/data/nsi/logos/napaautocarecenter-3fdb50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/napaautocarecenter-3fdb50.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404477,7 +404833,7 @@ }, { "question": "National Tire and Battery", - "icon": "./assets/data/nsi/logos/ntb-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntb-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404494,7 +404850,7 @@ }, { "question": "National Tyres and Autocare", - "icon": "./assets/data/nsi/logos/nationaltyresandautocare-3b6d68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltyresandautocare-3b6d68.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404511,7 +404867,7 @@ }, { "question": "National Windscreens", - "icon": "./assets/data/nsi/logos/nationalwindscreens-3b6d68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalwindscreens-3b6d68.png", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -404528,7 +404884,7 @@ }, { "question": "Norauto", - "icon": "./assets/data/nsi/logos/norauto-388a61.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/norauto-388a61.svg", "osmTags": { "and": [ "shop=car_repair", @@ -404544,7 +404900,7 @@ }, { "question": "NOVUS Glass", - "icon": "./assets/data/nsi/logos/novusglass-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novusglass-dc8719.jpg", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -404561,7 +404917,7 @@ }, { "question": "O.K. Serwis", - "icon": "./assets/data/nsi/logos/okserwis-87ce46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okserwis-87ce46.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404577,7 +404933,7 @@ }, { "question": "ÖAMTC", - "icon": "./assets/data/nsi/logos/oamtc-d1144d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oamtc-d1144d.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404607,7 +404963,7 @@ }, { "question": "Oil Changers", - "icon": "./assets/data/nsi/logos/oilchangers-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oilchangers-878d90.jpg", "osmTags": { "and": [ "service:vehicle:oil_change=yes", @@ -404624,7 +404980,7 @@ }, { "question": "Pep Boys", - "icon": "./assets/data/nsi/logos/pepboys-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pepboys-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404640,7 +404996,7 @@ }, { "question": "Petromin", - "icon": "./assets/data/nsi/logos/petromin-78a956.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petromin-78a956.svg", "osmTags": { "and": [ "shop=car_repair", @@ -404656,7 +405012,7 @@ }, { "question": "PG Glass", - "icon": "./assets/data/nsi/logos/pgglass-28277d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgglass-28277d.jpg", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -404673,7 +405029,7 @@ }, { "question": "pitstop", - "icon": "./assets/data/nsi/logos/pitstop-c95f1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pitstop-c95f1a.png", "osmTags": { "and": [ "shop=car_repair", @@ -404689,7 +405045,7 @@ }, { "question": "Point S", - "icon": "./assets/data/nsi/logos/points-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/points-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -404705,7 +405061,7 @@ }, { "question": "Precision Tune Auto Care", - "icon": "./assets/data/nsi/logos/precisiontuneautocare-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/precisiontuneautocare-878d90.png", "osmTags": { "and": [ "shop=car_repair", @@ -404736,7 +405092,7 @@ }, { "question": "Premio", - "icon": "./assets/data/nsi/logos/premio-354273.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/premio-354273.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404752,7 +405108,7 @@ }, { "question": "ProColor Collision", - "icon": "./assets/data/nsi/logos/procolorcollision-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procolorcollision-878d90.jpg", "osmTags": { "and": [ "service:vehicle:body_repair=yes", @@ -404770,7 +405126,7 @@ }, { "question": "Profile", - "icon": "./assets/data/nsi/logos/profile-9d142c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/profile-9d142c.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404786,7 +405142,7 @@ }, { "question": "Quickpoint", - "icon": "./assets/data/nsi/logos/quickpoint-25491b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quickpoint-25491b.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404802,7 +405158,7 @@ }, { "question": "Rivian Service Center", - "icon": "./assets/data/nsi/logos/rivianservicecenter-3fdb50.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rivianservicecenter-3fdb50.png", "osmTags": { "and": [ "shop=car_repair", @@ -404818,7 +405174,7 @@ }, { "question": "Roady", - "icon": "./assets/data/nsi/logos/roady-46d04a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roady-46d04a.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404834,7 +405190,7 @@ }, { "question": "Safelite AutoGlass", - "icon": "./assets/data/nsi/logos/safeliteautoglass-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safeliteautoglass-878d90.jpg", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -404851,7 +405207,7 @@ }, { "question": "Sears Auto Center", - "icon": "./assets/data/nsi/logos/searsautocenter-0c0c7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/searsautocenter-0c0c7e.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404883,7 +405239,7 @@ }, { "question": "SpeeDee", - "icon": "./assets/data/nsi/logos/speedee-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedee-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404899,7 +405255,7 @@ }, { "question": "Speedy", - "icon": "./assets/data/nsi/logos/speedy-98e3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedy-98e3a2.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404915,7 +405271,7 @@ }, { "question": "Speedy Auto Service", - "icon": "./assets/data/nsi/logos/speedyautoservice-10e248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedyautoservice-10e248.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -404931,7 +405287,7 @@ }, { "question": "Speedy Glass (Canada)", - "icon": "./assets/data/nsi/logos/speedyglass-10e248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedyglass-10e248.jpg", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -404948,7 +405304,7 @@ }, { "question": "Speedy Glass (USA)", - "icon": "./assets/data/nsi/logos/speedyglass-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/speedyglass-878d90.png", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -404965,10 +405321,9 @@ }, { "question": "Sullivan Tire", - "icon": "./assets/data/nsi/logos/sullivantire-bb46ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sullivantire-bb46ab.png", "osmTags": { "and": [ - "official_name=Sullivan Tire and Auto Service", "service:vehicle:car_repair=yes", "service:vehicle:tyres=yes", "shop=car_repair", @@ -404976,7 +405331,8 @@ "or": [ "brand=Sullivan Tire", "brand:wikidata=Q121422824", - "name=Sullivan Tire" + "name=Sullivan Tire", + "official_name=Sullivan Tire and Auto Service" ] } ] @@ -404984,7 +405340,7 @@ }, { "question": "Sun Auto Service", - "icon": "./assets/data/nsi/logos/sunautoservice-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sunautoservice-878d90.png", "osmTags": { "and": [ "shop=car_repair", @@ -405000,7 +405356,7 @@ }, { "question": "Supa Quick", - "icon": "./assets/data/nsi/logos/supaquick-15e458.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supaquick-15e458.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405016,7 +405372,7 @@ }, { "question": "Super Dæk Service", - "icon": "./assets/data/nsi/logos/superdaekservice-25491b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/superdaekservice-25491b.png", "osmTags": { "and": [ "shop=car_repair", @@ -405032,7 +405388,7 @@ }, { "question": "Take 5 Oil Change", - "icon": "./assets/data/nsi/logos/take5oilchange-3fdb50.png", + "icon": "https://data.mapcomplete.org/nsi//logos/take5oilchange-3fdb50.png", "osmTags": { "and": [ "service:vehicle:oil_change=yes", @@ -405049,7 +405405,7 @@ }, { "question": "Teknicar", - "icon": "./assets/data/nsi/logos/teknicar-25491b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teknicar-25491b.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405065,7 +405421,7 @@ }, { "question": "Top Garage", - "icon": "./assets/data/nsi/logos/topgarage-46d04a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topgarage-46d04a.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405081,7 +405437,7 @@ }, { "question": "Tuffy", - "icon": "./assets/data/nsi/logos/tuffy-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuffy-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405112,7 +405468,7 @@ }, { "question": "Vakgarage", - "icon": "./assets/data/nsi/logos/vakgarage-854910.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vakgarage-854910.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405128,16 +405484,16 @@ }, { "question": "Valvoline", - "icon": "./assets/data/nsi/logos/valvoline-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valvoline-878d90.jpg", "osmTags": { "and": [ - "official_name=Valvoline Instant Oil Change", "shop=car_repair", { "or": [ "brand=Valvoline", "brand:wikidata=Q7912852", - "name=Valvoline" + "name=Valvoline", + "official_name=Valvoline Instant Oil Change" ] } ] @@ -405145,7 +405501,7 @@ }, { "question": "Valvoline Express Care", - "icon": "./assets/data/nsi/logos/valvolineexpresscare-878d90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valvolineexpresscare-878d90.png", "osmTags": { "and": [ "shop=car_repair", @@ -405162,7 +405518,7 @@ }, { "question": "VIP Tires and Service", - "icon": "./assets/data/nsi/logos/viptiresandservice-451c51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/viptiresandservice-451c51.jpg", "osmTags": { "and": [ "service:vehicle:car_repair=yes", @@ -405180,7 +405536,7 @@ }, { "question": "Vulco", - "icon": "./assets/data/nsi/logos/vulco-98e3a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vulco-98e3a2.png", "osmTags": { "and": [ "shop=car_repair", @@ -405196,7 +405552,7 @@ }, { "question": "Walmart Auto Care Center", - "icon": "./assets/data/nsi/logos/walmartautocarecenter-878d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartautocarecenter-878d90.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405212,7 +405568,7 @@ }, { "question": "Walmart Tire & Lube Express Centre", - "icon": "./assets/data/nsi/logos/walmarttireandlubeexpresscentre-10e248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmarttireandlubeexpresscentre-10e248.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405228,7 +405584,7 @@ }, { "question": "Wintec Autoglas", - "icon": "./assets/data/nsi/logos/wintecautoglas-c95f1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wintecautoglas-c95f1a.jpg", "osmTags": { "and": [ "service:vehicle:glass=yes", @@ -405331,7 +405687,7 @@ }, { "question": "بترومين إكسبرس", - "icon": "./assets/data/nsi/logos/petrominexpress-78a956.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrominexpress-78a956.svg", "osmTags": { "and": [ "shop=car_repair", @@ -405351,7 +405707,7 @@ }, { "question": "カーコンビニ倶楽部", - "icon": "./assets/data/nsi/logos/carconvenienceclub-aba9fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carconvenienceclub-aba9fa.png", "osmTags": { "and": [ "shop=car_repair", @@ -405409,7 +405765,7 @@ }, { "question": "Abarth", - "icon": "./assets/data/nsi/logos/abarth-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abarth-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405425,7 +405781,7 @@ }, { "question": "Acura", - "icon": "./assets/data/nsi/logos/acura-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/acura-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -405441,7 +405797,7 @@ }, { "question": "Aixam", - "icon": "./assets/data/nsi/logos/aixam-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aixam-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -405457,7 +405813,7 @@ }, { "question": "Alfa Romeo", - "icon": "./assets/data/nsi/logos/alfaromeo-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfaromeo-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405473,7 +405829,7 @@ }, { "question": "Alpine", - "icon": "./assets/data/nsi/logos/alpine-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alpine-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405489,7 +405845,7 @@ }, { "question": "Aston Martin", - "icon": "./assets/data/nsi/logos/astonmartin-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/astonmartin-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405505,7 +405861,7 @@ }, { "question": "Audi", - "icon": "./assets/data/nsi/logos/audi-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/audi-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405521,7 +405877,7 @@ }, { "question": "Bentley", - "icon": "./assets/data/nsi/logos/bentley-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bentley-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405537,7 +405893,7 @@ }, { "question": "BMW", - "icon": "./assets/data/nsi/logos/bmw-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmw-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405553,7 +405909,7 @@ }, { "question": "Bugatti", - "icon": "./assets/data/nsi/logos/bugatti-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bugatti-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405569,7 +405925,7 @@ }, { "question": "Buick", - "icon": "./assets/data/nsi/logos/buick-f6da1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buick-f6da1e.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405585,7 +405941,7 @@ }, { "question": "BYD", - "icon": "./assets/data/nsi/logos/byd-05a657.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byd-05a657.png", "osmTags": { "and": [ "shop=car_repair", @@ -405601,7 +405957,7 @@ }, { "question": "Cadillac", - "icon": "./assets/data/nsi/logos/cadillac-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cadillac-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405617,7 +405973,7 @@ }, { "question": "Chery", - "icon": "./assets/data/nsi/logos/chery-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chery-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405633,7 +405989,7 @@ }, { "question": "Chevrolet", - "icon": "./assets/data/nsi/logos/chevrolet-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chevrolet-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405649,7 +406005,7 @@ }, { "question": "Chrysler", - "icon": "./assets/data/nsi/logos/chrysler-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chrysler-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405665,7 +406021,7 @@ }, { "question": "Citroën", - "icon": "./assets/data/nsi/logos/citroen-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citroen-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405681,7 +406037,7 @@ }, { "question": "Cupra", - "icon": "./assets/data/nsi/logos/cupra-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cupra-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405697,7 +406053,7 @@ }, { "question": "Dacia", - "icon": "./assets/data/nsi/logos/dacia-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dacia-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405713,7 +406069,7 @@ }, { "question": "Daihatsu", - "icon": "./assets/data/nsi/logos/daihatsu-eeda26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daihatsu-eeda26.png", "osmTags": { "and": [ "shop=car_repair", @@ -405743,7 +406099,7 @@ }, { "question": "Dodge", - "icon": "./assets/data/nsi/logos/dodge-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dodge-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405773,7 +406129,7 @@ }, { "question": "Ferrari", - "icon": "./assets/data/nsi/logos/ferrari-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ferrari-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -405789,7 +406145,7 @@ }, { "question": "Fiat", - "icon": "./assets/data/nsi/logos/fiat-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiat-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405805,7 +406161,7 @@ }, { "question": "Fiat Professional", - "icon": "./assets/data/nsi/logos/fiatprofessional-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiatprofessional-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405821,7 +406177,7 @@ }, { "question": "Fisker", - "icon": "./assets/data/nsi/logos/fisker-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fisker-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -405837,7 +406193,7 @@ }, { "question": "Ford", - "icon": "./assets/data/nsi/logos/ford-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ford-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -405853,7 +406209,7 @@ }, { "question": "Freightliner", - "icon": "./assets/data/nsi/logos/freightliner-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freightliner-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405869,7 +406225,7 @@ }, { "question": "Geely", - "icon": "./assets/data/nsi/logos/geely-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geely-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405885,7 +406241,7 @@ }, { "question": "Genesis", - "icon": "./assets/data/nsi/logos/genesis-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genesis-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405901,7 +406257,7 @@ }, { "question": "GMC", - "icon": "./assets/data/nsi/logos/gmc-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gmc-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405917,16 +406273,16 @@ }, { "question": "GWM", - "icon": "./assets/data/nsi/logos/gwm-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gwm-dc8719.jpg", "osmTags": { "and": [ - "official_name=Great Wall Motor", "shop=car_repair", { "or": [ "brand=GWM", "brand:wikidata=Q1117001", - "name=GWM" + "name=GWM", + "official_name=Great Wall Motor" ] } ] @@ -405934,7 +406290,7 @@ }, { "question": "Haval", - "icon": "./assets/data/nsi/logos/haval-dc8719.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/haval-dc8719.svg", "osmTags": { "and": [ "shop=car_repair", @@ -405950,7 +406306,7 @@ }, { "question": "Hino Motors", - "icon": "./assets/data/nsi/logos/hinomotors-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hinomotors-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405966,7 +406322,7 @@ }, { "question": "Holden", - "icon": "./assets/data/nsi/logos/holden-224beb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holden-224beb.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405982,7 +406338,7 @@ }, { "question": "Honda", - "icon": "./assets/data/nsi/logos/honda-eeda26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honda-eeda26.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -405998,7 +406354,7 @@ }, { "question": "HOT大聯盟", - "icon": "./assets/data/nsi/logos/hotcar-2dd56c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotcar-2dd56c.jpg", "osmTags": { "and": [ "second_hand=only", @@ -406019,7 +406375,7 @@ }, { "question": "Hyundai", - "icon": "./assets/data/nsi/logos/hyundai-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hyundai-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406035,7 +406391,7 @@ }, { "question": "Infiniti", - "icon": "./assets/data/nsi/logos/infiniti-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/infiniti-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406051,7 +406407,7 @@ }, { "question": "Isuzu", - "icon": "./assets/data/nsi/logos/isuzu-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isuzu-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406067,7 +406423,7 @@ }, { "question": "Jaguar", - "icon": "./assets/data/nsi/logos/jaguar-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jaguar-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406083,7 +406439,7 @@ }, { "question": "Jeep", - "icon": "./assets/data/nsi/logos/jeep-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeep-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406099,7 +406455,7 @@ }, { "question": "Karma", - "icon": "./assets/data/nsi/logos/karma-34798d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karma-34798d.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406115,7 +406471,7 @@ }, { "question": "Kia", - "icon": "./assets/data/nsi/logos/kia-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kia-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406131,7 +406487,7 @@ }, { "question": "Koenigsegg", - "icon": "./assets/data/nsi/logos/koenigsegg-81b22c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koenigsegg-81b22c.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406147,7 +406503,7 @@ }, { "question": "Lada", - "icon": "./assets/data/nsi/logos/lada-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lada-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406167,7 +406523,7 @@ }, { "question": "Lamborghini", - "icon": "./assets/data/nsi/logos/lamborghini-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamborghini-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406183,7 +406539,7 @@ }, { "question": "Lancia", - "icon": "./assets/data/nsi/logos/lancia-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancia-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406199,7 +406555,7 @@ }, { "question": "Land Rover", - "icon": "./assets/data/nsi/logos/landrover-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landrover-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406215,7 +406571,7 @@ }, { "question": "Lexus", - "icon": "./assets/data/nsi/logos/lexus-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lexus-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406231,7 +406587,7 @@ }, { "question": "Lincoln", - "icon": "./assets/data/nsi/logos/lincoln-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincoln-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406247,7 +406603,7 @@ }, { "question": "Lotus", - "icon": "./assets/data/nsi/logos/lotus-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotus-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406263,7 +406619,7 @@ }, { "question": "Lucid", - "icon": "./assets/data/nsi/logos/lucid-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lucid-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406279,7 +406635,7 @@ }, { "question": "Lynk & Co", - "icon": "./assets/data/nsi/logos/lynkandco-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lynkandco-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406295,7 +406651,7 @@ }, { "question": "Maruti Suzuki", - "icon": "./assets/data/nsi/logos/marutisuzuki-4d8690.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marutisuzuki-4d8690.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406311,7 +406667,7 @@ }, { "question": "Maserati", - "icon": "./assets/data/nsi/logos/maserati-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maserati-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406327,7 +406683,7 @@ }, { "question": "Mazda", - "icon": "./assets/data/nsi/logos/mazda-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mazda-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406343,7 +406699,7 @@ }, { "question": "McLaren", - "icon": "./assets/data/nsi/logos/mclaren-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mclaren-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406359,7 +406715,7 @@ }, { "question": "Mercedes-Benz", - "icon": "./assets/data/nsi/logos/mercedesbenz-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercedesbenz-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406375,7 +406731,7 @@ }, { "question": "MG", - "icon": "./assets/data/nsi/logos/mg-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mg-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406391,7 +406747,7 @@ }, { "question": "Mini", - "icon": "./assets/data/nsi/logos/mini-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mini-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406407,7 +406763,7 @@ }, { "question": "Mitsubishi", - "icon": "./assets/data/nsi/logos/mitsubishi-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mitsubishi-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406423,7 +406779,7 @@ }, { "question": "NIO House", - "icon": "./assets/data/nsi/logos/niohouse-301da3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niohouse-301da3.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406439,7 +406795,7 @@ }, { "question": "Nissan", - "icon": "./assets/data/nsi/logos/nissan-eeda26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nissan-eeda26.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406455,7 +406811,7 @@ }, { "question": "Opel", - "icon": "./assets/data/nsi/logos/opel-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opel-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406471,7 +406827,7 @@ }, { "question": "Ora", - "icon": "./assets/data/nsi/logos/ora-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ora-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406487,7 +406843,7 @@ }, { "question": "Perodua", - "icon": "./assets/data/nsi/logos/perodua-3c4c6a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/perodua-3c4c6a.png", "osmTags": { "and": [ "shop=car_repair", @@ -406503,7 +406859,7 @@ }, { "question": "Peugeot", - "icon": "./assets/data/nsi/logos/peugeot-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peugeot-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406519,7 +406875,7 @@ }, { "question": "Polestar", - "icon": "./assets/data/nsi/logos/polestar-16efa0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polestar-16efa0.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406535,7 +406891,7 @@ }, { "question": "Porsche", - "icon": "./assets/data/nsi/logos/porsche-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porsche-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406551,7 +406907,7 @@ }, { "question": "Proton", - "icon": "./assets/data/nsi/logos/proton-38d190.png", + "icon": "https://data.mapcomplete.org/nsi//logos/proton-38d190.png", "osmTags": { "and": [ "shop=car_repair", @@ -406567,7 +406923,7 @@ }, { "question": "Ram", - "icon": "./assets/data/nsi/logos/ram-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ram-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406583,7 +406939,7 @@ }, { "question": "Renault", - "icon": "./assets/data/nsi/logos/renault-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renault-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406599,7 +406955,7 @@ }, { "question": "Renault Trucks", - "icon": "./assets/data/nsi/logos/renaulttrucks-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renaulttrucks-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406615,7 +406971,7 @@ }, { "question": "Rimac", - "icon": "./assets/data/nsi/logos/rimac-2012db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rimac-2012db.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406631,7 +406987,7 @@ }, { "question": "Rolls-Royce", - "icon": "./assets/data/nsi/logos/rollsroyce-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rollsroyce-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406647,7 +407003,7 @@ }, { "question": "Seat", - "icon": "./assets/data/nsi/logos/seat-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seat-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406663,7 +407019,7 @@ }, { "question": "Škoda", - "icon": "./assets/data/nsi/logos/skoda-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skoda-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406679,7 +407035,7 @@ }, { "question": "Smart", - "icon": "./assets/data/nsi/logos/smart-102ff2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smart-102ff2.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406695,7 +407051,7 @@ }, { "question": "SsangYong", - "icon": "./assets/data/nsi/logos/ssangyong-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ssangyong-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406711,7 +407067,7 @@ }, { "question": "Subaru", - "icon": "./assets/data/nsi/logos/subaru-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/subaru-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406727,7 +407083,7 @@ }, { "question": "Suzuki", - "icon": "./assets/data/nsi/logos/suzuki-aa6899.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suzuki-aa6899.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406743,6 +407099,7 @@ }, { "question": "Sytner Select", + "icon": "https://data.mapcomplete.org/nsi//logos/sytnerselect-3b6d68.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406758,7 +407115,7 @@ }, { "question": "Tata", - "icon": "./assets/data/nsi/logos/tata-1572d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tata-1572d0.png", "osmTags": { "and": [ "shop=car_repair", @@ -406774,7 +407131,7 @@ }, { "question": "Tesla", - "icon": "./assets/data/nsi/logos/tesla-e5a54b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tesla-e5a54b.svg", "osmTags": { "and": [ "shop=car_repair", @@ -406790,7 +407147,7 @@ }, { "question": "Toyota", - "icon": "./assets/data/nsi/logos/toyota-eeda26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toyota-eeda26.png", "osmTags": { "and": [ "shop=car_repair", @@ -406806,7 +407163,7 @@ }, { "question": "Vauxhall", - "icon": "./assets/data/nsi/logos/vauxhall-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vauxhall-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406822,7 +407179,7 @@ }, { "question": "Volkswagen", - "icon": "./assets/data/nsi/logos/volkswagen-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkswagen-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406838,7 +407195,7 @@ }, { "question": "Volkswagen Commercial Vehicles", - "icon": "./assets/data/nsi/logos/volkswagencommercialvehicles-dc8719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkswagencommercialvehicles-dc8719.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -406854,7 +407211,7 @@ }, { "question": "Volvo", - "icon": "./assets/data/nsi/logos/volvo-dc8719.png", + "icon": "https://data.mapcomplete.org/nsi//logos/volvo-dc8719.png", "osmTags": { "and": [ "shop=car_repair", @@ -406870,7 +407227,7 @@ }, { "question": "Xpeng", - "icon": "./assets/data/nsi/logos/xpeng-301da3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xpeng-301da3.png", "osmTags": { "and": [ "shop=car_repair", @@ -406886,7 +407243,7 @@ }, { "question": "سایپا", - "icon": "./assets/data/nsi/logos/saipa-e74adb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saipa-e74adb.png", "osmTags": { "and": [ "shop=car_repair", @@ -406906,7 +407263,7 @@ }, { "question": "ガリバー", - "icon": "./assets/data/nsi/logos/gulliver-aba9fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gulliver-aba9fa.png", "osmTags": { "and": [ "shop=car_repair", @@ -406944,7 +407301,7 @@ }, { "question": "ダイハツ", - "icon": "./assets/data/nsi/logos/daihatsu-aba9fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daihatsu-aba9fa.png", "osmTags": { "and": [ "shop=car_repair", @@ -406964,7 +407321,7 @@ }, { "question": "トヨタ", - "icon": "./assets/data/nsi/logos/toyota-aba9fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toyota-aba9fa.png", "osmTags": { "and": [ "shop=car_repair", @@ -406984,7 +407341,7 @@ }, { "question": "ホンダ", - "icon": "./assets/data/nsi/logos/honda-aba9fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honda-aba9fa.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -407004,7 +407361,7 @@ }, { "question": "小鹏", - "icon": "./assets/data/nsi/logos/xpeng-98f9a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xpeng-98f9a6.png", "osmTags": { "and": [ "shop=car_repair", @@ -407024,7 +407381,7 @@ }, { "question": "日産", - "icon": "./assets/data/nsi/logos/nissan-aba9fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nissan-aba9fa.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -407044,7 +407401,7 @@ }, { "question": "极氪", - "icon": "./assets/data/nsi/logos/zeekr-98f9a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeekr-98f9a6.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -407064,7 +407421,7 @@ }, { "question": "比亚迪", - "icon": "./assets/data/nsi/logos/byd-59c0e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byd-59c0e1.png", "osmTags": { "and": [ "shop=car_repair", @@ -407084,7 +407441,7 @@ }, { "question": "特斯拉", - "icon": "./assets/data/nsi/logos/tesla-9faa29.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tesla-9faa29.svg", "osmTags": { "and": [ "shop=car_repair", @@ -407104,7 +407461,7 @@ }, { "question": "理想", - "icon": "./assets/data/nsi/logos/liauto-98f9a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liauto-98f9a6.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -407124,7 +407481,7 @@ }, { "question": "蔚来中心", - "icon": "./assets/data/nsi/logos/niohouse-98f9a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niohouse-98f9a6.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -407144,7 +407501,7 @@ }, { "question": "零跑汽车", - "icon": "./assets/data/nsi/logos/leapmotor-98f9a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leapmotor-98f9a6.jpg", "osmTags": { "and": [ "shop=car_repair", @@ -407164,7 +407521,7 @@ }, { "question": "Camping World", - "icon": "./assets/data/nsi/logos/campingworld-391dd0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/campingworld-391dd0.jpg", "osmTags": { "and": [ "shop=caravan", @@ -407180,7 +407537,7 @@ }, { "question": "Carpet Court", - "icon": "./assets/data/nsi/logos/carpetcourt-41ee08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carpetcourt-41ee08.jpg", "osmTags": { "and": [ "shop=carpet", @@ -407196,7 +407553,7 @@ }, { "question": "Carpet One Floor & Home", - "icon": "./assets/data/nsi/logos/carpetonefloorandhome-3c711e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carpetonefloorandhome-3c711e.png", "osmTags": { "and": [ "shop=carpet", @@ -407212,7 +407569,7 @@ }, { "question": "Carpetright", - "icon": "./assets/data/nsi/logos/carpetright-68566f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carpetright-68566f.jpg", "osmTags": { "and": [ "shop=carpet", @@ -407228,7 +407585,7 @@ }, { "question": "Kibek", - "icon": "./assets/data/nsi/logos/kibek-0208b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kibek-0208b5.jpg", "osmTags": { "and": [ "shop=carpet", @@ -407244,7 +407601,7 @@ }, { "question": "Tapi Carpets", - "icon": "./assets/data/nsi/logos/tapicarpets-40b39f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tapicarpets-40b39f.jpg", "osmTags": { "and": [ "shop=carpet", @@ -407260,7 +407617,7 @@ }, { "question": "United Carpets and Beds", - "icon": "./assets/data/nsi/logos/unitedcarpetsandbeds-40b39f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedcarpetsandbeds-40b39f.jpg", "osmTags": { "and": [ "shop=carpet", @@ -407276,7 +407633,7 @@ }, { "question": "Argos", - "icon": "./assets/data/nsi/logos/argos-3930ea.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/argos-3930ea.svg", "osmTags": { "and": [ "shop=catalogue", @@ -407292,7 +407649,7 @@ }, { "question": "Age UK", - "icon": "./assets/data/nsi/logos/ageuk-b7b967.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ageuk-b7b967.png", "osmTags": { "and": [ "shop=charity", @@ -407308,7 +407665,7 @@ }, { "question": "AMVETS Thrift Store", - "icon": "./assets/data/nsi/logos/amvetsthriftstore-fca2e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amvetsthriftstore-fca2e3.png", "osmTags": { "and": [ "shop=charity", @@ -407324,7 +407681,7 @@ }, { "question": "arc Thrift Stores", - "icon": "./assets/data/nsi/logos/arcthriftstore-fca2e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arcthriftstore-fca2e3.jpg", "osmTags": { "and": [ "shop=charity", @@ -407340,7 +407697,7 @@ }, { "question": "Barnardo's", - "icon": "./assets/data/nsi/logos/barnardos-f84d6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barnardos-f84d6b.jpg", "osmTags": { "and": [ "shop=charity", @@ -407356,7 +407713,7 @@ }, { "question": "Blue Cross", - "icon": "./assets/data/nsi/logos/bluecross-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluecross-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407372,7 +407729,7 @@ }, { "question": "Brainwave", - "icon": "./assets/data/nsi/logos/brainwave-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brainwave-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407388,7 +407745,7 @@ }, { "question": "British Heart Foundation", - "icon": "./assets/data/nsi/logos/britishheartfoundation-b7b967.png", + "icon": "https://data.mapcomplete.org/nsi//logos/britishheartfoundation-b7b967.png", "osmTags": { "and": [ "shop=charity", @@ -407404,7 +407761,7 @@ }, { "question": "British Red Cross", - "icon": "./assets/data/nsi/logos/britishredcross-8c30a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/britishredcross-8c30a6.png", "osmTags": { "and": [ "shop=charity", @@ -407420,7 +407777,7 @@ }, { "question": "Cancer Research UK", - "icon": "./assets/data/nsi/logos/cancerresearchuk-afd1d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cancerresearchuk-afd1d8.jpg", "osmTags": { "and": [ "shop=charity", @@ -407436,7 +407793,7 @@ }, { "question": "Cats Protection", - "icon": "./assets/data/nsi/logos/catsprotection-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/catsprotection-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407452,7 +407809,7 @@ }, { "question": "Children's Hospice South West", - "icon": "./assets/data/nsi/logos/childrenshospicesouthwest-0bd8de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/childrenshospicesouthwest-0bd8de.jpg", "osmTags": { "and": [ "shop=charity", @@ -407468,7 +407825,7 @@ }, { "question": "Crisis", - "icon": "./assets/data/nsi/logos/crisis-23e499.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crisis-23e499.jpg", "osmTags": { "and": [ "shop=charity", @@ -407484,7 +407841,7 @@ }, { "question": "Dansk Røde Kors Genbrug", - "icon": "./assets/data/nsi/logos/danskrodekorsgenbrug-40689c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/danskrodekorsgenbrug-40689c.jpg", "osmTags": { "and": [ "second_hand=only", @@ -407501,7 +407858,7 @@ }, { "question": "Debra (UK)", - "icon": "./assets/data/nsi/logos/debracharityshop-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/debracharityshop-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407517,7 +407874,7 @@ }, { "question": "Emmaüs", - "icon": "./assets/data/nsi/logos/emmaus-0d4d3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emmaus-0d4d3e.png", "osmTags": { "and": [ "shop=charity", @@ -407535,7 +407892,7 @@ }, { "question": "Frelsens Hær Genbrug", - "icon": "./assets/data/nsi/logos/frelsenshaergenbrug-40689c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/frelsenshaergenbrug-40689c.png", "osmTags": { "and": [ "ref:DK:cvr=43417312", @@ -407553,7 +407910,7 @@ }, { "question": "Habitat for Humanity ReStore", - "icon": "./assets/data/nsi/logos/habitatforhumanityrestore-0873d3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/habitatforhumanityrestore-0873d3.png", "osmTags": { "and": [ "second_hand=yes", @@ -407572,7 +407929,7 @@ }, { "question": "Haven House Children's Hospice", - "icon": "./assets/data/nsi/logos/havenhousechildrenshospice-b7b967.png", + "icon": "https://data.mapcomplete.org/nsi//logos/havenhousechildrenshospice-b7b967.png", "osmTags": { "and": [ "shop=charity", @@ -407588,7 +407945,7 @@ }, { "question": "Havens Hospices", - "icon": "./assets/data/nsi/logos/havenshospices-a8aae6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/havenshospices-a8aae6.jpg", "osmTags": { "and": [ "shop=charity", @@ -407623,7 +407980,7 @@ }, { "question": "Kirkens Korshær Genbrug", - "icon": "./assets/data/nsi/logos/kirkenskorshaergenbrug-40689c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kirkenskorshaergenbrug-40689c.png", "osmTags": { "and": [ "shop=charity", @@ -407639,7 +407996,7 @@ }, { "question": "Lifeline", - "icon": "./assets/data/nsi/logos/lifelineshop-0a6dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifelineshop-0a6dbd.jpg", "osmTags": { "and": [ "shop=charity", @@ -407655,7 +408012,7 @@ }, { "question": "Marie Curie", - "icon": "./assets/data/nsi/logos/mariecurie-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mariecurie-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407671,16 +408028,16 @@ }, { "question": "Mencap", - "icon": "./assets/data/nsi/logos/mencap-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mencap-b7b967.jpg", "osmTags": { "and": [ - "official_name=Royal Mencap Society", "shop=charity", { "or": [ "brand=Mencap", "brand:wikidata=Q6816514", - "name=Mencap" + "name=Mencap", + "official_name=Royal Mencap Society" ] } ] @@ -407688,7 +408045,7 @@ }, { "question": "Mind", - "icon": "./assets/data/nsi/logos/mind-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mind-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407704,7 +408061,7 @@ }, { "question": "Myrorna", - "icon": "./assets/data/nsi/logos/myrorna-ef3d1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/myrorna-ef3d1a.jpg", "osmTags": { "and": [ "shop=charity", @@ -407720,7 +408077,7 @@ }, { "question": "Oxfam", - "icon": "./assets/data/nsi/logos/oxfam-70fc14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfam-70fc14.jpg", "osmTags": { "and": [ "shop=charity", @@ -407736,7 +408093,7 @@ }, { "question": "PDSA", - "icon": "./assets/data/nsi/logos/pdsa-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pdsa-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407752,7 +408109,7 @@ }, { "question": "Rennie Grove Peace", - "icon": "./assets/data/nsi/logos/renniegrovepeace-a8aae6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renniegrovepeace-a8aae6.jpg", "osmTags": { "and": [ "shop=charity", @@ -407768,7 +408125,7 @@ }, { "question": "RNLI Shop", - "icon": "./assets/data/nsi/logos/rnlishop-f84d6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rnlishop-f84d6b.png", "osmTags": { "and": [ "shop=charity", @@ -407784,7 +408141,7 @@ }, { "question": "RSPCA", - "icon": "./assets/data/nsi/logos/rspca-c2d19b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rspca-c2d19b.jpg", "osmTags": { "and": [ "shop=charity", @@ -407800,7 +408157,7 @@ }, { "question": "Saint Vincent de Paul Thrift Store", - "icon": "./assets/data/nsi/logos/saintvincentdepaulthriftstore-fca2e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintvincentdepaulthriftstore-fca2e3.jpg", "osmTags": { "and": [ "shop=charity", @@ -407817,7 +408174,7 @@ }, { "question": "Salvos", - "icon": "./assets/data/nsi/logos/salvos-0a6dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salvos-0a6dbd.jpg", "osmTags": { "and": [ "shop=charity", @@ -407833,7 +408190,7 @@ }, { "question": "Samaritans", - "icon": "./assets/data/nsi/logos/samaritans-f84d6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samaritans-f84d6b.jpg", "osmTags": { "and": [ "shop=charity", @@ -407849,7 +408206,7 @@ }, { "question": "Save the Children", - "icon": "./assets/data/nsi/logos/savethechildren-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/savethechildren-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407865,7 +408222,7 @@ }, { "question": "Scope", - "icon": "./assets/data/nsi/logos/scope-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scope-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407881,7 +408238,7 @@ }, { "question": "SCT (Spitalfields Crypt Trust)", - "icon": "./assets/data/nsi/logos/sct-23e499.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sct-23e499.jpg", "osmTags": { "and": [ "shop=charity", @@ -407897,7 +408254,7 @@ }, { "question": "Sense", - "icon": "./assets/data/nsi/logos/sense-4e8804.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sense-4e8804.png", "osmTags": { "and": [ "shop=charity", @@ -407913,7 +408270,7 @@ }, { "question": "Sense Scotland", - "icon": "./assets/data/nsi/logos/sensescotland-b96ba7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sensescotland-b96ba7.png", "osmTags": { "and": [ "shop=charity", @@ -407929,7 +408286,7 @@ }, { "question": "Shaw Trust", - "icon": "./assets/data/nsi/logos/shawtrust-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shawtrust-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407945,7 +408302,7 @@ }, { "question": "Shelter", - "icon": "./assets/data/nsi/logos/shelter-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shelter-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407961,7 +408318,7 @@ }, { "question": "St Margaret's Hospice Care", - "icon": "./assets/data/nsi/logos/stmargaretshospicecare-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stmargaretshospicecare-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -407977,7 +408334,7 @@ }, { "question": "Sue Ryder", - "icon": "./assets/data/nsi/logos/sueryder-f84d6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sueryder-f84d6b.jpg", "osmTags": { "and": [ "shop=charity", @@ -407993,7 +408350,7 @@ }, { "question": "Thames Hospice", - "icon": "./assets/data/nsi/logos/thameshospice-a8aae6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thameshospice-a8aae6.jpg", "osmTags": { "and": [ "shop=charity", @@ -408009,7 +408366,7 @@ }, { "question": "The Children's Society", - "icon": "./assets/data/nsi/logos/thechildrenssociety-b7b967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thechildrenssociety-b7b967.jpg", "osmTags": { "and": [ "shop=charity", @@ -408025,7 +408382,7 @@ }, { "question": "The Salvation Army", - "icon": "./assets/data/nsi/logos/thesalvationarmy-2031e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-2031e0.png", "osmTags": { "and": [ "shop=charity", @@ -408056,7 +408413,7 @@ }, { "question": "YMCA", - "icon": "./assets/data/nsi/logos/ymca-bf05c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ymca-bf05c1.png", "osmTags": { "and": [ "shop=charity", @@ -408072,7 +408429,7 @@ }, { "question": "Сирне королівство", - "icon": "./assets/data/nsi/logos/07fa72-cd68fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/07fa72-cd68fa.jpg", "osmTags": { "and": [ "shop=cheese", @@ -408088,7 +408445,7 @@ }, { "question": "באשר פרומז'רי", - "icon": "./assets/data/nsi/logos/basherfromagerie-00d377.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/basherfromagerie-00d377.jpg", "osmTags": { "and": [ "shop=cheese", @@ -408107,7 +408464,7 @@ }, { "question": "101 Drogerie", - "icon": "./assets/data/nsi/logos/101drogerie-a99570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/101drogerie-a99570.png", "osmTags": { "and": [ "shop=chemist", @@ -408137,7 +408494,7 @@ }, { "question": "Acqua & Sapone", - "icon": "./assets/data/nsi/logos/acquaandsapone-864e82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/acquaandsapone-864e82.png", "osmTags": { "and": [ "shop=chemist", @@ -408153,7 +408510,7 @@ }, { "question": "Bipa", - "icon": "./assets/data/nsi/logos/bipa-07ba5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bipa-07ba5a.png", "osmTags": { "and": [ "shop=chemist", @@ -408169,7 +408526,7 @@ }, { "question": "Bodycare", - "icon": "./assets/data/nsi/logos/bodycare-b82430.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodycare-b82430.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408185,7 +408542,7 @@ }, { "question": "Boots", - "icon": "./assets/data/nsi/logos/boots-b67e62.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boots-b67e62.png", "osmTags": { "and": [ "shop=chemist", @@ -408201,7 +408558,7 @@ }, { "question": "Budni", - "icon": "./assets/data/nsi/logos/budni-5f6506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budni-5f6506.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408217,7 +408574,7 @@ }, { "question": "Caddy's", - "icon": "./assets/data/nsi/logos/caddys-864e82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caddys-864e82.png", "osmTags": { "and": [ "shop=chemist", @@ -408233,7 +408590,7 @@ }, { "question": "Clarel", - "icon": "./assets/data/nsi/logos/clarel-5ee006.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarel-5ee006.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408249,7 +408606,7 @@ }, { "question": "Curaprox Smile Shop", - "icon": "./assets/data/nsi/logos/curaproxsmileshop-419e7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/curaproxsmileshop-419e7d.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408266,7 +408623,7 @@ }, { "question": "CVS Pharmacy", - "icon": "./assets/data/nsi/logos/cvspharmacy-437f3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cvspharmacy-437f3b.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408283,7 +408640,7 @@ }, { "question": "DA", - "icon": "./assets/data/nsi/logos/da-994f1e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/da-994f1e.png", "osmTags": { "and": [ "shop=chemist", @@ -408299,7 +408656,7 @@ }, { "question": "Die Grenze", - "icon": "./assets/data/nsi/logos/diegrenze-994f1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diegrenze-994f1e.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408315,7 +408672,7 @@ }, { "question": "Dini", - "icon": "./assets/data/nsi/logos/dini-ea54a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dini-ea54a6.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408331,7 +408688,7 @@ }, { "question": "dm", - "icon": "./assets/data/nsi/logos/dm-1281c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dm-1281c9.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408347,7 +408704,7 @@ }, { "question": "Drogas", - "icon": "./assets/data/nsi/logos/drogas-1a360a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drogas-1a360a.png", "osmTags": { "and": [ "shop=chemist", @@ -408363,7 +408720,7 @@ }, { "question": "Drogeria Natura", - "icon": "./assets/data/nsi/logos/drogerianatura-650b49.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drogerianatura-650b49.png", "osmTags": { "and": [ "shop=chemist", @@ -408379,7 +408736,7 @@ }, { "question": "Etos", - "icon": "./assets/data/nsi/logos/etos-994f1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etos-994f1e.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408395,7 +408752,7 @@ }, { "question": "Eva (Україна)", - "icon": "./assets/data/nsi/logos/eva-ea54a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eva-ea54a6.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408411,7 +408768,7 @@ }, { "question": "Good Neighbor Pharmacy", - "icon": "./assets/data/nsi/logos/goodneighborpharmacy-437f3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodneighborpharmacy-437f3b.png", "osmTags": { "and": [ "shop=chemist", @@ -408442,7 +408799,7 @@ }, { "question": "Hebe", - "icon": "./assets/data/nsi/logos/hebe-b64653.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hebe-b64653.png", "osmTags": { "and": [ "shop=chemist", @@ -408458,7 +408815,7 @@ }, { "question": "Isei", - "icon": "./assets/data/nsi/logos/isei-ea54a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isei-ea54a6.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408474,7 +408831,7 @@ }, { "question": "Kruidvat", - "icon": "./assets/data/nsi/logos/kruidvat-9445a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kruidvat-9445a8.png", "osmTags": { "and": [ "shop=chemist", @@ -408490,7 +408847,7 @@ }, { "question": "laboo", - "icon": "./assets/data/nsi/logos/laboo-650b49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laboo-650b49.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408506,7 +408863,7 @@ }, { "question": "Lili Drogerie (Ελλάδα)", - "icon": "./assets/data/nsi/logos/lili-2bdbc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lili-2bdbc0.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408522,7 +408879,7 @@ }, { "question": "Lilly Drogerie (Србија)", - "icon": "./assets/data/nsi/logos/lilly-2aefd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lilly-2aefd6.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408554,7 +408911,7 @@ }, { "question": "Longs Drugs", - "icon": "./assets/data/nsi/logos/longsdrugs-485466.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/longsdrugs-485466.svg", "osmTags": { "and": [ "shop=chemist", @@ -408573,7 +408930,7 @@ }, { "question": "Matas", - "icon": "./assets/data/nsi/logos/matas-9eec7a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/matas-9eec7a.png", "osmTags": { "and": [ "shop=chemist", @@ -408589,7 +408946,7 @@ }, { "question": "Müller", - "icon": "./assets/data/nsi/logos/muller-ca019f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/muller-ca019f.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408619,7 +408976,7 @@ }, { "question": "Normal", - "icon": "./assets/data/nsi/logos/normal-57f5e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/normal-57f5e2.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408635,7 +408992,7 @@ }, { "question": "Prostor", - "icon": "./assets/data/nsi/logos/prostor-ea54a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prostor-ea54a6.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408651,7 +409008,7 @@ }, { "question": "Rite Aid", - "icon": "./assets/data/nsi/logos/riteaid-578118.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riteaid-578118.png", "osmTags": { "and": [ "shop=chemist", @@ -408667,7 +409024,7 @@ }, { "question": "Rossmann", - "icon": "./assets/data/nsi/logos/rossmann-06ae64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rossmann-06ae64.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408683,7 +409040,7 @@ }, { "question": "Rossmann Express", - "icon": "./assets/data/nsi/logos/rossmannexpress-5f6506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rossmannexpress-5f6506.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408699,16 +409056,16 @@ }, { "question": "Savers", - "icon": "./assets/data/nsi/logos/savers-b82430.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/savers-b82430.jpg", "osmTags": { "and": [ - "official_name=Savers Health & Beauty", "shop=chemist", { "or": [ "brand=Savers", "brand:wikidata=Q7428189", - "name=Savers" + "name=Savers", + "official_name=Savers Health & Beauty" ] } ] @@ -408716,7 +409073,7 @@ }, { "question": "Semichem", - "icon": "./assets/data/nsi/logos/semichem-b82430.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/semichem-b82430.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408732,7 +409089,7 @@ }, { "question": "Splendidi e Splendenti", - "icon": "./assets/data/nsi/logos/splendidiesplendenti-864e82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/splendidiesplendenti-864e82.png", "osmTags": { "and": [ "shop=chemist", @@ -408748,7 +409105,7 @@ }, { "question": "Superdrug", - "icon": "./assets/data/nsi/logos/superdrug-b67e62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superdrug-b67e62.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408764,7 +409121,7 @@ }, { "question": "Teta", - "icon": "./assets/data/nsi/logos/teta-419e7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/teta-419e7d.png", "osmTags": { "and": [ "shop=chemist", @@ -408780,7 +409137,7 @@ }, { "question": "Tigotà", - "icon": "./assets/data/nsi/logos/tigota-864e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigota-864e82.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408796,7 +409153,7 @@ }, { "question": "TOP Drogerie", - "icon": "./assets/data/nsi/logos/topdrogerie-419e7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topdrogerie-419e7d.png", "osmTags": { "and": [ "shop=chemist", @@ -408814,7 +409171,7 @@ }, { "question": "Trekpleister", - "icon": "./assets/data/nsi/logos/trekpleister-994f1e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trekpleister-994f1e.png", "osmTags": { "and": [ "shop=chemist", @@ -408830,7 +409187,7 @@ }, { "question": "Walgreens", - "icon": "./assets/data/nsi/logos/walgreens-437f3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/walgreens-437f3b.png", "osmTags": { "and": [ "shop=chemist", @@ -408846,7 +409203,7 @@ }, { "question": "Watsons", - "icon": "./assets/data/nsi/logos/watsons-3eb610.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watsons-3eb610.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408862,7 +409219,7 @@ }, { "question": "Wells", - "icon": "./assets/data/nsi/logos/wells-20e6e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wells-20e6e7.png", "osmTags": { "and": [ "shop=chemist", @@ -408878,7 +409235,7 @@ }, { "question": "Лили Дрогерия (България)", - "icon": "./assets/data/nsi/logos/lilly-22ddb5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lilly-22ddb5.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408896,7 +409253,7 @@ }, { "question": "Магнит Косметик", - "icon": "./assets/data/nsi/logos/magnitcosmetics-2141a5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/magnitcosmetics-2141a5.svg", "osmTags": { "and": [ "shop=chemist", @@ -408916,7 +409273,7 @@ }, { "question": "Мила", - "icon": "./assets/data/nsi/logos/mila-133d36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mila-133d36.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408952,7 +409309,7 @@ }, { "question": "Остров чистоты и вкуса", - "icon": "./assets/data/nsi/logos/ostrovchistoty-133d36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ostrovchistoty-133d36.jpg", "osmTags": { "and": [ "shop=chemist", @@ -408988,7 +409345,7 @@ }, { "question": "Улыбка радуги", - "icon": "./assets/data/nsi/logos/c9d6d1-2141a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c9d6d1-2141a5.jpg", "osmTags": { "and": [ "shop=chemist", @@ -409006,7 +409363,7 @@ }, { "question": "სუფთა სახლი", - "icon": "./assets/data/nsi/logos/cleanhouse-ab5407.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleanhouse-ab5407.jpg", "osmTags": { "and": [ "shop=chemist", @@ -409066,7 +409423,7 @@ }, { "question": "万宁", - "icon": "./assets/data/nsi/logos/mannings-c26faa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mannings-c26faa.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -409107,7 +409464,7 @@ }, { "question": "屈臣氏", - "icon": "./assets/data/nsi/logos/watsons-96d573.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watsons-96d573.jpg", "osmTags": { "and": [ "shop=chemist", @@ -409127,7 +409484,7 @@ }, { "question": "屈臣氏 Watsons", - "icon": "./assets/data/nsi/logos/watsons-d89f96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watsons-d89f96.jpg", "osmTags": { "and": [ "shop=chemist", @@ -409147,7 +409504,7 @@ }, { "question": "康是美", - "icon": "./assets/data/nsi/logos/cosmed-ff929b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosmed-ff929b.jpg", "osmTags": { "and": [ "shop=chemist", @@ -409167,7 +409524,7 @@ }, { "question": "日藥本舖", - "icon": "./assets/data/nsi/logos/jpmedical-ff929b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jpmedical-ff929b.jpg", "osmTags": { "and": [ "shop=chemist", @@ -409190,7 +409547,7 @@ }, { "question": "萬寧 Mannings", - "icon": "./assets/data/nsi/logos/mannings-d89f96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mannings-d89f96.jpg", "osmTags": { "and": [ "amenity=pharmacy", @@ -409216,7 +409573,7 @@ }, { "question": "Cacau Show", - "icon": "./assets/data/nsi/logos/cacaushow-634f60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cacaushow-634f60.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409232,7 +409589,7 @@ }, { "question": "Chocolates Brasil Cacau", - "icon": "./assets/data/nsi/logos/chocolatesbrasilcacau-634f60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chocolatesbrasilcacau-634f60.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409249,7 +409606,7 @@ }, { "question": "De Neuville", - "icon": "./assets/data/nsi/logos/deneuville-b0e734.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deneuville-b0e734.png", "osmTags": { "and": [ "shop=chocolate", @@ -409265,7 +409622,7 @@ }, { "question": "Dufoux Chocolats", - "icon": "./assets/data/nsi/logos/dufouxchocolats-b0e734.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dufouxchocolats-b0e734.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409281,7 +409638,7 @@ }, { "question": "Fannie May", - "icon": "./assets/data/nsi/logos/fanniemay-0e6ae0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fanniemay-0e6ae0.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409297,7 +409654,7 @@ }, { "question": "Gertrude Hawk Chocolates", - "icon": "./assets/data/nsi/logos/gertrudehawkchocolates-0e6ae0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gertrudehawkchocolates-0e6ae0.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409314,7 +409671,7 @@ }, { "question": "Godiva", - "icon": "./assets/data/nsi/logos/godiva-e47b1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/godiva-e47b1f.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409330,7 +409687,7 @@ }, { "question": "Jeff de Bruges", - "icon": "./assets/data/nsi/logos/jeffdebruges-bc7364.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jeffdebruges-bc7364.png", "osmTags": { "and": [ "shop=chocolate", @@ -409346,7 +409703,7 @@ }, { "question": "Kopenhagen", - "icon": "./assets/data/nsi/logos/kopenhagen-634f60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kopenhagen-634f60.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409362,7 +409719,7 @@ }, { "question": "Läderach", - "icon": "./assets/data/nsi/logos/laderach-dbe1d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laderach-dbe1d4.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409378,7 +409735,7 @@ }, { "question": "Laura Secord", - "icon": "./assets/data/nsi/logos/laurasecord-a30910.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laurasecord-a30910.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409394,7 +409751,7 @@ }, { "question": "Le Chocolat Alain Ducasse", - "icon": "./assets/data/nsi/logos/lechocolatalainducasse-ad9b7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechocolatalainducasse-ad9b7e.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409410,7 +409767,7 @@ }, { "question": "Leonidas", - "icon": "./assets/data/nsi/logos/leonidas-dbe1d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leonidas-dbe1d4.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409426,7 +409783,7 @@ }, { "question": "Lindt", - "icon": "./assets/data/nsi/logos/lindt-dbe1d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lindt-dbe1d4.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409442,7 +409799,7 @@ }, { "question": "Neuhaus", - "icon": "./assets/data/nsi/logos/neuhaus-04c57d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/neuhaus-04c57d.png", "osmTags": { "and": [ "shop=chocolate", @@ -409458,7 +409815,7 @@ }, { "question": "Purdys Chocolatier", - "icon": "./assets/data/nsi/logos/purdyschocolatier-a30910.png", + "icon": "https://data.mapcomplete.org/nsi//logos/purdyschocolatier-a30910.png", "osmTags": { "and": [ "shop=chocolate", @@ -409474,7 +409831,7 @@ }, { "question": "Voisin", - "icon": "./assets/data/nsi/logos/voisin-b0e734.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/voisin-b0e734.jpg", "osmTags": { "and": [ "shop=chocolate", @@ -409490,7 +409847,7 @@ }, { "question": "& Other Stories", - "icon": "./assets/data/nsi/logos/andotherstories-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andotherstories-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -409507,7 +409864,7 @@ }, { "question": "361度", - "icon": "./assets/data/nsi/logos/04f53b-88aa58.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/04f53b-88aa58.svg", "osmTags": { "and": [ "shop=clothes", @@ -409527,7 +409884,7 @@ }, { "question": "47 Street", - "icon": "./assets/data/nsi/logos/47street-3c23f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/47street-3c23f6.jpg", "osmTags": { "and": [ "shop=clothes", @@ -409543,7 +409900,7 @@ }, { "question": "6IXTY8IGHT", - "icon": "./assets/data/nsi/logos/6ixty8ight-7905dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/6ixty8ight-7905dc.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -409560,7 +409917,7 @@ }, { "question": "7 For All Mankind", - "icon": "./assets/data/nsi/logos/7forallmankind-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7forallmankind-0615dc.jpg", "osmTags": { "and": [ "clothes=denim", @@ -409577,7 +409934,7 @@ }, { "question": "8 Seconds", - "icon": "./assets/data/nsi/logos/8seconds-d098b5.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/8seconds-d098b5.gif", "osmTags": { "and": [ "shop=clothes", @@ -409597,7 +409954,7 @@ }, { "question": "À l'Aise Breizh", - "icon": "./assets/data/nsi/logos/alaisebreizh-31ef59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alaisebreizh-31ef59.png", "osmTags": { "and": [ "shop=clothes", @@ -409613,7 +409970,7 @@ }, { "question": "A.P.C.", - "icon": "./assets/data/nsi/logos/apc-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apc-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -409629,7 +409986,7 @@ }, { "question": "Abercrombie & Fitch", - "icon": "./assets/data/nsi/logos/abercrombieandfitch-c53b2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abercrombieandfitch-c53b2f.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -409646,7 +410003,7 @@ }, { "question": "Abercrombie Kids", - "icon": "./assets/data/nsi/logos/abercrombiekids-a75dc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abercrombiekids-a75dc9.jpg", "osmTags": { "and": [ "clothes=children", @@ -409663,7 +410020,7 @@ }, { "question": "Ackermans", - "icon": "./assets/data/nsi/logos/ackermans-c712e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ackermans-c712e2.jpg", "osmTags": { "and": [ "shop=clothes", @@ -409679,7 +410036,7 @@ }, { "question": "ad-lib", - "icon": "./assets/data/nsi/logos/adlib-33ce1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adlib-33ce1a.png", "osmTags": { "and": [ "clothes=men;women", @@ -409698,7 +410055,7 @@ }, { "question": "Addition Elle", - "icon": "./assets/data/nsi/logos/additionelle-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/additionelle-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -409715,7 +410072,7 @@ }, { "question": "Adidas Originals", - "icon": "./assets/data/nsi/logos/adidasoriginals-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/adidasoriginals-3937bd.svg", "osmTags": { "and": [ "clothes=sports", @@ -409732,7 +410089,7 @@ }, { "question": "Adler", - "icon": "./assets/data/nsi/logos/adler-108da6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adler-108da6.png", "osmTags": { "and": [ "shop=clothes", @@ -409748,7 +410105,7 @@ }, { "question": "Aerie", - "icon": "./assets/data/nsi/logos/aerie-0e6d3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aerie-0e6d3d.jpg", "osmTags": { "and": [ "clothes=women", @@ -409765,7 +410122,7 @@ }, { "question": "Aeropostale", - "icon": "./assets/data/nsi/logos/aeropostale-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeropostale-3937bd.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -409782,7 +410139,7 @@ }, { "question": "Agent Provocateur", - "icon": "./assets/data/nsi/logos/agentprovocateur-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agentprovocateur-3937bd.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -409799,7 +410156,7 @@ }, { "question": "Agnès B.", - "icon": "./assets/data/nsi/logos/agnesb-bcfdbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agnesb-bcfdbd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -409815,7 +410172,7 @@ }, { "question": "Aigle", - "icon": "./assets/data/nsi/logos/aigle-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aigle-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -409831,7 +410188,7 @@ }, { "question": "Åland", - "icon": "./assets/data/nsi/logos/aland-d098b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aland-d098b5.png", "osmTags": { "and": [ "shop=clothes", @@ -409851,7 +410208,7 @@ }, { "question": "Alcott", - "icon": "./assets/data/nsi/logos/alcott-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alcott-d72191.jpg", "osmTags": { "and": [ "shop=clothes", @@ -409867,7 +410224,7 @@ }, { "question": "Alexander McQueen", - "icon": "./assets/data/nsi/logos/alexandermcqueen-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alexandermcqueen-3937bd.svg", "osmTags": { "and": [ "shop=clothes", @@ -409883,7 +410240,7 @@ }, { "question": "Alia N TanJay", - "icon": "./assets/data/nsi/logos/aliantanjay-9e1367.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aliantanjay-9e1367.png", "osmTags": { "and": [ "clothes=women", @@ -409900,7 +410257,7 @@ }, { "question": "Alice + Olivia", - "icon": "./assets/data/nsi/logos/aliceolivia-b99316.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aliceolivia-b99316.jpg", "osmTags": { "and": [ "clothes=women", @@ -409917,7 +410274,7 @@ }, { "question": "Allen Solly", - "icon": "./assets/data/nsi/logos/allensolly-f8e8b1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allensolly-f8e8b1.png", "osmTags": { "and": [ "shop=clothes", @@ -409933,7 +410290,7 @@ }, { "question": "AllSaints", - "icon": "./assets/data/nsi/logos/allsaints-5c335f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allsaints-5c335f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -409949,7 +410306,7 @@ }, { "question": "Ally Fashion", - "icon": "./assets/data/nsi/logos/allyfashion-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allyfashion-392c8b.jpg", "osmTags": { "and": [ "clothes=women", @@ -409966,7 +410323,7 @@ }, { "question": "Alpine Pro", - "icon": "./assets/data/nsi/logos/alpinepro-767de9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alpinepro-767de9.png", "osmTags": { "and": [ "clothes=sports", @@ -409983,7 +410340,7 @@ }, { "question": "Altar'd State", - "icon": "./assets/data/nsi/logos/altardstate-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altardstate-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410013,7 +410370,7 @@ }, { "question": "America Today", - "icon": "./assets/data/nsi/logos/americatoday-2d6bb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americatoday-2d6bb0.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410029,7 +410386,7 @@ }, { "question": "American Eagle Outfitters", - "icon": "./assets/data/nsi/logos/americaneagleoutfitters-0e6d3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americaneagleoutfitters-0e6d3d.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -410047,7 +410404,7 @@ }, { "question": "American Vintage", - "icon": "./assets/data/nsi/logos/americanvintage-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americanvintage-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410077,7 +410434,7 @@ }, { "question": "Anabel Arto", - "icon": "./assets/data/nsi/logos/anabelarto-107191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anabelarto-107191.png", "osmTags": { "and": [ "clothes=underwear", @@ -410094,7 +410451,7 @@ }, { "question": "Anatomie", - "icon": "./assets/data/nsi/logos/anatomie-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anatomie-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410110,7 +410467,7 @@ }, { "question": "Ann Taylor", - "icon": "./assets/data/nsi/logos/anntaylor-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anntaylor-0615dc.jpg", "osmTags": { "and": [ "clothes=women", @@ -410127,7 +410484,7 @@ }, { "question": "Anna van Toor", - "icon": "./assets/data/nsi/logos/annavantoor-91c4cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/annavantoor-91c4cd.jpg", "osmTags": { "and": [ "clothes=women", @@ -410144,7 +410501,7 @@ }, { "question": "Anson's", - "icon": "./assets/data/nsi/logos/ansons-74806d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ansons-74806d.png", "osmTags": { "and": [ "clothes=men", @@ -410161,7 +410518,7 @@ }, { "question": "Anthropologie", - "icon": "./assets/data/nsi/logos/anthropologie-ac779b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anthropologie-ac779b.jpg", "osmTags": { "and": [ "clothes=women", @@ -410178,7 +410535,7 @@ }, { "question": "Antoine et Lili", - "icon": "./assets/data/nsi/logos/antoineetlili-9da203.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/antoineetlili-9da203.svg", "osmTags": { "and": [ "clothes=women", @@ -410195,7 +410552,7 @@ }, { "question": "Antonelle", - "icon": "./assets/data/nsi/logos/antonelle-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/antonelle-90f7b7.jpg", "osmTags": { "and": [ "clothes=women", @@ -410212,7 +410569,7 @@ }, { "question": "AOKI", - "icon": "./assets/data/nsi/logos/aoki-85f881.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aoki-85f881.png", "osmTags": { "and": [ "clothes=men", @@ -410231,7 +410588,7 @@ }, { "question": "Aramis", - "icon": "./assets/data/nsi/logos/aramis-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aramis-c7d1e1.jpg", "osmTags": { "and": [ "clothes=men", @@ -410248,7 +410605,7 @@ }, { "question": "Arc'teryx", - "icon": "./assets/data/nsi/logos/arcteryx-ac779b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arcteryx-ac779b.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -410265,7 +410622,7 @@ }, { "question": "Ardene", - "icon": "./assets/data/nsi/logos/ardene-d1f154.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ardene-d1f154.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410281,7 +410638,7 @@ }, { "question": "Aritzia", - "icon": "./assets/data/nsi/logos/aritzia-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aritzia-0615dc.jpg", "osmTags": { "and": [ "clothes=women", @@ -410298,7 +410655,7 @@ }, { "question": "Armand Thiery", - "icon": "./assets/data/nsi/logos/armandthiery-f2b18a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armandthiery-f2b18a.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410314,7 +410671,7 @@ }, { "question": "Armani Exchange", - "icon": "./assets/data/nsi/logos/armaniexchange-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armaniexchange-3937bd.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -410331,7 +410688,7 @@ }, { "question": "Armor Lux", - "icon": "./assets/data/nsi/logos/armorlux-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armorlux-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410347,7 +410704,7 @@ }, { "question": "Arthur", - "icon": "./assets/data/nsi/logos/arthur-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arthur-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410363,7 +410720,7 @@ }, { "question": "AS Colour", - "icon": "./assets/data/nsi/logos/ascolour-daf281.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ascolour-daf281.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410379,7 +410736,7 @@ }, { "question": "Athleta", - "icon": "./assets/data/nsi/logos/athleta-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/athleta-0615dc.jpg", "osmTags": { "and": [ "clothes=women", @@ -410396,7 +410753,7 @@ }, { "question": "Atmosphere", - "icon": "./assets/data/nsi/logos/atmosphere-7cc878.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atmosphere-7cc878.jpg", "osmTags": { "and": [ "clothes=outdoor", @@ -410413,7 +410770,7 @@ }, { "question": "Aubade", - "icon": "./assets/data/nsi/logos/aubade-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aubade-3937bd.png", "osmTags": { "and": [ "clothes=underwear", @@ -410430,7 +410787,7 @@ }, { "question": "Avenue", - "icon": "./assets/data/nsi/logos/avenue-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avenue-0a21d9.png", "osmTags": { "and": [ "clothes=women;oversize", @@ -410447,7 +410804,7 @@ }, { "question": "AW LAB", - "icon": "./assets/data/nsi/logos/awlab-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/awlab-3937bd.jpg", "osmTags": { "and": [ "clothes=sports", @@ -410464,7 +410821,7 @@ }, { "question": "AWG-Modecenter", - "icon": "./assets/data/nsi/logos/awgmodecenter-b44380.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/awgmodecenter-b44380.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410481,7 +410838,7 @@ }, { "question": "Ba&sh", - "icon": "./assets/data/nsi/logos/baandsh-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baandsh-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -410498,7 +410855,7 @@ }, { "question": "babyGap", - "icon": "./assets/data/nsi/logos/babygap-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/babygap-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410514,7 +410871,7 @@ }, { "question": "BadRhino", - "icon": "./assets/data/nsi/logos/badrhino-94f7c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/badrhino-94f7c8.jpg", "osmTags": { "and": [ "clothes=men", @@ -410531,7 +410888,7 @@ }, { "question": "Balenciaga", - "icon": "./assets/data/nsi/logos/balenciaga-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/balenciaga-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -410547,7 +410904,7 @@ }, { "question": "Baleno", - "icon": "./assets/data/nsi/logos/baleno-016f95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baleno-016f95.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410565,7 +410922,7 @@ }, { "question": "Banana Moon", - "icon": "./assets/data/nsi/logos/bananamoon-6db462.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bananamoon-6db462.jpg", "osmTags": { "and": [ "clothes=women", @@ -410582,7 +410939,7 @@ }, { "question": "Banana Republic", - "icon": "./assets/data/nsi/logos/bananarepublic-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bananarepublic-3937bd.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -410599,7 +410956,7 @@ }, { "question": "Bandi", - "icon": "./assets/data/nsi/logos/bandi-111ecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandi-111ecf.jpg", "osmTags": { "and": [ "clothes=suits", @@ -410616,7 +410973,7 @@ }, { "question": "Barbour", - "icon": "./assets/data/nsi/logos/barbour-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barbour-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410632,7 +410989,7 @@ }, { "question": "Beams", - "icon": "./assets/data/nsi/logos/beams-6cd39e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beams-6cd39e.png", "osmTags": { "and": [ "shop=clothes", @@ -410652,7 +411009,7 @@ }, { "question": "befree", - "icon": "./assets/data/nsi/logos/befree-7b6907.png", + "icon": "https://data.mapcomplete.org/nsi//logos/befree-7b6907.png", "osmTags": { "and": [ "shop=clothes", @@ -410682,7 +411039,7 @@ }, { "question": "Ben Sherman", - "icon": "./assets/data/nsi/logos/bensherman-cad47b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bensherman-cad47b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410698,7 +411055,7 @@ }, { "question": "Bench (Philippines)", - "icon": "./assets/data/nsi/logos/bench-08e127.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bench-08e127.svg", "osmTags": { "and": [ "shop=clothes", @@ -410714,7 +411071,7 @@ }, { "question": "Bench Body", - "icon": "./assets/data/nsi/logos/benchbody-08e127.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/benchbody-08e127.svg", "osmTags": { "and": [ "clothes=underwear", @@ -410731,7 +411088,7 @@ }, { "question": "Bench.", - "icon": "./assets/data/nsi/logos/bench-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bench-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -410747,7 +411104,7 @@ }, { "question": "Bepon", - "icon": "./assets/data/nsi/logos/bepon-111ecf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bepon-111ecf.png", "osmTags": { "and": [ "clothes=underwear", @@ -410764,7 +411121,7 @@ }, { "question": "Bershka", - "icon": "./assets/data/nsi/logos/bershka-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bershka-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410780,7 +411137,7 @@ }, { "question": "Best & Less", - "icon": "./assets/data/nsi/logos/bestandless-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bestandless-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410796,7 +411153,7 @@ }, { "question": "Betty Barclay", - "icon": "./assets/data/nsi/logos/bettybarclay-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bettybarclay-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410827,7 +411184,7 @@ }, { "question": "Big Star", - "icon": "./assets/data/nsi/logos/bigstar-de8f01.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigstar-de8f01.svg", "osmTags": { "and": [ "shop=clothes", @@ -410843,7 +411200,7 @@ }, { "question": "Bik Bok", - "icon": "./assets/data/nsi/logos/bikbok-0779c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikbok-0779c3.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410859,7 +411216,7 @@ }, { "question": "Bikini Village", - "icon": "./assets/data/nsi/logos/bikinivillage-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikinivillage-9e1367.jpg", "osmTags": { "and": [ "clothes=swimwear", @@ -410876,7 +411233,7 @@ }, { "question": "Billabong", - "icon": "./assets/data/nsi/logos/billabong-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/billabong-3937bd.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -410893,7 +411250,7 @@ }, { "question": "Bimba y Lola", - "icon": "./assets/data/nsi/logos/bimbaylola-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bimbaylola-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -410910,7 +411267,7 @@ }, { "question": "Bizzbee", - "icon": "./assets/data/nsi/logos/bizzbee-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bizzbee-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410926,7 +411283,7 @@ }, { "question": "Blackberrys", - "icon": "./assets/data/nsi/logos/blackberrys-f8e8b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackberrys-f8e8b1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410942,7 +411299,7 @@ }, { "question": "Blackstore", - "icon": "./assets/data/nsi/logos/blackstore-4a3e29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackstore-4a3e29.jpg", "osmTags": { "and": [ "shop=clothes", @@ -410958,7 +411315,7 @@ }, { "question": "Blažek", - "icon": "./assets/data/nsi/logos/blazek-111ecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blazek-111ecf.jpg", "osmTags": { "and": [ "clothes=suits", @@ -410975,7 +411332,7 @@ }, { "question": "Blue Illusion", - "icon": "./assets/data/nsi/logos/blueillusion-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blueillusion-2bb477.jpg", "osmTags": { "and": [ "clothes=women", @@ -410992,7 +411349,7 @@ }, { "question": "Blue Inc", - "icon": "./assets/data/nsi/logos/blueinc-7b1694.png", + "icon": "https://data.mapcomplete.org/nsi//logos/blueinc-7b1694.png", "osmTags": { "and": [ "clothes=men", @@ -411009,7 +411366,7 @@ }, { "question": "Blue Tomato", - "icon": "./assets/data/nsi/logos/bluetomato-fa8f79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluetomato-fa8f79.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411025,7 +411382,7 @@ }, { "question": "Bluenotes", - "icon": "./assets/data/nsi/logos/bluenotes-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluenotes-9e1367.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411056,7 +411413,7 @@ }, { "question": "Bob's Stores", - "icon": "./assets/data/nsi/logos/bobsstores-acc69c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobsstores-acc69c.svg", "osmTags": { "and": [ "clothes=men;women;children", @@ -411088,7 +411445,7 @@ }, { "question": "Body Glove", - "icon": "./assets/data/nsi/logos/bodyglove-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodyglove-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411104,7 +411461,7 @@ }, { "question": "BOGGI Milano", - "icon": "./assets/data/nsi/logos/boggimilano-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boggimilano-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411120,7 +411477,7 @@ }, { "question": "Bogner", - "icon": "./assets/data/nsi/logos/bogner-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bogner-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411136,7 +411493,7 @@ }, { "question": "Bonds", - "icon": "./assets/data/nsi/logos/bonds-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonds-2bb477.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411152,7 +411509,7 @@ }, { "question": "BONITA", - "icon": "./assets/data/nsi/logos/bonita-51c18f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bonita-51c18f.png", "osmTags": { "and": [ "clothes=women", @@ -411169,7 +411526,7 @@ }, { "question": "BONITA men", - "icon": "./assets/data/nsi/logos/bonitamen-51c18f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bonitamen-51c18f.png", "osmTags": { "and": [ "clothes=men", @@ -411186,7 +411543,7 @@ }, { "question": "Bonmarché", - "icon": "./assets/data/nsi/logos/bonmarche-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonmarche-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411202,7 +411559,7 @@ }, { "question": "Bonne Gueule", - "icon": "./assets/data/nsi/logos/bonnegueule-90f7b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bonnegueule-90f7b7.png", "osmTags": { "and": [ "clothes=men", @@ -411219,7 +411576,7 @@ }, { "question": "Bonobo", - "icon": "./assets/data/nsi/logos/bonobo-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonobo-90f7b7.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -411236,7 +411593,7 @@ }, { "question": "Bonobos", - "icon": "./assets/data/nsi/logos/bonobos-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonobos-0a21d9.jpg", "osmTags": { "and": [ "clothes=men", @@ -411253,7 +411610,7 @@ }, { "question": "BonWorth", - "icon": "./assets/data/nsi/logos/bonworth-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonworth-0a21d9.jpg", "osmTags": { "and": [ "clothes=women", @@ -411270,7 +411627,7 @@ }, { "question": "Boot Barn", - "icon": "./assets/data/nsi/logos/bootbarn-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bootbarn-0a21d9.jpg", "osmTags": { "and": [ "clothes=western", @@ -411287,7 +411644,7 @@ }, { "question": "Bootlegger", - "icon": "./assets/data/nsi/logos/bootlegger-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bootlegger-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -411304,7 +411661,7 @@ }, { "question": "Bosco", - "icon": "./assets/data/nsi/logos/bosco-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bosco-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411320,7 +411677,7 @@ }, { "question": "bossini", - "icon": "./assets/data/nsi/logos/bossini-f4691e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bossini-f4691e.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411340,7 +411697,7 @@ }, { "question": "Boux Avenue", - "icon": "./assets/data/nsi/logos/bouxavenue-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bouxavenue-7b1694.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -411357,7 +411714,7 @@ }, { "question": "Boyner", - "icon": "./assets/data/nsi/logos/boyner-86c702.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boyner-86c702.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411373,7 +411730,7 @@ }, { "question": "Brandy Melville", - "icon": "./assets/data/nsi/logos/brandymelville-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brandymelville-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -411390,7 +411747,7 @@ }, { "question": "Bras N Things", - "icon": "./assets/data/nsi/logos/brasnthings-24a002.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brasnthings-24a002.jpg", "osmTags": { "and": [ "clothes=women", @@ -411407,7 +411764,7 @@ }, { "question": "BRAX", - "icon": "./assets/data/nsi/logos/brax-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brax-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -411423,7 +411780,7 @@ }, { "question": "Bréal", - "icon": "./assets/data/nsi/logos/breal-90f7b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/breal-90f7b7.png", "osmTags": { "and": [ "clothes=women", @@ -411440,7 +411797,7 @@ }, { "question": "Breuninger", - "icon": "./assets/data/nsi/logos/breuninger-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/breuninger-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411456,7 +411813,7 @@ }, { "question": "Brice", - "icon": "./assets/data/nsi/logos/brice-f2b18a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brice-f2b18a.png", "osmTags": { "and": [ "shop=clothes", @@ -411472,7 +411829,7 @@ }, { "question": "Bristol", - "icon": "./assets/data/nsi/logos/bristol-5eeeb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristol-5eeeb4.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411488,7 +411845,7 @@ }, { "question": "Brooks Brothers", - "icon": "./assets/data/nsi/logos/brooksbrothers-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brooksbrothers-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411504,7 +411861,7 @@ }, { "question": "Brooksfield", - "icon": "./assets/data/nsi/logos/brooksfield-373ae7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brooksfield-373ae7.jpg", "osmTags": { "and": [ "clothes=men", @@ -411521,7 +411878,7 @@ }, { "question": "Brothers", - "icon": "./assets/data/nsi/logos/brothers-0779c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brothers-0779c3.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411537,7 +411894,7 @@ }, { "question": "Brunello Cucinelli", - "icon": "./assets/data/nsi/logos/brunellocucinelli-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brunellocucinelli-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411553,7 +411910,7 @@ }, { "question": "bruno banani", - "icon": "./assets/data/nsi/logos/brunobanani-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brunobanani-74806d.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -411570,7 +411927,7 @@ }, { "question": "BSB Fashion", - "icon": "./assets/data/nsi/logos/bsbfashion-3443a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bsbfashion-3443a7.jpg", "osmTags": { "and": [ "clothes=women", @@ -411587,7 +411944,7 @@ }, { "question": "Buck Mason", - "icon": "./assets/data/nsi/logos/buckmason-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buckmason-0a21d9.jpg", "osmTags": { "and": [ "clothes=men", @@ -411604,7 +411961,7 @@ }, { "question": "Buckle", - "icon": "./assets/data/nsi/logos/buckle-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buckle-0a21d9.jpg", "osmTags": { "and": [ "clothes=men;women;children", @@ -411621,7 +411978,7 @@ }, { "question": "Budmil", - "icon": "./assets/data/nsi/logos/budmil-31c5a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budmil-31c5a7.jpg", "osmTags": { "and": [ "clothes=men;women;sports", @@ -411638,7 +411995,7 @@ }, { "question": "Buffalo Exchange", - "icon": "./assets/data/nsi/logos/buffaloexchange-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buffaloexchange-0a21d9.jpg", "osmTags": { "and": [ "second_hand=only", @@ -411655,7 +412012,7 @@ }, { "question": "bugatti", - "icon": "./assets/data/nsi/logos/bugatti-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bugatti-3937bd.png", "osmTags": { "and": [ "clothes=men;women", @@ -411672,7 +412029,7 @@ }, { "question": "Burberry", - "icon": "./assets/data/nsi/logos/burberry-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burberry-3937bd.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -411689,7 +412046,7 @@ }, { "question": "Burton", - "icon": "./assets/data/nsi/logos/burton-9a2c4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burton-9a2c4a.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411705,7 +412062,7 @@ }, { "question": "Bushman", - "icon": "./assets/data/nsi/logos/bushman-111ecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bushman-111ecf.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411721,7 +412078,7 @@ }, { "question": "C&A", - "icon": "./assets/data/nsi/logos/canda-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canda-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411737,7 +412094,7 @@ }, { "question": "Cache Cache", - "icon": "./assets/data/nsi/logos/cachecache-ecfb3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cachecache-ecfb3e.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411753,7 +412110,7 @@ }, { "question": "Café Coton", - "icon": "./assets/data/nsi/logos/cafecoton-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafecoton-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411769,7 +412126,7 @@ }, { "question": "CALIDA", - "icon": "./assets/data/nsi/logos/calida-758685.png", + "icon": "https://data.mapcomplete.org/nsi//logos/calida-758685.png", "osmTags": { "and": [ "shop=clothes", @@ -411785,7 +412142,7 @@ }, { "question": "Calliope", - "icon": "./assets/data/nsi/logos/calliope-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calliope-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411801,7 +412158,7 @@ }, { "question": "Calvin Klein", - "icon": "./assets/data/nsi/logos/calvinklein-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calvinklein-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411817,7 +412174,7 @@ }, { "question": "Calzedonia", - "icon": "./assets/data/nsi/logos/calzedonia-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calzedonia-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411833,7 +412190,7 @@ }, { "question": "Camaïeu", - "icon": "./assets/data/nsi/logos/camaieu-1cb4e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/camaieu-1cb4e7.png", "osmTags": { "and": [ "shop=clothes", @@ -411863,7 +412220,7 @@ }, { "question": "Camisaria Colombo", - "icon": "./assets/data/nsi/logos/camisariacolombo-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camisariacolombo-c7d1e1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411893,7 +412250,7 @@ }, { "question": "Camp David", - "icon": "./assets/data/nsi/logos/campdavid-0a34da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/campdavid-0a34da.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411909,7 +412266,7 @@ }, { "question": "Canada Goose", - "icon": "./assets/data/nsi/logos/canadagoose-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadagoose-3937bd.jpg", "osmTags": { "and": [ "clothes=outdoor", @@ -411926,7 +412283,7 @@ }, { "question": "Canali", - "icon": "./assets/data/nsi/logos/canali-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canali-3937bd.jpg", "osmTags": { "and": [ "clothes=men", @@ -411943,7 +412300,7 @@ }, { "question": "Carhartt", - "icon": "./assets/data/nsi/logos/carhartt-65f908.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carhartt-65f908.jpg", "osmTags": { "and": [ "clothes=workwear", @@ -411960,7 +412317,7 @@ }, { "question": "Carhartt Work in Progress", - "icon": "./assets/data/nsi/logos/carharttworkinprogress-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carharttworkinprogress-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411976,7 +412333,7 @@ }, { "question": "Carlings", - "icon": "./assets/data/nsi/logos/carlings-89d713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carlings-89d713.jpg", "osmTags": { "and": [ "shop=clothes", @@ -411992,7 +412349,7 @@ }, { "question": "Caroll", - "icon": "./assets/data/nsi/logos/caroll-210777.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caroll-210777.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412008,7 +412365,7 @@ }, { "question": "Carry", - "icon": "./assets/data/nsi/logos/carry-196c99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carry-196c99.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412024,7 +412381,7 @@ }, { "question": "Carter's", - "icon": "./assets/data/nsi/logos/carters-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carters-3937bd.jpg", "osmTags": { "and": [ "clothes=babies;children", @@ -412055,7 +412412,7 @@ }, { "question": "Castro", - "icon": "./assets/data/nsi/logos/castro-e991b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/castro-e991b5.jpg", "osmTags": { "and": [ "clothes=women;men;children", @@ -412075,7 +412432,7 @@ }, { "question": "Catherines", - "icon": "./assets/data/nsi/logos/catherines-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/catherines-0a21d9.jpg", "osmTags": { "and": [ "clothes=oversize;women", @@ -412092,7 +412449,7 @@ }, { "question": "Catimini", - "icon": "./assets/data/nsi/logos/catimini-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/catimini-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -412112,13 +412469,13 @@ "osmTags": { "and": [ "clothes=women", - "official_name=Cato Fashions", "shop=clothes", { "or": [ "brand=Cato", "brand:wikidata=Q16956136", - "name=Cato" + "name=Cato", + "official_name=Cato Fashions" ] } ] @@ -412126,7 +412483,7 @@ }, { "question": "Cecil", - "icon": "./assets/data/nsi/logos/cecil-bfd647.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cecil-bfd647.png", "osmTags": { "and": [ "shop=clothes", @@ -412142,7 +412499,7 @@ }, { "question": "Celine", - "icon": "./assets/data/nsi/logos/celine-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celine-3937bd.jpg", "osmTags": { "and": [ "clothes=luxury", @@ -412159,7 +412516,7 @@ }, { "question": "Celio", - "icon": "./assets/data/nsi/logos/celio-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celio-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412175,7 +412532,7 @@ }, { "question": "Champion", - "icon": "./assets/data/nsi/logos/champion-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/champion-3937bd.png", "osmTags": { "and": [ "clothes=sports", @@ -412192,7 +412549,7 @@ }, { "question": "Chanel", - "icon": "./assets/data/nsi/logos/chanel-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chanel-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412222,7 +412579,7 @@ }, { "question": "Charles Vögele", - "icon": "./assets/data/nsi/logos/charlesvogele-900aa6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/charlesvogele-900aa6.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412239,7 +412596,7 @@ }, { "question": "Charlotte Russe", - "icon": "./assets/data/nsi/logos/charlotterusse-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/charlotterusse-0a21d9.png", "osmTags": { "and": [ "shop=clothes", @@ -412269,7 +412626,7 @@ }, { "question": "Chevignon", - "icon": "./assets/data/nsi/logos/chevignon-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chevignon-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412285,7 +412642,7 @@ }, { "question": "Chico's", - "icon": "./assets/data/nsi/logos/chicos-d97106.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicos-d97106.svg", "osmTags": { "and": [ "shop=clothes", @@ -412301,7 +412658,7 @@ }, { "question": "Chico's Off the Rack", - "icon": "./assets/data/nsi/logos/chicosofftherack-d97106.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicosofftherack-d97106.svg", "osmTags": { "and": [ "shop=clothes", @@ -412317,7 +412674,7 @@ }, { "question": "Chicorée", - "icon": "./assets/data/nsi/logos/chicoree-fed098.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicoree-fed098.svg", "osmTags": { "and": [ "shop=clothes", @@ -412333,7 +412690,7 @@ }, { "question": "Chloé", - "icon": "./assets/data/nsi/logos/chloe-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chloe-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -412350,7 +412707,7 @@ }, { "question": "Christine Laure", - "icon": "./assets/data/nsi/logos/christinelaure-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/christinelaure-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412366,7 +412723,7 @@ }, { "question": "Christopher & Banks", - "icon": "./assets/data/nsi/logos/christopherandbanks-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/christopherandbanks-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412382,7 +412739,7 @@ }, { "question": "Citi Trends", - "icon": "./assets/data/nsi/logos/cititrends-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cititrends-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412398,16 +412755,16 @@ }, { "question": "City Beach", - "icon": "./assets/data/nsi/logos/citybeach-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citybeach-392c8b.jpg", "osmTags": { "and": [ - "official_name=City Beach Australia", "shop=clothes", { "or": [ "brand=City Beach", "brand:wikidata=Q16958619", - "name=City Beach" + "name=City Beach", + "official_name=City Beach Australia" ] } ] @@ -412430,7 +412787,7 @@ }, { "question": "City Gear", - "icon": "./assets/data/nsi/logos/citygear-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citygear-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412446,7 +412803,7 @@ }, { "question": "Classic All Blacks", - "icon": "./assets/data/nsi/logos/classicallblacks-d050c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/classicallblacks-d050c6.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412462,7 +412819,7 @@ }, { "question": "Claudia Sträter", - "icon": "./assets/data/nsi/logos/claudiastrater-5eeeb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/claudiastrater-5eeeb4.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412478,7 +412835,7 @@ }, { "question": "Claudie Pierlot", - "icon": "./assets/data/nsi/logos/claudiepierlot-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/claudiepierlot-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -412495,7 +412852,7 @@ }, { "question": "Cleo", - "icon": "./assets/data/nsi/logos/cleo-9e1367.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cleo-9e1367.png", "osmTags": { "and": [ "clothes=women", @@ -412512,7 +412869,7 @@ }, { "question": "Closed (fashion label)", - "icon": "./assets/data/nsi/logos/closed-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/closed-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412528,7 +412885,7 @@ }, { "question": "Clothing Junction", - "icon": "./assets/data/nsi/logos/clothingjunction-bd328b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clothingjunction-bd328b.png", "osmTags": { "and": [ "shop=clothes", @@ -412544,7 +412901,7 @@ }, { "question": "Club Monaco", - "icon": "./assets/data/nsi/logos/clubmonaco-ac779b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clubmonaco-ac779b.png", "osmTags": { "and": [ "shop=clothes", @@ -412560,7 +412917,7 @@ }, { "question": "Coccodrillo", - "icon": "./assets/data/nsi/logos/coccodrillo-571709.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coccodrillo-571709.jpg", "osmTags": { "and": [ "clothes=children", @@ -412577,7 +412934,7 @@ }, { "question": "Colcci", - "icon": "./assets/data/nsi/logos/colcci-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colcci-c7d1e1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412593,7 +412950,7 @@ }, { "question": "Colin's", - "icon": "./assets/data/nsi/logos/colins-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colins-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412609,7 +412966,7 @@ }, { "question": "Colloseum", - "icon": "./assets/data/nsi/logos/colloseum-3648e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colloseum-3648e4.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412625,17 +412982,17 @@ }, { "question": "Columbia", - "icon": "./assets/data/nsi/logos/columbia-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/columbia-3937bd.jpg", "osmTags": { "and": [ "clothes=outdoor", - "official_name=Columbia Sportswear", "shop=clothes", { "or": [ "brand=Columbia", "brand:wikidata=Q1112588", - "name=Columbia" + "name=Columbia", + "official_name=Columbia Sportswear" ] } ] @@ -412643,7 +413000,7 @@ }, { "question": "comma", - "icon": "./assets/data/nsi/logos/comma-9aade2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comma-9aade2.jpg", "osmTags": { "and": [ "clothes=women", @@ -412660,7 +413017,7 @@ }, { "question": "Comptoir des Cotonniers", - "icon": "./assets/data/nsi/logos/comptoirdescotonniers-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comptoirdescotonniers-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412676,7 +413033,7 @@ }, { "question": "Conbipel", - "icon": "./assets/data/nsi/logos/conbipel-d72191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/conbipel-d72191.png", "osmTags": { "and": [ "shop=clothes", @@ -412692,7 +413049,7 @@ }, { "question": "Connor", - "icon": "./assets/data/nsi/logos/connor-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/connor-392c8b.jpg", "osmTags": { "and": [ "clothes=men", @@ -412711,7 +413068,7 @@ }, { "question": "Contempo", - "icon": "./assets/data/nsi/logos/contempo-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/contempo-bd328b.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -412728,7 +413085,7 @@ }, { "question": "Cortefiel", - "icon": "./assets/data/nsi/logos/cortefiel-b8ad70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cortefiel-b8ad70.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412744,7 +413101,7 @@ }, { "question": "COS", - "icon": "./assets/data/nsi/logos/cos-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cos-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412760,7 +413117,7 @@ }, { "question": "Cotélac", - "icon": "./assets/data/nsi/logos/cotelac-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cotelac-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -412776,7 +413133,7 @@ }, { "question": "Cotton Club", - "icon": "./assets/data/nsi/logos/cottonclub-91c4cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cottonclub-91c4cd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412792,7 +413149,7 @@ }, { "question": "Cotton On", - "icon": "./assets/data/nsi/logos/cottonon-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cottonon-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -412824,7 +413181,7 @@ }, { "question": "Country Road", - "icon": "./assets/data/nsi/logos/countryroad-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/countryroad-2bb477.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412840,7 +413197,7 @@ }, { "question": "Crew Clothing Company", - "icon": "./assets/data/nsi/logos/crewclothingcompany-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crewclothingcompany-7b1694.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -412857,7 +413214,7 @@ }, { "question": "Cropp", - "icon": "./assets/data/nsi/logos/cropp-f09482.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cropp-f09482.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412887,7 +413244,7 @@ }, { "question": "Cubus", - "icon": "./assets/data/nsi/logos/cubus-a91a7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cubus-a91a7f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412903,7 +413260,7 @@ }, { "question": "Cuidado con el Perro", - "icon": "./assets/data/nsi/logos/cuidadoconelperro-c4029f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cuidadoconelperro-c4029f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412919,7 +413276,7 @@ }, { "question": "Cycle Gear", - "icon": "./assets/data/nsi/logos/cyclegear-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cyclegear-0a21d9.png", "osmTags": { "and": [ "clothes=motorcycle", @@ -412936,7 +413293,7 @@ }, { "question": "Cyrillus", - "icon": "./assets/data/nsi/logos/cyrillus-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyrillus-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412952,7 +413309,7 @@ }, { "question": "Đak", - "icon": "./assets/data/nsi/logos/dak-b30b0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dak-b30b0f.jpg", "osmTags": { "and": [ "clothes=sports", @@ -412972,7 +413329,7 @@ }, { "question": "Damart", - "icon": "./assets/data/nsi/logos/damart-ab5608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/damart-ab5608.jpg", "osmTags": { "and": [ "shop=clothes", @@ -412988,7 +413345,7 @@ }, { "question": "Dan John", - "icon": "./assets/data/nsi/logos/danjohn-0ef64a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/danjohn-0ef64a.jpg", "osmTags": { "and": [ "clothes=men", @@ -413005,7 +413362,7 @@ }, { "question": "Dangerfield", - "icon": "./assets/data/nsi/logos/dangerfield-2bb477.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dangerfield-2bb477.png", "osmTags": { "and": [ "shop=clothes", @@ -413021,7 +413378,7 @@ }, { "question": "Darjeeling", - "icon": "./assets/data/nsi/logos/darjeeling-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/darjeeling-90f7b7.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -413038,7 +413395,7 @@ }, { "question": "das macht SiNN", - "icon": "./assets/data/nsi/logos/dasmachtsinn-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dasmachtsinn-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413055,7 +413412,7 @@ }, { "question": "David's Bridal", - "icon": "./assets/data/nsi/logos/davidsbridal-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/davidsbridal-0615dc.jpg", "osmTags": { "and": [ "clothes=wedding", @@ -413088,7 +413445,7 @@ }, { "question": "Decimas", - "icon": "./assets/data/nsi/logos/decimas-51a3e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decimas-51a3e8.jpg", "osmTags": { "and": [ "clothes=sports", @@ -413105,7 +413462,7 @@ }, { "question": "DeFacto", - "icon": "./assets/data/nsi/logos/defacto-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/defacto-3937bd.svg", "osmTags": { "and": [ "shop=clothes", @@ -413121,7 +413478,7 @@ }, { "question": "Delta", - "icon": "./assets/data/nsi/logos/delta-e991b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/delta-e991b5.png", "osmTags": { "and": [ "shop=clothes", @@ -413139,7 +413496,7 @@ }, { "question": "Derimod", - "icon": "./assets/data/nsi/logos/derimod-25fd8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derimod-25fd8f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413155,7 +413512,7 @@ }, { "question": "Des Petits Hauts", - "icon": "./assets/data/nsi/logos/despetitshauts-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/despetitshauts-90f7b7.jpg", "osmTags": { "and": [ "clothes=women", @@ -413187,7 +413544,7 @@ }, { "question": "Desigual", - "icon": "./assets/data/nsi/logos/desigual-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/desigual-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413203,7 +413560,7 @@ }, { "question": "Destination Maternity", - "icon": "./assets/data/nsi/logos/destinationmaternity-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/destinationmaternity-0615dc.jpg", "osmTags": { "and": [ "clothes=maternity", @@ -413220,7 +413577,7 @@ }, { "question": "Devernois", - "icon": "./assets/data/nsi/logos/devernois-ab5608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devernois-ab5608.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413236,7 +413593,7 @@ }, { "question": "Devred", - "icon": "./assets/data/nsi/logos/devred-7d7aaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devred-7d7aaa.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413266,7 +413623,7 @@ }, { "question": "Diesel", - "icon": "./assets/data/nsi/logos/diesel-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/diesel-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -413282,7 +413639,7 @@ }, { "question": "Dim", - "icon": "./assets/data/nsi/logos/dim-90f7b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dim-90f7b7.png", "osmTags": { "and": [ "clothes=underwear", @@ -413299,7 +413656,7 @@ }, { "question": "Dior", - "icon": "./assets/data/nsi/logos/dior-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dior-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413315,7 +413672,7 @@ }, { "question": "Discovery Clothing Company", - "icon": "./assets/data/nsi/logos/discoveryclothingcompany-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/discoveryclothingcompany-0a21d9.png", "osmTags": { "and": [ "clothes=women", @@ -413348,7 +413705,7 @@ }, { "question": "DistriCenter", - "icon": "./assets/data/nsi/logos/districenter-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/districenter-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413364,7 +413721,7 @@ }, { "question": "Diverse", - "icon": "./assets/data/nsi/logos/diverse-196c99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diverse-196c99.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413380,7 +413737,7 @@ }, { "question": "DKNY", - "icon": "./assets/data/nsi/logos/dkny-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dkny-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413396,7 +413753,7 @@ }, { "question": "Dolce & Gabbana", - "icon": "./assets/data/nsi/logos/dolceandgabbana-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dolceandgabbana-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413412,7 +413769,7 @@ }, { "question": "Dolcezza", - "icon": "./assets/data/nsi/logos/dolcezza-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dolcezza-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -413429,7 +413786,7 @@ }, { "question": "Doppelgänger", - "icon": "./assets/data/nsi/logos/doppelganger-d72191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/doppelganger-d72191.png", "osmTags": { "and": [ "shop=clothes", @@ -413445,7 +413802,7 @@ }, { "question": "Dorothy Perkins", - "icon": "./assets/data/nsi/logos/dorothyperkins-907b92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorothyperkins-907b92.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413461,7 +413818,7 @@ }, { "question": "Dotti", - "icon": "./assets/data/nsi/logos/dotti-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dotti-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413491,7 +413848,7 @@ }, { "question": "Dress Barn", - "icon": "./assets/data/nsi/logos/dressbarn-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dressbarn-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -413508,7 +413865,7 @@ }, { "question": "Dressmann", - "icon": "./assets/data/nsi/logos/dressmann-89d713.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dressmann-89d713.png", "osmTags": { "and": [ "clothes=men", @@ -413525,7 +413882,7 @@ }, { "question": "DTLR", - "icon": "./assets/data/nsi/logos/dtlr-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dtlr-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413541,7 +413898,7 @@ }, { "question": "Du Pareil au Même", - "icon": "./assets/data/nsi/logos/dupareilaumeme-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dupareilaumeme-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -413571,7 +413928,7 @@ }, { "question": "Duluth Trading Company", - "icon": "./assets/data/nsi/logos/duluthtradingcompany-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duluthtradingcompany-0a21d9.jpg", "osmTags": { "and": [ "clothes=workwear", @@ -413588,7 +413945,7 @@ }, { "question": "Duna", - "icon": "./assets/data/nsi/logos/duna-e79eb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duna-e79eb2.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -413605,7 +413962,7 @@ }, { "question": "dunhill", - "icon": "./assets/data/nsi/logos/dunhill-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunhill-3937bd.svg", "osmTags": { "and": [ "clothes=men", @@ -413622,7 +413979,7 @@ }, { "question": "Dunns", - "icon": "./assets/data/nsi/logos/dunns-c712e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunns-c712e2.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413638,7 +413995,7 @@ }, { "question": "DXL Men's Apparel", - "icon": "./assets/data/nsi/logos/dxlmensapparel-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dxlmensapparel-0a21d9.jpg", "osmTags": { "and": [ "clothes=oversize;men", @@ -413656,7 +414013,7 @@ }, { "question": "Dynamite", - "icon": "./assets/data/nsi/logos/dynamite-aecc8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dynamite-aecc8a.png", "osmTags": { "and": [ "clothes=women", @@ -413673,7 +414030,7 @@ }, { "question": "E5 Mode", - "icon": "./assets/data/nsi/logos/e5mode-b561cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/e5mode-b561cd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413689,7 +414046,7 @@ }, { "question": "Earthbound Trading Company", - "icon": "./assets/data/nsi/logos/earthboundtradingcompany-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/earthboundtradingcompany-0a21d9.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -413706,7 +414063,7 @@ }, { "question": "EconomClass", - "icon": "./assets/data/nsi/logos/economclass-e79eb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/economclass-e79eb2.jpg", "osmTags": { "and": [ "second_hand=only", @@ -413737,7 +414094,7 @@ }, { "question": "Eddie Bauer", - "icon": "./assets/data/nsi/logos/eddiebauer-6680bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eddiebauer-6680bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413753,7 +414110,7 @@ }, { "question": "Eden Park", - "icon": "./assets/data/nsi/logos/edenpark-90f7b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edenpark-90f7b7.svg", "osmTags": { "and": [ "shop=clothes", @@ -413769,7 +414126,7 @@ }, { "question": "Edge Clothing", - "icon": "./assets/data/nsi/logos/edgeclothing-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edgeclothing-392c8b.jpg", "osmTags": { "and": [ "clothes=men;women;children", @@ -413786,7 +414143,7 @@ }, { "question": "EDWIN", - "icon": "./assets/data/nsi/logos/edwin-1596f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edwin-1596f5.jpg", "osmTags": { "and": [ "clothes=denim", @@ -413808,7 +414165,7 @@ }, { "question": "Eileen Fisher", - "icon": "./assets/data/nsi/logos/eileenfisher-0615dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eileenfisher-0615dc.png", "osmTags": { "and": [ "clothes=women", @@ -413825,7 +414182,7 @@ }, { "question": "El Ganso", - "icon": "./assets/data/nsi/logos/elganso-2c828f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elganso-2c828f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413841,7 +414198,7 @@ }, { "question": "Elena Mirò", - "icon": "./assets/data/nsi/logos/elenamiro-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elenamiro-3937bd.png", "osmTags": { "and": [ "clothes=women", @@ -413858,7 +414215,7 @@ }, { "question": "Elisabetta Franchi", - "icon": "./assets/data/nsi/logos/elisabettafranchi-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elisabettafranchi-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -413875,7 +414232,7 @@ }, { "question": "emilio adani", - "icon": "./assets/data/nsi/logos/emilioadani-96f120.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emilioadani-96f120.png", "osmTags": { "and": [ "clothes=men", @@ -413892,7 +414249,7 @@ }, { "question": "Emporio Armani", - "icon": "./assets/data/nsi/logos/emporioarmani-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emporioarmani-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413908,7 +414265,7 @@ }, { "question": "engbers", - "icon": "./assets/data/nsi/logos/engbers-96f120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engbers-96f120.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413924,7 +414281,7 @@ }, { "question": "Éric Bompard", - "icon": "./assets/data/nsi/logos/ericbompard-012392.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ericbompard-012392.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413940,7 +414297,7 @@ }, { "question": "Ernsting's family", - "icon": "./assets/data/nsi/logos/ernstingsfamily-96f120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ernstingsfamily-96f120.jpg", "osmTags": { "and": [ "shop=clothes", @@ -413956,7 +414313,7 @@ }, { "question": "Escada", - "icon": "./assets/data/nsi/logos/escada-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/escada-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -413972,7 +414329,7 @@ }, { "question": "ese O ese", - "icon": "./assets/data/nsi/logos/eseoese-9e078d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eseoese-9e078d.jpg", "osmTags": { "and": [ "clothes=women", @@ -413989,7 +414346,7 @@ }, { "question": "Esotiq", - "icon": "./assets/data/nsi/logos/esotiq-264379.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esotiq-264379.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414005,7 +414362,7 @@ }, { "question": "Esprit", - "icon": "./assets/data/nsi/logos/esprit-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esprit-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414021,7 +414378,7 @@ }, { "question": "Essentiel Antwerp", - "icon": "./assets/data/nsi/logos/essentielantwerp-fbdad9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentielantwerp-fbdad9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414037,7 +414394,7 @@ }, { "question": "Etam", - "icon": "./assets/data/nsi/logos/etam-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etam-3937bd.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -414054,7 +414411,7 @@ }, { "question": "ETERNA", - "icon": "./assets/data/nsi/logos/eterna-96f120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eterna-96f120.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414070,7 +414427,7 @@ }, { "question": "ETRO", - "icon": "./assets/data/nsi/logos/etro-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etro-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414086,7 +414443,7 @@ }, { "question": "Evans", - "icon": "./assets/data/nsi/logos/evans-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evans-7b1694.jpg", "osmTags": { "and": [ "clothes=women", @@ -414103,7 +414460,7 @@ }, { "question": "Ever New", - "icon": "./assets/data/nsi/logos/evernew-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evernew-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -414120,7 +414477,7 @@ }, { "question": "Evereve", - "icon": "./assets/data/nsi/logos/evereve-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evereve-0a21d9.jpg", "osmTags": { "and": [ "clothes=women", @@ -414137,7 +414494,7 @@ }, { "question": "Everything But Water", - "icon": "./assets/data/nsi/logos/everythingbutwater-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/everythingbutwater-0a21d9.jpg", "osmTags": { "and": [ "clothes=swimwear;women", @@ -414154,7 +414511,7 @@ }, { "question": "Exact", - "icon": "./assets/data/nsi/logos/exact-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exact-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414170,7 +414527,7 @@ }, { "question": "Express", - "icon": "./assets/data/nsi/logos/express-3f165f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/express-3f165f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414186,7 +414543,7 @@ }, { "question": "Express Men", - "icon": "./assets/data/nsi/logos/expressmen-3f165f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressmen-3f165f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414202,7 +414559,7 @@ }, { "question": "Extreme Intimo", - "icon": "./assets/data/nsi/logos/extremeintimo-bdfec0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/extremeintimo-bdfec0.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -414219,7 +414576,7 @@ }, { "question": "Fabiani", - "icon": "./assets/data/nsi/logos/fabiani-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fabiani-bd328b.jpg", "osmTags": { "and": [ "clothes=men", @@ -414236,7 +414593,7 @@ }, { "question": "Fabindia", - "icon": "./assets/data/nsi/logos/fabindia-f8e8b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fabindia-f8e8b1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414252,7 +414609,7 @@ }, { "question": "Fabletics", - "icon": "./assets/data/nsi/logos/fabletics-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fabletics-0a21d9.jpg", "osmTags": { "and": [ "clothes=women", @@ -414269,7 +414626,7 @@ }, { "question": "Faguo", - "icon": "./assets/data/nsi/logos/faguo-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/faguo-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414285,7 +414642,7 @@ }, { "question": "Fairweather", - "icon": "./assets/data/nsi/logos/fairweather-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fairweather-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -414302,7 +414659,7 @@ }, { "question": "Falconeri", - "icon": "./assets/data/nsi/logos/falconeri-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/falconeri-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414318,7 +414675,7 @@ }, { "question": "FALKE", - "icon": "./assets/data/nsi/logos/falke-d93616.png", + "icon": "https://data.mapcomplete.org/nsi//logos/falke-d93616.png", "osmTags": { "and": [ "shop=clothes", @@ -414349,7 +414706,7 @@ }, { "question": "Fat Face", - "icon": "./assets/data/nsi/logos/fatface-5e4c8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fatface-5e4c8e.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414365,7 +414722,7 @@ }, { "question": "Fathers & Sons", - "icon": "./assets/data/nsi/logos/fathersandsons-f2b18a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fathersandsons-f2b18a.jpg", "osmTags": { "and": [ "clothes=men", @@ -414381,7 +414738,7 @@ }, { "question": "Fendi", - "icon": "./assets/data/nsi/logos/fendi-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fendi-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414397,7 +414754,7 @@ }, { "question": "Figaret", - "icon": "./assets/data/nsi/logos/figaret-ab5608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/figaret-ab5608.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -414414,7 +414771,7 @@ }, { "question": "Fila", - "icon": "./assets/data/nsi/logos/fila-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fila-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414430,7 +414787,7 @@ }, { "question": "Finn Flare", - "icon": "./assets/data/nsi/logos/finnflare-7b6907.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/finnflare-7b6907.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414446,7 +414803,7 @@ }, { "question": "Fiorella Rubino", - "icon": "./assets/data/nsi/logos/fiorellarubino-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiorellarubino-d72191.jpg", "osmTags": { "and": [ "clothes=women", @@ -414478,7 +414835,7 @@ }, { "question": "Flexi", - "icon": "./assets/data/nsi/logos/flexi-c4029f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flexi-c4029f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414494,7 +414851,7 @@ }, { "question": "Forever 21", - "icon": "./assets/data/nsi/logos/forever21-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/forever21-3937bd.svg", "osmTags": { "and": [ "shop=clothes", @@ -414510,7 +414867,7 @@ }, { "question": "Forever New", - "icon": "./assets/data/nsi/logos/forevernew-cd1df3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forevernew-cd1df3.jpg", "osmTags": { "and": [ "clothes=women", @@ -414527,7 +414884,7 @@ }, { "question": "Foschini", - "icon": "./assets/data/nsi/logos/foschini-560ac2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foschini-560ac2.jpg", "osmTags": { "and": [ "clothes=women", @@ -414544,7 +414901,7 @@ }, { "question": "FOX", - "icon": "./assets/data/nsi/logos/fox-e991b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fox-e991b5.jpg", "osmTags": { "and": [ "clothes=women;men;children;babies", @@ -414564,7 +414921,7 @@ }, { "question": "Francesca's", - "icon": "./assets/data/nsi/logos/francescas-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/francescas-0a21d9.jpg", "osmTags": { "and": [ "clothes=women;luxury", @@ -414581,7 +414938,7 @@ }, { "question": "Free People", - "icon": "./assets/data/nsi/logos/freepeople-0615dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/freepeople-0615dc.png", "osmTags": { "and": [ "shop=clothes", @@ -414597,7 +414954,7 @@ }, { "question": "French Connection", - "icon": "./assets/data/nsi/logos/frenchconnection-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frenchconnection-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414614,7 +414971,7 @@ }, { "question": "Fusakle", - "icon": "./assets/data/nsi/logos/fusakle-111ecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fusakle-111ecf.jpg", "osmTags": { "and": [ "clothes=socks", @@ -414631,7 +414988,7 @@ }, { "question": "Fusalp", - "icon": "./assets/data/nsi/logos/fusalp-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fusalp-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414647,7 +415004,7 @@ }, { "question": "Fussl", - "icon": "./assets/data/nsi/logos/fussl-96f120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fussl-96f120.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414664,7 +415021,7 @@ }, { "question": "G-Star Raw", - "icon": "./assets/data/nsi/logos/gstarraw-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gstarraw-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414680,7 +415037,7 @@ }, { "question": "G2000", - "icon": "./assets/data/nsi/logos/g2000-88aa58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/g2000-88aa58.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414698,7 +415055,7 @@ }, { "question": "Gabe's", - "icon": "./assets/data/nsi/logos/gabes-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gabes-0a21d9.png", "osmTags": { "and": [ "shop=clothes", @@ -414714,7 +415071,7 @@ }, { "question": "GANT", - "icon": "./assets/data/nsi/logos/gant-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gant-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414730,7 +415087,7 @@ }, { "question": "Gap", - "icon": "./assets/data/nsi/logos/gap-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gap-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414746,7 +415103,7 @@ }, { "question": "Gap Body", - "icon": "./assets/data/nsi/logos/gapbody-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gapbody-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -414763,7 +415120,7 @@ }, { "question": "Gap Factory", - "icon": "./assets/data/nsi/logos/gapfactory-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gapfactory-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414779,7 +415136,7 @@ }, { "question": "Gap Kids", - "icon": "./assets/data/nsi/logos/gapkids-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gapkids-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -414796,7 +415153,7 @@ }, { "question": "Garage", - "icon": "./assets/data/nsi/logos/garage-072c62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/garage-072c62.jpg", "osmTags": { "and": [ "clothes=women", @@ -414813,7 +415170,7 @@ }, { "question": "Gate", - "icon": "./assets/data/nsi/logos/gate-d52ff8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gate-d52ff8.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414829,7 +415186,7 @@ }, { "question": "Gatta", - "icon": "./assets/data/nsi/logos/gatta-196c99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gatta-196c99.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -414846,7 +415203,7 @@ }, { "question": "Gémo", - "icon": "./assets/data/nsi/logos/gemo-7bebe2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gemo-7bebe2.png", "osmTags": { "and": [ "shop=clothes", @@ -414877,7 +415234,7 @@ }, { "question": "George", - "icon": "./assets/data/nsi/logos/george-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/george-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414893,7 +415250,7 @@ }, { "question": "George Richards Big & Tall Menswear", - "icon": "./assets/data/nsi/logos/georgerichards-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/georgerichards-9e1367.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414925,7 +415282,7 @@ }, { "question": "Gerry Weber", - "icon": "./assets/data/nsi/logos/gerryweber-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gerryweber-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414941,7 +415298,7 @@ }, { "question": "Ghanda", - "icon": "./assets/data/nsi/logos/ghanda-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ghanda-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414957,7 +415314,7 @@ }, { "question": "Gina Laura", - "icon": "./assets/data/nsi/logos/ginalaura-96f120.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ginalaura-96f120.svg", "osmTags": { "and": [ "clothes=women", @@ -414974,7 +415331,7 @@ }, { "question": "Gina Tricot", - "icon": "./assets/data/nsi/logos/ginatricot-0779c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ginatricot-0779c3.jpg", "osmTags": { "and": [ "shop=clothes", @@ -414990,7 +415347,7 @@ }, { "question": "Giordano", - "icon": "./assets/data/nsi/logos/giordano-016f95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giordano-016f95.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415008,7 +415365,7 @@ }, { "question": "Giorgio Armani", - "icon": "./assets/data/nsi/logos/giorgioarmani-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giorgioarmani-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415024,7 +415381,7 @@ }, { "question": "Givenchy", - "icon": "./assets/data/nsi/logos/givenchy-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/givenchy-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -415040,7 +415397,7 @@ }, { "question": "Glassons", - "icon": "./assets/data/nsi/logos/glassons-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glassons-2bb477.jpg", "osmTags": { "and": [ "clothes=women", @@ -415057,7 +415414,7 @@ }, { "question": "Globo", - "icon": "./assets/data/nsi/logos/globo-8f2dbd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/globo-8f2dbd.png", "osmTags": { "and": [ "shop=clothes", @@ -415088,7 +415445,7 @@ }, { "question": "Gloria Jeans", - "icon": "./assets/data/nsi/logos/gloriajeans-7b6907.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gloriajeans-7b6907.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415104,7 +415461,7 @@ }, { "question": "Goldenpoint", - "icon": "./assets/data/nsi/logos/goldenpoint-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenpoint-d72191.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -415138,7 +415495,7 @@ }, { "question": "Grain de Malice", - "icon": "./assets/data/nsi/logos/graindemalice-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/graindemalice-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415155,7 +415512,7 @@ }, { "question": "GU", - "icon": "./assets/data/nsi/logos/gu-ff89be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gu-ff89be.png", "osmTags": { "and": [ "shop=clothes", @@ -415171,7 +415528,7 @@ }, { "question": "GU (日本)", - "icon": "./assets/data/nsi/logos/gu-85f881.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gu-85f881.png", "osmTags": { "and": [ "shop=clothes", @@ -415191,7 +415548,7 @@ }, { "question": "Gucci", - "icon": "./assets/data/nsi/logos/gucci-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gucci-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415207,7 +415564,7 @@ }, { "question": "Gudrun Sjödén", - "icon": "./assets/data/nsi/logos/gudrunsjoden-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gudrunsjoden-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -415224,7 +415581,7 @@ }, { "question": "Guess", - "icon": "./assets/data/nsi/logos/guess-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guess-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415240,7 +415597,7 @@ }, { "question": "Gutteridge", - "icon": "./assets/data/nsi/logos/gutteridge-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gutteridge-d72191.jpg", "osmTags": { "and": [ "clothes=men", @@ -415257,7 +415614,7 @@ }, { "question": "Gymboree", - "icon": "./assets/data/nsi/logos/gymboree-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gymboree-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415273,7 +415630,7 @@ }, { "question": "H&M", - "icon": "./assets/data/nsi/logos/handm-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/handm-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -415289,7 +415646,7 @@ }, { "question": "H&M Kids", - "icon": "./assets/data/nsi/logos/handmkids-2ecfc2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/handmkids-2ecfc2.png", "osmTags": { "and": [ "clothes=children", @@ -415306,7 +415663,7 @@ }, { "question": "Hackett London", - "icon": "./assets/data/nsi/logos/hackettlondon-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hackettlondon-3937bd.jpg", "osmTags": { "and": [ "clothes=men", @@ -415323,7 +415680,7 @@ }, { "question": "Haggar", - "icon": "./assets/data/nsi/logos/haggar-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haggar-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415340,7 +415697,7 @@ }, { "question": "HalfPrice", - "icon": "./assets/data/nsi/logos/halfprice-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halfprice-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415356,7 +415713,7 @@ }, { "question": "Hallensteins", - "icon": "./assets/data/nsi/logos/hallensteins-2bb477.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/hallensteins-2bb477.gif", "osmTags": { "and": [ "shop=clothes", @@ -415372,7 +415729,7 @@ }, { "question": "Hallhuber", - "icon": "./assets/data/nsi/logos/hallhuber-20ae39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hallhuber-20ae39.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415388,7 +415745,7 @@ }, { "question": "Hanesbrands", - "icon": "./assets/data/nsi/logos/hanesbrands-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hanesbrands-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -415404,7 +415761,7 @@ }, { "question": "Happy Socks", - "icon": "./assets/data/nsi/logos/happysocks-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happysocks-3937bd.jpg", "osmTags": { "and": [ "clothes=socks", @@ -415421,7 +415778,7 @@ }, { "question": "Harmont & Blaine", - "icon": "./assets/data/nsi/logos/harmontandblaine-6f335a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harmontandblaine-6f335a.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415437,7 +415794,7 @@ }, { "question": "Harry Rosen", - "icon": "./assets/data/nsi/logos/harryrosen-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harryrosen-9e1367.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415453,7 +415810,7 @@ }, { "question": "Helly Hansen", - "icon": "./assets/data/nsi/logos/hellyhansen-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hellyhansen-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -415483,7 +415840,7 @@ }, { "question": "Hering", - "icon": "./assets/data/nsi/logos/hering-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hering-c7d1e1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415499,7 +415856,7 @@ }, { "question": "Hering Kids", - "icon": "./assets/data/nsi/logos/heringkids-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heringkids-c7d1e1.jpg", "osmTags": { "and": [ "clothes=children", @@ -415516,7 +415873,7 @@ }, { "question": "Hermès", - "icon": "./assets/data/nsi/logos/hermes-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hermes-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415532,7 +415889,7 @@ }, { "question": "Herzog & Bräuer", - "icon": "./assets/data/nsi/logos/herzogandbrauer-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/herzogandbrauer-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415548,7 +415905,7 @@ }, { "question": "Hobbs", - "icon": "./assets/data/nsi/logos/hobbs-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hobbs-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415564,16 +415921,16 @@ }, { "question": "Hollister", - "icon": "./assets/data/nsi/logos/hollister-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hollister-3937bd.jpg", "osmTags": { "and": [ - "official_name=Hollister Co.", "shop=clothes", { "or": [ "brand=Hollister", "brand:wikidata=Q1257477", - "name=Hollister" + "name=Hollister", + "official_name=Hollister Co." ] } ] @@ -415581,7 +415938,7 @@ }, { "question": "Honeys", - "icon": "./assets/data/nsi/logos/honeys-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honeys-85f881.jpg", "osmTags": { "and": [ "clothes=women", @@ -415602,7 +415959,7 @@ }, { "question": "Hoodies", - "icon": "./assets/data/nsi/logos/hoodies-e991b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoodies-e991b5.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415620,7 +415977,7 @@ }, { "question": "Hope", - "icon": "./assets/data/nsi/logos/hope-0b7e74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hope-0b7e74.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -415637,7 +415994,7 @@ }, { "question": "Hot Topic", - "icon": "./assets/data/nsi/logos/hottopic-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hottopic-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415653,7 +416010,7 @@ }, { "question": "House", - "icon": "./assets/data/nsi/logos/house-f09482.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/house-f09482.svg", "osmTags": { "and": [ "shop=clothes", @@ -415669,7 +416026,7 @@ }, { "question": "HoutBrox", - "icon": "./assets/data/nsi/logos/houtbrox-91c4cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/houtbrox-91c4cd.png", "osmTags": { "and": [ "shop=clothes", @@ -415685,7 +416042,7 @@ }, { "question": "Huber Shop", - "icon": "./assets/data/nsi/logos/hubershop-daa173.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hubershop-daa173.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -415702,7 +416059,7 @@ }, { "question": "Huffer", - "icon": "./assets/data/nsi/logos/huffer-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huffer-2bb477.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415718,7 +416075,7 @@ }, { "question": "Hugo Boss", - "icon": "./assets/data/nsi/logos/hugoboss-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hugoboss-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415735,7 +416092,7 @@ }, { "question": "Humana", - "icon": "./assets/data/nsi/logos/humana-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/humana-3937bd.jpg", "osmTags": { "and": [ "second_hand=only", @@ -415752,7 +416109,7 @@ }, { "question": "Hunkemöller", - "icon": "./assets/data/nsi/logos/hunkemoller-4950a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hunkemoller-4950a4.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -415769,7 +416126,7 @@ }, { "question": "Hurley", - "icon": "./assets/data/nsi/logos/hurley-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hurley-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415785,7 +416142,7 @@ }, { "question": "Identity", - "icon": "./assets/data/nsi/logos/identity-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/identity-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415801,7 +416158,7 @@ }, { "question": "Ikks", - "icon": "./assets/data/nsi/logos/ikks-6d941b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikks-6d941b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415817,7 +416174,7 @@ }, { "question": "Indiska", - "icon": "./assets/data/nsi/logos/indiska-0779c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indiska-0779c3.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415833,7 +416190,7 @@ }, { "question": "Indochino", - "icon": "./assets/data/nsi/logos/indochino-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indochino-0615dc.jpg", "osmTags": { "and": [ "clothes=suits", @@ -415850,7 +416207,7 @@ }, { "question": "Industrie", - "icon": "./assets/data/nsi/logos/industrie-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/industrie-392c8b.jpg", "osmTags": { "and": [ "clothes=men", @@ -415896,7 +416253,7 @@ }, { "question": "Intimissimi", - "icon": "./assets/data/nsi/logos/intimissimi-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/intimissimi-3937bd.png", "osmTags": { "and": [ "clothes=underwear", @@ -415913,7 +416270,7 @@ }, { "question": "Intimissimi Uomo", - "icon": "./assets/data/nsi/logos/intimissimiuomo-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intimissimiuomo-3937bd.jpg", "osmTags": { "and": [ "clothes=men;underwear", @@ -415930,7 +416287,7 @@ }, { "question": "It's Fashion", - "icon": "./assets/data/nsi/logos/itsfashion-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/itsfashion-0a21d9.png", "osmTags": { "and": [ "clothes=women", @@ -415947,7 +416304,7 @@ }, { "question": "It's Fashion Metro", - "icon": "./assets/data/nsi/logos/itsfashionmetro-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/itsfashionmetro-0a21d9.png", "osmTags": { "and": [ "clothes=women", @@ -415964,7 +416321,7 @@ }, { "question": "IZOD", - "icon": "./assets/data/nsi/logos/izod-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/izod-3937bd.jpg", "osmTags": { "and": [ "clothes=men", @@ -415981,7 +416338,7 @@ }, { "question": "J. McLaughlin", - "icon": "./assets/data/nsi/logos/jmclaughlin-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jmclaughlin-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -415997,7 +416354,7 @@ }, { "question": "J.Crew", - "icon": "./assets/data/nsi/logos/jcrew-ac779b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcrew-ac779b.jpg", "osmTags": { "and": [ "clothes=men;women;children", @@ -416014,7 +416371,7 @@ }, { "question": "J.Jill", - "icon": "./assets/data/nsi/logos/jjill-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jjill-0a21d9.png", "osmTags": { "and": [ "clothes=women", @@ -416031,7 +416388,7 @@ }, { "question": "Jacadi", - "icon": "./assets/data/nsi/logos/jacadi-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacadi-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -416048,7 +416405,7 @@ }, { "question": "Jack & Jones", - "icon": "./assets/data/nsi/logos/jackandjones-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jackandjones-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416064,7 +416421,7 @@ }, { "question": "Jack Wills", - "icon": "./assets/data/nsi/logos/jackwills-75e7ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jackwills-75e7ba.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416080,7 +416437,7 @@ }, { "question": "Jacqui E", - "icon": "./assets/data/nsi/logos/jacquie-392c8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jacquie-392c8b.png", "osmTags": { "and": [ "shop=clothes", @@ -416096,7 +416453,7 @@ }, { "question": "Janie & Jack", - "icon": "./assets/data/nsi/logos/janieandjack-0615dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/janieandjack-0615dc.png", "osmTags": { "and": [ "clothes=children", @@ -416113,7 +416470,7 @@ }, { "question": "Jasmil", - "icon": "./assets/data/nsi/logos/jasmil-d5abcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jasmil-d5abcf.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416131,7 +416488,7 @@ }, { "question": "Jay Jays", - "icon": "./assets/data/nsi/logos/jayjays-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jayjays-2bb477.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416147,7 +416504,7 @@ }, { "question": "JBC", - "icon": "./assets/data/nsi/logos/jbc-4b0b1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jbc-4b0b1d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416163,7 +416520,7 @@ }, { "question": "Jeans Centre", - "icon": "./assets/data/nsi/logos/jeanscentre-91c4cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeanscentre-91c4cd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416179,7 +416536,7 @@ }, { "question": "Jeans Fritz", - "icon": "./assets/data/nsi/logos/jeansfritz-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeansfritz-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416211,7 +416568,7 @@ }, { "question": "Jennyfer", - "icon": "./assets/data/nsi/logos/jennyfer-ecfb3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jennyfer-ecfb3e.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416227,7 +416584,7 @@ }, { "question": "Jet", - "icon": "./assets/data/nsi/logos/jet-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jet-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416243,7 +416600,7 @@ }, { "question": "Jigsaw", - "icon": "./assets/data/nsi/logos/jigsaw-8babcc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jigsaw-8babcc.png", "osmTags": { "and": [ "shop=clothes", @@ -416259,7 +416616,7 @@ }, { "question": "Jil Sander", - "icon": "./assets/data/nsi/logos/jilsander-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jilsander-3937bd.svg", "osmTags": { "and": [ "shop=clothes", @@ -416275,7 +416632,7 @@ }, { "question": "Jockey", - "icon": "./assets/data/nsi/logos/jockey-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jockey-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416291,7 +416648,7 @@ }, { "question": "Joe Fresh", - "icon": "./assets/data/nsi/logos/joefresh-9e1367.png", + "icon": "https://data.mapcomplete.org/nsi//logos/joefresh-9e1367.png", "osmTags": { "and": [ "shop=clothes", @@ -416307,7 +416664,7 @@ }, { "question": "Johnny Bigg", - "icon": "./assets/data/nsi/logos/johnnybigg-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnnybigg-392c8b.jpg", "osmTags": { "and": [ "clothes=men;oversize", @@ -416326,7 +416683,7 @@ }, { "question": "Johnny Was", - "icon": "./assets/data/nsi/logos/johnnywas-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnnywas-0a21d9.jpg", "osmTags": { "and": [ "clothes=women", @@ -416343,7 +416700,7 @@ }, { "question": "JoJo Maman Bébé", - "icon": "./assets/data/nsi/logos/jojomamanbebe-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jojomamanbebe-7b1694.jpg", "osmTags": { "and": [ "clothes=maternity;babies", @@ -416360,16 +416717,16 @@ }, { "question": "JoS. A. Bank", - "icon": "./assets/data/nsi/logos/josabank-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/josabank-0a21d9.jpg", "osmTags": { "and": [ - "official_name=Jos. A. Bank Clothiers", "shop=clothes", { "or": [ "brand=JoS. A. Bank", "brand:wikidata=Q6204078", - "name=JoS. A. Bank" + "name=JoS. A. Bank", + "official_name=Jos. A. Bank Clothiers" ] } ] @@ -416377,7 +416734,7 @@ }, { "question": "Joules", - "icon": "./assets/data/nsi/logos/joules-5e4c8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joules-5e4c8e.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416393,7 +416750,7 @@ }, { "question": "Jules", - "icon": "./assets/data/nsi/logos/jules-1172e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jules-1172e0.jpg", "osmTags": { "and": [ "clothes=men", @@ -416410,7 +416767,7 @@ }, { "question": "Just Jeans", - "icon": "./assets/data/nsi/logos/justjeans-2bb477.png", + "icon": "https://data.mapcomplete.org/nsi//logos/justjeans-2bb477.png", "osmTags": { "and": [ "clothes=denim", @@ -416427,7 +416784,7 @@ }, { "question": "Just Over the Top", - "icon": "./assets/data/nsi/logos/justoverthetop-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/justoverthetop-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416443,7 +416800,7 @@ }, { "question": "Just Sports", - "icon": "./assets/data/nsi/logos/justsports-bee14c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/justsports-bee14c.png", "osmTags": { "and": [ "clothes=sports", @@ -416460,7 +416817,7 @@ }, { "question": "Justice", - "icon": "./assets/data/nsi/logos/justice-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/justice-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416476,7 +416833,7 @@ }, { "question": "K-Way", - "icon": "./assets/data/nsi/logos/kway-90f7b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kway-90f7b7.png", "osmTags": { "and": [ "shop=clothes", @@ -416492,7 +416849,7 @@ }, { "question": "K&Ö", - "icon": "./assets/data/nsi/logos/kando-daa173.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kando-daa173.png", "osmTags": { "and": [ "shop=clothes", @@ -416509,7 +416866,7 @@ }, { "question": "kaes.", - "icon": "./assets/data/nsi/logos/kaes-196c99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaes-196c99.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416554,7 +416911,7 @@ }, { "question": "KappAhl", - "icon": "./assets/data/nsi/logos/kappahl-c962e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kappahl-c962e5.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416570,7 +416927,7 @@ }, { "question": "Karen Millen", - "icon": "./assets/data/nsi/logos/karenmillen-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karenmillen-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416586,7 +416943,7 @@ }, { "question": "Karl Lagerfeld", - "icon": "./assets/data/nsi/logos/karllagerfeld-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karllagerfeld-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416602,7 +416959,7 @@ }, { "question": "Karl Marc John", - "icon": "./assets/data/nsi/logos/karlmarcjohn-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlmarcjohn-90f7b7.jpg", "osmTags": { "and": [ "clothes=women", @@ -416619,7 +416976,7 @@ }, { "question": "Kate Spade New York", - "icon": "./assets/data/nsi/logos/katespadenewyork-bbae42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/katespadenewyork-bbae42.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416636,7 +416993,7 @@ }, { "question": "Katies", - "icon": "./assets/data/nsi/logos/katies-392c8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/katies-392c8b.png", "osmTags": { "and": [ "clothes=women", @@ -416653,7 +417010,7 @@ }, { "question": "Keedo", - "icon": "./assets/data/nsi/logos/keedo-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keedo-bd328b.jpg", "osmTags": { "and": [ "clothes=children", @@ -416670,7 +417027,7 @@ }, { "question": "Kekäle", - "icon": "./assets/data/nsi/logos/kekale-a0f446.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kekale-a0f446.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416686,7 +417043,7 @@ }, { "question": "Kenzo", - "icon": "./assets/data/nsi/logos/kenzo-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kenzo-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416702,7 +417059,7 @@ }, { "question": "Kiabi", - "icon": "./assets/data/nsi/logos/kiabi-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiabi-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416718,7 +417075,7 @@ }, { "question": "Kiğılı", - "icon": "./assets/data/nsi/logos/kigili-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kigili-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -416734,7 +417091,7 @@ }, { "question": "KiK", - "icon": "./assets/data/nsi/logos/kik-323dff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kik-323dff.png", "osmTags": { "and": [ "shop=clothes", @@ -416750,7 +417107,7 @@ }, { "question": "Klass", - "icon": "./assets/data/nsi/logos/klass-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klass-7b1694.jpg", "osmTags": { "and": [ "clothes=women", @@ -416767,7 +417124,7 @@ }, { "question": "Kleider Bauer", - "icon": "./assets/data/nsi/logos/kleiderbauer-daa173.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kleiderbauer-daa173.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416783,7 +417140,7 @@ }, { "question": "Kocca", - "icon": "./assets/data/nsi/logos/kocca-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kocca-d72191.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416799,7 +417156,7 @@ }, { "question": "Kookaï", - "icon": "./assets/data/nsi/logos/kookai-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kookai-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416815,7 +417172,7 @@ }, { "question": "Koröshi", - "icon": "./assets/data/nsi/logos/koroshi-9e078d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koroshi-9e078d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416831,7 +417188,7 @@ }, { "question": "Koton", - "icon": "./assets/data/nsi/logos/koton-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koton-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416847,7 +417204,7 @@ }, { "question": "Kujten", - "icon": "./assets/data/nsi/logos/kujten-928473.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kujten-928473.jpg", "osmTags": { "and": [ "clothes=women;men;children", @@ -416864,7 +417221,7 @@ }, { "question": "Kult", - "icon": "./assets/data/nsi/logos/kult-74806d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kult-74806d.png", "osmTags": { "and": [ "shop=clothes", @@ -416880,7 +417237,7 @@ }, { "question": "L'Équipeur", - "icon": "./assets/data/nsi/logos/lequipeur-36b8ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lequipeur-36b8ca.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416896,7 +417253,7 @@ }, { "question": "La Compagnie des Petits", - "icon": "./assets/data/nsi/logos/lacompagniedespetits-454aed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lacompagniedespetits-454aed.png", "osmTags": { "and": [ "clothes=children", @@ -416913,7 +417270,7 @@ }, { "question": "La Fée Maraboutée", - "icon": "./assets/data/nsi/logos/lafeemaraboutee-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafeemaraboutee-90f7b7.jpg", "osmTags": { "and": [ "clothes=women", @@ -416930,7 +417287,7 @@ }, { "question": "La Halle", - "icon": "./assets/data/nsi/logos/lahalle-5bd015.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lahalle-5bd015.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416946,7 +417303,7 @@ }, { "question": "La Martina", - "icon": "./assets/data/nsi/logos/lamartina-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamartina-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416962,7 +417319,7 @@ }, { "question": "La Senza", - "icon": "./assets/data/nsi/logos/lasenza-728022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lasenza-728022.jpg", "osmTags": { "and": [ "shop=clothes", @@ -416978,7 +417335,7 @@ }, { "question": "La Vie en Rose", - "icon": "./assets/data/nsi/logos/lavieenrose-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lavieenrose-3937bd.png", "osmTags": { "and": [ "clothes=underwear;women", @@ -416995,7 +417352,7 @@ }, { "question": "Lacoste", - "icon": "./assets/data/nsi/logos/lacoste-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacoste-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417011,7 +417368,7 @@ }, { "question": "Lager 157", - "icon": "./assets/data/nsi/logos/lager157-268f20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lager157-268f20.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417027,7 +417384,7 @@ }, { "question": "Lane Bryant", - "icon": "./assets/data/nsi/logos/lanebryant-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lanebryant-0a21d9.jpg", "osmTags": { "and": [ "clothes=oversize;women", @@ -417044,7 +417401,7 @@ }, { "question": "Laura", - "icon": "./assets/data/nsi/logos/laura-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laura-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -417061,7 +417418,7 @@ }, { "question": "Laura Ashley", - "icon": "./assets/data/nsi/logos/lauraashley-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lauraashley-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417077,7 +417434,7 @@ }, { "question": "LC Waikiki", - "icon": "./assets/data/nsi/logos/lcwaikiki-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lcwaikiki-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417093,7 +417450,7 @@ }, { "question": "Le Château", - "icon": "./assets/data/nsi/logos/lechateau-f2752c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechateau-f2752c.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417109,7 +417466,7 @@ }, { "question": "Le Coq Sportif", - "icon": "./assets/data/nsi/logos/lecoqsportif-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lecoqsportif-3937bd.jpg", "osmTags": { "and": [ "clothes=sports", @@ -417126,7 +417483,7 @@ }, { "question": "Le Slip Français", - "icon": "./assets/data/nsi/logos/leslipfrancais-512580.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leslipfrancais-512580.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -417143,7 +417500,7 @@ }, { "question": "Le Temps des Cerises", - "icon": "./assets/data/nsi/logos/letempsdescerises-9cdbc1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/letempsdescerises-9cdbc1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417159,7 +417516,7 @@ }, { "question": "Lee Cooper", - "icon": "./assets/data/nsi/logos/leecooper-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leecooper-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417175,7 +417532,7 @@ }, { "question": "Lefties", - "icon": "./assets/data/nsi/logos/lefties-4f47d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lefties-4f47d2.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417191,7 +417548,7 @@ }, { "question": "LEGiT", - "icon": "./assets/data/nsi/logos/legit-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/legit-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417207,7 +417564,7 @@ }, { "question": "LEOS", - "icon": "./assets/data/nsi/logos/leos-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leos-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417223,7 +417580,7 @@ }, { "question": "Levi's", - "icon": "./assets/data/nsi/logos/levis-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/levis-3937bd.jpg", "osmTags": { "and": [ "clothes=denim;men;women", @@ -417240,7 +417597,7 @@ }, { "question": "liberty woman", - "icon": "./assets/data/nsi/logos/libertywoman-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libertywoman-74806d.jpg", "osmTags": { "and": [ "clothes=women", @@ -417257,7 +417614,7 @@ }, { "question": "Lids", - "icon": "./assets/data/nsi/logos/lids-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lids-0615dc.jpg", "osmTags": { "and": [ "clothes=hats", @@ -417274,7 +417631,7 @@ }, { "question": "Lifestyle", - "icon": "./assets/data/nsi/logos/lifestyle-f8e8b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifestyle-f8e8b1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417290,7 +417647,7 @@ }, { "question": "Lilly Pulitzer", - "icon": "./assets/data/nsi/logos/lillypulitzer-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lillypulitzer-0a21d9.jpg", "osmTags": { "and": [ "clothes=women", @@ -417307,7 +417664,7 @@ }, { "question": "Lindex", - "icon": "./assets/data/nsi/logos/lindex-d7f5c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lindex-d7f5c5.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417323,7 +417680,7 @@ }, { "question": "Liu Jo", - "icon": "./assets/data/nsi/logos/liujo-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liujo-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417339,7 +417696,7 @@ }, { "question": "Live!", - "icon": "./assets/data/nsi/logos/live-03923a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/live-03923a.png", "osmTags": { "and": [ "clothes=sports", @@ -417356,7 +417713,7 @@ }, { "question": "Livera", - "icon": "./assets/data/nsi/logos/livera-91c4cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/livera-91c4cd.jpg", "osmTags": { "and": [ "clothes=underwear;women", @@ -417373,7 +417730,7 @@ }, { "question": "Loft", - "icon": "./assets/data/nsi/logos/loft-53e917.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loft-53e917.jpg", "osmTags": { "and": [ "clothes=women", @@ -417390,7 +417747,7 @@ }, { "question": "LolaLiza", - "icon": "./assets/data/nsi/logos/lolaliza-4b0b1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lolaliza-4b0b1d.jpg", "osmTags": { "and": [ "clothes=women", @@ -417407,7 +417764,7 @@ }, { "question": "Lorna Jane", - "icon": "./assets/data/nsi/logos/lornajane-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lornajane-2bb477.jpg", "osmTags": { "and": [ "clothes=women;sports", @@ -417424,7 +417781,7 @@ }, { "question": "Loro Piana", - "icon": "./assets/data/nsi/logos/loropiana-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loropiana-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417440,7 +417797,7 @@ }, { "question": "Louis Copeland and Sons", - "icon": "./assets/data/nsi/logos/louiscopelandandsons-b30dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louiscopelandandsons-b30dbb.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417471,7 +417828,7 @@ }, { "question": "Louis Vuitton", - "icon": "./assets/data/nsi/logos/louisvuitton-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisvuitton-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417487,7 +417844,7 @@ }, { "question": "Lovable", - "icon": "./assets/data/nsi/logos/lovable-d72191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lovable-d72191.png", "osmTags": { "and": [ "clothes=underwear", @@ -417504,7 +417861,7 @@ }, { "question": "LOVE REPUBLIC", - "icon": "./assets/data/nsi/logos/loverepublic-54fe8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loverepublic-54fe8d.jpg", "osmTags": { "and": [ "clothes=women", @@ -417521,7 +417878,7 @@ }, { "question": "Lowes", - "icon": "./assets/data/nsi/logos/lowes-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lowes-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417537,7 +417894,7 @@ }, { "question": "Loxion", - "icon": "./assets/data/nsi/logos/loxion-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loxion-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417553,7 +417910,7 @@ }, { "question": "Lucky Brand", - "icon": "./assets/data/nsi/logos/luckybrand-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luckybrand-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417569,7 +417926,7 @@ }, { "question": "Luisa Spagnoli", - "icon": "./assets/data/nsi/logos/luisaspagnoli-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luisaspagnoli-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -417586,17 +417943,17 @@ }, { "question": "Lululemon", - "icon": "./assets/data/nsi/logos/lululemon-211268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lululemon-211268.jpg", "osmTags": { "and": [ "clothes=men;women", - "official_name=Lululemon Athletica", "shop=clothes", { "or": [ "brand=Lululemon", "brand:wikidata=Q6702957", - "name=Lululemon" + "name=Lululemon", + "official_name=Lululemon Athletica" ] } ] @@ -417604,7 +417961,7 @@ }, { "question": "Lupo", - "icon": "./assets/data/nsi/logos/lupo-a63afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lupo-a63afb.jpg", "osmTags": { "and": [ "clothes=underwear;sports", @@ -417621,7 +417978,7 @@ }, { "question": "M.J. Bale", - "icon": "./assets/data/nsi/logos/mjbale-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mjbale-392c8b.jpg", "osmTags": { "and": [ "clothes=men", @@ -417638,7 +417995,7 @@ }, { "question": "M&Co", - "icon": "./assets/data/nsi/logos/mandco-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandco-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417668,7 +418025,7 @@ }, { "question": "Mackage", - "icon": "./assets/data/nsi/logos/mackage-59f728.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mackage-59f728.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417684,7 +418041,7 @@ }, { "question": "Madewell", - "icon": "./assets/data/nsi/logos/madewell-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madewell-0a21d9.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -417701,7 +418058,7 @@ }, { "question": "Maidenform", - "icon": "./assets/data/nsi/logos/maidenform-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maidenform-0a21d9.jpg", "osmTags": { "and": [ "clothes=underwear;women", @@ -417718,7 +418075,7 @@ }, { "question": "Maison Margiela", - "icon": "./assets/data/nsi/logos/maisonmargiela-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/maisonmargiela-3937bd.svg", "osmTags": { "and": [ "shop=clothes", @@ -417734,7 +418091,7 @@ }, { "question": "Maje", - "icon": "./assets/data/nsi/logos/maje-ab7b56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maje-ab7b56.jpg", "osmTags": { "and": [ "clothes=women", @@ -417751,7 +418108,7 @@ }, { "question": "Malwee", - "icon": "./assets/data/nsi/logos/malwee-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/malwee-c7d1e1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417781,7 +418138,7 @@ }, { "question": "Mandee", - "icon": "./assets/data/nsi/logos/mandee-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandee-0a21d9.jpg", "osmTags": { "and": [ "clothes=women", @@ -417798,7 +418155,7 @@ }, { "question": "Mango", - "icon": "./assets/data/nsi/logos/mango-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mango-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417814,7 +418171,7 @@ }, { "question": "Manyavar", - "icon": "./assets/data/nsi/logos/manyavar-f8e8b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manyavar-f8e8b1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417830,7 +418187,7 @@ }, { "question": "Marc Cain", - "icon": "./assets/data/nsi/logos/marccain-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marccain-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417846,7 +418203,7 @@ }, { "question": "Marc Jacobs", - "icon": "./assets/data/nsi/logos/marcjacobs-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marcjacobs-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417862,7 +418219,7 @@ }, { "question": "Marc O'Polo", - "icon": "./assets/data/nsi/logos/marcopolo-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marcopolo-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417878,7 +418235,7 @@ }, { "question": "Marella", - "icon": "./assets/data/nsi/logos/marella-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marella-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -417895,7 +418252,7 @@ }, { "question": "Marimekko", - "icon": "./assets/data/nsi/logos/marimekko-a0f446.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marimekko-a0f446.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417911,7 +418268,7 @@ }, { "question": "Marina Rinaldi", - "icon": "./assets/data/nsi/logos/marinarinaldi-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marinarinaldi-3937bd.jpg", "osmTags": { "and": [ "clothes=oversize;women", @@ -417928,7 +418285,7 @@ }, { "question": "Marine Layer", - "icon": "./assets/data/nsi/logos/marinelayer-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marinelayer-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417944,7 +418301,7 @@ }, { "question": "Marisa", - "icon": "./assets/data/nsi/logos/marisa-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marisa-c7d1e1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417960,7 +418317,7 @@ }, { "question": "Mark Formelle", - "icon": "./assets/data/nsi/logos/markformelle-1c3486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/markformelle-1c3486.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417976,7 +418333,7 @@ }, { "question": "Mark's", - "icon": "./assets/data/nsi/logos/marks-0d69da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marks-0d69da.jpg", "osmTags": { "and": [ "shop=clothes", @@ -417992,7 +418349,7 @@ }, { "question": "Markham", - "icon": "./assets/data/nsi/logos/markham-b23c0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/markham-b23c0b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418022,7 +418379,7 @@ }, { "question": "Massimo Dutti", - "icon": "./assets/data/nsi/logos/massimodutti-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/massimodutti-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418038,7 +418395,7 @@ }, { "question": "Matalan", - "icon": "./assets/data/nsi/logos/matalan-1132a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/matalan-1132a1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418054,7 +418411,7 @@ }, { "question": "Maurices", - "icon": "./assets/data/nsi/logos/maurices-cf4a00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maurices-cf4a00.jpg", "osmTags": { "and": [ "clothes=women", @@ -418071,7 +418428,7 @@ }, { "question": "Mavi", - "icon": "./assets/data/nsi/logos/mavi-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mavi-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418087,7 +418444,7 @@ }, { "question": "Max", - "icon": "./assets/data/nsi/logos/max-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/max-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418103,7 +418460,7 @@ }, { "question": "Max et Moi", - "icon": "./assets/data/nsi/logos/maxetmoi-03fdda.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxetmoi-03fdda.jpg", "osmTags": { "and": [ "clothes=women", @@ -418120,7 +418477,7 @@ }, { "question": "Max Mara", - "icon": "./assets/data/nsi/logos/maxmara-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxmara-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -418137,7 +418494,7 @@ }, { "question": "MAX&Co.", - "icon": "./assets/data/nsi/logos/maxandco-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxandco-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -418154,7 +418511,7 @@ }, { "question": "Mayoral", - "icon": "./assets/data/nsi/logos/mayoral-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayoral-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -418171,7 +418528,7 @@ }, { "question": "Medicine", - "icon": "./assets/data/nsi/logos/medicine-a7eccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/medicine-a7eccb.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418187,7 +418544,7 @@ }, { "question": "Megasport", - "icon": "./assets/data/nsi/logos/megasport-e79eb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megasport-e79eb2.jpg", "osmTags": { "and": [ "clothes=sports", @@ -418204,7 +418561,7 @@ }, { "question": "Melanie Lyne", - "icon": "./assets/data/nsi/logos/melanielyne-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/melanielyne-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -418221,7 +418578,7 @@ }, { "question": "Men's Wearhouse", - "icon": "./assets/data/nsi/logos/menswearhouse-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/menswearhouse-0a21d9.jpg", "osmTags": { "and": [ "clothes=suits", @@ -418238,7 +418595,7 @@ }, { "question": "Mes Demoiselles Paris", - "icon": "./assets/data/nsi/logos/mesdemoisellesparis-42f458.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mesdemoisellesparis-42f458.jpg", "osmTags": { "and": [ "clothes=women", @@ -418255,7 +418612,7 @@ }, { "question": "Mexx", - "icon": "./assets/data/nsi/logos/mexx-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mexx-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -418271,7 +418628,7 @@ }, { "question": "Michael Kors", - "icon": "./assets/data/nsi/logos/michaelkors-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michaelkors-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418287,7 +418644,7 @@ }, { "question": "Miladys", - "icon": "./assets/data/nsi/logos/miladys-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miladys-bd328b.jpg", "osmTags": { "and": [ "clothes=women", @@ -418304,7 +418661,7 @@ }, { "question": "Milano", - "icon": "./assets/data/nsi/logos/milano-c4029f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milano-c4029f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418320,7 +418677,7 @@ }, { "question": "Milavitsa", - "icon": "./assets/data/nsi/logos/milavitsa-e4d922.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milavitsa-e4d922.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -418343,7 +418700,7 @@ }, { "question": "Millers", - "icon": "./assets/data/nsi/logos/millers-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/millers-392c8b.jpg", "osmTags": { "and": [ "clothes=women", @@ -418388,7 +418745,7 @@ }, { "question": "Mint Velvet", - "icon": "./assets/data/nsi/logos/mintvelvet-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mintvelvet-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418404,7 +418761,7 @@ }, { "question": "Mise au Green", - "icon": "./assets/data/nsi/logos/miseaugreen-90f7b7.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/miseaugreen-90f7b7.gif", "osmTags": { "and": [ "shop=clothes", @@ -418420,7 +418777,7 @@ }, { "question": "mister*lady", - "icon": "./assets/data/nsi/logos/misterlady-96f120.png", + "icon": "https://data.mapcomplete.org/nsi//logos/misterlady-96f120.png", "osmTags": { "and": [ "shop=clothes", @@ -418436,7 +418793,7 @@ }, { "question": "MIXXO", - "icon": "./assets/data/nsi/logos/mixxo-d098b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mixxo-d098b5.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418456,7 +418813,7 @@ }, { "question": "MO", - "icon": "./assets/data/nsi/logos/mo-3ddf3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mo-3ddf3b.png", "osmTags": { "and": [ "shop=clothes", @@ -418472,7 +418829,7 @@ }, { "question": "Modepark Röther", - "icon": "./assets/data/nsi/logos/modeparkrother-96f120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/modeparkrother-96f120.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418502,7 +418859,7 @@ }, { "question": "Mohito", - "icon": "./assets/data/nsi/logos/mohito-710e25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mohito-710e25.jpg", "osmTags": { "and": [ "clothes=women", @@ -418519,7 +418876,7 @@ }, { "question": "Momoni", - "icon": "./assets/data/nsi/logos/momoni-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/momoni-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -418536,7 +418893,7 @@ }, { "question": "Moncler", - "icon": "./assets/data/nsi/logos/moncler-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/moncler-3937bd.svg", "osmTags": { "and": [ "shop=clothes", @@ -418552,7 +418909,7 @@ }, { "question": "Monki", - "icon": "./assets/data/nsi/logos/monki-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monki-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418568,7 +418925,7 @@ }, { "question": "Monnari", - "icon": "./assets/data/nsi/logos/monnari-196c99.png", + "icon": "https://data.mapcomplete.org/nsi//logos/monnari-196c99.png", "osmTags": { "and": [ "shop=clothes", @@ -418584,7 +418941,7 @@ }, { "question": "Monsoon", - "icon": "./assets/data/nsi/logos/monsoon-5e4c8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monsoon-5e4c8e.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418600,7 +418957,7 @@ }, { "question": "Moores", - "icon": "./assets/data/nsi/logos/moores-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moores-9e1367.jpg", "osmTags": { "and": [ "clothes=men", @@ -418617,7 +418974,7 @@ }, { "question": "Moreboards", - "icon": "./assets/data/nsi/logos/moreboards-daa173.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moreboards-daa173.jpg", "osmTags": { "and": [ "clothes=sports", @@ -418634,7 +418991,7 @@ }, { "question": "Morgan", - "icon": "./assets/data/nsi/logos/morgan-5bd015.png", + "icon": "https://data.mapcomplete.org/nsi//logos/morgan-5bd015.png", "osmTags": { "and": [ "shop=clothes", @@ -418650,7 +419007,7 @@ }, { "question": "Moser Trachtenwelt", - "icon": "./assets/data/nsi/logos/mosertrachtenwelt-74806d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mosertrachtenwelt-74806d.png", "osmTags": { "and": [ "shop=clothes", @@ -418666,7 +419023,7 @@ }, { "question": "Moss Bros", - "icon": "./assets/data/nsi/logos/mossbros-b36645.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mossbros-b36645.jpg", "osmTags": { "and": [ "clothes=men", @@ -418683,7 +419040,7 @@ }, { "question": "Motherhood Maternity", - "icon": "./assets/data/nsi/logos/motherhoodmaternity-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/motherhoodmaternity-0615dc.jpg", "osmTags": { "and": [ "clothes=maternity", @@ -418700,7 +419057,7 @@ }, { "question": "motivi", - "icon": "./assets/data/nsi/logos/motivi-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/motivi-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -418717,7 +419074,7 @@ }, { "question": "MQ", - "icon": "./assets/data/nsi/logos/mq-0779c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mq-0779c3.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418733,7 +419090,7 @@ }, { "question": "Mr Price", - "icon": "./assets/data/nsi/logos/mrprice-445d46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrprice-445d46.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418765,7 +419122,7 @@ }, { "question": "Mr. Big & Tall", - "icon": "./assets/data/nsi/logos/mrbigandtall-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrbigandtall-9e1367.jpg", "osmTags": { "and": [ "clothes=men", @@ -418782,7 +419139,7 @@ }, { "question": "MS Mode", - "icon": "./assets/data/nsi/logos/msmode-906b75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/msmode-906b75.jpg", "osmTags": { "and": [ "clothes=women", @@ -418799,7 +419156,7 @@ }, { "question": "Mustang", - "icon": "./assets/data/nsi/logos/mustang-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mustang-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418815,7 +419172,7 @@ }, { "question": "N Sport", - "icon": "./assets/data/nsi/logos/nsport-4f64e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nsport-4f64e9.png", "osmTags": { "and": [ "clothes=sports", @@ -418834,7 +419191,7 @@ }, { "question": "NAF NAF", - "icon": "./assets/data/nsi/logos/nafnaf-6dd3cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nafnaf-6dd3cd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418850,7 +419207,7 @@ }, { "question": "Naheva", - "icon": "./assets/data/nsi/logos/naheva-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naheva-d72191.jpg", "osmTags": { "and": [ "clothes=women", @@ -418867,7 +419224,7 @@ }, { "question": "NAME IT", - "icon": "./assets/data/nsi/logos/nameit-b5590c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nameit-b5590c.jpg", "osmTags": { "and": [ "clothes=children", @@ -418884,7 +419241,7 @@ }, { "question": "Napapijri", - "icon": "./assets/data/nsi/logos/napapijri-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/napapijri-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418900,7 +419257,7 @@ }, { "question": "Nautica", - "icon": "./assets/data/nsi/logos/nautica-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nautica-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418916,7 +419273,7 @@ }, { "question": "NET", - "icon": "./assets/data/nsi/logos/net-9293e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/net-9293e1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418932,7 +419289,7 @@ }, { "question": "New Look", - "icon": "./assets/data/nsi/logos/newlook-f337da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newlook-f337da.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418948,7 +419305,7 @@ }, { "question": "New Man", - "icon": "./assets/data/nsi/logos/newman-90f7b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newman-90f7b7.png", "osmTags": { "and": [ "shop=clothes", @@ -418964,7 +419321,7 @@ }, { "question": "New York & Company", - "icon": "./assets/data/nsi/logos/newyorkandcompany-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkandcompany-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418980,7 +419337,7 @@ }, { "question": "New Yorker", - "icon": "./assets/data/nsi/logos/newyorker-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorker-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -418996,7 +419353,7 @@ }, { "question": "Next", - "icon": "./assets/data/nsi/logos/next-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/next-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419012,7 +419369,7 @@ }, { "question": "Nicci Boutiques", - "icon": "./assets/data/nsi/logos/nicciboutiques-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nicciboutiques-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419028,7 +419385,7 @@ }, { "question": "Nike", - "icon": "./assets/data/nsi/logos/nike-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nike-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419044,7 +419401,7 @@ }, { "question": "Nike Clearance Store", - "icon": "./assets/data/nsi/logos/nikeclearancestore-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nikeclearancestore-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419060,7 +419417,7 @@ }, { "question": "Nike Community Store", - "icon": "./assets/data/nsi/logos/nikecommunitystore-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nikecommunitystore-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419076,7 +419433,7 @@ }, { "question": "Nike Factory Store", - "icon": "./assets/data/nsi/logos/nikefactorystore-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nikefactorystore-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419092,7 +419449,7 @@ }, { "question": "Nike Well Collective", - "icon": "./assets/data/nsi/logos/nikewellcollective-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nikewellcollective-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419128,7 +419485,7 @@ }, { "question": "NKD", - "icon": "./assets/data/nsi/logos/nkd-30d2bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nkd-30d2bf.png", "osmTags": { "and": [ "shop=clothes", @@ -419144,7 +419501,7 @@ }, { "question": "NonSoloSport", - "icon": "./assets/data/nsi/logos/nonsolosport-d72191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nonsolosport-d72191.png", "osmTags": { "and": [ "clothes=sports", @@ -419161,7 +419518,7 @@ }, { "question": "Nordstrom Rack", - "icon": "./assets/data/nsi/logos/nordstromrack-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordstromrack-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419177,7 +419534,7 @@ }, { "question": "North Sails", - "icon": "./assets/data/nsi/logos/northsails-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/northsails-3937bd.svg", "osmTags": { "and": [ "clothes=sailing", @@ -419194,7 +419551,7 @@ }, { "question": "Northern Reflections", - "icon": "./assets/data/nsi/logos/northernreflections-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernreflections-9e1367.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419210,7 +419567,7 @@ }, { "question": "Nudie Jeans", - "icon": "./assets/data/nsi/logos/nudiejeans-085abf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nudiejeans-085abf.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419226,7 +419583,7 @@ }, { "question": "Nuna Lie", - "icon": "./assets/data/nsi/logos/nunalie-83ed0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nunalie-83ed0b.png", "osmTags": { "and": [ "clothes=women", @@ -419243,7 +419600,7 @@ }, { "question": "Nuvolari", - "icon": "./assets/data/nsi/logos/nuvolari-d72191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nuvolari-d72191.png", "osmTags": { "and": [ "shop=clothes", @@ -419273,7 +419630,7 @@ }, { "question": "O'Neill", - "icon": "./assets/data/nsi/logos/oneill-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oneill-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419289,7 +419646,7 @@ }, { "question": "Oasis", - "icon": "./assets/data/nsi/logos/oasis-cefcc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oasis-cefcc8.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419305,7 +419662,7 @@ }, { "question": "Off-White", - "icon": "./assets/data/nsi/logos/offwhite-3937bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/offwhite-3937bd.svg", "osmTags": { "and": [ "shop=clothes", @@ -419321,7 +419678,7 @@ }, { "question": "Okaïdi", - "icon": "./assets/data/nsi/logos/okaidi-eea264.png", + "icon": "https://data.mapcomplete.org/nsi//logos/okaidi-eea264.png", "osmTags": { "and": [ "shop=clothes", @@ -419337,7 +419694,7 @@ }, { "question": "Old Navy", - "icon": "./assets/data/nsi/logos/oldnavy-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldnavy-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419353,7 +419710,7 @@ }, { "question": "Oliver Bonas", - "icon": "./assets/data/nsi/logos/oliverbonas-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oliverbonas-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419385,7 +419742,7 @@ }, { "question": "Oltre", - "icon": "./assets/data/nsi/logos/oltre-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oltre-d72191.jpg", "osmTags": { "and": [ "clothes=women", @@ -419402,7 +419759,7 @@ }, { "question": "OLYMP", - "icon": "./assets/data/nsi/logos/olymp-96f120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/olymp-96f120.jpg", "osmTags": { "and": [ "clothes=men", @@ -419419,7 +419776,7 @@ }, { "question": "Olymp & Hades", - "icon": "./assets/data/nsi/logos/olympandhades-74806d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/olympandhades-74806d.png", "osmTags": { "and": [ "shop=clothes", @@ -419450,7 +419807,7 @@ }, { "question": "Once Upon a Child", - "icon": "./assets/data/nsi/logos/onceuponachild-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/onceuponachild-0a21d9.png", "osmTags": { "and": [ "shop=clothes", @@ -419466,7 +419823,7 @@ }, { "question": "ONLY", - "icon": "./assets/data/nsi/logos/only-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/only-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419482,7 +419839,7 @@ }, { "question": "ONLY & SONS", - "icon": "./assets/data/nsi/logos/onlyandsons-b5590c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onlyandsons-b5590c.jpg", "osmTags": { "and": [ "clothes=men", @@ -419499,7 +419856,7 @@ }, { "question": "oodji", - "icon": "./assets/data/nsi/logos/oodji-7b6907.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oodji-7b6907.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419530,7 +419887,7 @@ }, { "question": "Orcanta", - "icon": "./assets/data/nsi/logos/orcanta-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orcanta-90f7b7.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -419547,7 +419904,7 @@ }, { "question": "Orchestra", - "icon": "./assets/data/nsi/logos/orchestra-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orchestra-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -419563,7 +419920,7 @@ }, { "question": "Original Marines", - "icon": "./assets/data/nsi/logos/originalmarines-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/originalmarines-d72191.jpg", "osmTags": { "and": [ "clothes=babies;children", @@ -419580,7 +419937,7 @@ }, { "question": "orsay", - "icon": "./assets/data/nsi/logos/orsay-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orsay-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -419597,7 +419954,7 @@ }, { "question": "OshKosh B'gosh", - "icon": "./assets/data/nsi/logos/oshkoshbgosh-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oshkoshbgosh-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -419614,7 +419971,7 @@ }, { "question": "Outfit", - "icon": "./assets/data/nsi/logos/outfit-bbe8af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/outfit-bbe8af.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419630,7 +419987,7 @@ }, { "question": "OVS", - "icon": "./assets/data/nsi/logos/ovs-4461a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ovs-4461a4.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419646,7 +420003,7 @@ }, { "question": "OVS (Georgia)", - "icon": "./assets/data/nsi/logos/ovs-82a2eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ovs-82a2eb.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419664,7 +420021,7 @@ }, { "question": "OVS Kids", - "icon": "./assets/data/nsi/logos/ovskids-b5590c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ovskids-b5590c.jpg", "osmTags": { "and": [ "clothes=children", @@ -419681,7 +420038,7 @@ }, { "question": "Oysho", - "icon": "./assets/data/nsi/logos/oysho-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oysho-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419697,7 +420054,7 @@ }, { "question": "OZETA", - "icon": "./assets/data/nsi/logos/ozeta-691270.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ozeta-691270.jpg", "osmTags": { "and": [ "clothes=suits", @@ -419714,7 +420071,7 @@ }, { "question": "Pablo", - "icon": "./assets/data/nsi/logos/pablo-ab5608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pablo-ab5608.jpg", "osmTags": { "and": [ "clothes=women", @@ -419731,7 +420088,7 @@ }, { "question": "PacSun", - "icon": "./assets/data/nsi/logos/pacsun-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacsun-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419747,7 +420104,7 @@ }, { "question": "Palmers", - "icon": "./assets/data/nsi/logos/palmers-96f120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmers-96f120.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419763,7 +420120,7 @@ }, { "question": "Pantaloons", - "icon": "./assets/data/nsi/logos/pantaloons-f8e8b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pantaloons-f8e8b1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419779,7 +420136,7 @@ }, { "question": "Paprika", - "icon": "./assets/data/nsi/logos/paprika-906b75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paprika-906b75.jpg", "osmTags": { "and": [ "clothes=women", @@ -419796,7 +420153,7 @@ }, { "question": "Patagonia", - "icon": "./assets/data/nsi/logos/patagonia-5dc190.png", + "icon": "https://data.mapcomplete.org/nsi//logos/patagonia-5dc190.png", "osmTags": { "and": [ "clothes=outdoor", @@ -419813,7 +420170,7 @@ }, { "question": "Patrizia Pepe", - "icon": "./assets/data/nsi/logos/patriziapepe-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/patriziapepe-d72191.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419829,7 +420186,7 @@ }, { "question": "Paul Smith", - "icon": "./assets/data/nsi/logos/paulsmith-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paulsmith-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419861,7 +420218,7 @@ }, { "question": "Peacocks", - "icon": "./assets/data/nsi/logos/peacocks-c6ef05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peacocks-c6ef05.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419877,7 +420234,7 @@ }, { "question": "Peek & Cloppenburg", - "icon": "./assets/data/nsi/logos/peekandcloppenburg-65e711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peekandcloppenburg-65e711.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419893,16 +420250,16 @@ }, { "question": "Pendleton", - "icon": "./assets/data/nsi/logos/pendleton-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pendleton-3937bd.jpg", "osmTags": { "and": [ - "official_name=Pendleton Woolen Mills", "shop=clothes", { "or": [ "brand=Pendleton", "brand:wikidata=Q7162488", - "name=Pendleton" + "name=Pendleton", + "official_name=Pendleton Woolen Mills" ] } ] @@ -419910,7 +420267,7 @@ }, { "question": "Penneys", - "icon": "./assets/data/nsi/logos/penneys-b30dbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penneys-b30dbb.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419926,7 +420283,7 @@ }, { "question": "Penningtons", - "icon": "./assets/data/nsi/logos/penningtons-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penningtons-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -419943,7 +420300,7 @@ }, { "question": "Penshoppe", - "icon": "./assets/data/nsi/logos/penshoppe-08e127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penshoppe-08e127.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419959,7 +420316,7 @@ }, { "question": "Penti", - "icon": "./assets/data/nsi/logos/penti-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/penti-3937bd.png", "osmTags": { "and": [ "clothes=underwear;women", @@ -419976,7 +420333,7 @@ }, { "question": "PEP", - "icon": "./assets/data/nsi/logos/pep-f0ab19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pep-f0ab19.jpg", "osmTags": { "and": [ "shop=clothes", @@ -419992,7 +420349,7 @@ }, { "question": "Pep&Co", - "icon": "./assets/data/nsi/logos/pepandco-94f7c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pepandco-94f7c8.png", "osmTags": { "and": [ "shop=clothes", @@ -420008,7 +420365,7 @@ }, { "question": "Pepco", - "icon": "./assets/data/nsi/logos/pepco-9b55e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pepco-9b55e7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420024,7 +420381,7 @@ }, { "question": "Pepe Jeans", - "icon": "./assets/data/nsi/logos/pepejeans-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pepejeans-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420040,7 +420397,7 @@ }, { "question": "Perry Ellis", - "icon": "./assets/data/nsi/logos/perryellis-77213a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perryellis-77213a.jpg", "osmTags": { "and": [ "clothes=men", @@ -420057,7 +420414,7 @@ }, { "question": "Peter Alexander", - "icon": "./assets/data/nsi/logos/peteralexander-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peteralexander-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420073,7 +420430,7 @@ }, { "question": "Peter England", - "icon": "./assets/data/nsi/logos/peterengland-f8e8b1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/peterengland-f8e8b1.png", "osmTags": { "and": [ "clothes=men", @@ -420090,7 +420447,7 @@ }, { "question": "Peter Hahn", - "icon": "./assets/data/nsi/logos/peterhahn-5713f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peterhahn-5713f3.jpg", "osmTags": { "and": [ "clothes=women", @@ -420107,7 +420464,7 @@ }, { "question": "Peter Millar", - "icon": "./assets/data/nsi/logos/petermillar-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petermillar-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420123,7 +420480,7 @@ }, { "question": "Petit Bateau", - "icon": "./assets/data/nsi/logos/petitbateau-ef24e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petitbateau-ef24e9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420139,7 +420496,7 @@ }, { "question": "Phase Eight", - "icon": "./assets/data/nsi/logos/phaseeight-9ea1fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phaseeight-9ea1fe.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420170,7 +420527,7 @@ }, { "question": "Piazza Italia", - "icon": "./assets/data/nsi/logos/piazzaitalia-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piazzaitalia-d72191.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420201,7 +420558,7 @@ }, { "question": "Pierre Cardin", - "icon": "./assets/data/nsi/logos/pierrecardin-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pierrecardin-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420231,7 +420588,7 @@ }, { "question": "Pimkie", - "icon": "./assets/data/nsi/logos/pimkie-c56deb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pimkie-c56deb.jpg", "osmTags": { "and": [ "clothes=women", @@ -420248,7 +420605,7 @@ }, { "question": "Pink", - "icon": "./assets/data/nsi/logos/pink-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pink-3937bd.jpg", "osmTags": { "and": [ "clothes=underwear;women", @@ -420265,7 +420622,7 @@ }, { "question": "Pink Woman", - "icon": "./assets/data/nsi/logos/pinkwoman-cbc059.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pinkwoman-cbc059.jpg", "osmTags": { "and": [ "clothes=women", @@ -420282,7 +420639,7 @@ }, { "question": "Pinko", - "icon": "./assets/data/nsi/logos/pinko-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pinko-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -420299,7 +420656,7 @@ }, { "question": "Piticas", - "icon": "./assets/data/nsi/logos/piticas-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piticas-c7d1e1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420315,7 +420672,7 @@ }, { "question": "Plato's Closet", - "icon": "./assets/data/nsi/logos/platoscloset-0615dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/platoscloset-0615dc.png", "osmTags": { "and": [ "second_hand=only", @@ -420332,7 +420689,7 @@ }, { "question": "PME Legend", - "icon": "./assets/data/nsi/logos/pmelegend-5eeeb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pmelegend-5eeeb4.jpg", "osmTags": { "and": [ "clothes=men", @@ -420364,7 +420721,7 @@ }, { "question": "Polo Ralph Lauren", - "icon": "./assets/data/nsi/logos/poloralphlauren-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poloralphlauren-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420380,7 +420737,7 @@ }, { "question": "Pompea", - "icon": "./assets/data/nsi/logos/pompea-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pompea-d72191.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -420397,7 +420754,7 @@ }, { "question": "Portmans", - "icon": "./assets/data/nsi/logos/portmans-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portmans-2bb477.jpg", "osmTags": { "and": [ "clothes=women", @@ -420414,7 +420771,7 @@ }, { "question": "Postie", - "icon": "./assets/data/nsi/logos/postie-f8b7cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postie-f8b7cc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420430,7 +420787,7 @@ }, { "question": "Power Fashion", - "icon": "./assets/data/nsi/logos/power-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/power-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420446,7 +420803,7 @@ }, { "question": "Prada", - "icon": "./assets/data/nsi/logos/prada-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prada-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420462,7 +420819,7 @@ }, { "question": "Primark", - "icon": "./assets/data/nsi/logos/primark-5d2556.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primark-5d2556.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420478,7 +420835,7 @@ }, { "question": "Primigi", - "icon": "./assets/data/nsi/logos/primigistore-7efe54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primigistore-7efe54.jpg", "osmTags": { "and": [ "clothes=babies;children", @@ -420495,7 +420852,7 @@ }, { "question": "Princesse tam.tam", - "icon": "./assets/data/nsi/logos/princessetamtam-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/princessetamtam-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420511,7 +420868,7 @@ }, { "question": "Promod", - "icon": "./assets/data/nsi/logos/promod-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/promod-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420527,7 +420884,7 @@ }, { "question": "PS Fashion", - "icon": "./assets/data/nsi/logos/psfashion-9cb936.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/psfashion-9cb936.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420543,7 +420900,7 @@ }, { "question": "Psycho Bunny", - "icon": "./assets/data/nsi/logos/psychobunny-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/psychobunny-0615dc.jpg", "osmTags": { "and": [ "clothes=men", @@ -420560,7 +420917,7 @@ }, { "question": "Pull & Bear", - "icon": "./assets/data/nsi/logos/pullandbear-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pullandbear-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420576,7 +420933,7 @@ }, { "question": "Puma", - "icon": "./assets/data/nsi/logos/puma-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puma-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420592,7 +420949,7 @@ }, { "question": "Puma Outlet", - "icon": "./assets/data/nsi/logos/pumaoutlet-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pumaoutlet-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420608,7 +420965,7 @@ }, { "question": "Punt Roma", - "icon": "./assets/data/nsi/logos/puntroma-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puntroma-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -420625,7 +420982,7 @@ }, { "question": "Quiksilver", - "icon": "./assets/data/nsi/logos/quiksilver-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quiksilver-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420641,7 +420998,7 @@ }, { "question": "Quiosque", - "icon": "./assets/data/nsi/logos/quiosque-196c99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quiosque-196c99.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420657,7 +421014,7 @@ }, { "question": "Quiz", - "icon": "./assets/data/nsi/logos/quiz-94f7c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quiz-94f7c8.jpg", "osmTags": { "and": [ "clothes=women", @@ -420674,7 +421031,7 @@ }, { "question": "Rage", - "icon": "./assets/data/nsi/logos/rage-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rage-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420690,7 +421047,7 @@ }, { "question": "Raging Bull", - "icon": "./assets/data/nsi/logos/ragingbull-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ragingbull-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420706,7 +421063,7 @@ }, { "question": "Rainbow", - "icon": "./assets/data/nsi/logos/rainbow-d6c7ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rainbow-d6c7ca.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420722,7 +421079,7 @@ }, { "question": "Ramraj Cotton", - "icon": "./assets/data/nsi/logos/ramrajcotton-f8e8b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ramrajcotton-f8e8b1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420738,7 +421095,7 @@ }, { "question": "Reebok", - "icon": "./assets/data/nsi/logos/reebok-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reebok-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420754,7 +421111,7 @@ }, { "question": "Refinery", - "icon": "./assets/data/nsi/logos/refinery-bd328b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/refinery-bd328b.png", "osmTags": { "and": [ "shop=clothes", @@ -420770,7 +421127,7 @@ }, { "question": "Reiss", - "icon": "./assets/data/nsi/logos/reiss-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reiss-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420786,7 +421143,7 @@ }, { "question": "Reitmans", - "icon": "./assets/data/nsi/logos/reitmans-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reitmans-9e1367.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420802,7 +421159,7 @@ }, { "question": "Relay Jeans", - "icon": "./assets/data/nsi/logos/relayjeans-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/relayjeans-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420832,7 +421189,7 @@ }, { "question": "Renner", - "icon": "./assets/data/nsi/logos/renner-41b5c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renner-41b5c2.jpg", "osmTags": { "and": [ "shop=clothes", @@ -420848,7 +421205,7 @@ }, { "question": "Renuar", - "icon": "./assets/data/nsi/logos/renuar-e991b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renuar-e991b5.jpg", "osmTags": { "and": [ "clothes=women;men", @@ -420867,7 +421224,7 @@ }, { "question": "Reserva", - "icon": "./assets/data/nsi/logos/reserva-c7d1e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/reserva-c7d1e1.png", "osmTags": { "and": [ "clothes=men", @@ -420884,7 +421241,7 @@ }, { "question": "Reserved", - "icon": "./assets/data/nsi/logos/reserved-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/reserved-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -420900,16 +421257,16 @@ }, { "question": "RFO", - "icon": "./assets/data/nsi/logos/rfo-bd328b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rfo-bd328b.png", "osmTags": { "and": [ - "official_name=Renegade Fashion Outlet", "shop=clothes", { "or": [ "brand=Renegade Fashion Outlet", "brand:wikidata=Q116457467", - "name=RFO" + "name=RFO", + "official_name=Renegade Fashion Outlet" ] } ] @@ -420917,7 +421274,7 @@ }, { "question": "Riachuelo", - "icon": "./assets/data/nsi/logos/riachuelo-c7d1e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riachuelo-c7d1e1.png", "osmTags": { "and": [ "shop=clothes", @@ -420933,7 +421290,7 @@ }, { "question": "Ricki's", - "icon": "./assets/data/nsi/logos/rickis-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rickis-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -420950,7 +421307,7 @@ }, { "question": "Rinascimento", - "icon": "./assets/data/nsi/logos/rinascimento-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rinascimento-d72191.jpg", "osmTags": { "and": [ "clothes=women", @@ -420967,7 +421324,7 @@ }, { "question": "Rip Curl", - "icon": "./assets/data/nsi/logos/ripcurl-e95856.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ripcurl-e95856.jpg", "osmTags": { "and": [ "clothes=sports", @@ -420984,7 +421341,7 @@ }, { "question": "Riu Paris", - "icon": "./assets/data/nsi/logos/riuparis-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riuparis-3937bd.png", "osmTags": { "and": [ "clothes=women", @@ -421001,7 +421358,7 @@ }, { "question": "River Island", - "icon": "./assets/data/nsi/logos/riverisland-a754e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/riverisland-a754e7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421017,7 +421374,7 @@ }, { "question": "Rivers", - "icon": "./assets/data/nsi/logos/rivers-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rivers-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421033,7 +421390,7 @@ }, { "question": "Robert Graham", - "icon": "./assets/data/nsi/logos/robertgraham-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robertgraham-0a21d9.jpg", "osmTags": { "and": [ "clothes=men", @@ -421050,7 +421407,7 @@ }, { "question": "Roberto Cavalli", - "icon": "./assets/data/nsi/logos/robertocavalli-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robertocavalli-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421066,7 +421423,7 @@ }, { "question": "Rockmans", - "icon": "./assets/data/nsi/logos/rockmans-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockmans-392c8b.jpg", "osmTags": { "and": [ "clothes=women", @@ -421083,7 +421440,7 @@ }, { "question": "Rockwear", - "icon": "./assets/data/nsi/logos/rockwear-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockwear-392c8b.jpg", "osmTags": { "and": [ "clothes=women;sports", @@ -421102,7 +421459,7 @@ }, { "question": "Rodd & Gunn", - "icon": "./assets/data/nsi/logos/roddandgunn-5bf61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roddandgunn-5bf61e.jpg", "osmTags": { "and": [ "clothes=men", @@ -421119,7 +421476,7 @@ }, { "question": "Roman", - "icon": "./assets/data/nsi/logos/roman-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roman-7b1694.jpg", "osmTags": { "and": [ "clothes=women", @@ -421136,7 +421493,7 @@ }, { "question": "Roots", - "icon": "./assets/data/nsi/logos/roots-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roots-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421152,7 +421509,7 @@ }, { "question": "RougeGorge", - "icon": "./assets/data/nsi/logos/rougegorge-6db462.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rougegorge-6db462.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -421169,7 +421526,7 @@ }, { "question": "rue21", - "icon": "./assets/data/nsi/logos/rue21-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rue21-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421185,7 +421542,7 @@ }, { "question": "RW&CO.", - "icon": "./assets/data/nsi/logos/rwandco-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwandco-9e1367.jpg", "osmTags": { "and": [ "clothes=women;men", @@ -421202,7 +421559,7 @@ }, { "question": "s.Oliver", - "icon": "./assets/data/nsi/logos/soliver-fb408e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/soliver-fb408e.svg", "osmTags": { "and": [ "shop=clothes", @@ -421218,7 +421575,7 @@ }, { "question": "Saint James", - "icon": "./assets/data/nsi/logos/saintjames-90f7b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saintjames-90f7b7.png", "osmTags": { "and": [ "shop=clothes", @@ -421234,7 +421591,7 @@ }, { "question": "Saint Laurent", - "icon": "./assets/data/nsi/logos/saintlaurent-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintlaurent-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421252,7 +421609,7 @@ }, { "question": "Salomon", - "icon": "./assets/data/nsi/logos/salomon-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salomon-3937bd.jpg", "osmTags": { "and": [ "clothes=outdoor;sports", @@ -421270,7 +421627,7 @@ }, { "question": "Saltrock", - "icon": "./assets/data/nsi/logos/saltrock-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saltrock-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421286,7 +421643,7 @@ }, { "question": "Sam 73", - "icon": "./assets/data/nsi/logos/sam73-5134d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sam73-5134d4.png", "osmTags": { "and": [ "shop=clothes", @@ -421302,7 +421659,7 @@ }, { "question": "Samsøe Samsøe", - "icon": "./assets/data/nsi/logos/samsoesamsoe-5e0a04.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samsoesamsoe-5e0a04.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421318,7 +421675,7 @@ }, { "question": "Sandro", - "icon": "./assets/data/nsi/logos/sandro-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandro-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421334,7 +421691,7 @@ }, { "question": "Santory", - "icon": "./assets/data/nsi/logos/santory-c4029f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santory-c4029f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421350,7 +421707,7 @@ }, { "question": "Sarar", - "icon": "./assets/data/nsi/logos/sarar-86c702.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sarar-86c702.png", "osmTags": { "and": [ "shop=clothes", @@ -421380,7 +421737,7 @@ }, { "question": "Schiesser", - "icon": "./assets/data/nsi/logos/schiesser-74806d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schiesser-74806d.svg", "osmTags": { "and": [ "clothes=underwear", @@ -421397,7 +421754,7 @@ }, { "question": "Scotch & Soda", - "icon": "./assets/data/nsi/logos/scotchandsoda-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scotchandsoda-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421413,7 +421770,7 @@ }, { "question": "Scrubs & Beyond", - "icon": "./assets/data/nsi/logos/scrubsandbeyond-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scrubsandbeyond-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421429,7 +421786,7 @@ }, { "question": "Seasalt", - "icon": "./assets/data/nsi/logos/seasalt-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seasalt-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421445,7 +421802,7 @@ }, { "question": "Seed Heritage", - "icon": "./assets/data/nsi/logos/seedheritage-2bb477.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seedheritage-2bb477.jpg", "osmTags": { "and": [ "clothes=women", @@ -421462,7 +421819,7 @@ }, { "question": "Seidensticker", - "icon": "./assets/data/nsi/logos/seidensticker-28c0e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seidensticker-28c0e5.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421478,7 +421835,7 @@ }, { "question": "Sela", - "icon": "./assets/data/nsi/logos/sela-2d1caa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sela-2d1caa.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421494,7 +421851,7 @@ }, { "question": "Select", - "icon": "./assets/data/nsi/logos/select-476678.png", + "icon": "https://data.mapcomplete.org/nsi//logos/select-476678.png", "osmTags": { "and": [ "clothes=women", @@ -421511,7 +421868,7 @@ }, { "question": "SELECTED", - "icon": "./assets/data/nsi/logos/selected-b5590c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selected-b5590c.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421527,7 +421884,7 @@ }, { "question": "Selfast", - "icon": "./assets/data/nsi/logos/selfast-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selfast-bd328b.jpg", "osmTags": { "and": [ "clothes=women", @@ -421544,7 +421901,7 @@ }, { "question": "Senqu", - "icon": "./assets/data/nsi/logos/senqu-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senqu-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421560,7 +421917,7 @@ }, { "question": "Serge Blanco", - "icon": "./assets/data/nsi/logos/sergeblanco-4a3e29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sergeblanco-4a3e29.jpg", "osmTags": { "and": [ "clothes=men", @@ -421577,7 +421934,7 @@ }, { "question": "Sergent Major", - "icon": "./assets/data/nsi/logos/sergentmajor-ef9e06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sergentmajor-ef9e06.jpg", "osmTags": { "and": [ "clothes=babies;children", @@ -421594,7 +421951,7 @@ }, { "question": "Sfera", - "icon": "./assets/data/nsi/logos/sfera-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sfera-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421610,7 +421967,7 @@ }, { "question": "SHEIKE", - "icon": "./assets/data/nsi/logos/sheike-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sheike-392c8b.jpg", "osmTags": { "and": [ "clothes=women", @@ -421627,7 +421984,7 @@ }, { "question": "Shiekh", - "icon": "./assets/data/nsi/logos/shiekh-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shiekh-0a21d9.png", "osmTags": { "and": [ "shop=clothes", @@ -421643,7 +422000,7 @@ }, { "question": "Shoeby", - "icon": "./assets/data/nsi/logos/shoeby-91c4cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoeby-91c4cd.png", "osmTags": { "and": [ "shop=clothes", @@ -421659,7 +422016,7 @@ }, { "question": "sigikid", - "icon": "./assets/data/nsi/logos/sigikid-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sigikid-74806d.jpg", "osmTags": { "and": [ "clothes=children", @@ -421692,7 +422049,7 @@ }, { "question": "Sinsay", - "icon": "./assets/data/nsi/logos/sinsay-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinsay-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421708,7 +422065,7 @@ }, { "question": "Sirens", - "icon": "./assets/data/nsi/logos/sirens-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sirens-9e1367.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421724,7 +422081,7 @@ }, { "question": "Sisley", - "icon": "./assets/data/nsi/logos/sisley-9d6d32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sisley-9d6d32.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421740,7 +422097,7 @@ }, { "question": "Slaters", - "icon": "./assets/data/nsi/logos/slaters-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slaters-7b1694.jpg", "osmTags": { "and": [ "clothes=suits", @@ -421757,7 +422114,7 @@ }, { "question": "Smuggler", - "icon": "./assets/data/nsi/logos/smuggler-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smuggler-90f7b7.jpg", "osmTags": { "and": [ "clothes=men", @@ -421804,7 +422161,7 @@ }, { "question": "Soft Surroundings", - "icon": "./assets/data/nsi/logos/softsurroundings-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/softsurroundings-0a21d9.jpg", "osmTags": { "and": [ "clothes=women", @@ -421821,7 +422178,7 @@ }, { "question": "Soma", - "icon": "./assets/data/nsi/logos/soma-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/soma-0a21d9.jpg", "osmTags": { "and": [ "clothes=underwear;women", @@ -421839,7 +422196,7 @@ }, { "question": "SØR", - "icon": "./assets/data/nsi/logos/sor-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sor-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421855,7 +422212,7 @@ }, { "question": "Sottotono", - "icon": "./assets/data/nsi/logos/sottotono-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sottotono-d72191.jpg", "osmTags": { "and": [ "clothes=men", @@ -421872,7 +422229,7 @@ }, { "question": "Spanx", - "icon": "./assets/data/nsi/logos/spanx-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spanx-0a21d9.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -421889,7 +422246,7 @@ }, { "question": "SPAO", - "icon": "./assets/data/nsi/logos/spao-d098b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spao-d098b5.png", "osmTags": { "and": [ "shop=clothes", @@ -421909,7 +422266,7 @@ }, { "question": "sportscene", - "icon": "./assets/data/nsi/logos/sportscene-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportscene-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421925,7 +422282,7 @@ }, { "question": "Sportscraft", - "icon": "./assets/data/nsi/logos/sportscraft-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportscraft-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421941,7 +422298,7 @@ }, { "question": "Sportsgirl", - "icon": "./assets/data/nsi/logos/sportsgirl-392c8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sportsgirl-392c8b.png", "osmTags": { "and": [ "clothes=women", @@ -421958,7 +422315,7 @@ }, { "question": "Springfield", - "icon": "./assets/data/nsi/logos/springfield-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfield-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421974,7 +422331,7 @@ }, { "question": "St. John", - "icon": "./assets/data/nsi/logos/stjohn-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohn-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -421990,7 +422347,7 @@ }, { "question": "St. John Outlet", - "icon": "./assets/data/nsi/logos/stjohnoutlet-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnoutlet-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422006,7 +422363,7 @@ }, { "question": "State & Liberty", - "icon": "./assets/data/nsi/logos/stateandliberty-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stateandliberty-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422022,7 +422379,7 @@ }, { "question": "Stefanel", - "icon": "./assets/data/nsi/logos/stefanel-b6b3bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stefanel-b6b3bf.jpg", "osmTags": { "and": [ "clothes=women", @@ -422039,7 +422396,7 @@ }, { "question": "Stella McCartney", - "icon": "./assets/data/nsi/logos/stellamccartney-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stellamccartney-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -422070,7 +422427,7 @@ }, { "question": "Stitches", - "icon": "./assets/data/nsi/logos/stitches-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stitches-9e1367.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422102,7 +422459,7 @@ }, { "question": "Stradivarius", - "icon": "./assets/data/nsi/logos/stradivarius-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stradivarius-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -422133,7 +422490,7 @@ }, { "question": "Street One", - "icon": "./assets/data/nsi/logos/streetone-1c3d1b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/streetone-1c3d1b.png", "osmTags": { "and": [ "shop=clothes", @@ -422149,7 +422506,7 @@ }, { "question": "Studio 88", - "icon": "./assets/data/nsi/logos/studio88-40af4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/studio88-40af4d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422180,7 +422537,7 @@ }, { "question": "Stylenanda", - "icon": "./assets/data/nsi/logos/stylenanda-d098b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stylenanda-d098b5.jpg", "osmTags": { "and": [ "clothes=women", @@ -422197,7 +422554,7 @@ }, { "question": "Suburbia", - "icon": "./assets/data/nsi/logos/suburbia-c4029f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suburbia-c4029f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422213,7 +422570,7 @@ }, { "question": "Sud Express", - "icon": "./assets/data/nsi/logos/sudexpress-4a3e29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sudexpress-4a3e29.jpg", "osmTags": { "and": [ "clothes=women", @@ -422246,7 +422603,7 @@ }, { "question": "Suitsupply", - "icon": "./assets/data/nsi/logos/suitsupply-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suitsupply-3937bd.jpg", "osmTags": { "and": [ "clothes=suits", @@ -422263,7 +422620,7 @@ }, { "question": "Sundance", - "icon": "./assets/data/nsi/logos/sundance-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sundance-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422279,7 +422636,7 @@ }, { "question": "Superdry", - "icon": "./assets/data/nsi/logos/superdry-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/superdry-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -422295,7 +422652,7 @@ }, { "question": "Supré", - "icon": "./assets/data/nsi/logos/supre-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supre-392c8b.jpg", "osmTags": { "and": [ "clothes=women", @@ -422327,7 +422684,7 @@ }, { "question": "Suzanne Grae", - "icon": "./assets/data/nsi/logos/suzannegrae-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suzannegrae-392c8b.jpg", "osmTags": { "and": [ "clothes=women", @@ -422344,7 +422701,7 @@ }, { "question": "Suzy Shier", - "icon": "./assets/data/nsi/logos/suzyshier-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suzyshier-9e1367.jpg", "osmTags": { "and": [ "clothes=women", @@ -422361,7 +422718,7 @@ }, { "question": "Sweaty Betty", - "icon": "./assets/data/nsi/logos/sweatybetty-81ce8b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sweatybetty-81ce8b.svg", "osmTags": { "and": [ "clothes=women;sports", @@ -422378,7 +422735,7 @@ }, { "question": "T.M.Lewin", - "icon": "./assets/data/nsi/logos/tmlewin-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tmlewin-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422394,7 +422751,7 @@ }, { "question": "Takko Fashion", - "icon": "./assets/data/nsi/logos/takkofashion-80f395.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/takkofashion-80f395.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422411,7 +422768,7 @@ }, { "question": "Talbots", - "icon": "./assets/data/nsi/logos/talbots-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/talbots-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422427,7 +422784,7 @@ }, { "question": "Tally Weijl", - "icon": "./assets/data/nsi/logos/tallyweijl-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tallyweijl-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -422460,7 +422817,7 @@ }, { "question": "Tape à l'Œil", - "icon": "./assets/data/nsi/logos/tapealoeil-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tapealoeil-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -422477,7 +422834,7 @@ }, { "question": "Tarocash", - "icon": "./assets/data/nsi/logos/tarocash-392c8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tarocash-392c8b.png", "osmTags": { "and": [ "clothes=men;fashion", @@ -422496,7 +422853,7 @@ }, { "question": "Tartine et Chocolat", - "icon": "./assets/data/nsi/logos/tartineetchocolat-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tartineetchocolat-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -422513,7 +422870,7 @@ }, { "question": "Tati", - "icon": "./assets/data/nsi/logos/tati-72a3d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tati-72a3d7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422529,7 +422886,7 @@ }, { "question": "Tatuum", - "icon": "./assets/data/nsi/logos/tatuum-a6485d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tatuum-a6485d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422545,7 +422902,7 @@ }, { "question": "Ted Baker", - "icon": "./assets/data/nsi/logos/tedbaker-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tedbaker-3937bd.png", "osmTags": { "and": [ "shop=clothes", @@ -422561,7 +422918,7 @@ }, { "question": "Terranova", - "icon": "./assets/data/nsi/logos/terranova-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terranova-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422577,7 +422934,7 @@ }, { "question": "terStal", - "icon": "./assets/data/nsi/logos/terstal-91c4cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terstal-91c4cd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422593,7 +422950,7 @@ }, { "question": "TEXTILE house", - "icon": "./assets/data/nsi/logos/textilehouse-86acc9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/textilehouse-86acc9.png", "osmTags": { "and": [ "second_hand=only", @@ -422610,7 +422967,7 @@ }, { "question": "Tezenis", - "icon": "./assets/data/nsi/logos/tezenis-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tezenis-3937bd.jpg", "osmTags": { "and": [ "clothes=women;underwear;swimwear;men;children", @@ -422627,7 +422984,7 @@ }, { "question": "The Children's Place", - "icon": "./assets/data/nsi/logos/thechildrensplace-0e6d3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thechildrensplace-0e6d3d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422644,7 +423001,7 @@ }, { "question": "The Edinburgh Woollen Mill", - "icon": "./assets/data/nsi/logos/theedinburghwoollenmill-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theedinburghwoollenmill-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422660,7 +423017,7 @@ }, { "question": "The FIX", - "icon": "./assets/data/nsi/logos/thefix-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thefix-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422676,7 +423033,7 @@ }, { "question": "The Kooples", - "icon": "./assets/data/nsi/logos/thekooples-f50f8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thekooples-f50f8c.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422692,7 +423049,7 @@ }, { "question": "The North Face", - "icon": "./assets/data/nsi/logos/thenorthface-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thenorthface-3937bd.jpg", "osmTags": { "and": [ "clothes=outdoor", @@ -422709,7 +423066,7 @@ }, { "question": "The Sting", - "icon": "./assets/data/nsi/logos/thesting-f7ce4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thesting-f7ce4c.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422725,7 +423082,7 @@ }, { "question": "The Stone", - "icon": "./assets/data/nsi/logos/thestone-91c4cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thestone-91c4cd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422772,7 +423129,7 @@ }, { "question": "Thom Browne", - "icon": "./assets/data/nsi/logos/thombrowne-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thombrowne-3937bd.jpg", "osmTags": { "and": [ "clothes=children;fashion;men;women", @@ -422789,7 +423146,7 @@ }, { "question": "Thyme Maternity", - "icon": "./assets/data/nsi/logos/thymematernity-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thymematernity-9e1367.jpg", "osmTags": { "and": [ "clothes=maternity", @@ -422806,7 +423163,7 @@ }, { "question": "Tillys", - "icon": "./assets/data/nsi/logos/tillys-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tillys-0a21d9.jpg", "osmTags": { "and": [ "clothes=children;men;women", @@ -422823,7 +423180,7 @@ }, { "question": "Timberland", - "icon": "./assets/data/nsi/logos/timberland-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timberland-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422839,7 +423196,7 @@ }, { "question": "Tip Top Tailors", - "icon": "./assets/data/nsi/logos/tiptoptailors-9e1367.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tiptoptailors-9e1367.png", "osmTags": { "and": [ "clothes=men", @@ -422856,7 +423213,7 @@ }, { "question": "Todomoda", - "icon": "./assets/data/nsi/logos/todomoda-69b017.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/todomoda-69b017.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422872,7 +423229,7 @@ }, { "question": "Tom Ford", - "icon": "./assets/data/nsi/logos/tomford-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomford-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422888,7 +423245,7 @@ }, { "question": "Tom Tailor", - "icon": "./assets/data/nsi/logos/tomtailor-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomtailor-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422904,7 +423261,7 @@ }, { "question": "Tommy Bahama", - "icon": "./assets/data/nsi/logos/tommybahama-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tommybahama-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422920,7 +423277,7 @@ }, { "question": "Tommy Hilfiger", - "icon": "./assets/data/nsi/logos/tommyhilfiger-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tommyhilfiger-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -422936,7 +423293,7 @@ }, { "question": "Tommy Hilfiger Kids", - "icon": "./assets/data/nsi/logos/tommyhilfigerkids-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tommyhilfigerkids-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -422953,7 +423310,7 @@ }, { "question": "Top Secret", - "icon": "./assets/data/nsi/logos/topsecret-e27654.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topsecret-e27654.png", "osmTags": { "and": [ "shop=clothes", @@ -422969,7 +423326,7 @@ }, { "question": "Topman", - "icon": "./assets/data/nsi/logos/topman-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topman-3937bd.jpg", "osmTags": { "and": [ "clothes=men", @@ -422986,7 +423343,7 @@ }, { "question": "Topshop", - "icon": "./assets/data/nsi/logos/topshop-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topshop-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -423003,7 +423360,7 @@ }, { "question": "TopSport / ტოპსპორტი", - "icon": "./assets/data/nsi/logos/topsport-82a2eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topsport-82a2eb.jpg", "osmTags": { "and": [ "clothes=sports", @@ -423044,7 +423401,7 @@ }, { "question": "Torrid", - "icon": "./assets/data/nsi/logos/torrid-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torrid-0a21d9.jpg", "osmTags": { "and": [ "clothes=oversize;women", @@ -423061,7 +423418,7 @@ }, { "question": "Tory Burch", - "icon": "./assets/data/nsi/logos/toryburch-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toryburch-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423094,7 +423451,7 @@ }, { "question": "Totalsports", - "icon": "./assets/data/nsi/logos/totalsports-bd328b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalsports-bd328b.png", "osmTags": { "and": [ "shop=clothes", @@ -423110,7 +423467,7 @@ }, { "question": "Track&Field", - "icon": "./assets/data/nsi/logos/trackandfield-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trackandfield-c7d1e1.jpg", "osmTags": { "and": [ "clothes=sports", @@ -423127,7 +423484,7 @@ }, { "question": "TravisMathew", - "icon": "./assets/data/nsi/logos/travismathew-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/travismathew-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423143,7 +423500,7 @@ }, { "question": "tredy", - "icon": "./assets/data/nsi/logos/tredy-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredy-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423159,7 +423516,7 @@ }, { "question": "Trigema", - "icon": "./assets/data/nsi/logos/trigema-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trigema-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423175,7 +423532,7 @@ }, { "question": "Triumph", - "icon": "./assets/data/nsi/logos/triumph-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/triumph-3937bd.png", "osmTags": { "and": [ "clothes=underwear", @@ -423192,7 +423549,7 @@ }, { "question": "True Religion", - "icon": "./assets/data/nsi/logos/truereligion-99b1ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truereligion-99b1ed.jpg", "osmTags": { "and": [ "clothes=denim", @@ -423209,7 +423566,7 @@ }, { "question": "Truworths", - "icon": "./assets/data/nsi/logos/truworths-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truworths-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423255,7 +423612,7 @@ }, { "question": "U.S. Polo Assn.", - "icon": "./assets/data/nsi/logos/uspoloassn-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uspoloassn-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423271,7 +423628,7 @@ }, { "question": "Ulla Popken", - "icon": "./assets/data/nsi/logos/ullapopken-341143.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ullapopken-341143.jpg", "osmTags": { "and": [ "clothes=oversize", @@ -423288,7 +423645,7 @@ }, { "question": "Un Jour Ailleurs", - "icon": "./assets/data/nsi/logos/unjourailleurs-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unjourailleurs-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423304,7 +423661,7 @@ }, { "question": "Under Armour", - "icon": "./assets/data/nsi/logos/underarmour-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/underarmour-3937bd.png", "osmTags": { "and": [ "clothes=men;women", @@ -423321,7 +423678,7 @@ }, { "question": "Under Armour Youth", - "icon": "./assets/data/nsi/logos/underarmouryouth-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/underarmouryouth-3937bd.png", "osmTags": { "and": [ "clothes=children", @@ -423338,7 +423695,7 @@ }, { "question": "Undiz", - "icon": "./assets/data/nsi/logos/undiz-024578.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/undiz-024578.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -423355,7 +423712,7 @@ }, { "question": "Uniform Destination", - "icon": "./assets/data/nsi/logos/uniformdestination-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniformdestination-0a21d9.png", "osmTags": { "and": [ "clothes=workwear", @@ -423372,7 +423729,7 @@ }, { "question": "UNIQ clothing by Checkers", - "icon": "./assets/data/nsi/logos/uniqclothingbycheckers-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniqclothingbycheckers-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423388,7 +423745,7 @@ }, { "question": "Uniqlo", - "icon": "./assets/data/nsi/logos/uniqlo-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniqlo-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423404,7 +423761,7 @@ }, { "question": "United Colors of Benetton", - "icon": "./assets/data/nsi/logos/unitedcolorsofbenetton-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedcolorsofbenetton-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423421,7 +423778,7 @@ }, { "question": "Universal Store", - "icon": "./assets/data/nsi/logos/universalstore-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universalstore-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423437,7 +423794,7 @@ }, { "question": "UNTUCKit", - "icon": "./assets/data/nsi/logos/untuckit-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/untuckit-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423453,7 +423810,7 @@ }, { "question": "UpWest", - "icon": "./assets/data/nsi/logos/upwest-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/upwest-0a21d9.png", "osmTags": { "and": [ "shop=clothes", @@ -423469,7 +423826,7 @@ }, { "question": "Urban Outfitters", - "icon": "./assets/data/nsi/logos/urbanoutfitters-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/urbanoutfitters-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423485,7 +423842,7 @@ }, { "question": "Urban Planet", - "icon": "./assets/data/nsi/logos/urbanplanet-9e1367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/urbanplanet-9e1367.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423501,7 +423858,7 @@ }, { "question": "USC", - "icon": "./assets/data/nsi/logos/usc-94f7c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/usc-94f7c8.png", "osmTags": { "and": [ "shop=clothes", @@ -423517,7 +423874,7 @@ }, { "question": "V.I.M.", - "icon": "./assets/data/nsi/logos/vim-0a21d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vim-0a21d9.png", "osmTags": { "and": [ "clothes=children;men;women", @@ -423534,7 +423891,7 @@ }, { "question": "Valentino", - "icon": "./assets/data/nsi/logos/valentino-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valentino-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423550,7 +423907,7 @@ }, { "question": "Van Dal", - "icon": "./assets/data/nsi/logos/vandal-91c4cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vandal-91c4cd.jpg", "osmTags": { "and": [ "clothes=men", @@ -423567,7 +423924,7 @@ }, { "question": "Van Graaf", - "icon": "./assets/data/nsi/logos/vangraaf-9ef6ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vangraaf-9ef6ea.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423583,7 +423940,7 @@ }, { "question": "Van Heusen", - "icon": "./assets/data/nsi/logos/vanheusen-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vanheusen-3937bd.png", "osmTags": { "and": [ "clothes=men", @@ -423600,7 +423957,7 @@ }, { "question": "van Laack", - "icon": "./assets/data/nsi/logos/vanlaack-74806d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vanlaack-74806d.svg", "osmTags": { "and": [ "shop=clothes", @@ -423616,7 +423973,7 @@ }, { "question": "Vanessa Bruno", - "icon": "./assets/data/nsi/logos/vanessabruno-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vanessabruno-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -423633,7 +423990,7 @@ }, { "question": "Veritas", - "icon": "./assets/data/nsi/logos/veritas-4b0b1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veritas-4b0b1d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423648,7 +424005,7 @@ }, { "question": "Vero Moda", - "icon": "./assets/data/nsi/logos/veromoda-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veromoda-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -423665,7 +424022,7 @@ }, { "question": "Versace", - "icon": "./assets/data/nsi/logos/versace-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/versace-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423681,7 +424038,7 @@ }, { "question": "Vertbaudet", - "icon": "./assets/data/nsi/logos/vertbaudet-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vertbaudet-3937bd.jpg", "osmTags": { "and": [ "clothes=children", @@ -423698,7 +424055,7 @@ }, { "question": "Vertiche", - "icon": "./assets/data/nsi/logos/vertiche-c4029f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vertiche-c4029f.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423728,7 +424085,7 @@ }, { "question": "Vicomte A", - "icon": "./assets/data/nsi/logos/vicomtea-90f7b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vicomtea-90f7b7.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423744,7 +424101,7 @@ }, { "question": "Victoria's Secret", - "icon": "./assets/data/nsi/logos/victoriassecret-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/victoriassecret-3937bd.png", "osmTags": { "and": [ "clothes=underwear;women", @@ -423761,7 +424118,7 @@ }, { "question": "Victory Lab", - "icon": "./assets/data/nsi/logos/victorylab-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/victorylab-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423777,7 +424134,7 @@ }, { "question": "VILA", - "icon": "./assets/data/nsi/logos/vila-b5590c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vila-b5590c.jpg", "osmTags": { "and": [ "clothes=women", @@ -423794,7 +424151,7 @@ }, { "question": "Vilebrequin", - "icon": "./assets/data/nsi/logos/vilebrequin-3937bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vilebrequin-3937bd.png", "osmTags": { "and": [ "clothes=swimwear", @@ -423811,7 +424168,7 @@ }, { "question": "VINCE.", - "icon": "./assets/data/nsi/logos/vince-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vince-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423827,7 +424184,7 @@ }, { "question": "Vineyard Vines", - "icon": "./assets/data/nsi/logos/vineyardvines-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vineyardvines-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423843,7 +424200,7 @@ }, { "question": "Vistula", - "icon": "./assets/data/nsi/logos/vistula-196c99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vistula-196c99.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423859,7 +424216,7 @@ }, { "question": "Volcom", - "icon": "./assets/data/nsi/logos/volcom-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volcom-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423875,7 +424232,7 @@ }, { "question": "Volt", - "icon": "./assets/data/nsi/logos/volt-e9779b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/volt-e9779b.png", "osmTags": { "and": [ "shop=clothes", @@ -423891,7 +424248,7 @@ }, { "question": "Vovk", - "icon": "./assets/data/nsi/logos/vovk-e79eb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vovk-e79eb2.jpg", "osmTags": { "and": [ "clothes=women", @@ -423908,7 +424265,7 @@ }, { "question": "Vuori", - "icon": "./assets/data/nsi/logos/vuori-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vuori-0a21d9.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423924,7 +424281,7 @@ }, { "question": "Wacoal", - "icon": "./assets/data/nsi/logos/wacoal-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wacoal-3937bd.jpg", "osmTags": { "and": [ "clothes=underwear", @@ -423941,7 +424298,7 @@ }, { "question": "Walbusch", - "icon": "./assets/data/nsi/logos/walbusch-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walbusch-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423957,7 +424314,7 @@ }, { "question": "Wallis", - "icon": "./assets/data/nsi/logos/wallis-94f7c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wallis-94f7c8.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423973,7 +424330,7 @@ }, { "question": "Warehouse", - "icon": "./assets/data/nsi/logos/warehouse-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warehouse-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -423989,7 +424346,7 @@ }, { "question": "WE", - "icon": "./assets/data/nsi/logos/we-1dbf87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/we-1dbf87.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424005,7 +424362,7 @@ }, { "question": "Webbers", - "icon": "./assets/data/nsi/logos/webbers-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/webbers-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424021,7 +424378,7 @@ }, { "question": "Weekday", - "icon": "./assets/data/nsi/logos/weekday-b5590c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/weekday-b5590c.png", "osmTags": { "and": [ "shop=clothes", @@ -424037,7 +424394,7 @@ }, { "question": "Weekend Max Mara", - "icon": "./assets/data/nsi/logos/weekendmaxmara-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weekendmaxmara-3937bd.jpg", "osmTags": { "and": [ "clothes=women", @@ -424054,7 +424411,7 @@ }, { "question": "WEGO", - "icon": "./assets/data/nsi/logos/wego-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wego-85f881.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -424075,7 +424432,7 @@ }, { "question": "Weird Fish", - "icon": "./assets/data/nsi/logos/weirdfish-7b1694.png", + "icon": "https://data.mapcomplete.org/nsi//logos/weirdfish-7b1694.png", "osmTags": { "and": [ "clothes=children;men;women", @@ -424092,7 +424449,7 @@ }, { "question": "Wellensteyn", - "icon": "./assets/data/nsi/logos/wellensteyn-74806d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wellensteyn-74806d.png", "osmTags": { "and": [ "shop=clothes", @@ -424108,7 +424465,7 @@ }, { "question": "West 49", - "icon": "./assets/data/nsi/logos/west49-9e1367.png", + "icon": "https://data.mapcomplete.org/nsi//logos/west49-9e1367.png", "osmTags": { "and": [ "shop=clothes", @@ -424124,7 +424481,7 @@ }, { "question": "Westside", - "icon": "./assets/data/nsi/logos/westside-f8e8b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westside-f8e8b1.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424140,7 +424497,7 @@ }, { "question": "WheelUp", - "icon": "./assets/data/nsi/logos/wheelup-d72191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wheelup-d72191.jpg", "osmTags": { "and": [ "clothes=motorcycle", @@ -424157,7 +424514,7 @@ }, { "question": "Whistles", - "icon": "./assets/data/nsi/logos/whistles-7b1694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whistles-7b1694.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424173,7 +424530,7 @@ }, { "question": "White House Black Market", - "icon": "./assets/data/nsi/logos/whitehouseblackmarket-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whitehouseblackmarket-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424189,7 +424546,7 @@ }, { "question": "White Stuff", - "icon": "./assets/data/nsi/logos/whitestuff-98a4ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whitestuff-98a4ed.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424205,7 +424562,7 @@ }, { "question": "Wibra", - "icon": "./assets/data/nsi/logos/wibra-5eeeb4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wibra-5eeeb4.png", "osmTags": { "and": [ "shop=clothes", @@ -424221,7 +424578,7 @@ }, { "question": "Wilsons Leather", - "icon": "./assets/data/nsi/logos/wilsonsleather-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilsonsleather-0615dc.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -424238,7 +424595,7 @@ }, { "question": "Windsor", - "icon": "./assets/data/nsi/logos/windsor-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/windsor-0a21d9.jpg", "osmTags": { "and": [ "clothes=women", @@ -424255,7 +424612,7 @@ }, { "question": "Witchery", - "icon": "./assets/data/nsi/logos/witchery-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/witchery-392c8b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424271,7 +424628,7 @@ }, { "question": "Witt Weiden", - "icon": "./assets/data/nsi/logos/wittweiden-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wittweiden-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424287,7 +424644,7 @@ }, { "question": "Wöhrl", - "icon": "./assets/data/nsi/logos/wohrl-74806d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wohrl-74806d.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424303,7 +424660,7 @@ }, { "question": "Wólczanka", - "icon": "./assets/data/nsi/logos/wolczanka-196c99.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wolczanka-196c99.png", "osmTags": { "and": [ "shop=clothes", @@ -424319,7 +424676,7 @@ }, { "question": "Wolford", - "icon": "./assets/data/nsi/logos/wolford-b05397.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wolford-b05397.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424335,7 +424692,7 @@ }, { "question": "Women'secret", - "icon": "./assets/data/nsi/logos/womensecret-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/womensecret-3937bd.jpg", "osmTags": { "and": [ "clothes=underwear;women", @@ -424352,7 +424709,7 @@ }, { "question": "Wonderplace", - "icon": "./assets/data/nsi/logos/wonderplace-d098b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wonderplace-d098b5.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424372,7 +424729,7 @@ }, { "question": "Woolworths", - "icon": "./assets/data/nsi/logos/woolworths-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woolworths-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424388,7 +424745,7 @@ }, { "question": "Work World", - "icon": "./assets/data/nsi/logos/workworld-0f3ba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/workworld-0f3ba6.jpg", "osmTags": { "and": [ "clothes=workwear", @@ -424405,7 +424762,7 @@ }, { "question": "XIOS", - "icon": "./assets/data/nsi/logos/xios-0a21d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xios-0a21d9.jpg", "osmTags": { "and": [ "clothes=men", @@ -424422,7 +424779,7 @@ }, { "question": "XXI Forever", - "icon": "./assets/data/nsi/logos/xxiforever-0a21d9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/xxiforever-0a21d9.svg", "osmTags": { "and": [ "shop=clothes", @@ -424438,7 +424795,7 @@ }, { "question": "Yamamay", - "icon": "./assets/data/nsi/logos/yamamay-8f2dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamamay-8f2dbd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424470,7 +424827,7 @@ }, { "question": "yd.", - "icon": "./assets/data/nsi/logos/yd-392c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yd-392c8b.jpg", "osmTags": { "and": [ "clothes=men", @@ -424489,7 +424846,7 @@ }, { "question": "YDE", - "icon": "./assets/data/nsi/logos/yde-bd328b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yde-bd328b.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424505,7 +424862,7 @@ }, { "question": "Yours Clothing", - "icon": "./assets/data/nsi/logos/yoursclothing-811b8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yoursclothing-811b8c.jpg", "osmTags": { "and": [ "clothes=women", @@ -424537,7 +424894,7 @@ }, { "question": "Zadig & Voltaire", - "icon": "./assets/data/nsi/logos/zadigandvoltaire-2d207e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zadigandvoltaire-2d207e.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424553,7 +424910,7 @@ }, { "question": "Zara", - "icon": "./assets/data/nsi/logos/zara-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zara-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424569,7 +424926,7 @@ }, { "question": "Zarina", - "icon": "./assets/data/nsi/logos/zarina-54fe8d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zarina-54fe8d.png", "osmTags": { "and": [ "clothes=women", @@ -424600,7 +424957,7 @@ }, { "question": "Zebra", - "icon": "./assets/data/nsi/logos/zebra-fed098.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zebra-fed098.svg", "osmTags": { "and": [ "shop=clothes", @@ -424616,7 +424973,7 @@ }, { "question": "Zeeman", - "icon": "./assets/data/nsi/logos/zeeman-906b75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeeman-906b75.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424632,7 +424989,7 @@ }, { "question": "Zegna", - "icon": "./assets/data/nsi/logos/zegna-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zegna-3937bd.jpg", "osmTags": { "and": [ "clothes=men", @@ -424665,7 +425022,7 @@ }, { "question": "zero", - "icon": "./assets/data/nsi/logos/zero-9393a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zero-9393a9.jpg", "osmTags": { "and": [ "clothes=women", @@ -424682,7 +425039,7 @@ }, { "question": "Zillertaler Trachtenwelt", - "icon": "./assets/data/nsi/logos/zillertalertrachtenwelt-daa173.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zillertalertrachtenwelt-daa173.jpg", "osmTags": { "and": [ "clothes=traditional", @@ -424699,7 +425056,7 @@ }, { "question": "Zilli", - "icon": "./assets/data/nsi/logos/zilli-3937bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zilli-3937bd.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424715,7 +425072,7 @@ }, { "question": "Zinzane", - "icon": "./assets/data/nsi/logos/zinzane-c7d1e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zinzane-c7d1e1.jpg", "osmTags": { "and": [ "clothes=men;women", @@ -424732,7 +425089,7 @@ }, { "question": "Zizzi", - "icon": "./assets/data/nsi/logos/zizzi-ef6c41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zizzi-ef6c41.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424791,7 +425148,7 @@ }, { "question": "Zumiez", - "icon": "./assets/data/nsi/logos/zumiez-0615dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zumiez-0615dc.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424868,7 +425225,7 @@ }, { "question": "Липненски", - "icon": "./assets/data/nsi/logos/183cfe-d0a189.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/183cfe-d0a189.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424912,7 +425269,7 @@ }, { "question": "Немски център", - "icon": "./assets/data/nsi/logos/d48ea9-d0a189.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d48ea9-d0a189.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424942,7 +425299,7 @@ }, { "question": "Світанак", - "icon": "./assets/data/nsi/logos/svitanak-e4d922.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/svitanak-e4d922.jpg", "osmTags": { "and": [ "shop=clothes", @@ -424978,7 +425335,7 @@ }, { "question": "Снежная королева", - "icon": "./assets/data/nsi/logos/snezhnayakoroleva-102c33.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snezhnayakoroleva-102c33.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425010,7 +425367,7 @@ }, { "question": "ТВОЕ", - "icon": "./assets/data/nsi/logos/tvoe-1c3486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tvoe-1c3486.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425044,7 +425401,7 @@ }, { "question": "ელსი ვაიკიკი", - "icon": "./assets/data/nsi/logos/lcwaikiki-82a2eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lcwaikiki-82a2eb.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425063,7 +425420,7 @@ }, { "question": "ნავნე", - "icon": "./assets/data/nsi/logos/navne-82a2eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/navne-82a2eb.png", "osmTags": { "and": [ "shop=clothes", @@ -425083,7 +425440,7 @@ }, { "question": "ოკაიდი", - "icon": "./assets/data/nsi/logos/okaidi-82a2eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/okaidi-82a2eb.png", "osmTags": { "and": [ "shop=clothes", @@ -425105,7 +425462,7 @@ }, { "question": "アベイル", - "icon": "./assets/data/nsi/logos/avail-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avail-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425125,7 +425482,7 @@ }, { "question": "エフワン", - "icon": "./assets/data/nsi/logos/fone-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fone-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425145,7 +425502,7 @@ }, { "question": "コナカ", - "icon": "./assets/data/nsi/logos/konaka-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/konaka-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425165,7 +425522,7 @@ }, { "question": "サンキ", - "icon": "./assets/data/nsi/logos/sanki-85f881.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanki-85f881.png", "osmTags": { "and": [ "shop=clothes", @@ -425185,7 +425542,7 @@ }, { "question": "ジーンズメイト", - "icon": "./assets/data/nsi/logos/jeansmate-85f881.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jeansmate-85f881.png", "osmTags": { "and": [ "shop=clothes", @@ -425205,13 +425562,10 @@ }, { "question": "しまむら", - "icon": "./assets/data/nsi/logos/shimamura-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shimamura-85f881.jpg", "osmTags": { "and": [ "clothes=women", - "official_name=ファッションセンターしまむら", - "official_name:en=Fashion Center Shimamura", - "official_name:ja=ファッションセンターしまむら", "shop=clothes", { "or": [ @@ -425221,7 +425575,10 @@ "brand:wikidata=Q7758173", "name=しまむら", "name:en=Shimamura", - "name:ja=しまむら" + "name:ja=しまむら", + "official_name=ファッションセンターしまむら", + "official_name:en=Fashion Center Shimamura", + "official_name:ja=ファッションセンターしまむら" ] } ] @@ -425248,7 +425605,7 @@ }, { "question": "バースデイ", - "icon": "./assets/data/nsi/logos/birthday-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birthday-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425268,7 +425625,7 @@ }, { "question": "はるやま", - "icon": "./assets/data/nsi/logos/haruyama-85f881.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haruyama-85f881.png", "osmTags": { "and": [ "shop=clothes", @@ -425288,7 +425645,7 @@ }, { "question": "ビームス", - "icon": "./assets/data/nsi/logos/beams-85f881.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beams-85f881.png", "osmTags": { "and": [ "shop=clothes", @@ -425308,7 +425665,7 @@ }, { "question": "マックハウス", - "icon": "./assets/data/nsi/logos/machouse-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/machouse-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425328,7 +425685,7 @@ }, { "question": "ユニクロ", - "icon": "./assets/data/nsi/logos/uniqlo-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniqlo-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425348,7 +425705,7 @@ }, { "question": "ライトオン", - "icon": "./assets/data/nsi/logos/righton-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/righton-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425368,7 +425725,7 @@ }, { "question": "ワークマン", - "icon": "./assets/data/nsi/logos/workman-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/workman-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425388,7 +425745,7 @@ }, { "question": "优衣库", - "icon": "./assets/data/nsi/logos/uniqlo-44ce59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniqlo-44ce59.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425408,7 +425765,7 @@ }, { "question": "佐丹奴", - "icon": "./assets/data/nsi/logos/giordano-44ce59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giordano-44ce59.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425428,7 +425785,7 @@ }, { "question": "佐丹奴 Giordano", - "icon": "./assets/data/nsi/logos/giordano-33ce1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giordano-33ce1a.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425448,7 +425805,7 @@ }, { "question": "堡狮龙", - "icon": "./assets/data/nsi/logos/bossini-44ce59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bossini-44ce59.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425468,7 +425825,7 @@ }, { "question": "安踏", - "icon": "./assets/data/nsi/logos/anta-88aa58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anta-88aa58.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425488,7 +425845,7 @@ }, { "question": "李宁", - "icon": "./assets/data/nsi/logos/lining-44ce59.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lining-44ce59.svg", "osmTags": { "and": [ "shop=clothes", @@ -425508,7 +425865,7 @@ }, { "question": "李寧", - "icon": "./assets/data/nsi/logos/lining-33ce1a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lining-33ce1a.svg", "osmTags": { "and": [ "shop=clothes", @@ -425547,7 +425904,7 @@ }, { "question": "洋服の青山", - "icon": "./assets/data/nsi/logos/aoyamatailor-85f881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aoyamatailor-85f881.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425567,7 +425924,7 @@ }, { "question": "海澜之家", - "icon": "./assets/data/nsi/logos/hla-88aa58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hla-88aa58.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425587,7 +425944,7 @@ }, { "question": "特步", - "icon": "./assets/data/nsi/logos/xtep-88aa58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xtep-88aa58.png", "osmTags": { "and": [ "shop=clothes", @@ -425607,7 +425964,7 @@ }, { "question": "班尼路", - "icon": "./assets/data/nsi/logos/baleno-d44f7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baleno-d44f7c.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425627,7 +425984,7 @@ }, { "question": "班尼路 Baleno", - "icon": "./assets/data/nsi/logos/baleno-12a111.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baleno-12a111.jpg", "osmTags": { "and": [ "shop=clothes", @@ -425647,7 +426004,7 @@ }, { "question": "Nespresso", - "icon": "./assets/data/nsi/logos/nespresso-d0bfaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nespresso-d0bfaf.jpg", "osmTags": { "and": [ "shop=coffee", @@ -425663,7 +426020,7 @@ }, { "question": "Tchibo", - "icon": "./assets/data/nsi/logos/tchibo-8e6167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tchibo-8e6167.jpg", "osmTags": { "and": [ "shop=coffee", @@ -425679,7 +426036,7 @@ }, { "question": "მეამა", - "icon": "./assets/data/nsi/logos/meama-06d40a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meama-06d40a.jpg", "osmTags": { "and": [ "shop=coffee", @@ -425701,7 +426058,7 @@ }, { "question": "カルディコーヒーファーム", - "icon": "./assets/data/nsi/logos/kaldicoffeefarm-e1062f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaldicoffeefarm-e1062f.jpg", "osmTags": { "and": [ "shop=coffee", @@ -425721,7 +426078,7 @@ }, { "question": "Amac", - "icon": "./assets/data/nsi/logos/amac-0d9307.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amac-0d9307.jpg", "osmTags": { "and": [ "shop=computer", @@ -425737,7 +426094,7 @@ }, { "question": "ARLT Computer", - "icon": "./assets/data/nsi/logos/arltcomputer-8969c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arltcomputer-8969c7.png", "osmTags": { "and": [ "shop=computer", @@ -425753,7 +426110,7 @@ }, { "question": "Beep", - "icon": "./assets/data/nsi/logos/beep-6542a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beep-6542a7.jpg", "osmTags": { "and": [ "shop=computer", @@ -425769,7 +426126,7 @@ }, { "question": "Canada Computers", - "icon": "./assets/data/nsi/logos/canadacomputers-d6ec06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadacomputers-d6ec06.jpg", "osmTags": { "and": [ "shop=computer", @@ -425785,7 +426142,7 @@ }, { "question": "cyberport", - "icon": "./assets/data/nsi/logos/cyberport-a9f92a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyberport-a9f92a.jpg", "osmTags": { "and": [ "shop=computer", @@ -425801,7 +426158,7 @@ }, { "question": "Gravis", - "icon": "./assets/data/nsi/logos/gravis-8969c7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gravis-8969c7.svg", "osmTags": { "and": [ "shop=computer", @@ -425817,7 +426174,7 @@ }, { "question": "K&M Elektronik", - "icon": "./assets/data/nsi/logos/kandmelektronik-8969c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kandmelektronik-8969c7.jpg", "osmTags": { "and": [ "shop=computer", @@ -425833,7 +426190,7 @@ }, { "question": "LDLC", - "icon": "./assets/data/nsi/logos/ldlc-87ca9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ldlc-87ca9a.jpg", "osmTags": { "and": [ "shop=computer", @@ -425849,7 +426206,7 @@ }, { "question": "Micro Center", - "icon": "./assets/data/nsi/logos/microcenter-c4ecce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/microcenter-c4ecce.jpg", "osmTags": { "and": [ "shop=computer", @@ -425865,7 +426222,7 @@ }, { "question": "notebooksbilliger.de", - "icon": "./assets/data/nsi/logos/notebooksbilligerde-8969c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/notebooksbilligerde-8969c7.png", "osmTags": { "and": [ "shop=computer", @@ -425881,7 +426238,7 @@ }, { "question": "PB Tech", - "icon": "./assets/data/nsi/logos/pbtech-57fd22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pbtech-57fd22.jpg", "osmTags": { "and": [ "shop=computer", @@ -425916,7 +426273,7 @@ }, { "question": "Webhallen", - "icon": "./assets/data/nsi/logos/webhallen-1bf91a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/webhallen-1bf91a.jpg", "osmTags": { "and": [ "shop=computer", @@ -425932,7 +426289,7 @@ }, { "question": "Компʼютерний Всесвіт", - "icon": "./assets/data/nsi/logos/845c8b-87a6e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/845c8b-87a6e6.jpg", "osmTags": { "and": [ "shop=computer", @@ -425948,7 +426305,7 @@ }, { "question": "アプライド", - "icon": "./assets/data/nsi/logos/applied-8cc09d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/applied-8cc09d.svg", "osmTags": { "and": [ "shop=computer", @@ -426025,7 +426382,7 @@ }, { "question": "ドスパラ", - "icon": "./assets/data/nsi/logos/dospara-8cc09d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dospara-8cc09d.jpg", "osmTags": { "and": [ "shop=computer", @@ -426045,7 +426402,7 @@ }, { "question": "パソコン工房", - "icon": "./assets/data/nsi/logos/6185e9-8cc09d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/6185e9-8cc09d.jpg", "osmTags": { "and": [ "shop=computer", @@ -426063,7 +426420,7 @@ }, { "question": "偉倫電腦 Wellent", - "icon": "./assets/data/nsi/logos/wellent-e0237d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellent-e0237d.jpg", "osmTags": { "and": [ "shop=computer", @@ -426087,7 +426444,7 @@ }, { "question": "Adyar Ananda Bhavan", - "icon": "./assets/data/nsi/logos/adyaranandabhavan-abc6d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adyaranandabhavan-abc6d4.png", "osmTags": { "and": [ "shop=confectionery", @@ -426103,7 +426460,7 @@ }, { "question": "Ambala Foods", - "icon": "./assets/data/nsi/logos/ambalafoods-bdbf63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambalafoods-bdbf63.jpg", "osmTags": { "and": [ "cuisine=indian", @@ -426120,7 +426477,7 @@ }, { "question": "arko", - "icon": "./assets/data/nsi/logos/arko-2c21b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arko-2c21b2.png", "osmTags": { "and": [ "shop=confectionery", @@ -426136,7 +426493,7 @@ }, { "question": "Bahlsen Outlet", - "icon": "./assets/data/nsi/logos/bahlsenoutlet-2c21b2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bahlsenoutlet-2c21b2.svg", "osmTags": { "and": [ "shop=confectionery", @@ -426182,7 +426539,7 @@ }, { "question": "Bears & Friends", - "icon": "./assets/data/nsi/logos/bearsandfriends-e5aed3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bearsandfriends-e5aed3.png", "osmTags": { "and": [ "shop=confectionery", @@ -426198,7 +426555,7 @@ }, { "question": "Belros", - "icon": "./assets/data/nsi/logos/belros-0b3ba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belros-0b3ba6.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426214,7 +426571,7 @@ }, { "question": "Ben's Cookies", - "icon": "./assets/data/nsi/logos/benscookies-311d19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/benscookies-311d19.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426230,7 +426587,7 @@ }, { "question": "Candy Tyme", - "icon": "./assets/data/nsi/logos/candytyme-c4be02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/candytyme-c4be02.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426246,7 +426603,7 @@ }, { "question": "Châteraisé", - "icon": "./assets/data/nsi/logos/chateraise-c520ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chateraise-c520ad.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426280,7 +426637,7 @@ }, { "question": "Don Benito's", - "icon": "./assets/data/nsi/logos/donbenitos-940870.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donbenitos-940870.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426296,7 +426653,7 @@ }, { "question": "Eilles", - "icon": "./assets/data/nsi/logos/eilles-2c21b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eilles-2c21b2.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426312,7 +426669,7 @@ }, { "question": "El Rincón", - "icon": "./assets/data/nsi/logos/elrincon-0b3ba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elrincon-0b3ba6.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426328,7 +426685,7 @@ }, { "question": "El Rincón & Coffee", - "icon": "./assets/data/nsi/logos/elrinconandcoffee-0b3ba6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elrinconandcoffee-0b3ba6.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -426345,7 +426702,7 @@ }, { "question": "Hemmakväll", - "icon": "./assets/data/nsi/logos/hemmakvall-bb4f01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hemmakvall-bb4f01.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426361,7 +426718,7 @@ }, { "question": "Hotel Chocolat", - "icon": "./assets/data/nsi/logos/hotelchocolat-bdbf63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotelchocolat-bdbf63.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426377,7 +426734,7 @@ }, { "question": "Hussel", - "icon": "./assets/data/nsi/logos/hussel-c45342.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hussel-c45342.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426393,7 +426750,7 @@ }, { "question": "Hussel Confiserie", - "icon": "./assets/data/nsi/logos/husselconfiserie-ce6a87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/husselconfiserie-ce6a87.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426409,7 +426766,7 @@ }, { "question": "Jamin", - "icon": "./assets/data/nsi/logos/jamin-2c00a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jamin-2c00a5.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426440,7 +426797,7 @@ }, { "question": "Kaspa's", - "icon": "./assets/data/nsi/logos/kaspas-bdbf63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaspas-bdbf63.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426456,7 +426813,7 @@ }, { "question": "Kilwins", - "icon": "./assets/data/nsi/logos/kilwins-c4be02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kilwins-c4be02.jpg", "osmTags": { "and": [ "cuisine=chocolate;ice_cream;popcorn", @@ -426487,7 +426844,7 @@ }, { "question": "Lolli and Pops", - "icon": "./assets/data/nsi/logos/lolliandpops-c4be02.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lolliandpops-c4be02.png", "osmTags": { "and": [ "shop=confectionery", @@ -426518,16 +426875,16 @@ }, { "question": "Rocket Fizz", - "icon": "./assets/data/nsi/logos/rocketfizz-9950eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rocketfizz-9950eb.jpg", "osmTags": { "and": [ - "official_name=Rocket Fizz Soda Pop & Candy Shop", "shop=confectionery", { "or": [ "brand=Rocket Fizz", "brand:wikidata=Q17107987", - "name=Rocket Fizz" + "name=Rocket Fizz", + "official_name=Rocket Fizz Soda Pop & Candy Shop" ] } ] @@ -426535,7 +426892,7 @@ }, { "question": "Rocky Mountain Chocolate Factory", - "icon": "./assets/data/nsi/logos/rockymountainchocolatefactory-9950eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockymountainchocolatefactory-9950eb.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426551,7 +426908,7 @@ }, { "question": "Roshen", - "icon": "./assets/data/nsi/logos/roshen-84145b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/roshen-84145b.svg", "osmTags": { "and": [ "shop=confectionery", @@ -426581,7 +426938,7 @@ }, { "question": "See's Candies", - "icon": "./assets/data/nsi/logos/seescandies-c4be02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seescandies-c4be02.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426597,7 +426954,7 @@ }, { "question": "SoSweet", - "icon": "./assets/data/nsi/logos/sosweet-13e555.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sosweet-13e555.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426628,7 +426985,7 @@ }, { "question": "Storck Welt Outlet", - "icon": "./assets/data/nsi/logos/storckweltoutlet-2c21b2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/storckweltoutlet-2c21b2.svg", "osmTags": { "and": [ "shop=confectionery", @@ -426644,7 +427001,7 @@ }, { "question": "Swisslion Takovo", - "icon": "./assets/data/nsi/logos/slatkakuca-60a596.png", + "icon": "https://data.mapcomplete.org/nsi//logos/slatkakuca-60a596.png", "osmTags": { "and": [ "shop=confectionery", @@ -426676,7 +427033,7 @@ }, { "question": "Thorntons", - "icon": "./assets/data/nsi/logos/thorntons-bdbf63.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/thorntons-bdbf63.svg", "osmTags": { "and": [ "shop=confectionery", @@ -426692,7 +427049,7 @@ }, { "question": "Viba", - "icon": "./assets/data/nsi/logos/viba-2c21b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viba-2c21b2.png", "osmTags": { "and": [ "shop=confectionery", @@ -426722,7 +427079,7 @@ }, { "question": "Красный пищевик", - "icon": "./assets/data/nsi/logos/4742ac-ceb7f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/4742ac-ceb7f9.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426768,7 +427125,7 @@ }, { "question": "Север-Метрополь", - "icon": "./assets/data/nsi/logos/severmetropol-61c5bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/severmetropol-61c5bf.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426816,7 +427173,7 @@ }, { "question": "شیرین عسل", - "icon": "./assets/data/nsi/logos/shirinasal-971a8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shirinasal-971a8a.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426836,7 +427193,7 @@ }, { "question": "おかしのまちおか", - "icon": "./assets/data/nsi/logos/machioka-59ea1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/machioka-59ea1b.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426875,7 +427232,7 @@ }, { "question": "シャトレーゼ", - "icon": "./assets/data/nsi/logos/chateraise-59ea1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chateraise-59ea1b.jpg", "osmTags": { "and": [ "shop=confectionery", @@ -426895,7 +427252,7 @@ }, { "question": "不二家", - "icon": "./assets/data/nsi/logos/fujiya-59ea1b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fujiya-59ea1b.png", "osmTags": { "and": [ "shop=confectionery", @@ -426915,7 +427272,7 @@ }, { "question": "銀座コージーコーナー", - "icon": "./assets/data/nsi/logos/ginzacozycorner-59ea1b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ginzacozycorner-59ea1b.png", "osmTags": { "and": [ "shop=confectionery", @@ -426935,7 +427292,7 @@ }, { "question": "10-11", - "icon": "./assets/data/nsi/logos/1011-ead397.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1011-ead397.jpg", "osmTags": { "and": [ "shop=convenience", @@ -426966,7 +427323,7 @@ }, { "question": "1st Stop", - "icon": "./assets/data/nsi/logos/1ststop-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/1ststop-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -426982,7 +427339,7 @@ }, { "question": "7-Eleven", - "icon": "./assets/data/nsi/logos/7eleven-e1b4e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7eleven-e1b4e3.jpg", "osmTags": { "and": [ "shop=convenience", @@ -426998,7 +427355,7 @@ }, { "question": "7-Eleven (Norge)", - "icon": "./assets/data/nsi/logos/7eleven-2da37b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7eleven-2da37b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427014,7 +427371,7 @@ }, { "question": "7/24 Mix", - "icon": "./assets/data/nsi/logos/724mix-9d5235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/724mix-9d5235.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427030,7 +427387,7 @@ }, { "question": "759阿信屋 759 Store", - "icon": "./assets/data/nsi/logos/759store-298a73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/759store-298a73.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427054,7 +427411,7 @@ }, { "question": "76", - "icon": "./assets/data/nsi/logos/76-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/76-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427070,7 +427427,7 @@ }, { "question": "8 à Huit", - "icon": "./assets/data/nsi/logos/8ahuit-bf3eb4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/8ahuit-bf3eb4.svg", "osmTags": { "and": [ "shop=convenience", @@ -427100,7 +427457,7 @@ }, { "question": "Abarrotes Monterrey", - "icon": "./assets/data/nsi/logos/abarrotesmonterrey-9d5235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abarrotesmonterrey-9d5235.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427116,7 +427473,7 @@ }, { "question": "ABC (Hawaii)", - "icon": "./assets/data/nsi/logos/abc-540f13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abc-540f13.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427132,7 +427489,7 @@ }, { "question": "abc (Polska)", - "icon": "./assets/data/nsi/logos/abc-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abc-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427162,7 +427519,7 @@ }, { "question": "ADNOC Oasis", - "icon": "./assets/data/nsi/logos/adnocoasis-d47493.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adnocoasis-d47493.png", "osmTags": { "and": [ "shop=convenience", @@ -427182,7 +427539,7 @@ }, { "question": "Aibe", - "icon": "./assets/data/nsi/logos/aibe-401681.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aibe-401681.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427198,7 +427555,7 @@ }, { "question": "Aibė", - "icon": "./assets/data/nsi/logos/aibe-64a6c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aibe-64a6c9.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427214,16 +427571,16 @@ }, { "question": "Albert Heijn to go", - "icon": "./assets/data/nsi/logos/albertheijntogo-f85122.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albertheijntogo-f85122.png", "osmTags": { "and": [ - "official_name=AH to go", "shop=convenience", { "or": [ "brand=Albert Heijn to go", "brand:wikidata=Q77971185", - "name=Albert Heijn to go" + "name=Albert Heijn to go", + "official_name=AH to go" ] } ] @@ -427231,7 +427588,7 @@ }, { "question": "Alepa", - "icon": "./assets/data/nsi/logos/alepa-5dea79.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alepa-5dea79.png", "osmTags": { "and": [ "shop=convenience", @@ -427247,7 +427604,7 @@ }, { "question": "Alfa Express", - "icon": "./assets/data/nsi/logos/alfaexpress-bb8a09.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfaexpress-bb8a09.svg", "osmTags": { "and": [ "shop=convenience", @@ -427263,7 +427620,7 @@ }, { "question": "Alfamart", - "icon": "./assets/data/nsi/logos/alfamart-28d321.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfamart-28d321.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427279,7 +427636,7 @@ }, { "question": "Alfamidi", - "icon": "./assets/data/nsi/logos/alfamidi-bb8a09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alfamidi-bb8a09.png", "osmTags": { "and": [ "shop=convenience", @@ -427295,7 +427652,7 @@ }, { "question": "All Day Convenience Store", - "icon": "./assets/data/nsi/logos/alldayconveniencestore-fb2210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alldayconveniencestore-fb2210.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427311,7 +427668,7 @@ }, { "question": "Allsup's", - "icon": "./assets/data/nsi/logos/allsups-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allsups-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427327,7 +427684,7 @@ }, { "question": "Alltown", - "icon": "./assets/data/nsi/logos/alltown-ae58e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alltown-ae58e4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427343,7 +427700,7 @@ }, { "question": "Alltown Fresh", - "icon": "./assets/data/nsi/logos/alltownfresh-790588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alltownfresh-790588.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427359,7 +427716,7 @@ }, { "question": "Aloha Island Mart", - "icon": "./assets/data/nsi/logos/alohaislandmart-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alohaislandmart-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427396,7 +427753,7 @@ }, { "question": "Alta Convenience", - "icon": "./assets/data/nsi/logos/altaconvenience-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altaconvenience-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427412,7 +427769,7 @@ }, { "question": "Aman", - "icon": "./assets/data/nsi/logos/aman-3015fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aman-3015fb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427432,7 +427789,7 @@ }, { "question": "Amazon Go", - "icon": "./assets/data/nsi/logos/amazongo-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amazongo-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427448,7 +427805,7 @@ }, { "question": "AmeriStop", - "icon": "./assets/data/nsi/logos/ameristop-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ameristop-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427464,7 +427821,7 @@ }, { "question": "Amoco", - "icon": "./assets/data/nsi/logos/amoco-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amoco-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -427480,7 +427837,7 @@ }, { "question": "ampm", - "icon": "./assets/data/nsi/logos/ampm-4d6b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ampm-4d6b4b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427511,7 +427868,7 @@ }, { "question": "Applegreen", - "icon": "./assets/data/nsi/logos/applegreen-cc2a33.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/applegreen-cc2a33.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427527,7 +427884,7 @@ }, { "question": "Aral", - "icon": "./assets/data/nsi/logos/aral-1fe310.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aral-1fe310.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427543,7 +427900,7 @@ }, { "question": "Arambagh Foodmart", - "icon": "./assets/data/nsi/logos/arambaghfoodmart-bb430b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arambaghfoodmart-bb430b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427561,7 +427918,7 @@ }, { "question": "Aroma", - "icon": "./assets/data/nsi/logos/aroma-3015fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aroma-3015fb.png", "osmTags": { "and": [ "shop=convenience", @@ -427579,7 +427936,7 @@ }, { "question": "Asda", - "icon": "./assets/data/nsi/logos/asda-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asda-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427595,7 +427952,7 @@ }, { "question": "Asda Express", - "icon": "./assets/data/nsi/logos/asdaexpress-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asdaexpress-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427611,7 +427968,7 @@ }, { "question": "Asda On The Move", - "icon": "./assets/data/nsi/logos/asdaonthemove-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asdaonthemove-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427627,7 +427984,7 @@ }, { "question": "avec", - "icon": "./assets/data/nsi/logos/avec-c71a8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avec-c71a8a.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427643,7 +428000,7 @@ }, { "question": "Avia", - "icon": "./assets/data/nsi/logos/avia-da37e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avia-da37e8.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427659,7 +428016,7 @@ }, { "question": "Avondale Food Stores", - "icon": "./assets/data/nsi/logos/avondalefoodstores-e144dd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avondalefoodstores-e144dd.png", "osmTags": { "and": [ "shop=convenience", @@ -427675,7 +428032,7 @@ }, { "question": "B&M Express", - "icon": "./assets/data/nsi/logos/bandmexpress-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandmexpress-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427691,7 +428048,7 @@ }, { "question": "Bách Hóa XANH", - "icon": "./assets/data/nsi/logos/bachhoaxanh-61b913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bachhoaxanh-61b913.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427707,7 +428064,7 @@ }, { "question": "Bakmaz", - "icon": "./assets/data/nsi/logos/bakmaz-5b00ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bakmaz-5b00ff.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427723,7 +428080,7 @@ }, { "question": "Bama", - "icon": "./assets/data/nsi/logos/bama-9d5235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bama-9d5235.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427739,7 +428096,7 @@ }, { "question": "Bargain Booze Select Convenience", - "icon": "./assets/data/nsi/logos/bargainboozeselectconvenience-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bargainboozeselectconvenience-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427755,7 +428112,7 @@ }, { "question": "Becker's", - "icon": "./assets/data/nsi/logos/beckers-e144dd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/beckers-e144dd.svg", "osmTags": { "and": [ "shop=convenience", @@ -427771,7 +428128,7 @@ }, { "question": "BellStores", - "icon": "./assets/data/nsi/logos/bellstores-147d98.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellstores-147d98.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427787,7 +428144,7 @@ }, { "question": "Best-one", - "icon": "./assets/data/nsi/logos/bestone-232829.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bestone-232829.png", "osmTags": { "and": [ "shop=convenience", @@ -427803,7 +428160,7 @@ }, { "question": "Big Apple", - "icon": "./assets/data/nsi/logos/bigapple-bdefe5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigapple-bdefe5.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427834,7 +428191,7 @@ }, { "question": "Big C", - "icon": "./assets/data/nsi/logos/bigc-298a73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigc-298a73.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427850,7 +428207,7 @@ }, { "question": "Big C Mini", - "icon": "./assets/data/nsi/logos/bigcmini-f572b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigcmini-f572b3.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427930,7 +428287,7 @@ }, { "question": "BİM", - "icon": "./assets/data/nsi/logos/bim-6cb8de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bim-6cb8de.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427946,7 +428303,7 @@ }, { "question": "Bodega Aurrera Express", - "icon": "./assets/data/nsi/logos/bodegaaurreraexpress-9d5235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodegaaurreraexpress-9d5235.jpg", "osmTags": { "and": [ "shop=convenience", @@ -427977,7 +428334,7 @@ }, { "question": "Boni-Soir", - "icon": "./assets/data/nsi/logos/bonisoir-eea72f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonisoir-eea72f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428008,7 +428365,7 @@ }, { "question": "Box", - "icon": "./assets/data/nsi/logos/box-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/box-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428024,7 +428381,7 @@ }, { "question": "BP 2go", - "icon": "./assets/data/nsi/logos/bp2go-7a43a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp2go-7a43a8.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428040,7 +428397,7 @@ }, { "question": "BP Connect", - "icon": "./assets/data/nsi/logos/bpconnect-7a43a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpconnect-7a43a8.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428056,7 +428413,7 @@ }, { "question": "BP Shop", - "icon": "./assets/data/nsi/logos/bpshop-24c3f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpshop-24c3f1.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428072,7 +428429,7 @@ }, { "question": "BR", - "icon": "./assets/data/nsi/logos/br-12bebb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/br-12bebb.png", "osmTags": { "and": [ "shop=convenience", @@ -428088,7 +428445,7 @@ }, { "question": "BR Mania", - "icon": "./assets/data/nsi/logos/brmania-12bebb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brmania-12bebb.png", "osmTags": { "and": [ "shop=convenience", @@ -428104,7 +428461,7 @@ }, { "question": "Brněnka", - "icon": "./assets/data/nsi/logos/brnenka-a7773e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brnenka-a7773e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428120,7 +428477,7 @@ }, { "question": "Buc-ee's", - "icon": "./assets/data/nsi/logos/bucees-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bucees-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -428136,7 +428493,7 @@ }, { "question": "Budgens", - "icon": "./assets/data/nsi/logos/budgens-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budgens-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428152,7 +428509,7 @@ }, { "question": "Byrne Dairy & Deli", - "icon": "./assets/data/nsi/logos/byrnedairyanddeli-6e4505.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byrnedairyanddeli-6e4505.png", "osmTags": { "and": [ "shop=convenience", @@ -428168,7 +428525,7 @@ }, { "question": "Caltex", - "icon": "./assets/data/nsi/logos/caltex-c009d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caltex-c009d7.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428184,7 +428541,7 @@ }, { "question": "Carrefour", - "icon": "./assets/data/nsi/logos/carrefour-4d6b4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-4d6b4b.png", "osmTags": { "and": [ "shop=convenience", @@ -428200,7 +428557,7 @@ }, { "question": "Carrefour Express", - "icon": "./assets/data/nsi/logos/carrefourexpress-4d6b4b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefourexpress-4d6b4b.svg", "osmTags": { "and": [ "shop=convenience", @@ -428231,7 +428588,7 @@ }, { "question": "Casey's General Store", - "icon": "./assets/data/nsi/logos/caseysgeneralstore-f1e40b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caseysgeneralstore-f1e40b.svg", "osmTags": { "and": [ "shop=convenience", @@ -428247,7 +428604,7 @@ }, { "question": "Casino Shop", - "icon": "./assets/data/nsi/logos/casinoshop-bf3eb4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/casinoshop-bf3eb4.svg", "osmTags": { "and": [ "shop=convenience", @@ -428263,7 +428620,7 @@ }, { "question": "CBA", - "icon": "./assets/data/nsi/logos/cba-f7572f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cba-f7572f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428279,7 +428636,7 @@ }, { "question": "CBA (България)", - "icon": "./assets/data/nsi/logos/cba-854be4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cba-854be4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428300,7 +428657,7 @@ }, { "question": "CEFCO", - "icon": "./assets/data/nsi/logos/cefco-abc9e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cefco-abc9e1.png", "osmTags": { "and": [ "shop=convenience", @@ -428316,7 +428673,7 @@ }, { "question": "Cenex", - "icon": "./assets/data/nsi/logos/cenex-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cenex-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -428332,7 +428689,7 @@ }, { "question": "Centra", - "icon": "./assets/data/nsi/logos/centra-0b7623.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centra-0b7623.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428348,16 +428705,16 @@ }, { "question": "Central", - "icon": "./assets/data/nsi/logos/central-eb7785.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/central-eb7785.jpg", "osmTags": { "and": [ - "official_name=Central Convenience Store", "shop=convenience", { "or": [ "brand=Central Convenience Store", "brand:wikidata=Q97104475", - "name=Central" + "name=Central", + "official_name=Central Convenience Store" ] } ] @@ -428365,16 +428722,16 @@ }, { "question": "Certified", - "icon": "./assets/data/nsi/logos/certified-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/certified-f1e40b.jpg", "osmTags": { "and": [ - "official_name=Certified Oil", "shop=convenience", { "or": [ "brand=Certified", "brand:wikidata=Q100148356", - "name=Certified" + "name=Certified", + "official_name=Certified Oil" ] } ] @@ -428382,7 +428739,7 @@ }, { "question": "Chata Polska", - "icon": "./assets/data/nsi/logos/chatapolska-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chatapolska-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428398,7 +428755,7 @@ }, { "question": "Cheers", - "icon": "./assets/data/nsi/logos/cheers-a4ab31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cheers-a4ab31.jpg", "osmTags": { "and": [ "opening_hours=24/7", @@ -428415,7 +428772,7 @@ }, { "question": "Chevron", - "icon": "./assets/data/nsi/logos/chevron-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chevron-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -428431,7 +428788,7 @@ }, { "question": "Chorten", - "icon": "./assets/data/nsi/logos/chorten-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chorten-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428447,7 +428804,7 @@ }, { "question": "Circle K", - "icon": "./assets/data/nsi/logos/circlek-4d6b4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-4d6b4b.png", "osmTags": { "and": [ "shop=convenience", @@ -428463,7 +428820,7 @@ }, { "question": "Citgo", - "icon": "./assets/data/nsi/logos/citgo-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citgo-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -428494,7 +428851,7 @@ }, { "question": "Clark's Pump-N-Shop", - "icon": "./assets/data/nsi/logos/clarkspumpnshop-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkspumpnshop-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428510,7 +428867,7 @@ }, { "question": "Clydebank Co-operative Society", - "icon": "./assets/data/nsi/logos/clydebankcooperative-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clydebankcooperative-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428528,7 +428885,7 @@ }, { "question": "Co-op (Canada)", - "icon": "./assets/data/nsi/logos/coop-eea72f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-eea72f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428544,7 +428901,7 @@ }, { "question": "Co-op Daily", - "icon": "./assets/data/nsi/logos/coopdaily-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopdaily-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428562,7 +428919,7 @@ }, { "question": "Co-operative En Route", - "icon": "./assets/data/nsi/logos/cooperativeenroute-d9d9cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooperativeenroute-d9d9cb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428580,7 +428937,7 @@ }, { "question": "Co-operative Locale", - "icon": "./assets/data/nsi/logos/cooperativelocale-d9d9cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooperativelocale-d9d9cb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428598,7 +428955,7 @@ }, { "question": "CocciMarket", - "icon": "./assets/data/nsi/logos/coccimarket-f6dc0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coccimarket-f6dc0a.png", "osmTags": { "and": [ "shop=convenience", @@ -428614,7 +428971,7 @@ }, { "question": "CocciMarket City", - "icon": "./assets/data/nsi/logos/coccimarketcity-f6dc0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coccimarketcity-f6dc0a.png", "osmTags": { "and": [ "shop=convenience", @@ -428630,7 +428987,7 @@ }, { "question": "Coen Markets Inc", - "icon": "./assets/data/nsi/logos/coenmarketsinc-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coenmarketsinc-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -428646,7 +429003,7 @@ }, { "question": "Conoco", - "icon": "./assets/data/nsi/logos/conoco-f1e40b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/conoco-f1e40b.svg", "osmTags": { "and": [ "shop=convenience", @@ -428662,7 +429019,7 @@ }, { "question": "Convenient Food Mart", - "icon": "./assets/data/nsi/logos/convenientfoodmart-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/convenientfoodmart-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428678,7 +429035,7 @@ }, { "question": "Coop (Česko)", - "icon": "./assets/data/nsi/logos/coop-a7773e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-a7773e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428694,7 +429051,7 @@ }, { "question": "Coop (Schweiz)", - "icon": "./assets/data/nsi/logos/coop-07a460.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-07a460.png", "osmTags": { "and": [ "shop=convenience", @@ -428710,7 +429067,7 @@ }, { "question": "Coop ABC", - "icon": "./assets/data/nsi/logos/coopabc-58d40d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopabc-58d40d.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428726,7 +429083,7 @@ }, { "question": "Coop Atlantique", - "icon": "./assets/data/nsi/logos/coopatlantique-c38318.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopatlantique-c38318.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428742,7 +429099,7 @@ }, { "question": "Coop Eesti", - "icon": "./assets/data/nsi/logos/coopeesti-fb411b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopeesti-fb411b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428758,7 +429115,7 @@ }, { "question": "COOP Jednota", - "icon": "./assets/data/nsi/logos/coopjednota-2496a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coopjednota-2496a5.png", "osmTags": { "and": [ "shop=convenience", @@ -428774,7 +429131,7 @@ }, { "question": "Coop Konzum", - "icon": "./assets/data/nsi/logos/coopkonzum-a7773e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopkonzum-a7773e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428790,7 +429147,7 @@ }, { "question": "Coop Mini", - "icon": "./assets/data/nsi/logos/coopmini-58d40d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopmini-58d40d.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428806,7 +429163,7 @@ }, { "question": "Coop Pronto", - "icon": "./assets/data/nsi/logos/cooppronto-0438d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooppronto-0438d5.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428822,7 +429179,7 @@ }, { "question": "Coop Tip", - "icon": "./assets/data/nsi/logos/cooptip-a7773e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooptip-a7773e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428838,7 +429195,7 @@ }, { "question": "Coop Tuty", - "icon": "./assets/data/nsi/logos/cooptuty-a7773e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooptuty-a7773e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428854,7 +429211,7 @@ }, { "question": "Costcutter", - "icon": "./assets/data/nsi/logos/costcutter-31620e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcutter-31620e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428885,7 +429242,7 @@ }, { "question": "Couche-Tard", - "icon": "./assets/data/nsi/logos/couchetard-eea72f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/couchetard-eea72f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428920,7 +429277,7 @@ }, { "question": "Cruizers", - "icon": "./assets/data/nsi/logos/cruizers-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruizers-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428936,7 +429293,7 @@ }, { "question": "CU", - "icon": "./assets/data/nsi/logos/cu-3b6392.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cu-3b6392.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428952,7 +429309,7 @@ }, { "question": "Cumberland Farms", - "icon": "./assets/data/nsi/logos/cumberlandfarms-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cumberlandfarms-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428968,7 +429325,7 @@ }, { "question": "Daisy Mart", - "icon": "./assets/data/nsi/logos/daisymart-eea72f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daisymart-eea72f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -428984,7 +429341,7 @@ }, { "question": "Dali", - "icon": "./assets/data/nsi/logos/dali-fb2210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dali-fb2210.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429000,7 +429357,7 @@ }, { "question": "Dari Mart", - "icon": "./assets/data/nsi/logos/darimart-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/darimart-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429016,7 +429373,7 @@ }, { "question": "Dash In", - "icon": "./assets/data/nsi/logos/dashin-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dashin-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429032,7 +429389,7 @@ }, { "question": "day by day", - "icon": "./assets/data/nsi/logos/daybyday-f6dc0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daybyday-f6dc0a.png", "osmTags": { "and": [ "bulk_purchase=only", @@ -429049,7 +429406,7 @@ }, { "question": "Day-Today", - "icon": "./assets/data/nsi/logos/daytoday-31620e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daytoday-31620e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429065,7 +429422,7 @@ }, { "question": "Day-Today Express", - "icon": "./assets/data/nsi/logos/daytodayexpress-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daytodayexpress-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429081,7 +429438,7 @@ }, { "question": "Daybreak", - "icon": "./assets/data/nsi/logos/daybreak-cb4625.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daybreak-cb4625.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429097,7 +429454,7 @@ }, { "question": "Delhaize Shop & Go", - "icon": "./assets/data/nsi/logos/shopandgo-7c93c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shopandgo-7c93c4.png", "osmTags": { "and": [ "shop=convenience", @@ -429128,6 +429485,7 @@ }, { "question": "Delikatesy Premium", + "icon": "https://data.mapcomplete.org/nsi//logos/delikatesypremium-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429158,7 +429516,7 @@ }, { "question": "Delikatesy SLAWEX", - "icon": "./assets/data/nsi/logos/delikatesyslawex-95f41b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/delikatesyslawex-95f41b.png", "osmTags": { "and": [ "shop=convenience", @@ -429174,7 +429532,7 @@ }, { "question": "Delta Sonic", - "icon": "./assets/data/nsi/logos/deltasonic-e0f572.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deltasonic-e0f572.png", "osmTags": { "and": [ "shop=convenience", @@ -429190,7 +429548,7 @@ }, { "question": "Denner Express", - "icon": "./assets/data/nsi/logos/dennerexpress-07a460.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dennerexpress-07a460.png", "osmTags": { "and": [ "shop=convenience", @@ -429206,7 +429564,7 @@ }, { "question": "Despar", - "icon": "./assets/data/nsi/logos/despar-271792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/despar-271792.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429222,7 +429580,7 @@ }, { "question": "Dia & Go", - "icon": "./assets/data/nsi/logos/diaandgo-dd9aae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/diaandgo-dd9aae.png", "osmTags": { "and": [ "shop=convenience", @@ -429355,7 +429713,7 @@ }, { "question": "Elvi", - "icon": "./assets/data/nsi/logos/elvi-401681.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elvi-401681.png", "osmTags": { "and": [ "shop=convenience", @@ -429371,7 +429729,7 @@ }, { "question": "Eni Shop", - "icon": "./assets/data/nsi/logos/enishop-a98884.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enishop-a98884.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429387,7 +429745,7 @@ }, { "question": "Enmarket", - "icon": "./assets/data/nsi/logos/enmarket-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enmarket-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429431,7 +429789,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-4d6b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-4d6b4b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429447,7 +429805,7 @@ }, { "question": "Esso Snack & Shop", - "icon": "./assets/data/nsi/logos/essosnackandshop-60c7fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essosnackandshop-60c7fe.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429463,7 +429821,7 @@ }, { "question": "ExtraMile", - "icon": "./assets/data/nsi/logos/extramile-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/extramile-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429479,7 +429837,7 @@ }, { "question": "EzyMart", - "icon": "./assets/data/nsi/logos/ezymart-0b0ae9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ezymart-0b0ae9.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429495,7 +429853,7 @@ }, { "question": "Family Express", - "icon": "./assets/data/nsi/logos/familyexpress-16b990.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/familyexpress-16b990.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429526,7 +429884,7 @@ }, { "question": "FamilyMart", - "icon": "./assets/data/nsi/logos/familymart-095323.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/familymart-095323.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429542,7 +429900,7 @@ }, { "question": "FARMFOODS", - "icon": "./assets/data/nsi/logos/farmfoods-2496a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmfoods-2496a5.jpg", "osmTags": { "and": [ "organic=only", @@ -429559,7 +429917,7 @@ }, { "question": "Fastbreak", - "icon": "./assets/data/nsi/logos/fastbreak-fa1eb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastbreak-fa1eb4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429605,7 +429963,7 @@ }, { "question": "Food Plus", - "icon": "./assets/data/nsi/logos/foodplus-232829.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foodplus-232829.png", "osmTags": { "and": [ "shop=convenience", @@ -429621,7 +429979,7 @@ }, { "question": "Foodary", - "icon": "./assets/data/nsi/logos/foodary-0b0ae9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foodary-0b0ae9.png", "osmTags": { "and": [ "shop=convenience", @@ -429637,7 +429995,7 @@ }, { "question": "Four Square", - "icon": "./assets/data/nsi/logos/foursquare-7a43a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foursquare-7a43a8.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429653,7 +430011,7 @@ }, { "question": "Franprix", - "icon": "./assets/data/nsi/logos/franprix-bf3eb4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/franprix-bf3eb4.png", "osmTags": { "and": [ "shop=convenience", @@ -429669,7 +430027,7 @@ }, { "question": "Fresh", - "icon": "./assets/data/nsi/logos/fresh-2496a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fresh-2496a5.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429685,7 +430043,7 @@ }, { "question": "Fresh Corner", - "icon": "./assets/data/nsi/logos/freshcorner-f9f0e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshcorner-f9f0e2.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429734,7 +430092,7 @@ }, { "question": "FreshStop", - "icon": "./assets/data/nsi/logos/freshstop-75f4be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshstop-75f4be.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429765,7 +430123,7 @@ }, { "question": "Froo", - "icon": "./assets/data/nsi/logos/froo-597303.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/froo-597303.svg", "osmTags": { "and": [ "shop=convenience", @@ -429781,7 +430139,7 @@ }, { "question": "Full", - "icon": "./assets/data/nsi/logos/full-4c351f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/full-4c351f.png", "osmTags": { "and": [ "shop=convenience", @@ -429797,7 +430155,7 @@ }, { "question": "Gala", - "icon": "./assets/data/nsi/logos/gala-cb4625.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gala-cb4625.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429813,7 +430171,7 @@ }, { "question": "Gama", - "icon": "./assets/data/nsi/logos/gama-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gama-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429888,7 +430246,7 @@ }, { "question": "GoMart", - "icon": "./assets/data/nsi/logos/gomart-07a9fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gomart-07a9fd.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429904,7 +430262,7 @@ }, { "question": "Gomex", - "icon": "./assets/data/nsi/logos/gomex-3015fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gomex-3015fb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -429938,7 +430296,7 @@ }, { "question": "Groszek", - "icon": "./assets/data/nsi/logos/groszek-95f41b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/groszek-95f41b.png", "osmTags": { "and": [ "shop=convenience", @@ -429954,7 +430312,7 @@ }, { "question": "GS25", - "icon": "./assets/data/nsi/logos/gs25-f248a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gs25-f248a7.png", "osmTags": { "and": [ "shop=convenience", @@ -430000,7 +430358,7 @@ }, { "question": "Haffner's", - "icon": "./assets/data/nsi/logos/haffners-1aebc2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haffners-1aebc2.png", "osmTags": { "and": [ "shop=convenience", @@ -430016,7 +430374,7 @@ }, { "question": "Hasty Market", - "icon": "./assets/data/nsi/logos/hastymarket-eea72f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hastymarket-eea72f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430032,7 +430390,7 @@ }, { "question": "hei", - "icon": "./assets/data/nsi/logos/hei-6378da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hei-6378da.png", "osmTags": { "and": [ "shop=convenience", @@ -430048,7 +430406,7 @@ }, { "question": "HiperDino Express", - "icon": "./assets/data/nsi/logos/hiperdinoexpress-dd9aae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hiperdinoexpress-dd9aae.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430065,7 +430423,7 @@ }, { "question": "Holiday", - "icon": "./assets/data/nsi/logos/holiday-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holiday-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430081,7 +430439,7 @@ }, { "question": "Hruška", - "icon": "./assets/data/nsi/logos/hruska-a7773e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hruska-a7773e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430143,7 +430501,7 @@ }, { "question": "Husky", - "icon": "./assets/data/nsi/logos/husky-eea72f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/husky-eea72f.png", "osmTags": { "and": [ "shop=convenience", @@ -430159,7 +430517,7 @@ }, { "question": "Iberdoex", - "icon": "./assets/data/nsi/logos/iberdoex-dd9aae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdoex-dd9aae.png", "osmTags": { "and": [ "shop=convenience", @@ -430175,7 +430533,7 @@ }, { "question": "IDEA", - "icon": "./assets/data/nsi/logos/idea-8f21d6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idea-8f21d6.png", "osmTags": { "and": [ "shop=convenience", @@ -430196,7 +430554,7 @@ }, { "question": "IDEA Organic", - "icon": "./assets/data/nsi/logos/ideaorganic-3015fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ideaorganic-3015fb.jpg", "osmTags": { "and": [ "organic=only", @@ -430218,7 +430576,7 @@ }, { "question": "IGA (Australia)", - "icon": "./assets/data/nsi/logos/iga-0b0ae9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/iga-0b0ae9.svg", "osmTags": { "and": [ "shop=convenience", @@ -430234,7 +430592,7 @@ }, { "question": "IKEA Swedish Food Market", - "icon": "./assets/data/nsi/logos/ikeaswedishfoodmarket-1e7f39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikeaswedishfoodmarket-1e7f39.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430250,7 +430608,7 @@ }, { "question": "InCoop", - "icon": "./assets/data/nsi/logos/incoop-1aaf3e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/incoop-1aaf3e.svg", "osmTags": { "and": [ "shop=convenience", @@ -430266,7 +430624,7 @@ }, { "question": "Indomaret", - "icon": "./assets/data/nsi/logos/indomaret-bb8a09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indomaret-bb8a09.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430282,7 +430640,7 @@ }, { "question": "Intermarché Contact", - "icon": "./assets/data/nsi/logos/intermarchecontact-f6dc0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarchecontact-f6dc0a.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430298,7 +430656,7 @@ }, { "question": "Intermarché Express", - "icon": "./assets/data/nsi/logos/intermarcheexpress-f3ab02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarcheexpress-f3ab02.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430314,7 +430672,7 @@ }, { "question": "Ipiranga", - "icon": "./assets/data/nsi/logos/ipiranga-12bebb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ipiranga-12bebb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430330,7 +430688,7 @@ }, { "question": "Irving", - "icon": "./assets/data/nsi/logos/irving-16ec4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irving-16ec4d.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430360,7 +430718,7 @@ }, { "question": "Jacksons", - "icon": "./assets/data/nsi/logos/jacksons-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksons-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430376,7 +430734,7 @@ }, { "question": "Jiffy", - "icon": "./assets/data/nsi/logos/jiffy-c8e053.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jiffy-c8e053.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430396,7 +430754,7 @@ }, { "question": "Jiffy Mart", - "icon": "./assets/data/nsi/logos/jiffymart-fe2c5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jiffymart-fe2c5d.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430412,7 +430770,7 @@ }, { "question": "Joe's Kwik Marts", - "icon": "./assets/data/nsi/logos/joeskwikmarts-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joeskwikmarts-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430428,7 +430786,7 @@ }, { "question": "K-Market", - "icon": "./assets/data/nsi/logos/kmarket-5dea79.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kmarket-5dea79.png", "osmTags": { "and": [ "shop=convenience", @@ -430444,7 +430802,7 @@ }, { "question": "Kangaroo Express", - "icon": "./assets/data/nsi/logos/kangarooexpress-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kangarooexpress-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -430461,7 +430819,7 @@ }, { "question": "Kent Kwik", - "icon": "./assets/data/nsi/logos/kentkwik-c3f9f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentkwik-c3f9f6.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430477,7 +430835,7 @@ }, { "question": "KeyStore", - "icon": "./assets/data/nsi/logos/keystore-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keystore-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430493,7 +430851,7 @@ }, { "question": "KeyStore Express", - "icon": "./assets/data/nsi/logos/keystoreexpress-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keystoreexpress-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430509,7 +430867,7 @@ }, { "question": "KeyStore More", - "icon": "./assets/data/nsi/logos/keystoremore-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keystoremore-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430539,7 +430897,7 @@ }, { "question": "KK Super Mart", - "icon": "./assets/data/nsi/logos/kksupermart-3e5671.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kksupermart-3e5671.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430556,7 +430914,7 @@ }, { "question": "Konzum (Balkans)", - "icon": "./assets/data/nsi/logos/konzum-442b6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/konzum-442b6e.png", "osmTags": { "and": [ "shop=convenience", @@ -430614,7 +430972,7 @@ }, { "question": "Kum & Go", - "icon": "./assets/data/nsi/logos/kumandgo-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kumandgo-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430647,7 +431005,7 @@ }, { "question": "Kwik Shop", - "icon": "./assets/data/nsi/logos/kwikshop-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikshop-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430663,7 +431021,7 @@ }, { "question": "Kwik Star", - "icon": "./assets/data/nsi/logos/kwikstar-e82e8e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikstar-e82e8e.svg", "osmTags": { "and": [ "shop=convenience", @@ -430679,7 +431037,7 @@ }, { "question": "Kwik Trip", - "icon": "./assets/data/nsi/logos/kwiktrip-345f5f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwiktrip-345f5f.svg", "osmTags": { "and": [ "shop=convenience", @@ -430695,7 +431053,7 @@ }, { "question": "KwikSpar", - "icon": "./assets/data/nsi/logos/kwikspar-c7b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwikspar-c7b713.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430711,7 +431069,7 @@ }, { "question": "La Doi Pași", - "icon": "./assets/data/nsi/logos/ladoipasi-597303.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ladoipasi-597303.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430727,7 +431085,7 @@ }, { "question": "La Vie Claire", - "icon": "./assets/data/nsi/logos/lavieclaire-bf3eb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lavieclaire-bf3eb4.jpg", "osmTags": { "and": [ "organic=only", @@ -430744,7 +431102,7 @@ }, { "question": "LaTS", - "icon": "./assets/data/nsi/logos/lats-401681.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lats-401681.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430760,7 +431118,7 @@ }, { "question": "Lawson", - "icon": "./assets/data/nsi/logos/lawson-e7e121.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lawson-e7e121.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430776,7 +431134,7 @@ }, { "question": "Lawson 108", - "icon": "./assets/data/nsi/logos/lawson108-f572b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lawson108-f572b3.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430807,7 +431165,7 @@ }, { "question": "Le Petit Casino", - "icon": "./assets/data/nsi/logos/lepetitcasino-bf3eb4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lepetitcasino-bf3eb4.svg", "osmTags": { "and": [ "shop=convenience", @@ -430823,7 +431181,7 @@ }, { "question": "Lewiatan", - "icon": "./assets/data/nsi/logos/lewiatan-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lewiatan-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430839,7 +431197,7 @@ }, { "question": "Lifestyle Express", - "icon": "./assets/data/nsi/logos/lifestyleexpress-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifestyleexpress-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430855,7 +431213,7 @@ }, { "question": "Little Waitrose", - "icon": "./assets/data/nsi/logos/littlewaitrose-126aa8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/littlewaitrose-126aa8.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430871,7 +431229,7 @@ }, { "question": "Livio", - "icon": "./assets/data/nsi/logos/livio-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/livio-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430887,7 +431245,7 @@ }, { "question": "Loaf 'N Jug", - "icon": "./assets/data/nsi/logos/loafnjug-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loafnjug-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430903,7 +431261,7 @@ }, { "question": "Londis (Ireland)", - "icon": "./assets/data/nsi/logos/londis-cb4625.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londis-cb4625.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430919,7 +431277,7 @@ }, { "question": "Londis (UK)", - "icon": "./assets/data/nsi/logos/londis-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londis-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430950,7 +431308,7 @@ }, { "question": "Lotus's go fresh", - "icon": "./assets/data/nsi/logos/lotussgofresh-cfafd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotussgofresh-cfafd7.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430966,7 +431324,7 @@ }, { "question": "Love's", - "icon": "./assets/data/nsi/logos/loves-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/loves-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -430982,7 +431340,7 @@ }, { "question": "Lukoil Mini-Mart", - "icon": "./assets/data/nsi/logos/minimart-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minimart-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -430998,7 +431356,7 @@ }, { "question": "M&S Food", - "icon": "./assets/data/nsi/logos/mandsfood-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandsfood-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431015,7 +431373,7 @@ }, { "question": "M&S Simply Food", - "icon": "./assets/data/nsi/logos/mandssimplyfood-4d6b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandssimplyfood-4d6b4b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431032,7 +431390,7 @@ }, { "question": "Mace (Ireland)", - "icon": "./assets/data/nsi/logos/mace-cb4625.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mace-cb4625.png", "osmTags": { "and": [ "shop=convenience", @@ -431048,7 +431406,7 @@ }, { "question": "Mace (Northern Ireland)", - "icon": "./assets/data/nsi/logos/mace-1a0d8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mace-1a0d8e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431064,7 +431422,7 @@ }, { "question": "Mace (UK)", - "icon": "./assets/data/nsi/logos/mace-eb7785.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mace-eb7785.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431080,7 +431438,7 @@ }, { "question": "Madagoni / მადაგონი / Мадагони", - "icon": "./assets/data/nsi/logos/madagoni-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madagoni-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431102,7 +431460,7 @@ }, { "question": "Magnit", - "icon": "./assets/data/nsi/logos/magnit-6b6bf4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/magnit-6b6bf4.svg", "osmTags": { "and": [ "shop=convenience", @@ -431146,7 +431504,7 @@ }, { "question": "Małpka Express", - "icon": "./assets/data/nsi/logos/malpkaexpress-95f41b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/malpkaexpress-95f41b.png", "osmTags": { "and": [ "shop=convenience", @@ -431162,7 +431520,7 @@ }, { "question": "Mapco", - "icon": "./assets/data/nsi/logos/mapco-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mapco-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431178,7 +431536,7 @@ }, { "question": "Marathon", - "icon": "./assets/data/nsi/logos/marathon-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathon-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431223,7 +431581,7 @@ }, { "question": "Martín Martín", - "icon": "./assets/data/nsi/logos/martinmartin-dd9aae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/martinmartin-dd9aae.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431239,7 +431597,7 @@ }, { "question": "masymas basic", - "icon": "./assets/data/nsi/logos/masymasbasic-849ea7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/masymasbasic-849ea7.svg", "osmTags": { "and": [ "shop=convenience", @@ -431272,7 +431630,7 @@ }, { "question": "Maverik", - "icon": "./assets/data/nsi/logos/maverik-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maverik-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431288,7 +431646,7 @@ }, { "question": "Max Mart", - "icon": "./assets/data/nsi/logos/maxmart-f572b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxmart-f572b3.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431304,7 +431662,7 @@ }, { "question": "Maxi", - "icon": "./assets/data/nsi/logos/maxi-3015fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxi-3015fb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431338,7 +431696,7 @@ }, { "question": "Maxol", - "icon": "./assets/data/nsi/logos/maxol-0b7623.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxol-0b7623.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431354,7 +431712,7 @@ }, { "question": "Meijer", - "icon": "./assets/data/nsi/logos/meijer-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meijer-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431370,7 +431728,7 @@ }, { "question": "Mercator", - "icon": "./assets/data/nsi/logos/mercator-eb6d99.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mercator-eb6d99.png", "osmTags": { "and": [ "shop=convenience", @@ -431400,7 +431758,7 @@ }, { "question": "MetroMart", - "icon": "./assets/data/nsi/logos/metromart-7a43a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metromart-7a43a8.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431430,7 +431788,7 @@ }, { "question": "Migrolino", - "icon": "./assets/data/nsi/logos/migrolino-07a460.png", + "icon": "https://data.mapcomplete.org/nsi//logos/migrolino-07a460.png", "osmTags": { "and": [ "shop=convenience", @@ -431446,7 +431804,7 @@ }, { "question": "Migros Jet", - "icon": "./assets/data/nsi/logos/migrosjet-62eaab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/migrosjet-62eaab.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431462,7 +431820,7 @@ }, { "question": "Milk-Agro", - "icon": "./assets/data/nsi/logos/milkagro-2496a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/milkagro-2496a5.png", "osmTags": { "and": [ "shop=convenience", @@ -431478,7 +431836,7 @@ }, { "question": "Mini Extra", - "icon": "./assets/data/nsi/logos/miniextra-12bebb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miniextra-12bebb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431494,7 +431852,7 @@ }, { "question": "Mini Mix", - "icon": "./assets/data/nsi/logos/minimix-ba18ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minimix-ba18ab.png", "osmTags": { "and": [ "shop=convenience", @@ -431525,7 +431883,7 @@ }, { "question": "miniM", - "icon": "./assets/data/nsi/logos/minim-d41f40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minim-d41f40.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431541,7 +431899,7 @@ }, { "question": "Minimart", - "icon": "./assets/data/nsi/logos/minimart-854be4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minimart-854be4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431557,7 +431915,7 @@ }, { "question": "Ministop", - "icon": "./assets/data/nsi/logos/ministop-365d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministop-365d07.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431573,7 +431931,7 @@ }, { "question": "Minit Mart", - "icon": "./assets/data/nsi/logos/minitmart-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minitmart-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431622,7 +431980,7 @@ }, { "question": "Mobil Mart", - "icon": "./assets/data/nsi/logos/mobilmart-4d6b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobilmart-4d6b4b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431638,6 +431996,7 @@ }, { "question": "Môj obchod", + "icon": "https://data.mapcomplete.org/nsi//logos/mojobchod-2496a5.png", "osmTags": { "and": [ "shop=convenience", @@ -431653,7 +432012,7 @@ }, { "question": "Mokpol", - "icon": "./assets/data/nsi/logos/mokpol-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mokpol-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431669,7 +432028,7 @@ }, { "question": "MOL Shop", - "icon": "./assets/data/nsi/logos/molshop-32b19d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/molshop-32b19d.png", "osmTags": { "and": [ "shop=convenience", @@ -431685,7 +432044,7 @@ }, { "question": "Monop'", - "icon": "./assets/data/nsi/logos/monop-f6dc0a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/monop-f6dc0a.svg", "osmTags": { "and": [ "shop=convenience", @@ -431701,7 +432060,7 @@ }, { "question": "Morrisons Daily", - "icon": "./assets/data/nsi/logos/morrisonsdaily-ce5d3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morrisonsdaily-ce5d3e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431717,7 +432076,7 @@ }, { "question": "Morrisons Daily (Channel Islands)", - "icon": "./assets/data/nsi/logos/morrisonsdaily-d9d9cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morrisonsdaily-d9d9cb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431734,7 +432093,7 @@ }, { "question": "MrMax", - "icon": "./assets/data/nsi/logos/mrmax-652b3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrmax-652b3e.png", "osmTags": { "and": [ "shop=convenience", @@ -431751,7 +432110,7 @@ }, { "question": "Můj obchod", - "icon": "./assets/data/nsi/logos/mujobchod-a7773e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mujobchod-a7773e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431767,7 +432126,7 @@ }, { "question": "Murphy Express", - "icon": "./assets/data/nsi/logos/murphyexpress-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/murphyexpress-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -431783,7 +432142,7 @@ }, { "question": "Murphy USA", - "icon": "./assets/data/nsi/logos/murphyusa-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/murphyusa-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -431799,7 +432158,7 @@ }, { "question": "My Auchan", - "icon": "./assets/data/nsi/logos/myauchan-f6dc0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/myauchan-f6dc0a.png", "osmTags": { "and": [ "shop=convenience", @@ -431815,7 +432174,7 @@ }, { "question": "myNEWS.com", - "icon": "./assets/data/nsi/logos/mynewscom-3e5671.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mynewscom-3e5671.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431831,7 +432190,7 @@ }, { "question": "Nasz Sklep", - "icon": "./assets/data/nsi/logos/naszsklep-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naszsklep-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431847,7 +432206,7 @@ }, { "question": "Neste K", - "icon": "./assets/data/nsi/logos/nestek-5dea79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nestek-5dea79.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431863,7 +432222,7 @@ }, { "question": "Neto", - "icon": "./assets/data/nsi/logos/neto-9d5235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neto-9d5235.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431879,7 +432238,7 @@ }, { "question": "NewDays", - "icon": "./assets/data/nsi/logos/newdays-652b3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newdays-652b3e.png", "osmTags": { "and": [ "shop=convenience", @@ -431896,7 +432255,7 @@ }, { "question": "Night 'n Day", - "icon": "./assets/data/nsi/logos/nightnday-7a43a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nightnday-7a43a8.png", "osmTags": { "and": [ "shop=convenience", @@ -431912,7 +432271,7 @@ }, { "question": "NightOwl", - "icon": "./assets/data/nsi/logos/nightowl-0b0ae9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nightowl-0b0ae9.jpg", "osmTags": { "and": [ "shop=convenience", @@ -431928,7 +432287,7 @@ }, { "question": "Nisa", - "icon": "./assets/data/nsi/logos/nisa-232829.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nisa-232829.png", "osmTags": { "and": [ "shop=convenience", @@ -431944,7 +432303,7 @@ }, { "question": "Nisa Local", - "icon": "./assets/data/nsi/logos/nisalocal-232829.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nisalocal-232829.png", "osmTags": { "and": [ "shop=convenience", @@ -431960,7 +432319,7 @@ }, { "question": "Nouria", - "icon": "./assets/data/nsi/logos/nouria-ae58e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nouria-ae58e4.png", "osmTags": { "and": [ "shop=convenience", @@ -431976,7 +432335,7 @@ }, { "question": "NOUS anti-gaspi", - "icon": "./assets/data/nsi/logos/nousantigaspi-f6dc0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nousantigaspi-f6dc0a.png", "osmTags": { "and": [ "shop=convenience", @@ -432007,7 +432366,7 @@ }, { "question": "Oba Market", - "icon": "./assets/data/nsi/logos/obamarket-ef7cdd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obamarket-ef7cdd.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432023,7 +432382,7 @@ }, { "question": "Odido", - "icon": "./assets/data/nsi/logos/odido-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/odido-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432054,7 +432413,7 @@ }, { "question": "OK Market", - "icon": "./assets/data/nsi/logos/okmarket-e95ed6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/okmarket-e95ed6.png", "osmTags": { "and": [ "shop=convenience", @@ -432085,7 +432444,7 @@ }, { "question": "OK便利店", - "icon": "./assets/data/nsi/logos/circlek-9729f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-9729f7.png", "osmTags": { "and": [ "shop=convenience", @@ -432103,7 +432462,7 @@ }, { "question": "OK便利店 Circle K", - "icon": "./assets/data/nsi/logos/circlek-132595.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-132595.png", "osmTags": { "and": [ "shop=convenience", @@ -432127,7 +432486,7 @@ }, { "question": "OK超商", - "icon": "./assets/data/nsi/logos/okmart-aa89a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okmart-aa89a7.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432145,7 +432504,7 @@ }, { "question": "On the Run", - "icon": "./assets/data/nsi/logos/ontherun-4d6b4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ontherun-4d6b4b.png", "osmTags": { "and": [ "shop=convenience", @@ -432161,7 +432520,7 @@ }, { "question": "One Stop", - "icon": "./assets/data/nsi/logos/onestop-232829.png", + "icon": "https://data.mapcomplete.org/nsi//logos/onestop-232829.png", "osmTags": { "and": [ "shop=convenience", @@ -432177,7 +432536,7 @@ }, { "question": "One-O-One", - "icon": "./assets/data/nsi/logos/oneoone-8978c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oneoone-8978c5.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432193,7 +432552,7 @@ }, { "question": "Orlen", - "icon": "./assets/data/nsi/logos/orlen-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlen-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432209,7 +432568,7 @@ }, { "question": "OTR", - "icon": "./assets/data/nsi/logos/otr-0b0ae9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/otr-0b0ae9.png", "osmTags": { "and": [ "shop=convenience", @@ -432225,7 +432584,7 @@ }, { "question": "Oxxo", - "icon": "./assets/data/nsi/logos/oxxo-8364f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxxo-8364f9.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432241,7 +432600,7 @@ }, { "question": "Pam Local", - "icon": "./assets/data/nsi/logos/pamlocal-1aaf3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pamlocal-1aaf3e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432288,7 +432647,7 @@ }, { "question": "Par Mar Stores", - "icon": "./assets/data/nsi/logos/parmarstores-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parmarstores-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432304,7 +432663,7 @@ }, { "question": "Patanjali Store", - "icon": "./assets/data/nsi/logos/patanjalistore-bb430b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/patanjalistore-bb430b.svg", "osmTags": { "and": [ "shop=convenience", @@ -432334,7 +432693,7 @@ }, { "question": "PerSu", - "icon": "./assets/data/nsi/logos/persu-3015fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/persu-3015fb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432352,7 +432711,7 @@ }, { "question": "Petro-Canada", - "icon": "./assets/data/nsi/logos/petrocanada-eea72f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrocanada-eea72f.svg", "osmTags": { "and": [ "shop=convenience", @@ -432382,7 +432741,7 @@ }, { "question": "Phillips 66", - "icon": "./assets/data/nsi/logos/phillips66-4d6b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phillips66-4d6b4b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432398,7 +432757,7 @@ }, { "question": "Pick n Pay Express", - "icon": "./assets/data/nsi/logos/picknpayexpress-c7b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/picknpayexpress-c7b713.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432414,7 +432773,7 @@ }, { "question": "Pilot", - "icon": "./assets/data/nsi/logos/pilot-16ec4d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pilot-16ec4d.png", "osmTags": { "and": [ "shop=convenience", @@ -432431,7 +432790,7 @@ }, { "question": "Plaid Pantry", - "icon": "./assets/data/nsi/logos/plaidpantry-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plaidpantry-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432475,7 +432834,7 @@ }, { "question": "Privát", - "icon": "./assets/data/nsi/logos/privat-58d40d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/privat-58d40d.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432491,7 +432850,7 @@ }, { "question": "Profi Go", - "icon": "./assets/data/nsi/logos/profigo-597303.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/profigo-597303.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432507,7 +432866,7 @@ }, { "question": "Proxi", - "icon": "./assets/data/nsi/logos/proxi-6fdfa6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/proxi-6fdfa6.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432523,7 +432882,7 @@ }, { "question": "Qazaq Oil", - "icon": "./assets/data/nsi/logos/qazaqoil-7ad3ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qazaqoil-7ad3ae.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432539,7 +432898,7 @@ }, { "question": "Quality Mart", - "icon": "./assets/data/nsi/logos/qualitymart-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qualitymart-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432555,7 +432914,7 @@ }, { "question": "QuickChek", - "icon": "./assets/data/nsi/logos/quickchek-f1e40b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/quickchek-f1e40b.svg", "osmTags": { "and": [ "shop=convenience", @@ -432571,7 +432930,7 @@ }, { "question": "Quickie", - "icon": "./assets/data/nsi/logos/quickie-f902d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quickie-f902d0.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432617,7 +432976,7 @@ }, { "question": "QuikTrip", - "icon": "./assets/data/nsi/logos/quiktrip-4d6b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quiktrip-4d6b4b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432648,7 +433007,7 @@ }, { "question": "RaceTrac", - "icon": "./assets/data/nsi/logos/racetrac-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/racetrac-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432664,7 +433023,7 @@ }, { "question": "RaceWay", - "icon": "./assets/data/nsi/logos/raceway-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raceway-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432698,7 +433057,7 @@ }, { "question": "Reál", - "icon": "./assets/data/nsi/logos/real-58d40d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/real-58d40d.png", "osmTags": { "and": [ "shop=convenience", @@ -432729,7 +433088,7 @@ }, { "question": "Red Apple Food Mart (Mississippi)", - "icon": "./assets/data/nsi/logos/redapplefoodmart-301392.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redapplefoodmart-301392.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432745,7 +433104,7 @@ }, { "question": "Reddy Express", - "icon": "./assets/data/nsi/logos/reddyexpress-0b0ae9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reddyexpress-0b0ae9.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432761,7 +433120,7 @@ }, { "question": "REWE To Go", - "icon": "./assets/data/nsi/logos/rewetogo-60c7fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rewetogo-60c7fe.png", "osmTags": { "and": [ "shop=convenience", @@ -432777,7 +433136,7 @@ }, { "question": "Rhodes", - "icon": "./assets/data/nsi/logos/rhodes-37aedb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodes-37aedb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432793,7 +433152,7 @@ }, { "question": "Rimi Express", - "icon": "./assets/data/nsi/logos/rimiexpress-495118.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rimiexpress-495118.png", "osmTags": { "and": [ "shop=convenience", @@ -432809,7 +433168,7 @@ }, { "question": "Road Ranger", - "icon": "./assets/data/nsi/logos/roadranger-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/roadranger-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -432825,7 +433184,7 @@ }, { "question": "Robinsons Easymart", - "icon": "./assets/data/nsi/logos/robinsonseasymart-fb2210.png", + "icon": "https://data.mapcomplete.org/nsi//logos/robinsonseasymart-fb2210.png", "osmTags": { "and": [ "shop=convenience", @@ -432841,7 +433200,7 @@ }, { "question": "Rocket", - "icon": "./assets/data/nsi/logos/rocket-db1ce1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rocket-db1ce1.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432857,7 +433216,7 @@ }, { "question": "Rotten Robbie", - "icon": "./assets/data/nsi/logos/rottenrobbie-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rottenrobbie-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -432873,7 +433232,7 @@ }, { "question": "Royal Farms", - "icon": "./assets/data/nsi/logos/royalfarms-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalfarms-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432889,7 +433248,7 @@ }, { "question": "Rüedu", - "icon": "./assets/data/nsi/logos/ruedu-07a460.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ruedu-07a460.jpg", "osmTags": { "and": [ "self_service=only", @@ -432906,7 +433265,7 @@ }, { "question": "Rutter's", - "icon": "./assets/data/nsi/logos/rutters-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rutters-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432922,7 +433281,7 @@ }, { "question": "Sainsbury's Local", - "icon": "./assets/data/nsi/logos/sainsburyslocal-232829.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sainsburyslocal-232829.png", "osmTags": { "and": [ "shop=convenience", @@ -432938,7 +433297,7 @@ }, { "question": "Sale", - "icon": "./assets/data/nsi/logos/sale-5dea79.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sale-5dea79.svg", "osmTags": { "and": [ "shop=convenience", @@ -432954,7 +433313,7 @@ }, { "question": "Sasol Delight", - "icon": "./assets/data/nsi/logos/sasoldelight-c7b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sasoldelight-c7b713.jpg", "osmTags": { "and": [ "shop=convenience", @@ -432970,7 +433329,7 @@ }, { "question": "Scotmid", - "icon": "./assets/data/nsi/logos/scotmid-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scotmid-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433000,7 +433359,7 @@ }, { "question": "Sheetz", - "icon": "./assets/data/nsi/logos/sheetz-be9dbe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sheetz-be9dbe.png", "osmTags": { "and": [ "shop=convenience", @@ -433016,7 +433375,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-cfb41f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-cfb41f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433032,7 +433391,7 @@ }, { "question": "Shell Select", - "icon": "./assets/data/nsi/logos/shellselect-cfb41f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shellselect-cfb41f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433048,7 +433407,7 @@ }, { "question": "Shell Shop", - "icon": "./assets/data/nsi/logos/shellshop-cfb41f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shellshop-cfb41f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433081,7 +433440,7 @@ }, { "question": "Shop&Go (România)", - "icon": "./assets/data/nsi/logos/shopandgo-597303.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shopandgo-597303.svg", "osmTags": { "and": [ "shop=convenience", @@ -433099,7 +433458,7 @@ }, { "question": "Shop&Go (Србија)", - "icon": "./assets/data/nsi/logos/shopandgo-3015fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shopandgo-3015fb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433115,7 +433474,7 @@ }, { "question": "Shoprite Mini", - "icon": "./assets/data/nsi/logos/shopritemini-c7b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shopritemini-c7b713.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433131,7 +433490,7 @@ }, { "question": "SIM", - "icon": "./assets/data/nsi/logos/sim-12bebb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sim-12bebb.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433192,7 +433551,7 @@ }, { "question": "SimplyFresh", - "icon": "./assets/data/nsi/logos/simplyfresh-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/simplyfresh-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433208,7 +433567,7 @@ }, { "question": "Siwa", - "icon": "./assets/data/nsi/logos/siwa-5dea79.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/siwa-5dea79.svg", "osmTags": { "and": [ "shop=convenience", @@ -433239,7 +433598,7 @@ }, { "question": "Sklep Polski", - "icon": "./assets/data/nsi/logos/skleppolski-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skleppolski-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433255,7 +433614,7 @@ }, { "question": "Słoneczko", - "icon": "./assets/data/nsi/logos/sloneczko-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sloneczko-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433285,7 +433644,7 @@ }, { "question": "Şok Mini", - "icon": "./assets/data/nsi/logos/sokmini-62eaab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sokmini-62eaab.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433301,7 +433660,7 @@ }, { "question": "Spar", - "icon": "./assets/data/nsi/logos/spar-dfe3d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spar-dfe3d0.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433317,7 +433676,7 @@ }, { "question": "Spar (Norge)", - "icon": "./assets/data/nsi/logos/spar-2da37b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spar-2da37b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433333,7 +433692,7 @@ }, { "question": "Spar City", - "icon": "./assets/data/nsi/logos/sparcity-f85122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparcity-f85122.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433349,7 +433708,7 @@ }, { "question": "Spar Express", - "icon": "./assets/data/nsi/logos/sparexpress-dda8d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparexpress-dda8d6.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433365,7 +433724,7 @@ }, { "question": "Spar Express (Norge)", - "icon": "./assets/data/nsi/logos/sparexpress-2da37b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparexpress-2da37b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433381,7 +433740,7 @@ }, { "question": "Speedway", - "icon": "./assets/data/nsi/logos/speedway-4d6b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedway-4d6b4b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433397,7 +433756,7 @@ }, { "question": "Spencer's", - "icon": "./assets/data/nsi/logos/spencers-bb430b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spencers-bb430b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433413,7 +433772,7 @@ }, { "question": "Społem", - "icon": "./assets/data/nsi/logos/spolem-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spolem-95f41b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433444,7 +433803,7 @@ }, { "question": "Stewart's Shops", - "icon": "./assets/data/nsi/logos/stewartsshops-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stewartsshops-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433460,7 +433819,7 @@ }, { "question": "Stinker", - "icon": "./assets/data/nsi/logos/stinker-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stinker-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433476,7 +433835,7 @@ }, { "question": "Stokrotka Express", - "icon": "./assets/data/nsi/logos/stokrotkaexpress-95f41b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stokrotkaexpress-95f41b.png", "osmTags": { "and": [ "shop=convenience", @@ -433492,7 +433851,7 @@ }, { "question": "Stripes", - "icon": "./assets/data/nsi/logos/stripes-cc811e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stripes-cc811e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433508,7 +433867,7 @@ }, { "question": "Stuckey's", - "icon": "./assets/data/nsi/logos/stuckeys-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stuckeys-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433524,7 +433883,7 @@ }, { "question": "Studenac", - "icon": "./assets/data/nsi/logos/studenac-5b00ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/studenac-5b00ff.png", "osmTags": { "and": [ "shop=convenience", @@ -433540,7 +433899,7 @@ }, { "question": "Sunoco", - "icon": "./assets/data/nsi/logos/sunoco-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sunoco-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -433571,7 +433930,7 @@ }, { "question": "Super Sánchez", - "icon": "./assets/data/nsi/logos/supersanchez-9d5235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supersanchez-9d5235.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433587,7 +433946,7 @@ }, { "question": "Supercor", - "icon": "./assets/data/nsi/logos/supercor-dd9aae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/supercor-dd9aae.png", "osmTags": { "and": [ "shop=convenience", @@ -433617,7 +433976,7 @@ }, { "question": "TA", - "icon": "./assets/data/nsi/logos/ta-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ta-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433633,7 +433992,7 @@ }, { "question": "Tambo+", - "icon": "./assets/data/nsi/logos/tambo-853840.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tambo-853840.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433663,7 +434022,7 @@ }, { "question": "Tempo", - "icon": "./assets/data/nsi/logos/tempo-a7773e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tempo-a7773e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433679,7 +434038,7 @@ }, { "question": "Terno", - "icon": "./assets/data/nsi/logos/terno-2496a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/terno-2496a5.png", "osmTags": { "and": [ "shop=convenience", @@ -433695,7 +434054,7 @@ }, { "question": "Terrible's", - "icon": "./assets/data/nsi/logos/terribles-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terribles-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433711,7 +434070,7 @@ }, { "question": "Tesco", - "icon": "./assets/data/nsi/logos/tesco-9b0f0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tesco-9b0f0c.png", "osmTags": { "and": [ "shop=convenience", @@ -433727,7 +434086,7 @@ }, { "question": "Tesco Expres", - "icon": "./assets/data/nsi/logos/tescoexpres-2496a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tescoexpres-2496a5.png", "osmTags": { "and": [ "shop=convenience", @@ -433743,7 +434102,7 @@ }, { "question": "Tesco Express", - "icon": "./assets/data/nsi/logos/tescoexpress-65faa4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tescoexpress-65faa4.png", "osmTags": { "and": [ "shop=convenience", @@ -433759,7 +434118,7 @@ }, { "question": "Texaco", - "icon": "./assets/data/nsi/logos/texaco-4d6b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texaco-4d6b4b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433775,7 +434134,7 @@ }, { "question": "Thorntons", - "icon": "./assets/data/nsi/logos/thorntons-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thorntons-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -433791,7 +434150,7 @@ }, { "question": "Tiendas 3B", - "icon": "./assets/data/nsi/logos/tiendas3b-9d5235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiendas3b-9d5235.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433850,7 +434209,7 @@ }, { "question": "Tommy", - "icon": "./assets/data/nsi/logos/tommy-5b00ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tommy-5b00ff.jpg", "osmTags": { "and": [ "shop=convenience", @@ -433895,7 +434254,7 @@ }, { "question": "Total", - "icon": "./assets/data/nsi/logos/total-bd0db4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/total-bd0db4.png", "osmTags": { "and": [ "shop=convenience", @@ -433911,7 +434270,7 @@ }, { "question": "Total Access", - "icon": "./assets/data/nsi/logos/totalaccess-bf3eb4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalaccess-bf3eb4.png", "osmTags": { "and": [ "shop=convenience", @@ -433927,7 +434286,7 @@ }, { "question": "Town Pump", - "icon": "./assets/data/nsi/logos/townpump-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townpump-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -433957,7 +434316,7 @@ }, { "question": "Treats", - "icon": "./assets/data/nsi/logos/treats-27379b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/treats-27379b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434001,7 +434360,7 @@ }, { "question": "Turkey Hill", - "icon": "./assets/data/nsi/logos/turkeyhill-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkeyhill-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434017,7 +434376,7 @@ }, { "question": "U Express", - "icon": "./assets/data/nsi/logos/uexpress-bf3eb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uexpress-bf3eb4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434033,7 +434392,7 @@ }, { "question": "U-Store", - "icon": "./assets/data/nsi/logos/ustore-60c7fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ustore-60c7fe.svg", "osmTags": { "and": [ "shop=convenience", @@ -434049,7 +434408,7 @@ }, { "question": "UFA", - "icon": "./assets/data/nsi/logos/ufa-6da36b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ufa-6da36b.svg", "osmTags": { "and": [ "shop=convenience", @@ -434065,7 +434424,7 @@ }, { "question": "Ultramar", - "icon": "./assets/data/nsi/logos/ultramar-eea72f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ultramar-eea72f.png", "osmTags": { "and": [ "shop=convenience", @@ -434081,7 +434440,7 @@ }, { "question": "Uncle John's", - "icon": "./assets/data/nsi/logos/unclejohns-fb2210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unclejohns-fb2210.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434097,7 +434456,7 @@ }, { "question": "United", - "icon": "./assets/data/nsi/logos/united-0b0ae9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/united-0b0ae9.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434113,7 +434472,7 @@ }, { "question": "United Dairy Farmers", - "icon": "./assets/data/nsi/logos/uniteddairyfarmers-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniteddairyfarmers-f1e40b.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -434131,7 +434490,7 @@ }, { "question": "US Market", - "icon": "./assets/data/nsi/logos/usmarket-f1e40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usmarket-f1e40b.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434181,7 +434540,7 @@ }, { "question": "Utile", - "icon": "./assets/data/nsi/logos/utile-bf3eb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/utile-bf3eb4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434197,7 +434556,7 @@ }, { "question": "Valero", - "icon": "./assets/data/nsi/logos/valero-6ca601.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valero-6ca601.png", "osmTags": { "and": [ "shop=convenience", @@ -434213,7 +434572,7 @@ }, { "question": "VanGO", - "icon": "./assets/data/nsi/logos/vango-298a73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vango-298a73.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434245,7 +434604,7 @@ }, { "question": "Virši", - "icon": "./assets/data/nsi/logos/virsi-401681.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virsi-401681.png", "osmTags": { "and": [ "shop=convenience", @@ -434261,7 +434620,7 @@ }, { "question": "Viva", - "icon": "./assets/data/nsi/logos/viva-856fe1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/viva-856fe1.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434292,7 +434651,7 @@ }, { "question": "Vival", - "icon": "./assets/data/nsi/logos/vival-12cc61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vival-12cc61.png", "osmTags": { "and": [ "shop=convenience", @@ -434337,7 +434696,7 @@ }, { "question": "Waitrose", - "icon": "./assets/data/nsi/logos/waitrose-126aa8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waitrose-126aa8.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434353,7 +434712,7 @@ }, { "question": "Wawa", - "icon": "./assets/data/nsi/logos/wawa-dad45f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wawa-dad45f.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434384,7 +434743,7 @@ }, { "question": "Welcome", - "icon": "./assets/data/nsi/logos/welcome-232829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welcome-232829.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434400,7 +434759,7 @@ }, { "question": "Wesco", - "icon": "./assets/data/nsi/logos/wesco-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wesco-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -434416,7 +434775,7 @@ }, { "question": "WinMart+", - "icon": "./assets/data/nsi/logos/winmart-61b913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winmart-61b913.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434432,7 +434791,7 @@ }, { "question": "Woolworths MetroGo", - "icon": "./assets/data/nsi/logos/woolworthsmetrogo-0b0ae9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woolworthsmetrogo-0b0ae9.png", "osmTags": { "and": [ "shop=convenience", @@ -434479,7 +434838,7 @@ }, { "question": "XtraMart", - "icon": "./assets/data/nsi/logos/xtramart-ff595a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xtramart-ff595a.png", "osmTags": { "and": [ "shop=convenience", @@ -434510,7 +434869,7 @@ }, { "question": "Yesway", - "icon": "./assets/data/nsi/logos/yesway-f1e40b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yesway-f1e40b.png", "osmTags": { "and": [ "shop=convenience", @@ -434541,7 +434900,7 @@ }, { "question": "Yorma's", - "icon": "./assets/data/nsi/logos/yormas-60c7fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yormas-60c7fe.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434557,7 +434916,7 @@ }, { "question": "Your Coop Food (Midcounties Co-operative)", - "icon": "./assets/data/nsi/logos/yourcoopfood-232829.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yourcoopfood-232829.png", "osmTags": { "and": [ "shop=convenience", @@ -434575,7 +434934,7 @@ }, { "question": "Żabka", - "icon": "./assets/data/nsi/logos/zabka-f55ead.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zabka-f55ead.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434593,7 +434952,7 @@ }, { "question": "Żappka", - "icon": "./assets/data/nsi/logos/zappka-95f41b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zappka-95f41b.jpg", "osmTags": { "and": [ "opening_hours=24/7", @@ -434745,7 +435104,7 @@ }, { "question": "Акконд", - "icon": "./assets/data/nsi/logos/akkond-e33fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akkond-e33fbc.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434779,7 +435138,7 @@ }, { "question": "Белоруснефть", - "icon": "./assets/data/nsi/logos/ed92ce-e64bef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ed92ce-e64bef.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434809,7 +435168,7 @@ }, { "question": "Близенько", - "icon": "./assets/data/nsi/logos/106d49-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/106d49-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434867,7 +435226,7 @@ }, { "question": "ВкусВилл", - "icon": "./assets/data/nsi/logos/vkusvill-e33fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vkusvill-e33fbc.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434915,7 +435274,7 @@ }, { "question": "Гроздь", - "icon": "./assets/data/nsi/logos/44aeb3-e33fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/44aeb3-e33fbc.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434959,7 +435318,7 @@ }, { "question": "Делві", - "icon": "./assets/data/nsi/logos/292dce-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/292dce-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -434975,7 +435334,7 @@ }, { "question": "Доброном", - "icon": "./assets/data/nsi/logos/67d62e-065292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/67d62e-065292.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435037,7 +435396,7 @@ }, { "question": "Ермолино", - "icon": "./assets/data/nsi/logos/yermolino-e33fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yermolino-e33fbc.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435111,7 +435470,7 @@ }, { "question": "Квартал", - "icon": "./assets/data/nsi/logos/212655-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/212655-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435169,7 +435528,7 @@ }, { "question": "Коло", - "icon": "./assets/data/nsi/logos/a22748-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a22748-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435247,7 +435606,7 @@ }, { "question": "ҚазМұнайГаз", - "icon": "./assets/data/nsi/logos/ef63bd-7ad3ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ef63bd-7ad3ae.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435281,7 +435640,7 @@ }, { "question": "Лукойл", - "icon": "./assets/data/nsi/logos/lukoil-bd0db4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukoil-bd0db4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435301,7 +435660,7 @@ }, { "question": "Магнит (России)", - "icon": "./assets/data/nsi/logos/magnit-e33fbc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/magnit-e33fbc.svg", "osmTags": { "and": [ "shop=convenience", @@ -435349,7 +435708,7 @@ }, { "question": "Мария-Ра", - "icon": "./assets/data/nsi/logos/a5e9d6-e33fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a5e9d6-e33fbc.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435379,7 +435738,7 @@ }, { "question": "Мій Ашан", - "icon": "./assets/data/nsi/logos/myauchan-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/myauchan-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435399,7 +435758,7 @@ }, { "question": "Мікс Март", - "icon": "./assets/data/nsi/logos/c92d51-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c92d51-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435599,7 +435958,7 @@ }, { "question": "Посад", - "icon": "./assets/data/nsi/logos/fd13e6-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fd13e6-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435713,7 +436072,7 @@ }, { "question": "Сім23", - "icon": "./assets/data/nsi/logos/1e259f-023e9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/1e259f-023e9c.png", "osmTags": { "and": [ "shop=convenience", @@ -435841,7 +436200,7 @@ }, { "question": "Файно Маркет", - "icon": "./assets/data/nsi/logos/958102-023e9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/958102-023e9c.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435946,7 +436305,7 @@ }, { "question": "ბელმარტი", - "icon": "./assets/data/nsi/logos/belmart-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belmart-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435968,7 +436327,7 @@ }, { "question": "ბილიონი", - "icon": "./assets/data/nsi/logos/billion-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/billion-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -435989,7 +436348,7 @@ }, { "question": "გვირილა", - "icon": "./assets/data/nsi/logos/gvirila-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gvirila-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436052,7 +436411,7 @@ }, { "question": "ევროპროდუქტი", - "icon": "./assets/data/nsi/logos/europroduct-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/europroduct-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436094,7 +436453,7 @@ }, { "question": "ვეი მარტი", - "icon": "./assets/data/nsi/logos/waymart-3cb7c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/waymart-3cb7c4.png", "osmTags": { "and": [ "shop=convenience", @@ -436114,7 +436473,7 @@ }, { "question": "ზღაპარი", - "icon": "./assets/data/nsi/logos/zgapari-3cb7c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zgapari-3cb7c4.png", "osmTags": { "and": [ "shop=convenience", @@ -436136,7 +436495,7 @@ }, { "question": "იოლი", - "icon": "./assets/data/nsi/logos/ioli-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ioli-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436158,7 +436517,7 @@ }, { "question": "კარფური", - "icon": "./assets/data/nsi/logos/carrefourcity-3cb7c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefourcity-3cb7c4.png", "osmTags": { "and": [ "shop=convenience", @@ -436182,7 +436541,7 @@ }, { "question": "ლიბრე", - "icon": "./assets/data/nsi/logos/libre-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/libre-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436204,7 +436563,7 @@ }, { "question": "მაგნიტი", - "icon": "./assets/data/nsi/logos/magniti-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magniti-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436226,7 +436585,7 @@ }, { "question": "ნაზილბე", - "icon": "./assets/data/nsi/logos/nazilbe-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nazilbe-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436248,7 +436607,7 @@ }, { "question": "ნიკორა", - "icon": "./assets/data/nsi/logos/nikora-3cb7c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nikora-3cb7c4.png", "osmTags": { "and": [ "shop=convenience", @@ -436270,7 +436629,7 @@ }, { "question": "ორი ნაბიჯი", - "icon": "./assets/data/nsi/logos/orinabiji-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orinabiji-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436295,7 +436654,7 @@ }, { "question": "სმარტი", - "icon": "./assets/data/nsi/logos/smart-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smart-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436317,7 +436676,7 @@ }, { "question": "სპარი", - "icon": "./assets/data/nsi/logos/spar-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spar-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436337,7 +436696,7 @@ }, { "question": "უნივერსამი", - "icon": "./assets/data/nsi/logos/universami-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universami-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436359,7 +436718,7 @@ }, { "question": "ფემილი", - "icon": "./assets/data/nsi/logos/family-3cb7c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/family-3cb7c4.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436400,7 +436759,7 @@ }, { "question": "جانبو", - "icon": "./assets/data/nsi/logos/canbo-d157b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canbo-d157b9.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436439,7 +436798,7 @@ }, { "question": "رفاه", - "icon": "./assets/data/nsi/logos/refah-d157b9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/refah-d157b9.svg", "osmTags": { "and": [ "shop=convenience", @@ -436487,7 +436846,7 @@ }, { "question": "ميد", - "icon": "./assets/data/nsi/logos/meed-cc9d9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meed-cc9d9e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436507,7 +436866,7 @@ }, { "question": "세븐일레븐", - "icon": "./assets/data/nsi/logos/7eleven-fab923.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7eleven-fab923.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436527,7 +436886,7 @@ }, { "question": "이마트24", - "icon": "./assets/data/nsi/logos/emart24-fab923.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emart24-fab923.png", "osmTags": { "and": [ "shop=convenience", @@ -436547,7 +436906,7 @@ }, { "question": "アンスリー", - "icon": "./assets/data/nsi/logos/an3-652b3e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/an3-652b3e.svg", "osmTags": { "and": [ "shop=convenience", @@ -436568,7 +436927,7 @@ }, { "question": "コミュニティ・ストア", - "icon": "./assets/data/nsi/logos/communitystore-652b3e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/communitystore-652b3e.svg", "osmTags": { "and": [ "shop=convenience", @@ -436607,7 +436966,7 @@ }, { "question": "セーブオン", - "icon": "./assets/data/nsi/logos/saveon-652b3e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saveon-652b3e.svg", "osmTags": { "and": [ "shop=convenience", @@ -436646,10 +437005,9 @@ }, { "question": "セブン-イレブン", - "icon": "./assets/data/nsi/logos/7eleven-652b3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7eleven-652b3e.jpg", "osmTags": { "and": [ - "official_name:en=Seven-Eleven", "shop=convenience", { "or": [ @@ -436659,7 +437017,8 @@ "brand:wikidata=Q259340", "name=セブン-イレブン", "name:en=7-Eleven", - "name:ja=セブン-イレブン" + "name:ja=セブン-イレブン", + "official_name:en=Seven-Eleven" ] } ] @@ -436667,7 +437026,7 @@ }, { "question": "デイリーヤマザキ", - "icon": "./assets/data/nsi/logos/dailyyamazaki-652b3e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dailyyamazaki-652b3e.svg", "osmTags": { "and": [ "shop=convenience", @@ -436687,7 +437046,7 @@ }, { "question": "ナチュラルローソン", - "icon": "./assets/data/nsi/logos/naturallawson-652b3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/naturallawson-652b3e.png", "osmTags": { "and": [ "shop=convenience", @@ -436726,7 +437085,7 @@ }, { "question": "ファミリーマート", - "icon": "./assets/data/nsi/logos/familymart-652b3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/familymart-652b3e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436746,7 +437105,7 @@ }, { "question": "ポプラ", - "icon": "./assets/data/nsi/logos/poplar-652b3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/poplar-652b3e.png", "osmTags": { "and": [ "shop=convenience", @@ -436766,7 +437125,7 @@ }, { "question": "ミニストップ", - "icon": "./assets/data/nsi/logos/ministop-652b3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministop-652b3e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436804,7 +437163,7 @@ }, { "question": "ローソン", - "icon": "./assets/data/nsi/logos/lawson-652b3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lawson-652b3e.jpg", "osmTags": { "and": [ "shop=convenience", @@ -436881,7 +437240,7 @@ }, { "question": "ローソンストア100", - "icon": "./assets/data/nsi/logos/lawsonstore100-652b3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lawsonstore100-652b3e.png", "osmTags": { "and": [ "shop=convenience", @@ -436960,7 +437319,7 @@ }, { "question": "優品360 Best Mart 360", - "icon": "./assets/data/nsi/logos/bestmart360-298a73.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bestmart360-298a73.png", "osmTags": { "and": [ "shop=convenience", @@ -436980,7 +437339,7 @@ }, { "question": "全家", - "icon": "./assets/data/nsi/logos/familymart-da9ca7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/familymart-da9ca7.jpg", "osmTags": { "and": [ "shop=convenience", @@ -437000,7 +437359,7 @@ }, { "question": "全家便利商店", - "icon": "./assets/data/nsi/logos/familymart-aa89a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/familymart-aa89a7.jpg", "osmTags": { "and": [ "shop=convenience", @@ -437167,7 +437526,7 @@ }, { "question": "罗森", - "icon": "./assets/data/nsi/logos/lawson-da9ca7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lawson-da9ca7.jpg", "osmTags": { "and": [ "shop=convenience", @@ -437226,7 +437585,7 @@ }, { "question": "萊爾富", - "icon": "./assets/data/nsi/logos/hilife-aa89a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hilife-aa89a7.jpg", "osmTags": { "and": [ "shop=convenience", @@ -437284,7 +437643,7 @@ }, { "question": "AlphaGraphics", - "icon": "./assets/data/nsi/logos/alphagraphics-090c18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alphagraphics-090c18.png", "osmTags": { "and": [ "craft=signmaker", @@ -437301,7 +437660,7 @@ }, { "question": "Copy-Top", - "icon": "./assets/data/nsi/logos/copytop-dbbed6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copytop-dbbed6.jpg", "osmTags": { "and": [ "shop=copyshop", @@ -437331,7 +437690,7 @@ }, { "question": "FaxCopy", - "icon": "./assets/data/nsi/logos/faxcopy-8c1a3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/faxcopy-8c1a3b.jpg", "osmTags": { "and": [ "shop=copyshop", @@ -437347,7 +437706,7 @@ }, { "question": "FedEx Office", - "icon": "./assets/data/nsi/logos/fedexoffice-090c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fedexoffice-090c18.jpg", "osmTags": { "and": [ "shop=copyshop", @@ -437363,7 +437722,7 @@ }, { "question": "Mania Print", - "icon": "./assets/data/nsi/logos/maniaprint-a6353b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maniaprint-a6353b.jpg", "osmTags": { "and": [ "shop=copyshop", @@ -437379,7 +437738,7 @@ }, { "question": "Minuteman Press", - "icon": "./assets/data/nsi/logos/minutemanpress-a4530d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minutemanpress-a4530d.png", "osmTags": { "and": [ "shop=copyshop", @@ -437409,7 +437768,7 @@ }, { "question": "Service Graphics", - "icon": "./assets/data/nsi/logos/servicegraphics-965e32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicegraphics-965e32.jpg", "osmTags": { "and": [ "shop=copyshop", @@ -437425,7 +437784,7 @@ }, { "question": "Sir Speedy", - "icon": "./assets/data/nsi/logos/sirspeedy-090c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sirspeedy-090c18.jpg", "osmTags": { "and": [ "shop=copyshop", @@ -437455,7 +437814,7 @@ }, { "question": "アクセア", - "icon": "./assets/data/nsi/logos/accea-3df938.png", + "icon": "https://data.mapcomplete.org/nsi//logos/accea-3df938.png", "osmTags": { "and": [ "shop=copyshop", @@ -437475,7 +437834,7 @@ }, { "question": "Aesop", - "icon": "./assets/data/nsi/logos/aesop-a08666.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aesop-a08666.svg", "osmTags": { "and": [ "shop=cosmetics", @@ -437491,7 +437850,7 @@ }, { "question": "Amávia", - "icon": "./assets/data/nsi/logos/amavia-55348e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amavia-55348e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437507,7 +437866,7 @@ }, { "question": "Avatim", - "icon": "./assets/data/nsi/logos/avatim-55348e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avatim-55348e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437523,7 +437882,7 @@ }, { "question": "Aveda", - "icon": "./assets/data/nsi/logos/aveda-7d6f1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aveda-7d6f1e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437539,7 +437898,7 @@ }, { "question": "Avon", - "icon": "./assets/data/nsi/logos/avon-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avon-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437555,7 +437914,7 @@ }, { "question": "Avril", - "icon": "./assets/data/nsi/logos/avril-73d8b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avril-73d8b4.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437571,7 +437930,7 @@ }, { "question": "Banila Co.", - "icon": "./assets/data/nsi/logos/banilaco-b395fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banilaco-b395fe.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437591,7 +437950,7 @@ }, { "question": "bareMinerals", - "icon": "./assets/data/nsi/logos/bareminerals-fdc7bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bareminerals-fdc7bb.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437607,7 +437966,7 @@ }, { "question": "Bath & Body Works", - "icon": "./assets/data/nsi/logos/bathandbodyworks-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bathandbodyworks-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437623,7 +437982,7 @@ }, { "question": "Beauty Success", - "icon": "./assets/data/nsi/logos/beautysuccess-6051ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beautysuccess-6051ce.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437639,7 +437998,7 @@ }, { "question": "Beauty Zone", - "icon": "./assets/data/nsi/logos/beautyzone-0141c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beautyzone-0141c7.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437670,7 +438029,7 @@ }, { "question": "bluemercury", - "icon": "./assets/data/nsi/logos/bluemercury-7d6f1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluemercury-7d6f1e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437686,7 +438045,7 @@ }, { "question": "Bobbi Brown", - "icon": "./assets/data/nsi/logos/bobbibrown-7b55df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobbibrown-7b55df.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437702,7 +438061,7 @@ }, { "question": "Bottega Verde", - "icon": "./assets/data/nsi/logos/bottegaverde-a13ae4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bottegaverde-a13ae4.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437718,7 +438077,7 @@ }, { "question": "Charlotte Tilbury", - "icon": "./assets/data/nsi/logos/charlottetilbury-6776ad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/charlottetilbury-6776ad.svg", "osmTags": { "and": [ "shop=cosmetics", @@ -437734,7 +438093,7 @@ }, { "question": "Charmed Aroma", - "icon": "./assets/data/nsi/logos/charmedaroma-0bbe21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/charmedaroma-0bbe21.png", "osmTags": { "and": [ "shop=cosmetics", @@ -437750,7 +438109,7 @@ }, { "question": "Chicor", - "icon": "./assets/data/nsi/logos/chicor-b395fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicor-b395fe.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437770,7 +438129,7 @@ }, { "question": "Cloré Beauty Supply", - "icon": "./assets/data/nsi/logos/clorebeautysupply-0bbe21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clorebeautysupply-0bbe21.png", "osmTags": { "and": [ "shop=cosmetics", @@ -437786,7 +438145,7 @@ }, { "question": "Dermacol", - "icon": "./assets/data/nsi/logos/dermacol-85d8c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dermacol-85d8c2.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437802,7 +438161,7 @@ }, { "question": "Di", - "icon": "./assets/data/nsi/logos/di-d6be4d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/di-d6be4d.png", "osmTags": { "and": [ "shop=cosmetics", @@ -437818,7 +438177,7 @@ }, { "question": "Etude House", - "icon": "./assets/data/nsi/logos/etudehouse-b395fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etudehouse-b395fe.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437852,7 +438211,7 @@ }, { "question": "Faberlic", - "icon": "./assets/data/nsi/logos/faberlic-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/faberlic-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437868,7 +438227,7 @@ }, { "question": "Gouiran Beauté", - "icon": "./assets/data/nsi/logos/gouiranbeaute-bb76b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gouiranbeaute-bb76b2.png", "osmTags": { "and": [ "shop=cosmetics", @@ -437884,7 +438243,7 @@ }, { "question": "Gratis", - "icon": "./assets/data/nsi/logos/gratis-15d6a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gratis-15d6a4.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437900,7 +438259,7 @@ }, { "question": "Havlíkova apotéka", - "icon": "./assets/data/nsi/logos/havlikovaapoteka-85d8c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/havlikovaapoteka-85d8c2.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437916,7 +438275,7 @@ }, { "question": "IL Makiage", - "icon": "./assets/data/nsi/logos/ilmakiage-e301c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ilmakiage-e301c4.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437934,7 +438293,7 @@ }, { "question": "Inglot", - "icon": "./assets/data/nsi/logos/inglot-a08666.png", + "icon": "https://data.mapcomplete.org/nsi//logos/inglot-a08666.png", "osmTags": { "and": [ "shop=cosmetics", @@ -437950,7 +438309,7 @@ }, { "question": "Innisfree", - "icon": "./assets/data/nsi/logos/innisfree-b395fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/innisfree-b395fe.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -437989,7 +438348,7 @@ }, { "question": "itStyle", - "icon": "./assets/data/nsi/logos/itstyle-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itstyle-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438005,7 +438364,7 @@ }, { "question": "Jurlique", - "icon": "./assets/data/nsi/logos/jurlique-a08666.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jurlique-a08666.png", "osmTags": { "and": [ "shop=cosmetics", @@ -438021,7 +438380,7 @@ }, { "question": "Kicks", - "icon": "./assets/data/nsi/logos/kicks-649f8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kicks-649f8f.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438037,7 +438396,7 @@ }, { "question": "Kiehl's", - "icon": "./assets/data/nsi/logos/kiehls-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiehls-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438053,7 +438412,7 @@ }, { "question": "KIKO Milano", - "icon": "./assets/data/nsi/logos/kikomilano-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kikomilano-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438069,7 +438428,7 @@ }, { "question": "L'Occitane", - "icon": "./assets/data/nsi/logos/loccitane-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loccitane-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438100,7 +438459,7 @@ }, { "question": "Laline", - "icon": "./assets/data/nsi/logos/laline-255338.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laline-255338.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438135,7 +438494,7 @@ }, { "question": "Lush", - "icon": "./assets/data/nsi/logos/lush-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lush-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438165,7 +438524,7 @@ }, { "question": "MAC Cosmetics", - "icon": "./assets/data/nsi/logos/maccosmetics-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maccosmetics-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438182,7 +438541,7 @@ }, { "question": "Mahogany", - "icon": "./assets/data/nsi/logos/mahogany-55348e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mahogany-55348e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438198,7 +438557,7 @@ }, { "question": "Malin+Goetz", - "icon": "./assets/data/nsi/logos/malingoetz-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/malingoetz-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438214,7 +438573,7 @@ }, { "question": "Manufaktura", - "icon": "./assets/data/nsi/logos/manufaktura-85d8c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/manufaktura-85d8c2.png", "osmTags": { "and": [ "shop=cosmetics", @@ -438230,7 +438589,7 @@ }, { "question": "Merle Norman Cosmetics", - "icon": "./assets/data/nsi/logos/merlenorman-f96c07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/merlenorman-f96c07.jpg", "osmTags": { "and": [ "full_name=Merle Norman Cosmetic Studio", @@ -438247,7 +438606,7 @@ }, { "question": "Missha", - "icon": "./assets/data/nsi/logos/missha-b395fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missha-b395fe.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438267,7 +438626,7 @@ }, { "question": "Mixit", - "icon": "./assets/data/nsi/logos/mixit-8126fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mixit-8126fc.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438283,7 +438642,7 @@ }, { "question": "Molton Brown", - "icon": "./assets/data/nsi/logos/moltonbrown-6776ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moltonbrown-6776ad.jpg", "osmTags": { "and": [ "beauty=spa", @@ -438300,7 +438659,7 @@ }, { "question": "Morphe", - "icon": "./assets/data/nsi/logos/morphe-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morphe-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438316,7 +438675,7 @@ }, { "question": "Natura", - "icon": "./assets/data/nsi/logos/natura-55348e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/natura-55348e.png", "osmTags": { "and": [ "shop=cosmetics", @@ -438332,7 +438691,7 @@ }, { "question": "Nature Republic", - "icon": "./assets/data/nsi/logos/naturerepublic-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturerepublic-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438348,7 +438707,7 @@ }, { "question": "Nocibé", - "icon": "./assets/data/nsi/logos/nocibe-6051ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nocibe-6051ce.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438364,7 +438723,7 @@ }, { "question": "Nyx", - "icon": "./assets/data/nsi/logos/nyx-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nyx-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438380,7 +438739,7 @@ }, { "question": "Olive Young", - "icon": "./assets/data/nsi/logos/oliveyoung-b395fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oliveyoung-b395fe.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438400,7 +438759,7 @@ }, { "question": "Oriflame", - "icon": "./assets/data/nsi/logos/oriflame-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oriflame-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438416,7 +438775,7 @@ }, { "question": "Origins", - "icon": "./assets/data/nsi/logos/origins-7d6f1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/origins-7d6f1e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438432,7 +438791,7 @@ }, { "question": "Primor", - "icon": "./assets/data/nsi/logos/primor-16394a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primor-16394a.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438448,7 +438807,7 @@ }, { "question": "PUPA Milano", - "icon": "./assets/data/nsi/logos/pupamilano-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pupamilano-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438464,7 +438823,7 @@ }, { "question": "Quem Disse, Berenice?", - "icon": "./assets/data/nsi/logos/quemdisseberenice-55348e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quemdisseberenice-55348e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438480,7 +438839,7 @@ }, { "question": "Rituals", - "icon": "./assets/data/nsi/logos/rituals-a08666.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rituals-a08666.png", "osmTags": { "and": [ "shop=cosmetics", @@ -438510,7 +438869,7 @@ }, { "question": "Sabon", - "icon": "./assets/data/nsi/logos/sabon-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sabon-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438528,7 +438887,7 @@ }, { "question": "Saga Cosmetics", - "icon": "./assets/data/nsi/logos/sagacosmetics-bb76b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sagacosmetics-bb76b2.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438544,7 +438903,7 @@ }, { "question": "Saje", - "icon": "./assets/data/nsi/logos/saje-cf522e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saje-cf522e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438560,7 +438919,7 @@ }, { "question": "Sephora", - "icon": "./assets/data/nsi/logos/sephora-a08666.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sephora-a08666.svg", "osmTags": { "and": [ "shop=cosmetics", @@ -438576,7 +438935,7 @@ }, { "question": "Shiseido", - "icon": "./assets/data/nsi/logos/shiseido-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shiseido-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438596,7 +438955,7 @@ }, { "question": "Signature Cosmetics & Fragrances", - "icon": "./assets/data/nsi/logos/signaturecosmeticsandfragrances-28fda4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/signaturecosmeticsandfragrances-28fda4.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438612,7 +438971,7 @@ }, { "question": "Skinfood", - "icon": "./assets/data/nsi/logos/skinfood-b395fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skinfood-b395fe.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438632,7 +438991,7 @@ }, { "question": "Soeder", - "icon": "./assets/data/nsi/logos/soeder-1b5c42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/soeder-1b5c42.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438648,7 +439007,7 @@ }, { "question": "Space NK", - "icon": "./assets/data/nsi/logos/spacenk-6776ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spacenk-6776ad.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438664,7 +439023,7 @@ }, { "question": "The Body Shop", - "icon": "./assets/data/nsi/logos/thebodyshop-a08666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebodyshop-a08666.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438680,7 +439039,7 @@ }, { "question": "The Face Shop", - "icon": "./assets/data/nsi/logos/thefaceshop-b395fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thefaceshop-b395fe.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438700,7 +439059,7 @@ }, { "question": "Tony Moly", - "icon": "./assets/data/nsi/logos/tonymoly-b395fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tonymoly-b395fe.png", "osmTags": { "and": [ "shop=cosmetics", @@ -438720,7 +439079,7 @@ }, { "question": "Ulta Beauty", - "icon": "./assets/data/nsi/logos/ultabeauty-7d6f1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ultabeauty-7d6f1e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438736,7 +439095,7 @@ }, { "question": "Wycon Cosmetics", - "icon": "./assets/data/nsi/logos/wyconcosmetics-a13ae4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wyconcosmetics-a13ae4.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438752,7 +439111,7 @@ }, { "question": "Yes! Cosmetics", - "icon": "./assets/data/nsi/logos/yescosmetics-55348e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yescosmetics-55348e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438768,7 +439127,7 @@ }, { "question": "Yves Rocher", - "icon": "./assets/data/nsi/logos/yvesrocher-93ef6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yvesrocher-93ef6e.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438784,7 +439143,7 @@ }, { "question": "Ziaja", - "icon": "./assets/data/nsi/logos/ziaja-a2d805.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ziaja-a2d805.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438814,7 +439173,7 @@ }, { "question": "Золотое яблоко", - "icon": "./assets/data/nsi/logos/goldapple-882961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldapple-882961.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438848,7 +439207,7 @@ }, { "question": "Л'Этуаль", - "icon": "./assets/data/nsi/logos/5e497e-882961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/5e497e-882961.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438879,7 +439238,7 @@ }, { "question": "Рив Гош", - "icon": "./assets/data/nsi/logos/d7b8b0-882961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d7b8b0-882961.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438913,7 +439272,7 @@ }, { "question": "ვულე ვუ", - "icon": "./assets/data/nsi/logos/voulezvous-5f8e42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/voulezvous-5f8e42.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438935,7 +439294,7 @@ }, { "question": "ისი პარი", - "icon": "./assets/data/nsi/logos/iciparis-5f8e42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iciparis-5f8e42.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438977,7 +439336,7 @@ }, { "question": "卓悅 Bonjour", - "icon": "./assets/data/nsi/logos/bonjour-03ac43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonjour-03ac43.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -438997,7 +439356,7 @@ }, { "question": "卡萊美 Colourmix", - "icon": "./assets/data/nsi/logos/colourmix-03ac43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colourmix-03ac43.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -439017,7 +439376,7 @@ }, { "question": "芭比波朗", - "icon": "./assets/data/nsi/logos/bobbibrown-dab93b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobbibrown-dab93b.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -439037,7 +439396,7 @@ }, { "question": "莎莎 Sasa", - "icon": "./assets/data/nsi/logos/sasa-03ac43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sasa-03ac43.jpg", "osmTags": { "and": [ "shop=cosmetics", @@ -439057,7 +439416,7 @@ }, { "question": "Atwoods", - "icon": "./assets/data/nsi/logos/atwoods-e159b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atwoods-e159b8.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439073,7 +439432,7 @@ }, { "question": "Blain's Farm & Fleet", - "icon": "./assets/data/nsi/logos/blainsfarmandfleet-e159b8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/blainsfarmandfleet-e159b8.svg", "osmTags": { "and": [ "shop=country_store", @@ -439089,7 +439448,7 @@ }, { "question": "Bomgaars", - "icon": "./assets/data/nsi/logos/bomgaars-e159b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bomgaars-e159b8.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439105,7 +439464,7 @@ }, { "question": "CountryMax", - "icon": "./assets/data/nsi/logos/countrymax-dbe0bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countrymax-dbe0bc.png", "osmTags": { "and": [ "shop=country_store", @@ -439121,7 +439480,7 @@ }, { "question": "Fleet Farm", - "icon": "./assets/data/nsi/logos/fleetfarm-e159b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fleetfarm-e159b8.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439137,7 +439496,7 @@ }, { "question": "Grange Co-op", - "icon": "./assets/data/nsi/logos/grangecoop-e159b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/grangecoop-e159b8.png", "osmTags": { "and": [ "shop=country_store", @@ -439153,7 +439512,7 @@ }, { "question": "Granngården", - "icon": "./assets/data/nsi/logos/granngarden-9e8c4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/granngarden-9e8c4d.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439169,7 +439528,7 @@ }, { "question": "Home of Economy", - "icon": "./assets/data/nsi/logos/homeofeconomy-e159b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/homeofeconomy-e159b8.png", "osmTags": { "and": [ "shop=country_store", @@ -439185,7 +439544,7 @@ }, { "question": "Landi", - "icon": "./assets/data/nsi/logos/landi-a9a167.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landi-a9a167.svg", "osmTags": { "and": [ "shop=country_store", @@ -439201,7 +439560,7 @@ }, { "question": "Mole Valley Farmers", - "icon": "./assets/data/nsi/logos/molevalleyfarmers-1d97dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/molevalleyfarmers-1d97dc.png", "osmTags": { "and": [ "shop=country_store", @@ -439217,7 +439576,7 @@ }, { "question": "Norbys Farm Fleet", - "icon": "./assets/data/nsi/logos/norbysfarmfleet-e159b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norbysfarmfleet-e159b8.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439233,7 +439592,7 @@ }, { "question": "Orscheln Farm & Home", - "icon": "./assets/data/nsi/logos/orschelnfarmandhome-e159b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orschelnfarmandhome-e159b8.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439249,7 +439608,7 @@ }, { "question": "Peavey Mart", - "icon": "./assets/data/nsi/logos/peaveymart-b48d00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peaveymart-b48d00.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439280,7 +439639,7 @@ }, { "question": "Rural King", - "icon": "./assets/data/nsi/logos/ruralking-e159b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ruralking-e159b8.png", "osmTags": { "and": [ "shop=country_store", @@ -439296,7 +439655,7 @@ }, { "question": "Theisen's", - "icon": "./assets/data/nsi/logos/theisens-e159b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theisens-e159b8.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439312,7 +439671,7 @@ }, { "question": "Tractor Supply Company", - "icon": "./assets/data/nsi/logos/tractorsupplycompany-e159b8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tractorsupplycompany-e159b8.svg", "osmTags": { "and": [ "shop=country_store", @@ -439343,7 +439702,7 @@ }, { "question": "Wynnstay", - "icon": "./assets/data/nsi/logos/wynnstay-1d97dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wynnstay-1d97dc.jpg", "osmTags": { "and": [ "shop=country_store", @@ -439359,7 +439718,7 @@ }, { "question": "A.C. Moore", - "icon": "./assets/data/nsi/logos/acmoore-94ee6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/acmoore-94ee6e.png", "osmTags": { "and": [ "shop=craft", @@ -439375,7 +439734,7 @@ }, { "question": "Boesner", - "icon": "./assets/data/nsi/logos/boesner-1cc9f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boesner-1cc9f4.png", "osmTags": { "and": [ "shop=craft", @@ -439391,7 +439750,7 @@ }, { "question": "Hobby Lobby", - "icon": "./assets/data/nsi/logos/hobbylobby-3a570b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hobbylobby-3a570b.jpg", "osmTags": { "and": [ "shop=craft", @@ -439407,7 +439766,7 @@ }, { "question": "Hobbycraft", - "icon": "./assets/data/nsi/logos/hobbycraft-25f394.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hobbycraft-25f394.jpg", "osmTags": { "and": [ "shop=craft", @@ -439423,7 +439782,7 @@ }, { "question": "JOANN Fabrics and Crafts", - "icon": "./assets/data/nsi/logos/joannfabricsandcrafts-94ee6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joannfabricsandcrafts-94ee6e.jpg", "osmTags": { "and": [ "shop=craft", @@ -439440,7 +439799,7 @@ }, { "question": "Kaisercraft", - "icon": "./assets/data/nsi/logos/kaisercraft-27cf5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaisercraft-27cf5c.jpg", "osmTags": { "and": [ "shop=craft", @@ -439456,7 +439815,7 @@ }, { "question": "Michaels", - "icon": "./assets/data/nsi/logos/michaels-9d4726.png", + "icon": "https://data.mapcomplete.org/nsi//logos/michaels-9d4726.png", "osmTags": { "and": [ "shop=craft", @@ -439472,7 +439831,7 @@ }, { "question": "pipoos", - "icon": "./assets/data/nsi/logos/pipoos-d918ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pipoos-d918ce.jpg", "osmTags": { "and": [ "shop=craft", @@ -439488,7 +439847,7 @@ }, { "question": "Woodcraft", - "icon": "./assets/data/nsi/logos/woodcraft-94ee6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woodcraft-94ee6e.jpg", "osmTags": { "and": [ "shop=craft", @@ -439504,7 +439863,7 @@ }, { "question": "Леонардо", - "icon": "./assets/data/nsi/logos/f57608-3615c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/f57608-3615c7.jpg", "osmTags": { "and": [ "shop=craft", @@ -439520,7 +439879,7 @@ }, { "question": "Heytens", - "icon": "./assets/data/nsi/logos/heytens-ceb642.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heytens-ceb642.jpg", "osmTags": { "and": [ "shop=curtain", @@ -439536,7 +439895,7 @@ }, { "question": "Vianney", - "icon": "./assets/data/nsi/logos/vianney-8de768.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vianney-8de768.jpg", "osmTags": { "and": [ "shop=curtain", @@ -439552,7 +439911,7 @@ }, { "question": "LB Bulgaricum", - "icon": "./assets/data/nsi/logos/lbbulgaricum-2958ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lbbulgaricum-2958ef.jpg", "osmTags": { "and": [ "shop=dairy", @@ -439570,7 +439929,7 @@ }, { "question": "Liconsa", - "icon": "./assets/data/nsi/logos/liconsa-f345f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liconsa-f345f3.jpg", "osmTags": { "and": [ "shop=dairy", @@ -439586,7 +439945,7 @@ }, { "question": "Milma", - "icon": "./assets/data/nsi/logos/milma-6e9671.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milma-6e9671.jpg", "osmTags": { "and": [ "shop=dairy", @@ -439602,7 +439961,7 @@ }, { "question": "Mother Dairy", - "icon": "./assets/data/nsi/logos/motherdairy-6e9671.png", + "icon": "https://data.mapcomplete.org/nsi//logos/motherdairy-6e9671.png", "osmTags": { "and": [ "shop=dairy", @@ -439633,7 +439992,7 @@ }, { "question": "Oberweis", - "icon": "./assets/data/nsi/logos/oberweis-95235d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oberweis-95235d.jpg", "osmTags": { "and": [ "amenity=ice_cream", @@ -439650,7 +440009,7 @@ }, { "question": "Veronika", - "icon": "./assets/data/nsi/logos/veronika-26fd0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veronika-26fd0f.jpg", "osmTags": { "and": [ "shop=dairy", @@ -439666,7 +440025,7 @@ }, { "question": "Zuivelhoeve", - "icon": "./assets/data/nsi/logos/zuivelhoeve-32e1e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zuivelhoeve-32e1e2.png", "osmTags": { "and": [ "shop=dairy", @@ -439682,7 +440041,7 @@ }, { "question": "Молоко від фермера", - "icon": "./assets/data/nsi/logos/49945f-9e0ef1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/49945f-9e0ef1.jpg", "osmTags": { "and": [ "shop=dairy", @@ -439698,7 +440057,7 @@ }, { "question": "Наслада", - "icon": "./assets/data/nsi/logos/54b734-2958ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/54b734-2958ef.jpg", "osmTags": { "and": [ "shop=dairy", @@ -439734,7 +440093,7 @@ }, { "question": "Boar's Head", - "icon": "./assets/data/nsi/logos/boarshead-39588b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boarshead-39588b.png", "osmTags": { "and": [ "shop=deli", @@ -439750,7 +440109,7 @@ }, { "question": "Comtesse du Barry", - "icon": "./assets/data/nsi/logos/comtessedubarry-ab8cdd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comtessedubarry-ab8cdd.jpg", "osmTags": { "and": [ "shop=deli", @@ -439766,7 +440125,7 @@ }, { "question": "føtex Delikatesse", - "icon": "./assets/data/nsi/logos/fotexdelikatesse-dcd577.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fotexdelikatesse-dcd577.png", "osmTags": { "and": [ "shop=deli", @@ -439802,7 +440161,7 @@ }, { "question": "Oil & Vinegar", - "icon": "./assets/data/nsi/logos/oilandvinegar-0e839f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oilandvinegar-0e839f.jpg", "osmTags": { "and": [ "shop=deli", @@ -439818,7 +440177,7 @@ }, { "question": "vomFASS", - "icon": "./assets/data/nsi/logos/vomfass-a3c745.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vomfass-a3c745.jpg", "osmTags": { "and": [ "shop=deli", @@ -439834,7 +440193,7 @@ }, { "question": "Wajos", - "icon": "./assets/data/nsi/logos/wajos-d2192e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wajos-d2192e.jpg", "osmTags": { "and": [ "shop=deli", @@ -439850,7 +440209,7 @@ }, { "question": "Берёзка", - "icon": "./assets/data/nsi/logos/f77fb7-2f84cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/f77fb7-2f84cd.jpg", "osmTags": { "and": [ "cuisine=russian", @@ -439867,7 +440226,7 @@ }, { "question": "ვაკე", - "icon": "./assets/data/nsi/logos/vake-e0f2d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vake-e0f2d7.jpg", "osmTags": { "and": [ "shop=deli", @@ -439891,9 +440250,6 @@ "question": "さぼてん", "osmTags": { "and": [ - "official_name=新宿さぼてん", - "official_name:en=Shinjuku Saboten", - "official_name:ja=新宿さぼてん", "shop=deli", { "or": [ @@ -439903,7 +440259,10 @@ "brand:wikidata=Q93277389", "name=さぼてん", "name:en=Saboten", - "name:ja=さぼてん" + "name:ja=さぼてん", + "official_name=新宿さぼてん", + "official_name:en=Shinjuku Saboten", + "official_name:ja=新宿さぼてん" ] } ] @@ -439930,7 +440289,7 @@ }, { "question": "京樽", - "icon": "./assets/data/nsi/logos/kyotaru-39c92c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kyotaru-39c92c.jpg", "osmTags": { "and": [ "shop=deli", @@ -440007,7 +440366,7 @@ }, { "question": "绝味鸭脖", - "icon": "./assets/data/nsi/logos/jueweiduckneck-5c76da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jueweiduckneck-5c76da.jpg", "osmTags": { "and": [ "shop=deli", @@ -440027,7 +440386,7 @@ }, { "question": "Åhléns", - "icon": "./assets/data/nsi/logos/ahlens-2c114a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ahlens-2c114a.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440043,7 +440402,7 @@ }, { "question": "American Freight", - "icon": "./assets/data/nsi/logos/americanfreight-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americanfreight-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440059,7 +440418,7 @@ }, { "question": "Armazém Paraíba", - "icon": "./assets/data/nsi/logos/armazemparaiba-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armazemparaiba-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440075,7 +440434,7 @@ }, { "question": "Asda Living", - "icon": "./assets/data/nsi/logos/asdaliving-b626d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asdaliving-b626d5.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440091,7 +440450,7 @@ }, { "question": "Barneys New York", - "icon": "./assets/data/nsi/logos/barneysnewyork-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barneysnewyork-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440107,7 +440466,7 @@ }, { "question": "Beales", - "icon": "./assets/data/nsi/logos/beales-b626d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beales-b626d5.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440123,7 +440482,7 @@ }, { "question": "Bealls (Florida-based)", - "icon": "./assets/data/nsi/logos/bealls-834cda.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bealls-834cda.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440139,7 +440498,7 @@ }, { "question": "Belk", - "icon": "./assets/data/nsi/logos/belk-592fe0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/belk-592fe0.png", "osmTags": { "and": [ "shop=department_store", @@ -440155,7 +440514,7 @@ }, { "question": "Bi-Mart", - "icon": "./assets/data/nsi/logos/bimart-592fe0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bimart-592fe0.png", "osmTags": { "and": [ "shop=department_store", @@ -440171,7 +440530,7 @@ }, { "question": "Big Lots", - "icon": "./assets/data/nsi/logos/biglots-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biglots-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440187,7 +440546,7 @@ }, { "question": "Big W", - "icon": "./assets/data/nsi/logos/bigw-c93bbd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bigw-c93bbd.png", "osmTags": { "and": [ "shop=department_store", @@ -440203,7 +440562,7 @@ }, { "question": "Billion", - "icon": "./assets/data/nsi/logos/billion-4d0884.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/billion-4d0884.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440223,7 +440582,7 @@ }, { "question": "Bloomingdale's", - "icon": "./assets/data/nsi/logos/bloomingdales-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bloomingdales-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440239,7 +440598,7 @@ }, { "question": "Boscov's", - "icon": "./assets/data/nsi/logos/boscovs-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boscovs-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440255,7 +440614,7 @@ }, { "question": "Boyes", - "icon": "./assets/data/nsi/logos/boyes-b626d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boyes-b626d5.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440271,7 +440630,7 @@ }, { "question": "BrightHouse", - "icon": "./assets/data/nsi/logos/brighthouse-b626d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brighthouse-b626d5.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440287,7 +440646,7 @@ }, { "question": "Burlington", - "icon": "./assets/data/nsi/logos/burlington-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burlington-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440304,7 +440663,7 @@ }, { "question": "Canadian Tire", - "icon": "./assets/data/nsi/logos/canadiantire-63d0ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadiantire-63d0ba.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440320,7 +440679,7 @@ }, { "question": "Casas Bahia", - "icon": "./assets/data/nsi/logos/casasbahia-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casasbahia-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440336,7 +440695,7 @@ }, { "question": "Central Department Store", - "icon": "./assets/data/nsi/logos/centraldepartmentstore-10be9f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centraldepartmentstore-10be9f.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440354,7 +440713,7 @@ }, { "question": "Century 21", - "icon": "./assets/data/nsi/logos/century21-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/century21-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440370,7 +440729,7 @@ }, { "question": "Coin", - "icon": "./assets/data/nsi/logos/coin-b0f55b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coin-b0f55b.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440386,7 +440745,7 @@ }, { "question": "Coin Excelsior", - "icon": "./assets/data/nsi/logos/coinexcelsior-b0f55b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coinexcelsior-b0f55b.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440417,7 +440776,7 @@ }, { "question": "Coppel", - "icon": "./assets/data/nsi/logos/coppel-a1f638.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coppel-a1f638.png", "osmTags": { "and": [ "shop=department_store", @@ -440433,7 +440792,7 @@ }, { "question": "David Jones", - "icon": "./assets/data/nsi/logos/davidjones-c93bbd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/davidjones-c93bbd.png", "osmTags": { "and": [ "shop=department_store", @@ -440449,7 +440808,7 @@ }, { "question": "dd's Discounts", - "icon": "./assets/data/nsi/logos/ddsdiscounts-592fe0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ddsdiscounts-592fe0.png", "osmTags": { "and": [ "shop=department_store", @@ -440465,7 +440824,7 @@ }, { "question": "Debenhams", - "icon": "./assets/data/nsi/logos/debenhams-a29e63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/debenhams-a29e63.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440481,7 +440840,7 @@ }, { "question": "Del Sol", - "icon": "./assets/data/nsi/logos/delsol-4c18c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delsol-4c18c3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440497,7 +440856,7 @@ }, { "question": "Dillard's", - "icon": "./assets/data/nsi/logos/dillards-592fe0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dillards-592fe0.png", "osmTags": { "and": [ "shop=department_store", @@ -440528,7 +440887,7 @@ }, { "question": "Dufry", - "icon": "./assets/data/nsi/logos/dufry-03e633.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dufry-03e633.svg", "osmTags": { "and": [ "shop=department_store", @@ -440544,7 +440903,7 @@ }, { "question": "Dunnes Stores", - "icon": "./assets/data/nsi/logos/dunnesstores-a29e63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunnesstores-a29e63.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440560,7 +440919,7 @@ }, { "question": "Edgars", - "icon": "./assets/data/nsi/logos/edgars-34fd38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edgars-34fd38.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440576,7 +440935,7 @@ }, { "question": "El Corte Inglés", - "icon": "./assets/data/nsi/logos/elcorteingles-5888bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elcorteingles-5888bf.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440592,7 +440951,7 @@ }, { "question": "Elektra", - "icon": "./assets/data/nsi/logos/elektra-95a469.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elektra-95a469.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440622,7 +440981,7 @@ }, { "question": "Éxito", - "icon": "./assets/data/nsi/logos/exito-96a609.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exito-96a609.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440638,7 +440997,7 @@ }, { "question": "Falabella", - "icon": "./assets/data/nsi/logos/falabella-f2bfac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/falabella-f2bfac.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440654,7 +441013,7 @@ }, { "question": "Famsa", - "icon": "./assets/data/nsi/logos/famsa-4c18c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/famsa-4c18c3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440670,7 +441029,7 @@ }, { "question": "Farmers", - "icon": "./assets/data/nsi/logos/farmers-98a4a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmers-98a4a8.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440686,7 +441045,7 @@ }, { "question": "Fast Shop", - "icon": "./assets/data/nsi/logos/fastshop-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastshop-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440702,7 +441061,7 @@ }, { "question": "Forman Mills", - "icon": "./assets/data/nsi/logos/formanmills-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/formanmills-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440718,7 +441077,7 @@ }, { "question": "Galeria", - "icon": "./assets/data/nsi/logos/galeria-ca042d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/galeria-ca042d.svg", "osmTags": { "and": [ "shop=department_store", @@ -440734,7 +441093,7 @@ }, { "question": "Galeries Lafayette", - "icon": "./assets/data/nsi/logos/galerieslafayette-b7f45a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/galerieslafayette-b7f45a.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440750,7 +441109,7 @@ }, { "question": "Giant Tiger", - "icon": "./assets/data/nsi/logos/gianttiger-07b2aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gianttiger-07b2aa.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440766,7 +441125,7 @@ }, { "question": "Goody's", - "icon": "./assets/data/nsi/logos/goodys-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodys-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440782,7 +441141,7 @@ }, { "question": "Gordmans", - "icon": "./assets/data/nsi/logos/gordmans-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gordmans-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440798,7 +441157,7 @@ }, { "question": "Harris Scarfe", - "icon": "./assets/data/nsi/logos/harrisscarfe-c93bbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harrisscarfe-c93bbd.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440814,7 +441173,7 @@ }, { "question": "Harvey Norman", - "icon": "./assets/data/nsi/logos/harveynorman-b73e73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harveynorman-b73e73.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440830,7 +441189,7 @@ }, { "question": "Havan", - "icon": "./assets/data/nsi/logos/havan-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/havan-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440846,7 +441205,7 @@ }, { "question": "Hellenic Duty Free Shops", - "icon": "./assets/data/nsi/logos/hellenicdutyfreeshops-ef1e16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hellenicdutyfreeshops-ef1e16.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440862,7 +441221,7 @@ }, { "question": "HEMA", - "icon": "./assets/data/nsi/logos/hema-e99f95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hema-e99f95.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440897,7 +441256,7 @@ }, { "question": "House of Fraser", - "icon": "./assets/data/nsi/logos/houseoffraser-b626d5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/houseoffraser-b626d5.svg", "osmTags": { "and": [ "shop=department_store", @@ -440913,7 +441272,7 @@ }, { "question": "Hudson's Bay", - "icon": "./assets/data/nsi/logos/hudsonsbay-8749a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hudsonsbay-8749a9.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440930,7 +441289,7 @@ }, { "question": "Inno", - "icon": "./assets/data/nsi/logos/inno-323268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inno-323268.jpg", "osmTags": { "and": [ "shop=department_store", @@ -440946,16 +441305,16 @@ }, { "question": "JCPenney", - "icon": "./assets/data/nsi/logos/jcpenney-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcpenney-592fe0.jpg", "osmTags": { "and": [ - "official_name=J.C. Penney Company", "shop=department_store", { "or": [ "brand=JCPenney", "brand:wikidata=Q920037", - "name=JCPenney" + "name=JCPenney", + "official_name=J.C. Penney Company" ] } ] @@ -440963,16 +441322,16 @@ }, { "question": "John Lewis", - "icon": "./assets/data/nsi/logos/johnlewis-b626d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnlewis-b626d5.jpg", "osmTags": { "and": [ - "official_name=John Lewis & Partners", "shop=department_store", { "or": [ "brand=John Lewis", "brand:wikidata=Q1918981", - "name=John Lewis" + "name=John Lewis", + "official_name=John Lewis & Partners" ] } ] @@ -440980,7 +441339,7 @@ }, { "question": "K Hub", - "icon": "./assets/data/nsi/logos/khub-c93bbd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/khub-c93bbd.png", "osmTags": { "and": [ "shop=department_store", @@ -440996,7 +441355,7 @@ }, { "question": "Kaufhaus Stolz", - "icon": "./assets/data/nsi/logos/kaufhausstolz-ca042d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaufhausstolz-ca042d.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441013,7 +441372,7 @@ }, { "question": "Kmart (Oceania)", - "icon": "./assets/data/nsi/logos/kmart-2e4a6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kmart-2e4a6e.png", "osmTags": { "and": [ "shop=department_store", @@ -441029,7 +441388,7 @@ }, { "question": "Kmart (USA)", - "icon": "./assets/data/nsi/logos/kmart-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kmart-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441045,7 +441404,7 @@ }, { "question": "Kohl's", - "icon": "./assets/data/nsi/logos/kohls-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kohls-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441061,7 +441420,7 @@ }, { "question": "La Rinascente", - "icon": "./assets/data/nsi/logos/larinascente-b0f55b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/larinascente-b0f55b.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441077,7 +441436,7 @@ }, { "question": "Le Biscuit", - "icon": "./assets/data/nsi/logos/lebiscuit-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lebiscuit-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441093,7 +441452,7 @@ }, { "question": "Leader", - "icon": "./assets/data/nsi/logos/leader-7a47e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leader-7a47e3.png", "osmTags": { "and": [ "shop=department_store", @@ -441109,7 +441468,7 @@ }, { "question": "Liverpool", - "icon": "./assets/data/nsi/logos/liverpool-4c18c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liverpool-4c18c3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441125,7 +441484,7 @@ }, { "question": "Lojas Americanas", - "icon": "./assets/data/nsi/logos/lojasamericanas-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lojasamericanas-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441141,7 +441500,7 @@ }, { "question": "Lojas Colombo", - "icon": "./assets/data/nsi/logos/lojascolombo-7a47e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lojascolombo-7a47e3.png", "osmTags": { "and": [ "shop=department_store", @@ -441157,7 +441516,7 @@ }, { "question": "Lotte Department Store", - "icon": "./assets/data/nsi/logos/lottedepartmentstore-256de8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lottedepartmentstore-256de8.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441173,7 +441532,7 @@ }, { "question": "Lotte Duty Free", - "icon": "./assets/data/nsi/logos/lottedutyfree-8352b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lottedutyfree-8352b8.png", "osmTags": { "and": [ "duty_free=yes", @@ -441193,7 +441552,7 @@ }, { "question": "M&S Outlet", - "icon": "./assets/data/nsi/logos/mandsoutlet-03e633.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandsoutlet-03e633.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441210,7 +441569,7 @@ }, { "question": "Macy's", - "icon": "./assets/data/nsi/logos/macys-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macys-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441226,7 +441585,7 @@ }, { "question": "Macy's Backstage", - "icon": "./assets/data/nsi/logos/macysbackstage-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macysbackstage-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441242,7 +441601,7 @@ }, { "question": "Magazine Luiza", - "icon": "./assets/data/nsi/logos/magazineluiza-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magazineluiza-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441258,7 +441617,7 @@ }, { "question": "Manor", - "icon": "./assets/data/nsi/logos/manor-66d8a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/manor-66d8a4.png", "osmTags": { "and": [ "shop=department_store", @@ -441274,7 +441633,7 @@ }, { "question": "Manufactum", - "icon": "./assets/data/nsi/logos/manufactum-ca042d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manufactum-ca042d.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441290,16 +441649,16 @@ }, { "question": "Marden's", - "icon": "./assets/data/nsi/logos/mardens-28650f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mardens-28650f.jpg", "osmTags": { "and": [ - "official_name=Marden's Surplus and Salvage", "shop=department_store", { "or": [ "brand=Marden's", "brand:wikidata=Q96391944", - "name=Marden's" + "name=Marden's", + "official_name=Marden's Surplus and Salvage" ] } ] @@ -441307,7 +441666,7 @@ }, { "question": "Marks & Spencer", - "icon": "./assets/data/nsi/logos/marksandspencer-4dabe9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marksandspencer-4dabe9.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441324,7 +441683,7 @@ }, { "question": "Marshalls", - "icon": "./assets/data/nsi/logos/marshalls-53f9e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshalls-53f9e5.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441340,7 +441699,7 @@ }, { "question": "Metro Department Store", - "icon": "./assets/data/nsi/logos/metrodepartmentstore-2ae798.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrodepartmentstore-2ae798.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441356,7 +441715,7 @@ }, { "question": "Monge", - "icon": "./assets/data/nsi/logos/monge-f3a415.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monge-f3a415.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441372,7 +441731,7 @@ }, { "question": "Muji", - "icon": "./assets/data/nsi/logos/muji-5ebe4b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/muji-5ebe4b.svg", "osmTags": { "and": [ "shop=department_store", @@ -441392,7 +441751,7 @@ }, { "question": "Myer", - "icon": "./assets/data/nsi/logos/myer-c93bbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/myer-c93bbd.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441408,7 +441767,7 @@ }, { "question": "Neiman Marcus", - "icon": "./assets/data/nsi/logos/neimanmarcus-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neimanmarcus-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441424,7 +441783,7 @@ }, { "question": "Nordstrom", - "icon": "./assets/data/nsi/logos/nordstrom-53f9e5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nordstrom-53f9e5.png", "osmTags": { "and": [ "shop=department_store", @@ -441440,7 +441799,7 @@ }, { "question": "Nuance", - "icon": "./assets/data/nsi/logos/nuance-03e633.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nuance-03e633.svg", "osmTags": { "and": [ "shop=department_store", @@ -441456,7 +441815,7 @@ }, { "question": "Oechsle", - "icon": "./assets/data/nsi/logos/oechsle-5dd0d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oechsle-5dd0d8.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441472,7 +441831,7 @@ }, { "question": "Omar Effendi", - "icon": "./assets/data/nsi/logos/omareffendi-6a6e97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/omareffendi-6a6e97.png", "osmTags": { "and": [ "shop=department_store", @@ -441488,7 +441847,7 @@ }, { "question": "Palacio de Hierro", - "icon": "./assets/data/nsi/logos/palaciodehierro-4c18c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palaciodehierro-4c18c3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441504,7 +441863,7 @@ }, { "question": "Pantai Timor", - "icon": "./assets/data/nsi/logos/pantaitimor-4d0884.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pantaitimor-4d0884.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441527,7 +441886,7 @@ }, { "question": "París", - "icon": "./assets/data/nsi/logos/paris-f81fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paris-f81fcb.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441543,7 +441902,7 @@ }, { "question": "Parkson", - "icon": "./assets/data/nsi/logos/parkson-6dcedc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkson-6dcedc.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441563,7 +441922,7 @@ }, { "question": "Pernambucanas", - "icon": "./assets/data/nsi/logos/pernambucanas-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pernambucanas-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441579,7 +441938,7 @@ }, { "question": "Printemps", - "icon": "./assets/data/nsi/logos/printemps-b3d693.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/printemps-b3d693.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441595,7 +441954,7 @@ }, { "question": "Ripley", - "icon": "./assets/data/nsi/logos/ripley-f81fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ripley-f81fcb.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441632,16 +441991,16 @@ }, { "question": "Ross", - "icon": "./assets/data/nsi/logos/ross-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ross-592fe0.jpg", "osmTags": { "and": [ - "official_name=Ross Dress for Less", "shop=department_store", { "or": [ "brand=Ross", "brand:wikidata=Q3442791", - "name=Ross" + "name=Ross", + "official_name=Ross Dress for Less" ] } ] @@ -441649,7 +442008,7 @@ }, { "question": "Runnings", - "icon": "./assets/data/nsi/logos/runnings-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/runnings-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441665,7 +442024,7 @@ }, { "question": "Saks Fifth Avenue", - "icon": "./assets/data/nsi/logos/saksfifthavenue-53f9e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saksfifthavenue-53f9e5.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441681,7 +442040,7 @@ }, { "question": "Saks Off 5th", - "icon": "./assets/data/nsi/logos/saksoff5th-53f9e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saksoff5th-53f9e5.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441697,7 +442056,7 @@ }, { "question": "Sanborns", - "icon": "./assets/data/nsi/logos/sanborns-4c18c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanborns-4c18c3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441713,7 +442072,7 @@ }, { "question": "Sears", - "icon": "./assets/data/nsi/logos/sears-ce56c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sears-ce56c0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441729,7 +442088,7 @@ }, { "question": "Sears Hometown", - "icon": "./assets/data/nsi/logos/searshometown-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/searshometown-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441745,7 +442104,7 @@ }, { "question": "Shinsegae", - "icon": "./assets/data/nsi/logos/shinsegae-84c155.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shinsegae-84c155.svg", "osmTags": { "and": [ "shop=department_store", @@ -441780,7 +442139,7 @@ }, { "question": "Shoppers Stop", - "icon": "./assets/data/nsi/logos/shoppersstop-d45fb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoppersstop-d45fb2.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441796,7 +442155,7 @@ }, { "question": "Smiths City", - "icon": "./assets/data/nsi/logos/smithscity-98a4a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smithscity-98a4a8.png", "osmTags": { "and": [ "shop=department_store", @@ -441812,7 +442171,7 @@ }, { "question": "Stein Mart", - "icon": "./assets/data/nsi/logos/steinmart-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steinmart-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441828,7 +442187,7 @@ }, { "question": "Stockmann", - "icon": "./assets/data/nsi/logos/stockmann-da3317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stockmann-da3317.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441844,7 +442203,7 @@ }, { "question": "Target (Australia)", - "icon": "./assets/data/nsi/logos/target-c93bbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/target-c93bbd.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441860,7 +442219,7 @@ }, { "question": "Target (USA)", - "icon": "./assets/data/nsi/logos/target-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/target-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441876,7 +442235,7 @@ }, { "question": "The Warehouse", - "icon": "./assets/data/nsi/logos/thewarehouse-98a4a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thewarehouse-98a4a8.png", "osmTags": { "and": [ "shop=department_store", @@ -441892,7 +442251,7 @@ }, { "question": "Tigre Géant", - "icon": "./assets/data/nsi/logos/tigregeant-f68020.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigregeant-f68020.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441908,7 +442267,7 @@ }, { "question": "TJ Maxx", - "icon": "./assets/data/nsi/logos/tjmaxx-592fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tjmaxx-592fe0.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441924,7 +442283,7 @@ }, { "question": "TK Maxx", - "icon": "./assets/data/nsi/logos/tkmaxx-d02268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tkmaxx-d02268.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441940,7 +442299,7 @@ }, { "question": "Trafic", - "icon": "./assets/data/nsi/logos/trafic-323268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trafic-323268.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441956,7 +442315,7 @@ }, { "question": "Upim", - "icon": "./assets/data/nsi/logos/upim-b0f55b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/upim-b0f55b.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441972,7 +442331,7 @@ }, { "question": "Walmart", - "icon": "./assets/data/nsi/logos/walmart-36cadd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmart-36cadd.jpg", "osmTags": { "and": [ "shop=department_store", @@ -441988,7 +442347,7 @@ }, { "question": "Winners", - "icon": "./assets/data/nsi/logos/winners-c81e81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winners-c81e81.jpg", "osmTags": { "and": [ "shop=department_store", @@ -442004,7 +442363,7 @@ }, { "question": "Woolworth (Del Sol)", - "icon": "./assets/data/nsi/logos/woolworth-4c18c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woolworth-4c18c3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -442020,7 +442379,7 @@ }, { "question": "Woolworth (Deutschland)", - "icon": "./assets/data/nsi/logos/woolworth-ca042d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woolworth-ca042d.png", "osmTags": { "and": [ "shop=department_store", @@ -442036,7 +442395,7 @@ }, { "question": "World Duty Free", - "icon": "./assets/data/nsi/logos/worlddutyfree-03e633.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worlddutyfree-03e633.jpg", "osmTags": { "and": [ "shop=department_store", @@ -442052,7 +442411,7 @@ }, { "question": "Zema", - "icon": "./assets/data/nsi/logos/zema-7a47e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zema-7a47e3.jpg", "osmTags": { "and": [ "shop=department_store", @@ -442068,7 +442427,7 @@ }, { "question": "롯데백화점", - "icon": "./assets/data/nsi/logos/lottedepartmentstore-84c155.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lottedepartmentstore-84c155.jpg", "osmTags": { "and": [ "shop=department_store", @@ -442087,7 +442446,7 @@ }, { "question": "현대백화점", - "icon": "./assets/data/nsi/logos/hyundai-84c155.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyundai-84c155.jpg", "osmTags": { "and": [ "shop=department_store", @@ -442111,7 +442470,7 @@ }, { "question": "名创优品", - "icon": "./assets/data/nsi/logos/miniso-85e4e5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miniso-85e4e5.png", "osmTags": { "and": [ "shop=department_store", @@ -442131,7 +442490,7 @@ }, { "question": "名創優品 MINISO", - "icon": "./assets/data/nsi/logos/miniso-d07f6f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miniso-d07f6f.png", "osmTags": { "and": [ "shop=department_store", @@ -442151,7 +442510,7 @@ }, { "question": "无印良品", - "icon": "./assets/data/nsi/logos/muji-85e4e5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/muji-85e4e5.svg", "osmTags": { "and": [ "shop=department_store", @@ -442171,10 +442530,9 @@ }, { "question": "無印良品", - "icon": "./assets/data/nsi/logos/muji-646bbf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/muji-646bbf.svg", "osmTags": { "and": [ - "official_name:en=Ryohin Keikaku", "shop=department_store", { "or": [ @@ -442184,7 +442542,8 @@ "brand:wikidata=Q708789", "name=無印良品", "name:en=Muji", - "name:ja=無印良品" + "name:ja=無印良品", + "official_name:en=Ryohin Keikaku" ] } ] @@ -442192,7 +442551,7 @@ }, { "question": "無印良品 Muji", - "icon": "./assets/data/nsi/logos/muji-d07f6f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/muji-d07f6f.svg", "osmTags": { "and": [ "shop=department_store", @@ -442212,7 +442571,7 @@ }, { "question": "百盛百货", - "icon": "./assets/data/nsi/logos/parkson-05ca83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkson-05ca83.jpg", "osmTags": { "and": [ "shop=department_store", @@ -442232,7 +442591,7 @@ }, { "question": "Ace Hardware", - "icon": "./assets/data/nsi/logos/acehardware-092aaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/acehardware-092aaf.png", "osmTags": { "and": [ "shop=doityourself", @@ -442248,7 +442607,7 @@ }, { "question": "AllHome", - "icon": "./assets/data/nsi/logos/allhome-8037a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allhome-8037a1.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442264,7 +442623,7 @@ }, { "question": "Alsford", - "icon": "./assets/data/nsi/logos/alsford-ae8e02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alsford-ae8e02.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442280,7 +442639,7 @@ }, { "question": "B&Q", - "icon": "./assets/data/nsi/logos/bandq-092aaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandq-092aaf.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442310,7 +442669,7 @@ }, { "question": "Bauhaus", - "icon": "./assets/data/nsi/logos/bauhaus-6847b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bauhaus-6847b5.png", "osmTags": { "and": [ "shop=doityourself", @@ -442326,7 +442685,7 @@ }, { "question": "BAUKING", - "icon": "./assets/data/nsi/logos/bauking-db1fbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bauking-db1fbb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442342,7 +442701,7 @@ }, { "question": "Baumax", - "icon": "./assets/data/nsi/logos/baumax-bc270a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baumax-bc270a.png", "osmTags": { "and": [ "shop=doityourself", @@ -442358,7 +442717,7 @@ }, { "question": "BauSpezi", - "icon": "./assets/data/nsi/logos/bauspezi-db1fbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bauspezi-db1fbb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442374,7 +442733,7 @@ }, { "question": "BayWa", - "icon": "./assets/data/nsi/logos/baywa-db1fbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baywa-db1fbb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442405,7 +442764,7 @@ }, { "question": "Biltema", - "icon": "./assets/data/nsi/logos/biltema-acccd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biltema-acccd4.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442421,7 +442780,7 @@ }, { "question": "Boxer Build", - "icon": "./assets/data/nsi/logos/boxerbuild-ea5357.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boxerbuild-ea5357.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442437,7 +442796,7 @@ }, { "question": "Brico", - "icon": "./assets/data/nsi/logos/brico-b2ed79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brico-b2ed79.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442453,7 +442812,7 @@ }, { "question": "Brico Cash", - "icon": "./assets/data/nsi/logos/bricocash-f33b88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricocash-f33b88.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442469,7 +442828,7 @@ }, { "question": "Brico Dépôt", - "icon": "./assets/data/nsi/logos/bricodepot-46eef0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricodepot-46eef0.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442485,7 +442844,7 @@ }, { "question": "Brico io", - "icon": "./assets/data/nsi/logos/bricoio-afce84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bricoio-afce84.png", "osmTags": { "and": [ "shop=doityourself", @@ -442501,7 +442860,7 @@ }, { "question": "Brico OK", - "icon": "./assets/data/nsi/logos/bricook-afce84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricook-afce84.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442517,7 +442876,7 @@ }, { "question": "BricoCenter", - "icon": "./assets/data/nsi/logos/bricocenter-afce84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricocenter-afce84.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442533,7 +442892,7 @@ }, { "question": "Bricofer", - "icon": "./assets/data/nsi/logos/bricofer-afce84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricofer-afce84.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442549,7 +442908,7 @@ }, { "question": "Bricoma", - "icon": "./assets/data/nsi/logos/bricoma-bf07e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricoma-bf07e6.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442569,7 +442928,7 @@ }, { "question": "Bricoman", - "icon": "./assets/data/nsi/logos/bricoman-2f8b67.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricoman-2f8b67.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442585,7 +442944,7 @@ }, { "question": "Bricomarché", - "icon": "./assets/data/nsi/logos/bricomarche-4bc396.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricomarche-4bc396.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442601,7 +442960,7 @@ }, { "question": "Bricopro", - "icon": "./assets/data/nsi/logos/bricopro-f33b88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricopro-f33b88.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442617,7 +442976,7 @@ }, { "question": "Bricorama", - "icon": "./assets/data/nsi/logos/bricorama-80eee7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricorama-80eee7.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442633,7 +442992,7 @@ }, { "question": "Build it", - "icon": "./assets/data/nsi/logos/buildit-aadd8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/buildit-aadd8a.png", "osmTags": { "and": [ "shop=doityourself", @@ -442649,7 +443008,7 @@ }, { "question": "Buildbase", - "icon": "./assets/data/nsi/logos/buildbase-ae8e02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buildbase-ae8e02.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442665,7 +443024,7 @@ }, { "question": "Builders Express", - "icon": "./assets/data/nsi/logos/buildersexpress-a9941a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/buildersexpress-a9941a.png", "osmTags": { "and": [ "shop=doityourself", @@ -442681,7 +443040,7 @@ }, { "question": "Builders Superstore", - "icon": "./assets/data/nsi/logos/builderssuperstore-a9941a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/builderssuperstore-a9941a.png", "osmTags": { "and": [ "shop=doityourself", @@ -442697,7 +443056,7 @@ }, { "question": "Builders Warehouse", - "icon": "./assets/data/nsi/logos/builderswarehouse-a9941a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/builderswarehouse-a9941a.png", "osmTags": { "and": [ "shop=doityourself", @@ -442713,7 +443072,7 @@ }, { "question": "Bunnings Warehouse", - "icon": "./assets/data/nsi/logos/bunningswarehouse-aaac5b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bunningswarehouse-aaac5b.png", "osmTags": { "and": [ "shop=doityourself", @@ -442729,7 +443088,7 @@ }, { "question": "Byggmax", - "icon": "./assets/data/nsi/logos/byggmax-b25d3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byggmax-b25d3a.png", "osmTags": { "and": [ "shop=doityourself", @@ -442745,7 +443104,7 @@ }, { "question": "Cashbuild", - "icon": "./assets/data/nsi/logos/cashbuild-c5a717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cashbuild-c5a717.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442761,7 +443120,7 @@ }, { "question": "Castorama", - "icon": "./assets/data/nsi/logos/castorama-bb99c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/castorama-bb99c9.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442777,7 +443136,7 @@ }, { "question": "Chausson Matériaux", - "icon": "./assets/data/nsi/logos/chaussonmateriaux-f33b88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chaussonmateriaux-f33b88.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442793,7 +443152,7 @@ }, { "question": "Clas Ohlson", - "icon": "./assets/data/nsi/logos/clasohlson-baf621.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clasohlson-baf621.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442809,7 +443168,7 @@ }, { "question": "Coop Bau+Hobby", - "icon": "./assets/data/nsi/logos/coopbauhobby-0f6f08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coopbauhobby-0f6f08.png", "osmTags": { "and": [ "shop=doityourself", @@ -442825,7 +443184,7 @@ }, { "question": "Coop Byggmix", - "icon": "./assets/data/nsi/logos/coopbyggmix-1b58cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopbyggmix-1b58cb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442841,7 +443200,7 @@ }, { "question": "DCM", - "icon": "./assets/data/nsi/logos/dcm-dd401d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dcm-dd401d.svg", "osmTags": { "and": [ "shop=doityourself", @@ -442880,7 +443239,7 @@ }, { "question": "Dedeman", - "icon": "./assets/data/nsi/logos/dedeman-8112dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dedeman-8112dc.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442896,7 +443255,7 @@ }, { "question": "E.Leclerc Brico", - "icon": "./assets/data/nsi/logos/eleclercbrico-28b8a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclercbrico-28b8a0.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442912,7 +443271,7 @@ }, { "question": "Easy", - "icon": "./assets/data/nsi/logos/easy-063ae0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/easy-063ae0.png", "osmTags": { "and": [ "shop=doityourself", @@ -442928,7 +443287,7 @@ }, { "question": "Gamma", - "icon": "./assets/data/nsi/logos/gamma-29070e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gamma-29070e.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442944,7 +443303,7 @@ }, { "question": "Gedimat", - "icon": "./assets/data/nsi/logos/gedimat-28b8a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gedimat-28b8a0.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442960,7 +443319,7 @@ }, { "question": "Globus Baumarkt", - "icon": "./assets/data/nsi/logos/globusbaumarkt-6f5ad3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globusbaumarkt-6f5ad3.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -442976,7 +443335,7 @@ }, { "question": "Hagebaumarkt", - "icon": "./assets/data/nsi/logos/hagebaumarkt-8202fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hagebaumarkt-8202fe.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443007,7 +443366,7 @@ }, { "question": "Harald Nyborg", - "icon": "./assets/data/nsi/logos/haraldnyborg-27539e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haraldnyborg-27539e.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443023,7 +443382,7 @@ }, { "question": "Hellweg", - "icon": "./assets/data/nsi/logos/hellweg-601db4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hellweg-601db4.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443054,7 +443413,7 @@ }, { "question": "Home Building Centre (Canada)", - "icon": "./assets/data/nsi/logos/homebuildingcentre-fd1fd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homebuildingcentre-fd1fd9.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443070,7 +443429,7 @@ }, { "question": "Home Hardware Building Centre (Canada)", - "icon": "./assets/data/nsi/logos/homehardwarebuildingcentre-fd1fd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homehardwarebuildingcentre-fd1fd9.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443088,13 +443447,13 @@ "question": "Home Outlet", "osmTags": { "and": [ - "official_name=Barton's Home Outlet", "shop=doityourself", { "or": [ "brand=Home Outlet", "brand:wikidata=Q126983265", - "name=Home Outlet" + "name=Home Outlet", + "official_name=Barton's Home Outlet" ] } ] @@ -443102,7 +443461,7 @@ }, { "question": "Home Timber & Hardware (Australia)", - "icon": "./assets/data/nsi/logos/hometimberandhardware-b05cd0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hometimberandhardware-b05cd0.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443120,7 +443479,7 @@ }, { "question": "Homebase", - "icon": "./assets/data/nsi/logos/homebase-0c42e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homebase-0c42e1.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443136,7 +443495,7 @@ }, { "question": "HomeMax", - "icon": "./assets/data/nsi/logos/homemax-6499aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homemax-6499aa.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443156,7 +443515,7 @@ }, { "question": "Hornbach", - "icon": "./assets/data/nsi/logos/hornbach-92b1c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hornbach-92b1c1.png", "osmTags": { "and": [ "shop=doityourself", @@ -443172,7 +443531,7 @@ }, { "question": "Hubo Belgium", - "icon": "./assets/data/nsi/logos/hubo-9eb2d8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hubo-9eb2d8.png", "osmTags": { "and": [ "shop=doityourself", @@ -443188,7 +443547,7 @@ }, { "question": "Hubo Nederland", - "icon": "./assets/data/nsi/logos/hubo-233544.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hubo-233544.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443204,7 +443563,7 @@ }, { "question": "Italtile", - "icon": "./assets/data/nsi/logos/italtile-3df878.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/italtile-3df878.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443220,7 +443579,7 @@ }, { "question": "jem & fix", - "icon": "./assets/data/nsi/logos/jemandfix-27539e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jemandfix-27539e.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443236,7 +443595,7 @@ }, { "question": "Jula", - "icon": "./assets/data/nsi/logos/jula-2478eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jula-2478eb.png", "osmTags": { "and": [ "shop=doityourself", @@ -443252,7 +443611,7 @@ }, { "question": "Jumbo", - "icon": "./assets/data/nsi/logos/jumbo-0f6f08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jumbo-0f6f08.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443268,7 +443627,7 @@ }, { "question": "Karwei", - "icon": "./assets/data/nsi/logos/karwei-233544.png", + "icon": "https://data.mapcomplete.org/nsi//logos/karwei-233544.png", "osmTags": { "and": [ "shop=doityourself", @@ -443284,7 +443643,7 @@ }, { "question": "KlusWijs", - "icon": "./assets/data/nsi/logos/kluswijs-233544.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kluswijs-233544.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443300,7 +443659,7 @@ }, { "question": "Koçtaş", - "icon": "./assets/data/nsi/logos/koctas-9ebfe5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koctas-9ebfe5.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443316,7 +443675,7 @@ }, { "question": "Lagerhaus (Österreich)", - "icon": "./assets/data/nsi/logos/lagerhaus-5a91e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lagerhaus-5a91e1.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443332,7 +443691,7 @@ }, { "question": "Lapeyre", - "icon": "./assets/data/nsi/logos/lapeyre-28b8a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lapeyre-28b8a0.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443348,7 +443707,7 @@ }, { "question": "Leroy Merlin", - "icon": "./assets/data/nsi/logos/leroymerlin-acc60b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leroymerlin-acc60b.png", "osmTags": { "and": [ "shop=doityourself", @@ -443364,7 +443723,7 @@ }, { "question": "Leyland SDM", - "icon": "./assets/data/nsi/logos/leylandsdm-135476.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leylandsdm-135476.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443380,7 +443739,7 @@ }, { "question": "Lowe's", - "icon": "./assets/data/nsi/logos/lowes-0d8ea6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lowes-0d8ea6.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443396,7 +443755,7 @@ }, { "question": "McCoy's Building Supply", - "icon": "./assets/data/nsi/logos/mccoys-27ed78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mccoys-27ed78.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443412,7 +443771,7 @@ }, { "question": "Menards", - "icon": "./assets/data/nsi/logos/menards-c727e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/menards-c727e9.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443428,7 +443787,7 @@ }, { "question": "Merkury Market", - "icon": "./assets/data/nsi/logos/merkurymarket-5a474c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/merkurymarket-5a474c.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443444,7 +443803,7 @@ }, { "question": "Mitre 10 (Australia)", - "icon": "./assets/data/nsi/logos/mitre10-b05cd0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mitre10-b05cd0.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443460,7 +443819,7 @@ }, { "question": "Mitre 10 (New Zealand)", - "icon": "./assets/data/nsi/logos/mitre10-e80948.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mitre10-e80948.png", "osmTags": { "and": [ "shop=doityourself", @@ -443476,7 +443835,7 @@ }, { "question": "Mitre 10 MEGA", - "icon": "./assets/data/nsi/logos/mitre10mega-e80948.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mitre10mega-e80948.png", "osmTags": { "and": [ "shop=doityourself", @@ -443492,7 +443851,7 @@ }, { "question": "Mr. Bricolage (България)", - "icon": "./assets/data/nsi/logos/mrbricolage-6499aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrbricolage-6499aa.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443512,7 +443871,7 @@ }, { "question": "Mr.Bricolage", - "icon": "./assets/data/nsi/logos/mrbricolage-ab808b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrbricolage-ab808b.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443528,7 +443887,7 @@ }, { "question": "MR.DIY", - "icon": "./assets/data/nsi/logos/mrdiy-628676.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrdiy-628676.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443544,7 +443903,7 @@ }, { "question": "OBI", - "icon": "./assets/data/nsi/logos/obi-d5381e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obi-d5381e.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443560,7 +443919,7 @@ }, { "question": "Obs Bygg", - "icon": "./assets/data/nsi/logos/obsbygg-1b58cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/obsbygg-1b58cb.png", "osmTags": { "and": [ "shop=doityourself", @@ -443575,7 +443934,7 @@ }, { "question": "PlaceMakers", - "icon": "./assets/data/nsi/logos/placemakers-e80948.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/placemakers-e80948.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443591,7 +443950,7 @@ }, { "question": "Point P", - "icon": "./assets/data/nsi/logos/pointp-f33b88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pointp-f33b88.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443607,7 +443966,7 @@ }, { "question": "Praktiker", - "icon": "./assets/data/nsi/logos/praktiker-eb3505.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/praktiker-eb3505.svg", "osmTags": { "and": [ "shop=doityourself", @@ -443623,7 +443982,7 @@ }, { "question": "Praktiker (България)", - "icon": "./assets/data/nsi/logos/praktiker-6499aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/praktiker-6499aa.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443641,7 +444000,7 @@ }, { "question": "Praxis", - "icon": "./assets/data/nsi/logos/praxis-233544.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/praxis-233544.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443657,7 +444016,7 @@ }, { "question": "Princess Auto", - "icon": "./assets/data/nsi/logos/princessauto-fd1fd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/princessauto-fd1fd9.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443688,7 +444047,7 @@ }, { "question": "Promart", - "icon": "./assets/data/nsi/logos/promart-2f83d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/promart-2f83d4.png", "osmTags": { "and": [ "shop=doityourself", @@ -443704,7 +444063,7 @@ }, { "question": "PSB Mrówka", - "icon": "./assets/data/nsi/logos/psbmrowka-e3f321.png", + "icon": "https://data.mapcomplete.org/nsi//logos/psbmrowka-e3f321.png", "osmTags": { "and": [ "shop=doityourself", @@ -443720,7 +444079,7 @@ }, { "question": "Puuilo", - "icon": "./assets/data/nsi/logos/puuilo-c60d71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/puuilo-c60d71.png", "osmTags": { "and": [ "shop=doityourself", @@ -443736,7 +444095,7 @@ }, { "question": "Raiffeisen-Markt", - "icon": "./assets/data/nsi/logos/raiffeisenmarkt-db1fbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenmarkt-db1fbb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443767,7 +444126,7 @@ }, { "question": "Rona", - "icon": "./assets/data/nsi/logos/rona-fd1fd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rona-fd1fd9.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443783,7 +444142,7 @@ }, { "question": "Rona+", - "icon": "./assets/data/nsi/logos/rona-381944.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rona-381944.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443799,7 +444158,7 @@ }, { "question": "Screwfix", - "icon": "./assets/data/nsi/logos/screwfix-6b37cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/screwfix-6b37cb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443815,7 +444174,7 @@ }, { "question": "Sodimac", - "icon": "./assets/data/nsi/logos/sodimac-0b4811.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sodimac-0b4811.svg", "osmTags": { "and": [ "shop=doityourself", @@ -443831,7 +444190,7 @@ }, { "question": "Sonderpreis Baumarkt", - "icon": "./assets/data/nsi/logos/sonderpreisbaumarkt-db1fbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonderpreisbaumarkt-db1fbb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443847,7 +444206,7 @@ }, { "question": "Tecnomat", - "icon": "./assets/data/nsi/logos/tecnomat-afce84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tecnomat-afce84.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443863,7 +444222,7 @@ }, { "question": "tedox", - "icon": "./assets/data/nsi/logos/tedox-db1fbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tedox-db1fbb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443879,7 +444238,7 @@ }, { "question": "Tekzen", - "icon": "./assets/data/nsi/logos/tekzen-9ebfe5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tekzen-9ebfe5.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443895,7 +444254,7 @@ }, { "question": "The Home Depot", - "icon": "./assets/data/nsi/logos/thehomedepot-00d2a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehomedepot-00d2a0.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443912,7 +444271,7 @@ }, { "question": "Toolstation", - "icon": "./assets/data/nsi/logos/toolstation-12fa86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toolstation-12fa86.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443928,7 +444287,7 @@ }, { "question": "toom Baumarkt", - "icon": "./assets/data/nsi/logos/toombaumarkt-db1fbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toombaumarkt-db1fbb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443960,7 +444319,7 @@ }, { "question": "Travis Perkins", - "icon": "./assets/data/nsi/logos/travisperkins-ae8e02.png", + "icon": "https://data.mapcomplete.org/nsi//logos/travisperkins-ae8e02.png", "osmTags": { "and": [ "shop=doityourself", @@ -443976,7 +444335,7 @@ }, { "question": "TTL", - "icon": "./assets/data/nsi/logos/ttl-b8b163.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ttl-b8b163.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -443992,7 +444351,7 @@ }, { "question": "TTM", - "icon": "./assets/data/nsi/logos/ttm-05606e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ttm-05606e.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444008,7 +444367,7 @@ }, { "question": "Uni Hobby", - "icon": "./assets/data/nsi/logos/unihobby-2ad5ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unihobby-2ad5ff.png", "osmTags": { "and": [ "shop=doityourself", @@ -444024,7 +444383,7 @@ }, { "question": "V-BAUMARKT", - "icon": "./assets/data/nsi/logos/vbaumarkt-db1fbb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vbaumarkt-db1fbb.png", "osmTags": { "and": [ "shop=doityourself", @@ -444040,7 +444399,7 @@ }, { "question": "Weldom", - "icon": "./assets/data/nsi/logos/weldom-28b8a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/weldom-28b8a0.png", "osmTags": { "and": [ "shop=doityourself", @@ -444056,7 +444415,7 @@ }, { "question": "Wickes", - "icon": "./assets/data/nsi/logos/wickes-ae8e02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wickes-ae8e02.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444072,7 +444431,7 @@ }, { "question": "Wilcon Depot", - "icon": "./assets/data/nsi/logos/wilcondepot-8037a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilcondepot-8037a1.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444088,7 +444447,7 @@ }, { "question": "Woodie's", - "icon": "./assets/data/nsi/logos/woodies-4f5e7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woodies-4f5e7a.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444104,7 +444463,7 @@ }, { "question": "ZG Raiffeisen Baustoffe", - "icon": "./assets/data/nsi/logos/zgraiffeisenbaustoffe-db1fbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zgraiffeisenbaustoffe-db1fbb.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444120,7 +444479,7 @@ }, { "question": "Епіцентр К", - "icon": "./assets/data/nsi/logos/13cf8e-2dbcce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/13cf8e-2dbcce.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444181,7 +444540,7 @@ }, { "question": "Леруа Мерлен", - "icon": "./assets/data/nsi/logos/leroymerlin-ea6c83.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leroymerlin-ea6c83.png", "osmTags": { "and": [ "shop=doityourself", @@ -444215,7 +444574,7 @@ }, { "question": "Петрович", - "icon": "./assets/data/nsi/logos/petrovich-43446b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrovich-43446b.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444235,7 +444594,7 @@ }, { "question": "Практис", - "icon": "./assets/data/nsi/logos/praktis-6499aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/praktis-6499aa.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444297,7 +444656,7 @@ }, { "question": "Уради сам", - "icon": "./assets/data/nsi/logos/uradisam-6779da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uradisam-6779da.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444315,7 +444674,7 @@ }, { "question": "გორგია", - "icon": "./assets/data/nsi/logos/gorgia-bfebe4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gorgia-bfebe4.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444336,7 +444695,7 @@ }, { "question": "アマノ", - "icon": "./assets/data/nsi/logos/amano-dd401d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amano-dd401d.png", "osmTags": { "and": [ "shop=doityourself", @@ -444356,7 +444715,7 @@ }, { "question": "カインズホーム", - "icon": "./assets/data/nsi/logos/cainzhome-dd401d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cainzhome-dd401d.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444411,7 +444770,7 @@ }, { "question": "コーナン", - "icon": "./assets/data/nsi/logos/kohnan-dd401d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kohnan-dd401d.jpg", "osmTags": { "and": [ "shop=doityourself", @@ -444431,7 +444790,7 @@ }, { "question": "コメリPRO", - "icon": "./assets/data/nsi/logos/komeripro-dd401d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/komeripro-dd401d.png", "osmTags": { "and": [ "shop=doityourself", @@ -444451,7 +444810,7 @@ }, { "question": "コメリハード&グリーン", - "icon": "./assets/data/nsi/logos/komerihardandgreen-dd401d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/komerihardandgreen-dd401d.png", "osmTags": { "and": [ "shop=doityourself", @@ -444471,7 +444830,7 @@ }, { "question": "コメリパワー", - "icon": "./assets/data/nsi/logos/komeripower-dd401d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/komeripower-dd401d.png", "osmTags": { "and": [ "shop=doityourself", @@ -444511,7 +444870,7 @@ }, { "question": "スーパービバホーム", - "icon": "./assets/data/nsi/logos/supervivahome-dd401d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/supervivahome-dd401d.svg", "osmTags": { "and": [ "shop=doityourself", @@ -444532,7 +444891,7 @@ }, { "question": "ナフコ", - "icon": "./assets/data/nsi/logos/nafco-dd401d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nafco-dd401d.svg", "osmTags": { "and": [ "shop=doityourself", @@ -444552,7 +444911,7 @@ }, { "question": "ビバホーム", - "icon": "./assets/data/nsi/logos/vivahome-dd401d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivahome-dd401d.svg", "osmTags": { "and": [ "shop=doityourself", @@ -444592,7 +444951,7 @@ }, { "question": "綿半ホームエイド", - "icon": "./assets/data/nsi/logos/watahanhomeaid-dd401d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/watahanhomeaid-dd401d.svg", "osmTags": { "and": [ "shop=doityourself", @@ -444612,7 +444971,7 @@ }, { "question": "ADLO", - "icon": "./assets/data/nsi/logos/adlo-46a8ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adlo-46a8ae.jpg", "osmTags": { "and": [ "shop=doors", @@ -444670,7 +445029,7 @@ }, { "question": "5àsec", - "icon": "./assets/data/nsi/logos/5asec-e2c813.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/5asec-e2c813.jpg", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444700,7 +445059,7 @@ }, { "question": "CD One Price Cleaners", - "icon": "./assets/data/nsi/logos/cdonepricecleaners-1b6f6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cdonepricecleaners-1b6f6c.jpg", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444731,7 +445090,7 @@ }, { "question": "Johnsons", - "icon": "./assets/data/nsi/logos/johnsons-a4fd49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnsons-a4fd49.jpg", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444747,7 +445106,7 @@ }, { "question": "Kims", - "icon": "./assets/data/nsi/logos/kims-425993.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kims-425993.jpg", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444763,7 +445122,7 @@ }, { "question": "Martinizing Dry Cleaning", - "icon": "./assets/data/nsi/logos/martinizingdrycleaning-e2c813.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/martinizingdrycleaning-e2c813.jpg", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444793,7 +445152,7 @@ }, { "question": "Tide Cleaners", - "icon": "./assets/data/nsi/logos/tidecleaners-1b6f6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tidecleaners-1b6f6c.png", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444809,7 +445168,7 @@ }, { "question": "Zips Dry Cleaning", - "icon": "./assets/data/nsi/logos/zipsdrycleaning-1b6f6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zipsdrycleaning-1b6f6c.png", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444825,7 +445184,7 @@ }, { "question": "Диана", - "icon": "./assets/data/nsi/logos/21adb0-1a9348.png", + "icon": "https://data.mapcomplete.org/nsi//logos/21adb0-1a9348.png", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444855,7 +445214,7 @@ }, { "question": "うさちゃんクリーニング", - "icon": "./assets/data/nsi/logos/usachancleaning-3105a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/usachancleaning-3105a6.png", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444875,7 +445234,7 @@ }, { "question": "ダイヤクリーニング", - "icon": "./assets/data/nsi/logos/diacleaning-3105a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diacleaning-3105a6.jpg", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444895,7 +445254,7 @@ }, { "question": "タカケンサンシャイン", - "icon": "./assets/data/nsi/logos/takakensunshine-3105a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/takakensunshine-3105a6.jpg", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444917,9 +445276,6 @@ "question": "ポニー", "osmTags": { "and": [ - "official_name=ポニークリーニング", - "official_name:en=Pony Cleaning", - "official_name:ja=ポニークリーニング", "shop=dry_cleaning", { "or": [ @@ -444929,7 +445285,10 @@ "brand:wikidata=Q88012241", "name=ポニー", "name:en=Pony", - "name:ja=ポニー" + "name:ja=ポニー", + "official_name=ポニークリーニング", + "official_name:en=Pony Cleaning", + "official_name:ja=ポニークリーニング" ] } ] @@ -444956,7 +445315,7 @@ }, { "question": "ヤングドライ", - "icon": "./assets/data/nsi/logos/youngdry-3105a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/youngdry-3105a6.png", "osmTags": { "and": [ "shop=dry_cleaning", @@ -444976,7 +445335,7 @@ }, { "question": "白洋舎", - "icon": "./assets/data/nsi/logos/hakuyosha-3105a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hakuyosha-3105a6.jpg", "osmTags": { "and": [ "shop=dry_cleaning", @@ -445015,7 +445374,7 @@ }, { "question": "Cigusto", - "icon": "./assets/data/nsi/logos/cigusto-469b75.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cigusto-469b75.png", "osmTags": { "and": [ "shop=e-cigarette", @@ -445046,7 +445405,7 @@ }, { "question": "E-cig City", - "icon": "./assets/data/nsi/logos/ecigcity-1253ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecigcity-1253ad.jpg", "osmTags": { "and": [ "shop=e-cigarette", @@ -445091,7 +445450,7 @@ }, { "question": "Evapo", - "icon": "./assets/data/nsi/logos/evapo-a06c95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evapo-a06c95.jpg", "osmTags": { "and": [ "shop=e-cigarette", @@ -445107,7 +445466,7 @@ }, { "question": "Flavour Vapour", - "icon": "./assets/data/nsi/logos/flavourvapour-a06c95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flavourvapour-a06c95.jpg", "osmTags": { "and": [ "shop=e-cigarette", @@ -445152,7 +445511,7 @@ }, { "question": "IQOS", - "icon": "./assets/data/nsi/logos/iqos-721085.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/iqos-721085.svg", "osmTags": { "and": [ "shop=e-cigarette", @@ -445197,7 +445556,7 @@ }, { "question": "SoFly", - "icon": "./assets/data/nsi/logos/sofly-349359.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sofly-349359.jpg", "osmTags": { "and": [ "shop=e-cigarette", @@ -445213,7 +445572,7 @@ }, { "question": "Totally Wicked", - "icon": "./assets/data/nsi/logos/totallywicked-a06c95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/totallywicked-a06c95.jpg", "osmTags": { "and": [ "shop=e-cigarette", @@ -445229,7 +445588,7 @@ }, { "question": "Umbrella", - "icon": "./assets/data/nsi/logos/umbrella-1bb1e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umbrella-1bb1e0.jpg", "osmTags": { "and": [ "shop=e-cigarette", @@ -445290,7 +445649,7 @@ }, { "question": "Vapostore", - "icon": "./assets/data/nsi/logos/vapostore-4d07cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vapostore-4d07cc.jpg", "osmTags": { "and": [ "shop=e-cigarette", @@ -445354,7 +445713,7 @@ }, { "question": "Battery World", - "icon": "./assets/data/nsi/logos/batteryworld-31899b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/batteryworld-31899b.jpg", "osmTags": { "and": [ "shop=electrical", @@ -445370,7 +445729,7 @@ }, { "question": "CEF", - "icon": "./assets/data/nsi/logos/cef-7c8ef7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cef-7c8ef7.jpg", "osmTags": { "and": [ "shop=electrical", @@ -445400,7 +445759,7 @@ }, { "question": "City Electric Supply", - "icon": "./assets/data/nsi/logos/cityelectricsupply-83ef7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityelectricsupply-83ef7e.jpg", "osmTags": { "and": [ "shop=electrical", @@ -445416,7 +445775,7 @@ }, { "question": "Denmans", - "icon": "./assets/data/nsi/logos/denmans-00236e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/denmans-00236e.jpg", "osmTags": { "and": [ "shop=electrical", @@ -445432,7 +445791,7 @@ }, { "question": "Rexel", - "icon": "./assets/data/nsi/logos/rexel-091354.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rexel-091354.jpg", "osmTags": { "and": [ "shop=electrical", @@ -445448,7 +445807,7 @@ }, { "question": "Sonepar", - "icon": "./assets/data/nsi/logos/sonepar-bfcbb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sonepar-bfcbb0.png", "osmTags": { "and": [ "shop=electrical", @@ -445464,7 +445823,7 @@ }, { "question": "Yesss Electrical", - "icon": "./assets/data/nsi/logos/yessselectrical-d3cc8c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yessselectrical-d3cc8c.png", "osmTags": { "and": [ "shop=electrical", @@ -445480,7 +445839,7 @@ }, { "question": "Yesss Électrique", - "icon": "./assets/data/nsi/logos/yessselectrique-21dd29.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yessselectrique-21dd29.png", "osmTags": { "and": [ "shop=electrical", @@ -445496,7 +445855,7 @@ }, { "question": "Yesss Elektro", - "icon": "./assets/data/nsi/logos/yessselektro-edc057.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yessselektro-edc057.png", "osmTags": { "and": [ "shop=electrical", @@ -445512,7 +445871,7 @@ }, { "question": "Καυκάς / Kafkas", - "icon": "./assets/data/nsi/logos/kafkas-7ed04e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kafkas-7ed04e.jpg", "osmTags": { "and": [ "shop=electrical", @@ -445579,7 +445938,7 @@ }, { "question": "ABC Warehouse", - "icon": "./assets/data/nsi/logos/abcwarehouse-93e093.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abcwarehouse-93e093.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445595,7 +445954,7 @@ }, { "question": "Abenson", - "icon": "./assets/data/nsi/logos/abenson-9584c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abenson-9584c3.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445625,7 +445984,7 @@ }, { "question": "Altex", - "icon": "./assets/data/nsi/logos/altex-9c4b16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/altex-9c4b16.png", "osmTags": { "and": [ "shop=electronics", @@ -445641,7 +446000,7 @@ }, { "question": "Alza", - "icon": "./assets/data/nsi/logos/alza-5fa1c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alza-5fa1c3.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445660,7 +446019,7 @@ }, { "question": "Apple Store", - "icon": "./assets/data/nsi/logos/applestore-9377b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/applestore-9377b7.svg", "osmTags": { "and": [ "shop=electronics", @@ -445677,7 +446036,7 @@ }, { "question": "Automatic Centre", - "icon": "./assets/data/nsi/logos/automaticcentre-9584c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/automaticcentre-9584c3.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445693,7 +446052,7 @@ }, { "question": "b8ta", - "icon": "./assets/data/nsi/logos/b8ta-93e093.png", + "icon": "https://data.mapcomplete.org/nsi//logos/b8ta-93e093.png", "osmTags": { "and": [ "shop=electronics", @@ -445709,7 +446068,7 @@ }, { "question": "Batteries Plus Bulbs", - "icon": "./assets/data/nsi/logos/batteriesplusbulbs-93e093.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/batteriesplusbulbs-93e093.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445740,7 +446099,7 @@ }, { "question": "Best Buy", - "icon": "./assets/data/nsi/logos/bestbuy-da277f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bestbuy-da277f.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445756,7 +446115,7 @@ }, { "question": "Best Buy Express", - "icon": "./assets/data/nsi/logos/bestbuyexpress-88d59f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bestbuyexpress-88d59f.png", "osmTags": { "and": [ "shop=electronics", @@ -445772,7 +446131,7 @@ }, { "question": "Bing Lee", - "icon": "./assets/data/nsi/logos/binglee-026a7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/binglee-026a7a.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445788,7 +446147,7 @@ }, { "question": "Bork", - "icon": "./assets/data/nsi/logos/bork-138e7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bork-138e7e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445804,7 +446163,7 @@ }, { "question": "Bosch", - "icon": "./assets/data/nsi/logos/bosch-9377b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bosch-9377b7.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445820,7 +446179,7 @@ }, { "question": "Boulanger", - "icon": "./assets/data/nsi/logos/boulanger-5cf230.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boulanger-5cf230.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445836,7 +446195,7 @@ }, { "question": "Brain", - "icon": "./assets/data/nsi/logos/brain-f31684.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brain-f31684.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445852,7 +446211,7 @@ }, { "question": "Brookstone", - "icon": "./assets/data/nsi/logos/brookstone-93e093.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/brookstone-93e093.svg", "osmTags": { "and": [ "shop=electronics", @@ -445868,7 +446227,7 @@ }, { "question": "Bug", - "icon": "./assets/data/nsi/logos/bug-f7cc4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bug-f7cc4f.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445886,7 +446245,7 @@ }, { "question": "Capi Electronics", - "icon": "./assets/data/nsi/logos/capielectronics-cec7c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/capielectronics-cec7c5.png", "osmTags": { "and": [ "shop=electronics", @@ -445902,7 +446261,7 @@ }, { "question": "CeX", - "icon": "./assets/data/nsi/logos/cex-75e32e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cex-75e32e.svg", "osmTags": { "and": [ "shop=electronics", @@ -445918,7 +446277,7 @@ }, { "question": "Comet", - "icon": "./assets/data/nsi/logos/comet-41f013.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comet-41f013.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445934,7 +446293,7 @@ }, { "question": "Comfy", - "icon": "./assets/data/nsi/logos/comfy-f31684.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comfy-f31684.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445950,7 +446309,7 @@ }, { "question": "Conrad", - "icon": "./assets/data/nsi/logos/conrad-a3c660.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conrad-a3c660.jpg", "osmTags": { "and": [ "shop=electronics", @@ -445966,7 +446325,7 @@ }, { "question": "Coolblue", - "icon": "./assets/data/nsi/logos/coolblue-5a7634.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coolblue-5a7634.png", "osmTags": { "and": [ "shop=electronics", @@ -445982,7 +446341,7 @@ }, { "question": "Cromā", - "icon": "./assets/data/nsi/logos/croma-91ea11.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/croma-91ea11.gif", "osmTags": { "and": [ "shop=electronics", @@ -445998,7 +446357,7 @@ }, { "question": "Currys", - "icon": "./assets/data/nsi/logos/currys-5f4e0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/currys-5f4e0b.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446014,7 +446373,7 @@ }, { "question": "Darty", - "icon": "./assets/data/nsi/logos/darty-38013c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/darty-38013c.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446030,7 +446389,7 @@ }, { "question": "Datacomp", - "icon": "./assets/data/nsi/logos/datacomp-bbcba3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/datacomp-bbcba3.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446046,7 +446405,7 @@ }, { "question": "Datart", - "icon": "./assets/data/nsi/logos/datart-8bbdd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/datart-8bbdd1.png", "osmTags": { "and": [ "shop=electronics", @@ -446062,7 +446421,7 @@ }, { "question": "DID Electrical", - "icon": "./assets/data/nsi/logos/didelectrical-4873ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/didelectrical-4873ea.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446078,7 +446437,7 @@ }, { "question": "DNS", - "icon": "./assets/data/nsi/logos/dns-71b2fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dns-71b2fd.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446113,7 +446472,7 @@ }, { "question": "E.Leclerc Espace Culturel", - "icon": "./assets/data/nsi/logos/eleclercespaceculturel-38013c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclercespaceculturel-38013c.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446129,7 +446488,7 @@ }, { "question": "Eldi", - "icon": "./assets/data/nsi/logos/eldi-17d2c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eldi-17d2c2.png", "osmTags": { "and": [ "shop=electronics", @@ -446145,7 +446504,7 @@ }, { "question": "Eldorado (Україна)", - "icon": "./assets/data/nsi/logos/eldorado-f31684.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eldorado-f31684.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446176,7 +446535,7 @@ }, { "question": "Electroplanet", - "icon": "./assets/data/nsi/logos/electroplanet-293070.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electroplanet-293070.png", "osmTags": { "and": [ "shop=electronics", @@ -446192,7 +446551,7 @@ }, { "question": "Elektra", - "icon": "./assets/data/nsi/logos/elektra-10d776.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elektra-10d776.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446208,7 +446567,7 @@ }, { "question": "Elgiganten", - "icon": "./assets/data/nsi/logos/elgiganten-540210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elgiganten-540210.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446224,7 +446583,7 @@ }, { "question": "Elkjøp", - "icon": "./assets/data/nsi/logos/elkjop-5875d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elkjop-5875d7.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446254,7 +446613,7 @@ }, { "question": "EP:", - "icon": "./assets/data/nsi/logos/ep-a53b66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ep-a53b66.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446269,7 +446628,7 @@ }, { "question": "ETA", - "icon": "./assets/data/nsi/logos/eta-8bbdd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eta-8bbdd1.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446285,7 +446644,7 @@ }, { "question": "Euronics", - "icon": "./assets/data/nsi/logos/euronics-b0e3ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/euronics-b0e3ca.png", "osmTags": { "and": [ "shop=electronics", @@ -446301,7 +446660,7 @@ }, { "question": "Euronics (Deutschland)", - "icon": "./assets/data/nsi/logos/euronics-50d984.png", + "icon": "https://data.mapcomplete.org/nsi//logos/euronics-50d984.png", "osmTags": { "and": [ "shop=electronics", @@ -446317,7 +446676,7 @@ }, { "question": "Expert", - "icon": "./assets/data/nsi/logos/expert-b0e3ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/expert-b0e3ca.png", "osmTags": { "and": [ "shop=electronics", @@ -446333,7 +446692,7 @@ }, { "question": "Expert (Deutschland)", - "icon": "./assets/data/nsi/logos/expert-50d984.png", + "icon": "https://data.mapcomplete.org/nsi//logos/expert-50d984.png", "osmTags": { "and": [ "shop=electronics", @@ -446349,7 +446708,7 @@ }, { "question": "Flanco", - "icon": "./assets/data/nsi/logos/flanco-9c4b16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flanco-9c4b16.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446365,7 +446724,7 @@ }, { "question": "Fnac", - "icon": "./assets/data/nsi/logos/fnac-8dde8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fnac-8dde8e.png", "osmTags": { "and": [ "shop=electronics", @@ -446381,7 +446740,7 @@ }, { "question": "Frávega", - "icon": "./assets/data/nsi/logos/fravega-6d37eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fravega-6d37eb.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446397,7 +446756,7 @@ }, { "question": "Fry's Electronics", - "icon": "./assets/data/nsi/logos/fryselectronics-93e093.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fryselectronics-93e093.svg", "osmTags": { "and": [ "shop=electronics", @@ -446414,7 +446773,7 @@ }, { "question": "Fust", - "icon": "./assets/data/nsi/logos/fust-c12012.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fust-c12012.svg", "osmTags": { "and": [ "shop=electronics", @@ -446430,7 +446789,7 @@ }, { "question": "Garbarino", - "icon": "./assets/data/nsi/logos/garbarino-6d37eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/garbarino-6d37eb.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446446,7 +446805,7 @@ }, { "question": "GBarbosa Eletro Show", - "icon": "./assets/data/nsi/logos/eletroshow-2bf2c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eletroshow-2bf2c3.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446462,7 +446821,7 @@ }, { "question": "Gigantti", - "icon": "./assets/data/nsi/logos/gigantti-741a81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gigantti-741a81.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446478,7 +446837,7 @@ }, { "question": "Gigatron", - "icon": "./assets/data/nsi/logos/gigatron-7d20f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gigatron-7d20f1.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446496,7 +446855,7 @@ }, { "question": "Gitem", - "icon": "./assets/data/nsi/logos/gitem-38013c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gitem-38013c.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446512,7 +446871,7 @@ }, { "question": "Hartlauer", - "icon": "./assets/data/nsi/logos/hartlauer-7212ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hartlauer-7212ef.png", "osmTags": { "and": [ "shop=electronics", @@ -446528,7 +446887,7 @@ }, { "question": "Harvey Norman", - "icon": "./assets/data/nsi/logos/harveynorman-69a197.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harveynorman-69a197.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446544,7 +446903,7 @@ }, { "question": "HiFiCorp", - "icon": "./assets/data/nsi/logos/hificorp-66e407.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hificorp-66e407.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446575,7 +446934,7 @@ }, { "question": "Home Along", - "icon": "./assets/data/nsi/logos/homealong-9584c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homealong-9584c3.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446591,7 +446950,7 @@ }, { "question": "ibyte", - "icon": "./assets/data/nsi/logos/ibyte-2bf2c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ibyte-2bf2c3.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446607,7 +446966,7 @@ }, { "question": "Incredible", - "icon": "./assets/data/nsi/logos/incredible-1dda3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/incredible-1dda3b.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446623,7 +446982,7 @@ }, { "question": "InMotion", - "icon": "./assets/data/nsi/logos/inmotion-2d3e16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inmotion-2d3e16.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446639,7 +446998,7 @@ }, { "question": "Interdiscount", - "icon": "./assets/data/nsi/logos/interdiscount-c12012.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/interdiscount-c12012.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446655,7 +447014,7 @@ }, { "question": "iStores", - "icon": "./assets/data/nsi/logos/istores-8bbdd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istores-8bbdd1.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446671,7 +447030,7 @@ }, { "question": "iStyle", - "icon": "./assets/data/nsi/logos/istyle-e9662e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istyle-e9662e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446687,7 +447046,7 @@ }, { "question": "Ivory", - "icon": "./assets/data/nsi/logos/ivory-f7cc4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ivory-f7cc4f.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446707,7 +447066,7 @@ }, { "question": "Jaycar", - "icon": "./assets/data/nsi/logos/jaycar-2d5b11.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jaycar-2d5b11.png", "osmTags": { "and": [ "shop=electronics", @@ -446723,7 +447082,7 @@ }, { "question": "JB Hi-Fi", - "icon": "./assets/data/nsi/logos/jbhifi-2d5b11.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jbhifi-2d5b11.png", "osmTags": { "and": [ "shop=electronics", @@ -446739,7 +447098,7 @@ }, { "question": "Kjell & Company", - "icon": "./assets/data/nsi/logos/kjellandcompany-4786d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kjellandcompany-4786d4.png", "osmTags": { "and": [ "shop=electronics", @@ -446755,7 +447114,7 @@ }, { "question": "Komputronik", - "icon": "./assets/data/nsi/logos/komputronik-2b5e29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komputronik-2b5e29.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446771,7 +447130,7 @@ }, { "question": "Kotsovolos", - "icon": "./assets/data/nsi/logos/kotsovolos-f48fcd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kotsovolos-f48fcd.png", "osmTags": { "and": [ "shop=electronics", @@ -446787,7 +447146,7 @@ }, { "question": "Krëfel", - "icon": "./assets/data/nsi/logos/krefel-17d2c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krefel-17d2c2.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446803,7 +447162,7 @@ }, { "question": "KSP", - "icon": "./assets/data/nsi/logos/ksp-f7cc4f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ksp-f7cc4f.png", "osmTags": { "and": [ "shop=electronics", @@ -446819,7 +447178,7 @@ }, { "question": "La Curacao", - "icon": "./assets/data/nsi/logos/lacuracao-9377b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacuracao-9377b7.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446835,7 +447194,7 @@ }, { "question": "Laser Eletro", - "icon": "./assets/data/nsi/logos/lasereletro-2bf2c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lasereletro-2bf2c3.png", "osmTags": { "and": [ "shop=electronics", @@ -446851,7 +447210,7 @@ }, { "question": "LG", - "icon": "./assets/data/nsi/logos/lg-9377b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lg-9377b7.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446881,7 +447240,7 @@ }, { "question": "Max Elektro", - "icon": "./assets/data/nsi/logos/maxelektro-2b5e29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxelektro-2b5e29.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446897,7 +447256,7 @@ }, { "question": "MDA", - "icon": "./assets/data/nsi/logos/mda-5cf230.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mda-5cf230.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446927,7 +447286,7 @@ }, { "question": "Media Expert", - "icon": "./assets/data/nsi/logos/mediaexpert-2b5e29.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mediaexpert-2b5e29.png", "osmTags": { "and": [ "shop=electronics", @@ -446943,7 +447302,7 @@ }, { "question": "media@home", - "icon": "./assets/data/nsi/logos/mediahome-50d984.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mediahome-50d984.jpg", "osmTags": { "and": [ "shop=electronics", @@ -446959,7 +447318,7 @@ }, { "question": "MediaMarkt", - "icon": "./assets/data/nsi/logos/mediamarkt-19e894.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mediamarkt-19e894.png", "osmTags": { "and": [ "shop=electronics", @@ -446975,7 +447334,7 @@ }, { "question": "MediaWorld", - "icon": "./assets/data/nsi/logos/mediaworld-41f013.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mediaworld-41f013.png", "osmTags": { "and": [ "shop=electronics", @@ -446991,7 +447350,7 @@ }, { "question": "Medimax", - "icon": "./assets/data/nsi/logos/medimax-50d984.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/medimax-50d984.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447007,7 +447366,7 @@ }, { "question": "Megatone", - "icon": "./assets/data/nsi/logos/megatone-6d37eb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/megatone-6d37eb.svg", "osmTags": { "and": [ "shop=electronics", @@ -447023,7 +447382,7 @@ }, { "question": "Mi Store", - "icon": "./assets/data/nsi/logos/mistore-e0cb84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mistore-e0cb84.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447043,7 +447402,7 @@ }, { "question": "Miele", - "icon": "./assets/data/nsi/logos/miele-9377b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miele-9377b7.png", "osmTags": { "and": [ "shop=electronics", @@ -447059,7 +447418,7 @@ }, { "question": "Milar", - "icon": "./assets/data/nsi/logos/milar-c76981.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milar-c76981.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447075,7 +447434,7 @@ }, { "question": "Moyo", - "icon": "./assets/data/nsi/logos/moyo-f31684.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moyo-f31684.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447091,7 +447450,7 @@ }, { "question": "Musimundo", - "icon": "./assets/data/nsi/logos/musimundo-6d37eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/musimundo-6d37eb.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447107,7 +447466,7 @@ }, { "question": "NAY", - "icon": "./assets/data/nsi/logos/nay-bbcba3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nay-bbcba3.png", "osmTags": { "and": [ "shop=electronics", @@ -447123,7 +447482,7 @@ }, { "question": "Neonet", - "icon": "./assets/data/nsi/logos/neonet-2b5e29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neonet-2b5e29.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447139,7 +447498,7 @@ }, { "question": "neopunkt", - "icon": "./assets/data/nsi/logos/neopunkt-2b5e29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neopunkt-2b5e29.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447155,7 +447514,7 @@ }, { "question": "NetOnNet", - "icon": "./assets/data/nsi/logos/netonnet-09807a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/netonnet-09807a.png", "osmTags": { "and": [ "shop=electronics", @@ -447171,7 +447530,7 @@ }, { "question": "Noel Leeming", - "icon": "./assets/data/nsi/logos/noelleeming-5f4367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noelleeming-5f4367.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447187,7 +447546,7 @@ }, { "question": "Okay", - "icon": "./assets/data/nsi/logos/okay-8bbdd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okay-8bbdd1.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447203,7 +447562,7 @@ }, { "question": "OSIM", - "icon": "./assets/data/nsi/logos/osim-3e8e54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/osim-3e8e54.png", "osmTags": { "and": [ "shop=electronics", @@ -447219,7 +447578,7 @@ }, { "question": "P. C. Richard & Son", - "icon": "./assets/data/nsi/logos/pcrichardandson-93e093.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pcrichardandson-93e093.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447235,7 +447594,7 @@ }, { "question": "Plaisio", - "icon": "./assets/data/nsi/logos/plaisio-ddaeac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plaisio-ddaeac.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447251,7 +447610,7 @@ }, { "question": "PLANEO Elektro", - "icon": "./assets/data/nsi/logos/planeoelektro-8bbdd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/planeoelektro-8bbdd1.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447267,7 +447626,7 @@ }, { "question": "Polishop", - "icon": "./assets/data/nsi/logos/polishop-2bf2c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polishop-2bf2c3.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447283,7 +447642,7 @@ }, { "question": "Power", - "icon": "./assets/data/nsi/logos/power-9765c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/power-9765c4.png", "osmTags": { "and": [ "shop=electronics", @@ -447299,7 +447658,7 @@ }, { "question": "Power Buy", - "icon": "./assets/data/nsi/logos/powerbuy-d95acb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerbuy-d95acb.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447315,7 +447674,7 @@ }, { "question": "PRO&Cie", - "icon": "./assets/data/nsi/logos/proandcie-5cf230.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/proandcie-5cf230.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447331,7 +447690,7 @@ }, { "question": "Public", - "icon": "./assets/data/nsi/logos/public-f48fcd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/public-f48fcd.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447347,7 +447706,7 @@ }, { "question": "RadioShack", - "icon": "./assets/data/nsi/logos/radioshack-9377b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/radioshack-9377b7.svg", "osmTags": { "and": [ "shop=electronics", @@ -447378,7 +447737,7 @@ }, { "question": "Reliance Digital", - "icon": "./assets/data/nsi/logos/reliancedigital-91ea11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reliancedigital-91ea11.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447394,7 +447753,7 @@ }, { "question": "RTV Euro AGD", - "icon": "./assets/data/nsi/logos/rtveuroagd-2b5e29.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rtveuroagd-2b5e29.png", "osmTags": { "and": [ "shop=electronics", @@ -447410,7 +447769,7 @@ }, { "question": "Samsung", - "icon": "./assets/data/nsi/logos/samsung-5b1c20.png", + "icon": "https://data.mapcomplete.org/nsi//logos/samsung-5b1c20.png", "osmTags": { "and": [ "shop=electronics", @@ -447426,7 +447785,7 @@ }, { "question": "Saturn", - "icon": "./assets/data/nsi/logos/saturn-cc2119.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saturn-cc2119.png", "osmTags": { "and": [ "shop=electronics", @@ -447442,7 +447801,7 @@ }, { "question": "Savers Appliances", - "icon": "./assets/data/nsi/logos/saversappliances-9584c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saversappliances-9584c3.png", "osmTags": { "and": [ "shop=electronics", @@ -447458,7 +447817,7 @@ }, { "question": "Senheng", - "icon": "./assets/data/nsi/logos/senheng-5d0e2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senheng-5d0e2e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447474,7 +447833,7 @@ }, { "question": "Simply Mac", - "icon": "./assets/data/nsi/logos/simplymac-93e093.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/simplymac-93e093.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447490,7 +447849,7 @@ }, { "question": "Sony", - "icon": "./assets/data/nsi/logos/sony-9377b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sony-9377b7.png", "osmTags": { "and": [ "shop=electronics", @@ -447506,7 +447865,7 @@ }, { "question": "Sony Centre", - "icon": "./assets/data/nsi/logos/sonycentre-9377b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonycentre-9377b7.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447522,7 +447881,7 @@ }, { "question": "Steren", - "icon": "./assets/data/nsi/logos/steren-21e489.png", + "icon": "https://data.mapcomplete.org/nsi//logos/steren-21e489.png", "osmTags": { "and": [ "shop=electronics", @@ -447538,7 +447897,7 @@ }, { "question": "Techmart", - "icon": "./assets/data/nsi/logos/techmart-47dfb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/techmart-47dfb8.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447588,7 +447947,7 @@ }, { "question": "Technopolis", - "icon": "./assets/data/nsi/logos/technopolis-47dfb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technopolis-47dfb8.png", "osmTags": { "and": [ "shop=electronics", @@ -447606,7 +447965,7 @@ }, { "question": "Tehnomanija", - "icon": "./assets/data/nsi/logos/tehnomanija-7d20f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tehnomanija-7d20f1.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447624,7 +447983,7 @@ }, { "question": "Tehnomedia", - "icon": "./assets/data/nsi/logos/tehnomedia-7d20f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tehnomedia-7d20f1.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447640,7 +447999,7 @@ }, { "question": "Teknikmagasinet", - "icon": "./assets/data/nsi/logos/teknikmagasinet-bae196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teknikmagasinet-bae196.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447656,7 +448015,7 @@ }, { "question": "Teknosa", - "icon": "./assets/data/nsi/logos/teknosa-194b37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teknosa-194b37.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447672,7 +448031,7 @@ }, { "question": "The Good Guys", - "icon": "./assets/data/nsi/logos/thegoodguys-026a7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegoodguys-026a7a.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447688,7 +448047,7 @@ }, { "question": "Trony", - "icon": "./assets/data/nsi/logos/trony-41f013.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trony-41f013.png", "osmTags": { "and": [ "shop=electronics", @@ -447704,7 +448063,7 @@ }, { "question": "Unieuro", - "icon": "./assets/data/nsi/logos/unieuro-41f013.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unieuro-41f013.png", "osmTags": { "and": [ "shop=electronics", @@ -447720,7 +448079,7 @@ }, { "question": "Vanden Borre", - "icon": "./assets/data/nsi/logos/vandenborre-17d2c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vandenborre-17d2c2.png", "osmTags": { "and": [ "shop=electronics", @@ -447736,7 +448095,7 @@ }, { "question": "Vatan Bilgisayar", - "icon": "./assets/data/nsi/logos/vatanbilgisayar-194b37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vatanbilgisayar-194b37.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447752,7 +448111,7 @@ }, { "question": "Vestel", - "icon": "./assets/data/nsi/logos/vestel-194b37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vestel-194b37.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447768,7 +448127,7 @@ }, { "question": "Video Only", - "icon": "./assets/data/nsi/logos/videoonly-5e4651.png", + "icon": "https://data.mapcomplete.org/nsi//logos/videoonly-5e4651.png", "osmTags": { "and": [ "shop=electronics", @@ -447784,7 +448143,7 @@ }, { "question": "Vijay Sales", - "icon": "./assets/data/nsi/logos/vijaysales-91ea11.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vijaysales-91ea11.png", "osmTags": { "and": [ "shop=electronics", @@ -447800,7 +448159,7 @@ }, { "question": "Visions Electronics", - "icon": "./assets/data/nsi/logos/visionselectronics-88d59f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visionselectronics-88d59f.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447816,7 +448175,7 @@ }, { "question": "Worten", - "icon": "./assets/data/nsi/logos/worten-f7e8ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/worten-f7e8ae.png", "osmTags": { "and": [ "shop=electronics", @@ -447832,7 +448191,7 @@ }, { "question": "x-kom", - "icon": "./assets/data/nsi/logos/xkom-2b5e29.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xkom-2b5e29.png", "osmTags": { "and": [ "shop=electronics", @@ -447848,7 +448207,7 @@ }, { "question": "Алло MAX", - "icon": "./assets/data/nsi/logos/c1a7fd-f31684.png", + "icon": "https://data.mapcomplete.org/nsi//logos/c1a7fd-f31684.png", "osmTags": { "and": [ "shop=electronics", @@ -447864,7 +448223,7 @@ }, { "question": "Зора", - "icon": "./assets/data/nsi/logos/zora-47dfb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zora-47dfb8.png", "osmTags": { "and": [ "shop=electronics", @@ -447882,7 +448241,7 @@ }, { "question": "М.Видео", - "icon": "./assets/data/nsi/logos/mvideo-71b2fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mvideo-71b2fd.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447902,7 +448261,7 @@ }, { "question": "Ситилинк", - "icon": "./assets/data/nsi/logos/66795d-71b2fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/66795d-71b2fd.png", "osmTags": { "and": [ "shop=electronics", @@ -447918,7 +448277,7 @@ }, { "question": "Техно Їжак", - "icon": "./assets/data/nsi/logos/6221b2-f31684.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/6221b2-f31684.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447934,7 +448293,7 @@ }, { "question": "Техномаркет", - "icon": "./assets/data/nsi/logos/technomarket-47dfb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/technomarket-47dfb8.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447952,7 +448311,7 @@ }, { "question": "Фокстрот", - "icon": "./assets/data/nsi/logos/foxtrot-f31684.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foxtrot-f31684.jpg", "osmTags": { "and": [ "shop=electronics", @@ -447972,7 +448331,7 @@ }, { "question": "Цитрус", - "icon": "./assets/data/nsi/logos/citrus-f31684.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citrus-f31684.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448011,7 +448370,7 @@ }, { "question": "Эльдорадо", - "icon": "./assets/data/nsi/logos/d6f3ca-71b2fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/d6f3ca-71b2fd.png", "osmTags": { "and": [ "shop=electronics", @@ -448027,7 +448386,7 @@ }, { "question": "აიპლიუსი", - "icon": "./assets/data/nsi/logos/iplus-e0cb84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iplus-e0cb84.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448047,7 +448406,7 @@ }, { "question": "აისფეისი", - "icon": "./assets/data/nsi/logos/ispace-e0cb84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ispace-e0cb84.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448067,7 +448426,7 @@ }, { "question": "აიტექნიკსი", - "icon": "./assets/data/nsi/logos/itechnics-e0cb84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itechnics-e0cb84.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448087,7 +448446,7 @@ }, { "question": "ალტა", - "icon": "./assets/data/nsi/logos/alta-e0cb84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alta-e0cb84.png", "osmTags": { "and": [ "shop=electronics", @@ -448107,7 +448466,7 @@ }, { "question": "ელიტ ელექტრონიქსი", - "icon": "./assets/data/nsi/logos/elitelectronics-e0cb84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elitelectronics-e0cb84.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448127,7 +448486,7 @@ }, { "question": "ზუმერი", - "icon": "./assets/data/nsi/logos/zoommer-e0cb84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zoommer-e0cb84.png", "osmTags": { "and": [ "shop=electronics", @@ -448147,7 +448506,7 @@ }, { "question": "კონტაქტ ჰოუმი", - "icon": "./assets/data/nsi/logos/kontakthome-e0cb84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kontakthome-e0cb84.png", "osmTags": { "and": [ "shop=electronics", @@ -448167,7 +448526,7 @@ }, { "question": "მეგატექნიკა", - "icon": "./assets/data/nsi/logos/megatechnica-e0cb84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/megatechnica-e0cb84.png", "osmTags": { "and": [ "shop=electronics", @@ -448187,7 +448546,7 @@ }, { "question": "მეტრომარტი", - "icon": "./assets/data/nsi/logos/metromart-e0cb84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metromart-e0cb84.png", "osmTags": { "and": [ "shop=electronics", @@ -448207,7 +448566,7 @@ }, { "question": "ტექნო ბუმი", - "icon": "./assets/data/nsi/logos/technoboom-e0cb84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/technoboom-e0cb84.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448227,7 +448586,7 @@ }, { "question": "უნიკომი", - "icon": "./assets/data/nsi/logos/unicom-e0cb84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unicom-e0cb84.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448285,7 +448644,7 @@ }, { "question": "エディオン", - "icon": "./assets/data/nsi/logos/edion-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edion-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448305,7 +448664,7 @@ }, { "question": "ケーズデンキ", - "icon": "./assets/data/nsi/logos/ksdenki-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ksdenki-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448325,7 +448684,7 @@ }, { "question": "コジマ×ビックカメラ", - "icon": "./assets/data/nsi/logos/3dc97a-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3dc97a-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448364,7 +448723,7 @@ }, { "question": "ソフマップ", - "icon": "./assets/data/nsi/logos/sofmap-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sofmap-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448384,7 +448743,7 @@ }, { "question": "デンキチ", - "icon": "./assets/data/nsi/logos/denkichi-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/denkichi-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448404,7 +448763,7 @@ }, { "question": "ノジマ", - "icon": "./assets/data/nsi/logos/nojima-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nojima-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448424,7 +448783,7 @@ }, { "question": "ビックカメラ", - "icon": "./assets/data/nsi/logos/biccamera-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biccamera-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448463,7 +448822,7 @@ }, { "question": "ヤマダデンキ", - "icon": "./assets/data/nsi/logos/yamadadenki-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamadadenki-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448484,7 +448843,7 @@ }, { "question": "ヨドバシカメラ", - "icon": "./assets/data/nsi/logos/yodobashicamera-f86f5e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yodobashicamera-f86f5e.png", "osmTags": { "and": [ "shop=electronics", @@ -448504,7 +448863,7 @@ }, { "question": "三星", - "icon": "./assets/data/nsi/logos/samsung-b5a9fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/samsung-b5a9fa.png", "osmTags": { "and": [ "shop=electronics", @@ -448524,7 +448883,7 @@ }, { "question": "中原電器 Chung Yuen Electrical", - "icon": "./assets/data/nsi/logos/chungyuenelectrical-d4a36a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chungyuenelectrical-d4a36a.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448544,7 +448903,7 @@ }, { "question": "全國電子", - "icon": "./assets/data/nsi/logos/elifemall-745265.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elifemall-745265.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448591,7 +448950,7 @@ }, { "question": "大同3C", - "icon": "./assets/data/nsi/logos/tatung3c-745265.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tatung3c-745265.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448611,7 +448970,7 @@ }, { "question": "張毛記 CMK Electrical Store", - "icon": "./assets/data/nsi/logos/cmkelectricalstore-d4a36a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cmkelectricalstore-d4a36a.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448631,7 +448990,7 @@ }, { "question": "燦坤3C", - "icon": "./assets/data/nsi/logos/tsannkuen3c-745265.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tsannkuen3c-745265.png", "osmTags": { "and": [ "shop=electronics", @@ -448651,7 +449010,7 @@ }, { "question": "百老滙 Broadway", - "icon": "./assets/data/nsi/logos/broadway-d4a36a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/broadway-d4a36a.png", "osmTags": { "and": [ "shop=electronics", @@ -448690,7 +449049,7 @@ }, { "question": "蘇寧 Suning", - "icon": "./assets/data/nsi/logos/suning-d4a36a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/suning-d4a36a.png", "osmTags": { "and": [ "shop=electronics", @@ -448710,7 +449069,7 @@ }, { "question": "豐澤 Fortress", - "icon": "./assets/data/nsi/logos/fortress-803084.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortress-803084.png", "osmTags": { "and": [ "shop=electronics", @@ -448730,7 +449089,7 @@ }, { "question": "順發3C", - "icon": "./assets/data/nsi/logos/sunfar-745265.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunfar-745265.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448769,7 +449128,7 @@ }, { "question": "駿河屋", - "icon": "./assets/data/nsi/logos/surugaya-f86f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surugaya-f86f5e.jpg", "osmTags": { "and": [ "shop=electronics", @@ -448789,7 +449148,7 @@ }, { "question": "Adam & Eve", - "icon": "./assets/data/nsi/logos/adamandeve-3dd49d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/adamandeve-3dd49d.svg", "osmTags": { "and": [ "shop=erotic", @@ -448805,7 +449164,7 @@ }, { "question": "Amazing Intimate Essentials", - "icon": "./assets/data/nsi/logos/amazingintimateessentials-19b273.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amazingintimateessentials-19b273.jpg", "osmTags": { "and": [ "shop=erotic", @@ -448822,7 +449181,7 @@ }, { "question": "Ann Summers", - "icon": "./assets/data/nsi/logos/annsummers-d8134e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/annsummers-d8134e.png", "osmTags": { "and": [ "shop=erotic", @@ -448854,7 +449213,7 @@ }, { "question": "Hustler Hollywood", - "icon": "./assets/data/nsi/logos/hustlerhollywood-19b273.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hustlerhollywood-19b273.jpg", "osmTags": { "and": [ "shop=erotic", @@ -448870,7 +449229,7 @@ }, { "question": "Orion", - "icon": "./assets/data/nsi/logos/orion-161155.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/orion-161155.gif", "osmTags": { "and": [ "shop=erotic", @@ -448901,6 +449260,7 @@ }, { "question": "Pulse and Cocktails", + "icon": "https://data.mapcomplete.org/nsi//logos/pulseandcocktails-7c5775.jpg", "osmTags": { "and": [ "shop=erotic", @@ -448930,7 +449290,7 @@ }, { "question": "Розовый кролик", - "icon": "./assets/data/nsi/logos/pinkrabbit-d62b6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pinkrabbit-d62b6e.jpg", "osmTags": { "and": [ "shop=erotic", @@ -448964,7 +449324,7 @@ }, { "question": "Fabricland", - "icon": "./assets/data/nsi/logos/fabricland-354780.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fabricland-354780.jpg", "osmTags": { "and": [ "shop=fabric", @@ -448980,7 +449340,7 @@ }, { "question": "Lincraft", - "icon": "./assets/data/nsi/logos/lincraft-a43b83.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincraft-a43b83.png", "osmTags": { "and": [ "shop=fabric", @@ -448996,7 +449356,7 @@ }, { "question": "Modatelas", - "icon": "./assets/data/nsi/logos/modatelas-f2c89b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/modatelas-f2c89b.png", "osmTags": { "and": [ "shop=fabric", @@ -449012,7 +449372,7 @@ }, { "question": "Mondial Tissus", - "icon": "./assets/data/nsi/logos/mondialtissus-382b94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mondialtissus-382b94.png", "osmTags": { "and": [ "shop=fabric", @@ -449028,7 +449388,7 @@ }, { "question": "Parisina", - "icon": "./assets/data/nsi/logos/parisina-f2c89b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/parisina-f2c89b.svg", "osmTags": { "and": [ "shop=fabric", @@ -449044,7 +449404,7 @@ }, { "question": "Spotlight", - "icon": "./assets/data/nsi/logos/spotlight-0e32f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spotlight-0e32f9.png", "osmTags": { "and": [ "shop=fabric", @@ -449060,7 +449420,7 @@ }, { "question": "Wolle Rödel", - "icon": "./assets/data/nsi/logos/wollerodel-eca069.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wollerodel-eca069.jpg", "osmTags": { "and": [ "shop=fabric", @@ -449076,7 +449436,7 @@ }, { "question": "Accessorize", - "icon": "./assets/data/nsi/logos/accessorize-8a0f0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accessorize-8a0f0d.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449092,7 +449452,7 @@ }, { "question": "Bottega Veneta", - "icon": "./assets/data/nsi/logos/bottegaveneta-afbfc9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bottegaveneta-afbfc9.png", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449108,7 +449468,7 @@ }, { "question": "Brighton Collectibles", - "icon": "./assets/data/nsi/logos/brightoncollectibles-5ec70d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightoncollectibles-5ec70d.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449124,7 +449484,7 @@ }, { "question": "Bvlgari", - "icon": "./assets/data/nsi/logos/bvlgari-afbfc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bvlgari-afbfc9.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449140,7 +449500,7 @@ }, { "question": "Chilli Beans", - "icon": "./assets/data/nsi/logos/chillibeans-a3a9e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chillibeans-a3a9e0.png", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449156,7 +449516,7 @@ }, { "question": "claire's", - "icon": "./assets/data/nsi/logos/claires-afbfc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/claires-afbfc9.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449172,7 +449532,7 @@ }, { "question": "Dooney & Bourke", - "icon": "./assets/data/nsi/logos/dooneyandbourke-5ec70d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dooneyandbourke-5ec70d.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449188,7 +449548,7 @@ }, { "question": "Fastrack", - "icon": "./assets/data/nsi/logos/fastrack-f7d569.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastrack-f7d569.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449204,7 +449564,7 @@ }, { "question": "Guess Accessories", - "icon": "./assets/data/nsi/logos/guessaccessories-afbfc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guessaccessories-afbfc9.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449220,7 +449580,7 @@ }, { "question": "Longchamp", - "icon": "./assets/data/nsi/logos/longchamp-afbfc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longchamp-afbfc9.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449236,7 +449596,7 @@ }, { "question": "MCM", - "icon": "./assets/data/nsi/logos/mcm-afbfc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcm-afbfc9.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449252,7 +449612,7 @@ }, { "question": "Mimco", - "icon": "./assets/data/nsi/logos/mimco-479fdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mimco-479fdf.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449268,7 +449628,7 @@ }, { "question": "Montblanc", - "icon": "./assets/data/nsi/logos/montblanc-afbfc9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/montblanc-afbfc9.png", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449284,7 +449644,7 @@ }, { "question": "Mulberry", - "icon": "./assets/data/nsi/logos/mulberry-e1f087.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mulberry-e1f087.png", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449300,7 +449660,7 @@ }, { "question": "Parfois", - "icon": "./assets/data/nsi/logos/parfois-afbfc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parfois-afbfc9.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449316,7 +449676,7 @@ }, { "question": "Porsche Design", - "icon": "./assets/data/nsi/logos/porschedesign-afbfc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porschedesign-afbfc9.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449332,7 +449692,7 @@ }, { "question": "Radley London", - "icon": "./assets/data/nsi/logos/radleylondon-7b21fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radleylondon-7b21fd.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449349,7 +449709,7 @@ }, { "question": "Van Cleef & Arpels", - "icon": "./assets/data/nsi/logos/vancleefandarpels-5ec70d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vancleefandarpels-5ec70d.jpg", "osmTags": { "and": [ "shop=fashion_accessories", @@ -449365,7 +449725,7 @@ }, { "question": "Angling Direct", - "icon": "./assets/data/nsi/logos/anglingdirect-564c97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anglingdirect-564c97.jpg", "osmTags": { "and": [ "shop=fishing", @@ -449381,7 +449741,7 @@ }, { "question": "キャスティング", - "icon": "./assets/data/nsi/logos/casting-b62eaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casting-b62eaa.jpg", "osmTags": { "and": [ "shop=fishing", @@ -449401,7 +449761,7 @@ }, { "question": "タックルベリー", - "icon": "./assets/data/nsi/logos/tackleberry-b62eaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tackleberry-b62eaa.jpg", "osmTags": { "and": [ "shop=fishing", @@ -449421,7 +449781,7 @@ }, { "question": "Breno", - "icon": "./assets/data/nsi/logos/breno-198c44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/breno-198c44.png", "osmTags": { "and": [ "shop=flooring", @@ -449437,7 +449797,7 @@ }, { "question": "Choices Flooring", - "icon": "./assets/data/nsi/logos/choicesflooring-42cf07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/choicesflooring-42cf07.png", "osmTags": { "and": [ "shop=flooring", @@ -449453,7 +449813,7 @@ }, { "question": "Diego", - "icon": "./assets/data/nsi/logos/diego-be714e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diego-be714e.jpg", "osmTags": { "and": [ "shop=flooring", @@ -449469,7 +449829,7 @@ }, { "question": "Floor & Decor", - "icon": "./assets/data/nsi/logos/flooranddecor-59a49c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flooranddecor-59a49c.jpg", "osmTags": { "and": [ "shop=flooring", @@ -449485,7 +449845,7 @@ }, { "question": "Floorworld", - "icon": "./assets/data/nsi/logos/floorworld-c8adcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/floorworld-c8adcf.jpg", "osmTags": { "and": [ "shop=flooring", @@ -449501,7 +449861,7 @@ }, { "question": "Lumber Liquidators", - "icon": "./assets/data/nsi/logos/lumberliquidators-a4febc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lumberliquidators-a4febc.jpg", "osmTags": { "and": [ "shop=flooring", @@ -449517,7 +449877,7 @@ }, { "question": "Top Carpets & Floors", - "icon": "./assets/data/nsi/logos/topcarpetsandfloors-f6b058.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topcarpetsandfloors-f6b058.png", "osmTags": { "and": [ "shop=flooring", @@ -449547,7 +449907,7 @@ }, { "question": "Blume 2000", - "icon": "./assets/data/nsi/logos/blume2000-ba57f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blume2000-ba57f4.jpg", "osmTags": { "and": [ "shop=florist", @@ -449563,7 +449923,7 @@ }, { "question": "Blumen B&B", - "icon": "./assets/data/nsi/logos/blumenbandb-bec75c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blumenbandb-bec75c.jpg", "osmTags": { "and": [ "shop=florist", @@ -449579,7 +449939,7 @@ }, { "question": "Blumen Risse", - "icon": "./assets/data/nsi/logos/blumenrisse-ba57f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blumenrisse-ba57f4.jpg", "osmTags": { "and": [ "shop=florist", @@ -449595,7 +449955,7 @@ }, { "question": "Flamengo", - "icon": "./assets/data/nsi/logos/flamengo-95ef9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flamengo-95ef9a.jpg", "osmTags": { "and": [ "shop=florist", @@ -449611,7 +449971,7 @@ }, { "question": "Holland Blumen Mark", - "icon": "./assets/data/nsi/logos/hollandblumenmark-bec75c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hollandblumenmark-bec75c.jpg", "osmTags": { "and": [ "shop=florist", @@ -449627,7 +449987,7 @@ }, { "question": "Interflora", - "icon": "./assets/data/nsi/logos/interflora-6ef878.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/interflora-6ef878.jpg", "osmTags": { "and": [ "shop=florist", @@ -449643,7 +450003,7 @@ }, { "question": "Kvety Victor", - "icon": "./assets/data/nsi/logos/kvetyvictor-36bd0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kvetyvictor-36bd0b.png", "osmTags": { "and": [ "shop=florist", @@ -449674,7 +450034,7 @@ }, { "question": "Monceau Fleurs", - "icon": "./assets/data/nsi/logos/monceaufleurs-486692.png", + "icon": "https://data.mapcomplete.org/nsi//logos/monceaufleurs-486692.png", "osmTags": { "and": [ "shop=florist", @@ -449747,7 +450107,7 @@ }, { "question": "Оранж", - "icon": "./assets/data/nsi/logos/dfec3b-1841ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dfec3b-1841ed.png", "osmTags": { "and": [ "shop=florist", @@ -449849,7 +450209,7 @@ }, { "question": "青山フラワーマーケット", - "icon": "./assets/data/nsi/logos/aoyamaflowermarket-727799.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aoyamaflowermarket-727799.jpg", "osmTags": { "and": [ "shop=florist", @@ -449884,7 +450244,7 @@ }, { "question": "Cook", - "icon": "./assets/data/nsi/logos/cook-d47c9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cook-d47c9b.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -449900,7 +450260,7 @@ }, { "question": "Dream Dinners", - "icon": "./assets/data/nsi/logos/dreamdinners-98e558.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dreamdinners-98e558.jpg", "osmTags": { "and": [ "opening_hours=\"by appointment\"", @@ -449917,7 +450277,7 @@ }, { "question": "Écomiam", - "icon": "./assets/data/nsi/logos/ecomiam-e0768d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecomiam-e0768d.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -449933,7 +450293,7 @@ }, { "question": "Farmfoods", - "icon": "./assets/data/nsi/logos/farmfoods-b6d6f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmfoods-b6d6f9.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -449949,7 +450309,7 @@ }, { "question": "Iceland", - "icon": "./assets/data/nsi/logos/iceland-0c2cb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iceland-0c2cb7.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -449965,7 +450325,7 @@ }, { "question": "La Sirena", - "icon": "./assets/data/nsi/logos/lasirena-1a08fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lasirena-1a08fe.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -449981,7 +450341,7 @@ }, { "question": "M&M Food Market", - "icon": "./assets/data/nsi/logos/mandmfoodmarket-3f4a2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandmfoodmarket-3f4a2c.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -449997,7 +450357,7 @@ }, { "question": "Picard", - "icon": "./assets/data/nsi/logos/picard-fd35ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/picard-fd35ee.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -450013,7 +450373,7 @@ }, { "question": "Thiriet", - "icon": "./assets/data/nsi/logos/thiriet-c153b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thiriet-c153b7.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -450029,7 +450389,7 @@ }, { "question": "Wesoła Pani", - "icon": "./assets/data/nsi/logos/wesolapani-ec5a92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wesolapani-ec5a92.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -450044,7 +450404,7 @@ }, { "question": "Галя Балувана", - "icon": "./assets/data/nsi/logos/538c69-b89636.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/538c69-b89636.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -450060,7 +450420,7 @@ }, { "question": "Елікатні радощі життя!", - "icon": "./assets/data/nsi/logos/elikatniproducts-b89636.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elikatniproducts-b89636.jpg", "osmTags": { "and": [ "shop=frozen_food", @@ -450092,7 +450452,7 @@ }, { "question": "Amathole Funerals", - "icon": "./assets/data/nsi/logos/amatholefunerals-c8108b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amatholefunerals-c8108b.jpg", "osmTags": { "and": [ "shop=funeral_directors", @@ -450122,7 +450482,7 @@ }, { "question": "Dignity", - "icon": "./assets/data/nsi/logos/dignity-e90732.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dignity-e90732.jpg", "osmTags": { "and": [ "shop=funeral_directors", @@ -450151,7 +450511,7 @@ }, { "question": "Großhamburger Bestattungsinstitut", - "icon": "./assets/data/nsi/logos/grosshamburgerbestattungsinstitut-e9affe.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/grosshamburgerbestattungsinstitut-e9affe.gif", "osmTags": { "and": [ "shop=funeral_directors", @@ -450168,7 +450528,7 @@ }, { "question": "Icebolethu Funerals", - "icon": "./assets/data/nsi/logos/icebolethufunerals-c8108b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icebolethufunerals-c8108b.jpg", "osmTags": { "and": [ "shop=funeral_directors", @@ -450186,13 +450546,13 @@ "question": "PFG", "osmTags": { "and": [ - "official_name=Pompes Funèbres Générales", "shop=funeral_directors", { "or": [ "brand=PFG", "brand:wikidata=Q3396087", - "name=PFG" + "name=PFG", + "official_name=Pompes Funèbres Générales" ] } ] @@ -450215,7 +450575,7 @@ }, { "question": "Roc-Eclerc", - "icon": "./assets/data/nsi/logos/roceclerc-259041.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roceclerc-259041.jpg", "osmTags": { "and": [ "shop=funeral_directors", @@ -450231,7 +450591,7 @@ }, { "question": "The Co-operative Funeralcare", - "icon": "./assets/data/nsi/logos/thecooperativefuneralcare-e90732.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thecooperativefuneralcare-e90732.png", "osmTags": { "and": [ "shop=funeral_directors", @@ -450261,7 +450621,7 @@ }, { "question": "セレマ", - "icon": "./assets/data/nsi/logos/cerema-224737.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cerema-224737.png", "osmTags": { "and": [ "shop=funeral_directors", @@ -450281,7 +450641,7 @@ }, { "question": "ティア", - "icon": "./assets/data/nsi/logos/tear-224737.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tear-224737.svg", "osmTags": { "and": [ "shop=funeral_directors", @@ -450301,7 +450661,7 @@ }, { "question": "公益社", - "icon": "./assets/data/nsi/logos/koekisha-224737.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/koekisha-224737.svg", "osmTags": { "and": [ "shop=funeral_directors", @@ -450321,7 +450681,7 @@ }, { "question": "1825 Interiors", - "icon": "./assets/data/nsi/logos/1825interiors-0da980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1825interiors-0da980.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450337,7 +450697,7 @@ }, { "question": "A-Meubel", - "icon": "./assets/data/nsi/logos/ameubel-e8ade6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ameubel-e8ade6.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450353,7 +450713,7 @@ }, { "question": "Aaron's", - "icon": "./assets/data/nsi/logos/aarons-a694b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aarons-a694b9.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450369,7 +450729,7 @@ }, { "question": "Agata Meble", - "icon": "./assets/data/nsi/logos/agatameble-ad60fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agatameble-ad60fa.png", "osmTags": { "and": [ "shop=furniture", @@ -450400,7 +450760,7 @@ }, { "question": "Aiko XXXL", - "icon": "./assets/data/nsi/logos/aikoxxxl-685932.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aikoxxxl-685932.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450416,7 +450776,7 @@ }, { "question": "Akhona", - "icon": "./assets/data/nsi/logos/akhona-4d9761.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akhona-4d9761.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450432,7 +450792,7 @@ }, { "question": "Amart Furniture", - "icon": "./assets/data/nsi/logos/amartfurniture-0da980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amartfurniture-0da980.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450448,7 +450808,7 @@ }, { "question": "American Signature Furniture", - "icon": "./assets/data/nsi/logos/americansignaturefurniture-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americansignaturefurniture-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450478,7 +450838,7 @@ }, { "question": "Arhaus", - "icon": "./assets/data/nsi/logos/arhaus-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arhaus-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450494,7 +450854,7 @@ }, { "question": "Ashley HomeStore", - "icon": "./assets/data/nsi/logos/ashleyhomestore-a694b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ashleyhomestore-a694b9.png", "osmTags": { "and": [ "shop=furniture", @@ -450511,7 +450871,7 @@ }, { "question": "Asko", - "icon": "./assets/data/nsi/logos/asko-32ceba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asko-32ceba.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450527,7 +450887,7 @@ }, { "question": "ASKO Nábytek", - "icon": "./assets/data/nsi/logos/askonabytek-2a1637.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/askonabytek-2a1637.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450545,7 +450905,7 @@ }, { "question": "Askona", - "icon": "./assets/data/nsi/logos/askona-e999c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/askona-e999c2.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450561,7 +450921,7 @@ }, { "question": "Badcock Home Furniture &more", - "icon": "./assets/data/nsi/logos/badcockhomefurnitureandmore-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/badcockhomefurnitureandmore-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450577,7 +450937,7 @@ }, { "question": "Bassett Furniture", - "icon": "./assets/data/nsi/logos/bassettfurniture-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bassettfurniture-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450593,7 +450953,7 @@ }, { "question": "Beares", - "icon": "./assets/data/nsi/logos/beares-084a8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beares-084a8f.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450609,7 +450969,7 @@ }, { "question": "Bellona", - "icon": "./assets/data/nsi/logos/bellona-a88d0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellona-a88d0c.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450625,7 +450985,7 @@ }, { "question": "bene", - "icon": "./assets/data/nsi/logos/bene-12c613.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bene-12c613.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450641,7 +451001,7 @@ }, { "question": "Big Save Furniture", - "icon": "./assets/data/nsi/logos/bigsavefurniture-ac16b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bigsavefurniture-ac16b9.png", "osmTags": { "and": [ "shop=furniture", @@ -450657,7 +451017,7 @@ }, { "question": "Black Red White", - "icon": "./assets/data/nsi/logos/blackredwhite-12c613.png", + "icon": "https://data.mapcomplete.org/nsi//logos/blackredwhite-12c613.png", "osmTags": { "and": [ "shop=furniture", @@ -450673,7 +451033,7 @@ }, { "question": "Bob's Discount Furniture", - "icon": "./assets/data/nsi/logos/bobsdiscountfurniture-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobsdiscountfurniture-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450689,7 +451049,7 @@ }, { "question": "BoConcept", - "icon": "./assets/data/nsi/logos/boconcept-12c613.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boconcept-12c613.png", "osmTags": { "and": [ "shop=furniture", @@ -450705,7 +451065,7 @@ }, { "question": "Bodzio", - "icon": "./assets/data/nsi/logos/bodzio-ad60fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodzio-ad60fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450721,7 +451081,7 @@ }, { "question": "Bohus", - "icon": "./assets/data/nsi/logos/bohus-dccdff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bohus-dccdff.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450737,7 +451097,7 @@ }, { "question": "Bolia", - "icon": "./assets/data/nsi/logos/bolia-a18722.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bolia-a18722.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450753,7 +451113,7 @@ }, { "question": "Bradlows", - "icon": "./assets/data/nsi/logos/bradlows-4d9761.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bradlows-4d9761.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450769,7 +451129,7 @@ }, { "question": "Braun Möbel Center", - "icon": "./assets/data/nsi/logos/braunmobelcenter-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/braunmobelcenter-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450785,7 +451145,7 @@ }, { "question": "British Heart Foundation Home Store", - "icon": "./assets/data/nsi/logos/britishheartfoundationhomestore-5a41a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/britishheartfoundationhomestore-5a41a5.png", "osmTags": { "and": [ "charity=yes", @@ -450803,7 +451163,7 @@ }, { "question": "But", - "icon": "./assets/data/nsi/logos/but-18f673.png", + "icon": "https://data.mapcomplete.org/nsi//logos/but-18f673.png", "osmTags": { "and": [ "shop=furniture", @@ -450819,7 +451179,7 @@ }, { "question": "Cabinets To Go", - "icon": "./assets/data/nsi/logos/cabinetstogo-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cabinetstogo-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450835,7 +451195,7 @@ }, { "question": "California Closets", - "icon": "./assets/data/nsi/logos/californiaclosets-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiaclosets-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450851,7 +451211,7 @@ }, { "question": "Chateau d'Ax", - "icon": "./assets/data/nsi/logos/chateaudax-c96b56.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chateaudax-c96b56.png", "osmTags": { "and": [ "shop=furniture", @@ -450867,7 +451227,7 @@ }, { "question": "Conforama", - "icon": "./assets/data/nsi/logos/conforama-6fff46.png", + "icon": "https://data.mapcomplete.org/nsi//logos/conforama-6fff46.png", "osmTags": { "and": [ "shop=furniture", @@ -450883,7 +451243,7 @@ }, { "question": "Coricraft", - "icon": "./assets/data/nsi/logos/coricraft-0ebee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coricraft-0ebee2.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450899,7 +451259,7 @@ }, { "question": "Cort Furniture Outlet", - "icon": "./assets/data/nsi/logos/cortfurnitureoutlet-a5c7fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cortfurnitureoutlet-a5c7fa.png", "osmTags": { "and": [ "shop=furniture", @@ -450915,7 +451275,7 @@ }, { "question": "Cort Furniture Rental", - "icon": "./assets/data/nsi/logos/cortfurniturerental-a5c7fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cortfurniturerental-a5c7fa.png", "osmTags": { "and": [ "shop=furniture", @@ -450931,7 +451291,7 @@ }, { "question": "Courts (Malaysia)", - "icon": "./assets/data/nsi/logos/courts-0c6e04.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/courts-0c6e04.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450947,7 +451307,7 @@ }, { "question": "Courts (Singapore)", - "icon": "./assets/data/nsi/logos/courts-cfdd43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/courts-cfdd43.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450963,7 +451323,7 @@ }, { "question": "Crate & Barrel", - "icon": "./assets/data/nsi/logos/crateandbarrel-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crateandbarrel-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450979,7 +451339,7 @@ }, { "question": "Danske Møbler", - "icon": "./assets/data/nsi/logos/danskemobler-ac16b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/danskemobler-ac16b9.jpg", "osmTags": { "and": [ "shop=furniture", @@ -450995,7 +451355,7 @@ }, { "question": "Decodom", - "icon": "./assets/data/nsi/logos/decodom-d1803c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/decodom-d1803c.png", "osmTags": { "and": [ "shop=furniture", @@ -451011,7 +451371,7 @@ }, { "question": "Design Within Reach", - "icon": "./assets/data/nsi/logos/designwithinreach-d2381d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/designwithinreach-d2381d.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451027,7 +451387,7 @@ }, { "question": "Designer Sofas", - "icon": "./assets/data/nsi/logos/designersofas-94fffd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/designersofas-94fffd.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451043,7 +451403,7 @@ }, { "question": "DFS", - "icon": "./assets/data/nsi/logos/dfs-94fffd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dfs-94fffd.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451073,7 +451433,7 @@ }, { "question": "Domayne", - "icon": "./assets/data/nsi/logos/domayne-0da980.png", + "icon": "https://data.mapcomplete.org/nsi//logos/domayne-0da980.png", "osmTags": { "and": [ "shop=furniture", @@ -451089,7 +451449,7 @@ }, { "question": "Early Settler", - "icon": "./assets/data/nsi/logos/earlysettler-42aa1b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/earlysettler-42aa1b.png", "osmTags": { "and": [ "shop=furniture", @@ -451105,7 +451465,7 @@ }, { "question": "easyhome", - "icon": "./assets/data/nsi/logos/easyhome-a33c55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easyhome-a33c55.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451121,7 +451481,7 @@ }, { "question": "Ethan Allen", - "icon": "./assets/data/nsi/logos/ethanallen-a694b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ethanallen-a694b9.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451152,7 +451512,7 @@ }, { "question": "EZ Living Furniture", - "icon": "./assets/data/nsi/logos/ezlivingfurniture-53f64f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ezlivingfurniture-53f64f.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451168,7 +451528,7 @@ }, { "question": "Fagmøbler", - "icon": "./assets/data/nsi/logos/fagmobler-c1bd40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fagmobler-c1bd40.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451183,7 +451543,7 @@ }, { "question": "Fantastic Furniture", - "icon": "./assets/data/nsi/logos/fantasticfurniture-0da980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fantasticfurniture-0da980.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451214,7 +451574,7 @@ }, { "question": "Fly", - "icon": "./assets/data/nsi/logos/fly-18f673.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fly-18f673.svg", "osmTags": { "and": [ "shop=furniture", @@ -451230,7 +451590,7 @@ }, { "question": "Forma ideale", - "icon": "./assets/data/nsi/logos/formaideale-7d4b0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/formaideale-7d4b0a.png", "osmTags": { "and": [ "shop=furniture", @@ -451250,7 +451610,7 @@ }, { "question": "Fortunoff Backyard Store", - "icon": "./assets/data/nsi/logos/fortunoffbackyardstore-a5c7fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortunoffbackyardstore-a5c7fa.png", "osmTags": { "and": [ "furniture=outdoor", @@ -451267,7 +451627,7 @@ }, { "question": "Freedom", - "icon": "./assets/data/nsi/logos/freedom-0da980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freedom-0da980.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451283,7 +451643,7 @@ }, { "question": "Furniture Village", - "icon": "./assets/data/nsi/logos/furniturevillage-5a41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/furniturevillage-5a41a5.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451314,7 +451674,7 @@ }, { "question": "Gautier", - "icon": "./assets/data/nsi/logos/gautier-12c613.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gautier-12c613.png", "osmTags": { "and": [ "shop=furniture", @@ -451330,7 +451690,7 @@ }, { "question": "Goossens", - "icon": "./assets/data/nsi/logos/goossens-2b79f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goossens-2b79f5.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451346,7 +451706,7 @@ }, { "question": "Habitat (France)", - "icon": "./assets/data/nsi/logos/habitat-18f673.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/habitat-18f673.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451362,7 +451722,7 @@ }, { "question": "Habitat (non-UK)", - "icon": "./assets/data/nsi/logos/habitat-4d9d78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/habitat-4d9d78.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451378,7 +451738,7 @@ }, { "question": "Hardeck", - "icon": "./assets/data/nsi/logos/hardeck-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hardeck-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451409,7 +451769,7 @@ }, { "question": "Havertys", - "icon": "./assets/data/nsi/logos/havertys-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/havertys-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451425,7 +451785,7 @@ }, { "question": "Herman Miller", - "icon": "./assets/data/nsi/logos/hermanmiller-12c613.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hermanmiller-12c613.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451441,7 +451801,7 @@ }, { "question": "Höffner", - "icon": "./assets/data/nsi/logos/hoffner-29dff1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoffner-29dff1.svg", "osmTags": { "and": [ "shop=furniture", @@ -451457,7 +451817,7 @@ }, { "question": "home24", - "icon": "./assets/data/nsi/logos/home24-29dff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/home24-29dff1.png", "osmTags": { "and": [ "shop=furniture", @@ -451473,7 +451833,7 @@ }, { "question": "House & Home", - "icon": "./assets/data/nsi/logos/houseandhome-0ebee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houseandhome-0ebee2.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451489,16 +451849,16 @@ }, { "question": "HSL", - "icon": "./assets/data/nsi/logos/hsl-5a41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsl-5a41a5.jpg", "osmTags": { "and": [ - "official_name=High Seat Limited", "shop=furniture", { "or": [ "brand=HSL", "brand:wikidata=Q64284324", - "name=HSL" + "name=HSL", + "official_name=High Seat Limited" ] } ] @@ -451506,7 +451866,7 @@ }, { "question": "IKEA", - "icon": "./assets/data/nsi/logos/ikea-d24a4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-d24a4f.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451522,7 +451882,7 @@ }, { "question": "IKEA (Scandinavia)", - "icon": "./assets/data/nsi/logos/ikea-3c70a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-3c70a1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451538,7 +451898,7 @@ }, { "question": "IKEA Planning Studio", - "icon": "./assets/data/nsi/logos/ikeaplanningstudio-1705b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikeaplanningstudio-1705b1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451558,7 +451918,7 @@ }, { "question": "Isku", - "icon": "./assets/data/nsi/logos/isku-32ceba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isku-32ceba.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451574,7 +451934,7 @@ }, { "question": "İstikbal", - "icon": "./assets/data/nsi/logos/istikbal-a88d0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istikbal-a88d0c.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451590,7 +451950,7 @@ }, { "question": "Jerome's Furniture", - "icon": "./assets/data/nsi/logos/jeromesfurniture-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeromesfurniture-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451607,7 +451967,7 @@ }, { "question": "JYSK", - "icon": "./assets/data/nsi/logos/jysk-101bbf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jysk-101bbf.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451623,7 +451983,7 @@ }, { "question": "Jysk (Norge)", - "icon": "./assets/data/nsi/logos/jysk-c1bd40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jysk-c1bd40.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451639,7 +451999,7 @@ }, { "question": "Kartell", - "icon": "./assets/data/nsi/logos/kartell-12c613.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kartell-12c613.png", "osmTags": { "and": [ "shop=furniture", @@ -451655,7 +452015,7 @@ }, { "question": "Kelebek", - "icon": "./assets/data/nsi/logos/kelebek-a88d0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kelebek-a88d0c.png", "osmTags": { "and": [ "shop=furniture", @@ -451671,7 +452031,7 @@ }, { "question": "Kika", - "icon": "./assets/data/nsi/logos/kika-153ef8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kika-153ef8.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451687,7 +452047,7 @@ }, { "question": "Kitea", - "icon": "./assets/data/nsi/logos/kitea-bfeed0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitea-bfeed0.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451707,7 +452067,7 @@ }, { "question": "Kwantum", - "icon": "./assets/data/nsi/logos/kwantum-2b79f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kwantum-2b79f5.png", "osmTags": { "and": [ "shop=furniture", @@ -451723,7 +452083,7 @@ }, { "question": "La-Z-Boy", - "icon": "./assets/data/nsi/logos/lazboy-637554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lazboy-637554.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451754,7 +452114,7 @@ }, { "question": "Laura Ashley Home", - "icon": "./assets/data/nsi/logos/lauraashleyhome-5a41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lauraashleyhome-5a41a5.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451784,7 +452144,7 @@ }, { "question": "Leen Bakker", - "icon": "./assets/data/nsi/logos/leenbakker-e8ade6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leenbakker-e8ade6.png", "osmTags": { "and": [ "shop=furniture", @@ -451800,7 +452160,7 @@ }, { "question": "Leiner", - "icon": "./assets/data/nsi/logos/leiner-153ef8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leiner-153ef8.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451816,7 +452176,7 @@ }, { "question": "Leon's", - "icon": "./assets/data/nsi/logos/leons-8eabee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leons-8eabee.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451832,7 +452192,7 @@ }, { "question": "Lewis", - "icon": "./assets/data/nsi/logos/lewis-084a8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lewis-084a8f.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451848,7 +452208,7 @@ }, { "question": "Ligne Roset", - "icon": "./assets/data/nsi/logos/ligneroset-12c613.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ligneroset-12c613.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451865,7 +452225,7 @@ }, { "question": "Livique", - "icon": "./assets/data/nsi/logos/livique-be426f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/livique-be426f.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451895,7 +452255,7 @@ }, { "question": "LoveSac", - "icon": "./assets/data/nsi/logos/lovesac-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lovesac-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451911,7 +452271,7 @@ }, { "question": "MadeiraMadeira", - "icon": "./assets/data/nsi/logos/madeiramadeira-dc6cdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madeiramadeira-dc6cdf.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451927,7 +452287,7 @@ }, { "question": "Maisons du Monde", - "icon": "./assets/data/nsi/logos/maisonsdumonde-41c8c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maisonsdumonde-41c8c3.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451957,7 +452317,7 @@ }, { "question": "Meubles Léon", - "icon": "./assets/data/nsi/logos/meublesleon-20962f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meublesleon-20962f.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451973,7 +452333,7 @@ }, { "question": "Mio", - "icon": "./assets/data/nsi/logos/mio-7805c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mio-7805c0.jpg", "osmTags": { "and": [ "shop=furniture", @@ -451989,7 +452349,7 @@ }, { "question": "Möbel Boss", - "icon": "./assets/data/nsi/logos/mobelboss-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobelboss-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452005,7 +452365,7 @@ }, { "question": "Möbel Kraft", - "icon": "./assets/data/nsi/logos/mobelkraft-29dff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mobelkraft-29dff1.png", "osmTags": { "and": [ "shop=furniture", @@ -452021,7 +452381,7 @@ }, { "question": "Möbel Martin", - "icon": "./assets/data/nsi/logos/mobelmartin-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobelmartin-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452037,7 +452397,7 @@ }, { "question": "Möbelix", - "icon": "./assets/data/nsi/logos/mobelix-0d6d80.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobelix-0d6d80.svg", "osmTags": { "and": [ "shop=furniture", @@ -452053,7 +452413,7 @@ }, { "question": "Møbelringen", - "icon": "./assets/data/nsi/logos/mobelringen-c1bd40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobelringen-c1bd40.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452068,7 +452428,7 @@ }, { "question": "Mobexpert", - "icon": "./assets/data/nsi/logos/mobexpert-e892fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mobexpert-e892fd.png", "osmTags": { "and": [ "shop=furniture", @@ -452084,7 +452444,7 @@ }, { "question": "Mömax", - "icon": "./assets/data/nsi/logos/momax-a18722.png", + "icon": "https://data.mapcomplete.org/nsi//logos/momax-a18722.png", "osmTags": { "and": [ "shop=furniture", @@ -452100,7 +452460,7 @@ }, { "question": "Mondi", - "icon": "./assets/data/nsi/logos/mondi-a88d0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mondi-a88d0c.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452116,7 +452476,7 @@ }, { "question": "Mondo Convenienza", - "icon": "./assets/data/nsi/logos/mondoconvenienza-615888.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mondoconvenienza-615888.png", "osmTags": { "and": [ "shop=furniture", @@ -452132,7 +452492,7 @@ }, { "question": "Monsieur Meuble", - "icon": "./assets/data/nsi/logos/monsieurmeuble-419760.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monsieurmeuble-419760.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452148,16 +452508,16 @@ }, { "question": "Mor", - "icon": "./assets/data/nsi/logos/morfurniture-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morfurniture-a5c7fa.jpg", "osmTags": { "and": [ - "official_name=Mor Furniture for Less", "shop=furniture", { "or": [ "brand=Mor", "brand:wikidata=Q6908863", - "name=Mor Furniture" + "name=Mor Furniture", + "official_name=Mor Furniture for Less" ] } ] @@ -452165,7 +452525,7 @@ }, { "question": "Muebles Dico", - "icon": "./assets/data/nsi/logos/mueblesdico-278803.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mueblesdico-278803.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452181,7 +452541,7 @@ }, { "question": "Multipolster", - "icon": "./assets/data/nsi/logos/multipolster-29dff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/multipolster-29dff1.png", "osmTags": { "and": [ "shop=furniture", @@ -452197,7 +452557,7 @@ }, { "question": "Musterring", - "icon": "./assets/data/nsi/logos/musterring-12c613.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/musterring-12c613.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452213,7 +452573,7 @@ }, { "question": "Natuzzi", - "icon": "./assets/data/nsi/logos/natuzzi-cc79da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/natuzzi-cc79da.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452229,7 +452589,7 @@ }, { "question": "NCF Living", - "icon": "./assets/data/nsi/logos/ncfliving-5a41a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ncfliving-5a41a5.png", "osmTags": { "and": [ "shop=furniture", @@ -452245,7 +452605,7 @@ }, { "question": "Next Home", - "icon": "./assets/data/nsi/logos/nexthome-5a41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nexthome-5a41a5.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452261,7 +452621,7 @@ }, { "question": "Nick Scali", - "icon": "./assets/data/nsi/logos/nickscali-0da980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nickscali-0da980.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452277,7 +452637,7 @@ }, { "question": "Nitori", - "icon": "./assets/data/nsi/logos/nitori-a040a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nitori-a040a8.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452297,7 +452657,7 @@ }, { "question": "Oak Furnitureland", - "icon": "./assets/data/nsi/logos/oakfurnitureland-5a41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oakfurnitureland-5a41a5.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452313,7 +452673,7 @@ }, { "question": "Ofiprix", - "icon": "./assets/data/nsi/logos/ofiprix-53177d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ofiprix-53177d.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452329,7 +452689,7 @@ }, { "question": "OK Furniture", - "icon": "./assets/data/nsi/logos/okfurniture-e98456.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okfurniture-e98456.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452345,7 +452705,7 @@ }, { "question": "Ostermann", - "icon": "./assets/data/nsi/logos/ostermann-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ostermann-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452361,7 +452721,7 @@ }, { "question": "OZ Design Furniture", - "icon": "./assets/data/nsi/logos/ozdesignfurniture-0da980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ozdesignfurniture-0da980.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452377,7 +452737,7 @@ }, { "question": "PBteen", - "icon": "./assets/data/nsi/logos/pbteen-736374.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pbteen-736374.png", "osmTags": { "and": [ "shop=furniture", @@ -452393,7 +452753,7 @@ }, { "question": "Pfister", - "icon": "./assets/data/nsi/logos/pfister-be426f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pfister-be426f.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452409,7 +452769,7 @@ }, { "question": "Plush", - "icon": "./assets/data/nsi/logos/plush-0da980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plush-0da980.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452425,7 +452785,7 @@ }, { "question": "POCO", - "icon": "./assets/data/nsi/logos/poco-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poco-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452441,7 +452801,7 @@ }, { "question": "Poltrona Frau", - "icon": "./assets/data/nsi/logos/poltronafrau-12c613.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poltronafrau-12c613.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452457,7 +452817,7 @@ }, { "question": "Poltronesofà", - "icon": "./assets/data/nsi/logos/poltronesofa-488b55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poltronesofa-488b55.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452473,7 +452833,7 @@ }, { "question": "porta", - "icon": "./assets/data/nsi/logos/porta-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porta-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452489,7 +452849,7 @@ }, { "question": "Pottery Barn", - "icon": "./assets/data/nsi/logos/potterybarn-12c613.png", + "icon": "https://data.mapcomplete.org/nsi//logos/potterybarn-12c613.png", "osmTags": { "and": [ "shop=furniture", @@ -452505,7 +452865,7 @@ }, { "question": "Pottery Barn Kids", - "icon": "./assets/data/nsi/logos/potterybarnkids-12c613.png", + "icon": "https://data.mapcomplete.org/nsi//logos/potterybarnkids-12c613.png", "osmTags": { "and": [ "shop=furniture", @@ -452521,7 +452881,7 @@ }, { "question": "Pronto Wonen", - "icon": "./assets/data/nsi/logos/prontowonen-e8ade6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prontowonen-e8ade6.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452537,7 +452897,7 @@ }, { "question": "Provincial Home Living", - "icon": "./assets/data/nsi/logos/provincialhomeliving-0da980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provincialhomeliving-0da980.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452553,7 +452913,7 @@ }, { "question": "Raymour & Flanigan", - "icon": "./assets/data/nsi/logos/raymourandflanigan-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raymourandflanigan-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452569,7 +452929,7 @@ }, { "question": "Rent-A-Center", - "icon": "./assets/data/nsi/logos/rentacenter-d2381d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rentacenter-d2381d.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452585,7 +452945,7 @@ }, { "question": "Restoration Hardware", - "icon": "./assets/data/nsi/logos/restorationhardware-a694b9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/restorationhardware-a694b9.svg", "osmTags": { "and": [ "shop=furniture", @@ -452601,7 +452961,7 @@ }, { "question": "Roche Bobois", - "icon": "./assets/data/nsi/logos/rochebobois-12c613.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochebobois-12c613.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452617,7 +452977,7 @@ }, { "question": "Rochester", - "icon": "./assets/data/nsi/logos/rochester-4d9761.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochester-4d9761.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452633,7 +452993,7 @@ }, { "question": "Rolf Benz", - "icon": "./assets/data/nsi/logos/rolfbenz-375bca.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rolfbenz-375bca.svg", "osmTags": { "and": [ "shop=furniture", @@ -452649,7 +453009,7 @@ }, { "question": "Roller", - "icon": "./assets/data/nsi/logos/roller-375bca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roller-375bca.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452665,7 +453025,7 @@ }, { "question": "Rooms To Go", - "icon": "./assets/data/nsi/logos/roomstogo-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roomstogo-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452681,7 +453041,7 @@ }, { "question": "Rooms To Go Kids", - "icon": "./assets/data/nsi/logos/roomstogokids-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roomstogokids-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452697,7 +453057,7 @@ }, { "question": "Russells", - "icon": "./assets/data/nsi/logos/russells-4d9761.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/russells-4d9761.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452713,7 +453073,7 @@ }, { "question": "Rutar", - "icon": "./assets/data/nsi/logos/rutar-153ef8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rutar-153ef8.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452729,7 +453089,7 @@ }, { "question": "Schaffrath", - "icon": "./assets/data/nsi/logos/schaffrath-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schaffrath-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452745,7 +453105,7 @@ }, { "question": "Sconto Möbel Sofort", - "icon": "./assets/data/nsi/logos/scontomobelsofort-7ce246.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scontomobelsofort-7ce246.png", "osmTags": { "and": [ "shop=furniture", @@ -452765,7 +453125,7 @@ }, { "question": "ScS", - "icon": "./assets/data/nsi/logos/scs-5a41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scs-5a41a5.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452781,7 +453141,7 @@ }, { "question": "Seats and Sofas", - "icon": "./assets/data/nsi/logos/seatsandsofas-29dff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seatsandsofas-29dff1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452797,7 +453157,7 @@ }, { "question": "Segmüller", - "icon": "./assets/data/nsi/logos/segmuller-29dff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/segmuller-29dff1.png", "osmTags": { "and": [ "shop=furniture", @@ -452813,7 +453173,7 @@ }, { "question": "Sharps", - "icon": "./assets/data/nsi/logos/sharps-5a41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sharps-5a41a5.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452829,7 +453189,7 @@ }, { "question": "Siko", - "icon": "./assets/data/nsi/logos/siko-2a1637.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siko-2a1637.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452845,7 +453205,7 @@ }, { "question": "Simpo", - "icon": "./assets/data/nsi/logos/simpo-4067f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/simpo-4067f4.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452861,7 +453221,7 @@ }, { "question": "Skeidar", - "icon": "./assets/data/nsi/logos/skeidar-c1bd40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skeidar-c1bd40.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452876,7 +453236,7 @@ }, { "question": "Sofology", - "icon": "./assets/data/nsi/logos/sofology-5a41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sofology-5a41a5.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452892,7 +453252,7 @@ }, { "question": "Sotka", - "icon": "./assets/data/nsi/logos/sotka-32ceba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sotka-32ceba.png", "osmTags": { "and": [ "shop=furniture", @@ -452908,7 +453268,7 @@ }, { "question": "Structube", - "icon": "./assets/data/nsi/logos/structube-a33c55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/structube-a33c55.png", "osmTags": { "and": [ "shop=furniture", @@ -452924,7 +453284,7 @@ }, { "question": "The Brick", - "icon": "./assets/data/nsi/logos/thebrick-a33c55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebrick-a33c55.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452940,7 +453300,7 @@ }, { "question": "Tok&Stok", - "icon": "./assets/data/nsi/logos/tokandstok-dc6cdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokandstok-dc6cdf.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452956,7 +453316,7 @@ }, { "question": "Tok&Stok Compact", - "icon": "./assets/data/nsi/logos/tokandstokcompact-dc6cdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokandstokcompact-dc6cdf.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452972,7 +453332,7 @@ }, { "question": "Tok&Stok Studio", - "icon": "./assets/data/nsi/logos/tokandstokstudio-dc6cdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokandstokstudio-dc6cdf.jpg", "osmTags": { "and": [ "shop=furniture", @@ -452988,7 +453348,7 @@ }, { "question": "Urban Barn", - "icon": "./assets/data/nsi/logos/urbanbarn-a33c55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/urbanbarn-a33c55.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453004,7 +453364,7 @@ }, { "question": "Value City Furniture", - "icon": "./assets/data/nsi/logos/valuecityfurniture-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valuecityfurniture-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453020,7 +453380,7 @@ }, { "question": "Vellea Home (România)", - "icon": "./assets/data/nsi/logos/velleahome-e892fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velleahome-e892fd.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453036,7 +453396,7 @@ }, { "question": "Vellea Home (Ελλάδα)", - "icon": "./assets/data/nsi/logos/velleahome-895b21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velleahome-895b21.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453052,7 +453412,7 @@ }, { "question": "west elm", - "icon": "./assets/data/nsi/logos/westelm-12c613.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westelm-12c613.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453068,7 +453428,7 @@ }, { "question": "Weylandts", - "icon": "./assets/data/nsi/logos/weylandts-4d9761.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weylandts-4d9761.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453084,7 +453444,7 @@ }, { "question": "XXXLutz", - "icon": "./assets/data/nsi/logos/xxxlutz-5acc6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xxxlutz-5acc6e.png", "osmTags": { "and": [ "shop=furniture", @@ -453100,7 +453460,7 @@ }, { "question": "Z Gallerie", - "icon": "./assets/data/nsi/logos/zgallerie-a5c7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zgallerie-a5c7fa.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453116,7 +453476,7 @@ }, { "question": "zurbrüggen", - "icon": "./assets/data/nsi/logos/zurbruggen-29dff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zurbruggen-29dff1.png", "osmTags": { "and": [ "shop=furniture", @@ -453132,7 +453492,7 @@ }, { "question": "Велеа Хоум", - "icon": "./assets/data/nsi/logos/velleahome-f5a340.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velleahome-f5a340.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453178,7 +453538,7 @@ }, { "question": "Мебели Виденов", - "icon": "./assets/data/nsi/logos/videnovfurniture-685932.png", + "icon": "https://data.mapcomplete.org/nsi//logos/videnovfurniture-685932.png", "osmTags": { "and": [ "shop=furniture", @@ -453224,7 +453584,7 @@ }, { "question": "Много мебели", - "icon": "./assets/data/nsi/logos/c3b771-e999c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/c3b771-e999c2.png", "osmTags": { "and": [ "shop=furniture", @@ -453268,7 +453628,7 @@ }, { "question": "Стіл та Стілець", - "icon": "./assets/data/nsi/logos/47b09f-9d72c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/47b09f-9d72c8.png", "osmTags": { "and": [ "shop=furniture", @@ -453359,7 +453719,7 @@ }, { "question": "იუსკ", - "icon": "./assets/data/nsi/logos/jysk-2470a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jysk-2470a3.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453378,7 +453738,7 @@ }, { "question": "イケア", - "icon": "./assets/data/nsi/logos/ikea-3c9dc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-3c9dc7.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453398,7 +453758,7 @@ }, { "question": "ニトリ", - "icon": "./assets/data/nsi/logos/nitori-3c9dc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nitori-3c9dc7.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453418,7 +453778,7 @@ }, { "question": "フランフラン", - "icon": "./assets/data/nsi/logos/francfranc-3c9dc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/francfranc-3c9dc7.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453438,7 +453798,7 @@ }, { "question": "宜家家居", - "icon": "./assets/data/nsi/logos/ikea-415aeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-415aeb.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453458,7 +453818,7 @@ }, { "question": "宜家家居 IKEA", - "icon": "./assets/data/nsi/logos/ikea-2365c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-2365c1.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453478,7 +453838,7 @@ }, { "question": "宜得利家居", - "icon": "./assets/data/nsi/logos/nitori-8e7878.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nitori-8e7878.jpg", "osmTags": { "and": [ "shop=furniture", @@ -453498,7 +453858,7 @@ }, { "question": "Ozone.bg", - "icon": "./assets/data/nsi/logos/ozonebg-2df90d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ozonebg-2df90d.jpg", "osmTags": { "and": [ "shop=games", @@ -453516,7 +453876,7 @@ }, { "question": "Warhammer", - "icon": "./assets/data/nsi/logos/warhammer-f1fbcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warhammer-f1fbcb.jpg", "osmTags": { "and": [ "shop=games", @@ -453532,7 +453892,7 @@ }, { "question": "Zing Pop Culture", - "icon": "./assets/data/nsi/logos/zingpopculture-61e573.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zingpopculture-61e573.jpg", "osmTags": { "and": [ "shop=games", @@ -453548,7 +453908,7 @@ }, { "question": "კურაკურა", - "icon": "./assets/data/nsi/logos/kurakura-00ca27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kurakura-00ca27.jpg", "osmTags": { "and": [ "shop=games", @@ -453568,7 +453928,7 @@ }, { "question": "Aveve", - "icon": "./assets/data/nsi/logos/aveve-4760e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aveve-4760e0.png", "osmTags": { "and": [ "shop=garden_centre", @@ -453584,7 +453944,7 @@ }, { "question": "Bellaflora", - "icon": "./assets/data/nsi/logos/bellaflora-fd70bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellaflora-fd70bd.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453600,7 +453960,7 @@ }, { "question": "Blomsterlandet", - "icon": "./assets/data/nsi/logos/blomsterlandet-8e04ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/blomsterlandet-8e04ed.png", "osmTags": { "and": [ "shop=garden_centre", @@ -453616,7 +453976,7 @@ }, { "question": "Blue Diamond Garden Centres", - "icon": "./assets/data/nsi/logos/bluediamondgardencentres-02ecdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluediamondgardencentres-02ecdf.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453631,7 +453991,7 @@ }, { "question": "Botanic", - "icon": "./assets/data/nsi/logos/botanic-afed88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/botanic-afed88.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453647,7 +454007,7 @@ }, { "question": "Côté Nature", - "icon": "./assets/data/nsi/logos/cotenature-afed88.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cotenature-afed88.png", "osmTags": { "and": [ "shop=garden_centre", @@ -453663,7 +454023,7 @@ }, { "question": "Dehner", - "icon": "./assets/data/nsi/logos/dehner-ca7541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dehner-ca7541.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453679,7 +454039,7 @@ }, { "question": "Dobbies", - "icon": "./assets/data/nsi/logos/dobbies-d259e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dobbies-d259e3.png", "osmTags": { "and": [ "shop=garden_centre", @@ -453695,7 +454055,7 @@ }, { "question": "E.Leclerc Jardi", - "icon": "./assets/data/nsi/logos/eleclercjardi-20cffa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclercjardi-20cffa.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453711,7 +454071,7 @@ }, { "question": "Gamm Vert", - "icon": "./assets/data/nsi/logos/gammvert-20cffa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gammvert-20cffa.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453727,7 +454087,7 @@ }, { "question": "GroenRijk", - "icon": "./assets/data/nsi/logos/groenrijk-dc6242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groenrijk-dc6242.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453752,7 +454112,7 @@ }, { "question": "Intratuin", - "icon": "./assets/data/nsi/logos/intratuin-c9b478.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intratuin-c9b478.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453768,7 +454128,7 @@ }, { "question": "Jardiland", - "icon": "./assets/data/nsi/logos/jardiland-20cffa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jardiland-20cffa.png", "osmTags": { "and": [ "shop=garden_centre", @@ -453784,7 +454144,7 @@ }, { "question": "Magasin Vert", - "icon": "./assets/data/nsi/logos/magasinvert-afed88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magasinvert-afed88.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453800,7 +454160,7 @@ }, { "question": "Mountfield", - "icon": "./assets/data/nsi/logos/mountfield-570714.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mountfield-570714.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453816,7 +454176,7 @@ }, { "question": "Otter Garden Centres", - "icon": "./assets/data/nsi/logos/ottergardencentres-d259e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottergardencentres-d259e3.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453831,7 +454191,7 @@ }, { "question": "Palmers", - "icon": "./assets/data/nsi/logos/palmers-aac937.png", + "icon": "https://data.mapcomplete.org/nsi//logos/palmers-aac937.png", "osmTags": { "and": [ "shop=garden_centre", @@ -453847,7 +454207,7 @@ }, { "question": "Plantagen", - "icon": "./assets/data/nsi/logos/plantagen-8e04ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plantagen-8e04ed.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453863,7 +454223,7 @@ }, { "question": "Plantasjen", - "icon": "./assets/data/nsi/logos/plantasjen-664184.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plantasjen-664184.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453878,7 +454238,7 @@ }, { "question": "Point Vert", - "icon": "./assets/data/nsi/logos/pointvert-20cffa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pointvert-20cffa.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453894,7 +454254,7 @@ }, { "question": "Truffaut", - "icon": "./assets/data/nsi/logos/truffaut-afed88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truffaut-afed88.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453910,7 +454270,7 @@ }, { "question": "Villaverde", - "icon": "./assets/data/nsi/logos/villaverde-afed88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villaverde-afed88.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453926,7 +454286,7 @@ }, { "question": "Walmart Garden Center", - "icon": "./assets/data/nsi/logos/walmartgardencenter-bffebc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartgardencenter-bffebc.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453942,7 +454302,7 @@ }, { "question": "Walmart Garden Centre", - "icon": "./assets/data/nsi/logos/walmartgardencentre-89cf3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartgardencentre-89cf3b.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -453958,7 +454318,7 @@ }, { "question": "Welkoop", - "icon": "./assets/data/nsi/logos/welkoop-dc6242.png", + "icon": "https://data.mapcomplete.org/nsi//logos/welkoop-dc6242.png", "osmTags": { "and": [ "shop=garden_centre", @@ -453974,7 +454334,7 @@ }, { "question": "ZG Raiffeisen Markt", - "icon": "./assets/data/nsi/logos/zgraiffeisenmarkt-89aa0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zgraiffeisenmarkt-89aa0a.jpg", "osmTags": { "and": [ "shop=garden_centre", @@ -454004,7 +454364,7 @@ }, { "question": "Air Liquide", - "icon": "./assets/data/nsi/logos/airliquide-65a0f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airliquide-65a0f8.jpg", "osmTags": { "and": [ "shop=gas", @@ -454020,7 +454380,7 @@ }, { "question": "Airgas", - "icon": "./assets/data/nsi/logos/airgas-666f52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airgas-666f52.jpg", "osmTags": { "and": [ "shop=gas", @@ -454036,7 +454396,7 @@ }, { "question": "AmeriGas", - "icon": "./assets/data/nsi/logos/amerigas-666f52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amerigas-666f52.jpg", "osmTags": { "and": [ "fuel:lpg=yes", @@ -454053,7 +454413,7 @@ }, { "question": "Aygaz", - "icon": "./assets/data/nsi/logos/aygaz-d3d4a5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aygaz-d3d4a5.svg", "osmTags": { "and": [ "shop=gas", @@ -454069,7 +454429,7 @@ }, { "question": "Ferrellgas", - "icon": "./assets/data/nsi/logos/ferrellgas-666f52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ferrellgas-666f52.jpg", "osmTags": { "and": [ "fuel:lpg=yes", @@ -454102,7 +454462,7 @@ }, { "question": "Messer", - "icon": "./assets/data/nsi/logos/messer-65a0f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/messer-65a0f8.jpg", "osmTags": { "and": [ "shop=gas", @@ -454118,7 +454478,7 @@ }, { "question": "Petron Gasul", - "icon": "./assets/data/nsi/logos/petrongasul-bb6447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrongasul-bb6447.jpg", "osmTags": { "and": [ "shop=gas", @@ -454134,7 +454494,7 @@ }, { "question": "Suburban Propane", - "icon": "./assets/data/nsi/logos/suburbanpropane-666f52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suburbanpropane-666f52.jpg", "osmTags": { "and": [ "shop=gas", @@ -454150,7 +454510,7 @@ }, { "question": "Ultragaz", - "icon": "./assets/data/nsi/logos/ultragaz-ee2f17.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ultragaz-ee2f17.png", "osmTags": { "and": [ "shop=gas", @@ -454166,7 +454526,7 @@ }, { "question": "Europris", - "icon": "./assets/data/nsi/logos/europris-fd026c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/europris-fd026c.jpg", "osmTags": { "and": [ "shop=general", @@ -454181,7 +454541,7 @@ }, { "question": "義美食品", - "icon": "./assets/data/nsi/logos/imeifoods-fd026c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/imeifoods-fd026c.png", "osmTags": { "and": [ "shop=general", @@ -454201,7 +454561,7 @@ }, { "question": "Albi", - "icon": "./assets/data/nsi/logos/albi-100c1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albi-100c1c.jpg", "osmTags": { "and": [ "shop=gift", @@ -454217,7 +454577,7 @@ }, { "question": "ALE-HOP", - "icon": "./assets/data/nsi/logos/alehop-83a8e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alehop-83a8e4.jpg", "osmTags": { "and": [ "shop=gift", @@ -454233,7 +454593,7 @@ }, { "question": "American Greetings", - "icon": "./assets/data/nsi/logos/americangreetings-43d507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americangreetings-43d507.jpg", "osmTags": { "and": [ "shop=gift", @@ -454249,7 +454609,7 @@ }, { "question": "Archies", - "icon": "./assets/data/nsi/logos/archies-66da3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/archies-66da3e.jpg", "osmTags": { "and": [ "shop=gift", @@ -454265,7 +454625,7 @@ }, { "question": "Attic Salt", - "icon": "./assets/data/nsi/logos/atticsalt-ae6503.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atticsalt-ae6503.jpg", "osmTags": { "and": [ "shop=gift", @@ -454281,7 +454641,7 @@ }, { "question": "BoxLunch", - "icon": "./assets/data/nsi/logos/boxlunch-43d507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boxlunch-43d507.jpg", "osmTags": { "and": [ "shop=gift", @@ -454297,7 +454657,7 @@ }, { "question": "Card Centre", - "icon": "./assets/data/nsi/logos/cardcentre-da52c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cardcentre-da52c2.png", "osmTags": { "and": [ "shop=gift", @@ -454313,7 +454673,7 @@ }, { "question": "Card Factory", - "icon": "./assets/data/nsi/logos/cardfactory-d8c200.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cardfactory-d8c200.png", "osmTags": { "and": [ "shop=gift", @@ -454329,7 +454689,7 @@ }, { "question": "Cards Direct", - "icon": "./assets/data/nsi/logos/cardsdirect-53f2de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cardsdirect-53f2de.jpg", "osmTags": { "and": [ "shop=gift", @@ -454345,7 +454705,7 @@ }, { "question": "Cardzone", - "icon": "./assets/data/nsi/logos/cardzone-da52c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cardzone-da52c2.jpg", "osmTags": { "and": [ "shop=gift", @@ -454361,7 +454721,7 @@ }, { "question": "Carlton Cards", - "icon": "./assets/data/nsi/logos/carltoncards-bc6b6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carltoncards-bc6b6c.png", "osmTags": { "and": [ "shop=gift", @@ -454377,7 +454737,7 @@ }, { "question": "Clintons", - "icon": "./assets/data/nsi/logos/clintons-da52c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clintons-da52c2.png", "osmTags": { "and": [ "shop=gift", @@ -454393,16 +454753,16 @@ }, { "question": "Cracker Barrel", - "icon": "./assets/data/nsi/logos/crackerbarrel-43d507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crackerbarrel-43d507.jpg", "osmTags": { "and": [ - "official_name=Cracker Barrel Old Country Store", "shop=gift", { "or": [ "brand=Cracker Barrel", "brand:wikidata=Q4492609", - "name=Cracker Barrel" + "name=Cracker Barrel", + "official_name=Cracker Barrel Old Country Store" ] } ] @@ -454410,7 +454770,7 @@ }, { "question": "Disney Store", - "icon": "./assets/data/nsi/logos/disneystore-81bf88.png", + "icon": "https://data.mapcomplete.org/nsi//logos/disneystore-81bf88.png", "osmTags": { "and": [ "shop=gift", @@ -454426,7 +454786,7 @@ }, { "question": "Edible Arrangements", - "icon": "./assets/data/nsi/logos/ediblearrangements-26efb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ediblearrangements-26efb0.jpg", "osmTags": { "and": [ "shop=gift", @@ -454442,7 +454802,7 @@ }, { "question": "Elbenwald", - "icon": "./assets/data/nsi/logos/elbenwald-ff9593.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elbenwald-ff9593.png", "osmTags": { "and": [ "shop=gift", @@ -454458,7 +454818,7 @@ }, { "question": "Fuego", - "icon": "./assets/data/nsi/logos/fuego-43d507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fuego-43d507.jpg", "osmTags": { "and": [ "shop=gift", @@ -454474,7 +454834,7 @@ }, { "question": "Hallmark", - "icon": "./assets/data/nsi/logos/hallmark-ca99d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hallmark-ca99d3.jpg", "osmTags": { "and": [ "shop=gift", @@ -454490,7 +454850,7 @@ }, { "question": "Harry & David", - "icon": "./assets/data/nsi/logos/harryanddavid-43d507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harryanddavid-43d507.jpg", "osmTags": { "and": [ "shop=gift", @@ -454506,7 +454866,7 @@ }, { "question": "Hickory Farms", - "icon": "./assets/data/nsi/logos/hickoryfarms-26efb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hickoryfarms-26efb0.jpg", "osmTags": { "and": [ "shop=gift", @@ -454522,7 +454882,7 @@ }, { "question": "imaginarium", - "icon": "./assets/data/nsi/logos/imaginarium-8b7f44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/imaginarium-8b7f44.png", "osmTags": { "and": [ "shop=gift", @@ -454538,7 +454898,7 @@ }, { "question": "Menkind", - "icon": "./assets/data/nsi/logos/menkind-da52c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/menkind-da52c2.jpg", "osmTags": { "and": [ "shop=gift", @@ -454554,7 +454914,7 @@ }, { "question": "Mooch", - "icon": "./assets/data/nsi/logos/mooch-da52c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mooch-da52c2.jpg", "osmTags": { "and": [ "shop=gift", @@ -454570,7 +454930,7 @@ }, { "question": "Nanu-Nana", - "icon": "./assets/data/nsi/logos/nanunana-ff9593.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nanunana-ff9593.png", "osmTags": { "and": [ "shop=gift", @@ -454586,7 +454946,7 @@ }, { "question": "Natura", - "icon": "./assets/data/nsi/logos/natura-8abdd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/natura-8abdd6.jpg", "osmTags": { "and": [ "shop=gift", @@ -454617,7 +454977,7 @@ }, { "question": "Paper Kisses", - "icon": "./assets/data/nsi/logos/paperkisses-da52c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paperkisses-da52c2.jpg", "osmTags": { "and": [ "shop=gift", @@ -454633,7 +454993,7 @@ }, { "question": "Scribbler", - "icon": "./assets/data/nsi/logos/scribbler-da52c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scribbler-da52c2.png", "osmTags": { "and": [ "shop=gift", @@ -454649,7 +455009,7 @@ }, { "question": "Showcase", - "icon": "./assets/data/nsi/logos/showcase-26efb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/showcase-26efb0.jpg", "osmTags": { "and": [ "shop=gift", @@ -454665,16 +455025,16 @@ }, { "question": "Spencer's", - "icon": "./assets/data/nsi/logos/spencers-26efb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spencers-26efb0.jpg", "osmTags": { "and": [ - "official_name=Spencer Gifts", "shop=gift", { "or": [ "brand=Spencer Gifts", "brand:wikidata=Q7576055", - "name=Spencer's" + "name=Spencer's", + "official_name=Spencer Gifts" ] } ] @@ -454682,7 +455042,7 @@ }, { "question": "The Paper Store", - "icon": "./assets/data/nsi/logos/thepaperstore-0b1107.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thepaperstore-0b1107.jpg", "osmTags": { "and": [ "shop=gift", @@ -454698,7 +455058,7 @@ }, { "question": "ThinkGeek", - "icon": "./assets/data/nsi/logos/thinkgeek-43d507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thinkgeek-43d507.jpg", "osmTags": { "and": [ "shop=gift", @@ -454714,7 +455074,7 @@ }, { "question": "Thun", - "icon": "./assets/data/nsi/logos/thun-f7c7e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thun-f7c7e8.jpg", "osmTags": { "and": [ "shop=gift", @@ -454744,7 +455104,7 @@ }, { "question": "Wyjątkowy prezent", - "icon": "./assets/data/nsi/logos/wyjatkowyprezent-278263.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wyjatkowyprezent-278263.png", "osmTags": { "and": [ "shop=gift", @@ -454760,7 +455120,7 @@ }, { "question": "パッケージプラザ", - "icon": "./assets/data/nsi/logos/packageplaza-bbf61c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/packageplaza-bbf61c.png", "osmTags": { "and": [ "shop=gift", @@ -454794,7 +455154,7 @@ }, { "question": "Goudwisselkantoor", - "icon": "./assets/data/nsi/logos/goudwisselkantoor-f36319.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goudwisselkantoor-f36319.jpg", "osmTags": { "and": [ "shop=gold_buyer", @@ -454810,7 +455170,7 @@ }, { "question": "Or en Cash", - "icon": "./assets/data/nsi/logos/orencash-357486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orencash-357486.jpg", "osmTags": { "and": [ "shop=gold_buyer", @@ -454826,7 +455186,7 @@ }, { "question": "Cerise et Potiron", - "icon": "./assets/data/nsi/logos/ceriseetpotiron-f7a29d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceriseetpotiron-f7a29d.jpg", "osmTags": { "and": [ "shop=greengrocer", @@ -454857,7 +455217,7 @@ }, { "question": "Ma Ferme en Ville", - "icon": "./assets/data/nsi/logos/mafermeenville-6e345d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mafermeenville-6e345d.png", "osmTags": { "and": [ "shop=greengrocer", @@ -454873,7 +455233,7 @@ }, { "question": "Mangeons Frais", - "icon": "./assets/data/nsi/logos/mangeonsfrais-6e345d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mangeonsfrais-6e345d.png", "osmTags": { "and": [ "shop=greengrocer", @@ -454889,7 +455249,7 @@ }, { "question": "MarketPlace Fresh", - "icon": "./assets/data/nsi/logos/marketplacefresh-edd24e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marketplacefresh-edd24e.png", "osmTags": { "and": [ "shop=greengrocer", @@ -454905,7 +455265,7 @@ }, { "question": "Produce Junction", - "icon": "./assets/data/nsi/logos/producejunction-c8a79f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/producejunction-c8a79f.jpg", "osmTags": { "and": [ "shop=greengrocer", @@ -454921,7 +455281,7 @@ }, { "question": "Superverd", - "icon": "./assets/data/nsi/logos/superverd-949784.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superverd-949784.jpg", "osmTags": { "and": [ "shop=greengrocer", @@ -455046,7 +455406,7 @@ }, { "question": "Amiri Salon", - "icon": "./assets/data/nsi/logos/amirisalon-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amirisalon-28f1a5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455062,7 +455422,7 @@ }, { "question": "Barbershop by Timpson", - "icon": "./assets/data/nsi/logos/barbershopbytimpson-afda3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barbershopbytimpson-afda3f.jpg", "osmTags": { "and": [ "hairdresser=barber", @@ -455080,7 +455440,7 @@ }, { "question": "Bench Fix", - "icon": "./assets/data/nsi/logos/benchfix-2b2fb2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/benchfix-2b2fb2.svg", "osmTags": { "and": [ "shop=hairdresser", @@ -455096,7 +455456,7 @@ }, { "question": "Blue Tit", - "icon": "./assets/data/nsi/logos/bluetit-23df39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluetit-23df39.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455112,7 +455472,7 @@ }, { "question": "BrainWash", - "icon": "./assets/data/nsi/logos/brainwash-7f2667.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brainwash-7f2667.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455128,7 +455488,7 @@ }, { "question": "Camille Albane", - "icon": "./assets/data/nsi/logos/camillealbane-40f1cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camillealbane-40f1cc.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455159,7 +455519,7 @@ }, { "question": "Chatters", - "icon": "./assets/data/nsi/logos/chatters-7e5a14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chatters-7e5a14.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455175,7 +455535,7 @@ }, { "question": "Coiff&Co", - "icon": "./assets/data/nsi/logos/coiffandco-232a64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coiffandco-232a64.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455191,7 +455551,7 @@ }, { "question": "Cost Cutters", - "icon": "./assets/data/nsi/logos/costcutters-28f1a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/costcutters-28f1a5.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455207,7 +455567,7 @@ }, { "question": "Cutters", - "icon": "./assets/data/nsi/logos/cutters-5effd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cutters-5effd8.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455223,7 +455583,7 @@ }, { "question": "Dessange", - "icon": "./assets/data/nsi/logos/dessange-252950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dessange-252950.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455239,7 +455599,7 @@ }, { "question": "Drybar", - "icon": "./assets/data/nsi/logos/drybar-46af32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drybar-46af32.jpg", "osmTags": { "and": [ "female=yes", @@ -455256,7 +455616,7 @@ }, { "question": "essanelle", - "icon": "./assets/data/nsi/logos/essanelle-b30c9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essanelle-b30c9d.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455314,16 +455674,16 @@ }, { "question": "Fantastic Sams", - "icon": "./assets/data/nsi/logos/fantasticsams-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fantasticsams-28f1a5.jpg", "osmTags": { "and": [ - "official_name=Fantastic Sams Cut & Color", "shop=hairdresser", { "or": [ "brand=Fantastic Sams", "brand:wikidata=Q5434222", - "name=Fantastic Sams" + "name=Fantastic Sams", + "official_name=Fantastic Sams Cut & Color" ] } ] @@ -455331,7 +455691,7 @@ }, { "question": "Ferber", - "icon": "./assets/data/nsi/logos/ferber-6ad147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ferber-6ad147.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455347,7 +455707,7 @@ }, { "question": "First Choice Haircutters", - "icon": "./assets/data/nsi/logos/firstchoicehaircutters-7e5a14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstchoicehaircutters-7e5a14.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455363,7 +455723,7 @@ }, { "question": "Floyd's 99 Barbershop", - "icon": "./assets/data/nsi/logos/floyds99barbershop-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/floyds99barbershop-28f1a5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455379,7 +455739,7 @@ }, { "question": "Franck Provost", - "icon": "./assets/data/nsi/logos/franckprovost-343148.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/franckprovost-343148.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455395,7 +455755,7 @@ }, { "question": "Frédéric Moreno", - "icon": "./assets/data/nsi/logos/fredericmoreno-426627.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fredericmoreno-426627.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455411,7 +455771,7 @@ }, { "question": "Gidor", - "icon": "./assets/data/nsi/logos/gidor-537977.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gidor-537977.svg", "osmTags": { "and": [ "shop=hairdresser", @@ -455427,7 +455787,7 @@ }, { "question": "Great Clips", - "icon": "./assets/data/nsi/logos/greatclips-46af32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatclips-46af32.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455443,7 +455803,7 @@ }, { "question": "Hair Cuttery", - "icon": "./assets/data/nsi/logos/haircuttery-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haircuttery-28f1a5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455459,7 +455819,7 @@ }, { "question": "Hair Express", - "icon": "./assets/data/nsi/logos/hairexpress-b30c9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hairexpress-b30c9d.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455475,7 +455835,7 @@ }, { "question": "Haircut Express", - "icon": "./assets/data/nsi/logos/haircutexpress-f52df8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haircutexpress-f52df8.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455491,7 +455851,7 @@ }, { "question": "Hairkiller", - "icon": "./assets/data/nsi/logos/hairkiller-173527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hairkiller-173527.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455507,7 +455867,7 @@ }, { "question": "Headmasters", - "icon": "./assets/data/nsi/logos/headmasters-7aa40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/headmasters-7aa40b.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455523,7 +455883,7 @@ }, { "question": "Hizi Hair", - "icon": "./assets/data/nsi/logos/hizihair-7f2667.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hizihair-7f2667.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455553,7 +455913,7 @@ }, { "question": "Igorance", - "icon": "./assets/data/nsi/logos/igorance-6ad147.png", + "icon": "https://data.mapcomplete.org/nsi//logos/igorance-6ad147.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455569,7 +455929,7 @@ }, { "question": "Image Studios", - "icon": "./assets/data/nsi/logos/imagestudios-0d42d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imagestudios-0d42d5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455585,7 +455945,7 @@ }, { "question": "Jean Louis David", - "icon": "./assets/data/nsi/logos/jeanlouisdavid-b4b07d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeanlouisdavid-b4b07d.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455601,7 +455961,7 @@ }, { "question": "Just Cuts", - "icon": "./assets/data/nsi/logos/justcuts-f77181.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/justcuts-f77181.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455617,7 +455977,7 @@ }, { "question": "Kinki Kappers", - "icon": "./assets/data/nsi/logos/kinkikappers-7f2667.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinkikappers-7f2667.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455647,7 +456007,7 @@ }, { "question": "Klier", - "icon": "./assets/data/nsi/logos/klier-03dd74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klier-03dd74.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455663,7 +456023,7 @@ }, { "question": "Klipp", - "icon": "./assets/data/nsi/logos/klipp-8c968f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/klipp-8c968f.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455679,7 +456039,7 @@ }, { "question": "Kreatos", - "icon": "./assets/data/nsi/logos/kreatos-8c1786.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kreatos-8c1786.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455695,7 +456055,7 @@ }, { "question": "Legends Barber", - "icon": "./assets/data/nsi/logos/legendsbarber-5e2ac6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/legendsbarber-5e2ac6.jpg", "osmTags": { "and": [ "male=yes", @@ -455712,7 +456072,7 @@ }, { "question": "Magicuts", - "icon": "./assets/data/nsi/logos/magicuts-7e5a14.png", + "icon": "https://data.mapcomplete.org/nsi//logos/magicuts-7e5a14.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455728,7 +456088,7 @@ }, { "question": "Marco Aldany", - "icon": "./assets/data/nsi/logos/marcoaldany-d15f75.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marcoaldany-d15f75.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455744,7 +456104,7 @@ }, { "question": "Mastercuts", - "icon": "./assets/data/nsi/logos/mastercuts-46af32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mastercuts-46af32.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455788,7 +456148,7 @@ }, { "question": "Pascal Coste", - "icon": "./assets/data/nsi/logos/pascalcoste-40f1cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pascalcoste-40f1cc.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455819,7 +456179,7 @@ }, { "question": "Peluquería Low Cost", - "icon": "./assets/data/nsi/logos/peluquerialowcost-5e03c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/peluquerialowcost-5e03c5.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455835,7 +456195,7 @@ }, { "question": "Perfect Look Salons", - "icon": "./assets/data/nsi/logos/perfectlookhairsalon-28f1a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/perfectlookhairsalon-28f1a5.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455885,7 +456245,7 @@ }, { "question": "Regis Salons (UK)", - "icon": "./assets/data/nsi/logos/regissalons-afda3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regissalons-afda3f.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455901,7 +456261,7 @@ }, { "question": "Regis Salons (USA)", - "icon": "./assets/data/nsi/logos/regis-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regis-28f1a5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455934,7 +456294,7 @@ }, { "question": "Rudy's Barbershop", - "icon": "./assets/data/nsi/logos/rudysbarbershop-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rudysbarbershop-28f1a5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -455950,7 +456310,7 @@ }, { "question": "Ruffians", - "icon": "./assets/data/nsi/logos/ruffians-d849d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ruffians-d849d6.jpg", "osmTags": { "and": [ "hairdresser=barber", @@ -455968,7 +456328,7 @@ }, { "question": "Ryanhair", - "icon": "./assets/data/nsi/logos/ryanhair-6ad147.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ryanhair-6ad147.png", "osmTags": { "and": [ "shop=hairdresser", @@ -455984,7 +456344,7 @@ }, { "question": "Saint Algue", - "icon": "./assets/data/nsi/logos/saintalgue-ece769.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saintalgue-ece769.png", "osmTags": { "and": [ "shop=hairdresser", @@ -456000,7 +456360,7 @@ }, { "question": "SalonCentric", - "icon": "./assets/data/nsi/logos/saloncentric-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saloncentric-28f1a5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456016,7 +456376,7 @@ }, { "question": "Sassoon Salon", - "icon": "./assets/data/nsi/logos/sassoonsalon-5069d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sassoonsalon-5069d9.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456032,7 +456392,7 @@ }, { "question": "SmartStyle by Regis", - "icon": "./assets/data/nsi/logos/smartstyle-46af32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smartstyle-46af32.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456048,7 +456408,7 @@ }, { "question": "Sport Clips", - "icon": "./assets/data/nsi/logos/sportclips-46af32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sportclips-46af32.png", "osmTags": { "and": [ "shop=hairdresser", @@ -456064,7 +456424,7 @@ }, { "question": "Styleboxx", - "icon": "./assets/data/nsi/logos/styleboxx-b30c9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/styleboxx-b30c9d.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456080,7 +456440,7 @@ }, { "question": "Super Cut", - "icon": "./assets/data/nsi/logos/supercut-b30c9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supercut-b30c9d.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456096,7 +456456,7 @@ }, { "question": "Supercuts", - "icon": "./assets/data/nsi/logos/supercuts-cc3156.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supercuts-cc3156.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456112,7 +456472,7 @@ }, { "question": "Synergy Hair", - "icon": "./assets/data/nsi/logos/synergyhair-637f75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synergyhair-637f75.jpg", "osmTags": { "and": [ "female=yes", @@ -456130,7 +456490,7 @@ }, { "question": "Tchip", - "icon": "./assets/data/nsi/logos/tchip-426627.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tchip-426627.png", "osmTags": { "and": [ "shop=hairdresser", @@ -456146,7 +456506,7 @@ }, { "question": "The Barbers", - "icon": "./assets/data/nsi/logos/thebarbers-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebarbers-28f1a5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456162,7 +456522,7 @@ }, { "question": "The Salon at Ulta Beauty", - "icon": "./assets/data/nsi/logos/thesalonatultabeauty-28f1a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thesalonatultabeauty-28f1a5.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456179,7 +456539,7 @@ }, { "question": "The SALON by InStyle", - "icon": "./assets/data/nsi/logos/thesalonbyinstyle-28f1a5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/thesalonbyinstyle-28f1a5.svg", "osmTags": { "and": [ "shop=hairdresser", @@ -456195,7 +456555,7 @@ }, { "question": "Toni & Guy", - "icon": "./assets/data/nsi/logos/toniandguy-ece769.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toniandguy-ece769.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456211,7 +456571,7 @@ }, { "question": "Top Hair", - "icon": "./assets/data/nsi/logos/tophair-b30c9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tophair-b30c9d.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456241,7 +456601,7 @@ }, { "question": "Trade Secrets", - "icon": "./assets/data/nsi/logos/tradesecrets-f31ff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tradesecrets-f31ff1.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456287,7 +456647,7 @@ }, { "question": "Експрес Стрижка", - "icon": "./assets/data/nsi/logos/61a701-497f92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/61a701-497f92.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456389,7 +456749,7 @@ }, { "question": "カットコムズ", - "icon": "./assets/data/nsi/logos/cutcomz-946510.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cutcomz-946510.png", "osmTags": { "and": [ "shop=hairdresser", @@ -456409,7 +456769,7 @@ }, { "question": "カットファクトリー", - "icon": "./assets/data/nsi/logos/cutfactory-946510.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cutfactory-946510.jpg", "osmTags": { "and": [ "shop=hairdresser", @@ -456429,7 +456789,7 @@ }, { "question": "ファミリーカット1000", - "icon": "./assets/data/nsi/logos/familycut1000-946510.png", + "icon": "https://data.mapcomplete.org/nsi//logos/familycut1000-946510.png", "osmTags": { "and": [ "shop=hairdresser", @@ -456479,7 +456839,7 @@ }, { "question": "Bleu Libellule", - "icon": "./assets/data/nsi/logos/bleulibellule-b5b92b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bleulibellule-b5b92b.jpg", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456495,7 +456855,7 @@ }, { "question": "Cosmo", - "icon": "./assets/data/nsi/logos/cosmo-9c3c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosmo-9c3c03.jpg", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456511,7 +456871,7 @@ }, { "question": "CosmoProf", - "icon": "./assets/data/nsi/logos/cosmoprof-5f23b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cosmoprof-5f23b6.png", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456527,7 +456887,7 @@ }, { "question": "Hairhouse", - "icon": "./assets/data/nsi/logos/hairhouse-6fcfbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hairhouse-6fcfbc.jpg", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456543,7 +456903,7 @@ }, { "question": "Klier Hair World", - "icon": "./assets/data/nsi/logos/klierhairworld-9c3c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klierhairworld-9c3c03.jpg", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456559,7 +456919,7 @@ }, { "question": "La Boutique du Coiffeur", - "icon": "./assets/data/nsi/logos/laboutiqueducoiffeur-03b17e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/laboutiqueducoiffeur-03b17e.png", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456575,7 +456935,7 @@ }, { "question": "Price Attack", - "icon": "./assets/data/nsi/logos/priceattack-6fcfbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/priceattack-6fcfbc.png", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456591,7 +456951,7 @@ }, { "question": "ROMA Friseurbedarf", - "icon": "./assets/data/nsi/logos/roma-00412a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/roma-00412a.png", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456607,7 +456967,7 @@ }, { "question": "Sally Beauty", - "icon": "./assets/data/nsi/logos/sallybeauty-2abc62.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sallybeauty-2abc62.png", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456624,7 +456984,7 @@ }, { "question": "SalonCentric", - "icon": "./assets/data/nsi/logos/saloncentric-bc397b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saloncentric-bc397b.jpg", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456640,7 +457000,7 @@ }, { "question": "Shaver Shop", - "icon": "./assets/data/nsi/logos/shavershop-b81096.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shavershop-b81096.jpg", "osmTags": { "and": [ "shop=hairdresser_supply", @@ -456656,7 +457016,7 @@ }, { "question": "220 вольт", - "icon": "./assets/data/nsi/logos/220volt-8cf3c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/220volt-8cf3c0.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456676,7 +457036,7 @@ }, { "question": "Aubuchon Hardware", - "icon": "./assets/data/nsi/logos/aubuchonhardware-a223fb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aubuchonhardware-a223fb.svg", "osmTags": { "and": [ "shop=hardware", @@ -456692,7 +457052,7 @@ }, { "question": "Beijer Byggmaterial", - "icon": "./assets/data/nsi/logos/beijerbyggmaterial-e5bfac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beijerbyggmaterial-e5bfac.png", "osmTags": { "and": [ "shop=hardware", @@ -456708,7 +457068,7 @@ }, { "question": "BUCO", - "icon": "./assets/data/nsi/logos/buco-d03c09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buco-d03c09.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456739,7 +457099,7 @@ }, { "question": "Carters", - "icon": "./assets/data/nsi/logos/carters-10910e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carters-10910e.png", "osmTags": { "and": [ "shop=hardware", @@ -456755,7 +457115,7 @@ }, { "question": "Dnipro-M", - "icon": "./assets/data/nsi/logos/dniprom-20f0dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dniprom-20f0dd.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456771,7 +457131,7 @@ }, { "question": "Do it Best", - "icon": "./assets/data/nsi/logos/doitbest-a223fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doitbest-a223fb.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456787,7 +457147,7 @@ }, { "question": "Harbor Freight Tools", - "icon": "./assets/data/nsi/logos/harborfreighttools-a223fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/harborfreighttools-a223fb.png", "osmTags": { "and": [ "shop=hardware", @@ -456803,7 +457163,7 @@ }, { "question": "Home Hardware", - "icon": "./assets/data/nsi/logos/homehardware-98155f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homehardware-98155f.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456819,7 +457179,7 @@ }, { "question": "Husqvarna", - "icon": "./assets/data/nsi/logos/husqvarna-7cd80a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/husqvarna-7cd80a.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456835,7 +457195,7 @@ }, { "question": "Jernia", - "icon": "./assets/data/nsi/logos/jernia-8a3989.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jernia-8a3989.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456850,7 +457210,7 @@ }, { "question": "K-Rauta", - "icon": "./assets/data/nsi/logos/krauta-93dff8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krauta-93dff8.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456866,7 +457226,7 @@ }, { "question": "Kodin Terra", - "icon": "./assets/data/nsi/logos/kodinterra-93dff8.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/kodinterra-93dff8.gif", "osmTags": { "and": [ "shop=hardware", @@ -456882,7 +457242,7 @@ }, { "question": "Lecot", - "icon": "./assets/data/nsi/logos/lecot-585c09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lecot-585c09.png", "osmTags": { "and": [ "shop=hardware", @@ -456898,7 +457258,7 @@ }, { "question": "maxxmart", - "icon": "./assets/data/nsi/logos/maxxmart-fc9b00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxxmart-fc9b00.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456914,7 +457274,7 @@ }, { "question": "Mica Hardware", - "icon": "./assets/data/nsi/logos/mica-5f4ed1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mica-5f4ed1.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456930,7 +457290,7 @@ }, { "question": "Motion Industries", - "icon": "./assets/data/nsi/logos/motionindustries-a223fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/motionindustries-a223fb.png", "osmTags": { "and": [ "shop=hardware", @@ -456946,7 +457306,7 @@ }, { "question": "Northern Tool + Equipment", - "icon": "./assets/data/nsi/logos/northerntoolequipment-a223fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northerntoolequipment-a223fb.jpg", "osmTags": { "and": [ "shop=hardware", @@ -456977,7 +457337,7 @@ }, { "question": "Proper Job", - "icon": "./assets/data/nsi/logos/properjob-a55f89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/properjob-a55f89.png", "osmTags": { "and": [ "shop=hardware", @@ -456993,7 +457353,7 @@ }, { "question": "Robert Dyas", - "icon": "./assets/data/nsi/logos/robertdyas-a55f89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robertdyas-a55f89.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457009,7 +457369,7 @@ }, { "question": "Santandreu", - "icon": "./assets/data/nsi/logos/santandreu-a9ae13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santandreu-a9ae13.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457025,7 +457385,7 @@ }, { "question": "Stihl", - "icon": "./assets/data/nsi/logos/stihl-7cd80a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stihl-7cd80a.png", "osmTags": { "and": [ "shop=hardware", @@ -457041,7 +457401,7 @@ }, { "question": "Sydney Tools", - "icon": "./assets/data/nsi/logos/sydneytools-1421b1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sydneytools-1421b1.png", "osmTags": { "and": [ "shop=hardware", @@ -457057,7 +457417,7 @@ }, { "question": "Telhanorte", - "icon": "./assets/data/nsi/logos/telhanorte-6396ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/telhanorte-6396ad.png", "osmTags": { "and": [ "shop=hardware", @@ -457073,7 +457433,7 @@ }, { "question": "Total Tools", - "icon": "./assets/data/nsi/logos/totaltools-1421b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/totaltools-1421b1.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457089,7 +457449,7 @@ }, { "question": "True Value", - "icon": "./assets/data/nsi/logos/truevalue-a223fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truevalue-a223fb.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457105,7 +457465,7 @@ }, { "question": "Tuff Shed", - "icon": "./assets/data/nsi/logos/tuffshed-a223fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuffshed-a223fb.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457121,7 +457481,7 @@ }, { "question": "Würth", - "icon": "./assets/data/nsi/logos/wurth-96a10c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wurth-96a10c.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457137,7 +457497,7 @@ }, { "question": "ВсеИнструменты.ру", - "icon": "./assets/data/nsi/logos/80451d-72d7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/80451d-72d7fa.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457153,7 +457513,7 @@ }, { "question": "Галамарт", - "icon": "./assets/data/nsi/logos/ce81f6-72d7fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ce81f6-72d7fa.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457169,7 +457529,7 @@ }, { "question": "Епіцентр К Express", - "icon": "./assets/data/nsi/logos/10c781-bf6c88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/10c781-bf6c88.jpg", "osmTags": { "and": [ "shop=hardware", @@ -457199,7 +457559,7 @@ }, { "question": "Метизы", - "icon": "./assets/data/nsi/logos/210906-72d7fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/210906-72d7fa.png", "osmTags": { "and": [ "shop=hardware", @@ -457230,7 +457590,7 @@ }, { "question": "Bio Mundo", - "icon": "./assets/data/nsi/logos/biomundo-894bf8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biomundo-894bf8.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457246,7 +457606,7 @@ }, { "question": "Evergreen Healthfoods", - "icon": "./assets/data/nsi/logos/evergreenhealthfoods-a6966d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergreenhealthfoods-a6966d.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457262,7 +457622,7 @@ }, { "question": "G&W GezondheidsWinkel", - "icon": "./assets/data/nsi/logos/gandwgezondheidswinkel-daed2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gandwgezondheidswinkel-daed2e.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457278,7 +457638,7 @@ }, { "question": "Grape Tree", - "icon": "./assets/data/nsi/logos/grapetree-edcb10.png", + "icon": "https://data.mapcomplete.org/nsi//logos/grapetree-edcb10.png", "osmTags": { "and": [ "shop=health_food", @@ -457294,7 +457654,7 @@ }, { "question": "Healthy Planet", - "icon": "./assets/data/nsi/logos/healthyplanet-b5c6bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/healthyplanet-b5c6bb.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457310,7 +457670,7 @@ }, { "question": "Holland & Barrett", - "icon": "./assets/data/nsi/logos/hollandandbarrett-802102.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hollandandbarrett-802102.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457326,7 +457686,7 @@ }, { "question": "Mundo Verde", - "icon": "./assets/data/nsi/logos/mundoverde-894bf8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mundoverde-894bf8.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457342,7 +457702,7 @@ }, { "question": "Nutrition House", - "icon": "./assets/data/nsi/logos/nutritionhouse-b5c6bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nutritionhouse-b5c6bb.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457358,7 +457718,7 @@ }, { "question": "Reformhaus Bacher", - "icon": "./assets/data/nsi/logos/reformhausbacher-f6f874.png", + "icon": "https://data.mapcomplete.org/nsi//logos/reformhausbacher-f6f874.png", "osmTags": { "and": [ "shop=health_food", @@ -457374,7 +457734,7 @@ }, { "question": "Reformhaus Engelhardt", - "icon": "./assets/data/nsi/logos/reformhausengelhardt-f6f874.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reformhausengelhardt-f6f874.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457390,7 +457750,7 @@ }, { "question": "reformstark Martin", - "icon": "./assets/data/nsi/logos/reformstarkmartin-26a810.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reformstarkmartin-26a810.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457406,7 +457766,7 @@ }, { "question": "VITALIA Reformhaus", - "icon": "./assets/data/nsi/logos/vitaliareformhaus-f6f874.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitaliareformhaus-f6f874.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457443,7 +457803,7 @@ }, { "question": "健康工房 HealthWorks", - "icon": "./assets/data/nsi/logos/healthworks-e87965.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/healthworks-e87965.jpg", "osmTags": { "and": [ "shop=health_food", @@ -457463,7 +457823,7 @@ }, { "question": "Acústica Médica", - "icon": "./assets/data/nsi/logos/acusticamedica-f022a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/acusticamedica-f022a3.png", "osmTags": { "and": [ "shop=hearing_aids", @@ -457479,7 +457839,7 @@ }, { "question": "Amplifon", - "icon": "./assets/data/nsi/logos/amplifon-6f1b2d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/amplifon-6f1b2d.svg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457495,7 +457855,7 @@ }, { "question": "Audika", - "icon": "./assets/data/nsi/logos/audika-03f154.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/audika-03f154.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457511,7 +457871,7 @@ }, { "question": "Audilab", - "icon": "./assets/data/nsi/logos/audilab-400e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/audilab-400e82.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457527,7 +457887,7 @@ }, { "question": "Audition Conseil", - "icon": "./assets/data/nsi/logos/auditionconseil-400e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/auditionconseil-400e82.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457557,7 +457917,7 @@ }, { "question": "Beltone", - "icon": "./assets/data/nsi/logos/beltone-2a109a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beltone-2a109a.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457573,7 +457933,7 @@ }, { "question": "Benoit Audition", - "icon": "./assets/data/nsi/logos/benoitaudition-400e82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benoitaudition-400e82.png", "osmTags": { "and": [ "shop=hearing_aids", @@ -457589,7 +457949,7 @@ }, { "question": "Beter Horen", - "icon": "./assets/data/nsi/logos/beterhoren-cec8b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beterhoren-cec8b0.png", "osmTags": { "and": [ "shop=hearing_aids", @@ -457619,7 +457979,7 @@ }, { "question": "Costco Hearing Aid Center", - "icon": "./assets/data/nsi/logos/costcohearingaidcenter-39cb4e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcohearingaidcenter-39cb4e.svg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457649,7 +458009,7 @@ }, { "question": "GAES", - "icon": "./assets/data/nsi/logos/gaes-681898.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gaes-681898.png", "osmTags": { "and": [ "shop=hearing_aids", @@ -457665,7 +458025,7 @@ }, { "question": "GEERS", - "icon": "./assets/data/nsi/logos/geers-b91cc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geers-b91cc2.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457681,7 +458041,7 @@ }, { "question": "Hansaton", - "icon": "./assets/data/nsi/logos/hansaton-88f32a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hansaton-88f32a.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457697,7 +458057,7 @@ }, { "question": "HearUSA", - "icon": "./assets/data/nsi/logos/hearusa-2a109a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hearusa-2a109a.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457713,7 +458073,7 @@ }, { "question": "Hidden Hearing", - "icon": "./assets/data/nsi/logos/hiddenhearing-edbe38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hiddenhearing-edbe38.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457729,7 +458089,7 @@ }, { "question": "Ideal Audition", - "icon": "./assets/data/nsi/logos/idealaudition-400e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idealaudition-400e82.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457745,7 +458105,7 @@ }, { "question": "KIND Hörgeräte", - "icon": "./assets/data/nsi/logos/kindhorgerate-a8e841.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kindhorgerate-a8e841.png", "osmTags": { "and": [ "shop=hearing_aids", @@ -457761,7 +458121,7 @@ }, { "question": "Lapperre", - "icon": "./assets/data/nsi/logos/lapperre-f63ec3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lapperre-f63ec3.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457777,7 +458137,7 @@ }, { "question": "Miracle-Ear", - "icon": "./assets/data/nsi/logos/miracleear-23e391.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miracleear-23e391.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457793,7 +458153,7 @@ }, { "question": "Neuroth", - "icon": "./assets/data/nsi/logos/neuroth-88d033.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neuroth-88d033.svg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457809,7 +458169,7 @@ }, { "question": "Schoonenberg", - "icon": "./assets/data/nsi/logos/schoonenberg-cec8b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schoonenberg-cec8b0.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457825,7 +458185,7 @@ }, { "question": "Sonance Audition", - "icon": "./assets/data/nsi/logos/sonanceaudition-400e82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonanceaudition-400e82.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457841,7 +458201,7 @@ }, { "question": "Telex", - "icon": "./assets/data/nsi/logos/telex-ffc245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telex-ffc245.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457857,7 +458217,7 @@ }, { "question": "Van Boxtel hoorwinkel", - "icon": "./assets/data/nsi/logos/vanboxtelhoorwinkel-cec8b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vanboxtelhoorwinkel-cec8b0.png", "osmTags": { "and": [ "shop=hearing_aids", @@ -457873,7 +458233,7 @@ }, { "question": "Vitakustik", - "icon": "./assets/data/nsi/logos/vitakustik-a8e841.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitakustik-a8e841.jpg", "osmTags": { "and": [ "shop=hearing_aids", @@ -457903,7 +458263,7 @@ }, { "question": "Eu Yan Sang", - "icon": "./assets/data/nsi/logos/euyansang-7be159.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/euyansang-7be159.jpg", "osmTags": { "and": [ "shop=herbalist", @@ -457923,7 +458283,7 @@ }, { "question": "L'Erbolario", - "icon": "./assets/data/nsi/logos/lerbolario-ed4a79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lerbolario-ed4a79.jpg", "osmTags": { "and": [ "shop=herbalist", @@ -457939,7 +458299,7 @@ }, { "question": "Revive Herbal Health", - "icon": "./assets/data/nsi/logos/reviveherbalhealth-455c0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reviveherbalhealth-455c0f.jpg", "osmTags": { "and": [ "shop=herbalist", @@ -457955,7 +458315,7 @@ }, { "question": "余仁生", - "icon": "./assets/data/nsi/logos/euyansang-5606dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/euyansang-5606dd.jpg", "osmTags": { "and": [ "shop=herbalist", @@ -457975,7 +458335,7 @@ }, { "question": "余仁生 Eu Yan Sang", - "icon": "./assets/data/nsi/logos/euyansang-ed4bac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/euyansang-ed4bac.jpg", "osmTags": { "and": [ "shop=herbalist", @@ -457995,7 +458355,7 @@ }, { "question": "Bang & Olufsen", - "icon": "./assets/data/nsi/logos/bangandolufsen-7a2989.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bangandolufsen-7a2989.png", "osmTags": { "and": [ "shop=hifi", @@ -458011,7 +458371,7 @@ }, { "question": "Bose", - "icon": "./assets/data/nsi/logos/bose-7a2989.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bose-7a2989.png", "osmTags": { "and": [ "shop=hifi", @@ -458027,7 +458387,7 @@ }, { "question": "Devialet", - "icon": "./assets/data/nsi/logos/devialet-7a2989.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devialet-7a2989.jpg", "osmTags": { "and": [ "shop=hifi", @@ -458043,7 +458403,7 @@ }, { "question": "Fastrak", - "icon": "./assets/data/nsi/logos/fastrak-779be0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastrak-779be0.jpg", "osmTags": { "and": [ "shop=hifi", @@ -458059,7 +458419,7 @@ }, { "question": "Harman Kardon", - "icon": "./assets/data/nsi/logos/harmankardon-7a2989.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harmankardon-7a2989.jpg", "osmTags": { "and": [ "shop=hifi", @@ -458075,7 +458435,7 @@ }, { "question": "JBL", - "icon": "./assets/data/nsi/logos/jbl-7a2989.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jbl-7a2989.jpg", "osmTags": { "and": [ "shop=hifi", @@ -458091,7 +458451,7 @@ }, { "question": "Richer Sounds", - "icon": "./assets/data/nsi/logos/richersounds-76bfaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/richersounds-76bfaa.jpg", "osmTags": { "and": [ "shop=hifi", @@ -458107,7 +458467,7 @@ }, { "question": "Teufel", - "icon": "./assets/data/nsi/logos/teufel-bbb902.png", + "icon": "https://data.mapcomplete.org/nsi//logos/teufel-bbb902.png", "osmTags": { "and": [ "shop=hifi", @@ -458123,7 +458483,7 @@ }, { "question": "Adairs", - "icon": "./assets/data/nsi/logos/adairs-f571b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adairs-f571b2.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458139,7 +458499,7 @@ }, { "question": "Adairs Kids", - "icon": "./assets/data/nsi/logos/adairskids-f571b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adairskids-f571b2.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458155,7 +458515,7 @@ }, { "question": "Bytový textil Škodák", - "icon": "./assets/data/nsi/logos/bytovytextilskodak-a06b17.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bytovytextilskodak-a06b17.png", "osmTags": { "and": [ "shop=household_linen", @@ -458171,7 +458531,7 @@ }, { "question": "Carré Blanc", - "icon": "./assets/data/nsi/logos/carreblanc-9f29b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carreblanc-9f29b6.png", "osmTags": { "and": [ "shop=household_linen", @@ -458187,7 +458547,7 @@ }, { "question": "Descamps", - "icon": "./assets/data/nsi/logos/descamps-46fea9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/descamps-46fea9.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458203,7 +458563,7 @@ }, { "question": "Linvosges", - "icon": "./assets/data/nsi/logos/linvosges-e1f628.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linvosges-e1f628.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458219,7 +458579,7 @@ }, { "question": "MMartan", - "icon": "./assets/data/nsi/logos/mmartan-97127c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mmartan-97127c.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458235,7 +458595,7 @@ }, { "question": "Pillow Talk", - "icon": "./assets/data/nsi/logos/pillowtalk-d682ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pillowtalk-d682ae.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458251,7 +458611,7 @@ }, { "question": "QE Home", - "icon": "./assets/data/nsi/logos/qehome-f35021.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qehome-f35021.png", "osmTags": { "and": [ "shop=household_linen", @@ -458267,7 +458627,7 @@ }, { "question": "SCANquilt", - "icon": "./assets/data/nsi/logos/scanquilt-fc4fc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scanquilt-fc4fc3.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458283,7 +458643,7 @@ }, { "question": "Volpes", - "icon": "./assets/data/nsi/logos/volpes-f55b77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volpes-f55b77.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458299,7 +458659,7 @@ }, { "question": "Yves Delorme", - "icon": "./assets/data/nsi/logos/yvesdelorme-9d095f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yvesdelorme-9d095f.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458315,7 +458675,7 @@ }, { "question": "Ярослав", - "icon": "./assets/data/nsi/logos/a4baae-bf8e96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a4baae-bf8e96.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458331,7 +458691,7 @@ }, { "question": "მანამო ჰოუმი", - "icon": "./assets/data/nsi/logos/manamohome-d0e31e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manamohome-d0e31e.jpg", "osmTags": { "and": [ "shop=household_linen", @@ -458351,7 +458711,7 @@ }, { "question": "@home", - "icon": "./assets/data/nsi/logos/home-dd60e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/home-dd60e2.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458382,7 +458742,7 @@ }, { "question": "Adairs", - "icon": "./assets/data/nsi/logos/adairs-bc6f54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adairs-bc6f54.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458398,7 +458758,7 @@ }, { "question": "Alice Délice", - "icon": "./assets/data/nsi/logos/alicedelice-791615.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alicedelice-791615.png", "osmTags": { "and": [ "shop=houseware", @@ -458414,7 +458774,7 @@ }, { "question": "At Home", - "icon": "./assets/data/nsi/logos/athome-d77d08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/athome-d77d08.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458430,7 +458790,7 @@ }, { "question": "Banquet", - "icon": "./assets/data/nsi/logos/banquet-4991ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquet-4991ba.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458446,7 +458806,7 @@ }, { "question": "Bed Bath & Beyond (New Zealand)", - "icon": "./assets/data/nsi/logos/bedbathandbeyond-1d32aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedbathandbeyond-1d32aa.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458462,7 +458822,7 @@ }, { "question": "Bed Bath & Beyond (North America)", - "icon": "./assets/data/nsi/logos/bedbathandbeyond-76be9f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedbathandbeyond-76be9f.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458478,7 +458838,7 @@ }, { "question": "Bed Bath N' Table", - "icon": "./assets/data/nsi/logos/bedbathntable-299251.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedbathntable-299251.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458494,7 +458854,7 @@ }, { "question": "Blokker", - "icon": "./assets/data/nsi/logos/blokker-a48b12.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/blokker-a48b12.svg", "osmTags": { "and": [ "shop=houseware", @@ -458510,7 +458870,7 @@ }, { "question": "Briscoes", - "icon": "./assets/data/nsi/logos/briscoes-1d32aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/briscoes-1d32aa.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458526,7 +458886,7 @@ }, { "question": "BSS Group", - "icon": "./assets/data/nsi/logos/bssgroup-81bc6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bssgroup-81bc6e.png", "osmTags": { "and": [ "shop=houseware", @@ -458542,7 +458902,7 @@ }, { "question": "Camicado", - "icon": "./assets/data/nsi/logos/camicado-35237a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/camicado-35237a.png", "osmTags": { "and": [ "shop=houseware", @@ -458558,7 +458918,7 @@ }, { "question": "Cervera", - "icon": "./assets/data/nsi/logos/cervera-9b0747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cervera-9b0747.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458574,7 +458934,7 @@ }, { "question": "Crazy Plastics", - "icon": "./assets/data/nsi/logos/crazyplastics-4abcbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crazyplastics-4abcbe.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458590,7 +458950,7 @@ }, { "question": "Dille & Kamille", - "icon": "./assets/data/nsi/logos/dilleandkamille-c5ed6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dilleandkamille-c5ed6b.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458606,7 +458966,7 @@ }, { "question": "Du Bruit dans la Cuisine", - "icon": "./assets/data/nsi/logos/dubruitdanslacuisine-791615.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dubruitdanslacuisine-791615.png", "osmTags": { "and": [ "shop=houseware", @@ -458622,7 +458982,7 @@ }, { "question": "Duka", - "icon": "./assets/data/nsi/logos/duka-699029.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duka-699029.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458638,7 +458998,7 @@ }, { "question": "EH Smith", - "icon": "./assets/data/nsi/logos/ehsmith-06cdb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ehsmith-06cdb1.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458654,7 +459014,7 @@ }, { "question": "Enza Home", - "icon": "./assets/data/nsi/logos/enzahome-19bb0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enzahome-19bb0d.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458670,7 +459030,7 @@ }, { "question": "Fissler", - "icon": "./assets/data/nsi/logos/fissler-a5ce18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fissler-a5ce18.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458717,7 +459077,7 @@ }, { "question": "Gipfel", - "icon": "./assets/data/nsi/logos/gipfel-4a99db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gipfel-4a99db.png", "osmTags": { "and": [ "shop=houseware", @@ -458733,7 +459093,7 @@ }, { "question": "Guy Degrenne", - "icon": "./assets/data/nsi/logos/guydegrenne-791615.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guydegrenne-791615.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458749,7 +459109,7 @@ }, { "question": "Happy Casa", - "icon": "./assets/data/nsi/logos/happycasa-6a1c4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happycasa-6a1c4e.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458765,7 +459125,7 @@ }, { "question": "Home Store + More", - "icon": "./assets/data/nsi/logos/homestoremore-b52391.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homestoremore-b52391.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458781,7 +459141,7 @@ }, { "question": "HomeGoods", - "icon": "./assets/data/nsi/logos/homegoods-d77d08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homegoods-d77d08.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458797,7 +459157,7 @@ }, { "question": "House", - "icon": "./assets/data/nsi/logos/house-9d9c4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/house-9d9c4b.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458813,7 +459173,7 @@ }, { "question": "House Bed & Bath", - "icon": "./assets/data/nsi/logos/housebedandbath-9d9c4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/housebedandbath-9d9c4b.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458829,7 +459189,7 @@ }, { "question": "Howards Storage World", - "icon": "./assets/data/nsi/logos/howardsstorageworld-9d9c4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/howardsstorageworld-9d9c4b.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458845,7 +459205,7 @@ }, { "question": "Howarth Timber", - "icon": "./assets/data/nsi/logos/howarthtimber-06cdb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/howarthtimber-06cdb1.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458861,7 +459221,7 @@ }, { "question": "Imerco", - "icon": "./assets/data/nsi/logos/imerco-12dd8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imerco-12dd8a.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458877,7 +459237,7 @@ }, { "question": "Kasanova", - "icon": "./assets/data/nsi/logos/kasanova-6a1c4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kasanova-6a1c4e.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458893,7 +459253,7 @@ }, { "question": "Kitch'n", - "icon": "./assets/data/nsi/logos/kitchn-789341.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitchn-789341.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458908,7 +459268,7 @@ }, { "question": "Kitchen Collection", - "icon": "./assets/data/nsi/logos/kitchencollection-d77d08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitchencollection-d77d08.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458924,7 +459284,7 @@ }, { "question": "Kitchen Stuff Plus", - "icon": "./assets/data/nsi/logos/kitchenstuffplus-92c55a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitchenstuffplus-92c55a.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458940,7 +459300,7 @@ }, { "question": "KODi", - "icon": "./assets/data/nsi/logos/kodi-a5ce18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kodi-a5ce18.jpg", "osmTags": { "and": [ "shop=houseware", @@ -458956,7 +459316,7 @@ }, { "question": "Kop & Kande", - "icon": "./assets/data/nsi/logos/kopandkande-12dd8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kopandkande-12dd8a.png", "osmTags": { "and": [ "shop=houseware", @@ -458986,7 +459346,7 @@ }, { "question": "Lagerhaus (Scandinavia)", - "icon": "./assets/data/nsi/logos/lagerhaus-8b5f66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lagerhaus-8b5f66.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459002,7 +459362,7 @@ }, { "question": "Lakeland", - "icon": "./assets/data/nsi/logos/lakeland-06cdb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lakeland-06cdb1.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459018,7 +459378,7 @@ }, { "question": "Le Creuset", - "icon": "./assets/data/nsi/logos/lecreuset-19bb0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lecreuset-19bb0d.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459034,7 +459394,7 @@ }, { "question": "Linen Chest", - "icon": "./assets/data/nsi/logos/linenchest-2e9fd8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/linenchest-2e9fd8.png", "osmTags": { "and": [ "shop=houseware", @@ -459050,7 +459410,7 @@ }, { "question": "Madame Coco", - "icon": "./assets/data/nsi/logos/madamecoco-19bb0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madamecoco-19bb0d.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459066,7 +459426,7 @@ }, { "question": "Marskramer", - "icon": "./assets/data/nsi/logos/marskramer-c9ad4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marskramer-c9ad4a.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459082,7 +459442,7 @@ }, { "question": "Metalac", - "icon": "./assets/data/nsi/logos/metalac-21e4ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metalac-21e4ab.png", "osmTags": { "and": [ "shop=houseware", @@ -459100,7 +459460,7 @@ }, { "question": "Mr Price Home", - "icon": "./assets/data/nsi/logos/mrpricehome-764653.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrpricehome-764653.png", "osmTags": { "and": [ "shop=houseware", @@ -459116,7 +459476,7 @@ }, { "question": "National Plastics", - "icon": "./assets/data/nsi/logos/nationalplastics-06cdb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalplastics-06cdb1.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459132,7 +459492,7 @@ }, { "question": "Old Time Pottery", - "icon": "./assets/data/nsi/logos/oldtimepottery-d77d08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oldtimepottery-d77d08.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459148,7 +459508,7 @@ }, { "question": "ORION", - "icon": "./assets/data/nsi/logos/orion-4991ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orion-4991ba.png", "osmTags": { "and": [ "shop=houseware", @@ -459164,7 +459524,7 @@ }, { "question": "PEP Home", - "icon": "./assets/data/nsi/logos/pephome-4abcbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pephome-4abcbe.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459180,7 +459540,7 @@ }, { "question": "Plastics Depot", - "icon": "./assets/data/nsi/logos/plasticsdepot-4abcbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plasticsdepot-4abcbe.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459196,7 +459556,7 @@ }, { "question": "Preçolandia", - "icon": "./assets/data/nsi/logos/precolandia-35237a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/precolandia-35237a.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459212,7 +459572,7 @@ }, { "question": "Prince Hypermart", - "icon": "./assets/data/nsi/logos/princehypermart-32fa4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/princehypermart-32fa4c.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459228,7 +459588,7 @@ }, { "question": "ProCook", - "icon": "./assets/data/nsi/logos/procook-06cdb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procook-06cdb1.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459244,7 +459604,7 @@ }, { "question": "Risparmio Casa", - "icon": "./assets/data/nsi/logos/risparmiocasa-6a1c4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/risparmiocasa-6a1c4e.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459260,7 +459620,7 @@ }, { "question": "Sheet Street", - "icon": "./assets/data/nsi/logos/sheetstreet-4abcbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sheetstreet-4abcbe.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459292,7 +459652,7 @@ }, { "question": "Stokes", - "icon": "./assets/data/nsi/logos/stokes-2e9fd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stokes-2e9fd8.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459308,7 +459668,7 @@ }, { "question": "Sur La Table", - "icon": "./assets/data/nsi/logos/surlatable-d77d08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surlatable-d77d08.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459324,7 +459684,7 @@ }, { "question": "Tescoma", - "icon": "./assets/data/nsi/logos/tescoma-19bb0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tescoma-19bb0d.png", "osmTags": { "and": [ "shop=houseware", @@ -459340,7 +459700,7 @@ }, { "question": "The Conran Shop", - "icon": "./assets/data/nsi/logos/theconranshop-672f56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theconranshop-672f56.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459356,7 +459716,7 @@ }, { "question": "The Container Store", - "icon": "./assets/data/nsi/logos/thecontainerstore-d77d08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecontainerstore-d77d08.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459372,7 +459732,7 @@ }, { "question": "The Range", - "icon": "./assets/data/nsi/logos/therange-81bc6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/therange-81bc6e.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459388,7 +459748,7 @@ }, { "question": "Think Kitchen", - "icon": "./assets/data/nsi/logos/thinkkitchen-2e9fd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thinkkitchen-2e9fd8.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459404,7 +459764,7 @@ }, { "question": "Tuesday Morning", - "icon": "./assets/data/nsi/logos/tuesdaymorning-d77d08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuesdaymorning-d77d08.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459420,7 +459780,7 @@ }, { "question": "Tupperware", - "icon": "./assets/data/nsi/logos/tupperware-b7d488.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tupperware-b7d488.svg", "osmTags": { "and": [ "shop=houseware", @@ -459436,7 +459796,7 @@ }, { "question": "Villeroy & Boch", - "icon": "./assets/data/nsi/logos/villeroyandboch-19bb0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villeroyandboch-19bb0d.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459452,7 +459812,7 @@ }, { "question": "Williams-Sonoma", - "icon": "./assets/data/nsi/logos/williamssonoma-61ccca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/williamssonoma-61ccca.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459468,7 +459828,7 @@ }, { "question": "WMF", - "icon": "./assets/data/nsi/logos/wmf-7553f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wmf-7553f4.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459484,7 +459844,7 @@ }, { "question": "Xenos", - "icon": "./assets/data/nsi/logos/xenos-06f910.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xenos-06f910.png", "osmTags": { "and": [ "shop=houseware", @@ -459500,7 +459860,7 @@ }, { "question": "Yuppiechef", - "icon": "./assets/data/nsi/logos/yuppiechef-4abcbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yuppiechef-4abcbe.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459516,7 +459876,7 @@ }, { "question": "Zwilling", - "icon": "./assets/data/nsi/logos/zwilling-a5ce18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zwilling-a5ce18.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459561,7 +459921,7 @@ }, { "question": "Императорский фарфоровый завод", - "icon": "./assets/data/nsi/logos/imperialporcelainfactory-4a99db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialporcelainfactory-4a99db.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459597,7 +459957,7 @@ }, { "question": "Немски център", - "icon": "./assets/data/nsi/logos/d48ea9-61477e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d48ea9-61477e.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459613,7 +459973,7 @@ }, { "question": "სუპერი", - "icon": "./assets/data/nsi/logos/super-595ee9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/super-595ee9.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459633,7 +459993,7 @@ }, { "question": "ჰოუმ", - "icon": "./assets/data/nsi/logos/home-595ee9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/home-595ee9.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459653,7 +460013,7 @@ }, { "question": "京王アートマン", - "icon": "./assets/data/nsi/logos/keioatman-fb0740.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keioatman-fb0740.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459673,7 +460033,7 @@ }, { "question": "日本城 JHC", - "icon": "./assets/data/nsi/logos/jhc-067b48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jhc-067b48.jpg", "osmTags": { "and": [ "shop=houseware", @@ -459693,7 +460053,7 @@ }, { "question": "Bouclair", - "icon": "./assets/data/nsi/logos/bouclair-aa1ae6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bouclair-aa1ae6.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459709,7 +460069,7 @@ }, { "question": "Bouclair Home", - "icon": "./assets/data/nsi/logos/bouclairhome-8155e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bouclairhome-8155e5.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459725,7 +460085,7 @@ }, { "question": "Bouclair Maison", - "icon": "./assets/data/nsi/logos/bouclairmaison-531f1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bouclairmaison-531f1a.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459741,7 +460101,7 @@ }, { "question": "Butlers", - "icon": "./assets/data/nsi/logos/butlers-85b078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/butlers-85b078.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459757,7 +460117,7 @@ }, { "question": "CASA", - "icon": "./assets/data/nsi/logos/casa-48e009.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casa-48e009.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459773,7 +460133,7 @@ }, { "question": "Centrakor", - "icon": "./assets/data/nsi/logos/centrakor-c45f99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centrakor-c45f99.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459789,7 +460149,7 @@ }, { "question": "Coincasa", - "icon": "./assets/data/nsi/logos/coincasa-368f99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coincasa-368f99.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459819,7 +460179,7 @@ }, { "question": "Depot", - "icon": "./assets/data/nsi/logos/depot-5f264c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/depot-5f264c.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459835,7 +460195,7 @@ }, { "question": "Dunelm", - "icon": "./assets/data/nsi/logos/dunelm-839895.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunelm-839895.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459851,7 +460211,7 @@ }, { "question": "English Home", - "icon": "./assets/data/nsi/logos/englishhome-bd3698.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/englishhome-bd3698.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459867,7 +460227,7 @@ }, { "question": "Feel", - "icon": "./assets/data/nsi/logos/feel-d55252.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/feel-d55252.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459882,7 +460242,7 @@ }, { "question": "Fired Earth", - "icon": "./assets/data/nsi/logos/firedearth-839895.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firedearth-839895.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459898,7 +460258,7 @@ }, { "question": "Gato Preto", - "icon": "./assets/data/nsi/logos/gatopreto-22474f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gatopreto-22474f.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459914,7 +460274,7 @@ }, { "question": "Granit", - "icon": "./assets/data/nsi/logos/granit-bf4f5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/granit-bf4f5c.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459930,7 +460290,7 @@ }, { "question": "H&M HOME", - "icon": "./assets/data/nsi/logos/handmhome-0f41f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/handmhome-0f41f2.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459946,7 +460306,7 @@ }, { "question": "Harry Corry", - "icon": "./assets/data/nsi/logos/harrycorry-567cc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harrycorry-567cc8.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459962,7 +460322,7 @@ }, { "question": "HAY", - "icon": "./assets/data/nsi/logos/hay-0f41f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hay-0f41f2.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459978,7 +460338,7 @@ }, { "question": "Hemtex", - "icon": "./assets/data/nsi/logos/hemtex-056dae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hemtex-056dae.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -459994,7 +460354,7 @@ }, { "question": "home&you", - "icon": "./assets/data/nsi/logos/homeandyou-e9ee18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homeandyou-e9ee18.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -460010,7 +460370,7 @@ }, { "question": "HomeSense", - "icon": "./assets/data/nsi/logos/homesense-d842e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homesense-d842e9.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -460026,7 +460386,7 @@ }, { "question": "Iittala", - "icon": "./assets/data/nsi/logos/iittala-a7e00a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iittala-a7e00a.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -460042,7 +460402,7 @@ }, { "question": "Kid interiør", - "icon": "./assets/data/nsi/logos/kidinterior-d55252.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kidinterior-d55252.png", "osmTags": { "and": [ "shop=interior_decoration", @@ -460058,7 +460418,7 @@ }, { "question": "Kirkland's", - "icon": "./assets/data/nsi/logos/kirklands-18147c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kirklands-18147c.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -460088,7 +460448,7 @@ }, { "question": "Madura", - "icon": "./assets/data/nsi/logos/madura-1550f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madura-1550f8.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -460104,7 +460464,7 @@ }, { "question": "Søstrene Grene", - "icon": "./assets/data/nsi/logos/sostrenegrene-0f41f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sostrenegrene-0f41f2.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -460120,7 +460480,7 @@ }, { "question": "Ten Thousand Villages", - "icon": "./assets/data/nsi/logos/tenthousandvillages-10e33c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tenthousandvillages-10e33c.png", "osmTags": { "and": [ "fair_trade=only", @@ -460137,16 +460497,16 @@ }, { "question": "World Market", - "icon": "./assets/data/nsi/logos/worldmarket-18147c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldmarket-18147c.jpg", "osmTags": { "and": [ - "official_name=Cost Plus World Market", "shop=interior_decoration", { "or": [ "brand=World Market", "brand:wikidata=Q5174750", - "name=World Market" + "name=World Market", + "official_name=Cost Plus World Market" ] } ] @@ -460154,7 +460514,7 @@ }, { "question": "Zara Home", - "icon": "./assets/data/nsi/logos/zarahome-0f41f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zarahome-0f41f2.jpg", "osmTags": { "and": [ "shop=interior_decoration", @@ -460218,7 +460578,7 @@ }, { "question": "Agatha", - "icon": "./assets/data/nsi/logos/agatha-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agatha-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460234,7 +460594,7 @@ }, { "question": "Alex and Ani", - "icon": "./assets/data/nsi/logos/alexandani-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alexandani-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460250,7 +460610,7 @@ }, { "question": "Altınbaş", - "icon": "./assets/data/nsi/logos/altinbas-a038d2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/altinbas-a038d2.svg", "osmTags": { "and": [ "shop=jewelry", @@ -460266,7 +460626,7 @@ }, { "question": "American Swiss", - "icon": "./assets/data/nsi/logos/americanswiss-45575e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanswiss-45575e.png", "osmTags": { "and": [ "shop=jewelry", @@ -460282,7 +460642,7 @@ }, { "question": "Angus and Coote", - "icon": "./assets/data/nsi/logos/angusandcoote-0359a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/angusandcoote-0359a8.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460298,7 +460658,7 @@ }, { "question": "Apart", - "icon": "./assets/data/nsi/logos/apart-0f1493.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apart-0f1493.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460314,7 +460674,7 @@ }, { "question": "APM Monaco", - "icon": "./assets/data/nsi/logos/apmmonaco-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apmmonaco-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460330,7 +460690,7 @@ }, { "question": "Aristocrazy", - "icon": "./assets/data/nsi/logos/aristocrazy-a038d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aristocrazy-a038d2.png", "osmTags": { "and": [ "shop=jewelry", @@ -460346,7 +460706,7 @@ }, { "question": "Arthus Bertrand", - "icon": "./assets/data/nsi/logos/arthusbertrand-1d7974.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arthusbertrand-1d7974.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460362,7 +460722,7 @@ }, { "question": "Atasay", - "icon": "./assets/data/nsi/logos/atasay-3dd149.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atasay-3dd149.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460378,7 +460738,7 @@ }, { "question": "Banter by Piercing Pagoda", - "icon": "./assets/data/nsi/logos/banterbypiercingpagoda-30e94f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banterbypiercingpagoda-30e94f.png", "osmTags": { "and": [ "shop=jewelry", @@ -460394,7 +460754,7 @@ }, { "question": "Beaverbrooks", - "icon": "./assets/data/nsi/logos/beaverbrooks-f07ca3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beaverbrooks-f07ca3.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460410,7 +460770,7 @@ }, { "question": "Ben Bridge", - "icon": "./assets/data/nsi/logos/benbridge-30e94f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/benbridge-30e94f.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460426,7 +460786,7 @@ }, { "question": "Bevilles Jewellers", - "icon": "./assets/data/nsi/logos/bevillesjewellers-0359a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bevillesjewellers-0359a8.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460457,7 +460817,7 @@ }, { "question": "Bijou Brigitte", - "icon": "./assets/data/nsi/logos/bijoubrigitte-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bijoubrigitte-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460473,7 +460833,7 @@ }, { "question": "Bizzarro", - "icon": "./assets/data/nsi/logos/bizzarro-789248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bizzarro-789248.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460489,7 +460849,7 @@ }, { "question": "Blue Nile", - "icon": "./assets/data/nsi/logos/bluenile-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluenile-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460505,7 +460865,7 @@ }, { "question": "Bluespirit", - "icon": "./assets/data/nsi/logos/bluespirit-60a080.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bluespirit-60a080.png", "osmTags": { "and": [ "shop=jewelry", @@ -460521,7 +460881,7 @@ }, { "question": "Buccellati", - "icon": "./assets/data/nsi/logos/buccellati-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buccellati-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460537,7 +460897,7 @@ }, { "question": "Cartier", - "icon": "./assets/data/nsi/logos/cartier-a038d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cartier-a038d2.png", "osmTags": { "and": [ "shop=jewelry", @@ -460553,7 +460913,7 @@ }, { "question": "Charm Diamond Centres", - "icon": "./assets/data/nsi/logos/charmdiamondcentres-7fc58d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/charmdiamondcentres-7fc58d.png", "osmTags": { "and": [ "shop=jewelry", @@ -460569,7 +460929,7 @@ }, { "question": "Chaumet", - "icon": "./assets/data/nsi/logos/chaumet-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chaumet-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460585,7 +460945,7 @@ }, { "question": "Chemmanur International Jewellers", - "icon": "./assets/data/nsi/logos/chemmanurinternationaljewellers-0ef1f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chemmanurinternationaljewellers-0ef1f6.png", "osmTags": { "and": [ "shop=jewelry", @@ -460601,7 +460961,7 @@ }, { "question": "Chisholm Hunter", - "icon": "./assets/data/nsi/logos/chisholmhunter-f07ca3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chisholmhunter-f07ca3.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460617,7 +460977,7 @@ }, { "question": "Christ", - "icon": "./assets/data/nsi/logos/christ-729edb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/christ-729edb.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460633,7 +460993,7 @@ }, { "question": "Colours & Beauty", - "icon": "./assets/data/nsi/logos/coloursandbeauty-60a080.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloursandbeauty-60a080.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460663,7 +461023,7 @@ }, { "question": "Daniel's", - "icon": "./assets/data/nsi/logos/daniels-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daniels-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460679,7 +461039,7 @@ }, { "question": "David Yurman", - "icon": "./assets/data/nsi/logos/davidyurman-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/davidyurman-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460695,7 +461055,7 @@ }, { "question": "Dinh Van", - "icon": "./assets/data/nsi/logos/dinhvan-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dinhvan-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460711,7 +461071,7 @@ }, { "question": "Don Roberto Jewelers", - "icon": "./assets/data/nsi/logos/donrobertojewelers-080e86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donrobertojewelers-080e86.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460727,7 +461087,7 @@ }, { "question": "Dorotheum Juwelier", - "icon": "./assets/data/nsi/logos/dorotheumjuwelier-354c6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dorotheumjuwelier-354c6b.png", "osmTags": { "and": [ "shop=jewelry", @@ -460743,7 +461103,7 @@ }, { "question": "DR钻戒", - "icon": "./assets/data/nsi/logos/darryring-cb063c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/darryring-cb063c.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460763,7 +461123,7 @@ }, { "question": "Ernest Jones", - "icon": "./assets/data/nsi/logos/ernestjones-f07ca3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ernestjones-f07ca3.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460794,16 +461154,16 @@ }, { "question": "Fast-Fix", - "icon": "./assets/data/nsi/logos/fastfix-025704.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastfix-025704.jpg", "osmTags": { "and": [ - "official_name=Fast-Fix Jewelry and Watch Repairs", "shop=jewelry", { "or": [ "brand=Fast-Fix", "brand:wikidata=Q108411186", - "name=Fast-Fix" + "name=Fast-Fix", + "official_name=Fast-Fix Jewelry and Watch Repairs" ] } ] @@ -460811,7 +461171,7 @@ }, { "question": "Fred Meyer Jewelers", - "icon": "./assets/data/nsi/logos/fredmeyerjewelers-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fredmeyerjewelers-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460827,7 +461187,7 @@ }, { "question": "Glitter", - "icon": "./assets/data/nsi/logos/glitter-f0ae67.png", + "icon": "https://data.mapcomplete.org/nsi//logos/glitter-f0ae67.png", "osmTags": { "and": [ "shop=jewelry", @@ -460843,7 +461203,7 @@ }, { "question": "Goldmark", - "icon": "./assets/data/nsi/logos/goldmark-f8a228.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldmark-f8a228.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460859,7 +461219,7 @@ }, { "question": "Goldsmiths", - "icon": "./assets/data/nsi/logos/goldsmiths-f07ca3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goldsmiths-f07ca3.png", "osmTags": { "and": [ "shop=jewelry", @@ -460875,7 +461235,7 @@ }, { "question": "Gorjana", - "icon": "./assets/data/nsi/logos/gorjana-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gorjana-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460891,7 +461251,7 @@ }, { "question": "Guldfynd", - "icon": "./assets/data/nsi/logos/guldfynd-57004a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guldfynd-57004a.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460907,7 +461267,7 @@ }, { "question": "H. Stern", - "icon": "./assets/data/nsi/logos/hstern-5f2e62.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/hstern-5f2e62.gif", "osmTags": { "and": [ "shop=jewelry", @@ -460923,7 +461283,7 @@ }, { "question": "H.Samuel", - "icon": "./assets/data/nsi/logos/hsamuel-f07ca3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsamuel-f07ca3.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460939,7 +461299,7 @@ }, { "question": "Harry Ritchie's", - "icon": "./assets/data/nsi/logos/harryritchies-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harryritchies-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460955,7 +461315,7 @@ }, { "question": "Helzberg Diamonds", - "icon": "./assets/data/nsi/logos/helzbergdiamonds-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/helzbergdiamonds-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460971,7 +461331,7 @@ }, { "question": "Histoire d'Or", - "icon": "./assets/data/nsi/logos/histoiredor-d59505.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/histoiredor-d59505.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -460987,7 +461347,7 @@ }, { "question": "Icing", - "icon": "./assets/data/nsi/logos/icing-30e94f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icing-30e94f.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461003,7 +461363,7 @@ }, { "question": "James Avery Jewelry", - "icon": "./assets/data/nsi/logos/jamesaveryjewelry-70f101.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jamesaveryjewelry-70f101.png", "osmTags": { "and": [ "shop=jewelry", @@ -461019,16 +461379,16 @@ }, { "question": "Jared", - "icon": "./assets/data/nsi/logos/jared-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jared-70f101.jpg", "osmTags": { "and": [ - "official_name=Jared The Galleria of Jewelry", "shop=jewelry", { "or": [ "brand=Jared", "brand:wikidata=Q62029282", - "name=Jared" + "name=Jared", + "official_name=Jared The Galleria of Jewelry" ] } ] @@ -461036,7 +461396,7 @@ }, { "question": "Jewel Cafe", - "icon": "./assets/data/nsi/logos/jewelcafe-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jewelcafe-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461060,7 +461420,7 @@ }, { "question": "Jos Alukkas", - "icon": "./assets/data/nsi/logos/josalukkas-96eeb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/josalukkas-96eeb4.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461076,7 +461436,7 @@ }, { "question": "Josco Jewellers", - "icon": "./assets/data/nsi/logos/joscojewellers-96eeb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joscojewellers-96eeb4.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461092,7 +461452,7 @@ }, { "question": "Joyalukkas", - "icon": "./assets/data/nsi/logos/joyalukkas-534941.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joyalukkas-534941.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461108,7 +461468,7 @@ }, { "question": "Julien d'Orcel", - "icon": "./assets/data/nsi/logos/juliendorcel-05afc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juliendorcel-05afc6.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461124,7 +461484,7 @@ }, { "question": "Juwelier Kraemer", - "icon": "./assets/data/nsi/logos/juwelierkraemer-7f11cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juwelierkraemer-7f11cf.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461140,7 +461500,7 @@ }, { "question": "Kalyan Jewellers", - "icon": "./assets/data/nsi/logos/kalyanjewellers-a038d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kalyanjewellers-a038d2.png", "osmTags": { "and": [ "shop=jewelry", @@ -461156,7 +461516,7 @@ }, { "question": "Kay Jewelers", - "icon": "./assets/data/nsi/logos/kayjewelers-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kayjewelers-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461172,7 +461532,7 @@ }, { "question": "Kendra Scott", - "icon": "./assets/data/nsi/logos/kendrascott-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kendrascott-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461188,7 +461548,7 @@ }, { "question": "Life Vivara", - "icon": "./assets/data/nsi/logos/lifevivara-c81860.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifevivara-c81860.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461204,7 +461564,7 @@ }, { "question": "Louis Pion", - "icon": "./assets/data/nsi/logos/louispion-381def.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louispion-381def.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461220,7 +461580,7 @@ }, { "question": "Lovisa", - "icon": "./assets/data/nsi/logos/lovisa-a038d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lovisa-a038d2.png", "osmTags": { "and": [ "shop=jewelry", @@ -461236,7 +461596,7 @@ }, { "question": "Lucardi", - "icon": "./assets/data/nsi/logos/lucardi-0e6622.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lucardi-0e6622.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461252,7 +461612,7 @@ }, { "question": "Maison Birks", - "icon": "./assets/data/nsi/logos/maisonbirks-7fc58d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maisonbirks-7fc58d.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461268,7 +461628,7 @@ }, { "question": "Malabar Gold and Diamonds", - "icon": "./assets/data/nsi/logos/malabargoldanddiamonds-9fa2ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/malabargoldanddiamonds-9fa2ef.png", "osmTags": { "and": [ "shop=jewelry", @@ -461284,7 +461644,7 @@ }, { "question": "Manège à Bijoux", - "icon": "./assets/data/nsi/logos/manegeabijoux-381def.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manegeabijoux-381def.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461300,7 +461660,7 @@ }, { "question": "Marc Orian", - "icon": "./assets/data/nsi/logos/marcorian-381def.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marcorian-381def.png", "osmTags": { "and": [ "shop=jewelry", @@ -461316,7 +461676,7 @@ }, { "question": "MATY", - "icon": "./assets/data/nsi/logos/maty-381def.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/maty-381def.svg", "osmTags": { "and": [ "shop=jewelry", @@ -461332,7 +461692,7 @@ }, { "question": "Mauboussin", - "icon": "./assets/data/nsi/logos/mauboussin-b46d44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mauboussin-b46d44.png", "osmTags": { "and": [ "shop=jewelry", @@ -461348,7 +461708,7 @@ }, { "question": "Messika", - "icon": "./assets/data/nsi/logos/messika-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/messika-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461364,7 +461724,7 @@ }, { "question": "Michael Hill", - "icon": "./assets/data/nsi/logos/michaelhill-4ffa40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michaelhill-4ffa40.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461380,7 +461740,7 @@ }, { "question": "Mimco", - "icon": "./assets/data/nsi/logos/mimco-0359a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mimco-0359a8.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461396,7 +461756,7 @@ }, { "question": "Morgan Jewelers", - "icon": "./assets/data/nsi/logos/morganjewelers-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morganjewelers-70f101.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461412,7 +461772,7 @@ }, { "question": "My Jewellery", - "icon": "./assets/data/nsi/logos/myjewellery-ffe265.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/myjewellery-ffe265.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461428,7 +461788,7 @@ }, { "question": "Na Hoku", - "icon": "./assets/data/nsi/logos/nahoku-70f101.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nahoku-70f101.png", "osmTags": { "and": [ "shop=jewelry", @@ -461444,7 +461804,7 @@ }, { "question": "OROVIVO", - "icon": "./assets/data/nsi/logos/orovivo-7f11cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orovivo-7f11cf.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461460,7 +461820,7 @@ }, { "question": "Pandora", - "icon": "./assets/data/nsi/logos/pandora-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pandora-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461476,7 +461836,7 @@ }, { "question": "PC Jeweller", - "icon": "./assets/data/nsi/logos/pcjeweller-96eeb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pcjeweller-96eeb4.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461492,7 +461852,7 @@ }, { "question": "Peoples Jewellers", - "icon": "./assets/data/nsi/logos/peoplesjewellers-7fc58d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peoplesjewellers-7fc58d.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461508,7 +461868,7 @@ }, { "question": "Piaget", - "icon": "./assets/data/nsi/logos/piaget-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piaget-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461524,7 +461884,7 @@ }, { "question": "Pletzsch", - "icon": "./assets/data/nsi/logos/pletzsch-7f11cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pletzsch-7f11cf.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461540,7 +461900,7 @@ }, { "question": "PNJ", - "icon": "./assets/data/nsi/logos/pnj-a9c8da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pnj-a9c8da.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461556,7 +461916,7 @@ }, { "question": "Prouds", - "icon": "./assets/data/nsi/logos/prouds-0359a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prouds-0359a8.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461572,7 +461932,7 @@ }, { "question": "Schaap en Citroen", - "icon": "./assets/data/nsi/logos/schaapencitroen-0e6622.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schaapencitroen-0e6622.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461588,7 +461948,7 @@ }, { "question": "Shane Co.", - "icon": "./assets/data/nsi/logos/shaneco-70f101.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shaneco-70f101.svg", "osmTags": { "and": [ "shop=jewelry", @@ -461604,7 +461964,7 @@ }, { "question": "SOFIA", - "icon": "./assets/data/nsi/logos/sofia-584c2c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sofia-584c2c.png", "osmTags": { "and": [ "shop=jewelry", @@ -461634,7 +461994,7 @@ }, { "question": "Sterns", - "icon": "./assets/data/nsi/logos/sterns-d5d8d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sterns-d5d8d2.png", "osmTags": { "and": [ "shop=jewelry", @@ -461650,7 +462010,7 @@ }, { "question": "Stroili Oro", - "icon": "./assets/data/nsi/logos/stroilioro-60a080.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stroilioro-60a080.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461680,7 +462040,7 @@ }, { "question": "Swarovski", - "icon": "./assets/data/nsi/logos/swarovski-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swarovski-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461696,7 +462056,7 @@ }, { "question": "Tanishq", - "icon": "./assets/data/nsi/logos/tanishq-96eeb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tanishq-96eeb4.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461714,7 +462074,7 @@ }, { "question": "Thomas Sabo", - "icon": "./assets/data/nsi/logos/thomassabo-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thomassabo-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461730,16 +462090,16 @@ }, { "question": "Tiffany & Company", - "icon": "./assets/data/nsi/logos/tiffanyandcompany-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiffanyandcompany-a038d2.jpg", "osmTags": { "and": [ - "official_name=Tiffany & Co.", "shop=jewelry", { "or": [ "brand=Tiffany & Company", "brand:wikidata=Q1066858", - "name=Tiffany & Company" + "name=Tiffany & Company", + "official_name=Tiffany & Co." ] } ] @@ -461747,7 +462107,7 @@ }, { "question": "Titan", - "icon": "./assets/data/nsi/logos/titan-96eeb4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/titan-96eeb4.png", "osmTags": { "and": [ "shop=jewelry", @@ -461763,7 +462123,7 @@ }, { "question": "Tous", - "icon": "./assets/data/nsi/logos/tous-a038d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tous-a038d2.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461779,7 +462139,7 @@ }, { "question": "Valmano", - "icon": "./assets/data/nsi/logos/valmano-1052ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valmano-1052ca.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461795,7 +462155,7 @@ }, { "question": "Vivara", - "icon": "./assets/data/nsi/logos/vivara-c81860.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivara-c81860.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461826,7 +462186,7 @@ }, { "question": "Warren James", - "icon": "./assets/data/nsi/logos/warrenjames-f07ca3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warrenjames-f07ca3.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461842,7 +462202,7 @@ }, { "question": "Wempe", - "icon": "./assets/data/nsi/logos/wempe-811e73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wempe-811e73.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461872,16 +462232,16 @@ }, { "question": "Zales", - "icon": "./assets/data/nsi/logos/zales-70f101.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zales-70f101.jpg", "osmTags": { "and": [ - "official_name=Zales The Diamond Store", "shop=jewelry", { "or": [ "brand=Zales", "brand:wikidata=Q8065305", - "name=Zales" + "name=Zales", + "official_name=Zales The Diamond Store" ] } ] @@ -461903,7 +462263,7 @@ }, { "question": "Zlatarna Celje", - "icon": "./assets/data/nsi/logos/zlatarnacelje-702c99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zlatarnacelje-702c99.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461919,7 +462279,7 @@ }, { "question": "Адамас", - "icon": "./assets/data/nsi/logos/adamas-ee45ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adamas-ee45ea.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -461985,7 +462345,7 @@ }, { "question": "Золотий Вік", - "icon": "./assets/data/nsi/logos/cc67fd-a7f1e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cc67fd-a7f1e4.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462043,7 +462403,7 @@ }, { "question": "Укрзолото", - "icon": "./assets/data/nsi/logos/ukrzoloto-a7f1e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrzoloto-a7f1e4.png", "osmTags": { "and": [ "shop=jewelry", @@ -462077,12 +462437,9 @@ }, { "question": "ツツミ", - "icon": "./assets/data/nsi/logos/tsutsumi-36e4b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsutsumi-36e4b3.jpg", "osmTags": { "and": [ - "official_name=ジュエリーツツミ", - "official_name:en=Jewelry Tsutsumi", - "official_name:ja=ジュエリーツツミ", "shop=jewelry", { "or": [ @@ -462092,7 +462449,10 @@ "brand:wikidata=Q11318759", "name=ツツミ", "name:en=Tsutsumi", - "name:ja=ツツミ" + "name:ja=ツツミ", + "official_name=ジュエリーツツミ", + "official_name:en=Jewelry Tsutsumi", + "official_name:ja=ジュエリーツツミ" ] } ] @@ -462100,7 +462460,7 @@ }, { "question": "三井貴金屬", - "icon": "./assets/data/nsi/logos/9074c9-a7992b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/9074c9-a7992b.png", "osmTags": { "and": [ "shop=jewelry", @@ -462118,7 +462478,7 @@ }, { "question": "今生金飾", - "icon": "./assets/data/nsi/logos/goldenlife-a7992b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenlife-a7992b.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462138,7 +462498,7 @@ }, { "question": "六福珠宝", - "icon": "./assets/data/nsi/logos/lukfookjewellery-7fe408.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukfookjewellery-7fe408.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462158,7 +462518,7 @@ }, { "question": "六福珠寶 Lukfook Jewellery", - "icon": "./assets/data/nsi/logos/lukfookjewellery-2f2ea0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukfookjewellery-2f2ea0.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462182,7 +462542,7 @@ }, { "question": "周大福", - "icon": "./assets/data/nsi/logos/chowtaifook-4629af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chowtaifook-4629af.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462202,7 +462562,7 @@ }, { "question": "周大福 Chow Tai Fook", - "icon": "./assets/data/nsi/logos/chowtaifook-2f2ea0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chowtaifook-2f2ea0.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462226,7 +462586,7 @@ }, { "question": "周生生", - "icon": "./assets/data/nsi/logos/chowsangsang-a99738.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chowsangsang-a99738.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462246,7 +462606,7 @@ }, { "question": "周生生 Chow Sang Sang", - "icon": "./assets/data/nsi/logos/chowsangsang-2f2ea0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chowsangsang-2f2ea0.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462270,7 +462630,7 @@ }, { "question": "老凤祥", - "icon": "./assets/data/nsi/logos/laofengxiang-45876e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laofengxiang-45876e.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462290,7 +462650,7 @@ }, { "question": "老鳳祥銀樓 Lao Feng Xiang Jewellery", - "icon": "./assets/data/nsi/logos/laofengxiang-2f2ea0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laofengxiang-2f2ea0.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462314,7 +462674,7 @@ }, { "question": "謝瑞麟珠寶 TSL Jewellery", - "icon": "./assets/data/nsi/logos/tsl-2f2ea0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsl-2f2ea0.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462337,7 +462697,7 @@ }, { "question": "谢瑞麟珠宝", - "icon": "./assets/data/nsi/logos/tsl-7fb071.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsl-7fb071.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462360,7 +462720,7 @@ }, { "question": "金至尊珠寶 3DG Jewellery", - "icon": "./assets/data/nsi/logos/3dgjewellery-f29a00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3dgjewellery-f29a00.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462384,7 +462744,7 @@ }, { "question": "點睛品", - "icon": "./assets/data/nsi/logos/9954ea-a7992b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9954ea-a7992b.jpg", "osmTags": { "and": [ "shop=jewelry", @@ -462432,7 +462792,7 @@ }, { "question": "iNovine", - "icon": "./assets/data/nsi/logos/inovine-769b40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/inovine-769b40.png", "osmTags": { "and": [ "shop=kiosk", @@ -462448,7 +462808,7 @@ }, { "question": "Kiosk", - "icon": "./assets/data/nsi/logos/kiosk-c47323.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiosk-c47323.jpg", "osmTags": { "and": [ "shop=kiosk", @@ -462465,7 +462825,7 @@ }, { "question": "Lietuvos spauda", - "icon": "./assets/data/nsi/logos/lietuvosspauda-34adb3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lietuvosspauda-34adb3.png", "osmTags": { "and": [ "shop=kiosk", @@ -462509,7 +462869,7 @@ }, { "question": "Moj Kiosk", - "icon": "./assets/data/nsi/logos/mojkiosk-86ee53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mojkiosk-86ee53.jpg", "osmTags": { "and": [ "shop=kiosk", @@ -462528,7 +462888,7 @@ }, { "question": "Narvesen", - "icon": "./assets/data/nsi/logos/narvesen-a42ea8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/narvesen-a42ea8.png", "osmTags": { "and": [ "shop=kiosk", @@ -462544,7 +462904,7 @@ }, { "question": "Pressbyrån", - "icon": "./assets/data/nsi/logos/pressbyran-c177cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pressbyran-c177cf.jpg", "osmTags": { "and": [ "shop=kiosk", @@ -462560,7 +462920,7 @@ }, { "question": "R-Kioski", - "icon": "./assets/data/nsi/logos/rkioski-e0c7b3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rkioski-e0c7b3.png", "osmTags": { "and": [ "shop=kiosk", @@ -462576,7 +462936,7 @@ }, { "question": "Ruch", - "icon": "./assets/data/nsi/logos/ruch-5bd120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ruch-5bd120.jpg", "osmTags": { "and": [ "shop=kiosk", @@ -462592,7 +462952,7 @@ }, { "question": "ServiceStore DB", - "icon": "./assets/data/nsi/logos/servicestoredb-140365.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicestoredb-140365.svg", "osmTags": { "and": [ "shop=kiosk", @@ -462636,7 +462996,7 @@ }, { "question": "Tisak", - "icon": "./assets/data/nsi/logos/tisak-51cd1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tisak-51cd1e.jpg", "osmTags": { "and": [ "shop=kiosk", @@ -462652,7 +463012,7 @@ }, { "question": "Total", - "icon": "./assets/data/nsi/logos/total-5fe041.png", + "icon": "https://data.mapcomplete.org/nsi//logos/total-5fe041.png", "osmTags": { "and": [ "shop=kiosk", @@ -462696,7 +463056,7 @@ }, { "question": "Yorma's", - "icon": "./assets/data/nsi/logos/yormas-140365.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yormas-140365.jpg", "osmTags": { "and": [ "shop=kiosk", @@ -462768,7 +463128,7 @@ }, { "question": "キヨスク", - "icon": "./assets/data/nsi/logos/kiosk-84165a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiosk-84165a.svg", "osmTags": { "and": [ "shop=kiosk", @@ -462826,7 +463186,7 @@ }, { "question": "Benchmarx", - "icon": "./assets/data/nsi/logos/benchmarx-26c64e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/benchmarx-26c64e.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -462842,7 +463202,7 @@ }, { "question": "Builders FirstSource", - "icon": "./assets/data/nsi/logos/buildersfirstsource-964d64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buildersfirstsource-964d64.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -462858,7 +463218,7 @@ }, { "question": "bulthaup", - "icon": "./assets/data/nsi/logos/bulthaup-1743cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bulthaup-1743cc.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -462874,7 +463234,7 @@ }, { "question": "Cuisinella", - "icon": "./assets/data/nsi/logos/cuisinella-944de4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cuisinella-944de4.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -462905,7 +463265,7 @@ }, { "question": "Gaggenau", - "icon": "./assets/data/nsi/logos/gaggenau-1743cc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gaggenau-1743cc.svg", "osmTags": { "and": [ "shop=kitchen", @@ -462921,7 +463281,7 @@ }, { "question": "Howdens Joinery", - "icon": "./assets/data/nsi/logos/howdensjoinery-26c64e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/howdensjoinery-26c64e.png", "osmTags": { "and": [ "shop=kitchen", @@ -462937,7 +463297,7 @@ }, { "question": "Ixina", - "icon": "./assets/data/nsi/logos/ixina-d089d8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ixina-d089d8.png", "osmTags": { "and": [ "shop=kitchen", @@ -462953,7 +463313,7 @@ }, { "question": "Keuken Kampioen", - "icon": "./assets/data/nsi/logos/keukenkampioen-169f26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keukenkampioen-169f26.png", "osmTags": { "and": [ "shop=kitchen", @@ -462969,7 +463329,7 @@ }, { "question": "Kitchen Connection", - "icon": "./assets/data/nsi/logos/kitchenconnection-8118ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitchenconnection-8118ed.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -462985,7 +463345,7 @@ }, { "question": "Kitchen Warehouse", - "icon": "./assets/data/nsi/logos/kitchenwarehouse-8118ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitchenwarehouse-8118ed.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463001,7 +463361,7 @@ }, { "question": "Küchen Aktuell", - "icon": "./assets/data/nsi/logos/kuchenaktuell-d05c66.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kuchenaktuell-d05c66.png", "osmTags": { "and": [ "shop=kitchen", @@ -463017,7 +463377,7 @@ }, { "question": "Küchen Schaffrath", - "icon": "./assets/data/nsi/logos/kuchenschaffrath-d05c66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuchenschaffrath-d05c66.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463033,7 +463393,7 @@ }, { "question": "KüchenTreff", - "icon": "./assets/data/nsi/logos/kuchentreff-d05c66.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuchentreff-d05c66.svg", "osmTags": { "and": [ "shop=kitchen", @@ -463049,7 +463409,7 @@ }, { "question": "Kutchenhaus", - "icon": "./assets/data/nsi/logos/kutchenhaus-26c64e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kutchenhaus-26c64e.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463065,7 +463425,7 @@ }, { "question": "Magnet", - "icon": "./assets/data/nsi/logos/magnet-26c64e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magnet-26c64e.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463081,7 +463441,7 @@ }, { "question": "Marquardt Küchen", - "icon": "./assets/data/nsi/logos/marquardtkuchen-d05c66.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marquardtkuchen-d05c66.png", "osmTags": { "and": [ "shop=kitchen", @@ -463097,7 +463457,7 @@ }, { "question": "MEDA Küchenfachmarkt", - "icon": "./assets/data/nsi/logos/medakuchenfachmarkt-d05c66.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/medakuchenfachmarkt-d05c66.svg", "osmTags": { "and": [ "shop=kitchen", @@ -463113,7 +463473,7 @@ }, { "question": "Mobalpa", - "icon": "./assets/data/nsi/logos/mobalpa-7cc7bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobalpa-7cc7bc.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463129,7 +463489,7 @@ }, { "question": "Oresi", - "icon": "./assets/data/nsi/logos/oresi-10bb52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oresi-10bb52.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463145,7 +463505,7 @@ }, { "question": "PLANA Küchenland", - "icon": "./assets/data/nsi/logos/planakuchenland-d05c66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/planakuchenland-d05c66.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463162,7 +463522,7 @@ }, { "question": "Poggenpohl", - "icon": "./assets/data/nsi/logos/poggenpohl-1743cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poggenpohl-1743cc.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463178,7 +463538,7 @@ }, { "question": "porta Küchenwelt", - "icon": "./assets/data/nsi/logos/portakuchenwelt-d05c66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portakuchenwelt-d05c66.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463194,7 +463554,7 @@ }, { "question": "REDDY Küchen", - "icon": "./assets/data/nsi/logos/reddykuchen-d05c66.png", + "icon": "https://data.mapcomplete.org/nsi//logos/reddykuchen-d05c66.png", "osmTags": { "and": [ "shop=kitchen", @@ -463210,7 +463570,7 @@ }, { "question": "Sabag", - "icon": "./assets/data/nsi/logos/sabag-56a74d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sabag-56a74d.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463226,7 +463586,7 @@ }, { "question": "Schmidt", - "icon": "./assets/data/nsi/logos/schmidt-b36c9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schmidt-b36c9e.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463242,7 +463602,7 @@ }, { "question": "SieMatic", - "icon": "./assets/data/nsi/logos/siematic-1743cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siematic-1743cc.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463258,7 +463618,7 @@ }, { "question": "SoCoo'c", - "icon": "./assets/data/nsi/logos/socooc-789e69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/socooc-789e69.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463274,7 +463634,7 @@ }, { "question": "Superkeukens", - "icon": "./assets/data/nsi/logos/superkeukens-169f26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/superkeukens-169f26.png", "osmTags": { "and": [ "shop=kitchen", @@ -463290,7 +463650,7 @@ }, { "question": "Tulp Keukens", - "icon": "./assets/data/nsi/logos/tulpkeukens-169f26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tulpkeukens-169f26.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463306,7 +463666,7 @@ }, { "question": "Wren Kitchens", - "icon": "./assets/data/nsi/logos/wrenkitchens-26c64e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wrenkitchens-26c64e.jpg", "osmTags": { "and": [ "shop=kitchen", @@ -463336,7 +463696,7 @@ }, { "question": "Eco-Express", - "icon": "./assets/data/nsi/logos/ecoexpress-7130b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecoexpress-7130b3.jpg", "osmTags": { "and": [ "shop=laundry", @@ -463408,7 +463768,7 @@ }, { "question": "Speed Queen", - "icon": "./assets/data/nsi/logos/speedqueen-ca17f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/speedqueen-ca17f3.png", "osmTags": { "and": [ "shop=laundry", @@ -463424,7 +463784,7 @@ }, { "question": "Wash Me", - "icon": "./assets/data/nsi/logos/washme-ca17f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washme-ca17f3.jpg", "osmTags": { "and": [ "self_service=yes", @@ -463441,7 +463801,7 @@ }, { "question": "Washy", - "icon": "./assets/data/nsi/logos/washy-ba3f3f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/washy-ba3f3f.png", "osmTags": { "and": [ "self_service=yes", @@ -463472,7 +463832,7 @@ }, { "question": "衣博士", - "icon": "./assets/data/nsi/logos/drwashing-92267a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drwashing-92267a.png", "osmTags": { "and": [ "self_service=yes", @@ -463493,7 +463853,7 @@ }, { "question": "Aigner", - "icon": "./assets/data/nsi/logos/aigner-beb4a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aigner-beb4a5.jpg", "osmTags": { "and": [ "shop=leather", @@ -463509,7 +463869,7 @@ }, { "question": "Art-93", - "icon": "./assets/data/nsi/logos/art93-b8d727.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/art93-b8d727.jpg", "osmTags": { "and": [ "shop=leather", @@ -463544,7 +463904,7 @@ }, { "question": "Hidesign", - "icon": "./assets/data/nsi/logos/hidesign-0fedbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hidesign-0fedbd.jpg", "osmTags": { "and": [ "shop=leather", @@ -463560,7 +463920,7 @@ }, { "question": "Picard", - "icon": "./assets/data/nsi/logos/picard-da4c8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/picard-da4c8c.jpg", "osmTags": { "and": [ "shop=leather", @@ -463576,7 +463936,7 @@ }, { "question": "Vélez", - "icon": "./assets/data/nsi/logos/velez-38a801.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/velez-38a801.jpg", "osmTags": { "and": [ "shop=leather", @@ -463592,7 +463952,7 @@ }, { "question": "Beacon Lighting", - "icon": "./assets/data/nsi/logos/beaconlighting-d69138.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beaconlighting-d69138.png", "osmTags": { "and": [ "shop=lighting", @@ -463608,7 +463968,7 @@ }, { "question": "Lamps Plus", - "icon": "./assets/data/nsi/logos/lampsplus-00df70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lampsplus-00df70.jpg", "osmTags": { "and": [ "shop=lighting", @@ -463624,7 +463984,7 @@ }, { "question": "Lumimart", - "icon": "./assets/data/nsi/logos/lumimart-cc1c34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lumimart-cc1c34.jpg", "osmTags": { "and": [ "shop=lighting", @@ -463640,7 +464000,7 @@ }, { "question": "Mister Minit", - "icon": "./assets/data/nsi/logos/misterminit-b68e86.png", + "icon": "https://data.mapcomplete.org/nsi//logos/misterminit-b68e86.png", "osmTags": { "and": [ "shop=locksmith", @@ -463656,7 +464016,7 @@ }, { "question": "OS.9", - "icon": "./assets/data/nsi/logos/os9-a897ac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/os9-a897ac.png", "osmTags": { "and": [ "shop=locksmith", @@ -463672,7 +464032,7 @@ }, { "question": "Timpson", - "icon": "./assets/data/nsi/logos/timpson-5c571a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timpson-5c571a.jpg", "osmTags": { "and": [ "shop=locksmith", @@ -463754,7 +464114,7 @@ }, { "question": "Loterías y Apuestas del Estado", - "icon": "./assets/data/nsi/logos/loteriasyapuestasdelestado-1a20a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/loteriasyapuestasdelestado-1a20a0.svg", "osmTags": { "and": [ "shop=lottery", @@ -463770,7 +464130,7 @@ }, { "question": "Lotto (Polska)", - "icon": "./assets/data/nsi/logos/lotto-646c16.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotto-646c16.svg", "osmTags": { "and": [ "shop=lottery", @@ -463786,16 +464146,16 @@ }, { "question": "ONCE", - "icon": "./assets/data/nsi/logos/once-1a20a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/once-1a20a0.jpg", "osmTags": { "and": [ - "official_name=Organización Nacional de Ciegos Españoles", "shop=lottery", { "or": [ "brand=ONCE", "brand:wikidata=Q1750397", - "name=ONCE" + "name=ONCE", + "official_name=Organización Nacional de Ciegos Españoles" ] } ] @@ -463919,12 +464279,9 @@ }, { "question": "宝くじ", - "icon": "./assets/data/nsi/logos/takarakuji-760f8f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/takarakuji-760f8f.png", "osmTags": { "and": [ - "official_name=全国自治宝くじ", - "official_name:en=National Autonomous Lottery", - "official_name:ja=全国自治宝くじ", "shop=lottery", { "or": [ @@ -463934,7 +464291,10 @@ "brand:wikidata=Q87824893", "name=宝くじ", "name:en=Takarakuji", - "name:ja=宝くじ" + "name:ja=宝くじ", + "official_name=全国自治宝くじ", + "official_name:en=National Autonomous Lottery", + "official_name:ja=全国自治宝くじ" ] } ] @@ -463942,7 +464302,7 @@ }, { "question": "CityMall", - "icon": "./assets/data/nsi/logos/citymall-ff995d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citymall-ff995d.jpg", "osmTags": { "and": [ "shop=mall", @@ -463961,7 +464321,7 @@ }, { "question": "Direct Factory Outlets", - "icon": "./assets/data/nsi/logos/directfactoryoutlets-3fb812.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/directfactoryoutlets-3fb812.jpg", "osmTags": { "and": [ "shop=mall", @@ -463978,7 +464338,7 @@ }, { "question": "GPT Group", - "icon": "./assets/data/nsi/logos/gptgroup-3fb812.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gptgroup-3fb812.jpg", "osmTags": { "and": [ "shop=mall", @@ -463994,7 +464354,7 @@ }, { "question": "HomeCo", - "icon": "./assets/data/nsi/logos/homeco-3fb812.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homeco-3fb812.jpg", "osmTags": { "and": [ "shop=mall", @@ -464010,7 +464370,7 @@ }, { "question": "McArthurGlen Designer Outlet", - "icon": "./assets/data/nsi/logos/mcarthurglendesigneroutlet-c5d183.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mcarthurglendesigneroutlet-c5d183.png", "osmTags": { "and": [ "shop=mall", @@ -464026,7 +464386,7 @@ }, { "question": "Tanger Outlets", - "icon": "./assets/data/nsi/logos/tangeroutlets-7adb3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tangeroutlets-7adb3b.jpg", "osmTags": { "and": [ "shop=mall", @@ -464061,7 +464421,7 @@ }, { "question": "Vicinity Centres", - "icon": "./assets/data/nsi/logos/vicinitycentres-3fb812.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vicinitycentres-3fb812.jpg", "osmTags": { "and": [ "shop=mall", @@ -464077,7 +464437,7 @@ }, { "question": "WalterMart", - "icon": "./assets/data/nsi/logos/waltermart-ff995d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/waltermart-ff995d.png", "osmTags": { "and": [ "shop=mall", @@ -464093,7 +464453,7 @@ }, { "question": "Westfield (Europe/USA)", - "icon": "./assets/data/nsi/logos/westfield-d9ac7d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfield-d9ac7d.svg", "osmTags": { "and": [ "shop=mall", @@ -464111,7 +464471,7 @@ }, { "question": "Westfield (Oceania)", - "icon": "./assets/data/nsi/logos/westfield-1e4415.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfield-1e4415.svg", "osmTags": { "and": [ "shop=mall", @@ -464145,7 +464505,7 @@ }, { "question": "アリオ", - "icon": "./assets/data/nsi/logos/ario-ee1aa0.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/ario-ee1aa0.gif", "osmTags": { "and": [ "shop=mall", @@ -464165,7 +464525,7 @@ }, { "question": "イオンモール", - "icon": "./assets/data/nsi/logos/aeonmall-ee1aa0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeonmall-ee1aa0.svg", "osmTags": { "and": [ "shop=mall", @@ -464199,7 +464559,7 @@ }, { "question": "Banahaw Heals Spa", - "icon": "./assets/data/nsi/logos/banahawhealsspa-c08293.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banahawhealsspa-c08293.jpg", "osmTags": { "and": [ "shop=massage", @@ -464215,7 +464575,7 @@ }, { "question": "Elements Massage", - "icon": "./assets/data/nsi/logos/elementsmassage-17cf41.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elementsmassage-17cf41.png", "osmTags": { "and": [ "shop=massage", @@ -464231,7 +464591,7 @@ }, { "question": "Hand & Stone Massage and Facial Spa", - "icon": "./assets/data/nsi/logos/handandstonemassageandfacialspa-12d342.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/handandstonemassageandfacialspa-12d342.jpg", "osmTags": { "and": [ "shop=massage", @@ -464247,7 +464607,7 @@ }, { "question": "Massage Addict", - "icon": "./assets/data/nsi/logos/massageaddict-23506d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/massageaddict-23506d.png", "osmTags": { "and": [ "shop=massage", @@ -464263,7 +464623,7 @@ }, { "question": "Massage Envy", - "icon": "./assets/data/nsi/logos/massageenvy-12d342.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/massageenvy-12d342.jpg", "osmTags": { "and": [ "shop=massage", @@ -464279,7 +464639,7 @@ }, { "question": "Massage Heights", - "icon": "./assets/data/nsi/logos/massageheights-17cf41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/massageheights-17cf41.jpg", "osmTags": { "and": [ "shop=massage", @@ -464295,7 +464655,7 @@ }, { "question": "Re.Ra.Ku", - "icon": "./assets/data/nsi/logos/reraku-22d14b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reraku-22d14b.jpg", "osmTags": { "and": [ "shop=massage", @@ -464329,7 +464689,7 @@ }, { "question": "カラダファクトリー", - "icon": "./assets/data/nsi/logos/karadafactory-22d14b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/karadafactory-22d14b.png", "osmTags": { "and": [ "shop=massage", @@ -464349,7 +464709,7 @@ }, { "question": "りらくる", - "icon": "./assets/data/nsi/logos/relxle-22d14b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/relxle-22d14b.jpg", "osmTags": { "and": [ "shop=massage", @@ -464369,7 +464729,7 @@ }, { "question": "Bastide", - "icon": "./assets/data/nsi/logos/bastide-6c70b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bastide-6c70b6.jpg", "osmTags": { "and": [ "shop=medical_supply", @@ -464385,7 +464745,7 @@ }, { "question": "BioPed", - "icon": "./assets/data/nsi/logos/bioped-615001.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bioped-615001.png", "osmTags": { "and": [ "shop=medical_supply", @@ -464416,7 +464776,7 @@ }, { "question": "National Seating & Mobility", - "icon": "./assets/data/nsi/logos/nationalseatingandmobility-e652bb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalseatingandmobility-e652bb.png", "osmTags": { "and": [ "shop=medical_supply", @@ -464432,7 +464792,7 @@ }, { "question": "Orto Smart", - "icon": "./assets/data/nsi/logos/ortosmart-f82bbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ortosmart-f82bbe.jpg", "osmTags": { "and": [ "shop=medical_supply", @@ -464448,7 +464808,7 @@ }, { "question": "Pofam-Poznań", - "icon": "./assets/data/nsi/logos/pofampoznan-e709d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pofampoznan-e709d7.png", "osmTags": { "and": [ "shop=medical_supply", @@ -464464,7 +464824,7 @@ }, { "question": "Thermo Fisher Scientific", - "icon": "./assets/data/nsi/logos/thermofisherscientific-8a6de9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thermofisherscientific-8a6de9.png", "osmTags": { "and": [ "shop=medical_supply", @@ -464508,7 +464868,7 @@ }, { "question": "Ортека", - "icon": "./assets/data/nsi/logos/823e1f-d15566.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/823e1f-d15566.jpg", "osmTags": { "and": [ "shop=medical_supply", @@ -464524,7 +464884,7 @@ }, { "question": "Рідні Медтехніка", - "icon": "./assets/data/nsi/logos/9cfa6f-f82bbe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/9cfa6f-f82bbe.png", "osmTags": { "and": [ "shop=medical_supply", @@ -464554,7 +464914,7 @@ }, { "question": "2degrees", - "icon": "./assets/data/nsi/logos/2degrees-5219b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2degrees-5219b0.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464570,7 +464930,7 @@ }, { "question": "3 Store (Ireland)", - "icon": "./assets/data/nsi/logos/3store-dbafb9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3store-dbafb9.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464600,7 +464960,7 @@ }, { "question": "Airtel", - "icon": "./assets/data/nsi/logos/airtel-62d34e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airtel-62d34e.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464616,7 +464976,7 @@ }, { "question": "AT&T", - "icon": "./assets/data/nsi/logos/atandt-1b6a25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atandt-1b6a25.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464632,7 +464992,7 @@ }, { "question": "ATOM", - "icon": "./assets/data/nsi/logos/atom-bb2221.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atom-bb2221.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464648,7 +465008,7 @@ }, { "question": "auショップ", - "icon": "./assets/data/nsi/logos/aushop-0a8be9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aushop-0a8be9.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -464668,7 +465028,7 @@ }, { "question": "AY YILDIZ", - "icon": "./assets/data/nsi/logos/ayyildiz-73b980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ayyildiz-73b980.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464684,7 +465044,7 @@ }, { "question": "Best Buy Mobile", - "icon": "./assets/data/nsi/logos/bestbuymobile-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bestbuymobile-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464700,7 +465060,7 @@ }, { "question": "Bitė", - "icon": "./assets/data/nsi/logos/bite-cc5c6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bite-cc5c6f.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464716,7 +465076,7 @@ }, { "question": "Boost Mobile", - "icon": "./assets/data/nsi/logos/boostmobile-ce3e5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boostmobile-ce3e5c.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464732,7 +465092,7 @@ }, { "question": "Bouygues Telecom", - "icon": "./assets/data/nsi/logos/bouyguestelecom-f6fe9a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bouyguestelecom-f6fe9a.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -464748,7 +465108,7 @@ }, { "question": "Carphone Warehouse", - "icon": "./assets/data/nsi/logos/carphonewarehouse-eb0c8f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/carphonewarehouse-eb0c8f.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464783,7 +465143,7 @@ }, { "question": "Chatr", - "icon": "./assets/data/nsi/logos/chatr-947b24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chatr-947b24.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -464799,7 +465159,7 @@ }, { "question": "Claro", - "icon": "./assets/data/nsi/logos/claro-1c9651.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/claro-1c9651.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464815,7 +465175,7 @@ }, { "question": "Cosmote", - "icon": "./assets/data/nsi/logos/cosmote-d5175a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosmote-d5175a.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464831,7 +465191,7 @@ }, { "question": "Cricket Wireless", - "icon": "./assets/data/nsi/logos/cricketwireless-ce3e5c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cricketwireless-ce3e5c.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -464848,7 +465208,7 @@ }, { "question": "DATES MOBILE", - "icon": "./assets/data/nsi/logos/datesmobile-0fdd33.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/datesmobile-0fdd33.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464864,7 +465224,7 @@ }, { "question": "Digicel", - "icon": "./assets/data/nsi/logos/digicel-ee5434.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/digicel-ee5434.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464880,7 +465240,7 @@ }, { "question": "EE", - "icon": "./assets/data/nsi/logos/ee-94b138.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ee-94b138.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464911,7 +465271,7 @@ }, { "question": "Entel", - "icon": "./assets/data/nsi/logos/entel-5960ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entel-5960ea.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464927,7 +465287,7 @@ }, { "question": "Fido", - "icon": "./assets/data/nsi/logos/fido-947b24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fido-947b24.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -464943,7 +465303,7 @@ }, { "question": "Free", - "icon": "./assets/data/nsi/logos/free-f6fe9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/free-f6fe9a.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464959,7 +465319,7 @@ }, { "question": "Freedom Mobile", - "icon": "./assets/data/nsi/logos/freedommobile-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freedommobile-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -464989,7 +465349,7 @@ }, { "question": "Huawei", - "icon": "./assets/data/nsi/logos/huawei-667935.png", + "icon": "https://data.mapcomplete.org/nsi//logos/huawei-667935.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465009,7 +465369,7 @@ }, { "question": "Iliad", - "icon": "./assets/data/nsi/logos/iliad-c4d7ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iliad-c4d7ba.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465040,7 +465400,7 @@ }, { "question": "iShop Mixup", - "icon": "./assets/data/nsi/logos/ishopmixup-fb2f08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ishopmixup-fb2f08.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465070,7 +465430,7 @@ }, { "question": "Koodo", - "icon": "./assets/data/nsi/logos/koodo-947b24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/koodo-947b24.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465086,7 +465446,7 @@ }, { "question": "KPN", - "icon": "./assets/data/nsi/logos/kpn-c7ad94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kpn-c7ad94.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465102,7 +465462,7 @@ }, { "question": "lifecell", - "icon": "./assets/data/nsi/logos/lifecell-985251.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifecell-985251.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465133,7 +465493,7 @@ }, { "question": "MEO", - "icon": "./assets/data/nsi/logos/meo-fcef49.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/meo-fcef49.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465149,7 +465509,7 @@ }, { "question": "Metro by T-Mobile", - "icon": "./assets/data/nsi/logos/metrobytmobile-ce3e5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrobytmobile-ce3e5c.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465166,7 +465526,7 @@ }, { "question": "Mobilezone", - "icon": "./assets/data/nsi/logos/mobilezone-741c3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobilezone-741c3f.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465182,7 +465542,7 @@ }, { "question": "Mobilonline", - "icon": "./assets/data/nsi/logos/mobilonline-0fdd33.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mobilonline-0fdd33.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465207,7 +465567,7 @@ }, { "question": "Moov", - "icon": "./assets/data/nsi/logos/moov-6ab8a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moov-6ab8a4.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465223,7 +465583,7 @@ }, { "question": "Movistar", - "icon": "./assets/data/nsi/logos/movistar-de0f48.png", + "icon": "https://data.mapcomplete.org/nsi//logos/movistar-de0f48.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465239,7 +465599,7 @@ }, { "question": "MTN", - "icon": "./assets/data/nsi/logos/mtn-fe03c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtn-fe03c5.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465255,7 +465615,7 @@ }, { "question": "NOS", - "icon": "./assets/data/nsi/logos/nos-fcef49.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nos-fcef49.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465271,7 +465631,7 @@ }, { "question": "Nova", - "icon": "./assets/data/nsi/logos/nova-d5175a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nova-d5175a.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465301,7 +465661,7 @@ }, { "question": "O2", - "icon": "./assets/data/nsi/logos/o2-8befd0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/o2-8befd0.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465317,7 +465677,7 @@ }, { "question": "Odido", - "icon": "./assets/data/nsi/logos/odido-c7ad94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/odido-c7ad94.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465347,7 +465707,7 @@ }, { "question": "Oppo", - "icon": "./assets/data/nsi/logos/oppo-ee5434.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oppo-ee5434.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465363,7 +465723,7 @@ }, { "question": "Optie1", - "icon": "./assets/data/nsi/logos/optie1-c7ad94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optie1-c7ad94.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465379,7 +465739,7 @@ }, { "question": "Optus", - "icon": "./assets/data/nsi/logos/optus-bae8bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optus-bae8bc.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465395,7 +465755,7 @@ }, { "question": "Orange", - "icon": "./assets/data/nsi/logos/orange-ee5434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orange-ee5434.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465411,7 +465771,7 @@ }, { "question": "PEP Cell", - "icon": "./assets/data/nsi/logos/pepcell-43981d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pepcell-43981d.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465427,7 +465787,7 @@ }, { "question": "Personal", - "icon": "./assets/data/nsi/logos/personal-3c681b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/personal-3c681b.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465443,7 +465803,7 @@ }, { "question": "Phone House", - "icon": "./assets/data/nsi/logos/phonehouse-cf5d3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phonehouse-cf5d3e.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465459,7 +465819,7 @@ }, { "question": "Play", - "icon": "./assets/data/nsi/logos/play-914a2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/play-914a2a.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -465475,7 +465835,7 @@ }, { "question": "Plus", - "icon": "./assets/data/nsi/logos/plus-914a2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plus-914a2a.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465491,7 +465851,7 @@ }, { "question": "Rogers", - "icon": "./assets/data/nsi/logos/rogers-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rogers-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465507,7 +465867,7 @@ }, { "question": "Safaricom (Ethiopia)", - "icon": "./assets/data/nsi/logos/safaricom-158a4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safaricom-158a4a.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465523,7 +465883,7 @@ }, { "question": "Safaricom (Kenya)", - "icon": "./assets/data/nsi/logos/safaricom-46e307.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safaricom-46e307.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465539,7 +465899,7 @@ }, { "question": "SFR", - "icon": "./assets/data/nsi/logos/sfr-ba7290.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sfr-ba7290.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465555,7 +465915,7 @@ }, { "question": "Smartshop", - "icon": "./assets/data/nsi/logos/smartshop-0fdd33.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smartshop-0fdd33.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465571,7 +465931,7 @@ }, { "question": "Spark New Zealand", - "icon": "./assets/data/nsi/logos/spark-5219b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spark-5219b0.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465587,7 +465947,7 @@ }, { "question": "Sprint", - "icon": "./assets/data/nsi/logos/sprint-ce3e5c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sprint-ce3e5c.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465603,7 +465963,7 @@ }, { "question": "T-Mobile International", - "icon": "./assets/data/nsi/logos/tmobile-5f2bc1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tmobile-5f2bc1.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465619,7 +465979,7 @@ }, { "question": "T-Mobile US", - "icon": "./assets/data/nsi/logos/tmobile-ce3e5c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tmobile-ce3e5c.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465635,7 +465995,7 @@ }, { "question": "Tbooth Wireless", - "icon": "./assets/data/nsi/logos/tboothwireless-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tboothwireless-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465651,7 +466011,7 @@ }, { "question": "Telcel", - "icon": "./assets/data/nsi/logos/telcel-9812f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telcel-9812f0.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465667,7 +466027,7 @@ }, { "question": "Tele2", - "icon": "./assets/data/nsi/logos/tele2-ee5434.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tele2-ee5434.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465683,7 +466043,7 @@ }, { "question": "Telekom", - "icon": "./assets/data/nsi/logos/telekom-7c714d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telekom-7c714d.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465699,7 +466059,7 @@ }, { "question": "Telekom Shop", - "icon": "./assets/data/nsi/logos/telekomshop-73b980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telekomshop-73b980.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465716,7 +466076,7 @@ }, { "question": "Telenor Denmark", - "icon": "./assets/data/nsi/logos/telenor-77edfc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenor-77edfc.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465732,7 +466092,7 @@ }, { "question": "Telenor India", - "icon": "./assets/data/nsi/logos/telenor-733df6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenor-733df6.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465748,7 +466108,7 @@ }, { "question": "Telenor Pakistan", - "icon": "./assets/data/nsi/logos/telenor-20e3f8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenor-20e3f8.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465764,7 +466124,7 @@ }, { "question": "Telenor Sweden", - "icon": "./assets/data/nsi/logos/telenor-5d1f83.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenor-5d1f83.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465780,7 +466140,7 @@ }, { "question": "Telenorbutikken", - "icon": "./assets/data/nsi/logos/telenorbutikken-c74974.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenorbutikken-c74974.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465795,7 +466155,7 @@ }, { "question": "Telia", - "icon": "./assets/data/nsi/logos/telia-856553.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telia-856553.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465811,7 +466171,7 @@ }, { "question": "Telkom", - "icon": "./assets/data/nsi/logos/telkom-43981d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telkom-43981d.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465842,7 +466202,7 @@ }, { "question": "Telstra", - "icon": "./assets/data/nsi/logos/telstra-bae8bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telstra-bae8bc.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465858,7 +466218,7 @@ }, { "question": "Telus", - "icon": "./assets/data/nsi/logos/telus-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telus-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465874,7 +466234,7 @@ }, { "question": "Tesco Mobile", - "icon": "./assets/data/nsi/logos/tescomobile-94b138.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tescomobile-94b138.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465890,7 +466250,7 @@ }, { "question": "The Mobile Shop", - "icon": "./assets/data/nsi/logos/themobileshop-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/themobileshop-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465906,7 +466266,7 @@ }, { "question": "Three", - "icon": "./assets/data/nsi/logos/three-94b138.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/three-94b138.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465922,7 +466282,7 @@ }, { "question": "Tigo (Bolivia)", - "icon": "./assets/data/nsi/logos/tigo-90790a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigo-90790a.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465938,7 +466298,7 @@ }, { "question": "Tigo (Colombia)", - "icon": "./assets/data/nsi/logos/tigo-4a4860.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigo-4a4860.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465954,7 +466314,7 @@ }, { "question": "Tigo (El Salvador)", - "icon": "./assets/data/nsi/logos/tigo-e91b0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigo-e91b0c.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465970,7 +466330,7 @@ }, { "question": "Tigo (Guatemala)", - "icon": "./assets/data/nsi/logos/tigo-ee0f07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigo-ee0f07.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -465986,7 +466346,7 @@ }, { "question": "Tigo (Paraguay)", - "icon": "./assets/data/nsi/logos/tigo-98108f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigo-98108f.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466002,7 +466362,7 @@ }, { "question": "TIM", - "icon": "./assets/data/nsi/logos/tim-a66d78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tim-a66d78.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466018,7 +466378,7 @@ }, { "question": "Total by Verizon", - "icon": "./assets/data/nsi/logos/totalbyverizon-ce3e5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/totalbyverizon-ce3e5c.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466034,7 +466394,7 @@ }, { "question": "Türk Telekom", - "icon": "./assets/data/nsi/logos/turktelekom-0b23a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turktelekom-0b23a0.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466050,7 +466410,7 @@ }, { "question": "Turkcell", - "icon": "./assets/data/nsi/logos/turkcell-fa064d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkcell-fa064d.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466066,7 +466426,7 @@ }, { "question": "U.S. Cellular", - "icon": "./assets/data/nsi/logos/uscellular-ce3e5c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uscellular-ce3e5c.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466082,7 +466442,7 @@ }, { "question": "UQモバイル", - "icon": "./assets/data/nsi/logos/uqspot-0a8be9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uqspot-0a8be9.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466102,7 +466462,7 @@ }, { "question": "Verizon", - "icon": "./assets/data/nsi/logos/verizon-ce3e5c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/verizon-ce3e5c.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466119,7 +466479,7 @@ }, { "question": "Vidéotron", - "icon": "./assets/data/nsi/logos/videotron-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/videotron-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466135,7 +466495,7 @@ }, { "question": "Viettel Store", - "icon": "./assets/data/nsi/logos/a1prodajnomesto-4fc1f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/a1prodajnomesto-4fc1f0.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466151,7 +466511,7 @@ }, { "question": "Virgin Plus", - "icon": "./assets/data/nsi/logos/virginplus-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginplus-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466167,7 +466527,7 @@ }, { "question": "Vivo", - "icon": "./assets/data/nsi/logos/vivo-7d4fb5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivo-7d4fb5.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466183,7 +466543,7 @@ }, { "question": "Vivo (Brasil)", - "icon": "./assets/data/nsi/logos/vivo-efd65c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivo-efd65c.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466199,7 +466559,7 @@ }, { "question": "Vodacom (D. R. Congo)", - "icon": "./assets/data/nsi/logos/vodacom-dd47b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacom-dd47b4.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466215,7 +466575,7 @@ }, { "question": "Vodacom (Lesotho)", - "icon": "./assets/data/nsi/logos/vodacom-60670b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacom-60670b.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466231,7 +466591,7 @@ }, { "question": "Vodacom (Moçambique)", - "icon": "./assets/data/nsi/logos/vodacom-4ee583.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacom-4ee583.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466247,7 +466607,7 @@ }, { "question": "Vodacom (South Africa)", - "icon": "./assets/data/nsi/logos/vodacom-43981d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacom-43981d.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466263,7 +466623,7 @@ }, { "question": "Vodacom (Tanzania)", - "icon": "./assets/data/nsi/logos/vodacom-6656e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacom-6656e3.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466279,7 +466639,7 @@ }, { "question": "Vodafone", - "icon": "./assets/data/nsi/logos/vodafone-2a2469.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodafone-2a2469.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466295,7 +466655,7 @@ }, { "question": "Vodafone (Egypt)", - "icon": "./assets/data/nsi/logos/vodafone-08fda3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodafone-08fda3.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466311,7 +466671,7 @@ }, { "question": "Vodafone (Україна)", - "icon": "./assets/data/nsi/logos/vodafone-985251.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vodafone-985251.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466327,7 +466687,7 @@ }, { "question": "Vodafone Idea", - "icon": "./assets/data/nsi/logos/vodafoneidea-733df6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodafoneidea-733df6.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466343,7 +466703,7 @@ }, { "question": "Walmart Wireless", - "icon": "./assets/data/nsi/logos/walmartwireless-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartwireless-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466359,7 +466719,7 @@ }, { "question": "WIFI_ETECSA", - "icon": "./assets/data/nsi/logos/wifietecsa-9a8553.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wifietecsa-9a8553.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466375,7 +466735,7 @@ }, { "question": "Wind Tre", - "icon": "./assets/data/nsi/logos/windtre-c4d7ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/windtre-c4d7ba.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466391,7 +466751,7 @@ }, { "question": "WirelessWave", - "icon": "./assets/data/nsi/logos/wirelesswave-947b24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wirelesswave-947b24.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466407,7 +466767,7 @@ }, { "question": "WOW! Mobile Boutique", - "icon": "./assets/data/nsi/logos/wowmobileboutique-947b24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wowmobileboutique-947b24.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466423,7 +466783,7 @@ }, { "question": "Xiaomi", - "icon": "./assets/data/nsi/logos/xiaomi-667935.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xiaomi-667935.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466439,7 +466799,7 @@ }, { "question": "Yoigo", - "icon": "./assets/data/nsi/logos/yoigo-7135b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yoigo-7135b5.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466455,7 +466815,7 @@ }, { "question": "yourfone", - "icon": "./assets/data/nsi/logos/yourfone-73b980.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yourfone-73b980.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466471,7 +466831,7 @@ }, { "question": "Zagg", - "icon": "./assets/data/nsi/logos/zagg-dac92d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zagg-dac92d.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466487,7 +466847,7 @@ }, { "question": "Γερμανός", - "icon": "./assets/data/nsi/logos/germanos-602a3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/germanos-602a3b.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466505,7 +466865,7 @@ }, { "question": "Алло", - "icon": "./assets/data/nsi/logos/77c523-985251.png", + "icon": "https://data.mapcomplete.org/nsi//logos/77c523-985251.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466521,7 +466881,7 @@ }, { "question": "Билайн", - "icon": "./assets/data/nsi/logos/beeline-3f097a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beeline-3f097a.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466541,7 +466901,7 @@ }, { "question": "Евросеть", - "icon": "./assets/data/nsi/logos/euroset-62982a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/euroset-62982a.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466561,7 +466921,7 @@ }, { "question": "Жжук", - "icon": "./assets/data/nsi/logos/263e37-985251.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/263e37-985251.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466577,7 +466937,7 @@ }, { "question": "Київстар", - "icon": "./assets/data/nsi/logos/kyivstar-985251.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kyivstar-985251.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466597,7 +466957,7 @@ }, { "question": "Мегафон", - "icon": "./assets/data/nsi/logos/megafon-18f86b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megafon-18f86b.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466617,7 +466977,7 @@ }, { "question": "МТС", - "icon": "./assets/data/nsi/logos/mts-3162ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mts-3162ba.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466651,7 +467011,7 @@ }, { "question": "Связной", - "icon": "./assets/data/nsi/logos/svyaznoy-fee8f4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/svyaznoy-fee8f4.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466685,7 +467045,7 @@ }, { "question": "Теле2", - "icon": "./assets/data/nsi/logos/tele2-2c407d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tele2-2c407d.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466719,7 +467079,7 @@ }, { "question": "სელფი", - "icon": "./assets/data/nsi/logos/cellfie-693072.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cellfie-693072.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466739,7 +467099,7 @@ }, { "question": "הוט מובייל", - "icon": "./assets/data/nsi/logos/hotmobile-0c2e23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotmobile-0c2e23.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466759,7 +467119,7 @@ }, { "question": "פלאפון", - "icon": "./assets/data/nsi/logos/pelephone-0c2e23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pelephone-0c2e23.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466779,7 +467139,7 @@ }, { "question": "פרטנר", - "icon": "./assets/data/nsi/logos/partner-0c2e23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/partner-0c2e23.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466799,7 +467159,7 @@ }, { "question": "ソフトバンクショップ", - "icon": "./assets/data/nsi/logos/softbankshop-0a8be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/softbankshop-0a8be9.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466819,7 +467179,7 @@ }, { "question": "テルル", - "icon": "./assets/data/nsi/logos/teluru-0a8be9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/teluru-0a8be9.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466839,7 +467199,7 @@ }, { "question": "ドコモショップ", - "icon": "./assets/data/nsi/logos/docomoshop-0a8be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/docomoshop-0a8be9.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466859,7 +467219,7 @@ }, { "question": "ワイモバイル", - "icon": "./assets/data/nsi/logos/ymobile-0a8be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ymobile-0a8be9.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466879,7 +467239,7 @@ }, { "question": "华为", - "icon": "./assets/data/nsi/logos/huawei-a9769c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/huawei-a9769c.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -466899,7 +467259,7 @@ }, { "question": "台灣大哥大", - "icon": "./assets/data/nsi/logos/taiwanmobile-8aaeb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanmobile-8aaeb3.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466919,7 +467279,7 @@ }, { "question": "小米", - "icon": "./assets/data/nsi/logos/mi-c940bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mi-c940bf.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466939,7 +467299,7 @@ }, { "question": "小米 Xiaomi", - "icon": "./assets/data/nsi/logos/mi-5c8743.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mi-5c8743.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466959,7 +467319,7 @@ }, { "question": "楽天モバイル", - "icon": "./assets/data/nsi/logos/rakutenmobile-0a8be9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rakutenmobile-0a8be9.svg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466979,7 +467339,7 @@ }, { "question": "荣耀/Honor", - "icon": "./assets/data/nsi/logos/honor-a9769c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honor-a9769c.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -466999,14 +467359,9 @@ }, { "question": "衛訊 Wilson", - "icon": "./assets/data/nsi/logos/wilson-55ee4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilson-55ee4b.jpg", "osmTags": { "and": [ - "official_name=衛訊電訊 Wilson Communications", - "official_name:en=Wilson Communications", - "official_name:zh=衛訊電訊", - "official_name:zh-Hans=卫讯电讯", - "official_name:zh-Hant=衛訊電訊", "shop=mobile_phone", { "or": [ @@ -467020,7 +467375,12 @@ "name:en=Wilson", "name:zh=衛訊", "name:zh-Hans=卫讯", - "name:zh-Hant=衛訊" + "name:zh-Hant=衛訊", + "official_name=衛訊電訊 Wilson Communications", + "official_name:en=Wilson Communications", + "official_name:zh=衛訊電訊", + "official_name:zh-Hans=卫讯电讯", + "official_name:zh-Hant=衛訊電訊" ] } ] @@ -467028,14 +467388,9 @@ }, { "question": "領域 CityLink", - "icon": "./assets/data/nsi/logos/citylink-55ee4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citylink-55ee4b.jpg", "osmTags": { "and": [ - "official_name=領域電訊 CityLink Electronics", - "official_name:en=CityLink Electronics", - "official_name:zh=領域電訊", - "official_name:zh-Hans=领域电讯", - "official_name:zh-Hant=領域電訊", "shop=mobile_phone", { "or": [ @@ -467049,7 +467404,12 @@ "name:en=CityLink", "name:zh=領域", "name:zh-Hans=领域", - "name:zh-Hant=領域" + "name:zh-Hant=領域", + "official_name=領域電訊 CityLink Electronics", + "official_name:en=CityLink Electronics", + "official_name:zh=領域電訊", + "official_name:zh-Hans=领域电讯", + "official_name:zh-Hant=領域電訊" ] } ] @@ -467057,7 +467417,7 @@ }, { "question": "Casetify", - "icon": "./assets/data/nsi/logos/casetify-6f7af9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/casetify-6f7af9.png", "osmTags": { "and": [ "shop=mobile_phone_accessories", @@ -467073,7 +467433,7 @@ }, { "question": "La Casa de las Carcasas", - "icon": "./assets/data/nsi/logos/lacasadelascarcasas-09f8fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacasadelascarcasas-09f8fb.jpg", "osmTags": { "and": [ "shop=mobile_phone_accessories", @@ -467089,7 +467449,7 @@ }, { "question": "Mobo", - "icon": "./assets/data/nsi/logos/mobo-537ee3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobo-537ee3.jpg", "osmTags": { "and": [ "shop=mobile_phone_accessories", @@ -467105,7 +467465,7 @@ }, { "question": "倍思", - "icon": "./assets/data/nsi/logos/baseus-f3af44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baseus-f3af44.jpg", "osmTags": { "and": [ "shop=mobile_phone_accessories", @@ -467163,7 +467523,7 @@ }, { "question": "ポポンデッタ", - "icon": "./assets/data/nsi/logos/popondetta-a15586.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popondetta-a15586.jpg", "osmTags": { "and": [ "shop=model", @@ -467183,7 +467543,7 @@ }, { "question": "1st Heritage Credit", - "icon": "./assets/data/nsi/logos/1stheritagecredit-453289.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1stheritagecredit-453289.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467199,7 +467559,7 @@ }, { "question": "ACE Cash Express", - "icon": "./assets/data/nsi/logos/acecashexpress-f9c954.png", + "icon": "https://data.mapcomplete.org/nsi//logos/acecashexpress-f9c954.png", "osmTags": { "and": [ "shop=money_lender", @@ -467215,7 +467575,7 @@ }, { "question": "Advance America", - "icon": "./assets/data/nsi/logos/advanceamerica-f9c954.png", + "icon": "https://data.mapcomplete.org/nsi//logos/advanceamerica-f9c954.png", "osmTags": { "and": [ "shop=money_lender", @@ -467231,7 +467591,7 @@ }, { "question": "Advance Financial", - "icon": "./assets/data/nsi/logos/advancefinancial-f9c954.png", + "icon": "https://data.mapcomplete.org/nsi//logos/advancefinancial-f9c954.png", "osmTags": { "and": [ "shop=money_lender", @@ -467339,7 +467699,7 @@ }, { "question": "Cash Store", - "icon": "./assets/data/nsi/logos/cashstore-f9c954.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cashstore-f9c954.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467355,7 +467715,7 @@ }, { "question": "Cashco Financial", - "icon": "./assets/data/nsi/logos/cashcofinancial-d5f811.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cashcofinancial-d5f811.png", "osmTags": { "and": [ "shop=money_lender", @@ -467386,7 +467746,7 @@ }, { "question": "Check 'n Go", - "icon": "./assets/data/nsi/logos/checkngo-f9c954.png", + "icon": "https://data.mapcomplete.org/nsi//logos/checkngo-f9c954.png", "osmTags": { "and": [ "shop=money_lender", @@ -467402,7 +467762,7 @@ }, { "question": "Check Into Cash", - "icon": "./assets/data/nsi/logos/checkintocash-f9c954.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/checkintocash-f9c954.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467418,7 +467778,7 @@ }, { "question": "CheckSmart", - "icon": "./assets/data/nsi/logos/checksmart-f9c954.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/checksmart-f9c954.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467452,7 +467812,7 @@ }, { "question": "Crefisa", - "icon": "./assets/data/nsi/logos/crefisa-46cd18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crefisa-46cd18.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467467,7 +467827,7 @@ }, { "question": "EasyCredit", - "icon": "./assets/data/nsi/logos/easycredit-937eaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easycredit-937eaf.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467483,7 +467843,7 @@ }, { "question": "easyfinancial", - "icon": "./assets/data/nsi/logos/easyfinancial-d5f811.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easyfinancial-d5f811.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467514,7 +467874,7 @@ }, { "question": "Findomestic", - "icon": "./assets/data/nsi/logos/findomestic-a71b6e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/findomestic-a71b6e.png", "osmTags": { "and": [ "shop=money_lender", @@ -467530,7 +467890,7 @@ }, { "question": "First Virginia", - "icon": "./assets/data/nsi/logos/firstvirginia-f9c954.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstvirginia-f9c954.png", "osmTags": { "and": [ "shop=money_lender", @@ -467621,7 +467981,7 @@ }, { "question": "Money Mart", - "icon": "./assets/data/nsi/logos/moneymart-b33bc6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/moneymart-b33bc6.png", "osmTags": { "and": [ "shop=money_lender", @@ -467652,7 +468012,7 @@ }, { "question": "OneMain Financial", - "icon": "./assets/data/nsi/logos/onemainfinancial-f9c954.png", + "icon": "https://data.mapcomplete.org/nsi//logos/onemainfinancial-f9c954.png", "osmTags": { "and": [ "shop=money_lender", @@ -467668,7 +468028,7 @@ }, { "question": "Payomatic", - "icon": "./assets/data/nsi/logos/payomatic-060fd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/payomatic-060fd1.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467684,7 +468044,7 @@ }, { "question": "PLS", - "icon": "./assets/data/nsi/logos/pls-6d6b33.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pls-6d6b33.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467700,10 +468060,9 @@ }, { "question": "Radiowealth Finance", - "icon": "./assets/data/nsi/logos/radiowealthfinance-f85e7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radiowealthfinance-f85e7b.jpg", "osmTags": { "and": [ - "official_name=Radiowealth Finance Company", "shop=money_lender", "short_name=RFC", { @@ -467712,7 +468071,8 @@ "brand:en=Radiowealth Finance", "brand:wikidata=Q94572570", "name=Radiowealth Finance", - "name:en=Radiowealth Finance" + "name:en=Radiowealth Finance", + "official_name=Radiowealth Finance Company" ] } ] @@ -467720,7 +468080,7 @@ }, { "question": "Regional Finance", - "icon": "./assets/data/nsi/logos/regionalfinance-f9c954.png", + "icon": "https://data.mapcomplete.org/nsi//logos/regionalfinance-f9c954.png", "osmTags": { "and": [ "shop=money_lender", @@ -467736,7 +468096,7 @@ }, { "question": "SKOK Śląsk", - "icon": "./assets/data/nsi/logos/skokslask-55f726.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skokslask-55f726.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467782,7 +468142,7 @@ }, { "question": "TitleMax", - "icon": "./assets/data/nsi/logos/titlemax-f9c954.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/titlemax-f9c954.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467798,7 +468158,7 @@ }, { "question": "Tower Loan", - "icon": "./assets/data/nsi/logos/towerloan-f9c954.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/towerloan-f9c954.jpg", "osmTags": { "and": [ "shop=money_lender", @@ -467944,7 +468304,7 @@ }, { "question": "ШвидкоГроші", - "icon": "./assets/data/nsi/logos/733def-085345.png", + "icon": "https://data.mapcomplete.org/nsi//logos/733def-085345.png", "osmTags": { "and": [ "shop=money_lender", @@ -467998,11 +468358,9 @@ }, { "question": "プロミス", - "icon": "./assets/data/nsi/logos/promise-9de2dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/promise-9de2dd.jpg", "osmTags": { "and": [ - "official_name=SMBCコンシューマーファイナンス", - "official_name:en=SMBC Consumer Finance", "shop=money_lender", { "or": [ @@ -468012,7 +468370,9 @@ "brand:wikidata=Q11243682", "name=プロミス", "name:en=Promise", - "name:ja=プロミス" + "name:ja=プロミス", + "official_name=SMBCコンシューマーファイナンス", + "official_name:en=SMBC Consumer Finance" ] } ] @@ -468020,7 +468380,7 @@ }, { "question": "Bajaj", - "icon": "./assets/data/nsi/logos/bajaj-47efa7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bajaj-47efa7.png", "osmTags": { "and": [ "shop=motorcycle", @@ -468036,7 +468396,7 @@ }, { "question": "BMW", - "icon": "./assets/data/nsi/logos/bmw-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmw-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468052,7 +468412,7 @@ }, { "question": "Ducati", - "icon": "./assets/data/nsi/logos/ducati-7610a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ducati-7610a8.png", "osmTags": { "and": [ "shop=motorcycle", @@ -468068,7 +468428,7 @@ }, { "question": "Gogoro", - "icon": "./assets/data/nsi/logos/gogoro-32933d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gogoro-32933d.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468084,7 +468444,7 @@ }, { "question": "Harley-Davidson", - "icon": "./assets/data/nsi/logos/harleydavidson-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harleydavidson-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468100,7 +468460,7 @@ }, { "question": "Hero", - "icon": "./assets/data/nsi/logos/hero-47efa7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hero-47efa7.png", "osmTags": { "and": [ "shop=motorcycle", @@ -468116,7 +468476,7 @@ }, { "question": "Honda", - "icon": "./assets/data/nsi/logos/honda-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honda-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468132,7 +468492,7 @@ }, { "question": "Indian Motorcycle", - "icon": "./assets/data/nsi/logos/indianmotorcycle-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianmotorcycle-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468147,7 +468507,7 @@ }, { "question": "Kawasaki", - "icon": "./assets/data/nsi/logos/kawasaki-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kawasaki-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468163,7 +468523,7 @@ }, { "question": "KTM", - "icon": "./assets/data/nsi/logos/ktm-7610a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ktm-7610a8.png", "osmTags": { "and": [ "shop=motorcycle", @@ -468179,7 +468539,7 @@ }, { "question": "Louis Motorrad", - "icon": "./assets/data/nsi/logos/louismotorrad-5a4a1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louismotorrad-5a4a1c.jpg", "osmTags": { "and": [ "motorcycle:clothes=yes", @@ -468224,7 +468584,7 @@ }, { "question": "Motortrade", - "icon": "./assets/data/nsi/logos/motortrade-7f0c43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/motortrade-7f0c43.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468240,7 +468600,7 @@ }, { "question": "Polaris", - "icon": "./assets/data/nsi/logos/polaris-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polaris-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468255,7 +468615,7 @@ }, { "question": "Polo Motorrad", - "icon": "./assets/data/nsi/logos/polomotorrad-85371d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polomotorrad-85371d.png", "osmTags": { "and": [ "motorcycle:clothes=yes", @@ -468272,7 +468632,7 @@ }, { "question": "Royal Enfield", - "icon": "./assets/data/nsi/logos/royalenfield-47efa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalenfield-47efa7.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468302,7 +468662,7 @@ }, { "question": "Suzuki", - "icon": "./assets/data/nsi/logos/suzuki-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suzuki-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468318,7 +468678,7 @@ }, { "question": "Triumph", - "icon": "./assets/data/nsi/logos/triumph-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/triumph-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468333,7 +468693,7 @@ }, { "question": "TVS", - "icon": "./assets/data/nsi/logos/tvs-47efa7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tvs-47efa7.png", "osmTags": { "and": [ "shop=motorcycle", @@ -468349,7 +468709,7 @@ }, { "question": "Vespa", - "icon": "./assets/data/nsi/logos/vespa-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vespa-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468379,7 +468739,7 @@ }, { "question": "Yamaha", - "icon": "./assets/data/nsi/logos/yamaha-7610a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamaha-7610a8.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468395,7 +468755,7 @@ }, { "question": "バイク王", - "icon": "./assets/data/nsi/logos/bikeo-3c6240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikeo-3c6240.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468415,7 +468775,7 @@ }, { "question": "レッドバロン", - "icon": "./assets/data/nsi/logos/redbaron-3c6240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redbaron-3c6240.jpg", "osmTags": { "and": [ "shop=motorcycle", @@ -468435,7 +468795,7 @@ }, { "question": "Bajaj", - "icon": "./assets/data/nsi/logos/bajaj-99f02f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bajaj-99f02f.png", "osmTags": { "and": [ "shop=motorcycle_repair", @@ -468451,7 +468811,7 @@ }, { "question": "Harley-Davidson", - "icon": "./assets/data/nsi/logos/harleydavidson-217c34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harleydavidson-217c34.jpg", "osmTags": { "and": [ "shop=motorcycle_repair", @@ -468467,7 +468827,7 @@ }, { "question": "Hero", - "icon": "./assets/data/nsi/logos/hero-99f02f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hero-99f02f.png", "osmTags": { "and": [ "shop=motorcycle_repair", @@ -468483,7 +468843,7 @@ }, { "question": "Honda", - "icon": "./assets/data/nsi/logos/honda-217c34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honda-217c34.jpg", "osmTags": { "and": [ "shop=motorcycle_repair", @@ -468499,7 +468859,7 @@ }, { "question": "KTM", - "icon": "./assets/data/nsi/logos/ktm-217c34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ktm-217c34.png", "osmTags": { "and": [ "shop=motorcycle_repair", @@ -468515,7 +468875,7 @@ }, { "question": "三陽機車", - "icon": "./assets/data/nsi/logos/symmotors-f6c934.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/symmotors-f6c934.jpg", "osmTags": { "and": [ "shop=motorcycle_repair", @@ -468535,7 +468895,7 @@ }, { "question": "光陽機車", - "icon": "./assets/data/nsi/logos/kymcomotor-f6c934.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kymcomotor-f6c934.jpg", "osmTags": { "and": [ "shop=motorcycle_repair", @@ -468555,7 +468915,7 @@ }, { "question": "台灣山葉機車", - "icon": "./assets/data/nsi/logos/yamahamotor-f6c934.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yamahamotor-f6c934.png", "osmTags": { "and": [ "shop=motorcycle_repair", @@ -468575,7 +468935,7 @@ }, { "question": "FYE", - "icon": "./assets/data/nsi/logos/fye-41f363.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fye-41f363.jpg", "osmTags": { "and": [ "shop=music", @@ -468591,7 +468951,7 @@ }, { "question": "Golden Discs", - "icon": "./assets/data/nsi/logos/goldendiscs-bbd6e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldendiscs-bbd6e8.jpg", "osmTags": { "and": [ "shop=music", @@ -468607,7 +468967,7 @@ }, { "question": "HMV", - "icon": "./assets/data/nsi/logos/hmv-d8c1af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hmv-d8c1af.jpg", "osmTags": { "and": [ "shop=music", @@ -468623,7 +468983,7 @@ }, { "question": "Oxfam Books & Music", - "icon": "./assets/data/nsi/logos/oxfambooksandmusic-0f8099.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfambooksandmusic-0f8099.jpg", "osmTags": { "and": [ "second_hand=only", @@ -468640,7 +469000,7 @@ }, { "question": "Sunrise Records", - "icon": "./assets/data/nsi/logos/sunriserecords-d8c1af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunriserecords-d8c1af.jpg", "osmTags": { "and": [ "shop=music", @@ -468656,7 +469016,7 @@ }, { "question": "TSUTAYA", - "icon": "./assets/data/nsi/logos/tsutaya-e843fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tsutaya-e843fe.png", "osmTags": { "and": [ "shop=music", @@ -468672,7 +469032,7 @@ }, { "question": "タワーレコード", - "icon": "./assets/data/nsi/logos/towerrecords-178cd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/towerrecords-178cd4.jpg", "osmTags": { "and": [ "shop=music", @@ -468693,7 +469053,7 @@ }, { "question": "ディスクユニオン", - "icon": "./assets/data/nsi/logos/diskunion-178cd4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/diskunion-178cd4.png", "osmTags": { "and": [ "shop=music", @@ -468713,7 +469073,7 @@ }, { "question": "Guitar Center", - "icon": "./assets/data/nsi/logos/guitarcenter-b8f0e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guitarcenter-b8f0e1.jpg", "osmTags": { "and": [ "shop=musical_instrument", @@ -468729,7 +469089,7 @@ }, { "question": "Long & McQuade", - "icon": "./assets/data/nsi/logos/longandmcquade-25c79c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longandmcquade-25c79c.jpg", "osmTags": { "and": [ "shop=musical_instrument", @@ -468745,7 +469105,7 @@ }, { "question": "Music & Arts", - "icon": "./assets/data/nsi/logos/musicandarts-b8f0e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/musicandarts-b8f0e1.jpg", "osmTags": { "and": [ "shop=musical_instrument", @@ -468761,7 +469121,7 @@ }, { "question": "Muziker", - "icon": "./assets/data/nsi/logos/muziker-ae1cfe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/muziker-ae1cfe.jpg", "osmTags": { "and": [ "shop=musical_instrument", @@ -468777,7 +469137,7 @@ }, { "question": "山野楽器", - "icon": "./assets/data/nsi/logos/yamanomusic-84d595.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamanomusic-84d595.jpg", "osmTags": { "and": [ "shop=musical_instrument", @@ -468797,7 +469157,7 @@ }, { "question": "島村楽器", - "icon": "./assets/data/nsi/logos/shimamuramusic-84d595.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shimamuramusic-84d595.png", "osmTags": { "and": [ "shop=musical_instrument", @@ -468817,7 +469177,7 @@ }, { "question": "柏斯琴行 Parsons Music", - "icon": "./assets/data/nsi/logos/parsonsmusic-77cd7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parsonsmusic-77cd7c.png", "osmTags": { "and": [ "shop=musical_instrument", @@ -468837,7 +469197,7 @@ }, { "question": "通利琴行 Tom Lee Music", - "icon": "./assets/data/nsi/logos/tomleemusic-77cd7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tomleemusic-77cd7c.png", "osmTags": { "and": [ "shop=musical_instrument", @@ -468857,7 +469217,7 @@ }, { "question": "Central", - "icon": "./assets/data/nsi/logos/central-cce5fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/central-cce5fc.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -468873,7 +469233,7 @@ }, { "question": "Cigo (Deutschland)", - "icon": "./assets/data/nsi/logos/cigo-ae6a07.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cigo-ae6a07.svg", "osmTags": { "and": [ "shop=newsagent", @@ -468890,7 +469250,7 @@ }, { "question": "Cigo (Nederland)", - "icon": "./assets/data/nsi/logos/cigo-308ab8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cigo-308ab8.png", "osmTags": { "and": [ "shop=newsagent", @@ -468921,7 +469281,7 @@ }, { "question": "Gateway Newstands", - "icon": "./assets/data/nsi/logos/gatewaynewstands-96151b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gatewaynewstands-96151b.png", "osmTags": { "and": [ "shop=newsagent", @@ -468937,6 +469297,7 @@ }, { "question": "GECO", + "icon": "https://data.mapcomplete.org/nsi//logos/geco-6f95ad.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -468952,7 +469313,7 @@ }, { "question": "Hudson News", - "icon": "./assets/data/nsi/logos/hudsonnews-a0252c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hudsonnews-a0252c.png", "osmTags": { "and": [ "shop=newsagent", @@ -468968,7 +469329,7 @@ }, { "question": "inmedio", - "icon": "./assets/data/nsi/logos/inmedio-c2bbae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inmedio-c2bbae.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -468984,7 +469345,7 @@ }, { "question": "k kiosk", - "icon": "./assets/data/nsi/logos/kkiosk-3673ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kkiosk-3673ad.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469000,7 +469361,7 @@ }, { "question": "Kolporter", - "icon": "./assets/data/nsi/logos/kolporter-4bc172.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kolporter-4bc172.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469030,7 +469391,7 @@ }, { "question": "Maison de la Presse", - "icon": "./assets/data/nsi/logos/maisondelapresse-007cee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maisondelapresse-007cee.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469046,7 +469407,7 @@ }, { "question": "Newspower", - "icon": "./assets/data/nsi/logos/newspower-04b790.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newspower-04b790.png", "osmTags": { "and": [ "shop=newsagent", @@ -469062,7 +469423,7 @@ }, { "question": "Press & Books", - "icon": "./assets/data/nsi/logos/pressandbooks-b35c93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pressandbooks-b35c93.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469093,7 +469454,7 @@ }, { "question": "Primera", - "icon": "./assets/data/nsi/logos/primera-308ab8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primera-308ab8.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469109,7 +469470,7 @@ }, { "question": "Relay", - "icon": "./assets/data/nsi/logos/relay-e6d891.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/relay-e6d891.svg", "osmTags": { "and": [ "shop=newsagent", @@ -469125,7 +469486,7 @@ }, { "question": "Ruch", - "icon": "./assets/data/nsi/logos/ruch-4bc172.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ruch-4bc172.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469141,7 +469502,7 @@ }, { "question": "Świat Prasy", - "icon": "./assets/data/nsi/logos/swiatprasy-4bc172.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swiatprasy-4bc172.png", "osmTags": { "and": [ "shop=newsagent", @@ -469157,7 +469518,7 @@ }, { "question": "Tabak Press", - "icon": "./assets/data/nsi/logos/tabakpress-5d4c3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tabakpress-5d4c3a.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469173,7 +469534,7 @@ }, { "question": "WHSmith", - "icon": "./assets/data/nsi/logos/whsmith-e6d891.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whsmith-e6d891.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469232,7 +469593,7 @@ }, { "question": "Первая полоса", - "icon": "./assets/data/nsi/logos/f363b9-313f17.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/f363b9-313f17.svg", "osmTags": { "and": [ "shop=newsagent", @@ -469277,7 +469638,7 @@ }, { "question": "日本経済新聞", - "icon": "./assets/data/nsi/logos/thenikkei-0319e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thenikkei-0319e7.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469297,7 +469658,7 @@ }, { "question": "朝日新聞", - "icon": "./assets/data/nsi/logos/asahishimbun-0319e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asahishimbun-0319e7.png", "osmTags": { "and": [ "shop=newsagent", @@ -469317,7 +469678,7 @@ }, { "question": "毎日新聞", - "icon": "./assets/data/nsi/logos/mainichishimbun-0319e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mainichishimbun-0319e7.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469337,7 +469698,7 @@ }, { "question": "産経新聞", - "icon": "./assets/data/nsi/logos/sankeishimbun-0319e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sankeishimbun-0319e7.jpg", "osmTags": { "and": [ "shop=newsagent", @@ -469357,7 +469718,7 @@ }, { "question": "読売新聞", - "icon": "./assets/data/nsi/logos/yomiurishimbun-0319e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yomiurishimbun-0319e7.png", "osmTags": { "and": [ "shop=newsagent", @@ -469392,7 +469753,7 @@ }, { "question": "Body Attack", - "icon": "./assets/data/nsi/logos/bodyattack-65126f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodyattack-65126f.jpg", "osmTags": { "and": [ "shop=nutrition_supplements", @@ -469408,7 +469769,7 @@ }, { "question": "GNC", - "icon": "./assets/data/nsi/logos/gnc-699d49.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gnc-699d49.png", "osmTags": { "and": [ "shop=nutrition_supplements", @@ -469424,7 +469785,7 @@ }, { "question": "HERC'S Nutrition", - "icon": "./assets/data/nsi/logos/hercsnutrition-be7a88.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hercsnutrition-be7a88.png", "osmTags": { "and": [ "shop=nutrition_supplements", @@ -469440,7 +469801,7 @@ }, { "question": "Natur House", - "icon": "./assets/data/nsi/logos/naturhouse-699d49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturhouse-699d49.jpg", "osmTags": { "and": [ "shop=nutrition_supplements", @@ -469471,7 +469832,7 @@ }, { "question": "Popeye's Supplements", - "icon": "./assets/data/nsi/logos/popeyessupplements-be7a88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popeyessupplements-be7a88.jpg", "osmTags": { "and": [ "shop=nutrition_supplements", @@ -469502,7 +469863,7 @@ }, { "question": "The Vitamin Shoppe", - "icon": "./assets/data/nsi/logos/thevitaminshoppe-8feed0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thevitaminshoppe-8feed0.jpg", "osmTags": { "and": [ "shop=nutrition_supplements", @@ -469518,7 +469879,7 @@ }, { "question": "Vitamin World", - "icon": "./assets/data/nsi/logos/vitaminworld-8feed0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitaminworld-8feed0.jpg", "osmTags": { "and": [ "shop=nutrition_supplements", @@ -469534,7 +469895,7 @@ }, { "question": "Vitaminstore", - "icon": "./assets/data/nsi/logos/vitaminstore-e87d47.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitaminstore-e87d47.jpg", "osmTags": { "and": [ "shop=nutrition_supplements", @@ -469564,7 +469925,7 @@ }, { "question": "Mr. Almond", - "icon": "./assets/data/nsi/logos/mralmond-f85d29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mralmond-f85d29.jpg", "osmTags": { "and": [ "shop=nuts", @@ -469580,7 +469941,7 @@ }, { "question": "Rois", - "icon": "./assets/data/nsi/logos/rois-f85d29.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rois-f85d29.png", "osmTags": { "and": [ "shop=nuts", @@ -469598,7 +469959,7 @@ }, { "question": "Ядки Начев", - "icon": "./assets/data/nsi/logos/cedcc3-f85d29.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cedcc3-f85d29.jpg", "osmTags": { "and": [ "shop=nuts", @@ -469652,7 +470013,7 @@ }, { "question": "+Visión", - "icon": "./assets/data/nsi/logos/vision-af475b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vision-af475b.jpg", "osmTags": { "and": [ "shop=optician", @@ -469668,7 +470029,7 @@ }, { "question": "abele optik", - "icon": "./assets/data/nsi/logos/abeleoptik-7fb7e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abeleoptik-7fb7e9.jpg", "osmTags": { "and": [ "shop=optician", @@ -469684,7 +470045,7 @@ }, { "question": "Ace & Tate", - "icon": "./assets/data/nsi/logos/aceandtate-b2ee21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aceandtate-b2ee21.png", "osmTags": { "and": [ "shop=optician", @@ -469700,7 +470061,7 @@ }, { "question": "Acuitis", - "icon": "./assets/data/nsi/logos/acuitis-0a39a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acuitis-0a39a3.jpg", "osmTags": { "and": [ "shop=optician", @@ -469716,7 +470077,7 @@ }, { "question": "aktivoptik", - "icon": "./assets/data/nsi/logos/aktivoptik-7fb7e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aktivoptik-7fb7e9.png", "osmTags": { "and": [ "shop=optician", @@ -469732,7 +470093,7 @@ }, { "question": "Alain Afflelou", - "icon": "./assets/data/nsi/logos/alainafflelou-b3bc92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alainafflelou-b3bc92.jpg", "osmTags": { "and": [ "shop=optician", @@ -469748,7 +470109,7 @@ }, { "question": "America's Best Contacts & Eyeglasses", - "icon": "./assets/data/nsi/logos/americasbestcontactsandeyeglasses-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americasbestcontactsandeyeglasses-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -469765,7 +470126,7 @@ }, { "question": "Apollo-Optik", - "icon": "./assets/data/nsi/logos/apollooptik-7fb7e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apollooptik-7fb7e9.png", "osmTags": { "and": [ "shop=optician", @@ -469782,7 +470143,7 @@ }, { "question": "Asda Opticians", - "icon": "./assets/data/nsi/logos/asdaopticians-610826.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asdaopticians-610826.jpg", "osmTags": { "and": [ "shop=optician", @@ -469798,7 +470159,7 @@ }, { "question": "Atasun Optik", - "icon": "./assets/data/nsi/logos/atasunoptik-74219e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atasunoptik-74219e.jpg", "osmTags": { "and": [ "shop=optician", @@ -469814,7 +470175,7 @@ }, { "question": "Atol", - "icon": "./assets/data/nsi/logos/atol-8cd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atol-8cd79e.jpg", "osmTags": { "and": [ "shop=optician", @@ -469830,7 +470191,7 @@ }, { "question": "Becker + Flöge", - "icon": "./assets/data/nsi/logos/beckerfloge-7fb7e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beckerfloge-7fb7e9.jpg", "osmTags": { "and": [ "shop=optician", @@ -469846,7 +470207,7 @@ }, { "question": "Binder Optik", - "icon": "./assets/data/nsi/logos/binderoptik-7fb7e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/binderoptik-7fb7e9.jpg", "osmTags": { "and": [ "shop=optician", @@ -469862,7 +470223,7 @@ }, { "question": "Boots Opticians", - "icon": "./assets/data/nsi/logos/bootsopticians-610826.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bootsopticians-610826.png", "osmTags": { "and": [ "shop=optician", @@ -469879,7 +470240,7 @@ }, { "question": "Brillen Rottler", - "icon": "./assets/data/nsi/logos/brillenrottler-7fb7e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brillenrottler-7fb7e9.png", "osmTags": { "and": [ "shop=optician", @@ -469896,7 +470257,7 @@ }, { "question": "brillen.de", - "icon": "./assets/data/nsi/logos/brillende-7fb7e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brillende-7fb7e9.jpg", "osmTags": { "and": [ "shop=optician", @@ -469929,7 +470290,7 @@ }, { "question": "Cohen's Fashion Optical", - "icon": "./assets/data/nsi/logos/cohensfashionoptical-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cohensfashionoptical-5b6831.jpg", "osmTags": { "and": [ "healthcare=optometrist", @@ -469947,7 +470308,7 @@ }, { "question": "Costco Optical", - "icon": "./assets/data/nsi/logos/costcooptical-f59838.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcooptical-f59838.svg", "osmTags": { "and": [ "shop=optician", @@ -469963,7 +470324,7 @@ }, { "question": "Cubitts", - "icon": "./assets/data/nsi/logos/cubitts-e62455.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cubitts-e62455.jpg", "osmTags": { "and": [ "shop=optician", @@ -469979,7 +470340,7 @@ }, { "question": "Devlyn", - "icon": "./assets/data/nsi/logos/devlyn-5cd6a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devlyn-5cd6a9.jpg", "osmTags": { "and": [ "shop=optician", @@ -469995,7 +470356,7 @@ }, { "question": "Écouter Voir", - "icon": "./assets/data/nsi/logos/ecoutervoir-0a39a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecoutervoir-0a39a3.jpg", "osmTags": { "and": [ "shop=optician", @@ -470011,7 +470372,7 @@ }, { "question": "Europtica", - "icon": "./assets/data/nsi/logos/europtica-61fd57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/europtica-61fd57.jpg", "osmTags": { "and": [ "healthcare=optometrist", @@ -470028,7 +470389,7 @@ }, { "question": "Eye Wish", - "icon": "./assets/data/nsi/logos/eyewish-719c83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eyewish-719c83.jpg", "osmTags": { "and": [ "shop=optician", @@ -470059,7 +470420,7 @@ }, { "question": "eyes + more", - "icon": "./assets/data/nsi/logos/eyesmore-60ec72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eyesmore-60ec72.jpg", "osmTags": { "and": [ "shop=optician", @@ -470075,7 +470436,7 @@ }, { "question": "Fielmann", - "icon": "./assets/data/nsi/logos/fielmann-f003f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fielmann-f003f4.png", "osmTags": { "and": [ "shop=optician", @@ -470091,7 +470452,7 @@ }, { "question": "FOKUS", - "icon": "./assets/data/nsi/logos/fokus-892407.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fokus-892407.jpg", "osmTags": { "and": [ "shop=optician", @@ -470107,7 +470468,7 @@ }, { "question": "FYidoctors", - "icon": "./assets/data/nsi/logos/fyidoctors-8232b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fyidoctors-8232b6.jpg", "osmTags": { "and": [ "shop=optician", @@ -470123,7 +470484,7 @@ }, { "question": "General Óptica", - "icon": "./assets/data/nsi/logos/generaloptica-61af00.png", + "icon": "https://data.mapcomplete.org/nsi//logos/generaloptica-61af00.png", "osmTags": { "and": [ "shop=optician", @@ -470139,7 +470500,7 @@ }, { "question": "Générale d'Optique", - "icon": "./assets/data/nsi/logos/generaledoptique-8cd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generaledoptique-8cd79e.jpg", "osmTags": { "and": [ "shop=optician", @@ -470169,7 +470530,7 @@ }, { "question": "Grand Optics", - "icon": "./assets/data/nsi/logos/grandoptics-eeb6dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandoptics-eeb6dd.jpg", "osmTags": { "and": [ "shop=optician", @@ -470185,7 +470546,7 @@ }, { "question": "GrandOptical", - "icon": "./assets/data/nsi/logos/grandoptical-e85d12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandoptical-e85d12.jpg", "osmTags": { "and": [ "shop=optician", @@ -470201,7 +470562,7 @@ }, { "question": "GrandVision", - "icon": "./assets/data/nsi/logos/grandvision-740ad9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandvision-740ad9.jpg", "osmTags": { "and": [ "shop=optician", @@ -470217,7 +470578,7 @@ }, { "question": "Hakim Optical", - "icon": "./assets/data/nsi/logos/hakimoptical-8232b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hakimoptical-8232b6.jpg", "osmTags": { "and": [ "shop=optician", @@ -470233,7 +470594,7 @@ }, { "question": "Hans Anders", - "icon": "./assets/data/nsi/logos/hansanders-454042.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hansanders-454042.png", "osmTags": { "and": [ "shop=optician", @@ -470249,7 +470610,7 @@ }, { "question": "Instrumentarium", - "icon": "./assets/data/nsi/logos/instrumentarium-3a4758.png", + "icon": "https://data.mapcomplete.org/nsi//logos/instrumentarium-3a4758.png", "osmTags": { "and": [ "shop=optician", @@ -470265,7 +470626,7 @@ }, { "question": "IRIS", - "icon": "./assets/data/nsi/logos/iris-8232b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iris-8232b6.jpg", "osmTags": { "and": [ "shop=optician", @@ -470281,7 +470642,7 @@ }, { "question": "JCPenney Optical", - "icon": "./assets/data/nsi/logos/jcpenneyoptical-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcpenneyoptical-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -470297,7 +470658,7 @@ }, { "question": "Jimmy Fairly", - "icon": "./assets/data/nsi/logos/jimmyfairly-c63266.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jimmyfairly-c63266.jpg", "osmTags": { "and": [ "shop=optician", @@ -470313,7 +470674,7 @@ }, { "question": "JINS", - "icon": "./assets/data/nsi/logos/jins-b2cb2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jins-b2cb2d.jpg", "osmTags": { "and": [ "shop=optician", @@ -470333,7 +470694,7 @@ }, { "question": "Joy", - "icon": "./assets/data/nsi/logos/joy-eeb6dd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/joy-eeb6dd.png", "osmTags": { "and": [ "shop=optician", @@ -470349,7 +470710,7 @@ }, { "question": "KRASS Optik", - "icon": "./assets/data/nsi/logos/krassoptik-7fb7e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/krassoptik-7fb7e9.png", "osmTags": { "and": [ "shop=optician", @@ -470365,7 +470726,7 @@ }, { "question": "Krys", - "icon": "./assets/data/nsi/logos/krys-8cd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/krys-8cd79e.jpg", "osmTags": { "and": [ "shop=optician", @@ -470381,7 +470742,7 @@ }, { "question": "Leightons", - "icon": "./assets/data/nsi/logos/leightons-610826.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leightons-610826.jpg", "osmTags": { "and": [ "shop=optician", @@ -470397,7 +470758,7 @@ }, { "question": "Lensa", - "icon": "./assets/data/nsi/logos/lensa-16fcad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lensa-16fcad.png", "osmTags": { "and": [ "shop=optician", @@ -470413,7 +470774,7 @@ }, { "question": "LensCrafters", - "icon": "./assets/data/nsi/logos/lenscrafters-108284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lenscrafters-108284.jpg", "osmTags": { "and": [ "shop=optician", @@ -470429,7 +470790,7 @@ }, { "question": "Lenskart", - "icon": "./assets/data/nsi/logos/lenskart-596de2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lenskart-596de2.jpg", "osmTags": { "and": [ "shop=optician", @@ -470445,7 +470806,7 @@ }, { "question": "Lissac", - "icon": "./assets/data/nsi/logos/lissac-0a39a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lissac-0a39a3.jpg", "osmTags": { "and": [ "shop=optician", @@ -470461,7 +470822,7 @@ }, { "question": "Lynx Optique", - "icon": "./assets/data/nsi/logos/lynxoptique-8cd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lynxoptique-8cd79e.jpg", "osmTags": { "and": [ "shop=optician", @@ -470477,7 +470838,7 @@ }, { "question": "MANIA", - "icon": "./assets/data/nsi/logos/mania-32f57e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mania-32f57e.jpg", "osmTags": { "and": [ "shop=optician", @@ -470493,7 +470854,7 @@ }, { "question": "MATT optik", - "icon": "./assets/data/nsi/logos/mattoptik-7fb7e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mattoptik-7fb7e9.jpg", "osmTags": { "and": [ "shop=optician", @@ -470509,7 +470870,7 @@ }, { "question": "Mister Spex", - "icon": "./assets/data/nsi/logos/misterspex-516ee7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/misterspex-516ee7.jpg", "osmTags": { "and": [ "shop=optician", @@ -470540,7 +470901,7 @@ }, { "question": "Multiópticas (Portugal)", - "icon": "./assets/data/nsi/logos/multiopticas-1afd50.png", + "icon": "https://data.mapcomplete.org/nsi//logos/multiopticas-1afd50.png", "osmTags": { "and": [ "shop=optician", @@ -470556,7 +470917,7 @@ }, { "question": "My EyeLab", - "icon": "./assets/data/nsi/logos/myeyelab-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/myeyelab-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -470572,7 +470933,7 @@ }, { "question": "MyEyeDr.", - "icon": "./assets/data/nsi/logos/myeyedr-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/myeyedr-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -470588,7 +470949,7 @@ }, { "question": "NAU!", - "icon": "./assets/data/nsi/logos/nau-740ad9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nau-740ad9.jpg", "osmTags": { "and": [ "shop=optician", @@ -470604,7 +470965,7 @@ }, { "question": "Nissen", - "icon": "./assets/data/nsi/logos/nissen-3a4758.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nissen-3a4758.png", "osmTags": { "and": [ "shop=optician", @@ -470620,7 +470981,7 @@ }, { "question": "Oakley", - "icon": "./assets/data/nsi/logos/oakley-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oakley-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -470636,7 +470997,7 @@ }, { "question": "Oakley Vault", - "icon": "./assets/data/nsi/logos/oakleyvault-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oakleyvault-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -470652,7 +471013,7 @@ }, { "question": "Ofotért", - "icon": "./assets/data/nsi/logos/ofotert-44463c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ofotert-44463c.jpg", "osmTags": { "and": [ "shop=optician", @@ -470668,7 +471029,7 @@ }, { "question": "Oliver Peoples", - "icon": "./assets/data/nsi/logos/oliverpeoples-4fd8bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oliverpeoples-4fd8bc.jpg", "osmTags": { "and": [ "shop=optician", @@ -470684,7 +471045,7 @@ }, { "question": "Oogwereld", - "icon": "./assets/data/nsi/logos/oogwereld-a9a11a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oogwereld-a9a11a.png", "osmTags": { "and": [ "shop=optician", @@ -470700,7 +471061,7 @@ }, { "question": "Opmar", - "icon": "./assets/data/nsi/logos/opmar-74219e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opmar-74219e.jpg", "osmTags": { "and": [ "shop=optician", @@ -470716,7 +471077,7 @@ }, { "question": "OPSM", - "icon": "./assets/data/nsi/logos/opsm-d767a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/opsm-d767a4.png", "osmTags": { "and": [ "shop=optician", @@ -470732,7 +471093,7 @@ }, { "question": "OPTIblu", - "icon": "./assets/data/nsi/logos/optiblu-16fcad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optiblu-16fcad.jpg", "osmTags": { "and": [ "shop=optician", @@ -470748,7 +471109,7 @@ }, { "question": "Optic 2000", - "icon": "./assets/data/nsi/logos/optic2000-7d1aac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optic2000-7d1aac.jpg", "osmTags": { "and": [ "shop=optician", @@ -470764,7 +471125,7 @@ }, { "question": "Optical Center", - "icon": "./assets/data/nsi/logos/opticalcenter-7f892a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opticalcenter-7f892a.jpg", "osmTags": { "and": [ "shop=optician", @@ -470780,7 +471141,7 @@ }, { "question": "Optical Express", - "icon": "./assets/data/nsi/logos/opticalexpress-610826.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opticalexpress-610826.jpg", "osmTags": { "and": [ "shop=optician", @@ -470796,7 +471157,7 @@ }, { "question": "Optical Superstore", - "icon": "./assets/data/nsi/logos/opticalsuperstore-76719f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/opticalsuperstore-76719f.png", "osmTags": { "and": [ "shop=optician", @@ -470812,7 +471173,7 @@ }, { "question": "Opticalia", - "icon": "./assets/data/nsi/logos/opticalia-4fd8bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opticalia-4fd8bc.jpg", "osmTags": { "and": [ "shop=optician", @@ -470828,7 +471189,7 @@ }, { "question": "Opticlasa", - "icon": "./assets/data/nsi/logos/opticlasa-eeb6dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opticlasa-eeb6dd.jpg", "osmTags": { "and": [ "shop=optician", @@ -470846,7 +471207,7 @@ }, { "question": "Opticris", - "icon": "./assets/data/nsi/logos/opticris-16fcad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/opticris-16fcad.jpg", "osmTags": { "and": [ "shop=optician", @@ -470862,7 +471223,7 @@ }, { "question": "Optiker Bode", - "icon": "./assets/data/nsi/logos/optikerbode-7fb7e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optikerbode-7fb7e9.jpg", "osmTags": { "and": [ "shop=optician", @@ -470892,7 +471253,7 @@ }, { "question": "Optiplaza", - "icon": "./assets/data/nsi/logos/optiplaza-ac2de7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/optiplaza-ac2de7.png", "osmTags": { "and": [ "shop=optician", @@ -470908,7 +471269,7 @@ }, { "question": "Oscar Wylee", - "icon": "./assets/data/nsi/logos/oscarwylee-d767a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oscarwylee-d767a4.jpg", "osmTags": { "and": [ "shop=optician", @@ -470924,7 +471285,7 @@ }, { "question": "Óticas Carol", - "icon": "./assets/data/nsi/logos/oticascarol-5c236c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oticascarol-5c236c.jpg", "osmTags": { "and": [ "shop=optician", @@ -470940,7 +471301,7 @@ }, { "question": "Óticas Diniz", - "icon": "./assets/data/nsi/logos/oticasdiniz-5c236c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oticasdiniz-5c236c.png", "osmTags": { "and": [ "shop=optician", @@ -470956,7 +471317,7 @@ }, { "question": "OWNDAYS", - "icon": "./assets/data/nsi/logos/owndays-b2cb2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/owndays-b2cb2d.jpg", "osmTags": { "and": [ "shop=optician", @@ -470976,7 +471337,7 @@ }, { "question": "Pearle", - "icon": "./assets/data/nsi/logos/pearle-603e63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pearle-603e63.jpg", "osmTags": { "and": [ "shop=optician", @@ -471007,7 +471368,7 @@ }, { "question": "Pearle Vision", - "icon": "./assets/data/nsi/logos/pearlevision-108284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pearlevision-108284.jpg", "osmTags": { "and": [ "shop=optician", @@ -471024,7 +471385,7 @@ }, { "question": "pro optik", - "icon": "./assets/data/nsi/logos/prooptik-7fb7e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prooptik-7fb7e9.png", "osmTags": { "and": [ "shop=optician", @@ -471040,7 +471401,7 @@ }, { "question": "Ray-Ban", - "icon": "./assets/data/nsi/logos/rayban-ace229.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rayban-ace229.jpg", "osmTags": { "and": [ "shop=optician", @@ -471056,7 +471417,7 @@ }, { "question": "Salmoiraghi & Viganò", - "icon": "./assets/data/nsi/logos/salmoiraghiandvigano-740ad9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/salmoiraghiandvigano-740ad9.png", "osmTags": { "and": [ "shop=optician", @@ -471072,7 +471433,7 @@ }, { "question": "Scrivens", - "icon": "./assets/data/nsi/logos/scrivens-610826.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scrivens-610826.jpg", "osmTags": { "and": [ "shop=optician", @@ -471088,7 +471449,7 @@ }, { "question": "sehen!wutscher", - "icon": "./assets/data/nsi/logos/sehenwutscher-e307dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sehenwutscher-e307dd.jpg", "osmTags": { "and": [ "shop=optician", @@ -471120,7 +471481,7 @@ }, { "question": "Silmäasema", - "icon": "./assets/data/nsi/logos/silmaasema-3a4758.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/silmaasema-3a4758.jpg", "osmTags": { "and": [ "shop=optician", @@ -471136,7 +471497,7 @@ }, { "question": "Site for Sore Eyes", - "icon": "./assets/data/nsi/logos/siteforsoreeyes-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siteforsoreeyes-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -471152,7 +471513,7 @@ }, { "question": "Sky Optic", - "icon": "./assets/data/nsi/logos/skyoptic-eeb6dd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skyoptic-eeb6dd.png", "osmTags": { "and": [ "shop=optician", @@ -471168,7 +471529,7 @@ }, { "question": "Solaris", - "icon": "./assets/data/nsi/logos/solaris-32829f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/solaris-32829f.jpg", "osmTags": { "and": [ "shop=optician", @@ -471200,7 +471561,7 @@ }, { "question": "Specsavers", - "icon": "./assets/data/nsi/logos/specsavers-4fd8bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/specsavers-4fd8bc.jpg", "osmTags": { "and": [ "shop=optician", @@ -471216,7 +471577,7 @@ }, { "question": "Stanton Optical", - "icon": "./assets/data/nsi/logos/stantonoptical-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stantonoptical-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -471232,7 +471593,7 @@ }, { "question": "Sunglass Hut", - "icon": "./assets/data/nsi/logos/sunglasshut-4fd8bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunglasshut-4fd8bc.jpg", "osmTags": { "and": [ "shop=optician", @@ -471248,7 +471609,7 @@ }, { "question": "SVS Vision", - "icon": "./assets/data/nsi/logos/svsvision-2166b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/svsvision-2166b2.png", "osmTags": { "and": [ "shop=optician", @@ -471264,7 +471625,7 @@ }, { "question": "Synoptik", - "icon": "./assets/data/nsi/logos/synoptik-876f61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synoptik-876f61.jpg", "osmTags": { "and": [ "shop=optician", @@ -471280,7 +471641,7 @@ }, { "question": "Synsam", - "icon": "./assets/data/nsi/logos/synsam-aec081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/synsam-aec081.jpg", "osmTags": { "and": [ "shop=optician", @@ -471326,7 +471687,7 @@ }, { "question": "Visilab", - "icon": "./assets/data/nsi/logos/visilab-fac47f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visilab-fac47f.jpg", "osmTags": { "and": [ "shop=optician", @@ -471342,7 +471703,7 @@ }, { "question": "Vision Express", - "icon": "./assets/data/nsi/logos/visionexpress-4fd8bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visionexpress-4fd8bc.jpg", "osmTags": { "and": [ "shop=optician", @@ -471373,7 +471734,7 @@ }, { "question": "Vision Source", - "icon": "./assets/data/nsi/logos/visionsource-5b6831.png", + "icon": "https://data.mapcomplete.org/nsi//logos/visionsource-5b6831.png", "osmTags": { "and": [ "healthcare=optometrist", @@ -471389,7 +471750,7 @@ }, { "question": "Visionworks", - "icon": "./assets/data/nsi/logos/visionworks-5b6831.png", + "icon": "https://data.mapcomplete.org/nsi//logos/visionworks-5b6831.png", "osmTags": { "and": [ "shop=optician", @@ -471405,7 +471766,7 @@ }, { "question": "Walmart Vision Center", - "icon": "./assets/data/nsi/logos/walmartvisioncenter-5b6831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartvisioncenter-5b6831.jpg", "osmTags": { "and": [ "shop=optician", @@ -471421,7 +471782,7 @@ }, { "question": "Walmart Vision Centre", - "icon": "./assets/data/nsi/logos/walmartvisioncentre-8232b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartvisioncentre-8232b6.jpg", "osmTags": { "and": [ "shop=optician", @@ -471437,7 +471798,7 @@ }, { "question": "Warby Parker", - "icon": "./assets/data/nsi/logos/warbyparker-108284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warbyparker-108284.jpg", "osmTags": { "and": [ "shop=optician", @@ -471453,7 +471814,7 @@ }, { "question": "Zeiss", - "icon": "./assets/data/nsi/logos/zeiss-5c236c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeiss-5c236c.jpg", "osmTags": { "and": [ "shop=optician", @@ -471483,7 +471844,7 @@ }, { "question": "Люксоптика", - "icon": "./assets/data/nsi/logos/luxoptica-15d381.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luxoptica-15d381.jpg", "osmTags": { "and": [ "shop=optician", @@ -471502,7 +471863,7 @@ }, { "question": "Оптика 1st", - "icon": "./assets/data/nsi/logos/optica1st-15d381.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optica1st-15d381.jpg", "osmTags": { "and": [ "shop=optician", @@ -471534,7 +471895,7 @@ }, { "question": "Счастливый взгляд", - "icon": "./assets/data/nsi/logos/deb319-103edc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deb319-103edc.jpg", "osmTags": { "and": [ "shop=optician", @@ -471550,7 +471911,7 @@ }, { "question": "კენარი", - "icon": "./assets/data/nsi/logos/kenari-a1226c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kenari-a1226c.jpg", "osmTags": { "and": [ "shop=optician", @@ -471572,7 +471933,7 @@ }, { "question": "ოპტიმისტი", - "icon": "./assets/data/nsi/logos/optimist-a1226c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optimist-a1226c.jpg", "osmTags": { "and": [ "shop=optician", @@ -471594,7 +471955,7 @@ }, { "question": "რონიკო", - "icon": "./assets/data/nsi/logos/roniko-a1226c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roniko-a1226c.jpg", "osmTags": { "and": [ "shop=optician", @@ -471616,7 +471977,7 @@ }, { "question": "แว่นท็อปเจริญ", - "icon": "./assets/data/nsi/logos/23e947-30a922.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/23e947-30a922.jpg", "osmTags": { "and": [ "shop=optician", @@ -471634,7 +471995,7 @@ }, { "question": "オンデーズ", - "icon": "./assets/data/nsi/logos/owndays-3bd301.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/owndays-3bd301.jpg", "osmTags": { "and": [ "shop=optician", @@ -471654,7 +472015,7 @@ }, { "question": "ジンズ", - "icon": "./assets/data/nsi/logos/jins-3bd301.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jins-3bd301.jpg", "osmTags": { "and": [ "shop=optician", @@ -471674,7 +472035,7 @@ }, { "question": "ゾフ", - "icon": "./assets/data/nsi/logos/zoff-3bd301.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zoff-3bd301.png", "osmTags": { "and": [ "shop=optician", @@ -471694,7 +472055,7 @@ }, { "question": "メガネスーパー", - "icon": "./assets/data/nsi/logos/meganesuper-3bd301.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meganesuper-3bd301.jpg", "osmTags": { "and": [ "shop=optician", @@ -471714,7 +472075,7 @@ }, { "question": "メガネストアー", - "icon": "./assets/data/nsi/logos/meganestore-3bd301.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meganestore-3bd301.png", "osmTags": { "and": [ "shop=optician", @@ -471734,7 +472095,7 @@ }, { "question": "メガネドラッグ", - "icon": "./assets/data/nsi/logos/meganedrug-3bd301.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meganedrug-3bd301.jpg", "osmTags": { "and": [ "shop=optician", @@ -471754,7 +472115,7 @@ }, { "question": "メガネの三城", - "icon": "./assets/data/nsi/logos/parismiki-3bd301.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parismiki-3bd301.jpg", "osmTags": { "and": [ "shop=optician", @@ -471775,7 +472136,7 @@ }, { "question": "亮視點 LensCrafters", - "icon": "./assets/data/nsi/logos/lenscrafters-a3f0f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lenscrafters-a3f0f9.jpg", "osmTags": { "and": [ "shop=optician", @@ -471799,7 +472160,7 @@ }, { "question": "宝岛眼镜", - "icon": "./assets/data/nsi/logos/d4ab36-1ab9a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d4ab36-1ab9a7.jpg", "osmTags": { "and": [ "shop=optician", @@ -471817,7 +472178,7 @@ }, { "question": "寶島眼鏡", - "icon": "./assets/data/nsi/logos/eyesmart-b2cb2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eyesmart-b2cb2d.jpg", "osmTags": { "and": [ "shop=optician", @@ -471864,7 +472225,7 @@ }, { "question": "眼鏡88 Optical 88", - "icon": "./assets/data/nsi/logos/optical88-a3f0f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optical88-a3f0f9.jpg", "osmTags": { "and": [ "shop=optician", @@ -471888,7 +472249,7 @@ }, { "question": "眼鏡市場", - "icon": "./assets/data/nsi/logos/meganeichiba-3bd301.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meganeichiba-3bd301.jpg", "osmTags": { "and": [ "shop=optician", @@ -471908,7 +472269,7 @@ }, { "question": "眼鏡市場 Megane Ichiba", - "icon": "./assets/data/nsi/logos/meganeichiba-b2cb2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meganeichiba-b2cb2d.jpg", "osmTags": { "and": [ "shop=optician", @@ -471932,7 +472293,7 @@ }, { "question": "A.S.Adventure", - "icon": "./assets/data/nsi/logos/asadventure-718831.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asadventure-718831.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -471948,7 +472309,7 @@ }, { "question": "Anaconda", - "icon": "./assets/data/nsi/logos/anaconda-a827df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anaconda-a827df.png", "osmTags": { "and": [ "shop=outdoor", @@ -471964,7 +472325,7 @@ }, { "question": "ANWB", - "icon": "./assets/data/nsi/logos/anwbwinkel-88720f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anwbwinkel-88720f.png", "osmTags": { "and": [ "shop=outdoor", @@ -471980,7 +472341,7 @@ }, { "question": "Au vieux campeur", - "icon": "./assets/data/nsi/logos/auvieuxcampeur-6bb650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/auvieuxcampeur-6bb650.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -471996,7 +472357,7 @@ }, { "question": "Aussie Disposals", - "icon": "./assets/data/nsi/logos/aussiedisposals-a827df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aussiedisposals-a827df.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472012,7 +472373,7 @@ }, { "question": "Bass Pro Shops", - "icon": "./assets/data/nsi/logos/bassproshops-069867.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bassproshops-069867.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472028,7 +472389,7 @@ }, { "question": "BCF", - "icon": "./assets/data/nsi/logos/bcf-a827df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcf-a827df.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472044,7 +472405,7 @@ }, { "question": "Bever", - "icon": "./assets/data/nsi/logos/bever-88720f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bever-88720f.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472060,7 +472421,7 @@ }, { "question": "Bivouac Outdoor", - "icon": "./assets/data/nsi/logos/bivouacoutdoor-f40221.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bivouacoutdoor-f40221.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472077,7 +472438,7 @@ }, { "question": "Blacks", - "icon": "./assets/data/nsi/logos/blacks-f55d12.png", + "icon": "https://data.mapcomplete.org/nsi//logos/blacks-f55d12.png", "osmTags": { "and": [ "shop=outdoor", @@ -472093,7 +472454,7 @@ }, { "question": "Cabela's", - "icon": "./assets/data/nsi/logos/cabelas-069867.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cabelas-069867.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472109,7 +472470,7 @@ }, { "question": "Cape Union Mart", - "icon": "./assets/data/nsi/logos/capeunionmart-fb8ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capeunionmart-fb8ccb.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472125,7 +472486,7 @@ }, { "question": "Cotswold Outdoor", - "icon": "./assets/data/nsi/logos/cotswoldoutdoor-f55d12.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cotswoldoutdoor-f55d12.png", "osmTags": { "and": [ "shop=outdoor", @@ -472141,7 +472502,7 @@ }, { "question": "Eastern Mountain Sports", - "icon": "./assets/data/nsi/logos/easternmountainsports-d32658.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easternmountainsports-d32658.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472158,7 +472519,7 @@ }, { "question": "Eiger", - "icon": "./assets/data/nsi/logos/eiger-19c913.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eiger-19c913.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472174,7 +472535,7 @@ }, { "question": "Ekosport", - "icon": "./assets/data/nsi/logos/ekosport-6bb650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekosport-6bb650.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472190,7 +472551,7 @@ }, { "question": "Espace Montagne", - "icon": "./assets/data/nsi/logos/espacemontagne-6bb650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/espacemontagne-6bb650.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472206,7 +472567,7 @@ }, { "question": "Fjällräven", - "icon": "./assets/data/nsi/logos/fjallraven-069867.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fjallraven-069867.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472222,7 +472583,7 @@ }, { "question": "Fritz Berger", - "icon": "./assets/data/nsi/logos/fritzberger-00734f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fritzberger-00734f.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472238,7 +472599,7 @@ }, { "question": "Gander Outdoors", - "icon": "./assets/data/nsi/logos/ganderoutdoors-a7317e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ganderoutdoors-a7317e.png", "osmTags": { "and": [ "shop=outdoor", @@ -472254,7 +472615,7 @@ }, { "question": "Globetrotter", - "icon": "./assets/data/nsi/logos/globetrotter-00734f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globetrotter-00734f.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472270,7 +472631,7 @@ }, { "question": "Go Outdoors", - "icon": "./assets/data/nsi/logos/gooutdoors-f55d12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gooutdoors-f55d12.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472286,7 +472647,7 @@ }, { "question": "Go Outdoors Express", - "icon": "./assets/data/nsi/logos/gooutdoorsexpress-f55d12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gooutdoorsexpress-f55d12.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472302,7 +472663,7 @@ }, { "question": "Husky", - "icon": "./assets/data/nsi/logos/husky-240bcf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/husky-240bcf.png", "osmTags": { "and": [ "shop=outdoor", @@ -472318,7 +472679,7 @@ }, { "question": "Jack Wolfskin", - "icon": "./assets/data/nsi/logos/jackwolfskin-279671.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jackwolfskin-279671.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472334,7 +472695,7 @@ }, { "question": "Kathmandu", - "icon": "./assets/data/nsi/logos/kathmandu-7b766e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kathmandu-7b766e.png", "osmTags": { "and": [ "shop=outdoor", @@ -472350,7 +472711,7 @@ }, { "question": "L.L.Bean", - "icon": "./assets/data/nsi/logos/llbean-b092d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/llbean-b092d8.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472366,7 +472727,7 @@ }, { "question": "Macpac", - "icon": "./assets/data/nsi/logos/macpac-7b766e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macpac-7b766e.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472382,7 +472743,7 @@ }, { "question": "McTREK", - "icon": "./assets/data/nsi/logos/mctrek-00734f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mctrek-00734f.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472398,7 +472759,7 @@ }, { "question": "MEC Mountain Equipment Company", - "icon": "./assets/data/nsi/logos/mecmountainequipmentcompany-388b66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mecmountainequipmentcompany-388b66.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472414,7 +472775,7 @@ }, { "question": "Millets", - "icon": "./assets/data/nsi/logos/millets-f55d12.png", + "icon": "https://data.mapcomplete.org/nsi//logos/millets-f55d12.png", "osmTags": { "and": [ "shop=outdoor", @@ -472430,7 +472791,7 @@ }, { "question": "Mountain Warehouse", - "icon": "./assets/data/nsi/logos/mountainwarehouse-19caf6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mountainwarehouse-19caf6.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472446,7 +472807,7 @@ }, { "question": "Nature & Découvertes", - "icon": "./assets/data/nsi/logos/natureanddecouvertes-fb7405.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/natureanddecouvertes-fb7405.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472462,7 +472823,7 @@ }, { "question": "Naturkompaniet", - "icon": "./assets/data/nsi/logos/naturkompaniet-ab6c4a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/naturkompaniet-ab6c4a.png", "osmTags": { "and": [ "shop=outdoor", @@ -472478,7 +472839,7 @@ }, { "question": "Outdoor Warehouse", - "icon": "./assets/data/nsi/logos/outdoorwarehouse-fb8ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/outdoorwarehouse-fb8ccb.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472494,7 +472855,7 @@ }, { "question": "Regatta Great Outdoors", - "icon": "./assets/data/nsi/logos/regattagreatoutdoors-d45246.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regattagreatoutdoors-d45246.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472511,16 +472872,16 @@ }, { "question": "REI", - "icon": "./assets/data/nsi/logos/rei-72e82e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rei-72e82e.png", "osmTags": { "and": [ - "official_name=Recreational Equipment, Inc.", "shop=outdoor", { "or": [ "brand=REI", "brand:wikidata=Q3414933", - "name=REI" + "name=REI", + "official_name=Recreational Equipment, Inc." ] } ] @@ -472528,7 +472889,7 @@ }, { "question": "Sierra", - "icon": "./assets/data/nsi/logos/sierra-a7317e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sierra-a7317e.png", "osmTags": { "and": [ "shop=outdoor", @@ -472545,7 +472906,7 @@ }, { "question": "Snow+Rock", - "icon": "./assets/data/nsi/logos/snowrock-f55d12.png", + "icon": "https://data.mapcomplete.org/nsi//logos/snowrock-f55d12.png", "osmTags": { "and": [ "shop=outdoor", @@ -472561,7 +472922,7 @@ }, { "question": "Sportsman's Warehouse", - "icon": "./assets/data/nsi/logos/sportsmanswarehouse-a7317e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportsmanswarehouse-a7317e.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472577,7 +472938,7 @@ }, { "question": "TOG24", - "icon": "./assets/data/nsi/logos/tog24-911a4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tog24-911a4c.png", "osmTags": { "and": [ "shop=outdoor", @@ -472593,7 +472954,7 @@ }, { "question": "Torpedo7", - "icon": "./assets/data/nsi/logos/torpedo7-f40221.png", + "icon": "https://data.mapcomplete.org/nsi//logos/torpedo7-f40221.png", "osmTags": { "and": [ "shop=outdoor", @@ -472609,7 +472970,7 @@ }, { "question": "Trespass", - "icon": "./assets/data/nsi/logos/trespass-0f1422.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trespass-0f1422.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472625,7 +472986,7 @@ }, { "question": "Vaude", - "icon": "./assets/data/nsi/logos/vaude-00734f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vaude-00734f.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472641,7 +473002,7 @@ }, { "question": "上州屋", - "icon": "./assets/data/nsi/logos/johshuya-c097b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johshuya-c097b7.jpg", "osmTags": { "and": [ "shop=outdoor", @@ -472675,7 +473036,7 @@ }, { "question": "E.Leclerc Drive", - "icon": "./assets/data/nsi/logos/eleclercdrive-7ec344.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclercdrive-7ec344.jpg", "osmTags": { "and": [ "drive_through=only", @@ -472706,7 +473067,7 @@ }, { "question": "Lamoda", - "icon": "./assets/data/nsi/logos/lamoda-968c70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamoda-968c70.jpg", "osmTags": { "and": [ "shop=outpost", @@ -472736,7 +473097,7 @@ }, { "question": "Ozon", - "icon": "./assets/data/nsi/logos/ozon-968c70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ozon-968c70.jpg", "osmTags": { "and": [ "shop=outpost", @@ -472766,7 +473127,7 @@ }, { "question": "Rozetka", - "icon": "./assets/data/nsi/logos/rozetka-497ef1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rozetka-497ef1.jpg", "osmTags": { "and": [ "shop=outpost", @@ -472782,7 +473143,7 @@ }, { "question": "Wildberries", - "icon": "./assets/data/nsi/logos/wildberries-f8825b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wildberries-f8825b.jpg", "osmTags": { "and": [ "shop=outpost", @@ -472812,7 +473173,7 @@ }, { "question": "Епіцентр К", - "icon": "./assets/data/nsi/logos/13cf8e-497ef1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/13cf8e-497ef1.jpg", "osmTags": { "and": [ "shop=outpost", @@ -472856,7 +473217,7 @@ }, { "question": "Яндекс.Маркет", - "icon": "./assets/data/nsi/logos/yandexmarket-968c70.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yandexmarket-968c70.svg", "osmTags": { "and": [ "shop=outpost", @@ -472876,7 +473237,7 @@ }, { "question": "Asian Paints", - "icon": "./assets/data/nsi/logos/asianpaints-573ec1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asianpaints-573ec1.jpg", "osmTags": { "and": [ "shop=paint", @@ -472892,7 +473253,7 @@ }, { "question": "Benjamin Moore", - "icon": "./assets/data/nsi/logos/benjaminmoore-7d21ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/benjaminmoore-7d21ae.png", "osmTags": { "and": [ "shop=paint", @@ -472908,7 +473269,7 @@ }, { "question": "Berel", - "icon": "./assets/data/nsi/logos/berel-9cde48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berel-9cde48.jpg", "osmTags": { "and": [ "shop=paint", @@ -472924,7 +473285,7 @@ }, { "question": "Brewers", - "icon": "./assets/data/nsi/logos/brewers-058646.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brewers-058646.png", "osmTags": { "and": [ "shop=paint", @@ -472940,7 +473301,7 @@ }, { "question": "Brillux", - "icon": "./assets/data/nsi/logos/brillux-7853a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brillux-7853a1.png", "osmTags": { "and": [ "shop=paint", @@ -472956,7 +473317,7 @@ }, { "question": "Colorshop", - "icon": "./assets/data/nsi/logos/colorshop-dd351e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/colorshop-dd351e.png", "osmTags": { "and": [ "shop=paint", @@ -472972,7 +473333,7 @@ }, { "question": "Comex", - "icon": "./assets/data/nsi/logos/comex-d8e74b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comex-d8e74b.jpg", "osmTags": { "and": [ "shop=paint", @@ -472988,7 +473349,7 @@ }, { "question": "Crown Decorating Centre", - "icon": "./assets/data/nsi/logos/crowndecoratingcentre-058646.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crowndecoratingcentre-058646.jpg", "osmTags": { "and": [ "shop=paint", @@ -473004,7 +473365,7 @@ }, { "question": "Dulux Decorator Centre", - "icon": "./assets/data/nsi/logos/duluxdecoratorcentre-058646.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duluxdecoratorcentre-058646.jpg", "osmTags": { "and": [ "shop=paint", @@ -473020,7 +473381,7 @@ }, { "question": "Dulux Paints", - "icon": "./assets/data/nsi/logos/duluxpaints-573ec1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duluxpaints-573ec1.jpg", "osmTags": { "and": [ "shop=paint", @@ -473036,7 +473397,7 @@ }, { "question": "Dunn-Edwards Paints", - "icon": "./assets/data/nsi/logos/dunnedwardspaints-4b3183.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunnedwardspaints-4b3183.jpg", "osmTags": { "and": [ "shop=paint", @@ -473052,7 +473413,7 @@ }, { "question": "Fargerike", - "icon": "./assets/data/nsi/logos/fargerike-e1be75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fargerike-e1be75.jpg", "osmTags": { "and": [ "shop=paint", @@ -473067,7 +473428,7 @@ }, { "question": "Farrow & Ball", - "icon": "./assets/data/nsi/logos/farrowandball-15728f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farrowandball-15728f.jpg", "osmTags": { "and": [ "shop=paint", @@ -473083,7 +473444,7 @@ }, { "question": "Johnstone's Decorating Centre", - "icon": "./assets/data/nsi/logos/johnstonesdecoratingcentre-058646.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnstonesdecoratingcentre-058646.jpg", "osmTags": { "and": [ "shop=paint", @@ -473099,7 +473460,7 @@ }, { "question": "Jotun", - "icon": "./assets/data/nsi/logos/jotun-573ec1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jotun-573ec1.jpg", "osmTags": { "and": [ "shop=paint", @@ -473115,7 +473476,7 @@ }, { "question": "Kelly-Moore Paints", - "icon": "./assets/data/nsi/logos/kellymoorepaints-c9fb37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kellymoorepaints-c9fb37.jpg", "osmTags": { "and": [ "shop=paint", @@ -473131,7 +473492,7 @@ }, { "question": "Miller Paint", - "icon": "./assets/data/nsi/logos/millerpaint-c4c85f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/millerpaint-c4c85f.png", "osmTags": { "and": [ "shop=paint", @@ -473147,7 +473508,7 @@ }, { "question": "National Paints", - "icon": "./assets/data/nsi/logos/nationalpaints-6ced54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalpaints-6ced54.jpg", "osmTags": { "and": [ "shop=paint", @@ -473163,7 +473524,7 @@ }, { "question": "Olijslager", - "icon": "./assets/data/nsi/logos/olijslager-5cd356.png", + "icon": "https://data.mapcomplete.org/nsi//logos/olijslager-5cd356.png", "osmTags": { "and": [ "shop=paint", @@ -473179,7 +473540,7 @@ }, { "question": "PPG Paints", - "icon": "./assets/data/nsi/logos/ppgpaints-4b3183.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ppgpaints-4b3183.jpg", "osmTags": { "and": [ "shop=paint", @@ -473195,7 +473556,7 @@ }, { "question": "Resene", - "icon": "./assets/data/nsi/logos/resene-7091e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/resene-7091e6.jpg", "osmTags": { "and": [ "shop=paint", @@ -473211,7 +473572,7 @@ }, { "question": "Rodda Paint", - "icon": "./assets/data/nsi/logos/roddapaint-4b3183.png", + "icon": "https://data.mapcomplete.org/nsi//logos/roddapaint-4b3183.png", "osmTags": { "and": [ "shop=paint", @@ -473227,7 +473588,7 @@ }, { "question": "Sayer", - "icon": "./assets/data/nsi/logos/sayer-9cde48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sayer-9cde48.jpg", "osmTags": { "and": [ "shop=paint", @@ -473243,7 +473604,7 @@ }, { "question": "Sherwin-Williams", - "icon": "./assets/data/nsi/logos/sherwinwilliams-573ec1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sherwinwilliams-573ec1.jpg", "osmTags": { "and": [ "shop=paint", @@ -473273,7 +473634,7 @@ }, { "question": "Party City", - "icon": "./assets/data/nsi/logos/partycity-d4351a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/partycity-d4351a.jpg", "osmTags": { "and": [ "shop=party", @@ -473289,7 +473650,7 @@ }, { "question": "SoLow", - "icon": "./assets/data/nsi/logos/solow-f95d27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/solow-f95d27.jpg", "osmTags": { "and": [ "shop=party", @@ -473305,7 +473666,7 @@ }, { "question": "Spirit Halloween", - "icon": "./assets/data/nsi/logos/spirithalloween-d4351a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spirithalloween-d4351a.jpg", "osmTags": { "and": [ "shop=party", @@ -473321,7 +473682,7 @@ }, { "question": "Blikle", - "icon": "./assets/data/nsi/logos/blikle-6e7edc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blikle-6e7edc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473337,7 +473698,7 @@ }, { "question": "Bolo da Madre", - "icon": "./assets/data/nsi/logos/bolodamadre-64176e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bolodamadre-64176e.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473353,7 +473714,7 @@ }, { "question": "Café de Nata", - "icon": "./assets/data/nsi/logos/cafedenata-4c047d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cafedenata-4c047d.jpg", "osmTags": { "and": [ "cuisine=portuguese", @@ -473371,7 +473732,7 @@ }, { "question": "Cake Box", - "icon": "./assets/data/nsi/logos/cakebox-4c047d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cakebox-4c047d.jpg", "osmTags": { "and": [ "diet:lacto_vegetarian=yes", @@ -473389,7 +473750,7 @@ }, { "question": "Casa de Bolos", - "icon": "./assets/data/nsi/logos/casadebolos-64176e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casadebolos-64176e.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473405,7 +473766,7 @@ }, { "question": "Cheesecake Corner", - "icon": "./assets/data/nsi/logos/cheesecakecorner-6e7edc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cheesecakecorner-6e7edc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473421,7 +473782,7 @@ }, { "question": "Cookies by Design", - "icon": "./assets/data/nsi/logos/cookiesbydesign-64e364.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cookiesbydesign-64e364.jpg", "osmTags": { "and": [ "craft=bakery", @@ -473438,7 +473799,7 @@ }, { "question": "Crumbl Cookies", - "icon": "./assets/data/nsi/logos/crumblcookies-64e364.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crumblcookies-64e364.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473455,7 +473816,7 @@ }, { "question": "Cukiernia Cieślikowski", - "icon": "./assets/data/nsi/logos/cukierniacieslikowski-6e7edc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cukierniacieslikowski-6e7edc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473471,7 +473832,7 @@ }, { "question": "Cukiernia Sowa", - "icon": "./assets/data/nsi/logos/cukierniasowa-6e7edc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cukierniasowa-6e7edc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473487,7 +473848,7 @@ }, { "question": "Delikana", - "icon": "./assets/data/nsi/logos/delikana-97942d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delikana-97942d.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473503,7 +473864,7 @@ }, { "question": "Gigi's Cupcakes", - "icon": "./assets/data/nsi/logos/gigiscupcakes-64e364.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gigiscupcakes-64e364.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473519,7 +473880,7 @@ }, { "question": "Hoffmann", - "icon": "./assets/data/nsi/logos/hoffmann-8e72cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoffmann-8e72cc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473535,7 +473896,7 @@ }, { "question": "Insomnia Cookies", - "icon": "./assets/data/nsi/logos/insomniacookies-50ea40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/insomniacookies-50ea40.png", "osmTags": { "and": [ "shop=pastry", @@ -473568,7 +473929,7 @@ }, { "question": "Kürtősh", - "icon": "./assets/data/nsi/logos/kurtosh-7f15f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kurtosh-7f15f1.jpg", "osmTags": { "and": [ "cuisine=hungarian", @@ -473585,7 +473946,7 @@ }, { "question": "Lola's Cupcakes", - "icon": "./assets/data/nsi/logos/lolascupcakes-cdbfe2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lolascupcakes-cdbfe2.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473601,7 +473962,7 @@ }, { "question": "Lukullus", - "icon": "./assets/data/nsi/logos/lukullus-6e7edc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lukullus-6e7edc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473617,7 +473978,7 @@ }, { "question": "Maison Dandoy", - "icon": "./assets/data/nsi/logos/maisondandoy-017230.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maisondandoy-017230.png", "osmTags": { "and": [ "shop=pastry", @@ -473633,7 +473994,7 @@ }, { "question": "Mio Amore", - "icon": "./assets/data/nsi/logos/mioamore-77ae94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mioamore-77ae94.jpg", "osmTags": { "and": [ "diet:vegetarian=yes", @@ -473653,7 +474014,7 @@ }, { "question": "Monginis (Egypt)", - "icon": "./assets/data/nsi/logos/monginis-299bf3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monginis-299bf3.jpg", "osmTags": { "and": [ "diet:vegetarian=yes", @@ -473672,7 +474033,7 @@ }, { "question": "Monginis (India)", - "icon": "./assets/data/nsi/logos/monginis-77ae94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monginis-77ae94.jpg", "osmTags": { "and": [ "diet:vegetarian=yes", @@ -473693,7 +474054,7 @@ }, { "question": "Mrs. Fields", - "icon": "./assets/data/nsi/logos/mrsfields-839ebf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrsfields-839ebf.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473709,7 +474070,7 @@ }, { "question": "Namur", - "icon": "./assets/data/nsi/logos/namur-8e72cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/namur-8e72cc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473725,7 +474086,7 @@ }, { "question": "Nothing Bundt Cakes", - "icon": "./assets/data/nsi/logos/nothingbundtcakes-e06bde.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nothingbundtcakes-e06bde.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473741,7 +474102,7 @@ }, { "question": "Oberweis", - "icon": "./assets/data/nsi/logos/oberweis-8e72cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oberweis-8e72cc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473757,7 +474118,7 @@ }, { "question": "Patisserie Limburgia", - "icon": "./assets/data/nsi/logos/limburgia-b5394e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/limburgia-b5394e.png", "osmTags": { "and": [ "shop=pastry", @@ -473773,7 +474134,7 @@ }, { "question": "Pawłowicz", - "icon": "./assets/data/nsi/logos/pawlowicz-6e7edc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pawlowicz-6e7edc.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473789,7 +474150,7 @@ }, { "question": "Sadaharu Aoki", - "icon": "./assets/data/nsi/logos/sadaharuaoki-1cea9f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sadaharuaoki-1cea9f.jpg", "osmTags": { "and": [ "cuisine=japanese", @@ -473821,7 +474182,7 @@ }, { "question": "Smallcakes", - "icon": "./assets/data/nsi/logos/smallcakes-64e364.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smallcakes-64e364.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473837,7 +474198,7 @@ }, { "question": "Sodiê Doces", - "icon": "./assets/data/nsi/logos/sodiedoces-64176e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sodiedoces-64176e.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473870,7 +474231,7 @@ }, { "question": "The Sugarr & Spice", - "icon": "./assets/data/nsi/logos/thesugarrandspice-77ae94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thesugarrandspice-77ae94.jpg", "osmTags": { "and": [ "diet:vegetarian=yes", @@ -473908,7 +474269,7 @@ }, { "question": "Vatsak", - "icon": "./assets/data/nsi/logos/vatsak-96373c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vatsak-96373c.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473924,7 +474285,7 @@ }, { "question": "Неделя", - "icon": "./assets/data/nsi/logos/nedelya-5d47b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nedelya-5d47b0.png", "osmTags": { "and": [ "shop=pastry", @@ -473942,7 +474303,7 @@ }, { "question": "Пчела", - "icon": "./assets/data/nsi/logos/24f442-5d47b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/24f442-5d47b0.jpg", "osmTags": { "and": [ "shop=pastry", @@ -473958,7 +474319,7 @@ }, { "question": "ანტრე", - "icon": "./assets/data/nsi/logos/entree-7fe386.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entree-7fe386.jpg", "osmTags": { "and": [ "amenity=cafe", @@ -473982,7 +474343,7 @@ }, { "question": "მადარტი", - "icon": "./assets/data/nsi/logos/madart-7fe386.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madart-7fe386.jpg", "osmTags": { "and": [ "shop=pastry", @@ -474085,7 +474446,7 @@ }, { "question": "BHF Pawnshop & Jewelry Store", - "icon": "./assets/data/nsi/logos/bhfpawnshopandjewelrystore-6d9487.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bhfpawnshopandjewelrystore-6d9487.jpg", "osmTags": { "and": [ "bureau_de_change=yes", @@ -474132,7 +474493,7 @@ }, { "question": "Cash Crusaders", - "icon": "./assets/data/nsi/logos/cashcrusaders-de6587.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cashcrusaders-de6587.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474178,7 +474539,7 @@ }, { "question": "Cebuana Lhuillier", - "icon": "./assets/data/nsi/logos/cebuanalhuillier-6d9487.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cebuanalhuillier-6d9487.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474223,7 +474584,7 @@ }, { "question": "EZPAWN", - "icon": "./assets/data/nsi/logos/ezpawn-9520ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ezpawn-9520ff.png", "osmTags": { "and": [ "shop=pawnbroker", @@ -474253,7 +474614,7 @@ }, { "question": "Fundación Dondé", - "icon": "./assets/data/nsi/logos/fundaciondonde-25220b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fundaciondonde-25220b.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474300,7 +474661,7 @@ }, { "question": "Loombard", - "icon": "./assets/data/nsi/logos/loombard-aaadfd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/loombard-aaadfd.png", "osmTags": { "and": [ "shop=pawnbroker", @@ -474316,7 +474677,7 @@ }, { "question": "M Lhuillier", - "icon": "./assets/data/nsi/logos/mlhuillier-6d9487.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mlhuillier-6d9487.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474332,7 +474693,7 @@ }, { "question": "Nacional Monte de Piedad", - "icon": "./assets/data/nsi/logos/nacionalmontedepiedad-25220b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nacionalmontedepiedad-25220b.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474348,7 +474709,7 @@ }, { "question": "Palawan Pawnshop", - "icon": "./assets/data/nsi/logos/palawanpawnshop-6d9487.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palawanpawnshop-6d9487.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474364,7 +474725,7 @@ }, { "question": "Pegadaian", - "icon": "./assets/data/nsi/logos/pegadaian-cd799d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pegadaian-cd799d.svg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474380,7 +474741,7 @@ }, { "question": "Ramsdens", - "icon": "./assets/data/nsi/logos/ramsdens-c861e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ramsdens-c861e3.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474411,7 +474772,7 @@ }, { "question": "Sinag", - "icon": "./assets/data/nsi/logos/sinag-6d9487.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sinag-6d9487.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474441,7 +474802,7 @@ }, { "question": "Tambunting", - "icon": "./assets/data/nsi/logos/tambunting-6d9487.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tambunting-6d9487.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474472,7 +474833,7 @@ }, { "question": "Villarica", - "icon": "./assets/data/nsi/logos/villarica-6d9487.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villarica-6d9487.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474488,7 +474849,7 @@ }, { "question": "Záložňa Breva", - "icon": "./assets/data/nsi/logos/zaloznabreva-504b45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zaloznabreva-504b45.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474520,7 +474881,7 @@ }, { "question": "Благо (Україна)", - "icon": "./assets/data/nsi/logos/1a22da-6b12a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1a22da-6b12a2.jpg", "osmTags": { "and": [ "shop=pawnbroker", @@ -474564,7 +474925,7 @@ }, { "question": "Скарбниця", - "icon": "./assets/data/nsi/logos/4c9bd4-6b12a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/4c9bd4-6b12a2.png", "osmTags": { "and": [ "shop=pawnbroker", @@ -474628,7 +474989,7 @@ }, { "question": "Adopt'", - "icon": "./assets/data/nsi/logos/adopt-6637a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adopt-6637a2.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474658,7 +475019,7 @@ }, { "question": "Brocard", - "icon": "./assets/data/nsi/logos/brocard-a7cafb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brocard-a7cafb.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474674,7 +475035,7 @@ }, { "question": "Diptyque'", - "icon": "./assets/data/nsi/logos/diptyque-024293.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diptyque-024293.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474690,7 +475051,7 @@ }, { "question": "Douglas", - "icon": "./assets/data/nsi/logos/douglas-4ed3c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/douglas-4ed3c9.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474706,7 +475067,7 @@ }, { "question": "Druni", - "icon": "./assets/data/nsi/logos/druni-b209c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/druni-b209c1.png", "osmTags": { "and": [ "shop=perfumery", @@ -474722,7 +475083,7 @@ }, { "question": "Equivalenza", - "icon": "./assets/data/nsi/logos/equivalenza-59ad61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equivalenza-59ad61.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474738,7 +475099,7 @@ }, { "question": "FAnn", - "icon": "./assets/data/nsi/logos/fann-21bb40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fann-21bb40.png", "osmTags": { "and": [ "shop=perfumery", @@ -474754,7 +475115,7 @@ }, { "question": "ICI PARIS XL", - "icon": "./assets/data/nsi/logos/iciparisxl-07c28e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iciparisxl-07c28e.png", "osmTags": { "and": [ "shop=perfumery", @@ -474770,7 +475131,7 @@ }, { "question": "Import Parfumerie", - "icon": "./assets/data/nsi/logos/importparfumerie-5a7a8c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/importparfumerie-5a7a8c.svg", "osmTags": { "and": [ "shop=perfumery", @@ -474786,7 +475147,7 @@ }, { "question": "Jo Malone", - "icon": "./assets/data/nsi/logos/jomalone-024293.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jomalone-024293.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474802,7 +475163,7 @@ }, { "question": "Marionnaud", - "icon": "./assets/data/nsi/logos/marionnaud-40e2d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marionnaud-40e2d5.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474818,7 +475179,7 @@ }, { "question": "Naïma", - "icon": "./assets/data/nsi/logos/naima-c99cc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naima-c99cc6.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474834,7 +475195,7 @@ }, { "question": "O Boticário", - "icon": "./assets/data/nsi/logos/oboticario-40d28a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oboticario-40d28a.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474850,7 +475211,7 @@ }, { "question": "Parfümerie Becker", - "icon": "./assets/data/nsi/logos/parfumeriebecker-fc8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parfumeriebecker-fc8b1e.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474866,7 +475227,7 @@ }, { "question": "Parfümerie Pieper", - "icon": "./assets/data/nsi/logos/parfumeriepieper-fc8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parfumeriepieper-fc8b1e.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474882,7 +475243,7 @@ }, { "question": "Perfumania", - "icon": "./assets/data/nsi/logos/perfumania-4a4434.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perfumania-4a4434.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474898,7 +475259,7 @@ }, { "question": "Pinalli", - "icon": "./assets/data/nsi/logos/pinalli-c99cc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pinalli-c99cc6.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474914,7 +475275,7 @@ }, { "question": "Schuback", - "icon": "./assets/data/nsi/logos/schuback-fc8b1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schuback-fc8b1e.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474930,7 +475291,7 @@ }, { "question": "Sister's Aroma", - "icon": "./assets/data/nsi/logos/sistersaroma-20926e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sistersaroma-20926e.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474946,7 +475307,7 @@ }, { "question": "The Fragrance Shop", - "icon": "./assets/data/nsi/logos/thefragranceshop-2906d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thefragranceshop-2906d0.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474962,7 +475323,7 @@ }, { "question": "The Perfume Garden", - "icon": "./assets/data/nsi/logos/theperfumegarden-f5d3fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theperfumegarden-f5d3fd.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474978,7 +475339,7 @@ }, { "question": "The Perfume Shop", - "icon": "./assets/data/nsi/logos/theperfumeshop-2906d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theperfumeshop-2906d0.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -474994,7 +475355,7 @@ }, { "question": "Une Heure Pour Soi", - "icon": "./assets/data/nsi/logos/uneheurepoursoi-856056.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uneheurepoursoi-856056.jpg", "osmTags": { "and": [ "shop=perfumery", @@ -475010,7 +475371,7 @@ }, { "question": "Orkin", - "icon": "./assets/data/nsi/logos/orkin-768c80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orkin-768c80.jpg", "osmTags": { "and": [ "shop=pest_control", @@ -475026,7 +475387,7 @@ }, { "question": "Truly Nolen", - "icon": "./assets/data/nsi/logos/trulynolen-768c80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trulynolen-768c80.jpg", "osmTags": { "and": [ "shop=pest_control", @@ -475042,7 +475403,7 @@ }, { "question": "Akvazoo", - "icon": "./assets/data/nsi/logos/akvazoo-381fdf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akvazoo-381fdf.jpg", "osmTags": { "and": [ "shop=pet", @@ -475072,7 +475433,7 @@ }, { "question": "Animalis", - "icon": "./assets/data/nsi/logos/animalis-aea085.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/animalis-aea085.jpg", "osmTags": { "and": [ "shop=pet", @@ -475088,7 +475449,7 @@ }, { "question": "Animates", - "icon": "./assets/data/nsi/logos/animates-b0a57a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/animates-b0a57a.jpg", "osmTags": { "and": [ "shop=pet", @@ -475104,7 +475465,7 @@ }, { "question": "Animax", - "icon": "./assets/data/nsi/logos/animax-67c127.png", + "icon": "https://data.mapcomplete.org/nsi//logos/animax-67c127.png", "osmTags": { "and": [ "shop=pet", @@ -475120,7 +475481,7 @@ }, { "question": "Arcaplanet", - "icon": "./assets/data/nsi/logos/arcaplanet-fc1a4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arcaplanet-fc1a4b.jpg", "osmTags": { "and": [ "shop=pet", @@ -475136,7 +475497,7 @@ }, { "question": "Arken Zoo", - "icon": "./assets/data/nsi/logos/arkenzoo-8a75dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkenzoo-8a75dc.jpg", "osmTags": { "and": [ "shop=pet", @@ -475167,7 +475528,7 @@ }, { "question": "Cobasi", - "icon": "./assets/data/nsi/logos/cobasi-df7a1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cobasi-df7a1d.png", "osmTags": { "and": [ "shop=pet", @@ -475183,7 +475544,7 @@ }, { "question": "Das Futterhaus", - "icon": "./assets/data/nsi/logos/dasfutterhaus-f5d6d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dasfutterhaus-f5d6d7.png", "osmTags": { "and": [ "shop=pet", @@ -475199,7 +475560,7 @@ }, { "question": "EarthWise Pet", - "icon": "./assets/data/nsi/logos/earthwisepet-81a22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/earthwisepet-81a22d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475215,7 +475576,7 @@ }, { "question": "Fajn Zoo", - "icon": "./assets/data/nsi/logos/fajnzoo-381fdf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fajnzoo-381fdf.png", "osmTags": { "and": [ "shop=pet", @@ -475231,7 +475592,7 @@ }, { "question": "Faunatar", - "icon": "./assets/data/nsi/logos/faunatar-294f56.png", + "icon": "https://data.mapcomplete.org/nsi//logos/faunatar-294f56.png", "osmTags": { "and": [ "shop=pet", @@ -475247,7 +475608,7 @@ }, { "question": "Fressnapf", - "icon": "./assets/data/nsi/logos/fressnapf-254367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fressnapf-254367.jpg", "osmTags": { "and": [ "shop=pet", @@ -475263,7 +475624,7 @@ }, { "question": "Global Pet Foods", - "icon": "./assets/data/nsi/logos/globalpetfoods-4f78bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globalpetfoods-4f78bb.jpg", "osmTags": { "and": [ "shop=pet", @@ -475279,7 +475640,7 @@ }, { "question": "Happy Pets", - "icon": "./assets/data/nsi/logos/happypets-84da5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/happypets-84da5c.jpg", "osmTags": { "and": [ "shop=pet", @@ -475295,7 +475656,7 @@ }, { "question": "Heads Up for Tails", - "icon": "./assets/data/nsi/logos/headsupfortails-4d0def.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/headsupfortails-4d0def.jpg", "osmTags": { "and": [ "shop=pet", @@ -475311,7 +475672,7 @@ }, { "question": "Jollyes", - "icon": "./assets/data/nsi/logos/jollyes-8ec028.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jollyes-8ec028.jpg", "osmTags": { "and": [ "shop=pet", @@ -475342,7 +475703,7 @@ }, { "question": "Kahoots", - "icon": "./assets/data/nsi/logos/kahoots-ae290d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kahoots-ae290d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475358,7 +475719,7 @@ }, { "question": "Kiwoko", - "icon": "./assets/data/nsi/logos/kiwoko-02c541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiwoko-02c541.jpg", "osmTags": { "and": [ "shop=pet", @@ -475374,7 +475735,7 @@ }, { "question": "Kölle Zoo", - "icon": "./assets/data/nsi/logos/kollezoo-9f060f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kollezoo-9f060f.png", "osmTags": { "and": [ "shop=pet", @@ -475390,7 +475751,7 @@ }, { "question": "L'Isola dei Tesori", - "icon": "./assets/data/nsi/logos/lisoladeitesori-fc1a4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lisoladeitesori-fc1a4b.jpg", "osmTags": { "and": [ "shop=pet", @@ -475406,7 +475767,7 @@ }, { "question": "Maidenhead Aquatics", - "icon": "./assets/data/nsi/logos/maidenheadaquatics-8ec028.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maidenheadaquatics-8ec028.jpg", "osmTags": { "and": [ "pet=fish", @@ -475423,7 +475784,7 @@ }, { "question": "MasterZoo", - "icon": "./assets/data/nsi/logos/masterzoo-a879a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/masterzoo-a879a3.jpg", "osmTags": { "and": [ "shop=pet", @@ -475440,7 +475801,7 @@ }, { "question": "Maxi Zoo", - "icon": "./assets/data/nsi/logos/maxizoo-3e2920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxizoo-3e2920.jpg", "osmTags": { "and": [ "shop=pet", @@ -475456,7 +475817,7 @@ }, { "question": "Médor et Compagnie", - "icon": "./assets/data/nsi/logos/medoretcompagnie-aea085.png", + "icon": "https://data.mapcomplete.org/nsi//logos/medoretcompagnie-aea085.png", "osmTags": { "and": [ "shop=pet", @@ -475472,7 +475833,7 @@ }, { "question": "MEGAZOO", - "icon": "./assets/data/nsi/logos/megazoo-9f060f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megazoo-9f060f.jpg", "osmTags": { "and": [ "shop=pet", @@ -475488,7 +475849,7 @@ }, { "question": "Mud Bay", - "icon": "./assets/data/nsi/logos/mudbay-81a22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mudbay-81a22d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475504,7 +475865,7 @@ }, { "question": "Musti ja Mirri", - "icon": "./assets/data/nsi/logos/mustijamirri-294f56.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mustijamirri-294f56.png", "osmTags": { "and": [ "shop=pet", @@ -475520,7 +475881,7 @@ }, { "question": "Pet Center", - "icon": "./assets/data/nsi/logos/petcenter-09e3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petcenter-09e3e7.jpg", "osmTags": { "and": [ "shop=pet", @@ -475536,7 +475897,7 @@ }, { "question": "Pet Food Express", - "icon": "./assets/data/nsi/logos/petfoodexpress-81a22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petfoodexpress-81a22d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475552,7 +475913,7 @@ }, { "question": "Pet Supermarket", - "icon": "./assets/data/nsi/logos/petsupermarket-81a22d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petsupermarket-81a22d.png", "osmTags": { "and": [ "shop=pet", @@ -475568,7 +475929,7 @@ }, { "question": "Pet Supplies Plus", - "icon": "./assets/data/nsi/logos/petsuppliesplus-81a22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petsuppliesplus-81a22d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475584,7 +475945,7 @@ }, { "question": "Pet Valu", - "icon": "./assets/data/nsi/logos/petvalu-e394eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petvalu-e394eb.jpg", "osmTags": { "and": [ "shop=pet", @@ -475600,7 +475961,7 @@ }, { "question": "Petbarn", - "icon": "./assets/data/nsi/logos/petbarn-26188c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petbarn-26188c.jpg", "osmTags": { "and": [ "shop=pet", @@ -475616,7 +475977,7 @@ }, { "question": "Petco", - "icon": "./assets/data/nsi/logos/petco-1d9238.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petco-1d9238.jpg", "osmTags": { "and": [ "shop=pet", @@ -475632,7 +475993,7 @@ }, { "question": "Petland", - "icon": "./assets/data/nsi/logos/petland-81a22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petland-81a22d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475663,7 +476024,7 @@ }, { "question": "Petmall", - "icon": "./assets/data/nsi/logos/petmall-33ac80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petmall-33ac80.jpg", "osmTags": { "and": [ "shop=pet", @@ -475679,7 +476040,7 @@ }, { "question": "Petmania", - "icon": "./assets/data/nsi/logos/petmania-7c67e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petmania-7c67e0.jpg", "osmTags": { "and": [ "shop=pet", @@ -475695,7 +476056,7 @@ }, { "question": "PetPeople", - "icon": "./assets/data/nsi/logos/petpeople-81a22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petpeople-81a22d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475711,7 +476072,7 @@ }, { "question": "Pets at Home", - "icon": "./assets/data/nsi/logos/petsathome-8ec028.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petsathome-8ec028.jpg", "osmTags": { "and": [ "shop=pet", @@ -475727,7 +476088,7 @@ }, { "question": "Pets Corner", - "icon": "./assets/data/nsi/logos/petscorner-8ec028.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petscorner-8ec028.jpg", "osmTags": { "and": [ "shop=pet", @@ -475743,7 +476104,7 @@ }, { "question": "Pets Place", - "icon": "./assets/data/nsi/logos/petsplace-734485.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petsplace-734485.png", "osmTags": { "and": [ "shop=pet", @@ -475759,7 +476120,7 @@ }, { "question": "Pets Place - Boerenbond", - "icon": "./assets/data/nsi/logos/petsplaceboerenbond-734485.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petsplaceboerenbond-734485.jpg", "osmTags": { "and": [ "shop=pet", @@ -475775,7 +476136,7 @@ }, { "question": "Petshop Science", - "icon": "./assets/data/nsi/logos/petshopscience-a90b39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petshopscience-a90b39.jpg", "osmTags": { "and": [ "shop=pet", @@ -475791,7 +476152,7 @@ }, { "question": "Petshop.ru", - "icon": "./assets/data/nsi/logos/petshopru-13b7f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petshopru-13b7f6.jpg", "osmTags": { "and": [ "shop=pet", @@ -475807,7 +476168,7 @@ }, { "question": "PetSmart", - "icon": "./assets/data/nsi/logos/petsmart-e394eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petsmart-e394eb.jpg", "osmTags": { "and": [ "shop=pet", @@ -475823,7 +476184,7 @@ }, { "question": "Petstock", - "icon": "./assets/data/nsi/logos/petstock-26188c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petstock-26188c.jpg", "osmTags": { "and": [ "shop=pet", @@ -475839,7 +476200,7 @@ }, { "question": "Petstop", - "icon": "./assets/data/nsi/logos/petstop-7c67e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petstop-7c67e0.jpg", "osmTags": { "and": [ "shop=pet", @@ -475855,7 +476216,7 @@ }, { "question": "Petworld", - "icon": "./assets/data/nsi/logos/petworld-7c67e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petworld-7c67e0.jpg", "osmTags": { "and": [ "shop=pet", @@ -475871,7 +476232,7 @@ }, { "question": "Petz", - "icon": "./assets/data/nsi/logos/petz-df7a1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petz-df7a1d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475887,7 +476248,7 @@ }, { "question": "Q-PETs", - "icon": "./assets/data/nsi/logos/qpets-f292b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qpets-f292b1.jpg", "osmTags": { "and": [ "shop=pet", @@ -475905,7 +476266,7 @@ }, { "question": "Qualipet", - "icon": "./assets/data/nsi/logos/qualipet-c04507.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qualipet-c04507.png", "osmTags": { "and": [ "shop=pet", @@ -475921,7 +476282,7 @@ }, { "question": "SUPER ZOO", - "icon": "./assets/data/nsi/logos/superzoo-09e3e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/superzoo-09e3e7.png", "osmTags": { "and": [ "shop=pet", @@ -475937,7 +476298,7 @@ }, { "question": "The Pet Hut", - "icon": "./assets/data/nsi/logos/thepethut-8ec028.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thepethut-8ec028.jpg", "osmTags": { "and": [ "shop=pet", @@ -475953,7 +476314,7 @@ }, { "question": "Tom & Co", - "icon": "./assets/data/nsi/logos/tomandco-cad8a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomandco-cad8a4.jpg", "osmTags": { "and": [ "shop=pet", @@ -475969,7 +476330,7 @@ }, { "question": "Unleashed", - "icon": "./assets/data/nsi/logos/unleashed-81a22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unleashed-81a22d.jpg", "osmTags": { "and": [ "shop=pet", @@ -475986,7 +476347,7 @@ }, { "question": "Wild Birds Unlimited", - "icon": "./assets/data/nsi/logos/wildbirdsunlimited-81a22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wildbirdsunlimited-81a22d.jpg", "osmTags": { "and": [ "shop=pet", @@ -476002,7 +476363,7 @@ }, { "question": "Zoo & Co.", - "icon": "./assets/data/nsi/logos/zooandco-f5d6d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zooandco-f5d6d7.jpg", "osmTags": { "and": [ "shop=pet", @@ -476018,7 +476379,7 @@ }, { "question": "Zoo Center", - "icon": "./assets/data/nsi/logos/zoocenter-33ac80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zoocenter-33ac80.png", "osmTags": { "and": [ "shop=pet", @@ -476048,7 +476409,7 @@ }, { "question": "ZooBonus", - "icon": "./assets/data/nsi/logos/zoobonus-a879a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zoobonus-a879a3.png", "osmTags": { "and": [ "shop=pet", @@ -476079,7 +476440,7 @@ }, { "question": "Бетховен", - "icon": "./assets/data/nsi/logos/90c94e-13b7f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/90c94e-13b7f6.jpg", "osmTags": { "and": [ "shop=pet", @@ -476095,7 +476456,7 @@ }, { "question": "Золотая рыбка", - "icon": "./assets/data/nsi/logos/353ff5-13b7f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/353ff5-13b7f6.jpg", "osmTags": { "and": [ "shop=pet", @@ -476111,7 +476472,7 @@ }, { "question": "Зоозинче", - "icon": "./assets/data/nsi/logos/b42651-33ac80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/b42651-33ac80.jpg", "osmTags": { "and": [ "shop=pet", @@ -476141,7 +476502,7 @@ }, { "question": "Ле'Муррр", - "icon": "./assets/data/nsi/logos/56262d-13b7f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/56262d-13b7f6.jpg", "osmTags": { "and": [ "shop=pet", @@ -476157,7 +476518,7 @@ }, { "question": "Нечовешки магазин Д-р Стефанов", - "icon": "./assets/data/nsi/logos/0f0923-33ac80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/0f0923-33ac80.jpg", "osmTags": { "and": [ "shop=pet", @@ -476173,7 +476534,7 @@ }, { "question": "Четыре лапы", - "icon": "./assets/data/nsi/logos/42195e-8e284e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/42195e-8e284e.jpg", "osmTags": { "and": [ "shop=pet", @@ -476189,7 +476550,7 @@ }, { "question": "ზოოლაიფი", - "icon": "./assets/data/nsi/logos/zoolife-fbd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zoolife-fbd79e.jpg", "osmTags": { "and": [ "shop=pet", @@ -476209,7 +476570,7 @@ }, { "question": "ზოომარტი", - "icon": "./assets/data/nsi/logos/zoomart-fbd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zoomart-fbd79e.jpg", "osmTags": { "and": [ "shop=pet", @@ -476229,7 +476590,7 @@ }, { "question": "ზოოსითი", - "icon": "./assets/data/nsi/logos/zoocity-fbd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zoocity-fbd79e.jpg", "osmTags": { "and": [ "shop=pet", @@ -476249,7 +476610,7 @@ }, { "question": "ზოოჰაბი", - "icon": "./assets/data/nsi/logos/zoohub-fbd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zoohub-fbd79e.jpg", "osmTags": { "and": [ "shop=pet", @@ -476269,7 +476630,7 @@ }, { "question": "პეტ სპოტი", - "icon": "./assets/data/nsi/logos/petspot-fbd79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petspot-fbd79e.jpg", "osmTags": { "and": [ "shop=pet", @@ -476308,7 +476669,7 @@ }, { "question": "東森寵物雲", - "icon": "./assets/data/nsi/logos/etipets-945fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etipets-945fbc.jpg", "osmTags": { "and": [ "shop=pet", @@ -476328,7 +476689,7 @@ }, { "question": "魚中魚", - "icon": "./assets/data/nsi/logos/petsmallfish-945fbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petsmallfish-945fbc.jpg", "osmTags": { "and": [ "shop=pet", @@ -476348,7 +476709,7 @@ }, { "question": "Fotoprix", - "icon": "./assets/data/nsi/logos/fotoprix-4b0687.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fotoprix-4b0687.jpg", "osmTags": { "and": [ "shop=photo", @@ -476364,7 +476725,7 @@ }, { "question": "Kamera Express", - "icon": "./assets/data/nsi/logos/kameraexpress-c0941c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kameraexpress-c0941c.png", "osmTags": { "and": [ "shop=photo", @@ -476380,7 +476741,7 @@ }, { "question": "Kodak Express", - "icon": "./assets/data/nsi/logos/kodakexpress-f4f6c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kodakexpress-f4f6c8.jpg", "osmTags": { "and": [ "shop=photo", @@ -476396,7 +476757,7 @@ }, { "question": "Max Spielmann", - "icon": "./assets/data/nsi/logos/maxspielmann-be7243.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxspielmann-be7243.jpg", "osmTags": { "and": [ "shop=photo", @@ -476412,7 +476773,7 @@ }, { "question": "Snappy Snaps", - "icon": "./assets/data/nsi/logos/snappysnaps-be7243.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snappysnaps-be7243.jpg", "osmTags": { "and": [ "shop=photo", @@ -476428,7 +476789,7 @@ }, { "question": "Walmart Photo Center", - "icon": "./assets/data/nsi/logos/walmartphotocenter-50ab81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartphotocenter-50ab81.jpg", "osmTags": { "and": [ "shop=photo", @@ -476444,7 +476805,7 @@ }, { "question": "Walmart Photo Centre", - "icon": "./assets/data/nsi/logos/walmartphotocentre-c42490.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartphotocentre-c42490.jpg", "osmTags": { "and": [ "shop=photo", @@ -476460,7 +476821,7 @@ }, { "question": "Яркий фотомаркет", - "icon": "./assets/data/nsi/logos/88710c-2b82bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/88710c-2b82bd.jpg", "osmTags": { "and": [ "shop=photo", @@ -476476,7 +476837,7 @@ }, { "question": "カメラのキタムラ", - "icon": "./assets/data/nsi/logos/kitamuracamera-686725.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kitamuracamera-686725.png", "osmTags": { "and": [ "shop=photo", @@ -476515,7 +476876,7 @@ }, { "question": "パレットプラザ", - "icon": "./assets/data/nsi/logos/paletteplaza-686725.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/paletteplaza-686725.svg", "osmTags": { "and": [ "shop=photo", @@ -476605,7 +476966,7 @@ }, { "question": "Briggs Equipment", - "icon": "./assets/data/nsi/logos/briggsequipment-a0a976.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/briggsequipment-a0a976.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476621,7 +476982,7 @@ }, { "question": "Equipment Depot", - "icon": "./assets/data/nsi/logos/equipmentdepot-a0a976.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equipmentdepot-a0a976.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476652,7 +477013,7 @@ }, { "question": "Herc Rentals", - "icon": "./assets/data/nsi/logos/hercrentals-1e883b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hercrentals-1e883b.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476668,7 +477029,7 @@ }, { "question": "Hirepool", - "icon": "./assets/data/nsi/logos/hirepool-13c9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hirepool-13c9d0.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476684,7 +477045,7 @@ }, { "question": "Kennards Hire", - "icon": "./assets/data/nsi/logos/kennardshire-cc85b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kennardshire-cc85b7.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476700,7 +477061,7 @@ }, { "question": "Maxim Crane Works", - "icon": "./assets/data/nsi/logos/maximcraneworks-a0a976.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maximcraneworks-a0a976.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476716,7 +477077,7 @@ }, { "question": "Star Rentals", - "icon": "./assets/data/nsi/logos/starrentals-241a4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starrentals-241a4b.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476732,7 +477093,7 @@ }, { "question": "Sunbelt Rentals", - "icon": "./assets/data/nsi/logos/sunbeltrentals-a70a22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sunbeltrentals-a70a22.png", "osmTags": { "and": [ "shop=plant_hire", @@ -476748,7 +477109,7 @@ }, { "question": "Sunstate Equipment", - "icon": "./assets/data/nsi/logos/sunstateequipment-a0a976.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunstateequipment-a0a976.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476764,7 +477125,7 @@ }, { "question": "United Rentals", - "icon": "./assets/data/nsi/logos/unitedrentals-1e883b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedrentals-1e883b.jpg", "osmTags": { "and": [ "shop=plant_hire", @@ -476780,7 +477141,7 @@ }, { "question": "Sargadelos", - "icon": "./assets/data/nsi/logos/sargadelos-cb4124.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sargadelos-cb4124.jpg", "osmTags": { "and": [ "shop=pottery", @@ -476796,7 +477157,7 @@ }, { "question": "Hilti", - "icon": "./assets/data/nsi/logos/hilti-d79f7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hilti-d79f7e.png", "osmTags": { "and": [ "shop=power_tools", @@ -476812,7 +477173,7 @@ }, { "question": "Cartridge World", - "icon": "./assets/data/nsi/logos/cartridgeworld-0b7bd3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cartridgeworld-0b7bd3.png", "osmTags": { "and": [ "shop=printer_ink", @@ -476828,7 +477189,7 @@ }, { "question": "Prink", - "icon": "./assets/data/nsi/logos/prink-5f927f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prink-5f927f.jpg", "osmTags": { "and": [ "shop=printer_ink", @@ -476844,7 +477205,7 @@ }, { "question": "Phantom Fireworks", - "icon": "./assets/data/nsi/logos/phantomfireworks-f0f687.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phantomfireworks-f0f687.jpg", "osmTags": { "and": [ "shop=pyrotechnics", @@ -476860,7 +477221,7 @@ }, { "question": "Rusalut", - "icon": "./assets/data/nsi/logos/rusalut-4c9e23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rusalut-4c9e23.jpg", "osmTags": { "and": [ "shop=pyrotechnics", @@ -476891,16 +477252,16 @@ }, { "question": "Budget Truck Rental", - "icon": "./assets/data/nsi/logos/budget-3eaf6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budget-3eaf6e.jpg", "osmTags": { "and": [ - "official_name=Budget Truck Rental", "shop=rental", { "or": [ "brand=Budget", "brand:wikidata=Q4985029", - "name=Budget" + "name=Budget", + "official_name=Budget Truck Rental" ] } ] @@ -476908,16 +477269,16 @@ }, { "question": "Enterprise Flex-E-Rent", - "icon": "./assets/data/nsi/logos/enterprise-0ac50a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enterprise-0ac50a.jpg", "osmTags": { "and": [ - "official_name=Enterprise Flex-E-Rent", "shop=rental", { "or": [ "brand=Enterprise", "brand:wikidata=Q17085454", - "name=Enterprise" + "name=Enterprise", + "official_name=Enterprise Flex-E-Rent" ] } ] @@ -476925,16 +477286,16 @@ }, { "question": "Enterprise Truck Rental", - "icon": "./assets/data/nsi/logos/enterprise-402547.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enterprise-402547.jpg", "osmTags": { "and": [ - "official_name=Enterprise Truck Rental", "shop=rental", { "or": [ "brand=Enterprise", "brand:wikidata=Q17085454", - "name=Enterprise" + "name=Enterprise", + "official_name=Enterprise Truck Rental" ] } ] @@ -476942,7 +477303,7 @@ }, { "question": "Mobile Mini (North America)", - "icon": "./assets/data/nsi/logos/mobilemini-402547.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mobilemini-402547.png", "osmTags": { "and": [ "shop=rental", @@ -476973,7 +477334,7 @@ }, { "question": "Move Yourself", - "icon": "./assets/data/nsi/logos/moveyourself-a6ceef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moveyourself-a6ceef.jpg", "osmTags": { "and": [ "shop=rental", @@ -476990,7 +477351,7 @@ }, { "question": "Penske Truck Rental", - "icon": "./assets/data/nsi/logos/pensketruckrental-402547.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pensketruckrental-402547.jpg", "osmTags": { "and": [ "shop=rental", @@ -477007,7 +477368,7 @@ }, { "question": "Ryder", - "icon": "./assets/data/nsi/logos/ryder-7deb17.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ryder-7deb17.png", "osmTags": { "and": [ "shop=rental", @@ -477023,7 +477384,7 @@ }, { "question": "U-Haul", - "icon": "./assets/data/nsi/logos/uhaul-402547.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uhaul-402547.jpg", "osmTags": { "and": [ "shop=rental", @@ -477039,7 +477400,7 @@ }, { "question": "WillScot", - "icon": "./assets/data/nsi/logos/willscot-06c9f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/willscot-06c9f3.jpg", "osmTags": { "and": [ "shop=rental", @@ -477055,7 +477416,7 @@ }, { "question": "Mister Minit", - "icon": "./assets/data/nsi/logos/misterminit-d158c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/misterminit-d158c6.png", "osmTags": { "and": [ "shop=repair", @@ -477071,7 +477432,7 @@ }, { "question": "Mr. Handyman", - "icon": "./assets/data/nsi/logos/mrhandyman-925a2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrhandyman-925a2e.jpg", "osmTags": { "and": [ "shop=repair", @@ -477106,7 +477467,7 @@ }, { "question": "Deutsche See", - "icon": "./assets/data/nsi/logos/deutschesee-955e0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesee-955e0e.jpg", "osmTags": { "and": [ "shop=seafood", @@ -477136,7 +477497,7 @@ }, { "question": "Океан Камчатка Сахалин", - "icon": "./assets/data/nsi/logos/oceankamchatkasahalin-93be8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oceankamchatkasahalin-93be8b.jpg", "osmTags": { "and": [ "shop=seafood", @@ -477168,7 +477529,7 @@ }, { "question": "De Kringwinkel", - "icon": "./assets/data/nsi/logos/dekringwinkel-04aeb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dekringwinkel-04aeb6.jpg", "osmTags": { "and": [ "shop=second_hand", @@ -477183,7 +477544,7 @@ }, { "question": "Easycash", - "icon": "./assets/data/nsi/logos/easycash-839553.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easycash-839553.jpg", "osmTags": { "and": [ "shop=second_hand", @@ -477199,7 +477560,7 @@ }, { "question": "Het Goed", - "icon": "./assets/data/nsi/logos/hetgoed-76cccf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hetgoed-76cccf.jpg", "osmTags": { "and": [ "shop=second_hand", @@ -477228,7 +477589,7 @@ }, { "question": "Savers", - "icon": "./assets/data/nsi/logos/savers-cb877b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/savers-cb877b.png", "osmTags": { "and": [ "shop=second_hand", @@ -477244,7 +477605,7 @@ }, { "question": "Value Village", - "icon": "./assets/data/nsi/logos/valuevillage-d58a94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valuevillage-d58a94.png", "osmTags": { "and": [ "shop=second_hand", @@ -477279,7 +477640,7 @@ }, { "question": "セカンドストリート", - "icon": "./assets/data/nsi/logos/2ndstreet-f1a9c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2ndstreet-f1a9c4.jpg", "osmTags": { "and": [ "shop=second_hand", @@ -477299,7 +477660,7 @@ }, { "question": "トレジャー・ファクトリー", - "icon": "./assets/data/nsi/logos/treasurefactory-f1a9c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/treasurefactory-f1a9c4.jpg", "osmTags": { "and": [ "shop=second_hand", @@ -477378,7 +477739,7 @@ }, { "question": "ABC Schuh-Center", - "icon": "./assets/data/nsi/logos/abcschuhcenter-0833e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abcschuhcenter-0833e2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477394,7 +477755,7 @@ }, { "question": "ABCマート", - "icon": "./assets/data/nsi/logos/1b892c-53e098.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1b892c-53e098.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477412,7 +477773,7 @@ }, { "question": "Aldo", - "icon": "./assets/data/nsi/logos/aldo-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldo-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477428,7 +477789,7 @@ }, { "question": "Allbirds", - "icon": "./assets/data/nsi/logos/allbirds-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allbirds-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477444,7 +477805,7 @@ }, { "question": "Allen Edmonds", - "icon": "./assets/data/nsi/logos/allenedmonds-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allenedmonds-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477460,7 +477821,7 @@ }, { "question": "André", - "icon": "./assets/data/nsi/logos/andre-c57706.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andre-c57706.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477476,7 +477837,7 @@ }, { "question": "anika schuh", - "icon": "./assets/data/nsi/logos/anikaschuh-0833e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anikaschuh-0833e2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477492,7 +477853,7 @@ }, { "question": "ara", - "icon": "./assets/data/nsi/logos/ara-59c06d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ara-59c06d.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477508,7 +477869,7 @@ }, { "question": "Arche", - "icon": "./assets/data/nsi/logos/arche-64a960.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arche-64a960.png", "osmTags": { "and": [ "shop=shoes", @@ -477524,7 +477885,7 @@ }, { "question": "Archive", - "icon": "./assets/data/nsi/logos/archive-067547.png", + "icon": "https://data.mapcomplete.org/nsi//logos/archive-067547.png", "osmTags": { "and": [ "shop=shoes", @@ -477540,7 +477901,7 @@ }, { "question": "Arezzo", - "icon": "./assets/data/nsi/logos/arezzo-7c075c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arezzo-7c075c.png", "osmTags": { "and": [ "shoes=women", @@ -477557,7 +477918,7 @@ }, { "question": "ASICS", - "icon": "./assets/data/nsi/logos/asics-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asics-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477588,7 +477949,7 @@ }, { "question": "Bally", - "icon": "./assets/data/nsi/logos/bally-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bally-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477604,7 +477965,7 @@ }, { "question": "Bata", - "icon": "./assets/data/nsi/logos/bata-361eb5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bata-361eb5.png", "osmTags": { "and": [ "shop=shoes", @@ -477620,7 +477981,7 @@ }, { "question": "Baťa", - "icon": "./assets/data/nsi/logos/bata-76c27d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bata-76c27d.png", "osmTags": { "and": [ "shop=shoes", @@ -477636,7 +477997,7 @@ }, { "question": "Belwest", - "icon": "./assets/data/nsi/logos/belwest-886255.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belwest-886255.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477652,7 +478013,7 @@ }, { "question": "Besson Chaussures", - "icon": "./assets/data/nsi/logos/bessonchaussures-e6cf1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bessonchaussures-e6cf1b.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477668,7 +478029,7 @@ }, { "question": "Betts", - "icon": "./assets/data/nsi/logos/betts-373058.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/betts-373058.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477684,7 +478045,7 @@ }, { "question": "Bexley", - "icon": "./assets/data/nsi/logos/bexley-423d6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bexley-423d6f.jpg", "osmTags": { "and": [ "shoes=men", @@ -477701,7 +478062,7 @@ }, { "question": "Birkenstock", - "icon": "./assets/data/nsi/logos/birkenstock-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birkenstock-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477717,7 +478078,7 @@ }, { "question": "Bocage", - "icon": "./assets/data/nsi/logos/bocage-e6cf1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bocage-e6cf1b.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477733,7 +478094,7 @@ }, { "question": "Botticelli", - "icon": "./assets/data/nsi/logos/botticelli-d6114e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/botticelli-d6114e.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477749,7 +478110,7 @@ }, { "question": "Brantano", - "icon": "./assets/data/nsi/logos/brantano-12213a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brantano-12213a.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477765,7 +478126,7 @@ }, { "question": "Browns", - "icon": "./assets/data/nsi/logos/browns-189a70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/browns-189a70.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477781,7 +478142,7 @@ }, { "question": "Call It Spring", - "icon": "./assets/data/nsi/logos/callitspring-9b62dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/callitspring-9b62dc.png", "osmTags": { "and": [ "shop=shoes", @@ -477797,7 +478158,7 @@ }, { "question": "Camper", - "icon": "./assets/data/nsi/logos/camper-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camper-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477813,7 +478174,7 @@ }, { "question": "CCC", - "icon": "./assets/data/nsi/logos/ccc-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ccc-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477829,7 +478190,7 @@ }, { "question": "Chaussea", - "icon": "./assets/data/nsi/logos/chaussea-d3b405.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chaussea-d3b405.png", "osmTags": { "and": [ "shop=shoes", @@ -477845,7 +478206,7 @@ }, { "question": "Chaussexpo", - "icon": "./assets/data/nsi/logos/chaussexpo-e6cf1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chaussexpo-e6cf1b.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477861,7 +478222,7 @@ }, { "question": "Christian Louboutin", - "icon": "./assets/data/nsi/logos/christianlouboutin-eede13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/christianlouboutin-eede13.png", "osmTags": { "and": [ "shop=shoes", @@ -477877,7 +478238,7 @@ }, { "question": "Cklass", - "icon": "./assets/data/nsi/logos/cklass-02b23f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cklass-02b23f.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477893,7 +478254,7 @@ }, { "question": "Clarks", - "icon": "./assets/data/nsi/logos/clarks-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarks-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477909,7 +478270,7 @@ }, { "question": "Cole Haan", - "icon": "./assets/data/nsi/logos/colehaan-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colehaan-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477925,7 +478286,7 @@ }, { "question": "Constance", - "icon": "./assets/data/nsi/logos/constance-7c075c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/constance-7c075c.jpg", "osmTags": { "and": [ "shoes=women", @@ -477942,7 +478303,7 @@ }, { "question": "Converse", - "icon": "./assets/data/nsi/logos/converse-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/converse-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477958,7 +478319,7 @@ }, { "question": "Cosmoparis", - "icon": "./assets/data/nsi/logos/cosmoparis-e37ab9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cosmoparis-e37ab9.jpg", "osmTags": { "and": [ "shop=shoes", @@ -477974,7 +478335,7 @@ }, { "question": "Courir", - "icon": "./assets/data/nsi/logos/courir-1cd077.png", + "icon": "https://data.mapcomplete.org/nsi//logos/courir-1cd077.png", "osmTags": { "and": [ "shop=shoes", @@ -477990,7 +478351,7 @@ }, { "question": "Crocs", - "icon": "./assets/data/nsi/logos/crocs-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crocs-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478006,7 +478367,7 @@ }, { "question": "Deichmann", - "icon": "./assets/data/nsi/logos/deichmann-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deichmann-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478022,7 +478383,7 @@ }, { "question": "Din sko", - "icon": "./assets/data/nsi/logos/dinsko-5ed905.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dinsko-5ed905.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478038,7 +478399,7 @@ }, { "question": "dna", - "icon": "./assets/data/nsi/logos/dna-465569.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dna-465569.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478053,7 +478414,7 @@ }, { "question": "Dodo's", - "icon": "./assets/data/nsi/logos/dodos-76fee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dodos-76fee2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478069,7 +478430,7 @@ }, { "question": "Dosenbach", - "icon": "./assets/data/nsi/logos/dosenbach-f20847.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dosenbach-f20847.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478085,7 +478446,7 @@ }, { "question": "Dr. Kong", - "icon": "./assets/data/nsi/logos/drkong-2bd793.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drkong-2bd793.png", "osmTags": { "and": [ "shop=shoes", @@ -478102,7 +478463,7 @@ }, { "question": "Dr. Martens", - "icon": "./assets/data/nsi/logos/drmartens-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drmartens-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478118,7 +478479,7 @@ }, { "question": "DSW", - "icon": "./assets/data/nsi/logos/dsw-22ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dsw-22ceb3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478134,7 +478495,7 @@ }, { "question": "Dune London", - "icon": "./assets/data/nsi/logos/dunelondon-95839f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunelondon-95839f.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478151,7 +478512,7 @@ }, { "question": "Ecco", - "icon": "./assets/data/nsi/logos/ecco-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecco-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478167,7 +478528,7 @@ }, { "question": "Éram", - "icon": "./assets/data/nsi/logos/eram-423d6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eram-423d6f.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478183,7 +478544,7 @@ }, { "question": "Eurosko", - "icon": "./assets/data/nsi/logos/eurosko-5ed905.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurosko-5ed905.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478199,7 +478560,7 @@ }, { "question": "Famous Footwear", - "icon": "./assets/data/nsi/logos/famousfootwear-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/famousfootwear-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478215,7 +478576,7 @@ }, { "question": "Fleet Feet", - "icon": "./assets/data/nsi/logos/fleetfeet-c5ede1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fleetfeet-c5ede1.png", "osmTags": { "and": [ "shop=shoes", @@ -478231,7 +478592,7 @@ }, { "question": "FLO", - "icon": "./assets/data/nsi/logos/flo-ad2d82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/flo-ad2d82.png", "osmTags": { "and": [ "shop=shoes", @@ -478247,7 +478608,7 @@ }, { "question": "Foot Locker", - "icon": "./assets/data/nsi/logos/footlocker-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/footlocker-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478263,7 +478624,7 @@ }, { "question": "Foot Solutions", - "icon": "./assets/data/nsi/logos/footsolutions-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/footsolutions-9b62dc.jpg", "osmTags": { "and": [ "healthcare:speciality=pedorthist", @@ -478281,7 +478642,7 @@ }, { "question": "Footaction", - "icon": "./assets/data/nsi/logos/footaction-22ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/footaction-22ceb3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478297,7 +478658,7 @@ }, { "question": "Footgear", - "icon": "./assets/data/nsi/logos/footgear-067547.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/footgear-067547.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478313,7 +478674,7 @@ }, { "question": "Free Lance", - "icon": "./assets/data/nsi/logos/freelance-e6cf1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freelance-e6cf1b.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478329,7 +478690,7 @@ }, { "question": "G.H. Bass & Co.", - "icon": "./assets/data/nsi/logos/ghbassandco-bd5ddf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ghbassandco-bd5ddf.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478345,7 +478706,7 @@ }, { "question": "Gabor", - "icon": "./assets/data/nsi/logos/gabor-36552c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gabor-36552c.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478361,7 +478722,7 @@ }, { "question": "Geox", - "icon": "./assets/data/nsi/logos/geox-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geox-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478377,7 +478738,7 @@ }, { "question": "Golden Goose", - "icon": "./assets/data/nsi/logos/goldengoose-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldengoose-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478393,7 +478754,7 @@ }, { "question": "Görtz", - "icon": "./assets/data/nsi/logos/gortz-0833e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gortz-0833e2.png", "osmTags": { "and": [ "shop=shoes", @@ -478409,7 +478770,7 @@ }, { "question": "Görtz 17", - "icon": "./assets/data/nsi/logos/gortz17-0833e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gortz17-0833e2.png", "osmTags": { "and": [ "shop=shoes", @@ -478425,7 +478786,7 @@ }, { "question": "Havaianas", - "icon": "./assets/data/nsi/logos/havaianas-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/havaianas-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478441,7 +478802,7 @@ }, { "question": "Hotter", - "icon": "./assets/data/nsi/logos/hotter-eede13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotter-eede13.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478457,16 +478818,16 @@ }, { "question": "House of Hoops", - "icon": "./assets/data/nsi/logos/houseofhoops-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houseofhoops-9b62dc.jpg", "osmTags": { "and": [ - "official_name=House of Hoops by Foot Locker", "shop=shoes", { "or": [ "brand=House of Hoops", "brand:wikidata=Q108232933", - "name=House of Hoops" + "name=House of Hoops", + "official_name=House of Hoops by Foot Locker" ] } ] @@ -478474,7 +478835,7 @@ }, { "question": "Humanic", - "icon": "./assets/data/nsi/logos/humanic-fbe642.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/humanic-fbe642.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478490,7 +478851,7 @@ }, { "question": "Hush Puppies", - "icon": "./assets/data/nsi/logos/hushpuppies-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hushpuppies-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478506,7 +478867,7 @@ }, { "question": "Intertop", - "icon": "./assets/data/nsi/logos/intertop-5eaca4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intertop-5eaca4.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478522,7 +478883,7 @@ }, { "question": "J.M. Weston", - "icon": "./assets/data/nsi/logos/jmweston-9b62dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jmweston-9b62dc.png", "osmTags": { "and": [ "shop=shoes", @@ -478538,7 +478899,7 @@ }, { "question": "JB Martin", - "icon": "./assets/data/nsi/logos/jbmartin-e6cf1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jbmartin-e6cf1b.jpg", "osmTags": { "and": [ "shoes=women", @@ -478555,7 +478916,7 @@ }, { "question": "Jimmy Choo", - "icon": "./assets/data/nsi/logos/jimmychoo-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jimmychoo-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478571,7 +478932,7 @@ }, { "question": "Johnston & Murphy", - "icon": "./assets/data/nsi/logos/johnstonandmurphy-22ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnstonandmurphy-22ceb3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478587,7 +478948,7 @@ }, { "question": "Jonak", - "icon": "./assets/data/nsi/logos/jonak-dff267.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonak-dff267.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478603,7 +478964,7 @@ }, { "question": "Jones Bootmaker", - "icon": "./assets/data/nsi/logos/jonesbootmaker-eede13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jonesbootmaker-eede13.png", "osmTags": { "and": [ "shop=shoes", @@ -478620,7 +478981,7 @@ }, { "question": "Journeys", - "icon": "./assets/data/nsi/logos/journeys-22ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/journeys-22ceb3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478636,7 +478997,7 @@ }, { "question": "Journeys Kidz", - "icon": "./assets/data/nsi/logos/journeyskidz-22ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/journeyskidz-22ceb3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478652,7 +479013,7 @@ }, { "question": "K+K Schuh-Center", - "icon": "./assets/data/nsi/logos/kkschuhcenter-0833e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kkschuhcenter-0833e2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478668,7 +479029,7 @@ }, { "question": "Kari", - "icon": "./assets/data/nsi/logos/kari-ff965c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kari-ff965c.png", "osmTags": { "and": [ "shop=shoes", @@ -478684,7 +479045,7 @@ }, { "question": "Kari Kids", - "icon": "./assets/data/nsi/logos/karikids-6758e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karikids-6758e9.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478700,7 +479061,7 @@ }, { "question": "Khadim", - "icon": "./assets/data/nsi/logos/khadims-02b6ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/khadims-02b6ad.jpg", "osmTags": { "and": [ "air_conditioning=yes", @@ -478720,7 +479081,7 @@ }, { "question": "Kids Foot Locker", - "icon": "./assets/data/nsi/logos/kidsfootlocker-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kidsfootlocker-9b62dc.jpg", "osmTags": { "and": [ "clothes=children", @@ -478737,7 +479098,7 @@ }, { "question": "Kurt Geiger", - "icon": "./assets/data/nsi/logos/kurtgeiger-eede13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kurtgeiger-eede13.png", "osmTags": { "and": [ "shop=shoes", @@ -478768,7 +479129,7 @@ }, { "question": "La New", - "icon": "./assets/data/nsi/logos/lanew-0da3e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lanew-0da3e0.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478784,7 +479145,7 @@ }, { "question": "Lady Foot Locker", - "icon": "./assets/data/nsi/logos/ladyfootlocker-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ladyfootlocker-c5ede1.jpg", "osmTags": { "and": [ "clothes=women", @@ -478801,7 +479162,7 @@ }, { "question": "Leiser", - "icon": "./assets/data/nsi/logos/leiser-0833e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leiser-0833e2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478832,7 +479193,7 @@ }, { "question": "Lille Vinkel Sko", - "icon": "./assets/data/nsi/logos/lillevinkelsko-465569.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lillevinkelsko-465569.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478847,7 +479208,7 @@ }, { "question": "Little Burgundy", - "icon": "./assets/data/nsi/logos/littleburgundy-189a70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/littleburgundy-189a70.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478863,7 +479224,7 @@ }, { "question": "Lloyd", - "icon": "./assets/data/nsi/logos/lloyd-928d17.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lloyd-928d17.svg", "osmTags": { "and": [ "shop=shoes", @@ -478879,7 +479240,7 @@ }, { "question": "Loding", - "icon": "./assets/data/nsi/logos/loding-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loding-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478895,7 +479256,7 @@ }, { "question": "Manaco", - "icon": "./assets/data/nsi/logos/manaco-c1b94b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manaco-c1b94b.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478925,7 +479286,7 @@ }, { "question": "Manfield (Nederland)", - "icon": "./assets/data/nsi/logos/manfield-0daf51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/manfield-0daf51.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478941,7 +479302,7 @@ }, { "question": "Mani", - "icon": "./assets/data/nsi/logos/mani-465569.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mani-465569.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478956,7 +479317,7 @@ }, { "question": "Marko", - "icon": "./assets/data/nsi/logos/marko-886255.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marko-886255.jpg", "osmTags": { "and": [ "shop=shoes", @@ -478974,7 +479335,7 @@ }, { "question": "Marypaz", - "icon": "./assets/data/nsi/logos/marypaz-587284.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marypaz-587284.svg", "osmTags": { "and": [ "shop=shoes", @@ -478990,7 +479351,7 @@ }, { "question": "Mascotte", - "icon": "./assets/data/nsi/logos/mascotte-0a14c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mascotte-0a14c2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479006,7 +479367,7 @@ }, { "question": "mat star", - "icon": "./assets/data/nsi/logos/matstar-34e073.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/matstar-34e073.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479022,7 +479383,7 @@ }, { "question": "Mayer's Markenschuhe", - "icon": "./assets/data/nsi/logos/mayersmarkenschuhe-0833e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mayersmarkenschuhe-0833e2.png", "osmTags": { "and": [ "shop=shoes", @@ -479052,7 +479413,7 @@ }, { "question": "Melissa", - "icon": "./assets/data/nsi/logos/melissa-7c075c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/melissa-7c075c.jpg", "osmTags": { "and": [ "shoes=women", @@ -479069,7 +479430,7 @@ }, { "question": "Mephisto", - "icon": "./assets/data/nsi/logos/mephisto-9b62dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mephisto-9b62dc.png", "osmTags": { "and": [ "shop=shoes", @@ -479085,7 +479446,7 @@ }, { "question": "Merrell", - "icon": "./assets/data/nsi/logos/merrell-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/merrell-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479101,7 +479462,7 @@ }, { "question": "Metro", - "icon": "./assets/data/nsi/logos/metro-02b6ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-02b6ad.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479117,7 +479478,7 @@ }, { "question": "Minelli", - "icon": "./assets/data/nsi/logos/minelli-e6cf1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minelli-e6cf1b.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479133,7 +479494,7 @@ }, { "question": "Moshulu", - "icon": "./assets/data/nsi/logos/moshulu-eede13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moshulu-eede13.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479149,7 +479510,7 @@ }, { "question": "Munich", - "icon": "./assets/data/nsi/logos/munich-d6114e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/munich-d6114e.png", "osmTags": { "and": [ "shop=shoes", @@ -479165,7 +479526,7 @@ }, { "question": "MyShoes", - "icon": "./assets/data/nsi/logos/myshoes-0833e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/myshoes-0833e2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479181,7 +479542,7 @@ }, { "question": "Naturalizer", - "icon": "./assets/data/nsi/logos/naturalizer-16a72e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturalizer-16a72e.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479197,7 +479558,7 @@ }, { "question": "Nelson Schoenen", - "icon": "./assets/data/nsi/logos/nelsonschoenen-81951f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nelsonschoenen-81951f.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479213,7 +479574,7 @@ }, { "question": "New Balance", - "icon": "./assets/data/nsi/logos/newbalance-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newbalance-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479229,7 +479590,7 @@ }, { "question": "NOVO", - "icon": "./assets/data/nsi/logos/novo-f56c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novo-f56c2a.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479245,7 +479606,7 @@ }, { "question": "Number One Shoes", - "icon": "./assets/data/nsi/logos/numberoneshoes-4d7d7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/numberoneshoes-4d7d7d.png", "osmTags": { "and": [ "shop=shoes", @@ -479261,7 +479622,7 @@ }, { "question": "Office", - "icon": "./assets/data/nsi/logos/office-3ba4eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/office-3ba4eb.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479277,7 +479638,7 @@ }, { "question": "Office Shoes", - "icon": "./assets/data/nsi/logos/officeshoes-30afef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/officeshoes-30afef.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479293,7 +479654,7 @@ }, { "question": "Omoda", - "icon": "./assets/data/nsi/logos/omoda-14cd03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omoda-14cd03.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479309,7 +479670,7 @@ }, { "question": "Pataugas", - "icon": "./assets/data/nsi/logos/pataugas-e6cf1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pataugas-e6cf1b.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479325,7 +479686,7 @@ }, { "question": "Pavers Shoes", - "icon": "./assets/data/nsi/logos/paversshoes-eede13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paversshoes-eede13.png", "osmTags": { "and": [ "shop=shoes", @@ -479341,7 +479702,7 @@ }, { "question": "Payless ShoeSource", - "icon": "./assets/data/nsi/logos/paylessshoesource-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paylessshoesource-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479357,7 +479718,7 @@ }, { "question": "PittaRosso", - "icon": "./assets/data/nsi/logos/pittarosso-6005fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pittarosso-6005fb.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479373,7 +479734,7 @@ }, { "question": "Pom d'Api", - "icon": "./assets/data/nsi/logos/pomdapi-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pomdapi-9b62dc.jpg", "osmTags": { "and": [ "shoes=children", @@ -479390,7 +479751,7 @@ }, { "question": "Primadonna", - "icon": "./assets/data/nsi/logos/primadonna-5548d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primadonna-5548d3.jpg", "osmTags": { "and": [ "shoes=women", @@ -479407,7 +479768,7 @@ }, { "question": "Querol", - "icon": "./assets/data/nsi/logos/querol-d6114e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/querol-d6114e.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479423,7 +479784,7 @@ }, { "question": "Quick Schuh", - "icon": "./assets/data/nsi/logos/quickschuh-59c06d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/quickschuh-59c06d.png", "osmTags": { "and": [ "shop=shoes", @@ -479439,7 +479800,7 @@ }, { "question": "R.M.Williams", - "icon": "./assets/data/nsi/logos/rmwilliams-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rmwilliams-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479455,7 +479816,7 @@ }, { "question": "Rack Room Shoes", - "icon": "./assets/data/nsi/logos/rackroomshoes-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rackroomshoes-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479471,7 +479832,7 @@ }, { "question": "Rage", - "icon": "./assets/data/nsi/logos/rage-067547.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rage-067547.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479487,7 +479848,7 @@ }, { "question": "Ralf Ringer", - "icon": "./assets/data/nsi/logos/ralfringer-0a14c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ralfringer-0a14c2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479503,7 +479864,7 @@ }, { "question": "Red Wing", - "icon": "./assets/data/nsi/logos/redwing-1e24e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redwing-1e24e3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479519,7 +479880,7 @@ }, { "question": "Reno", - "icon": "./assets/data/nsi/logos/reno-647f57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reno-647f57.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479549,7 +479910,7 @@ }, { "question": "Respect (Україна)", - "icon": "./assets/data/nsi/logos/respect-587627.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/respect-587627.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479565,7 +479926,7 @@ }, { "question": "Rieker", - "icon": "./assets/data/nsi/logos/rieker-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rieker-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479581,7 +479942,7 @@ }, { "question": "Road Runner Sports", - "icon": "./assets/data/nsi/logos/roadrunnersports-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roadrunnersports-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479597,7 +479958,7 @@ }, { "question": "Robel", - "icon": "./assets/data/nsi/logos/robel-26b6c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robel-26b6c7.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479613,7 +479974,7 @@ }, { "question": "Rockport", - "icon": "./assets/data/nsi/logos/rockport-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockport-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479629,7 +479990,7 @@ }, { "question": "Runners Point", - "icon": "./assets/data/nsi/logos/runnerspoint-0833e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/runnerspoint-0833e2.png", "osmTags": { "and": [ "shop=shoes", @@ -479645,7 +480006,7 @@ }, { "question": "Ryłko", - "icon": "./assets/data/nsi/logos/rylko-aa42f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rylko-aa42f1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479661,7 +480022,7 @@ }, { "question": "Sacha", - "icon": "./assets/data/nsi/logos/sacha-854638.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacha-854638.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479677,7 +480038,7 @@ }, { "question": "Salamander", - "icon": "./assets/data/nsi/logos/salamander-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salamander-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479693,7 +480054,7 @@ }, { "question": "Salvador Artesano", - "icon": "./assets/data/nsi/logos/salvadorartesano-d6114e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/salvadorartesano-d6114e.png", "osmTags": { "and": [ "shop=shoes", @@ -479709,7 +480070,7 @@ }, { "question": "Salvatore Ferragamo", - "icon": "./assets/data/nsi/logos/salvatoreferragamo-9b62dc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/salvatoreferragamo-9b62dc.svg", "osmTags": { "and": [ "shop=shoes", @@ -479725,7 +480086,7 @@ }, { "question": "San Marina", - "icon": "./assets/data/nsi/logos/sanmarina-c57706.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanmarina-c57706.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479741,7 +480102,7 @@ }, { "question": "Santa Lolla", - "icon": "./assets/data/nsi/logos/santalolla-7c075c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santalolla-7c075c.jpg", "osmTags": { "and": [ "shoes=women", @@ -479758,7 +480119,7 @@ }, { "question": "SAS (San Antonio Shoemakers)", - "icon": "./assets/data/nsi/logos/sas-9b62dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sas-9b62dc.png", "osmTags": { "and": [ "shop=shoes", @@ -479775,7 +480136,7 @@ }, { "question": "Scapino", - "icon": "./assets/data/nsi/logos/scapino-81951f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scapino-81951f.png", "osmTags": { "and": [ "shop=shoes", @@ -479791,7 +480152,7 @@ }, { "question": "Scarpe&Scarpe", - "icon": "./assets/data/nsi/logos/scarpeandscarpe-5548d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scarpeandscarpe-5548d3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479807,7 +480168,7 @@ }, { "question": "Schuh", - "icon": "./assets/data/nsi/logos/schuh-a4f363.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schuh-a4f363.png", "osmTags": { "and": [ "shop=shoes", @@ -479823,7 +480184,7 @@ }, { "question": "Schuh-Mann", - "icon": "./assets/data/nsi/logos/schuhmann-0833e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schuhmann-0833e2.png", "osmTags": { "and": [ "shop=shoes", @@ -479854,7 +480215,7 @@ }, { "question": "Schuhpark", - "icon": "./assets/data/nsi/logos/schuhpark-0833e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schuhpark-0833e2.png", "osmTags": { "and": [ "shop=shoes", @@ -479870,7 +480231,7 @@ }, { "question": "Scorett", - "icon": "./assets/data/nsi/logos/scorett-14eefa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scorett-14eefa.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479900,7 +480261,7 @@ }, { "question": "Sebago", - "icon": "./assets/data/nsi/logos/sebago-9b62dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sebago-9b62dc.png", "osmTags": { "and": [ "shop=shoes", @@ -479916,7 +480277,7 @@ }, { "question": "Sezon", - "icon": "./assets/data/nsi/logos/sezon-587627.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sezon-587627.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479946,7 +480307,7 @@ }, { "question": "Shoe Carnival", - "icon": "./assets/data/nsi/logos/shoecarnival-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoecarnival-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479962,7 +480323,7 @@ }, { "question": "Shoe City (California)", - "icon": "./assets/data/nsi/logos/shoecity-c5ede1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoecity-c5ede1.png", "osmTags": { "and": [ "shop=shoes", @@ -479978,7 +480339,7 @@ }, { "question": "Shoe City (Southern Africa)", - "icon": "./assets/data/nsi/logos/shoecity-423275.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoecity-423275.jpg", "osmTags": { "and": [ "shop=shoes", @@ -479994,7 +480355,7 @@ }, { "question": "Shoe Dept.", - "icon": "./assets/data/nsi/logos/shoedept-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoedept-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480010,7 +480371,7 @@ }, { "question": "Shoe Dept. Encore", - "icon": "./assets/data/nsi/logos/shoedeptencore-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoedeptencore-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480026,7 +480387,7 @@ }, { "question": "Shoe Palace", - "icon": "./assets/data/nsi/logos/shoepalace-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoepalace-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480042,7 +480403,7 @@ }, { "question": "Shoe Sensation", - "icon": "./assets/data/nsi/logos/shoesensation-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoesensation-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480058,7 +480419,7 @@ }, { "question": "Shoe Show", - "icon": "./assets/data/nsi/logos/shoeshow-c5ede1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoeshow-c5ede1.png", "osmTags": { "and": [ "shop=shoes", @@ -480074,7 +480435,7 @@ }, { "question": "Shoe Show Mega", - "icon": "./assets/data/nsi/logos/shoeshowmega-c5ede1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoeshowmega-c5ede1.png", "osmTags": { "and": [ "shop=shoes", @@ -480090,7 +480451,7 @@ }, { "question": "Shoe Zone", - "icon": "./assets/data/nsi/logos/shoezone-c06ee3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoezone-c06ee3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480106,7 +480467,7 @@ }, { "question": "shoe4you", - "icon": "./assets/data/nsi/logos/shoe4you-59c06d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoe4you-59c06d.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480122,7 +480483,7 @@ }, { "question": "Shoeday", - "icon": "./assets/data/nsi/logos/shoeday-465569.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoeday-465569.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480137,7 +480498,7 @@ }, { "question": "Side Step", - "icon": "./assets/data/nsi/logos/sidestep-76fee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sidestep-76fee2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480168,7 +480529,7 @@ }, { "question": "Siemes Schuhcenter", - "icon": "./assets/data/nsi/logos/siemesschuhcenter-0833e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siemesschuhcenter-0833e2.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480184,7 +480545,7 @@ }, { "question": "Sizeer", - "icon": "./assets/data/nsi/logos/sizeer-5db2a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sizeer-5db2a9.png", "osmTags": { "and": [ "shop=shoes", @@ -480200,7 +480561,7 @@ }, { "question": "Skechers", - "icon": "./assets/data/nsi/logos/skechers-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skechers-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480216,7 +480577,7 @@ }, { "question": "Skopunkten", - "icon": "./assets/data/nsi/logos/skopunkten-14eefa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skopunkten-14eefa.png", "osmTags": { "and": [ "shop=shoes", @@ -480232,7 +480593,7 @@ }, { "question": "Skoringen", - "icon": "./assets/data/nsi/logos/skoringen-452c0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skoringen-452c0a.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480248,7 +480609,7 @@ }, { "question": "Sneaker Factory", - "icon": "./assets/data/nsi/logos/sneakerfactory-067547.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sneakerfactory-067547.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480264,7 +480625,7 @@ }, { "question": "Snipes", - "icon": "./assets/data/nsi/logos/snipes-9e6e1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snipes-9e6e1a.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480280,7 +480641,7 @@ }, { "question": "Soft Moc", - "icon": "./assets/data/nsi/logos/softmoc-189a70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/softmoc-189a70.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480296,7 +480657,7 @@ }, { "question": "Spendless Shoes", - "icon": "./assets/data/nsi/logos/spendlessshoes-373058.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spendlessshoes-373058.png", "osmTags": { "and": [ "shop=shoes", @@ -480312,7 +480673,7 @@ }, { "question": "Sperry", - "icon": "./assets/data/nsi/logos/sperry-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sperry-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480328,7 +480689,7 @@ }, { "question": "Spitz", - "icon": "./assets/data/nsi/logos/spitz-067547.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spitz-067547.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480344,7 +480705,7 @@ }, { "question": "Steve Madden", - "icon": "./assets/data/nsi/logos/stevemadden-22ceb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stevemadden-22ceb3.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480375,7 +480736,7 @@ }, { "question": "street shoes", - "icon": "./assets/data/nsi/logos/streetshoes-0833e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/streetshoes-0833e2.png", "osmTags": { "and": [ "shop=shoes", @@ -480391,7 +480752,7 @@ }, { "question": "Stride Rite", - "icon": "./assets/data/nsi/logos/striderite-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/striderite-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480407,7 +480768,7 @@ }, { "question": "Stuart Weitzman", - "icon": "./assets/data/nsi/logos/stuartweitzman-54b0d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stuartweitzman-54b0d5.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480423,7 +480784,7 @@ }, { "question": "Tamaris", - "icon": "./assets/data/nsi/logos/tamaris-e95100.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tamaris-e95100.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480439,7 +480800,7 @@ }, { "question": "Tekkie Town", - "icon": "./assets/data/nsi/logos/tekkietown-bf67c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tekkietown-bf67c5.png", "osmTags": { "and": [ "shop=shoes", @@ -480455,7 +480816,7 @@ }, { "question": "The Athlete's Foot", - "icon": "./assets/data/nsi/logos/theathletesfoot-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theathletesfoot-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480471,7 +480832,7 @@ }, { "question": "The Shoe Company", - "icon": "./assets/data/nsi/logos/theshoecompany-189a70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theshoecompany-189a70.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480487,7 +480848,7 @@ }, { "question": "The Walking Company", - "icon": "./assets/data/nsi/logos/thewalkingcompany-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thewalkingcompany-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480504,7 +480865,7 @@ }, { "question": "Tod's", - "icon": "./assets/data/nsi/logos/tods-9b62dc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tods-9b62dc.svg", "osmTags": { "and": [ "shop=shoes", @@ -480520,7 +480881,7 @@ }, { "question": "Torfs", - "icon": "./assets/data/nsi/logos/schoenentorfs-9a105b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schoenentorfs-9a105b.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480536,7 +480897,7 @@ }, { "question": "Tradehome Shoes", - "icon": "./assets/data/nsi/logos/tradehomeshoes-c5ede1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tradehomeshoes-c5ede1.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480552,7 +480913,7 @@ }, { "question": "UGG", - "icon": "./assets/data/nsi/logos/ugg-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ugg-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480568,7 +480929,7 @@ }, { "question": "Usaflex", - "icon": "./assets/data/nsi/logos/usaflex-7c075c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usaflex-7c075c.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480584,7 +480945,7 @@ }, { "question": "vanHaren", - "icon": "./assets/data/nsi/logos/vanharen-9b006f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vanharen-9b006f.png", "osmTags": { "and": [ "shop=shoes", @@ -480600,7 +480961,7 @@ }, { "question": "Vans", - "icon": "./assets/data/nsi/logos/vans-9b62dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vans-9b62dc.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480616,7 +480977,7 @@ }, { "question": "Vögele Shoes", - "icon": "./assets/data/nsi/logos/vogeleshoes-10cc84.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vogeleshoes-10cc84.svg", "osmTags": { "and": [ "shop=shoes", @@ -480632,7 +480993,7 @@ }, { "question": "Walking on a Cloud", - "icon": "./assets/data/nsi/logos/walkingonacloud-189a70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walkingonacloud-189a70.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480648,7 +481009,7 @@ }, { "question": "WeShoes", - "icon": "./assets/data/nsi/logos/weshoes-e604d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weshoes-e604d0.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480664,7 +481025,7 @@ }, { "question": "Wojas", - "icon": "./assets/data/nsi/logos/wojas-db04aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wojas-db04aa.png", "osmTags": { "and": [ "shop=shoes", @@ -480680,7 +481041,7 @@ }, { "question": "Woodland", - "icon": "./assets/data/nsi/logos/woodland-02b6ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woodland-02b6ad.png", "osmTags": { "and": [ "shop=shoes", @@ -480696,7 +481057,7 @@ }, { "question": "World Tennis", - "icon": "./assets/data/nsi/logos/worldtennis-7c075c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldtennis-7c075c.jpg", "osmTags": { "and": [ "shoes=sport", @@ -480713,7 +481074,7 @@ }, { "question": "WSS", - "icon": "./assets/data/nsi/logos/wss-c5ede1.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/wss-c5ede1.gif", "osmTags": { "and": [ "shop=shoes", @@ -480743,7 +481104,7 @@ }, { "question": "Ziengs", - "icon": "./assets/data/nsi/logos/ziengs-81951f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ziengs-81951f.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480773,7 +481134,7 @@ }, { "question": "ЦентрОбувь", - "icon": "./assets/data/nsi/logos/6c57c6-886255.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/6c57c6-886255.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480789,7 +481150,7 @@ }, { "question": "Эконика", - "icon": "./assets/data/nsi/logos/b94bbd-2bb834.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/b94bbd-2bb834.jpg", "osmTags": { "and": [ "shoes=women", @@ -480806,7 +481167,7 @@ }, { "question": "Юничел", - "icon": "./assets/data/nsi/logos/fa8d5a-2bb834.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fa8d5a-2bb834.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480822,7 +481183,7 @@ }, { "question": "ბატა", - "icon": "./assets/data/nsi/logos/bata-100886.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bata-100886.png", "osmTags": { "and": [ "shop=shoes", @@ -480841,7 +481202,7 @@ }, { "question": "კორსო იტალია", - "icon": "./assets/data/nsi/logos/corsoitalia-100886.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corsoitalia-100886.png", "osmTags": { "and": [ "shop=shoes", @@ -480862,7 +481223,7 @@ }, { "question": "ფლო", - "icon": "./assets/data/nsi/logos/flo-100886.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flo-100886.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480881,7 +481242,7 @@ }, { "question": "シュープラザ", - "icon": "./assets/data/nsi/logos/shoeplaza-53e098.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoeplaza-53e098.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480901,7 +481262,7 @@ }, { "question": "つるや", - "icon": "./assets/data/nsi/logos/tsuruya-53e098.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsuruya-53e098.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480921,7 +481282,7 @@ }, { "question": "回力", - "icon": "./assets/data/nsi/logos/warrior-2cdeaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warrior-2cdeaf.jpg", "osmTags": { "and": [ "shop=shoes", @@ -480941,7 +481302,7 @@ }, { "question": "東京靴流通センター", - "icon": "./assets/data/nsi/logos/tokyoshoesretailingcenter-53e098.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tokyoshoesretailingcenter-53e098.png", "osmTags": { "and": [ "shop=shoes", @@ -480980,7 +481341,7 @@ }, { "question": "阿瘦皮鞋", - "icon": "./assets/data/nsi/logos/aso-0da3e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aso-0da3e0.jpg", "osmTags": { "and": [ "shop=shoes", @@ -481000,7 +481361,7 @@ }, { "question": "靴専科", - "icon": "./assets/data/nsi/logos/kutsusenka-53e098.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kutsusenka-53e098.png", "osmTags": { "and": [ "shop=shoes", @@ -481020,7 +481381,7 @@ }, { "question": "Penzeys Spices", - "icon": "./assets/data/nsi/logos/penzeysspices-bcf057.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penzeysspices-bcf057.jpg", "osmTags": { "and": [ "shop=spices", @@ -481036,7 +481397,7 @@ }, { "question": "4F", - "icon": "./assets/data/nsi/logos/4f-723a68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/4f-723a68.png", "osmTags": { "and": [ "shop=sports", @@ -481052,7 +481413,7 @@ }, { "question": "A3 SPORT", - "icon": "./assets/data/nsi/logos/a3sport-9dd59e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a3sport-9dd59e.jpg", "osmTags": { "and": [ "shop=sports", @@ -481068,7 +481429,7 @@ }, { "question": "Academy Sports + Outdoors", - "icon": "./assets/data/nsi/logos/academysportsoutdoors-89ce6f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/academysportsoutdoors-89ce6f.png", "osmTags": { "and": [ "shop=sports", @@ -481084,7 +481445,7 @@ }, { "question": "Adidas", - "icon": "./assets/data/nsi/logos/adidas-59994a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adidas-59994a.jpg", "osmTags": { "and": [ "shop=sports", @@ -481100,7 +481461,7 @@ }, { "question": "Admiral Sports", - "icon": "./assets/data/nsi/logos/admiralsports-71efeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/admiralsports-71efeb.jpg", "osmTags": { "and": [ "shop=sports", @@ -481116,7 +481477,7 @@ }, { "question": "Aktiesport", - "icon": "./assets/data/nsi/logos/aktiesport-2637e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aktiesport-2637e1.jpg", "osmTags": { "and": [ "shop=sports", @@ -481132,7 +481493,7 @@ }, { "question": "American Golf", - "icon": "./assets/data/nsi/logos/americangolf-03b7aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americangolf-03b7aa.jpg", "osmTags": { "and": [ "shop=sports", @@ -481149,7 +481510,7 @@ }, { "question": "Arei Outdoor Gear", - "icon": "./assets/data/nsi/logos/areioutdoorgear-f9c896.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/areioutdoorgear-f9c896.jpg", "osmTags": { "and": [ "shop=sports", @@ -481165,7 +481526,7 @@ }, { "question": "Athletics", - "icon": "./assets/data/nsi/logos/athletics-d7f1c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/athletics-d7f1c6.jpg", "osmTags": { "and": [ "shop=sports", @@ -481181,7 +481542,7 @@ }, { "question": "Big 5 Sporting Goods", - "icon": "./assets/data/nsi/logos/big5sportinggoods-89ce6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/big5sportinggoods-89ce6f.jpg", "osmTags": { "and": [ "shop=sports", @@ -481197,7 +481558,7 @@ }, { "question": "Centauro", - "icon": "./assets/data/nsi/logos/centauro-f744b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centauro-f744b5.png", "osmTags": { "and": [ "shop=sports", @@ -481213,7 +481574,7 @@ }, { "question": "Champs Sports", - "icon": "./assets/data/nsi/logos/champssports-2a6203.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/champssports-2a6203.jpg", "osmTags": { "and": [ "shop=sports", @@ -481229,7 +481590,7 @@ }, { "question": "Cisalfa Sport", - "icon": "./assets/data/nsi/logos/cisalfasport-c3bdd2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cisalfasport-c3bdd2.jpg", "osmTags": { "and": [ "shop=sports", @@ -481245,7 +481606,7 @@ }, { "question": "Club Champion", - "icon": "./assets/data/nsi/logos/clubchampion-89ce6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubchampion-89ce6f.jpg", "osmTags": { "and": [ "shop=sports", @@ -481262,7 +481623,7 @@ }, { "question": "Decathlon", - "icon": "./assets/data/nsi/logos/decathlon-330f9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decathlon-330f9d.jpg", "osmTags": { "and": [ "shop=sports", @@ -481278,7 +481639,7 @@ }, { "question": "Decathlon (България)", - "icon": "./assets/data/nsi/logos/decathlon-7ad0c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decathlon-7ad0c4.jpg", "osmTags": { "and": [ "shop=sports", @@ -481296,7 +481657,7 @@ }, { "question": "Decathlon (Україна)", - "icon": "./assets/data/nsi/logos/decathlon-d7f1c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decathlon-d7f1c6.jpg", "osmTags": { "and": [ "shop=sports", @@ -481318,7 +481679,7 @@ }, { "question": "Dick's House of Sport", - "icon": "./assets/data/nsi/logos/dickshouseofsport-89ce6f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dickshouseofsport-89ce6f.png", "osmTags": { "and": [ "shop=sports", @@ -481334,7 +481695,7 @@ }, { "question": "Dick's Sporting Goods", - "icon": "./assets/data/nsi/logos/dickssportinggoods-89ce6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dickssportinggoods-89ce6f.jpg", "osmTags": { "and": [ "shop=sports", @@ -481350,7 +481711,7 @@ }, { "question": "Dunham's Sports", - "icon": "./assets/data/nsi/logos/dunhamssports-89ce6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunhamssports-89ce6f.jpg", "osmTags": { "and": [ "shop=sports", @@ -481366,7 +481727,7 @@ }, { "question": "EQUIVA", - "icon": "./assets/data/nsi/logos/equiva-081602.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equiva-081602.jpg", "osmTags": { "and": [ "shop=sports", @@ -481383,7 +481744,7 @@ }, { "question": "EXIsport", - "icon": "./assets/data/nsi/logos/exisport-aa748e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exisport-aa748e.jpg", "osmTags": { "and": [ "shop=sports", @@ -481399,7 +481760,7 @@ }, { "question": "Finish Line", - "icon": "./assets/data/nsi/logos/finishline-89ce6f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/finishline-89ce6f.png", "osmTags": { "and": [ "shop=sports", @@ -481415,7 +481776,7 @@ }, { "question": "Fitshop", - "icon": "./assets/data/nsi/logos/fitshop-b06acf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fitshop-b06acf.jpg", "osmTags": { "and": [ "shop=sports", @@ -481431,7 +481792,7 @@ }, { "question": "Gigasport", - "icon": "./assets/data/nsi/logos/gigasport-f4008b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gigasport-f4008b.jpg", "osmTags": { "and": [ "shop=sports", @@ -481447,7 +481808,7 @@ }, { "question": "GigaSports", - "icon": "./assets/data/nsi/logos/gigasports-968672.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gigasports-968672.jpg", "osmTags": { "and": [ "shop=sports", @@ -481465,7 +481826,7 @@ }, { "question": "GO Sport", - "icon": "./assets/data/nsi/logos/gosport-63990e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gosport-63990e.png", "osmTags": { "and": [ "shop=sports", @@ -481481,7 +481842,7 @@ }, { "question": "Golf Galaxy", - "icon": "./assets/data/nsi/logos/golfgalaxy-89ce6f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/golfgalaxy-89ce6f.svg", "osmTags": { "and": [ "shop=sports", @@ -481498,7 +481859,7 @@ }, { "question": "Golf Town", - "icon": "./assets/data/nsi/logos/golftown-80660e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/golftown-80660e.png", "osmTags": { "and": [ "shop=sports", @@ -481514,7 +481875,7 @@ }, { "question": "Hervis", - "icon": "./assets/data/nsi/logos/hervis-38a747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hervis-38a747.jpg", "osmTags": { "and": [ "shop=sports", @@ -481530,7 +481891,7 @@ }, { "question": "Hibbett Sports", - "icon": "./assets/data/nsi/logos/hibbettsports-89ce6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hibbettsports-89ce6f.jpg", "osmTags": { "and": [ "shop=sports", @@ -481546,7 +481907,7 @@ }, { "question": "Hööks Hästsport", - "icon": "./assets/data/nsi/logos/hookshastsport-b82ac0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hookshastsport-b82ac0.png", "osmTags": { "and": [ "shop=sports", @@ -481562,7 +481923,7 @@ }, { "question": "Intersport", - "icon": "./assets/data/nsi/logos/intersport-eca9ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intersport-eca9ec.jpg", "osmTags": { "and": [ "shop=sports", @@ -481578,7 +481939,7 @@ }, { "question": "Intersport (Deutschland)", - "icon": "./assets/data/nsi/logos/intersport-69bd4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intersport-69bd4b.jpg", "osmTags": { "and": [ "shop=sports", @@ -481594,7 +481955,7 @@ }, { "question": "Intersport (Norge)", - "icon": "./assets/data/nsi/logos/intersport-6faf2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intersport-6faf2d.jpg", "osmTags": { "and": [ "shop=sports", @@ -481610,7 +481971,7 @@ }, { "question": "Intersport Elverys", - "icon": "./assets/data/nsi/logos/intersportelverys-6fd3c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intersportelverys-6fd3c0.jpg", "osmTags": { "and": [ "shop=sports", @@ -481626,7 +481987,7 @@ }, { "question": "JD Sports", - "icon": "./assets/data/nsi/logos/jdsports-e19f89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jdsports-e19f89.jpg", "osmTags": { "and": [ "shop=sports", @@ -481642,7 +482003,7 @@ }, { "question": "Johnson Fitness & Wellness", - "icon": "./assets/data/nsi/logos/johnsonfitnessandwellness-57cfca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnsonfitnessandwellness-57cfca.jpg", "osmTags": { "and": [ "shop=sports", @@ -481658,7 +482019,7 @@ }, { "question": "Krämer Pferdesport", - "icon": "./assets/data/nsi/logos/kramerpferdesport-081602.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kramerpferdesport-081602.png", "osmTags": { "and": [ "shop=sports", @@ -481675,7 +482036,7 @@ }, { "question": "Life Style Sports", - "icon": "./assets/data/nsi/logos/lifestylesports-6fd3c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifestylesports-6fd3c0.jpg", "osmTags": { "and": [ "shop=sports", @@ -481691,7 +482052,7 @@ }, { "question": "Marathon Sports (Ecuador)", - "icon": "./assets/data/nsi/logos/marathonsports-ce6e12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonsports-ce6e12.jpg", "osmTags": { "and": [ "shop=sports", @@ -481707,7 +482068,7 @@ }, { "question": "Marathon Sports (Hong Kong)", - "icon": "./assets/data/nsi/logos/marathonsports-968672.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonsports-968672.jpg", "osmTags": { "and": [ "shop=sports", @@ -481731,7 +482092,7 @@ }, { "question": "Marathon Sports (USA)", - "icon": "./assets/data/nsi/logos/marathonsports-89ce6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonsports-89ce6f.jpg", "osmTags": { "and": [ "shop=sports", @@ -481747,7 +482108,7 @@ }, { "question": "Martes Sport", - "icon": "./assets/data/nsi/logos/martessport-39c002.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/martessport-39c002.jpg", "osmTags": { "and": [ "shop=sports", @@ -481763,7 +482124,7 @@ }, { "question": "Modell's Sporting Goods", - "icon": "./assets/data/nsi/logos/modellssportinggoods-89ce6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/modellssportinggoods-89ce6f.jpg", "osmTags": { "and": [ "shop=sports", @@ -481779,7 +482140,7 @@ }, { "question": "Ochsner Sport", - "icon": "./assets/data/nsi/logos/ochsnersport-89a72b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ochsnersport-89a72b.jpg", "osmTags": { "and": [ "shop=sports", @@ -481795,7 +482156,7 @@ }, { "question": "Peloton", - "icon": "./assets/data/nsi/logos/peloton-18eda3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peloton-18eda3.jpg", "osmTags": { "and": [ "shop=sports", @@ -481811,7 +482172,7 @@ }, { "question": "PGA Tour Superstore", - "icon": "./assets/data/nsi/logos/pgatoursuperstore-89ce6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgatoursuperstore-89ce6f.jpg", "osmTags": { "and": [ "shop=sports", @@ -481828,7 +482189,7 @@ }, { "question": "Planeta Sport", - "icon": "./assets/data/nsi/logos/planetasport-d20c83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/planetasport-d20c83.jpg", "osmTags": { "and": [ "shop=sports", @@ -481846,7 +482207,7 @@ }, { "question": "Play It Again Sports", - "icon": "./assets/data/nsi/logos/playitagainsports-2a6203.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/playitagainsports-2a6203.jpg", "osmTags": { "and": [ "shop=sports", @@ -481862,7 +482223,7 @@ }, { "question": "Pro Hockey Life", - "icon": "./assets/data/nsi/logos/prohockeylife-80660e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prohockeylife-80660e.jpg", "osmTags": { "and": [ "shop=sports", @@ -481893,7 +482254,7 @@ }, { "question": "Rapha", - "icon": "./assets/data/nsi/logos/rapha-e13309.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rapha-e13309.jpg", "osmTags": { "and": [ "sport=cycling", @@ -481914,7 +482275,7 @@ }, { "question": "Rebel", - "icon": "./assets/data/nsi/logos/rebel-81181e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rebel-81181e.jpg", "osmTags": { "and": [ "shop=sports", @@ -481930,7 +482291,7 @@ }, { "question": "Rebel Sport", - "icon": "./assets/data/nsi/logos/rebelsport-6d17d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rebelsport-6d17d3.jpg", "osmTags": { "and": [ "shop=sports", @@ -481946,7 +482307,7 @@ }, { "question": "Runners Need", - "icon": "./assets/data/nsi/logos/runnersneed-03b7aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/runnersneed-03b7aa.png", "osmTags": { "and": [ "recycling:shoes=yes", @@ -481964,7 +482325,7 @@ }, { "question": "Running Room", - "icon": "./assets/data/nsi/logos/runningroom-2a6203.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/runningroom-2a6203.jpg", "osmTags": { "and": [ "shop=sports", @@ -481980,7 +482341,7 @@ }, { "question": "Source For Sports", - "icon": "./assets/data/nsi/logos/sourceforsports-80660e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sourceforsports-80660e.jpg", "osmTags": { "and": [ "shop=sports", @@ -481996,7 +482357,7 @@ }, { "question": "Sport 1", - "icon": "./assets/data/nsi/logos/sport1-6faf2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sport1-6faf2d.jpg", "osmTags": { "and": [ "shop=sports", @@ -482011,7 +482372,7 @@ }, { "question": "Sport 2000", - "icon": "./assets/data/nsi/logos/sport2000-44fadc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sport2000-44fadc.png", "osmTags": { "and": [ "shop=sports", @@ -482027,7 +482388,7 @@ }, { "question": "Sport Chek", - "icon": "./assets/data/nsi/logos/sportchek-80660e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportchek-80660e.jpg", "osmTags": { "and": [ "shop=sports", @@ -482043,7 +482404,7 @@ }, { "question": "Sport Outlet", - "icon": "./assets/data/nsi/logos/sportoutlet-6faf2d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sportoutlet-6faf2d.png", "osmTags": { "and": [ "shop=sports", @@ -482058,7 +482419,7 @@ }, { "question": "Sport Vision", - "icon": "./assets/data/nsi/logos/sportvision-daf837.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportvision-daf837.jpg", "osmTags": { "and": [ "shop=sports", @@ -482074,7 +482435,7 @@ }, { "question": "Sport Zone", - "icon": "./assets/data/nsi/logos/sportzone-62e24b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportzone-62e24b.jpg", "osmTags": { "and": [ "shop=sports", @@ -482090,7 +482451,7 @@ }, { "question": "Sporting Life", - "icon": "./assets/data/nsi/logos/sportinglife-80660e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sportinglife-80660e.png", "osmTags": { "and": [ "shop=sports", @@ -482106,7 +482467,7 @@ }, { "question": "Sportisimo", - "icon": "./assets/data/nsi/logos/sportisimo-8183b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sportisimo-8183b2.png", "osmTags": { "and": [ "shop=sports", @@ -482122,7 +482483,7 @@ }, { "question": "Sportler", - "icon": "./assets/data/nsi/logos/sportler-14f94f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportler-14f94f.jpg", "osmTags": { "and": [ "shop=sports", @@ -482138,7 +482499,7 @@ }, { "question": "Sportmaster", - "icon": "./assets/data/nsi/logos/sportmaster-2dd6d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportmaster-2dd6d1.jpg", "osmTags": { "and": [ "shop=sports", @@ -482154,7 +482515,7 @@ }, { "question": "Sports Authority", - "icon": "./assets/data/nsi/logos/sportsauthority-a8f48a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportsauthority-a8f48a.jpg", "osmTags": { "and": [ "shop=sports", @@ -482170,7 +482531,7 @@ }, { "question": "Sports Direct", - "icon": "./assets/data/nsi/logos/sportsdirect-a8f48a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sportsdirect-a8f48a.png", "osmTags": { "and": [ "shop=sports", @@ -482186,7 +482547,7 @@ }, { "question": "SportScheck", - "icon": "./assets/data/nsi/logos/sportscheck-69bd4b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportscheck-69bd4b.svg", "osmTags": { "and": [ "shop=sports", @@ -482202,7 +482563,7 @@ }, { "question": "Sportsmans Warehouse", - "icon": "./assets/data/nsi/logos/sportsmanswarehouse-079c52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportsmanswarehouse-079c52.jpg", "osmTags": { "and": [ "shop=sports", @@ -482218,7 +482579,7 @@ }, { "question": "SportsPower", - "icon": "./assets/data/nsi/logos/sportspower-81181e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sportspower-81181e.png", "osmTags": { "and": [ "shop=sports", @@ -482234,7 +482595,7 @@ }, { "question": "SportXX", - "icon": "./assets/data/nsi/logos/sportxx-89a72b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportxx-89a72b.svg", "osmTags": { "and": [ "shop=sports", @@ -482250,7 +482611,7 @@ }, { "question": "Sprinter", - "icon": "./assets/data/nsi/logos/sprinter-b318c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sprinter-b318c6.jpg", "osmTags": { "and": [ "shop=sports", @@ -482266,7 +482627,7 @@ }, { "question": "Stadium", - "icon": "./assets/data/nsi/logos/stadium-32e81d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadium-32e81d.jpg", "osmTags": { "and": [ "shop=sports", @@ -482282,7 +482643,7 @@ }, { "question": "The Pro Shop", - "icon": "./assets/data/nsi/logos/theproshop-9dcd28.png", + "icon": "https://data.mapcomplete.org/nsi//logos/theproshop-9dcd28.png", "osmTags": { "and": [ "shop=sports", @@ -482299,7 +482660,7 @@ }, { "question": "Up & Running", - "icon": "./assets/data/nsi/logos/upandrunning-060c70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/upandrunning-060c70.jpg", "osmTags": { "and": [ "shop=sports", @@ -482316,7 +482677,7 @@ }, { "question": "XXL", - "icon": "./assets/data/nsi/logos/xxl-ea59d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xxl-ea59d5.jpg", "osmTags": { "and": [ "shop=sports", @@ -482332,7 +482693,7 @@ }, { "question": "Спортмастер", - "icon": "./assets/data/nsi/logos/sportmaster-1e138a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportmaster-1e138a.jpg", "osmTags": { "and": [ "shop=sports", @@ -482352,7 +482713,7 @@ }, { "question": "ゴルフ・ドゥ", - "icon": "./assets/data/nsi/logos/golfdo-04ead7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/golfdo-04ead7.jpg", "osmTags": { "and": [ "shop=sports", @@ -482373,7 +482734,7 @@ }, { "question": "ゴルフパートナー", - "icon": "./assets/data/nsi/logos/golfpartner-04ead7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/golfpartner-04ead7.jpg", "osmTags": { "and": [ "shop=sports", @@ -482394,7 +482755,7 @@ }, { "question": "スーパースポーツゼビオ", - "icon": "./assets/data/nsi/logos/supersportsxebio-04ead7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supersportsxebio-04ead7.jpg", "osmTags": { "and": [ "shop=sports", @@ -482414,7 +482775,7 @@ }, { "question": "スポーツオーソリティ", - "icon": "./assets/data/nsi/logos/sportsauthority-04ead7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportsauthority-04ead7.jpg", "osmTags": { "and": [ "shop=sports", @@ -482453,7 +482814,7 @@ }, { "question": "迪卡儂", - "icon": "./assets/data/nsi/logos/decathlon-ba0397.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decathlon-ba0397.jpg", "osmTags": { "and": [ "shop=sports", @@ -482473,7 +482834,7 @@ }, { "question": "迪卡儂 Decathlon", - "icon": "./assets/data/nsi/logos/decathlon-968672.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decathlon-968672.jpg", "osmTags": { "and": [ "shop=sports", @@ -482493,7 +482854,7 @@ }, { "question": "阿迪达斯", - "icon": "./assets/data/nsi/logos/adidas-fa2206.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adidas-fa2206.jpg", "osmTags": { "and": [ "shop=sports", @@ -482513,7 +482874,7 @@ }, { "question": "101文具天堂", - "icon": "./assets/data/nsi/logos/101stationeryparadise-1884c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/101stationeryparadise-1884c5.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482533,7 +482894,7 @@ }, { "question": "Akvarel", - "icon": "./assets/data/nsi/logos/akvarel-e2732b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akvarel-e2732b.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482549,7 +482910,7 @@ }, { "question": "Buffetti", - "icon": "./assets/data/nsi/logos/buffetti-f9cdfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/buffetti-f9cdfb.png", "osmTags": { "and": [ "shop=stationery", @@ -482565,7 +482926,7 @@ }, { "question": "Bureau en Gros", - "icon": "./assets/data/nsi/logos/bureauengros-0e3c23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauengros-0e3c23.png", "osmTags": { "and": [ "shop=stationery", @@ -482581,7 +482942,7 @@ }, { "question": "Bureau Vallée", - "icon": "./assets/data/nsi/logos/bureauvallee-ce24e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauvallee-ce24e4.png", "osmTags": { "and": [ "shop=stationery", @@ -482597,7 +482958,7 @@ }, { "question": "Carlin", - "icon": "./assets/data/nsi/logos/carlin-fac120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carlin-fac120.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482613,7 +482974,7 @@ }, { "question": "CNA", - "icon": "./assets/data/nsi/logos/cna-4b73db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cna-4b73db.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482629,7 +482990,7 @@ }, { "question": "Compucopias", - "icon": "./assets/data/nsi/logos/compucopias-babad8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compucopias-babad8.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482645,7 +483006,7 @@ }, { "question": "Daffer", - "icon": "./assets/data/nsi/logos/daffer-0be41a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daffer-0be41a.png", "osmTags": { "and": [ "shop=stationery", @@ -482661,7 +483022,7 @@ }, { "question": "Folder", - "icon": "./assets/data/nsi/logos/folder-e0984f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/folder-e0984f.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482677,7 +483038,7 @@ }, { "question": "Kalunga", - "icon": "./assets/data/nsi/logos/kalunga-52f43d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kalunga-52f43d.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482693,16 +483054,16 @@ }, { "question": "Koh-i-Noor", - "icon": "./assets/data/nsi/logos/kohinoor-ecb638.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kohinoor-ecb638.jpg", "osmTags": { "and": [ - "official_name=Koh-i-Noor Hardtmuth", "shop=stationery", { "or": [ "brand=Koh-i-Noor", "brand:wikidata=Q698032", - "name=Koh-i-Noor" + "name=Koh-i-Noor", + "official_name=Koh-i-Noor Hardtmuth" ] } ] @@ -482710,7 +483071,7 @@ }, { "question": "McPaper", - "icon": "./assets/data/nsi/logos/mcpaper-f8476b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcpaper-f8476b.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482771,7 +483132,7 @@ }, { "question": "Officeworks", - "icon": "./assets/data/nsi/logos/officeworks-52dece.png", + "icon": "https://data.mapcomplete.org/nsi//logos/officeworks-52dece.png", "osmTags": { "and": [ "shop=stationery", @@ -482787,7 +483148,7 @@ }, { "question": "Pagro", - "icon": "./assets/data/nsi/logos/pagro-42cd24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pagro-42cd24.png", "osmTags": { "and": [ "shop=stationery", @@ -482803,7 +483164,7 @@ }, { "question": "Paper Source", - "icon": "./assets/data/nsi/logos/papersource-b2098d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/papersource-b2098d.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482819,7 +483180,7 @@ }, { "question": "PNA", - "icon": "./assets/data/nsi/logos/pna-e57d44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pna-e57d44.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482835,7 +483196,7 @@ }, { "question": "Ryman", - "icon": "./assets/data/nsi/logos/ryman-a503c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ryman-a503c5.png", "osmTags": { "and": [ "shop=stationery", @@ -482851,7 +483212,7 @@ }, { "question": "Ševt", - "icon": "./assets/data/nsi/logos/sevt-0be41a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sevt-0be41a.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482867,7 +483228,7 @@ }, { "question": "Smiggle", - "icon": "./assets/data/nsi/logos/smiggle-471bdb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smiggle-471bdb.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482883,7 +483244,7 @@ }, { "question": "Staples (Canada)", - "icon": "./assets/data/nsi/logos/staples-1d9396.png", + "icon": "https://data.mapcomplete.org/nsi//logos/staples-1d9396.png", "osmTags": { "and": [ "shop=stationery", @@ -482899,7 +483260,7 @@ }, { "question": "Staples (USA)", - "icon": "./assets/data/nsi/logos/staples-b2098d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/staples-b2098d.jpg", "osmTags": { "and": [ "shop=stationery", @@ -482915,7 +483276,7 @@ }, { "question": "Tony", - "icon": "./assets/data/nsi/logos/tony-babad8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tony-babad8.png", "osmTags": { "and": [ "shop=stationery", @@ -482931,7 +483292,7 @@ }, { "question": "Warehouse Stationery", - "icon": "./assets/data/nsi/logos/warehousestationery-a34cb3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/warehousestationery-a34cb3.png", "osmTags": { "and": [ "shop=stationery", @@ -483003,7 +483364,7 @@ }, { "question": "Комус", - "icon": "./assets/data/nsi/logos/komus-b8bb59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/komus-b8bb59.png", "osmTags": { "and": [ "shop=stationery", @@ -483056,7 +483417,7 @@ }, { "question": "金玉堂", - "icon": "./assets/data/nsi/logos/jinyuhtarngstationery-1884c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jinyuhtarngstationery-1884c5.jpg", "osmTags": { "and": [ "shop=stationery", @@ -483076,7 +483437,7 @@ }, { "question": "A-1 Self Storage", - "icon": "./assets/data/nsi/logos/a1selfstorage-a05958.png", + "icon": "https://data.mapcomplete.org/nsi//logos/a1selfstorage-a05958.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483092,7 +483453,7 @@ }, { "question": "Access Self Storage", - "icon": "./assets/data/nsi/logos/accessselfstorage-93b48c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accessselfstorage-93b48c.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483108,7 +483469,7 @@ }, { "question": "Access Storage", - "icon": "./assets/data/nsi/logos/accessstorage-9d4abf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accessstorage-9d4abf.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483124,7 +483485,7 @@ }, { "question": "ALLSAFE Mini Opslag", - "icon": "./assets/data/nsi/logos/allsafeminiopslag-43269c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allsafeminiopslag-43269c.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483140,7 +483501,7 @@ }, { "question": "Big Yellow Self Storage", - "icon": "./assets/data/nsi/logos/bigyellowselfstorage-93b48c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigyellowselfstorage-93b48c.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483156,7 +483517,7 @@ }, { "question": "Compass Self Storage", - "icon": "./assets/data/nsi/logos/compassselfstorage-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compassselfstorage-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483172,7 +483533,7 @@ }, { "question": "CubeSmart", - "icon": "./assets/data/nsi/logos/cubesmart-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cubesmart-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483188,7 +483549,7 @@ }, { "question": "Extra Space Storage", - "icon": "./assets/data/nsi/logos/extraspacestorage-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/extraspacestorage-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483204,7 +483565,7 @@ }, { "question": "iStorage", - "icon": "./assets/data/nsi/logos/istorage-7879a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/istorage-7879a0.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483220,7 +483581,7 @@ }, { "question": "Kennards Storage", - "icon": "./assets/data/nsi/logos/kennardsstorage-e49450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kennardsstorage-e49450.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483236,7 +483597,7 @@ }, { "question": "Lagerbox", - "icon": "./assets/data/nsi/logos/lagerbox-1ebebd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lagerbox-1ebebd.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483252,7 +483613,7 @@ }, { "question": "Life Storage", - "icon": "./assets/data/nsi/logos/lifestorage-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lifestorage-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483268,7 +483629,7 @@ }, { "question": "Lok'nStore", - "icon": "./assets/data/nsi/logos/loknstore-93b48c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/loknstore-93b48c.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483284,7 +483645,7 @@ }, { "question": "Metro Self Storage", - "icon": "./assets/data/nsi/logos/metroselfstorage-5b962b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metroselfstorage-5b962b.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483300,7 +483661,7 @@ }, { "question": "Mini Mall Storage", - "icon": "./assets/data/nsi/logos/minimallstorage-51c575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minimallstorage-51c575.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483316,7 +483677,7 @@ }, { "question": "Mini Storage Depot", - "icon": "./assets/data/nsi/logos/ministoragedepot-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministoragedepot-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483332,7 +483693,7 @@ }, { "question": "MyPlace-SelfStorage", - "icon": "./assets/data/nsi/logos/myplaceselfstorage-7d575b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/myplaceselfstorage-7d575b.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483348,7 +483709,7 @@ }, { "question": "National Mini Storage", - "icon": "./assets/data/nsi/logos/nationalministorage-8edc81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalministorage-8edc81.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483364,7 +483725,7 @@ }, { "question": "National Storage", - "icon": "./assets/data/nsi/logos/nationalstorage-e49450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalstorage-e49450.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483380,7 +483741,7 @@ }, { "question": "Northwest Self Storage", - "icon": "./assets/data/nsi/logos/northwestselfstorage-6af07e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestselfstorage-6af07e.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483396,7 +483757,7 @@ }, { "question": "Pods", - "icon": "./assets/data/nsi/logos/pods-3ec4f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pods-3ec4f5.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483412,7 +483773,7 @@ }, { "question": "Prime Storage", - "icon": "./assets/data/nsi/logos/primestorage-51c575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primestorage-51c575.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483428,7 +483789,7 @@ }, { "question": "Public Storage", - "icon": "./assets/data/nsi/logos/publicstorage-51c575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicstorage-51c575.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483444,7 +483805,7 @@ }, { "question": "RightSpace Storage", - "icon": "./assets/data/nsi/logos/rightspacestorage-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rightspacestorage-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483460,7 +483821,7 @@ }, { "question": "Safestore", - "icon": "./assets/data/nsi/logos/safestore-93b48c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safestore-93b48c.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483476,7 +483837,7 @@ }, { "question": "SecurCare Self Storage", - "icon": "./assets/data/nsi/logos/securcareselfstorage-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/securcareselfstorage-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483492,7 +483853,7 @@ }, { "question": "SecureSpace Self Storage", - "icon": "./assets/data/nsi/logos/securespaceselfstorage-7879a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/securespaceselfstorage-7879a0.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483508,7 +483869,7 @@ }, { "question": "Security Public Storage", - "icon": "./assets/data/nsi/logos/securitypublicstorage-6a57cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/securitypublicstorage-6a57cb.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483524,7 +483885,7 @@ }, { "question": "Shurgard Self-Storage", - "icon": "./assets/data/nsi/logos/shurgardselfstorage-8ba52e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shurgardselfstorage-8ba52e.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483540,7 +483901,7 @@ }, { "question": "Southern Self Storage", - "icon": "./assets/data/nsi/logos/southernselfstorage-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southernselfstorage-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483556,7 +483917,7 @@ }, { "question": "Space Shop Self Storage", - "icon": "./assets/data/nsi/logos/spaceshopselfstorage-7879a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spaceshopselfstorage-7879a0.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483572,7 +483933,7 @@ }, { "question": "Storage King", - "icon": "./assets/data/nsi/logos/storageking-e49450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/storageking-e49450.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483588,7 +483949,7 @@ }, { "question": "Storage Rentals of America", - "icon": "./assets/data/nsi/logos/storagerentalsofamerica-7879a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/storagerentalsofamerica-7879a0.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483604,7 +483965,7 @@ }, { "question": "StorageMart", - "icon": "./assets/data/nsi/logos/storagemart-3ec4f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/storagemart-3ec4f5.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483620,7 +483981,7 @@ }, { "question": "StorAmerica", - "icon": "./assets/data/nsi/logos/storamerica-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/storamerica-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483636,7 +483997,7 @@ }, { "question": "Store Space Self Storage", - "icon": "./assets/data/nsi/logos/storespace-7879a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/storespace-7879a0.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483652,7 +484013,7 @@ }, { "question": "Storebox", - "icon": "./assets/data/nsi/logos/storebox-3e45ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/storebox-3e45ed.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483668,7 +484029,7 @@ }, { "question": "StorQuest Self Storage", - "icon": "./assets/data/nsi/logos/storquest-7879a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/storquest-7879a0.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483684,7 +484045,7 @@ }, { "question": "The Lock Up", - "icon": "./assets/data/nsi/logos/thelockup-913626.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thelockup-913626.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483700,7 +484061,7 @@ }, { "question": "Trojan Storage", - "icon": "./assets/data/nsi/logos/trojanstorage-7879a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trojanstorage-7879a0.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483716,7 +484077,7 @@ }, { "question": "U-Haul", - "icon": "./assets/data/nsi/logos/uhaul-51c575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uhaul-51c575.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483732,7 +484093,7 @@ }, { "question": "U-SPACE", - "icon": "./assets/data/nsi/logos/uspace-40a7f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uspace-40a7f7.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483752,7 +484113,7 @@ }, { "question": "U-Stor-It", - "icon": "./assets/data/nsi/logos/ustorit-a1f08e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ustorit-a1f08e.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483768,7 +484129,7 @@ }, { "question": "UK Storage Company", - "icon": "./assets/data/nsi/logos/ukstoragecompany-93b48c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukstoragecompany-93b48c.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483784,7 +484145,7 @@ }, { "question": "Une pièce en plus", - "icon": "./assets/data/nsi/logos/unepieceenplus-1d8b68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unepieceenplus-1d8b68.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483800,7 +484161,7 @@ }, { "question": "West Coast Self-Storage", - "icon": "./assets/data/nsi/logos/westcoastselfstorage-8e2904.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westcoastselfstorage-8e2904.png", "osmTags": { "and": [ "shop=storage_rental", @@ -483816,7 +484177,7 @@ }, { "question": "ハローストレージ", - "icon": "./assets/data/nsi/logos/hellostorage-40a7f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hellostorage-40a7f7.jpg", "osmTags": { "and": [ "shop=storage_rental", @@ -483870,7 +484231,7 @@ }, { "question": "3hreeSixty", - "icon": "./assets/data/nsi/logos/3hreesixty-745f9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/3hreesixty-745f9c.png", "osmTags": { "and": [ "shop=supermarket", @@ -483888,7 +484249,7 @@ }, { "question": "8 à Huit", - "icon": "./assets/data/nsi/logos/8ahuit-c16b1c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/8ahuit-c16b1c.svg", "osmTags": { "and": [ "shop=supermarket", @@ -483904,7 +484265,7 @@ }, { "question": "99 Ranch Market", - "icon": "./assets/data/nsi/logos/99ranchmarket-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/99ranchmarket-dde59d.jpg", "osmTags": { "and": [ "cuisine=asian", @@ -483924,7 +484285,7 @@ }, { "question": "99 Speedmart", - "icon": "./assets/data/nsi/logos/99speedmart-bfc07b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/99speedmart-bfc07b.png", "osmTags": { "and": [ "shop=supermarket", @@ -483940,7 +484301,7 @@ }, { "question": "A&O", - "icon": "./assets/data/nsi/logos/aando-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aando-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -483956,7 +484317,7 @@ }, { "question": "A101", - "icon": "./assets/data/nsi/logos/a101-5b5772.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a101-5b5772.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -483972,7 +484333,7 @@ }, { "question": "ABC Lavpris", - "icon": "./assets/data/nsi/logos/abclavpris-072052.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abclavpris-072052.png", "osmTags": { "and": [ "shop=supermarket", @@ -483988,7 +484349,7 @@ }, { "question": "Acme", - "icon": "./assets/data/nsi/logos/acme-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acme-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484004,7 +484365,7 @@ }, { "question": "AD Delhaize", - "icon": "./assets/data/nsi/logos/addelhaize-f276cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/addelhaize-f276cb.png", "osmTags": { "and": [ "shop=supermarket", @@ -484020,7 +484381,7 @@ }, { "question": "ADEG", - "icon": "./assets/data/nsi/logos/adeg-1eef1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adeg-1eef1d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484036,7 +484397,7 @@ }, { "question": "AEON BiG", - "icon": "./assets/data/nsi/logos/aeonbig-80e9ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeonbig-80e9ee.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484053,7 +484414,7 @@ }, { "question": "Ahorramás", - "icon": "./assets/data/nsi/logos/ahorramas-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ahorramas-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484069,7 +484430,7 @@ }, { "question": "Albert", - "icon": "./assets/data/nsi/logos/albert-8e6809.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albert-8e6809.png", "osmTags": { "and": [ "shop=supermarket", @@ -484085,7 +484446,7 @@ }, { "question": "Albert Heijn", - "icon": "./assets/data/nsi/logos/albertheijn-1cf55d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albertheijn-1cf55d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484101,7 +484462,7 @@ }, { "question": "Albert Heijn XL", - "icon": "./assets/data/nsi/logos/albertheijnxl-1cf55d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albertheijnxl-1cf55d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484117,7 +484478,7 @@ }, { "question": "Albertsons", - "icon": "./assets/data/nsi/logos/albertsons-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albertsons-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484133,7 +484494,7 @@ }, { "question": "Albertsons Market", - "icon": "./assets/data/nsi/logos/albertsonsmarket-ba1fb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albertsonsmarket-ba1fb8.png", "osmTags": { "and": [ "shop=supermarket", @@ -484149,7 +484510,7 @@ }, { "question": "Alcampo", - "icon": "./assets/data/nsi/logos/alcampo-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alcampo-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484165,7 +484526,7 @@ }, { "question": "ALDI (ALDI Nord group)", - "icon": "./assets/data/nsi/logos/aldi-3a2eb7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-3a2eb7.svg", "osmTags": { "and": [ "shop=supermarket", @@ -484181,7 +484542,7 @@ }, { "question": "ALDI (ALDI Süd group)", - "icon": "./assets/data/nsi/logos/aldi-68f0e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-68f0e3.png", "osmTags": { "and": [ "shop=supermarket", @@ -484197,7 +484558,7 @@ }, { "question": "ALDI Nord (Deutschland)", - "icon": "./assets/data/nsi/logos/aldi-813759.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-813759.svg", "osmTags": { "and": [ "shop=supermarket", @@ -484213,7 +484574,7 @@ }, { "question": "ALDI Süd (Deutschland)", - "icon": "./assets/data/nsi/logos/aldisud-e4a24f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldisud-e4a24f.png", "osmTags": { "and": [ "shop=supermarket", @@ -484229,7 +484590,7 @@ }, { "question": "Alimerka", - "icon": "./assets/data/nsi/logos/alimerka-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alimerka-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484245,7 +484606,7 @@ }, { "question": "All Day Supermarket", - "icon": "./assets/data/nsi/logos/alldaysupermarket-49e134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alldaysupermarket-49e134.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484261,7 +484622,7 @@ }, { "question": "Alnatura Super Natur Markt", - "icon": "./assets/data/nsi/logos/alnaturasupernaturmarkt-f97a5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alnaturasupernaturmarkt-f97a5b.jpg", "osmTags": { "and": [ "organic=only", @@ -484279,7 +484640,7 @@ }, { "question": "Alvo", - "icon": "./assets/data/nsi/logos/alvo-f276cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alvo-f276cb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484295,7 +484656,7 @@ }, { "question": "AM:PM", - "icon": "./assets/data/nsi/logos/ampm-6b65f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ampm-6b65f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484314,7 +484675,7 @@ }, { "question": "Amazon Fresh", - "icon": "./assets/data/nsi/logos/amazonfresh-21d28e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amazonfresh-21d28e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484330,7 +484691,7 @@ }, { "question": "Amigo", - "icon": "./assets/data/nsi/logos/amigo-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amigo-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484347,7 +484708,7 @@ }, { "question": "Amigos", - "icon": "./assets/data/nsi/logos/amigos-a6c312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amigos-a6c312.png", "osmTags": { "and": [ "shop=supermarket", @@ -484363,7 +484724,7 @@ }, { "question": "Angelo Caputo's Fresh Markets", - "icon": "./assets/data/nsi/logos/angelocaputosfreshmarkets-5ca8e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/angelocaputosfreshmarkets-5ca8e2.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484379,7 +484740,7 @@ }, { "question": "Ara", - "icon": "./assets/data/nsi/logos/ara-271a34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ara-271a34.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484395,7 +484756,7 @@ }, { "question": "Ard Discount", - "icon": "./assets/data/nsi/logos/arddiscount-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arddiscount-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484411,7 +484772,7 @@ }, { "question": "Asda", - "icon": "./assets/data/nsi/logos/asda-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asda-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484427,7 +484788,7 @@ }, { "question": "Assaí Atacadista", - "icon": "./assets/data/nsi/logos/assaiatacadista-20f2a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/assaiatacadista-20f2a8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484443,7 +484804,7 @@ }, { "question": "Aswak Assalam", - "icon": "./assets/data/nsi/logos/aswakassalam-dc016e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aswakassalam-dc016e.png", "osmTags": { "and": [ "shop=supermarket", @@ -484459,7 +484820,7 @@ }, { "question": "Atacadão", - "icon": "./assets/data/nsi/logos/atacadao-0e6c71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atacadao-0e6c71.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484475,7 +484836,7 @@ }, { "question": "Auchan", - "icon": "./assets/data/nsi/logos/auchan-05ddc8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchan-05ddc8.png", "osmTags": { "and": [ "shop=supermarket", @@ -484491,7 +484852,7 @@ }, { "question": "Auchan Drive", - "icon": "./assets/data/nsi/logos/auchandrive-715442.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchandrive-715442.png", "osmTags": { "and": [ "drive_through=only", @@ -484508,7 +484869,7 @@ }, { "question": "Auchan Supermarché", - "icon": "./assets/data/nsi/logos/auchansupermarche-c16b1c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchansupermarche-c16b1c.png", "osmTags": { "and": [ "shop=supermarket", @@ -484524,7 +484885,7 @@ }, { "question": "Bashas'", - "icon": "./assets/data/nsi/logos/bashas-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bashas-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484540,7 +484901,7 @@ }, { "question": "basic", - "icon": "./assets/data/nsi/logos/basic-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/basic-0a839e.png", "osmTags": { "and": [ "organic=only", @@ -484557,7 +484918,7 @@ }, { "question": "Bazaar", - "icon": "./assets/data/nsi/logos/bazaar-37450e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bazaar-37450e.png", "osmTags": { "and": [ "shop=supermarket", @@ -484588,7 +484949,7 @@ }, { "question": "Berkot's Super Foods", - "icon": "./assets/data/nsi/logos/berkotssuperfoods-5dc7ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berkotssuperfoods-5dc7ba.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484635,7 +484996,7 @@ }, { "question": "BI-LO", - "icon": "./assets/data/nsi/logos/bilo-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bilo-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -484651,7 +485012,7 @@ }, { "question": "bi1", - "icon": "./assets/data/nsi/logos/bi1-e36147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bi1-e36147.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484667,7 +485028,7 @@ }, { "question": "Biedronka", - "icon": "./assets/data/nsi/logos/biedronka-d1b870.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biedronka-d1b870.png", "osmTags": { "and": [ "shop=supermarket", @@ -484683,7 +485044,7 @@ }, { "question": "Big Bazaar", - "icon": "./assets/data/nsi/logos/bigbazaar-9ef8f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bigbazaar-9ef8f9.png", "osmTags": { "and": [ "shop=supermarket", @@ -484699,7 +485060,7 @@ }, { "question": "BIG Bompreço", - "icon": "./assets/data/nsi/logos/bigbompreco-20f2a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigbompreco-20f2a8.svg", "osmTags": { "and": [ "shop=supermarket", @@ -484715,7 +485076,7 @@ }, { "question": "Big C", - "icon": "./assets/data/nsi/logos/bigc-a1bbd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigc-a1bbd8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484735,7 +485096,7 @@ }, { "question": "Big Market", - "icon": "./assets/data/nsi/logos/bigmarket-e8341b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigmarket-e8341b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484751,7 +485112,7 @@ }, { "question": "Big Y", - "icon": "./assets/data/nsi/logos/bigy-14be05.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bigy-14be05.png", "osmTags": { "and": [ "shop=supermarket", @@ -484786,7 +485147,7 @@ }, { "question": "Bilka", - "icon": "./assets/data/nsi/logos/bilka-072052.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bilka-072052.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484802,7 +485163,7 @@ }, { "question": "Billa", - "icon": "./assets/data/nsi/logos/billa-3380c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/billa-3380c4.png", "osmTags": { "and": [ "shop=supermarket", @@ -484818,7 +485179,7 @@ }, { "question": "Billa (Česko)", - "icon": "./assets/data/nsi/logos/billa-8e6809.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/billa-8e6809.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484834,7 +485195,7 @@ }, { "question": "Billa Plus", - "icon": "./assets/data/nsi/logos/billaplus-1eef1d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/billaplus-1eef1d.svg", "osmTags": { "and": [ "shop=supermarket", @@ -484865,7 +485226,7 @@ }, { "question": "BİM", - "icon": "./assets/data/nsi/logos/bim-8af1d3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bim-8af1d3.png", "osmTags": { "and": [ "shop=supermarket", @@ -484881,7 +485242,7 @@ }, { "question": "Bin Inn", - "icon": "./assets/data/nsi/logos/bininn-5dc426.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bininn-5dc426.jpg", "osmTags": { "and": [ "bulk_purchase=yes", @@ -484898,7 +485259,7 @@ }, { "question": "Bingo", - "icon": "./assets/data/nsi/logos/bingo-f320a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bingo-f320a3.png", "osmTags": { "and": [ "shop=supermarket", @@ -484914,7 +485275,7 @@ }, { "question": "Bio C' Bon", - "icon": "./assets/data/nsi/logos/biocbon-c08337.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/biocbon-c08337.svg", "osmTags": { "and": [ "shop=supermarket", @@ -484930,7 +485291,7 @@ }, { "question": "Bio Company", - "icon": "./assets/data/nsi/logos/biocompany-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biocompany-0a839e.png", "osmTags": { "and": [ "organic=only", @@ -484947,7 +485308,7 @@ }, { "question": "Bio-Planet", - "icon": "./assets/data/nsi/logos/bioplanet-f276cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bioplanet-f276cb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484963,7 +485324,7 @@ }, { "question": "Biocoop", - "icon": "./assets/data/nsi/logos/biocoop-c16b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biocoop-c16b1c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484979,7 +485340,7 @@ }, { "question": "Biomonde", - "icon": "./assets/data/nsi/logos/biomonde-c16b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biomonde-c16b1c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -484995,7 +485356,7 @@ }, { "question": "BM", - "icon": "./assets/data/nsi/logos/bm-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bm-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485011,7 +485372,7 @@ }, { "question": "Bodega Aurrera", - "icon": "./assets/data/nsi/logos/bodegaaurrera-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodegaaurrera-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485027,7 +485388,7 @@ }, { "question": "BonÀrea", - "icon": "./assets/data/nsi/logos/bonarea-774072.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonarea-774072.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485043,7 +485404,7 @@ }, { "question": "Boni", - "icon": "./assets/data/nsi/logos/boni-5811b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boni-5811b5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485059,7 +485420,7 @@ }, { "question": "Bonpreu", - "icon": "./assets/data/nsi/logos/bonpreu-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bonpreu-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -485075,7 +485436,7 @@ }, { "question": "Bónus", - "icon": "./assets/data/nsi/logos/bonus-eba859.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonus-eba859.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485091,7 +485452,7 @@ }, { "question": "Boon's Markt", - "icon": "./assets/data/nsi/logos/boonsmarkt-5811b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boonsmarkt-5811b5.png", "osmTags": { "and": [ "shop=supermarket", @@ -485107,7 +485468,7 @@ }, { "question": "Booths", - "icon": "./assets/data/nsi/logos/booths-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/booths-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485123,7 +485484,7 @@ }, { "question": "Boxer", - "icon": "./assets/data/nsi/logos/boxer-a11024.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boxer-a11024.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485139,7 +485500,7 @@ }, { "question": "Bravo", - "icon": "./assets/data/nsi/logos/bravo-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bravo-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -485155,7 +485516,7 @@ }, { "question": "Brookshire Brothers", - "icon": "./assets/data/nsi/logos/brookshirebrothers-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brookshirebrothers-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485171,7 +485532,7 @@ }, { "question": "Brookshire's", - "icon": "./assets/data/nsi/logos/brookshires-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brookshires-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -485187,7 +485548,7 @@ }, { "question": "Budgens", - "icon": "./assets/data/nsi/logos/budgens-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budgens-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485203,7 +485564,7 @@ }, { "question": "Bulk Barn", - "icon": "./assets/data/nsi/logos/bulkbarn-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bulkbarn-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485219,7 +485580,7 @@ }, { "question": "Bunnpris", - "icon": "./assets/data/nsi/logos/bunnpris-ed9dd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bunnpris-ed9dd5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485235,7 +485596,7 @@ }, { "question": "Butera Market", - "icon": "./assets/data/nsi/logos/buteramarket-5ca8e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buteramarket-5ca8e2.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485251,7 +485612,7 @@ }, { "question": "C-Town Supermarkets", - "icon": "./assets/data/nsi/logos/ctown-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ctown-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485267,7 +485628,7 @@ }, { "question": "C!ty'super", - "icon": "./assets/data/nsi/logos/ctysuper-04b79e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ctysuper-04b79e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485285,7 +485646,7 @@ }, { "question": "Cactus", - "icon": "./assets/data/nsi/logos/cactus-a0478c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cactus-a0478c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485301,7 +485662,7 @@ }, { "question": "CAP-Markt", - "icon": "./assets/data/nsi/logos/capmarkt-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capmarkt-0a839e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485317,7 +485678,7 @@ }, { "question": "Caprabo", - "icon": "./assets/data/nsi/logos/caprabo-774072.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caprabo-774072.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485333,7 +485694,7 @@ }, { "question": "Cardenas", - "icon": "./assets/data/nsi/logos/cardenas-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cardenas-dde59d.jpg", "osmTags": { "and": [ "cuisine=latin_american", @@ -485350,7 +485711,7 @@ }, { "question": "Cargills Food City (Sri Lanka)", - "icon": "./assets/data/nsi/logos/cargillsfoodcity-8ce434.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cargillsfoodcity-8ce434.png", "osmTags": { "and": [ "shop=supermarket", @@ -485366,7 +485727,7 @@ }, { "question": "Carrefour", - "icon": "./assets/data/nsi/logos/carrefour-2679f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-2679f0.png", "osmTags": { "and": [ "shop=supermarket", @@ -485382,7 +485743,7 @@ }, { "question": "Carrefour City", - "icon": "./assets/data/nsi/logos/carrefourcity-3f7afe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefourcity-3f7afe.png", "osmTags": { "and": [ "shop=supermarket", @@ -485428,7 +485789,7 @@ }, { "question": "CarrefourSA", - "icon": "./assets/data/nsi/logos/carrefoursa-5b5772.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefoursa-5b5772.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485444,7 +485805,7 @@ }, { "question": "Carulla", - "icon": "./assets/data/nsi/logos/carulla-271a34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carulla-271a34.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485460,7 +485821,7 @@ }, { "question": "Casino", - "icon": "./assets/data/nsi/logos/casino-c16b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casino-c16b1c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485476,7 +485837,7 @@ }, { "question": "CBA", - "icon": "./assets/data/nsi/logos/cba-6e9bfc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cba-6e9bfc.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485492,7 +485853,7 @@ }, { "question": "CBA (България)", - "icon": "./assets/data/nsi/logos/cba-56b425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cba-56b425.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485513,7 +485874,7 @@ }, { "question": "CBA Bolero", - "icon": "./assets/data/nsi/logos/cbabolero-56b425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cbabolero-56b425.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485534,7 +485895,7 @@ }, { "question": "CBA Klasiko", - "icon": "./assets/data/nsi/logos/cbaklasiko-56b425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cbaklasiko-56b425.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485555,7 +485916,7 @@ }, { "question": "CBA Kome", - "icon": "./assets/data/nsi/logos/cbakome-56b425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cbakome-56b425.png", "osmTags": { "and": [ "shop=supermarket", @@ -485575,7 +485936,7 @@ }, { "question": "Celeiro", - "icon": "./assets/data/nsi/logos/celeiro-a14fce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celeiro-a14fce.jpg", "osmTags": { "and": [ "organic=only", @@ -485592,7 +485953,7 @@ }, { "question": "Centra", - "icon": "./assets/data/nsi/logos/centra-b7087f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centra-b7087f.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485608,7 +485969,7 @@ }, { "question": "Central England Co-operative", - "icon": "./assets/data/nsi/logos/thecooperativefood-a8278b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thecooperativefood-a8278b.png", "osmTags": { "and": [ "shop=supermarket", @@ -485626,7 +485987,7 @@ }, { "question": "Centre Commercial E.Leclerc", - "icon": "./assets/data/nsi/logos/centrecommercialeleclerc-f962b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centrecommercialeleclerc-f962b8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485642,7 +486003,7 @@ }, { "question": "Cermak Fresh Market", - "icon": "./assets/data/nsi/logos/cermakfreshmarket-5ca8e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cermakfreshmarket-5ca8e2.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485658,7 +486019,7 @@ }, { "question": "Charter", - "icon": "./assets/data/nsi/logos/charter-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/charter-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485674,7 +486035,7 @@ }, { "question": "Chata Polska", - "icon": "./assets/data/nsi/logos/chatapolska-9e6a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chatapolska-9e6a6c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485690,7 +486051,7 @@ }, { "question": "Checkers", - "icon": "./assets/data/nsi/logos/checkers-a0d53f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/checkers-a0d53f.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485706,7 +486067,7 @@ }, { "question": "Checkers Hyper", - "icon": "./assets/data/nsi/logos/checkershyper-f9f648.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/checkershyper-f9f648.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485722,7 +486083,7 @@ }, { "question": "Chedraui", - "icon": "./assets/data/nsi/logos/chedraui-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chedraui-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485738,7 +486099,7 @@ }, { "question": "Choppies", - "icon": "./assets/data/nsi/logos/choppies-8c44d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/choppies-8c44d4.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485754,7 +486115,7 @@ }, { "question": "City Gross", - "icon": "./assets/data/nsi/logos/citygross-c57afb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citygross-c57afb.png", "osmTags": { "and": [ "shop=supermarket", @@ -485770,7 +486131,7 @@ }, { "question": "City Market", - "icon": "./assets/data/nsi/logos/citymarket-986a24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citymarket-986a24.png", "osmTags": { "and": [ "shop=supermarket", @@ -485801,7 +486162,7 @@ }, { "question": "Co-op (Canada)", - "icon": "./assets/data/nsi/logos/coop-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485817,7 +486178,7 @@ }, { "question": "Co-op Food", - "icon": "./assets/data/nsi/logos/coopfood-a8278b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coopfood-a8278b.png", "osmTags": { "and": [ "shop=supermarket", @@ -485833,7 +486194,7 @@ }, { "question": "Co-operative Grand Marché", - "icon": "./assets/data/nsi/logos/cooperativegrandmarche-a048a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooperativegrandmarche-a048a6.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485851,7 +486212,7 @@ }, { "question": "Coaliment", - "icon": "./assets/data/nsi/logos/coaliment-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coaliment-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -485867,7 +486228,7 @@ }, { "question": "Coccinelle Express", - "icon": "./assets/data/nsi/logos/coccinelleexpress-94a8a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coccinelleexpress-94a8a9.png", "osmTags": { "and": [ "shop=supermarket", @@ -485883,7 +486244,7 @@ }, { "question": "Coccinelle Supermarché", - "icon": "./assets/data/nsi/logos/coccinellesupermarche-94a8a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coccinellesupermarche-94a8a9.png", "osmTags": { "and": [ "shop=supermarket", @@ -485899,7 +486260,7 @@ }, { "question": "Coles", - "icon": "./assets/data/nsi/logos/coles-c254c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coles-c254c9.png", "osmTags": { "and": [ "shop=supermarket", @@ -485917,7 +486278,7 @@ }, { "question": "Coles Central", - "icon": "./assets/data/nsi/logos/colescentral-c254c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/colescentral-c254c9.png", "osmTags": { "and": [ "shop=supermarket", @@ -485952,7 +486313,7 @@ }, { "question": "Colruyt", - "icon": "./assets/data/nsi/logos/colruyt-27c1df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colruyt-27c1df.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -485968,7 +486329,7 @@ }, { "question": "Combi", - "icon": "./assets/data/nsi/logos/combi-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/combi-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -485984,7 +486345,7 @@ }, { "question": "Comercial Mexicana", - "icon": "./assets/data/nsi/logos/comercialmexicana-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comercialmexicana-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486000,7 +486361,7 @@ }, { "question": "Conad", - "icon": "./assets/data/nsi/logos/conad-06d4eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/conad-06d4eb.png", "osmTags": { "and": [ "shop=supermarket", @@ -486046,7 +486407,7 @@ }, { "question": "Condis", - "icon": "./assets/data/nsi/logos/condis-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/condis-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -486062,7 +486423,7 @@ }, { "question": "Consum", - "icon": "./assets/data/nsi/logos/consum-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consum-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -486078,7 +486439,7 @@ }, { "question": "Continente", - "icon": "./assets/data/nsi/logos/continente-a14fce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/continente-a14fce.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486094,7 +486455,7 @@ }, { "question": "Continente Bom Dia", - "icon": "./assets/data/nsi/logos/continentebomdia-a14fce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/continentebomdia-a14fce.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486110,7 +486471,7 @@ }, { "question": "Continente Modelo", - "icon": "./assets/data/nsi/logos/continentemodelo-a14fce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/continentemodelo-a14fce.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486126,7 +486487,7 @@ }, { "question": "Coop (Česko)", - "icon": "./assets/data/nsi/logos/coop-8e6809.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-8e6809.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486142,7 +486503,7 @@ }, { "question": "Coop (Italia)", - "icon": "./assets/data/nsi/logos/coop-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -486158,7 +486519,7 @@ }, { "question": "Coop (Nederland)", - "icon": "./assets/data/nsi/logos/coop-5811b5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-5811b5.svg", "osmTags": { "and": [ "shop=supermarket", @@ -486174,7 +486535,7 @@ }, { "question": "Coop (Schweiz)", - "icon": "./assets/data/nsi/logos/coop-36e991.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-36e991.png", "osmTags": { "and": [ "shop=supermarket", @@ -486190,7 +486551,7 @@ }, { "question": "Coop (Sverige)", - "icon": "./assets/data/nsi/logos/coop-c57afb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-c57afb.svg", "osmTags": { "and": [ "shop=supermarket", @@ -486206,7 +486567,7 @@ }, { "question": "Coop Eesti", - "icon": "./assets/data/nsi/logos/coop-e21b3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-e21b3b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486222,7 +486583,7 @@ }, { "question": "COOP Jednota", - "icon": "./assets/data/nsi/logos/coopjednota-4ccde8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coopjednota-4ccde8.png", "osmTags": { "and": [ "shop=supermarket", @@ -486238,7 +486599,7 @@ }, { "question": "Coop Marked", - "icon": "./assets/data/nsi/logos/coopmarked-ed9dd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopmarked-ed9dd5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486253,7 +486614,7 @@ }, { "question": "Coop Mega", - "icon": "./assets/data/nsi/logos/coopmega-ed9dd5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopmega-ed9dd5.svg", "osmTags": { "and": [ "shop=supermarket", @@ -486269,7 +486630,7 @@ }, { "question": "Coop Prix", - "icon": "./assets/data/nsi/logos/coopprix-ed9dd5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coopprix-ed9dd5.png", "osmTags": { "and": [ "shop=supermarket", @@ -486285,7 +486646,7 @@ }, { "question": "Coop Szuper", - "icon": "./assets/data/nsi/logos/coopszuper-478515.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopszuper-478515.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486301,7 +486662,7 @@ }, { "question": "Coop Terno", - "icon": "./assets/data/nsi/logos/coopterno-8e6809.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopterno-8e6809.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486317,7 +486678,7 @@ }, { "question": "Coop Tip", - "icon": "./assets/data/nsi/logos/cooptip-8e6809.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooptip-8e6809.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486333,7 +486694,7 @@ }, { "question": "Coop Tuty", - "icon": "./assets/data/nsi/logos/cooptuty-8e6809.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooptuty-8e6809.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486349,7 +486710,7 @@ }, { "question": "Coop Vandaag", - "icon": "./assets/data/nsi/logos/coopvandaag-5811b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coopvandaag-5811b5.png", "osmTags": { "and": [ "shop=supermarket", @@ -486365,7 +486726,7 @@ }, { "question": "Coop.fi", - "icon": "./assets/data/nsi/logos/coopfi-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coopfi-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -486381,7 +486742,7 @@ }, { "question": "CoopCompact", - "icon": "./assets/data/nsi/logos/coopcompact-5811b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopcompact-5811b5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486397,7 +486758,7 @@ }, { "question": "Cooperativa Obrera", - "icon": "./assets/data/nsi/logos/cooperativaobrera-0d2b84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooperativaobrera-0d2b84.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486413,7 +486774,7 @@ }, { "question": "Cora", - "icon": "./assets/data/nsi/logos/cora-ea1ce5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cora-ea1ce5.svg", "osmTags": { "and": [ "shop=supermarket", @@ -486429,7 +486790,7 @@ }, { "question": "Costcutter", - "icon": "./assets/data/nsi/logos/costcutter-986a24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcutter-986a24.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486445,7 +486806,7 @@ }, { "question": "Côté Nature", - "icon": "./assets/data/nsi/logos/cotenature-94a8a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cotenature-94a8a9.jpg", "osmTags": { "and": [ "organic=only", @@ -486462,7 +486823,7 @@ }, { "question": "Coto", - "icon": "./assets/data/nsi/logos/coto-0d2b84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coto-0d2b84.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486478,7 +486839,7 @@ }, { "question": "Countdown", - "icon": "./assets/data/nsi/logos/countdown-5dc426.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/countdown-5dc426.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486494,7 +486855,7 @@ }, { "question": "Covirán", - "icon": "./assets/data/nsi/logos/coviran-d9bffc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coviran-d9bffc.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486512,7 +486873,7 @@ }, { "question": "Crai", - "icon": "./assets/data/nsi/logos/crai-d52198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crai-d52198.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486528,7 +486889,7 @@ }, { "question": "Cub Foods", - "icon": "./assets/data/nsi/logos/cubfoods-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cubfoods-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -486544,7 +486905,7 @@ }, { "question": "D'Agostino", - "icon": "./assets/data/nsi/logos/dagostino-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dagostino-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486560,7 +486921,7 @@ }, { "question": "D&W Fresh Market", - "icon": "./assets/data/nsi/logos/dandwfreshmarket-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dandwfreshmarket-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486576,7 +486937,7 @@ }, { "question": "D1", - "icon": "./assets/data/nsi/logos/d1-271a34.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/d1-271a34.svg", "osmTags": { "and": [ "shop=supermarket", @@ -486607,7 +486968,7 @@ }, { "question": "Dagwinkel", - "icon": "./assets/data/nsi/logos/dagwinkel-5811b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dagwinkel-5811b5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486623,7 +486984,7 @@ }, { "question": "Decò", - "icon": "./assets/data/nsi/logos/deco-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deco-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -486639,7 +487000,7 @@ }, { "question": "Deen", - "icon": "./assets/data/nsi/logos/deen-5811b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deen-5811b5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486655,7 +487016,7 @@ }, { "question": "DekaMarkt", - "icon": "./assets/data/nsi/logos/dekamarkt-5811b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dekamarkt-5811b5.png", "osmTags": { "and": [ "shop=supermarket", @@ -486671,7 +487032,7 @@ }, { "question": "Delhaize", - "icon": "./assets/data/nsi/logos/delhaize-f276cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/delhaize-f276cb.png", "osmTags": { "and": [ "shop=supermarket", @@ -486702,7 +487063,7 @@ }, { "question": "Denner", - "icon": "./assets/data/nsi/logos/denner-704edb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/denner-704edb.png", "osmTags": { "and": [ "shop=supermarket", @@ -486718,7 +487079,7 @@ }, { "question": "Denns BioMarkt", - "icon": "./assets/data/nsi/logos/dennsbiomarkt-6367d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dennsbiomarkt-6367d0.png", "osmTags": { "and": [ "organic=only", @@ -486737,7 +487098,7 @@ }, { "question": "Despar", - "icon": "./assets/data/nsi/logos/despar-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/despar-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486753,7 +487114,7 @@ }, { "question": "Despensa Familiar", - "icon": "./assets/data/nsi/logos/despensafamiliar-4ef027.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/despensafamiliar-4ef027.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486769,7 +487130,7 @@ }, { "question": "Dia", - "icon": "./assets/data/nsi/logos/dia-675159.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dia-675159.png", "osmTags": { "and": [ "shop=supermarket", @@ -486785,7 +487146,7 @@ }, { "question": "Dia Market", - "icon": "./assets/data/nsi/logos/diamarket-986a24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/diamarket-986a24.png", "osmTags": { "and": [ "shop=supermarket", @@ -486801,7 +487162,7 @@ }, { "question": "Dialprix", - "icon": "./assets/data/nsi/logos/dialprix-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dialprix-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486817,7 +487178,7 @@ }, { "question": "Dierbergs", - "icon": "./assets/data/nsi/logos/dierbergs-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dierbergs-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -486833,7 +487194,7 @@ }, { "question": "Dillons", - "icon": "./assets/data/nsi/logos/dillons-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dillons-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -486849,7 +487210,7 @@ }, { "question": "Dino", - "icon": "./assets/data/nsi/logos/dino-9e6a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dino-9e6a6c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486865,7 +487226,7 @@ }, { "question": "Dirk", - "icon": "./assets/data/nsi/logos/dirk-5811b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dirk-5811b5.png", "osmTags": { "and": [ "old_name=Dirk van den Broek", @@ -486882,7 +487243,7 @@ }, { "question": "Disco (Argentina)", - "icon": "./assets/data/nsi/logos/disco-0d2b84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/disco-0d2b84.png", "osmTags": { "and": [ "shop=supermarket", @@ -486898,7 +487259,7 @@ }, { "question": "Disco (Uruguay)", - "icon": "./assets/data/nsi/logos/disco-f37fd6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/disco-f37fd6.png", "osmTags": { "and": [ "shop=supermarket", @@ -486914,7 +487275,7 @@ }, { "question": "diska", - "icon": "./assets/data/nsi/logos/diska-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diska-0a839e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486930,7 +487291,7 @@ }, { "question": "DMart", - "icon": "./assets/data/nsi/logos/dmart-9ef8f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dmart-9ef8f9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486946,7 +487307,7 @@ }, { "question": "Dollar General Market", - "icon": "./assets/data/nsi/logos/dollargeneralmarket-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dollargeneralmarket-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486962,7 +487323,7 @@ }, { "question": "Dornseifers Frischemarkt", - "icon": "./assets/data/nsi/logos/dornseifersfrischemarkt-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dornseifersfrischemarkt-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -486979,7 +487340,7 @@ }, { "question": "Dpiù", - "icon": "./assets/data/nsi/logos/dpiu-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dpiu-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -486995,7 +487356,7 @@ }, { "question": "Drakes", - "icon": "./assets/data/nsi/logos/drakes-c254c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drakes-c254c9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487011,7 +487372,7 @@ }, { "question": "Dunnes Stores", - "icon": "./assets/data/nsi/logos/dunnesstores-b7087f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunnesstores-b7087f.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487027,7 +487388,7 @@ }, { "question": "E-Center", - "icon": "./assets/data/nsi/logos/ecenter-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ecenter-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -487043,7 +487404,7 @@ }, { "question": "E-Mart", - "icon": "./assets/data/nsi/logos/emart-12b833.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emart-12b833.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487063,7 +487424,7 @@ }, { "question": "E.Leclerc", - "icon": "./assets/data/nsi/logos/eleclerc-111b05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclerc-111b05.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487079,7 +487440,7 @@ }, { "question": "E.Leclerc Express", - "icon": "./assets/data/nsi/logos/eleclercexpress-c16b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclercexpress-c16b1c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487095,7 +487456,7 @@ }, { "question": "East of England CO-OP", - "icon": "./assets/data/nsi/logos/eastofenglandcoop-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastofenglandcoop-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487113,7 +487474,7 @@ }, { "question": "Eataly", - "icon": "./assets/data/nsi/logos/eataly-986a24.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eataly-986a24.svg", "osmTags": { "and": [ "shop=supermarket", @@ -487129,7 +487490,7 @@ }, { "question": "ebl-Naturkost", - "icon": "./assets/data/nsi/logos/eblnaturkost-f97a5b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eblnaturkost-f97a5b.png", "osmTags": { "and": [ "organic=only", @@ -487146,7 +487507,7 @@ }, { "question": "Econo Foods", - "icon": "./assets/data/nsi/logos/econofoods-f9f648.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/econofoods-f9f648.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487179,7 +487540,7 @@ }, { "question": "Econsave", - "icon": "./assets/data/nsi/logos/econsave-80e9ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/econsave-80e9ee.png", "osmTags": { "and": [ "shop=supermarket", @@ -487199,7 +487560,7 @@ }, { "question": "EDEKA", - "icon": "./assets/data/nsi/logos/edeka-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edeka-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -487215,7 +487576,7 @@ }, { "question": "EDEKA aktiv markt", - "icon": "./assets/data/nsi/logos/edekaaktivmarkt-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edekaaktivmarkt-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -487231,7 +487592,7 @@ }, { "question": "EDEKA xpress", - "icon": "./assets/data/nsi/logos/edekaxpress-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edekaxpress-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -487262,7 +487623,7 @@ }, { "question": "Ekom", - "icon": "./assets/data/nsi/logos/ekom-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ekom-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -487278,7 +487639,7 @@ }, { "question": "Ekono", - "icon": "./assets/data/nsi/logos/ekono-d25066.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekono-d25066.svg", "osmTags": { "and": [ "shop=supermarket", @@ -487294,7 +487655,7 @@ }, { "question": "Ekoplaza", - "icon": "./assets/data/nsi/logos/ekoplaza-1cf55d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekoplaza-1cf55d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487310,7 +487671,7 @@ }, { "question": "El Jamón", - "icon": "./assets/data/nsi/logos/eljamon-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eljamon-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487326,7 +487687,7 @@ }, { "question": "El Super", - "icon": "./assets/data/nsi/logos/elsuper-b82f18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elsuper-b82f18.png", "osmTags": { "and": [ "shop=supermarket", @@ -487342,7 +487703,7 @@ }, { "question": "Elli", - "icon": "./assets/data/nsi/logos/elli-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elli-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -487358,7 +487719,7 @@ }, { "question": "Elvi", - "icon": "./assets/data/nsi/logos/elvi-858077.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elvi-858077.png", "osmTags": { "and": [ "shop=supermarket", @@ -487374,7 +487735,7 @@ }, { "question": "EMTÉ", - "icon": "./assets/data/nsi/logos/emte-5811b5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/emte-5811b5.svg", "osmTags": { "and": [ "shop=supermarket", @@ -487390,7 +487751,7 @@ }, { "question": "Erewhon", - "icon": "./assets/data/nsi/logos/erewhon-097dbf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erewhon-097dbf.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487406,7 +487767,7 @@ }, { "question": "Eroski", - "icon": "./assets/data/nsi/logos/eroski-9c34f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eroski-9c34f5.png", "osmTags": { "and": [ "shop=supermarket", @@ -487422,7 +487783,7 @@ }, { "question": "Eroski City", - "icon": "./assets/data/nsi/logos/eroskicity-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eroskicity-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -487438,7 +487799,7 @@ }, { "question": "Esselunga", - "icon": "./assets/data/nsi/logos/esselunga-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esselunga-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487454,7 +487815,7 @@ }, { "question": "ETSAN", - "icon": "./assets/data/nsi/logos/etsan-1eef1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etsan-1eef1d.jpg", "osmTags": { "and": [ "diet:halal=only", @@ -487471,7 +487832,7 @@ }, { "question": "Eurospar", - "icon": "./assets/data/nsi/logos/eurospar-4b5e11.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurospar-4b5e11.svg", "osmTags": { "and": [ "shop=supermarket", @@ -487487,7 +487848,7 @@ }, { "question": "EuroSpin", - "icon": "./assets/data/nsi/logos/eurospin-8a5880.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eurospin-8a5880.png", "osmTags": { "and": [ "shop=supermarket", @@ -487503,7 +487864,7 @@ }, { "question": "Ever", - "icon": "./assets/data/nsi/logos/ever-49e134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ever-49e134.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487519,7 +487880,7 @@ }, { "question": "Extra", - "icon": "./assets/data/nsi/logos/extra-ed9dd5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/extra-ed9dd5.png", "osmTags": { "and": [ "shop=supermarket", @@ -487535,7 +487896,7 @@ }, { "question": "fakta", - "icon": "./assets/data/nsi/logos/fakta-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fakta-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -487551,7 +487912,7 @@ }, { "question": "famila", - "icon": "./assets/data/nsi/logos/famila-5d2816.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/famila-5d2816.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487581,7 +487942,7 @@ }, { "question": "Family Fare", - "icon": "./assets/data/nsi/logos/familyfare-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/familyfare-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487597,7 +487958,7 @@ }, { "question": "Fareway", - "icon": "./assets/data/nsi/logos/fareway-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fareway-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487613,7 +487974,7 @@ }, { "question": "Farm Boy", - "icon": "./assets/data/nsi/logos/farmboy-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/farmboy-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487629,7 +487990,7 @@ }, { "question": "Feneberg", - "icon": "./assets/data/nsi/logos/feneberg-6367d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/feneberg-6367d0.png", "osmTags": { "and": [ "shop=supermarket", @@ -487645,7 +488006,7 @@ }, { "question": "Fiesta Mart", - "icon": "./assets/data/nsi/logos/fiestamart-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiestamart-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487675,7 +488036,7 @@ }, { "question": "Food 4 Less", - "icon": "./assets/data/nsi/logos/food4less-f69edf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/food4less-f69edf.png", "osmTags": { "and": [ "shop=supermarket", @@ -487691,7 +488052,7 @@ }, { "question": "Food Basics", - "icon": "./assets/data/nsi/logos/foodbasics-986a24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foodbasics-986a24.png", "osmTags": { "and": [ "shop=supermarket", @@ -487707,7 +488068,7 @@ }, { "question": "Food City (Arizona)", - "icon": "./assets/data/nsi/logos/foodcity-48e71b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodcity-48e71b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487723,7 +488084,7 @@ }, { "question": "Food City (Southeast USA)", - "icon": "./assets/data/nsi/logos/foodcity-82ed7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodcity-82ed7a.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487739,7 +488100,7 @@ }, { "question": "Food Lion", - "icon": "./assets/data/nsi/logos/foodlion-7818a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodlion-7818a5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487755,7 +488116,7 @@ }, { "question": "Food Lover's Market", - "icon": "./assets/data/nsi/logos/foodloversmarket-a0d53f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodloversmarket-a0d53f.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487771,7 +488132,7 @@ }, { "question": "Foodland (Australia)", - "icon": "./assets/data/nsi/logos/foodland-c254c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodland-c254c9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487787,7 +488148,7 @@ }, { "question": "Foodland (Canada)", - "icon": "./assets/data/nsi/logos/foodland-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodland-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487818,7 +488179,7 @@ }, { "question": "Foodland (Hawaii)", - "icon": "./assets/data/nsi/logos/foodland-34b4ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodland-34b4ac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487834,7 +488195,7 @@ }, { "question": "FoodMaxx", - "icon": "./assets/data/nsi/logos/foodmaxx-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodmaxx-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487850,7 +488211,7 @@ }, { "question": "Foods Co", - "icon": "./assets/data/nsi/logos/foodsco-097dbf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foodsco-097dbf.png", "osmTags": { "and": [ "shop=supermarket", @@ -487866,7 +488227,7 @@ }, { "question": "Foodtown", - "icon": "./assets/data/nsi/logos/foodtown-3ea0d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodtown-3ea0d2.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487882,7 +488243,7 @@ }, { "question": "Foodworks", - "icon": "./assets/data/nsi/logos/foodworks-c254c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodworks-c254c9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487898,7 +488259,7 @@ }, { "question": "Fortinos", - "icon": "./assets/data/nsi/logos/fortinos-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortinos-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487914,7 +488275,7 @@ }, { "question": "Føtex", - "icon": "./assets/data/nsi/logos/fotex-072052.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fotex-072052.png", "osmTags": { "and": [ "shop=supermarket", @@ -487930,7 +488291,7 @@ }, { "question": "Four Square", - "icon": "./assets/data/nsi/logos/foursquare-5dc426.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foursquare-5dc426.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487946,7 +488307,7 @@ }, { "question": "FRAC", - "icon": "./assets/data/nsi/logos/frac-9e6a6c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/frac-9e6a6c.svg", "osmTags": { "and": [ "shop=supermarket", @@ -487962,7 +488323,7 @@ }, { "question": "Fred Meyer", - "icon": "./assets/data/nsi/logos/fredmeyer-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fredmeyer-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -487978,7 +488339,7 @@ }, { "question": "Fresh", - "icon": "./assets/data/nsi/logos/fresh-94a8a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fresh-94a8a9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -487994,7 +488355,7 @@ }, { "question": "Fresh Plus", - "icon": "./assets/data/nsi/logos/freshplus-4ccde8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshplus-4ccde8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488010,7 +488371,7 @@ }, { "question": "Fresh Thyme", - "icon": "./assets/data/nsi/logos/freshthyme-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshthyme-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488026,7 +488387,7 @@ }, { "question": "FreshChoice", - "icon": "./assets/data/nsi/logos/freshchoice-5dc426.png", + "icon": "https://data.mapcomplete.org/nsi//logos/freshchoice-5dc426.png", "osmTags": { "and": [ "shop=supermarket", @@ -488042,7 +488403,7 @@ }, { "question": "FreshCo", - "icon": "./assets/data/nsi/logos/freshco-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshco-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488058,7 +488419,7 @@ }, { "question": "Froiz", - "icon": "./assets/data/nsi/logos/froiz-d9bffc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/froiz-d9bffc.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488074,7 +488435,7 @@ }, { "question": "Fry's Food and Drug", - "icon": "./assets/data/nsi/logos/frysfoodanddrug-dde59d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/frysfoodanddrug-dde59d.svg", "osmTags": { "and": [ "shop=supermarket", @@ -488090,7 +488451,7 @@ }, { "question": "Fry's Marketplace", - "icon": "./assets/data/nsi/logos/frysmarketplace-dde59d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/frysmarketplace-dde59d.svg", "osmTags": { "and": [ "shop=supermarket", @@ -488128,7 +488489,7 @@ }, { "question": "G20", - "icon": "./assets/data/nsi/logos/g20-94a8a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/g20-94a8a9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488144,7 +488505,7 @@ }, { "question": "Gadis", - "icon": "./assets/data/nsi/logos/gadis-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gadis-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -488174,7 +488535,7 @@ }, { "question": "Game", - "icon": "./assets/data/nsi/logos/game-910aca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/game-910aca.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488190,7 +488551,7 @@ }, { "question": "GBarbosa", - "icon": "./assets/data/nsi/logos/gbarbosa-20f2a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gbarbosa-20f2a8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488206,7 +488567,7 @@ }, { "question": "Géant Casino", - "icon": "./assets/data/nsi/logos/geantcasino-ca0ec4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/geantcasino-ca0ec4.png", "osmTags": { "and": [ "shop=supermarket", @@ -488222,7 +488583,7 @@ }, { "question": "Gelson's", - "icon": "./assets/data/nsi/logos/gelsons-097dbf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gelsons-097dbf.svg", "osmTags": { "and": [ "shop=supermarket", @@ -488238,7 +488599,7 @@ }, { "question": "Giant (Carlisle)", - "icon": "./assets/data/nsi/logos/giant-22a674.png", + "icon": "https://data.mapcomplete.org/nsi//logos/giant-22a674.png", "osmTags": { "and": [ "shop=supermarket", @@ -488254,16 +488615,16 @@ }, { "question": "Giant (Landover)", - "icon": "./assets/data/nsi/logos/giant-fc203b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giant-fc203b.jpg", "osmTags": { "and": [ - "official_name=Giant Food", "shop=supermarket", { "or": [ "brand=Giant", "brand:wikidata=Q5558336", - "name=Giant" + "name=Giant", + "official_name=Giant Food" ] } ] @@ -488271,7 +488632,7 @@ }, { "question": "Giant Eagle", - "icon": "./assets/data/nsi/logos/gianteagle-dca8d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gianteagle-dca8d8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488287,7 +488648,7 @@ }, { "question": "Giant Hypermarket", - "icon": "./assets/data/nsi/logos/gianthypermarket-e1160b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gianthypermarket-e1160b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488303,7 +488664,7 @@ }, { "question": "Globus", - "icon": "./assets/data/nsi/logos/globus-2d7d3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globus-2d7d3f.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488319,7 +488680,7 @@ }, { "question": "Go Asia", - "icon": "./assets/data/nsi/logos/goasia-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goasia-0a839e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488335,7 +488696,7 @@ }, { "question": "Gordon Food Service", - "icon": "./assets/data/nsi/logos/gordonfoodservice-166dbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gordonfoodservice-166dbe.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488351,7 +488712,7 @@ }, { "question": "Grand Frais", - "icon": "./assets/data/nsi/logos/grandfrais-94a8a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/grandfrais-94a8a9.png", "osmTags": { "and": [ "shop=supermarket", @@ -488382,16 +488743,16 @@ }, { "question": "Grocery Outlet", - "icon": "./assets/data/nsi/logos/groceryoutlet-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/groceryoutlet-dde59d.png", "osmTags": { "and": [ - "official_name=Grocery Outlet Bargain Market", "shop=supermarket", { "or": [ "brand=Grocery Outlet", "brand:wikidata=Q5609934", - "name=Grocery Outlet" + "name=Grocery Outlet", + "official_name=Grocery Outlet Bargain Market" ] } ] @@ -488399,7 +488760,7 @@ }, { "question": "Groszek", - "icon": "./assets/data/nsi/logos/groszek-9e6a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/groszek-9e6a6c.png", "osmTags": { "and": [ "shop=supermarket", @@ -488415,7 +488776,7 @@ }, { "question": "Gulliver", - "icon": "./assets/data/nsi/logos/gulliver-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gulliver-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488431,7 +488792,7 @@ }, { "question": "H Mart", - "icon": "./assets/data/nsi/logos/hmart-90050a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hmart-90050a.jpg", "osmTags": { "and": [ "cuisine=asian", @@ -488453,7 +488814,7 @@ }, { "question": "H-E-B", - "icon": "./assets/data/nsi/logos/heb-078f5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heb-078f5a.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488469,7 +488830,7 @@ }, { "question": "H-E-B plus!", - "icon": "./assets/data/nsi/logos/hebplus-078f5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hebplus-078f5a.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488485,7 +488846,7 @@ }, { "question": "Hakmar", - "icon": "./assets/data/nsi/logos/hakmar-5b5772.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hakmar-5b5772.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488501,7 +488862,7 @@ }, { "question": "Hakmar Express", - "icon": "./assets/data/nsi/logos/hakmarexpress-5b5772.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hakmarexpress-5b5772.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488517,7 +488878,7 @@ }, { "question": "HalpaHalli", - "icon": "./assets/data/nsi/logos/halpahalli-c9c76a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/halpahalli-c9c76a.png", "osmTags": { "and": [ "shop=supermarket", @@ -488533,7 +488894,7 @@ }, { "question": "Hannaford", - "icon": "./assets/data/nsi/logos/hannaford-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hannaford-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488549,7 +488910,7 @@ }, { "question": "Harps", - "icon": "./assets/data/nsi/logos/harps-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harps-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488565,7 +488926,7 @@ }, { "question": "Harris Farm Markets", - "icon": "./assets/data/nsi/logos/harrisfarmmarkets-c254c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harrisfarmmarkets-c254c9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488581,7 +488942,7 @@ }, { "question": "Harris Teeter", - "icon": "./assets/data/nsi/logos/harristeeter-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harristeeter-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488597,7 +488958,7 @@ }, { "question": "Hemköp", - "icon": "./assets/data/nsi/logos/hemkop-c57afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hemkop-c57afb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488613,7 +488974,7 @@ }, { "question": "HERKULES Ecenter", - "icon": "./assets/data/nsi/logos/herkulesecenter-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/herkulesecenter-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -488629,7 +488990,7 @@ }, { "question": "Hero Supermarket", - "icon": "./assets/data/nsi/logos/herosupermarket-9b33de.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/herosupermarket-9b33de.svg", "osmTags": { "and": [ "shop=supermarket", @@ -488645,7 +489006,7 @@ }, { "question": "Heron Foods", - "icon": "./assets/data/nsi/logos/heronfoods-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heronfoods-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488661,7 +489022,7 @@ }, { "question": "Hipercor", - "icon": "./assets/data/nsi/logos/hipercor-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hipercor-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488677,7 +489038,7 @@ }, { "question": "HiperDino", - "icon": "./assets/data/nsi/logos/hiperdino-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hiperdino-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488694,7 +489055,7 @@ }, { "question": "Hipermaxi", - "icon": "./assets/data/nsi/logos/hipermaxi-cbfbb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hipermaxi-cbfbb4.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488710,7 +489071,7 @@ }, { "question": "HIT", - "icon": "./assets/data/nsi/logos/hit-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hit-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -488726,7 +489087,7 @@ }, { "question": "HitMax", - "icon": "./assets/data/nsi/logos/hitmax-56b425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hitmax-56b425.png", "osmTags": { "and": [ "shop=supermarket", @@ -488744,7 +489105,7 @@ }, { "question": "Hmarket", - "icon": "./assets/data/nsi/logos/hmarket-3f7afe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hmarket-3f7afe.png", "osmTags": { "and": [ "diet:halal=only", @@ -488761,7 +489122,7 @@ }, { "question": "Hofer", - "icon": "./assets/data/nsi/logos/hofer-83285c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hofer-83285c.png", "osmTags": { "and": [ "shop=supermarket", @@ -488777,7 +489138,7 @@ }, { "question": "Hoogvliet", - "icon": "./assets/data/nsi/logos/hoogvliet-5811b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hoogvliet-5811b5.png", "osmTags": { "and": [ "shop=supermarket", @@ -488793,7 +489154,7 @@ }, { "question": "Hruška", - "icon": "./assets/data/nsi/logos/hruska-8e6809.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hruska-8e6809.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488809,7 +489170,7 @@ }, { "question": "Hy-Vee", - "icon": "./assets/data/nsi/logos/hyvee-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyvee-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488825,7 +489186,7 @@ }, { "question": "Hyper U", - "icon": "./assets/data/nsi/logos/hyperu-c16b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyperu-c16b1c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488841,7 +489202,7 @@ }, { "question": "Hypercacher", - "icon": "./assets/data/nsi/logos/hypercacher-94a8a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hypercacher-94a8a9.jpg", "osmTags": { "and": [ "diet:kosher=only", @@ -488858,7 +489219,7 @@ }, { "question": "IC Norte", - "icon": "./assets/data/nsi/logos/icnorte-cbfbb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/icnorte-cbfbb4.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488874,7 +489235,7 @@ }, { "question": "ICA Kvantum", - "icon": "./assets/data/nsi/logos/icakvantum-c57afb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/icakvantum-c57afb.png", "osmTags": { "and": [ "shop=supermarket", @@ -488890,7 +489251,7 @@ }, { "question": "ICA Nära", - "icon": "./assets/data/nsi/logos/icanara-c57afb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/icanara-c57afb.png", "osmTags": { "and": [ "shop=supermarket", @@ -488906,7 +489267,7 @@ }, { "question": "ICA Supermarket", - "icon": "./assets/data/nsi/logos/icasupermarket-c57afb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/icasupermarket-c57afb.png", "osmTags": { "and": [ "shop=supermarket", @@ -488922,7 +489283,7 @@ }, { "question": "IDEA", - "icon": "./assets/data/nsi/logos/idea-7f1f6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idea-7f1f6d.png", "osmTags": { "and": [ "shop=supermarket", @@ -488956,7 +489317,7 @@ }, { "question": "Ideal Food Basket", - "icon": "./assets/data/nsi/logos/idealfoodbasket-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idealfoodbasket-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -488972,7 +489333,7 @@ }, { "question": "IGA", - "icon": "./assets/data/nsi/logos/iga-166dbe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iga-166dbe.png", "osmTags": { "and": [ "shop=supermarket", @@ -488988,7 +489349,7 @@ }, { "question": "IGA (Australia)", - "icon": "./assets/data/nsi/logos/iga-c254c9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/iga-c254c9.svg", "osmTags": { "and": [ "shop=supermarket", @@ -489004,7 +489365,7 @@ }, { "question": "IKI", - "icon": "./assets/data/nsi/logos/iki-dfbc25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iki-dfbc25.png", "osmTags": { "and": [ "shop=supermarket", @@ -489021,7 +489382,7 @@ }, { "question": "In's Mercato", - "icon": "./assets/data/nsi/logos/insmercato-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/insmercato-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489037,7 +489398,7 @@ }, { "question": "Ingles", - "icon": "./assets/data/nsi/logos/ingles-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ingles-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489053,7 +489414,7 @@ }, { "question": "Intermarché", - "icon": "./assets/data/nsi/logos/intermarche-986a24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarche-986a24.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489069,7 +489430,7 @@ }, { "question": "Intermarché Drive", - "icon": "./assets/data/nsi/logos/intermarchedrive-94a8a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarchedrive-94a8a9.jpg", "osmTags": { "and": [ "drive_through=only", @@ -489086,7 +489447,7 @@ }, { "question": "Intermarché Hyper", - "icon": "./assets/data/nsi/logos/intermarchehyper-94a8a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarchehyper-94a8a9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489102,7 +489463,7 @@ }, { "question": "Intermarché Super", - "icon": "./assets/data/nsi/logos/intermarchesuper-bc9d37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarchesuper-bc9d37.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489118,7 +489479,7 @@ }, { "question": "Interspar", - "icon": "./assets/data/nsi/logos/interspar-268650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/interspar-268650.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489134,7 +489495,7 @@ }, { "question": "Iper", - "icon": "./assets/data/nsi/logos/iper-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iper-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -489150,7 +489511,7 @@ }, { "question": "Iperal", - "icon": "./assets/data/nsi/logos/iperal-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iperal-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489166,7 +489527,7 @@ }, { "question": "Ipercoop", - "icon": "./assets/data/nsi/logos/ipercoop-0cb133.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ipercoop-0cb133.svg", "osmTags": { "and": [ "shop=supermarket", @@ -489197,7 +489558,7 @@ }, { "question": "Italmark", - "icon": "./assets/data/nsi/logos/italmark-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/italmark-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -489213,7 +489574,7 @@ }, { "question": "Jan Linders", - "icon": "./assets/data/nsi/logos/janlinders-5811b5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/janlinders-5811b5.svg", "osmTags": { "and": [ "shop=supermarket", @@ -489229,7 +489590,7 @@ }, { "question": "Jewel-Osco", - "icon": "./assets/data/nsi/logos/jewelosco-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jewelosco-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489245,7 +489606,7 @@ }, { "question": "Joker", - "icon": "./assets/data/nsi/logos/joker-ed9dd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joker-ed9dd5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489261,7 +489622,7 @@ }, { "question": "Jumbo (Cencosud)", - "icon": "./assets/data/nsi/logos/jumbo-99a0d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jumbo-99a0d7.png", "osmTags": { "and": [ "shop=supermarket", @@ -489277,7 +489638,7 @@ }, { "question": "Jumbo (Europe)", - "icon": "./assets/data/nsi/logos/jumbo-1cf55d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jumbo-1cf55d.png", "osmTags": { "and": [ "shop=supermarket", @@ -489293,7 +489654,7 @@ }, { "question": "K-Citymarket", - "icon": "./assets/data/nsi/logos/kcitymarket-46d3b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kcitymarket-46d3b7.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489309,7 +489670,7 @@ }, { "question": "K-Supermarket", - "icon": "./assets/data/nsi/logos/ksupermarket-46d3b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ksupermarket-46d3b7.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489325,7 +489686,7 @@ }, { "question": "K+K", - "icon": "./assets/data/nsi/logos/kk-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kk-0a839e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489341,7 +489702,7 @@ }, { "question": "Kaufland", - "icon": "./assets/data/nsi/logos/kaufland-464a37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kaufland-464a37.png", "osmTags": { "and": [ "shop=supermarket", @@ -489357,7 +489718,7 @@ }, { "question": "Kaufland (България)", - "icon": "./assets/data/nsi/logos/kaufland-56b425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kaufland-56b425.png", "osmTags": { "and": [ "shop=supermarket", @@ -489375,7 +489736,7 @@ }, { "question": "Ketal", - "icon": "./assets/data/nsi/logos/ketal-cbfbb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ketal-cbfbb4.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489391,7 +489752,7 @@ }, { "question": "Key Food", - "icon": "./assets/data/nsi/logos/keyfood-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keyfood-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489407,7 +489768,7 @@ }, { "question": "KFL Supermarkets", - "icon": "./assets/data/nsi/logos/kflsupermarkets-c254c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kflsupermarkets-c254c9.jpg", "osmTags": { "and": [ "origin=asian", @@ -489427,7 +489788,7 @@ }, { "question": "King Soopers", - "icon": "./assets/data/nsi/logos/kingsoopers-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kingsoopers-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -489443,7 +489804,7 @@ }, { "question": "King Soopers Marketplace", - "icon": "./assets/data/nsi/logos/kingsoopersmarketplace-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kingsoopersmarketplace-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -489459,7 +489820,7 @@ }, { "question": "Kings", - "icon": "./assets/data/nsi/logos/kings-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kings-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489490,7 +489851,7 @@ }, { "question": "Kiwi", - "icon": "./assets/data/nsi/logos/kiwi-ed9dd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiwi-ed9dd5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489506,7 +489867,7 @@ }, { "question": "Klas", - "icon": "./assets/data/nsi/logos/klas-4ccde8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/klas-4ccde8.png", "osmTags": { "and": [ "shop=supermarket", @@ -489522,7 +489883,7 @@ }, { "question": "Konsum (Dresden)", - "icon": "./assets/data/nsi/logos/konsum-c00dcd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/konsum-c00dcd.png", "osmTags": { "and": [ "shop=supermarket", @@ -489538,7 +489899,7 @@ }, { "question": "Konsum Leipzig", - "icon": "./assets/data/nsi/logos/konsumleipzig-1d068e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/konsumleipzig-1d068e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489554,7 +489915,7 @@ }, { "question": "Konzum (Balkans)", - "icon": "./assets/data/nsi/logos/konzum-0956c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/konzum-0956c9.png", "osmTags": { "and": [ "shop=supermarket", @@ -489584,7 +489945,7 @@ }, { "question": "Korzinka", - "icon": "./assets/data/nsi/logos/korzinka-c068bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/korzinka-c068bf.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489600,7 +489961,7 @@ }, { "question": "Kroger", - "icon": "./assets/data/nsi/logos/kroger-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kroger-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -489616,7 +489977,7 @@ }, { "question": "Kroger Marketplace", - "icon": "./assets/data/nsi/logos/krogermarketplace-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/krogermarketplace-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -489632,7 +489993,7 @@ }, { "question": "Krónan", - "icon": "./assets/data/nsi/logos/kronan-0c58a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kronan-0c58a2.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489648,7 +490009,7 @@ }, { "question": "KTA Super Stores", - "icon": "./assets/data/nsi/logos/ktasuperstores-34b4ac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ktasuperstores-34b4ac.png", "osmTags": { "and": [ "shop=supermarket", @@ -489664,7 +490025,7 @@ }, { "question": "Kupsch", - "icon": "./assets/data/nsi/logos/kupsch-0a839e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kupsch-0a839e.svg", "osmTags": { "and": [ "shop=supermarket", @@ -489695,7 +490056,7 @@ }, { "question": "L'Eau Vive", - "icon": "./assets/data/nsi/logos/leauvive-c16b1c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leauvive-c16b1c.png", "osmTags": { "and": [ "shop=supermarket", @@ -489711,7 +490072,7 @@ }, { "question": "La Anónima", - "icon": "./assets/data/nsi/logos/laanonima-0d2b84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laanonima-0d2b84.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489727,7 +490088,7 @@ }, { "question": "La Comer", - "icon": "./assets/data/nsi/logos/lacomer-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacomer-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489757,7 +490118,7 @@ }, { "question": "La Michoacana Meat Market", - "icon": "./assets/data/nsi/logos/lamichoacanameatmarket-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamichoacanameatmarket-dde59d.jpg", "osmTags": { "and": [ "cuisine=latin_american", @@ -489775,7 +490136,7 @@ }, { "question": "La Plaza de DIA", - "icon": "./assets/data/nsi/logos/laplazadedia-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/laplazadedia-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -489791,7 +490152,7 @@ }, { "question": "La Vie Claire", - "icon": "./assets/data/nsi/logos/lavieclaire-c16b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lavieclaire-c16b1c.jpg", "osmTags": { "and": [ "organic=only", @@ -489823,7 +490184,7 @@ }, { "question": "Les Comptoirs De La Bio", - "icon": "./assets/data/nsi/logos/lescomptoirsdelabio-c16b1c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lescomptoirsdelabio-c16b1c.png", "osmTags": { "and": [ "organic=only", @@ -489840,7 +490201,7 @@ }, { "question": "Lewiatan", - "icon": "./assets/data/nsi/logos/lewiatan-9e6a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lewiatan-9e6a6c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489856,7 +490217,7 @@ }, { "question": "Lider", - "icon": "./assets/data/nsi/logos/lider-d25066.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lider-d25066.png", "osmTags": { "and": [ "shop=supermarket", @@ -489872,7 +490233,7 @@ }, { "question": "Lider Express", - "icon": "./assets/data/nsi/logos/liderexpress-d25066.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liderexpress-d25066.png", "osmTags": { "and": [ "shop=supermarket", @@ -489888,7 +490249,7 @@ }, { "question": "Lidl", - "icon": "./assets/data/nsi/logos/lidl-5866c3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lidl-5866c3.svg", "osmTags": { "and": [ "shop=supermarket", @@ -489904,7 +490265,7 @@ }, { "question": "Lincolnshire Co-op", - "icon": "./assets/data/nsi/logos/lincolnshirecoop-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnshirecoop-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489920,7 +490281,7 @@ }, { "question": "Linella", - "icon": "./assets/data/nsi/logos/linella-cb8836.png", + "icon": "https://data.mapcomplete.org/nsi//logos/linella-cb8836.png", "osmTags": { "and": [ "shop=supermarket", @@ -489936,7 +490297,7 @@ }, { "question": "Loblaws", - "icon": "./assets/data/nsi/logos/loblaws-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loblaws-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489952,7 +490313,7 @@ }, { "question": "Londis (Ireland)", - "icon": "./assets/data/nsi/logos/londis-23ec32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londis-23ec32.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489968,7 +490329,7 @@ }, { "question": "Londis (UK)", - "icon": "./assets/data/nsi/logos/londis-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londis-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -489984,7 +490345,7 @@ }, { "question": "Longdan", - "icon": "./assets/data/nsi/logos/longdan-cc4ffc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longdan-cc4ffc.jpg", "osmTags": { "and": [ "origin=asian", @@ -490001,7 +490362,7 @@ }, { "question": "Longo's", - "icon": "./assets/data/nsi/logos/longos-388e9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longos-388e9d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490017,7 +490378,7 @@ }, { "question": "Lotte Mart", - "icon": "./assets/data/nsi/logos/lottemart-1fa952.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lottemart-1fa952.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490033,7 +490394,7 @@ }, { "question": "Lotus's", - "icon": "./assets/data/nsi/logos/lotuss-a5f134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotuss-a5f134.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490054,7 +490415,7 @@ }, { "question": "Lotus's go fresh", - "icon": "./assets/data/nsi/logos/lotussgofresh-a5f134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lotussgofresh-a5f134.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490101,7 +490462,7 @@ }, { "question": "Lowes Foods", - "icon": "./assets/data/nsi/logos/lowesfoods-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lowesfoods-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490117,7 +490478,7 @@ }, { "question": "LPG BioMarkt", - "icon": "./assets/data/nsi/logos/lpgbiomarkt-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lpgbiomarkt-0a839e.jpg", "osmTags": { "and": [ "organic=only", @@ -490134,7 +490495,7 @@ }, { "question": "Lucky", - "icon": "./assets/data/nsi/logos/lucky-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lucky-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490150,7 +490511,7 @@ }, { "question": "Lulu Hypermarket", - "icon": "./assets/data/nsi/logos/luluhypermarket-7e55ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luluhypermarket-7e55ed.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490180,7 +490541,7 @@ }, { "question": "Lupa", - "icon": "./assets/data/nsi/logos/lupa-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lupa-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -490196,7 +490557,7 @@ }, { "question": "M&S Food", - "icon": "./assets/data/nsi/logos/mandsfood-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandsfood-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490213,7 +490574,7 @@ }, { "question": "M&S Foodhall", - "icon": "./assets/data/nsi/logos/mandsfoodhall-986a24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandsfoodhall-986a24.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490230,7 +490591,7 @@ }, { "question": "M&S Simply Food", - "icon": "./assets/data/nsi/logos/mandssimplyfood-986a24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandssimplyfood-986a24.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490262,7 +490623,7 @@ }, { "question": "Magnit", - "icon": "./assets/data/nsi/logos/magnit-230709.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/magnit-230709.svg", "osmTags": { "and": [ "shop=supermarket", @@ -490324,13 +490685,13 @@ "question": "Margin Free Market", "osmTags": { "and": [ - "official_name=Margin Free Market Pvt Ltd", "shop=supermarket", { "or": [ "brand=Margin Free Market", "brand:wikidata=Q99751436", - "name=Margin Free Market" + "name=Margin Free Market", + "official_name=Margin Free Market Pvt Ltd" ] } ] @@ -490338,7 +490699,7 @@ }, { "question": "Mariano's Fresh Market", - "icon": "./assets/data/nsi/logos/marianosfreshmarket-5ca8e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marianosfreshmarket-5ca8e2.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490355,7 +490716,7 @@ }, { "question": "Marjane", - "icon": "./assets/data/nsi/logos/marjane-dc016e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marjane-dc016e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490371,7 +490732,7 @@ }, { "question": "Markant", - "icon": "./assets/data/nsi/logos/markant-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/markant-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -490387,7 +490748,7 @@ }, { "question": "Market Basket", - "icon": "./assets/data/nsi/logos/marketbasket-986a24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marketbasket-986a24.png", "osmTags": { "and": [ "shop=supermarket", @@ -490417,7 +490778,7 @@ }, { "question": "Market of Choice", - "icon": "./assets/data/nsi/logos/marketofchoice-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marketofchoice-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490433,7 +490794,7 @@ }, { "question": "Market Place", - "icon": "./assets/data/nsi/logos/marketplace-745f9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marketplace-745f9c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490451,7 +490812,7 @@ }, { "question": "Market Place by Jasons", - "icon": "./assets/data/nsi/logos/marketplacebyjasons-745f9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marketplacebyjasons-745f9c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490469,7 +490830,7 @@ }, { "question": "Market Street", - "icon": "./assets/data/nsi/logos/marketstreet-fa4d34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marketstreet-fa4d34.png", "osmTags": { "and": [ "shop=supermarket", @@ -490485,7 +490846,7 @@ }, { "question": "MARKTKAUF", - "icon": "./assets/data/nsi/logos/marktkauf-0a839e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marktkauf-0a839e.svg", "osmTags": { "and": [ "shop=supermarket", @@ -490516,7 +490877,7 @@ }, { "question": "Martin's Super Markets", - "icon": "./assets/data/nsi/logos/martinssupermarkets-aeed86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/martinssupermarkets-aeed86.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490532,7 +490893,7 @@ }, { "question": "Mas", - "icon": "./assets/data/nsi/logos/mas-42dc97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mas-42dc97.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490548,7 +490909,7 @@ }, { "question": "masymas (Hijos de Luis Rodríguez)", - "icon": "./assets/data/nsi/logos/masymas-d9d175.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/masymas-d9d175.svg", "osmTags": { "and": [ "shop=supermarket", @@ -490566,7 +490927,7 @@ }, { "question": "masymas (Juan Fornés Fornés)", - "icon": "./assets/data/nsi/logos/masymas-cb4ace.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/masymas-cb4ace.svg", "osmTags": { "and": [ "shop=supermarket", @@ -490584,7 +490945,7 @@ }, { "question": "masymas (Luis Piña)", - "icon": "./assets/data/nsi/logos/masymas-2fdfa5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/masymas-2fdfa5.svg", "osmTags": { "and": [ "shop=supermarket", @@ -490602,7 +490963,7 @@ }, { "question": "Match", - "icon": "./assets/data/nsi/logos/match-ae86a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/match-ae86a1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490618,7 +490979,7 @@ }, { "question": "Matkroken", - "icon": "./assets/data/nsi/logos/matkroken-ed9dd5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/matkroken-ed9dd5.png", "osmTags": { "and": [ "shop=supermarket", @@ -490633,7 +490994,7 @@ }, { "question": "Maxi (Canada)", - "icon": "./assets/data/nsi/logos/maxi-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxi-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490649,7 +491010,7 @@ }, { "question": "Maxi (Србија)", - "icon": "./assets/data/nsi/logos/maxi-b83687.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxi-b83687.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490669,7 +491030,7 @@ }, { "question": "Maxi Dia", - "icon": "./assets/data/nsi/logos/maxidia-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maxidia-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -490685,7 +491046,7 @@ }, { "question": "Maxi ICA Stormarknad", - "icon": "./assets/data/nsi/logos/maxiicastormarknad-e39865.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maxiicastormarknad-e39865.png", "osmTags": { "and": [ "shop=supermarket", @@ -490702,7 +491063,7 @@ }, { "question": "Maxima X", - "icon": "./assets/data/nsi/logos/maximax-45f6bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maximax-45f6bc.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490718,7 +491079,7 @@ }, { "question": "Maxima XX", - "icon": "./assets/data/nsi/logos/maximaxx-48a198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maximaxx-48a198.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490734,7 +491095,7 @@ }, { "question": "Maxima XXX", - "icon": "./assets/data/nsi/logos/maximaxxx-48a198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maximaxxx-48a198.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490750,7 +491111,7 @@ }, { "question": "Maximarkt", - "icon": "./assets/data/nsi/logos/maximarkt-1eef1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maximarkt-1eef1d.png", "osmTags": { "and": [ "shop=supermarket", @@ -490766,7 +491127,7 @@ }, { "question": "MaxValu", - "icon": "./assets/data/nsi/logos/maxvalu-f485f2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxvalu-f485f2.svg", "osmTags": { "and": [ "shop=supermarket", @@ -490782,7 +491143,7 @@ }, { "question": "MCD", - "icon": "./assets/data/nsi/logos/mcd-5811b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mcd-5811b5.png", "osmTags": { "and": [ "shop=supermarket", @@ -490798,7 +491159,7 @@ }, { "question": "MD", - "icon": "./assets/data/nsi/logos/md-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/md-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -490828,7 +491189,7 @@ }, { "question": "Mega Image", - "icon": "./assets/data/nsi/logos/megaimage-62a473.png", + "icon": "https://data.mapcomplete.org/nsi//logos/megaimage-62a473.png", "osmTags": { "and": [ "shop=supermarket", @@ -490844,7 +491205,7 @@ }, { "question": "Mega Maxi", - "icon": "./assets/data/nsi/logos/megamaxi-b83687.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megamaxi-b83687.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490863,7 +491224,7 @@ }, { "question": "MEGA Soriana", - "icon": "./assets/data/nsi/logos/megasoriana-9b2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/megasoriana-9b2dfb.png", "osmTags": { "and": [ "shop=supermarket", @@ -490894,7 +491255,7 @@ }, { "question": "MEGAドン・キホーテ", - "icon": "./assets/data/nsi/logos/megadonquijote-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megadonquijote-fe0970.jpg", "osmTags": { "and": [ "opening_hours=24/7", @@ -490918,7 +491279,7 @@ }, { "question": "MEGAドン・キホーテUNY", - "icon": "./assets/data/nsi/logos/megadonquijoteuny-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megadonquijoteuny-fe0970.jpg", "osmTags": { "and": [ "opening_hours=24/7", @@ -490946,7 +491307,7 @@ }, { "question": "Mego", - "icon": "./assets/data/nsi/logos/mego-858077.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mego-858077.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490962,7 +491323,7 @@ }, { "question": "Meijer", - "icon": "./assets/data/nsi/logos/meijer-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meijer-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -490978,7 +491339,7 @@ }, { "question": "mein real", - "icon": "./assets/data/nsi/logos/meinreal-0a839e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/meinreal-0a839e.svg", "osmTags": { "and": [ "shop=supermarket", @@ -490994,7 +491355,7 @@ }, { "question": "Melcom", - "icon": "./assets/data/nsi/logos/melcom-bfc6b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/melcom-bfc6b6.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491010,7 +491371,7 @@ }, { "question": "Meny", - "icon": "./assets/data/nsi/logos/meny-2b56aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meny-2b56aa.png", "osmTags": { "and": [ "shop=supermarket", @@ -491026,7 +491387,7 @@ }, { "question": "Mercado Extra", - "icon": "./assets/data/nsi/logos/mercadoextra-20f2a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercadoextra-20f2a8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491042,7 +491403,7 @@ }, { "question": "Mercadona", - "icon": "./assets/data/nsi/logos/mercadona-d9bffc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercadona-d9bffc.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491058,7 +491419,7 @@ }, { "question": "Mercator", - "icon": "./assets/data/nsi/logos/mercator-05bb56.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mercator-05bb56.png", "osmTags": { "and": [ "shop=supermarket", @@ -491074,7 +491435,7 @@ }, { "question": "Metro (Cyprus)", - "icon": "./assets/data/nsi/logos/metro-42dc97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-42dc97.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491090,7 +491451,7 @@ }, { "question": "Metro (Ontario/Quebec)", - "icon": "./assets/data/nsi/logos/metro-7dcd78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-7dcd78.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491106,7 +491467,7 @@ }, { "question": "Metro (Perú)", - "icon": "./assets/data/nsi/logos/metro-acfc90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-acfc90.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491122,7 +491483,7 @@ }, { "question": "Metro Supermarket", - "icon": "./assets/data/nsi/logos/metrosupermarket-49e134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrosupermarket-49e134.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491138,7 +491499,7 @@ }, { "question": "Meu Super", - "icon": "./assets/data/nsi/logos/meusuper-a14fce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meusuper-a14fce.png", "osmTags": { "and": [ "shop=supermarket", @@ -491154,7 +491515,7 @@ }, { "question": "Mi Bodega Aurrera", - "icon": "./assets/data/nsi/logos/mibodegaaurrera-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mibodegaaurrera-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491170,7 +491531,7 @@ }, { "question": "Migros (Europe)", - "icon": "./assets/data/nsi/logos/migros-e39709.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/migros-e39709.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491186,7 +491547,7 @@ }, { "question": "Migros (Türkiye)", - "icon": "./assets/data/nsi/logos/migros-5b5772.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/migros-5b5772.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491202,7 +491563,7 @@ }, { "question": "Mila", - "icon": "./assets/data/nsi/logos/mila-9e6a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mila-9e6a6c.png", "osmTags": { "and": [ "shop=supermarket", @@ -491218,7 +491579,7 @@ }, { "question": "Milk-Agro", - "icon": "./assets/data/nsi/logos/milkagro-4ccde8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/milkagro-4ccde8.png", "osmTags": { "and": [ "shop=supermarket", @@ -491249,7 +491610,7 @@ }, { "question": "Minipreço", - "icon": "./assets/data/nsi/logos/minipreco-a14fce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minipreco-a14fce.png", "osmTags": { "and": [ "shop=supermarket", @@ -491265,7 +491626,7 @@ }, { "question": "Mitsuwa Marketplace", - "icon": "./assets/data/nsi/logos/mitsuwamarketplace-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mitsuwamarketplace-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491283,7 +491644,7 @@ }, { "question": "Mix Markt", - "icon": "./assets/data/nsi/logos/mixmarkt-3f43e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mixmarkt-3f43e2.png", "osmTags": { "and": [ "shop=supermarket", @@ -491299,7 +491660,7 @@ }, { "question": "Mix Markt (България)", - "icon": "./assets/data/nsi/logos/mixmarkt-56b425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mixmarkt-56b425.png", "osmTags": { "and": [ "shop=supermarket", @@ -491331,7 +491692,7 @@ }, { "question": "Mokpol", - "icon": "./assets/data/nsi/logos/mokpol-9e6a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mokpol-9e6a6c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491347,7 +491708,7 @@ }, { "question": "Monoprix (France)", - "icon": "./assets/data/nsi/logos/monoprix-2a24ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monoprix-2a24ce.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491380,7 +491741,7 @@ }, { "question": "More", - "icon": "./assets/data/nsi/logos/more-9ef8f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/more-9ef8f9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491396,7 +491757,7 @@ }, { "question": "Morrisons", - "icon": "./assets/data/nsi/logos/morrisons-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morrisons-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491427,7 +491788,7 @@ }, { "question": "MPREIS", - "icon": "./assets/data/nsi/logos/mpreis-eeb4e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mpreis-eeb4e5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491457,7 +491818,7 @@ }, { "question": "Mydin", - "icon": "./assets/data/nsi/logos/mydin-80e9ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mydin-80e9ee.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491473,7 +491834,7 @@ }, { "question": "Nærbutikken", - "icon": "./assets/data/nsi/logos/naerbutikken-ed9dd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naerbutikken-ed9dd5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491503,7 +491864,7 @@ }, { "question": "nah und gut", - "icon": "./assets/data/nsi/logos/nahundgut-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nahundgut-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -491519,7 +491880,7 @@ }, { "question": "Nahkauf", - "icon": "./assets/data/nsi/logos/nahkauf-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nahkauf-0a839e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491535,7 +491896,7 @@ }, { "question": "Naivas", - "icon": "./assets/data/nsi/logos/naivas-d512c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naivas-d512c0.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491551,7 +491912,7 @@ }, { "question": "Natural Grocers", - "icon": "./assets/data/nsi/logos/naturalgrocers-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturalgrocers-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491567,7 +491928,7 @@ }, { "question": "Naturalia", - "icon": "./assets/data/nsi/logos/naturalia-c16b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturalia-c16b1c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491583,7 +491944,7 @@ }, { "question": "NaturaSì", - "icon": "./assets/data/nsi/logos/naturasi-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturasi-0cb133.jpg", "osmTags": { "and": [ "organic=only", @@ -491600,7 +491961,7 @@ }, { "question": "Nature's Basket", - "icon": "./assets/data/nsi/logos/naturesbasket-9ef8f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturesbasket-9ef8f9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491616,7 +491977,7 @@ }, { "question": "Nettó (Ísland)", - "icon": "./assets/data/nsi/logos/netto-0c58a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netto-0c58a2.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491632,7 +491993,7 @@ }, { "question": "Netto (Les Mousquetaires)", - "icon": "./assets/data/nsi/logos/netto-5dc877.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netto-5dc877.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491648,7 +492009,7 @@ }, { "question": "Netto (Salling)", - "icon": "./assets/data/nsi/logos/netto-bc67ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netto-bc67ba.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491664,7 +492025,7 @@ }, { "question": "Netto City", - "icon": "./assets/data/nsi/logos/nettocity-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nettocity-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -491680,7 +492041,7 @@ }, { "question": "Netto Marken-Discount", - "icon": "./assets/data/nsi/logos/nettomarkendiscount-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nettomarkendiscount-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -491696,7 +492057,7 @@ }, { "question": "Nettorama", - "icon": "./assets/data/nsi/logos/nettorama-5811b5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nettorama-5811b5.svg", "osmTags": { "and": [ "shop=supermarket", @@ -491712,7 +492073,7 @@ }, { "question": "New Seasons Market", - "icon": "./assets/data/nsi/logos/newseasonsmarket-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newseasonsmarket-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491728,7 +492089,7 @@ }, { "question": "New World", - "icon": "./assets/data/nsi/logos/newworld-5dc426.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newworld-5dc426.png", "osmTags": { "and": [ "shop=supermarket", @@ -491759,7 +492120,7 @@ }, { "question": "Nisa Extra", - "icon": "./assets/data/nsi/logos/nisaextra-a8278b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nisaextra-a8278b.png", "osmTags": { "and": [ "shop=supermarket", @@ -491775,7 +492136,7 @@ }, { "question": "No Frills", - "icon": "./assets/data/nsi/logos/nofrills-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nofrills-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491806,7 +492167,7 @@ }, { "question": "Norfa XL", - "icon": "./assets/data/nsi/logos/norfaxl-dfbc25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norfaxl-dfbc25.png", "osmTags": { "and": [ "shop=supermarket", @@ -491822,7 +492183,7 @@ }, { "question": "NORMA", - "icon": "./assets/data/nsi/logos/norma-c1eeeb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/norma-c1eeeb.svg", "osmTags": { "and": [ "shop=supermarket", @@ -491838,7 +492199,7 @@ }, { "question": "Northern Store", - "icon": "./assets/data/nsi/logos/northernstore-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernstore-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491854,7 +492215,7 @@ }, { "question": "Northgate Market", - "icon": "./assets/data/nsi/logos/northgatemarket-097dbf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northgatemarket-097dbf.png", "osmTags": { "and": [ "shop=supermarket", @@ -491870,7 +492231,7 @@ }, { "question": "Novus", - "icon": "./assets/data/nsi/logos/novus-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novus-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491886,7 +492247,7 @@ }, { "question": "NP", - "icon": "./assets/data/nsi/logos/np-0a839e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/np-0a839e.svg", "osmTags": { "and": [ "shop=supermarket", @@ -491902,7 +492263,7 @@ }, { "question": "NSK Trade City", - "icon": "./assets/data/nsi/logos/nsktradecity-80e9ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nsktradecity-80e9ee.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491933,7 +492294,7 @@ }, { "question": "NTUC Fairprice", - "icon": "./assets/data/nsi/logos/ntucfairprice-07d9e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntucfairprice-07d9e1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491949,7 +492310,7 @@ }, { "question": "Obs", - "icon": "./assets/data/nsi/logos/obs-ed9dd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obs-ed9dd5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -491965,7 +492326,7 @@ }, { "question": "Odin", - "icon": "./assets/data/nsi/logos/odin-5811b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/odin-5811b5.jpg", "osmTags": { "and": [ "organic=yes", @@ -491982,7 +492343,7 @@ }, { "question": "OK Foods", - "icon": "./assets/data/nsi/logos/okfoods-6d06e8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/okfoods-6d06e8.png", "osmTags": { "and": [ "shop=supermarket", @@ -492013,7 +492374,7 @@ }, { "question": "Okay", - "icon": "./assets/data/nsi/logos/okay-9f527a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okay-9f527a.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492029,7 +492390,7 @@ }, { "question": "Olímpica", - "icon": "./assets/data/nsi/logos/olimpica-271a34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/olimpica-271a34.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492045,7 +492406,7 @@ }, { "question": "Onur Market", - "icon": "./assets/data/nsi/logos/onurmarket-5b5772.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onurmarket-5b5772.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492063,7 +492424,7 @@ }, { "question": "PAK'nSAVE", - "icon": "./assets/data/nsi/logos/paknsave-5dc426.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paknsave-5dc426.png", "osmTags": { "and": [ "shop=supermarket", @@ -492079,7 +492440,7 @@ }, { "question": "Palace (Ghana)", - "icon": "./assets/data/nsi/logos/palace-bfc6b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palace-bfc6b6.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492095,7 +492456,7 @@ }, { "question": "Palí", - "icon": "./assets/data/nsi/logos/pali-ff0cfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pali-ff0cfa.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492140,7 +492501,7 @@ }, { "question": "Pão de Açúcar", - "icon": "./assets/data/nsi/logos/paodeacucar-14dbfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paodeacucar-14dbfa.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492156,7 +492517,7 @@ }, { "question": "Patel Brothers", - "icon": "./assets/data/nsi/logos/patelbrothers-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/patelbrothers-dde59d.png", "osmTags": { "and": [ "cuisine=indian", @@ -492173,7 +492534,7 @@ }, { "question": "Pavilions", - "icon": "./assets/data/nsi/logos/pavilions-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pavilions-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492189,7 +492550,7 @@ }, { "question": "PCC Community Markets", - "icon": "./assets/data/nsi/logos/pcccommunitymarket-1ee4c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pcccommunitymarket-1ee4c3.png", "osmTags": { "and": [ "shop=supermarket", @@ -492206,7 +492567,7 @@ }, { "question": "Penny", - "icon": "./assets/data/nsi/logos/penny-55dfd6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/penny-55dfd6.svg", "osmTags": { "and": [ "shop=supermarket", @@ -492222,7 +492583,7 @@ }, { "question": "Pete's Market", - "icon": "./assets/data/nsi/logos/petesmarket-5ca8e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petesmarket-5ca8e2.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492238,7 +492599,7 @@ }, { "question": "Pick 'n Save", - "icon": "./assets/data/nsi/logos/picknsave-905e35.png", + "icon": "https://data.mapcomplete.org/nsi//logos/picknsave-905e35.png", "osmTags": { "and": [ "shop=supermarket", @@ -492254,7 +492615,7 @@ }, { "question": "Pick n Pay", - "icon": "./assets/data/nsi/logos/picknpay-978c99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/picknpay-978c99.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492270,7 +492631,7 @@ }, { "question": "Pick n Pay Hyper", - "icon": "./assets/data/nsi/logos/picknpayhyper-f9f648.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/picknpayhyper-f9f648.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492286,7 +492647,7 @@ }, { "question": "Piggly Wiggly", - "icon": "./assets/data/nsi/logos/pigglywiggly-ebd18b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pigglywiggly-ebd18b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492302,7 +492663,7 @@ }, { "question": "Pingo Doce", - "icon": "./assets/data/nsi/logos/pingodoce-a14fce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pingodoce-a14fce.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492333,7 +492694,7 @@ }, { "question": "Planet Organic", - "icon": "./assets/data/nsi/logos/planetorganic-f2cb37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/planetorganic-f2cb37.jpg", "osmTags": { "and": [ "organic=only", @@ -492350,7 +492711,7 @@ }, { "question": "Plaza Vea", - "icon": "./assets/data/nsi/logos/plazavea-acfc90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plazavea-acfc90.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492366,7 +492727,7 @@ }, { "question": "Plodine", - "icon": "./assets/data/nsi/logos/plodine-f279a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/plodine-f279a1.png", "osmTags": { "and": [ "shop=supermarket", @@ -492382,7 +492743,7 @@ }, { "question": "PLUS", - "icon": "./assets/data/nsi/logos/plus-5811b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/plus-5811b5.png", "osmTags": { "and": [ "shop=supermarket", @@ -492398,7 +492759,7 @@ }, { "question": "Plusfresc", - "icon": "./assets/data/nsi/logos/plusfresc-774072.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plusfresc-774072.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492414,7 +492775,7 @@ }, { "question": "Poiesz", - "icon": "./assets/data/nsi/logos/poiesz-5811b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poiesz-5811b5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492430,7 +492791,7 @@ }, { "question": "POLOmarket", - "icon": "./assets/data/nsi/logos/polomarket-9e6a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polomarket-9e6a6c.png", "osmTags": { "and": [ "shop=supermarket", @@ -492446,7 +492807,7 @@ }, { "question": "Price Chopper (Kansas City)", - "icon": "./assets/data/nsi/logos/pricechopper-8741a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pricechopper-8741a7.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492462,7 +492823,7 @@ }, { "question": "Price Chopper (New England)", - "icon": "./assets/data/nsi/logos/pricechopper-7d1b36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pricechopper-7d1b36.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492478,7 +492839,7 @@ }, { "question": "Price Rite", - "icon": "./assets/data/nsi/logos/pricerite-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pricerite-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492494,7 +492855,7 @@ }, { "question": "Primaprix", - "icon": "./assets/data/nsi/logos/primaprix-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primaprix-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492510,7 +492871,7 @@ }, { "question": "Prisma", - "icon": "./assets/data/nsi/logos/prisma-c9c76a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prisma-c9c76a.png", "osmTags": { "and": [ "shop=supermarket", @@ -492526,7 +492887,7 @@ }, { "question": "Privát Max", - "icon": "./assets/data/nsi/logos/privatmax-478515.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/privatmax-478515.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492542,7 +492903,7 @@ }, { "question": "Prix", - "icon": "./assets/data/nsi/logos/prix-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prix-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492558,7 +492919,7 @@ }, { "question": "Profi", - "icon": "./assets/data/nsi/logos/profi-8721fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/profi-8721fd.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492574,7 +492935,7 @@ }, { "question": "Profi City", - "icon": "./assets/data/nsi/logos/proficity-62a473.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/proficity-62a473.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492590,7 +492951,7 @@ }, { "question": "Profi Loco", - "icon": "./assets/data/nsi/logos/profiloco-62a473.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/profiloco-62a473.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492606,7 +492967,7 @@ }, { "question": "Profi Super", - "icon": "./assets/data/nsi/logos/profisuper-62a473.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/profisuper-62a473.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492622,7 +492983,7 @@ }, { "question": "Provigo", - "icon": "./assets/data/nsi/logos/provigo-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provigo-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492653,7 +493014,7 @@ }, { "question": "Proxy Delhaize", - "icon": "./assets/data/nsi/logos/proxydelhaize-f276cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/proxydelhaize-f276cb.png", "osmTags": { "and": [ "shop=supermarket", @@ -492669,7 +493030,7 @@ }, { "question": "Publix", - "icon": "./assets/data/nsi/logos/publix-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/publix-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -492685,16 +493046,16 @@ }, { "question": "Pueblo", - "icon": "./assets/data/nsi/logos/pueblo-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pueblo-dde59d.jpg", "osmTags": { "and": [ - "official_name=Supermercados Pueblo", "shop=supermarket", { "or": [ "brand=Pueblo", "brand:wikidata=Q7258464", - "name=Pueblo" + "name=Pueblo", + "official_name=Supermercados Pueblo" ] } ] @@ -492702,7 +493063,7 @@ }, { "question": "Puregold", - "icon": "./assets/data/nsi/logos/puregold-49e134.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/puregold-49e134.svg", "osmTags": { "and": [ "shop=supermarket", @@ -492718,7 +493079,7 @@ }, { "question": "QFC", - "icon": "./assets/data/nsi/logos/qfc-71f46e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qfc-71f46e.png", "osmTags": { "and": [ "shop=supermarket", @@ -492734,7 +493095,7 @@ }, { "question": "QuickMart", - "icon": "./assets/data/nsi/logos/quickmart-d512c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quickmart-d512c0.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492750,7 +493111,7 @@ }, { "question": "Rabba", - "icon": "./assets/data/nsi/logos/rabba-388e9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rabba-388e9d.png", "osmTags": { "and": [ "shop=supermarket", @@ -492766,7 +493127,7 @@ }, { "question": "Raley's", - "icon": "./assets/data/nsi/logos/raleys-097dbf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raleys-097dbf.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492782,7 +493143,7 @@ }, { "question": "Ralphs", - "icon": "./assets/data/nsi/logos/ralphs-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ralphs-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -492798,7 +493159,7 @@ }, { "question": "Ray's Food Place", - "icon": "./assets/data/nsi/logos/raysfoodplace-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/raysfoodplace-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -492814,7 +493175,7 @@ }, { "question": "Reál", - "icon": "./assets/data/nsi/logos/real-478515.png", + "icon": "https://data.mapcomplete.org/nsi//logos/real-478515.png", "osmTags": { "and": [ "shop=supermarket", @@ -492830,7 +493191,7 @@ }, { "question": "Real Canadian Superstore", - "icon": "./assets/data/nsi/logos/realcanadiansuperstore-76454b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/realcanadiansuperstore-76454b.png", "osmTags": { "and": [ "shop=supermarket", @@ -492876,7 +493237,7 @@ }, { "question": "Rema 1000", - "icon": "./assets/data/nsi/logos/rema1000-2b56aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rema1000-2b56aa.svg", "osmTags": { "and": [ "shop=supermarket", @@ -492892,7 +493253,7 @@ }, { "question": "REWE", - "icon": "./assets/data/nsi/logos/rewe-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rewe-0a839e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492908,7 +493269,7 @@ }, { "question": "REWE City", - "icon": "./assets/data/nsi/logos/rewecity-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rewecity-0a839e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492924,7 +493285,7 @@ }, { "question": "Ribola", - "icon": "./assets/data/nsi/logos/ribola-f279a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ribola-f279a1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -492940,7 +493301,7 @@ }, { "question": "Rimi Hyper", - "icon": "./assets/data/nsi/logos/rimihyper-45f6bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rimihyper-45f6bc.png", "osmTags": { "and": [ "shop=supermarket", @@ -492956,7 +493317,7 @@ }, { "question": "Rimi Mini", - "icon": "./assets/data/nsi/logos/rimimini-043b09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rimimini-043b09.png", "osmTags": { "and": [ "shop=supermarket", @@ -492972,7 +493333,7 @@ }, { "question": "Rimi Super", - "icon": "./assets/data/nsi/logos/rimisuper-45f6bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rimisuper-45f6bc.png", "osmTags": { "and": [ "shop=supermarket", @@ -492988,7 +493349,7 @@ }, { "question": "Ritchies", - "icon": "./assets/data/nsi/logos/ritchies-c254c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ritchies-c254c9.png", "osmTags": { "and": [ "shop=supermarket", @@ -493004,7 +493365,7 @@ }, { "question": "Robinsons Supermarket", - "icon": "./assets/data/nsi/logos/robinsonssupermarket-49e134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robinsonssupermarket-49e134.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493020,7 +493381,7 @@ }, { "question": "Roda", - "icon": "./assets/data/nsi/logos/roda-b83687.png", + "icon": "https://data.mapcomplete.org/nsi//logos/roda-b83687.png", "osmTags": { "and": [ "shop=supermarket", @@ -493041,7 +493402,7 @@ }, { "question": "Rosauers", - "icon": "./assets/data/nsi/logos/rosauers-e2c16a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rosauers-e2c16a.png", "osmTags": { "and": [ "shop=supermarket", @@ -493057,7 +493418,7 @@ }, { "question": "Rouses", - "icon": "./assets/data/nsi/logos/rouses-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rouses-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493073,7 +493434,7 @@ }, { "question": "Ruler Foods", - "icon": "./assets/data/nsi/logos/rulerfoods-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rulerfoods-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493089,7 +493450,7 @@ }, { "question": "S-market", - "icon": "./assets/data/nsi/logos/smarket-46d3b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/smarket-46d3b7.svg", "osmTags": { "and": [ "shop=supermarket", @@ -493105,7 +493466,7 @@ }, { "question": "S-Mart", - "icon": "./assets/data/nsi/logos/smart-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smart-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493121,7 +493482,7 @@ }, { "question": "Safeway (Canada)", - "icon": "./assets/data/nsi/logos/safeway-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safeway-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493137,7 +493498,7 @@ }, { "question": "Safeway (USA)", - "icon": "./assets/data/nsi/logos/safeway-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safeway-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493153,7 +493514,7 @@ }, { "question": "Sainsbury's", - "icon": "./assets/data/nsi/logos/sainsburys-a8278b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sainsburys-a8278b.png", "osmTags": { "and": [ "shop=supermarket", @@ -493169,7 +493530,7 @@ }, { "question": "Santa Isabel", - "icon": "./assets/data/nsi/logos/santaisabel-d25066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santaisabel-d25066.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493185,7 +493546,7 @@ }, { "question": "SAS", - "icon": "./assets/data/nsi/logos/sas-da616d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sas-da616d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493207,7 +493568,7 @@ }, { "question": "Satoriz", - "icon": "./assets/data/nsi/logos/satoriz-94a8a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/satoriz-94a8a9.jpg", "osmTags": { "and": [ "organic=only", @@ -493224,7 +493585,7 @@ }, { "question": "Save Mart", - "icon": "./assets/data/nsi/logos/savemart-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/savemart-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -493240,7 +493601,7 @@ }, { "question": "Save-A-Lot", - "icon": "./assets/data/nsi/logos/savealot-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/savealot-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493256,7 +493617,7 @@ }, { "question": "Save-On-Foods", - "icon": "./assets/data/nsi/logos/saveonfoods-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saveonfoods-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493287,7 +493648,7 @@ }, { "question": "SaveMor", - "icon": "./assets/data/nsi/logos/savemor-f9f648.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/savemor-f9f648.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493331,7 +493692,7 @@ }, { "question": "Scheck-In Center", - "icon": "./assets/data/nsi/logos/scheckincenter-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scheckincenter-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -493348,7 +493709,7 @@ }, { "question": "Schnucks", - "icon": "./assets/data/nsi/logos/schnucks-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schnucks-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493364,7 +493725,7 @@ }, { "question": "Scotmid", - "icon": "./assets/data/nsi/logos/scotmid-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scotmid-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493380,7 +493741,7 @@ }, { "question": "Seafood City", - "icon": "./assets/data/nsi/logos/seafoodcity-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seafoodcity-dde59d.jpg", "osmTags": { "and": [ "cuisine=asian", @@ -493397,7 +493758,7 @@ }, { "question": "Selecto Chedraui", - "icon": "./assets/data/nsi/logos/selectochedraui-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selectochedraui-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493413,7 +493774,7 @@ }, { "question": "Selver", - "icon": "./assets/data/nsi/logos/selver-e21b3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selver-e21b3b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493429,7 +493790,7 @@ }, { "question": "SF Supermarket", - "icon": "./assets/data/nsi/logos/sfsupermarket-7c1bf0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sfsupermarket-7c1bf0.png", "osmTags": { "and": [ "cuisine=asian", @@ -493449,7 +493810,7 @@ }, { "question": "Shaw's", - "icon": "./assets/data/nsi/logos/shaws-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shaws-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493480,7 +493841,7 @@ }, { "question": "Shoppers Food & Pharmacy", - "icon": "./assets/data/nsi/logos/shoppersfoodandpharmacy-44c553.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoppersfoodandpharmacy-44c553.png", "osmTags": { "and": [ "shop=supermarket", @@ -493496,7 +493857,7 @@ }, { "question": "Shoprite (Africa)", - "icon": "./assets/data/nsi/logos/shoprite-502f12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoprite-502f12.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493512,7 +493873,7 @@ }, { "question": "Shoprite (Isle of Man)", - "icon": "./assets/data/nsi/logos/shoprite-46096d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoprite-46096d.png", "osmTags": { "and": [ "shop=supermarket", @@ -493543,7 +493904,7 @@ }, { "question": "ShopRite (USA)", - "icon": "./assets/data/nsi/logos/shoprite-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shoprite-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493559,7 +493920,7 @@ }, { "question": "Shopwise", - "icon": "./assets/data/nsi/logos/shopwise-49e134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shopwise-49e134.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493575,7 +493936,7 @@ }, { "question": "Shufersal", - "icon": "./assets/data/nsi/logos/shufersal-6b65f1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shufersal-6b65f1.svg", "osmTags": { "and": [ "shop=supermarket", @@ -493594,7 +493955,7 @@ }, { "question": "Shwapno", - "icon": "./assets/data/nsi/logos/shwapno-e71fe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shwapno-e71fe7.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493610,7 +493971,7 @@ }, { "question": "Sì con te", - "icon": "./assets/data/nsi/logos/siconte-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/siconte-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -493626,7 +493987,7 @@ }, { "question": "Sigma", - "icon": "./assets/data/nsi/logos/sigma-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sigma-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493642,7 +494003,7 @@ }, { "question": "Sisa", - "icon": "./assets/data/nsi/logos/sisa-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sisa-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493658,7 +494019,7 @@ }, { "question": "Sky", - "icon": "./assets/data/nsi/logos/sky-46841a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sky-46841a.svg", "osmTags": { "and": [ "shop=supermarket", @@ -493674,7 +494035,7 @@ }, { "question": "SLAWEX", - "icon": "./assets/data/nsi/logos/supermarketslawex-9e6a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/supermarketslawex-9e6a6c.png", "osmTags": { "and": [ "shop=supermarket", @@ -493704,7 +494065,7 @@ }, { "question": "Smart & Final", - "icon": "./assets/data/nsi/logos/smartandfinal-3441e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smartandfinal-3441e2.png", "osmTags": { "and": [ "shop=supermarket", @@ -493720,7 +494081,7 @@ }, { "question": "Smart & Final Extra!", - "icon": "./assets/data/nsi/logos/smartandfinalextra-140857.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smartandfinalextra-140857.png", "osmTags": { "and": [ "shop=supermarket", @@ -493736,7 +494097,7 @@ }, { "question": "Smatch", - "icon": "./assets/data/nsi/logos/smatch-f276cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smatch-f276cb.png", "osmTags": { "and": [ "shop=supermarket", @@ -493752,16 +494113,16 @@ }, { "question": "Smith's", - "icon": "./assets/data/nsi/logos/smiths-166dbe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smiths-166dbe.png", "osmTags": { "and": [ - "official_name=Smith's Food and Drug", "shop=supermarket", { "or": [ "brand=Smith's", "brand:wikidata=Q7544856", - "name=Smith's" + "name=Smith's", + "official_name=Smith's Food and Drug" ] } ] @@ -493769,7 +494130,7 @@ }, { "question": "Sobeys", - "icon": "./assets/data/nsi/logos/sobeys-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sobeys-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493785,7 +494146,7 @@ }, { "question": "Şok", - "icon": "./assets/data/nsi/logos/sok-5b5772.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sok-5b5772.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493801,7 +494162,7 @@ }, { "question": "Soriana Híper", - "icon": "./assets/data/nsi/logos/sorianahiper-9b2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sorianahiper-9b2dfb.png", "osmTags": { "and": [ "shop=supermarket", @@ -493817,7 +494178,7 @@ }, { "question": "Soriana Mercado", - "icon": "./assets/data/nsi/logos/sorianamercado-9b2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sorianamercado-9b2dfb.png", "osmTags": { "and": [ "shop=supermarket", @@ -493833,7 +494194,7 @@ }, { "question": "Soriana Súper", - "icon": "./assets/data/nsi/logos/sorianasuper-9b2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sorianasuper-9b2dfb.png", "osmTags": { "and": [ "shop=supermarket", @@ -493849,7 +494210,7 @@ }, { "question": "Sorli Discau", - "icon": "./assets/data/nsi/logos/sorlidiscau-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sorlidiscau-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493865,7 +494226,7 @@ }, { "question": "Spar", - "icon": "./assets/data/nsi/logos/spar-d767cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spar-d767cd.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493881,7 +494242,7 @@ }, { "question": "Spar (Norge)", - "icon": "./assets/data/nsi/logos/spar-ed9dd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spar-ed9dd5.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493897,7 +494258,7 @@ }, { "question": "SPAR Gourmet", - "icon": "./assets/data/nsi/logos/spargourmet-1eef1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spargourmet-1eef1d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493913,7 +494274,7 @@ }, { "question": "Spazio Conad", - "icon": "./assets/data/nsi/logos/spazioconad-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spazioconad-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -493943,7 +494304,7 @@ }, { "question": "Społem", - "icon": "./assets/data/nsi/logos/spolem-9e6a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spolem-9e6a6c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493959,7 +494320,7 @@ }, { "question": "Sprouts Farmers Market", - "icon": "./assets/data/nsi/logos/sproutsfarmersmarket-dde59d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sproutsfarmersmarket-dde59d.png", "osmTags": { "and": [ "shop=supermarket", @@ -493976,7 +494337,7 @@ }, { "question": "Star Bazaar", - "icon": "./assets/data/nsi/logos/starbazaar-9ef8f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starbazaar-9ef8f9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -493992,7 +494353,7 @@ }, { "question": "Stater Bros.", - "icon": "./assets/data/nsi/logos/staterbros-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/staterbros-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494008,7 +494369,7 @@ }, { "question": "Stokrotka", - "icon": "./assets/data/nsi/logos/stokrotka-9e6a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stokrotka-9e6a6c.png", "osmTags": { "and": [ "shop=supermarket", @@ -494024,7 +494385,7 @@ }, { "question": "Stokrotka Market", - "icon": "./assets/data/nsi/logos/stokrotkamarket-9e6a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stokrotkamarket-9e6a6c.png", "osmTags": { "and": [ "shop=supermarket", @@ -494040,7 +494401,7 @@ }, { "question": "Stokrotka Optima", - "icon": "./assets/data/nsi/logos/stokrotkaoptima-9e6a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stokrotkaoptima-9e6a6c.png", "osmTags": { "and": [ "shop=supermarket", @@ -494056,7 +494417,7 @@ }, { "question": "Stop & Shop", - "icon": "./assets/data/nsi/logos/stopandshop-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stopandshop-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494072,7 +494433,7 @@ }, { "question": "Strack & Van Til", - "icon": "./assets/data/nsi/logos/strackandvantil-972b32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/strackandvantil-972b32.png", "osmTags": { "and": [ "shop=supermarket", @@ -494088,7 +494449,7 @@ }, { "question": "Suma", - "icon": "./assets/data/nsi/logos/suma-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suma-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494104,16 +494465,16 @@ }, { "question": "Supabarn", - "icon": "./assets/data/nsi/logos/supabarn-c254c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supabarn-c254c9.jpg", "osmTags": { "and": [ - "official_name=Supabarn Supermarkets", "shop=supermarket", { "or": [ "brand=Supabarn", "brand:wikidata=Q7641883", - "name=Supabarn" + "name=Supabarn", + "official_name=Supabarn Supermarkets" ] } ] @@ -494121,7 +494482,7 @@ }, { "question": "Supeco (España)", - "icon": "./assets/data/nsi/logos/supeco-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supeco-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494137,7 +494498,7 @@ }, { "question": "Supeco (France)", - "icon": "./assets/data/nsi/logos/supeco-94a8a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/supeco-94a8a9.png", "osmTags": { "and": [ "shop=supermarket", @@ -494153,7 +494514,7 @@ }, { "question": "Supeco (România)", - "icon": "./assets/data/nsi/logos/supeco-62a473.png", + "icon": "https://data.mapcomplete.org/nsi//logos/supeco-62a473.png", "osmTags": { "and": [ "shop=supermarket", @@ -494197,7 +494558,7 @@ }, { "question": "Super C", - "icon": "./assets/data/nsi/logos/superc-986a24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/superc-986a24.png", "osmTags": { "and": [ "shop=supermarket", @@ -494213,7 +494574,7 @@ }, { "question": "Super Che", - "icon": "./assets/data/nsi/logos/superche-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superche-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494229,7 +494590,7 @@ }, { "question": "Super Chedraui", - "icon": "./assets/data/nsi/logos/superchedraui-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superchedraui-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494260,7 +494621,7 @@ }, { "question": "Super H Mart", - "icon": "./assets/data/nsi/logos/superhmart-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superhmart-dde59d.jpg", "osmTags": { "and": [ "cuisine=asian", @@ -494277,7 +494638,7 @@ }, { "question": "Super Indo", - "icon": "./assets/data/nsi/logos/superindo-9b33de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superindo-9b33de.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494293,7 +494654,7 @@ }, { "question": "Super Metro", - "icon": "./assets/data/nsi/logos/supermetro-49e134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supermetro-49e134.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494309,7 +494670,7 @@ }, { "question": "Super One Foods", - "icon": "./assets/data/nsi/logos/superonefoods-a7e51b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/superonefoods-a7e51b.png", "osmTags": { "and": [ "shop=supermarket", @@ -494325,7 +494686,7 @@ }, { "question": "Super Selecto Chedraui", - "icon": "./assets/data/nsi/logos/superselectochedraui-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superselectochedraui-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494341,7 +494702,7 @@ }, { "question": "Super U", - "icon": "./assets/data/nsi/logos/superu-c16b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superu-c16b1c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494357,7 +494718,7 @@ }, { "question": "Super Vero", - "icon": "./assets/data/nsi/logos/supervero-b83687.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supervero-b83687.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494375,7 +494736,7 @@ }, { "question": "Superama", - "icon": "./assets/data/nsi/logos/superama-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superama-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494391,7 +494752,7 @@ }, { "question": "SuperBioMarkt", - "icon": "./assets/data/nsi/logos/superbiomarkt-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superbiomarkt-0a839e.jpg", "osmTags": { "and": [ "organic=only", @@ -494408,7 +494769,7 @@ }, { "question": "SuperBrugsen", - "icon": "./assets/data/nsi/logos/superbrugsen-072052.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superbrugsen-072052.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494424,7 +494785,7 @@ }, { "question": "Supercito Chedraui", - "icon": "./assets/data/nsi/logos/supercitochedraui-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supercitochedraui-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494440,7 +494801,7 @@ }, { "question": "Superconti", - "icon": "./assets/data/nsi/logos/superconti-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superconti-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494456,7 +494817,7 @@ }, { "question": "Supercor", - "icon": "./assets/data/nsi/logos/supercor-d9bffc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/supercor-d9bffc.png", "osmTags": { "and": [ "shop=supermarket", @@ -494472,7 +494833,7 @@ }, { "question": "SuperDino", - "icon": "./assets/data/nsi/logos/superdino-0513f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superdino-0513f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494489,7 +494850,7 @@ }, { "question": "Superior Grocers", - "icon": "./assets/data/nsi/logos/superiorgrocers-097dbf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superiorgrocers-097dbf.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494505,7 +494866,7 @@ }, { "question": "SuperISSSTE", - "icon": "./assets/data/nsi/logos/superissste-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superissste-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494521,7 +494882,7 @@ }, { "question": "Supermarket (Brasil)", - "icon": "./assets/data/nsi/logos/supermarket-20f2a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supermarket-20f2a8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494552,7 +494913,7 @@ }, { "question": "Supermercados BH", - "icon": "./assets/data/nsi/logos/supermercadosbh-20f2a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supermercadosbh-20f2a8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494568,7 +494929,7 @@ }, { "question": "Supermercados MAS", - "icon": "./assets/data/nsi/logos/supermercadosmas-0513f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/supermercadosmas-0513f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -494584,7 +494945,7 @@ }, { "question": "Supermercati Zazzeron", - "icon": "./assets/data/nsi/logos/supermercatizazzeron-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/supermercatizazzeron-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -494600,7 +494961,7 @@ }, { "question": "Supersol", - "icon": "./assets/data/nsi/logos/supersol-0a1807.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supersol-0a1807.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494616,7 +494977,7 @@ }, { "question": "Superspar", - "icon": "./assets/data/nsi/logos/superspar-5f0ef1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superspar-5f0ef1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494632,7 +494993,7 @@ }, { "question": "SuperValu (Ireland/UK)", - "icon": "./assets/data/nsi/logos/supervalu-b7087f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/supervalu-b7087f.svg", "osmTags": { "and": [ "shop=supermarket", @@ -494648,7 +495009,7 @@ }, { "question": "SuperValue (New Zealand)", - "icon": "./assets/data/nsi/logos/supervalue-5dc426.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/supervalue-5dc426.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494679,7 +495040,7 @@ }, { "question": "Sutterlüty", - "icon": "./assets/data/nsi/logos/sutterluty-1eef1d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sutterluty-1eef1d.svg", "osmTags": { "and": [ "shop=supermarket", @@ -494695,7 +495056,7 @@ }, { "question": "Target (USA)", - "icon": "./assets/data/nsi/logos/target-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/target-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494711,7 +495072,7 @@ }, { "question": "Taste", - "icon": "./assets/data/nsi/logos/taste-745f9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taste-745f9c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494735,7 +495096,7 @@ }, { "question": "tegut", - "icon": "./assets/data/nsi/logos/tegut-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tegut-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -494751,7 +495112,7 @@ }, { "question": "Tempo (Slovensko)", - "icon": "./assets/data/nsi/logos/tempo-4ccde8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tempo-4ccde8.png", "osmTags": { "and": [ "shop=supermarket", @@ -494769,7 +495130,7 @@ }, { "question": "Terno", - "icon": "./assets/data/nsi/logos/terno-4ccde8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/terno-4ccde8.png", "osmTags": { "and": [ "shop=supermarket", @@ -494785,7 +495146,7 @@ }, { "question": "Tesco", - "icon": "./assets/data/nsi/logos/tesco-986a24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tesco-986a24.png", "osmTags": { "and": [ "shop=supermarket", @@ -494801,7 +495162,7 @@ }, { "question": "Tesco Extra", - "icon": "./assets/data/nsi/logos/tescoextra-1e2c58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tescoextra-1e2c58.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494832,7 +495193,7 @@ }, { "question": "TF Value-Mart", - "icon": "./assets/data/nsi/logos/tfvaluemart-80e9ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tfvaluemart-80e9ee.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494848,7 +495209,7 @@ }, { "question": "The Food Warehouse", - "icon": "./assets/data/nsi/logos/thefoodwarehouse-a8278b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thefoodwarehouse-a8278b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494864,7 +495225,7 @@ }, { "question": "The Fresh Market", - "icon": "./assets/data/nsi/logos/thefreshmarket-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thefreshmarket-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494880,7 +495241,7 @@ }, { "question": "The Grocery Outlet", - "icon": "./assets/data/nsi/logos/thegroceryoutlet-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegroceryoutlet-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494896,7 +495257,7 @@ }, { "question": "The Source Bulk Foods", - "icon": "./assets/data/nsi/logos/thesourcebulkfoods-ff3d2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thesourcebulkfoods-ff3d2b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494913,7 +495274,7 @@ }, { "question": "The Store", - "icon": "./assets/data/nsi/logos/thestore-80e9ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thestore-80e9ee.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494929,7 +495290,7 @@ }, { "question": "Thrash! Траш!", - "icon": "./assets/data/nsi/logos/thrash-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thrash-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494963,7 +495324,7 @@ }, { "question": "Tigre", - "icon": "./assets/data/nsi/logos/tigre-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigre-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -494994,7 +495355,7 @@ }, { "question": "Tigros", - "icon": "./assets/data/nsi/logos/tigros-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigros-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495010,7 +495371,7 @@ }, { "question": "Times Supermarkets", - "icon": "./assets/data/nsi/logos/timessupermarkets-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timessupermarkets-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495026,7 +495387,7 @@ }, { "question": "Todis", - "icon": "./assets/data/nsi/logos/todis-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/todis-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495042,7 +495403,7 @@ }, { "question": "Tom Thumb", - "icon": "./assets/data/nsi/logos/tomthumb-a6c312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tomthumb-a6c312.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495058,7 +495419,7 @@ }, { "question": "Tommy", - "icon": "./assets/data/nsi/logos/tommy-f279a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tommy-f279a1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495074,7 +495435,7 @@ }, { "question": "Tony's Fresh Market", - "icon": "./assets/data/nsi/logos/tonysfreshmarket-5ca8e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tonysfreshmarket-5ca8e2.png", "osmTags": { "and": [ "shop=supermarket", @@ -495090,7 +495451,7 @@ }, { "question": "Top Market", - "icon": "./assets/data/nsi/logos/topmarket-9e6a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/topmarket-9e6a6c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495106,7 +495467,7 @@ }, { "question": "Topaz", - "icon": "./assets/data/nsi/logos/topaz-9e6a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topaz-9e6a6c.png", "osmTags": { "and": [ "shop=supermarket", @@ -495122,7 +495483,7 @@ }, { "question": "Tops (Thailand)", - "icon": "./assets/data/nsi/logos/tops-fd4d8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tops-fd4d8d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495142,16 +495503,16 @@ }, { "question": "Tops (USA)", - "icon": "./assets/data/nsi/logos/tops-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tops-dde59d.jpg", "osmTags": { "and": [ - "official_name=Tops Friendly Markets", "shop=supermarket", { "or": [ "brand=Tops", "brand:wikidata=Q7825137", - "name=Tops" + "name=Tops", + "official_name=Tops Friendly Markets" ] } ] @@ -495159,7 +495520,7 @@ }, { "question": "Tottus", - "icon": "./assets/data/nsi/logos/tottus-b9e971.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tottus-b9e971.png", "osmTags": { "and": [ "shop=supermarket", @@ -495175,7 +495536,7 @@ }, { "question": "Trader Joe's", - "icon": "./assets/data/nsi/logos/traderjoes-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/traderjoes-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495206,7 +495567,7 @@ }, { "question": "Tsiran", - "icon": "./assets/data/nsi/logos/tsiran-da616d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tsiran-da616d.png", "osmTags": { "and": [ "shop=supermarket", @@ -495228,7 +495589,7 @@ }, { "question": "Tuodì", - "icon": "./assets/data/nsi/logos/tuodi-0cb133.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tuodi-0cb133.png", "osmTags": { "and": [ "shop=supermarket", @@ -495260,7 +495621,7 @@ }, { "question": "Unes", - "icon": "./assets/data/nsi/logos/unes-0cb133.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unes-0cb133.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495290,7 +495651,7 @@ }, { "question": "Unimarc", - "icon": "./assets/data/nsi/logos/unimarc-d25066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unimarc-d25066.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495306,7 +495667,7 @@ }, { "question": "Unimarkt", - "icon": "./assets/data/nsi/logos/unimarkt-1eef1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unimarkt-1eef1d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495337,7 +495698,7 @@ }, { "question": "United Supermarkets", - "icon": "./assets/data/nsi/logos/unitedsupermarkets-a6c312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedsupermarkets-a6c312.png", "osmTags": { "and": [ "shop=supermarket", @@ -495353,7 +495714,7 @@ }, { "question": "Univerexport", - "icon": "./assets/data/nsi/logos/univerexport-b83687.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/univerexport-b83687.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495384,7 +495745,7 @@ }, { "question": "U購Select U Select", - "icon": "./assets/data/nsi/logos/uselect-745f9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uselect-745f9c.png", "osmTags": { "and": [ "shop=supermarket", @@ -495408,7 +495769,7 @@ }, { "question": "V-MARKT", - "icon": "./assets/data/nsi/logos/vmarkt-0a839e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vmarkt-0a839e.png", "osmTags": { "and": [ "shop=supermarket", @@ -495424,17 +495785,17 @@ }, { "question": "Vallarta", - "icon": "./assets/data/nsi/logos/vallarta-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vallarta-dde59d.jpg", "osmTags": { "and": [ "cuisine=latin_american", - "official_name=Vallarta Supermarkets", "shop=supermarket", { "or": [ "brand=Vallarta", "brand:wikidata=Q7911833", - "name=Vallarta" + "name=Vallarta", + "official_name=Vallarta Supermarkets" ] } ] @@ -495442,7 +495803,7 @@ }, { "question": "Valu-mart", - "icon": "./assets/data/nsi/logos/valumart-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valumart-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495458,7 +495819,7 @@ }, { "question": "Varus", - "icon": "./assets/data/nsi/logos/varus-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/varus-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495474,7 +495835,7 @@ }, { "question": "Vea", - "icon": "./assets/data/nsi/logos/vea-0d2b84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vea-0d2b84.png", "osmTags": { "and": [ "shop=supermarket", @@ -495525,7 +495886,7 @@ }, { "question": "Vishal Mega Mart", - "icon": "./assets/data/nsi/logos/vishalmegamart-9ef8f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vishalmegamart-9ef8f9.png", "osmTags": { "and": [ "shop=supermarket", @@ -495541,7 +495902,7 @@ }, { "question": "VOI", - "icon": "./assets/data/nsi/logos/voi-36e991.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/voi-36e991.svg", "osmTags": { "and": [ "shop=supermarket", @@ -495558,7 +495919,7 @@ }, { "question": "Volg", - "icon": "./assets/data/nsi/logos/volg-704edb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/volg-704edb.svg", "osmTags": { "and": [ "shop=supermarket", @@ -495574,7 +495935,7 @@ }, { "question": "Vomar", - "icon": "./assets/data/nsi/logos/vomar-5811b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vomar-5811b5.png", "osmTags": { "and": [ "shop=supermarket", @@ -495590,7 +495951,7 @@ }, { "question": "Vons", - "icon": "./assets/data/nsi/logos/vons-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vons-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495606,16 +495967,16 @@ }, { "question": "Waitrose", - "icon": "./assets/data/nsi/logos/waitrose-dd6d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waitrose-dd6d3a.jpg", "osmTags": { "and": [ - "official_name=Waitrose & Partners", "shop=supermarket", { "or": [ "brand=Waitrose", "brand:wikidata=Q771734", - "name=Waitrose" + "name=Waitrose", + "official_name=Waitrose & Partners" ] } ] @@ -495623,7 +495984,7 @@ }, { "question": "Walmart Express", - "icon": "./assets/data/nsi/logos/walmartexpress-9b2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartexpress-9b2dfb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495639,7 +496000,7 @@ }, { "question": "Walmart Neighborhood Market", - "icon": "./assets/data/nsi/logos/walmartneighborhoodmarket-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartneighborhoodmarket-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495655,7 +496016,7 @@ }, { "question": "Walmart Supercenter", - "icon": "./assets/data/nsi/logos/walmartsupercenter-757af0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartsupercenter-757af0.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495671,7 +496032,7 @@ }, { "question": "Walmart Supercentre", - "icon": "./assets/data/nsi/logos/walmartsupercentre-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmartsupercentre-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495687,7 +496048,7 @@ }, { "question": "Wasgau", - "icon": "./assets/data/nsi/logos/wasgau-0a839e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wasgau-0a839e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495703,7 +496064,7 @@ }, { "question": "Wegmans", - "icon": "./assets/data/nsi/logos/wegmans-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wegmans-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495719,16 +496080,16 @@ }, { "question": "Weis", - "icon": "./assets/data/nsi/logos/weis-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weis-dde59d.jpg", "osmTags": { "and": [ - "official_name=Weis Markets", "shop=supermarket", { "or": [ "brand=Weis", "brand:wikidata=Q7980370", - "name=Weis" + "name=Weis", + "official_name=Weis Markets" ] } ] @@ -495736,7 +496097,7 @@ }, { "question": "Whole Foods Market", - "icon": "./assets/data/nsi/logos/wholefoodsmarket-90050a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wholefoodsmarket-90050a.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495752,7 +496113,7 @@ }, { "question": "Wholesale Club", - "icon": "./assets/data/nsi/logos/wholesaleclub-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wholesaleclub-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495768,7 +496129,7 @@ }, { "question": "Willys", - "icon": "./assets/data/nsi/logos/willys-c57afb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/willys-c57afb.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495784,7 +496145,7 @@ }, { "question": "WinCo Foods", - "icon": "./assets/data/nsi/logos/wincofoods-dde59d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wincofoods-dde59d.svg", "osmTags": { "and": [ "shop=supermarket", @@ -495800,7 +496161,7 @@ }, { "question": "WinMart", - "icon": "./assets/data/nsi/logos/winmart-45db57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winmart-45db57.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495816,7 +496177,7 @@ }, { "question": "Winn-Dixie", - "icon": "./assets/data/nsi/logos/winndixie-dde59d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winndixie-dde59d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495832,7 +496193,7 @@ }, { "question": "Woodman's Markets", - "icon": "./assets/data/nsi/logos/woodmansmarkets-5dc7ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woodmansmarkets-5dc7ba.png", "osmTags": { "and": [ "shop=supermarket", @@ -495848,7 +496209,7 @@ }, { "question": "Woolworths (Australia)", - "icon": "./assets/data/nsi/logos/woolworths-c254c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woolworths-c254c9.png", "osmTags": { "and": [ "shop=supermarket", @@ -495866,7 +496227,7 @@ }, { "question": "Woolworths (New Zealand)", - "icon": "./assets/data/nsi/logos/woolworths-5dc426.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woolworths-5dc426.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495882,7 +496243,7 @@ }, { "question": "Woolworths Metro (Australia)", - "icon": "./assets/data/nsi/logos/woolworthsmetro-c254c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/woolworthsmetro-c254c9.png", "osmTags": { "and": [ "shop=supermarket", @@ -495900,7 +496261,7 @@ }, { "question": "Woolworths Metro (New Zealand)", - "icon": "./assets/data/nsi/logos/woolworthsmetro-5dc426.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woolworthsmetro-5dc426.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495930,7 +496291,7 @@ }, { "question": "Yeme", - "icon": "./assets/data/nsi/logos/yeme-4ccde8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yeme-4ccde8.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495946,7 +496307,7 @@ }, { "question": "Yerevan City", - "icon": "./assets/data/nsi/logos/yerevancity-da616d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yerevancity-da616d.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495968,7 +496329,7 @@ }, { "question": "Yogya", - "icon": "./assets/data/nsi/logos/yogya-9b33de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yogya-9b33de.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -495984,7 +496345,7 @@ }, { "question": "Your Independent Grocer", - "icon": "./assets/data/nsi/logos/yourindependentgrocer-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yourindependentgrocer-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496000,7 +496361,7 @@ }, { "question": "Zehrs", - "icon": "./assets/data/nsi/logos/zehrs-76454b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zehrs-76454b.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496037,7 +496398,7 @@ }, { "question": "ΑΒ Βασιλόπουλος", - "icon": "./assets/data/nsi/logos/abvassilopoulos-37450e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abvassilopoulos-37450e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496057,7 +496418,7 @@ }, { "question": "Γαλαξίας", - "icon": "./assets/data/nsi/logos/galaxias-37450e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/galaxias-37450e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496077,7 +496438,7 @@ }, { "question": "Κρητικός", - "icon": "./assets/data/nsi/logos/kritikos-37450e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kritikos-37450e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496097,7 +496458,7 @@ }, { "question": "Μασούτης", - "icon": "./assets/data/nsi/logos/masoutis-37450e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/masoutis-37450e.png", "osmTags": { "and": [ "shop=supermarket", @@ -496117,7 +496478,7 @@ }, { "question": "Σκλαβενίτης", - "icon": "./assets/data/nsi/logos/sklavenitis-40667a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sklavenitis-40667a.svg", "osmTags": { "and": [ "shop=supermarket", @@ -496185,7 +496546,7 @@ }, { "question": "Азбука Вкуса", - "icon": "./assets/data/nsi/logos/azbukavkusa-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/azbukavkusa-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496233,7 +496594,7 @@ }, { "question": "Атак", - "icon": "./assets/data/nsi/logos/atac-d5eaac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atac-d5eaac.png", "osmTags": { "and": [ "shop=supermarket", @@ -496253,7 +496614,7 @@ }, { "question": "АТБ-Маркет", - "icon": "./assets/data/nsi/logos/atbmarket-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atbmarket-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496273,7 +496634,7 @@ }, { "question": "Ашан", - "icon": "./assets/data/nsi/logos/auchan-d5eaac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchan-d5eaac.png", "osmTags": { "and": [ "shop=supermarket", @@ -496293,7 +496654,7 @@ }, { "question": "Ашан (Україна)", - "icon": "./assets/data/nsi/logos/auchan-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/auchan-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496358,7 +496719,7 @@ }, { "question": "Близенько", - "icon": "./assets/data/nsi/logos/106d49-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/106d49-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496374,7 +496735,7 @@ }, { "question": "Булмаг", - "icon": "./assets/data/nsi/logos/bulmag-56b425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bulmag-56b425.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496394,7 +496755,7 @@ }, { "question": "Бурлекс", - "icon": "./assets/data/nsi/logos/1b9c5d-56b425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1b9c5d-56b425.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496410,7 +496771,7 @@ }, { "question": "Велмарт", - "icon": "./assets/data/nsi/logos/62e010-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/62e010-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496426,7 +496787,7 @@ }, { "question": "Верный", - "icon": "./assets/data/nsi/logos/5a1923-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/5a1923-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496442,7 +496803,7 @@ }, { "question": "Виктория", - "icon": "./assets/data/nsi/logos/9034b8-d5eaac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/9034b8-d5eaac.png", "osmTags": { "and": [ "shop=supermarket", @@ -496458,7 +496819,7 @@ }, { "question": "Виталюр", - "icon": "./assets/data/nsi/logos/ccbce1-a384d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ccbce1-a384d0.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496474,7 +496835,7 @@ }, { "question": "Вопак", - "icon": "./assets/data/nsi/logos/vopak-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vopak-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496508,7 +496869,7 @@ }, { "question": "Гроздь", - "icon": "./assets/data/nsi/logos/44aeb3-4736ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/44aeb3-4736ec.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496524,7 +496885,7 @@ }, { "question": "Гросеров", - "icon": "./assets/data/nsi/logos/groserov-d5eaac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/groserov-d5eaac.png", "osmTags": { "and": [ "shop=supermarket", @@ -496544,7 +496905,7 @@ }, { "question": "Гулливер", - "icon": "./assets/data/nsi/logos/40c23e-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/40c23e-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496579,7 +496940,7 @@ }, { "question": "Дар", - "icon": "./assets/data/nsi/logos/dar-56b425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dar-56b425.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496614,7 +496975,7 @@ }, { "question": "Дикси", - "icon": "./assets/data/nsi/logos/dixy-d5eaac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dixy-d5eaac.png", "osmTags": { "and": [ "shop=supermarket", @@ -496632,7 +496993,7 @@ }, { "question": "ДИС", - "icon": "./assets/data/nsi/logos/dis-b83687.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dis-b83687.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496664,7 +497025,7 @@ }, { "question": "Евроопт", - "icon": "./assets/data/nsi/logos/euroopt-a384d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/euroopt-a384d0.png", "osmTags": { "and": [ "shop=supermarket", @@ -496714,7 +497075,7 @@ }, { "question": "ЕКО маркет", - "icon": "./assets/data/nsi/logos/72c317-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/72c317-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496749,7 +497110,7 @@ }, { "question": "Квартал", - "icon": "./assets/data/nsi/logos/212655-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/212655-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496765,7 +497126,7 @@ }, { "question": "Кировский", - "icon": "./assets/data/nsi/logos/87ac35-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/87ac35-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496781,7 +497142,7 @@ }, { "question": "Командор", - "icon": "./assets/data/nsi/logos/komandor-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/komandor-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496799,7 +497160,7 @@ }, { "question": "Копійка", - "icon": "./assets/data/nsi/logos/e23c32-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/e23c32-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496815,7 +497176,7 @@ }, { "question": "Красный Яр", - "icon": "./assets/data/nsi/logos/krasnyyar-d5eaac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/krasnyyar-d5eaac.svg", "osmTags": { "and": [ "shop=supermarket", @@ -496835,7 +497196,7 @@ }, { "question": "Лента", - "icon": "./assets/data/nsi/logos/lenta-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lenta-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496855,7 +497216,7 @@ }, { "question": "Лидл (България)", - "icon": "./assets/data/nsi/logos/lidl-56b425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidl-56b425.png", "osmTags": { "and": [ "shop=supermarket", @@ -496873,7 +497234,7 @@ }, { "question": "Лидл (Србија)", - "icon": "./assets/data/nsi/logos/lidl-b83687.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidl-b83687.png", "osmTags": { "and": [ "shop=supermarket", @@ -496891,7 +497252,7 @@ }, { "question": "ЛотОК", - "icon": "./assets/data/nsi/logos/587825-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/587825-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496907,7 +497268,7 @@ }, { "question": "Магнит (России)", - "icon": "./assets/data/nsi/logos/magnit-d5eaac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/magnit-d5eaac.svg", "osmTags": { "and": [ "shop=supermarket", @@ -496969,7 +497330,7 @@ }, { "question": "Мария-Ра", - "icon": "./assets/data/nsi/logos/mariara-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mariara-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -496989,7 +497350,7 @@ }, { "question": "Маркетопт", - "icon": "./assets/data/nsi/logos/f624e9-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/f624e9-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497033,7 +497394,7 @@ }, { "question": "Монетка", - "icon": "./assets/data/nsi/logos/monetka-d5eaac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/monetka-d5eaac.png", "osmTags": { "and": [ "shop=supermarket", @@ -497053,7 +497414,7 @@ }, { "question": "Наш Край", - "icon": "./assets/data/nsi/logos/17c1f7-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/17c1f7-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497069,7 +497430,7 @@ }, { "question": "О’КЕЙ", - "icon": "./assets/data/nsi/logos/okey-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okey-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497106,7 +497467,7 @@ }, { "question": "Покупочка", - "icon": "./assets/data/nsi/logos/1019ea-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1019ea-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497141,7 +497502,7 @@ }, { "question": "Посад", - "icon": "./assets/data/nsi/logos/fd13e6-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fd13e6-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497190,7 +497551,7 @@ }, { "question": "Радеж", - "icon": "./assets/data/nsi/logos/radezh-d5eaac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radezh-d5eaac.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497259,7 +497620,7 @@ }, { "question": "Рукавичка", - "icon": "./assets/data/nsi/logos/rukavychka-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rukavychka-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497339,7 +497700,7 @@ }, { "question": "Сільпо", - "icon": "./assets/data/nsi/logos/silpo-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/silpo-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497377,7 +497738,7 @@ }, { "question": "Т-Маркет", - "icon": "./assets/data/nsi/logos/tmarket-56b425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tmarket-56b425.png", "osmTags": { "and": [ "shop=supermarket", @@ -497395,7 +497756,7 @@ }, { "question": "Таврія В", - "icon": "./assets/data/nsi/logos/tavriav-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tavriav-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497417,7 +497778,7 @@ }, { "question": "Фантастико", - "icon": "./assets/data/nsi/logos/fantastiko-56b425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fantastiko-56b425.png", "osmTags": { "and": [ "shop=supermarket", @@ -497435,7 +497796,7 @@ }, { "question": "Фора", - "icon": "./assets/data/nsi/logos/fora-94881c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fora-94881c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497555,7 +497916,7 @@ }, { "question": "აგროჰაბი", - "icon": "./assets/data/nsi/logos/agrohub-873b68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrohub-873b68.png", "osmTags": { "and": [ "shop=supermarket", @@ -497577,7 +497938,7 @@ }, { "question": "გუდვილი", - "icon": "./assets/data/nsi/logos/goodwill-873b68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwill-873b68.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497599,7 +497960,7 @@ }, { "question": "ვილმარტი", - "icon": "./assets/data/nsi/logos/willmart-873b68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/willmart-873b68.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497621,7 +497982,7 @@ }, { "question": "კარფური მარკეტი", - "icon": "./assets/data/nsi/logos/carrefourmarket-873b68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefourmarket-873b68.png", "osmTags": { "and": [ "shop=supermarket", @@ -497645,7 +498006,7 @@ }, { "question": "მაგნიტი", - "icon": "./assets/data/nsi/logos/2c9305-873b68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/2c9305-873b68.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497661,7 +498022,7 @@ }, { "question": "ნიკორა", - "icon": "./assets/data/nsi/logos/nikora-873b68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nikora-873b68.png", "osmTags": { "and": [ "shop=supermarket", @@ -497683,7 +498044,7 @@ }, { "question": "ორი ნაბიჯი", - "icon": "./assets/data/nsi/logos/orinabiji-873b68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orinabiji-873b68.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497703,7 +498064,7 @@ }, { "question": "სპარი", - "icon": "./assets/data/nsi/logos/spar-873b68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spar-873b68.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497723,7 +498084,7 @@ }, { "question": "ფრესკო", - "icon": "./assets/data/nsi/logos/fresco-873b68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fresco-873b68.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497818,7 +498179,7 @@ }, { "question": "יוחננוף", - "icon": "./assets/data/nsi/logos/yochananof-6b65f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yochananof-6b65f1.png", "osmTags": { "and": [ "shop=supermarket", @@ -497838,7 +498199,7 @@ }, { "question": "יינות ביתן", - "icon": "./assets/data/nsi/logos/yeinotbitan-6b65f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yeinotbitan-6b65f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497935,7 +498296,7 @@ }, { "question": "רמי לוי", - "icon": "./assets/data/nsi/logos/ramilevi-6b65f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ramilevi-6b65f1.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -497957,7 +498318,7 @@ }, { "question": "שופרסל אקספרס", - "icon": "./assets/data/nsi/logos/shufersalexpress-6b65f1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shufersalexpress-6b65f1.svg", "osmTags": { "and": [ "shop=supermarket", @@ -497976,7 +498337,7 @@ }, { "question": "שופרסל דיל", - "icon": "./assets/data/nsi/logos/shufersaldeal-6b65f1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shufersaldeal-6b65f1.svg", "osmTags": { "and": [ "shop=supermarket", @@ -497997,7 +498358,7 @@ }, { "question": "שופרסל שלי", - "icon": "./assets/data/nsi/logos/shufersalsheli-6b65f1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shufersalsheli-6b65f1.svg", "osmTags": { "and": [ "shop=supermarket", @@ -498034,7 +498395,7 @@ }, { "question": "أسواق التميمي", - "icon": "./assets/data/nsi/logos/tamimimarkets-22a530.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tamimimarkets-22a530.png", "osmTags": { "and": [ "shop=supermarket", @@ -498056,7 +498417,7 @@ }, { "question": "أسواق عبد الله العثيم", - "icon": "./assets/data/nsi/logos/abdullahalothaimmarkets-6c5d99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abdullahalothaimmarkets-6c5d99.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -498098,10 +498459,9 @@ }, { "question": "بنده", - "icon": "./assets/data/nsi/logos/panda-709c58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panda-709c58.jpg", "osmTags": { "and": [ - "official_name=شركة بنده للتجزئة", "shop=supermarket", { "or": [ @@ -498113,7 +498473,8 @@ "brand:wikidata=Q4832749", "name=بنده", "name:ar=بنده", - "name:en=Panda" + "name:en=Panda", + "official_name=شركة بنده للتجزئة" ] } ] @@ -498135,7 +498496,7 @@ }, { "question": "جانبو", - "icon": "./assets/data/nsi/logos/canbo-c29ef9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canbo-c29ef9.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -498174,7 +498535,7 @@ }, { "question": "رفاه", - "icon": "./assets/data/nsi/logos/refah-c29ef9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/refah-c29ef9.svg", "osmTags": { "and": [ "shop=supermarket", @@ -498283,7 +498644,7 @@ }, { "question": "롯데마트", - "icon": "./assets/data/nsi/logos/lottemart-12b833.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lottemart-12b833.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -498373,7 +498734,7 @@ }, { "question": "アピタ", - "icon": "./assets/data/nsi/logos/apita-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/apita-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -498393,7 +498754,7 @@ }, { "question": "イオン", - "icon": "./assets/data/nsi/logos/aeon-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeon-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -498451,7 +498812,7 @@ }, { "question": "イトーヨーカドー", - "icon": "./assets/data/nsi/logos/itoyokado-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/itoyokado-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -498471,7 +498832,7 @@ }, { "question": "いなげや", - "icon": "./assets/data/nsi/logos/inageya-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/inageya-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -498491,7 +498852,7 @@ }, { "question": "エーコープ", - "icon": "./assets/data/nsi/logos/acoop-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/acoop-fe0970.svg", "osmTags": { "and": [ "organic=only", @@ -498531,7 +498892,7 @@ }, { "question": "オークワ", - "icon": "./assets/data/nsi/logos/okuwa-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okuwa-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -498551,7 +498912,7 @@ }, { "question": "オーケーストア", - "icon": "./assets/data/nsi/logos/okstore-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/okstore-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -498571,7 +498932,7 @@ }, { "question": "オリンピック", - "icon": "./assets/data/nsi/logos/olympic-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/olympic-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -498591,7 +498952,7 @@ }, { "question": "カスミ", - "icon": "./assets/data/nsi/logos/kasumi-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kasumi-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -498611,7 +498972,7 @@ }, { "question": "キョーエイ", - "icon": "./assets/data/nsi/logos/kyoei-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kyoei-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -498631,7 +498992,7 @@ }, { "question": "グルメシティ", - "icon": "./assets/data/nsi/logos/gourmetcity-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gourmetcity-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -498651,12 +499012,9 @@ }, { "question": "コープ", - "icon": "./assets/data/nsi/logos/coop-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-fe0970.png", "osmTags": { "and": [ - "official_name=日本生活協同組合連合会", - "official_name:en=Japanese Consumers' Co-operative Union", - "official_name:ja=日本生活協同組合連合会", "shop=supermarket", { "or": [ @@ -498667,7 +499025,10 @@ "brand:wikidata=Q11508615", "name=コープ", "name:en=CO・OP", - "name:ja=コープ" + "name:ja=コープ", + "official_name=日本生活協同組合連合会", + "official_name:en=Japanese Consumers' Co-operative Union", + "official_name:ja=日本生活協同組合連合会" ] } ] @@ -498675,12 +499036,9 @@ }, { "question": "コープこう", - "icon": "./assets/data/nsi/logos/coopkobe-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopkobe-fe0970.jpg", "osmTags": { "and": [ - "official_name=生活協同組合コープこうべ", - "official_name:en=The Consumer Co-operative Kobe", - "official_name:ja=生活協同組合コープこうべ", "shop=supermarket", { "or": [ @@ -498691,7 +499049,10 @@ "brand:wikidata=Q5137453", "name=コープこう", "name:en=CO・OP Kobe", - "name:ja=コープこう" + "name:ja=コープこう", + "official_name=生活協同組合コープこうべ", + "official_name:en=The Consumer Co-operative Kobe", + "official_name:ja=生活協同組合コープこうべ" ] } ] @@ -498718,7 +499079,7 @@ }, { "question": "コモディイイダ", - "icon": "./assets/data/nsi/logos/comodiiida-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comodiiida-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -498870,7 +499231,7 @@ }, { "question": "スーパーアルプス", - "icon": "./assets/data/nsi/logos/superalps-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/superalps-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -498909,7 +499270,7 @@ }, { "question": "ダイエー", - "icon": "./assets/data/nsi/logos/daiei-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daiei-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -498967,7 +499328,7 @@ }, { "question": "ツルヤ", - "icon": "./assets/data/nsi/logos/tsuruya-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tsuruya-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -498987,7 +499348,7 @@ }, { "question": "デリシア", - "icon": "./assets/data/nsi/logos/delicia-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/delicia-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -499029,7 +499390,7 @@ }, { "question": "トライアル", - "icon": "./assets/data/nsi/logos/trial-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trial-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499068,7 +499429,7 @@ }, { "question": "ドン・キホーテUNY", - "icon": "./assets/data/nsi/logos/donquijoteuny-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donquijoteuny-fe0970.jpg", "osmTags": { "and": [ "opening_hours=24/7", @@ -499134,7 +499495,7 @@ }, { "question": "ピアゴ", - "icon": "./assets/data/nsi/logos/piago-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/piago-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -499154,7 +499515,7 @@ }, { "question": "フジ", - "icon": "./assets/data/nsi/logos/fuji-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fuji-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -499174,7 +499535,7 @@ }, { "question": "フジグラン", - "icon": "./assets/data/nsi/logos/fujigrand-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fujigrand-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -499213,7 +499574,7 @@ }, { "question": "ベイシア", - "icon": "./assets/data/nsi/logos/beisia-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/beisia-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -499271,7 +499632,7 @@ }, { "question": "まいばすけっと", - "icon": "./assets/data/nsi/logos/mybasket-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mybasket-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499291,7 +499652,7 @@ }, { "question": "マックスバリュ", - "icon": "./assets/data/nsi/logos/maxvalu-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxvalu-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -499311,7 +499672,7 @@ }, { "question": "マミーマート", - "icon": "./assets/data/nsi/logos/mammymart-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mammymart-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -499331,7 +499692,7 @@ }, { "question": "マルエツ", - "icon": "./assets/data/nsi/logos/maruetsu-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maruetsu-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499351,7 +499712,7 @@ }, { "question": "マルエツプチ", - "icon": "./assets/data/nsi/logos/maruetsupetit-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maruetsupetit-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499371,7 +499732,7 @@ }, { "question": "マルナカ", - "icon": "./assets/data/nsi/logos/marunaka-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marunaka-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -499391,7 +499752,7 @@ }, { "question": "ヤオコー", - "icon": "./assets/data/nsi/logos/yaoko-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yaoko-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499430,6 +499791,7 @@ }, { "question": "ユーパレット", + "icon": "https://data.mapcomplete.org/nsi//logos/youpalette-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -499453,7 +499815,7 @@ }, { "question": "ゆめタウン", - "icon": "./assets/data/nsi/logos/youmetown-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/youmetown-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -499473,7 +499835,7 @@ }, { "question": "ヨークベニマル", - "icon": "./assets/data/nsi/logos/yorkbenimaru-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yorkbenimaru-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499493,7 +499855,7 @@ }, { "question": "ヨークマート", - "icon": "./assets/data/nsi/logos/yorkmart-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yorkmart-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499513,7 +499875,7 @@ }, { "question": "ライフ", - "icon": "./assets/data/nsi/logos/life-fe0970.png", + "icon": "https://data.mapcomplete.org/nsi//logos/life-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -499535,8 +499897,6 @@ "question": "ラッキー", "osmTags": { "and": [ - "official_name=北雄ラッキー", - "official_name:ja=北雄ラッキー", "shop=supermarket", { "or": [ @@ -499546,7 +499906,9 @@ "brand:wikidata=Q115865306", "name=ラッキー", "name:en=LUCKY", - "name:ja=ラッキー" + "name:ja=ラッキー", + "official_name=北雄ラッキー", + "official_name:ja=北雄ラッキー" ] } ] @@ -499725,7 +500087,7 @@ }, { "question": "全聯福利中心", - "icon": "./assets/data/nsi/logos/pxmart-14223e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pxmart-14223e.png", "osmTags": { "and": [ "shop=supermarket", @@ -499801,7 +500163,7 @@ }, { "question": "华润万家", - "icon": "./assets/data/nsi/logos/vanguard-85bacf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vanguard-85bacf.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499840,7 +500202,7 @@ }, { "question": "大润发", - "icon": "./assets/data/nsi/logos/rtmart-eda947.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rtmart-eda947.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499860,7 +500222,7 @@ }, { "question": "大潤發", - "icon": "./assets/data/nsi/logos/rtmart-14223e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rtmart-14223e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499880,7 +500242,7 @@ }, { "question": "大統華 T&T Supermarket", - "icon": "./assets/data/nsi/logos/tandtsupermarket-76454b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tandtsupermarket-76454b.png", "osmTags": { "and": [ "shop=supermarket", @@ -499899,7 +500261,7 @@ }, { "question": "家乐福", - "icon": "./assets/data/nsi/logos/carrefour-3265be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-3265be.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499938,7 +500300,7 @@ }, { "question": "家樂福", - "icon": "./assets/data/nsi/logos/carrefour-14223e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-14223e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -499993,7 +500355,7 @@ }, { "question": "惠康 Wellcome", - "icon": "./assets/data/nsi/logos/wellcome-745f9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellcome-745f9c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500017,7 +500379,7 @@ }, { "question": "愛買", - "icon": "./assets/data/nsi/logos/amart-14223e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amart-14223e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500041,7 +500403,7 @@ }, { "question": "成城石井", - "icon": "./assets/data/nsi/logos/seijoishii-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seijoishii-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500080,7 +500442,7 @@ }, { "question": "東急ストア", - "icon": "./assets/data/nsi/logos/tokyustore-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokyustore-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500100,7 +500462,7 @@ }, { "question": "東武ストア", - "icon": "./assets/data/nsi/logos/tobustore-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tobustore-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500120,7 +500482,7 @@ }, { "question": "楓康超市", - "icon": "./assets/data/nsi/logos/funcomsupermarket-14223e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/funcomsupermarket-14223e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500140,6 +500502,7 @@ }, { "question": "業務スーパー", + "icon": "https://data.mapcomplete.org/nsi//logos/gyomusuper-fe0970.png", "osmTags": { "and": [ "shop=supermarket", @@ -500161,7 +500524,7 @@ }, { "question": "永旺", - "icon": "./assets/data/nsi/logos/aeon-85bacf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeon-85bacf.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500181,7 +500544,7 @@ }, { "question": "永旺 AEON", - "icon": "./assets/data/nsi/logos/aeon-745f9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aeon-745f9c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500220,7 +500583,7 @@ }, { "question": "沃尔玛", - "icon": "./assets/data/nsi/logos/walmart-eda947.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walmart-eda947.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500278,7 +500641,7 @@ }, { "question": "百佳超級市場 PARKnSHOP", - "icon": "./assets/data/nsi/logos/parknshop-3601ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parknshop-3601ab.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500346,7 +500709,7 @@ }, { "question": "相鉄ローゼン", - "icon": "./assets/data/nsi/logos/sotetsurosen-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sotetsurosen-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -500367,7 +500730,7 @@ }, { "question": "綿半スーパーセンター", - "icon": "./assets/data/nsi/logos/watahansupercenter-fe0970.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/watahansupercenter-fe0970.svg", "osmTags": { "and": [ "shop=supermarket", @@ -500387,7 +500750,7 @@ }, { "question": "美廉社", - "icon": "./assets/data/nsi/logos/simplemart-14223e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/simplemart-14223e.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500419,7 +500782,7 @@ }, { "question": "聖德科斯", - "icon": "./assets/data/nsi/logos/santacruz-14223e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santacruz-14223e.jpg", "osmTags": { "and": [ "organic=only", @@ -500444,7 +500807,7 @@ }, { "question": "華潤萬家 Vanguard", - "icon": "./assets/data/nsi/logos/vanguard-745f9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vanguard-745f9c.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500464,7 +500827,7 @@ }, { "question": "西友", - "icon": "./assets/data/nsi/logos/seiyu-fe0970.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seiyu-fe0970.jpg", "osmTags": { "and": [ "shop=supermarket", @@ -500484,7 +500847,7 @@ }, { "question": "里仁", - "icon": "./assets/data/nsi/logos/leezen-14223e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leezen-14223e.jpg", "osmTags": { "and": [ "organic=only", @@ -500562,16 +500925,16 @@ }, { "question": "Leslie's Pool Supplies", - "icon": "./assets/data/nsi/logos/lesliespoolsupplies-1e1b6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lesliespoolsupplies-1e1b6d.png", "osmTags": { "and": [ - "official_name=Leslie's Pool Supplies Service & Repair", "shop=swimming_pool", { "or": [ "brand=Leslie's Pool Supplies", "brand:wikidata=Q6530568", - "name=Leslie's Pool Supplies" + "name=Leslie's Pool Supplies", + "official_name=Leslie's Pool Supplies Service & Repair" ] } ] @@ -500579,7 +500942,7 @@ }, { "question": "Pinch A Penny", - "icon": "./assets/data/nsi/logos/pinchapenny-1e1b6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pinchapenny-1e1b6d.png", "osmTags": { "and": [ "shop=swimming_pool", @@ -500628,7 +500991,7 @@ }, { "question": "VeAn Tattoo", - "icon": "./assets/data/nsi/logos/veantattoo-eea007.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veantattoo-eea007.jpg", "osmTags": { "and": [ "shop=tattoo", @@ -500644,7 +501007,7 @@ }, { "question": "Cha Payom", - "icon": "./assets/data/nsi/logos/chapayom-af1b20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chapayom-af1b20.jpg", "osmTags": { "and": [ "shop=tea", @@ -500660,7 +501023,7 @@ }, { "question": "Czas na Herbatę", - "icon": "./assets/data/nsi/logos/czasnaherbate-2f47e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/czasnaherbate-2f47e9.jpg", "osmTags": { "and": [ "shop=tea", @@ -500676,7 +501039,7 @@ }, { "question": "Dammann Frères", - "icon": "./assets/data/nsi/logos/dammannfreres-14c0a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dammannfreres-14c0a7.jpg", "osmTags": { "and": [ "shop=tea", @@ -500692,7 +501055,7 @@ }, { "question": "DavidsTea", - "icon": "./assets/data/nsi/logos/davidstea-12e931.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/davidstea-12e931.jpg", "osmTags": { "and": [ "shop=tea", @@ -500708,7 +501071,7 @@ }, { "question": "Five o'clock", - "icon": "./assets/data/nsi/logos/fiveoclock-2f47e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiveoclock-2f47e9.jpg", "osmTags": { "and": [ "shop=tea", @@ -500724,7 +501087,7 @@ }, { "question": "Kusmi Tea", - "icon": "./assets/data/nsi/logos/kusmitea-9cd54d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kusmitea-9cd54d.jpg", "osmTags": { "and": [ "shop=tea", @@ -500740,7 +501103,7 @@ }, { "question": "Oxalis", - "icon": "./assets/data/nsi/logos/oxalis-cec35b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxalis-cec35b.jpg", "osmTags": { "and": [ "shop=tea", @@ -500756,7 +501119,7 @@ }, { "question": "Palais des Thés", - "icon": "./assets/data/nsi/logos/palaisdesthes-9d2342.png", + "icon": "https://data.mapcomplete.org/nsi//logos/palaisdesthes-9d2342.png", "osmTags": { "and": [ "shop=tea", @@ -500772,7 +501135,7 @@ }, { "question": "Simon Lévelt", - "icon": "./assets/data/nsi/logos/simonlevelt-4b87ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/simonlevelt-4b87ec.jpg", "osmTags": { "and": [ "shop=tea", @@ -500788,7 +501151,7 @@ }, { "question": "Sonnentor", - "icon": "./assets/data/nsi/logos/sonnentor-8b9919.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonnentor-8b9919.jpg", "osmTags": { "and": [ "shop=tea", @@ -500804,7 +501167,7 @@ }, { "question": "T2", - "icon": "./assets/data/nsi/logos/t2-c95a9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/t2-c95a9d.jpg", "osmTags": { "and": [ "shop=tea", @@ -500820,7 +501183,7 @@ }, { "question": "Tea Shop", - "icon": "./assets/data/nsi/logos/teashop-d87694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teashop-d87694.jpg", "osmTags": { "and": [ "shop=tea", @@ -500836,7 +501199,7 @@ }, { "question": "Tea WG", - "icon": "./assets/data/nsi/logos/teawg-3ee78a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teawg-3ee78a.jpg", "osmTags": { "and": [ "shop=tea", @@ -500852,7 +501215,7 @@ }, { "question": "TeeGschwendner", - "icon": "./assets/data/nsi/logos/teegschwendner-655ff5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teegschwendner-655ff5.jpg", "osmTags": { "and": [ "shop=tea", @@ -500868,7 +501231,7 @@ }, { "question": "TWG Tea", - "icon": "./assets/data/nsi/logos/twgtea-c4a804.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/twgtea-c4a804.jpg", "osmTags": { "and": [ "shop=tea", @@ -500884,7 +501247,7 @@ }, { "question": "Whittard of Chelsea", - "icon": "./assets/data/nsi/logos/whittardofchelsea-1b668e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whittardofchelsea-1b668e.jpg", "osmTags": { "and": [ "shop=tea", @@ -500900,7 +501263,7 @@ }, { "question": "Кантата", - "icon": "./assets/data/nsi/logos/cantata-6c79c5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cantata-6c79c5.svg", "osmTags": { "and": [ "shop=tea", @@ -500972,7 +501335,7 @@ }, { "question": "1O1O", - "icon": "./assets/data/nsi/logos/1o1o-d0af53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1o1o-d0af53.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -500988,7 +501351,7 @@ }, { "question": "3", - "icon": "./assets/data/nsi/logos/three-063284.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/three-063284.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501006,7 +501369,7 @@ }, { "question": "4ka", - "icon": "./assets/data/nsi/logos/4ka-be4c77.png", + "icon": "https://data.mapcomplete.org/nsi//logos/4ka-be4c77.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501022,7 +501385,7 @@ }, { "question": "A1", - "icon": "./assets/data/nsi/logos/a1-5b3624.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a1-5b3624.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501038,7 +501401,7 @@ }, { "question": "A1 (Srbija)", - "icon": "./assets/data/nsi/logos/a1-ba40c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a1-ba40c7.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501058,7 +501421,7 @@ }, { "question": "A1 (България)", - "icon": "./assets/data/nsi/logos/a1-5ceaa9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a1-5ceaa9.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501076,7 +501439,7 @@ }, { "question": "A1 (Северна Македонија)", - "icon": "./assets/data/nsi/logos/a1-5455f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a1-5455f4.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501094,7 +501457,7 @@ }, { "question": "Agencia ICE", - "icon": "./assets/data/nsi/logos/agenciaice-478408.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agenciaice-478408.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501110,7 +501473,7 @@ }, { "question": "Bell", - "icon": "./assets/data/nsi/logos/bell-e8684d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bell-e8684d.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501126,7 +501489,7 @@ }, { "question": "C Spire", - "icon": "./assets/data/nsi/logos/cspire-3a9c60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cspire-3a9c60.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501142,7 +501505,7 @@ }, { "question": "Celcom", - "icon": "./assets/data/nsi/logos/celcom-c82acb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/celcom-c82acb.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501173,7 +501536,7 @@ }, { "question": "csl.", - "icon": "./assets/data/nsi/logos/csl-d0af53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csl-d0af53.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501191,7 +501554,7 @@ }, { "question": "CYTA", - "icon": "./assets/data/nsi/logos/cyta-e85adc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyta-e85adc.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501207,7 +501570,7 @@ }, { "question": "Datagroup", - "icon": "./assets/data/nsi/logos/datagroup-19c022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/datagroup-19c022.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501227,7 +501590,7 @@ }, { "question": "Digi", - "icon": "./assets/data/nsi/logos/digi-9fbd0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/digi-9fbd0b.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501243,7 +501606,7 @@ }, { "question": "Digi Store", - "icon": "./assets/data/nsi/logos/digistore-c82acb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/digistore-c82acb.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501259,7 +501622,7 @@ }, { "question": "DISH", - "icon": "./assets/data/nsi/logos/dish-3a9c60.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dish-3a9c60.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501275,7 +501638,7 @@ }, { "question": "Dito", - "icon": "./assets/data/nsi/logos/dito-1229f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dito-1229f4.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501292,7 +501655,7 @@ }, { "question": "Drei", - "icon": "./assets/data/nsi/logos/drei-a73137.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drei-a73137.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501308,7 +501671,7 @@ }, { "question": "Epic", - "icon": "./assets/data/nsi/logos/epic-099b82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/epic-099b82.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501324,7 +501687,7 @@ }, { "question": "Finetwork", - "icon": "./assets/data/nsi/logos/finetwork-cea1c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/finetwork-cea1c9.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501340,7 +501703,7 @@ }, { "question": "freenet", - "icon": "./assets/data/nsi/logos/freenet-c071e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freenet-c071e4.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501356,7 +501719,7 @@ }, { "question": "Galeri Indosat", - "icon": "./assets/data/nsi/logos/galeriindosat-ba2701.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/galeriindosat-ba2701.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501372,7 +501735,7 @@ }, { "question": "Galeri Smartfren", - "icon": "./assets/data/nsi/logos/galerismartfren-ba2701.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/galerismartfren-ba2701.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501388,7 +501751,7 @@ }, { "question": "Globe", - "icon": "./assets/data/nsi/logos/globe-1229f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/globe-1229f4.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501405,7 +501768,7 @@ }, { "question": "GraPARI Telkomsel", - "icon": "./assets/data/nsi/logos/graparitelkomsel-ba2701.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/graparitelkomsel-ba2701.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501421,7 +501784,7 @@ }, { "question": "Magenta", - "icon": "./assets/data/nsi/logos/magenta-a73137.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/magenta-a73137.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501453,7 +501816,7 @@ }, { "question": "Maxis", - "icon": "./assets/data/nsi/logos/maxis-c82acb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxis-c82acb.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501469,7 +501832,7 @@ }, { "question": "mts", - "icon": "./assets/data/nsi/logos/mts-28400c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mts-28400c.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501485,7 +501848,7 @@ }, { "question": "Ooredoo", - "icon": "./assets/data/nsi/logos/ooredoo-33bf96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ooredoo-33bf96.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501501,7 +501864,7 @@ }, { "question": "Optimum", - "icon": "./assets/data/nsi/logos/optimum-3a9c60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optimum-3a9c60.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501517,7 +501880,7 @@ }, { "question": "Orange Mali", - "icon": "./assets/data/nsi/logos/orangemali-478897.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orangemali-478897.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501533,7 +501896,7 @@ }, { "question": "Proximus Shop", - "icon": "./assets/data/nsi/logos/proximusshop-6be163.png", + "icon": "https://data.mapcomplete.org/nsi//logos/proximusshop-6be163.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501549,7 +501912,7 @@ }, { "question": "PŸUR", - "icon": "./assets/data/nsi/logos/pyur-c071e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pyur-c071e4.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501565,7 +501928,7 @@ }, { "question": "Salt", - "icon": "./assets/data/nsi/logos/salt-b6d5be.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/salt-b6d5be.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501581,7 +501944,7 @@ }, { "question": "Sky", - "icon": "./assets/data/nsi/logos/sky-e64962.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sky-e64962.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501597,7 +501960,7 @@ }, { "question": "Slovak Telekom", - "icon": "./assets/data/nsi/logos/telekom-be4c77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telekom-be4c77.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501613,7 +501976,7 @@ }, { "question": "Smart", - "icon": "./assets/data/nsi/logos/smart-1229f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smart-1229f4.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501630,7 +501993,7 @@ }, { "question": "Spectrum", - "icon": "./assets/data/nsi/logos/spectrum-3a9c60.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spectrum-3a9c60.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501646,7 +502009,7 @@ }, { "question": "Sunrise", - "icon": "./assets/data/nsi/logos/sunrise-b6d5be.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunrise-b6d5be.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501662,7 +502025,7 @@ }, { "question": "Swisscom", - "icon": "./assets/data/nsi/logos/swisscom-b6d5be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisscom-b6d5be.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501678,7 +502041,7 @@ }, { "question": "Telenet", - "icon": "./assets/data/nsi/logos/telenet-6be163.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenet-6be163.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501694,7 +502057,7 @@ }, { "question": "Telenor", - "icon": "./assets/data/nsi/logos/telenor-f4a586.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenor-f4a586.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501710,7 +502073,7 @@ }, { "question": "TMpoint", - "icon": "./assets/data/nsi/logos/tmpoint-c82acb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tmpoint-c82acb.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501726,7 +502089,7 @@ }, { "question": "U Mobile", - "icon": "./assets/data/nsi/logos/umobile-c82acb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/umobile-c82acb.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501742,7 +502105,7 @@ }, { "question": "Vivacom", - "icon": "./assets/data/nsi/logos/vivacom-5ceaa9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vivacom-5ceaa9.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501760,7 +502123,7 @@ }, { "question": "Volia", - "icon": "./assets/data/nsi/logos/volia-19c022.png", + "icon": "https://data.mapcomplete.org/nsi//logos/volia-19c022.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501776,7 +502139,7 @@ }, { "question": "VOO", - "icon": "./assets/data/nsi/logos/voo-6be163.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/voo-6be163.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501792,7 +502155,7 @@ }, { "question": "Xfinity", - "icon": "./assets/data/nsi/logos/xfinity-3a9c60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xfinity-3a9c60.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501808,7 +502171,7 @@ }, { "question": "XL Center", - "icon": "./assets/data/nsi/logos/xlcenter-ba2701.png", + "icon": "https://data.mapcomplete.org/nsi//logos/xlcenter-ba2701.png", "osmTags": { "and": [ "shop=telecommunication", @@ -501824,7 +502187,7 @@ }, { "question": "Yes 4G", - "icon": "./assets/data/nsi/logos/yes4g-c82acb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yes4g-c82acb.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501840,7 +502203,7 @@ }, { "question": "Yettel Bulgaria", - "icon": "./assets/data/nsi/logos/yettel-5ceaa9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yettel-5ceaa9.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501856,7 +502219,7 @@ }, { "question": "Yettel Hungary", - "icon": "./assets/data/nsi/logos/yettel-fbadaa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yettel-fbadaa.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501872,7 +502235,7 @@ }, { "question": "Yettel Serbia", - "icon": "./assets/data/nsi/logos/yettel-ba40c7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yettel-ba40c7.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501888,7 +502251,7 @@ }, { "question": "Булсатком", - "icon": "./assets/data/nsi/logos/bulsatcom-5ceaa9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bulsatcom-5ceaa9.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501920,7 +502283,7 @@ }, { "question": "Македонски Телеком", - "icon": "./assets/data/nsi/logos/makedonskitelecom-5455f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/makedonskitelecom-5455f4.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501938,7 +502301,7 @@ }, { "question": "МТС", - "icon": "./assets/data/nsi/logos/mts-53a4f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mts-53a4f1.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501958,7 +502321,7 @@ }, { "question": "Ростелеком", - "icon": "./assets/data/nsi/logos/b6fed5-58655c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/b6fed5-58655c.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -501974,7 +502337,7 @@ }, { "question": "Телекабел", - "icon": "./assets/data/nsi/logos/telekabel-5455f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telekabel-5455f4.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -501992,7 +502355,7 @@ }, { "question": "Укртелеком", - "icon": "./assets/data/nsi/logos/ukrtelecom-19c022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrtelecom-19c022.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502050,7 +502413,7 @@ }, { "question": "中国移动", - "icon": "./assets/data/nsi/logos/chinamobile-3ad2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinamobile-3ad2fe.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502070,7 +502433,7 @@ }, { "question": "中国联通", - "icon": "./assets/data/nsi/logos/chinaunicom-3ad2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaunicom-3ad2fe.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502090,7 +502453,7 @@ }, { "question": "中國移動香港 China Mobile Hong Kong", - "icon": "./assets/data/nsi/logos/chinamobile-d0af53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinamobile-d0af53.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502114,7 +502477,7 @@ }, { "question": "中國聯通 China Unicom", - "icon": "./assets/data/nsi/logos/chinaunicom-d0af53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinaunicom-d0af53.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502161,7 +502524,7 @@ }, { "question": "中華電信", - "icon": "./assets/data/nsi/logos/chunghwatelecom-4f600a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chunghwatelecom-4f600a.svg", "osmTags": { "and": [ "shop=telecommunication", @@ -502181,7 +502544,7 @@ }, { "question": "台灣大哥大", - "icon": "./assets/data/nsi/logos/taiwanmobile-4f600a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanmobile-4f600a.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502201,7 +502564,7 @@ }, { "question": "數碼通 SmarTone", - "icon": "./assets/data/nsi/logos/smartone-063284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smartone-063284.png", "osmTags": { "and": [ "shop=telecommunication", @@ -502225,7 +502588,7 @@ }, { "question": "新移動通訊 SUN Mobile", - "icon": "./assets/data/nsi/logos/sunmobile-d0af53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunmobile-d0af53.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502249,7 +502612,7 @@ }, { "question": "澳門電訊 CTM", - "icon": "./assets/data/nsi/logos/ctm-37ccdd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ctm-37ccdd.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502275,7 +502638,7 @@ }, { "question": "遠傳電信", - "icon": "./assets/data/nsi/logos/fareastone-4f600a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fareastone-4f600a.jpg", "osmTags": { "and": [ "shop=telecommunication", @@ -502295,7 +502658,7 @@ }, { "question": "Boutique Grandes Lignes", - "icon": "./assets/data/nsi/logos/boutiquegrandeslignes-b7c783.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boutiquegrandeslignes-b7c783.png", "osmTags": { "and": [ "shop=ticket", @@ -502311,7 +502674,7 @@ }, { "question": "DB Reisezentrum", - "icon": "./assets/data/nsi/logos/dbreisezentrum-6b8984.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dbreisezentrum-6b8984.png", "osmTags": { "and": [ "shop=ticket", @@ -502327,7 +502690,7 @@ }, { "question": "Guichet Transilien", - "icon": "./assets/data/nsi/logos/guichettransilien-b7c783.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/guichettransilien-b7c783.svg", "osmTags": { "and": [ "shop=ticket", @@ -502357,7 +502720,7 @@ }, { "question": "Ticketmaster", - "icon": "./assets/data/nsi/logos/ticketmaster-9f0b74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ticketmaster-9f0b74.png", "osmTags": { "and": [ "shop=ticket", @@ -502387,7 +502750,7 @@ }, { "question": "Автолюкс", - "icon": "./assets/data/nsi/logos/autolux-61cb58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autolux-61cb58.png", "osmTags": { "and": [ "shop=ticket", @@ -502423,7 +502786,7 @@ }, { "question": "Център за градска мобилност", - "icon": "./assets/data/nsi/logos/fdbb92-14de12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fdbb92-14de12.jpg", "osmTags": { "and": [ "shop=ticket", @@ -502441,7 +502804,7 @@ }, { "question": "みどりの窓口", - "icon": "./assets/data/nsi/logos/jrticketoffice-c4f22d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jrticketoffice-c4f22d.jpg", "osmTags": { "and": [ "shop=ticket", @@ -502475,7 +502838,7 @@ }, { "question": "Amber", - "icon": "./assets/data/nsi/logos/amber-87a8ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amber-87a8ad.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502491,7 +502854,7 @@ }, { "question": "Beaumont Tiles", - "icon": "./assets/data/nsi/logos/beaumonttiles-87a8ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beaumonttiles-87a8ad.png", "osmTags": { "and": [ "shop=tiles", @@ -502507,7 +502870,7 @@ }, { "question": "CTD Tiles", - "icon": "./assets/data/nsi/logos/ctdtiles-d8218f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ctdtiles-d8218f.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502523,7 +502886,7 @@ }, { "question": "CTM", - "icon": "./assets/data/nsi/logos/ctm-d2290b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ctm-d2290b.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502539,7 +502902,7 @@ }, { "question": "Daltile", - "icon": "./assets/data/nsi/logos/daltile-31ce31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daltile-31ce31.png", "osmTags": { "and": [ "shop=tiles", @@ -502555,7 +502918,7 @@ }, { "question": "Interceramic", - "icon": "./assets/data/nsi/logos/interceramic-7c9f08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/interceramic-7c9f08.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502585,7 +502948,7 @@ }, { "question": "National Tiles", - "icon": "./assets/data/nsi/logos/nationaltiles-87a8ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltiles-87a8ad.png", "osmTags": { "and": [ "shop=tiles", @@ -502601,7 +502964,7 @@ }, { "question": "Porcelanosa", - "icon": "./assets/data/nsi/logos/porcelanosa-f63c78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porcelanosa-f63c78.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502617,7 +502980,7 @@ }, { "question": "The Tile Shop", - "icon": "./assets/data/nsi/logos/thetileshop-0bf358.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thetileshop-0bf358.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502633,7 +502996,7 @@ }, { "question": "Tile Africa", - "icon": "./assets/data/nsi/logos/tileafrica-fd3228.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tileafrica-fd3228.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502649,7 +503012,7 @@ }, { "question": "Tile Giant", - "icon": "./assets/data/nsi/logos/tilegiant-d8218f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tilegiant-d8218f.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502665,7 +503028,7 @@ }, { "question": "Topps Tiles", - "icon": "./assets/data/nsi/logos/toppstiles-d8218f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toppstiles-d8218f.jpg", "osmTags": { "and": [ "shop=tiles", @@ -502709,7 +503072,7 @@ }, { "question": "Nemzeti Dohánybolt", - "icon": "./assets/data/nsi/logos/nemzetidohanybolt-9778cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nemzetidohanybolt-9778cc.jpg", "osmTags": { "and": [ "shop=tobacco", @@ -502725,7 +503088,7 @@ }, { "question": "T-ZONE", - "icon": "./assets/data/nsi/logos/tzone-fbb387.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tzone-fbb387.jpg", "osmTags": { "and": [ "shop=tobacco", @@ -502783,7 +503146,7 @@ }, { "question": "TRAFICON", - "icon": "./assets/data/nsi/logos/traficon-56156e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/traficon-56156e.png", "osmTags": { "and": [ "shop=tobacco", @@ -502844,7 +503207,7 @@ }, { "question": "Boels", - "icon": "./assets/data/nsi/logos/boels-d0c09f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boels-d0c09f.jpg", "osmTags": { "and": [ "shop=tool_hire", @@ -502860,7 +503223,7 @@ }, { "question": "Brandon Hire Station", - "icon": "./assets/data/nsi/logos/brandonhirestation-92549b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brandonhirestation-92549b.jpg", "osmTags": { "and": [ "shop=tool_hire", @@ -502876,7 +503239,7 @@ }, { "question": "Casa do Construtor", - "icon": "./assets/data/nsi/logos/casadoconstrutor-a76fcc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/casadoconstrutor-a76fcc.jpg", "osmTags": { "and": [ "shop=tool_hire", @@ -502892,7 +503255,7 @@ }, { "question": "Hirebase", - "icon": "./assets/data/nsi/logos/hirebase-92549b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hirebase-92549b.jpg", "osmTags": { "and": [ "shop=tool_hire", @@ -502908,7 +503271,7 @@ }, { "question": "HSS Hire", - "icon": "./assets/data/nsi/logos/hsshire-a3cdb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsshire-a3cdb3.jpg", "osmTags": { "and": [ "shop=tool_hire", @@ -502924,7 +503287,7 @@ }, { "question": "Kiloutou", - "icon": "./assets/data/nsi/logos/kiloutou-d6c674.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiloutou-d6c674.jpg", "osmTags": { "and": [ "shop=tool_hire", @@ -502940,7 +503303,7 @@ }, { "question": "Library of Things", - "icon": "./assets/data/nsi/logos/libraryofthings-c10465.png", + "icon": "https://data.mapcomplete.org/nsi//logos/libraryofthings-c10465.png", "osmTags": { "and": [ "shop=tool_hire", @@ -502956,7 +503319,7 @@ }, { "question": "Loxam", - "icon": "./assets/data/nsi/logos/loxam-33fef8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/loxam-33fef8.png", "osmTags": { "and": [ "shop=tool_hire", @@ -502987,7 +503350,7 @@ }, { "question": "Speedy Hire Centre", - "icon": "./assets/data/nsi/logos/speedyhirecentre-92549b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/speedyhirecentre-92549b.jpg", "osmTags": { "and": [ "shop=tool_hire", @@ -503003,7 +503366,7 @@ }, { "question": "Talisman Hire", - "icon": "./assets/data/nsi/logos/talismanhire-9933c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/talismanhire-9933c6.jpg", "osmTags": { "and": [ "shop=tool_hire", @@ -503019,7 +503382,7 @@ }, { "question": "Alltoys", - "icon": "./assets/data/nsi/logos/alltoys-72911e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alltoys-72911e.png", "osmTags": { "and": [ "shop=toys", @@ -503035,7 +503398,7 @@ }, { "question": "American Girl", - "icon": "./assets/data/nsi/logos/americangirl-6aad54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americangirl-6aad54.jpg", "osmTags": { "and": [ "shop=toys", @@ -503051,7 +503414,7 @@ }, { "question": "Bambule", - "icon": "./assets/data/nsi/logos/bambule-259fba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bambule-259fba.jpg", "osmTags": { "and": [ "shop=toys", @@ -503067,7 +503430,7 @@ }, { "question": "BMart", - "icon": "./assets/data/nsi/logos/bmart-9c99b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmart-9c99b8.jpg", "osmTags": { "and": [ "shop=toys", @@ -503083,7 +503446,7 @@ }, { "question": "Bricks & Minifigs", - "icon": "./assets/data/nsi/logos/bricksandminifigs-f7900c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bricksandminifigs-f7900c.jpg", "osmTags": { "and": [ "second_hand=yes", @@ -503100,7 +503463,7 @@ }, { "question": "Build-A-Bear Workshop", - "icon": "./assets/data/nsi/logos/buildabearworkshop-0e7d81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buildabearworkshop-0e7d81.jpg", "osmTags": { "and": [ "shop=toys", @@ -503116,7 +503479,7 @@ }, { "question": "Città del sole", - "icon": "./assets/data/nsi/logos/cittadelsole-da26c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cittadelsole-da26c5.png", "osmTags": { "and": [ "shop=toys", @@ -503132,7 +503495,7 @@ }, { "question": "Dexy Co", - "icon": "./assets/data/nsi/logos/dexyco-ea03fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dexyco-ea03fb.jpg", "osmTags": { "and": [ "shop=toys", @@ -503148,7 +503511,7 @@ }, { "question": "Dráčik", - "icon": "./assets/data/nsi/logos/dracik-72911e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dracik-72911e.png", "osmTags": { "and": [ "shop=toys", @@ -503179,7 +503542,7 @@ }, { "question": "Early Learning Centre", - "icon": "./assets/data/nsi/logos/earlylearningcentre-f866de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/earlylearningcentre-f866de.jpg", "osmTags": { "and": [ "shop=toys", @@ -503210,7 +503573,7 @@ }, { "question": "Giocheria", - "icon": "./assets/data/nsi/logos/giocheria-da26c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giocheria-da26c5.jpg", "osmTags": { "and": [ "shop=toys", @@ -503226,7 +503589,7 @@ }, { "question": "Go! Games & Toys", - "icon": "./assets/data/nsi/logos/gogamesandtoys-6aad54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gogamesandtoys-6aad54.png", "osmTags": { "and": [ "shop=toys", @@ -503242,7 +503605,7 @@ }, { "question": "Hamleys", - "icon": "./assets/data/nsi/logos/hamleys-2271ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamleys-2271ec.jpg", "osmTags": { "and": [ "shop=toys", @@ -503258,7 +503621,7 @@ }, { "question": "Hawkin's Bazaar", - "icon": "./assets/data/nsi/logos/hawkinsbazaar-f866de.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hawkinsbazaar-f866de.png", "osmTags": { "and": [ "shop=toys", @@ -503274,7 +503637,7 @@ }, { "question": "Intertoys", - "icon": "./assets/data/nsi/logos/intertoys-741056.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intertoys-741056.jpg", "osmTags": { "and": [ "shop=toys", @@ -503290,7 +503653,7 @@ }, { "question": "JouéClub", - "icon": "./assets/data/nsi/logos/joueclub-913d0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joueclub-913d0c.jpg", "osmTags": { "and": [ "shop=toys", @@ -503306,7 +503669,7 @@ }, { "question": "Juguettos", - "icon": "./assets/data/nsi/logos/juguettos-fe170e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juguettos-fe170e.jpg", "osmTags": { "and": [ "shop=toys", @@ -503322,7 +503685,7 @@ }, { "question": "Jumbo", - "icon": "./assets/data/nsi/logos/jumbo-f2bb45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jumbo-f2bb45.png", "osmTags": { "and": [ "shop=toys", @@ -503338,7 +503701,7 @@ }, { "question": "Jumbo (България)", - "icon": "./assets/data/nsi/logos/jumbo-643931.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jumbo-643931.png", "osmTags": { "and": [ "shop=toys", @@ -503356,7 +503719,7 @@ }, { "question": "Kidstuff", - "icon": "./assets/data/nsi/logos/kidstuff-e3e843.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kidstuff-e3e843.png", "osmTags": { "and": [ "shop=toys", @@ -503372,7 +503735,7 @@ }, { "question": "King Jouet", - "icon": "./assets/data/nsi/logos/kingjouet-7999e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingjouet-7999e4.jpg", "osmTags": { "and": [ "shop=toys", @@ -503392,7 +503755,7 @@ }, { "question": "La Grande Récré", - "icon": "./assets/data/nsi/logos/lagranderecre-61c030.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lagranderecre-61c030.png", "osmTags": { "and": [ "shop=toys", @@ -503408,7 +503771,7 @@ }, { "question": "Lego", - "icon": "./assets/data/nsi/logos/lego-80bf0f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lego-80bf0f.svg", "osmTags": { "and": [ "shop=toys", @@ -503424,7 +503787,7 @@ }, { "question": "Lekia", - "icon": "./assets/data/nsi/logos/lekia-77c96c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lekia-77c96c.jpg", "osmTags": { "and": [ "shop=toys", @@ -503440,7 +503803,7 @@ }, { "question": "Mastermind Toys", - "icon": "./assets/data/nsi/logos/mastermindtoys-64674c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mastermindtoys-64674c.jpg", "osmTags": { "and": [ "shop=toys", @@ -503471,7 +503834,7 @@ }, { "question": "myToys", - "icon": "./assets/data/nsi/logos/mytoys-7f72cb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mytoys-7f72cb.svg", "osmTags": { "and": [ "shop=toys", @@ -503487,7 +503850,7 @@ }, { "question": "Noriel", - "icon": "./assets/data/nsi/logos/noriel-ec9991.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noriel-ec9991.jpg", "osmTags": { "and": [ "shop=toys", @@ -503503,7 +503866,7 @@ }, { "question": "Oxybul", - "icon": "./assets/data/nsi/logos/oxybul-e75a13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oxybul-e75a13.png", "osmTags": { "and": [ "shop=toys", @@ -503519,7 +503882,7 @@ }, { "question": "PicWicToys", - "icon": "./assets/data/nsi/logos/picwictoys-e75a13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/picwictoys-e75a13.jpg", "osmTags": { "and": [ "shop=toys", @@ -503535,7 +503898,7 @@ }, { "question": "Pompo", - "icon": "./assets/data/nsi/logos/pompo-72911e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pompo-72911e.jpg", "osmTags": { "and": [ "shop=toys", @@ -503551,7 +503914,7 @@ }, { "question": "Pop Mart", - "icon": "./assets/data/nsi/logos/popmart-e3e843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popmart-e3e843.jpg", "osmTags": { "and": [ "shop=toys", @@ -503567,16 +503930,16 @@ }, { "question": "Ri Happy", - "icon": "./assets/data/nsi/logos/rihappy-9c99b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rihappy-9c99b8.jpg", "osmTags": { "and": [ - "official_name=Ri Happy Brinquedos", "shop=toys", { "or": [ "brand=Ri Happy Brinquedos", "brand:wikidata=Q10360441", - "name=Ri Happy" + "name=Ri Happy", + "official_name=Ri Happy Brinquedos" ] } ] @@ -503584,7 +503947,7 @@ }, { "question": "ROFU Kinderland", - "icon": "./assets/data/nsi/logos/rofukinderland-7f72cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rofukinderland-7f72cb.png", "osmTags": { "and": [ "shop=toys", @@ -503600,7 +503963,7 @@ }, { "question": "Smyk", - "icon": "./assets/data/nsi/logos/smyk-3d0b80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smyk-3d0b80.jpg", "osmTags": { "and": [ "shop=toys", @@ -503616,7 +503979,7 @@ }, { "question": "Smyths", - "icon": "./assets/data/nsi/logos/smyths-468a3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smyths-468a3c.jpg", "osmTags": { "and": [ "shop=toys", @@ -503632,7 +503995,7 @@ }, { "question": "Spiele Max", - "icon": "./assets/data/nsi/logos/spielemax-7f72cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spielemax-7f72cb.jpg", "osmTags": { "and": [ "shop=toys", @@ -503648,7 +504011,7 @@ }, { "question": "Steiff", - "icon": "./assets/data/nsi/logos/steiff-7f72cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steiff-7f72cb.jpg", "osmTags": { "and": [ "shop=toys", @@ -503664,7 +504027,7 @@ }, { "question": "The Entertainer", - "icon": "./assets/data/nsi/logos/theentertainer-6f40da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theentertainer-6f40da.jpg", "osmTags": { "and": [ "shop=toys", @@ -503680,7 +504043,7 @@ }, { "question": "Toy Kingdom (Philippines)", - "icon": "./assets/data/nsi/logos/toykingdom-7500f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toykingdom-7500f4.jpg", "osmTags": { "and": [ "shop=toys", @@ -503696,7 +504059,7 @@ }, { "question": "Toy Kingdom (South Africa)", - "icon": "./assets/data/nsi/logos/toykingdom-773eea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toykingdom-773eea.jpg", "osmTags": { "and": [ "shop=toys", @@ -503712,7 +504075,7 @@ }, { "question": "ToyChamp", - "icon": "./assets/data/nsi/logos/toychamp-5f5d6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toychamp-5f5d6c.jpg", "osmTags": { "and": [ "shop=toys", @@ -503728,7 +504091,7 @@ }, { "question": "Toymaster", - "icon": "./assets/data/nsi/logos/toymaster-3a8f1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toymaster-3a8f1c.jpg", "osmTags": { "and": [ "shop=toys", @@ -503744,7 +504107,7 @@ }, { "question": "Toys Center", - "icon": "./assets/data/nsi/logos/toyscenter-da26c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toyscenter-da26c5.png", "osmTags": { "and": [ "shop=toys", @@ -503760,7 +504123,7 @@ }, { "question": "Toys R Us (Asia)", - "icon": "./assets/data/nsi/logos/toysrus-2ed13b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-2ed13b.jpg", "osmTags": { "and": [ "shop=toys", @@ -503776,7 +504139,7 @@ }, { "question": "Toys R Us (Canada)", - "icon": "./assets/data/nsi/logos/toysrus-64674c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-64674c.svg", "osmTags": { "and": [ "shop=toys", @@ -503792,7 +504155,7 @@ }, { "question": "Toys R Us (España)", - "icon": "./assets/data/nsi/logos/toysrus-ab089e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-ab089e.png", "osmTags": { "and": [ "shop=toys", @@ -503808,7 +504171,7 @@ }, { "question": "Toys R Us (Southern Africa)", - "icon": "./assets/data/nsi/logos/toysrus-4c6a3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-4c6a3d.jpg", "osmTags": { "and": [ "shop=toys", @@ -503824,7 +504187,7 @@ }, { "question": "Toys R Us (UK)", - "icon": "./assets/data/nsi/logos/toysrus-f866de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-f866de.jpg", "osmTags": { "and": [ "shop=toys", @@ -503840,7 +504203,7 @@ }, { "question": "Toys R Us (USA)", - "icon": "./assets/data/nsi/logos/toysrus-6aad54.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-6aad54.svg", "osmTags": { "and": [ "shop=toys", @@ -503856,7 +504219,7 @@ }, { "question": "Toytown", - "icon": "./assets/data/nsi/logos/toytown-f866de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toytown-f866de.jpg", "osmTags": { "and": [ "shop=toys", @@ -503872,7 +504235,7 @@ }, { "question": "Toyworld", - "icon": "./assets/data/nsi/logos/toyworld-03114e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toyworld-03114e.png", "osmTags": { "and": [ "shop=toys", @@ -503888,7 +504251,7 @@ }, { "question": "Toyzz Shop", - "icon": "./assets/data/nsi/logos/toyzzshop-a17e1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toyzzshop-a17e1f.jpg", "osmTags": { "and": [ "shop=toys", @@ -503904,7 +504267,7 @@ }, { "question": "Toyzzz", - "icon": "./assets/data/nsi/logos/toyzzz-5fdd55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toyzzz-5fdd55.png", "osmTags": { "and": [ "shop=toys", @@ -503920,7 +504283,7 @@ }, { "question": "Wiky", - "icon": "./assets/data/nsi/logos/wiky-259fba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wiky-259fba.jpg", "osmTags": { "and": [ "shop=toys", @@ -503936,7 +504299,7 @@ }, { "question": "XS სათამაშოები", - "icon": "./assets/data/nsi/logos/xstoys-4c5a46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xstoys-4c5a46.jpg", "osmTags": { "and": [ "shop=toys", @@ -503956,7 +504319,7 @@ }, { "question": "Бегемотик", - "icon": "./assets/data/nsi/logos/begemott-d68103.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/begemott-d68103.jpg", "osmTags": { "and": [ "shop=toys", @@ -503974,7 +504337,7 @@ }, { "question": "Комсед", - "icon": "./assets/data/nsi/logos/comsed-643931.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comsed-643931.jpg", "osmTags": { "and": [ "shop=toys", @@ -503992,7 +504355,7 @@ }, { "question": "Кораблик", - "icon": "./assets/data/nsi/logos/korablik-d68103.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/korablik-d68103.jpg", "osmTags": { "and": [ "shop=toys", @@ -504024,7 +504387,7 @@ }, { "question": "პეპელა", - "icon": "./assets/data/nsi/logos/pepela-4c5a46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pepela-4c5a46.jpg", "osmTags": { "and": [ "shop=toys", @@ -504044,7 +504407,7 @@ }, { "question": "ჭიტა", - "icon": "./assets/data/nsi/logos/chita-4c5a46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chita-4c5a46.jpg", "osmTags": { "and": [ "shop=toys", @@ -504083,7 +504446,7 @@ }, { "question": "トイザらス", - "icon": "./assets/data/nsi/logos/toysrus-ae2adc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-ae2adc.svg", "osmTags": { "and": [ "shop=toys", @@ -504103,7 +504466,7 @@ }, { "question": "泡泡玛特", - "icon": "./assets/data/nsi/logos/popmart-c090d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popmart-c090d5.jpg", "osmTags": { "and": [ "shop=toys", @@ -504123,7 +504486,7 @@ }, { "question": "玩具反斗城", - "icon": "./assets/data/nsi/logos/toysrus-2dd0fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-2dd0fd.jpg", "osmTags": { "and": [ "shop=toys", @@ -504143,7 +504506,7 @@ }, { "question": "玩具反斗城 Toys R Us", - "icon": "./assets/data/nsi/logos/toysrus-3ab846.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/toysrus-3ab846.svg", "osmTags": { "and": [ "shop=toys", @@ -504163,7 +504526,7 @@ }, { "question": "84 Lumber", - "icon": "./assets/data/nsi/logos/84lumber-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/84lumber-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504180,7 +504543,7 @@ }, { "question": "ABC Supply", - "icon": "./assets/data/nsi/logos/abcsupply-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abcsupply-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504196,7 +504559,7 @@ }, { "question": "Altorfer CAT", - "icon": "./assets/data/nsi/logos/altorfercat-786476.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altorfercat-786476.jpg", "osmTags": { "and": [ "shop=trade", @@ -504213,7 +504576,7 @@ }, { "question": "American Roofing Supply", - "icon": "./assets/data/nsi/logos/americanroofingsupply-930674.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americanroofingsupply-930674.jpg", "osmTags": { "and": [ "shop=trade", @@ -504230,7 +504593,7 @@ }, { "question": "BigMat", - "icon": "./assets/data/nsi/logos/bigmat-80a59f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bigmat-80a59f.png", "osmTags": { "and": [ "shop=trade", @@ -504247,7 +504610,7 @@ }, { "question": "BMN Bouwmaterialen", - "icon": "./assets/data/nsi/logos/bmnbouwmaterialen-0777cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmnbouwmaterialen-0777cb.jpg", "osmTags": { "and": [ "shop=trade", @@ -504263,7 +504626,7 @@ }, { "question": "Boyd CAT", - "icon": "./assets/data/nsi/logos/boydcat-d88071.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boydcat-d88071.jpg", "osmTags": { "and": [ "shop=trade", @@ -504280,7 +504643,7 @@ }, { "question": "Bradfords Building Supplies", - "icon": "./assets/data/nsi/logos/bradfordsbuildingsupplies-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bradfordsbuildingsupplies-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -504297,7 +504660,7 @@ }, { "question": "Builders FirstSource", - "icon": "./assets/data/nsi/logos/buildersfirstsource-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buildersfirstsource-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504314,7 +504677,7 @@ }, { "question": "Builders Trade Depot", - "icon": "./assets/data/nsi/logos/builderstradedepot-c685bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/builderstradedepot-c685bf.png", "osmTags": { "and": [ "shop=trade", @@ -504331,7 +504694,7 @@ }, { "question": "Butler CAT", - "icon": "./assets/data/nsi/logos/butlercat-39aa46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/butlercat-39aa46.jpg", "osmTags": { "and": [ "shop=trade", @@ -504348,7 +504711,7 @@ }, { "question": "Bygger'n", - "icon": "./assets/data/nsi/logos/byggern-db4f61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byggern-db4f61.png", "osmTags": { "and": [ "shop=trade", @@ -504363,7 +504726,7 @@ }, { "question": "Byggmakker", - "icon": "./assets/data/nsi/logos/byggmakker-db4f61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/byggmakker-db4f61.jpg", "osmTags": { "and": [ "shop=trade", @@ -504378,7 +504741,7 @@ }, { "question": "Byggtorget", - "icon": "./assets/data/nsi/logos/byggtorget-db4f61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/byggtorget-db4f61.png", "osmTags": { "and": [ "shop=trade", @@ -504393,7 +504756,7 @@ }, { "question": "Capital Electric", - "icon": "./assets/data/nsi/logos/capitalelectric-4e950c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalelectric-4e950c.png", "osmTags": { "and": [ "shop=trade", @@ -504410,7 +504773,7 @@ }, { "question": "City Plumbing", - "icon": "./assets/data/nsi/logos/cityplumbing-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityplumbing-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -504427,7 +504790,7 @@ }, { "question": "Codale", - "icon": "./assets/data/nsi/logos/codale-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/codale-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504444,7 +504807,7 @@ }, { "question": "Cooper Electric", - "icon": "./assets/data/nsi/logos/cooperelectric-4e950c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cooperelectric-4e950c.png", "osmTags": { "and": [ "shop=trade", @@ -504461,7 +504824,7 @@ }, { "question": "Corys Electrical", - "icon": "./assets/data/nsi/logos/coryselectrical-49357c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coryselectrical-49357c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504478,7 +504841,7 @@ }, { "question": "Crawford", - "icon": "./assets/data/nsi/logos/crawford-4e950c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/crawford-4e950c.png", "osmTags": { "and": [ "shop=trade", @@ -504495,7 +504858,7 @@ }, { "question": "DEK", - "icon": "./assets/data/nsi/logos/dek-8ec304.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dek-8ec304.jpg", "osmTags": { "and": [ "shop=trade", @@ -504512,7 +504875,7 @@ }, { "question": "Edmundson Electrical", - "icon": "./assets/data/nsi/logos/edmundsonelectrical-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edmundsonelectrical-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -504528,7 +504891,7 @@ }, { "question": "Empire CAT", - "icon": "./assets/data/nsi/logos/empirecat-e9f192.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/empirecat-e9f192.jpg", "osmTags": { "and": [ "shop=trade", @@ -504545,7 +504908,7 @@ }, { "question": "Eurocell", - "icon": "./assets/data/nsi/logos/eurocell-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurocell-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -504562,7 +504925,7 @@ }, { "question": "Fabick CAT", - "icon": "./assets/data/nsi/logos/fabickcat-755a12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fabickcat-755a12.jpg", "osmTags": { "and": [ "shop=trade", @@ -504579,7 +504942,7 @@ }, { "question": "Fastenal", - "icon": "./assets/data/nsi/logos/fastenal-e4a373.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastenal-e4a373.jpg", "osmTags": { "and": [ "shop=trade", @@ -504595,7 +504958,7 @@ }, { "question": "Felbermayr", - "icon": "./assets/data/nsi/logos/felbermayr-26d55f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/felbermayr-26d55f.png", "osmTags": { "and": [ "shop=trade", @@ -504612,7 +504975,7 @@ }, { "question": "Ferguson", - "icon": "./assets/data/nsi/logos/ferguson-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ferguson-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504629,7 +504992,7 @@ }, { "question": "Finning CAT", - "icon": "./assets/data/nsi/logos/finningcat-4e6583.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/finningcat-4e6583.jpg", "osmTags": { "and": [ "shop=trade", @@ -504646,7 +505009,7 @@ }, { "question": "Gap", - "icon": "./assets/data/nsi/logos/gap-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gap-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -504662,7 +505025,7 @@ }, { "question": "Grainger", - "icon": "./assets/data/nsi/logos/grainger-d18c79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grainger-d18c79.jpg", "osmTags": { "and": [ "shop=trade", @@ -504678,7 +505041,7 @@ }, { "question": "Graybar", - "icon": "./assets/data/nsi/logos/graybar-d18c79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/graybar-d18c79.jpg", "osmTags": { "and": [ "shop=trade", @@ -504695,7 +505058,7 @@ }, { "question": "Heating Plumbing Supplies", - "icon": "./assets/data/nsi/logos/heatingplumbingsupplies-cf8c4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heatingplumbingsupplies-cf8c4d.jpg", "osmTags": { "and": [ "shop=trade", @@ -504743,7 +505106,7 @@ }, { "question": "Huws Gray", - "icon": "./assets/data/nsi/logos/huwsgray-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huwsgray-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -504760,7 +505123,7 @@ }, { "question": "Independent Electric", - "icon": "./assets/data/nsi/logos/independentelectric-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/independentelectric-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504777,7 +505140,7 @@ }, { "question": "Irby", - "icon": "./assets/data/nsi/logos/irby-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irby-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504794,7 +505157,7 @@ }, { "question": "ITM", - "icon": "./assets/data/nsi/logos/itm-49357c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itm-49357c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504810,7 +505173,7 @@ }, { "question": "J. A. Russel", - "icon": "./assets/data/nsi/logos/jarussel-49357c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jarussel-49357c.png", "osmTags": { "and": [ "shop=trade", @@ -504827,7 +505190,7 @@ }, { "question": "Jewson", - "icon": "./assets/data/nsi/logos/jewson-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jewson-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -504844,7 +505207,7 @@ }, { "question": "John Deere", - "icon": "./assets/data/nsi/logos/johndeere-d18c79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johndeere-d18c79.jpg", "osmTags": { "and": [ "shop=trade", @@ -504861,7 +505224,7 @@ }, { "question": "Johnstone Supply", - "icon": "./assets/data/nsi/logos/johnstonesupply-4e950c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johnstonesupply-4e950c.png", "osmTags": { "and": [ "shop=trade", @@ -504878,7 +505241,7 @@ }, { "question": "Keyline", - "icon": "./assets/data/nsi/logos/keyline-8a4d16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keyline-8a4d16.png", "osmTags": { "and": [ "shop=trade", @@ -504894,7 +505257,7 @@ }, { "question": "Linde Welding Gas & Equipment Center", - "icon": "./assets/data/nsi/logos/lindeweldinggasandequipmentcenter-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lindeweldinggasandequipmentcenter-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -504910,7 +505273,7 @@ }, { "question": "Louisiana CAT", - "icon": "./assets/data/nsi/logos/louisianacat-052d4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisianacat-052d4d.jpg", "osmTags": { "and": [ "shop=trade", @@ -504927,7 +505290,7 @@ }, { "question": "MacAllister CAT", - "icon": "./assets/data/nsi/logos/macallistercat-d2d460.png", + "icon": "https://data.mapcomplete.org/nsi//logos/macallistercat-d2d460.png", "osmTags": { "and": [ "shop=trade", @@ -504944,7 +505307,7 @@ }, { "question": "Maxbo", - "icon": "./assets/data/nsi/logos/maxbo-db4f61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxbo-db4f61.jpg", "osmTags": { "and": [ "shop=trade", @@ -504960,7 +505323,7 @@ }, { "question": "Michigan CAT", - "icon": "./assets/data/nsi/logos/michigancat-1363ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michigancat-1363ee.jpg", "osmTags": { "and": [ "shop=trade", @@ -504977,7 +505340,7 @@ }, { "question": "Middy's", - "icon": "./assets/data/nsi/logos/middys-0432d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/middys-0432d4.jpg", "osmTags": { "and": [ "shop=trade", @@ -504994,7 +505357,7 @@ }, { "question": "Montér", - "icon": "./assets/data/nsi/logos/monter-db4f61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monter-db4f61.jpg", "osmTags": { "and": [ "shop=trade", @@ -505010,7 +505373,7 @@ }, { "question": "Munch's Supply", - "icon": "./assets/data/nsi/logos/munchssupply-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/munchssupply-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -505027,7 +505390,7 @@ }, { "question": "Mustang CAT", - "icon": "./assets/data/nsi/logos/mustangcat-f0929a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mustangcat-f0929a.jpg", "osmTags": { "and": [ "shop=trade", @@ -505044,7 +505407,7 @@ }, { "question": "N C Machinery", - "icon": "./assets/data/nsi/logos/ncmachinery-066ed1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ncmachinery-066ed1.jpg", "osmTags": { "and": [ "shop=trade", @@ -505061,7 +505424,7 @@ }, { "question": "NMC CAT", - "icon": "./assets/data/nsi/logos/nmccat-346f4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nmccat-346f4e.jpg", "osmTags": { "and": [ "shop=trade", @@ -505078,7 +505441,7 @@ }, { "question": "North Coast", - "icon": "./assets/data/nsi/logos/northcoast-4e950c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northcoast-4e950c.png", "osmTags": { "and": [ "shop=trade", @@ -505095,7 +505458,7 @@ }, { "question": "NorthEast Electrical", - "icon": "./assets/data/nsi/logos/northeastelectrical-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northeastelectrical-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -505112,7 +505475,7 @@ }, { "question": "Ohio CAT", - "icon": "./assets/data/nsi/logos/ohiocat-d88071.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiocat-d88071.jpg", "osmTags": { "and": [ "shop=trade", @@ -505129,7 +505492,7 @@ }, { "question": "OneSource", - "icon": "./assets/data/nsi/logos/onesource-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onesource-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -505146,7 +505509,7 @@ }, { "question": "Papé Machinery Agriculture & Turf", - "icon": "./assets/data/nsi/logos/papemachineryagricultureandturf-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/papemachineryagricultureandturf-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -505163,7 +505526,7 @@ }, { "question": "Papé Machinery Construction & Forestry", - "icon": "./assets/data/nsi/logos/papemachineryconstructionandforestry-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/papemachineryconstructionandforestry-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -505180,7 +505543,7 @@ }, { "question": "Parr Lumber", - "icon": "./assets/data/nsi/logos/parrlumber-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parrlumber-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -505198,7 +505561,7 @@ }, { "question": "Peterson CAT", - "icon": "./assets/data/nsi/logos/petersoncat-a2ce56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petersoncat-a2ce56.jpg", "osmTags": { "and": [ "shop=trade", @@ -505215,7 +505578,7 @@ }, { "question": "Plumbase", - "icon": "./assets/data/nsi/logos/plumbase-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plumbase-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -505232,7 +505595,7 @@ }, { "question": "Puckett CAT", - "icon": "./assets/data/nsi/logos/puckettcat-868049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puckettcat-868049.jpg", "osmTags": { "and": [ "shop=trade", @@ -505249,7 +505612,7 @@ }, { "question": "QED", - "icon": "./assets/data/nsi/logos/qed-4e950c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qed-4e950c.png", "osmTags": { "and": [ "shop=trade", @@ -505266,7 +505629,7 @@ }, { "question": "Quinn CAT", - "icon": "./assets/data/nsi/logos/quinncat-d6cd9f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/quinncat-d6cd9f.jpg", "osmTags": { "and": [ "shop=trade", @@ -505283,7 +505646,7 @@ }, { "question": "Raab Karcher", - "icon": "./assets/data/nsi/logos/raabkarcher-c82403.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/raabkarcher-c82403.svg", "osmTags": { "and": [ "shop=trade", @@ -505299,7 +505662,7 @@ }, { "question": "Raiffeisen Baucenter", - "icon": "./assets/data/nsi/logos/raiffeisenbaucenter-c82403.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raiffeisenbaucenter-c82403.jpg", "osmTags": { "and": [ "shop=trade", @@ -505475,7 +505838,7 @@ }, { "question": "RGB Building Supplies", - "icon": "./assets/data/nsi/logos/rgbbuildingsupplies-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rgbbuildingsupplies-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -505506,7 +505869,7 @@ }, { "question": "RP Lumber", - "icon": "./assets/data/nsi/logos/rplumber-ab5d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rplumber-ab5d0f.jpg", "osmTags": { "and": [ "shop=trade", @@ -505539,7 +505902,7 @@ }, { "question": "SIG Roofing", - "icon": "./assets/data/nsi/logos/sigroofing-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sigroofing-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -505555,7 +505918,7 @@ }, { "question": "Springfield Electric", - "icon": "./assets/data/nsi/logos/springfieldelectric-5a9be2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldelectric-5a9be2.jpg", "osmTags": { "and": [ "shop=trade", @@ -505572,7 +505935,7 @@ }, { "question": "Stavmat Építőanyag Kereskedelem", - "icon": "./assets/data/nsi/logos/stavmatepitoanyagkereskedelem-453975.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stavmatepitoanyagkereskedelem-453975.jpg", "osmTags": { "and": [ "shop=trade", @@ -505589,7 +505952,7 @@ }, { "question": "Stavmat Stavebniny (Česko)", - "icon": "./assets/data/nsi/logos/stavmatstavebniny-0d3493.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stavmatstavebniny-0d3493.jpg", "osmTags": { "and": [ "shop=trade", @@ -505606,7 +505969,7 @@ }, { "question": "Stavmat Stavebniny (Slovensko)", - "icon": "./assets/data/nsi/logos/stavmatstavebniny-a5bd5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stavmatstavebniny-a5bd5b.jpg", "osmTags": { "and": [ "shop=trade", @@ -505623,7 +505986,7 @@ }, { "question": "Supa-Roof", - "icon": "./assets/data/nsi/logos/suparoof-c60415.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suparoof-c60415.jpg", "osmTags": { "and": [ "shop=trade", @@ -505640,7 +506003,7 @@ }, { "question": "Thompson CAT (Thompson Machinery)", - "icon": "./assets/data/nsi/logos/thompsoncat-82599d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thompsoncat-82599d.jpg", "osmTags": { "and": [ "shop=trade", @@ -505657,7 +506020,7 @@ }, { "question": "Thompson CAT (Thompson Tractor)", - "icon": "./assets/data/nsi/logos/thompsoncat-386127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thompsoncat-386127.jpg", "osmTags": { "and": [ "shop=trade", @@ -505674,7 +506037,7 @@ }, { "question": "Toromont CAT", - "icon": "./assets/data/nsi/logos/toromontcat-321e1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toromontcat-321e1f.jpg", "osmTags": { "and": [ "shop=trade", @@ -505691,7 +506054,7 @@ }, { "question": "Tractor & Equipment Co.", - "icon": "./assets/data/nsi/logos/tractorandequipmentco-10c19f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tractorandequipmentco-10c19f.jpg", "osmTags": { "and": [ "shop=trade", @@ -505708,7 +506071,7 @@ }, { "question": "Tradelink", - "icon": "./assets/data/nsi/logos/tradelink-0432d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tradelink-0432d4.jpg", "osmTags": { "and": [ "shop=trade", @@ -505725,7 +506088,7 @@ }, { "question": "TradePoint", - "icon": "./assets/data/nsi/logos/tradepoint-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tradepoint-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -505742,7 +506105,7 @@ }, { "question": "Vallen", - "icon": "./assets/data/nsi/logos/vallen-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vallen-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -505775,7 +506138,7 @@ }, { "question": "Wagner CAT", - "icon": "./assets/data/nsi/logos/wagnercat-ca7f61.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wagnercat-ca7f61.jpg", "osmTags": { "and": [ "shop=trade", @@ -505792,7 +506155,7 @@ }, { "question": "Warren CAT", - "icon": "./assets/data/nsi/logos/warrencat-fc264f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warrencat-fc264f.jpg", "osmTags": { "and": [ "shop=trade", @@ -505809,7 +506172,7 @@ }, { "question": "Western States CAT", - "icon": "./assets/data/nsi/logos/westernstatescat-8cb1bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westernstatescat-8cb1bb.jpg", "osmTags": { "and": [ "shop=trade", @@ -505826,7 +506189,7 @@ }, { "question": "Wheeler CAT", - "icon": "./assets/data/nsi/logos/wheelercat-753d55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wheelercat-753d55.jpg", "osmTags": { "and": [ "shop=trade", @@ -505843,7 +506206,7 @@ }, { "question": "Wolseley", - "icon": "./assets/data/nsi/logos/wolseley-8a4d16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wolseley-8a4d16.jpg", "osmTags": { "and": [ "shop=trade", @@ -505860,7 +506223,7 @@ }, { "question": "World Electric", - "icon": "./assets/data/nsi/logos/worldelectric-4e950c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldelectric-4e950c.jpg", "osmTags": { "and": [ "shop=trade", @@ -505893,7 +506256,7 @@ }, { "question": "XL-BYG", - "icon": "./assets/data/nsi/logos/xlbyg-bb375f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xlbyg-bb375f.jpg", "osmTags": { "and": [ "shop=trade", @@ -505909,7 +506272,7 @@ }, { "question": "XL-Bygg", - "icon": "./assets/data/nsi/logos/xlbygg-14590b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xlbygg-14590b.jpg", "osmTags": { "and": [ "shop=trade", @@ -505925,7 +506288,7 @@ }, { "question": "Zeppelin CAT", - "icon": "./assets/data/nsi/logos/zeppelincat-a5bd5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeppelincat-a5bd5b.jpg", "osmTags": { "and": [ "shop=trade", @@ -505942,7 +506305,7 @@ }, { "question": "Ziegler CAT", - "icon": "./assets/data/nsi/logos/zieglercat-b606bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zieglercat-b606bc.jpg", "osmTags": { "and": [ "shop=trade", @@ -505973,7 +506336,7 @@ }, { "question": "ADAC Geschäftsstelle", - "icon": "./assets/data/nsi/logos/adacgeschaftsstelle-3ea820.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adacgeschaftsstelle-3ea820.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -505989,7 +506352,7 @@ }, { "question": "Alltours", - "icon": "./assets/data/nsi/logos/alltours-3ea820.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alltours-3ea820.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506005,7 +506368,7 @@ }, { "question": "American Automobile Association", - "icon": "./assets/data/nsi/logos/americanautomobileassociation-263985.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanautomobileassociation-263985.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506022,7 +506385,7 @@ }, { "question": "Barrhead Travel", - "icon": "./assets/data/nsi/logos/barrheadtravel-b1d32b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barrheadtravel-b1d32b.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506038,7 +506401,7 @@ }, { "question": "Čedok", - "icon": "./assets/data/nsi/logos/cedok-5b7a02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cedok-5b7a02.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506054,7 +506417,7 @@ }, { "question": "Club Med", - "icon": "./assets/data/nsi/logos/clubmed-9ff76a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubmed-9ff76a.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506085,7 +506448,7 @@ }, { "question": "Cruise Planners", - "icon": "./assets/data/nsi/logos/cruiseplanners-263985.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cruiseplanners-263985.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506101,7 +506464,7 @@ }, { "question": "CVC", - "icon": "./assets/data/nsi/logos/cvc-48b489.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cvc-48b489.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506117,7 +506480,7 @@ }, { "question": "D-reizen", - "icon": "./assets/data/nsi/logos/dreizen-9d1680.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dreizen-9d1680.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506133,7 +506496,7 @@ }, { "question": "DER Reisebüro", - "icon": "./assets/data/nsi/logos/derreiseburo-3ea820.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derreiseburo-3ea820.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506149,7 +506512,7 @@ }, { "question": "E.Leclerc Voyages", - "icon": "./assets/data/nsi/logos/eleclerc-9ff76a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclerc-9ff76a.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506165,7 +506528,7 @@ }, { "question": "Expedia Cruises", - "icon": "./assets/data/nsi/logos/expediacruises-e2fbf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expediacruises-e2fbf2.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506196,7 +506559,7 @@ }, { "question": "Flight Centre", - "icon": "./assets/data/nsi/logos/flightcentre-9aaf3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flightcentre-9aaf3f.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506212,7 +506575,7 @@ }, { "question": "Fram", - "icon": "./assets/data/nsi/logos/fram-94396d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fram-94396d.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506228,7 +506591,7 @@ }, { "question": "Halcón Viajes", - "icon": "./assets/data/nsi/logos/halconviajes-7a9abd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halconviajes-7a9abd.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506244,7 +506607,7 @@ }, { "question": "Havas Voyages", - "icon": "./assets/data/nsi/logos/havasvoyages-9ff76a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/havasvoyages-9ff76a.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506260,7 +506623,7 @@ }, { "question": "Hays Travel", - "icon": "./assets/data/nsi/logos/haystravel-b1d32b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haystravel-b1d32b.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506276,7 +506639,7 @@ }, { "question": "Helloworld Travel", - "icon": "./assets/data/nsi/logos/helloworldtravel-b91cc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/helloworldtravel-b91cc8.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506292,7 +506655,7 @@ }, { "question": "Hotelplan", - "icon": "./assets/data/nsi/logos/hotelplan-c09afe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotelplan-c09afe.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506308,7 +506671,7 @@ }, { "question": "House of Travel", - "icon": "./assets/data/nsi/logos/houseoftravel-64ecef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houseoftravel-64ecef.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506324,7 +506687,7 @@ }, { "question": "HYDROTOUR", - "icon": "./assets/data/nsi/logos/hydrotour-1d4025.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydrotour-1d4025.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506340,7 +506703,7 @@ }, { "question": "Invia", - "icon": "./assets/data/nsi/logos/invia-bc5dc6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/invia-bc5dc6.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506356,7 +506719,7 @@ }, { "question": "Itaka", - "icon": "./assets/data/nsi/logos/itaka-68492b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itaka-68492b.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506372,18 +506735,18 @@ }, { "question": "JTB", - "icon": "./assets/data/nsi/logos/jtb-4b4d86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jtb-4b4d86.jpg", "osmTags": { "and": [ - "official_name=日本交通公社", - "official_name:en=Japan Travel Bureau", - "official_name:ja=日本交通公社", "shop=travel_agency", { "or": [ "brand=JTB", "brand:wikidata=Q6109053", - "name=JTB" + "name=JTB", + "official_name=日本交通公社", + "official_name:en=Japan Travel Bureau", + "official_name:ja=日本交通公社" ] } ] @@ -506391,7 +506754,7 @@ }, { "question": "Koala Tours", - "icon": "./assets/data/nsi/logos/koalatours-1d4025.png", + "icon": "https://data.mapcomplete.org/nsi//logos/koalatours-1d4025.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506407,7 +506770,7 @@ }, { "question": "Kuoni", - "icon": "./assets/data/nsi/logos/kuoni-9aaf3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuoni-9aaf3f.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506423,7 +506786,7 @@ }, { "question": "Last Minute Tour", - "icon": "./assets/data/nsi/logos/lastminutetour-3832ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lastminutetour-3832ef.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506439,7 +506802,7 @@ }, { "question": "Liberty Travel", - "icon": "./assets/data/nsi/logos/libertytravel-263985.png", + "icon": "https://data.mapcomplete.org/nsi//logos/libertytravel-263985.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506455,7 +506818,7 @@ }, { "question": "ltur", - "icon": "./assets/data/nsi/logos/ltur-3ea820.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ltur-3ea820.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506471,7 +506834,7 @@ }, { "question": "Miles Morgan Travel", - "icon": "./assets/data/nsi/logos/milesmorgantravel-b1d32b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milesmorgantravel-b1d32b.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506487,7 +506850,7 @@ }, { "question": "Neckermann Reisen", - "icon": "./assets/data/nsi/logos/neckermannreisen-3ea820.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/neckermannreisen-3ea820.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506503,7 +506866,7 @@ }, { "question": "Nouvelles Frontières", - "icon": "./assets/data/nsi/logos/nouvellesfrontieres-9ff76a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nouvellesfrontieres-9ff76a.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506519,7 +506882,7 @@ }, { "question": "Promovacances", - "icon": "./assets/data/nsi/logos/promovacances-94396d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/promovacances-94396d.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506535,7 +506898,7 @@ }, { "question": "Rainbow", - "icon": "./assets/data/nsi/logos/rainbow-68492b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rainbow-68492b.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506551,7 +506914,7 @@ }, { "question": "Reiseland", - "icon": "./assets/data/nsi/logos/reiseland-3ea820.png", + "icon": "https://data.mapcomplete.org/nsi//logos/reiseland-3ea820.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506567,7 +506930,7 @@ }, { "question": "Ruefa", - "icon": "./assets/data/nsi/logos/ruefa-2db47e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ruefa-2db47e.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506583,7 +506946,7 @@ }, { "question": "SATUR", - "icon": "./assets/data/nsi/logos/satur-1d4025.png", + "icon": "https://data.mapcomplete.org/nsi//logos/satur-1d4025.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506599,7 +506962,7 @@ }, { "question": "Selectair", - "icon": "./assets/data/nsi/logos/selectair-36513c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selectair-36513c.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506615,7 +506978,7 @@ }, { "question": "Selectour", - "icon": "./assets/data/nsi/logos/selectour-9ff76a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selectour-9ff76a.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506631,7 +506994,7 @@ }, { "question": "SENECA Tours", - "icon": "./assets/data/nsi/logos/senecatours-1d4025.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senecatours-1d4025.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506647,7 +507010,7 @@ }, { "question": "STA Travel", - "icon": "./assets/data/nsi/logos/statravel-9aaf3f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/statravel-9aaf3f.svg", "osmTags": { "and": [ "shop=travel_agency", @@ -506678,7 +507041,7 @@ }, { "question": "TIP travel", - "icon": "./assets/data/nsi/logos/tiptravel-1d4025.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tiptravel-1d4025.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506694,7 +507057,7 @@ }, { "question": "TUI (Group)", - "icon": "./assets/data/nsi/logos/tui-b6aae0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tui-b6aae0.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506710,7 +507073,7 @@ }, { "question": "TUI (UK)", - "icon": "./assets/data/nsi/logos/tui-b1d32b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tui-b1d32b.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506726,7 +507089,7 @@ }, { "question": "TUI ReiseCenter", - "icon": "./assets/data/nsi/logos/tuireisecenter-3ea820.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuireisecenter-3ea820.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506742,7 +507105,7 @@ }, { "question": "Turancar", - "icon": "./assets/data/nsi/logos/turancar-1d4025.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turancar-1d4025.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506758,7 +507121,7 @@ }, { "question": "Turkish Airlines", - "icon": "./assets/data/nsi/logos/turkishairlines-9aaf3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkishairlines-9aaf3f.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506774,7 +507137,7 @@ }, { "question": "VakantieXperts", - "icon": "./assets/data/nsi/logos/vakantiexperts-9d1680.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vakantiexperts-9d1680.png", "osmTags": { "and": [ "shop=travel_agency", @@ -506790,7 +507153,7 @@ }, { "question": "Viajes El Corte Inglés", - "icon": "./assets/data/nsi/logos/viajeselcorteingles-d900b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/viajeselcorteingles-d900b5.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506806,7 +507169,7 @@ }, { "question": "Wakacje.pl", - "icon": "./assets/data/nsi/logos/wakacjepl-68492b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wakacjepl-68492b.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506822,7 +507185,7 @@ }, { "question": "Your Coop Travel (Midcounties Co-operative)", - "icon": "./assets/data/nsi/logos/yourcooptravel-61ce41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yourcooptravel-61ce41.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506854,7 +507217,7 @@ }, { "question": "Поїхали з нами", - "icon": "./assets/data/nsi/logos/ffa08a-09bdb9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ffa08a-09bdb9.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506874,7 +507237,7 @@ }, { "question": "エイチ・アイ・エス", - "icon": "./assets/data/nsi/logos/his-4b4d86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/his-4b4d86.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506895,11 +507258,9 @@ }, { "question": "可樂旅遊", - "icon": "./assets/data/nsi/logos/colatour-6e2961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colatour-6e2961.jpg", "osmTags": { "and": [ - "official_name=可樂旅遊旅行社", - "official_name:zh=可樂旅遊旅行社", "shop=travel_agency", { "or": [ @@ -506909,7 +507270,9 @@ "brand:zh=可樂旅遊", "name=可樂旅遊", "name:en=Cola Tour", - "name:zh=可樂旅遊" + "name:zh=可樂旅遊", + "official_name=可樂旅遊旅行社", + "official_name:zh=可樂旅遊旅行社" ] } ] @@ -506917,7 +507280,7 @@ }, { "question": "日本旅行", - "icon": "./assets/data/nsi/logos/nippontravelagency-4b4d86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nippontravelagency-4b4d86.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506944,10 +507307,9 @@ }, { "question": "易遊網", - "icon": "./assets/data/nsi/logos/eztravel-6e2961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eztravel-6e2961.jpg", "osmTags": { "and": [ - "official_name=易遊網旅行社", "shop=travel_agency", { "or": [ @@ -506957,7 +507319,8 @@ "brand:zh=易遊網", "name=易遊網", "name:en=ezTravel", - "name:zh=易遊網" + "name:zh=易遊網", + "official_name=易遊網旅行社" ] } ] @@ -506965,7 +507328,7 @@ }, { "question": "東南旅行社", - "icon": "./assets/data/nsi/logos/southeasttravel-6e2961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southeasttravel-6e2961.jpg", "osmTags": { "and": [ "shop=travel_agency", @@ -506985,10 +507348,9 @@ }, { "question": "近畿日本ツーリスト", - "icon": "./assets/data/nsi/logos/knt-4b4d86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knt-4b4d86.jpg", "osmTags": { "and": [ - "official_name:en=Kinki Nippon Tourist", "shop=travel_agency", { "or": [ @@ -506998,7 +507360,8 @@ "brand:wikidata=Q11638632", "name=近畿日本ツーリスト", "name:en=KNT", - "name:ja=近畿日本ツーリスト" + "name:ja=近畿日本ツーリスト", + "official_name:en=Kinki Nippon Tourist" ] } ] @@ -507006,11 +507369,9 @@ }, { "question": "雄獅旅遊", - "icon": "./assets/data/nsi/logos/liontravel-6e2961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/liontravel-6e2961.jpg", "osmTags": { "and": [ - "official_name=雄獅旅行社", - "official_name:zh=雄獅旅行社", "shop=travel_agency", { "or": [ @@ -507020,7 +507381,9 @@ "brand:zh=雄獅旅遊", "name=雄獅旅遊", "name:en=Lion Travel", - "name:zh=雄獅旅遊" + "name:zh=雄獅旅遊", + "official_name=雄獅旅行社", + "official_name:zh=雄獅旅行社" ] } ] @@ -507028,7 +507391,7 @@ }, { "question": "DAF", - "icon": "./assets/data/nsi/logos/daf-bb8fb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daf-bb8fb2.jpg", "osmTags": { "and": [ "shop=truck", @@ -507044,7 +507407,7 @@ }, { "question": "Fuso", - "icon": "./assets/data/nsi/logos/fuso-d61f35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fuso-d61f35.jpg", "osmTags": { "and": [ "shop=truck", @@ -507060,7 +507423,7 @@ }, { "question": "Fuso (Canada/USA)", - "icon": "./assets/data/nsi/logos/fuso-3d029c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fuso-3d029c.jpg", "osmTags": { "and": [ "shop=truck", @@ -507076,7 +507439,7 @@ }, { "question": "Iveco", - "icon": "./assets/data/nsi/logos/iveco-34d7c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iveco-34d7c0.jpg", "osmTags": { "and": [ "shop=truck", @@ -507092,7 +507455,7 @@ }, { "question": "Peterbilt", - "icon": "./assets/data/nsi/logos/peterbilt-bb8fb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peterbilt-bb8fb2.jpg", "osmTags": { "and": [ "shop=truck", @@ -507108,7 +507471,7 @@ }, { "question": "Rush Truck Centers", - "icon": "./assets/data/nsi/logos/rushtruckcenters-5de9f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rushtruckcenters-5de9f8.png", "osmTags": { "and": [ "shop=truck", @@ -507124,7 +507487,7 @@ }, { "question": "Volvo Trucks", - "icon": "./assets/data/nsi/logos/volvotrucks-bb8fb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volvotrucks-bb8fb2.jpg", "osmTags": { "and": [ "shop=truck", @@ -507140,7 +507503,7 @@ }, { "question": "DAF", - "icon": "./assets/data/nsi/logos/daf-f0ee07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daf-f0ee07.jpg", "osmTags": { "and": [ "shop=truck_repair", @@ -507156,7 +507519,7 @@ }, { "question": "Fuso", - "icon": "./assets/data/nsi/logos/fuso-cb3721.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fuso-cb3721.jpg", "osmTags": { "and": [ "shop=truck_repair", @@ -507172,7 +507535,7 @@ }, { "question": "Love's Truck Care", - "icon": "./assets/data/nsi/logos/lovestruckcare-4e81eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lovestruckcare-4e81eb.png", "osmTags": { "and": [ "shop=truck_repair", @@ -507188,7 +507551,7 @@ }, { "question": "MAN", - "icon": "./assets/data/nsi/logos/man-bf6850.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/man-bf6850.jpg", "osmTags": { "and": [ "shop=truck_repair", @@ -507204,7 +507567,7 @@ }, { "question": "Rush Truck Centers", - "icon": "./assets/data/nsi/logos/rushtruckcenters-4e81eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rushtruckcenters-4e81eb.png", "osmTags": { "and": [ "shop=truck_repair", @@ -507220,7 +507583,7 @@ }, { "question": "Speedco", - "icon": "./assets/data/nsi/logos/speedco-4e81eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/speedco-4e81eb.png", "osmTags": { "and": [ "shop=truck_repair", @@ -507236,7 +507599,7 @@ }, { "question": "Volvo Trucks", - "icon": "./assets/data/nsi/logos/volvotrucks-f0ee07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volvotrucks-f0ee07.jpg", "osmTags": { "and": [ "shop=truck_repair", @@ -507252,7 +507615,7 @@ }, { "question": "Advantage", - "icon": "./assets/data/nsi/logos/advantage-d7c451.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/advantage-d7c451.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507268,7 +507631,7 @@ }, { "question": "Alliance Tire Company", - "icon": "./assets/data/nsi/logos/alliancetirecompany-1d5291.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliancetirecompany-1d5291.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507284,7 +507647,7 @@ }, { "question": "American Tire Depot", - "icon": "./assets/data/nsi/logos/americantiredepot-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americantiredepot-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507300,7 +507663,7 @@ }, { "question": "Apollo Tyres", - "icon": "./assets/data/nsi/logos/apollotyres-1d5291.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apollotyres-1d5291.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507316,7 +507679,7 @@ }, { "question": "Belle Tire", - "icon": "./assets/data/nsi/logos/belletire-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belletire-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507332,7 +507695,7 @@ }, { "question": "Big Brand Tire & Service", - "icon": "./assets/data/nsi/logos/bigbrandtireandservice-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigbrandtireandservice-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507348,7 +507711,7 @@ }, { "question": "Big O Tires", - "icon": "./assets/data/nsi/logos/bigotires-b51b37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigotires-b51b37.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507364,7 +507727,7 @@ }, { "question": "Bob Jane T-Marts", - "icon": "./assets/data/nsi/logos/bobjanetmarts-6139cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bobjanetmarts-6139cc.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507380,7 +507743,7 @@ }, { "question": "Bridgestone", - "icon": "./assets/data/nsi/logos/bridgestone-1d5291.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bridgestone-1d5291.png", "osmTags": { "and": [ "shop=tyres", @@ -507396,7 +507759,7 @@ }, { "question": "Commercial Tire", - "icon": "./assets/data/nsi/logos/commercialtire-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commercialtire-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507412,7 +507775,7 @@ }, { "question": "Continental AG", - "icon": "./assets/data/nsi/logos/continentalag-1d5291.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/continentalag-1d5291.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507428,7 +507791,7 @@ }, { "question": "Cooper Tire & Rubber Company", - "icon": "./assets/data/nsi/logos/coopertireandrubbercompany-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coopertireandrubbercompany-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507444,7 +507807,7 @@ }, { "question": "Costco Tire Center", - "icon": "./assets/data/nsi/logos/costcotirecenter-b51b37.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcotirecenter-b51b37.svg", "osmTags": { "and": [ "shop=tyres", @@ -507460,7 +507823,7 @@ }, { "question": "Costco Tire Centre", - "icon": "./assets/data/nsi/logos/costcotirecentre-20a245.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcotirecentre-20a245.svg", "osmTags": { "and": [ "shop=tyres", @@ -507491,7 +507854,7 @@ }, { "question": "Discount Tire", - "icon": "./assets/data/nsi/logos/discounttire-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/discounttire-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507507,7 +507870,7 @@ }, { "question": "Driver Center", - "icon": "./assets/data/nsi/logos/drivercenter-54501e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drivercenter-54501e.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507523,7 +507886,7 @@ }, { "question": "Dunlop", - "icon": "./assets/data/nsi/logos/dunlop-975e12.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunlop-975e12.svg", "osmTags": { "and": [ "shop=tyres", @@ -507539,7 +507902,7 @@ }, { "question": "Dunlop Super Dealer", - "icon": "./assets/data/nsi/logos/dunlopsuperdealer-6139cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunlopsuperdealer-6139cc.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507555,7 +507918,7 @@ }, { "question": "Dunn Tire", - "icon": "./assets/data/nsi/logos/dunntire-c22d36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunntire-c22d36.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507571,7 +507934,7 @@ }, { "question": "Ehrhardt Reifen + Autoservice", - "icon": "./assets/data/nsi/logos/ehrhardtreifenautoservice-24681a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ehrhardtreifenautoservice-24681a.jpg", "osmTags": { "and": [ "service:vehicle:car_repair=yes", @@ -507588,7 +507951,7 @@ }, { "question": "Eurotyre (Belgium/Nederland)", - "icon": "./assets/data/nsi/logos/eurotyre-eb61ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurotyre-eb61ab.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507604,7 +507967,7 @@ }, { "question": "Eurotyre (France)", - "icon": "./assets/data/nsi/logos/eurotyre-e43dbb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eurotyre-e43dbb.png", "osmTags": { "and": [ "shop=tyres", @@ -507620,7 +507983,7 @@ }, { "question": "Express Oil Change & Tire Engineers", - "icon": "./assets/data/nsi/logos/expressoilchangeandtireengineers-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressoilchangeandtireengineers-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507636,7 +507999,7 @@ }, { "question": "Fountain Tire", - "icon": "./assets/data/nsi/logos/fountaintire-20a245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fountaintire-20a245.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507667,7 +508030,7 @@ }, { "question": "Kal Tire", - "icon": "./assets/data/nsi/logos/kaltire-20a245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaltire-20a245.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507683,7 +508046,7 @@ }, { "question": "Les Schwab Tire Center", - "icon": "./assets/data/nsi/logos/lesschwabtirecenter-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lesschwabtirecenter-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507699,7 +508062,7 @@ }, { "question": "OK Tire", - "icon": "./assets/data/nsi/logos/oktire-20a245.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oktire-20a245.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507715,7 +508078,7 @@ }, { "question": "Pneuhage", - "icon": "./assets/data/nsi/logos/pneuhage-24681a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pneuhage-24681a.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507731,7 +508094,7 @@ }, { "question": "Protyre", - "icon": "./assets/data/nsi/logos/protyre-0f3cf4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/protyre-0f3cf4.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507747,7 +508110,7 @@ }, { "question": "Quick Reifendiscount", - "icon": "./assets/data/nsi/logos/quickreifendiscount-24681a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/quickreifendiscount-24681a.png", "osmTags": { "and": [ "shop=tyres", @@ -507763,7 +508126,7 @@ }, { "question": "reifen.com", - "icon": "./assets/data/nsi/logos/reifencom-24681a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/reifencom-24681a.png", "osmTags": { "and": [ "shop=tyres", @@ -507779,7 +508142,7 @@ }, { "question": "Super Dekk", - "icon": "./assets/data/nsi/logos/superdekk-8efefa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/superdekk-8efefa.png", "osmTags": { "and": [ "shop=tyres", @@ -507795,7 +508158,7 @@ }, { "question": "Tiger Wheel & Tyre", - "icon": "./assets/data/nsi/logos/tigerwheelandtyre-54a38f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigerwheelandtyre-54a38f.jpg", "osmTags": { "and": [ "service:vehicle:batteries=yes", @@ -507815,7 +508178,7 @@ }, { "question": "Tire Choice Auto Service Center", - "icon": "./assets/data/nsi/logos/tirechoice-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tirechoice-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507831,7 +508194,7 @@ }, { "question": "Tire Discounters", - "icon": "./assets/data/nsi/logos/tirediscounters-db574d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tirediscounters-db574d.png", "osmTags": { "and": [ "shop=tyres", @@ -507847,7 +508210,7 @@ }, { "question": "Tire Kingdom", - "icon": "./assets/data/nsi/logos/tirekingdom-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tirekingdom-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507863,7 +508226,7 @@ }, { "question": "Tire Pros", - "icon": "./assets/data/nsi/logos/tirepros-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tirepros-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507879,7 +508242,7 @@ }, { "question": "Tire Warehouse", - "icon": "./assets/data/nsi/logos/tirewarehouse-26b73d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tirewarehouse-26b73d.png", "osmTags": { "and": [ "shop=tyres", @@ -507895,7 +508258,7 @@ }, { "question": "Tires Plus", - "icon": "./assets/data/nsi/logos/tiresplus-db574d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiresplus-db574d.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507911,7 +508274,7 @@ }, { "question": "Town Fair Tire", - "icon": "./assets/data/nsi/logos/townfairtire-f05d93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townfairtire-f05d93.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507927,7 +508290,7 @@ }, { "question": "Tyreplus", - "icon": "./assets/data/nsi/logos/tyreplus-99cc81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tyreplus-99cc81.png", "osmTags": { "and": [ "shop=tyres", @@ -507943,7 +508306,7 @@ }, { "question": "Tyrepower", - "icon": "./assets/data/nsi/logos/tyrepower-6139cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tyrepower-6139cc.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507959,7 +508322,7 @@ }, { "question": "Vergölst", - "icon": "./assets/data/nsi/logos/vergolst-24681a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vergolst-24681a.png", "osmTags": { "and": [ "service:vehicle:car_repair=yes", @@ -507976,7 +508339,7 @@ }, { "question": "Vianor", - "icon": "./assets/data/nsi/logos/vianor-1d5291.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vianor-1d5291.jpg", "osmTags": { "and": [ "shop=tyres", @@ -507992,7 +508355,7 @@ }, { "question": "Wheel Works", - "icon": "./assets/data/nsi/logos/wheelworks-3f5c6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wheelworks-3f5c6c.jpg", "osmTags": { "and": [ "service:vehicle:car_repair=yes", @@ -508040,7 +508403,7 @@ }, { "question": "Колесо", - "icon": "./assets/data/nsi/logos/koleso-c15d58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koleso-c15d58.jpg", "osmTags": { "and": [ "shop=tyres", @@ -508058,7 +508421,7 @@ }, { "question": "타이어뱅크 (Tire Bank)", - "icon": "./assets/data/nsi/logos/tirebank-f5977f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tirebank-f5977f.jpg", "osmTags": { "and": [ "shop=tyres", @@ -508078,7 +508441,7 @@ }, { "question": "Godfreys", - "icon": "./assets/data/nsi/logos/godfreys-817a4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/godfreys-817a4b.png", "osmTags": { "and": [ "shop=vacuum_cleaner", @@ -508094,7 +508457,7 @@ }, { "question": "Kärcher", - "icon": "./assets/data/nsi/logos/karcher-11ac87.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/karcher-11ac87.svg", "osmTags": { "and": [ "shop=vacuum_cleaner", @@ -508110,7 +508473,7 @@ }, { "question": "Oreck", - "icon": "./assets/data/nsi/logos/oreck-ded213.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oreck-ded213.jpg", "osmTags": { "and": [ "shop=vacuum_cleaner", @@ -508126,7 +508489,7 @@ }, { "question": "Vorwerk", - "icon": "./assets/data/nsi/logos/vorwerk-11ac87.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vorwerk-11ac87.png", "osmTags": { "and": [ "shop=vacuum_cleaner", @@ -508142,7 +508505,7 @@ }, { "question": "100えんハウス レモン", - "icon": "./assets/data/nsi/logos/100houselemon-e1b193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/100houselemon-e1b193.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508162,7 +508525,7 @@ }, { "question": "3COINS", - "icon": "./assets/data/nsi/logos/3coins-e1b193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3coins-e1b193.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508182,7 +508545,7 @@ }, { "question": "99 Cents Only Stores", - "icon": "./assets/data/nsi/logos/99centsonlystores-c85191.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/99centsonlystores-c85191.svg", "osmTags": { "and": [ "shop=variety_store", @@ -508198,7 +508561,7 @@ }, { "question": "99 Speedmart", - "icon": "./assets/data/nsi/logos/99speedmart-14cb81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/99speedmart-14cb81.png", "osmTags": { "and": [ "shop=variety_store", @@ -508214,7 +508577,7 @@ }, { "question": "Action", - "icon": "./assets/data/nsi/logos/action-ba0d1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/action-ba0d1d.png", "osmTags": { "and": [ "shop=variety_store", @@ -508230,7 +508593,7 @@ }, { "question": "B&M", - "icon": "./assets/data/nsi/logos/bandm-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandm-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508246,7 +508609,7 @@ }, { "question": "B&M Bargains", - "icon": "./assets/data/nsi/logos/bandmbargains-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandmbargains-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508262,7 +508625,7 @@ }, { "question": "B&M Home Store", - "icon": "./assets/data/nsi/logos/bandmhomestore-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandmhomestore-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508278,7 +508641,7 @@ }, { "question": "B&M Home Store with Garden Centre", - "icon": "./assets/data/nsi/logos/bandmhomestorewithgardencentre-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandmhomestorewithgardencentre-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508294,7 +508657,7 @@ }, { "question": "Bargain Buys", - "icon": "./assets/data/nsi/logos/bargainbuys-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bargainbuys-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508310,7 +508673,7 @@ }, { "question": "Big Bazar", - "icon": "./assets/data/nsi/logos/bigbazar-8a7b93.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bigbazar-8a7b93.svg", "osmTags": { "and": [ "shop=variety_store", @@ -508326,7 +508689,7 @@ }, { "question": "Centershop", - "icon": "./assets/data/nsi/logos/centershop-9f9d31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centershop-9f9d31.png", "osmTags": { "and": [ "shop=variety_store", @@ -508357,7 +508720,7 @@ }, { "question": "Daiso", - "icon": "./assets/data/nsi/logos/daiso-80c116.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daiso-80c116.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508373,7 +508736,7 @@ }, { "question": "Daiso Japan", - "icon": "./assets/data/nsi/logos/daisojapan-5e5531.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daisojapan-5e5531.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508390,7 +508753,7 @@ }, { "question": "Dealz", - "icon": "./assets/data/nsi/logos/dealz-01f38b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dealz-01f38b.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508406,7 +508769,7 @@ }, { "question": "DGX", - "icon": "./assets/data/nsi/logos/dgx-c85191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dgx-c85191.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508422,7 +508785,7 @@ }, { "question": "Dirt Cheap", - "icon": "./assets/data/nsi/logos/dirtcheap-c85191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dirtcheap-c85191.png", "osmTags": { "and": [ "shop=variety_store", @@ -508438,7 +508801,7 @@ }, { "question": "Dollar General", - "icon": "./assets/data/nsi/logos/dollargeneral-c85191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dollargeneral-c85191.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508454,7 +508817,7 @@ }, { "question": "Dollar Tree", - "icon": "./assets/data/nsi/logos/dollartree-44cca6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dollartree-44cca6.png", "osmTags": { "and": [ "shop=variety_store", @@ -508470,7 +508833,7 @@ }, { "question": "Dollarama", - "icon": "./assets/data/nsi/logos/dollarama-f36c63.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dollarama-f36c63.svg", "osmTags": { "and": [ "shop=variety_store", @@ -508486,7 +508849,7 @@ }, { "question": "Dollarcity", - "icon": "./assets/data/nsi/logos/dollarcity-8f2567.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dollarcity-8f2567.png", "osmTags": { "and": [ "shop=variety_store", @@ -508502,7 +508865,7 @@ }, { "question": "Dollarstore", - "icon": "./assets/data/nsi/logos/dollarstore-aa81b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dollarstore-aa81b7.png", "osmTags": { "and": [ "shop=variety_store", @@ -508518,7 +508881,7 @@ }, { "question": "Don Don Donki", - "icon": "./assets/data/nsi/logos/dondondonki-717fd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dondondonki-717fd7.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508534,7 +508897,7 @@ }, { "question": "eco-shop", - "icon": "./assets/data/nsi/logos/ecoshop-14cb81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecoshop-14cb81.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508550,7 +508913,7 @@ }, { "question": "EuroGiant", - "icon": "./assets/data/nsi/logos/eurogiant-d3831c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurogiant-d3831c.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508566,7 +508929,7 @@ }, { "question": "EuroShop", - "icon": "./assets/data/nsi/logos/euroshop-9f9d31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/euroshop-9f9d31.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508582,7 +508945,7 @@ }, { "question": "Family Dollar", - "icon": "./assets/data/nsi/logos/familydollar-c85191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/familydollar-c85191.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508598,7 +508961,7 @@ }, { "question": "Five Below", - "icon": "./assets/data/nsi/logos/fivebelow-c85191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fivebelow-c85191.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508614,7 +508977,7 @@ }, { "question": "Fix Price", - "icon": "./assets/data/nsi/logos/fixprice-95635e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fixprice-95635e.png", "osmTags": { "and": [ "shop=variety_store", @@ -508630,7 +508993,7 @@ }, { "question": "Flying Tiger Copenhagen", - "icon": "./assets/data/nsi/logos/flyingtigercopenhagen-55ef00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flyingtigercopenhagen-55ef00.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508647,7 +509010,7 @@ }, { "question": "Giant Mini", - "icon": "./assets/data/nsi/logos/giantmini-14cb81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giantmini-14cb81.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508663,7 +509026,7 @@ }, { "question": "GiFi", - "icon": "./assets/data/nsi/logos/gifi-eed69a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gifi-eed69a.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508679,7 +509042,7 @@ }, { "question": "Home Bargains", - "icon": "./assets/data/nsi/logos/homebargains-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homebargains-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508695,6 +509058,7 @@ }, { "question": "Jawoll", + "icon": "https://data.mapcomplete.org/nsi//logos/jawoll-9f9d31.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508710,7 +509074,7 @@ }, { "question": "KINEKUS", - "icon": "./assets/data/nsi/logos/kinekus-c029a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinekus-c029a3.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508726,7 +509090,7 @@ }, { "question": "KRÜMET", - "icon": "./assets/data/nsi/logos/krumet-9f9d31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/krumet-9f9d31.png", "osmTags": { "and": [ "shop=variety_store", @@ -508742,7 +509106,7 @@ }, { "question": "La Foir'Fouille", - "icon": "./assets/data/nsi/logos/lafoirfouille-ccd2d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lafoirfouille-ccd2d5.png", "osmTags": { "and": [ "shop=variety_store", @@ -508758,7 +509122,7 @@ }, { "question": "Mäc-Geiz", - "icon": "./assets/data/nsi/logos/macgeiz-9f9d31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macgeiz-9f9d31.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508774,7 +509138,7 @@ }, { "question": "Max Stock", - "icon": "./assets/data/nsi/logos/maxstock-5846c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxstock-5846c3.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508792,7 +509156,7 @@ }, { "question": "Maxi Bazar", - "icon": "./assets/data/nsi/logos/maxibazar-efe747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxibazar-efe747.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508808,7 +509172,7 @@ }, { "question": "Miniso", - "icon": "./assets/data/nsi/logos/miniso-2aea30.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miniso-2aea30.png", "osmTags": { "and": [ "shop=variety_store", @@ -508824,7 +509188,7 @@ }, { "question": "Mr. Price", - "icon": "./assets/data/nsi/logos/mrprice-d3831c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrprice-d3831c.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508840,7 +509204,7 @@ }, { "question": "MR.DOLLAR", - "icon": "./assets/data/nsi/logos/mrdollar-14cb81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mrdollar-14cb81.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508856,7 +509220,7 @@ }, { "question": "Nille", - "icon": "./assets/data/nsi/logos/nille-1dc1f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nille-1dc1f6.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508872,7 +509236,7 @@ }, { "question": "Ninso", - "icon": "./assets/data/nsi/logos/ninso-14cb81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ninso-14cb81.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508888,7 +509252,7 @@ }, { "question": "NOZ", - "icon": "./assets/data/nsi/logos/noz-efe747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noz-efe747.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508904,7 +509268,7 @@ }, { "question": "Ocean State Job Lot", - "icon": "./assets/data/nsi/logos/oceanstatejoblot-c85191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oceanstatejoblot-c85191.png", "osmTags": { "and": [ "shop=variety_store", @@ -508921,7 +509285,7 @@ }, { "question": "Offertissima", - "icon": "./assets/data/nsi/logos/offertissima-5f26ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/offertissima-5f26ca.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508937,7 +509301,7 @@ }, { "question": "Ollie's Bargain Outlet", - "icon": "./assets/data/nsi/logos/olliesbargainoutlet-c85191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/olliesbargainoutlet-c85191.png", "osmTags": { "and": [ "shop=variety_store", @@ -508954,7 +509318,7 @@ }, { "question": "OneBeyond", - "icon": "./assets/data/nsi/logos/onebeyond-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onebeyond-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -508970,7 +509334,7 @@ }, { "question": "ÖoB", - "icon": "./assets/data/nsi/logos/oob-aa81b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oob-aa81b7.png", "osmTags": { "and": [ "shop=variety_store", @@ -508986,7 +509350,7 @@ }, { "question": "Otto's", - "icon": "./assets/data/nsi/logos/ottos-793388.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ottos-793388.png", "osmTags": { "and": [ "shop=variety_store", @@ -509002,7 +509366,7 @@ }, { "question": "Pantai Timor Mart", - "icon": "./assets/data/nsi/logos/pantaitimormart-14cb81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pantaitimormart-14cb81.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509019,7 +509383,7 @@ }, { "question": "Pasar Ekonomi Econsave", - "icon": "./assets/data/nsi/logos/pasarekonomieconsave-14cb81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pasarekonomieconsave-14cb81.png", "osmTags": { "and": [ "shop=variety_store", @@ -509041,7 +509405,7 @@ }, { "question": "Pfennigpfeiffer", - "icon": "./assets/data/nsi/logos/pfennigpfeiffer-9f9d31.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pfennigpfeiffer-9f9d31.svg", "osmTags": { "and": [ "shop=variety_store", @@ -509057,7 +509421,7 @@ }, { "question": "pOpshelf", - "icon": "./assets/data/nsi/logos/popshelf-c85191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/popshelf-c85191.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509073,7 +509437,7 @@ }, { "question": "Postenbörse", - "icon": "./assets/data/nsi/logos/postenborse-9f9d31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postenborse-9f9d31.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509089,7 +509453,7 @@ }, { "question": "Poundland", - "icon": "./assets/data/nsi/logos/poundland-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poundland-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509105,7 +509469,7 @@ }, { "question": "Poundstretcher", - "icon": "./assets/data/nsi/logos/poundstretcher-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poundstretcher-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509121,7 +509485,7 @@ }, { "question": "Roses", - "icon": "./assets/data/nsi/logos/roses-c85191.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roses-c85191.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509137,7 +509501,7 @@ }, { "question": "Rusta", - "icon": "./assets/data/nsi/logos/rusta-426073.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rusta-426073.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509153,7 +509517,7 @@ }, { "question": "Shiploads", - "icon": "./assets/data/nsi/logos/shiploads-c7d002.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shiploads-c7d002.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509169,7 +509533,7 @@ }, { "question": "Stokomani", - "icon": "./assets/data/nsi/logos/stokomani-efe747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stokomani-efe747.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509185,7 +509549,7 @@ }, { "question": "TEDi", - "icon": "./assets/data/nsi/logos/tedi-8a061e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tedi-8a061e.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509201,7 +509565,7 @@ }, { "question": "THANK YOU MART", - "icon": "./assets/data/nsi/logos/thankyoumart-e1b193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thankyoumart-e1b193.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509222,7 +509586,7 @@ }, { "question": "The 99 Store", - "icon": "./assets/data/nsi/logos/the99store-c85191.png", + "icon": "https://data.mapcomplete.org/nsi//logos/the99store-c85191.png", "osmTags": { "and": [ "shop=variety_store", @@ -509238,7 +509602,7 @@ }, { "question": "The Crazy Store", - "icon": "./assets/data/nsi/logos/thecrazystore-0bcd25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecrazystore-0bcd25.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509254,7 +509618,7 @@ }, { "question": "The Original Factory Shop", - "icon": "./assets/data/nsi/logos/theoriginalfactoryshop-622078.png", + "icon": "https://data.mapcomplete.org/nsi//logos/theoriginalfactoryshop-622078.png", "osmTags": { "and": [ "shop=variety_store", @@ -509270,7 +509634,7 @@ }, { "question": "The Reject Shop", - "icon": "./assets/data/nsi/logos/therejectshop-c7d002.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/therejectshop-c7d002.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509286,7 +509650,7 @@ }, { "question": "Thomas Philipps Sonderposten", - "icon": "./assets/data/nsi/logos/thomasphilippssonderposten-9f9d31.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/thomasphilippssonderposten-9f9d31.svg", "osmTags": { "and": [ "shop=variety_store", @@ -509302,7 +509666,7 @@ }, { "question": "Tokmanni", - "icon": "./assets/data/nsi/logos/tokmanni-c0b5b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tokmanni-c0b5b4.png", "osmTags": { "and": [ "shop=variety_store", @@ -509318,7 +509682,7 @@ }, { "question": "Top Shop", - "icon": "./assets/data/nsi/logos/topshop-f153f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topshop-f153f8.png", "osmTags": { "and": [ "shop=variety_store", @@ -509334,7 +509698,7 @@ }, { "question": "Waldo's", - "icon": "./assets/data/nsi/logos/waldos-072262.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waldos-072262.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509350,7 +509714,7 @@ }, { "question": "Wilko", - "icon": "./assets/data/nsi/logos/wilko-622078.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilko-622078.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509366,7 +509730,7 @@ }, { "question": "Wreesmann", - "icon": "./assets/data/nsi/logos/wreesmann-9f9d31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wreesmann-9f9d31.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509382,7 +509746,7 @@ }, { "question": "Аврора", - "icon": "./assets/data/nsi/logos/4b0bb7-386db3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/4b0bb7-386db3.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509398,7 +509762,7 @@ }, { "question": "Копійочка", - "icon": "./assets/data/nsi/logos/d2493c-386db3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d2493c-386db3.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509428,7 +509792,7 @@ }, { "question": "Червоний маркет", - "icon": "./assets/data/nsi/logos/fd532c-386db3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fd532c-386db3.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509444,7 +509808,7 @@ }, { "question": "ვანპრაისი", - "icon": "./assets/data/nsi/logos/oneprice-15e116.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oneprice-15e116.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509465,7 +509829,7 @@ }, { "question": "იოიოსო", - "icon": "./assets/data/nsi/logos/yoyoso-15e116.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yoyoso-15e116.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509484,7 +509848,7 @@ }, { "question": "მინისო", - "icon": "./assets/data/nsi/logos/miniso-15e116.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miniso-15e116.png", "osmTags": { "and": [ "shop=variety_store", @@ -509505,7 +509869,7 @@ }, { "question": "ფიქს პრაისი", - "icon": "./assets/data/nsi/logos/fixprice-15e116.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fixprice-15e116.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509524,7 +509888,7 @@ }, { "question": "다이소", - "icon": "./assets/data/nsi/logos/daiso-67f747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daiso-67f747.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509550,7 +509914,7 @@ }, { "question": "キャンドゥ", - "icon": "./assets/data/nsi/logos/cando-e1b193.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cando-e1b193.png", "osmTags": { "and": [ "shop=variety_store", @@ -509570,7 +509934,7 @@ }, { "question": "セリア", - "icon": "./assets/data/nsi/logos/seria-e1b193.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/seria-e1b193.svg", "osmTags": { "and": [ "shop=variety_store", @@ -509590,7 +509954,7 @@ }, { "question": "ダイソー", - "icon": "./assets/data/nsi/logos/daiso-e1b193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daiso-e1b193.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509610,7 +509974,7 @@ }, { "question": "ダイレックス", - "icon": "./assets/data/nsi/logos/direx-e1b193.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/direx-e1b193.svg", "osmTags": { "and": [ "shop=variety_store", @@ -509630,7 +509994,7 @@ }, { "question": "ドン・キホーテ", - "icon": "./assets/data/nsi/logos/donquijote-e1b193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donquijote-e1b193.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509653,7 +510017,7 @@ }, { "question": "ハンズ", - "icon": "./assets/data/nsi/logos/hands-e1b193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hands-e1b193.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509673,7 +510037,7 @@ }, { "question": "ロフト", - "icon": "./assets/data/nsi/logos/loft-e1b193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loft-e1b193.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509693,7 +510057,7 @@ }, { "question": "ワッツ", - "icon": "./assets/data/nsi/logos/watts-e1b193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watts-e1b193.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509713,7 +510077,7 @@ }, { "question": "價真棧 PrizeMart", - "icon": "./assets/data/nsi/logos/prizemart-cab585.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prizemart-cab585.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509733,7 +510097,7 @@ }, { "question": "光南大批發", - "icon": "./assets/data/nsi/logos/kuangnanfashionshop-501f06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kuangnanfashionshop-501f06.png", "osmTags": { "and": [ "shop=variety_store", @@ -509753,7 +510117,7 @@ }, { "question": "台隆手創館", - "icon": "./assets/data/nsi/logos/hands-501f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hands-501f06.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509774,7 +510138,7 @@ }, { "question": "名创优品", - "icon": "./assets/data/nsi/logos/miniso-8e7978.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miniso-8e7978.png", "osmTags": { "and": [ "shop=variety_store", @@ -509794,7 +510158,7 @@ }, { "question": "名創優品 Miniso", - "icon": "./assets/data/nsi/logos/miniso-264ade.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miniso-264ade.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509818,7 +510182,7 @@ }, { "question": "大創百貨", - "icon": "./assets/data/nsi/logos/daiso-501f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daiso-501f06.jpg", "osmTags": { "and": [ "shop=variety_store", @@ -509840,7 +510204,7 @@ }, { "question": "小北百貨", - "icon": "./assets/data/nsi/logos/showba-501f06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/showba-501f06.png", "osmTags": { "and": [ "shop=variety_store", @@ -509866,10 +510230,9 @@ }, { "question": "無印良品", - "icon": "./assets/data/nsi/logos/muji-e1b193.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/muji-e1b193.svg", "osmTags": { "and": [ - "official_name:en=Ryohin Keikaku", "shop=variety_store", { "or": [ @@ -509879,7 +510242,8 @@ "brand:wikidata=Q708789", "name=無印良品", "name:en=MUJI", - "name:ja=無印良品" + "name:ja=無印良品", + "official_name:en=Ryohin Keikaku" ] } ] @@ -509887,7 +510251,7 @@ }, { "question": "Blockbuster", - "icon": "./assets/data/nsi/logos/blockbuster-a348eb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/blockbuster-a348eb.svg", "osmTags": { "and": [ "shop=video", @@ -509903,7 +510267,7 @@ }, { "question": "Family Video", - "icon": "./assets/data/nsi/logos/familyvideo-85c994.png", + "icon": "https://data.mapcomplete.org/nsi//logos/familyvideo-85c994.png", "osmTags": { "and": [ "shop=video", @@ -509919,7 +510283,7 @@ }, { "question": "TSUTAYA", - "icon": "./assets/data/nsi/logos/tsutaya-a348eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tsutaya-a348eb.png", "osmTags": { "and": [ "shop=video", @@ -509954,7 +510318,7 @@ }, { "question": "Brloh", - "icon": "./assets/data/nsi/logos/brloh-e468df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brloh-e468df.png", "osmTags": { "and": [ "shop=video_games", @@ -509986,7 +510350,7 @@ }, { "question": "EB Games (Oceania)", - "icon": "./assets/data/nsi/logos/ebgames-be6d96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ebgames-be6d96.jpg", "osmTags": { "and": [ "shop=video_games", @@ -510002,7 +510366,7 @@ }, { "question": "Game", - "icon": "./assets/data/nsi/logos/game-b2f4fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/game-b2f4fe.png", "osmTags": { "and": [ "shop=video_games", @@ -510018,7 +510382,7 @@ }, { "question": "Game Mania", - "icon": "./assets/data/nsi/logos/gamemania-350fba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gamemania-350fba.jpg", "osmTags": { "and": [ "shop=video_games", @@ -510034,7 +510398,7 @@ }, { "question": "GameStop", - "icon": "./assets/data/nsi/logos/gamestop-e24f8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gamestop-e24f8b.png", "osmTags": { "and": [ "shop=video_games", @@ -510050,7 +510414,7 @@ }, { "question": "Micromania", - "icon": "./assets/data/nsi/logos/micromania-bf0c2b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/micromania-bf0c2b.png", "osmTags": { "and": [ "shop=video_games", @@ -510066,7 +510430,7 @@ }, { "question": "PlayGoSmart", - "icon": "./assets/data/nsi/logos/playgosmart-e468df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/playgosmart-e468df.png", "osmTags": { "and": [ "shop=video_games", @@ -510082,7 +510446,7 @@ }, { "question": "A. Lange & Söhne", - "icon": "./assets/data/nsi/logos/alangeandsohne-101248.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alangeandsohne-101248.png", "osmTags": { "and": [ "shop=watches", @@ -510098,7 +510462,7 @@ }, { "question": "Audemars Piguet", - "icon": "./assets/data/nsi/logos/audemarspiguet-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/audemarspiguet-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510114,7 +510478,7 @@ }, { "question": "Baume & Mercier", - "icon": "./assets/data/nsi/logos/baumeandmercier-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baumeandmercier-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510130,7 +510494,7 @@ }, { "question": "Breitling", - "icon": "./assets/data/nsi/logos/breitling-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/breitling-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510146,7 +510510,7 @@ }, { "question": "Fastrack", - "icon": "./assets/data/nsi/logos/fastrack-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastrack-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510162,7 +510526,7 @@ }, { "question": "Fossil", - "icon": "./assets/data/nsi/logos/fossil-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fossil-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510178,7 +510542,7 @@ }, { "question": "IWC", - "icon": "./assets/data/nsi/logos/iwc-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iwc-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510194,7 +510558,7 @@ }, { "question": "Jaeger-LeCoultre", - "icon": "./assets/data/nsi/logos/jaegerlecoultre-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jaegerlecoultre-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510210,7 +510574,7 @@ }, { "question": "Just Watches", - "icon": "./assets/data/nsi/logos/justwatches-3643f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/justwatches-3643f6.jpg", "osmTags": { "and": [ "shop=watches", @@ -510226,7 +510590,7 @@ }, { "question": "Longines", - "icon": "./assets/data/nsi/logos/longines-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longines-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510242,7 +510606,7 @@ }, { "question": "Montres and Co", - "icon": "./assets/data/nsi/logos/montresandco-db30b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/montresandco-db30b7.png", "osmTags": { "and": [ "shop=watches", @@ -510258,7 +510622,7 @@ }, { "question": "Movado", - "icon": "./assets/data/nsi/logos/movado-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/movado-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510274,7 +510638,7 @@ }, { "question": "Omega", - "icon": "./assets/data/nsi/logos/omega-c9e7be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omega-c9e7be.jpg", "osmTags": { "and": [ "shop=watches", @@ -510290,7 +510654,7 @@ }, { "question": "Panerai", - "icon": "./assets/data/nsi/logos/panerai-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panerai-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510306,7 +510670,7 @@ }, { "question": "Patek Philippe", - "icon": "./assets/data/nsi/logos/patekphilippe-101248.png", + "icon": "https://data.mapcomplete.org/nsi//logos/patekphilippe-101248.png", "osmTags": { "and": [ "shop=watches", @@ -510322,7 +510686,7 @@ }, { "question": "Roger Dubuis", - "icon": "./assets/data/nsi/logos/rogerdubuis-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rogerdubuis-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510338,7 +510702,7 @@ }, { "question": "Rolex", - "icon": "./assets/data/nsi/logos/rolex-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rolex-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510354,7 +510718,7 @@ }, { "question": "Seiko", - "icon": "./assets/data/nsi/logos/seiko-101248.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/seiko-101248.svg", "osmTags": { "and": [ "shop=watches", @@ -510370,7 +510734,7 @@ }, { "question": "Swatch", - "icon": "./assets/data/nsi/logos/swatch-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swatch-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510386,7 +510750,7 @@ }, { "question": "TAG Heuer", - "icon": "./assets/data/nsi/logos/tagheuer-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tagheuer-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510402,7 +510766,7 @@ }, { "question": "Tissot", - "icon": "./assets/data/nsi/logos/tissot-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tissot-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510418,7 +510782,7 @@ }, { "question": "Tourneau", - "icon": "./assets/data/nsi/logos/tourneau-b9b74c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tourneau-b9b74c.jpg", "osmTags": { "and": [ "shop=watches", @@ -510434,7 +510798,7 @@ }, { "question": "Vacheron Constantin", - "icon": "./assets/data/nsi/logos/vacheronconstantin-101248.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vacheronconstantin-101248.jpg", "osmTags": { "and": [ "shop=watches", @@ -510450,7 +510814,7 @@ }, { "question": "時間廊 City Chain", - "icon": "./assets/data/nsi/logos/citychain-301c40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citychain-301c40.jpg", "osmTags": { "and": [ "shop=watches", @@ -510470,7 +510834,7 @@ }, { "question": "欧米茄", - "icon": "./assets/data/nsi/logos/omega-410977.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omega-410977.jpg", "osmTags": { "and": [ "shop=watches", @@ -510490,7 +510854,7 @@ }, { "question": "Bestway", - "icon": "./assets/data/nsi/logos/bestway-650ac6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bestway-650ac6.png", "osmTags": { "and": [ "shop=wholesale", @@ -510506,7 +510870,7 @@ }, { "question": "BJ's Wholesale Club", - "icon": "./assets/data/nsi/logos/bjswholesaleclub-98b10d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bjswholesaleclub-98b10d.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510522,7 +510886,7 @@ }, { "question": "Booker Wholesale", - "icon": "./assets/data/nsi/logos/bookerwholesale-650ac6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bookerwholesale-650ac6.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510538,7 +510902,7 @@ }, { "question": "CHEF'STORE", - "icon": "./assets/data/nsi/logos/chefstore-98b10d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chefstore-98b10d.png", "osmTags": { "and": [ "shop=wholesale", @@ -510554,7 +510918,7 @@ }, { "question": "City Club", - "icon": "./assets/data/nsi/logos/cityclub-8c6923.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityclub-8c6923.png", "osmTags": { "and": [ "shop=wholesale", @@ -510570,7 +510934,7 @@ }, { "question": "Costco", - "icon": "./assets/data/nsi/logos/costco-69a5bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costco-69a5bf.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510586,7 +510950,7 @@ }, { "question": "Costco Business Center", - "icon": "./assets/data/nsi/logos/costcobusinesscenter-a788d2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costcobusinesscenter-a788d2.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510602,7 +510966,7 @@ }, { "question": "EDEKA C+C Großmarkt", - "icon": "./assets/data/nsi/logos/edekaccgrossmarkt-ad6aeb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edekaccgrossmarkt-ad6aeb.png", "osmTags": { "and": [ "shop=wholesale", @@ -510618,7 +510982,7 @@ }, { "question": "EDEKA Foodservice", - "icon": "./assets/data/nsi/logos/edekafoodservice-ad6aeb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edekafoodservice-ad6aeb.png", "osmTags": { "and": [ "shop=wholesale", @@ -510634,7 +510998,7 @@ }, { "question": "Fort Atacadista", - "icon": "./assets/data/nsi/logos/fortatacadista-60dbb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortatacadista-60dbb1.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510650,7 +511014,7 @@ }, { "question": "Fozzy", - "icon": "./assets/data/nsi/logos/fozzy-df0f6a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fozzy-df0f6a.png", "osmTags": { "and": [ "shop=wholesale", @@ -510666,7 +511030,7 @@ }, { "question": "Gigaboks", - "icon": "./assets/data/nsi/logos/gigaboks-2d84b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gigaboks-2d84b8.png", "osmTags": { "and": [ "shop=wholesale", @@ -510683,7 +511047,7 @@ }, { "question": "Handelshof", - "icon": "./assets/data/nsi/logos/handelshof-ad6aeb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/handelshof-ad6aeb.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510699,7 +511063,7 @@ }, { "question": "Makro", - "icon": "./assets/data/nsi/logos/makro-66b455.png", + "icon": "https://data.mapcomplete.org/nsi//logos/makro-66b455.png", "osmTags": { "and": [ "shop=wholesale", @@ -510715,7 +511079,7 @@ }, { "question": "Mastermate", - "icon": "./assets/data/nsi/logos/mastermate-055f9a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mastermate-055f9a.png", "osmTags": { "and": [ "shop=wholesale", @@ -510731,7 +511095,7 @@ }, { "question": "METRO", - "icon": "./assets/data/nsi/logos/metro-09b7b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-09b7b7.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510747,7 +511111,7 @@ }, { "question": "Metro (България)", - "icon": "./assets/data/nsi/logos/metro-551edc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-551edc.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510763,7 +511127,7 @@ }, { "question": "S&R Membership Shopping", - "icon": "./assets/data/nsi/logos/sandrmembershipshopping-fc4d00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandrmembershipshopping-fc4d00.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510780,7 +511144,7 @@ }, { "question": "Sam's Club", - "icon": "./assets/data/nsi/logos/samsclub-56e252.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samsclub-56e252.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510796,7 +511160,7 @@ }, { "question": "Selgros", - "icon": "./assets/data/nsi/logos/selgros-8ea7cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selgros-8ea7cd.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510812,7 +511176,7 @@ }, { "question": "Sligro", - "icon": "./assets/data/nsi/logos/sligro-fb1de0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sligro-fb1de0.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510828,6 +511192,7 @@ }, { "question": "Transgourmet", + "icon": "https://data.mapcomplete.org/nsi//logos/transgourmet-4d1ebd.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510844,7 +511209,7 @@ }, { "question": "ჯიბე", - "icon": "./assets/data/nsi/logos/jibe-c6ef46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jibe-c6ef46.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510864,7 +511229,7 @@ }, { "question": "แม็คโคร", - "icon": "./assets/data/nsi/logos/makro-1d3c91.png", + "icon": "https://data.mapcomplete.org/nsi//logos/makro-1d3c91.png", "osmTags": { "and": [ "shop=wholesale", @@ -510884,7 +511249,7 @@ }, { "question": "コストコ", - "icon": "./assets/data/nsi/logos/costco-db891f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costco-db891f.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510904,7 +511269,7 @@ }, { "question": "好市多", - "icon": "./assets/data/nsi/logos/costco-1d0072.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costco-1d0072.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510924,7 +511289,7 @@ }, { "question": "山姆会员商店", - "icon": "./assets/data/nsi/logos/samsclub-596e18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samsclub-596e18.jpg", "osmTags": { "and": [ "shop=wholesale", @@ -510944,7 +511309,7 @@ }, { "question": "开市客", - "icon": "./assets/data/nsi/logos/costco-596e18.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/costco-596e18.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510964,7 +511329,7 @@ }, { "question": "麦德龙", - "icon": "./assets/data/nsi/logos/metro-596e18.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-596e18.svg", "osmTags": { "and": [ "shop=wholesale", @@ -510984,7 +511349,7 @@ }, { "question": "Blinds to Go", - "icon": "./assets/data/nsi/logos/blindstogo-d1c49c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blindstogo-d1c49c.jpg", "osmTags": { "and": [ "shop=window_blind", @@ -511000,7 +511365,7 @@ }, { "question": "Hunter Douglas Gallery", - "icon": "./assets/data/nsi/logos/hunterdouglasgallery-5ccc57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hunterdouglasgallery-5ccc57.jpg", "osmTags": { "and": [ "shop=window_blind", @@ -511016,7 +511381,7 @@ }, { "question": "JalouCity", - "icon": "./assets/data/nsi/logos/jaloucity-197183.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jaloucity-197183.jpg", "osmTags": { "and": [ "shop=window_blind", @@ -511032,7 +511397,7 @@ }, { "question": "Kamax", - "icon": "./assets/data/nsi/logos/kamax-62c6fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kamax-62c6fd.png", "osmTags": { "and": [ "shop=window_blind", @@ -511050,7 +511415,7 @@ }, { "question": "Le Marché du Store", - "icon": "./assets/data/nsi/logos/lemarchedustore-4eac4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lemarchedustore-4eac4b.jpg", "osmTags": { "and": [ "shop=window_blind", @@ -511066,7 +511431,7 @@ }, { "question": "Monsieur Store", - "icon": "./assets/data/nsi/logos/monsieurstore-f9190c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monsieurstore-f9190c.jpg", "osmTags": { "and": [ "shop=window_blind", @@ -511082,7 +511447,7 @@ }, { "question": "The Shade Store", - "icon": "./assets/data/nsi/logos/theshadestore-b52314.png", + "icon": "https://data.mapcomplete.org/nsi//logos/theshadestore-b52314.png", "osmTags": { "and": [ "shop=window_blind", @@ -511113,7 +511478,7 @@ }, { "question": "Jacques' Wein-Depot", - "icon": "./assets/data/nsi/logos/jacquesweindepot-f93b7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jacquesweindepot-f93b7c.png", "osmTags": { "and": [ "shop=wine", @@ -511129,7 +511494,7 @@ }, { "question": "OKWINE", - "icon": "./assets/data/nsi/logos/okwine-fd1c0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/okwine-fd1c0f.png", "osmTags": { "and": [ "shop=wine", @@ -511145,7 +511510,7 @@ }, { "question": "Rindchen's Weinkontor", - "icon": "./assets/data/nsi/logos/rindchensweinkontor-074acf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rindchensweinkontor-074acf.jpg", "osmTags": { "and": [ "shop=wine", @@ -511205,7 +511570,7 @@ }, { "question": "WINETIME", - "icon": "./assets/data/nsi/logos/winetime-fd1c0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winetime-fd1c0f.jpg", "osmTags": { "and": [ "shop=wine", @@ -511236,7 +511601,7 @@ }, { "question": "Big 4 Holiday Parks", - "icon": "./assets/data/nsi/logos/big4holidayparks-50f355.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/big4holidayparks-50f355.jpg", "osmTags": { "and": [ "short_name=Big4", @@ -511253,7 +511618,7 @@ }, { "question": "KOA Holiday", - "icon": "./assets/data/nsi/logos/koaholiday-c4d1c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koaholiday-c4d1c5.jpg", "osmTags": { "and": [ "short_name=KOA", @@ -511270,7 +511635,7 @@ }, { "question": "KOA Journey", - "icon": "./assets/data/nsi/logos/koajourney-c4d1c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koajourney-c4d1c5.jpg", "osmTags": { "and": [ "short_name=KOA", @@ -511287,7 +511652,7 @@ }, { "question": "KOA Kampground", - "icon": "./assets/data/nsi/logos/koakampground-c4d1c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koakampground-c4d1c5.jpg", "osmTags": { "and": [ "short_name=KOA", @@ -511305,7 +511670,7 @@ }, { "question": "KOA Resort", - "icon": "./assets/data/nsi/logos/koaresort-c4d1c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koaresort-c4d1c5.jpg", "osmTags": { "and": [ "short_name=KOA", @@ -511322,7 +511687,7 @@ }, { "question": "Parkdean Resorts", - "icon": "./assets/data/nsi/logos/parkdeanresorts-74ea6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkdeanresorts-74ea6b.jpg", "osmTags": { "and": [ "tourism=caravan_site", @@ -511338,7 +511703,7 @@ }, { "question": "Thousand Trails", - "icon": "./assets/data/nsi/logos/thousandtrails-fbab9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thousandtrails-fbab9d.jpg", "osmTags": { "and": [ "tourism=caravan_site", @@ -511354,16 +511719,16 @@ }, { "question": "Yogi Bear's Jellystone Park", - "icon": "./assets/data/nsi/logos/yogibearsjellystonepark-c4d1c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yogibearsjellystonepark-c4d1c5.jpg", "osmTags": { "and": [ - "official_name=Yogi Bear's Jellystone Park Camp-Resorts", "tourism=caravan_site", { "or": [ "brand=Yogi Bear's Jellystone Park", "brand:wikidata=Q8054389", - "name=Yogi Bear's Jellystone Park" + "name=Yogi Bear's Jellystone Park", + "official_name=Yogi Bear's Jellystone Park Camp-Resorts" ] } ] @@ -511371,7 +511736,7 @@ }, { "question": "A&O", - "icon": "./assets/data/nsi/logos/aando-a930a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aando-a930a5.png", "osmTags": { "and": [ "tourism=hostel", @@ -511387,7 +511752,7 @@ }, { "question": "Deutsches Jugendherbergswerk", - "icon": "./assets/data/nsi/logos/deutschesjugendherbergswerk-cce0bb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschesjugendherbergswerk-cce0bb.svg", "osmTags": { "and": [ "tourism=hostel", @@ -511403,7 +511768,7 @@ }, { "question": "Forenom", - "icon": "./assets/data/nsi/logos/forenomhostel-8d88d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forenomhostel-8d88d8.jpg", "osmTags": { "and": [ "tourism=hostel", @@ -511419,7 +511784,7 @@ }, { "question": "Ostello Bello", - "icon": "./assets/data/nsi/logos/ostellobello-e267c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ostellobello-e267c5.jpg", "osmTags": { "and": [ "tourism=hostel", @@ -511435,7 +511800,7 @@ }, { "question": "St Christopher's Inn", - "icon": "./assets/data/nsi/logos/stchristophersinn-40879e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stchristophersinn-40879e.jpg", "osmTags": { "and": [ "tourism=hostel", @@ -511451,7 +511816,7 @@ }, { "question": "Stayokay", - "icon": "./assets/data/nsi/logos/stayokay-1b493a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stayokay-1b493a.png", "osmTags": { "and": [ "tourism=hostel", @@ -511467,7 +511832,7 @@ }, { "question": "STF", - "icon": "./assets/data/nsi/logos/stf-e1d194.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stf-e1d194.jpg", "osmTags": { "and": [ "tourism=hostel", @@ -511483,7 +511848,7 @@ }, { "question": "The People", - "icon": "./assets/data/nsi/logos/thepeople-f13219.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thepeople-f13219.jpg", "osmTags": { "and": [ "tourism=hostel", @@ -511499,7 +511864,7 @@ }, { "question": "YHA", - "icon": "./assets/data/nsi/logos/yha-99878c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yha-99878c.png", "osmTags": { "and": [ "tourism=hostel", @@ -511515,7 +511880,7 @@ }, { "question": "ナインアワーズ", - "icon": "./assets/data/nsi/logos/9hninehours-81b07a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9hninehours-81b07a.jpg", "osmTags": { "and": [ "tourism=hostel", @@ -511554,7 +511919,7 @@ }, { "question": "A&O", - "icon": "./assets/data/nsi/logos/aando-7ebc01.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aando-7ebc01.png", "osmTags": { "and": [ "tourism=hotel", @@ -511570,7 +511935,7 @@ }, { "question": "AC Hotel", - "icon": "./assets/data/nsi/logos/achotel-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/achotel-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -511586,7 +511951,7 @@ }, { "question": "Adagio", - "icon": "./assets/data/nsi/logos/adagio-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adagio-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511602,7 +511967,7 @@ }, { "question": "Adina Hotels", - "icon": "./assets/data/nsi/logos/adinaapartmenthotel-a6b67a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adinaapartmenthotel-a6b67a.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511618,16 +511983,16 @@ }, { "question": "Aiden by Best Western", - "icon": "./assets/data/nsi/logos/aiden-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aiden-779ccb.jpg", "osmTags": { "and": [ - "official_name=Aiden by Best Western", "tourism=hotel", { "or": [ "brand=Aiden", "brand:wikidata=Q830334", - "name=Aiden" + "name=Aiden", + "official_name=Aiden by Best Western" ] } ] @@ -511635,7 +512000,7 @@ }, { "question": "Akena", - "icon": "./assets/data/nsi/logos/akena-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akena-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511651,7 +512016,7 @@ }, { "question": "AKZENT Hotels", - "icon": "./assets/data/nsi/logos/akzenthotels-2d87b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akzenthotels-2d87b5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511682,7 +512047,7 @@ }, { "question": "Alila", - "icon": "./assets/data/nsi/logos/alila-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alila-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511698,7 +512063,7 @@ }, { "question": "Allegro Hotels", - "icon": "./assets/data/nsi/logos/allegrohotels-ba2369.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allegrohotels-ba2369.png", "osmTags": { "and": [ "tourism=hotel", @@ -511714,7 +512079,7 @@ }, { "question": "Aloft", - "icon": "./assets/data/nsi/logos/aloft-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aloft-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511730,7 +512095,7 @@ }, { "question": "Alua", - "icon": "./assets/data/nsi/logos/alua-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alua-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511746,16 +512111,16 @@ }, { "question": "AmericInn", - "icon": "./assets/data/nsi/logos/americinn-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americinn-6ac210.jpg", "osmTags": { "and": [ - "official_name=AmericInn by Wyndham", "tourism=hotel", { "or": [ "brand=AmericInn", "brand:wikidata=Q4742493", - "name=AmericInn" + "name=AmericInn", + "official_name=AmericInn by Wyndham" ] } ] @@ -511763,7 +512128,7 @@ }, { "question": "Anantara", - "icon": "./assets/data/nsi/logos/anantara-e8534c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anantara-e8534c.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511779,7 +512144,7 @@ }, { "question": "ANdAZ", - "icon": "./assets/data/nsi/logos/andaz-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andaz-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511795,7 +512160,7 @@ }, { "question": "Appart'City", - "icon": "./assets/data/nsi/logos/appartcity-9faf0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/appartcity-9faf0b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511811,7 +512176,7 @@ }, { "question": "Art'otel", - "icon": "./assets/data/nsi/logos/artotel-04ab8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/artotel-04ab8e.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511842,7 +512207,7 @@ }, { "question": "Atura Hotels", - "icon": "./assets/data/nsi/logos/aturahotels-a311b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aturahotels-a311b9.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511858,7 +512223,7 @@ }, { "question": "Autograph Collection", - "icon": "./assets/data/nsi/logos/autographcollection-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autographcollection-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511873,7 +512238,7 @@ }, { "question": "Avani", - "icon": "./assets/data/nsi/logos/avanihotelsandresorts-e9c192.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avanihotelsandresorts-e9c192.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511889,7 +512254,7 @@ }, { "question": "avid Hotel", - "icon": "./assets/data/nsi/logos/avidhotel-29a1d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avidhotel-29a1d7.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511905,7 +512270,7 @@ }, { "question": "Ayenda", - "icon": "./assets/data/nsi/logos/ayenda-a895b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayenda-a895b0.png", "osmTags": { "and": [ "tourism=hotel", @@ -511921,7 +512286,7 @@ }, { "question": "Azimut Hotels", - "icon": "./assets/data/nsi/logos/azimut-9679cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/azimut-9679cc.png", "osmTags": { "and": [ "tourism=hotel", @@ -511937,7 +512302,7 @@ }, { "question": "B&B Hotel", - "icon": "./assets/data/nsi/logos/bandbhotel-fc8c2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bandbhotel-fc8c2c.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511953,7 +512318,7 @@ }, { "question": "Balladins", - "icon": "./assets/data/nsi/logos/balladins-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/balladins-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511969,7 +512334,7 @@ }, { "question": "Banyan Tree", - "icon": "./assets/data/nsi/logos/banyantree-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banyantree-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -511985,7 +512350,7 @@ }, { "question": "Barceló", - "icon": "./assets/data/nsi/logos/barcelohotelsandresorts-302c40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barcelohotelsandresorts-302c40.png", "osmTags": { "and": [ "tourism=hotel", @@ -512001,7 +512366,7 @@ }, { "question": "Bastion Hotel", - "icon": "./assets/data/nsi/logos/bastionhotel-a4f814.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bastionhotel-a4f814.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512017,16 +512382,16 @@ }, { "question": "Baymont", - "icon": "./assets/data/nsi/logos/baymont-29a1d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baymont-29a1d7.jpg", "osmTags": { "and": [ - "official_name=Baymont by Wyndham", "tourism=hotel", { "or": [ "brand=Baymont", "brand:wikidata=Q4874634", - "name=Baymont" + "name=Baymont", + "official_name=Baymont by Wyndham" ] } ] @@ -512034,7 +512399,7 @@ }, { "question": "Belmond", - "icon": "./assets/data/nsi/logos/belmond-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belmond-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512050,7 +512415,7 @@ }, { "question": "Best Hotels", - "icon": "./assets/data/nsi/logos/best-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/best-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -512066,7 +512431,7 @@ }, { "question": "Best Western", - "icon": "./assets/data/nsi/logos/bestwestern-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bestwestern-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512097,7 +512462,7 @@ }, { "question": "Best Western Premier", - "icon": "./assets/data/nsi/logos/bestwesternpremier-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bestwesternpremier-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512113,7 +512478,7 @@ }, { "question": "Bloom Hotel", - "icon": "./assets/data/nsi/logos/bloomhotel-b22a38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bloomhotel-b22a38.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512144,7 +512509,7 @@ }, { "question": "Brit Hotel", - "icon": "./assets/data/nsi/logos/brithotel-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brithotel-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512160,7 +512525,7 @@ }, { "question": "Britannia Hotels", - "icon": "./assets/data/nsi/logos/britanniahotels-3fca16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/britanniahotels-3fca16.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512176,7 +512541,7 @@ }, { "question": "Bulgari", - "icon": "./assets/data/nsi/logos/bulgari-a1f85a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bulgari-a1f85a.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512192,7 +512557,7 @@ }, { "question": "BW Premier Collection", - "icon": "./assets/data/nsi/logos/bwpremiercollection-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bwpremiercollection-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512208,7 +512573,7 @@ }, { "question": "BW Signature Collection", - "icon": "./assets/data/nsi/logos/bwsignaturecollection-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bwsignaturecollection-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512224,7 +512589,7 @@ }, { "question": "Cambria Hotel", - "icon": "./assets/data/nsi/logos/cambriahotel-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cambriahotel-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512240,7 +512605,7 @@ }, { "question": "Campanile", - "icon": "./assets/data/nsi/logos/campanile-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/campanile-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -512256,7 +512621,7 @@ }, { "question": "Candlewood Suites", - "icon": "./assets/data/nsi/logos/candlewoodsuites-29a1d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/candlewoodsuites-29a1d7.png", "osmTags": { "and": [ "tourism=hotel", @@ -512272,16 +512637,16 @@ }, { "question": "Canopy", - "icon": "./assets/data/nsi/logos/canopy-523ceb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canopy-523ceb.png", "osmTags": { "and": [ - "official_name=Canopy by Hilton", "tourism=hotel", { "or": [ "brand=Canopy", "brand:wikidata=Q30632909", - "name=Canopy" + "name=Canopy", + "official_name=Canopy by Hilton" ] } ] @@ -512289,7 +512654,7 @@ }, { "question": "Catalonia", - "icon": "./assets/data/nsi/logos/catalonia-c47ceb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/catalonia-c47ceb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512320,7 +512685,7 @@ }, { "question": "Centro Hotels", - "icon": "./assets/data/nsi/logos/centrohotel-2d87b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centrohotel-2d87b5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512336,7 +512701,7 @@ }, { "question": "citizenM", - "icon": "./assets/data/nsi/logos/citizenm-b4d29c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citizenm-b4d29c.png", "osmTags": { "and": [ "tourism=hotel", @@ -512367,7 +512732,7 @@ }, { "question": "Clarion", - "icon": "./assets/data/nsi/logos/clarion-f371eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clarion-f371eb.png", "osmTags": { "and": [ "tourism=hotel", @@ -512383,7 +512748,7 @@ }, { "question": "Clarion Pointe", - "icon": "./assets/data/nsi/logos/clarionpointe-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarionpointe-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512399,7 +512764,7 @@ }, { "question": "Club Med", - "icon": "./assets/data/nsi/logos/clubmed-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubmed-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512415,7 +512780,7 @@ }, { "question": "Club Wyndham", - "icon": "./assets/data/nsi/logos/clubwyndham-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clubwyndham-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512461,7 +512826,7 @@ }, { "question": "Comfort Inn", - "icon": "./assets/data/nsi/logos/comfortinn-134d5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comfortinn-134d5e.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512477,7 +512842,7 @@ }, { "question": "Comfort Inn & Suites", - "icon": "./assets/data/nsi/logos/comfortinnandsuites-cf4e07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comfortinnandsuites-cf4e07.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512508,7 +512873,7 @@ }, { "question": "Conrad Hotels & Resorts", - "icon": "./assets/data/nsi/logos/conrad-ee1a43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conrad-ee1a43.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512524,7 +512889,7 @@ }, { "question": "Country Inn & Suites", - "icon": "./assets/data/nsi/logos/countryinnandsuites-aef9ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/countryinnandsuites-aef9ff.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512540,16 +512905,16 @@ }, { "question": "Courtyard", - "icon": "./assets/data/nsi/logos/courtyard-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/courtyard-779ccb.png", "osmTags": { "and": [ - "official_name=Courtyard by Marriott", "tourism=hotel", { "or": [ "brand=Courtyard", "brand:wikidata=Q1053170", - "name=Courtyard" + "name=Courtyard", + "official_name=Courtyard by Marriott" ] } ] @@ -512557,7 +512922,7 @@ }, { "question": "Crowne Plaza", - "icon": "./assets/data/nsi/logos/crowneplaza-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crowneplaza-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512573,7 +512938,7 @@ }, { "question": "Curio Collection by Hilton", - "icon": "./assets/data/nsi/logos/curiocollection-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/curiocollection-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512588,16 +512953,16 @@ }, { "question": "Days Inn", - "icon": "./assets/data/nsi/logos/daysinn-6df761.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daysinn-6df761.jpg", "osmTags": { "and": [ - "official_name=Days Inn by Wyndham", "tourism=hotel", { "or": [ "brand=Days Inn", "brand:wikidata=Q1047239", - "name=Days Inn" + "name=Days Inn", + "official_name=Days Inn by Wyndham" ] } ] @@ -512605,7 +512970,7 @@ }, { "question": "Delta Hotels", - "icon": "./assets/data/nsi/logos/deltahotels-c8d055.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deltahotels-c8d055.png", "osmTags": { "and": [ "tourism=hotel", @@ -512621,7 +512986,7 @@ }, { "question": "Design Hotels", - "icon": "./assets/data/nsi/logos/designhotels-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/designhotels-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512637,16 +513002,16 @@ }, { "question": "Destination by Hyatt", - "icon": "./assets/data/nsi/logos/destinationbyhyatt-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/destinationbyhyatt-779ccb.png", "osmTags": { "and": [ - "official_name=Destination Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Destination by Hyatt", "brand:wikidata=Q5265133", - "name=Destination by Hyatt" + "name=Destination by Hyatt", + "official_name=Destination Hotels & Resorts" ] } ] @@ -512654,7 +513019,7 @@ }, { "question": "Diamond Resorts", - "icon": "./assets/data/nsi/logos/diamondresorts-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diamondresorts-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512670,7 +513035,7 @@ }, { "question": "Dorint", - "icon": "./assets/data/nsi/logos/dorint-be5b30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorint-be5b30.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512686,16 +513051,16 @@ }, { "question": "DoubleTree", - "icon": "./assets/data/nsi/logos/doubletree-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/doubletree-779ccb.jpg", "osmTags": { "and": [ - "official_name=DoubleTree by Hilton", "tourism=hotel", { "or": [ "brand=DoubleTree", "brand:wikidata=Q2504643", - "name=DoubleTree" + "name=DoubleTree", + "official_name=DoubleTree by Hilton" ] } ] @@ -512703,7 +513068,7 @@ }, { "question": "Drury Inn & Suites", - "icon": "./assets/data/nsi/logos/druryinnandsuites-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/druryinnandsuites-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512719,7 +513084,7 @@ }, { "question": "easyHotel", - "icon": "./assets/data/nsi/logos/easyhotel-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easyhotel-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512735,7 +513100,7 @@ }, { "question": "Edition", - "icon": "./assets/data/nsi/logos/edition-24940c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edition-24940c.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512751,16 +513116,16 @@ }, { "question": "Eko Hotels and Suites", - "icon": "./assets/data/nsi/logos/ekohotels-3e7857.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekohotels-3e7857.jpg", "osmTags": { "and": [ - "official_name=Eko Hotels and Suites", "tourism=hotel", { "or": [ "brand=Eko Hotels and Suites", "brand:wikidata=Q23777901", - "name=Eko Hotels" + "name=Eko Hotels", + "official_name=Eko Hotels and Suites" ] } ] @@ -512768,7 +513133,7 @@ }, { "question": "Element by Westin", - "icon": "./assets/data/nsi/logos/element-6dd642.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/element-6dd642.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512784,16 +513149,16 @@ }, { "question": "Embassy Suites", - "icon": "./assets/data/nsi/logos/embassysuites-c158ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/embassysuites-c158ff.jpg", "osmTags": { "and": [ - "official_name=Embassy Suites by Hilton", "tourism=hotel", { "or": [ "brand=Embassy Suites", "brand:wikidata=Q5369524", - "name=Embassy Suites" + "name=Embassy Suites", + "official_name=Embassy Suites by Hilton" ] } ] @@ -512801,7 +513166,7 @@ }, { "question": "Eurostars", - "icon": "./assets/data/nsi/logos/eurostars-4dcf5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurostars-4dcf5e.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512817,7 +513182,7 @@ }, { "question": "EVEN Hotels", - "icon": "./assets/data/nsi/logos/evenhotel-a857f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evenhotel-a857f2.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512833,7 +513198,7 @@ }, { "question": "Exe Hotels", - "icon": "./assets/data/nsi/logos/exe-312633.png", + "icon": "https://data.mapcomplete.org/nsi//logos/exe-312633.png", "osmTags": { "and": [ "tourism=hotel", @@ -512849,7 +513214,7 @@ }, { "question": "Extended Stay America", - "icon": "./assets/data/nsi/logos/extendedstayamerica-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/extendedstayamerica-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512880,16 +513245,16 @@ }, { "question": "Fairfield Inn", - "icon": "./assets/data/nsi/logos/fairfieldinn-b80dae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fairfieldinn-b80dae.jpg", "osmTags": { "and": [ - "official_name=Fairfield by Marriott", "tourism=hotel", { "or": [ "brand=Fairfield Inn", "brand:wikidata=Q5430314", - "name=Fairfield Inn" + "name=Fairfield Inn", + "official_name=Fairfield by Marriott" ] } ] @@ -512897,16 +513262,16 @@ }, { "question": "Fairfield Inn & Suites", - "icon": "./assets/data/nsi/logos/fairfieldinnandsuites-29a1d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fairfieldinnandsuites-29a1d7.jpg", "osmTags": { "and": [ - "official_name=Fairfield Inn & Suites by Marriott", "tourism=hotel", { "or": [ "brand=Fairfield Inn & Suites", "brand:wikidata=Q5430314", - "name=Fairfield Inn & Suites" + "name=Fairfield Inn & Suites", + "official_name=Fairfield Inn & Suites by Marriott" ] } ] @@ -512914,7 +513279,7 @@ }, { "question": "Fairmont", - "icon": "./assets/data/nsi/logos/fairmont-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fairmont-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512930,7 +513295,7 @@ }, { "question": "Fasthôtel", - "icon": "./assets/data/nsi/logos/fasthotel-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fasthotel-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512946,7 +513311,7 @@ }, { "question": "First Hotels", - "icon": "./assets/data/nsi/logos/firsthotels-ed076a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firsthotels-ed076a.png", "osmTags": { "and": [ "tourism=hotel", @@ -512961,7 +513326,7 @@ }, { "question": "Flair Hotel", - "icon": "./assets/data/nsi/logos/flairhotel-2d87b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flairhotel-2d87b5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512977,7 +513342,7 @@ }, { "question": "Fletcher Hotel", - "icon": "./assets/data/nsi/logos/fletcherhotel-a4f814.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fletcherhotel-a4f814.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -512993,7 +513358,7 @@ }, { "question": "Four Points by Sheraton", - "icon": "./assets/data/nsi/logos/fourpointsbysheraton-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fourpointsbysheraton-779ccb.jpg", "osmTags": { "and": [ "short_name=Four Points", @@ -513010,7 +513375,7 @@ }, { "question": "Four Seasons", - "icon": "./assets/data/nsi/logos/fourseasons-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fourseasons-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513040,7 +513405,7 @@ }, { "question": "Gaylord", - "icon": "./assets/data/nsi/logos/gaylord-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gaylord-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513056,16 +513421,16 @@ }, { "question": "GLō", - "icon": "./assets/data/nsi/logos/glo-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glo-779ccb.jpg", "osmTags": { "and": [ - "official_name=Glo Best Western", "tourism=hotel", { "or": [ "brand=Glo", "brand:wikidata=Q830334", - "name=Glo" + "name=Glo", + "official_name=Glo Best Western" ] } ] @@ -513088,7 +513453,7 @@ }, { "question": "Golden Tulip", - "icon": "./assets/data/nsi/logos/goldentulip-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goldentulip-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -513104,16 +513469,16 @@ }, { "question": "Graduate", - "icon": "./assets/data/nsi/logos/graduate-7e47e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/graduate-7e47e0.jpg", "osmTags": { "and": [ - "official_name=Graduate Hotels", "tourism=hotel", { "or": [ "brand=Graduate", "brand:wikidata=Q85846030", - "name=Graduate" + "name=Graduate", + "official_name=Graduate Hotels" ] } ] @@ -513136,7 +513501,7 @@ }, { "question": "Greene King", - "icon": "./assets/data/nsi/logos/greeneking-3fca16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greeneking-3fca16.jpg", "osmTags": { "and": [ "internet_access=wlan", @@ -513153,7 +513518,7 @@ }, { "question": "greet", - "icon": "./assets/data/nsi/logos/greet-046fe6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greet-046fe6.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513169,7 +513534,7 @@ }, { "question": "Grupo Barceló", - "icon": "./assets/data/nsi/logos/grupobarcelo-a464b1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/grupobarcelo-a464b1.png", "osmTags": { "and": [ "tourism=hotel", @@ -513185,7 +513550,7 @@ }, { "question": "Grupotel Hotels & Resorts", - "icon": "./assets/data/nsi/logos/grupotel-775941.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grupotel-775941.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513201,7 +513566,7 @@ }, { "question": "gut-Gebucht", - "icon": "./assets/data/nsi/logos/gutgebucht-343fd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gutgebucht-343fd5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513221,7 +513586,7 @@ }, { "question": "H10 Hotels", - "icon": "./assets/data/nsi/logos/h10-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/h10-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513237,17 +513602,17 @@ }, { "question": "Hampton", - "icon": "./assets/data/nsi/logos/hampton-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hampton-779ccb.jpg", "osmTags": { "and": [ - "official_name=Hampton by Hilton", "tourism=hotel", { "or": [ "alt_name=Hampton Inn", "brand=Hampton", "brand:wikidata=Q5646230", - "name=Hampton" + "name=Hampton", + "official_name=Hampton by Hilton" ] } ] @@ -513255,16 +513620,16 @@ }, { "question": "Hampton Inn & Suites", - "icon": "./assets/data/nsi/logos/hamptoninnandsuites-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamptoninnandsuites-6ac210.jpg", "osmTags": { "and": [ - "official_name=Hampton Inn & Suites by Hilton", "tourism=hotel", { "or": [ "brand=Hampton Inn & Suites", "brand:wikidata=Q5646230", - "name=Hampton Inn & Suites" + "name=Hampton Inn & Suites", + "official_name=Hampton Inn & Suites by Hilton" ] } ] @@ -513272,16 +513637,16 @@ }, { "question": "Hard Rock Hotel", - "icon": "./assets/data/nsi/logos/hardrockhotel-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hardrockhotel-779ccb.jpg", "osmTags": { "and": [ - "official_name=Hard Rock Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Hard Rock Hotel", "brand:wikidata=Q109275902", - "name=Hard Rock Hotel" + "name=Hard Rock Hotel", + "official_name=Hard Rock Hotels & Resorts" ] } ] @@ -513289,17 +513654,17 @@ }, { "question": "Hawthorn Suites", - "icon": "./assets/data/nsi/logos/hawthornsuites-1591e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawthornsuites-1591e1.jpg", "osmTags": { "and": [ - "official_name=Hawthorn Suites by Wyndham", "short_name=Hawthorn", "tourism=hotel", { "or": [ "brand=Hawthorn Suites", "brand:wikidata=Q5685511", - "name=Hawthorn Suites" + "name=Hawthorn Suites", + "official_name=Hawthorn Suites by Wyndham" ] } ] @@ -513307,7 +513672,7 @@ }, { "question": "HF Hotels", - "icon": "./assets/data/nsi/logos/hf-599262.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hf-599262.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513323,7 +513688,7 @@ }, { "question": "Hilton", - "icon": "./assets/data/nsi/logos/hilton-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hilton-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513339,7 +513704,7 @@ }, { "question": "Hilton Garden Inn", - "icon": "./assets/data/nsi/logos/hiltongardeninn-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hiltongardeninn-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513355,7 +513720,7 @@ }, { "question": "Hilton Grand Vacations", - "icon": "./assets/data/nsi/logos/hiltongrandvacations-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hiltongrandvacations-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513371,7 +513736,7 @@ }, { "question": "Holiday Inn", - "icon": "./assets/data/nsi/logos/holidayinn-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holidayinn-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513387,7 +513752,7 @@ }, { "question": "Holiday Inn Club Vacations", - "icon": "./assets/data/nsi/logos/holidayinnclubvacations-27a8cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holidayinnclubvacations-27a8cb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513403,7 +513768,7 @@ }, { "question": "Holiday Inn Express", - "icon": "./assets/data/nsi/logos/holidayinnexpress-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holidayinnexpress-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513419,7 +513784,7 @@ }, { "question": "Holiday Inn Express & Suites", - "icon": "./assets/data/nsi/logos/holidayinnexpressandsuites-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holidayinnexpressandsuites-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513435,16 +513800,16 @@ }, { "question": "Home2 Suites", - "icon": "./assets/data/nsi/logos/home2suites-8729f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/home2suites-8729f6.jpg", "osmTags": { "and": [ - "official_name=Home2 Suites by Hilton", "tourism=hotel", { "or": [ "brand=Home2 Suites", "brand:wikidata=Q5887912", - "name=Home2 Suites" + "name=Home2 Suites", + "official_name=Home2 Suites by Hilton" ] } ] @@ -513454,12 +513819,12 @@ "question": "Homes & Villas by Marriott", "osmTags": { "and": [ - "official_name=Homes & Villas by Marriott International", "tourism=hotel", { "or": [ "brand=Homes & Villas", - "name=Homes & Villas" + "name=Homes & Villas", + "official_name=Homes & Villas by Marriott International" ] } ] @@ -513467,16 +513832,16 @@ }, { "question": "Homewood Suites", - "icon": "./assets/data/nsi/logos/homewoodsuites-a1b516.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/homewoodsuites-a1b516.jpg", "osmTags": { "and": [ - "official_name=Homewood Suites by Hilton", "tourism=hotel", { "or": [ "brand=Homewood Suites", "brand:wikidata=Q5890701", - "name=Homewood Suites" + "name=Homewood Suites", + "official_name=Homewood Suites by Hilton" ] } ] @@ -513484,7 +513849,7 @@ }, { "question": "Hotel Indigo", - "icon": "./assets/data/nsi/logos/hotelindigo-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotelindigo-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513500,7 +513865,7 @@ }, { "question": "Hotel Seri Malaysia", - "icon": "./assets/data/nsi/logos/hotelserimalaysia-fd56b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotelserimalaysia-fd56b0.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513548,7 +513913,7 @@ }, { "question": "hotelF1", - "icon": "./assets/data/nsi/logos/hotelf1-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hotelf1-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513564,16 +513929,16 @@ }, { "question": "Howard Johnson", - "icon": "./assets/data/nsi/logos/howardjohnson-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/howardjohnson-779ccb.jpg", "osmTags": { "and": [ - "official_name=Howard Johnson by Wyndham", "tourism=hotel", { "or": [ "brand=Howard Johnson", "brand:wikidata=Q5919997", - "name=Howard Johnson" + "name=Howard Johnson", + "official_name=Howard Johnson by Wyndham" ] } ] @@ -513581,7 +513946,7 @@ }, { "question": "Hyatt", - "icon": "./assets/data/nsi/logos/hyatt-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyatt-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513597,7 +513962,7 @@ }, { "question": "Hyatt Centric", - "icon": "./assets/data/nsi/logos/hyattcentric-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyattcentric-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513613,7 +513978,7 @@ }, { "question": "Hyatt House", - "icon": "./assets/data/nsi/logos/hyatthouse-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyatthouse-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513629,7 +513994,7 @@ }, { "question": "Hyatt Place", - "icon": "./assets/data/nsi/logos/hyattplace-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyattplace-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513660,7 +514025,7 @@ }, { "question": "Hyatt Vacation Club", - "icon": "./assets/data/nsi/logos/hyattvacationclub-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyattvacationclub-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513676,7 +514041,7 @@ }, { "question": "Iberostar Hotels & Resorts", - "icon": "./assets/data/nsi/logos/iberostarhotelsandresorts-e0d9de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberostarhotelsandresorts-e0d9de.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513691,7 +514056,7 @@ }, { "question": "Ibis", - "icon": "./assets/data/nsi/logos/ibis-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ibis-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -513707,7 +514072,7 @@ }, { "question": "Ibis Budget", - "icon": "./assets/data/nsi/logos/ibisbudget-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ibisbudget-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513723,7 +514088,7 @@ }, { "question": "Ibis Styles", - "icon": "./assets/data/nsi/logos/ibisstyles-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ibisstyles-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513739,7 +514104,7 @@ }, { "question": "iH Hotel", - "icon": "./assets/data/nsi/logos/ihhotel-f65793.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ihhotel-f65793.png", "osmTags": { "and": [ "tourism=hotel", @@ -513755,7 +514120,7 @@ }, { "question": "INNSiDE by Meliá", - "icon": "./assets/data/nsi/logos/innsidebymelia-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/innsidebymelia-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513771,7 +514136,7 @@ }, { "question": "IntercityHotel", - "icon": "./assets/data/nsi/logos/intercityhotel-360354.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intercityhotel-360354.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513787,7 +514152,7 @@ }, { "question": "InterContinental", - "icon": "./assets/data/nsi/logos/intercontinental-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intercontinental-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513817,16 +514182,16 @@ }, { "question": "JdV by Hyatt", - "icon": "./assets/data/nsi/logos/jdvbyhyatt-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jdvbyhyatt-779ccb.png", "osmTags": { "and": [ - "official_name=Joie de Vivre Hospitality", "tourism=hotel", { "or": [ "brand=JdV by Hyatt", "brand:wikidata=Q6268973", - "name=JdV by Hyatt" + "name=JdV by Hyatt", + "official_name=Joie de Vivre Hospitality" ] } ] @@ -513834,7 +514199,7 @@ }, { "question": "JO&JOE", - "icon": "./assets/data/nsi/logos/joandjoe-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joandjoe-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513850,7 +514215,7 @@ }, { "question": "JW Marriott", - "icon": "./assets/data/nsi/logos/jwmarriott-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jwmarriott-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513866,7 +514231,7 @@ }, { "question": "Kempinski", - "icon": "./assets/data/nsi/logos/kempinski-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kempinski-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513882,7 +514247,7 @@ }, { "question": "Kimpton", - "icon": "./assets/data/nsi/logos/kimpton-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kimpton-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513898,7 +514263,7 @@ }, { "question": "Kyriad", - "icon": "./assets/data/nsi/logos/kyriad-e6de24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyriad-e6de24.png", "osmTags": { "and": [ "tourism=hotel", @@ -513914,16 +514279,16 @@ }, { "question": "La Quinta Inn", - "icon": "./assets/data/nsi/logos/laquintainn-a0e6b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laquintainn-a0e6b5.jpg", "osmTags": { "and": [ - "official_name=La Quinta Inn by Wyndham", "tourism=hotel", { "or": [ "brand=La Quinta Inn", "brand:wikidata=Q6464734", - "name=La Quinta Inn" + "name=La Quinta Inn", + "official_name=La Quinta Inn by Wyndham" ] } ] @@ -513931,16 +514296,16 @@ }, { "question": "La Quinta Inn & Suites", - "icon": "./assets/data/nsi/logos/laquintainnandsuites-cf4e07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laquintainnandsuites-cf4e07.jpg", "osmTags": { "and": [ - "official_name=La Quinta Inn & Suites by Wyndham", "tourism=hotel", { "or": [ "brand=La Quinta Inn & Suites", "brand:wikidata=Q6464734", - "name=La Quinta Inn & Suites" + "name=La Quinta Inn & Suites", + "official_name=La Quinta Inn & Suites by Wyndham" ] } ] @@ -513948,7 +514313,7 @@ }, { "question": "Le Méridien", - "icon": "./assets/data/nsi/logos/lemeridien-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lemeridien-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -513964,7 +514329,7 @@ }, { "question": "Leonardo Boutique", - "icon": "./assets/data/nsi/logos/leonardoboutique-97784d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leonardoboutique-97784d.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513980,7 +514345,7 @@ }, { "question": "Leonardo Hotels", - "icon": "./assets/data/nsi/logos/leonardohotels-e45a92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leonardohotels-e45a92.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -513996,7 +514361,7 @@ }, { "question": "Leonardo Hotels (Ireland/UK)", - "icon": "./assets/data/nsi/logos/leonardohotels-f8f6ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leonardohotels-f8f6ae.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514012,7 +514377,7 @@ }, { "question": "Leonardo Royal Hotel", - "icon": "./assets/data/nsi/logos/leonardoroyalhotel-220d87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leonardoroyalhotel-220d87.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514028,7 +514393,7 @@ }, { "question": "Locke", - "icon": "./assets/data/nsi/logos/locke-34f092.png", + "icon": "https://data.mapcomplete.org/nsi//logos/locke-34f092.png", "osmTags": { "and": [ "tourism=hotel", @@ -514044,7 +514409,7 @@ }, { "question": "Logis Hotels", - "icon": "./assets/data/nsi/logos/logishotels-a67635.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/logishotels-a67635.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514060,7 +514425,7 @@ }, { "question": "Lotte Hotel", - "icon": "./assets/data/nsi/logos/lottehotel-304b57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lottehotel-304b57.jpg", "osmTags": { "and": [ "short_name=Lotte", @@ -514077,7 +514442,7 @@ }, { "question": "LXR Hotels & Resorts", - "icon": "./assets/data/nsi/logos/lxr-c9a464.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lxr-c9a464.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514108,7 +514473,7 @@ }, { "question": "MacDonald Hotels", - "icon": "./assets/data/nsi/logos/macdonaldhotels-3fca16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macdonaldhotels-3fca16.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514139,7 +514504,7 @@ }, { "question": "Malmaison", - "icon": "./assets/data/nsi/logos/malmaison-3fca16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/malmaison-3fca16.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514154,7 +514519,7 @@ }, { "question": "Mama Shelter", - "icon": "./assets/data/nsi/logos/mamashelter-0d5f7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mamashelter-0d5f7f.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514170,7 +514535,7 @@ }, { "question": "Mandarin Oriental Hotel", - "icon": "./assets/data/nsi/logos/mandarinorientalhotel-428a55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandarinorientalhotel-428a55.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514185,7 +514550,7 @@ }, { "question": "Marriott", - "icon": "./assets/data/nsi/logos/marriott-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marriott-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -514201,7 +514566,7 @@ }, { "question": "Marriott Executive Apartments", - "icon": "./assets/data/nsi/logos/marriottexecutiveapartments-b2f419.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marriottexecutiveapartments-b2f419.svg", "osmTags": { "and": [ "tourism=hotel", @@ -514217,7 +514582,7 @@ }, { "question": "Marriott Vacation Club", - "icon": "./assets/data/nsi/logos/marriottvacationclub-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marriottvacationclub-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -514233,7 +514598,7 @@ }, { "question": "Martin's Hotels", - "icon": "./assets/data/nsi/logos/martinshotels-3dc313.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/martinshotels-3dc313.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514249,7 +514614,7 @@ }, { "question": "McMenamins", - "icon": "./assets/data/nsi/logos/mcmenamins-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcmenamins-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514264,7 +514629,7 @@ }, { "question": "ME", - "icon": "./assets/data/nsi/logos/mebymelia-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mebymelia-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514280,16 +514645,16 @@ }, { "question": "Meininger", - "icon": "./assets/data/nsi/logos/meininger-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meininger-779ccb.jpg", "osmTags": { "and": [ - "official_name=Meininger Hotels", "tourism=hotel", { "or": [ "brand=Meininger", "brand:wikidata=Q42773330", - "name=Meininger" + "name=Meininger", + "official_name=Meininger Hotels" ] } ] @@ -514297,7 +514662,7 @@ }, { "question": "Meliá", - "icon": "./assets/data/nsi/logos/melia-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/melia-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -514313,7 +514678,7 @@ }, { "question": "Mercure", - "icon": "./assets/data/nsi/logos/mercure-8a2ff3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercure-8a2ff3.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514329,7 +514694,7 @@ }, { "question": "MGallery", - "icon": "./assets/data/nsi/logos/mgallery-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mgallery-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514345,16 +514710,16 @@ }, { "question": "Microtel", - "icon": "./assets/data/nsi/logos/microtel-1638bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/microtel-1638bb.jpg", "osmTags": { "and": [ - "official_name=Microtel by Wyndham", "tourism=hotel", { "or": [ "brand=Microtel", "brand:wikidata=Q6840402", - "name=Microtel" + "name=Microtel", + "official_name=Microtel by Wyndham" ] } ] @@ -514362,16 +514727,16 @@ }, { "question": "Microtel Inn & Suites", - "icon": "./assets/data/nsi/logos/microtelinnandsuites-29a1d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/microtelinnandsuites-29a1d7.jpg", "osmTags": { "and": [ - "official_name=Microtel Inn & Suites by Wyndham", "tourism=hotel", { "or": [ "brand=Microtel Inn & Suites", "brand:wikidata=Q6840402", - "name=Microtel Inn & Suites" + "name=Microtel Inn & Suites", + "official_name=Microtel Inn & Suites by Wyndham" ] } ] @@ -514379,16 +514744,16 @@ }, { "question": "Millennium", - "icon": "./assets/data/nsi/logos/millennium-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/millennium-779ccb.jpg", "osmTags": { "and": [ - "official_name=Millennium Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Millennium", "brand:wikidata=Q6858774", - "name=Millennium" + "name=Millennium", + "official_name=Millennium Hotels & Resorts" ] } ] @@ -514396,7 +514761,7 @@ }, { "question": "MIMARU Apartment Hotel", - "icon": "./assets/data/nsi/logos/mimaruapartmenthotel-663ee5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mimaruapartmenthotel-663ee5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514414,7 +514779,7 @@ }, { "question": "Motel One", - "icon": "./assets/data/nsi/logos/motelone-1fc1b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/motelone-1fc1b4.png", "osmTags": { "and": [ "tourism=hotel", @@ -514430,16 +514795,16 @@ }, { "question": "Motto by Hilton", - "icon": "./assets/data/nsi/logos/motto-f20008.png", + "icon": "https://data.mapcomplete.org/nsi//logos/motto-f20008.png", "osmTags": { "and": [ - "official_name=Motto by Hilton", "tourism=hotel", { "or": [ "brand=Motto", "brand:wikidata=Q112144350", - "name=Motto" + "name=Motto", + "official_name=Motto by Hilton" ] } ] @@ -514447,7 +514812,7 @@ }, { "question": "Mövenpick", - "icon": "./assets/data/nsi/logos/movenpick-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/movenpick-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514463,7 +514828,7 @@ }, { "question": "Moxy", - "icon": "./assets/data/nsi/logos/moxy-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moxy-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514479,7 +514844,7 @@ }, { "question": "My Place Hotels", - "icon": "./assets/data/nsi/logos/myplacehotel-6ac210.png", + "icon": "https://data.mapcomplete.org/nsi//logos/myplacehotel-6ac210.png", "osmTags": { "and": [ "tourism=hotel", @@ -514495,7 +514860,7 @@ }, { "question": "NH Collection Hotels", - "icon": "./assets/data/nsi/logos/nhcollectionhotels-f05c75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nhcollectionhotels-f05c75.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514511,7 +514876,7 @@ }, { "question": "NH Hotels", - "icon": "./assets/data/nsi/logos/nhhotel-e9b4fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nhhotel-e9b4fb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514527,7 +514892,7 @@ }, { "question": "nhow", - "icon": "./assets/data/nsi/logos/nhow-e87c8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nhow-e87c8c.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514543,7 +514908,7 @@ }, { "question": "Nobu", - "icon": "./assets/data/nsi/logos/nobu-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nobu-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -514559,7 +514924,7 @@ }, { "question": "Novotel", - "icon": "./assets/data/nsi/logos/novotel-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novotel-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514575,7 +514940,7 @@ }, { "question": "Oaks Hotels", - "icon": "./assets/data/nsi/logos/oakshotelsresortsandsuites-bc2db3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oakshotelsresortsandsuites-bc2db3.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514591,7 +514956,7 @@ }, { "question": "Occidental", - "icon": "./assets/data/nsi/logos/occidental-e4b4d8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/occidental-e4b4d8.png", "osmTags": { "and": [ "tourism=hotel", @@ -514607,7 +514972,7 @@ }, { "question": "OYO", - "icon": "./assets/data/nsi/logos/oyo-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oyo-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514623,7 +514988,7 @@ }, { "question": "Pan Pacific", - "icon": "./assets/data/nsi/logos/panpacific-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/panpacific-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514639,15 +515004,15 @@ }, { "question": "Paradores", - "icon": "./assets/data/nsi/logos/paradores-2bddc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paradores-2bddc3.jpg", "osmTags": { "and": [ - "official_name=Paradores de Turismo de España", "tourism=hotel", { "or": [ "brand=Paradores", - "brand:wikidata=Q1476845" + "brand:wikidata=Q1476845", + "official_name=Paradores de Turismo de España" ] } ] @@ -514670,7 +515035,7 @@ }, { "question": "Park Inn", - "icon": "./assets/data/nsi/logos/parkinn-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parkinn-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -514686,7 +515051,7 @@ }, { "question": "Park Plaza", - "icon": "./assets/data/nsi/logos/parkplazahotels-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parkplazahotels-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -514717,7 +515082,7 @@ }, { "question": "Petit Palace Hotelity", - "icon": "./assets/data/nsi/logos/petitpalace-775941.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petitpalace-775941.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514733,7 +515098,7 @@ }, { "question": "Pousadas de Portugal", - "icon": "./assets/data/nsi/logos/pousadasdeportugal-599262.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pousadasdeportugal-599262.svg", "osmTags": { "and": [ "tourism=hotel", @@ -514748,7 +515113,7 @@ }, { "question": "Premier Inn", - "icon": "./assets/data/nsi/logos/premierinn-a7b4e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/premierinn-a7b4e2.png", "osmTags": { "and": [ "tourism=hotel", @@ -514764,7 +515129,7 @@ }, { "question": "Première Classe", - "icon": "./assets/data/nsi/logos/premiereclasse-a93346.png", + "icon": "https://data.mapcomplete.org/nsi//logos/premiereclasse-a93346.png", "osmTags": { "and": [ "tourism=hotel", @@ -514780,7 +515145,7 @@ }, { "question": "Protea Hotel", - "icon": "./assets/data/nsi/logos/proteahotel-dc927c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/proteahotel-dc927c.png", "osmTags": { "and": [ "tourism=hotel", @@ -514796,7 +515161,7 @@ }, { "question": "Pullman", - "icon": "./assets/data/nsi/logos/pullman-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pullman-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514812,7 +515177,7 @@ }, { "question": "Quality Inn", - "icon": "./assets/data/nsi/logos/qualityinn-29a1d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qualityinn-29a1d7.png", "osmTags": { "and": [ "tourism=hotel", @@ -514828,7 +515193,7 @@ }, { "question": "Quality Inn & Suites", - "icon": "./assets/data/nsi/logos/qualityinnandsuites-cf4e07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qualityinnandsuites-cf4e07.png", "osmTags": { "and": [ "tourism=hotel", @@ -514844,16 +515209,16 @@ }, { "question": "Qubus", - "icon": "./assets/data/nsi/logos/qubus-e2655f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qubus-e2655f.jpg", "osmTags": { "and": [ - "official_name=Qubus Hotel", "tourism=hotel", { "or": [ "brand=Qubus", "brand:wikidata=Q11832868", - "name=Qubus" + "name=Qubus", + "official_name=Qubus Hotel" ] } ] @@ -514861,7 +515226,7 @@ }, { "question": "Radisson", - "icon": "./assets/data/nsi/logos/radisson-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radisson-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514877,7 +515242,7 @@ }, { "question": "Radisson Blu", - "icon": "./assets/data/nsi/logos/radissonblu-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radissonblu-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514893,7 +515258,7 @@ }, { "question": "Radisson Collection", - "icon": "./assets/data/nsi/logos/radissoncollection-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/radissoncollection-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -514909,7 +515274,7 @@ }, { "question": "Radisson RED", - "icon": "./assets/data/nsi/logos/radissonred-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radissonred-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514925,7 +515290,7 @@ }, { "question": "Raffles", - "icon": "./assets/data/nsi/logos/raffles-771760.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/raffles-771760.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514941,16 +515306,16 @@ }, { "question": "Ramada", - "icon": "./assets/data/nsi/logos/ramada-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ramada-779ccb.jpg", "osmTags": { "and": [ - "official_name=Ramada by Wyndham", "tourism=hotel", { "or": [ "brand=Ramada", "brand:wikidata=Q1502859", - "name=Ramada" + "name=Ramada", + "official_name=Ramada by Wyndham" ] } ] @@ -514958,7 +515323,7 @@ }, { "question": "Red Lion Hotels", - "icon": "./assets/data/nsi/logos/redlionhotels-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redlionhotels-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514974,7 +515339,7 @@ }, { "question": "Red Lion Inn & Suites", - "icon": "./assets/data/nsi/logos/redlioninnandsuites-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redlioninnandsuites-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -514990,7 +515355,7 @@ }, { "question": "Red Roof Inn", - "icon": "./assets/data/nsi/logos/redroofinn-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redroofinn-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515006,7 +515371,7 @@ }, { "question": "RedDoorz", - "icon": "./assets/data/nsi/logos/reddoorz-25d260.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reddoorz-25d260.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515022,7 +515387,7 @@ }, { "question": "Relais & Châteaux", - "icon": "./assets/data/nsi/logos/relaisandchateaux-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/relaisandchateaux-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -515038,7 +515403,7 @@ }, { "question": "Renaissance", - "icon": "./assets/data/nsi/logos/renaissance-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renaissance-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515054,16 +515419,16 @@ }, { "question": "Residence Inn", - "icon": "./assets/data/nsi/logos/residenceinn-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/residenceinn-779ccb.jpg", "osmTags": { "and": [ - "official_name=Residence Inn by Marriott", "tourism=hotel", { "or": [ "brand=Residence Inn", "brand:wikidata=Q7315394", - "name=Residence Inn" + "name=Residence Inn", + "official_name=Residence Inn by Marriott" ] } ] @@ -515071,7 +515436,7 @@ }, { "question": "Ringhotels", - "icon": "./assets/data/nsi/logos/ringhotels-2d87b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ringhotels-2d87b5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515087,7 +515452,7 @@ }, { "question": "RIU", - "icon": "./assets/data/nsi/logos/riu-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riu-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -515103,7 +515468,7 @@ }, { "question": "Rixos", - "icon": "./assets/data/nsi/logos/rixos-cdcd15.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rixos-cdcd15.png", "osmTags": { "and": [ "tourism=hotel", @@ -515119,7 +515484,7 @@ }, { "question": "Romantik", - "icon": "./assets/data/nsi/logos/romantikhotel-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romantikhotel-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515135,7 +515500,7 @@ }, { "question": "Room Mate", - "icon": "./assets/data/nsi/logos/roommate-a3fb22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roommate-a3fb22.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515151,16 +515516,16 @@ }, { "question": "Rosewood", - "icon": "./assets/data/nsi/logos/rosewood-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosewood-779ccb.jpg", "osmTags": { "and": [ - "official_name=Rosewood Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Rosewood", "brand:wikidata=Q7368777", - "name=Rosewood" + "name=Rosewood", + "official_name=Rosewood Hotels & Resorts" ] } ] @@ -515168,7 +515533,7 @@ }, { "question": "Royal Hideaway", - "icon": "./assets/data/nsi/logos/royalhideaway-1a48d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/royalhideaway-1a48d0.png", "osmTags": { "and": [ "tourism=hotel", @@ -515184,7 +515549,7 @@ }, { "question": "Santika Indonesia Hotels & Resorts", - "icon": "./assets/data/nsi/logos/santikaindonesiahotelsandresorts-31e59e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santikaindonesiahotelsandresorts-31e59e.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515202,7 +515567,7 @@ }, { "question": "Scandic Hotels", - "icon": "./assets/data/nsi/logos/scandichotels-f8f452.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scandichotels-f8f452.png", "osmTags": { "and": [ "tourism=hotel", @@ -515218,7 +515583,7 @@ }, { "question": "Selina", - "icon": "./assets/data/nsi/logos/selina-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selina-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515234,7 +515599,7 @@ }, { "question": "Sercotel", - "icon": "./assets/data/nsi/logos/sercotel-775941.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sercotel-775941.png", "osmTags": { "and": [ "tourism=hotel", @@ -515250,7 +515615,7 @@ }, { "question": "Serena Hotels", - "icon": "./assets/data/nsi/logos/serenahotels-b76fe0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/serenahotels-b76fe0.png", "osmTags": { "and": [ "tourism=hotel", @@ -515266,7 +515631,7 @@ }, { "question": "Sheraton", - "icon": "./assets/data/nsi/logos/sheraton-428a55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sheraton-428a55.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515282,7 +515647,7 @@ }, { "question": "Shilo Inns", - "icon": "./assets/data/nsi/logos/shiloinns-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shiloinns-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515300,13 +515665,13 @@ "question": "Signia by Hilton", "osmTags": { "and": [ - "official_name=Signia by Hilton", "tourism=hotel", { "or": [ "brand=Signia", "brand:wikidata=Q112144335", - "name=Signia" + "name=Signia", + "official_name=Signia by Hilton" ] } ] @@ -515314,7 +515679,7 @@ }, { "question": "Silken Hoteles", - "icon": "./assets/data/nsi/logos/silken-775941.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/silken-775941.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515330,7 +515695,7 @@ }, { "question": "Six Senses", - "icon": "./assets/data/nsi/logos/sixsenses-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sixsenses-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -515346,7 +515711,7 @@ }, { "question": "Sleep Inn", - "icon": "./assets/data/nsi/logos/sleepinn-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sleepinn-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515362,7 +515727,7 @@ }, { "question": "Sleep Inn & Suites", - "icon": "./assets/data/nsi/logos/sleepinnandsuites-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sleepinnandsuites-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515378,7 +515743,7 @@ }, { "question": "Sofitel", - "icon": "./assets/data/nsi/logos/sofitel-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sofitel-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515394,7 +515759,7 @@ }, { "question": "Sonder", - "icon": "./assets/data/nsi/logos/sonder-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sonder-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -515410,7 +515775,7 @@ }, { "question": "Sonesta", - "icon": "./assets/data/nsi/logos/sonesta-690134.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonesta-690134.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515427,7 +515792,7 @@ }, { "question": "Sonesta ES Suites", - "icon": "./assets/data/nsi/logos/sonestaessuites-cf4e07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonestaessuites-cf4e07.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515443,7 +515808,7 @@ }, { "question": "Sonesta Select", - "icon": "./assets/data/nsi/logos/sonestaselect-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonestaselect-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515459,7 +515824,7 @@ }, { "question": "Sonesta Simply Suites", - "icon": "./assets/data/nsi/logos/sonestasimplysuites-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonestasimplysuites-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515475,7 +515840,7 @@ }, { "question": "Sotetsu Fresa Inn", - "icon": "./assets/data/nsi/logos/sotetsufresainn-fd1ce7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sotetsufresainn-fd1ce7.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515493,7 +515858,7 @@ }, { "question": "Southern Sun", - "icon": "./assets/data/nsi/logos/southernsun-891f5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southernsun-891f5c.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515509,16 +515874,16 @@ }, { "question": "SpringHill Suites", - "icon": "./assets/data/nsi/logos/springhillsuites-29a1d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springhillsuites-29a1d7.jpg", "osmTags": { "and": [ - "official_name=SpringHill Suites by Marriott", "tourism=hotel", { "or": [ "brand=SpringHill Suites", "brand:wikidata=Q7580351", - "name=SpringHill Suites" + "name=SpringHill Suites", + "official_name=SpringHill Suites by Marriott" ] } ] @@ -515526,7 +515891,7 @@ }, { "question": "St. Regis", - "icon": "./assets/data/nsi/logos/stregis-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stregis-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515543,7 +515908,7 @@ }, { "question": "Staybridge Suites", - "icon": "./assets/data/nsi/logos/staybridgesuites-134d5e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/staybridgesuites-134d5e.png", "osmTags": { "and": [ "tourism=hotel", @@ -515574,7 +515939,7 @@ }, { "question": "Super Hotel", - "icon": "./assets/data/nsi/logos/superhotel-353f10.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superhotel-353f10.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515592,7 +515957,7 @@ }, { "question": "Swiss-Belhotel", - "icon": "./assets/data/nsi/logos/swissbelhotel-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swissbelhotel-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515623,7 +515988,7 @@ }, { "question": "Swissôtel", - "icon": "./assets/data/nsi/logos/swissotel-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swissotel-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515640,16 +516005,16 @@ }, { "question": "Taj", - "icon": "./assets/data/nsi/logos/taj-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taj-779ccb.jpg", "osmTags": { "and": [ - "official_name=Taj Hotels", "tourism=hotel", { "or": [ "brand=Taj", "brand:wikidata=Q1521893", - "name=Taj" + "name=Taj", + "official_name=Taj Hotels" ] } ] @@ -515657,7 +516022,7 @@ }, { "question": "Tapestry Collection by Hilton", - "icon": "./assets/data/nsi/logos/tapestrycollection-1c7927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tapestrycollection-1c7927.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515674,13 +516039,13 @@ "question": "Tempo by Hilton", "osmTags": { "and": [ - "official_name=Tempo by Hilton", "tourism=hotel", { "or": [ "brand=Tempo", "brand:wikidata=Q112144357", - "name=Tempo" + "name=Tempo", + "official_name=Tempo by Hilton" ] } ] @@ -515688,7 +516053,7 @@ }, { "question": "The Hoxton", - "icon": "./assets/data/nsi/logos/thehoxton-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehoxton-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515704,7 +516069,7 @@ }, { "question": "The Langham", - "icon": "./assets/data/nsi/logos/langhamhotelsandresorts-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/langhamhotelsandresorts-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515720,7 +516085,7 @@ }, { "question": "The Leela", - "icon": "./assets/data/nsi/logos/theleela-b22a38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theleela-b22a38.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515736,7 +516101,7 @@ }, { "question": "The Luxury Collection", - "icon": "./assets/data/nsi/logos/theluxurycollection-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theluxurycollection-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515751,7 +516116,7 @@ }, { "question": "the niu", - "icon": "./assets/data/nsi/logos/theniu-3dd84b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theniu-3dd84b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515767,7 +516132,7 @@ }, { "question": "The Originals Access", - "icon": "./assets/data/nsi/logos/theoriginalsaccess-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theoriginalsaccess-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515783,7 +516148,7 @@ }, { "question": "The Originals Boutique", - "icon": "./assets/data/nsi/logos/theoriginalsboutique-89858b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/theoriginalsboutique-89858b.png", "osmTags": { "and": [ "tourism=hotel", @@ -515814,7 +516179,7 @@ }, { "question": "The Originals Collection", - "icon": "./assets/data/nsi/logos/theoriginalscollection-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theoriginalscollection-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515830,7 +516195,7 @@ }, { "question": "The Originals Relais", - "icon": "./assets/data/nsi/logos/theoriginalsrelais-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theoriginalsrelais-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515846,7 +516211,7 @@ }, { "question": "The Originals Residence", - "icon": "./assets/data/nsi/logos/theoriginalsresidence-89858b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theoriginalsresidence-89858b.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515862,7 +516227,7 @@ }, { "question": "The Ritz-Carlton", - "icon": "./assets/data/nsi/logos/theritzcarlton-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theritzcarlton-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515878,7 +516243,7 @@ }, { "question": "The Sebel", - "icon": "./assets/data/nsi/logos/thesebel-a311b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thesebel-a311b9.png", "osmTags": { "and": [ "tourism=hotel", @@ -515894,7 +516259,7 @@ }, { "question": "The Westin", - "icon": "./assets/data/nsi/logos/thewestin-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thewestin-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515910,7 +516275,7 @@ }, { "question": "Tivoli", - "icon": "./assets/data/nsi/logos/tivolihotelsandresorts-0f28e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tivolihotelsandresorts-0f28e2.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515926,16 +516291,16 @@ }, { "question": "TownePlace Suites", - "icon": "./assets/data/nsi/logos/towneplacesuites-cf4e07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/towneplacesuites-cf4e07.jpg", "osmTags": { "and": [ - "official_name=TownePlace Suites by Marriott", "tourism=hotel", { "or": [ "brand=TownePlace Suites", "brand:wikidata=Q7830092", - "name=TownePlace Suites" + "name=TownePlace Suites", + "official_name=TownePlace Suites by Marriott" ] } ] @@ -515943,7 +516308,7 @@ }, { "question": "Toyoko Inn", - "icon": "./assets/data/nsi/logos/toyokoinn-6b9be5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toyokoinn-6b9be5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -515959,16 +516324,16 @@ }, { "question": "Trademark Collection", - "icon": "./assets/data/nsi/logos/trademarkcollection-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trademarkcollection-779ccb.png", "osmTags": { "and": [ - "official_name=Trademark Collection by Wyndham", "tourism=hotel", { "or": [ "brand=Trademark Collection", "brand:wikidata=Q112144846", - "name=Trademark Collection" + "name=Trademark Collection", + "official_name=Trademark Collection by Wyndham" ] } ] @@ -515976,7 +516341,7 @@ }, { "question": "Travelodge (Asia/Oceania)", - "icon": "./assets/data/nsi/logos/travelodge-2e0dc6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/travelodge-2e0dc6.png", "osmTags": { "and": [ "tourism=hotel", @@ -515992,7 +516357,7 @@ }, { "question": "Travelodge (Europe)", - "icon": "./assets/data/nsi/logos/travelodge-dec11e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/travelodge-dec11e.jpg", "osmTags": { "and": [ "internet_access=wlan", @@ -516011,7 +516376,7 @@ }, { "question": "Travelodge (North America)", - "icon": "./assets/data/nsi/logos/travelodge-cf4e07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/travelodge-cf4e07.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516055,7 +516420,7 @@ }, { "question": "TRIBE", - "icon": "./assets/data/nsi/logos/tribe-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tribe-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516071,7 +516436,7 @@ }, { "question": "Tribute Portfolio", - "icon": "./assets/data/nsi/logos/tributeportfolio-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tributeportfolio-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516086,16 +516451,16 @@ }, { "question": "Tru", - "icon": "./assets/data/nsi/logos/tru-6ac210.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tru-6ac210.png", "osmTags": { "and": [ - "official_name=Tru by Hilton", "tourism=hotel", { "or": [ "brand=Tru", "brand:wikidata=Q24907770", - "name=Tru" + "name=Tru", + "official_name=Tru by Hilton" ] } ] @@ -516103,16 +516468,16 @@ }, { "question": "TRYP", - "icon": "./assets/data/nsi/logos/tryp-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tryp-779ccb.jpg", "osmTags": { "and": [ - "official_name=TRYP by Wyndham", "tourism=hotel", { "or": [ "brand=TRYP", "brand:wikidata=Q6153452", - "name=TRYP" + "name=TRYP", + "official_name=TRYP by Wyndham" ] } ] @@ -516120,7 +516485,7 @@ }, { "question": "UNA Hotels & Resorts", - "icon": "./assets/data/nsi/logos/unahotelsandresorts-f65793.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unahotelsandresorts-f65793.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516136,7 +516501,7 @@ }, { "question": "Unbound Collection", - "icon": "./assets/data/nsi/logos/unboundcollection-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unboundcollection-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -516165,7 +516530,7 @@ }, { "question": "Van der Valk Hotel", - "icon": "./assets/data/nsi/logos/vandervalkhotel-1676dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vandervalkhotel-1676dc.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516181,16 +516546,16 @@ }, { "question": "Vib", - "icon": "./assets/data/nsi/logos/vib-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vib-779ccb.jpg", "osmTags": { "and": [ - "official_name=Vib Best Western", "tourism=hotel", { "or": [ "brand=Vib", "brand:wikidata=Q830334", - "name=Vib" + "name=Vib", + "official_name=Vib Best Western" ] } ] @@ -516198,7 +516563,7 @@ }, { "question": "Vibra Hotels", - "icon": "./assets/data/nsi/logos/vibra-775941.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vibra-775941.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516229,16 +516594,16 @@ }, { "question": "Vienna House", - "icon": "./assets/data/nsi/logos/viennahouse-046fe6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/viennahouse-046fe6.jpg", "osmTags": { "and": [ - "official_name=Vienna House by Wyndham", "tourism=hotel", { "or": [ "brand=Vienna House", "brand:wikidata=Q2523363", - "name=Vienna House" + "name=Vienna House", + "official_name=Vienna House by Wyndham" ] } ] @@ -516246,7 +516611,7 @@ }, { "question": "Virgin Hotel", - "icon": "./assets/data/nsi/logos/virginhotels-7e47e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginhotels-7e47e0.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516262,7 +516627,7 @@ }, { "question": "voco", - "icon": "./assets/data/nsi/logos/voco-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/voco-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516278,7 +516643,7 @@ }, { "question": "W Hotels", - "icon": "./assets/data/nsi/logos/whotels-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/whotels-779ccb.jpg", "osmTags": { "and": [ "short_name=W", @@ -516295,7 +516660,7 @@ }, { "question": "Waldorf Astoria", - "icon": "./assets/data/nsi/logos/waldorfastoria-665f74.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/waldorfastoria-665f74.svg", "osmTags": { "and": [ "tourism=hotel", @@ -516311,16 +516676,16 @@ }, { "question": "Wingate", - "icon": "./assets/data/nsi/logos/wingate-ea697d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wingate-ea697d.jpg", "osmTags": { "and": [ - "official_name=Wingate by Wyndham", "tourism=hotel", { "or": [ "brand=Wingate", "brand:wikidata=Q8025144", - "name=Wingate" + "name=Wingate", + "official_name=Wingate by Wyndham" ] } ] @@ -516328,7 +516693,7 @@ }, { "question": "WoodSpring Suites", - "icon": "./assets/data/nsi/logos/woodspringsuites-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woodspringsuites-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516344,7 +516709,7 @@ }, { "question": "WorldMark", - "icon": "./assets/data/nsi/logos/worldmarkbywyndham-6ac210.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldmarkbywyndham-6ac210.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516360,16 +516725,16 @@ }, { "question": "Wyndham", - "icon": "./assets/data/nsi/logos/wyndham-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wyndham-779ccb.jpg", "osmTags": { "and": [ - "official_name=Wyndham Hotels & Resorts", "tourism=hotel", { "or": [ "brand=Wyndham", "brand:wikidata=Q8040120", - "name=Wyndham" + "name=Wyndham", + "official_name=Wyndham Hotels & Resorts" ] } ] @@ -516377,7 +516742,7 @@ }, { "question": "Wyndham Garden", - "icon": "./assets/data/nsi/logos/wyndhamgarden-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wyndhamgarden-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516393,7 +516758,7 @@ }, { "question": "Wyndham Grand", - "icon": "./assets/data/nsi/logos/wyndhamgrand-779ccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wyndhamgrand-779ccb.png", "osmTags": { "and": [ "tourism=hotel", @@ -516409,7 +516774,7 @@ }, { "question": "YOTEL", - "icon": "./assets/data/nsi/logos/yotel-ebcca5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yotel-ebcca5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516425,7 +516790,7 @@ }, { "question": "Zleep Hotel", - "icon": "./assets/data/nsi/logos/zleephotels-d726c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zleephotels-d726c7.png", "osmTags": { "and": [ "tourism=hotel", @@ -516455,7 +516820,7 @@ }, { "question": "アパホテル", - "icon": "./assets/data/nsi/logos/apahotel-663ee5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apahotel-663ee5.png", "osmTags": { "and": [ "tourism=hotel", @@ -516513,7 +516878,7 @@ }, { "question": "凱撒飯店連鎖", - "icon": "./assets/data/nsi/logos/caesarparkhotelsandresorts-e06ce0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caesarparkhotelsandresorts-e06ce0.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516537,7 +516902,7 @@ }, { "question": "喜來登", - "icon": "./assets/data/nsi/logos/sheraton-e06ce0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sheraton-e06ce0.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516557,7 +516922,7 @@ }, { "question": "喜來登 Sheraton", - "icon": "./assets/data/nsi/logos/sheraton-6fa074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sheraton-6fa074.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516577,7 +516942,7 @@ }, { "question": "喜来登", - "icon": "./assets/data/nsi/logos/sheraton-28932e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sheraton-28932e.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516597,7 +516962,7 @@ }, { "question": "國賓大飯店", - "icon": "./assets/data/nsi/logos/ambassadorhotel-e06ce0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambassadorhotel-e06ce0.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516639,7 +517004,7 @@ }, { "question": "宜必思酒店", - "icon": "./assets/data/nsi/logos/ibis-28932e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ibis-28932e.png", "osmTags": { "and": [ "tourism=hotel", @@ -516678,7 +517043,7 @@ }, { "question": "文华东方酒店集团", - "icon": "./assets/data/nsi/logos/mandarinorientalhotel-28932e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandarinorientalhotel-28932e.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516695,7 +517060,7 @@ }, { "question": "文華東方酒店集團", - "icon": "./assets/data/nsi/logos/mandarinorientalhotel-e06ce0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandarinorientalhotel-e06ce0.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516712,7 +517077,7 @@ }, { "question": "文華東方酒店集團 Mandarin Oriental Hotel", - "icon": "./assets/data/nsi/logos/mandarinorientalhotel-6fa074.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mandarinorientalhotel-6fa074.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516729,7 +517094,7 @@ }, { "question": "東横イン", - "icon": "./assets/data/nsi/logos/toyokoinn-663ee5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toyokoinn-663ee5.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516768,7 +517133,7 @@ }, { "question": "神旺大飯店", - "icon": "./assets/data/nsi/logos/sanwanthotels-684f55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanwanthotels-684f55.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516792,7 +517157,7 @@ }, { "question": "福容大飯店", - "icon": "./assets/data/nsi/logos/fullonhotelsandresorts-e06ce0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fullonhotelsandresorts-e06ce0.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516835,7 +517200,7 @@ }, { "question": "美居酒店", - "icon": "./assets/data/nsi/logos/mercure-28932e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercure-28932e.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516855,7 +517220,7 @@ }, { "question": "老爺酒店", - "icon": "./assets/data/nsi/logos/hotelroyal-e06ce0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hotelroyal-e06ce0.png", "osmTags": { "and": [ "tourism=hotel", @@ -516875,10 +517240,9 @@ }, { "question": "速8酒店", - "icon": "./assets/data/nsi/logos/super8-af4cd2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/super8-af4cd2.jpg", "osmTags": { "and": [ - "official_name=Super 8 by Wyndham", "tourism=hotel", { "or": [ @@ -516888,7 +517252,8 @@ "brand:zh=速8酒店", "name=速8酒店", "name:en=Super 8", - "name:zh=速8酒店" + "name:zh=速8酒店", + "official_name=Super 8 by Wyndham" ] } ] @@ -516896,7 +517261,7 @@ }, { "question": "锦江之星", - "icon": "./assets/data/nsi/logos/jinjianginn-28932e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jinjianginn-28932e.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516916,7 +517281,7 @@ }, { "question": "長榮國際連鎖酒店", - "icon": "./assets/data/nsi/logos/evergreeninternationalhotels-779ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergreeninternationalhotels-779ccb.jpg", "osmTags": { "and": [ "tourism=hotel", @@ -516940,7 +517305,7 @@ }, { "question": "California Welcome Center", - "icon": "./assets/data/nsi/logos/californiawelcomecenter-35ab0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiawelcomecenter-35ab0a.jpg", "osmTags": { "and": [ "information=office", @@ -516958,7 +517323,7 @@ }, { "question": "DOC Visitor Centre", - "icon": "./assets/data/nsi/logos/docvisitorcentre-a3c76e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/docvisitorcentre-a3c76e.png", "osmTags": { "and": [ "information=office", @@ -516974,7 +517339,7 @@ }, { "question": "i-SITE", - "icon": "./assets/data/nsi/logos/isite-a3c76e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isite-a3c76e.jpg", "osmTags": { "and": [ "information=office", @@ -516991,7 +517356,7 @@ }, { "question": "Legible London map", - "icon": "./assets/data/nsi/logos/legiblelondon-d25149.png", + "icon": "https://data.mapcomplete.org/nsi//logos/legiblelondon-d25149.png", "osmTags": { "and": [ "information=map", @@ -517012,7 +517377,7 @@ }, { "question": "Americas Best Value Inn", - "icon": "./assets/data/nsi/logos/americasbestvalueinn-cbfe39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/americasbestvalueinn-cbfe39.jpg", "osmTags": { "and": [ "tourism=motel", @@ -517028,7 +517393,7 @@ }, { "question": "Budget Host Inn", - "icon": "./assets/data/nsi/logos/budgethostinn-cbfe39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/budgethostinn-cbfe39.jpg", "osmTags": { "and": [ "tourism=motel", @@ -517045,7 +517410,7 @@ }, { "question": "Econo Lodge", - "icon": "./assets/data/nsi/logos/econolodge-24e523.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/econolodge-24e523.jpg", "osmTags": { "and": [ "tourism=motel", @@ -517061,7 +517426,7 @@ }, { "question": "HomeTowne Studios", - "icon": "./assets/data/nsi/logos/hometownestudios-cbfe39.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hometownestudios-cbfe39.png", "osmTags": { "and": [ "tourism=motel", @@ -517092,7 +517457,7 @@ }, { "question": "Knights Inn", - "icon": "./assets/data/nsi/logos/knightsinn-5ddaab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/knightsinn-5ddaab.png", "osmTags": { "and": [ "tourism=motel", @@ -517108,7 +517473,7 @@ }, { "question": "Motel 6", - "icon": "./assets/data/nsi/logos/motel6-5ddaab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/motel6-5ddaab.jpg", "osmTags": { "and": [ "tourism=motel", @@ -517124,7 +517489,7 @@ }, { "question": "Rodeway Inn", - "icon": "./assets/data/nsi/logos/rodewayinn-5ddaab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rodewayinn-5ddaab.jpg", "osmTags": { "and": [ "tourism=motel", @@ -517140,7 +517505,7 @@ }, { "question": "Super 8", - "icon": "./assets/data/nsi/logos/super8-5ddaab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/super8-5ddaab.jpg", "osmTags": { "and": [ "tourism=motel", @@ -517156,7 +517521,7 @@ }, { "question": "Vagabond Inn", - "icon": "./assets/data/nsi/logos/vagabondinn-cbfe39.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vagabondinn-cbfe39.png", "osmTags": { "and": [ "tourism=motel", @@ -517172,7 +517537,7 @@ }, { "question": "LEGO Discovery Center", - "icon": "./assets/data/nsi/logos/legodiscoverycenter-f633f4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/legodiscoverycenter-f633f4.svg", "osmTags": { "and": [ "tourism=theme_park", @@ -517190,7 +517555,7 @@ }, { "question": "LEGOLAND", - "icon": "./assets/data/nsi/logos/legoland-744610.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/legoland-744610.svg", "osmTags": { "and": [ "tourism=theme_park", @@ -517208,7 +517573,7 @@ }, { "question": "LEGOLAND Discovery Center", - "icon": "./assets/data/nsi/logos/legolanddiscoverycenter-b3703a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/legolanddiscoverycenter-b3703a.svg", "osmTags": { "and": [ "tourism=theme_park", @@ -517226,7 +517591,7 @@ }, { "question": "LEGOLAND Discovery Centre", - "icon": "./assets/data/nsi/logos/legolanddiscoverycentre-1f94c2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/legolanddiscoverycentre-1f94c2.svg", "osmTags": { "and": [ "tourism=theme_park", @@ -517244,7 +517609,7 @@ }, { "question": "Six Flags", - "icon": "./assets/data/nsi/logos/sixflags-994d7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sixflags-994d7c.jpg", "osmTags": { "and": [ "tourism=theme_park", @@ -517260,7 +517625,7 @@ }, { "question": "樂高探索中心 LEGOLAND Discovery Centre", - "icon": "./assets/data/nsi/logos/legolanddiscoverycentre-cdd36d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/legolanddiscoverycentre-cdd36d.svg", "osmTags": { "and": [ "tourism=theme_park", @@ -517282,7 +517647,7 @@ }, { "question": "GOfuel", - "icon": "./assets/data/nsi/logos/gofuel-1a11f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gofuel-1a11f1.png", "osmTags": { "and": [ "waterway=fuel", @@ -517300,5 +517665,6 @@ } ], "allowMove": false, - "#dont-translate": "*" -} + "#dont-translate": "*", + "generation_time": "2025-06-03T20:20:14.242Z" +} \ No newline at end of file diff --git a/assets/layers/nsi_operator/nsi_operator.json b/assets/layers/nsi_operator/nsi_operator.json index 81d52b78d6..ba3be922b7 100644 --- a/assets/layers/nsi_operator/nsi_operator.json +++ b/assets/layers/nsi_operator/nsi_operator.json @@ -1,7 +1,7 @@ { "id": "nsi_operator", "description": { - "en": "Exposes part of the NSI to reuse in other themes, e.g. for rendering" + "en": "Exposes part of the NSI to reuse in other themes, e.g. for rendering. Automatically generated and never directly loaded in a theme. Generated with scripts/nsiLogos.ts" }, "source": "special:library", "pointRendering": null, @@ -22,7 +22,7 @@ } ] }, - "then": "./assets/data/nsi/logos/affiouest-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/affiouest-28ca1f.jpg" }, { "if": { @@ -36,7 +36,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agsd-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agsd-28ca1f.jpg" }, { "if": { @@ -50,7 +50,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apgsga-e306ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/apgsga-e306ca.png" }, { "if": { @@ -64,7 +64,7 @@ } ] }, - "then": "./assets/data/nsi/logos/awk-9fb964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/awk-9fb964.jpg" }, { "if": { @@ -78,7 +78,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charvetdigitalmedia-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/charvetdigitalmedia-28ca1f.jpg" }, { "if": { @@ -92,7 +92,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityboardmedia-b0d60a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityboardmedia-b0d60a.png" }, { "if": { @@ -106,7 +106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityzmedia-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityzmedia-28ca1f.jpg" }, { "if": { @@ -120,7 +120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clearchanneloutdoor-9f7775.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clearchanneloutdoor-9f7775.jpg" }, { "if": { @@ -134,7 +134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clearchanneluk-7bfab1.png" + "then": "https://data.mapcomplete.org/nsi//logos/clearchanneluk-7bfab1.png" }, { "if": { @@ -148,7 +148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cocktailvision-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cocktailvision-28ca1f.jpg" }, { "if": { @@ -162,7 +162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compy-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compy-28ca1f.jpg" }, { "if": { @@ -176,7 +176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiacchetti-28ca1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/fiacchetti-28ca1f.png" }, { "if": { @@ -190,7 +190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giraudy-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giraudy-28ca1f.jpg" }, { "if": { @@ -204,7 +204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/global-451da4.png" + "then": "https://data.mapcomplete.org/nsi//logos/global-451da4.png" }, { "if": { @@ -218,7 +218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikea-d4816c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikea-d4816c.jpg" }, { "if": { @@ -232,7 +232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jcdecaux-d4816c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcdecaux-d4816c.jpg" }, { "if": { @@ -246,7 +246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamaradvertising-6f04f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamaradvertising-6f04f8.jpg" }, { "if": { @@ -260,7 +260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidl-d4816c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidl-d4816c.png" }, { "if": { @@ -274,7 +274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-d4816c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-d4816c.jpg" }, { "if": { @@ -288,7 +288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megameedia-b19c35.png" + "then": "https://data.mapcomplete.org/nsi//logos/megameedia-b19c35.png" }, { "if": { @@ -302,7 +302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northlincolnshirecouncil-920a75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northlincolnshirecouncil-920a75.jpg" }, { "if": { @@ -316,7 +316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oohmedia-32eb77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oohmedia-32eb77.jpg" }, { "if": { @@ -330,7 +330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/outfrontmedia-6f04f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/outfrontmedia-6f04f8.jpg" }, { "if": { @@ -344,7 +344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pattisonoutdoor-dc8034.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pattisonoutdoor-dc8034.svg" }, { "if": { @@ -358,7 +358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/promovil-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/promovil-28ca1f.jpg" }, { "if": { @@ -372,7 +372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publiespace-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publiespace-28ca1f.jpg" }, { "if": { @@ -386,7 +386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/signali-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/signali-28ca1f.jpg" }, { "if": { @@ -400,7 +400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stroermedia-a9f308.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stroermedia-a9f308.svg" }, { "if": { @@ -414,7 +414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/triaire-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/triaire-28ca1f.jpg" }, { "if": { @@ -428,7 +428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vediaud-28ca1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/vediaud-28ca1f.png" }, { "if": { @@ -442,7 +442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visiocomoutdoor-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visiocomoutdoor-28ca1f.jpg" }, { "if": { @@ -456,7 +456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wall-9fb964.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wall-9fb964.svg" }, { "if": { @@ -470,7 +470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wancom-28ca1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wancom-28ca1f.jpg" }, { "if": { @@ -484,7 +484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wcmedia-7ece49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wcmedia-7ece49.jpg" }, { "if": { @@ -498,7 +498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/werbefabry-9fb964.png" + "then": "https://data.mapcomplete.org/nsi//logos/werbefabry-9fb964.png" }, { "if": { @@ -512,7 +512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aarhuskommune-258737.png" + "then": "https://data.mapcomplete.org/nsi//logos/aarhuskommune-258737.png" }, { "if": { @@ -526,7 +526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ankunder-7c9127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ankunder-7c9127.jpg" }, { "if": { @@ -540,7 +540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clearchanneloutdoor-ad58fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clearchanneloutdoor-ad58fe.jpg" }, { "if": { @@ -554,7 +554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clearchannelpoland-e3069d.png" + "then": "https://data.mapcomplete.org/nsi//logos/clearchannelpoland-e3069d.png" }, { "if": { @@ -568,7 +568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clearchanneluk-1fdb7a.png" + "then": "https://data.mapcomplete.org/nsi//logos/clearchanneluk-1fdb7a.png" }, { "if": { @@ -583,7 +583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compagniedestransportsstrasbourgeois-d2e336.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compagniedestransportsstrasbourgeois-d2e336.jpg" }, { "if": { @@ -597,7 +597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentegroningen-c47c8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentegroningen-c47c8e.jpg" }, { "if": { @@ -611,7 +611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldbachneo-b19548.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldbachneo-b19548.jpg" }, { "if": { @@ -625,7 +625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jcdecaux-61f694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcdecaux-61f694.jpg" }, { "if": { @@ -640,7 +640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlsruherinstitutfurtechnologie-b3b4c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karlsruherinstitutfurtechnologie-b3b4c8.jpg" }, { "if": { @@ -654,7 +654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megameedia-28a710.png" + "then": "https://data.mapcomplete.org/nsi//logos/megameedia-28a710.png" }, { "if": { @@ -668,7 +668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/outfrontmedia-97b662.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/outfrontmedia-97b662.jpg" }, { "if": { @@ -682,7 +682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prismanet-28a710.png" + "then": "https://data.mapcomplete.org/nsi//logos/prismanet-28a710.png" }, { "if": { @@ -696,7 +696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rengl-618f49.png" + "then": "https://data.mapcomplete.org/nsi//logos/rengl-618f49.png" }, { "if": { @@ -710,7 +710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renglpolska-e3069d.png" + "then": "https://data.mapcomplete.org/nsi//logos/renglpolska-e3069d.png" }, { "if": { @@ -724,7 +724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renglslovensko-95c4b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/renglslovensko-95c4b9.png" }, { "if": { @@ -738,7 +738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbern-03edcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbern-03edcf.jpg" }, { "if": { @@ -752,7 +752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stroermedia-e9f6ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stroermedia-e9f6ab.svg" }, { "if": { @@ -766,7 +766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wall-e9f6ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wall-e9f6ab.svg" }, { "if": { @@ -780,7 +780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/affiouest-b12dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/affiouest-b12dbd.jpg" }, { "if": { @@ -794,7 +794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bogestra-f3dae2.png" + "then": "https://data.mapcomplete.org/nsi//logos/bogestra-f3dae2.png" }, { "if": { @@ -808,7 +808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityzmedia-b12dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityzmedia-b12dbd.jpg" }, { "if": { @@ -822,7 +822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clearchanneloutdoor-9eb85a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clearchanneloutdoor-9eb85a.jpg" }, { "if": { @@ -836,7 +836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euroawk-bac8b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/euroawk-bac8b6.png" }, { "if": { @@ -850,7 +850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hpublicite-b12dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hpublicite-b12dbd.jpg" }, { "if": { @@ -864,7 +864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jcdecaux-57a51e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcdecaux-57a51e.jpg" }, { "if": { @@ -878,7 +878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/outfrontmedia-783560.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/outfrontmedia-783560.jpg" }, { "if": { @@ -892,7 +892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/promovil-b12dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/promovil-b12dbd.jpg" }, { "if": { @@ -906,7 +906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stroermedia-9b0833.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stroermedia-9b0833.svg" }, { "if": { @@ -920,7 +920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/triaire-b12dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/triaire-b12dbd.jpg" }, { "if": { @@ -934,7 +934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umeakommun-a5ccac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umeakommun-a5ccac.jpg" }, { "if": { @@ -948,7 +948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vediaud-b12dbd.png" + "then": "https://data.mapcomplete.org/nsi//logos/vediaud-b12dbd.png" }, { "if": { @@ -962,7 +962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wall-9683c3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wall-9683c3.svg" }, { "if": { @@ -976,7 +976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apgsga-8eaf78.png" + "then": "https://data.mapcomplete.org/nsi//logos/apgsga-8eaf78.png" }, { "if": { @@ -990,7 +990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clearchanneloutdoor-0a0057.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clearchanneloutdoor-0a0057.jpg" }, { "if": { @@ -1004,7 +1004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jcdecaux-0134c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcdecaux-0134c0.jpg" }, { "if": { @@ -1018,7 +1018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonlites-8d15a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonlites-8d15a4.jpg" }, { "if": { @@ -1032,7 +1032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oohmedia-735cb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oohmedia-735cb8.jpg" }, { "if": { @@ -1046,7 +1046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/outfrontmedia-871964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/outfrontmedia-871964.jpg" }, { "if": { @@ -1060,7 +1060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stibmivb-bc2c94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stibmivb-bc2c94.jpg" }, { "if": { @@ -1074,7 +1074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stroermedia-9d8ee9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stroermedia-9d8ee9.svg" }, { "if": { @@ -1093,7 +1093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aceparking-93cfc3.png" + "then": "https://data.mapcomplete.org/nsi//logos/aceparking-93cfc3.png" }, { "if": { @@ -1108,7 +1108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodezaragoza-12c64c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodezaragoza-12c64c.png" }, { "if": { @@ -1126,7 +1126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikeaway-46d76d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bikeaway-46d76d.png" }, { "if": { @@ -1144,7 +1144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionaltransportationdistrict-8adeca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regionaltransportationdistrict-8adeca.jpg" }, { "if": { @@ -1161,7 +1161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trimet-b008ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/trimet-b008ab.png" }, { "if": { @@ -1178,7 +1178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verkehrsverbundvorarlberggmbh-d1c524.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verkehrsverbundvorarlberggmbh-d1c524.svg" }, { "if": { @@ -1199,7 +1199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/times-5a9b3d.png" + "then": "https://data.mapcomplete.org/nsi//logos/times-5a9b3d.png" }, { "if": { @@ -1214,7 +1214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autolib-5fef8e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/autolib-5fef8e.svg" }, { "if": { @@ -1229,7 +1229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bollore-672a50.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bollore-672a50.svg" }, { "if": { @@ -1244,7 +1244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bookndrive-088af7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bookndrive-088af7.jpg" }, { "if": { @@ -1260,7 +1260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cambiocarsharing-c92445.png" + "then": "https://data.mapcomplete.org/nsi//logos/cambiocarsharing-c92445.png" }, { "if": { @@ -1275,7 +1275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carsharingerlangen-c92445.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carsharingerlangen-c92445.jpg" }, { "if": { @@ -1290,7 +1290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carusocarsharing-2fb9ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carusocarsharing-2fb9ba.jpg" }, { "if": { @@ -1305,7 +1305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citiz-672a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citiz-672a50.jpg" }, { "if": { @@ -1320,7 +1320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cowheels-398ebe.png" + "then": "https://data.mapcomplete.org/nsi//logos/cowheels-398ebe.png" }, { "if": { @@ -1335,7 +1335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communauto-ed01ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communauto-ed01ab.jpg" }, { "if": { @@ -1350,7 +1350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conficars-088af7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conficars-088af7.jpg" }, { "if": { @@ -1365,7 +1365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deer-088af7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deer-088af7.jpg" }, { "if": { @@ -1382,7 +1382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebahnconnect-088af7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebahnconnect-088af7.jpg" }, { "if": { @@ -1397,7 +1397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enterprisecarclub-398ebe.png" + "then": "https://data.mapcomplete.org/nsi//logos/enterprisecarclub-398ebe.png" }, { "if": { @@ -1412,7 +1412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enterprisecarshare-79c4ed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enterprisecarshare-79c4ed.svg" }, { "if": { @@ -1427,7 +1427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gocar-084dbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gocar-084dbd.jpg" }, { "if": { @@ -1442,7 +1442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goget-d577f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/goget-d577f8.png" }, { "if": { @@ -1457,7 +1457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenwheels-96ec63.png" + "then": "https://data.mapcomplete.org/nsi//logos/greenwheels-96ec63.png" }, { "if": { @@ -1472,7 +1472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-b99113.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-b99113.jpg" }, { "if": { @@ -1487,7 +1487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marguerite-672a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marguerite-672a50.jpg" }, { "if": { @@ -1502,7 +1502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobility-488f3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/mobility-488f3c.png" }, { "if": { @@ -1517,7 +1517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/modo-2b1603.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/modo-2b1603.jpg" }, { "if": { @@ -1532,7 +1532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/modulauto-672a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/modulauto-672a50.jpg" }, { "if": { @@ -1547,7 +1547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mywheels-c3e863.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mywheels-c3e863.jpg" }, { "if": { @@ -1562,7 +1562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romaserviziperlamobilita-4d7a0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romaserviziperlamobilita-4d7a0e.jpg" }, { "if": { @@ -1577,7 +1577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scoutercarsharing-088af7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scoutercarsharing-088af7.jpg" }, { "if": { @@ -1592,7 +1592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharenow-663d52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sharenow-663d52.jpg" }, { "if": { @@ -1607,7 +1607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaugsburg-1dcf8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-1dcf8b.png" }, { "if": { @@ -1622,7 +1622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunfleet-cd4862.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunfleet-cd4862.jpg" }, { "if": { @@ -1637,7 +1637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubeeqo-59e811.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ubeeqo-59e811.svg" }, { "if": { @@ -1652,7 +1652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zipcar-aa2ec2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zipcar-aa2ec2.jpg" }, { "if": { @@ -1666,7 +1666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/123energie-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/123energie-1299a8.jpg" }, { "if": { @@ -1683,7 +1683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7eleven-994ed4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7eleven-994ed4.jpg" }, { "if": { @@ -1697,7 +1697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a2a-2c5517.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a2a-2c5517.jpg" }, { "if": { @@ -1711,7 +1711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abb-28ff7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/abb-28ff7e.png" }, { "if": { @@ -1725,7 +1725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accionaenergia-97d7cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accionaenergia-97d7cf.jpg" }, { "if": { @@ -1739,7 +1739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adac-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adac-1299a8.jpg" }, { "if": { @@ -1753,7 +1753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrisnellaad-fa6152.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrisnellaad-fa6152.png" }, { "if": { @@ -1767,7 +1767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrola-086737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrola-086737.jpg" }, { "if": { @@ -1781,7 +1781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airbus-feea12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airbus-feea12.jpg" }, { "if": { @@ -1795,7 +1795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akademiskahus-c9e89f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akademiskahus-c9e89f.jpg" }, { "if": { @@ -1809,7 +1809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-ed8273.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-ed8273.svg" }, { "if": { @@ -1823,7 +1823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-141059.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-141059.png" }, { "if": { @@ -1837,7 +1837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfen-17c03e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfen-17c03e.jpg" }, { "if": { @@ -1851,7 +1851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allego-17c03e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allego-17c03e.jpg" }, { "if": { @@ -1866,7 +1866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allgaueruberlandwerk-b2a48c.png" + "then": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-b2a48c.png" }, { "if": { @@ -1880,7 +1880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alperia-2c5517.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alperia-2c5517.jpg" }, { "if": { @@ -1894,7 +1894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altis-d0faa5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altis-d0faa5.jpg" }, { "if": { @@ -1908,7 +1908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applegreenelectric-f6fe0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/applegreenelectric-f6fe0b.jpg" }, { "if": { @@ -1923,7 +1923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aral-2d0940.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aral-2d0940.jpg" }, { "if": { @@ -1937,7 +1937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arinea-392011.png" + "then": "https://data.mapcomplete.org/nsi//logos/arinea-392011.png" }, { "if": { @@ -1951,7 +1951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asp-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/asp-fcc3c2.png" }, { "if": { @@ -1965,7 +1965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchan-f6553b.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchan-f6553b.png" }, { "if": { @@ -1979,7 +1979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/audiag-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/audiag-1299a8.jpg" }, { "if": { @@ -1993,7 +1993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-04a521.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-04a521.jpg" }, { "if": { @@ -2007,7 +2007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autoenterprise-a6c3f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autoenterprise-a6c3f2.jpg" }, { "if": { @@ -2021,7 +2021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autolib-37370f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/autolib-37370f.svg" }, { "if": { @@ -2035,7 +2035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avacon-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avacon-1299a8.jpg" }, { "if": { @@ -2049,7 +2049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avu-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avu-fcc3c2.jpg" }, { "if": { @@ -2064,7 +2064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aziendeindustrialidilugano-d3f33a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aziendeindustrialidilugano-d3f33a.jpg" }, { "if": { @@ -2078,7 +2078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-4c7d3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-4c7d3b.jpg" }, { "if": { @@ -2092,7 +2092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bauhaus-a5756d.png" + "then": "https://data.mapcomplete.org/nsi//logos/bauhaus-a5756d.png" }, { "if": { @@ -2106,7 +2106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayernwerk-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bayernwerk-1299a8.svg" }, { "if": { @@ -2120,7 +2120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-e7f57e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-e7f57e.jpg" }, { "if": { @@ -2134,7 +2134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/becharge-2c5517.svg" + "then": "https://data.mapcomplete.org/nsi//logos/becharge-2c5517.svg" }, { "if": { @@ -2148,7 +2148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerstadtwerke-db4fd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerstadtwerke-db4fd8.jpg" }, { "if": { @@ -2162,7 +2162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biggeenergie-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biggeenergie-fcc3c2.jpg" }, { "if": { @@ -2179,7 +2179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikeenergy-ff2890.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikeenergy-ff2890.jpg" }, { "if": { @@ -2193,7 +2193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamcitycouncil-56e584.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-56e584.jpg" }, { "if": { @@ -2210,7 +2210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blink-74901a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blink-74901a.jpg" }, { "if": { @@ -2224,7 +2224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluecharge-a1285d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluecharge-a1285d.jpg" }, { "if": { @@ -2238,7 +2238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bmw-28ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmw-28ff7e.jpg" }, { "if": { @@ -2253,7 +2253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bocholterenergieundwasserversorgung-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/bocholterenergieundwasserversorgung-fcc3c2.png" }, { "if": { @@ -2267,7 +2267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/booths-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/booths-0793ce.jpg" }, { "if": { @@ -2283,7 +2283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boschebikesystems-28ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boschebikesystems-28ff7e.jpg" }, { "if": { @@ -2297,7 +2297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-c22d3a.jpg" }, { "if": { @@ -2311,7 +2311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightonandhovecitycouncil-a4110c.png" + "then": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-a4110c.png" }, { "if": { @@ -2325,7 +2325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bsenergy-d9ec6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bsenergy-d9ec6c.jpg" }, { "if": { @@ -2339,7 +2339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgenlandenergieag-3f60da.png" + "then": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-3f60da.png" }, { "if": { @@ -2353,7 +2353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-fcc3c2.jpg" }, { "if": { @@ -2367,7 +2367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-c22d3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-c22d3a.png" }, { "if": { @@ -2381,7 +2381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carusocarsharing-53499e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carusocarsharing-53499e.jpg" }, { "if": { @@ -2395,7 +2395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralschweizerischekraftwerke-8e9cb9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/centralschweizerischekraftwerke-8e9cb9.svg" }, { "if": { @@ -2409,7 +2409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cepsa-3948da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cepsa-3948da.jpg" }, { "if": { @@ -2423,7 +2423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cez-f67a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cez-f67a50.jpg" }, { "if": { @@ -2437,7 +2437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargeyourcar-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chargeyourcar-0793ce.jpg" }, { "if": { @@ -2451,7 +2451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargefox-61042c.png" + "then": "https://data.mapcomplete.org/nsi//logos/chargefox-61042c.png" }, { "if": { @@ -2465,7 +2465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargenetnz-9850e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/chargenetnz-9850e1.png" }, { "if": { @@ -2479,7 +2479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargeplacescotland-416a92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chargeplacescotland-416a92.jpg" }, { "if": { @@ -2496,7 +2496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargepoint-28ff7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/chargepoint-28ff7e.png" }, { "if": { @@ -2513,7 +2513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-c22d3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-c22d3a.png" }, { "if": { @@ -2536,7 +2536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circuitelectrique-67089a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/circuitelectrique-67089a.jpg" }, { "if": { @@ -2550,7 +2550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgoldcoast-bd4e91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgoldcoast-bd4e91.jpg" }, { "if": { @@ -2564,7 +2564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhobart-becf90.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhobart-becf90.png" }, { "if": { @@ -2578,7 +2578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflaunceston-2fce2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflaunceston-2fce2c.jpg" }, { "if": { @@ -2592,7 +2592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citywatt-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citywatt-1299a8.jpg" }, { "if": { @@ -2606,7 +2606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clever-28cec3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clever-28cec3.jpg" }, { "if": { @@ -2620,7 +2620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compleochargingtechnologiesgmbh-43ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compleochargingtechnologiesgmbh-43ff7e.jpg" }, { "if": { @@ -2634,7 +2634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/connectedkerb-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/connectedkerb-0793ce.jpg" }, { "if": { @@ -2648,7 +2648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-2c5517.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-2c5517.png" }, { "if": { @@ -2662,7 +2662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-086737.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-086737.png" }, { "if": { @@ -2676,7 +2676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-c9e89f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-c9e89f.jpg" }, { "if": { @@ -2690,7 +2690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-476d58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-476d58.jpg" }, { "if": { @@ -2704,7 +2704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copec-df2b32.svg" + "then": "https://data.mapcomplete.org/nsi//logos/copec-df2b32.svg" }, { "if": { @@ -2720,7 +2720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countiesenergy-9850e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/countiesenergy-9850e1.png" }, { "if": { @@ -2734,7 +2734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csdd-94e3c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csdd-94e3c4.jpg" }, { "if": { @@ -2748,7 +2748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daemobil-8ae1a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daemobil-8ae1a0.jpg" }, { "if": { @@ -2762,7 +2762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dats24-292b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dats24-292b4b.jpg" }, { "if": { @@ -2776,7 +2776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deergmbh-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deergmbh-1299a8.jpg" }, { "if": { @@ -2790,7 +2790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschetelekom-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschetelekom-1299a8.jpg" }, { "if": { @@ -2804,7 +2804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deviwa-d0faa5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/deviwa-d0faa5.svg" }, { "if": { @@ -2818,7 +2818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dew21-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dew21-fcc3c2.jpg" }, { "if": { @@ -2832,7 +2832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drewag-b8794d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drewag-b8794d.jpg" }, { "if": { @@ -2846,7 +2846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duferco-2c5517.svg" + "then": "https://data.mapcomplete.org/nsi//logos/duferco-2c5517.svg" }, { "if": { @@ -2860,7 +2860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dufercoenergia-2c5517.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dufercoenergia-2c5517.jpg" }, { "if": { @@ -2874,7 +2874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-994ed4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-994ed4.jpg" }, { "if": { @@ -2888,7 +2888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eregio-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eregio-fcc3c2.jpg" }, { "if": { @@ -2902,7 +2902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewerkmittelbaden-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewerkmittelbaden-1299a8.jpg" }, { "if": { @@ -2916,7 +2916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edis-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edis-1299a8.jpg" }, { "if": { @@ -2930,7 +2930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclerc-f6553b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclerc-f6553b.jpg" }, { "if": { @@ -2944,7 +2944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-7f623e.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-7f623e.png" }, { "if": { @@ -2958,7 +2958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eam-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eam-1299a8.jpg" }, { "if": { @@ -2972,7 +2972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easygo-179e3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easygo-179e3e.jpg" }, { "if": { @@ -2986,7 +2986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecotap-c98650.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecotap-c98650.jpg" }, { "if": { @@ -3000,7 +3000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edeka-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/edeka-1299a8.png" }, { "if": { @@ -3014,7 +3014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edp-387085.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edp-387085.svg" }, { "if": { @@ -3028,7 +3028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eestienergiaas-733008.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eestienergiaas-733008.jpg" }, { "if": { @@ -3042,7 +3042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eggenergieversorgunggera-8c6e73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eggenergieversorgunggera-8c6e73.jpg" }, { "if": { @@ -3056,7 +3056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/einsenergieinsachsen-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/einsenergieinsachsen-1299a8.png" }, { "if": { @@ -3070,7 +3070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ejoin-b23832.png" + "then": "https://data.mapcomplete.org/nsi//logos/ejoin-b23832.png" }, { "if": { @@ -3084,7 +3084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekz-086737.png" + "then": "https://data.mapcomplete.org/nsi//logos/ekz-086737.png" }, { "if": { @@ -3098,7 +3098,21 @@ } ] }, - "then": "./assets/data/nsi/logos/eldrive-8c357e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eldrive-8c357e.jpg" + }, + { + "if": { + "and": [ + "amenity=charging_station", + { + "or": [ + "operator=Electra", + "operator:wikidata=Q128592938" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/electra-170e94.jpg" }, { "if": { @@ -3112,7 +3126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electrichighwaytasmania-341d66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electrichighwaytasmania-341d66.jpg" }, { "if": { @@ -3127,7 +3141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-c22d3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-c22d3a.png" }, { "if": { @@ -3141,7 +3155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electrifyamerica-994ed4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electrifyamerica-994ed4.jpg" }, { "if": { @@ -3155,7 +3169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrizitatswerkdavos-ba2d61.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkdavos-ba2d61.svg" }, { "if": { @@ -3169,7 +3183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrizitatswerkobwalden-714754.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkobwalden-714754.jpg" }, { "if": { @@ -3183,7 +3197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleport-512be8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleport-512be8.jpg" }, { "if": { @@ -3197,7 +3211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ella-3f60da.png" + "then": "https://data.mapcomplete.org/nsi//logos/ella-3f60da.png" }, { "if": { @@ -3211,7 +3225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elli-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elli-1299a8.jpg" }, { "if": { @@ -3225,7 +3239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmu-27e906.png" + "then": "https://data.mapcomplete.org/nsi//logos/elmu-27e906.png" }, { "if": { @@ -3239,7 +3253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emel-8fbbd7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/emel-8fbbd7.svg" }, { "if": { @@ -3253,7 +3267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emoti-d3f33a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emoti-d3f33a.jpg" }, { "if": { @@ -3268,7 +3282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emscherlippeenergie-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emscherlippeenergie-fcc3c2.jpg" }, { "if": { @@ -3282,7 +3296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-1299a8.png" }, { "if": { @@ -3296,7 +3310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-97d7cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-97d7cf.png" }, { "if": { @@ -3310,7 +3324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneco-35c01b.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneco-35c01b.png" }, { "if": { @@ -3327,7 +3341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-2c5517.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-2c5517.png" }, { "if": { @@ -3344,7 +3358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelx-bdf07e.png" + "then": "https://data.mapcomplete.org/nsi//logos/enelx-bdf07e.png" }, { "if": { @@ -3358,7 +3372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelxway-2c5517.png" + "then": "https://data.mapcomplete.org/nsi//logos/enelxway-2c5517.png" }, { "if": { @@ -3372,7 +3386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enercity-d9ec6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enercity-d9ec6c.jpg" }, { "if": { @@ -3386,7 +3400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-392011.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-392011.png" }, { "if": { @@ -3400,7 +3414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7977b1-086737.png" + "then": "https://data.mapcomplete.org/nsi//logos/7977b1-086737.png" }, { "if": { @@ -3414,7 +3428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-3f60da.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-3f60da.png" }, { "if": { @@ -3428,7 +3442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiecalw-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiecalw-6bc1fb.jpg" }, { "if": { @@ -3442,7 +3456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieeureetloir-0f5d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieeureetloir-0f5d07.jpg" }, { "if": { @@ -3456,7 +3470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesaarlorlux-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiesaarlorlux-1299a8.svg" }, { "if": { @@ -3470,7 +3484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesteiermark-b4f287.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-b4f287.png" }, { "if": { @@ -3484,7 +3498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesudbayern-259ab2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiesudbayern-259ab2.svg" }, { "if": { @@ -3498,7 +3512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedienst-6cf9a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedienst-6cf9a8.jpg" }, { "if": { @@ -3512,7 +3526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energis-124d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energis-124d23.jpg" }, { "if": { @@ -3526,7 +3540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-b2225d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-b2225d.jpg" }, { "if": { @@ -3540,7 +3554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eni-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eni-c22d3a.jpg" }, { "if": { @@ -3554,7 +3568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eniwa-d48833.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eniwa-d48833.svg" }, { "if": { @@ -3568,7 +3582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ensoenergiesachsenostag-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ensoenergiesachsenostag-1299a8.svg" }, { "if": { @@ -3582,7 +3596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entega-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/entega-1299a8.png" }, { "if": { @@ -3596,7 +3610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enviam-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/enviam-1299a8.png" }, { "if": { @@ -3610,7 +3624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eo-f6fe0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/eo-f6fe0b.png" }, { "if": { @@ -3625,7 +3639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieservicebielbienne-0c1e54.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieservicebielbienne-0c1e54.png" }, { "if": { @@ -3640,7 +3654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbgroup-881c56.svg" + "then": "https://data.mapcomplete.org/nsi//logos/esbgroup-881c56.svg" }, { "if": { @@ -3654,7 +3668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbenergy-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esbenergy-0793ce.jpg" }, { "if": { @@ -3668,7 +3682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-c22d3a.jpg" }, { "if": { @@ -3682,7 +3696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eswe-43ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eswe-43ff7e.jpg" }, { "if": { @@ -3696,7 +3710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evconnect-994ed4.png" + "then": "https://data.mapcomplete.org/nsi//logos/evconnect-994ed4.png" }, { "if": { @@ -3710,7 +3724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evbox-7f623e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evbox-7f623e.jpg" }, { "if": { @@ -3724,7 +3738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evcs-994ed4.png" + "then": "https://data.mapcomplete.org/nsi//logos/evcs-994ed4.png" }, { "if": { @@ -3738,7 +3752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evdenergieversorgungdormagen-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/evdenergieversorgungdormagen-fcc3c2.png" }, { "if": { @@ -3752,7 +3766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evienetworks-943805.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evienetworks-943805.jpg" }, { "if": { @@ -3766,7 +3780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-3f60da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-3f60da.jpg" }, { "if": { @@ -3780,7 +3794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evpass-086737.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evpass-086737.svg" }, { "if": { @@ -3794,7 +3808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evway-2c5517.png" + "then": "https://data.mapcomplete.org/nsi//logos/evway-2c5517.png" }, { "if": { @@ -3808,7 +3822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewhofe-485cc9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ewhofe-485cc9.svg" }, { "if": { @@ -3822,7 +3836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eways-c9e89f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eways-c9e89f.jpg" }, { "if": { @@ -3836,7 +3850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewego-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ewego-1299a8.png" }, { "if": { @@ -3850,7 +3864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewii-7d9e8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ewii-7d9e8e.png" }, { "if": { @@ -3864,7 +3878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewiva-2c5517.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewiva-2c5517.jpg" }, { "if": { @@ -3878,7 +3892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewr-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewr-1299a8.jpg" }, { "if": { @@ -3892,7 +3906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewv-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewv-1299a8.jpg" }, { "if": { @@ -3906,7 +3920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastned-17c03e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastned-17c03e.jpg" }, { "if": { @@ -3920,7 +3934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fenieenergia-97d7cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/fenieenergia-97d7cf.png" }, { "if": { @@ -3934,7 +3948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c9c8bd-befeeb.png" + "then": "https://data.mapcomplete.org/nsi//logos/c9c8bd-befeeb.png" }, { "if": { @@ -3951,7 +3965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flo-78626b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flo-78626b.jpg" }, { "if": { @@ -3965,7 +3979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshmile-f6553b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshmile-f6553b.jpg" }, { "if": { @@ -3979,7 +3993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fyrfasenenergiab-c9e89f.png" + "then": "https://data.mapcomplete.org/nsi//logos/fyrfasenenergiab-c9e89f.png" }, { "if": { @@ -3993,7 +4007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentedenhaag-fa6152.png" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentedenhaag-fa6152.png" }, { "if": { @@ -4007,7 +4021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenterotterdam-fa6152.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-fa6152.jpg" }, { "if": { @@ -4021,7 +4035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteutrecht-fa6152.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteutrecht-fa6152.jpg" }, { "if": { @@ -4035,7 +4049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindeunterhaching-259ab2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindeunterhaching-259ab2.svg" }, { "if": { @@ -4049,7 +4063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geniepoint-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geniepoint-0793ce.jpg" }, { "if": { @@ -4063,7 +4077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ggew-43ff7e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ggew-43ff7e.svg" }, { "if": { @@ -4078,7 +4092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gigacharger-befeeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gigacharger-befeeb.jpg" }, { "if": { @@ -4092,7 +4106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gocharge-179e3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gocharge-179e3e.jpg" }, { "if": { @@ -4106,7 +4120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gofast-086737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gofast-086737.jpg" }, { "if": { @@ -4123,7 +4137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/62c656-28ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/62c656-28ff7e.jpg" }, { "if": { @@ -4137,7 +4151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gpjouleconnect-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gpjouleconnect-1299a8.jpg" }, { "if": { @@ -4151,7 +4165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenmotion-086737.png" + "then": "https://data.mapcomplete.org/nsi//logos/greenmotion-086737.png" }, { "if": { @@ -4165,7 +4179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenflux-fa6152.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenflux-fa6152.jpg" }, { "if": { @@ -4179,7 +4193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenway-40951a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenway-40951a.jpg" }, { "if": { @@ -4194,7 +4208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gridserve-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gridserve-0793ce.jpg" }, { "if": { @@ -4208,7 +4222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groupee-086737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupee-086737.jpg" }, { "if": { @@ -4222,7 +4236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helen-e80d25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/helen-e80d25.jpg" }, { "if": { @@ -4236,7 +4250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hikotron-9850e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/hikotron-9850e1.png" }, { "if": { @@ -4250,7 +4264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holmgrensbilab-c9e89f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holmgrensbilab-c9e89f.jpg" }, { "if": { @@ -4264,7 +4278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyundai-28ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyundai-28ff7e.jpg" }, { "if": { @@ -4278,7 +4292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-97d7cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-97d7cf.jpg" }, { "if": { @@ -4292,7 +4306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ice-296db6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ice-296db6.jpg" }, { "if": { @@ -4306,7 +4320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ignitis-467e3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ignitis-467e3c.jpg" }, { "if": { @@ -4320,7 +4334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikea-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikea-c22d3a.jpg" }, { "if": { @@ -4334,7 +4348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-3f60da.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-3f60da.png" }, { "if": { @@ -4351,7 +4365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogy-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/innogy-1299a8.svg" }, { "if": { @@ -4365,7 +4379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inselwerke-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inselwerke-1299a8.jpg" }, { "if": { @@ -4379,7 +4393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/instavolt-0793ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/instavolt-0793ce.png" }, { "if": { @@ -4393,7 +4407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intelcorporation-994ed4.png" + "then": "https://data.mapcomplete.org/nsi//logos/intelcorporation-994ed4.png" }, { "if": { @@ -4407,7 +4421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarche-abe4b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarche-abe4b6.jpg" }, { "if": { @@ -4421,7 +4435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isorka-8fcd5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/isorka-8fcd5a.png" }, { "if": { @@ -4435,7 +4449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iwb-086737.png" + "then": "https://data.mapcomplete.org/nsi//logos/iwb-086737.png" }, { "if": { @@ -4449,7 +4463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jamtkraft-c9e89f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jamtkraft-c9e89f.jpg" }, { "if": { @@ -4463,7 +4477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jolt-743b2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jolt-743b2f.jpg" }, { "if": { @@ -4477,7 +4491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonkopingenergi-c9e89f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonkopingenergi-c9e89f.jpg" }, { "if": { @@ -4491,7 +4505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klataus-e80d25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klataus-e80d25.jpg" }, { "if": { @@ -4505,7 +4519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaufland-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/kaufland-1299a8.png" }, { "if": { @@ -4519,7 +4533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keba-a5756d.png" + "then": "https://data.mapcomplete.org/nsi//logos/keba-a5756d.png" }, { "if": { @@ -4533,7 +4547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-3bcc5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-3bcc5b.jpg" }, { "if": { @@ -4547,7 +4561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kreiswerkemainkinzig-43ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kreiswerkemainkinzig-43ff7e.jpg" }, { "if": { @@ -4561,7 +4575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kungsbackakommun-c9e89f.png" + "then": "https://data.mapcomplete.org/nsi//logos/kungsbackakommun-c9e89f.png" }, { "if": { @@ -4575,7 +4589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancastercitycouncil-9ba54b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancastercitycouncil-9ba54b.jpg" }, { "if": { @@ -4589,7 +4603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancasteruniversity-9ba54b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancasteruniversity-9ba54b.jpg" }, { "if": { @@ -4603,7 +4617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lastmilesolutions-7f623e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lastmilesolutions-7f623e.jpg" }, { "if": { @@ -4617,7 +4631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leap24-461188.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leap24-461188.jpg" }, { "if": { @@ -4631,7 +4645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leasys-257863.png" + "then": "https://data.mapcomplete.org/nsi//logos/leasys-257863.png" }, { "if": { @@ -4645,7 +4659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechwerkeag-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechwerkeag-1299a8.jpg" }, { "if": { @@ -4659,7 +4673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidl-e2f086.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidl-e2f086.png" }, { "if": { @@ -4673,7 +4687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidlsverigekb-c9e89f.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidlsverigekb-c9e89f.png" }, { "if": { @@ -4687,7 +4701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-6a71ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-6a71ec.jpg" }, { "if": { @@ -4701,7 +4715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lokalwerke-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lokalwerke-fcc3c2.jpg" }, { "if": { @@ -4715,7 +4729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswenergie-d9ec6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswenergie-d9ec6c.png" }, { "if": { @@ -4729,7 +4743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luminus-87ebf4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luminus-87ebf4.jpg" }, { "if": { @@ -4743,7 +4757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maingauenergie-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/maingauenergie-1299a8.svg" }, { "if": { @@ -4757,7 +4771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainova-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/mainova-1299a8.png" }, { "if": { @@ -4771,7 +4785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainzerstadtwerke-bb1d73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mainzerstadtwerke-bb1d73.jpg" }, { "if": { @@ -4785,7 +4799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mairiedeparis-37370f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-37370f.jpg" }, { "if": { @@ -4799,7 +4813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malarenergi-c9e89f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/malarenergi-c9e89f.jpg" }, { "if": { @@ -4813,7 +4827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marke-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marke-1299a8.jpg" }, { "if": { @@ -4827,7 +4841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxsolar-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/maxsolar-1299a8.png" }, { "if": { @@ -4841,7 +4855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-c22d3a.jpg" }, { "if": { @@ -4855,7 +4869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mennekes-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mennekes-1299a8.svg" }, { "if": { @@ -4869,7 +4883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercadona-3948da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercadona-3948da.jpg" }, { "if": { @@ -4883,7 +4897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercedesbenz-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercedesbenz-c22d3a.jpg" }, { "if": { @@ -4897,7 +4911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michiganstateuniversity-258d0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michiganstateuniversity-258d0b.jpg" }, { "if": { @@ -4911,7 +4925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrol-086737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/migrol-086737.jpg" }, { "if": { @@ -4925,7 +4939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobie-a1285d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobie-a1285d.jpg" }, { "if": { @@ -4939,7 +4953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobilityplus-87ebf4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobilityplus-87ebf4.jpg" }, { "if": { @@ -4953,7 +4967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morbihanenergies-170e94.png" + "then": "https://data.mapcomplete.org/nsi//logos/morbihanenergies-170e94.png" }, { "if": { @@ -4967,7 +4981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/move-086737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/move-086737.jpg" }, { "if": { @@ -4981,7 +4995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mvvenergie-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mvvenergie-6bc1fb.jpg" }, { "if": { @@ -4995,7 +5009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nergie-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/nergie-1299a8.png" }, { "if": { @@ -5009,7 +5023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/n1-8fcd5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/n1-8fcd5a.png" }, { "if": { @@ -5023,7 +5037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nabibajk-b23832.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nabibajk-b23832.jpg" }, { "if": { @@ -5037,7 +5051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturenergie-6cf9a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturenergie-6cf9a8.jpg" }, { "if": { @@ -5051,7 +5065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neogy-2c5517.png" + "then": "https://data.mapcomplete.org/nsi//logos/neogy-2c5517.png" }, { "if": { @@ -5065,7 +5079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/new-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/new-1299a8.svg" }, { "if": { @@ -5079,7 +5093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nissan-28ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nissan-28ff7e.jpg" }, { "if": { @@ -5093,7 +5107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norlys-7d9e8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/norlys-7d9e8e.png" }, { "if": { @@ -5107,7 +5121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noxo-392011.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noxo-392011.jpg" }, { "if": { @@ -5121,7 +5135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nrgenergy-994ed4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nrgenergy-994ed4.jpg" }, { "if": { @@ -5135,7 +5149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nrma-943805.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nrma-943805.jpg" }, { "if": { @@ -5149,7 +5163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuon-fa6152.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nuon-fa6152.svg" }, { "if": { @@ -5163,7 +5177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oamtc-3f60da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oamtc-3f60da.jpg" }, { "if": { @@ -5177,7 +5191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omv-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omv-c22d3a.jpg" }, { "if": { @@ -5191,7 +5205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opcharge-fa6152.png" + "then": "https://data.mapcomplete.org/nsi//logos/opcharge-fa6152.png" }, { "if": { @@ -5205,7 +5219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orion-9850e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orion-9850e1.jpg" }, { "if": { @@ -5219,7 +5233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orkanatturunnar-8fcd5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/orkanatturunnar-8fcd5a.png" }, { "if": { @@ -5233,7 +5247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlen-392011.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlen-392011.jpg" }, { "if": { @@ -5247,7 +5261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osprey-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osprey-0793ce.jpg" }, { "if": { @@ -5261,7 +5275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ovag-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ovag-1299a8.png" }, { "if": { @@ -5275,7 +5289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perusahaanlistriknegara-34ae8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-34ae8c.jpg" }, { "if": { @@ -5289,7 +5303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrol-6b6292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrol-6b6292.jpg" }, { "if": { @@ -5303,7 +5317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfalzwerke-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/pfalzwerke-1299a8.png" }, { "if": { @@ -5317,7 +5331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plenitude-2c5517.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plenitude-2c5517.jpg" }, { "if": { @@ -5331,7 +5345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plugnroll-086737.png" + "then": "https://data.mapcomplete.org/nsi//logos/plugnroll-086737.png" }, { "if": { @@ -5345,7 +5359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/podpoint-0793ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/podpoint-0793ce.png" }, { "if": { @@ -5359,7 +5373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porsche-28ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porsche-28ff7e.jpg" }, { "if": { @@ -5373,7 +5387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pre-f67a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pre-f67a50.jpg" }, { "if": { @@ -5387,7 +5401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/protergia-e68869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/protergia-e68869.jpg" }, { "if": { @@ -5401,7 +5415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qpark-7f623e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qpark-7f623e.jpg" }, { "if": { @@ -5415,7 +5429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qbuzz-fa6152.png" + "then": "https://data.mapcomplete.org/nsi//logos/qbuzz-fa6152.png" }, { "if": { @@ -5429,7 +5443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qwello-381a82.png" + "then": "https://data.mapcomplete.org/nsi//logos/qwello-381a82.png" }, { "if": { @@ -5443,7 +5457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renault-28ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renault-28ff7e.jpg" }, { "if": { @@ -5457,7 +5471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renovatioecharge-806f62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renovatioecharge-806f62.jpg" }, { "if": { @@ -5471,7 +5485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repower-c58b31.svg" + "then": "https://data.mapcomplete.org/nsi//logos/repower-c58b31.svg" }, { "if": { @@ -5485,7 +5499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repsol-3948da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/repsol-3948da.jpg" }, { "if": { @@ -5499,7 +5513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reveo-170e94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reveo-170e94.jpg" }, { "if": { @@ -5513,7 +5527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewag-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rewag-1299a8.jpg" }, { "if": { @@ -5527,7 +5541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewe-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rewe-1299a8.jpg" }, { "if": { @@ -5541,7 +5555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinenergie-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/rheinenergie-1299a8.png" }, { "if": { @@ -5555,7 +5569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhonenergiefulda-43ff7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/rhonenergiefulda-43ff7e.png" }, { "if": { @@ -5569,7 +5583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ringerikskraftas-476d58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ringerikskraftas-476d58.jpg" }, { "if": { @@ -5583,7 +5597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robertboschgmbh-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robertboschgmbh-1299a8.jpg" }, { "if": { @@ -5597,7 +5611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roche-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roche-c22d3a.jpg" }, { "if": { @@ -5611,7 +5625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stpt-806f62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stpt-806f62.jpg" }, { "if": { @@ -5625,7 +5639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-b8794d.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-b8794d.png" }, { "if": { @@ -5639,7 +5653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sak-086737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sak-086737.jpg" }, { "if": { @@ -5653,7 +5667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-2afdb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-2afdb6.jpg" }, { "if": { @@ -5667,7 +5681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schneiderelectric-28ff7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/schneiderelectric-28ff7e.png" }, { "if": { @@ -5681,7 +5695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/semaconnect-994ed4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/semaconnect-994ed4.jpg" }, { "if": { @@ -5695,7 +5709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-28ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-28ff7e.jpg" }, { "if": { @@ -5709,7 +5723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shellrechargesolutions-c22d3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/shellrechargesolutions-c22d3a.png" }, { "if": { @@ -5723,7 +5737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smatrics-3f60da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smatrics-3f60da.jpg" }, { "if": { @@ -5740,7 +5754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sourcelondon-489d95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sourcelondon-489d95.jpg" }, { "if": { @@ -5754,7 +5768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southlakelanddistrictcouncil-16207f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southlakelanddistrictcouncil-16207f.jpg" }, { "if": { @@ -5768,7 +5782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spar-c22d3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spar-c22d3a.jpg" }, { "if": { @@ -5782,7 +5796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtlorch-6bc1fb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtlorch-6bc1fb.svg" }, { "if": { @@ -5797,7 +5811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtischewerkemagdeburg-eaf1ad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtischewerkemagdeburg-eaf1ad.svg" }, { "if": { @@ -5812,7 +5826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkamsee-6bc1fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkamsee-6bc1fb.png" }, { "if": { @@ -5826,7 +5840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaugsburg-259ab2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-259ab2.png" }, { "if": { @@ -5840,7 +5854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebadenbaden-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadenbaden-6bc1fb.jpg" }, { "if": { @@ -5854,7 +5868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebielefeld-fcc3c2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebielefeld-fcc3c2.svg" }, { "if": { @@ -5868,7 +5882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebochum-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebochum-fcc3c2.png" }, { "if": { @@ -5882,7 +5896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedachau-259ab2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedachau-259ab2.jpg" }, { "if": { @@ -5896,7 +5910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedessau-b7b244.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedessau-b7b244.jpg" }, { "if": { @@ -5910,7 +5924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedusseldorf-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-fcc3c2.jpg" }, { "if": { @@ -5924,7 +5938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeenergiejenapossneckgmbh-8c6e73.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeenergiejenapossneckgmbh-8c6e73.png" }, { "if": { @@ -5939,7 +5953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeerfurt-8c6e73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeerfurt-8c6e73.jpg" }, { "if": { @@ -5953,7 +5967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeevbhuntetalgmbh-d9ec6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeevbhuntetalgmbh-d9ec6c.jpg" }, { "if": { @@ -5967,7 +5981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkefurstenfeldbruck-259ab2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkefurstenfeldbruck-259ab2.png" }, { "if": { @@ -5981,7 +5995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegiessen-43ff7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegiessen-43ff7e.png" }, { "if": { @@ -5995,7 +6009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegochgmbh-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegochgmbh-fcc3c2.png" }, { "if": { @@ -6009,7 +6023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegottingen-d9ec6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegottingen-d9ec6c.jpg" }, { "if": { @@ -6023,7 +6037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkehamm-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkehamm-fcc3c2.jpg" }, { "if": { @@ -6037,7 +6051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeheidelberg-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeheidelberg-6bc1fb.jpg" }, { "if": { @@ -6052,7 +6066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeherne-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherne-fcc3c2.jpg" }, { "if": { @@ -6066,7 +6080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeiserlohn-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeiserlohn-fcc3c2.jpg" }, { "if": { @@ -6081,7 +6095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekiel-cf3cf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekiel-cf3cf5.jpg" }, { "if": { @@ -6095,7 +6109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeklagenfurt-f703d0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeklagenfurt-f703d0.svg" }, { "if": { @@ -6109,7 +6123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekonstanz-6bc1fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekonstanz-6bc1fb.png" }, { "if": { @@ -6123,7 +6137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelandshut-259ab2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelandshut-259ab2.jpg" }, { "if": { @@ -6137,7 +6151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelangen-43ff7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelangen-43ff7e.png" }, { "if": { @@ -6151,7 +6165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeleipzig-b8794d.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-b8794d.png" }, { "if": { @@ -6165,7 +6179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemarburg-43ff7e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemarburg-43ff7e.svg" }, { "if": { @@ -6179,7 +6193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemeerbuschgmbh-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemeerbuschgmbh-fcc3c2.jpg" }, { "if": { @@ -6194,7 +6208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-4b68f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-4b68f8.jpg" }, { "if": { @@ -6208,7 +6222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunster-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunster-fcc3c2.jpg" }, { "if": { @@ -6223,7 +6237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneuss-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuss-fcc3c2.jpg" }, { "if": { @@ -6237,7 +6251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneustadtanderweinstrasse-bb1d73.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneustadtanderweinstrasse-bb1d73.png" }, { "if": { @@ -6251,7 +6265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkenorderstedt-cf3cf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkenorderstedt-cf3cf5.jpg" }, { "if": { @@ -6265,7 +6279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeoberkirch-6bc1fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeoberkirch-6bc1fb.png" }, { "if": { @@ -6279,7 +6293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeosnabruck-d9ec6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeosnabruck-d9ec6c.png" }, { "if": { @@ -6294,7 +6308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkepforzheim-6bc1fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkepforzheim-6bc1fb.png" }, { "if": { @@ -6308,7 +6322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkerhede-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkerhede-fcc3c2.jpg" }, { "if": { @@ -6322,7 +6336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkerusselsheim-43ff7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkerusselsheim-43ff7e.jpg" }, { "if": { @@ -6336,7 +6350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeschwabischhall-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeschwabischhall-6bc1fb.jpg" }, { "if": { @@ -6350,7 +6364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkesindelfingen-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkesindelfingen-6bc1fb.jpg" }, { "if": { @@ -6364,7 +6378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkesolingen-fcc3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkesolingen-fcc3c2.jpg" }, { "if": { @@ -6379,7 +6393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkespeyer-bb1d73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-bb1d73.jpg" }, { "if": { @@ -6393,7 +6407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkestuttgart-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkestuttgart-6bc1fb.jpg" }, { "if": { @@ -6408,7 +6422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerketubingen-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerketubingen-6bc1fb.jpg" }, { "if": { @@ -6422,7 +6436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeunionnordhessen-43ff7e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeunionnordhessen-43ff7e.svg" }, { "if": { @@ -6436,7 +6450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkevelbert-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkevelbert-fcc3c2.png" }, { "if": { @@ -6450,7 +6464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeweimar-8c6e73.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeweimar-8c6e73.svg" }, { "if": { @@ -6464,7 +6478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewitten-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-fcc3c2.png" }, { "if": { @@ -6478,7 +6492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stawag-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stawag-fcc3c2.png" }, { "if": { @@ -6492,7 +6506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-43ccfe.png" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-43ccfe.png" }, { "if": { @@ -6508,7 +6522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fmconway-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fmconway-0793ce.jpg" }, { "if": { @@ -6522,7 +6536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwag-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwag-1299a8.jpg" }, { "if": { @@ -6536,7 +6550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swb-152e8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swb-152e8e.jpg" }, { "if": { @@ -6551,7 +6565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swbenergieundwasser-fcc3c2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/swbenergieundwasser-fcc3c2.svg" }, { "if": { @@ -6565,7 +6579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisscharge-086737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisscharge-086737.jpg" }, { "if": { @@ -6580,7 +6594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swustadtwerkeulmneuulmgmbh-f8e5ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swustadtwerkeulmneuulmgmbh-f8e5ce.jpg" }, { "if": { @@ -6594,7 +6608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tankandrast-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/tankandrast-1299a8.png" }, { "if": { @@ -6608,7 +6622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-392011.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-392011.png" }, { "if": { @@ -6623,7 +6637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischewerkeosning-fcc3c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/technischewerkeosning-fcc3c2.png" }, { "if": { @@ -6637,7 +6651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischewerkeschussental-6bc1fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/technischewerkeschussental-6bc1fb.jpg" }, { "if": { @@ -6651,7 +6665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teilauto-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teilauto-1299a8.jpg" }, { "if": { @@ -6665,7 +6679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teplarnybrno-f67a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teplarnybrno-f67a50.jpg" }, { "if": { @@ -6679,7 +6693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-3f60da.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-3f60da.svg" }, { "if": { @@ -6696,7 +6710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toka-a6c3f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toka-a6c3f2.jpg" }, { "if": { @@ -6710,7 +6724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/total-28ff7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/total-28ff7e.png" }, { "if": { @@ -6724,7 +6738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalenergies-c22d3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalenergies-c22d3a.png" }, { "if": { @@ -6738,7 +6752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uabignitis-467e3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uabignitis-467e3c.jpg" }, { "if": { @@ -6752,7 +6766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubeeqo-c22d3a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ubeeqo-c22d3a.svg" }, { "if": { @@ -6766,7 +6780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umeaenergi-c9e89f.png" + "then": "https://data.mapcomplete.org/nsi//logos/umeaenergi-c9e89f.png" }, { "if": { @@ -6782,7 +6796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universidadedacoruna-97d7cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universidadedacoruna-97d7cf.jpg" }, { "if": { @@ -6796,7 +6810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unox-285e25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unox-285e25.jpg" }, { "if": { @@ -6810,7 +6824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-dde172.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-dde172.svg" }, { "if": { @@ -6824,7 +6838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vmarkt-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/vmarkt-1299a8.png" }, { "if": { @@ -6841,7 +6855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfallincharge-648812.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfallincharge-648812.jpg" }, { "if": { @@ -6855,7 +6869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-9850e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-9850e1.png" }, { "if": { @@ -6869,7 +6883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viesgo-97d7cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/viesgo-97d7cf.png" }, { "if": { @@ -6886,7 +6900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virta-e80d25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virta-e80d25.jpg" }, { "if": { @@ -6900,7 +6914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkswagen-1299a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volkswagen-1299a8.jpg" }, { "if": { @@ -6914,7 +6928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waybler-c9e89f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waybler-c9e89f.jpg" }, { "if": { @@ -6930,7 +6944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welnetworks-9850e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welnetworks-9850e1.jpg" }, { "if": { @@ -6944,7 +6958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wemag-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/wemag-1299a8.png" }, { "if": { @@ -6958,7 +6972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wenea-417ce7.png" + "then": "https://data.mapcomplete.org/nsi//logos/wenea-417ce7.png" }, { "if": { @@ -6972,7 +6986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westenergie-1299a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/westenergie-1299a8.png" }, { "if": { @@ -6986,7 +7000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfalenweserladeservice-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westfalenweserladeservice-1299a8.svg" }, { "if": { @@ -7000,7 +7014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wholefoods-994ed4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wholefoods-994ed4.jpg" }, { "if": { @@ -7014,7 +7028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-3f60da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-3f60da.jpg" }, { "if": { @@ -7028,7 +7042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wirelane-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wirelane-1299a8.svg" }, { "if": { @@ -7042,7 +7056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wvv-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wvv-1299a8.svg" }, { "if": { @@ -7058,7 +7072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zenergy-9850e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zenergy-9850e1.jpg" }, { "if": { @@ -7072,7 +7086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zes-f274f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zes-f274f9.jpg" }, { "if": { @@ -7086,7 +7100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zest-0793ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zest-0793ce.jpg" }, { "if": { @@ -7100,7 +7114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ztmlublin-392011.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ztmlublin-392011.jpg" }, { "if": { @@ -7114,7 +7128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zunder-3948da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zunder-3948da.jpg" }, { "if": { @@ -7128,7 +7142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zwickau-1299a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zwickau-1299a8.svg" }, { "if": { @@ -7142,7 +7156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/788cf3-e68869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/788cf3-e68869.jpg" }, { "if": { @@ -7156,7 +7170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1e6fb1-18ef61.svg" + "then": "https://data.mapcomplete.org/nsi//logos/1e6fb1-18ef61.svg" }, { "if": { @@ -7170,7 +7184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/09a705-a6c3f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/09a705-a6c3f2.jpg" }, { "if": { @@ -7184,7 +7198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/70aabc-18ef61.png" + "then": "https://data.mapcomplete.org/nsi//logos/70aabc-18ef61.png" }, { "if": { @@ -7199,7 +7213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentofkerala-4b0d98.svg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentofkerala-4b0d98.svg" }, { "if": { @@ -7214,7 +7228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/icbf-6a04ca.svg" + "then": "https://data.mapcomplete.org/nsi//logos/icbf-6a04ca.svg" }, { "if": { @@ -7229,7 +7243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kobenhavnskommune-7bdbd2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kobenhavnskommune-7bdbd2.jpg" }, { "if": { @@ -7244,7 +7258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mairiedeparis-6dda0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-6dda0f.jpg" }, { "if": { @@ -7260,7 +7274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanjoseunifiedschooldistrict-943069.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanjoseunifiedschooldistrict-943069.jpg" }, { "if": { @@ -7276,7 +7290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abrazocommunityhealthnetwork-2a9247.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abrazocommunityhealthnetwork-2a9247.jpg" }, { "if": { @@ -7294,7 +7308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afcurgentcare-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/afcurgentcare-0ca787.jpg" }, { "if": { @@ -7311,7 +7325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akronchildrenshospital-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akronchildrenshospital-0ca787.jpg" }, { "if": { @@ -7327,7 +7341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ascension-0ca787.png" + "then": "https://data.mapcomplete.org/nsi//logos/ascension-0ca787.png" }, { "if": { @@ -7344,7 +7358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asepeyo-edc4ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asepeyo-edc4ef.jpg" }, { "if": { @@ -7360,7 +7374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aspirus-df05bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/aspirus-df05bc.png" }, { "if": { @@ -7376,7 +7390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aurorahealthcare-91d413.png" + "then": "https://data.mapcomplete.org/nsi//logos/aurorahealthcare-91d413.png" }, { "if": { @@ -7392,7 +7406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avonandwiltshirementalhealthpartnershipnhstrust-c61c44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avonandwiltshirementalhealthpartnershipnhstrust-c61c44.jpg" }, { "if": { @@ -7408,7 +7422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bannerhealth-0ca787.png" + "then": "https://data.mapcomplete.org/nsi//logos/bannerhealth-0ca787.png" }, { "if": { @@ -7424,7 +7438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capio-5b16c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capio-5b16c3.jpg" }, { "if": { @@ -7440,7 +7454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccss-03ea79.png" + "then": "https://data.mapcomplete.org/nsi//logos/ccss-03ea79.png" }, { "if": { @@ -7456,7 +7470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christianacare-751657.svg" + "then": "https://data.mapcomplete.org/nsi//logos/christianacare-751657.svg" }, { "if": { @@ -7472,7 +7486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcapetown-0d0fcb.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-0d0fcb.png" }, { "if": { @@ -7489,7 +7503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citymd-1972a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citymd-1972a2.jpg" }, { "if": { @@ -7505,7 +7519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandclinic-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandclinic-0ca787.jpg" }, { "if": { @@ -7521,7 +7535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clinicasante-6e8e8c.png" + "then": "https://data.mapcomplete.org/nsi//logos/clinicasante-6e8e8c.png" }, { "if": { @@ -7537,7 +7551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityhealthcarenetwork-91756e.png" + "then": "https://data.mapcomplete.org/nsi//logos/communityhealthcarenetwork-91756e.png" }, { "if": { @@ -7553,7 +7567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunidaddemadrid-852236.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-852236.svg" }, { "if": { @@ -7569,7 +7583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/concentra-0ca787.png" + "then": "https://data.mapcomplete.org/nsi//logos/concentra-0ca787.png" }, { "if": { @@ -7586,7 +7600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cookcountyhealth-15fccf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cookcountyhealth-15fccf.jpg" }, { "if": { @@ -7602,7 +7616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornwallpartnershipnhsfoundationtrust-df4e98.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornwallpartnershipnhsfoundationtrust-df4e98.jpg" }, { "if": { @@ -7620,7 +7634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davitadialysis-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/davitadialysis-0ca787.jpg" }, { "if": { @@ -7636,7 +7650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devonpartnershipnhstrust-228a98.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devonpartnershipnhstrust-228a98.jpg" }, { "if": { @@ -7652,7 +7666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dignityhealth-781184.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dignityhealth-781184.jpg" }, { "if": { @@ -7668,7 +7682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorsethealthcareuniversitynhsfoundationtrust-da597c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorsethealthcareuniversitynhsfoundationtrust-da597c.jpg" }, { "if": { @@ -7684,7 +7698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dulyhealthandcare-15fccf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dulyhealthandcare-15fccf.jpg" }, { "if": { @@ -7700,7 +7714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easterncapedepartmentofhealth-0d0fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easterncapedepartmentofhealth-0d0fcb.jpg" }, { "if": { @@ -7717,7 +7731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentiahealth-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentiahealth-0ca787.jpg" }, { "if": { @@ -7733,7 +7747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freestatedepartmentofhealth-0d0fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freestatedepartmentofhealth-0d0fcb.jpg" }, { "if": { @@ -7751,7 +7765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freseniuskidneycare-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freseniuskidneycare-0ca787.jpg" }, { "if": { @@ -7769,7 +7783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freseniusmedicalcare-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freseniusmedicalcare-0ca787.jpg" }, { "if": { @@ -7785,7 +7799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gautengdepartmentofhealth-0d0fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gautengdepartmentofhealth-0d0fcb.jpg" }, { "if": { @@ -7801,7 +7815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitatvalenciana-edc4ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-edc4ef.jpg" }, { "if": { @@ -7817,7 +7831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ghanahealthservice-7981f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ghanahealthservice-7981f3.jpg" }, { "if": { @@ -7833,7 +7847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gobiernodelaciudaddebuenosaires-1cb73a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gobiernodelaciudaddebuenosaires-1cb73a.jpg" }, { "if": { @@ -7849,7 +7863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentofliberia-9451ff.svg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentofliberia-9451ff.svg" }, { "if": { @@ -7865,7 +7879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatormondstreethospitalforchildrennhsfoundationtrust-87581d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatormondstreethospitalforchildrennhsfoundationtrust-87581d.jpg" }, { "if": { @@ -7881,7 +7895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatermanchestermentalhealthnhsfoundationtrust-eea98d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatermanchestermentalhealthnhsfoundationtrust-eea98d.jpg" }, { "if": { @@ -7897,7 +7911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guthrieclinic-903c2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guthrieclinic-903c2d.jpg" }, { "if": { @@ -7913,7 +7927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hartfordhealthcare-190c2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hartfordhealthcare-190c2f.jpg" }, { "if": { @@ -7929,7 +7943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hattiesburgclinic-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hattiesburgclinic-0ca787.jpg" }, { "if": { @@ -7945,7 +7959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hca-0ca787.png" + "then": "https://data.mapcomplete.org/nsi//logos/hca-0ca787.png" }, { "if": { @@ -7962,7 +7976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthserviceexecutive-049286.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/healthserviceexecutive-049286.jpg" }, { "if": { @@ -7978,7 +7992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helioskliniken-ee9e20.svg" + "then": "https://data.mapcomplete.org/nsi//logos/helioskliniken-ee9e20.svg" }, { "if": { @@ -7994,7 +8008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/henryfordhealthsystem-5a0195.png" + "then": "https://data.mapcomplete.org/nsi//logos/henryfordhealthsystem-5a0195.png" }, { "if": { @@ -8010,7 +8024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoag-40b2ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoag-40b2ce.jpg" }, { "if": { @@ -8026,7 +8040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialcollegehealthcarenhstrust-3be3d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialcollegehealthcarenhstrust-3be3d3.jpg" }, { "if": { @@ -8042,7 +8056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inovahealthsystem-c2d833.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inovahealthsystem-c2d833.jpg" }, { "if": { @@ -8061,7 +8075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutomexicanodelsegurosocial-093f43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutomexicanodelsegurosocial-093f43.jpg" }, { "if": { @@ -8077,7 +8091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermountainhealthcare-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermountainhealthcare-0ca787.jpg" }, { "if": { @@ -8093,7 +8107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/internationalredcross-55c168.svg" + "then": "https://data.mapcomplete.org/nsi//logos/internationalredcross-55c168.svg" }, { "if": { @@ -8109,7 +8123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isleofwightnhstrust-cfb929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isleofwightnhstrust-cfb929.jpg" }, { "if": { @@ -8125,7 +8139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadeandalucia-edc4ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-edc4ef.jpg" }, { "if": { @@ -8142,7 +8156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaiserpermanente-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaiserpermanente-0ca787.jpg" }, { "if": { @@ -8159,7 +8173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kementeriankesihatanmalaysia-7765cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kementeriankesihatanmalaysia-7765cf.jpg" }, { "if": { @@ -8178,7 +8192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klinikmediviron-7765cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klinikmediviron-7765cf.jpg" }, { "if": { @@ -8194,7 +8208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwazulunataldepartmentofhealth-0d0fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwazulunataldepartmentofhealth-0d0fcb.jpg" }, { "if": { @@ -8210,7 +8224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legacyhealth-a30f15.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/legacyhealth-a30f15.jpg" }, { "if": { @@ -8226,7 +8240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lehighvalleyhealthnetwork-9e6808.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lehighvalleyhealthnetwork-9e6808.jpg" }, { "if": { @@ -8242,7 +8256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/limpopodepartmentofhealth-0d0fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/limpopodepartmentofhealth-0d0fcb.jpg" }, { "if": { @@ -8258,7 +8272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maidstoneandtunbridgewellsnhstrust-c8e3c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maidstoneandtunbridgewellsnhstrust-c8e3c4.jpg" }, { "if": { @@ -8274,7 +8288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshfieldclinic-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshfieldclinic-0ca787.jpg" }, { "if": { @@ -8291,7 +8305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medecinssansfrontieres-55c168.png" + "then": "https://data.mapcomplete.org/nsi//logos/medecinssansfrontieres-55c168.png" }, { "if": { @@ -8307,7 +8321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediccenternurnberg-0c30b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mediccenternurnberg-0c30b1.jpg" }, { "if": { @@ -8323,7 +8337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercy-0636e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercy-0636e2.jpg" }, { "if": { @@ -8339,7 +8353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michiganmedicine-5a0195.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michiganmedicine-5a0195.jpg" }, { "if": { @@ -8355,7 +8369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeredelasanteduburkinafaso-9e1076.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeredelasanteduburkinafaso-9e1076.png" }, { "if": { @@ -8371,7 +8385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodasaude-5f4b12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodasaude-5f4b12.jpg" }, { "if": { @@ -8388,7 +8402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesalud-4df2ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-4df2ff.png" }, { "if": { @@ -8405,7 +8419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesalud-5a45cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-5a45cd.jpg" }, { "if": { @@ -8422,7 +8436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaluddelperu-aa2e69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaluddelperu-aa2e69.jpg" }, { "if": { @@ -8439,7 +8453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludpublica-72f142.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-72f142.jpg" }, { "if": { @@ -8456,7 +8470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludpublica-371d66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-371d66.jpg" }, { "if": { @@ -8474,7 +8488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealth-1dcb84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-1dcb84.jpg" }, { "if": { @@ -8490,7 +8504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealth-5624d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-5624d8.jpg" }, { "if": { @@ -8506,7 +8520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealthandsanitation-13b62c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealthandsanitation-13b62c.jpg" }, { "if": { @@ -8523,7 +8537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofpublichealth-144162.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofpublichealth-144162.jpg" }, { "if": { @@ -8539,7 +8553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mpumalangadepartmentofhealth-0d0fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mpumalangadepartmentofhealth-0d0fcb.jpg" }, { "if": { @@ -8555,7 +8569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidadderosario-435027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidadderosario-435027.svg" }, { "if": { @@ -8571,7 +8585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddesanmartin-106d15.png" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddesanmartin-106d15.png" }, { "if": { @@ -8587,7 +8601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhs-3d3458.png" + "then": "https://data.mapcomplete.org/nsi//logos/nhs-3d3458.png" }, { "if": { @@ -8603,7 +8617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhsgrampian-3d3458.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nhsgrampian-3d3458.jpg" }, { "if": { @@ -8619,7 +8633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestdepartmentofhealth-0d0fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwestdepartmentofhealth-0d0fcb.jpg" }, { "if": { @@ -8635,7 +8649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northerncapedepartmentofhealth-0d0fcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northerncapedepartmentofhealth-0d0fcb.jpg" }, { "if": { @@ -8651,7 +8665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwellhealth-a74a54.png" + "then": "https://data.mapcomplete.org/nsi//logos/northwellhealth-a74a54.png" }, { "if": { @@ -8667,7 +8681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novanthealth-524bbb.png" + "then": "https://data.mapcomplete.org/nsi//logos/novanthealth-524bbb.png" }, { "if": { @@ -8683,7 +8697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nyulangonehealth-4c7359.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nyulangonehealth-4c7359.jpg" }, { "if": { @@ -8700,7 +8714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregonhealthandscienceuniversity-a30f15.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oregonhealthandscienceuniversity-a30f15.jpg" }, { "if": { @@ -8717,7 +8731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1lifehealthcare-0ca787.svg" + "then": "https://data.mapcomplete.org/nsi//logos/1lifehealthcare-0ca787.svg" }, { "if": { @@ -8733,7 +8747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osakidetza-edc4ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osakidetza-edc4ef.jpg" }, { "if": { @@ -8749,7 +8763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/passporthealth-e1ad58.png" + "then": "https://data.mapcomplete.org/nsi//logos/passporthealth-e1ad58.png" }, { "if": { @@ -8765,7 +8779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patientfirst-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/patientfirst-0ca787.jpg" }, { "if": { @@ -8783,7 +8797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plannedparenthood-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plannedparenthood-0ca787.jpg" }, { "if": { @@ -8800,7 +8814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pmpediatrics-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pmpediatrics-0ca787.jpg" }, { "if": { @@ -8816,7 +8830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituradacidadedoriodejaneiro-4e3c1b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituradacidadedoriodejaneiro-4e3c1b.svg" }, { "if": { @@ -8832,7 +8846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituradecamocim-d148ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituradecamocim-d148ab.png" }, { "if": { @@ -8848,7 +8862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituradonatal-c2c81c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituradonatal-c2c81c.svg" }, { "if": { @@ -8864,7 +8878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldearaguaina-9860b3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldearaguaina-9860b3.svg" }, { "if": { @@ -8880,7 +8894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldecatanduva-f10a78.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldecatanduva-f10a78.png" }, { "if": { @@ -8896,7 +8910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldechapeco-b1ce44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldechapeco-b1ce44.jpg" }, { "if": { @@ -8912,7 +8926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldeflorianopolis-b1ce44.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeflorianopolis-b1ce44.png" }, { "if": { @@ -8928,7 +8942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldepomerode-b1ce44.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldepomerode-b1ce44.png" }, { "if": { @@ -8944,7 +8958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldeseropedica-4e3c1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeseropedica-4e3c1b.jpg" }, { "if": { @@ -8960,7 +8974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/procare-ada481.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/procare-ada481.jpg" }, { "if": { @@ -8976,7 +8990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/providencehealthandservices-0ca787.png" + "then": "https://data.mapcomplete.org/nsi//logos/providencehealthandservices-0ca787.png" }, { "if": { @@ -8992,7 +9006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadesantafe-435027.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadesantafe-435027.jpg" }, { "if": { @@ -9008,7 +9022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadelchaco-fcab17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadelchaco-fcab17.jpg" }, { "if": { @@ -9024,7 +9038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionblekinge-020929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regionblekinge-020929.jpg" }, { "if": { @@ -9040,7 +9054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhonklinikum-ee9e20.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rhonklinikum-ee9e20.svg" }, { "if": { @@ -9056,7 +9070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochesterregionalhealth-a74a54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochesterregionalhealth-a74a54.jpg" }, { "if": { @@ -9072,7 +9086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacyl-edc4ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacyl-edc4ef.jpg" }, { "if": { @@ -9088,7 +9102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saglikbakanligi-712bef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saglikbakanligi-712bef.jpg" }, { "if": { @@ -9104,7 +9118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samaritanhealthservices-51a80e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samaritanhealthservices-51a80e.jpg" }, { "if": { @@ -9120,7 +9134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanakliniken-ee9e20.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanakliniken-ee9e20.png" }, { "if": { @@ -9138,7 +9152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/satellitehealthcare-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/satellitehealthcare-0ca787.jpg" }, { "if": { @@ -9155,7 +9169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/segurosocialdesalud-aa2e69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/segurosocialdesalud-aa2e69.jpg" }, { "if": { @@ -9172,7 +9186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicioandaluzdesalud-edc4ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicioandaluzdesalud-edc4ef.jpg" }, { "if": { @@ -9189,7 +9203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serviciodesaluddecastillalamancha-edc4ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/serviciodesaluddecastillalamancha-edc4ef.png" }, { "if": { @@ -9206,7 +9220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicioextremenodesalud-edc4ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicioextremenodesalud-edc4ef.jpg" }, { "if": { @@ -9223,7 +9237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serviciomadrilenodesalud-edc4ef.svg" + "then": "https://data.mapcomplete.org/nsi//logos/serviciomadrilenodesalud-edc4ef.svg" }, { "if": { @@ -9240,7 +9254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serviconacionaldesaude-3f54c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/serviconacionaldesaude-3f54c3.jpg" }, { "if": { @@ -9257,7 +9271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servizogalegodesaude-edc4ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/servizogalegodesaude-edc4ef.png" }, { "if": { @@ -9274,7 +9288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sistemaunicodesaude-5f4b12.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sistemaunicodesaude-5f4b12.svg" }, { "if": { @@ -9290,7 +9304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetnhsfoundationtrust-7489bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/somersetnhsfoundationtrust-7489bf.png" }, { "if": { @@ -9307,7 +9321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terveystalo-6db834.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terveystalo-6db834.jpg" }, { "if": { @@ -9323,7 +9337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucsandiegohealth-40b2ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/ucsandiegohealth-40b2ce.png" }, { "if": { @@ -9338,7 +9352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ucihealth-caf9d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ucihealth-caf9d6.jpg" }, { "if": { @@ -9354,7 +9368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uclahealth-40b2ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uclahealth-40b2ce.jpg" }, { "if": { @@ -9370,7 +9384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitypointhealth-37d845.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitypointhealth-37d845.jpg" }, { "if": { @@ -9386,7 +9400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityhospitalsdorsetnhsfoundationtrust-da597c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityhospitalsdorsetnhsfoundationtrust-da597c.jpg" }, { "if": { @@ -9402,7 +9416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/upmc-0ca787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/upmc-0ca787.jpg" }, { "if": { @@ -9419,7 +9433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofrochestermedicalcenter-a74a54.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofrochestermedicalcenter-a74a54.png" }, { "if": { @@ -9439,7 +9453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veteranshealthadministration-0ca787.png" + "then": "https://data.mapcomplete.org/nsi//logos/veteranshealthadministration-0ca787.png" }, { "if": { @@ -9456,7 +9470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vastragotalandsregionen-020929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vastragotalandsregionen-020929.jpg" }, { "if": { @@ -9472,7 +9486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivantes-ee9e20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivantes-ee9e20.jpg" }, { "if": { @@ -9490,7 +9504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoomcare-0ca787.png" + "then": "https://data.mapcomplete.org/nsi//logos/zoomcare-0ca787.png" }, { "if": { @@ -9508,7 +9522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clalithealthcareservices-1b314b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clalithealthcareservices-1b314b.jpg" }, { "if": { @@ -9526,7 +9540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maccabihealthcareservices-1b314b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maccabihealthcareservices-1b314b.jpg" }, { "if": { @@ -9541,7 +9555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdublineducationandtrainingboard-f72bc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdublineducationandtrainingboard-f72bc8.jpg" }, { "if": { @@ -9557,7 +9571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutonacionaldeaprendizaje-12434b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutonacionaldeaprendizaje-12434b.jpg" }, { "if": { @@ -9572,7 +9586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeredelenseignementsuperieuretdelarecherche-dac3bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeredelenseignementsuperieuretdelarecherche-dac3bc.png" }, { "if": { @@ -9588,7 +9602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandcommunitycollege-58b6d9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/portlandcommunitycollege-58b6d9.svg" }, { "if": { @@ -9604,7 +9618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicionacionaldeaprendizaje-04260a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicionacionaldeaprendizaje-04260a.jpg" }, { "if": { @@ -9619,7 +9633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tafensw-e830c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tafensw-e830c3.jpg" }, { "if": { @@ -9634,7 +9648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tafequeensland-fa7e1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tafequeensland-fa7e1f.jpg" }, { "if": { @@ -9649,7 +9663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tafesouthaustralia-6ab48a.png" + "then": "https://data.mapcomplete.org/nsi//logos/tafesouthaustralia-6ab48a.png" }, { "if": { @@ -9664,7 +9678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tastafe-e237af.png" + "then": "https://data.mapcomplete.org/nsi//logos/tastafe-e237af.png" }, { "if": { @@ -9679,7 +9693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universidadedesaopaulo-628adc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/universidadedesaopaulo-628adc.svg" }, { "if": { @@ -9694,7 +9708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitedelille-9d11c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/universitedelille-9d11c1.png" }, { "if": { @@ -9709,7 +9723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitimalaya-b3f432.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitimalaya-b3f432.jpg" }, { "if": { @@ -9724,7 +9738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofduhok-7b4b17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofduhok-7b4b17.jpg" }, { "if": { @@ -9739,7 +9753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofnorthgeorgia-c585b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofnorthgeorgia-c585b8.png" }, { "if": { @@ -9754,7 +9768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofthehighlandsandislands-35db51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofthehighlandsandislands-35db51.jpg" }, { "if": { @@ -9769,7 +9783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdebarcelona-b0bc99.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-b0bc99.svg" }, { "if": { @@ -9784,7 +9798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aucklandcouncil-8f36f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-8f36f1.png" }, { "if": { @@ -9799,7 +9813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemadrid-bf9ebc.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-bf9ebc.png" }, { "if": { @@ -9814,7 +9828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-57d70d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-57d70d.jpg" }, { "if": { @@ -9829,7 +9843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagoparkdistrict-706aee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagoparkdistrict-706aee.jpg" }, { "if": { @@ -9844,7 +9858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chiro-d3b2a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/chiro-d3b2a9.png" }, { "if": { @@ -9859,7 +9873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcapetown-2d14a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-2d14a3.png" }, { "if": { @@ -9874,7 +9888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcleveland-47f0c6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcleveland-47f0c6.svg" }, { "if": { @@ -9889,7 +9903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofkitchener-6e645e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofkitchener-6e645e.jpg" }, { "if": { @@ -9904,7 +9918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflosangeles-0fcd3d.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflosangeles-0fcd3d.png" }, { "if": { @@ -9919,7 +9933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoforlando-fb3645.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoforlando-fb3645.jpg" }, { "if": { @@ -9934,7 +9948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofottawa-6e645e.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofottawa-6e645e.png" }, { "if": { @@ -9949,7 +9963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofportland-60cfde.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofportland-60cfde.svg" }, { "if": { @@ -9964,7 +9978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftoronto-6e645e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftoronto-6e645e.svg" }, { "if": { @@ -9979,7 +9993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/concellodeabegondo-1f7aba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/concellodeabegondo-1f7aba.svg" }, { "if": { @@ -9994,7 +10008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/concellodecarral-1f7aba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/concellodecarral-1f7aba.svg" }, { "if": { @@ -10009,7 +10023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentenijmegen-f90bd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentenijmegen-f90bd5.jpg" }, { "if": { @@ -10024,7 +10038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminachojnow-c977f5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gminachojnow-c977f5.svg" }, { "if": { @@ -10039,7 +10053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halifaxregionalmunicipality-74c2ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halifaxregionalmunicipality-74c2ea.jpg" }, { "if": { @@ -10055,7 +10069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutoecuatorianodeseguridadsocial-aa1b4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutoecuatorianodeseguridadsocial-aa1b4b.jpg" }, { "if": { @@ -10070,7 +10084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jungekirchespeyerdiozesanverband-84d773.png" + "then": "https://data.mapcomplete.org/nsi//logos/jungekirchespeyerdiozesanverband-84d773.png" }, { "if": { @@ -10085,7 +10099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadeandalucia-1f7aba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-1f7aba.jpg" }, { "if": { @@ -10100,7 +10114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kreisjugendringmunchenstadt-1aa910.png" + "then": "https://data.mapcomplete.org/nsi//logos/kreisjugendringmunchenstadt-1aa910.png" }, { "if": { @@ -10115,7 +10129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddeneuquen-ff4eea.png" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-ff4eea.png" }, { "if": { @@ -10130,7 +10144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scoutssouthafrica-2d14a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/scoutssouthafrica-2d14a3.png" }, { "if": { @@ -10145,7 +10159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtpaderborn-ffde9d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtpaderborn-ffde9d.svg" }, { "if": { @@ -10161,7 +10175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtjugendringaugsburg-1aa910.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtjugendringaugsburg-1aa910.jpg" }, { "if": { @@ -10176,7 +10190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stiftungzurchergemeinschaftszentren-4b6460.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stiftungzurchergemeinschaftszentren-4b6460.svg" }, { "if": { @@ -10191,7 +10205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svenskakyrkan-57685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/svenskakyrkan-57685d.jpg" }, { "if": { @@ -10206,7 +10220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesalvationarmy-e4e4f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-e4e4f8.png" }, { "if": { @@ -10221,7 +10235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofflorida-fb3645.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofflorida-fb3645.jpg" }, { "if": { @@ -10236,7 +10250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ymca-232bda.png" + "then": "https://data.mapcomplete.org/nsi//logos/ymca-232bda.png" }, { "if": { @@ -10250,7 +10264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circuitcourtofcookcounty-ca7500.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/circuitcourtofcookcounty-ca7500.jpg" }, { "if": { @@ -10264,7 +10278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthofmassachusetts-cb4f91.svg" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthofmassachusetts-cb4f91.svg" }, { "if": { @@ -10279,7 +10293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/courtsoftherepublicofireland-920af5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/courtsoftherepublicofireland-920af5.jpg" }, { "if": { @@ -10294,7 +10308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hmcourtsandtribunalsservice-c561a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hmcourtsandtribunalsservice-c561a5.jpg" }, { "if": { @@ -10308,7 +10322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodajustica-e063cd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodajustica-e063cd.svg" }, { "if": { @@ -10322,7 +10336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodajustica-b3c1f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodajustica-b3c1f4.png" }, { "if": { @@ -10336,7 +10350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodejusticia-66344a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodejusticia-66344a.png" }, { "if": { @@ -10350,7 +10364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodejusticia-a94c87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodejusticia-a94c87.jpg" }, { "if": { @@ -10364,7 +10378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodejusticia-3a2cbc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodejusticia-3a2cbc.svg" }, { "if": { @@ -10378,7 +10392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerodellagiustizia-df8fce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerodellagiustizia-df8fce.jpg" }, { "if": { @@ -10392,7 +10406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofjustice-497bf0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofjustice-497bf0.png" }, { "if": { @@ -10406,7 +10420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofjustice-c561a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofjustice-c561a5.jpg" }, { "if": { @@ -10420,7 +10434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poderjudicial-db9fe2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/poderjudicial-db9fe2.svg" }, { "if": { @@ -10434,7 +10448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poderjudicialdelperu-351c1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poderjudicialdelperu-351c1b.jpg" }, { "if": { @@ -10448,7 +10462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tribunaldejusticadodistritofederaledosterritorios-e063cd.gif" + "then": "https://data.mapcomplete.org/nsi//logos/tribunaldejusticadodistritofederaledosterritorios-e063cd.gif" }, { "if": { @@ -10462,7 +10476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tribunaldejusticadoestadodeminasgerais-145c04.png" + "then": "https://data.mapcomplete.org/nsi//logos/tribunaldejusticadoestadodeminasgerais-145c04.png" }, { "if": { @@ -10477,7 +10491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abrazocommunityhealthnetwork-85b200.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abrazocommunityhealthnetwork-85b200.jpg" }, { "if": { @@ -10492,7 +10506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/augenzentrumeckert-628c49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/augenzentrumeckert-628c49.jpg" }, { "if": { @@ -10508,7 +10522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitatvalenciana-82fbf1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-82fbf1.jpg" }, { "if": { @@ -10523,7 +10537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ggdrotterdamrijnmond-dc48cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ggdrotterdamrijnmond-dc48cf.jpg" }, { "if": { @@ -10538,7 +10552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ggdzeeland-dc48cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ggdzeeland-dc48cf.jpg" }, { "if": { @@ -10553,7 +10567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoag-a20194.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoag-a20194.jpg" }, { "if": { @@ -10568,7 +10582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercyhealth-4a018b.png" + "then": "https://data.mapcomplete.org/nsi//logos/mercyhealth-4a018b.png" }, { "if": { @@ -10583,7 +10597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochesterregionalhealth-cadfb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochesterregionalhealth-cadfb7.jpg" }, { "if": { @@ -10599,7 +10613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofrochestermedicalcenter-cadfb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofrochestermedicalcenter-cadfb7.png" }, { "if": { @@ -10614,7 +10628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uwmedicine-3ba0f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uwmedicine-3ba0f7.jpg" }, { "if": { @@ -10628,7 +10642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acea-8df115.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acea-8df115.jpg" }, { "if": { @@ -10642,7 +10656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdebarcelona-fb4f0f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-fb4f0f.svg" }, { "if": { @@ -10656,7 +10670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdevalencia-a7f52c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdevalencia-a7f52c.svg" }, { "if": { @@ -10670,7 +10684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemadrid-08fe37.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-08fe37.png" }, { "if": { @@ -10685,7 +10699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerwasserbetriebe-8361bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerwasserbetriebe-8361bc.png" }, { "if": { @@ -10699,7 +10713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brabantwater-0a63fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brabantwater-0a63fc.jpg" }, { "if": { @@ -10713,7 +10727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christchurchcitycouncil-f7c9d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/christchurchcitycouncil-f7c9d2.jpg" }, { "if": { @@ -10728,7 +10742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofaustin-6aaee1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofaustin-6aaee1.svg" }, { "if": { @@ -10742,7 +10756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofburnaby-f4df2b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofburnaby-f4df2b.svg" }, { "if": { @@ -10757,7 +10771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdenton-6aaee1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdenton-6aaee1.jpg" }, { "if": { @@ -10771,7 +10785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedimontalcino-1a4497.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedimontalcino-1a4497.svg" }, { "if": { @@ -10785,7 +10799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedimontepulciano-1a4497.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedimontepulciano-1a4497.svg" }, { "if": { @@ -10799,7 +10813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedisiena-1a4497.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedisiena-1a4497.svg" }, { "if": { @@ -10813,7 +10827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comuneditorritadisiena-1a4497.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comuneditorritadisiena-1a4497.svg" }, { "if": { @@ -10827,7 +10841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/darebincitycouncil-bffbbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/darebincitycouncil-bffbbc.jpg" }, { "if": { @@ -10841,7 +10855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dewatergroep-d9e26a.png" + "then": "https://data.mapcomplete.org/nsi//logos/dewatergroep-d9e26a.png" }, { "if": { @@ -10855,7 +10869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunea-0a63fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunea-0a63fc.jpg" }, { "if": { @@ -10869,7 +10883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eaudeparis-02ca9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eaudeparis-02ca9b.jpg" }, { "if": { @@ -10883,7 +10897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emasesa-a7f52c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emasesa-a7f52c.jpg" }, { "if": { @@ -10897,7 +10911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evides-0a63fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/evides-0a63fc.png" }, { "if": { @@ -10911,7 +10925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindegampelbratsch-223315.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindegampelbratsch-223315.svg" }, { "if": { @@ -10925,7 +10939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindetoblach-6c07c4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindetoblach-6c07c4.svg" }, { "if": { @@ -10939,7 +10953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globaltap-3fbe17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globaltap-3fbe17.jpg" }, { "if": { @@ -10954,7 +10968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helsinginseudunymparistopalvelut-077748.png" + "then": "https://data.mapcomplete.org/nsi//logos/helsinginseudunymparistopalvelut-077748.png" }, { "if": { @@ -10968,7 +10982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hockinghillsstatepark-44b6ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hockinghillsstatepark-44b6ea.jpg" }, { "if": { @@ -10982,7 +10996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holdinggraz-8c9bfd.png" + "then": "https://data.mapcomplete.org/nsi//logos/holdinggraz-8c9bfd.png" }, { "if": { @@ -10996,7 +11010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iren-8df115.png" + "then": "https://data.mapcomplete.org/nsi//logos/iren-8df115.png" }, { "if": { @@ -11010,7 +11024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miamidadecollege-4ee648.png" + "then": "https://data.mapcomplete.org/nsi//logos/miamidadecollege-4ee648.png" }, { "if": { @@ -11024,7 +11038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalityofshumen-65e457.svg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalityofshumen-65e457.svg" }, { "if": { @@ -11038,7 +11052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nederlandsespoorwegen-0a63fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-0a63fc.png" }, { "if": { @@ -11052,7 +11066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oasen-0a63fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oasen-0a63fc.jpg" }, { "if": { @@ -11066,7 +11080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onea-12cfce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onea-12cfce.jpg" }, { "if": { @@ -11080,7 +11094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfam-3fbe17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfam-3fbe17.jpg" }, { "if": { @@ -11094,7 +11108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksvictoria-bffbbc.png" + "then": "https://data.mapcomplete.org/nsi//logos/parksvictoria-bffbbc.png" }, { "if": { @@ -11109,7 +11123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandbureauoftransportation-f48dad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portlandbureauoftransportation-f48dad.jpg" }, { "if": { @@ -11123,7 +11137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peacewindsjapan-1f271a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peacewindsjapan-1f271a.jpg" }, { "if": { @@ -11137,7 +11151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadibrescia-001ccd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadibrescia-001ccd.svg" }, { "if": { @@ -11151,7 +11165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pwn-0a63fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pwn-0a63fc.jpg" }, { "if": { @@ -11165,7 +11179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinenergie-a3ecbe.png" + "then": "https://data.mapcomplete.org/nsi//logos/rheinenergie-a3ecbe.png" }, { "if": { @@ -11179,7 +11193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-a1fadc.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-a1fadc.png" }, { "if": { @@ -11194,7 +11208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishwater-3032ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/scottishwater-3032ed.png" }, { "if": { @@ -11210,7 +11224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-223fdb.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-223fdb.png" }, { "if": { @@ -11224,7 +11238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbludenz-44bf8e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbludenz-44bf8e.svg" }, { "if": { @@ -11238,7 +11252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtdornbirn-44bf8e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtdornbirn-44bf8e.svg" }, { "if": { @@ -11252,7 +11266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgraz-8c9bfd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgraz-8c9bfd.svg" }, { "if": { @@ -11266,7 +11280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtlinz-ea6086.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtlinz-ea6086.jpg" }, { "if": { @@ -11280,7 +11294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebrixenag-6c07c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebrixenag-6c07c4.jpg" }, { "if": { @@ -11294,7 +11308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicef-3fbe17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unicef-3fbe17.jpg" }, { "if": { @@ -11308,7 +11322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofmelbourne-bffbbc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofmelbourne-bffbbc.jpg" }, { "if": { @@ -11322,7 +11336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofsouthwales-97bbae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofsouthwales-97bbae.jpg" }, { "if": { @@ -11336,7 +11350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valeofglamorgancouncil-97bbae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valeofglamorgancouncil-97bbae.jpg" }, { "if": { @@ -11350,7 +11364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veoliaeau-02ca9b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/veoliaeau-02ca9b.svg" }, { "if": { @@ -11365,7 +11379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verejnazelenmestabrna-eb7dc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verejnazelenmestabrna-eb7dc3.jpg" }, { "if": { @@ -11379,7 +11393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedelevis-5fe9c1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/villedelevis-5fe9c1.svg" }, { "if": { @@ -11393,7 +11407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedeliege-d9e26a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villedeliege-d9e26a.jpg" }, { "if": { @@ -11407,7 +11421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitens-0a63fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitens-0a63fc.jpg" }, { "if": { @@ -11422,7 +11436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskavodarenskaspolocnost-82b290.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskavodarenskaspolocnost-82b290.png" }, { "if": { @@ -11436,7 +11450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waterbedrijfgroningen-0a63fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waterbedrijfgroningen-0a63fc.jpg" }, { "if": { @@ -11450,7 +11464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waterlink-d9e26a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waterlink-d9e26a.jpg" }, { "if": { @@ -11464,7 +11478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waternet-0a63fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/waternet-0a63fc.png" }, { "if": { @@ -11478,7 +11492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellingtoncitycouncil-93c193.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellingtoncitycouncil-93c193.jpg" }, { "if": { @@ -11492,7 +11506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wessexwater-87a91c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wessexwater-87a91c.jpg" }, { "if": { @@ -11506,7 +11520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wmddrentsdrinkwater-0a63fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wmddrentsdrinkwater-0a63fc.jpg" }, { "if": { @@ -11520,7 +11534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wmllimburgsdrinkwater-0a63fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wmllimburgsdrinkwater-0a63fc.jpg" }, { "if": { @@ -11534,7 +11548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wvz-32a6c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wvz-32a6c1.jpg" }, { "if": { @@ -11548,7 +11562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ankaraitfaiyesi-65f4f7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ankaraitfaiyesi-65f4f7.svg" }, { "if": { @@ -11562,7 +11576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avonfireandrescueservice-ab1fb5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avonfireandrescueservice-ab1fb5.jpg" }, { "if": { @@ -11576,7 +11590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemadrid-5d5dc4.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-5d5dc4.png" }, { "if": { @@ -11590,7 +11604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecityfiredepartment-476f51.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecityfiredepartment-476f51.jpg" }, { "if": { @@ -11604,7 +11618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bataillondemarinspompiersdemarseille-2fa295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bataillondemarinspompiersdemarseille-2fa295.jpg" }, { "if": { @@ -11618,7 +11632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedfordshirefireandrescueservice-61f16b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedfordshirefireandrescueservice-61f16b.jpg" }, { "if": { @@ -11632,7 +11646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerfeuerwehr-6d60c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerfeuerwehr-6d60c4.jpg" }, { "if": { @@ -11647,7 +11661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bernalillocountyfiredepartment-ee0f4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bernalillocountyfiredepartment-ee0f4a.jpg" }, { "if": { @@ -11661,7 +11675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamfireandrescueservicedepartment-cc12c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamfireandrescueservicedepartment-cc12c6.jpg" }, { "if": { @@ -11675,7 +11689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brandweerzonecentrum-17028f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brandweerzonecentrum-17028f.jpg" }, { "if": { @@ -11689,7 +11703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brandweerzonerivierenland-17028f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brandweerzonerivierenland-17028f.jpg" }, { "if": { @@ -11706,7 +11720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brigadamilitardoriograndedosul-5b42d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brigadamilitardoriograndedosul-5b42d3.jpg" }, { "if": { @@ -11722,7 +11736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bspp-9a45cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bspp-9a45cb.jpg" }, { "if": { @@ -11736,7 +11750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buckinghamshirefireandrescueservice-6145a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buckinghamshirefireandrescueservice-6145a7.jpg" }, { "if": { @@ -11750,7 +11764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauoffireprotection-267105.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauoffireprotection-267105.jpg" }, { "if": { @@ -11764,7 +11778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calgaryfiredepartment-d75009.png" + "then": "https://data.mapcomplete.org/nsi//logos/calgaryfiredepartment-d75009.png" }, { "if": { @@ -11779,7 +11793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofforestryandfireprotection-8a59ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofforestryandfireprotection-8a59ad.jpg" }, { "if": { @@ -11793,7 +11807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cambridgeshirefireandrescueservice-61f16b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cambridgeshirefireandrescueservice-61f16b.jpg" }, { "if": { @@ -11807,7 +11821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cgdis-113857.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cgdis-113857.jpg" }, { "if": { @@ -11821,7 +11835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cheshirefireandrescueservice-5355cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cheshirefireandrescueservice-5355cf.jpg" }, { "if": { @@ -11835,7 +11849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagofiredepartment-68d3d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagofiredepartment-68d3d9.jpg" }, { "if": { @@ -11849,7 +11863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cincinnatifiredepartment-9e25c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cincinnatifiredepartment-9e25c5.jpg" }, { "if": { @@ -11863,7 +11877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofboise-46f1bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofboise-46f1bf.png" }, { "if": { @@ -11877,7 +11891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofconcord-79c902.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofconcord-79c902.png" }, { "if": { @@ -11891,7 +11905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofphoenix-988138.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofphoenix-988138.jpg" }, { "if": { @@ -11905,7 +11919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clackamasfiredistrict1-b9064d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clackamasfiredistrict1-b9064d.jpg" }, { "if": { @@ -11919,7 +11933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandfirebrigade-c946be.png" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandfirebrigade-c946be.png" }, { "if": { @@ -11933,7 +11947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cobbcountyfireandemergencyservices-0d982b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cobbcountyfireandemergencyservices-0d982b.jpg" }, { "if": { @@ -11947,7 +11961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunidaddemadrid-5d5dc4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-5d5dc4.svg" }, { "if": { @@ -11961,7 +11975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornwallfireandrescueservice-668361.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornwallfireandrescueservice-668361.jpg" }, { "if": { @@ -11976,7 +11990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpodebombeirosmilitardesantacatarina-81e8d3.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpodebombeirosmilitardesantacatarina-81e8d3.png" }, { "if": { @@ -11990,7 +12004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corponazionaledeivigilidelfuoco-783fb8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/corponazionaledeivigilidelfuoco-783fb8.svg" }, { "if": { @@ -12004,7 +12018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countryfireauthority-1faece.png" + "then": "https://data.mapcomplete.org/nsi//logos/countryfireauthority-1faece.png" }, { "if": { @@ -12018,7 +12032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countydurhamanddarlingtonfireandrescueservice-c946be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/countydurhamanddarlingtonfireandrescueservice-c946be.jpg" }, { "if": { @@ -12034,7 +12048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cuerpodebomberosdehonduras-696c1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cuerpodebomberosdehonduras-696c1a.jpg" }, { "if": { @@ -12048,7 +12062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cumbriafireandrescueservice-5355cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cumbriafireandrescueservice-5355cf.jpg" }, { "if": { @@ -12062,7 +12076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentoffireandemergencyservices-72fb76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentoffireandemergencyservices-72fb76.jpg" }, { "if": { @@ -12076,7 +12090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbyshirefireandrescueservice-18a147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derbyshirefireandrescueservice-18a147.jpg" }, { "if": { @@ -12090,7 +12104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devonandsomersetfireandrescueservice-52c78e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devonandsomersetfireandrescueservice-52c78e.jpg" }, { "if": { @@ -12105,7 +12119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dobrovolnapoziarnaochranaslovenskejrepubliky-e10424.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dobrovolnapoziarnaochranaslovenskejrepubliky-e10424.jpg" }, { "if": { @@ -12119,7 +12133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorsetandwiltshirefireandrescueservice-1f1daa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorsetandwiltshirefireandrescueservice-1f1daa.jpg" }, { "if": { @@ -12133,7 +12147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dublinfirebrigade-ef8593.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dublinfirebrigade-ef8593.jpg" }, { "if": { @@ -12147,7 +12161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastsussexfireandrescueservice-ad6cf7.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastsussexfireandrescueservice-ad6cf7.png" }, { "if": { @@ -12161,7 +12175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essexcountyfireandrescueservice-61f16b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essexcountyfireandrescueservice-61f16b.jpg" }, { "if": { @@ -12175,7 +12189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fentresscountyfiredepartment-9a6744.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fentresscountyfiredepartment-9a6744.jpg" }, { "if": { @@ -12189,7 +12203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fireandemergencynewzealand-4a36f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fireandemergencynewzealand-4a36f8.jpg" }, { "if": { @@ -12203,7 +12217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fireandrescuensw-da435c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fireandrescuensw-da435c.jpg" }, { "if": { @@ -12217,7 +12231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firerescuevictoria-1faece.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firerescuevictoria-1faece.jpg" }, { "if": { @@ -12231,7 +12245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindegnarrenburg-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindegnarrenburg-204ac7.svg" }, { "if": { @@ -12245,7 +12259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindeloxstedt-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindeloxstedt-204ac7.svg" }, { "if": { @@ -12259,7 +12273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gloucestershirefireandrescueservice-ab1fb5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gloucestershirefireandrescueservice-ab1fb5.jpg" }, { "if": { @@ -12273,7 +12287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatermanchesterfireandrescueservice-9d4156.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatermanchesterfireandrescueservice-9d4156.jpg" }, { "if": { @@ -12287,7 +12301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halifaxregionalfireandemergency-d13411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halifaxregionalfireandemergency-d13411.jpg" }, { "if": { @@ -12301,7 +12315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hampshireandisleofwightfireandrescueservice-6145a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/hampshireandisleofwightfireandrescueservice-6145a7.png" }, { "if": { @@ -12316,7 +12330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hasicskyazachrannyzbor-e10424.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hasicskyazachrannyzbor-e10424.jpg" }, { "if": { @@ -12330,7 +12344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/herefordandworcesterfireandrescueservice-794a68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/herefordandworcesterfireandrescueservice-794a68.jpg" }, { "if": { @@ -12344,7 +12358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heroicocuerpodebomberosdelaciudaddemexico-c99019.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heroicocuerpodebomberosdelaciudaddemexico-c99019.jpg" }, { "if": { @@ -12358,7 +12372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hertfordshirefireandrescueservice-61f16b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hertfordshirefireandrescueservice-61f16b.jpg" }, { "if": { @@ -12372,7 +12386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hillsborofireandrescue-b9064d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hillsborofireandrescue-b9064d.jpg" }, { "if": { @@ -12386,7 +12400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/horrycounty-104978.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/horrycounty-104978.jpg" }, { "if": { @@ -12400,7 +12414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hulpverleningszonecentrum-17028f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonecentrum-17028f.jpg" }, { "if": { @@ -12414,7 +12428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hulpverleningszonefluvia-17028f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonefluvia-17028f.jpg" }, { "if": { @@ -12428,7 +12442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hulpverleningszonerand-17028f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonerand-17028f.jpg" }, { "if": { @@ -12442,7 +12456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hulpverleningszonetaxandria-17028f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonetaxandria-17028f.jpg" }, { "if": { @@ -12456,7 +12470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hulpverleningszonezone1-17028f.png" + "then": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonezone1-17028f.png" }, { "if": { @@ -12470,7 +12484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/humbersidefireandrescueservice-6d4c94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/humbersidefireandrescueservice-6d4c94.jpg" }, { "if": { @@ -12484,7 +12498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istanbulitfaiyesi-65f4f7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/istanbulitfaiyesi-65f4f7.svg" }, { "if": { @@ -12499,7 +12513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksoncountyfiredistrict3-b9064d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksoncountyfiredistrict3-b9064d.jpg" }, { "if": { @@ -12513,7 +12527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansascityfiredepartment-6af3e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kansascityfiredepartment-6af3e3.jpg" }, { "if": { @@ -12527,7 +12541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentfireandrescueservice-ad6cf7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentfireandrescueservice-ad6cf7.jpg" }, { "if": { @@ -12541,7 +12555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayettecountyfiredepartment-c14f55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayettecountyfiredepartment-c14f55.jpg" }, { "if": { @@ -12555,7 +12569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancashirefireandrescueservice-5355cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancashirefireandrescueservice-5355cf.jpg" }, { "if": { @@ -12569,7 +12583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeshauptstadthannover-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landeshauptstadthannover-204ac7.svg" }, { "if": { @@ -12583,7 +12597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leicestershirefireandrescueservice-18a147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leicestershirefireandrescueservice-18a147.jpg" }, { "if": { @@ -12597,7 +12611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnfireandrescue-9a1d02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnfireandrescue-9a1d02.jpg" }, { "if": { @@ -12611,7 +12625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnshirefireandrescue-18a147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnshirefireandrescue-18a147.jpg" }, { "if": { @@ -12625,7 +12639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonfirebrigade-459fd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonfirebrigade-459fd1.jpg" }, { "if": { @@ -12639,7 +12653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelescountyfiredepartment-baa277.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losangelescountyfiredepartment-baa277.jpg" }, { "if": { @@ -12653,7 +12667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesfiredepartment-a95892.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesfiredepartment-a95892.jpg" }, { "if": { @@ -12667,7 +12681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/merseysidefireandrescueservice-5355cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/merseysidefireandrescueservice-5355cf.png" }, { "if": { @@ -12683,7 +12697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midandwestwalesfireandrescueservice-6e80d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midandwestwalesfireandrescueservice-6e80d5.jpg" }, { "if": { @@ -12697,7 +12711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milwaukeefiredepartment-37838a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milwaukeefiredepartment-37838a.jpg" }, { "if": { @@ -12712,7 +12726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstvovnutraslovenskejrepubliky-e10424.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstvovnutraslovenskejrepubliky-e10424.jpg" }, { "if": { @@ -12726,7 +12740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/napervillefiredepartment-67e5e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/napervillefiredepartment-67e5e3.jpg" }, { "if": { @@ -12740,7 +12754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkcityfiredepartment-bff363.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkcityfiredepartment-bff363.jpg" }, { "if": { @@ -12754,7 +12768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolkfireandrescueservice-61f16b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolkfireandrescueservice-61f16b.jpg" }, { "if": { @@ -12770,7 +12784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwalesfireandrescueservice-6e80d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwalesfireandrescueservice-6e80d5.jpg" }, { "if": { @@ -12784,7 +12798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northyorkshirefireandrescueservice-6d4c94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northyorkshirefireandrescueservice-6d4c94.jpg" }, { "if": { @@ -12798,7 +12812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northamptonshirefireandrescueservice-18a147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northamptonshirefireandrescueservice-18a147.jpg" }, { "if": { @@ -12812,7 +12826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernirelandfireandrescueservice-5d3b39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernirelandfireandrescueservice-5d3b39.jpg" }, { "if": { @@ -12826,7 +12840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northumberlandfireandrescueservice-c946be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northumberlandfireandrescueservice-c946be.jpg" }, { "if": { @@ -12840,7 +12854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nottinghamshirefireandrescueservice-18a147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nottinghamshirefireandrescueservice-18a147.jpg" }, { "if": { @@ -12854,7 +12868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswruralfireservice-da435c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswruralfireservice-da435c.jpg" }, { "if": { @@ -12868,7 +12882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangecountyfireauthority-cc9388.png" + "then": "https://data.mapcomplete.org/nsi//logos/orangecountyfireauthority-cc9388.png" }, { "if": { @@ -12882,7 +12896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangecountyfirerescue-528b2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orangecountyfirerescue-528b2f.jpg" }, { "if": { @@ -12896,7 +12910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlandofiredepartment-528b2f.png" + "then": "https://data.mapcomplete.org/nsi//logos/orlandofiredepartment-528b2f.png" }, { "if": { @@ -12910,7 +12924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paasteamet-26aa01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paasteamet-26aa01.jpg" }, { "if": { @@ -12924,7 +12938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panstwowastrazpozarna-a9e71c.png" + "then": "https://data.mapcomplete.org/nsi//logos/panstwowastrazpozarna-a9e71c.png" }, { "if": { @@ -12938,7 +12952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pascocountyfirerescue-528b2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pascocountyfirerescue-528b2f.jpg" }, { "if": { @@ -12952,7 +12966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelaprovinciademisiones-2eeaa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciademisiones-2eeaa2.jpg" }, { "if": { @@ -12966,7 +12980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandfireandrescue-b9064d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portlandfireandrescue-b9064d.jpg" }, { "if": { @@ -12980,7 +12994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalberkshirefireandrescueservice-6145a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/royalberkshirefireandrescueservice-6145a7.png" }, { "if": { @@ -12994,7 +13008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacramentometropolitanfiredistrict-8a59ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacramentometropolitanfiredistrict-8a59ad.jpg" }, { "if": { @@ -13008,7 +13022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintpaulfiredepartment-6b79bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintpaulfiredepartment-6b79bb.jpg" }, { "if": { @@ -13022,7 +13036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltenbranniks-ac32fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saltenbranniks-ac32fd.jpg" }, { "if": { @@ -13036,7 +13050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samtgemeindegeestequelle-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/samtgemeindegeestequelle-204ac7.svg" }, { "if": { @@ -13050,7 +13064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samtgemeindegrafschafthoya-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/samtgemeindegrafschafthoya-204ac7.svg" }, { "if": { @@ -13064,7 +13078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samtgemeindeselsingen-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/samtgemeindeselsingen-204ac7.svg" }, { "if": { @@ -13078,7 +13092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samtgemeindetostedt-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/samtgemeindetostedt-204ac7.svg" }, { "if": { @@ -13092,7 +13106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samtgemeindeuchte-204ac7.png" + "then": "https://data.mapcomplete.org/nsi//logos/samtgemeindeuchte-204ac7.png" }, { "if": { @@ -13106,7 +13120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanantoniofiredepartment-3bf6a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanantoniofiredepartment-3bf6a6.jpg" }, { "if": { @@ -13121,7 +13135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanbernardinocountyfireprotectiondistrict-8a59ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanbernardinocountyfireprotectiondistrict-8a59ad.jpg" }, { "if": { @@ -13135,7 +13149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanfranciscofiredepartment-e783e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanfranciscofiredepartment-e783e7.jpg" }, { "if": { @@ -13149,7 +13163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanjosefiredepartment-f2f943.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanjosefiredepartment-f2f943.jpg" }, { "if": { @@ -13163,7 +13177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santaclaracountyfiredepartment-461f66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santaclaracountyfiredepartment-461f66.jpg" }, { "if": { @@ -13177,7 +13191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishfireandrescueservice-12e6fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/scottishfireandrescueservice-12e6fd.png" }, { "if": { @@ -13191,7 +13205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis08-345308.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis08-345308.jpg" }, { "if": { @@ -13205,7 +13219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis30-713fa8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis30-713fa8.jpg" }, { "if": { @@ -13219,7 +13233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis38-3ba645.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis38-3ba645.jpg" }, { "if": { @@ -13233,7 +13247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis49-610da5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis49-610da5.jpg" }, { "if": { @@ -13247,7 +13261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis51-345308.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis51-345308.jpg" }, { "if": { @@ -13261,7 +13275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis52-345308.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis52-345308.jpg" }, { "if": { @@ -13275,7 +13289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis54-345308.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis54-345308.jpg" }, { "if": { @@ -13289,7 +13303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis57-345308.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis57-345308.jpg" }, { "if": { @@ -13303,7 +13317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis67-345308.png" + "then": "https://data.mapcomplete.org/nsi//logos/sdis67-345308.png" }, { "if": { @@ -13317,7 +13331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis68-345308.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis68-345308.jpg" }, { "if": { @@ -13331,7 +13345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sdis86-a24b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sdis86-a24b9d.jpg" }, { "if": { @@ -13345,7 +13359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shropshirefireandrescueservice-794a68.png" + "then": "https://data.mapcomplete.org/nsi//logos/shropshirefireandrescueservice-794a68.png" }, { "if": { @@ -13359,7 +13373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southaustraliancountryfireservice-f58103.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southaustraliancountryfireservice-f58103.jpg" }, { "if": { @@ -13374,7 +13388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southmetrofirerescue-631c9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southmetrofirerescue-631c9b.jpg" }, { "if": { @@ -13390,7 +13404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwalesfireandrescueservice-6e80d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwalesfireandrescueservice-6e80d5.jpg" }, { "if": { @@ -13404,7 +13418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southyorkshirefireandrescue-6d4c94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southyorkshirefireandrescue-6d4c94.jpg" }, { "if": { @@ -13418,7 +13432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldfiredepartment-66adb9.png" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldfiredepartment-66adb9.png" }, { "if": { @@ -13432,7 +13446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbremervorde-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbremervorde-204ac7.svg" }, { "if": { @@ -13446,7 +13460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgoslar-204ac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgoslar-204ac7.svg" }, { "if": { @@ -13460,7 +13474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadthombergohm-8eb808.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadthombergohm-8eb808.svg" }, { "if": { @@ -13474,7 +13488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadthorb-3f63b8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadthorb-3f63b8.svg" }, { "if": { @@ -13488,7 +13502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadthoxter-630125.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadthoxter-630125.svg" }, { "if": { @@ -13502,7 +13516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtjena-e7e7a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtjena-e7e7a1.jpg" }, { "if": { @@ -13516,7 +13530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtlangelsheim-204ac7.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtlangelsheim-204ac7.png" }, { "if": { @@ -13530,7 +13544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtoberzent-8eb808.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtoberzent-8eb808.svg" }, { "if": { @@ -13544,7 +13558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtseelze-204ac7.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtseelze-204ac7.png" }, { "if": { @@ -13558,7 +13572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtuebigauwahrenbruck-c95b65.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtuebigauwahrenbruck-c95b65.png" }, { "if": { @@ -13572,7 +13586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtuslar-204ac7.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtuslar-204ac7.png" }, { "if": { @@ -13586,7 +13600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suffolkfireandrescueservice-61f16b.png" + "then": "https://data.mapcomplete.org/nsi//logos/suffolkfireandrescueservice-61f16b.png" }, { "if": { @@ -13600,7 +13614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surreyfireandrescueservice-ad6cf7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surreyfireandrescueservice-ad6cf7.jpg" }, { "if": { @@ -13614,7 +13628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacomafiredepartment-c0ee6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/tacomafiredepartment-c0ee6d.png" }, { "if": { @@ -13628,7 +13642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasmanianfireservice-6b676e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tasmanianfireservice-6b676e.jpg" }, { "if": { @@ -13643,7 +13657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tualatinvalleyfireandrescue-b9064d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tualatinvalleyfireandrescue-b9064d.jpg" }, { "if": { @@ -13657,7 +13671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tyneandwearfireandrescueservice-c946be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tyneandwearfireandrescueservice-c946be.jpg" }, { "if": { @@ -13671,7 +13685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unifiedfireauthority-7e1920.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unifiedfireauthority-7e1920.jpg" }, { "if": { @@ -13686,7 +13700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesforestservice-92f26a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesforestservice-92f26a.jpg" }, { "if": { @@ -13701,7 +13715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valenciacountyfiredepartment-ee0f4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valenciacountyfiredepartment-ee0f4a.jpg" }, { "if": { @@ -13715,7 +13729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vancouverfiredepartment-c0ee6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vancouverfiredepartment-c0ee6d.jpg" }, { "if": { @@ -13729,7 +13743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veiligheidsregiogelderlandzuid-0004ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veiligheidsregiogelderlandzuid-0004ee.jpg" }, { "if": { @@ -13743,7 +13757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindeaareinrich-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeaareinrich-83d42d.svg" }, { "if": { @@ -13757,7 +13771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindeadenau-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeadenau-83d42d.svg" }, { "if": { @@ -13771,7 +13785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindealtenahr-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindealtenahr-83d42d.svg" }, { "if": { @@ -13785,7 +13799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindearzfeld-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindearzfeld-83d42d.svg" }, { "if": { @@ -13799,7 +13813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindebademsnassau-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebademsnassau-83d42d.svg" }, { "if": { @@ -13813,7 +13827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindebernkastelkues-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebernkastelkues-83d42d.svg" }, { "if": { @@ -13827,7 +13841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindebirkenfeld-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebirkenfeld-83d42d.svg" }, { "if": { @@ -13841,7 +13855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindebitburgerland-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebitburgerland-83d42d.svg" }, { "if": { @@ -13855,7 +13869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindebrohltal-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebrohltal-83d42d.svg" }, { "if": { @@ -13869,7 +13883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindecochem-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindecochem-83d42d.svg" }, { "if": { @@ -13883,7 +13897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindedaun-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindedaun-83d42d.svg" }, { "if": { @@ -13897,7 +13911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindekelberg-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindekelberg-83d42d.svg" }, { "if": { @@ -13911,7 +13925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindekonz-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindekonz-83d42d.svg" }, { "if": { @@ -13925,7 +13939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindekuselaltenglan-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindekuselaltenglan-83d42d.svg" }, { "if": { @@ -13939,7 +13953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindelandstuhl-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindelandstuhl-83d42d.svg" }, { "if": { @@ -13953,7 +13967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindelangenlonsheimstromberg-83d42d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindelangenlonsheimstromberg-83d42d.jpg" }, { "if": { @@ -13967,7 +13981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindemaifeld-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindemaifeld-83d42d.svg" }, { "if": { @@ -13981,7 +13995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindeprum-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeprum-83d42d.svg" }, { "if": { @@ -13995,7 +14009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeinderengsdorfwaldbreitbach-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeinderengsdorfwaldbreitbach-83d42d.svg" }, { "if": { @@ -14009,7 +14023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeinderheinselz-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeinderheinselz-83d42d.svg" }, { "if": { @@ -14023,7 +14037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeinderudesheim-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeinderudesheim-83d42d.svg" }, { "if": { @@ -14037,7 +14051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeinderuwer-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeinderuwer-83d42d.svg" }, { "if": { @@ -14051,7 +14065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindesaarburgkell-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindesaarburgkell-83d42d.svg" }, { "if": { @@ -14065,7 +14079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindeschweich-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeschweich-83d42d.svg" }, { "if": { @@ -14079,7 +14093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindesimmernrheinbollen-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindesimmernrheinbollen-83d42d.svg" }, { "if": { @@ -14093,7 +14107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindesudeifel-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindesudeifel-83d42d.svg" }, { "if": { @@ -14107,7 +14121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindethalfangamerbeskopf-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindethalfangamerbeskopf-83d42d.svg" }, { "if": { @@ -14121,7 +14135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindetrabentrarbach-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindetrabentrarbach-83d42d.svg" }, { "if": { @@ -14135,7 +14149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindetrierland-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindetrierland-83d42d.svg" }, { "if": { @@ -14149,7 +14163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindevordereifel-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindevordereifel-83d42d.svg" }, { "if": { @@ -14163,7 +14177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindewittlichland-83d42d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindewittlichland-83d42d.svg" }, { "if": { @@ -14177,7 +14191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedemontreal-841560.svg" + "then": "https://data.mapcomplete.org/nsi//logos/villedemontreal-841560.svg" }, { "if": { @@ -14191,7 +14205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warwickshirefireandrescueservice-794a68.png" + "then": "https://data.mapcomplete.org/nsi//logos/warwickshirefireandrescueservice-794a68.png" }, { "if": { @@ -14205,7 +14219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westmidlandsfireservice-794a68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westmidlandsfireservice-794a68.jpg" }, { "if": { @@ -14219,7 +14233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westsussexfireandrescueservice-ad6cf7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westsussexfireandrescueservice-ad6cf7.jpg" }, { "if": { @@ -14233,7 +14247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westyorkshirefireandrescueservice-6d4c94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westyorkshirefireandrescueservice-6d4c94.jpg" }, { "if": { @@ -14247,7 +14261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zonedesecoursluxembourg-17028f.png" + "then": "https://data.mapcomplete.org/nsi//logos/zonedesecoursluxembourg-17028f.png" }, { "if": { @@ -14262,7 +14276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c615bb-1157b6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/c615bb-1157b6.svg" }, { "if": { @@ -14278,7 +14292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokyofiredepartment-be27ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tokyofiredepartment-be27ba.jpg" }, { "if": { @@ -14297,7 +14311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macaofireservicesbureau-2187d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macaofireservicesbureau-2187d2.jpg" }, { "if": { @@ -14316,7 +14330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongfireservicesdepartment-ac17f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongfireservicesdepartment-ac17f0.jpg" }, { "if": { @@ -14332,7 +14346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acibadem-007b1e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/acibadem-007b1e.svg" }, { "if": { @@ -14348,7 +14362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adventhealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adventhealth-888e5a.jpg" }, { "if": { @@ -14364,7 +14378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adventisthealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adventisthealth-888e5a.jpg" }, { "if": { @@ -14380,7 +14394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/advocatehealthcare-929fa5.png" + "then": "https://data.mapcomplete.org/nsi//logos/advocatehealthcare-929fa5.png" }, { "if": { @@ -14396,7 +14410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agaplesion-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agaplesion-8bb61e.jpg" }, { "if": { @@ -14413,7 +14427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albertahealthservices-1b0aca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albertahealthservices-1b0aca.jpg" }, { "if": { @@ -14429,7 +14443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alexianergmbh-8bb61e.gif" + "then": "https://data.mapcomplete.org/nsi//logos/alexianergmbh-8bb61e.gif" }, { "if": { @@ -14445,7 +14459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allinahealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allinahealth-888e5a.jpg" }, { "if": { @@ -14461,7 +14475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameos-98b222.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameos-98b222.png" }, { "if": { @@ -14478,7 +14492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apollohospitals-585fc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apollohospitals-585fc8.jpg" }, { "if": { @@ -14494,7 +14508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ascension-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ascension-888e5a.png" }, { "if": { @@ -14510,7 +14524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asklepioskliniken-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asklepioskliniken-8bb61e.jpg" }, { "if": { @@ -14526,7 +14540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aspirus-1d4590.png" + "then": "https://data.mapcomplete.org/nsi//logos/aspirus-1d4590.png" }, { "if": { @@ -14543,7 +14557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/assistancepubliquehopitauxdeparis-73646a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/assistancepubliquehopitauxdeparis-73646a.jpg" }, { "if": { @@ -14560,7 +14574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atoskliniken-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atoskliniken-8bb61e.jpg" }, { "if": { @@ -14576,7 +14590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atriumhealth-991ea9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atriumhealth-991ea9.jpg" }, { "if": { @@ -14592,7 +14606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aurorahealthcare-a89708.png" + "then": "https://data.mapcomplete.org/nsi//logos/aurorahealthcare-a89708.png" }, { "if": { @@ -14608,7 +14622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/averahealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/averahealth-888e5a.jpg" }, { "if": { @@ -14624,7 +14638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avonandwiltshirementalhealthpartnershipnhstrust-ad589e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avonandwiltshirementalhealthpartnershipnhstrust-ad589e.jpg" }, { "if": { @@ -14640,7 +14654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/balladhealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/balladhealth-888e5a.jpg" }, { "if": { @@ -14656,7 +14670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bannerhealth-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bannerhealth-888e5a.png" }, { "if": { @@ -14672,7 +14686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baptisthealth-b94cef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baptisthealth-b94cef.jpg" }, { "if": { @@ -14688,7 +14702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baylorscottandwhitehealth-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/baylorscottandwhitehealth-888e5a.png" }, { "if": { @@ -14704,7 +14718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bbtgruppe-8bb61e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bbtgruppe-8bb61e.png" }, { "if": { @@ -14720,7 +14734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bethisraellaheyhealth-73dad1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bethisraellaheyhealth-73dad1.svg" }, { "if": { @@ -14736,7 +14750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bgkliniken-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bgkliniken-8bb61e.jpg" }, { "if": { @@ -14752,7 +14766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capio-ee5a4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capio-ee5a4b.jpg" }, { "if": { @@ -14768,7 +14782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ccss-4f92b3.png" + "then": "https://data.mapcomplete.org/nsi//logos/ccss-4f92b3.png" }, { "if": { @@ -14784,7 +14798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celenuskliniken-8bb61e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/celenuskliniken-8bb61e.svg" }, { "if": { @@ -14800,7 +14814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christianacare-888e5a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/christianacare-888e5a.svg" }, { "if": { @@ -14816,7 +14830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christushealth-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/christushealth-888e5a.png" }, { "if": { @@ -14832,7 +14846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandclinic-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandclinic-888e5a.jpg" }, { "if": { @@ -14849,7 +14863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/columbiaasia-fcf381.svg" + "then": "https://data.mapcomplete.org/nsi//logos/columbiaasia-fcf381.svg" }, { "if": { @@ -14865,7 +14879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunidaddemadrid-2f367e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-2f367e.svg" }, { "if": { @@ -14881,7 +14895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornwallpartnershipnhsfoundationtrust-6508f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornwallpartnershipnhsfoundationtrust-6508f7.jpg" }, { "if": { @@ -14897,7 +14911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/covenanthealth-1b0aca.png" + "then": "https://data.mapcomplete.org/nsi//logos/covenanthealth-1b0aca.png" }, { "if": { @@ -14913,7 +14927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/covenanthealth-1c8a55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/covenanthealth-1c8a55.jpg" }, { "if": { @@ -14929,7 +14943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/covenanthealth-94a05e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/covenanthealth-94a05e.jpg" }, { "if": { @@ -14946,7 +14960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cruzroja-16e9ec.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cruzroja-16e9ec.svg" }, { "if": { @@ -14965,7 +14979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofhealth-d0fa1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofhealth-d0fa1f.svg" }, { "if": { @@ -14981,7 +14995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofhealth-a65a5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofhealth-a65a5a.jpg" }, { "if": { @@ -14997,7 +15011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devonpartnershipnhstrust-cd1ad5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devonpartnershipnhstrust-cd1ad5.jpg" }, { "if": { @@ -15013,7 +15027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dignityhealth-a0d953.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dignityhealth-a0d953.jpg" }, { "if": { @@ -15029,7 +15043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorsethealthcareuniversitynhsfoundationtrust-65a858.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorsethealthcareuniversitynhsfoundationtrust-65a858.jpg" }, { "if": { @@ -15045,7 +15059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drbeckerklinikgruppe-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drbeckerklinikgruppe-8bb61e.jpg" }, { "if": { @@ -15061,7 +15075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easterncapedepartmentofhealth-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easterncapedepartmentofhealth-650276.jpg" }, { "if": { @@ -15077,7 +15091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elsan-73646a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elsan-73646a.jpg" }, { "if": { @@ -15095,7 +15109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/employeesstateinsurance-585fc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/employeesstateinsurance-585fc8.jpg" }, { "if": { @@ -15111,7 +15125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/encompasshealth-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/encompasshealth-888e5a.png" }, { "if": { @@ -15127,7 +15141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentiahealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentiahealth-888e5a.jpg" }, { "if": { @@ -15143,7 +15157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federalministryofhealth-f23e0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/federalministryofhealth-f23e0b.png" }, { "if": { @@ -15160,7 +15174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortishealthcare-585fc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortishealthcare-585fc8.jpg" }, { "if": { @@ -15176,7 +15190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/franciscanhealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/franciscanhealth-888e5a.jpg" }, { "if": { @@ -15192,7 +15206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fraserhealthauthority-bebe85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fraserhealthauthority-bebe85.jpg" }, { "if": { @@ -15208,7 +15222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freestatedepartmentofhealth-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freestatedepartmentofhealth-650276.jpg" }, { "if": { @@ -15224,7 +15238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gautengdepartmentofhealth-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gautengdepartmentofhealth-650276.jpg" }, { "if": { @@ -15240,7 +15254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitatvalenciana-34fe48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-34fe48.jpg" }, { "if": { @@ -15257,7 +15271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gesundheitszentrenrheinneckar-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gesundheitszentrenrheinneckar-8bb61e.jpg" }, { "if": { @@ -15273,7 +15287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gobiernodelaciudaddebuenosaires-e6d349.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gobiernodelaciudaddebuenosaires-e6d349.jpg" }, { "if": { @@ -15289,7 +15303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentofkerala-585fc8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentofkerala-585fc8.svg" }, { "if": { @@ -15305,7 +15319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatormondstreethospitalforchildrennhsfoundationtrust-129d8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatormondstreethospitalforchildrennhsfoundationtrust-129d8c.jpg" }, { "if": { @@ -15321,7 +15335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatermanchestermentalhealthnhsfoundationtrust-947faa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatermanchestermentalhealthnhsfoundationtrust-947faa.jpg" }, { "if": { @@ -15337,7 +15351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hca-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/hca-888e5a.png" }, { "if": { @@ -15354,7 +15368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthserviceexecutive-467fad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/healthserviceexecutive-467fad.jpg" }, { "if": { @@ -15370,7 +15384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helioskliniken-8bb61e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/helioskliniken-8bb61e.svg" }, { "if": { @@ -15386,7 +15400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoag-537093.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoag-537093.jpg" }, { "if": { @@ -15403,7 +15417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hospitalsistershealthsystem-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/hospitalsistershealthsystem-888e5a.png" }, { "if": { @@ -15419,7 +15433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialcollegehealthcarenhstrust-f81042.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialcollegehealthcarenhstrust-f81042.jpg" }, { "if": { @@ -15436,7 +15450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianhealthservice-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianhealthservice-888e5a.png" }, { "if": { @@ -15452,7 +15466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianauniversityhealth-8108c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianauniversityhealth-8108c1.jpg" }, { "if": { @@ -15468,7 +15482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inovahealthsystem-37da20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inovahealthsystem-37da20.jpg" }, { "if": { @@ -15485,7 +15499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutodeseguridadyserviciossocialesdelostrabajadoresdelestado-5e0bc0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/institutodeseguridadyserviciossocialesdelostrabajadoresdelestado-5e0bc0.svg" }, { "if": { @@ -15502,7 +15516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutoecuatorianodeseguridadsocial-92bc1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutoecuatorianodeseguridadsocial-92bc1d.jpg" }, { "if": { @@ -15519,7 +15533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutomexicanodelsegurosocial-5e0bc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutomexicanodelsegurosocial-5e0bc0.jpg" }, { "if": { @@ -15536,7 +15550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutovenezolanodelossegurossociales-0e934a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutovenezolanodelossegurossociales-0e934a.jpg" }, { "if": { @@ -15552,7 +15566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermountainhealthcare-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermountainhealthcare-888e5a.jpg" }, { "if": { @@ -15568,7 +15582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johannesbad-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johannesbad-8bb61e.jpg" }, { "if": { @@ -15584,7 +15598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johannitergmbh-8bb61e.png" + "then": "https://data.mapcomplete.org/nsi//logos/johannitergmbh-8bb61e.png" }, { "if": { @@ -15601,7 +15615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaiserpermanente-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kaiserpermanente-888e5a.jpg" }, { "if": { @@ -15618,7 +15632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kementeriankesihatanmalaysia-a918ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kementeriankesihatanmalaysia-a918ec.jpg" }, { "if": { @@ -15634,7 +15648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kindredhealthcare-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kindredhealthcare-888e5a.jpg" }, { "if": { @@ -15650,7 +15664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kmgkliniken-8bb61e.png" + "then": "https://data.mapcomplete.org/nsi//logos/kmgkliniken-8bb61e.png" }, { "if": { @@ -15666,7 +15680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwazulunataldepartmentofhealth-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwazulunataldepartmentofhealth-650276.jpg" }, { "if": { @@ -15682,7 +15696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legacyhealth-6cad9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/legacyhealth-6cad9c.jpg" }, { "if": { @@ -15698,7 +15712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lenmed-56725c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lenmed-56725c.png" }, { "if": { @@ -15714,7 +15728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lifehealthcare-650276.png" + "then": "https://data.mapcomplete.org/nsi//logos/lifehealthcare-650276.png" }, { "if": { @@ -15730,7 +15744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/limpopodepartmentofhealth-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/limpopodepartmentofhealth-650276.jpg" }, { "if": { @@ -15747,7 +15761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ludwigmaximiliansuniversitat-8bb61e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ludwigmaximiliansuniversitat-8bb61e.svg" }, { "if": { @@ -15763,7 +15777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maidstoneandtunbridgewellsnhstrust-634f11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maidstoneandtunbridgewellsnhstrust-634f11.jpg" }, { "if": { @@ -15779,7 +15793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marienhaus-8bb61e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marienhaus-8bb61e.svg" }, { "if": { @@ -15795,7 +15809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massgeneralbrigham-73dad1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/massgeneralbrigham-73dad1.jpg" }, { "if": { @@ -15811,7 +15825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayoclinichealthsystem-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayoclinichealthsystem-888e5a.jpg" }, { "if": { @@ -15828,7 +15842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medecinssansfrontieres-fbd4f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/medecinssansfrontieres-fbd4f5.png" }, { "if": { @@ -15844,7 +15858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediankliniken-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mediankliniken-8bb61e.jpg" }, { "if": { @@ -15860,7 +15874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medicalpark-8bb61e.png" + "then": "https://data.mapcomplete.org/nsi//logos/medicalpark-8bb61e.png" }, { "if": { @@ -15876,7 +15890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediclin-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mediclin-8bb61e.jpg" }, { "if": { @@ -15892,7 +15906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mediclinic-97e588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mediclinic-97e588.jpg" }, { "if": { @@ -15908,7 +15922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercy-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercy-888e5a.jpg" }, { "if": { @@ -15924,7 +15938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercyhealth-4cdbcf.png" + "then": "https://data.mapcomplete.org/nsi//logos/mercyhealth-4cdbcf.png" }, { "if": { @@ -15940,7 +15954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeredelasantepublique-0923db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeredelasantepublique-0923db.jpg" }, { "if": { @@ -15956,7 +15970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodasaude-d30bb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodasaude-d30bb4.jpg" }, { "if": { @@ -15973,7 +15987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesalud-b92ad7.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-b92ad7.png" }, { "if": { @@ -15990,7 +16004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesalud-e39fb9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-e39fb9.jpg" }, { "if": { @@ -16007,7 +16021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaluddelperu-d29164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaluddelperu-d29164.jpg" }, { "if": { @@ -16024,7 +16038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludpublica-08985e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-08985e.png" }, { "if": { @@ -16041,7 +16055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludpublica-92bc1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-92bc1d.jpg" }, { "if": { @@ -16058,7 +16072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludpublicayasistenciasocial-0cfb3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublicayasistenciasocial-0cfb3e.jpg" }, { "if": { @@ -16075,7 +16089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludpublicayasistenciasocial-d139a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublicayasistenciasocial-d139a9.jpg" }, { "if": { @@ -16091,7 +16105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludpublicaybienestarsocial-4add5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublicaybienestarsocial-4add5c.jpg" }, { "if": { @@ -16108,7 +16122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludydeportes-bdc341.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludydeportes-bdc341.jpg" }, { "if": { @@ -16125,7 +16139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludyproteccionsocial-d793a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludyproteccionsocial-d793a3.jpg" }, { "if": { @@ -16142,7 +16156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstvozdravotnictvaslovenskejrepubliky-ecf182.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstvozdravotnictvaslovenskejrepubliky-ecf182.jpg" }, { "if": { @@ -16158,7 +16172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealth-aa1e94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-aa1e94.jpg" }, { "if": { @@ -16174,7 +16188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealth-14c7e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-14c7e1.jpg" }, { "if": { @@ -16190,7 +16204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealth-ddfad3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-ddfad3.jpg" }, { "if": { @@ -16206,7 +16220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealthandwellness-c10140.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealthandwellness-c10140.jpg" }, { "if": { @@ -16222,7 +16236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealthnutritionandindigenousmedicine-fb2edf.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealthnutritionandindigenousmedicine-fb2edf.png" }, { "if": { @@ -16239,7 +16253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofpublichealth-b5eaef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofpublichealth-b5eaef.jpg" }, { "if": { @@ -16255,7 +16269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mpumalangadepartmentofhealth-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mpumalangadepartmentofhealth-650276.jpg" }, { "if": { @@ -16271,7 +16285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidadmetropolitanadelima-d29164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidadmetropolitanadelima-d29164.jpg" }, { "if": { @@ -16287,7 +16301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netcare-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netcare-650276.jpg" }, { "if": { @@ -16303,7 +16317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhs-b0b612.png" + "then": "https://data.mapcomplete.org/nsi//logos/nhs-b0b612.png" }, { "if": { @@ -16319,7 +16333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestdepartmentofhealth-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwestdepartmentofhealth-650276.jpg" }, { "if": { @@ -16335,7 +16349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northerncapedepartmentofhealth-650276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northerncapedepartmentofhealth-650276.jpg" }, { "if": { @@ -16351,7 +16365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwellhealth-27bc64.png" + "then": "https://data.mapcomplete.org/nsi//logos/northwellhealth-27bc64.png" }, { "if": { @@ -16367,7 +16381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternmedicine-1d2216.png" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternmedicine-1d2216.png" }, { "if": { @@ -16383,7 +16397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novanthealth-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/novanthealth-888e5a.png" }, { "if": { @@ -16399,7 +16413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswhealth-768201.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswhealth-768201.jpg" }, { "if": { @@ -16415,7 +16429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuffieldhealth-b0b612.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nuffieldhealth-b0b612.jpg" }, { "if": { @@ -16431,7 +16445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ochsnerhealthsystem-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ochsnerhealthsystem-888e5a.png" }, { "if": { @@ -16447,7 +16461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiohealth-776941.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiohealth-776941.jpg" }, { "if": { @@ -16463,7 +16477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osakidetza-34fe48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osakidetza-34fe48.jpg" }, { "if": { @@ -16479,7 +16493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paracelsuskliniken-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paracelsuskliniken-8bb61e.jpg" }, { "if": { @@ -16495,7 +16509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peacehealth-1d1c43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peacehealth-1d1c43.jpg" }, { "if": { @@ -16511,7 +16525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/primehealthcareservices-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/primehealthcareservices-888e5a.jpg" }, { "if": { @@ -16527,7 +16541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/providencehealthandservices-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/providencehealthandservices-888e5a.png" }, { "if": { @@ -16543,7 +16557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadesantafe-632554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadesantafe-632554.jpg" }, { "if": { @@ -16559,7 +16573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queenslandhealth-82bd63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/queenslandhealth-82bd63.jpg" }, { "if": { @@ -16575,7 +16589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramsayhealthcareuk-b0b612.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ramsayhealthcareuk-b0b612.jpg" }, { "if": { @@ -16591,7 +16605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ramsaysante-73646a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ramsaysante-73646a.png" }, { "if": { @@ -16607,7 +16621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhonklinikum-8bb61e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rhonklinikum-8bb61e.svg" }, { "if": { @@ -16623,7 +16637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochesterregionalhealth-27bc64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochesterregionalhealth-27bc64.jpg" }, { "if": { @@ -16639,7 +16653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sahealth-26d4fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sahealth-26d4fb.jpg" }, { "if": { @@ -16655,7 +16669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacyl-34fe48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacyl-34fe48.jpg" }, { "if": { @@ -16671,7 +16685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saglikbakanligi-4e781b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saglikbakanligi-4e781b.jpg" }, { "if": { @@ -16687,7 +16701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samaritanhealthservices-cfad4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/samaritanhealthservices-cfad4c.jpg" }, { "if": { @@ -16703,7 +16717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanakliniken-8bb61e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanakliniken-8bb61e.png" }, { "if": { @@ -16719,7 +16733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanfordhealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanfordhealth-888e5a.jpg" }, { "if": { @@ -16735,7 +16749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schonklinik-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schonklinik-8bb61e.jpg" }, { "if": { @@ -16752,7 +16766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/segurosocialdesalud-d29164.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/segurosocialdesalud-d29164.jpg" }, { "if": { @@ -16769,7 +16783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/selectspecialtyhospital-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/selectspecialtyhospital-888e5a.jpg" }, { "if": { @@ -16786,7 +16800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicioandaluzdesalud-34fe48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicioandaluzdesalud-34fe48.jpg" }, { "if": { @@ -16804,7 +16818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shrinershospitalsforchildren-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shrinershospitalsforchildren-888e5a.jpg" }, { "if": { @@ -16821,7 +16835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sistemaunicodesaude-d30bb4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sistemaunicodesaude-d30bb4.svg" }, { "if": { @@ -16837,7 +16851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetnhsfoundationtrust-5fb324.png" + "then": "https://data.mapcomplete.org/nsi//logos/somersetnhsfoundationtrust-5fb324.png" }, { "if": { @@ -16853,7 +16867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssmhealth-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ssmhealth-888e5a.png" }, { "if": { @@ -16869,7 +16883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stcharleshealthsystem-cfad4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stcharleshealthsystem-cfad4c.jpg" }, { "if": { @@ -16885,7 +16899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stfranziskusstiftungmunster-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stfranziskusstiftungmunster-8bb61e.jpg" }, { "if": { @@ -16901,7 +16915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steiermarkischekrankenanstaltengesellschaftmbh-5682c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steiermarkischekrankenanstaltengesellschaftmbh-5682c5.jpg" }, { "if": { @@ -16917,7 +16931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stewardhealthcare-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stewardhealthcare-888e5a.jpg" }, { "if": { @@ -16933,7 +16947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sutterhealth-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sutterhealth-888e5a.jpg" }, { "if": { @@ -16949,7 +16963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tricare-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tricare-888e5a.jpg" }, { "if": { @@ -16965,7 +16979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trinityhealth-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/trinityhealth-888e5a.png" }, { "if": { @@ -16981,7 +16995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitypointhealth-ac6cc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitypointhealth-ac6cc4.jpg" }, { "if": { @@ -16998,7 +17012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universalhealthservices-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/universalhealthservices-888e5a.png" }, { "if": { @@ -17014,7 +17028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityhospitalsdorsetnhsfoundationtrust-65a858.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityhospitalsdorsetnhsfoundationtrust-65a858.jpg" }, { "if": { @@ -17030,7 +17044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityhospitalsofcleveland-776941.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityhospitalsofcleveland-776941.jpg" }, { "if": { @@ -17047,7 +17061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofpittsburghmedicalcenter-888e5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofpittsburghmedicalcenter-888e5a.jpg" }, { "if": { @@ -17064,7 +17078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofrochestermedicalcenter-27bc64.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofrochestermedicalcenter-27bc64.png" }, { "if": { @@ -17084,7 +17098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veteranshealthadministration-888e5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/veteranshealthadministration-888e5a.png" }, { "if": { @@ -17100,7 +17114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vastragotalandsregionen-653dc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vastragotalandsregionen-653dc5.jpg" }, { "if": { @@ -17116,7 +17130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivantes-8bb61e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivantes-8bb61e.jpg" }, { "if": { @@ -17133,7 +17147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziekenhuisnetwerkantwerpen-1fd604.png" + "then": "https://data.mapcomplete.org/nsi//logos/ziekenhuisnetwerkantwerpen-1fd604.png" }, { "if": { @@ -17154,7 +17168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hospitalauthority-fafb13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hospitalauthority-fafb13.jpg" }, { "if": { @@ -17169,7 +17183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adelby1-41f292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adelby1-41f292.jpg" }, { "if": { @@ -17184,7 +17198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdetondelacandidodefigueiredo-64d503.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdetondelacandidodefigueiredo-64d503.png" }, { "if": { @@ -17199,7 +17213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdebarcelona-bf7a11.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-bf7a11.svg" }, { "if": { @@ -17214,7 +17228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aworegionalverbandrheinerftandeuskirchenev-76bfc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aworegionalverbandrheinerftandeuskirchenev-76bfc3.jpg" }, { "if": { @@ -17230,7 +17244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayerischesroteskreuz-fd062c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-fd062c.jpg" }, { "if": { @@ -17245,7 +17259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bialoleka-6b0035.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bialoleka-6b0035.svg" }, { "if": { @@ -17260,7 +17274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bielany-6b0035.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bielany-6b0035.jpg" }, { "if": { @@ -17275,7 +17289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bvz-17b2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bvz-17b2fe.jpg" }, { "if": { @@ -17290,7 +17304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritasverbanddortmundev-76bfc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritasverbanddortmundev-76bfc3.jpg" }, { "if": { @@ -17305,7 +17319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedibologna-624c08.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedibologna-624c08.svg" }, { "if": { @@ -17320,7 +17334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denkmitkinderbetreuungseinrichtungengmbhandcokg-fd062c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/denkmitkinderbetreuungseinrichtungengmbhandcokg-fd062c.jpg" }, { "if": { @@ -17335,7 +17349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbjergkommune-d0c2f5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/esbjergkommune-d0c2f5.svg" }, { "if": { @@ -17350,7 +17364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/espoonkaupunki-f5d7fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/espoonkaupunki-f5d7fd.png" }, { "if": { @@ -17365,7 +17379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evangelischerkirchenkreisdortmund-76bfc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evangelischerkirchenkreisdortmund-76bfc3.jpg" }, { "if": { @@ -17380,7 +17394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evangelischerkirchenkreishamm-76bfc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evangelischerkirchenkreishamm-76bfc3.jpg" }, { "if": { @@ -17395,7 +17409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frobelbildungunderziehung-747d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frobelbildungunderziehung-747d0f.jpg" }, { "if": { @@ -17410,7 +17424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindehoheborde-ba3488.png" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindehoheborde-ba3488.png" }, { "if": { @@ -17425,7 +17439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitatvalenciana-afa509.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-afa509.jpg" }, { "if": { @@ -17440,7 +17454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminalublin-6b0035.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gminalublin-6b0035.svg" }, { "if": { @@ -17455,7 +17469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminamiastorzeszow-6b0035.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gminamiastorzeszow-6b0035.svg" }, { "if": { @@ -17470,7 +17484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hakommune-04f073.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hakommune-04f073.svg" }, { "if": { @@ -17485,7 +17499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inakindergartenggmbh-4ea051.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inakindergartenggmbh-4ea051.jpg" }, { "if": { @@ -17501,7 +17515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutodelninoyadolescentedeluruguay-3e78b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutodelninoyadolescentedeluruguay-3e78b4.jpg" }, { "if": { @@ -17516,7 +17530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/internationalerbund-747d0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/internationalerbund-747d0f.png" }, { "if": { @@ -17531,7 +17545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jarvenpaankaupunki-f5d7fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jarvenpaankaupunki-f5d7fd.jpg" }, { "if": { @@ -17546,7 +17560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johanniterunfallhilfeev-747d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfeev-747d0f.jpg" }, { "if": { @@ -17561,7 +17575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jul-747d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jul-747d0f.jpg" }, { "if": { @@ -17576,7 +17590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/katholischekitaggmbhsaarland-7a6925.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/katholischekitaggmbhsaarland-7a6925.jpg" }, { "if": { @@ -17591,7 +17605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/katholischekitaggmbhtrier-df3d5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/katholischekitaggmbhtrier-df3d5e.jpg" }, { "if": { @@ -17606,7 +17620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinderinwien-7d90b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kinderinwien-7d90b0.jpg" }, { "if": { @@ -17621,7 +17635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinderfreunde-7bcf1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/kinderfreunde-7bcf1a.png" }, { "if": { @@ -17636,7 +17650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kindergartennordost-4ea051.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kindergartennordost-4ea051.jpg" }, { "if": { @@ -17651,7 +17665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinderzentrenkunterbuntggmbh-747d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kinderzentrenkunterbuntggmbh-747d0f.jpg" }, { "if": { @@ -17666,7 +17680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitafrankfurt-17b2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitafrankfurt-17b2fe.jpg" }, { "if": { @@ -17681,7 +17695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitaverbanddiepholz-b371e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitaverbanddiepholz-b371e3.jpg" }, { "if": { @@ -17696,7 +17710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klaxberlinggmbh-4ea051.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klaxberlinggmbh-4ea051.jpg" }, { "if": { @@ -17711,7 +17725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kleppkommune-04f073.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kleppkommune-04f073.svg" }, { "if": { @@ -17726,7 +17740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koldingkommune-d0c2f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/koldingkommune-d0c2f5.png" }, { "if": { @@ -17741,7 +17755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kungsbackakommun-b6a588.png" + "then": "https://data.mapcomplete.org/nsi//logos/kungsbackakommun-b6a588.png" }, { "if": { @@ -17756,7 +17770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeshauptstadtstuttgart-df1e7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtstuttgart-df1e7e.jpg" }, { "if": { @@ -17771,7 +17785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luleakommun-b6a588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luleakommun-b6a588.jpg" }, { "if": { @@ -17786,7 +17800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mairiedeparis-452f91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-452f91.jpg" }, { "if": { @@ -17801,7 +17815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malmostad-b6a588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/malmostad-b6a588.jpg" }, { "if": { @@ -17816,7 +17830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nachbarschaftsheimschonebergev-4ea051.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nachbarschaftsheimschonebergev-4ea051.jpg" }, { "if": { @@ -17831,7 +17845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/narvikkommune-04f073.svg" + "then": "https://data.mapcomplete.org/nsi//logos/narvikkommune-04f073.svg" }, { "if": { @@ -17846,7 +17860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norrkopingskommun-b6a588.png" + "then": "https://data.mapcomplete.org/nsi//logos/norrkopingskommun-b6a588.png" }, { "if": { @@ -17861,7 +17875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nurmijarvenkunta-f5d7fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nurmijarvenkunta-f5d7fd.jpg" }, { "if": { @@ -17876,7 +17890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oslokommune-04f073.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oslokommune-04f073.jpg" }, { "if": { @@ -17891,7 +17905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/outlaw-747d0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/outlaw-747d0f.jpg" }, { "if": { @@ -17906,7 +17920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pragapolnoc-6b0035.png" + "then": "https://data.mapcomplete.org/nsi//logos/pragapolnoc-6b0035.png" }, { "if": { @@ -17921,7 +17935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldeflorianopolis-b3185a.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeflorianopolis-b3185a.png" }, { "if": { @@ -17937,7 +17951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanjoseunifiedschooldistrict-2a3fae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanjoseunifiedschooldistrict-2a3fae.jpg" }, { "if": { @@ -17952,7 +17966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savethechildren-0ff93d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/savethechildren-0ff93d.jpg" }, { "if": { @@ -17967,7 +17981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sogndalkommune-04f073.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sogndalkommune-04f073.svg" }, { "if": { @@ -17982,7 +17996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sozialpadagogischerverein-17b2fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sozialpadagogischerverein-17b2fe.jpg" }, { "if": { @@ -17997,7 +18011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtdietikon-af761c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtdietikon-af761c.svg" }, { "if": { @@ -18012,7 +18026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtfreising-fd062c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtfreising-fd062c.jpg" }, { "if": { @@ -18027,7 +18041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgelsenkirchen-76bfc3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgelsenkirchen-76bfc3.svg" }, { "if": { @@ -18042,7 +18056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgraz-0a8f8a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgraz-0a8f8a.svg" }, { "if": { @@ -18057,7 +18071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtherne-76bfc3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtherne-76bfc3.svg" }, { "if": { @@ -18072,7 +18086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkoln-76bfc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkoln-76bfc3.jpg" }, { "if": { @@ -18087,7 +18101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkrefeld-76bfc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkrefeld-76bfc3.jpg" }, { "if": { @@ -18102,7 +18116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtleverkusen-76bfc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtleverkusen-76bfc3.jpg" }, { "if": { @@ -18117,7 +18131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtlunen-76bfc3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtlunen-76bfc3.svg" }, { "if": { @@ -18132,7 +18146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmannheim-df1e7e.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmannheim-df1e7e.png" }, { "if": { @@ -18147,7 +18161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmossingen-df1e7e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmossingen-df1e7e.svg" }, { "if": { @@ -18162,7 +18176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmunchen-fd062c.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmunchen-fd062c.png" }, { "if": { @@ -18177,7 +18191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtrodgau-17b2fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtrodgau-17b2fe.svg" }, { "if": { @@ -18192,7 +18206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtronnenberg-b371e3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtronnenberg-b371e3.svg" }, { "if": { @@ -18207,7 +18221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtsingen-df1e7e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtsingen-df1e7e.svg" }, { "if": { @@ -18222,7 +18236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtsteyr-0e4679.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtsteyr-0e4679.svg" }, { "if": { @@ -18237,7 +18251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadttroisdorf-76bfc3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadttroisdorf-76bfc3.svg" }, { "if": { @@ -18252,7 +18266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtulm-df1e7e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtulm-df1e7e.svg" }, { "if": { @@ -18267,7 +18281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtweinstadt-df1e7e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtweinstadt-df1e7e.svg" }, { "if": { @@ -18282,7 +18296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwinnenden-df1e7e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwinnenden-df1e7e.svg" }, { "if": { @@ -18297,7 +18311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwolfenbuttel-b371e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwolfenbuttel-b371e3.png" }, { "if": { @@ -18312,7 +18326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stockholmskommun-b6a588.png" + "then": "https://data.mapcomplete.org/nsi//logos/stockholmskommun-b6a588.png" }, { "if": { @@ -18327,7 +18341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sundsvallskommun-b6a588.png" + "then": "https://data.mapcomplete.org/nsi//logos/sundsvallskommun-b6a588.png" }, { "if": { @@ -18342,7 +18356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/targowek-6b0035.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/targowek-6b0035.jpg" }, { "if": { @@ -18357,7 +18371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ullensvangkommune-04f073.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ullensvangkommune-04f073.svg" }, { "if": { @@ -18372,7 +18386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vantaankaupunki-f5d7fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vantaankaupunki-f5d7fd.jpg" }, { "if": { @@ -18387,7 +18401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/varnamokommun-b6a588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/varnamokommun-b6a588.jpg" }, { "if": { @@ -18402,7 +18416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoliborz-6b0035.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zoliborz-6b0035.svg" }, { "if": { @@ -18417,7 +18431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4c66bf-563fb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/4c66bf-563fb8.png" }, { "if": { @@ -18433,7 +18447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aberdeencitycouncil-033317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aberdeencitycouncil-033317.jpg" }, { "if": { @@ -18448,7 +18462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdevalencia-3746d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdevalencia-3746d4.svg" }, { "if": { @@ -18463,7 +18477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alachuacountylibrarydistrict-7fd740.png" + "then": "https://data.mapcomplete.org/nsi//logos/alachuacountylibrarydistrict-7fd740.png" }, { "if": { @@ -18480,7 +18494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aucklandlibraries-f1e6a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/aucklandlibraries-f1e6a6.png" }, { "if": { @@ -18495,7 +18509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinpubliclibrary-24a277.png" + "then": "https://data.mapcomplete.org/nsi//logos/austinpubliclibrary-24a277.png" }, { "if": { @@ -18510,7 +18524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodevalladolid-3746d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodevalladolid-3746d4.svg" }, { "if": { @@ -18526,7 +18540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecountypubliclibrary-1170f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecountypubliclibrary-1170f4.jpg" }, { "if": { @@ -18541,7 +18555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bibliocenter-08efeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bibliocenter-08efeb.jpg" }, { "if": { @@ -18556,7 +18570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biblionetgroningen-08efeb.png" + "then": "https://data.mapcomplete.org/nsi//logos/biblionetgroningen-08efeb.png" }, { "if": { @@ -18571,7 +18585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bibliotekakrakow-2579f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bibliotekakrakow-2579f7.jpg" }, { "if": { @@ -18586,7 +18600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bibliotheekdenhaag-08efeb.png" + "then": "https://data.mapcomplete.org/nsi//logos/bibliotheekdenhaag-08efeb.png" }, { "if": { @@ -18601,7 +18615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bibliotheekrivierenland-08efeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bibliotheekrivierenland-08efeb.jpg" }, { "if": { @@ -18616,7 +18630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bibliotheekrotterdam-08efeb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bibliotheekrotterdam-08efeb.svg" }, { "if": { @@ -18631,7 +18645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamcitycouncil-b45619.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-b45619.jpg" }, { "if": { @@ -18647,7 +18661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghampubliclibrary-8c84f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghampubliclibrary-8c84f7.jpg" }, { "if": { @@ -18663,7 +18677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bowlinggreenstateuniversity-f8d891.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-f8d891.jpg" }, { "if": { @@ -18679,7 +18693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightonandhovecitycouncil-5f562a.png" + "then": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-5f562a.png" }, { "if": { @@ -18694,7 +18708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brisbanecitycouncil-8e5058.svg" + "then": "https://data.mapcomplete.org/nsi//logos/brisbanecitycouncil-8e5058.svg" }, { "if": { @@ -18710,7 +18724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brooklynpubliclibrary-df14d6.png" + "then": "https://data.mapcomplete.org/nsi//logos/brooklynpubliclibrary-df14d6.png" }, { "if": { @@ -18725,7 +18739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buchereienwien-1625ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buchereienwien-1625ae.jpg" }, { "if": { @@ -18741,7 +18755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buffaloanderiecountypubliclibrarysystem-4be4fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buffaloanderiecountypubliclibrarysystem-4be4fd.jpg" }, { "if": { @@ -18757,7 +18771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calgarypubliclibrary-9e3799.png" + "then": "https://data.mapcomplete.org/nsi//logos/calgarypubliclibrary-9e3799.png" }, { "if": { @@ -18774,7 +18788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cardiffcouncil-88f8da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cardiffcouncil-88f8da.jpg" }, { "if": { @@ -18790,7 +18804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cooscountylibraryservicedistrict-199ec0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cooscountylibraryservicedistrict-199ec0.jpg" }, { "if": { @@ -18806,7 +18820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chautauquacattarauguslibrarysystem-4be4fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/chautauquacattarauguslibrarysystem-4be4fd.png" }, { "if": { @@ -18822,7 +18836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagopubliclibrary-f51cb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagopubliclibrary-f51cb2.jpg" }, { "if": { @@ -18838,7 +18852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cincinnatiandhamiltoncountypubliclibrary-f8d891.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cincinnatiandhamiltoncountypubliclibrary-f8d891.svg" }, { "if": { @@ -18856,7 +18870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcapetown-80b0ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-80b0ad.png" }, { "if": { @@ -18871,7 +18885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmoretonbay-8e5058.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmoretonbay-8e5058.jpg" }, { "if": { @@ -18886,7 +18900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsanantonio-24a277.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsanantonio-24a277.png" }, { "if": { @@ -18901,7 +18915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsandiego-b5320b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsandiego-b5320b.svg" }, { "if": { @@ -18918,7 +18932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarecountylibrary-418067.png" + "then": "https://data.mapcomplete.org/nsi//logos/clarecountylibrary-418067.png" }, { "if": { @@ -18934,7 +18948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandpubliclibrary-f8d891.svg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandpubliclibrary-f8d891.svg" }, { "if": { @@ -18950,7 +18964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cobbcountypubliclibrarysystem-3f6d55.png" + "then": "https://data.mapcomplete.org/nsi//logos/cobbcountypubliclibrarysystem-3f6d55.png" }, { "if": { @@ -18965,7 +18979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communautedecommuneschateaubriantderval-461dc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communautedecommuneschateaubriantderval-461dc5.jpg" }, { "if": { @@ -18980,7 +18994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communautedecommunesdupaysdancenis-461dc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communautedecommunesdupaysdancenis-461dc5.jpg" }, { "if": { @@ -18995,7 +19009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedimilano-ff35cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedimilano-ff35cb.jpg" }, { "if": { @@ -19010,7 +19024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornwallcouncil-1aa95b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornwallcouncil-1aa95b.jpg" }, { "if": { @@ -19025,7 +19039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/debibliotheekcultuurpuntaltena-08efeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/debibliotheekcultuurpuntaltena-08efeb.jpg" }, { "if": { @@ -19040,7 +19054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deschutespubliclibrary-199ec0.png" + "then": "https://data.mapcomplete.org/nsi//logos/deschutespubliclibrary-199ec0.png" }, { "if": { @@ -19056,7 +19070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/detroitpubliclibrary-dccdd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/detroitpubliclibrary-dccdd9.jpg" }, { "if": { @@ -19072,7 +19086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devoncountycouncil-e39d1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/devoncountycouncil-e39d1a.png" }, { "if": { @@ -19087,7 +19101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diputaciodebarcelona-f7a909.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diputaciodebarcelona-f7a909.jpg" }, { "if": { @@ -19103,7 +19117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorsetcouncil-1a7c11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorsetcouncil-1a7c11.jpg" }, { "if": { @@ -19120,7 +19134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dublincitycouncil-f8622f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dublincitycouncil-f8622f.jpg" }, { "if": { @@ -19137,7 +19151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dunlaoghairerathdowncountycouncil-f8622f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dunlaoghairerathdowncountycouncil-f8622f.jpg" }, { "if": { @@ -19153,7 +19167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edmontonpubliclibrary-9e3799.png" + "then": "https://data.mapcomplete.org/nsi//logos/edmontonpubliclibrary-9e3799.png" }, { "if": { @@ -19168,7 +19182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enochprattfreelibrary-1170f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enochprattfreelibrary-1170f4.jpg" }, { "if": { @@ -19183,7 +19197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essexcountycouncil-088e6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essexcountycouncil-088e6d.jpg" }, { "if": { @@ -19199,7 +19213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fingerlakeslibrarysystem-4be4fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fingerlakeslibrarysystem-4be4fd.jpg" }, { "if": { @@ -19214,7 +19228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fougeresagglomeration-b386fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fougeresagglomeration-b386fe.jpg" }, { "if": { @@ -19230,7 +19244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fourcountylibrarysystem-4be4fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fourcountylibrarysystem-4be4fd.jpg" }, { "if": { @@ -19245,7 +19259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fovarosiszaboervinkonyvtar-231351.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fovarosiszaboervinkonyvtar-231351.jpg" }, { "if": { @@ -19261,7 +19275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fraservalleyregionallibrary-b48f8b.png" + "then": "https://data.mapcomplete.org/nsi//logos/fraservalleyregionallibrary-b48f8b.png" }, { "if": { @@ -19276,7 +19290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freelibraryofphiladelphia-5c5b2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freelibraryofphiladelphia-5c5b2b.jpg" }, { "if": { @@ -19292,7 +19306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortvancouverregionallibraries-48ecdd.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortvancouverregionallibraries-48ecdd.png" }, { "if": { @@ -19308,7 +19322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamiltonpubliclibrary-b0fd6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/hamiltonpubliclibrary-b0fd6b.png" }, { "if": { @@ -19323,7 +19337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hampshirecountycouncil-03a231.png" + "then": "https://data.mapcomplete.org/nsi//logos/hampshirecountycouncil-03a231.png" }, { "if": { @@ -19338,7 +19352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harfordcountypubliclibrary-1170f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harfordcountypubliclibrary-1170f4.jpg" }, { "if": { @@ -19354,7 +19368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiistatepubliclibrarysystem-2f64e5.png" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiistatepubliclibrarysystem-2f64e5.png" }, { "if": { @@ -19369,7 +19383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helmet-75c643.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/helmet-75c643.jpg" }, { "if": { @@ -19385,7 +19399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hennepincountylibrary-8eb121.png" + "then": "https://data.mapcomplete.org/nsi//logos/hennepincountylibrary-8eb121.png" }, { "if": { @@ -19400,7 +19414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hertfordshirecountycouncil-088e6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hertfordshirecountycouncil-088e6d.jpg" }, { "if": { @@ -19416,7 +19430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houstonpubliclibrary-24a277.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houstonpubliclibrary-24a277.jpg" }, { "if": { @@ -19431,7 +19445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huroncountylibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huroncountylibrary-b0fd6b.jpg" }, { "if": { @@ -19447,7 +19461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istanbulbuyuksehirbelediyesi-80cd01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istanbulbuyuksehirbelediyesi-80cd01.jpg" }, { "if": { @@ -19463,7 +19477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksoncountylibraryservices-199ec0.png" + "then": "https://data.mapcomplete.org/nsi//logos/jacksoncountylibraryservices-199ec0.png" }, { "if": { @@ -19478,7 +19492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kawarthalakespubliclibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kawarthalakespubliclibrary-b0fd6b.jpg" }, { "if": { @@ -19494,7 +19508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klamathcountylibraryservicedistrict-199ec0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klamathcountylibraryservicedistrict-199ec0.jpg" }, { "if": { @@ -19509,7 +19523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentcountycouncil-5f562a.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentcountycouncil-5f562a.png" }, { "if": { @@ -19524,7 +19538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentstateuniversity-737b54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-737b54.jpg" }, { "if": { @@ -19540,7 +19554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingcountylibrarysystem-48ecdd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingcountylibrarysystem-48ecdd.jpg" }, { "if": { @@ -19556,7 +19570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingstonfrontenacpubliclibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingstonfrontenacpubliclibrary-b0fd6b.jpg" }, { "if": { @@ -19572,7 +19586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kniznicapremladezmestakosice-36c657.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kniznicapremladezmestakosice-36c657.jpg" }, { "if": { @@ -19587,7 +19601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knjiznicegradazagreba-e2bdd2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knjiznicegradazagreba-e2bdd2.jpg" }, { "if": { @@ -19602,7 +19616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kopgroepbibliotheken-08efeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kopgroepbibliotheken-08efeb.jpg" }, { "if": { @@ -19617,7 +19631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kornhausbibliothekenbern-4ad6fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/kornhausbibliothekenbern-4ad6fe.png" }, { "if": { @@ -19632,7 +19646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lacountylibrary-d6a8bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lacountylibrary-d6a8bf.jpg" }, { "if": { @@ -19648,7 +19662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakeagassizregionallibrary-8eb121.png" + "then": "https://data.mapcomplete.org/nsi//logos/lakeagassizregionallibrary-8eb121.png" }, { "if": { @@ -19665,7 +19679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakecountypubliclibrary-3f8c31.png" + "then": "https://data.mapcomplete.org/nsi//logos/lakecountypubliclibrary-3f8c31.png" }, { "if": { @@ -19680,7 +19694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lambtoncountylibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lambtoncountylibrary-b0fd6b.jpg" }, { "if": { @@ -19695,7 +19709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancashirecountycouncil-c1fc6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lancashirecountycouncil-c1fc6c.png" }, { "if": { @@ -19710,7 +19724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/librariestasmania-41eb09.png" + "then": "https://data.mapcomplete.org/nsi//logos/librariestasmania-41eb09.png" }, { "if": { @@ -19726,7 +19740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofhounslow-d8f64f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofhounslow-d8f64f.svg" }, { "if": { @@ -19742,7 +19756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofmerton-d8f64f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofmerton-d8f64f.svg" }, { "if": { @@ -19759,7 +19773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofrichmonduponthames-d8f64f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofrichmonduponthames-d8f64f.svg" }, { "if": { @@ -19775,7 +19789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofwandsworth-d8f64f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofwandsworth-d8f64f.svg" }, { "if": { @@ -19791,7 +19805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonpubliclibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonpubliclibrary-b0fd6b.jpg" }, { "if": { @@ -19807,7 +19821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelespubliclibrary-d6a8bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelespubliclibrary-d6a8bf.png" }, { "if": { @@ -19822,7 +19836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mairiedeparis-024698.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-024698.jpg" }, { "if": { @@ -19837,7 +19851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestnaknjiznicaljubljana-86076e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestnaknjiznicaljubljana-86076e.jpg" }, { "if": { @@ -19852,7 +19866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestskaknihovnavpraze-cbbd2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestskaknihovnavpraze-cbbd2f.jpg" }, { "if": { @@ -19867,7 +19881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/middlesexcountylibrary-9e3799.png" + "then": "https://data.mapcomplete.org/nsi//logos/middlesexcountylibrary-9e3799.png" }, { "if": { @@ -19883,7 +19897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milwaukeepubliclibrary-b285d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milwaukeepubliclibrary-b285d6.jpg" }, { "if": { @@ -19898,7 +19912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississaugalibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mississaugalibrary-b0fd6b.jpg" }, { "if": { @@ -19914,7 +19928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monroecountylibrarysystem-dccdd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monroecountylibrarysystem-dccdd9.jpg" }, { "if": { @@ -19929,7 +19943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montpelliermediterraneemetropole-668c92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montpelliermediterraneemetropole-668c92.jpg" }, { "if": { @@ -19944,7 +19958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/multnomahcountylibrary-199ec0.png" + "then": "https://data.mapcomplete.org/nsi//logos/multnomahcountylibrary-199ec0.png" }, { "if": { @@ -19959,7 +19973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/munchnerstadtbibliothek-9f9ae7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/munchnerstadtbibliothek-9f9ae7.jpg" }, { "if": { @@ -19974,7 +19988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddeneuquen-e12b56.png" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-e12b56.png" }, { "if": { @@ -19990,7 +20004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkpubliclibrary-df14d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkpubliclibrary-df14d6.jpg" }, { "if": { @@ -20006,7 +20020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportcitycouncil-e31f47.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-e31f47.jpg" }, { "if": { @@ -20021,7 +20035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niogalibrarysystem-4be4fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/niogalibrarysystem-4be4fd.jpg" }, { "if": { @@ -20036,7 +20050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolkcountycouncil-088e6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolkcountycouncil-088e6d.jpg" }, { "if": { @@ -20052,7 +20066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcountrylibrarysystem-4be4fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/northcountrylibrarysystem-4be4fd.png" }, { "if": { @@ -20067,7 +20081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northnorthamptonshire-f83674.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northnorthamptonshire-f83674.jpg" }, { "if": { @@ -20082,7 +20096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northsomersetcouncil-beca46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northsomersetcouncil-beca46.jpg" }, { "if": { @@ -20097,7 +20111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernirelandlibraryauthority-134a25.png" + "then": "https://data.mapcomplete.org/nsi//logos/northernirelandlibraryauthority-134a25.png" }, { "if": { @@ -20112,7 +20126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nottinghamshirecountycouncil-f83674.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nottinghamshirecountycouncil-f83674.jpg" }, { "if": { @@ -20127,7 +20141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oba-08efeb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oba-08efeb.jpg" }, { "if": { @@ -20143,7 +20157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocpubliclibraries-585335.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocpubliclibraries-585335.jpg" }, { "if": { @@ -20159,7 +20173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/onondagacountypubliclibraries-4be4fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/onondagacountypubliclibraries-4be4fd.jpg" }, { "if": { @@ -20175,7 +20189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangecountylibrarysystem-7fd740.png" + "then": "https://data.mapcomplete.org/nsi//logos/orangecountylibrarysystem-7fd740.png" }, { "if": { @@ -20193,7 +20207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottawapubliclibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottawapubliclibrary-b0fd6b.jpg" }, { "if": { @@ -20208,7 +20222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/owwllibrarysystem-4be4fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/owwllibrarysystem-4be4fd.jpg" }, { "if": { @@ -20224,7 +20238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfordcountylibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfordcountylibrary-b0fd6b.jpg" }, { "if": { @@ -20240,7 +20254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pestalozzibibliothekzurich-eb2614.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pestalozzibibliothekzurich-eb2614.jpg" }, { "if": { @@ -20255,7 +20269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/philippsuniversitatmarburg-3533f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/philippsuniversitatmarburg-3533f8.jpg" }, { "if": { @@ -20271,7 +20285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pikespeaklibrarydistrict-0087cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pikespeaklibrarydistrict-0087cb.jpg" }, { "if": { @@ -20287,7 +20301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plymouthcitycouncil-d00319.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plymouthcitycouncil-d00319.jpg" }, { "if": { @@ -20303,7 +20317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/princegeorgescountymemoriallibrarysystem-1170f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/princegeorgescountymemoriallibrarysystem-1170f4.png" }, { "if": { @@ -20318,7 +20332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/purdueuniversity-3f8c31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/purdueuniversity-3f8c31.jpg" }, { "if": { @@ -20334,7 +20348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queenspubliclibrary-df14d6.png" + "then": "https://data.mapcomplete.org/nsi//logos/queenspubliclibrary-df14d6.png" }, { "if": { @@ -20350,7 +20364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochesterpubliclibrary-4be4fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochesterpubliclibrary-4be4fd.jpg" }, { "if": { @@ -20365,7 +20379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salfordcitycouncil-e51a5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salfordcitycouncil-e51a5f.jpg" }, { "if": { @@ -20380,7 +20394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanbernardinocountylibrary-b5320b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanbernardinocountylibrary-b5320b.png" }, { "if": { @@ -20396,7 +20410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanfranciscopubliclibrary-92bbc9.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanfranciscopubliclibrary-92bbc9.png" }, { "if": { @@ -20412,7 +20426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanjosepubliclibrary-b5320b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanjosepubliclibrary-b5320b.png" }, { "if": { @@ -20427,7 +20441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sapienzauniversitadiroma-7d219c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sapienzauniversitadiroma-7d219c.jpg" }, { "if": { @@ -20443,7 +20457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepubliclibrary-48ecdd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepubliclibrary-48ecdd.svg" }, { "if": { @@ -20458,7 +20472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetcouncil-0ac97c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-0ac97c.jpg" }, { "if": { @@ -20474,7 +20488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerntierlibrarysystem-4be4fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerntierlibrarysystem-4be4fd.jpg" }, { "if": { @@ -20489,7 +20503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkoln-cac9ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkoln-cac9ca.jpg" }, { "if": { @@ -20505,7 +20519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stiftunghamburgeroffentlichebucherhallen-bba292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stiftunghamburgeroffentlichebucherhallen-bba292.jpg" }, { "if": { @@ -20522,7 +20536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stiftungkornhausbibliotheken-4ad6fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/stiftungkornhausbibliotheken-4ad6fe.png" }, { "if": { @@ -20538,7 +20552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontopubliclibrary-b0fd6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/torontopubliclibrary-b0fd6b.png" }, { "if": { @@ -20553,7 +20567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tularecountylibrary-b5320b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tularecountylibrary-b5320b.jpg" }, { "if": { @@ -20568,7 +20582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universidaddeleon-3746d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/universidaddeleon-3746d4.png" }, { "if": { @@ -20583,7 +20597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universidaddemalaga-3746d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universidaddemalaga-3746d4.jpg" }, { "if": { @@ -20598,7 +20612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitadeglistudiditrieste-0c255f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitadeglistudiditrieste-0c255f.jpg" }, { "if": { @@ -20613,7 +20627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitadibologna-c0ba41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitadibologna-c0ba41.jpg" }, { "if": { @@ -20628,7 +20642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitatbonn-cac9ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitatbonn-cac9ca.jpg" }, { "if": { @@ -20643,7 +20657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitathamburg-bba292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitathamburg-bba292.jpg" }, { "if": { @@ -20658,7 +20672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitatwien-1625ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/universitatwien-1625ae.png" }, { "if": { @@ -20673,7 +20687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitatsbibliothekderhumboldtuniversitatzuberlin-8a11d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitatsbibliothekderhumboldtuniversitatzuberlin-8a11d2.jpg" }, { "if": { @@ -20688,7 +20702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitatsbibliothekderlmumunchen-9f9ae7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitatsbibliothekderlmumunchen-9f9ae7.jpg" }, { "if": { @@ -20703,7 +20717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitatsbibliothekderrwthaachen-cac9ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitatsbibliothekderrwthaachen-cac9ca.jpg" }, { "if": { @@ -20718,7 +20732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitatsbibliothekdertechnischenuniversitatberlin-8a11d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitatsbibliothekdertechnischenuniversitatberlin-8a11d2.jpg" }, { "if": { @@ -20733,7 +20747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitebordeauxmontaigne-aef600.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitebordeauxmontaigne-aef600.jpg" }, { "if": { @@ -20748,7 +20762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitedelorraine-c2daaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitedelorraine-c2daaf.jpg" }, { "if": { @@ -20763,7 +20777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityoftoronto-b0fd6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityoftoronto-b0fd6b.png" }, { "if": { @@ -20778,7 +20792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valenceromansagglo-391b22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valenceromansagglo-391b22.jpg" }, { "if": { @@ -20794,7 +20808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vancouverpubliclibrary-b48f8b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vancouverpubliclibrary-b48f8b.svg" }, { "if": { @@ -20809,7 +20823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedegeneve-68bbbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villedegeneve-68bbbd.jpg" }, { "if": { @@ -20825,7 +20839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellingtoncountylibrary-b0fd6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellingtoncountylibrary-b0fd6b.jpg" }, { "if": { @@ -20840,7 +20854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westnorthamptonshire-f83674.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westnorthamptonshire-f83674.jpg" }, { "if": { @@ -20855,7 +20869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/89e2b7-6a5686.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/89e2b7-6a5686.jpg" }, { "if": { @@ -20872,7 +20886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newtaipeicitylibrary-6a5686.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newtaipeicitylibrary-6a5686.jpg" }, { "if": { @@ -20889,7 +20903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taoyuanpubliclibrary-6a5686.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taoyuanpubliclibrary-6a5686.jpg" }, { "if": { @@ -20909,7 +20923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongpubliclibraries-5d847a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongpubliclibraries-5d847a.jpg" }, { "if": { @@ -20923,7 +20937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/farmtocitymarkets-f97474.png" + "then": "https://data.mapcomplete.org/nsi//logos/farmtocitymarkets-f97474.png" }, { "if": { @@ -20938,7 +20952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hackneycouncil-36ae31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-36ae31.jpg" }, { "if": { @@ -20953,7 +20967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonfarmersmarket-36ae31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonfarmersmarket-36ae31.jpg" }, { "if": { @@ -20967,7 +20981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtluzern-adbdf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtluzern-adbdf0.jpg" }, { "if": { @@ -20981,7 +20995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thefoodtrust-edd60a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thefoodtrust-edd60a.jpg" }, { "if": { @@ -20995,7 +21009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vtmmannheim-19533a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vtmmannheim-19533a.jpg" }, { "if": { @@ -21009,7 +21023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zagrebackiholdingpodruznicatrznicezagreb-f2d9a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zagrebackiholdingpodruznicatrznicezagreb-f2d9a8.svg" }, { "if": { @@ -21023,7 +21037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bf90bd-4269df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bf90bd-4269df.jpg" }, { "if": { @@ -21037,7 +21051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c98346-4269df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c98346-4269df.jpg" }, { "if": { @@ -21051,7 +21065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/023771-4269df.png" + "then": "https://data.mapcomplete.org/nsi//logos/023771-4269df.png" }, { "if": { @@ -21065,7 +21079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1b7778-4269df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1b7778-4269df.jpg" }, { "if": { @@ -21079,7 +21093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d399e0-4269df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/d399e0-4269df.jpg" }, { "if": { @@ -21098,7 +21112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aceparking-c11ec2.png" + "then": "https://data.mapcomplete.org/nsi//logos/aceparking-c11ec2.png" }, { "if": { @@ -21113,7 +21127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apcoaparking-e752ad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/apcoaparking-e752ad.svg" }, { "if": { @@ -21128,7 +21142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bathandnortheastsomersetcouncil-854c9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bathandnortheastsomersetcouncil-854c9b.jpg" }, { "if": { @@ -21147,7 +21161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carepark-e0a745.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carepark-e0a745.jpg" }, { "if": { @@ -21163,7 +21177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citycenterparking-3047f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/citycenterparking-3047f4.png" }, { "if": { @@ -21181,7 +21195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colonialparking-c11ec2.png" + "then": "https://data.mapcomplete.org/nsi//logos/colonialparking-c11ec2.png" }, { "if": { @@ -21196,7 +21210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/contipark-083d22.png" + "then": "https://data.mapcomplete.org/nsi//logos/contipark-083d22.png" }, { "if": { @@ -21211,7 +21225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornwallcouncil-76dd28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornwallcouncil-76dd28.jpg" }, { "if": { @@ -21229,7 +21243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diamondparking-4ef6cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diamondparking-4ef6cc.jpg" }, { "if": { @@ -21244,7 +21258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorsetcouncil-ba8105.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorsetcouncil-ba8105.jpg" }, { "if": { @@ -21259,7 +21273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/englishheritage-c49703.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/englishheritage-c49703.jpg" }, { "if": { @@ -21274,7 +21288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erewashboroughcouncil-5b215a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erewashboroughcouncil-5b215a.jpg" }, { "if": { @@ -21289,7 +21303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/estapar-67d8e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/estapar-67d8e2.jpg" }, { "if": { @@ -21304,7 +21318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exetercitycouncil-6532f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exetercitycouncil-6532f5.jpg" }, { "if": { @@ -21319,7 +21333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gedlingboroughcouncil-5b215a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gedlingboroughcouncil-5b215a.jpg" }, { "if": { @@ -21334,7 +21348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteamsterdam-400e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteamsterdam-400e31.jpg" }, { "if": { @@ -21349,7 +21363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentedordrecht-400e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentedordrecht-400e31.jpg" }, { "if": { @@ -21364,7 +21378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteleiden-400e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteleiden-400e31.jpg" }, { "if": { @@ -21379,7 +21393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenterotterdam-400e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-400e31.jpg" }, { "if": { @@ -21394,7 +21408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteutrecht-400e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteutrecht-400e31.jpg" }, { "if": { @@ -21409,7 +21423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteweert-400e31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteweert-400e31.jpg" }, { "if": { @@ -21428,7 +21442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/impark-4ef6cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/impark-4ef6cc.jpg" }, { "if": { @@ -21447,7 +21461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indigo-00023b.png" + "then": "https://data.mapcomplete.org/nsi//logos/indigo-00023b.png" }, { "if": { @@ -21466,7 +21480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interparking-119199.png" + "then": "https://data.mapcomplete.org/nsi//logos/interparking-119199.png" }, { "if": { @@ -21485,7 +21499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ispark-2ec6a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ispark-2ec6a1.jpg" }, { "if": { @@ -21500,7 +21514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keoliscommuterservices-b745cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/keoliscommuterservices-b745cf.svg" }, { "if": { @@ -21515,7 +21529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofnewham-38d530.png" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofnewham-38d530.png" }, { "if": { @@ -21530,7 +21544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestokosice-61f593.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestokosice-61f593.jpg" }, { "if": { @@ -21545,7 +21559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrust-d0df4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrust-d0df4a.jpg" }, { "if": { @@ -21561,7 +21575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrustforscotland-8cff5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-8cff5c.jpg" }, { "if": { @@ -21576,7 +21590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northsomersetcouncil-349006.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northsomersetcouncil-349006.jpg" }, { "if": { @@ -21592,7 +21606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkbee-6b1460.png" + "then": "https://data.mapcomplete.org/nsi//logos/parkbee-6b1460.png" }, { "if": { @@ -21612,7 +21626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkingcompanyofamerica-c11ec2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkingcompanyofamerica-c11ec2.jpg" }, { "if": { @@ -21627,7 +21641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/payuca-083d22.png" + "then": "https://data.mapcomplete.org/nsi//logos/payuca-083d22.png" }, { "if": { @@ -21642,7 +21656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pittsburghparkingauthority-ca0b08.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pittsburghparkingauthority-ca0b08.svg" }, { "if": { @@ -21657,7 +21671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plymouthcitycouncil-b3011c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plymouthcitycouncil-b3011c.jpg" }, { "if": { @@ -21675,7 +21689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qpark-99dc74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qpark-99dc74.jpg" }, { "if": { @@ -21695,7 +21709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queenslandrail-d2c33d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/queenslandrail-d2c33d.jpg" }, { "if": { @@ -21711,7 +21725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/republicparking-c11ec2.png" + "then": "https://data.mapcomplete.org/nsi//logos/republicparking-c11ec2.png" }, { "if": { @@ -21726,7 +21740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rotherdistrictcouncil-a07589.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rotherdistrictcouncil-a07589.jpg" }, { "if": { @@ -21741,7 +21755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salfordcitycouncil-664294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salfordcitycouncil-664294.jpg" }, { "if": { @@ -21759,7 +21773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandbureauoftransportation-3047f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portlandbureauoftransportation-3047f4.jpg" }, { "if": { @@ -21774,7 +21788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetcouncil-6e1dc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-6e1dc7.jpg" }, { "if": { @@ -21794,7 +21808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sp-4ef6cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sp-4ef6cc.jpg" }, { "if": { @@ -21809,7 +21823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torbaycouncil-cf4093.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torbaycouncil-cf4093.jpg" }, { "if": { @@ -21824,7 +21838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontoparkingauthority-51e243.png" + "then": "https://data.mapcomplete.org/nsi//logos/torontoparkingauthority-51e243.png" }, { "if": { @@ -21841,7 +21855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trimet-3047f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/trimet-3047f4.png" }, { "if": { @@ -21860,7 +21874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilsonparking-7fb8ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/wilsonparking-7fb8ab.png" }, { "if": { @@ -21875,7 +21889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wipark-cf21e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wipark-cf21e1.jpg" }, { "if": { @@ -21891,7 +21905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yespark-dee437.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yespark-dee437.jpg" }, { "if": { @@ -21907,7 +21921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zagrebparking-2da37d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zagrebparking-2da37d.svg" }, { "if": { @@ -21925,7 +21939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilsonparking-1f7225.png" + "then": "https://data.mapcomplete.org/nsi//logos/wilsonparking-1f7225.png" }, { "if": { @@ -21940,7 +21954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonadepartmentofpublicsafety-fb4941.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arizonadepartmentofpublicsafety-fb4941.svg" }, { "if": { @@ -21955,7 +21969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/armadeicarabinieri-f71f16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/armadeicarabinieri-f71f16.jpg" }, { "if": { @@ -21969,7 +21983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avonandsomersetpolice-e37317.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avonandsomersetpolice-e37317.jpg" }, { "if": { @@ -21983,7 +21997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemadrid-cdff0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-cdff0a.png" }, { "if": { @@ -21998,7 +22012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorepolicedepartment-069b69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorepolicedepartment-069b69.jpg" }, { "if": { @@ -22013,7 +22027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayerischeslandeskriminalamt-948feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayerischeslandeskriminalamt-948feb.jpg" }, { "if": { @@ -22027,7 +22041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedfordshirepolice-b0762b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedfordshirepolice-b0762b.jpg" }, { "if": { @@ -22044,7 +22058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brigadamilitardoriograndedosul-4f605e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brigadamilitardoriograndedosul-4f605e.jpg" }, { "if": { @@ -22058,7 +22072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishtransportpolice-ad8563.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/britishtransportpolice-ad8563.jpg" }, { "if": { @@ -22073,7 +22087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundeskriminalamt-120877.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundeskriminalamt-120877.jpg" }, { "if": { @@ -22088,7 +22102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundeskriminalamt-6671a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/bundeskriminalamt-6671a8.png" }, { "if": { @@ -22103,7 +22117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundespolizei-120877.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundespolizei-120877.jpg" }, { "if": { @@ -22117,7 +22131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundespolizei-6671a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bundespolizei-6671a8.svg" }, { "if": { @@ -22132,7 +22146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiahighwaypatrol-5ab5b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiahighwaypatrol-5ab5b5.jpg" }, { "if": { @@ -22146,7 +22160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carabinerosdechile-2e4672.svg" + "then": "https://data.mapcomplete.org/nsi//logos/carabinerosdechile-2e4672.svg" }, { "if": { @@ -22160,7 +22174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cheshireconstabulary-e9bc23.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cheshireconstabulary-e9bc23.svg" }, { "if": { @@ -22174,7 +22188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagopolicedepartment-42a893.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagopolicedepartment-42a893.jpg" }, { "if": { @@ -22189,7 +22203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradostatepatrol-6fe638.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradostatepatrol-6fe638.jpg" }, { "if": { @@ -22203,7 +22217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunidaddemadrid-cdff0a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-cdff0a.svg" }, { "if": { @@ -22220,7 +22234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cuerponacionaldepolicia-dd66e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cuerponacionaldepolicia-dd66e9.jpg" }, { "if": { @@ -22234,7 +22248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cumbriaconstabulary-e9bc23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cumbriaconstabulary-e9bc23.jpg" }, { "if": { @@ -22249,7 +22263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delawarestatepolice-255ad0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delawarestatepolice-255ad0.jpg" }, { "if": { @@ -22263,7 +22277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delhipolice-d0526a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delhipolice-d0526a.jpg" }, { "if": { @@ -22277,7 +22291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbyshireconstabulary-ada603.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derbyshireconstabulary-ada603.jpg" }, { "if": { @@ -22291,7 +22305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devonandcornwallpolice-4da082.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/devonandcornwallpolice-4da082.jpg" }, { "if": { @@ -22308,7 +22322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/directiongeneraledelasuretenationale-1f771a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/directiongeneraledelasuretenationale-1f771a.jpg" }, { "if": { @@ -22322,7 +22336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/directiageneraladepolitieamunicipiuluibucuresti-f06bca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/directiageneraladepolitieamunicipiuluibucuresti-f06bca.jpg" }, { "if": { @@ -22336,7 +22350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorsetpolice-51bf4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorsetpolice-51bf4c.jpg" }, { "if": { @@ -22350,7 +22364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhamconstabulary-0bde0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/durhamconstabulary-0bde0d.jpg" }, { "if": { @@ -22366,7 +22380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dyfedpowyspolice-03a321.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dyfedpowyspolice-03a321.jpg" }, { "if": { @@ -22381,7 +22395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emniyetgenelmudurlugu-8fcafc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/emniyetgenelmudurlugu-8fcafc.svg" }, { "if": { @@ -22395,7 +22409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essexpolice-b0762b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essexpolice-b0762b.jpg" }, { "if": { @@ -22409,7 +22423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gardasiochana-82aa2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gardasiochana-82aa2a.jpg" }, { "if": { @@ -22423,7 +22437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gendarmerianacionalargentina-e73d55.png" + "then": "https://data.mapcomplete.org/nsi//logos/gendarmerianacionalargentina-e73d55.png" }, { "if": { @@ -22437,7 +22451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gendarmerienationale-714d2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gendarmerienationale-714d2d.jpg" }, { "if": { @@ -22451,7 +22465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governodoestadodoriograndedonorte-faf9f7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/governodoestadodoriograndedonorte-faf9f7.svg" }, { "if": { @@ -22465,7 +22479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guardanacionalrepublicana-269632.svg" + "then": "https://data.mapcomplete.org/nsi//logos/guardanacionalrepublicana-269632.svg" }, { "if": { @@ -22479,7 +22493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guardiacivil-dd66e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guardiacivil-dd66e9.jpg" }, { "if": { @@ -22493,7 +22507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guardiacostiera-f71f16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guardiacostiera-f71f16.jpg" }, { "if": { @@ -22507,7 +22521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guardiadifinanza-f71f16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guardiadifinanza-f71f16.jpg" }, { "if": { @@ -22524,7 +22538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guardianacionalbolivarianadevenezuela-3383b4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/guardianacionalbolivarianadevenezuela-3383b4.svg" }, { "if": { @@ -22538,7 +22552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haltonregionalpoliceservice-ecdb14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haltonregionalpoliceservice-ecdb14.jpg" }, { "if": { @@ -22553,7 +22567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hessischeslandeskriminalamt-2444f7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hessischeslandeskriminalamt-2444f7.svg" }, { "if": { @@ -22567,7 +22581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/honolulupolicedepartment-ac982f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/honolulupolicedepartment-ac982f.jpg" }, { "if": { @@ -22581,7 +22595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/humbersidepolice-96e541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/humbersidepolice-96e541.jpg" }, { "if": { @@ -22596,7 +22610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahostatepolice-b19a53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahostatepolice-b19a53.jpg" }, { "if": { @@ -22611,7 +22625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoisstatepolice-157c12.png" + "then": "https://data.mapcomplete.org/nsi//logos/illinoisstatepolice-157c12.png" }, { "if": { @@ -22626,7 +22640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iowastatepatrol-61c181.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iowastatepatrol-61c181.jpg" }, { "if": { @@ -22641,7 +22655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansashighwaypatrol-9e9805.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kansashighwaypatrol-9e9805.jpg" }, { "if": { @@ -22655,7 +22669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kantonspolizeithurgau-e5b07a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kantonspolizeithurgau-e5b07a.jpg" }, { "if": { @@ -22669,7 +22683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kantonspolizeizurich-ad4a21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kantonspolizeizurich-ad4a21.jpg" }, { "if": { @@ -22686,7 +22700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kepolisiannegararepublikindonesia-d8ba39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kepolisiannegararepublikindonesia-d8ba39.jpg" }, { "if": { @@ -22702,7 +22716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralapolice-d0526a.png" + "then": "https://data.mapcomplete.org/nsi//logos/keralapolice-d0526a.png" }, { "if": { @@ -22716,7 +22730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancashireconstabulary-e9bc23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancashireconstabulary-e9bc23.jpg" }, { "if": { @@ -22731,7 +22745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeskriminalamtbadenwurttemberg-d0f2fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtbadenwurttemberg-d0f2fb.jpg" }, { "if": { @@ -22746,7 +22760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeskriminalamtbremen-048619.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtbremen-048619.jpg" }, { "if": { @@ -22761,7 +22775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeskriminalamtniedersachsen-ce7aa3.png" + "then": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtniedersachsen-ce7aa3.png" }, { "if": { @@ -22776,7 +22790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeskriminalamtnordrheinwestfalen-d18cd0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtnordrheinwestfalen-d18cd0.jpg" }, { "if": { @@ -22791,7 +22805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeskriminalamtthuringen-87c090.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtthuringen-87c090.jpg" }, { "if": { @@ -22805,7 +22819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landespolizeidirektionniederosterreich-890ad1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landespolizeidirektionniederosterreich-890ad1.jpg" }, { "if": { @@ -22819,7 +22833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leicestershirepolice-ada603.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leicestershirepolice-ada603.jpg" }, { "if": { @@ -22833,7 +22847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnshirepolice-ada603.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnshirepolice-ada603.jpg" }, { "if": { @@ -22849,7 +22863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelespolicedepartment-624635.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losangelespolicedepartment-624635.jpg" }, { "if": { @@ -22863,7 +22877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luzernerpolizei-830d3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luzernerpolizei-830d3c.jpg" }, { "if": { @@ -22878,7 +22892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylandstatepolice-a9f0a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marylandstatepolice-a9f0a0.jpg" }, { "if": { @@ -22893,7 +22907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massachusettsstatepolice-63829a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/massachusettsstatepolice-63829a.jpg" }, { "if": { @@ -22907,7 +22921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolitanpolice-018d65.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolitanpolice-018d65.svg" }, { "if": { @@ -22922,7 +22936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolitanpolicedepartment-90e1c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolitanpolicedepartment-90e1c9.jpg" }, { "if": { @@ -22936,7 +22950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodelpoderpopularpararelacionesinterioresjusticiaypaz-3383b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodelpoderpopularpararelacionesinterioresjusticiaypaz-3383b4.png" }, { "if": { @@ -22951,7 +22965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryoftheinterior-d05393.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryoftheinterior-d05393.svg" }, { "if": { @@ -22966,7 +22980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippihighwaypatrol-6f856a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mississippihighwaypatrol-6f856a.jpg" }, { "if": { @@ -22981,7 +22995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montanahighwaypatrol-ac9f9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montanahighwaypatrol-ac9f9b.jpg" }, { "if": { @@ -22995,7 +23009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mossosdesquadra-dd66e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mossosdesquadra-dd66e9.jpg" }, { "if": { @@ -23009,7 +23023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nampol-292e37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nampol-292e37.jpg" }, { "if": { @@ -23023,7 +23037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalepolitie-5cfdc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalepolitie-5cfdc8.jpg" }, { "if": { @@ -23039,7 +23053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nepalpolice-f1d71d.png" + "then": "https://data.mapcomplete.org/nsi//logos/nepalpolice-f1d71d.png" }, { "if": { @@ -23054,7 +23068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newjerseystatepolice-0f60fd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newjerseystatepolice-0f60fd.jpg" }, { "if": { @@ -23069,7 +23083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newmexicostatepolice-09cc93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newmexicostatepolice-09cc93.jpg" }, { "if": { @@ -23085,7 +23099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkpolicedepartment-13fd26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkpolicedepartment-13fd26.jpg" }, { "if": { @@ -23100,7 +23114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatepolice-67ecfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatepolice-67ecfd.jpg" }, { "if": { @@ -23114,7 +23128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newzealandpolice-6de575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newzealandpolice-6de575.jpg" }, { "if": { @@ -23128,7 +23142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordjyllandspoliti-f27ed8.png" + "then": "https://data.mapcomplete.org/nsi//logos/nordjyllandspoliti-f27ed8.png" }, { "if": { @@ -23142,7 +23156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolkconstabulary-b0762b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolkconstabulary-b0762b.jpg" }, { "if": { @@ -23157,7 +23171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcarolinastatehighwaypatrol-eadf83.png" + "then": "https://data.mapcomplete.org/nsi//logos/northcarolinastatehighwaypatrol-eadf83.png" }, { "if": { @@ -23172,7 +23186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northdakotahighwaypatrol-be4496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northdakotahighwaypatrol-be4496.jpg" }, { "if": { @@ -23186,7 +23200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northyorkshirepolice-96e541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northyorkshirepolice-96e541.jpg" }, { "if": { @@ -23200,7 +23214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernterritorypoliceforce-fa07c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernterritorypoliceforce-fa07c9.jpg" }, { "if": { @@ -23214,7 +23228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northumbriapolice-0bde0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northumbriapolice-0bde0d.jpg" }, { "if": { @@ -23228,7 +23242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nottinghamshirepolice-ada603.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nottinghamshirepolice-ada603.jpg" }, { "if": { @@ -23242,7 +23256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswpoliceforce-4d9f38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswpoliceforce-4d9f38.jpg" }, { "if": { @@ -23256,7 +23270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontarioprovincialpolice-ecdb14.png" + "then": "https://data.mapcomplete.org/nsi//logos/ontarioprovincialpolice-ecdb14.png" }, { "if": { @@ -23271,7 +23285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregonstatepolice-c23f57.png" + "then": "https://data.mapcomplete.org/nsi//logos/oregonstatepolice-c23f57.png" }, { "if": { @@ -23285,7 +23299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottawapoliceservice-ecdb14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottawapoliceservice-ecdb14.jpg" }, { "if": { @@ -23300,7 +23314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/philippinenationalpolice-959114.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/philippinenationalpolice-959114.jpg" }, { "if": { @@ -23314,7 +23328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poderjudicial-05938a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/poderjudicial-05938a.svg" }, { "if": { @@ -23329,7 +23343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policajnyzbor-546d53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policajnyzbor-546d53.jpg" }, { "if": { @@ -23343,7 +23357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policenationale-714d2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policenationale-714d2d.jpg" }, { "if": { @@ -23357,7 +23371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policescotland-ad9c86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policescotland-ad9c86.jpg" }, { "if": { @@ -23371,7 +23385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policeserviceofnorthernireland-e79ac6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policeserviceofnorthernireland-e79ac6.jpg" }, { "if": { @@ -23385,7 +23399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiacivildoestadodabahia-199ea7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodabahia-199ea7.jpg" }, { "if": { @@ -23399,7 +23413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiacivildoestadodeminasgerais-5eef66.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodeminasgerais-5eef66.png" }, { "if": { @@ -23413,7 +23427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiacivildoestadodesantacatarina-5a51ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodesantacatarina-5a51ec.jpg" }, { "if": { @@ -23427,7 +23441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiacivildoestadodesaopaulo-0df637.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodesaopaulo-0df637.png" }, { "if": { @@ -23441,7 +23455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiacivildoestadodoespiritosanto-cf5b75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodoespiritosanto-cf5b75.jpg" }, { "if": { @@ -23455,7 +23469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadecatamarca-6fa7f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadecatamarca-6fa7f7.jpg" }, { "if": { @@ -23469,7 +23483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelaciudad-c38488.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelaciudad-c38488.jpg" }, { "if": { @@ -23483,7 +23497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelapampa-4021d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelapampa-4021d5.png" }, { "if": { @@ -23497,7 +23511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelaprovinciadebuenosaires-c38488.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadebuenosaires-c38488.png" }, { "if": { @@ -23511,7 +23525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelaprovinciadecordoba-ed1bd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadecordoba-ed1bd8.jpg" }, { "if": { @@ -23525,7 +23539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelaprovinciadeentrerios-c437f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadeentrerios-c437f3.jpg" }, { "if": { @@ -23539,7 +23553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelaprovinciademisiones-b3f80b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciademisiones-b3f80b.jpg" }, { "if": { @@ -23553,7 +23567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelaprovinciadeneuquen-2ae00c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadeneuquen-2ae00c.jpg" }, { "if": { @@ -23567,7 +23581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadelaprovinciadesantafe-6f8c3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadesantafe-6f8c3b.jpg" }, { "if": { @@ -23581,7 +23595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiaderionegro-124cf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiaderionegro-124cf2.jpg" }, { "if": { @@ -23595,7 +23609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadesantiagodelestero-dbd40a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadesantiagodelestero-dbd40a.jpg" }, { "if": { @@ -23610,7 +23624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiadesegurancapublica-269632.svg" + "then": "https://data.mapcomplete.org/nsi//logos/policiadesegurancapublica-269632.svg" }, { "if": { @@ -23624,7 +23638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiafederalargentina-e73d55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiafederalargentina-e73d55.jpg" }, { "if": { @@ -23640,7 +23654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiafederaldobrasil-f7f40a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiafederaldobrasil-f7f40a.jpg" }, { "if": { @@ -23655,7 +23669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardabahia-199ea7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardabahia-199ea7.jpg" }, { "if": { @@ -23670,7 +23684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardaparaiba-1b5ab8.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardaparaiba-1b5ab8.png" }, { "if": { @@ -23685,7 +23699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardealagoas-2ac7dd.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardealagoas-2ac7dd.png" }, { "if": { @@ -23700,7 +23714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardematogrossodosul-7dcdd9.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardematogrossodosul-7dcdd9.png" }, { "if": { @@ -23715,7 +23729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardeminasgerais-5eef66.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardeminasgerais-5eef66.png" }, { "if": { @@ -23730,7 +23744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardepernambuco-e16786.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardepernambuco-e16786.png" }, { "if": { @@ -23745,7 +23759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitarderoraima-800492.gif" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitarderoraima-800492.gif" }, { "if": { @@ -23760,7 +23774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoamazonas-a3a7cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoamazonas-a3a7cc.png" }, { "if": { @@ -23775,7 +23789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardodistritofederal-50c96d.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardodistritofederal-50c96d.png" }, { "if": { @@ -23790,7 +23804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodegoias-e8990e.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodegoias-e8990e.png" }, { "if": { @@ -23805,7 +23819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodematogrosso-bede3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodematogrosso-bede3c.png" }, { "if": { @@ -23820,7 +23834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadoderondonia-200a68.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadoderondonia-200a68.png" }, { "if": { @@ -23835,7 +23849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodesantacatarina-5a51ec.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodesantacatarina-5a51ec.png" }, { "if": { @@ -23850,7 +23864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodesaopaulo-0df637.gif" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodesaopaulo-0df637.gif" }, { "if": { @@ -23865,7 +23879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodesergipe-8453d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodesergipe-8453d9.png" }, { "if": { @@ -23880,7 +23894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodoacre-b5c2fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoacre-b5c2fc.png" }, { "if": { @@ -23895,7 +23909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodoamapa-b9253d.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoamapa-b9253d.png" }, { "if": { @@ -23910,7 +23924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodoceara-e543dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoceara-e543dc.png" }, { "if": { @@ -23925,7 +23939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodoespiritosanto-cf5b75.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoespiritosanto-cf5b75.png" }, { "if": { @@ -23940,7 +23954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodomaranhao-222628.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodomaranhao-222628.png" }, { "if": { @@ -23955,7 +23969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodopara-d9607c.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodopara-d9607c.png" }, { "if": { @@ -23970,7 +23984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodoriodejaneiro-347580.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoriodejaneiro-347580.jpg" }, { "if": { @@ -23985,7 +23999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodoriograndedonorte-faf9f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoriograndedonorte-faf9f7.jpg" }, { "if": { @@ -24000,7 +24014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodotocantins-624e2f.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodotocantins-624e2f.png" }, { "if": { @@ -24015,7 +24029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoparana-6e8c53.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoparana-6e8c53.png" }, { "if": { @@ -24032,7 +24046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policianacionalbolivariana-3383b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/policianacionalbolivariana-3383b4.png" }, { "if": { @@ -24047,7 +24061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policianacionaldebolivia-23a32a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policianacionaldebolivia-23a32a.jpg" }, { "if": { @@ -24061,7 +24075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policianacionaldecolombia-057a57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policianacionaldecolombia-057a57.jpg" }, { "if": { @@ -24075,7 +24089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policianacionaldepanama-8db086.png" + "then": "https://data.mapcomplete.org/nsi//logos/policianacionaldepanama-8db086.png" }, { "if": { @@ -24090,7 +24104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policianacionaldeparaguay-fe76ea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policianacionaldeparaguay-fe76ea.jpg" }, { "if": { @@ -24104,7 +24118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policianacionaldeuruguay-2c325e.png" + "then": "https://data.mapcomplete.org/nsi//logos/policianacionaldeuruguay-2c325e.png" }, { "if": { @@ -24118,7 +24132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policianacionaldelperu-67e8f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policianacionaldelperu-67e8f0.jpg" }, { "if": { @@ -24132,7 +24146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiarodoviariafederal-f7f40a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiarodoviariafederal-f7f40a.jpg" }, { "if": { @@ -24146,7 +24160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policja-821ef5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policja-821ef5.jpg" }, { "if": { @@ -24160,7 +24174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polisdirajamalaysia-6c0ab9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/polisdirajamalaysia-6c0ab9.svg" }, { "if": { @@ -24174,7 +24188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeibadenwurttemberg-d0f2fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/polizeibadenwurttemberg-d0f2fb.png" }, { "if": { @@ -24188,7 +24202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeibayern-948feb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeibayern-948feb.jpg" }, { "if": { @@ -24202,7 +24216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeiberlin-d728c1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeiberlin-d728c1.svg" }, { "if": { @@ -24216,7 +24230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeibrandenburg-e64180.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeibrandenburg-e64180.jpg" }, { "if": { @@ -24230,7 +24244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeibremen-048619.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeibremen-048619.jpg" }, { "if": { @@ -24244,7 +24258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeihamburg-a93b62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeihamburg-a93b62.jpg" }, { "if": { @@ -24258,7 +24272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeihessen-2444f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeihessen-2444f7.jpg" }, { "if": { @@ -24272,7 +24286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeimecklenburgvorpommern-f418f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeimecklenburgvorpommern-f418f5.jpg" }, { "if": { @@ -24286,7 +24300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeiniedersachsen-ce7aa3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeiniedersachsen-ce7aa3.jpg" }, { "if": { @@ -24300,7 +24314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeinordrheinwestfalen-d18cd0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeinordrheinwestfalen-d18cd0.svg" }, { "if": { @@ -24314,7 +24328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeirheinlandpfalz-78e8a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeirheinlandpfalz-78e8a1.jpg" }, { "if": { @@ -24328,7 +24342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeisaarland-66d9ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeisaarland-66d9ba.jpg" }, { "if": { @@ -24342,7 +24356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeisachsen-d7cb22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeisachsen-d7cb22.jpg" }, { "if": { @@ -24356,7 +24370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeisachsenanhalt-0fb907.svg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeisachsenanhalt-0fb907.svg" }, { "if": { @@ -24370,7 +24384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polizeischleswigholstein-f07ddc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polizeischleswigholstein-f07ddc.jpg" }, { "if": { @@ -24384,7 +24398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poliziadistato-f71f16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poliziadistato-f71f16.jpg" }, { "if": { @@ -24398,7 +24412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefecturanavalargentina-e73d55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefecturanavalargentina-e73d55.jpg" }, { "if": { @@ -24412,7 +24426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pulizijatamalta-67380b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pulizijatamalta-67380b.jpg" }, { "if": { @@ -24426,7 +24440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/punjabpolice-d0526a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/punjabpolice-d0526a.jpg" }, { "if": { @@ -24440,7 +24454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queenslandpoliceservice-079051.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/queenslandpoliceservice-079051.jpg" }, { "if": { @@ -24454,7 +24468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionesiciliana-6a6f8c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/regionesiciliana-6a6f8c.svg" }, { "if": { @@ -24469,7 +24483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalcanadianmountedpolice-b69ec0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalcanadianmountedpolice-b69ec0.jpg" }, { "if": { @@ -24484,7 +24498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalnewfoundlandconstabulary-40e165.png" + "then": "https://data.mapcomplete.org/nsi//logos/royalnewfoundlandconstabulary-40e165.png" }, { "if": { @@ -24501,7 +24515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalthaipolice-951c56.svg" + "then": "https://data.mapcomplete.org/nsi//logos/royalthaipolice-951c56.svg" }, { "if": { @@ -24516,7 +24530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanbernardinocountysheriffsdepartment-5ab5b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanbernardinocountysheriffsdepartment-5ab5b5.png" }, { "if": { @@ -24530,7 +24544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicedepolicedelavilledemontreal-abba03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicedepolicedelavilledemontreal-abba03.jpg" }, { "if": { @@ -24545,7 +24559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southafricanpoliceservice-3a04a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southafricanpoliceservice-3a04a0.jpg" }, { "if": { @@ -24559,7 +24573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southaustraliapolice-6b6db7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southaustraliapolice-6b6db7.jpg" }, { "if": { @@ -24574,7 +24588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southdakotahighwaypatrol-ce37ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southdakotahighwaypatrol-ce37ff.jpg" }, { "if": { @@ -24588,7 +24602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southyorkshirepolice-96e541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southyorkshirepolice-96e541.jpg" }, { "if": { @@ -24602,7 +24616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/srilankapolice-28cf45.png" + "then": "https://data.mapcomplete.org/nsi//logos/srilankapolice-28cf45.png" }, { "if": { @@ -24616,7 +24630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suffolkconstabulary-b0762b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suffolkconstabulary-b0762b.jpg" }, { "if": { @@ -24631,7 +24645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sureteduquebec-abba03.png" + "then": "https://data.mapcomplete.org/nsi//logos/sureteduquebec-abba03.png" }, { "if": { @@ -24645,7 +24659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sussexpolice-297ebf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sussexpolice-297ebf.jpg" }, { "if": { @@ -24659,7 +24673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasmaniapolice-9b55cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tasmaniapolice-9b55cd.jpg" }, { "if": { @@ -24674,7 +24688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texashighwaypatrol-d15be5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texashighwaypatrol-d15be5.jpg" }, { "if": { @@ -24689,7 +24703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasrangerdivision-d15be5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasrangerdivision-d15be5.jpg" }, { "if": { @@ -24703,7 +24717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thamesvalleypolice-01cccd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/thamesvalleypolice-01cccd.svg" }, { "if": { @@ -24717,7 +24731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thuringerpolizei-87c090.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thuringerpolizei-87c090.jpg" }, { "if": { @@ -24731,7 +24745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontopoliceservice-ecdb14.png" + "then": "https://data.mapcomplete.org/nsi//logos/torontopoliceservice-ecdb14.png" }, { "if": { @@ -24746,7 +24760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesparkpolice-04d52e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesparkpolice-04d52e.jpg" }, { "if": { @@ -24761,7 +24775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/utahhighwaypatrol-b507af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/utahhighwaypatrol-b507af.jpg" }, { "if": { @@ -24775,7 +24789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/victoriapolice-808201.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/victoriapolice-808201.jpg" }, { "if": { @@ -24789,7 +24803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warwickshirepolice-0d427b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warwickshirepolice-0d427b.jpg" }, { "if": { @@ -24804,7 +24818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonstatepatrol-5dd6e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonstatepatrol-5dd6e3.jpg" }, { "if": { @@ -24818,7 +24832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westmerciapolice-0d427b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westmerciapolice-0d427b.jpg" }, { "if": { @@ -24832,7 +24846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westmidlandspolice-0d427b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westmidlandspolice-0d427b.svg" }, { "if": { @@ -24846,7 +24860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westyorkshirepolice-96e541.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westyorkshirepolice-96e541.svg" }, { "if": { @@ -24860,7 +24874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernaustraliapoliceforce-fec6b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westernaustraliapoliceforce-fec6b2.jpg" }, { "if": { @@ -24877,7 +24891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofinternalaffairs-3a79c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofinternalaffairs-3a79c7.jpg" }, { "if": { @@ -24893,7 +24907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policeofrussia-3a79c7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/policeofrussia-3a79c7.svg" }, { "if": { @@ -24915,7 +24929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patrolpolicedepartamentoftheministryofinternalaffairsofgeorgia-ce89ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/patrolpolicedepartamentoftheministryofinternalaffairsofgeorgia-ce89ae.png" }, { "if": { @@ -24929,7 +24943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d1eead-555f12.svg" + "then": "https://data.mapcomplete.org/nsi//logos/d1eead-555f12.svg" }, { "if": { @@ -24945,7 +24959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/criminalinvestigationbureau-c45d37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/criminalinvestigationbureau-c45d37.jpg" }, { "if": { @@ -24961,7 +24975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalhighwaypolicebureau-c45d37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalhighwaypolicebureau-c45d37.jpg" }, { "if": { @@ -24977,7 +24991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamagataprefecturalpolice-ae5e65.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yamagataprefecturalpolice-ae5e65.svg" }, { "if": { @@ -24993,7 +25007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newtaipeicitypolicedepartment-c45d37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newtaipeicitypolicedepartment-c45d37.jpg" }, { "if": { @@ -25011,7 +25025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicsecuritypoliceforce-ff7137.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicsecuritypoliceforce-ff7137.jpg" }, { "if": { @@ -25027,7 +25041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coastguardadministration-c45d37.png" + "then": "https://data.mapcomplete.org/nsi//logos/coastguardadministration-c45d37.png" }, { "if": { @@ -25043,7 +25057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penghucountygovernmentpolicebureau-c45d37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penghucountygovernmentpolicebureau-c45d37.jpg" }, { "if": { @@ -25059,7 +25073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taipeicitypolicedepartment-c45d37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taipeicitypolicedepartment-c45d37.jpg" }, { "if": { @@ -25078,7 +25092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongpoliceforce-4394e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongpoliceforce-4394e5.jpg" }, { "if": { @@ -25094,7 +25108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kagoshimaprefecturalpolice-ae5e65.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kagoshimaprefecturalpolice-ae5e65.svg" }, { "if": { @@ -25110,7 +25124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresabrasileiradecorreiosetelegrafos-a9f49f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/empresabrasileiradecorreiosetelegrafos-a9f49f.jpg" }, { "if": { @@ -25127,7 +25141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fedex-b58716.png" + "then": "https://data.mapcomplete.org/nsi//logos/fedex-b58716.png" }, { "if": { @@ -25142,7 +25156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinmail-225eac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pinmail-225eac.svg" }, { "if": { @@ -25156,17 +25170,17 @@ } ] }, - "then": "./assets/data/nsi/logos/royalmail-f65bfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalmail-f65bfd.jpg" }, { "if": { "and": [ "amenity=post_box", - "official_name=United Parcel Service", { "or": [ "brand=UPS", "brand:wikidata=Q155026", + "official_name=United Parcel Service", "operator=UPS", "operator:type=private", "operator:wikidata=Q155026" @@ -25174,7 +25188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ups-b58716.png" + "then": "https://data.mapcomplete.org/nsi//logos/ups-b58716.png" }, { "if": { @@ -25194,7 +25208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bestexpress-75380d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bestexpress-75380d.jpg" }, { "if": { @@ -25210,7 +25224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityexpress-776b1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityexpress-776b1b.jpg" }, { "if": { @@ -25226,7 +25240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhl-b58716.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dhl-b58716.jpg" }, { "if": { @@ -25242,7 +25256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpd-d7f0d6.png" + "then": "https://data.mapcomplete.org/nsi//logos/dpd-d7f0d6.png" }, { "if": { @@ -25258,7 +25272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/estafeta-f60cac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/estafeta-f60cac.svg" }, { "if": { @@ -25274,7 +25288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressone-715a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressone-715a36.jpg" }, { "if": { @@ -25290,7 +25304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressone-b69600.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressone-b69600.jpg" }, { "if": { @@ -25306,7 +25320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/expressone-0e5c7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/expressone-0e5c7d.jpg" }, { "if": { @@ -25322,7 +25336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interrapidisimo-3eebd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/interrapidisimo-3eebd4.jpg" }, { "if": { @@ -25338,7 +25352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intime-0e5c7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intime-0e5c7d.jpg" }, { "if": { @@ -25354,7 +25368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mailboxesetc-6064e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mailboxesetc-6064e7.jpg" }, { "if": { @@ -25370,7 +25384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mailboxesetc-f65bfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mailboxesetc-f65bfd.jpg" }, { "if": { @@ -25390,7 +25404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omanpost-d77818.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omanpost-d77818.jpg" }, { "if": { @@ -25406,7 +25420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityexpress-006da0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityexpress-006da0.png" }, { "if": { @@ -25422,7 +25436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pakmail-a77078.png" + "then": "https://data.mapcomplete.org/nsi//logos/pakmail-a77078.png" }, { "if": { @@ -25438,7 +25452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paquetexpress-f60cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/paquetexpress-f60cac.jpg" }, { "if": { @@ -25454,7 +25468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pocztapolska-01d69e.png" + "then": "https://data.mapcomplete.org/nsi//logos/pocztapolska-01d69e.png" }, { "if": { @@ -25470,7 +25484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postakenya-8a89ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postakenya-8a89ac.jpg" }, { "if": { @@ -25486,7 +25500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posten-d3fd2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/posten-d3fd2e.png" }, { "if": { @@ -25502,7 +25516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postnet-f6a981.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postnet-f6a981.jpg" }, { "if": { @@ -25518,7 +25532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/speedy-0e5c7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/speedy-0e5c7d.png" }, { "if": { @@ -25534,7 +25548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6d0749-0e5c7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/6d0749-0e5c7d.png" }, { "if": { @@ -25550,7 +25564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4f7c8b-0e5c7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/4f7c8b-0e5c7d.jpg" }, { "if": { @@ -25566,7 +25580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5ac048-98aa7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/5ac048-98aa7c.jpg" }, { "if": { @@ -25587,7 +25601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ytoexpress-38b646.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ytoexpress-38b646.jpg" }, { "if": { @@ -25608,7 +25622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/depponexpress-38b646.svg" + "then": "https://data.mapcomplete.org/nsi//logos/depponexpress-38b646.svg" }, { "if": { @@ -25628,7 +25642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cainiao-38b646.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cainiao-38b646.jpg" }, { "if": { @@ -25652,7 +25666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sfexpress-8ff70a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sfexpress-8ff70a.jpg" }, { "if": { @@ -25673,22 +25687,22 @@ } ] }, - "then": "./assets/data/nsi/logos/sfexpress-293b54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sfexpress-293b54.jpg" }, { "if": { "and": [ "amenity=post_box", - "official_name=Servicios Postales Nacionales", { "or": [ + "official_name=Servicios Postales Nacionales", "operator=4-72", "operator:wikidata=Q85800448" ] } ] }, - "then": "./assets/data/nsi/logos/472-3eebd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/472-3eebd4.jpg" }, { "if": { @@ -25702,7 +25716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aerocav-6371df.png" + "then": "https://data.mapcomplete.org/nsi//logos/aerocav-6371df.png" }, { "if": { @@ -25716,7 +25730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alandpost-d3c20b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alandpost-d3c20b.jpg" }, { "if": { @@ -25732,7 +25746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/algerieposte-b1eaa9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/algerieposte-b1eaa9.jpg" }, { "if": { @@ -25746,7 +25760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anpost-389524.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anpost-389524.jpg" }, { "if": { @@ -25760,7 +25774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australiapost-7f3a8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/australiapost-7f3a8a.jpg" }, { "if": { @@ -25774,7 +25788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3a476b-f6482c.png" + "then": "https://data.mapcomplete.org/nsi//logos/3a476b-f6482c.png" }, { "if": { @@ -25791,7 +25805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postemaroc-2a0eda.png" + "then": "https://data.mapcomplete.org/nsi//logos/postemaroc-2a0eda.png" }, { "if": { @@ -25805,7 +25819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bhposta-715a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bhposta-715a36.jpg" }, { "if": { @@ -25823,7 +25837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluedartexpress-eef7b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluedartexpress-eef7b2.jpg" }, { "if": { @@ -25837,7 +25851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bpost-fcdb5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpost-fcdb5b.jpg" }, { "if": { @@ -25851,7 +25865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadapost-00e6ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadapost-00e6ce.jpg" }, { "if": { @@ -25865,7 +25879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cargus-746983.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cargus-746983.jpg" }, { "if": { @@ -25879,7 +25893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskapostasp-645a7b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceskapostasp-645a7b.png" }, { "if": { @@ -25893,7 +25907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chilexpress-5e8ca4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chilexpress-5e8ca4.jpg" }, { "if": { @@ -25907,22 +25921,22 @@ } ] }, - "then": "./assets/data/nsi/logos/chronopost-747794.png" + "then": "https://data.mapcomplete.org/nsi//logos/chronopost-747794.png" }, { "if": { "and": [ "amenity=post_box", - "official_name=Coordinadora Mercantil S.A.", { "or": [ + "official_name=Coordinadora Mercantil S.A.", "operator=Coordinadora", "operator:wikidata=Q109252162" ] } ] }, - "then": "./assets/data/nsi/logos/coordinadora-3eebd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coordinadora-3eebd4.jpg" }, { "if": { @@ -25936,7 +25950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correoargentino-4e393b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correoargentino-4e393b.jpg" }, { "if": { @@ -25950,7 +25964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correos-05a564.png" + "then": "https://data.mapcomplete.org/nsi//logos/correos-05a564.png" }, { "if": { @@ -25964,7 +25978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correosdechile-5e8ca4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correosdechile-5e8ca4.jpg" }, { "if": { @@ -25978,7 +25992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correosdecostarica-89198c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correosdecostarica-89198c.jpg" }, { "if": { @@ -25992,7 +26006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correosdecuba-9416d8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correosdecuba-9416d8.jpg" }, { "if": { @@ -26006,7 +26020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correosdemexico-f60cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correosdemexico-f60cac.jpg" }, { "if": { @@ -26020,7 +26034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctt-e54f67.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ctt-e54f67.svg" }, { "if": { @@ -26034,7 +26048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctt-b2383c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ctt-b2383c.png" }, { "if": { @@ -26050,7 +26064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delhivery-eef7b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/delhivery-eef7b2.png" }, { "if": { @@ -26064,7 +26078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschepost-225eac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschepost-225eac.jpg" }, { "if": { @@ -26078,7 +26092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/domesa-6371df.svg" + "then": "https://data.mapcomplete.org/nsi//logos/domesa-6371df.svg" }, { "if": { @@ -26092,7 +26106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eestipost-f66fc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eestipost-f66fc9.jpg" }, { "if": { @@ -26106,7 +26120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emiratespost-4c01d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emiratespost-4c01d7.jpg" }, { "if": { @@ -26120,7 +26134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fancourier-746983.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fancourier-746983.jpg" }, { "if": { @@ -26134,7 +26148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generallogisticssystemsgermany-225eac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generallogisticssystemsgermany-225eac.jpg" }, { "if": { @@ -26148,7 +26162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ghanapost-f32027.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ghanapost-f32027.jpg" }, { "if": { @@ -26162,7 +26176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gls-b58716.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gls-b58716.svg" }, { "if": { @@ -26176,7 +26190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guernseypost-9043f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guernseypost-9043f7.jpg" }, { "if": { @@ -26192,7 +26206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haypost-67ecec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haypost-67ecec.jpg" }, { "if": { @@ -26206,7 +26220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hermes-225eac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hermes-225eac.jpg" }, { "if": { @@ -26220,7 +26234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hrvatskaposta-006da0.png" + "then": "https://data.mapcomplete.org/nsi//logos/hrvatskaposta-006da0.png" }, { "if": { @@ -26234,7 +26248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hrvatskapostamostar-715a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hrvatskapostamostar-715a36.jpg" }, { "if": { @@ -26248,7 +26262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indiapost-eef7b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indiapost-eef7b2.jpg" }, { "if": { @@ -26262,7 +26276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inpost-01d69e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/inpost-01d69e.svg" }, { "if": { @@ -26276,7 +26290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/islandspostur-af7f84.png" + "then": "https://data.mapcomplete.org/nsi//logos/islandspostur-af7f84.png" }, { "if": { @@ -26292,7 +26306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isleofmanpostoffice-2536a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isleofmanpostoffice-2536a4.jpg" }, { "if": { @@ -26306,7 +26320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jandtexpress-21508a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jandtexpress-21508a.jpg" }, { "if": { @@ -26320,7 +26334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseypost-9f43cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/jerseypost-9f43cc.png" }, { "if": { @@ -26334,7 +26348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laposte-747794.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laposte-747794.jpg" }, { "if": { @@ -26348,7 +26362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapostemonaco-c6ecb3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lapostemonaco-c6ecb3.svg" }, { "if": { @@ -26364,7 +26378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapostetunisienne-d4c01c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lapostetunisienne-d4c01c.jpg" }, { "if": { @@ -26378,7 +26392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/latvijaspasts-7d10cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/latvijaspasts-7d10cc.jpg" }, { "if": { @@ -26392,7 +26406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lbc-4e7db5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lbc-4e7db5.svg" }, { "if": { @@ -26406,7 +26420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liechtensteinischepost-4fee35.svg" + "then": "https://data.mapcomplete.org/nsi//logos/liechtensteinischepost-4fee35.svg" }, { "if": { @@ -26420,7 +26434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lietuvospastas-06c38d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lietuvospastas-06c38d.jpg" }, { "if": { @@ -26434,7 +26448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mace-f65bfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mace-f65bfd.jpg" }, { "if": { @@ -26448,7 +26462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magyarposta-b69600.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magyarposta-b69600.jpg" }, { "if": { @@ -26462,7 +26476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maltapost-381874.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maltapost-381874.jpg" }, { "if": { @@ -26476,7 +26490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mngkargo-74be01.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mngkargo-74be01.svg" }, { "if": { @@ -26490,7 +26504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrw-f1512b.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrw-f1512b.png" }, { "if": { @@ -26504,7 +26518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newzealandpost-6c56da.png" + "then": "https://data.mapcomplete.org/nsi//logos/newzealandpost-6c56da.png" }, { "if": { @@ -26518,7 +26532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omniva-f66fc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omniva-f66fc9.jpg" }, { "if": { @@ -26533,7 +26547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/officedespostesettelecommunicationsdepolynesiefrancaise-e94386.png" + "then": "https://data.mapcomplete.org/nsi//logos/officedespostesettelecommunicationsdepolynesiefrancaise-e94386.png" }, { "if": { @@ -26548,7 +26562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/organizacioncoordinadoraargentina-4e393b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/organizacioncoordinadoraargentina-4e393b.svg" }, { "if": { @@ -26562,7 +26576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterreichischepostag-99c20d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterreichischepostag-99c20d.jpg" }, { "if": { @@ -26576,7 +26590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pakistanpost-26ebda.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pakistanpost-26ebda.jpg" }, { "if": { @@ -26590,22 +26604,22 @@ } ] }, - "then": "./assets/data/nsi/logos/palestinepost-734900.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palestinepost-734900.jpg" }, { "if": { "and": [ "amenity=post_box", - "official_name=Philippine Postal Corporation", { "or": [ + "official_name=Philippine Postal Corporation", "operator=PHLPost", "operator:wikidata=Q1406037" ] } ] }, - "then": "./assets/data/nsi/logos/phlpost-4e7db5.png" + "then": "https://data.mapcomplete.org/nsi//logos/phlpost-4e7db5.png" }, { "if": { @@ -26620,7 +26634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posindonesia-fdefd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/posindonesia-fdefd5.jpg" }, { "if": { @@ -26634,7 +26648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posmalaysia-083009.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/posmalaysia-083009.jpg" }, { "if": { @@ -26648,7 +26662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postaruba-337ad8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postaruba-337ad8.jpg" }, { "if": { @@ -26662,7 +26676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postdanmark-8e57c0.png" + "then": "https://data.mapcomplete.org/nsi//logos/postdanmark-8e57c0.png" }, { "if": { @@ -26676,7 +26690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postluxembourg-378ac5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postluxembourg-378ac5.jpg" }, { "if": { @@ -26690,7 +26704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posta-7a7118.svg" + "then": "https://data.mapcomplete.org/nsi//logos/posta-7a7118.svg" }, { "if": { @@ -26704,7 +26718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postacrnegore-1f0b4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/postacrnegore-1f0b4c.png" }, { "if": { @@ -26718,7 +26732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postaekosoves-238dcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postaekosoves-238dcb.jpg" }, { "if": { @@ -26732,7 +26746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postamoldovei-833d92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postamoldovei-833d92.jpg" }, { "if": { @@ -26746,7 +26760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postaromana-746983.png" + "then": "https://data.mapcomplete.org/nsi//logos/postaromana-746983.png" }, { "if": { @@ -26760,7 +26774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postashqiptare-5d3454.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postashqiptare-5d3454.jpg" }, { "if": { @@ -26774,7 +26788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postaslovenije-68f37b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postaslovenije-68f37b.jpg" }, { "if": { @@ -26788,7 +26802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postalannex-a77078.png" + "then": "https://data.mapcomplete.org/nsi//logos/postalannex-a77078.png" }, { "if": { @@ -26802,7 +26816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postcon-225eac.png" + "then": "https://data.mapcomplete.org/nsi//logos/postcon-225eac.png" }, { "if": { @@ -26816,7 +26830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posteitaliane-f380c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/posteitaliane-f380c8.jpg" }, { "if": { @@ -26830,7 +26844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postesanmarino-a544f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postesanmarino-a544f7.jpg" }, { "if": { @@ -26844,7 +26858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postesrpske-715a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postesrpske-715a36.jpg" }, { "if": { @@ -26858,7 +26872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postescanada-2241ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postescanada-2241ae.jpg" }, { "if": { @@ -26872,7 +26886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posti-b6d4d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/posti-b6d4d9.png" }, { "if": { @@ -26886,7 +26900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postnl-3f4703.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postnl-3f4703.jpg" }, { "if": { @@ -26900,7 +26914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postnord-90fe7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/postnord-90fe7c.png" }, { "if": { @@ -26914,7 +26928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ptt-74be01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ptt-74be01.jpg" }, { "if": { @@ -26928,7 +26942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serpost-7393da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/serpost-7393da.jpg" }, { "if": { @@ -26942,7 +26956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servientrega-3eebd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servientrega-3eebd4.jpg" }, { "if": { @@ -26956,7 +26970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoppersdrugmart-eb4eda.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoppersdrugmart-eb4eda.png" }, { "if": { @@ -26970,7 +26984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/singaporepost-7412de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/singaporepost-7412de.jpg" }, { "if": { @@ -26984,7 +26998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskaposta-d9cb9e.png" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskaposta-d9cb9e.png" }, { "if": { @@ -26999,7 +27013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southafricanpostoffice-cf256c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southafricanpostoffice-cf256c.jpg" }, { "if": { @@ -27015,7 +27029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tcc-3eebd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tcc-3eebd4.jpg" }, { "if": { @@ -27029,7 +27043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tealca-6371df.png" + "then": "https://data.mapcomplete.org/nsi//logos/tealca-6371df.png" }, { "if": { @@ -27045,7 +27059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thailandpost-15aacf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thailandpost-15aacf.jpg" }, { "if": { @@ -27059,7 +27073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tnt-b58716.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tnt-b58716.svg" }, { "if": { @@ -27073,7 +27087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ttpost-d8fb16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ttpost-d8fb16.jpg" }, { "if": { @@ -27087,7 +27101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tusass-a8bc28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tusass-a8bc28.jpg" }, { "if": { @@ -27103,7 +27117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatespostalservice-a77078.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatespostalservice-a77078.png" }, { "if": { @@ -27117,7 +27131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uzpost-f090a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uzpost-f090a1.jpg" }, { "if": { @@ -27131,7 +27145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vietnampost-5b5816.png" + "then": "https://data.mapcomplete.org/nsi//logos/vietnampost-5b5816.png" }, { "if": { @@ -27145,7 +27159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volg-c6967d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/volg-c6967d.svg" }, { "if": { @@ -27159,7 +27173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yurticikargo-74be01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yurticikargo-74be01.jpg" }, { "if": { @@ -27173,7 +27187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zasilkovna-645a7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zasilkovna-645a7b.jpg" }, { "if": { @@ -27187,7 +27201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoom-6371df.png" + "then": "https://data.mapcomplete.org/nsi//logos/zoom-6371df.png" }, { "if": { @@ -27204,7 +27218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hellenicpost-d6ef5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hellenicpost-d6ef5f.jpg" }, { "if": { @@ -27221,7 +27235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belposhta-f30b90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belposhta-f30b90.jpg" }, { "if": { @@ -27237,7 +27251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnistriapost-833d92.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnistriapost-833d92.svg" }, { "if": { @@ -27254,7 +27268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kazpost-f5a740.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kazpost-f5a740.jpg" }, { "if": { @@ -27268,7 +27282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7fe185-4271bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/7fe185-4271bd.png" }, { "if": { @@ -27284,7 +27298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postofcrimea-0d7391.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postofcrimea-0d7391.jpg" }, { "if": { @@ -27298,7 +27312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6898b3-98aa7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/6898b3-98aa7c.png" }, { "if": { @@ -27312,7 +27326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/848860-776b1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/848860-776b1b.jpg" }, { "if": { @@ -27329,7 +27343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrposhta-1a910f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ukrposhta-1a910f.png" }, { "if": { @@ -27358,7 +27372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/georgianpost-a9190e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/georgianpost-a9190e.jpg" }, { "if": { @@ -27374,7 +27388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/israelpostalcompany-6a5101.png" + "then": "https://data.mapcomplete.org/nsi//logos/israelpostalcompany-6a5101.png" }, { "if": { @@ -27388,7 +27402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/df1b33-6376b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/df1b33-6376b2.jpg" }, { "if": { @@ -27404,7 +27418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iraqpost-8bf441.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iraqpost-8bf441.jpg" }, { "if": { @@ -27418,7 +27432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/66f694-6376b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/66f694-6376b2.jpg" }, { "if": { @@ -27434,7 +27448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koreapost-ff3ead.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koreapost-ff3ead.jpg" }, { "if": { @@ -27455,7 +27469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chunghwapost-bed6e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chunghwapost-bed6e8.jpg" }, { "if": { @@ -27474,7 +27488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/japanpost-f7cda2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/japanpost-f7cda2.jpg" }, { "if": { @@ -27490,7 +27504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongpost-8ff70a.png" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongpost-8ff70a.png" }, { "if": { @@ -27510,7 +27524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diepost-c6967d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diepost-c6967d.jpg" }, { "if": { @@ -27526,7 +27540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anpost-2f7b40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anpost-2f7b40.jpg" }, { "if": { @@ -27541,7 +27555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australiapost-96d49b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/australiapost-96d49b.jpg" }, { "if": { @@ -27556,7 +27570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadapost-dd0253.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadapost-dd0253.jpg" }, { "if": { @@ -27573,7 +27587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresabrasileiradecorreiosetelegrafos-28fd5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/empresabrasileiradecorreiosetelegrafos-28fd5c.jpg" }, { "if": { @@ -27589,7 +27603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschepost-6fd7ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschepost-6fd7ff.jpg" }, { "if": { @@ -27603,7 +27617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evri-a473cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evri-a473cc.jpg" }, { "if": { @@ -27617,7 +27631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generallogisticssystemsgermany-6fd7ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generallogisticssystemsgermany-6fd7ff.jpg" }, { "if": { @@ -27633,7 +27647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laposte-5d47ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laposte-5d47ca.jpg" }, { "if": { @@ -27647,7 +27661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrw-71d94f.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrw-71d94f.png" }, { "if": { @@ -27661,7 +27675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newzealandpost-6b0f2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/newzealandpost-6b0f2e.png" }, { "if": { @@ -27675,7 +27689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterreichischepost-b5ec48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterreichischepost-b5ec48.jpg" }, { "if": { @@ -27690,7 +27704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postescanada-7b7f06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postescanada-7b7f06.jpg" }, { "if": { @@ -27706,7 +27720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalmail-a473cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalmail-a473cc.jpg" }, { "if": { @@ -27720,7 +27734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seur-449920.png" + "then": "https://data.mapcomplete.org/nsi//logos/seur-449920.png" }, { "if": { @@ -27736,22 +27750,22 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatespostalservice-9cb3b1.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatespostalservice-9cb3b1.png" }, { "if": { "and": [ "amenity=post_office", - "official_name=Servicios Postales Nacionales", { "or": [ + "official_name=Servicios Postales Nacionales", "operator=4-72", "operator:wikidata=Q85800448" ] } ] }, - "then": "./assets/data/nsi/logos/472-754eb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/472-754eb3.jpg" }, { "if": { @@ -27765,7 +27779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aerocav-de64fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/aerocav-de64fe.png" }, { "if": { @@ -27779,7 +27793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alandpost-3edbf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alandpost-3edbf0.jpg" }, { "if": { @@ -27795,7 +27809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/algerieposte-e99ec0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/algerieposte-e99ec0.jpg" }, { "if": { @@ -27809,7 +27823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anpost-a056d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anpost-a056d1.jpg" }, { "if": { @@ -27823,7 +27837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australiapost-536bec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/australiapost-536bec.jpg" }, { "if": { @@ -27837,7 +27851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3a476b-ab1104.png" + "then": "https://data.mapcomplete.org/nsi//logos/3a476b-ab1104.png" }, { "if": { @@ -27854,7 +27868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postemaroc-efee55.png" + "then": "https://data.mapcomplete.org/nsi//logos/postemaroc-efee55.png" }, { "if": { @@ -27868,7 +27882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bhposta-736d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bhposta-736d07.jpg" }, { "if": { @@ -27886,7 +27900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluedartexpress-45da12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluedartexpress-45da12.jpg" }, { "if": { @@ -27900,7 +27914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bpost-1b232e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bpost-1b232e.jpg" }, { "if": { @@ -27914,7 +27928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadapost-17c815.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadapost-17c815.jpg" }, { "if": { @@ -27928,7 +27942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cargus-08dfb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cargus-08dfb1.jpg" }, { "if": { @@ -27942,7 +27956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskapostasp-aa9270.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceskapostasp-aa9270.png" }, { "if": { @@ -27956,7 +27970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chilexpress-3d11d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chilexpress-3d11d9.jpg" }, { "if": { @@ -27970,22 +27984,22 @@ } ] }, - "then": "./assets/data/nsi/logos/chronopost-8f3efe.png" + "then": "https://data.mapcomplete.org/nsi//logos/chronopost-8f3efe.png" }, { "if": { "and": [ "amenity=post_office", - "official_name=Coordinadora Mercantil S.A.", { "or": [ + "official_name=Coordinadora Mercantil S.A.", "operator=Coordinadora", "operator:wikidata=Q109252162" ] } ] }, - "then": "./assets/data/nsi/logos/coordinadora-754eb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coordinadora-754eb3.jpg" }, { "if": { @@ -27999,7 +28013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correoargentino-debce4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correoargentino-debce4.jpg" }, { "if": { @@ -28013,7 +28027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correos-e6c145.png" + "then": "https://data.mapcomplete.org/nsi//logos/correos-e6c145.png" }, { "if": { @@ -28027,7 +28041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correosdechile-3d11d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correosdechile-3d11d9.jpg" }, { "if": { @@ -28041,7 +28055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correosdecostarica-4fea3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correosdecostarica-4fea3e.jpg" }, { "if": { @@ -28055,7 +28069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correosdecuba-e577ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correosdecuba-e577ef.jpg" }, { "if": { @@ -28070,7 +28084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/correosdemexico-0b19e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/correosdemexico-0b19e1.jpg" }, { "if": { @@ -28084,7 +28098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctt-13f722.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ctt-13f722.svg" }, { "if": { @@ -28098,7 +28112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctt-5666eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/ctt-5666eb.png" }, { "if": { @@ -28114,7 +28128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delhivery-45da12.png" + "then": "https://data.mapcomplete.org/nsi//logos/delhivery-45da12.png" }, { "if": { @@ -28130,7 +28144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delivery-970b0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delivery-970b0c.jpg" }, { "if": { @@ -28144,7 +28158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschepost-8c0db3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschepost-8c0db3.jpg" }, { "if": { @@ -28163,7 +28177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diepost-62a267.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diepost-62a267.jpg" }, { "if": { @@ -28177,7 +28191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/domesa-de64fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/domesa-de64fe.svg" }, { "if": { @@ -28191,7 +28205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eestipost-df7ea1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eestipost-df7ea1.jpg" }, { "if": { @@ -28205,7 +28219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emiratespost-c6764e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emiratespost-c6764e.jpg" }, { "if": { @@ -28219,7 +28233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fancourier-08dfb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fancourier-08dfb1.jpg" }, { "if": { @@ -28233,7 +28247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generallogisticssystemsgermany-8c0db3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generallogisticssystemsgermany-8c0db3.jpg" }, { "if": { @@ -28247,7 +28261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ghanapost-aa5324.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ghanapost-aa5324.jpg" }, { "if": { @@ -28261,7 +28275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gls-91a3cc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gls-91a3cc.svg" }, { "if": { @@ -28275,7 +28289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guernseypost-36d418.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guernseypost-36d418.jpg" }, { "if": { @@ -28291,7 +28305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haypost-1aee57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haypost-1aee57.jpg" }, { "if": { @@ -28305,7 +28319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hermes-8c0db3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hermes-8c0db3.jpg" }, { "if": { @@ -28319,7 +28333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hrvatskaposta-745f1e.png" + "then": "https://data.mapcomplete.org/nsi//logos/hrvatskaposta-745f1e.png" }, { "if": { @@ -28333,7 +28347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hrvatskapostamostar-736d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hrvatskapostamostar-736d07.jpg" }, { "if": { @@ -28347,7 +28361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indiapost-45da12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indiapost-45da12.jpg" }, { "if": { @@ -28361,7 +28375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inpost-504b8a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/inpost-504b8a.svg" }, { "if": { @@ -28375,7 +28389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/islandspostur-b0beaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/islandspostur-b0beaf.png" }, { "if": { @@ -28391,7 +28405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isleofmanpostoffice-9ad038.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isleofmanpostoffice-9ad038.jpg" }, { "if": { @@ -28405,7 +28419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jandtexpress-b78fda.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jandtexpress-b78fda.jpg" }, { "if": { @@ -28419,7 +28433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseypost-984d36.png" + "then": "https://data.mapcomplete.org/nsi//logos/jerseypost-984d36.png" }, { "if": { @@ -28433,7 +28447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/justin-970b0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/justin-970b0c.png" }, { "if": { @@ -28447,7 +28461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laposte-8f3efe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laposte-8f3efe.jpg" }, { "if": { @@ -28461,7 +28475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapostemonaco-65cd93.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lapostemonaco-65cd93.svg" }, { "if": { @@ -28477,7 +28491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lapostetunisienne-fea313.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lapostetunisienne-fea313.jpg" }, { "if": { @@ -28491,7 +28505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/latvijaspasts-52791c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/latvijaspasts-52791c.jpg" }, { "if": { @@ -28505,7 +28519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lbc-7e1eed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lbc-7e1eed.svg" }, { "if": { @@ -28519,7 +28533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liechtensteinischepost-55a398.svg" + "then": "https://data.mapcomplete.org/nsi//logos/liechtensteinischepost-55a398.svg" }, { "if": { @@ -28533,7 +28547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lietuvospastas-738531.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lietuvospastas-738531.jpg" }, { "if": { @@ -28547,7 +28561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mace-2ecbba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mace-2ecbba.jpg" }, { "if": { @@ -28561,7 +28575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magyarposta-14f2b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magyarposta-14f2b7.jpg" }, { "if": { @@ -28575,7 +28589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maltapost-ed0160.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maltapost-ed0160.jpg" }, { "if": { @@ -28589,7 +28603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meest-970b0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meest-970b0c.jpg" }, { "if": { @@ -28603,7 +28617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mngkargo-56f07f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mngkargo-56f07f.svg" }, { "if": { @@ -28617,7 +28631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mrw-0a445b.png" + "then": "https://data.mapcomplete.org/nsi//logos/mrw-0a445b.png" }, { "if": { @@ -28631,7 +28645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newzealandpost-ff95ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/newzealandpost-ff95ef.png" }, { "if": { @@ -28645,7 +28659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novaposhta-48c390.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novaposhta-48c390.jpg" }, { "if": { @@ -28659,7 +28673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novapost-fa5273.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novapost-fa5273.jpg" }, { "if": { @@ -28673,7 +28687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omniva-df7ea1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omniva-df7ea1.jpg" }, { "if": { @@ -28688,7 +28702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/officedespostesettelecommunicationsdepolynesiefrancaise-d4df4a.png" + "then": "https://data.mapcomplete.org/nsi//logos/officedespostesettelecommunicationsdepolynesiefrancaise-d4df4a.png" }, { "if": { @@ -28703,7 +28717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/organizacioncoordinadoraargentina-debce4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/organizacioncoordinadoraargentina-debce4.svg" }, { "if": { @@ -28717,7 +28731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterreichischepostag-bb5e7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterreichischepostag-bb5e7f.jpg" }, { "if": { @@ -28731,7 +28745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pakistanpost-87c3b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pakistanpost-87c3b9.jpg" }, { "if": { @@ -28745,22 +28759,22 @@ } ] }, - "then": "./assets/data/nsi/logos/palestinepost-c8471a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palestinepost-c8471a.jpg" }, { "if": { "and": [ "amenity=post_office", - "official_name=Philippine Postal Corporation", { "or": [ + "official_name=Philippine Postal Corporation", "operator=PHLPost", "operator:wikidata=Q1406037" ] } ] }, - "then": "./assets/data/nsi/logos/phlpost-7e1eed.png" + "then": "https://data.mapcomplete.org/nsi//logos/phlpost-7e1eed.png" }, { "if": { @@ -28775,7 +28789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posindonesia-ab1265.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/posindonesia-ab1265.jpg" }, { "if": { @@ -28789,7 +28803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posmalaysia-1e070a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/posmalaysia-1e070a.jpg" }, { "if": { @@ -28803,7 +28817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postaruba-2b7fe6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postaruba-2b7fe6.jpg" }, { "if": { @@ -28817,7 +28831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postdanmark-6dc1f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/postdanmark-6dc1f9.png" }, { "if": { @@ -28831,7 +28845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postluxembourg-be325d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postluxembourg-be325d.jpg" }, { "if": { @@ -28845,7 +28859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posta-c7bca3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/posta-c7bca3.svg" }, { "if": { @@ -28859,7 +28873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postacrnegore-96ab16.png" + "then": "https://data.mapcomplete.org/nsi//logos/postacrnegore-96ab16.png" }, { "if": { @@ -28873,7 +28887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postaekosoves-9e2709.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postaekosoves-9e2709.jpg" }, { "if": { @@ -28887,7 +28901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postamoldovei-48c390.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postamoldovei-48c390.jpg" }, { "if": { @@ -28901,7 +28915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postaromana-08dfb1.png" + "then": "https://data.mapcomplete.org/nsi//logos/postaromana-08dfb1.png" }, { "if": { @@ -28915,7 +28929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postashqiptare-6d9f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postashqiptare-6d9f6a.jpg" }, { "if": { @@ -28929,7 +28943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postaslovenije-0b013e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postaslovenije-0b013e.jpg" }, { "if": { @@ -28943,7 +28957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postalannex-c1ddbe.png" + "then": "https://data.mapcomplete.org/nsi//logos/postalannex-c1ddbe.png" }, { "if": { @@ -28957,7 +28971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postcon-8c0db3.png" + "then": "https://data.mapcomplete.org/nsi//logos/postcon-8c0db3.png" }, { "if": { @@ -28971,7 +28985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posteitaliane-b5464b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/posteitaliane-b5464b.jpg" }, { "if": { @@ -28985,7 +28999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postesanmarino-b5563e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postesanmarino-b5563e.jpg" }, { "if": { @@ -28999,7 +29013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postesrpske-736d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postesrpske-736d07.jpg" }, { "if": { @@ -29013,7 +29027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postescanada-525cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postescanada-525cac.jpg" }, { "if": { @@ -29027,7 +29041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/posti-7504a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/posti-7504a1.png" }, { "if": { @@ -29041,7 +29055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postnl-b4b2c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postnl-b4b2c0.jpg" }, { "if": { @@ -29055,7 +29069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postnord-85beed.png" + "then": "https://data.mapcomplete.org/nsi//logos/postnord-85beed.png" }, { "if": { @@ -29069,7 +29083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ptt-56f07f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ptt-56f07f.jpg" }, { "if": { @@ -29083,7 +29097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serpost-41842d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/serpost-41842d.jpg" }, { "if": { @@ -29097,7 +29111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servientrega-754eb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servientrega-754eb3.jpg" }, { "if": { @@ -29111,7 +29125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shoppersdrugmart-81497e.png" + "then": "https://data.mapcomplete.org/nsi//logos/shoppersdrugmart-81497e.png" }, { "if": { @@ -29125,7 +29139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/singaporepost-5f2b0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/singaporepost-5f2b0a.jpg" }, { "if": { @@ -29139,7 +29153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskaposta-e92a45.png" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskaposta-e92a45.png" }, { "if": { @@ -29154,7 +29168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southafricanpostoffice-dec673.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southafricanpostoffice-dec673.jpg" }, { "if": { @@ -29170,7 +29184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tcc-754eb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tcc-754eb3.jpg" }, { "if": { @@ -29184,7 +29198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tealca-de64fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/tealca-de64fe.png" }, { "if": { @@ -29200,7 +29214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thailandpost-a61dae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thailandpost-a61dae.jpg" }, { "if": { @@ -29214,7 +29228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tnt-91a3cc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tnt-91a3cc.svg" }, { "if": { @@ -29228,7 +29242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ttpost-a1fd14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ttpost-a1fd14.jpg" }, { "if": { @@ -29242,7 +29256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tusass-acd619.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tusass-acd619.jpg" }, { "if": { @@ -29258,7 +29272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatespostalservice-c1ddbe.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatespostalservice-c1ddbe.png" }, { "if": { @@ -29272,7 +29286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uzpost-9811e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uzpost-9811e4.jpg" }, { "if": { @@ -29286,7 +29300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vietnampost-c0dded.png" + "then": "https://data.mapcomplete.org/nsi//logos/vietnampost-c0dded.png" }, { "if": { @@ -29300,7 +29314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volg-62a267.svg" + "then": "https://data.mapcomplete.org/nsi//logos/volg-62a267.svg" }, { "if": { @@ -29314,7 +29328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yurticikargo-56f07f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yurticikargo-56f07f.jpg" }, { "if": { @@ -29328,7 +29342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zasilkovna-aa9270.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zasilkovna-aa9270.jpg" }, { "if": { @@ -29342,7 +29356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoom-de64fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/zoom-de64fe.png" }, { "if": { @@ -29359,7 +29373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hellenicpost-f0c950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hellenicpost-f0c950.jpg" }, { "if": { @@ -29376,7 +29390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belposhta-4d7a9f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belposhta-4d7a9f.jpg" }, { "if": { @@ -29392,7 +29406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnistriapost-48c390.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnistriapost-48c390.svg" }, { "if": { @@ -29409,7 +29423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kazpost-58ab80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kazpost-58ab80.jpg" }, { "if": { @@ -29423,7 +29437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7fe185-34211e.png" + "then": "https://data.mapcomplete.org/nsi//logos/7fe185-34211e.png" }, { "if": { @@ -29437,7 +29451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/530f2c-970b0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/530f2c-970b0c.jpg" }, { "if": { @@ -29453,7 +29467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postofcrimea-98f61a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postofcrimea-98f61a.jpg" }, { "if": { @@ -29467,7 +29481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/6898b3-5789f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/6898b3-5789f0.png" }, { "if": { @@ -29481,7 +29495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/848860-6e4d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/848860-6e4d23.jpg" }, { "if": { @@ -29498,7 +29512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrposhta-970b0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ukrposhta-970b0c.png" }, { "if": { @@ -29528,7 +29542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/georgianpost-791091.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/georgianpost-791091.jpg" }, { "if": { @@ -29544,7 +29558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/israelpostalcompany-74bc74.png" + "then": "https://data.mapcomplete.org/nsi//logos/israelpostalcompany-74bc74.png" }, { "if": { @@ -29558,7 +29572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/df1b33-67dc37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/df1b33-67dc37.jpg" }, { "if": { @@ -29574,7 +29588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iraqpost-371d69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iraqpost-371d69.jpg" }, { "if": { @@ -29588,7 +29602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/66f694-67dc37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/66f694-67dc37.jpg" }, { "if": { @@ -29604,7 +29618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koreapost-168da6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koreapost-168da6.jpg" }, { "if": { @@ -29620,7 +29634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yamatotransport-0af292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yamatotransport-0af292.jpg" }, { "if": { @@ -29641,7 +29655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chunghwapost-feb726.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chunghwapost-feb726.jpg" }, { "if": { @@ -29657,7 +29671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sagawaexpress-0af292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sagawaexpress-0af292.jpg" }, { "if": { @@ -29676,7 +29690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/japanpost-0af292.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/japanpost-0af292.jpg" }, { "if": { @@ -29692,7 +29706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongpost-c4c3b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongpost-c4c3b4.png" }, { "if": { @@ -29707,7 +29721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamadepartmentofcorrections-d7c9d5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamadepartmentofcorrections-d7c9d5.svg" }, { "if": { @@ -29723,7 +29737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonadepartmentofcorrectionsrehabilitationandreentry-767c1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arizonadepartmentofcorrectionsrehabilitationandreentry-767c1c.jpg" }, { "if": { @@ -29738,7 +29752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasdepartmentofcorrections-079086.png" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasdepartmentofcorrections-079086.png" }, { "if": { @@ -29753,7 +29767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bermudadepartmentofcorrections-345f67.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bermudadepartmentofcorrections-345f67.jpg" }, { "if": { @@ -29769,7 +29783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauofjailmanagementandpenology-9fb693.png" + "then": "https://data.mapcomplete.org/nsi//logos/bureauofjailmanagementandpenology-9fb693.png" }, { "if": { @@ -29784,7 +29798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofcorrectionsandrehabilitation-8f7b9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofcorrectionsandrehabilitation-8f7b9e.jpg" }, { "if": { @@ -29799,7 +29813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corecivic-6535ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/corecivic-6535ca.png" }, { "if": { @@ -29816,7 +29830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofcorrections-1f32ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofcorrections-1f32ed.jpg" }, { "if": { @@ -29832,7 +29846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dienstjustitieleinrichtingen-3237b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/dienstjustitieleinrichtingen-3237b8.png" }, { "if": { @@ -29847,7 +29861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/directiondeladministrationpenitentiaire-3e48e3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/directiondeladministrationpenitentiaire-3e48e3.svg" }, { "if": { @@ -29862,7 +29876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federalbureauofprisons-6535ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/federalbureauofprisons-6535ca.jpg" }, { "if": { @@ -29877,7 +29891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridadepartmentofcorrections-59f3bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridadepartmentofcorrections-59f3bf.png" }, { "if": { @@ -29892,7 +29906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/georgiadepartmentofcorrections-c92cb0.png" + "then": "https://data.mapcomplete.org/nsi//logos/georgiadepartmentofcorrections-c92cb0.png" }, { "if": { @@ -29907,7 +29921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hismajestysprisonservice-900d21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hismajestysprisonservice-900d21.jpg" }, { "if": { @@ -29923,7 +29937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahodepartmentofcorrection-e64a58.png" + "then": "https://data.mapcomplete.org/nsi//logos/idahodepartmentofcorrection-e64a58.png" }, { "if": { @@ -29939,7 +29953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoisdepartmentofcorrections-ab530c.png" + "then": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentofcorrections-ab530c.png" }, { "if": { @@ -29954,7 +29968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianadepartmentofcorrection-910de5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianadepartmentofcorrection-910de5.jpg" }, { "if": { @@ -29969,7 +29983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutonacionalpenitenciario-e9927b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutonacionalpenitenciario-e9927b.jpg" }, { "if": { @@ -29984,7 +29998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishprisonservice-324cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishprisonservice-324cac.jpg" }, { "if": { @@ -29999,7 +30013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckydepartmentofcorrections-1153aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckydepartmentofcorrections-1153aa.png" }, { "if": { @@ -30014,7 +30028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kriminalvarden-363fe4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kriminalvarden-363fe4.svg" }, { "if": { @@ -30030,7 +30044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigandepartmentofcorrections-871ab4.png" + "then": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofcorrections-871ab4.png" }, { "if": { @@ -30045,7 +30059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodejusticiaypaz-e5ea62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodejusticiaypaz-e5ea62.jpg" }, { "if": { @@ -30060,7 +30074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerodellagiustizia-8d566d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerodellagiustizia-8d566d.jpg" }, { "if": { @@ -30075,7 +30089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montanadepartmentofcorrections-17b664.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montanadepartmentofcorrections-17b664.jpg" }, { "if": { @@ -30091,7 +30105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nevadadepartmentofcorrections-fe3af9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nevadadepartmentofcorrections-fe3af9.jpg" }, { "if": { @@ -30106,7 +30120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatedepartmentofcorrectionsandcommunitysupervision-25d617.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofcorrectionsandcommunitysupervision-25d617.jpg" }, { "if": { @@ -30121,7 +30135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiodepartmentofrehabilitationandcorrection-367936.png" + "then": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofrehabilitationandcorrection-367936.png" }, { "if": { @@ -30136,7 +30150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregondepartmentofcorrections-95714e.png" + "then": "https://data.mapcomplete.org/nsi//logos/oregondepartmentofcorrections-95714e.png" }, { "if": { @@ -30151,7 +30165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pennsylvaniadepartmentofcorrections-2d4209.png" + "then": "https://data.mapcomplete.org/nsi//logos/pennsylvaniadepartmentofcorrections-2d4209.png" }, { "if": { @@ -30166,7 +30180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishprisonservice-7a6ad4.png" + "then": "https://data.mapcomplete.org/nsi//logos/scottishprisonservice-7a6ad4.png" }, { "if": { @@ -30181,7 +30195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicepublicfederaljustice-d13b57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicepublicfederaljustice-d13b57.jpg" }, { "if": { @@ -30196,7 +30210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseedepartmentofcorrection-438112.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseedepartmentofcorrection-438112.jpg" }, { "if": { @@ -30211,7 +30225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasdepartmentofcriminaljustice-024da5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasdepartmentofcriminaljustice-024da5.jpg" }, { "if": { @@ -30227,7 +30241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/utahdepartmentofcorrections-213f01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/utahdepartmentofcorrections-213f01.jpg" }, { "if": { @@ -30242,7 +30256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiadepartmentofcorrections-03430d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentofcorrections-03430d.jpg" }, { "if": { @@ -30257,7 +30271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonstatedepartmentofcorrections-c6fe94.png" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonstatedepartmentofcorrections-c6fe94.png" }, { "if": { @@ -30272,7 +30286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsindepartmentofcorrections-d538ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentofcorrections-d538ac.jpg" }, { "if": { @@ -30287,7 +30301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zborvazenskejajusticnejstraze-c449b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/zborvazenskejajusticnejstraze-c449b6.png" }, { "if": { @@ -30301,7 +30315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aamps-94eaae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aamps-94eaae.jpg" }, { "if": { @@ -30315,7 +30329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aberdeenshirecouncil-caa3da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aberdeenshirecouncil-caa3da.jpg" }, { "if": { @@ -30330,7 +30344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abfallwirtschaftdithmarschen-079fb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftdithmarschen-079fb7.jpg" }, { "if": { @@ -30345,7 +30359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abfallwirtschaftsbetriebmunchen-4fb837.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsbetriebmunchen-4fb837.jpg" }, { "if": { @@ -30360,7 +30374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abfallwirtschaftsbetriebekoln-15b788.png" + "then": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsbetriebekoln-15b788.png" }, { "if": { @@ -30375,7 +30389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abfallwirtschaftsbetriebemunster-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsbetriebemunster-15b788.jpg" }, { "if": { @@ -30390,7 +30404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abfallwirtschaftsgesellschaftbassum-7d4127.png" + "then": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsgesellschaftbassum-7d4127.png" }, { "if": { @@ -30405,7 +30419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abfallwirtschaftsgesellschaftwuppertal-15b788.svg" + "then": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsgesellschaftwuppertal-15b788.svg" }, { "if": { @@ -30419,7 +30433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afvalstoffendienst-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/afvalstoffendienst-fcd61b.jpg" }, { "if": { @@ -30433,7 +30447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ahe-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ahe-15b788.jpg" }, { "if": { @@ -30447,7 +30461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdebarcelona-04814d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-04814d.svg" }, { "if": { @@ -30461,7 +30475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktionhoffnung-6737d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/aktionhoffnung-6737d9.png" }, { "if": { @@ -30477,7 +30491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamagoodwillindustries-ba8eee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamagoodwillindustries-ba8eee.jpg" }, { "if": { @@ -30491,7 +30505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alba-6737d9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alba-6737d9.svg" }, { "if": { @@ -30505,7 +30519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alphenaandenrijn-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alphenaandenrijn-fcd61b.jpg" }, { "if": { @@ -30519,7 +30533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amarsul-9cd697.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amarsul-9cd697.jpg" }, { "if": { @@ -30533,7 +30547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apivet-2b4e4a.png" + "then": "https://data.mapcomplete.org/nsi//logos/apivet-2b4e4a.png" }, { "if": { @@ -30547,7 +30561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asekol-a83183.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asekol-a83183.jpg" }, { "if": { @@ -30561,7 +30575,21 @@ } ] }, - "then": "./assets/data/nsi/logos/avalex-fcd61b.png" + "then": "https://data.mapcomplete.org/nsi//logos/avalex-fcd61b.png" + }, + { + "if": { + "and": [ + "amenity=recycling", + { + "or": [ + "operator=AVE", + "operator:wikidata=Q67808199" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/ave-778b5b.jpg" }, { "if": { @@ -30575,7 +30603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avea-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avea-15b788.jpg" }, { "if": { @@ -30589,7 +30617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avri-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avri-fcd61b.jpg" }, { "if": { @@ -30603,7 +30631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/awista-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/awista-15b788.jpg" }, { "if": { @@ -30617,7 +30645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/awuoberhavel-5a52cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/awuoberhavel-5a52cc.jpg" }, { "if": { @@ -30631,7 +30659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodealbacete-49dabd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodealbacete-49dabd.svg" }, { "if": { @@ -30645,7 +30673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemadrid-379168.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-379168.png" }, { "if": { @@ -30659,7 +30687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bartowcounty-bddb39.png" + "then": "https://data.mapcomplete.org/nsi//logos/bartowcounty-bddb39.png" }, { "if": { @@ -30674,7 +30702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerstadtreinigungsbetriebe-10028e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerstadtreinigungsbetriebe-10028e.jpg" }, { "if": { @@ -30688,7 +30716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bethel-6737d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bethel-6737d9.jpg" }, { "if": { @@ -30702,7 +30730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biltagarbi-a71053.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biltagarbi-a71053.jpg" }, { "if": { @@ -30716,7 +30744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bir-3e1966.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bir-3e1966.jpg" }, { "if": { @@ -30731,7 +30759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bowlinggreenstateuniversity-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-5e5980.jpg" }, { "if": { @@ -30745,7 +30773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightonandhovecitycouncil-961c9e.png" + "then": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-961c9e.png" }, { "if": { @@ -30759,7 +30787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishheartfoundation-79fa96.png" + "then": "https://data.mapcomplete.org/nsi//logos/britishheartfoundation-79fa96.png" }, { "if": { @@ -30773,7 +30801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bruxellesenvironnementleefmilieubrussel-980be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bruxellesenvironnementleefmilieubrussel-980be7.jpg" }, { "if": { @@ -30787,7 +30815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camaramunicipaldelisboa-bcce0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camaramunicipaldelisboa-bcce0d.jpg" }, { "if": { @@ -30801,7 +30829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerparcs-6ff6f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerparcs-6ff6f4.jpg" }, { "if": { @@ -30815,7 +30843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circulus-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/circulus-fcd61b.jpg" }, { "if": { @@ -30829,7 +30857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circulusberkel-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/circulusberkel-fcd61b.jpg" }, { "if": { @@ -30843,7 +30871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citeo-59e4c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citeo-59e4c1.jpg" }, { "if": { @@ -30857,7 +30885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdenton-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdenton-5c5465.jpg" }, { "if": { @@ -30871,7 +30899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofedinburghcouncil-9fa0da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofedinburghcouncil-9fa0da.jpg" }, { "if": { @@ -30885,7 +30913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflawrence-d780f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflawrence-d780f0.jpg" }, { "if": { @@ -30899,7 +30927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmodesto-2532c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmodesto-2532c6.png" }, { "if": { @@ -30913,7 +30941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clermontauvergnemetropole-51667b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/clermontauvergnemetropole-51667b.svg" }, { "if": { @@ -30927,7 +30955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clissonsevreetmaineagglo-2b4e4a.png" + "then": "https://data.mapcomplete.org/nsi//logos/clissonsevreetmaineagglo-2b4e4a.png" }, { "if": { @@ -30941,7 +30969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cogersa-49dabd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cogersa-49dabd.jpg" }, { "if": { @@ -30955,7 +30983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communautedagglomerationducotentin-cc4bea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communautedagglomerationducotentin-cc4bea.jpg" }, { "if": { @@ -30969,7 +30997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communautedagglomerationdupaysbasque-a71053.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communautedagglomerationdupaysbasque-a71053.jpg" }, { "if": { @@ -30983,7 +31011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communauteurbainedugrandreims-03cd48.png" + "then": "https://data.mapcomplete.org/nsi//logos/communauteurbainedugrandreims-03cd48.png" }, { "if": { @@ -30997,7 +31025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/concellodemugardos-49dabd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/concellodemugardos-49dabd.svg" }, { "if": { @@ -31011,7 +31039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-c59bef.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-c59bef.png" }, { "if": { @@ -31025,7 +31053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copavo-51667b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copavo-51667b.jpg" }, { "if": { @@ -31041,7 +31069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corkcountycouncil-42dacd.png" + "then": "https://data.mapcomplete.org/nsi//logos/corkcountycouncil-42dacd.png" }, { "if": { @@ -31055,7 +31083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danskrodekors-67373b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/danskrodekors-67373b.jpg" }, { "if": { @@ -31069,7 +31097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dekringwinkel-980be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dekringwinkel-980be7.jpg" }, { "if": { @@ -31083,7 +31111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denhaag-fcd61b.png" + "then": "https://data.mapcomplete.org/nsi//logos/denhaag-fcd61b.png" }, { "if": { @@ -31097,7 +31125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deswos-6737d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/deswos-6737d9.png" }, { "if": { @@ -31112,7 +31140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschelebensrettungsgesellschaft-6737d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschelebensrettungsgesellschaft-6737d9.png" }, { "if": { @@ -31126,7 +31154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devoncountycouncil-ad06a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/devoncountycouncil-ad06a1.png" }, { "if": { @@ -31140,7 +31168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diakoniebroumov-778b5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diakoniebroumov-778b5b.jpg" }, { "if": { @@ -31154,7 +31182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diakoniewerkessen-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diakoniewerkessen-15b788.jpg" }, { "if": { @@ -31168,7 +31196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/douarnenezcommunaute-cc247f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/douarnenezcommunaute-cc247f.jpg" }, { "if": { @@ -31182,7 +31210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drkkreisverbandbonnev-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drkkreisverbandbonnev-15b788.jpg" }, { "if": { @@ -31197,7 +31225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durenerservicebetrieb-15b788.png" + "then": "https://data.mapcomplete.org/nsi//logos/durenerservicebetrieb-15b788.png" }, { "if": { @@ -31211,7 +31239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ead-95f31a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ead-95f31a.jpg" }, { "if": { @@ -31227,7 +31255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastersealsgoodwillnorthernrockymountain-9c67a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastersealsgoodwillnorthernrockymountain-9c67a8.png" }, { "if": { @@ -31241,7 +31269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecosystem-59e4c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/ecosystem-59e4c1.png" }, { "if": { @@ -31258,7 +31286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekocharita-d6ea52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekocharita-d6ea52.jpg" }, { "if": { @@ -31273,7 +31301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entsorgungdortmundgmbh-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entsorgungdortmundgmbh-15b788.jpg" }, { "if": { @@ -31289,7 +31317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evansvillegoodwillindustries-b6bf84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evansvillegoodwillindustries-b6bf84.jpg" }, { "if": { @@ -31305,7 +31333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergreengoodwill-0169dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergreengoodwill-0169dc.jpg" }, { "if": { @@ -31319,7 +31347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fifecouncil-9fa0da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fifecouncil-9fa0da.jpg" }, { "if": { @@ -31333,7 +31361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fkf-b316be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fkf-b316be.jpg" }, { "if": { @@ -31348,7 +31376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frankfurterentsorgungsundservicegmbh-95f31a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/frankfurterentsorgungsundservicegmbh-95f31a.svg" }, { "if": { @@ -31362,7 +31390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fretex-3e1966.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fretex-3e1966.jpg" }, { "if": { @@ -31376,7 +31404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/friedensdorfinternational-6737d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/friedensdorfinternational-6737d9.png" }, { "if": { @@ -31390,7 +31418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteamsterdam-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteamsterdam-fcd61b.jpg" }, { "if": { @@ -31404,7 +31432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteassen-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteassen-fcd61b.jpg" }, { "if": { @@ -31418,7 +31446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentegroningen-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentegroningen-fcd61b.jpg" }, { "if": { @@ -31432,7 +31460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenterotterdam-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-fcd61b.jpg" }, { "if": { @@ -31446,7 +31474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteutrechtseheuvelrug-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteutrechtseheuvelrug-fcd61b.jpg" }, { "if": { @@ -31460,7 +31488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentezaanstad-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentezaanstad-fcd61b.jpg" }, { "if": { @@ -31474,7 +31502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentezoetermeer-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentezoetermeer-fcd61b.jpg" }, { "if": { @@ -31488,7 +31516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindebedburghau-15b788.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindebedburghau-15b788.svg" }, { "if": { @@ -31503,7 +31531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gesellschaftimostalbkreisfurabfallbewirtschaftungmbh-fd14c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gesellschaftimostalbkreisfurabfallbewirtschaftungmbh-fd14c2.jpg" }, { "if": { @@ -31517,7 +31545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/giwog-2e00cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/giwog-2e00cf.jpg" }, { "if": { @@ -31531,7 +31559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glasgowcitycouncil-9fa0da.png" + "then": "https://data.mapcomplete.org/nsi//logos/glasgowcitycouncil-9fa0da.png" }, { "if": { @@ -31545,7 +31573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glor-3e1966.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glor-3e1966.jpg" }, { "if": { @@ -31561,7 +31589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillcentralcoast-2532c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillcentralcoast-2532c6.png" }, { "if": { @@ -31577,7 +31605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillcolumbus-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillcolumbus-5e5980.jpg" }, { "if": { @@ -31593,7 +31621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilleastersealsmiamivalley-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsmiamivalley-5e5980.jpg" }, { "if": { @@ -31609,7 +31637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilleastersealsofthegulfcoast-864873.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsofthegulfcoast-864873.png" }, { "if": { @@ -31625,7 +31653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillhawaii-c82776.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillhawaii-c82776.jpg" }, { "if": { @@ -31641,7 +31669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesontariogreatlakes-d16161.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesontariogreatlakes-d16161.png" }, { "if": { @@ -31657,7 +31685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesbigbend-4bf5e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesbigbend-4bf5e5.jpg" }, { "if": { @@ -31673,7 +31701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriescentraltexas-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriescentraltexas-5c5465.jpg" }, { "if": { @@ -31689,7 +31717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofacadiana-f4b3df.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofacadiana-f4b3df.png" }, { "if": { @@ -31705,7 +31733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofakron-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofakron-5e5980.jpg" }, { "if": { @@ -31721,7 +31749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofalaska-346f99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofalaska-346f99.jpg" }, { "if": { @@ -31737,7 +31765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofarkansas-a88323.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofarkansas-a88323.jpg" }, { "if": { @@ -31753,7 +31781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentralandnorthernarizona-6da3a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralandnorthernarizona-6da3a0.png" }, { "if": { @@ -31769,7 +31797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentraleasttexas-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentraleasttexas-5c5465.jpg" }, { "if": { @@ -31785,7 +31813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentralillinois-0dbe3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralillinois-0dbe3f.jpg" }, { "if": { @@ -31801,7 +31829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentralnorthcarolina-ad5db1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralnorthcarolina-ad5db1.jpg" }, { "if": { @@ -31817,7 +31845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentraloklahoma-3efb09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentraloklahoma-3efb09.jpg" }, { "if": { @@ -31833,7 +31861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofeasttexas-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofeasttexas-5c5465.jpg" }, { "if": { @@ -31849,7 +31877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofeasternnorthcarolina-ad5db1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofeasternnorthcarolina-ad5db1.jpg" }, { "if": { @@ -31865,7 +31893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofelpaso-b73102.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofelpaso-b73102.png" }, { "if": { @@ -31881,7 +31909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoferiehuronottawaandsanduskycounties-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoferiehuronottawaandsanduskycounties-5e5980.jpg" }, { "if": { @@ -31897,7 +31925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofgreaterclevelandandeastcentralohio-f79044.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaterclevelandandeastcentralohio-f79044.jpg" }, { "if": { @@ -31913,7 +31941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofgreaterdetroit-faffac.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaterdetroit-faffac.png" }, { "if": { @@ -31929,7 +31957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofgreatergrandrapids-faffac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreatergrandrapids-faffac.jpg" }, { "if": { @@ -31945,7 +31973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofgreaternebraska-6446e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaternebraska-6446e0.jpg" }, { "if": { @@ -31961,7 +31989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofhouston-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofhouston-5c5465.jpg" }, { "if": { @@ -31977,7 +32005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofkansas-d780f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkansas-d780f0.jpg" }, { "if": { @@ -31993,7 +32021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofkentucky-53bd99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkentucky-53bd99.jpg" }, { "if": { @@ -32009,7 +32037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofkyowvaarea-a2cca0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkyowvaarea-a2cca0.jpg" }, { "if": { @@ -32025,7 +32053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoflaneandsouthcoastcounties-f1b1be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoflaneandsouthcoastcounties-f1b1be.jpg" }, { "if": { @@ -32041,7 +32069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmichiana-050bed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmichiana-050bed.jpg" }, { "if": { @@ -32057,7 +32085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmidmichigan-faffac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmidmichigan-faffac.jpg" }, { "if": { @@ -32073,7 +32101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmiddlegeorgiaandthecentralsavannahriverarea-46156d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmiddlegeorgiaandthecentralsavannahriverarea-46156d.jpg" }, { "if": { @@ -32089,7 +32117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmiddletennessee-5c7b72.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmiddletennessee-5c7b72.png" }, { "if": { @@ -32105,7 +32133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmississippi-4702a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmississippi-4702a5.jpg" }, { "if": { @@ -32121,7 +32149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnewmexico-b786f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnewmexico-b786f3.jpg" }, { "if": { @@ -32137,7 +32165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthcentralpennsylvania-a2879a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthcentralpennsylvania-a2879a.jpg" }, { "if": { @@ -32153,7 +32181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthcentralwisconsin-3d1452.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthcentralwisconsin-3d1452.png" }, { "if": { @@ -32169,7 +32197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthflorida-e45d79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthflorida-e45d79.jpg" }, { "if": { @@ -32185,7 +32213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthlouisiana-f4b3df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthlouisiana-f4b3df.jpg" }, { "if": { @@ -32201,7 +32229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnortheastiowa-9b051b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheastiowa-9b051b.jpg" }, { "if": { @@ -32217,7 +32245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnortheasttexas-fd5c62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheasttexas-fd5c62.jpg" }, { "if": { @@ -32233,7 +32261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnortheasternpennsylvania-a2879a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheasternpennsylvania-a2879a.jpg" }, { "if": { @@ -32249,7 +32277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthernmichigan-faffac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthernmichigan-faffac.jpg" }, { "if": { @@ -32265,7 +32293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthwestnorthcarolina-ad5db1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthwestnorthcarolina-ad5db1.jpg" }, { "if": { @@ -32281,7 +32309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthwesttexas-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthwesttexas-5c5465.jpg" }, { "if": { @@ -32297,7 +32325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsaintclaircounty-faffac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsaintclaircounty-faffac.jpg" }, { "if": { @@ -32313,7 +32341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsanantonio-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsanantonio-5c5465.jpg" }, { "if": { @@ -32329,7 +32357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsandiegocounty-2532c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsandiegocounty-2532c6.png" }, { "if": { @@ -32345,7 +32373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsanjoaquinvalley-2532c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsanjoaquinvalley-2532c6.jpg" }, { "if": { @@ -32361,7 +32389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthcentralcalifornia-2532c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthcentralcalifornia-2532c6.jpg" }, { "if": { @@ -32377,7 +32405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthflorida-e45d79.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthflorida-e45d79.png" }, { "if": { @@ -32393,7 +32421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthmississippi-4702a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthmississippi-4702a5.jpg" }, { "if": { @@ -32409,7 +32437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthtexas-5c5465.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthtexas-5c5465.png" }, { "if": { @@ -32425,7 +32453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsoutheasttexasandsouthwestlouisiana-868f8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasttexasandsouthwestlouisiana-868f8d.jpg" }, { "if": { @@ -32441,7 +32469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsoutheasternmichigan-faffac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasternmichigan-faffac.jpg" }, { "if": { @@ -32457,7 +32485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsoutheasternwisconsinandmetropolitanchicago-2f2732.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasternwisconsinandmetropolitanchicago-2f2732.jpg" }, { "if": { @@ -32473,7 +32501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthernarizona-6da3a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthernarizona-6da3a0.jpg" }, { "if": { @@ -32489,7 +32517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthernnewjerseyandphiladelphia-3d3b8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthernnewjerseyandphiladelphia-3d3b8b.jpg" }, { "if": { @@ -32505,7 +32533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthwestflorida-e45d79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwestflorida-e45d79.jpg" }, { "if": { @@ -32521,7 +32549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthwestoklahomaandnorthtexas-fd5c62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwestoklahomaandnorthtexas-fd5c62.jpg" }, { "if": { @@ -32537,7 +32565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthwesternmichigan-faffac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwesternmichigan-faffac.jpg" }, { "if": { @@ -32553,7 +32581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoftenneva-527c10.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftenneva-527c10.jpg" }, { "if": { @@ -32569,7 +32597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoftheberkshiresandsouthernvermont-02efc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftheberkshiresandsouthernvermont-02efc9.jpg" }, { "if": { @@ -32585,7 +32613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthechesapeake-00ca8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthechesapeake-00ca8a.jpg" }, { "if": { @@ -32601,7 +32629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthecolumbia-f5a3ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthecolumbia-f5a3ef.png" }, { "if": { @@ -32617,7 +32645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthecolumbiawillamette-f5a3ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthecolumbiawillamette-f5a3ef.jpg" }, { "if": { @@ -32633,7 +32661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthegreaterchattanoogaarea-6a894b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthegreaterchattanoogaarea-6a894b.jpg" }, { "if": { @@ -32649,7 +32677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoftheinlandnorthwest-10e8a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftheinlandnorthwest-10e8a5.jpg" }, { "if": { @@ -32665,7 +32693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthesouthernpiedmont-25b0e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthesouthernpiedmont-25b0e7.jpg" }, { "if": { @@ -32681,7 +32709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthesummit-c41e2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthesummit-c41e2f.jpg" }, { "if": { @@ -32697,7 +32725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthevalleys-68a1e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthevalleys-68a1e2.png" }, { "if": { @@ -32713,7 +32741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoftulsa-262734.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftulsa-262734.jpg" }, { "if": { @@ -32729,7 +32757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofupstatemidlandssouthcarolina-66147f.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofupstatemidlandssouthcarolina-66147f.png" }, { "if": { @@ -32745,7 +32773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofwayneandholmescounties-5e5980.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwayneandholmescounties-5e5980.png" }, { "if": { @@ -32761,7 +32789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofwestmichigan-faffac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwestmichigan-faffac.jpg" }, { "if": { @@ -32777,7 +32805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofwyoming-d1801d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwyoming-d1801d.jpg" }, { "if": { @@ -32793,7 +32821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofzanesville-f79044.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofzanesville-f79044.jpg" }, { "if": { @@ -32809,7 +32837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesservingsoutheastnebraska-6446e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesservingsoutheastnebraska-6446e0.png" }, { "if": { @@ -32825,7 +32853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriessuncoast-e45d79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriessuncoast-e45d79.jpg" }, { "if": { @@ -32841,7 +32869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesknoxville-5c7b72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesknoxville-5c7b72.jpg" }, { "if": { @@ -32857,7 +32885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillkeystonearea-a2879a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillkeystonearea-a2879a.jpg" }, { "if": { @@ -32873,7 +32901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillmanasota-e45d79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillmanasota-e45d79.jpg" }, { "if": { @@ -32889,7 +32917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillnorthcentraltexas-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillnorthcentraltexas-5c5465.jpg" }, { "if": { @@ -32905,7 +32933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthernnewengland-b5c663.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthernnewengland-b5c663.png" }, { "if": { @@ -32921,7 +32949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillnynj-ed1d24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillnynj-ed1d24.jpg" }, { "if": { @@ -32937,7 +32965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofcentralandsouthernindiana-827bef.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofcentralandsouthernindiana-827bef.png" }, { "if": { @@ -32953,7 +32981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofcentralandcoastalvirginia-68a1e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofcentralandcoastalvirginia-68a1e2.jpg" }, { "if": { @@ -32969,7 +32997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofcolorado-9180d8.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofcolorado-9180d8.png" }, { "if": { @@ -32985,7 +33013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofgreaterwashington-be3266.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofgreaterwashington-be3266.png" }, { "if": { @@ -33001,7 +33029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofnorthcentralwestvirginia-c41e2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthcentralwestvirginia-c41e2f.jpg" }, { "if": { @@ -33017,7 +33045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofnorthgeorgia-bddb39.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthgeorgia-bddb39.png" }, { "if": { @@ -33033,7 +33061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofnorthernillinois-2f2732.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthernillinois-2f2732.jpg" }, { "if": { @@ -33049,7 +33077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofnorthernwisconsinanduppermichigan-0c3cc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthernwisconsinanduppermichigan-0c3cc5.jpg" }, { "if": { @@ -33065,7 +33093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilloforangecounty-392603.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilloforangecounty-392603.jpg" }, { "if": { @@ -33081,7 +33109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsiliconvalley-2532c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsiliconvalley-2532c6.jpg" }, { "if": { @@ -33097,7 +33125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthcentralohio-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthcentralohio-5e5980.jpg" }, { "if": { @@ -33113,7 +33141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthcentralwisconsin-3d1452.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthcentralwisconsin-3d1452.jpg" }, { "if": { @@ -33129,7 +33157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthernnevada-c52770.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthernnevada-c52770.jpg" }, { "if": { @@ -33145,7 +33173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthernnewengland-93573f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthernnewengland-93573f.jpg" }, { "if": { @@ -33161,7 +33189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthwesternpennsylvania-a2879a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthwesternpennsylvania-a2879a.jpg" }, { "if": { @@ -33177,7 +33205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofthefingerlakes-e1a32f.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofthefingerlakes-e1a32f.png" }, { "if": { @@ -33193,7 +33221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofthegreatplains-de5c63.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofthegreatplains-de5c63.png" }, { "if": { @@ -33209,7 +33237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilloftheheartland-078386.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilloftheheartland-078386.jpg" }, { "if": { @@ -33225,7 +33253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilloftheolympicsandrainierregion-0169dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilloftheolympicsandrainierregion-0169dc.png" }, { "if": { @@ -33241,7 +33269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofthesouthernalleghenies-a2879a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofthesouthernalleghenies-a2879a.jpg" }, { "if": { @@ -33257,7 +33285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofwesternandnorthernconnecticut-dbc5ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternandnorthernconnecticut-dbc5ec.jpg" }, { "if": { @@ -33273,7 +33301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofwesternmissouriandeasternkansas-a67e1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternmissouriandeasternkansas-a67e1b.jpg" }, { "if": { @@ -33289,7 +33317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofwesternnewyork-e1a32f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternnewyork-e1a32f.jpg" }, { "if": { @@ -33305,7 +33333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillrappahannock-68a1e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillrappahannock-68a1e2.jpg" }, { "if": { @@ -33321,7 +33349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillredwoodempire-2532c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillredwoodempire-2532c6.jpg" }, { "if": { @@ -33337,7 +33365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillsacramentovalleyandnorthernnevada-a122c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillsacramentovalleyandnorthernnevada-a122c5.png" }, { "if": { @@ -33353,7 +33381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillservingeasternnebraskaandsouthwestiowa-fa4fae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillservingeasternnebraskaandsouthwestiowa-fa4fae.jpg" }, { "if": { @@ -33369,7 +33397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillservinglorainerieandhuroncounties-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillservinglorainerieandhuroncounties-5e5980.jpg" }, { "if": { @@ -33385,7 +33413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsanfranciscobay-2532c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsanfranciscobay-2532c6.jpg" }, { "if": { @@ -33401,7 +33429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillsoutheastgeorgia-bddb39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillsoutheastgeorgia-bddb39.jpg" }, { "if": { @@ -33417,7 +33445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillsoutherncalifornia-2532c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillsoutherncalifornia-2532c6.jpg" }, { "if": { @@ -33433,7 +33461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillsouthernlosangelescounty-2532c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillsouthernlosangelescounty-2532c6.png" }, { "if": { @@ -33449,7 +33477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofventuraandsantabarbaracounties-2532c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofventuraandsantabarbaracounties-2532c6.jpg" }, { "if": { @@ -33465,7 +33493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillwesttexas-5c5465.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillwesttexas-5c5465.png" }, { "if": { @@ -33481,7 +33509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilleastersealsminnesota-a13c05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsminnesota-a13c05.jpg" }, { "if": { @@ -33496,7 +33524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gottingerentsorgungsbetriebe-7d4127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gottingerentsorgungsbetriebe-7d4127.jpg" }, { "if": { @@ -33512,7 +33540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulfstreamgoodwillindustries-e45d79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gulfstreamgoodwillindustries-e45d79.jpg" }, { "if": { @@ -33527,7 +33555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hackneycouncil-c49ed3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-c49ed3.jpg" }, { "if": { @@ -33543,7 +33571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heartoftexasgoodwillindustries-5c5465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heartoftexasgoodwillindustries-5c5465.jpg" }, { "if": { @@ -33558,7 +33586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helsinginseudunymparistopalvelut-3e65e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/helsinginseudunymparistopalvelut-3e65e0.png" }, { "if": { @@ -33572,7 +33600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hera-94eaae.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hera-94eaae.svg" }, { "if": { @@ -33586,7 +33614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holdinggraz-0f4458.png" + "then": "https://data.mapcomplete.org/nsi//logos/holdinggraz-0f4458.png" }, { "if": { @@ -33602,7 +33630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/horizongoodwillindustries-331283.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/horizongoodwillindustries-331283.jpg" }, { "if": { @@ -33616,7 +33644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/humana-915a74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/humana-915a74.jpg" }, { "if": { @@ -33630,7 +33658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hvc-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hvc-fcd61b.jpg" }, { "if": { @@ -33644,7 +33672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ideluxenvironnement-980be7.png" + "then": "https://data.mapcomplete.org/nsi//logos/ideluxenvironnement-980be7.png" }, { "if": { @@ -33658,7 +33686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imog-980be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imog-980be7.jpg" }, { "if": { @@ -33672,7 +33700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intradel-980be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intradel-980be7.jpg" }, { "if": { @@ -33686,7 +33714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irado-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irado-fcd61b.jpg" }, { "if": { @@ -33700,7 +33728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isleofwightcouncil-4fb1e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isleofwightcouncil-4fb1e4.jpg" }, { "if": { @@ -33714,7 +33742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ivarem-980be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ivarem-980be7.jpg" }, { "if": { @@ -33728,7 +33756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jakobbeckerentsorgungsgmbh-6737d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jakobbeckerentsorgungsgmbh-6737d9.jpg" }, { "if": { @@ -33744,7 +33772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jedertropfenzahlt-0767fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jedertropfenzahlt-0767fe.jpg" }, { "if": { @@ -33759,7 +33787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johanniterunfallhilfe-6737d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfe-6737d9.jpg" }, { "if": { @@ -33773,7 +33801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentstateuniversity-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-5e5980.jpg" }, { "if": { @@ -33787,7 +33815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kloktex-778b5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kloktex-778b5b.jpg" }, { "if": { @@ -33801,7 +33829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kositas-d6ea52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kositas-d6ea52.jpg" }, { "if": { @@ -33815,7 +33843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kredslob-67373b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kredslob-67373b.jpg" }, { "if": { @@ -33829,7 +33857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancashirecountycouncil-01fac1.png" + "then": "https://data.mapcomplete.org/nsi//logos/lancashirecountycouncil-01fac1.png" }, { "if": { @@ -33843,7 +33871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancastercitycouncil-58d7ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancastercitycouncil-58d7ff.jpg" }, { "if": { @@ -33859,7 +33887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landoflincolngoodwillindustries-b90a9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landoflincolngoodwillindustries-b90a9c.jpg" }, { "if": { @@ -33873,7 +33901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreiskaiserslautern-886dbb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreiskaiserslautern-886dbb.svg" }, { "if": { @@ -33887,7 +33915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisprignitz-5a52cc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisprignitz-5a52cc.svg" }, { "if": { @@ -33901,7 +33929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisrosenheim-4fb837.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisrosenheim-4fb837.svg" }, { "if": { @@ -33915,7 +33943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leedscitycouncil-6aed58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leedscitycouncil-6aed58.jpg" }, { "if": { @@ -33929,7 +33957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legerdesheils-fcd61b.png" + "then": "https://data.mapcomplete.org/nsi//logos/legerdesheils-fcd61b.png" }, { "if": { @@ -33945,7 +33973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lickingknoxgoodwillindustries-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lickingknoxgoodwillindustries-5e5980.jpg" }, { "if": { @@ -33959,7 +33987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidl-91c985.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidl-91c985.png" }, { "if": { @@ -33973,7 +34001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lipasam-49dabd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lipasam-49dabd.jpg" }, { "if": { @@ -33987,7 +34015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofnewham-c49ed3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofnewham-c49ed3.svg" }, { "if": { @@ -34003,7 +34031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtexx-f11175.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtexx-f11175.jpg" }, { "if": { @@ -34017,7 +34045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ma48-688e62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ma48-688e62.jpg" }, { "if": { @@ -34031,7 +34059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madrecoraje-49dabd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madrecoraje-49dabd.jpg" }, { "if": { @@ -34045,7 +34073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mairiedeparis-f6a4bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-f6a4bb.jpg" }, { "if": { @@ -34061,7 +34089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mariongoodwillindustries-5e5980.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mariongoodwillindustries-5e5980.jpg" }, { "if": { @@ -34075,7 +34103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxima-3da616.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maxima-3da616.jpg" }, { "if": { @@ -34089,7 +34117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mbrecycling-f1a5a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mbrecycling-f1a5a5.jpg" }, { "if": { @@ -34103,7 +34131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meerlanden-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meerlanden-fcd61b.jpg" }, { "if": { @@ -34119,7 +34147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphisgoodwill-361d78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphisgoodwill-361d78.jpg" }, { "if": { @@ -34135,7 +34163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mersmissourigoodwillindustries-e14d83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mersmissourigoodwillindustries-e14d83.jpg" }, { "if": { @@ -34149,7 +34177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestosokolov-778b5b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mestosokolov-778b5b.svg" }, { "if": { @@ -34163,7 +34191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropoleaixmarseilleprovence-c4a3eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/metropoleaixmarseilleprovence-c4a3eb.png" }, { "if": { @@ -34177,7 +34205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropoledelyon-51667b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropoledelyon-51667b.jpg" }, { "if": { @@ -34192,7 +34220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropoleeuropeennedelille-da77aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropoleeuropeennedelille-da77aa.jpg" }, { "if": { @@ -34206,7 +34234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migros-c59bef.png" + "then": "https://data.mapcomplete.org/nsi//logos/migros-c59bef.png" }, { "if": { @@ -34222,7 +34250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morganmemorialgoodwillindustries-bca807.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morganmemorialgoodwillindustries-bca807.jpg" }, { "if": { @@ -34236,7 +34264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportcitycouncil-abb8e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-abb8e1.jpg" }, { "if": { @@ -34250,7 +34278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolkcountycouncil-0288c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolkcountycouncil-0288c7.jpg" }, { "if": { @@ -34264,7 +34292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norgesrodekors-3e1966.png" + "then": "https://data.mapcomplete.org/nsi//logos/norgesrodekors-3e1966.png" }, { "if": { @@ -34278,7 +34306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nottinghamcitycouncil-a10777.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nottinghamcitycouncil-a10777.jpg" }, { "if": { @@ -34292,7 +34320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novonor-ade6e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/novonor-ade6e6.png" }, { "if": { @@ -34306,7 +34334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obectuchlovice-778b5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obectuchlovice-778b5b.jpg" }, { "if": { @@ -34322,7 +34350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiovalleygoodwillindustries-82bc2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiovalleygoodwillindustries-82bc2d.jpg" }, { "if": { @@ -34336,7 +34364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/optima-d6ea52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/optima-d6ea52.jpg" }, { "if": { @@ -34352,7 +34380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmettogoodwill-66147f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmettogoodwill-66147f.jpg" }, { "if": { @@ -34366,7 +34394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parishofsainthelier-ca1d6d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/parishofsainthelier-ca1d6d.svg" }, { "if": { @@ -34380,7 +34408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plainecommune-f6a4bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plainecommune-f6a4bb.jpg" }, { "if": { @@ -34395,7 +34423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polskiczerwonykrzyz-f1a5a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/polskiczerwonykrzyz-f1a5a5.jpg" }, { "if": { @@ -34409,7 +34437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prazskesluzby-778b5b.png" + "then": "https://data.mapcomplete.org/nsi//logos/prazskesluzby-778b5b.png" }, { "if": { @@ -34423,7 +34451,21 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldefortaleza-ccef4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldefortaleza-ccef4d.jpg" + }, + { + "if": { + "and": [ + "amenity=recycling", + { + "or": [ + "operator=PreZero", + "operator:wikidata=Q2464062" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/prezero-6737d9.png" }, { "if": { @@ -34437,7 +34479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ragnsellsas-ef3a0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ragnsellsas-ef3a0e.jpg" }, { "if": { @@ -34451,7 +34493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redbarnet-67373b.png" + "then": "https://data.mapcomplete.org/nsi//logos/redbarnet-67373b.png" }, { "if": { @@ -34465,7 +34507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reloga-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reloga-15b788.jpg" }, { "if": { @@ -34479,7 +34521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/remondis-222d99.svg" + "then": "https://data.mapcomplete.org/nsi//logos/remondis-222d99.svg" }, { "if": { @@ -34493,7 +34535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rennesmetropole-cc247f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rennesmetropole-cc247f.svg" }, { "if": { @@ -34507,7 +34549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rimi-3da616.png" + "then": "https://data.mapcomplete.org/nsi//logos/rimi-3da616.png" }, { "if": { @@ -34521,7 +34563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rodezagglomeration-adf56a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rodezagglomeration-adf56a.jpg" }, { "if": { @@ -34535,7 +34577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rsag-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rsag-15b788.jpg" }, { "if": { @@ -34549,7 +34591,21 @@ } ] }, - "then": "./assets/data/nsi/logos/sainsburys-79fa96.png" + "then": "https://data.mapcomplete.org/nsi//logos/sainsburys-79fa96.png" + }, + { + "if": { + "and": [ + "amenity=recycling", + { + "or": [ + "operator=SAKO", + "operator:wikidata=Q12050646" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/sako-778b5b.png" }, { "if": { @@ -34563,7 +34619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schonmackersumweltdienstegmbhandcokg-15b788.png" + "then": "https://data.mapcomplete.org/nsi//logos/schonmackersumweltdienstegmbhandcokg-15b788.png" }, { "if": { @@ -34577,7 +34633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scope-79fa96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scope-79fa96.jpg" }, { "if": { @@ -34593,7 +34649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-0169dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-0169dc.png" }, { "if": { @@ -34607,7 +34663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattleuniversity-0169dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattleuniversity-0169dc.png" }, { "if": { @@ -34621,7 +34677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sirctom-51667b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sirctom-51667b.png" }, { "if": { @@ -34635,7 +34691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siredom-f6a4bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siredom-f6a4bb.jpg" }, { "if": { @@ -34649,7 +34705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sitcomcotesuddeslandes-a71053.png" + "then": "https://data.mapcomplete.org/nsi//logos/sitcomcotesuddeslandes-a71053.png" }, { "if": { @@ -34663,7 +34719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sitreva-8b4326.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sitreva-8b4326.jpg" }, { "if": { @@ -34677,7 +34733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sivalor-51667b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sivalor-51667b.jpg" }, { "if": { @@ -34691,7 +34747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smav-da77aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smav-da77aa.jpg" }, { "if": { @@ -34705,7 +34761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smictomdalsacecentrale-03cd48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smictomdalsacecentrale-03cd48.jpg" }, { "if": { @@ -34719,7 +34775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smicval-a71053.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smicval-a71053.jpg" }, { "if": { @@ -34733,7 +34789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetwastepartnership-934ccf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetwastepartnership-934ccf.jpg" }, { "if": { @@ -34747,7 +34803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sorpa-270303.png" + "then": "https://data.mapcomplete.org/nsi//logos/sorpa-270303.png" }, { "if": { @@ -34763,7 +34819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southernoregongoodwillindustries-d6f1b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southernoregongoodwillindustries-d6f1b8.jpg" }, { "if": { @@ -34777,7 +34833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadhalle-980be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadhalle-980be7.jpg" }, { "if": { @@ -34791,7 +34847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbern-6b5fd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbern-6b5fd1.jpg" }, { "if": { @@ -34805,7 +34861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadthamm-15b788.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadthamm-15b788.svg" }, { "if": { @@ -34819,7 +34875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtheidelberg-fd14c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtheidelberg-fd14c2.png" }, { "if": { @@ -34833,7 +34889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkamplintfort-15b788.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkamplintfort-15b788.png" }, { "if": { @@ -34847,7 +34903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkrems-a48b14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkrems-a48b14.jpg" }, { "if": { @@ -34861,7 +34917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtlandshut-4fb837.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtlandshut-4fb837.jpg" }, { "if": { @@ -34875,7 +34931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwillich-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwillich-15b788.jpg" }, { "if": { @@ -34889,7 +34945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtreinigunghamburg-d0aa76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtreinigunghamburg-d0aa76.jpg" }, { "if": { @@ -34903,7 +34959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtreinigungleipzig-180c3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtreinigungleipzig-180c3d.jpg" }, { "if": { @@ -34917,7 +34973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebruhl-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebruhl-15b788.jpg" }, { "if": { @@ -34932,7 +34988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeerfurt-0723c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeerfurt-0723c2.jpg" }, { "if": { @@ -34946,7 +35002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suez-b5f2f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suez-b5f2f0.jpg" }, { "if": { @@ -34963,7 +35019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sympany-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sympany-fcd61b.jpg" }, { "if": { @@ -34978,7 +35034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/syndicatinterdepartementalmixtepourlequipementrural-a71053.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/syndicatinterdepartementalmixtepourlequipementrural-a71053.jpg" }, { "if": { @@ -34993,7 +35049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/syndicatmedocainpourlacollecteetletraitementdesorduresmenageres-a71053.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/syndicatmedocainpourlacollecteetletraitementdesorduresmenageres-a71053.jpg" }, { "if": { @@ -35008,7 +35064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/syndicatmixtedepartementaldesdechetsdeladordogne-a71053.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/syndicatmixtedepartementaldesdechetsdeladordogne-a71053.jpg" }, { "if": { @@ -35023,7 +35079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/syndicatmixtedudepartementdeloise-da77aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/syndicatmixtedudepartementdeloise-da77aa.jpg" }, { "if": { @@ -35037,7 +35093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tesco-91c985.png" + "then": "https://data.mapcomplete.org/nsi//logos/tesco-91c985.png" }, { "if": { @@ -35053,7 +35109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texcycle-f11175.png" + "then": "https://data.mapcomplete.org/nsi//logos/texcycle-f11175.png" }, { "if": { @@ -35067,7 +35123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thefirefighterscharity-79fa96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thefirefighterscharity-79fa96.jpg" }, { "if": { @@ -35081,7 +35137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toulousemetropole-adf56a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/toulousemetropole-adf56a.svg" }, { "if": { @@ -35095,7 +35151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toursmetropolevaldeloire-aa5dde.png" + "then": "https://data.mapcomplete.org/nsi//logos/toursmetropolevaldeloire-aa5dde.png" }, { "if": { @@ -35109,7 +35165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/triplemmetal-2bbb23.png" + "then": "https://data.mapcomplete.org/nsi//logos/triplemmetal-2bbb23.png" }, { "if": { @@ -35125,7 +35181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truenorthgoodwill-a13c05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truenorthgoodwill-a13c05.jpg" }, { "if": { @@ -35139,7 +35195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/twentemilieu-fcd61b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/twentemilieu-fcd61b.jpg" }, { "if": { @@ -35153,7 +35209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofcambridge-0288c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofcambridge-0288c7.png" }, { "if": { @@ -35167,7 +35223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/urzadmiastaopola-f1a5a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/urzadmiastaopola-f1a5a5.png" }, { "if": { @@ -35181,7 +35237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usbbochum-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usbbochum-15b788.jpg" }, { "if": { @@ -35195,7 +35251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valenceromansagglo-51667b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valenceromansagglo-51667b.jpg" }, { "if": { @@ -35209,7 +35265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veolia-451a3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/veolia-451a3b.png" }, { "if": { @@ -35223,7 +35279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veoliaumweltservice-6737d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veoliaumweltservice-6737d9.jpg" }, { "if": { @@ -35237,7 +35293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedegeneve-4d3bc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villedegeneve-4d3bc7.jpg" }, { "if": { @@ -35253,7 +35309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wabashvalleygoodwillindustries-b90a9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wabashvalleygoodwillindustries-b90a9c.jpg" }, { "if": { @@ -35268,7 +35324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wirtschaftsbetriebeduisburg-15b788.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wirtschaftsbetriebeduisburg-15b788.jpg" }, { "if": { @@ -35284,7 +35340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/youngstownareagoodwillindustries-40d83e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/youngstownareagoodwillindustries-40d83e.jpg" }, { "if": { @@ -35298,7 +35354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zagrebackiholding-39eeaa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zagrebackiholding-39eeaa.svg" }, { "if": { @@ -35313,7 +35369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zweckverbandabfallwirtschaftregionhannover-7d4127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zweckverbandabfallwirtschaftregionhannover-7d4127.jpg" }, { "if": { @@ -35327,7 +35383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zweckverbandabfallwirtschaftstraubingstadtundland-4fb837.png" + "then": "https://data.mapcomplete.org/nsi//logos/zweckverbandabfallwirtschaftstraubingstadtundland-4fb837.png" }, { "if": { @@ -35341,7 +35397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zweckverbandfurabfallwirtschaftkempten-4fb837.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zweckverbandfurabfallwirtschaftkempten-4fb837.jpg" }, { "if": { @@ -35355,7 +35411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c51e34-f11175.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c51e34-f11175.jpg" }, { "if": { @@ -35369,7 +35425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9906a9-f11175.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9906a9-f11175.jpg" }, { "if": { @@ -35383,7 +35439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bd1461-f11175.png" + "then": "https://data.mapcomplete.org/nsi//logos/bd1461-f11175.png" }, { "if": { @@ -35397,7 +35453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9f09a5-f11175.png" + "then": "https://data.mapcomplete.org/nsi//logos/9f09a5-f11175.png" }, { "if": { @@ -35411,7 +35467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aa0e2d-f11175.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aa0e2d-f11175.jpg" }, { "if": { @@ -35432,7 +35488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/811117-c13e89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/811117-c13e89.jpg" }, { "if": { @@ -35447,7 +35503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/56168c-c13e89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/56168c-c13e89.jpg" }, { "if": { @@ -35464,7 +35520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/521c50-c13e89.png" + "then": "https://data.mapcomplete.org/nsi//logos/521c50-c13e89.png" }, { "if": { @@ -35480,7 +35536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abbotsfordschooldistrict-ac5479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abbotsfordschooldistrict-ac5479.jpg" }, { "if": { @@ -35496,7 +35552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abcunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abcunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -35511,7 +35567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aberdeencitycouncil-5ae747.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aberdeencitycouncil-5ae747.jpg" }, { "if": { @@ -35526,7 +35582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aberdeenshirecouncil-e10172.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aberdeenshirecouncil-e10172.jpg" }, { "if": { @@ -35541,7 +35597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/academiedeversailles-3c0887.png" + "then": "https://data.mapcomplete.org/nsi//logos/academiedeversailles-3c0887.png" }, { "if": { @@ -35556,7 +35612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/academydistrict20-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/academydistrict20-64c3e7.jpg" }, { "if": { @@ -35571,7 +35627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/academytransformationtrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/academytransformationtrust-26e9df.jpg" }, { "if": { @@ -35586,7 +35642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acteducationdirectorate-2c901a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acteducationdirectorate-2c901a.jpg" }, { "if": { @@ -35602,7 +35658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/administracionnacionaldeeducationpublica-6176b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/administracionnacionaldeeducationpublica-6176b9.png" }, { "if": { @@ -35617,7 +35673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasafonsodealbuquerque-902108.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasafonsodealbuquerque-902108.jpg" }, { "if": { @@ -35632,7 +35688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasantoniocorreiadeoliveira-a26df1.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasantoniocorreiadeoliveira-a26df1.png" }, { "if": { @@ -35647,7 +35703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolascarmenmiranda-bd750b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolascarmenmiranda-bd750b.jpg" }, { "if": { @@ -35662,7 +35718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolascoimbracentro-ff6174.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolascoimbracentro-ff6174.jpg" }, { "if": { @@ -35677,7 +35733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolascoimbraoeste-ff6174.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolascoimbraoeste-ff6174.png" }, { "if": { @@ -35692,7 +35748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdafonsohenriques-2166f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdafonsohenriques-2166f0.jpg" }, { "if": { @@ -35707,7 +35763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdmariaii-a26df1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdmariaii-a26df1.jpg" }, { "if": { @@ -35722,7 +35778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdase-902108.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdase-902108.jpg" }, { "if": { @@ -35737,7 +35793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdeanadia-5c16da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeanadia-5c16da.jpg" }, { "if": { @@ -35752,7 +35808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdearouca-5c16da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdearouca-5c16da.jpg" }, { "if": { @@ -35767,7 +35823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdebuzio-5c16da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdebuzio-5c16da.jpg" }, { "if": { @@ -35782,7 +35838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdecanelas-bd750b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdecanelas-bd750b.jpg" }, { "if": { @@ -35797,7 +35853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdecastrodaire-349a25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdecastrodaire-349a25.jpg" }, { "if": { @@ -35812,7 +35868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdecister-2a7235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdecister-2a7235.jpg" }, { "if": { @@ -35827,7 +35883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdecoronadoecastro-bd750b.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdecoronadoecastro-bd750b.png" }, { "if": { @@ -35842,7 +35898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdeesmorizovarnorte-5c16da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeesmorizovarnorte-5c16da.jpg" }, { "if": { @@ -35857,7 +35913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdemarrazes-2a7235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdemarrazes-2a7235.jpg" }, { "if": { @@ -35872,7 +35928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdemontedaola-3d7fba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdemontedaola-3d7fba.jpg" }, { "if": { @@ -35887,7 +35943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdemontemoronovo-2f65f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdemontemoronovo-2f65f7.jpg" }, { "if": { @@ -35902,7 +35958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdeoliveiradobairro-5c16da.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeoliveiradobairro-5c16da.png" }, { "if": { @@ -35917,7 +35973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdeoliveiradohospital-ff6174.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeoliveiradohospital-ff6174.jpg" }, { "if": { @@ -35932,7 +35988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdeourem-2166f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeourem-2166f0.png" }, { "if": { @@ -35947,7 +36003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdepombal-2a7235.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdepombal-2a7235.png" }, { "if": { @@ -35962,7 +36018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdeportodemos-2a7235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeportodemos-2a7235.jpg" }, { "if": { @@ -35977,7 +36033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdevilaverde-a26df1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdevilaverde-a26df1.jpg" }, { "if": { @@ -35992,7 +36048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdiogodemacedo-bd750b.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdiogodemacedo-bd750b.png" }, { "if": { @@ -36007,7 +36063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdocadaval-1f63fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdocadaval-1f63fe.jpg" }, { "if": { @@ -36022,7 +36078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasdrmachadodematos-bd750b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdrmachadodematos-bd750b.jpg" }, { "if": { @@ -36037,7 +36093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasfreiheitorpinto-a9e355.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasfreiheitorpinto-a9e355.jpg" }, { "if": { @@ -36052,7 +36108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasgardunhaexisto-a9e355.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasgardunhaexisto-a9e355.jpg" }, { "if": { @@ -36067,7 +36123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasmartinhoarias-ff6174.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasmartinhoarias-ff6174.png" }, { "if": { @@ -36082,7 +36138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolaspadrejoaocoelhocabanita-9f50fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolaspadrejoaocoelhocabanita-9f50fa.jpg" }, { "if": { @@ -36097,7 +36153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasrainhasantaisabel-ff6174.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasrainhasantaisabel-ff6174.jpg" }, { "if": { @@ -36112,7 +36168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasrainhasantaisabel-2a7235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasrainhasantaisabel-2a7235.jpg" }, { "if": { @@ -36127,7 +36183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasrosaramalho-a26df1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasrosaramalho-a26df1.jpg" }, { "if": { @@ -36142,7 +36198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolassadabandeira-2166f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolassadabandeira-2166f0.jpg" }, { "if": { @@ -36157,7 +36213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolassophiademellobreyner-bd750b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolassophiademellobreyner-bd750b.jpg" }, { "if": { @@ -36172,7 +36228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolastemplarios-2166f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolastemplarios-2166f0.jpg" }, { "if": { @@ -36187,7 +36243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolastomazpelayo-bd750b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolastomazpelayo-bd750b.jpg" }, { "if": { @@ -36202,7 +36258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrupamentodeescolasviseunorte-349a25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasviseunorte-349a25.jpg" }, { "if": { @@ -36217,7 +36273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akershusfylkeskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/akershusfylkeskommune-ee5f1f.svg" }, { "if": { @@ -36233,7 +36289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alachuacountypublicschools-e8bc2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/alachuacountypublicschools-e8bc2a.png" }, { "if": { @@ -36248,7 +36304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alavudenkaupunki-4ccccf.png" + "then": "https://data.mapcomplete.org/nsi//logos/alavudenkaupunki-4ccccf.png" }, { "if": { @@ -36264,7 +36320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albanycountyschooldistrict1-a56222.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albanycountyschooldistrict1-a56222.jpg" }, { "if": { @@ -36280,7 +36336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albuquerquepublicschools-2a40d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/albuquerquepublicschools-2a40d4.png" }, { "if": { @@ -36296,7 +36352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldineindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldineindependentschooldistrict-d19570.png" }, { "if": { @@ -36311,7 +36367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alesundkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alesundkommune-ee5f1f.svg" }, { "if": { @@ -36326,7 +36382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aletheiaacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aletheiaacademiestrust-7a837c.jpg" }, { "if": { @@ -36342,7 +36398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alexandriacitypublicschools-3cf7e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/alexandriacitypublicschools-3cf7e1.png" }, { "if": { @@ -36358,7 +36414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/algonquinandlakeshorecatholicdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/algonquinandlakeshorecatholicdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -36374,7 +36430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alhambraelementaryschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/alhambraelementaryschooldistrict-ff98ff.png" }, { "if": { @@ -36390,7 +36446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alhambraunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alhambraunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -36406,7 +36462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aliceindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aliceindependentschooldistrict-d19570.jpg" }, { "if": { @@ -36422,7 +36478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aliefindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aliefindependentschooldistrict-d19570.jpg" }, { "if": { @@ -36438,7 +36494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alpineschooldistrict-614f2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alpineschooldistrict-614f2b.jpg" }, { "if": { @@ -36453,7 +36509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altakommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altakommune-ee5f1f.jpg" }, { "if": { @@ -36468,7 +36524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alverkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alverkommune-ee5f1f.svg" }, { "if": { @@ -36484,7 +36540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amarilloindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amarilloindependentschooldistrict-d19570.jpg" }, { "if": { @@ -36500,7 +36556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaheimelementaryschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anaheimelementaryschooldistrict-4ed216.jpg" }, { "if": { @@ -36516,7 +36572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaheimunionhighschooldistrict-4ed216.png" + "then": "https://data.mapcomplete.org/nsi//logos/anaheimunionhighschooldistrict-4ed216.png" }, { "if": { @@ -36531,7 +36587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anglianlearning-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anglianlearning-7a837c.jpg" }, { "if": { @@ -36546,7 +36602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anguscouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anguscouncil-7782f9.jpg" }, { "if": { @@ -36562,7 +36618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/annarborpublicschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/annarborpublicschools-aa6f23.jpg" }, { "if": { @@ -36578,7 +36634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arcadiaunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arcadiaunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -36593,7 +36649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/archdioceseofchicago-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/archdioceseofchicago-6d6198.png" }, { "if": { @@ -36608,7 +36664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/archdioceseofcincinnati-a7daad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/archdioceseofcincinnati-a7daad.jpg" }, { "if": { @@ -36623,7 +36679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/archdioceseofdetroit-aa6f23.png" + "then": "https://data.mapcomplete.org/nsi//logos/archdioceseofdetroit-aa6f23.png" }, { "if": { @@ -36638,7 +36694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arendalkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arendalkommune-ee5f1f.svg" }, { "if": { @@ -36653,7 +36709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/argyllandbutecouncil-7782f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/argyllandbutecouncil-7782f9.png" }, { "if": { @@ -36668,7 +36724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkschools-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkschools-26e9df.jpg" }, { "if": { @@ -36684,7 +36740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arlingtonheightsschooldistrict25-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arlingtonheightsschooldistrict25-6d6198.jpg" }, { "if": { @@ -36700,7 +36756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arlingtonindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arlingtonindependentschooldistrict-d19570.jpg" }, { "if": { @@ -36716,7 +36772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arlingtonpublicschools-3cf7e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/arlingtonpublicschools-3cf7e1.png" }, { "if": { @@ -36731,7 +36787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arlingtonpublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arlingtonpublicschools-48f47a.jpg" }, { "if": { @@ -36746,7 +36802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/askerkommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/askerkommune-ee5f1f.png" }, { "if": { @@ -36761,7 +36817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/askoykommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/askoykommune-ee5f1f.svg" }, { "if": { @@ -36776,7 +36832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aspirationsacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aspirationsacademiestrust-7a837c.jpg" }, { "if": { @@ -36791,7 +36847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aspireacademytrust-5dac27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aspireacademytrust-5dac27.jpg" }, { "if": { @@ -36806,7 +36862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/astreaacademytrust-26e9df.png" + "then": "https://data.mapcomplete.org/nsi//logos/astreaacademytrust-26e9df.png" }, { "if": { @@ -36822,7 +36878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atascaderounifiedschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/atascaderounifiedschooldistrict-ff98ff.png" }, { "if": { @@ -36838,7 +36894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinindependentschooldistrict-d19570.jpg" }, { "if": { @@ -36853,7 +36909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avantischoolstrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avantischoolstrust-7a837c.jpg" }, { "if": { @@ -36869,7 +36925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avonmaitlanddistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avonmaitlanddistrictschoolboard-57bf82.jpg" }, { "if": { @@ -36885,7 +36941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/azusaunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/azusaunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -36900,7 +36956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baerumkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/baerumkommune-ee5f1f.svg" }, { "if": { @@ -36916,7 +36972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baldwinparkunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baldwinparkunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -36931,7 +36987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecitypublicschools-41ceb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecitypublicschools-41ceb1.jpg" }, { "if": { @@ -36947,7 +37003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecountypublicschools-41ceb1.png" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecountypublicschools-41ceb1.png" }, { "if": { @@ -36962,7 +37018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barnsleymetropolitanboroughcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barnsleymetropolitanboroughcouncil-7a837c.jpg" }, { "if": { @@ -36977,7 +37033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bataviapublicschooldistrict101-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bataviapublicschooldistrict101-6d6198.jpg" }, { "if": { @@ -36992,7 +37048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bathandnortheastsomersetcouncil-a0b0ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bathandnortheastsomersetcouncil-a0b0ec.jpg" }, { "if": { @@ -37008,7 +37064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/battlegroundpublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/battlegroundpublicschools-48f47a.jpg" }, { "if": { @@ -37024,7 +37080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beaufortcountyschooldistrict-b0049f.png" + "then": "https://data.mapcomplete.org/nsi//logos/beaufortcountyschooldistrict-b0049f.png" }, { "if": { @@ -37040,7 +37096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/beavertonschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/beavertonschooldistrict-330cad.jpg" }, { "if": { @@ -37055,7 +37111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedfordboroughcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedfordboroughcouncil-7a837c.jpg" }, { "if": { @@ -37070,7 +37126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedfordshireschoolstrustlimited-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedfordshireschoolstrustlimited-7a837c.jpg" }, { "if": { @@ -37085,7 +37141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/behordefurschuleundberufsbildung-964df5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/behordefurschuleundberufsbildung-964df5.svg" }, { "if": { @@ -37100,7 +37156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellevueplaceeducationtrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bellevueplaceeducationtrust-7a837c.png" }, { "if": { @@ -37116,7 +37172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellevueschooldistrict-48f47a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bellevueschooldistrict-48f47a.png" }, { "if": { @@ -37132,7 +37188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellflowerunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellflowerunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -37148,7 +37204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bendlapineschools-330cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/bendlapineschools-330cad.png" }, { "if": { @@ -37163,7 +37219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bergenkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bergenkommune-ee5f1f.svg" }, { "if": { @@ -37178,7 +37234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bermudaministryofeducation-21cfa2.png" + "then": "https://data.mapcomplete.org/nsi//logos/bermudaministryofeducation-21cfa2.png" }, { "if": { @@ -37194,7 +37250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berwynnorthschooldistrict98-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berwynnorthschooldistrict98-6d6198.jpg" }, { "if": { @@ -37210,7 +37266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berwynsouthschooldistrict100-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/berwynsouthschooldistrict100-6d6198.png" }, { "if": { @@ -37226,7 +37282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bethelschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bethelschooldistrict-48f47a.jpg" }, { "if": { @@ -37241,7 +37297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bezirksamtcharlottenburgwilmersdorfvonberlin-d52d16.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bezirksamtcharlottenburgwilmersdorfvonberlin-d52d16.svg" }, { "if": { @@ -37256,7 +37312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bezirksamtsteglitzzehlendorfvonberlin-d52d16.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bezirksamtsteglitzzehlendorfvonberlin-d52d16.svg" }, { "if": { @@ -37271,7 +37327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bialoleka-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bialoleka-83282a.svg" }, { "if": { @@ -37286,7 +37342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bielany-83282a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bielany-83282a.jpg" }, { "if": { @@ -37302,7 +37358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birdvilleindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birdvilleindependentschooldistrict-d19570.jpg" }, { "if": { @@ -37317,7 +37373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamcitycouncil-7ba3ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-7ba3ad.jpg" }, { "if": { @@ -37333,7 +37389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamdiocesanmultiacademytrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamdiocesanmultiacademytrust-7a837c.png" }, { "if": { @@ -37349,7 +37405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bishopchadwickcatholiceducationtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bishopchadwickcatholiceducationtrust-7a837c.jpg" }, { "if": { @@ -37365,7 +37421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bishopwilkinsoncatholiceducationtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bishopwilkinsoncatholiceducationtrust-7a837c.jpg" }, { "if": { @@ -37381,7 +37437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bismarckpublicschools-d1732d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bismarckpublicschools-d1732d.jpg" }, { "if": { @@ -37396,7 +37452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bjornafjordenkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bjornafjordenkommune-ee5f1f.svg" }, { "if": { @@ -37411,7 +37467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackgoldregionaldivision-59fa08.png" + "then": "https://data.mapcomplete.org/nsi//logos/blackgoldregionaldivision-59fa08.png" }, { "if": { @@ -37426,7 +37482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackburnwithdarwenboroughcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackburnwithdarwenboroughcouncil-7a837c.jpg" }, { "if": { @@ -37441,7 +37497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackpoolboroughcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackpoolboroughcouncil-7a837c.jpg" }, { "if": { @@ -37456,7 +37512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blaenaugwentcountyboroughcouncil-3a6545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blaenaugwentcountyboroughcouncil-3a6545.jpg" }, { "if": { @@ -37471,7 +37527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blessedpetersnowcatholicacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blessedpetersnowcatholicacademytrust-7a837c.jpg" }, { "if": { @@ -37487,7 +37543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluewaterdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluewaterdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -37502,7 +37558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bmateducation-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmateducation-7a837c.jpg" }, { "if": { @@ -37517,7 +37573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bodokommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bodokommune-ee5f1f.jpg" }, { "if": { @@ -37532,7 +37588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boiseschooldistrict-d7611a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boiseschooldistrict-d7611a.jpg" }, { "if": { @@ -37548,7 +37604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonitaunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonitaunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -37564,7 +37620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonnevillejointschooldistrict-d7611a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonnevillejointschooldistrict-d7611a.jpg" }, { "if": { @@ -37579,7 +37635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boonecountyschools-4e7bb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boonecountyschools-4e7bb3.jpg" }, { "if": { @@ -37594,7 +37650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bossierparishschoolboard-8f61a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bossierparishschoolboard-8f61a8.jpg" }, { "if": { @@ -37610,7 +37666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bostonpublicschools-be2584.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bostonpublicschools-be2584.jpg" }, { "if": { @@ -37625,7 +37681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bouldervalleyschooldistrict-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bouldervalleyschooldistrict-64c3e7.jpg" }, { "if": { @@ -37640,7 +37696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bournemouthchristchurchandpoolecouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bournemouthchristchurchandpoolecouncil-7a837c.jpg" }, { "if": { @@ -37656,7 +37712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boxelderschooldistrict-614f2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boxelderschooldistrict-614f2b.jpg" }, { "if": { @@ -37671,7 +37727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bracknellforestcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bracknellforestcouncil-7a837c.jpg" }, { "if": { @@ -37687,7 +37743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bridgeportpublicschools-547ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bridgeportpublicschools-547ddd.jpg" }, { "if": { @@ -37702,7 +37758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightfutureseducationaltrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightfutureseducationaltrust-7a837c.jpg" }, { "if": { @@ -37717,7 +37773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightonandhovecitycouncil-ccd4d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-ccd4d4.png" }, { "if": { @@ -37732,7 +37788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brisbanecatholiceducation-37f40e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brisbanecatholiceducation-37f40e.jpg" }, { "if": { @@ -37747,7 +37803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristolcitycouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristolcitycouncil-7a837c.jpg" }, { "if": { @@ -37763,7 +37819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brownsvilleindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brownsvilleindependentschooldistrict-d19570.jpg" }, { "if": { @@ -37779,7 +37835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brucegreycatholicdistrictschoolboard-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/brucegreycatholicdistrictschoolboard-57bf82.png" }, { "if": { @@ -37795,7 +37851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bryanindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bryanindependentschooldistrict-d19570.jpg" }, { "if": { @@ -37811,7 +37867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burbankunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burbankunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -37826,7 +37882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burymetropolitanboroughcouncil-7a837c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/burymetropolitanboroughcouncil-7a837c.svg" }, { "if": { @@ -37841,7 +37897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buskerudfylkeskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/buskerudfylkeskommune-ee5f1f.svg" }, { "if": { @@ -37856,7 +37912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cabarruscountyschools-15bd72.png" + "then": "https://data.mapcomplete.org/nsi//logos/cabarruscountyschools-15bd72.png" }, { "if": { @@ -37871,7 +37927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cabotlearningfederation-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cabotlearningfederation-26e9df.jpg" }, { "if": { @@ -37887,7 +37943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calgarycatholicschooldistrict-59fa08.png" + "then": "https://data.mapcomplete.org/nsi//logos/calgarycatholicschooldistrict-59fa08.png" }, { "if": { @@ -37903,7 +37959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camasschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camasschooldistrict-48f47a.jpg" }, { "if": { @@ -37918,7 +37974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cambridgeshirecountycouncil-00e0d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cambridgeshirecountycouncil-00e0d0.png" }, { "if": { @@ -37933,7 +37989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canyonisd-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/canyonisd-d19570.png" }, { "if": { @@ -37949,7 +38005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capistranounifiedschooldistrict-4ed216.png" + "then": "https://data.mapcomplete.org/nsi//logos/capistranounifiedschooldistrict-4ed216.png" }, { "if": { @@ -37964,7 +38020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitolregioneducationcouncil-547ddd.png" + "then": "https://data.mapcomplete.org/nsi//logos/capitolregioneducationcouncil-547ddd.png" }, { "if": { @@ -37979,7 +38035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cardiffcouncil-8be5aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cardiffcouncil-8be5aa.jpg" }, { "if": { @@ -37994,7 +38050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritasosterreich-ab40eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritasosterreich-ab40eb.jpg" }, { "if": { @@ -38011,7 +38067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carmarthenshirecountycouncil-3a6545.svg" + "then": "https://data.mapcomplete.org/nsi//logos/carmarthenshirecountycouncil-3a6545.svg" }, { "if": { @@ -38027,7 +38083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrolltonfarmersbranchindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carrolltonfarmersbranchindependentschooldistrict-d19570.jpg" }, { "if": { @@ -38042,7 +38098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carthager9schooldistrict-9c7c62.png" + "then": "https://data.mapcomplete.org/nsi//logos/carthager9schooldistrict-9c7c62.png" }, { "if": { @@ -38057,7 +38113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catawbacountyschools-15bd72.png" + "then": "https://data.mapcomplete.org/nsi//logos/catawbacountyschools-15bd72.png" }, { "if": { @@ -38073,7 +38129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catholicdistrictschoolboardofeasternontario-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/catholicdistrictschoolboardofeasternontario-57bf82.jpg" }, { "if": { @@ -38088,7 +38144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catholiceducationsandhurstlimited-1fc2f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/catholiceducationsandhurstlimited-1fc2f5.png" }, { "if": { @@ -38104,7 +38160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cecilcountypublicschools-41ceb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cecilcountypublicschools-41ceb1.jpg" }, { "if": { @@ -38120,7 +38176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cedarrapidscommunityschooldistrict-6e0541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cedarrapidscommunityschooldistrict-6e0541.jpg" }, { "if": { @@ -38136,7 +38192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centennialschooldistrict-177d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centennialschooldistrict-177d23.jpg" }, { "if": { @@ -38152,7 +38208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centennialschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centennialschooldistrict-330cad.jpg" }, { "if": { @@ -38168,7 +38224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centennialschooldistrict-664aaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/centennialschooldistrict-664aaf.png" }, { "if": { @@ -38183,7 +38239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralcommunityunitschooldistrict301-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralcommunityunitschooldistrict301-6d6198.jpg" }, { "if": { @@ -38199,7 +38255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralkitsapschooldistrict-48f47a.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralkitsapschooldistrict-48f47a.png" }, { "if": { @@ -38215,7 +38271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralvalleyschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralvalleyschooldistrict-48f47a.jpg" }, { "if": { @@ -38231,7 +38287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centredeservicesscolairedelabeauceetchemin-d1e97c.png" + "then": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedelabeauceetchemin-d1e97c.png" }, { "if": { @@ -38246,7 +38302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centredeservicesscolairedelacapitale-d1e97c.png" + "then": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedelacapitale-d1e97c.png" }, { "if": { @@ -38261,7 +38317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centredeservicesscolairedelaregiondesherbrooke-d1e97c.png" + "then": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedelaregiondesherbrooke-d1e97c.png" }, { "if": { @@ -38276,7 +38332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centredeservicesscolairedemontreal-d1e97c.png" + "then": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedemontreal-d1e97c.png" }, { "if": { @@ -38291,7 +38347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centredeservicesscolairedesdraveurs-d1e97c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedesdraveurs-d1e97c.jpg" }, { "if": { @@ -38307,7 +38363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chandlerunifiedschooldistrict-59e2c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chandlerunifiedschooldistrict-59e2c9.jpg" }, { "if": { @@ -38323,7 +38379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/charlottemecklenburgschools-15bd72.png" + "then": "https://data.mapcomplete.org/nsi//logos/charlottemecklenburgschools-15bd72.png" }, { "if": { @@ -38338,7 +38394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cherokeecountyschools-cc53cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cherokeecountyschools-cc53cf.jpg" }, { "if": { @@ -38353,7 +38409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cherokeecountyschools-15bd72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cherokeecountyschools-15bd72.jpg" }, { "if": { @@ -38369,7 +38425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cherrycreekschooldistrict-64c3e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/cherrycreekschooldistrict-64c3e7.png" }, { "if": { @@ -38385,7 +38441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagopublicschools-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/chicagopublicschools-6d6198.png" }, { "if": { @@ -38401,7 +38457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinovalleyunifiedschooldistrict-59e2c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinovalleyunifiedschooldistrict-59e2c9.jpg" }, { "if": { @@ -38417,7 +38473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinovalleyunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chinovalleyunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -38432,7 +38488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/churchofengland-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/churchofengland-26e9df.jpg" }, { "if": { @@ -38448,7 +38504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ciceroschooldistrict99-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/ciceroschooldistrict99-6d6198.png" }, { "if": { @@ -38463,7 +38519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cidarieducationlimited-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cidarieducationlimited-7a837c.jpg" }, { "if": { @@ -38479,7 +38535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cincinnatipublicschools-a7daad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cincinnatipublicschools-a7daad.jpg" }, { "if": { @@ -38494,7 +38550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityandcountyofswanseacouncil-3a6545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityandcountyofswanseacouncil-3a6545.jpg" }, { "if": { @@ -38509,7 +38565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofedinburghcouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofedinburghcouncil-7782f9.jpg" }, { "if": { @@ -38524,7 +38580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflondon-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflondon-657027.svg" }, { "if": { @@ -38539,7 +38595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwestminster-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwestminster-657027.svg" }, { "if": { @@ -38554,7 +38610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwolverhamptoncouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwolverhamptoncouncil-7a837c.jpg" }, { "if": { @@ -38569,7 +38625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clackmannanshirecouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clackmannanshirecouncil-7782f9.jpg" }, { "if": { @@ -38585,7 +38641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkcountyschooldistrict-cb1413.png" + "then": "https://data.mapcomplete.org/nsi//logos/clarkcountyschooldistrict-cb1413.png" }, { "if": { @@ -38600,7 +38656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkecountyschooldistrict-159679.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkecountyschooldistrict-159679.jpg" }, { "if": { @@ -38615,7 +38671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarksvillemontgomerycountyschoolsystem-3799fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarksvillemontgomerycountyschoolsystem-3799fa.jpg" }, { "if": { @@ -38631,7 +38687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cloverparkschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cloverparkschooldistrict-48f47a.jpg" }, { "if": { @@ -38647,7 +38703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cobbcountyschooldistrict-159679.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cobbcountyschooldistrict-159679.jpg" }, { "if": { @@ -38663,7 +38719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coeurdalenepublicschools-d7611a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coeurdalenepublicschools-d7611a.jpg" }, { "if": { @@ -38679,7 +38735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradospringsschooldistrict11-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradospringsschooldistrict11-64c3e7.jpg" }, { "if": { @@ -38694,7 +38750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coltonjointunifiedschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/coltonjointunifiedschooldistrict-ff98ff.png" }, { "if": { @@ -38710,7 +38766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comalindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comalindependentschooldistrict-d19570.jpg" }, { "if": { @@ -38725,7 +38781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comhairlenaneileansiar-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comhairlenaneileansiar-7782f9.jpg" }, { "if": { @@ -38741,7 +38797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityconsolidatedschooldistrict15-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/communityconsolidatedschooldistrict15-6d6198.png" }, { "if": { @@ -38757,7 +38813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityconsolidatedschooldistrict54-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/communityconsolidatedschooldistrict54-6d6198.png" }, { "if": { @@ -38773,7 +38829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityconsolidatedschooldistrict59-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communityconsolidatedschooldistrict59-6d6198.jpg" }, { "if": { @@ -38789,7 +38845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityconsolidatedschooldistrict62-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communityconsolidatedschooldistrict62-6d6198.jpg" }, { "if": { @@ -38804,7 +38860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityinclusivetrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communityinclusivetrust-7a837c.jpg" }, { "if": { @@ -38819,7 +38875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communityunitschooldistrict200-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communityunitschooldistrict200-6d6198.jpg" }, { "if": { @@ -38835,7 +38891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comptonunifiedschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/comptonunifiedschooldistrict-f343c1.png" }, { "if": { @@ -38850,7 +38906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedicarrara-39bf8c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedicarrara-39bf8c.svg" }, { "if": { @@ -38865,7 +38921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunidaddemadrid-dd65e5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-dd65e5.svg" }, { "if": { @@ -38880,7 +38936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseildesecolescatholiquesducentreest-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conseildesecolescatholiquesducentreest-57bf82.jpg" }, { "if": { @@ -38895,7 +38951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseildesecolespubliquesdelestdelontario-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conseildesecolespubliquesdelestdelontario-57bf82.jpg" }, { "if": { @@ -38910,7 +38966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseilscolairecatholiquedunouvelontario-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conseilscolairecatholiquedunouvelontario-57bf82.jpg" }, { "if": { @@ -38925,7 +38981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseilscolairecatholiqueprovidence-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/conseilscolairecatholiqueprovidence-57bf82.png" }, { "if": { @@ -38940,7 +38996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseilscolairededistrictcatholiquedelestontarien-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/conseilscolairededistrictcatholiquedelestontarien-57bf82.png" }, { "if": { @@ -38955,7 +39011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseilscolairededistrictcatholiquedesgrandesrivieres-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conseilscolairededistrictcatholiquedesgrandesrivieres-57bf82.jpg" }, { "if": { @@ -38970,7 +39026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseilscolairededistrictcatholiquefranconord-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conseilscolairededistrictcatholiquefranconord-57bf82.jpg" }, { "if": { @@ -38985,7 +39041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseilscolairepublicdugrandnorddelontario-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conseilscolairepublicdugrandnorddelontario-57bf82.jpg" }, { "if": { @@ -39000,7 +39056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseilscolairepublicdunordestdelontario-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conseilscolairepublicdunordestdelontario-57bf82.jpg" }, { "if": { @@ -39015,7 +39071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conseilscolaireviamonde-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conseilscolaireviamonde-57bf82.jpg" }, { "if": { @@ -39030,7 +39086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consejodeeducacionsecundaria-6176b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/consejodeeducacionsecundaria-6176b9.png" }, { "if": { @@ -39046,7 +39102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consejonacionaldefomentoeducativo-422367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consejonacionaldefomentoeducativo-422367.jpg" }, { "if": { @@ -39061,7 +39117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consolidatedschooldistrictofnewbritain-547ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consolidatedschooldistrictofnewbritain-547ddd.jpg" }, { "if": { @@ -39076,7 +39132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consortiumtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consortiumtrust-7a837c.jpg" }, { "if": { @@ -39092,7 +39148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coppellindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/coppellindependentschooldistrict-d19570.png" }, { "if": { @@ -39107,7 +39163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornwallcouncil-5dac27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornwallcouncil-5dac27.jpg" }, { "if": { @@ -39123,7 +39179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornwalleducationlearningtrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cornwalleducationlearningtrust-7a837c.png" }, { "if": { @@ -39139,7 +39195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corvallisschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/corvallisschooldistrict-330cad.jpg" }, { "if": { @@ -39155,7 +39211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/covinavalleyunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/covinavalleyunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -39171,7 +39227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crowleyindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crowleyindependentschooldistrict-d19570.jpg" }, { "if": { @@ -39186,7 +39242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cumberlandcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cumberlandcouncil-7a837c.jpg" }, { "if": { @@ -39202,7 +39258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cumbriaeducationtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cumbriaeducationtrust-7a837c.jpg" }, { "if": { @@ -39218,7 +39274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cypressfairbanksindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cypressfairbanksindependentschooldistrict-d19570.jpg" }, { "if": { @@ -39234,7 +39290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dallasindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dallasindependentschooldistrict-d19570.jpg" }, { "if": { @@ -39249,7 +39305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danderydskommun-0f2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/danderydskommun-0f2dfb.jpg" }, { "if": { @@ -39264,7 +39320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dartmoormultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dartmoormultiacademytrust-7a837c.jpg" }, { "if": { @@ -39280,7 +39336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daviddouglasschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daviddouglasschooldistrict-330cad.jpg" }, { "if": { @@ -39296,7 +39352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dearbornpublicschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dearbornpublicschools-aa6f23.jpg" }, { "if": { @@ -39312,7 +39368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dentonindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/dentonindependentschooldistrict-d19570.png" }, { "if": { @@ -39328,7 +39384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denverpublicschools-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/denverpublicschools-64c3e7.jpg" }, { "if": { @@ -39343,7 +39399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departamentdeducaciodelageneralitatdecatalunya-c1ff56.svg" + "then": "https://data.mapcomplete.org/nsi//logos/departamentdeducaciodelageneralitatdecatalunya-c1ff56.svg" }, { "if": { @@ -39358,7 +39414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departamentodeeducacion-cd2b47.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departamentodeeducacion-cd2b47.jpg" }, { "if": { @@ -39373,7 +39429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sadepartmentforeducation-4c8594.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sadepartmentforeducation-4c8594.jpg" }, { "if": { @@ -39388,7 +39444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswdepartmentofeducation-d7e2f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswdepartmentofeducation-d7e2f4.jpg" }, { "if": { @@ -39403,7 +39459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntdepartmentofeducation-f2488a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ntdepartmentofeducation-f2488a.jpg" }, { "if": { @@ -39419,7 +39475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofeducation-775c70.svg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofeducation-775c70.svg" }, { "if": { @@ -39434,7 +39490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queenslanddepartmentofeducation-37f40e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/queenslanddepartmentofeducation-37f40e.jpg" }, { "if": { @@ -39449,7 +39505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasmaniandepartmentofeducation-c398f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tasmaniandepartmentofeducation-c398f9.jpg" }, { "if": { @@ -39464,7 +39520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wadepartmentofeducation-3f16bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wadepartmentofeducation-3f16bf.jpg" }, { "if": { @@ -39479,7 +39535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbycitycouncil-7a837c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/derbycitycouncil-7a837c.svg" }, { "if": { @@ -39494,7 +39550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbydiocesanacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derbydiocesanacademytrust-7a837c.jpg" }, { "if": { @@ -39510,7 +39566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbydiocesanacademytrust2-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derbydiocesanacademytrust2-7a837c.jpg" }, { "if": { @@ -39525,7 +39581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/derbyshirecountycouncil-2bbb7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/derbyshirecountycouncil-2bbb7b.jpg" }, { "if": { @@ -39540,7 +39596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/desmoinespublicschools-6e0541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/desmoinespublicschools-6e0541.jpg" }, { "if": { @@ -39556,7 +39612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/detroitpublicschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/detroitpublicschools-aa6f23.jpg" }, { "if": { @@ -39571,7 +39627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschercaritasverband-33ddf1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschercaritasverband-33ddf1.jpg" }, { "if": { @@ -39586,7 +39642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/devoncountycouncil-02f810.png" + "then": "https://data.mapcomplete.org/nsi//logos/devoncountycouncil-02f810.png" }, { "if": { @@ -39601,7 +39657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dioceseofcovington-4e7bb3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dioceseofcovington-4e7bb3.svg" }, { "if": { @@ -39616,7 +39672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dioceseofsanjose-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/dioceseofsanjose-ff98ff.png" }, { "if": { @@ -39632,7 +39688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/direcciongeneraldeculturayeducacion-484c15.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/direcciongeneraldeculturayeducacion-484c15.jpg" }, { "if": { @@ -39648,7 +39704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/districtofcolumbiapublicschools-26727d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/districtofcolumbiapublicschools-26727d.jpg" }, { "if": { @@ -39664,7 +39720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/districtschoolboardofniagara-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/districtschoolboardofniagara-57bf82.jpg" }, { "if": { @@ -39680,7 +39736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/districtschoolboardontarionortheast-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/districtschoolboardontarionortheast-57bf82.png" }, { "if": { @@ -39695,7 +39751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diverseacademiestrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/diverseacademiestrust-7a837c.png" }, { "if": { @@ -39710,7 +39766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dixonsacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dixonsacademiestrust-7a837c.jpg" }, { "if": { @@ -39726,7 +39782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/donnaindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/donnaindependentschooldistrict-d19570.jpg" }, { "if": { @@ -39741,7 +39797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dorsetcouncil-e77b90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dorsetcouncil-e77b90.jpg" }, { "if": { @@ -39757,7 +39813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dothancityschools-cc53cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dothancityschools-cc53cf.jpg" }, { "if": { @@ -39773,7 +39829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/douglascountyschooldistrict-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/douglascountyschooldistrict-64c3e7.jpg" }, { "if": { @@ -39789,7 +39845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/douglascountyschooldistrict-159679.png" + "then": "https://data.mapcomplete.org/nsi//logos/douglascountyschooldistrict-159679.png" }, { "if": { @@ -39804,7 +39860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/downersgrovegradeschooldistrict58-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/downersgrovegradeschooldistrict58-6d6198.jpg" }, { "if": { @@ -39820,7 +39876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/downeyunifiedschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/downeyunifiedschooldistrict-f343c1.png" }, { "if": { @@ -39835,7 +39891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drammenkommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/drammenkommune-ee5f1f.png" }, { "if": { @@ -39850,7 +39906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dublincityschools-a7daad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dublincityschools-a7daad.jpg" }, { "if": { @@ -39866,7 +39922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duncanvilleindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/duncanvilleindependentschooldistrict-d19570.png" }, { "if": { @@ -39881,7 +39937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dundeecitycouncil-da5bfe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dundeecitycouncil-da5bfe.jpg" }, { "if": { @@ -39897,7 +39953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhamcatholicdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/durhamcatholicdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -39912,7 +39968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhamcountycouncil-9b6b70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/durhamcountycouncil-9b6b70.jpg" }, { "if": { @@ -39928,7 +39984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhamdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/durhamdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -39944,7 +40000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhampublicschools-15bd72.png" + "then": "https://data.mapcomplete.org/nsi//logos/durhampublicschools-15bd72.png" }, { "if": { @@ -39960,7 +40016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duvalcountypublicschools-e8bc2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/duvalcountypublicschools-e8bc2a.png" }, { "if": { @@ -39976,7 +40032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eaglemountainsaginawindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/eaglemountainsaginawindependentschooldistrict-d19570.png" }, { "if": { @@ -39992,7 +40048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastaurorapublicschooldistrict131-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastaurorapublicschooldistrict131-6d6198.jpg" }, { "if": { @@ -40008,7 +40064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easthartfordpublicschools-547ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easthartfordpublicschools-547ddd.jpg" }, { "if": { @@ -40023,7 +40079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastlothiancouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastlothiancouncil-7782f9.jpg" }, { "if": { @@ -40038,7 +40094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastridingofyorkshirecouncil-ef57c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastridingofyorkshirecouncil-ef57c6.png" }, { "if": { @@ -40054,7 +40110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastwhittiercityschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastwhittiercityschooldistrict-f343c1.png" }, { "if": { @@ -40069,7 +40125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easterncapedepartmentofeducation-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easterncapedepartmentofeducation-3306c5.jpg" }, { "if": { @@ -40085,7 +40141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eauclaireareaschooldistrict-ac5479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eauclaireareaschooldistrict-ac5479.jpg" }, { "if": { @@ -40101,7 +40157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edmontoncatholicschools-59fa08.png" + "then": "https://data.mapcomplete.org/nsi//logos/edmontoncatholicschools-59fa08.png" }, { "if": { @@ -40117,7 +40173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edmontonpublicschools-59fa08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edmontonpublicschools-59fa08.jpg" }, { "if": { @@ -40132,7 +40188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/educatetogether-1a051e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/educatetogether-1a051e.jpg" }, { "if": { @@ -40147,7 +40203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/educationsouthwest-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/educationsouthwest-7a837c.png" }, { "if": { @@ -40163,7 +40219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmontecityschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elmontecityschooldistrict-f343c1.jpg" }, { "if": { @@ -40179,7 +40235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elpasoindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elpasoindependentschooldistrict-d19570.jpg" }, { "if": { @@ -40195,7 +40251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elranchounifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elranchounifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -40210,7 +40266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elevatemultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elevatemultiacademytrust-7a837c.jpg" }, { "if": { @@ -40226,7 +40282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elginareaschooldistrictu46-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elginareaschooldistrictu46-6d6198.jpg" }, { "if": { @@ -40242,7 +40298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmwoodparkcommunityunitschooldistrict401-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elmwoodparkcommunityunitschooldistrict401-6d6198.jpg" }, { "if": { @@ -40258,7 +40314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eriespublicschools-664aaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eriespublicschools-664aaf.jpg" }, { "if": { @@ -40273,7 +40329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erzbistumberlin-5d11e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erzbistumberlin-5d11e1.jpg" }, { "if": { @@ -40288,7 +40344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erzbistumkoln-1fea76.png" + "then": "https://data.mapcomplete.org/nsi//logos/erzbistumkoln-1fea76.png" }, { "if": { @@ -40304,7 +40360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/escondidounionschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/escondidounionschooldistrict-ff98ff.png" }, { "if": { @@ -40319,7 +40375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essexcountycouncil-00e0d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essexcountycouncil-00e0d0.jpg" }, { "if": { @@ -40334,7 +40390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/estadodoriograndedosul-ee71aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/estadodoriograndedosul-ee71aa.svg" }, { "if": { @@ -40350,7 +40406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evangelicallutheranchurchofpapuanewguinea-6ced19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evangelicallutheranchurchofpapuanewguinea-6ced19.jpg" }, { "if": { @@ -40365,7 +40421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evangelischeschulstiftunginderekbo-3bf1ec.png" + "then": "https://data.mapcomplete.org/nsi//logos/evangelischeschulstiftunginderekbo-3bf1ec.png" }, { "if": { @@ -40381,7 +40437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evanstonskokieschooldistrict65-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evanstonskokieschooldistrict65-6d6198.jpg" }, { "if": { @@ -40396,7 +40452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everettpublicschools-be2584.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/everettpublicschools-be2584.jpg" }, { "if": { @@ -40411,7 +40467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/everettpublicschools-48f47a.png" + "then": "https://data.mapcomplete.org/nsi//logos/everettpublicschools-48f47a.png" }, { "if": { @@ -40427,7 +40483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergreenpublicschools-48f47a.png" + "then": "https://data.mapcomplete.org/nsi//logos/evergreenpublicschools-48f47a.png" }, { "if": { @@ -40442,7 +40498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/faerderkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/faerderkommune-ee5f1f.svg" }, { "if": { @@ -40458,7 +40514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fairfaxcountypublicschools-3cf7e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/fairfaxcountypublicschools-3cf7e1.png" }, { "if": { @@ -40474,7 +40530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/falconschooldistrict49-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/falconschooldistrict49-64c3e7.jpg" }, { "if": { @@ -40489,7 +40545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/falkopingskommun-0f2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/falkopingskommun-0f2dfb.jpg" }, { "if": { @@ -40505,7 +40561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fargopublicschools-d1732d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fargopublicschools-d1732d.jpg" }, { "if": { @@ -40521,7 +40577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fayettevillepublicschools-c3d23c.png" + "then": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicschools-c3d23c.png" }, { "if": { @@ -40537,7 +40593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federalwaypublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/federalwaypublicschools-48f47a.jpg" }, { "if": { @@ -40552,7 +40608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fifecouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fifecouncil-7782f9.jpg" }, { "if": { @@ -40567,7 +40623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flyinghightrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flyinghightrust-26e9df.jpg" }, { "if": { @@ -40583,7 +40639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fontanaunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fontanaunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -40599,7 +40655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestgroveschooldistrict-330cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/forestgroveschooldistrict-330cad.png" }, { "if": { @@ -40615,7 +40671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forneyindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/forneyindependentschooldistrict-d19570.png" }, { "if": { @@ -40631,7 +40687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortbendindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortbendindependentschooldistrict-d19570.jpg" }, { "if": { @@ -40647,7 +40703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortwaynecommunityschools-87f3ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortwaynecommunityschools-87f3ac.jpg" }, { "if": { @@ -40663,7 +40719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortworthindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortworthindependentschooldistrict-d19570.jpg" }, { "if": { @@ -40679,7 +40735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fountainvalleyschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fountainvalleyschooldistrict-4ed216.jpg" }, { "if": { @@ -40694,7 +40750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredrikstadkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fredrikstadkommune-ee5f1f.svg" }, { "if": { @@ -40709,7 +40765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freestatedepartmentofeducation-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freestatedepartmentofeducation-3306c5.jpg" }, { "if": { @@ -40724,7 +40780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freistaatbayern-46895d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freistaatbayern-46895d.jpg" }, { "if": { @@ -40740,7 +40796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fullertonschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fullertonschooldistrict-4ed216.jpg" }, { "if": { @@ -40755,7 +40811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fundacaobradesco-52f4f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fundacaobradesco-52f4f1.jpg" }, { "if": { @@ -40770,7 +40826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/futuralearningpartnership-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/futuralearningpartnership-26e9df.jpg" }, { "if": { @@ -40786,7 +40842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/garlandindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/garlandindependentschooldistrict-d19570.png" }, { "if": { @@ -40802,7 +40858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/garveyschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/garveyschooldistrict-f343c1.png" }, { "if": { @@ -40818,7 +40874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/garycommunityschoolcorporation-87f3ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/garycommunityschoolcorporation-87f3ac.jpg" }, { "if": { @@ -40833,7 +40889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gatesheadmetropolitanboroughcouncil-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/gatesheadmetropolitanboroughcouncil-7a837c.png" }, { "if": { @@ -40848,7 +40904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gautengdepartmentofeducation-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gautengdepartmentofeducation-3306c5.jpg" }, { "if": { @@ -40863,7 +40919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindegossau-25b252.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindegossau-25b252.svg" }, { "if": { @@ -40878,7 +40934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitatvalenciana-c1ff56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-c1ff56.jpg" }, { "if": { @@ -40894,7 +40950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ghanaeducationservice-05a503.png" + "then": "https://data.mapcomplete.org/nsi//logos/ghanaeducationservice-05a503.png" }, { "if": { @@ -40909,7 +40965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gjovikkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gjovikkommune-ee5f1f.jpg" }, { "if": { @@ -40924,7 +40980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glasgowcitycouncil-7782f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/glasgowcitycouncil-7782f9.png" }, { "if": { @@ -40940,7 +40996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glendaleunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glendaleunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -40956,7 +41012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glenviewschooldistrict34-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glenviewschooldistrict34-6d6198.jpg" }, { "if": { @@ -40971,7 +41027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glfschools-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glfschools-26e9df.jpg" }, { "if": { @@ -40986,7 +41042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminalublin-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gminalublin-83282a.svg" }, { "if": { @@ -41001,7 +41057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminamiastorzeszow-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gminamiastorzeszow-83282a.svg" }, { "if": { @@ -41016,7 +41072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminamiastoszczecin-83282a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gminamiastoszczecin-83282a.jpg" }, { "if": { @@ -41031,7 +41087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminamiejskakrakow-83282a.png" + "then": "https://data.mapcomplete.org/nsi//logos/gminamiejskakrakow-83282a.png" }, { "if": { @@ -41046,7 +41102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminaryki-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gminaryki-83282a.svg" }, { "if": { @@ -41061,7 +41117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gminawroclaw-83282a.png" + "then": "https://data.mapcomplete.org/nsi//logos/gminawroclaw-83282a.png" }, { "if": { @@ -41076,7 +41132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gobiernodecanarias-282164.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gobiernodecanarias-282164.svg" }, { "if": { @@ -41091,7 +41147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gobiernodecantabria-c1ff56.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gobiernodecantabria-c1ff56.svg" }, { "if": { @@ -41106,7 +41162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goshencommunityschools-87f3ac.png" + "then": "https://data.mapcomplete.org/nsi//logos/goshencommunityschools-87f3ac.png" }, { "if": { @@ -41121,7 +41177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goteborgsstad-0f2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/goteborgsstad-0f2dfb.png" }, { "if": { @@ -41136,7 +41192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentoflesotho-889426.svg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentoflesotho-889426.svg" }, { "if": { @@ -41151,7 +41207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentofliberia-784fef.svg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentofliberia-784fef.svg" }, { "if": { @@ -41166,7 +41222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governodoestadodabahia-9d6ced.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/governodoestadodabahia-9d6ced.jpg" }, { "if": { @@ -41181,7 +41237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governodoestadodaparaiba-a5afcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/governodoestadodaparaiba-a5afcb.jpg" }, { "if": { @@ -41196,7 +41252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governodoestadodoriodejaneiro-df8785.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/governodoestadodoriodejaneiro-df8785.jpg" }, { "if": { @@ -41211,7 +41267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governodoestadodoriograndedonorte-1a267e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/governodoestadodoriograndedonorte-1a267e.svg" }, { "if": { @@ -41227,7 +41283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/granderiedistrictschoolboard-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/granderiedistrictschoolboard-57bf82.png" }, { "if": { @@ -41243,7 +41299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandprairieindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/grandprairieindependentschooldistrict-d19570.png" }, { "if": { @@ -41258,7 +41314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/graniteschooldistrict-614f2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/graniteschooldistrict-614f2b.jpg" }, { "if": { @@ -41274,7 +41330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grapevinecolleyvilleindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grapevinecolleyvilleindependentschooldistrict-d19570.jpg" }, { "if": { @@ -41290,7 +41346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greateralbanypublicschools-330cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/greateralbanypublicschools-330cad.png" }, { "if": { @@ -41306,7 +41362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greateressexcountydistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greateressexcountydistrictschoolboard-57bf82.jpg" }, { "if": { @@ -41322,7 +41378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatersaskatooncatholicschools-c9fb3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/greatersaskatooncatholicschools-c9fb3c.png" }, { "if": { @@ -41337,7 +41393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenshawlearningtrust-26e9df.png" + "then": "https://data.mapcomplete.org/nsi//logos/greenshawlearningtrust-26e9df.png" }, { "if": { @@ -41353,7 +41409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greshambarlowschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greshambarlowschooldistrict-330cad.jpg" }, { "if": { @@ -41368,7 +41424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grevekommune-dc218e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/grevekommune-dc218e.svg" }, { "if": { @@ -41383,7 +41439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guilfordcountyschools-15bd72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guilfordcountyschools-15bd72.jpg" }, { "if": { @@ -41399,7 +41455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haciendalapuenteunifiedschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/haciendalapuenteunifiedschooldistrict-f343c1.png" }, { "if": { @@ -41414,7 +41470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haldenkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haldenkommune-ee5f1f.jpg" }, { "if": { @@ -41430,7 +41486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halifaxregionalcentreforeducation-3fa956.png" + "then": "https://data.mapcomplete.org/nsi//logos/halifaxregionalcentreforeducation-3fa956.png" }, { "if": { @@ -41445,7 +41501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halmstadskommun-0f2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/halmstadskommun-0f2dfb.png" }, { "if": { @@ -41461,7 +41517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haltoncatholicdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haltoncatholicdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -41477,7 +41533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haltondistrictschoolboard-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/haltondistrictschoolboard-57bf82.png" }, { "if": { @@ -41492,7 +41548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamarkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamarkommune-ee5f1f.jpg" }, { "if": { @@ -41507,7 +41563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hameenlinnankaupunki-4ccccf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hameenlinnankaupunki-4ccccf.jpg" }, { "if": { @@ -41523,7 +41579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamiltonwentworthcatholicdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamiltonwentworthcatholicdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -41538,7 +41594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hammerfestkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hammerfestkommune-ee5f1f.svg" }, { "if": { @@ -41553,7 +41609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hampshirecountycouncil-474eb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hampshirecountycouncil-474eb6.jpg" }, { "if": { @@ -41568,7 +41624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamptoncityschools-3cf7e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamptoncityschools-3cf7e1.jpg" }, { "if": { @@ -41583,7 +41639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansestadtlubeck-effab9.png" + "then": "https://data.mapcomplete.org/nsi//logos/hansestadtlubeck-effab9.png" }, { "if": { @@ -41598,7 +41654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansestadtluneburg-fe40f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hansestadtluneburg-fe40f3.svg" }, { "if": { @@ -41614,7 +41670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harlandaleindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/harlandaleindependentschooldistrict-d19570.png" }, { "if": { @@ -41630,7 +41686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harlingenconsolidatedindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harlingenconsolidatedindependentschooldistrict-d19570.jpg" }, { "if": { @@ -41645,7 +41701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harrisfederation-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harrisfederation-26e9df.jpg" }, { "if": { @@ -41661,7 +41717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harrisonschooldistrict2-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harrisonschooldistrict2-64c3e7.jpg" }, { "if": { @@ -41676,7 +41732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harstadkommuneharsttaidsuohkan-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/harstadkommuneharsttaidsuohkan-ee5f1f.svg" }, { "if": { @@ -41692,7 +41748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hartfordpublicschools-547ddd.png" + "then": "https://data.mapcomplete.org/nsi//logos/hartfordpublicschools-547ddd.png" }, { "if": { @@ -41708,7 +41764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hartfordpublicschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hartfordpublicschools-aa6f23.jpg" }, { "if": { @@ -41724,7 +41780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hastingsandprinceedwarddistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hastingsandprinceedwarddistrictschoolboard-57bf82.jpg" }, { "if": { @@ -41739,7 +41795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haugesundkommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/haugesundkommune-ee5f1f.png" }, { "if": { @@ -41755,7 +41811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawthorneschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/hawthorneschooldistrict-f343c1.png" }, { "if": { @@ -41771,7 +41827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helenapublicschools-15c3b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/helenapublicschools-15c3b4.jpg" }, { "if": { @@ -41786,7 +41842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hermanosmaristas-155571.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hermanosmaristas-155571.jpg" }, { "if": { @@ -41802,7 +41858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hermosabeachcityschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/hermosabeachcityschooldistrict-f343c1.png" }, { "if": { @@ -41817,7 +41873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hertfordshirecountycouncil-00e0d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hertfordshirecountycouncil-00e0d0.jpg" }, { "if": { @@ -41833,7 +41889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/highlinepublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/highlinepublicschools-48f47a.jpg" }, { "if": { @@ -41849,7 +41905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hillsboroschooldistrict-330cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/hillsboroschooldistrict-330cad.png" }, { "if": { @@ -41865,7 +41921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hillsboroughcountypublicschools-e8bc2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hillsboroughcountypublicschools-e8bc2a.jpg" }, { "if": { @@ -41880,7 +41936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holmestrandkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holmestrandkommune-ee5f1f.jpg" }, { "if": { @@ -41895,7 +41951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hortenkommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/hortenkommune-ee5f1f.png" }, { "if": { @@ -41910,7 +41966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houstoncountyboardofeducation-cc53cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houstoncountyboardofeducation-cc53cf.jpg" }, { "if": { @@ -41925,7 +41981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houstoncountyboardofeducation-159679.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houstoncountyboardofeducation-159679.jpg" }, { "if": { @@ -41941,7 +41997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houstonindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houstonindependentschooldistrict-d19570.jpg" }, { "if": { @@ -41957,7 +42013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/humbleindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/humbleindependentschooldistrict-d19570.jpg" }, { "if": { @@ -41973,7 +42029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntsvillecityschools-cc53cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/huntsvillecityschools-cc53cf.png" }, { "if": { @@ -41989,7 +42045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huronperthcatholicdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huronperthcatholicdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -42005,7 +42061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huronsuperiorcatholicdistrictschoolboard-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/huronsuperiorcatholicdistrictschoolboard-57bf82.png" }, { "if": { @@ -42021,7 +42077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hursteulessbedfordindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hursteulessbedfordindependentschooldistrict-d19570.jpg" }, { "if": { @@ -42037,7 +42093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahofallsschooldistrict-d7611a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahofallsschooldistrict-d7611a.jpg" }, { "if": { @@ -42053,7 +42109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ideapublicschools-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ideapublicschools-d19570.jpg" }, { "if": { @@ -42068,7 +42124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianprairieschooldistrict204-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianprairieschooldistrict204-6d6198.jpg" }, { "if": { @@ -42083,7 +42139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indreostfoldkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/indreostfoldkommune-ee5f1f.svg" }, { "if": { @@ -42099,7 +42155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inglewoodunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inglewoodunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -42114,7 +42170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inmat-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inmat-7a837c.jpg" }, { "if": { @@ -42129,7 +42185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inspiringfuturesthroughlearning-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/inspiringfuturesthroughlearning-7a837c.png" }, { "if": { @@ -42144,7 +42200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutopolitecniconacional-422367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutopolitecniconacional-422367.jpg" }, { "if": { @@ -42160,7 +42216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irvineunifiedschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irvineunifiedschooldistrict-4ed216.jpg" }, { "if": { @@ -42176,7 +42232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irvingindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irvingindependentschooldistrict-d19570.jpg" }, { "if": { @@ -42191,7 +42247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isleofwightcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isleofwightcouncil-7a837c.jpg" }, { "if": { @@ -42207,7 +42263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/issaquahschooldistrict411-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/issaquahschooldistrict411-48f47a.jpg" }, { "if": { @@ -42223,7 +42279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonpublicschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonpublicschools-aa6f23.jpg" }, { "if": { @@ -42239,7 +42295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonpublicschools-36719b.png" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonpublicschools-36719b.png" }, { "if": { @@ -42255,7 +42311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeffcopublicschools-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeffcopublicschools-64c3e7.jpg" }, { "if": { @@ -42271,7 +42327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeffersoncountypublicschools-4e7bb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeffersoncountypublicschools-4e7bb3.jpg" }, { "if": { @@ -42287,7 +42343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeffersoncountypublicschools-da05eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/jeffersoncountypublicschools-da05eb.png" }, { "if": { @@ -42302,7 +42358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeffersonjointschooldistrict251-d7611a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeffersonjointschooldistrict251-d7611a.jpg" }, { "if": { @@ -42318,7 +42374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnstoncountyschools-15bd72.png" + "then": "https://data.mapcomplete.org/nsi//logos/johnstoncountyschools-15bd72.png" }, { "if": { @@ -42334,7 +42390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jolietpublicschoolsdistrict86-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jolietpublicschoolsdistrict86-6d6198.jpg" }, { "if": { @@ -42350,7 +42406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joliettownshiphighschooldistrict204-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joliettownshiphighschooldistrict204-6d6198.jpg" }, { "if": { @@ -42366,7 +42422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/judsonindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/judsonindependentschooldistrict-d19570.png" }, { "if": { @@ -42381,7 +42437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadeandalucia-c1ff56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-c1ff56.jpg" }, { "if": { @@ -42396,7 +42452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadecastillayleon-c1ff56.svg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadecastillayleon-c1ff56.svg" }, { "if": { @@ -42411,7 +42467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadeextremadura-c1ff56.svg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadeextremadura-c1ff56.svg" }, { "if": { @@ -42427,7 +42483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kalamazoopublicschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kalamazoopublicschools-aa6f23.jpg" }, { "if": { @@ -42442,7 +42498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kanelandcommunityunitschooldistrict302-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/kanelandcommunityunitschooldistrict302-6d6198.png" }, { "if": { @@ -42457,7 +42513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karmoykommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/karmoykommune-ee5f1f.svg" }, { "if": { @@ -42473,7 +42529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/katyindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/katyindependentschooldistrict-d19570.jpg" }, { "if": { @@ -42489,7 +42545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kawarthapineridgedistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kawarthapineridgedistrictschoolboard-57bf82.jpg" }, { "if": { @@ -42505,7 +42561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kellerindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kellerindependentschooldistrict-d19570.jpg" }, { "if": { @@ -42528,7 +42584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kementerianpendidikanmalaysia-015093.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kementerianpendidikanmalaysia-015093.jpg" }, { "if": { @@ -42544,7 +42600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kennewickschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kennewickschooldistrict-48f47a.jpg" }, { "if": { @@ -42560,7 +42616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kenoshaunifiedschooldistrict-ac5479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kenoshaunifiedschooldistrict-ac5479.jpg" }, { "if": { @@ -42575,7 +42631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentcountycouncil-ccd4d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentcountycouncil-ccd4d4.png" }, { "if": { @@ -42591,7 +42647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentschooldistrict-48f47a.jpg" }, { "if": { @@ -42606,7 +42662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kernowlearningmultiacademytrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kernowlearningmultiacademytrust-26e9df.jpg" }, { "if": { @@ -42621,7 +42677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingedwardviacademytrustbirmingham-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingedwardviacademytrustbirmingham-7a837c.jpg" }, { "if": { @@ -42636,7 +42692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kinnkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kinnkommune-ee5f1f.svg" }, { "if": { @@ -42652,7 +42708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klamathcountyschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klamathcountyschooldistrict-330cad.jpg" }, { "if": { @@ -42668,7 +42724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kleinindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kleinindependentschooldistrict-d19570.jpg" }, { "if": { @@ -42683,7 +42739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kleppkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kleppkommune-ee5f1f.svg" }, { "if": { @@ -42698,7 +42754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knowsleymetropolitanboroughcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knowsleymetropolitanboroughcouncil-7a837c.jpg" }, { "if": { @@ -42713,7 +42769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knoxcountyschools-3799fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knoxcountyschools-3799fa.jpg" }, { "if": { @@ -42728,7 +42784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kongsbergkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kongsbergkommune-ee5f1f.jpg" }, { "if": { @@ -42744,7 +42800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kosickysamospravnykraj-08fea1.png" + "then": "https://data.mapcomplete.org/nsi//logos/kosickysamospravnykraj-08fea1.png" }, { "if": { @@ -42759,7 +42815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kreisgrossgerau-127a2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kreisgrossgerau-127a2c.jpg" }, { "if": { @@ -42774,7 +42830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kristiansandkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kristiansandkommune-ee5f1f.svg" }, { "if": { @@ -42789,7 +42845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kristiansundkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kristiansundkommune-ee5f1f.jpg" }, { "if": { @@ -42804,7 +42860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuopionkaupunki-4ccccf.png" + "then": "https://data.mapcomplete.org/nsi//logos/kuopionkaupunki-4ccccf.png" }, { "if": { @@ -42819,7 +42875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kvinnheradkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kvinnheradkommune-ee5f1f.jpg" }, { "if": { @@ -42834,7 +42890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kwazulunataldepartmentofeducation-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kwazulunataldepartmentofeducation-3306c5.jpg" }, { "if": { @@ -42849,7 +42905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyffhauserkreis-3f6a1d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kyffhauserkreis-3f6a1d.svg" }, { "if": { @@ -42865,7 +42921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansecreusepublicschools-aa6f23.png" + "then": "https://data.mapcomplete.org/nsi//logos/lansecreusepublicschools-aa6f23.png" }, { "if": { @@ -42881,7 +42937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lajoyaindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lajoyaindependentschooldistrict-d19570.jpg" }, { "if": { @@ -42896,7 +42952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasalle-155571.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lasalle-155571.jpg" }, { "if": { @@ -42912,7 +42968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakeoswegoschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lakeoswegoschooldistrict-330cad.jpg" }, { "if": { @@ -42928,7 +42984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakestevensschooldistrict-48f47a.png" + "then": "https://data.mapcomplete.org/nsi//logos/lakestevensschooldistrict-48f47a.png" }, { "if": { @@ -42944,7 +43000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakewashingtonschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lakewashingtonschooldistrict-48f47a.jpg" }, { "if": { @@ -42960,7 +43016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamarcountyschooldistrict-159679.png" + "then": "https://data.mapcomplete.org/nsi//logos/lamarcountyschooldistrict-159679.png" }, { "if": { @@ -42976,7 +43032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lamarcountyschooldistrict-36719b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lamarcountyschooldistrict-36719b.jpg" }, { "if": { @@ -42992,7 +43048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lambtonkentdistrictschoolboard-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/lambtonkentdistrictschoolboard-57bf82.png" }, { "if": { @@ -43007,7 +43063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancashirecountycouncil-1109dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/lancashirecountycouncil-1109dc.png" }, { "if": { @@ -43023,7 +43079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancasterschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancasterschooldistrict-f343c1.jpg" }, { "if": { @@ -43038,7 +43094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landbadenwurttemberg-0a18e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landbadenwurttemberg-0a18e7.jpg" }, { "if": { @@ -43053,7 +43109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landberlin-d52d16.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landberlin-d52d16.svg" }, { "if": { @@ -43068,7 +43124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeshauptstadtdusseldorf-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtdusseldorf-1fea76.jpg" }, { "if": { @@ -43083,7 +43139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeshauptstadtpotsdam-60dfe6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtpotsdam-60dfe6.jpg" }, { "if": { @@ -43098,7 +43154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeshauptstadtsaarbrucken-97fbd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtsaarbrucken-97fbd9.jpg" }, { "if": { @@ -43113,7 +43169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisfulda-127a2c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisfulda-127a2c.svg" }, { "if": { @@ -43128,7 +43184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisharburg-fe40f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisharburg-fe40f3.svg" }, { "if": { @@ -43143,7 +43199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisjerichowerland-08f4e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisjerichowerland-08f4e1.png" }, { "if": { @@ -43158,7 +43214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreissudlicheweinstrasse-23163a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreissudlicheweinstrasse-23163a.svg" }, { "if": { @@ -43174,7 +43230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laramiecountyschooldistrict1-a56222.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laramiecountyschooldistrict1-a56222.jpg" }, { "if": { @@ -43189,7 +43245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/larvikkommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/larvikkommune-ee5f1f.png" }, { "if": { @@ -43205,7 +43261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lasvirgenesunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lasvirgenesunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -43221,7 +43277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lawrencepublicschools-43eeb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lawrencepublicschools-43eeb8.jpg" }, { "if": { @@ -43236,7 +43292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/learningacademiestrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/learningacademiestrust-7a837c.png" }, { "if": { @@ -43251,7 +43307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/learningpartnersacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/learningpartnersacademytrust-7a837c.jpg" }, { "if": { @@ -43266,7 +43322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leedscitycouncil-ef57c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leedscitycouncil-ef57c6.jpg" }, { "if": { @@ -43281,7 +43337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leighacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leighacademiestrust-7a837c.jpg" }, { "if": { @@ -43296,7 +43352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leoncountyschools-e8bc2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leoncountyschools-e8bc2a.jpg" }, { "if": { @@ -43312,7 +43368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lewisvilleindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/lewisvilleindependentschooldistrict-d19570.png" }, { "if": { @@ -43327,7 +43383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lierkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lierkommune-ee5f1f.svg" }, { "if": { @@ -43342,7 +43398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lighthouseschoolspartnership-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lighthouseschoolspartnership-26e9df.jpg" }, { "if": { @@ -43357,7 +43413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lillestromkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lillestromkommune-ee5f1f.svg" }, { "if": { @@ -43373,7 +43429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/limestonedistrictschoolboard-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/limestonedistrictschoolboard-57bf82.png" }, { "if": { @@ -43388,7 +43444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/limpopodepartmentofeducation-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/limpopodepartmentofeducation-3306c5.jpg" }, { "if": { @@ -43404,7 +43460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolncountyschooldistrict-330cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincolncountyschooldistrict-330cad.png" }, { "if": { @@ -43420,7 +43476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnpublicschools-5b4c13.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnpublicschools-5b4c13.png" }, { "if": { @@ -43435,7 +43491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnshirecountycouncil-2bbb7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnshirecountycouncil-2bbb7b.jpg" }, { "if": { @@ -43450,7 +43506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lindesneskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lindesneskommune-ee5f1f.svg" }, { "if": { @@ -43465,7 +43521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lingfieldeducationtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lingfieldeducationtrust-7a837c.jpg" }, { "if": { @@ -43480,7 +43536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linkacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linkacademytrust-7a837c.jpg" }, { "if": { @@ -43495,7 +43551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linkopingskommun-0f2dfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linkopingskommun-0f2dfb.jpg" }, { "if": { @@ -43510,7 +43566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lionacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lionacademytrust-7a837c.jpg" }, { "if": { @@ -43525,7 +43581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lionhearteducationaltrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lionhearteducationaltrust-7a837c.jpg" }, { "if": { @@ -43540,7 +43596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lislecommunityunitschooldistrict202-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lislecommunityunitschooldistrict202-6d6198.jpg" }, { "if": { @@ -43555,7 +43611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littlerockschooldistrict-c3d23c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/littlerockschooldistrict-c3d23c.jpg" }, { "if": { @@ -43570,7 +43626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lohjankaupunki-4ccccf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lohjankaupunki-4ccccf.jpg" }, { "if": { @@ -43585,7 +43641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofbarkinganddagenham-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofbarkinganddagenham-657027.svg" }, { "if": { @@ -43600,7 +43656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofbarnet-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofbarnet-657027.svg" }, { "if": { @@ -43615,7 +43671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofbexley-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofbexley-657027.svg" }, { "if": { @@ -43630,7 +43686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofbrent-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofbrent-657027.svg" }, { "if": { @@ -43645,7 +43701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofbromley-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofbromley-657027.svg" }, { "if": { @@ -43660,7 +43716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofcamden-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofcamden-657027.svg" }, { "if": { @@ -43675,7 +43731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofcroydon-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofcroydon-657027.svg" }, { "if": { @@ -43690,7 +43746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofealing-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofealing-657027.svg" }, { "if": { @@ -43705,7 +43761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofenfield-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofenfield-657027.svg" }, { "if": { @@ -43720,7 +43776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofhackney-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofhackney-657027.svg" }, { "if": { @@ -43735,7 +43791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofhammersmithandfulham-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofhammersmithandfulham-657027.svg" }, { "if": { @@ -43750,7 +43806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofharingey-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofharingey-657027.svg" }, { "if": { @@ -43765,7 +43821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofharrow-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofharrow-657027.svg" }, { "if": { @@ -43780,7 +43836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofhavering-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofhavering-657027.svg" }, { "if": { @@ -43795,7 +43851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofhillingdon-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofhillingdon-657027.svg" }, { "if": { @@ -43810,7 +43866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofhounslow-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofhounslow-657027.svg" }, { "if": { @@ -43825,7 +43881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofislington-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofislington-657027.svg" }, { "if": { @@ -43840,7 +43896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughoflambeth-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughoflambeth-657027.svg" }, { "if": { @@ -43855,7 +43911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughoflewisham-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughoflewisham-657027.svg" }, { "if": { @@ -43870,7 +43926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofmerton-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofmerton-657027.svg" }, { "if": { @@ -43885,7 +43941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofnewham-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofnewham-657027.svg" }, { "if": { @@ -43901,7 +43957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofrichmonduponthames-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofrichmonduponthames-657027.svg" }, { "if": { @@ -43916,7 +43972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofsouthwark-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofsouthwark-657027.svg" }, { "if": { @@ -43931,7 +43987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofsutton-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofsutton-657027.svg" }, { "if": { @@ -43946,7 +44002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughoftowerhamlets-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughoftowerhamlets-657027.svg" }, { "if": { @@ -43961,7 +44017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofwalthamforest-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofwalthamforest-657027.svg" }, { "if": { @@ -43976,7 +44032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofwandsworth-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofwandsworth-657027.svg" }, { "if": { @@ -43992,7 +44048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londondistrictcatholicschoolboard-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/londondistrictcatholicschoolboard-57bf82.png" }, { "if": { @@ -44008,7 +44064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longbeachunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longbeachunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -44024,7 +44080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longviewpublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longviewpublicschools-48f47a.jpg" }, { "if": { @@ -44039,7 +44095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lorenskogkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lorenskogkommune-ee5f1f.svg" }, { "if": { @@ -44055,7 +44111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -44071,7 +44127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/loudouncountypublicschools-3cf7e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/loudouncountypublicschools-3cf7e1.jpg" }, { "if": { @@ -44086,7 +44142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisrielschooldivision-650beb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/louisrielschooldivision-650beb.svg" }, { "if": { @@ -44102,7 +44158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luciamarunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luciamarunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -44119,7 +44175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lutheraneducationaustralia-2c0dd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lutheraneducationaustralia-2c0dd7.jpg" }, { "if": { @@ -44134,7 +44190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lutonboroughcouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lutonboroughcouncil-7a837c.jpg" }, { "if": { @@ -44150,7 +44206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lynwoodunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lynwoodunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -44166,7 +44222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madisonmetropolitanschooldistrict-ac5479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madisonmetropolitanschooldistrict-ac5479.jpg" }, { "if": { @@ -44182,7 +44238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madisonschooldistrict321-d7611a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madisonschooldistrict321-d7611a.jpg" }, { "if": { @@ -44197,7 +44253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainetownshiphighschooldistrict207-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mainetownshiphighschooldistrict207-6d6198.jpg" }, { "if": { @@ -44213,7 +44269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manateecountyschooldistrict-e8bc2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/manateecountyschooldistrict-e8bc2a.png" }, { "if": { @@ -44228,7 +44284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manchestercitycouncil-7a837c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manchestercitycouncil-7a837c.svg" }, { "if": { @@ -44244,7 +44300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mantecaunifiedschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/mantecaunifiedschooldistrict-ff98ff.png" }, { "if": { @@ -44259,7 +44315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marchesacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marchesacademytrust-7a837c.jpg" }, { "if": { @@ -44274,7 +44330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maritimeacademytrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/maritimeacademytrust-7a837c.png" }, { "if": { @@ -44289,7 +44345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marquardtschooldistrict15-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/marquardtschooldistrict15-6d6198.png" }, { "if": { @@ -44305,7 +44361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshallpublicschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshallpublicschools-aa6f23.jpg" }, { "if": { @@ -44321,7 +44377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marysvilleschooldistrict25-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marysvilleschooldistrict25-48f47a.jpg" }, { "if": { @@ -44336,7 +44392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/materchristimultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/materchristimultiacademytrust-7a837c.jpg" }, { "if": { @@ -44352,7 +44408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcallenindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcallenindependentschooldistrict-d19570.jpg" }, { "if": { @@ -44368,7 +44424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/medfordschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/medfordschooldistrict-330cad.jpg" }, { "if": { @@ -44384,7 +44440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melbournearchdiocesecatholicschools-1fc2f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/melbournearchdiocesecatholicschools-1fc2f5.jpg" }, { "if": { @@ -44399,7 +44455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melhuskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/melhuskommune-ee5f1f.svg" }, { "if": { @@ -44415,7 +44471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeredeleducationnationaledelalphabetisationetdelapromotiondeslanguesnationales-3dba23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeredeleducationnationaledelalphabetisationetdelapromotiondeslanguesnationales-3dba23.jpg" }, { "if": { @@ -44430,7 +44486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meridiantrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meridiantrust-26e9df.jpg" }, { "if": { @@ -44446,7 +44502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mesquiteindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mesquiteindependentschooldistrict-d19570.jpg" }, { "if": { @@ -44461,7 +44517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestokosice-08fea1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestokosice-08fea1.jpg" }, { "if": { @@ -44477,7 +44533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miamidadecountypublicschools-e8bc2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/miamidadecountypublicschools-e8bc2a.png" }, { "if": { @@ -44492,7 +44548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miastogdansk-83282a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miastogdansk-83282a.jpg" }, { "if": { @@ -44507,7 +44563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miastokatowice-83282a.png" + "then": "https://data.mapcomplete.org/nsi//logos/miastokatowice-83282a.png" }, { "if": { @@ -44524,7 +44580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miastostolecznewarszawa-83282a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miastostolecznewarszawa-83282a.jpg" }, { "if": { @@ -44539,7 +44595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/middlesbroughboroughcouncil-7a837c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/middlesbroughboroughcouncil-7a837c.svg" }, { "if": { @@ -44554,7 +44610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midlothiancouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midlothiancouncil-7782f9.jpg" }, { "if": { @@ -44569,7 +44625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midsomernortonschoolspartnership-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midsomernortonschoolspartnership-26e9df.jpg" }, { "if": { @@ -44585,7 +44641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milliegitimbakanligi-44c4b9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/milliegitimbakanligi-44c4b9.svg" }, { "if": { @@ -44601,7 +44657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milpitasunifiedschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/milpitasunifiedschooldistrict-ff98ff.png" }, { "if": { @@ -44617,7 +44673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milwaukeepublicschools-ac5479.png" + "then": "https://data.mapcomplete.org/nsi//logos/milwaukeepublicschools-ac5479.png" }, { "if": { @@ -44632,7 +44688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeredeleducationnationale-e43c15.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeredeleducationnationale-e43c15.svg" }, { "if": { @@ -44647,7 +44703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeredeleducationnationaleetdelajeunesse-9d3cb1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeredeleducationnationaleetdelajeunesse-9d3cb1.svg" }, { "if": { @@ -44662,7 +44718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodaeducacao-52f4f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodaeducacao-52f4f1.jpg" }, { "if": { @@ -44678,7 +44734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodeeducacion-5e33f0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacion-5e33f0.svg" }, { "if": { @@ -44694,7 +44750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodeeducacion-72f85c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacion-72f85c.png" }, { "if": { @@ -44710,7 +44766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodeeducacion-d21d34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacion-d21d34.jpg" }, { "if": { @@ -44726,7 +44782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodeeducacion-de9622.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacion-de9622.png" }, { "if": { @@ -44741,7 +44797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodeeducacionnacional-9772be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacionnacional-9772be.jpg" }, { "if": { @@ -44756,7 +44812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodelpoderpopularparalaeducaciondevenezuela-337fa3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodelpoderpopularparalaeducaciondevenezuela-337fa3.jpg" }, { "if": { @@ -44771,7 +44827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerodellistruzione-5be443.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerodellistruzione-5be443.jpg" }, { "if": { @@ -44787,7 +44843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerodellistruzionedelluniversitaedellaricerca-5be443.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerodellistruzionedelluniversitaedellaricerca-5be443.jpg" }, { "if": { @@ -44803,7 +44859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstwoedukacjinarodowej-83282a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstwoedukacjinarodowej-83282a.jpg" }, { "if": { @@ -44818,7 +44874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstwokulturyidziedzictwanarodowego-83282a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstwokulturyidziedzictwanarodowego-83282a.jpg" }, { "if": { @@ -44833,7 +44889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofeducation-d02396.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofeducation-d02396.jpg" }, { "if": { @@ -44849,7 +44905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minneapolispublicschools-177d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minneapolispublicschools-177d23.jpg" }, { "if": { @@ -44865,7 +44921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missionconsolidatedindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missionconsolidatedindependentschooldistrict-d19570.jpg" }, { "if": { @@ -44880,7 +44936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moldekommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moldekommune-ee5f1f.jpg" }, { "if": { @@ -44895,7 +44951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monmouthshirecountycouncil-3a6545.svg" + "then": "https://data.mapcomplete.org/nsi//logos/monmouthshirecountycouncil-3a6545.svg" }, { "if": { @@ -44911,7 +44967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monroepublicschools-547ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monroepublicschools-547ddd.jpg" }, { "if": { @@ -44927,7 +44983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montebellounifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montebellounifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -44943,7 +44999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montgomerycountypublicschools-41ceb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montgomerycountypublicschools-41ceb1.jpg" }, { "if": { @@ -44959,7 +45015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montgomerycountypublicschools-3cf7e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/montgomerycountypublicschools-3cf7e1.png" }, { "if": { @@ -44975,7 +45031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montgomerypublicschools-cc53cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/montgomerypublicschools-cc53cf.png" }, { "if": { @@ -44991,7 +45047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morganhillunifiedschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/morganhillunifiedschooldistrict-ff98ff.png" }, { "if": { @@ -45006,7 +45062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mosskommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/mosskommune-ee5f1f.png" }, { "if": { @@ -45021,7 +45077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mpumalangadepartmentofeducation-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mpumalangadepartmentofeducation-3306c5.jpg" }, { "if": { @@ -45036,7 +45092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/muhammadiyah-1c354f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/muhammadiyah-1c354f.svg" }, { "if": { @@ -45051,7 +45107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/multnomaheducationservicedistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/multnomaheducationservicedistrict-330cad.jpg" }, { "if": { @@ -45066,7 +45122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipiodemarechalcandidorondon-91354a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/municipiodemarechalcandidorondon-91354a.jpg" }, { "if": { @@ -45081,7 +45137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipiodemucuri-9d6ced.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/municipiodemucuri-9d6ced.jpg" }, { "if": { @@ -45096,7 +45152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipiodeteixeiradefreitas-9d6ced.svg" + "then": "https://data.mapcomplete.org/nsi//logos/municipiodeteixeiradefreitas-9d6ced.svg" }, { "if": { @@ -45111,7 +45167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/namsoskommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/namsoskommune-ee5f1f.jpg" }, { "if": { @@ -45126,7 +45182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/napervillecommunityunitschooldistrict203-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/napervillecommunityunitschooldistrict203-6d6198.jpg" }, { "if": { @@ -45142,7 +45198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neboschooldistrict-614f2b.png" + "then": "https://data.mapcomplete.org/nsi//logos/neboschooldistrict-614f2b.png" }, { "if": { @@ -45158,7 +45214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkcitydepartmentofeducation-0f6971.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkcitydepartmentofeducation-0f6971.jpg" }, { "if": { @@ -45173,7 +45229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newcastlecitycouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newcastlecitycouncil-7a837c.jpg" }, { "if": { @@ -45189,7 +45245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newhallschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newhallschooldistrict-f343c1.jpg" }, { "if": { @@ -45204,7 +45260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportcitycouncil-3a6545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-3a6545.jpg" }, { "if": { @@ -45220,7 +45276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportmesaunifiedschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newportmesaunifiedschooldistrict-4ed216.jpg" }, { "if": { @@ -45235,7 +45291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexusmultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nexusmultiacademytrust-7a837c.jpg" }, { "if": { @@ -45250,7 +45306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nicholaspostgatecatholicacademytrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nicholaspostgatecatholicacademytrust-26e9df.jpg" }, { "if": { @@ -45266,7 +45322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nilestownshiphighschooldistrict219-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nilestownshiphighschooldistrict219-6d6198.jpg" }, { "if": { @@ -45281,7 +45337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordrefollokommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nordrefollokommune-ee5f1f.svg" }, { "if": { @@ -45296,7 +45352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolkcountycouncil-00e0d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolkcountycouncil-00e0d0.jpg" }, { "if": { @@ -45311,7 +45367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norrkopingskommun-0f2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/norrkopingskommun-0f2dfb.png" }, { "if": { @@ -45327,7 +45383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northclackamasschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northclackamasschooldistrict-330cad.jpg" }, { "if": { @@ -45343,7 +45399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northeastindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northeastindependentschooldistrict-d19570.jpg" }, { "if": { @@ -45358,7 +45414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northeastlearningtrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/northeastlearningtrust-7a837c.png" }, { "if": { @@ -45373,7 +45429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northlanarkshirecouncil-7782f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/northlanarkshirecouncil-7782f9.png" }, { "if": { @@ -45388,7 +45444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northlincolnshirecouncil-ef57c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northlincolnshirecouncil-ef57c6.jpg" }, { "if": { @@ -45404,7 +45460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northshoreschooldistrict112-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northshoreschooldistrict112-6d6198.jpg" }, { "if": { @@ -45419,7 +45475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northsomersetcouncil-1c670d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northsomersetcouncil-1c670d.jpg" }, { "if": { @@ -45434,7 +45490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northtynesidecouncil-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/northtynesidecouncil-7a837c.png" }, { "if": { @@ -45450,7 +45506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestacademiestrustlimited-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwestacademiestrustlimited-7a837c.jpg" }, { "if": { @@ -45465,7 +45521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestdepartmentofeducation-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwestdepartmentofeducation-3306c5.jpg" }, { "if": { @@ -45480,7 +45536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northyorkshirecouncil-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/northyorkshirecouncil-7a837c.png" }, { "if": { @@ -45495,7 +45551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northerncapedepartmentofeducation-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northerncapedepartmentofeducation-3306c5.jpg" }, { "if": { @@ -45510,7 +45566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northerneducationtrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northerneducationtrust-26e9df.jpg" }, { "if": { @@ -45525,7 +45581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northporteastnorthportunionfreeschooldistrict-7d0023.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northporteastnorthportunionfreeschooldistrict-7d0023.jpg" }, { "if": { @@ -45540,7 +45596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northridgelocalschools-a7daad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northridgelocalschools-a7daad.jpg" }, { "if": { @@ -45556,7 +45612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northshoreschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northshoreschooldistrict-48f47a.jpg" }, { "if": { @@ -45572,7 +45628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northsideindependentschooldistrict-901da6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northsideindependentschooldistrict-901da6.jpg" }, { "if": { @@ -45587,7 +45643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northumberlandcountycouncil-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/northumberlandcountycouncil-7a837c.png" }, { "if": { @@ -45603,7 +45659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norwalklamiradaunifiedschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/norwalklamiradaunifiedschooldistrict-f343c1.png" }, { "if": { @@ -45618,7 +45674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norwichpublicschools-547ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norwichpublicschools-547ddd.jpg" }, { "if": { @@ -45633,7 +45689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nottinghamcitycouncil-2bbb7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nottinghamcitycouncil-2bbb7b.jpg" }, { "if": { @@ -45648,7 +45704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nottinghamshirecountycouncil-2bbb7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nottinghamshirecountycouncil-2bbb7b.jpg" }, { "if": { @@ -45664,7 +45720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novicommunityschooldistrict-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novicommunityschooldistrict-aa6f23.jpg" }, { "if": { @@ -45680,7 +45736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oakparkelementaryschooldistrict97-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oakparkelementaryschooldistrict97-6d6198.jpg" }, { "if": { @@ -45695,7 +45751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oasiscommunitylearning-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/oasiscommunitylearning-7a837c.png" }, { "if": { @@ -45711,7 +45767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oceanviewschooldistrict-4ed216.png" + "then": "https://data.mapcomplete.org/nsi//logos/oceanviewschooldistrict-4ed216.png" }, { "if": { @@ -45726,7 +45782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olathepublicschools-43eeb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/olathepublicschools-43eeb8.jpg" }, { "if": { @@ -45742,7 +45798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/olympiaschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/olympiaschooldistrict-48f47a.jpg" }, { "if": { @@ -45758,7 +45814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangecountypublicschools-e8bc2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orangecountypublicschools-e8bc2a.jpg" }, { "if": { @@ -45774,7 +45830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangeunifiedschooldistrict-4ed216.png" + "then": "https://data.mapcomplete.org/nsi//logos/orangeunifiedschooldistrict-4ed216.png" }, { "if": { @@ -45790,7 +45846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregoncityschooldistrict-a7daad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oregoncityschooldistrict-a7daad.jpg" }, { "if": { @@ -45806,7 +45862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregoncityschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oregoncityschooldistrict-330cad.jpg" }, { "if": { @@ -45821,7 +45877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orklandkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/orklandkommune-ee5f1f.svg" }, { "if": { @@ -45837,7 +45893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ormistonacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ormistonacademiestrust-7a837c.jpg" }, { "if": { @@ -45852,7 +45908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osbornecooperativeacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osbornecooperativeacademytrust-7a837c.jpg" }, { "if": { @@ -45867,7 +45923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oslokommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oslokommune-ee5f1f.jpg" }, { "if": { @@ -45883,7 +45939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osseoareaschools-177d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osseoareaschools-177d23.jpg" }, { "if": { @@ -45898,7 +45954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ostfoldfylkeskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ostfoldfylkeskommune-ee5f1f.svg" }, { "if": { @@ -45913,7 +45969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oswegocommunityunitschooldistrict308-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/oswegocommunityunitschooldistrict308-6d6198.png" }, { "if": { @@ -45929,7 +45985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottawacarletondistrictschoolboard-57bf82.png" + "then": "https://data.mapcomplete.org/nsi//logos/ottawacarletondistrictschoolboard-57bf82.png" }, { "if": { @@ -45945,7 +46001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ourcommunitymultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ourcommunitymultiacademytrust-7a837c.jpg" }, { "if": { @@ -45961,7 +46017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ourladyimmaculatecatholicacademiestrustltd-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ourladyimmaculatecatholicacademiestrustltd-7a837c.jpg" }, { "if": { @@ -45976,7 +46032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ourladyofthemagnificatmultiacademycompany-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ourladyofthemagnificatmultiacademycompany-7a837c.png" }, { "if": { @@ -45991,7 +46047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oygardenkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/oygardenkommune-ee5f1f.svg" }, { "if": { @@ -46007,7 +46063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmdaleschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmdaleschooldistrict-f343c1.jpg" }, { "if": { @@ -46023,7 +46079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palosverdespeninsulaunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palosverdespeninsulaunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -46039,7 +46095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/paramountunifiedschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/paramountunifiedschooldistrict-f343c1.png" }, { "if": { @@ -46054,7 +46110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkwayschools-9c7c62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkwayschools-9c7c62.jpg" }, { "if": { @@ -46070,7 +46126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pasadenaunifiedschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/pasadenaunifiedschooldistrict-f343c1.png" }, { "if": { @@ -46086,7 +46142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pascoschooldistrict1-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pascoschooldistrict1-48f47a.jpg" }, { "if": { @@ -46102,7 +46158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pasoroblesjointunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pasoroblesjointunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -46118,7 +46174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peeldistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peeldistrictschoolboard-57bf82.jpg" }, { "if": { @@ -46134,7 +46190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peoriaunifiedschooldistrict-59e2c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peoriaunifiedschooldistrict-59e2c9.jpg" }, { "if": { @@ -46150,7 +46206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pflugervilleindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pflugervilleindependentschooldistrict-d19570.jpg" }, { "if": { @@ -46166,7 +46222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharrsanjuanalamoindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pharrsanjuanalamoindependentschooldistrict-d19570.jpg" }, { "if": { @@ -46182,7 +46238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pickenscountyschooldistrict-cc53cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pickenscountyschooldistrict-cc53cf.jpg" }, { "if": { @@ -46197,7 +46253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pinellascountyschools-e8bc2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/pinellascountyschools-e8bc2a.png" }, { "if": { @@ -46213,7 +46269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/placentiayorbalindaunifiedschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/placentiayorbalindaunifiedschooldistrict-4ed216.jpg" }, { "if": { @@ -46228,7 +46284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plainfieldcommunityconsolidatedschooldistrict202-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/plainfieldcommunityconsolidatedschooldistrict202-6d6198.png" }, { "if": { @@ -46243,7 +46299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plymouthcitycouncil-56cb82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plymouthcitycouncil-56cb82.jpg" }, { "if": { @@ -46259,7 +46315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plymouthcantoncommunityschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plymouthcantoncommunityschools-aa6f23.jpg" }, { "if": { @@ -46275,7 +46331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poconomountainschooldistrict-664aaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poconomountainschooldistrict-664aaf.jpg" }, { "if": { @@ -46291,7 +46347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pomonaunifiedschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/pomonaunifiedschooldistrict-f343c1.png" }, { "if": { @@ -46306,7 +46362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porsgrunnkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porsgrunnkommune-ee5f1f.jpg" }, { "if": { @@ -46322,7 +46378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porthuronareaschooldistrict-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porthuronareaschooldistrict-aa6f23.jpg" }, { "if": { @@ -46338,7 +46394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portagepublicschools-aa6f23.png" + "then": "https://data.mapcomplete.org/nsi//logos/portagepublicschools-aa6f23.png" }, { "if": { @@ -46354,7 +46410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portervilleunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portervilleunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -46370,7 +46426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandpublicschools-c6f386.png" + "then": "https://data.mapcomplete.org/nsi//logos/portlandpublicschools-c6f386.png" }, { "if": { @@ -46386,7 +46442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandpublicschools-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portlandpublicschools-330cad.jpg" }, { "if": { @@ -46401,7 +46457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poudreschooldistrict-64c3e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poudreschooldistrict-64c3e7.jpg" }, { "if": { @@ -46416,7 +46472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiatbieszczadzki-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiatbieszczadzki-83282a.svg" }, { "if": { @@ -46431,7 +46487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiatbilgorajski-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiatbilgorajski-83282a.svg" }, { "if": { @@ -46446,7 +46502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiathrubieszowski-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiathrubieszowski-83282a.svg" }, { "if": { @@ -46461,7 +46517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiatleczynski-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiatleczynski-83282a.svg" }, { "if": { @@ -46476,7 +46532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiatlubartowski-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiatlubartowski-83282a.svg" }, { "if": { @@ -46491,7 +46547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiatlubelski-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiatlubelski-83282a.svg" }, { "if": { @@ -46506,7 +46562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiatradzynski-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiatradzynski-83282a.svg" }, { "if": { @@ -46521,7 +46577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiatrycki-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiatrycki-83282a.svg" }, { "if": { @@ -46536,7 +46592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powiattomaszowski-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/powiattomaszowski-83282a.svg" }, { "if": { @@ -46551,7 +46607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pragapolnoc-83282a.png" + "then": "https://data.mapcomplete.org/nsi//logos/pragapolnoc-83282a.png" }, { "if": { @@ -46566,7 +46622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituradeitapetinga-9d6ced.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituradeitapetinga-9d6ced.png" }, { "if": { @@ -46581,7 +46637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeiturademaracanau-04d5fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeiturademaracanau-04d5fb.jpg" }, { "if": { @@ -46596,7 +46652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituradonatal-1a267e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituradonatal-1a267e.svg" }, { "if": { @@ -46611,7 +46667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldealegrete-ee71aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldealegrete-ee71aa.svg" }, { "if": { @@ -46626,7 +46682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldearmacaodosbuzios-df8785.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldearmacaodosbuzios-df8785.png" }, { "if": { @@ -46641,7 +46697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldechapeco-6a2dca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldechapeco-6a2dca.jpg" }, { "if": { @@ -46656,7 +46712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldeflorianopolis-6a2dca.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeflorianopolis-6a2dca.png" }, { "if": { @@ -46671,7 +46727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldefortaleza-04d5fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldefortaleza-04d5fb.jpg" }, { "if": { @@ -46686,7 +46742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldehidrolandia-04d5fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldehidrolandia-04d5fb.jpg" }, { "if": { @@ -46701,7 +46757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldejoinville-6a2dca.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldejoinville-6a2dca.png" }, { "if": { @@ -46716,7 +46772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldemarica-df8785.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldemarica-df8785.jpg" }, { "if": { @@ -46731,7 +46787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldepassofundo-ee71aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldepassofundo-ee71aa.png" }, { "if": { @@ -46747,7 +46803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldesaopaulo-5e2aa2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldesaopaulo-5e2aa2.svg" }, { "if": { @@ -46762,7 +46818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldeseropedica-df8785.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeseropedica-df8785.jpg" }, { "if": { @@ -46777,7 +46833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldesobral-04d5fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldesobral-04d5fb.jpg" }, { "if": { @@ -46793,7 +46849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puyallupschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puyallupschooldistrict-48f47a.jpg" }, { "if": { @@ -46809,7 +46865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queenbeeschooldistrict16-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/queenbeeschooldistrict16-6d6198.png" }, { "if": { @@ -46825,7 +46881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/racineunifiedschooldistrict-ac5479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/racineunifiedschooldistrict-ac5479.jpg" }, { "if": { @@ -46841,7 +46897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rainbowdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rainbowdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -46857,7 +46913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rapidcityareaschools-e06b31.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rapidcityareaschools-e06b31.jpg" }, { "if": { @@ -46872,7 +46928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reach2academytrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reach2academytrust-26e9df.jpg" }, { "if": { @@ -46888,7 +46944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/readingschooldistrict-664aaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/readingschooldistrict-664aaf.jpg" }, { "if": { @@ -46904,7 +46960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redkitelearningtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redkitelearningtrust-7a837c.jpg" }, { "if": { @@ -46919,7 +46975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redcarandclevelandboroughcouncil-7a837c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/redcarandclevelandboroughcouncil-7a837c.svg" }, { "if": { @@ -46935,7 +46991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redondobeachunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redondobeachunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -46950,7 +47006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionalverbandsaarbrucken-97fbd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regionalverbandsaarbrucken-97fbd9.jpg" }, { "if": { @@ -46966,7 +47022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rentonschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rentonschooldistrict-48f47a.jpg" }, { "if": { @@ -46982,7 +47038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rialtounifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rialtounifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -46997,7 +47053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/richlandcountyschooldistricttwo-b0049f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/richlandcountyschooldistricttwo-b0049f.jpg" }, { "if": { @@ -47013,7 +47069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/richlandschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/richlandschooldistrict-48f47a.jpg" }, { "if": { @@ -47028,7 +47084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ringerikekommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ringerikekommune-ee5f1f.jpg" }, { "if": { @@ -47043,7 +47099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ringsakerkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ringsakerkommune-ee5f1f.jpg" }, { "if": { @@ -47058,7 +47114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robbinsdaleareaschools-177d23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robbinsdaleareaschools-177d23.jpg" }, { "if": { @@ -47074,7 +47130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochestercityschooldistrict-7d0023.png" + "then": "https://data.mapcomplete.org/nsi//logos/rochestercityschooldistrict-7d0023.png" }, { "if": { @@ -47090,7 +47146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockislandmilanschooldistrict41-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rockislandmilanschooldistrict41-6d6198.jpg" }, { "if": { @@ -47105,7 +47161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romancatholicarchdioceseofhartford-547ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romancatholicarchdioceseofhartford-547ddd.jpg" }, { "if": { @@ -47121,7 +47177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roundrockindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/roundrockindependentschooldistrict-d19570.png" }, { "if": { @@ -47137,7 +47193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rowlandunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rowlandunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -47152,7 +47208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalboroughofgreenwich-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/royalboroughofgreenwich-657027.svg" }, { "if": { @@ -47167,7 +47223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalboroughofkensingtonandchelsea-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/royalboroughofkensingtonandchelsea-657027.svg" }, { "if": { @@ -47182,7 +47238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalboroughofkingstonuponthames-657027.svg" + "then": "https://data.mapcomplete.org/nsi//logos/royalboroughofkingstonuponthames-657027.svg" }, { "if": { @@ -47197,7 +47253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rutlandcountycouncil-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/rutlandcountycouncil-7a837c.png" }, { "if": { @@ -47213,7 +47269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saddlebackvalleyunifiedschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saddlebackvalleyunifiedschooldistrict-4ed216.jpg" }, { "if": { @@ -47229,7 +47285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintlouispublicschools-9c7c62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintlouispublicschools-9c7c62.jpg" }, { "if": { @@ -47245,7 +47301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintpaulpublicschools-177d23.png" + "then": "https://data.mapcomplete.org/nsi//logos/saintpaulpublicschools-177d23.png" }, { "if": { @@ -47261,7 +47317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salemkeizerpublicschools-330cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/salemkeizerpublicschools-330cad.png" }, { "if": { @@ -47276,7 +47332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salfordcitycouncil-1beca5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salfordcitycouncil-1beca5.jpg" }, { "if": { @@ -47292,7 +47348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanantonioindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanantonioindependentschooldistrict-d19570.jpg" }, { "if": { @@ -47308,7 +47364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanbenitoconsolidatedindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanbenitoconsolidatedindependentschooldistrict-d19570.jpg" }, { "if": { @@ -47323,7 +47379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegounifiedschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegounifiedschooldistrict-ff98ff.png" }, { "if": { @@ -47339,7 +47395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanfelipedelrioconsolidatedindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanfelipedelrioconsolidatedindependentschooldistrict-d19570.jpg" }, { "if": { @@ -47355,7 +47411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanfranciscounifiedschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanfranciscounifiedschooldistrict-ff98ff.png" }, { "if": { @@ -47371,7 +47427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanjoseunifiedschooldistrict-14170b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanjoseunifiedschooldistrict-14170b.jpg" }, { "if": { @@ -47387,7 +47443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanjuanunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanjuanunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -47403,7 +47459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanluiscoastalunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanluiscoastalunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -47419,7 +47475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanramonvalleyunifiedschooldistrict-ff98ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/sanramonvalleyunifiedschooldistrict-ff98ff.png" }, { "if": { @@ -47434,7 +47490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandefjordkommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/sandefjordkommune-ee5f1f.png" }, { "if": { @@ -47449,7 +47505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandneskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sandneskommune-ee5f1f.svg" }, { "if": { @@ -47465,7 +47521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santaanaunifiedschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santaanaunifiedschooldistrict-4ed216.jpg" }, { "if": { @@ -47481,7 +47537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santamonicamalibuunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santamonicamalibuunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -47496,7 +47552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarpsborgkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sarpsborgkommune-ee5f1f.jpg" }, { "if": { @@ -47512,7 +47568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saugusunionschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saugusunionschooldistrict-f343c1.jpg" }, { "if": { @@ -47528,7 +47584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schertzcibolouniversalcityindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schertzcibolouniversalcityindependentschooldistrict-d19570.jpg" }, { "if": { @@ -47544,7 +47600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schoolcityofhammond-87f3ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schoolcityofhammond-87f3ac.jpg" }, { "if": { @@ -47559,7 +47615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schoolsdivisionofficeofdasmarinascity-966867.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schoolsdivisionofficeofdasmarinascity-966867.jpg" }, { "if": { @@ -47574,7 +47630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schoolsdivisionofficeoftagbilarancity-115e0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/schoolsdivisionofficeoftagbilarancity-115e0d.png" }, { "if": { @@ -47590,7 +47646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicschools-48f47a.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicschools-48f47a.png" }, { "if": { @@ -47605,7 +47661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariadaeducacaodoestadodesaopaulo-5e2aa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/secretariadaeducacaodoestadodesaopaulo-5e2aa2.jpg" }, { "if": { @@ -47620,7 +47676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariadaeducacaodoriograndedosul-ee71aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/secretariadaeducacaodoriograndedosul-ee71aa.png" }, { "if": { @@ -47635,7 +47691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariamunicipaldaeducacaodecuritiba-91354a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldaeducacaodecuritiba-91354a.svg" }, { "if": { @@ -47650,7 +47706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariamunicipaldaeducacaodefortaleza-04d5fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldaeducacaodefortaleza-04d5fb.jpg" }, { "if": { @@ -47665,7 +47721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodalapa-91354a.png" + "then": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodalapa-91354a.png" }, { "if": { @@ -47680,7 +47736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodecaetite-9d6ced.png" + "then": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodecaetite-9d6ced.png" }, { "if": { @@ -47695,7 +47751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodecuite-a5afcb.png" + "then": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodecuite-a5afcb.png" }, { "if": { @@ -47710,7 +47766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodefazendariogrande-91354a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodefazendariogrande-91354a.jpg" }, { "if": { @@ -47725,7 +47781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodeitaperuna-df8785.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodeitaperuna-df8785.jpg" }, { "if": { @@ -47740,7 +47796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senjakommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/senjakommune-ee5f1f.svg" }, { "if": { @@ -47756,7 +47812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sharylandindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sharylandindependentschooldistrict-d19570.jpg" }, { "if": { @@ -47772,7 +47828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shorelinepublicschools-48f47a.png" + "then": "https://data.mapcomplete.org/nsi//logos/shorelinepublicschools-48f47a.png" }, { "if": { @@ -47787,7 +47843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shropshirecouncil-7a837c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/shropshirecouncil-7a837c.svg" }, { "if": { @@ -47803,7 +47859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simcoecountydistrictschoolboard-57bf82.svg" + "then": "https://data.mapcomplete.org/nsi//logos/simcoecountydistrictschoolboard-57bf82.svg" }, { "if": { @@ -47818,7 +47874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skienkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/skienkommune-ee5f1f.svg" }, { "if": { @@ -47834,7 +47890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societyofsaintpiusx-155571.png" + "then": "https://data.mapcomplete.org/nsi//logos/societyofsaintpiusx-155571.png" }, { "if": { @@ -47849,7 +47905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solakommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/solakommune-ee5f1f.svg" }, { "if": { @@ -47864,7 +47920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetcouncil-302459.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-302459.jpg" }, { "if": { @@ -47880,7 +47936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southkitsapschooldistrict-48f47a.png" + "then": "https://data.mapcomplete.org/nsi//logos/southkitsapschooldistrict-48f47a.png" }, { "if": { @@ -47895,7 +47951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southlanarkshirecouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southlanarkshirecouncil-7782f9.jpg" }, { "if": { @@ -47911,7 +47967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spokanepublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spokanepublicschools-48f47a.jpg" }, { "if": { @@ -47927,7 +47983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springbranchindependentschooldistrict-d19570.png" + "then": "https://data.mapcomplete.org/nsi//logos/springbranchindependentschooldistrict-d19570.png" }, { "if": { @@ -47943,7 +47999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springindependentschooldistrict-d19570.jpg" }, { "if": { @@ -47959,7 +48015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldcityschooldistrict-a7daad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldcityschooldistrict-a7daad.jpg" }, { "if": { @@ -47975,7 +48031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldpublicschools-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldpublicschools-6d6198.jpg" }, { "if": { @@ -47991,7 +48047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldpublicschools-9c7c62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldpublicschools-9c7c62.jpg" }, { "if": { @@ -48007,7 +48063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldpublicschools-181f3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldpublicschools-181f3b.jpg" }, { "if": { @@ -48023,7 +48079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldpublicschools-330cad.png" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldpublicschools-330cad.png" }, { "if": { @@ -48039,7 +48095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldschooldistrict-664aaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldschooldistrict-664aaf.jpg" }, { "if": { @@ -48054,7 +48110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stthomasaquinascatholicmultiacademytrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stthomasaquinascatholicmultiacademytrust-26e9df.jpg" }, { "if": { @@ -48069,7 +48125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stthomascatholicacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stthomascatholicacademiestrust-7a837c.jpg" }, { "if": { @@ -48084,7 +48140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stcharlescommunityunitschooldistrict303-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/stcharlescommunityunitschooldistrict303-6d6198.png" }, { "if": { @@ -48099,7 +48155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadgent-4b4187.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadgent-4b4187.jpg" }, { "if": { @@ -48114,7 +48170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtaachen-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtaachen-1fea76.svg" }, { "if": { @@ -48129,7 +48185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtalsdorf-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtalsdorf-1fea76.svg" }, { "if": { @@ -48144,7 +48200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtaugsburg-46895d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtaugsburg-46895d.jpg" }, { "if": { @@ -48159,7 +48215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbern-30df7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbern-30df7c.jpg" }, { "if": { @@ -48174,7 +48230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbielefeld-1fea76.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbielefeld-1fea76.png" }, { "if": { @@ -48189,7 +48245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbonn-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbonn-1fea76.jpg" }, { "if": { @@ -48204,7 +48260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtchemnitz-9699d0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtchemnitz-9699d0.svg" }, { "if": { @@ -48219,7 +48275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtduisburg-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtduisburg-1fea76.jpg" }, { "if": { @@ -48234,7 +48290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtduren-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtduren-1fea76.svg" }, { "if": { @@ -48249,7 +48305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtdusseldorf-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtdusseldorf-1fea76.jpg" }, { "if": { @@ -48264,7 +48320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadterfurt-3f6a1d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadterfurt-3f6a1d.svg" }, { "if": { @@ -48279,7 +48335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadteschweiler-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadteschweiler-1fea76.svg" }, { "if": { @@ -48294,7 +48350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtessen-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtessen-1fea76.jpg" }, { "if": { @@ -48309,7 +48365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgiessen-127a2c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgiessen-127a2c.svg" }, { "if": { @@ -48324,7 +48380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadthallesaale-08f4e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadthallesaale-08f4e1.jpg" }, { "if": { @@ -48339,7 +48395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtherford-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtherford-1fea76.svg" }, { "if": { @@ -48354,7 +48410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtherzogenrath-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtherzogenrath-1fea76.svg" }, { "if": { @@ -48369,7 +48425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkarlsruhe-0a18e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-0a18e7.png" }, { "if": { @@ -48384,7 +48440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkoln-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkoln-1fea76.jpg" }, { "if": { @@ -48399,7 +48455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtleipzig-9699d0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtleipzig-9699d0.svg" }, { "if": { @@ -48414,7 +48470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmainz-23163a.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmainz-23163a.png" }, { "if": { @@ -48429,7 +48485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmoers-1fea76.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmoers-1fea76.png" }, { "if": { @@ -48444,7 +48500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmunster-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmunster-1fea76.jpg" }, { "if": { @@ -48459,7 +48515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtneuss-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtneuss-1fea76.svg" }, { "if": { @@ -48474,7 +48530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtnurnberg-46895d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtnurnberg-46895d.svg" }, { "if": { @@ -48489,7 +48545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtplauen-9699d0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtplauen-9699d0.svg" }, { "if": { @@ -48504,7 +48560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtsanktaugustin-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtsanktaugustin-1fea76.svg" }, { "if": { @@ -48519,7 +48575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtstolberg-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtstolberg-1fea76.svg" }, { "if": { @@ -48534,7 +48590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtvelbert-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtvelbert-1fea76.svg" }, { "if": { @@ -48549,7 +48605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwiesbaden-127a2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwiesbaden-127a2c.jpg" }, { "if": { @@ -48564,7 +48620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwinterthur-25b252.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwinterthur-25b252.png" }, { "if": { @@ -48579,7 +48635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwitten-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwitten-1fea76.jpg" }, { "if": { @@ -48594,7 +48650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwuppertal-1fea76.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwuppertal-1fea76.svg" }, { "if": { @@ -48609,7 +48665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadteregionaachen-1fea76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadteregionaachen-1fea76.jpg" }, { "if": { @@ -48624,7 +48680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staffordshireuniversityacademiestrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/staffordshireuniversityacademiestrust-26e9df.jpg" }, { "if": { @@ -48639,7 +48695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stangekommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stangekommune-ee5f1f.svg" }, { "if": { @@ -48654,7 +48710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stavangerkommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/stavangerkommune-ee5f1f.png" }, { "if": { @@ -48669,7 +48725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steinkjerkommune-ee5f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/steinkjerkommune-ee5f1f.png" }, { "if": { @@ -48684,7 +48740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjordalkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stjordalkommune-ee5f1f.svg" }, { "if": { @@ -48699,7 +48755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stordkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stordkommune-ee5f1f.svg" }, { "if": { @@ -48714,7 +48770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stredoceskykraj-972665.png" + "then": "https://data.mapcomplete.org/nsi//logos/stredoceskykraj-972665.png" }, { "if": { @@ -48729,7 +48785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunderlandcitycouncil-7a837c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sunderlandcitycouncil-7a837c.svg" }, { "if": { @@ -48744,7 +48800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sundsvallskommun-0f2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/sundsvallskommun-0f2dfb.png" }, { "if": { @@ -48759,7 +48815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunnfjordkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sunnfjordkommune-ee5f1f.svg" }, { "if": { @@ -48774,7 +48830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surreycountycouncil-067b74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surreycountycouncil-067b74.jpg" }, { "if": { @@ -48789,7 +48845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swaleacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swaleacademiestrust-7a837c.jpg" }, { "if": { @@ -48805,7 +48861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacomapublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacomapublicschools-48f47a.jpg" }, { "if": { @@ -48820,7 +48876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/targowek-83282a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/targowek-83282a.jpg" }, { "if": { @@ -48836,7 +48892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taylorschooldistrict-aa6f23.png" + "then": "https://data.mapcomplete.org/nsi//logos/taylorschooldistrict-aa6f23.png" }, { "if": { @@ -48851,7 +48907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telemarkfylkeskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telemarkfylkeskommune-ee5f1f.svg" }, { "if": { @@ -48867,7 +48923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thamesvalleydistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thamesvalleydistrictschoolboard-57bf82.jpg" }, { "if": { @@ -48882,7 +48938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theaspireeducationaltrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theaspireeducationaltrust-7a837c.jpg" }, { "if": { @@ -48897,7 +48953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebluekiteacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thebluekiteacademytrust-7a837c.jpg" }, { "if": { @@ -48912,7 +48968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thebrookewestontrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/thebrookewestontrust-7a837c.png" }, { "if": { @@ -48927,7 +48983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecamacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecamacademytrust-7a837c.jpg" }, { "if": { @@ -48943,7 +48999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thechallengeacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thechallengeacademytrust-7a837c.jpg" }, { "if": { @@ -48960,7 +49016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thechurchofjesuschristoflatterdaysaints-155571.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thechurchofjesuschristoflatterdaysaints-155571.jpg" }, { "if": { @@ -48975,7 +49031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecooperativeacademiestrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thecooperativeacademiestrust-26e9df.jpg" }, { "if": { @@ -48990,7 +49046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thedavidrosseducationtrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thedavidrosseducationtrust-26e9df.jpg" }, { "if": { @@ -49005,7 +49061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thedioceseofcanterburyacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thedioceseofcanterburyacademiestrust-7a837c.jpg" }, { "if": { @@ -49020,7 +49076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thedioceseofcoventrymultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thedioceseofcoventrymultiacademytrust-7a837c.jpg" }, { "if": { @@ -49035,7 +49091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theelliotfoundationacademiestrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theelliotfoundationacademiestrust-26e9df.jpg" }, { "if": { @@ -49050,7 +49106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theenquirelearningtrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theenquirelearningtrust-26e9df.jpg" }, { "if": { @@ -49066,7 +49122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thegoodshepherdtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thegoodshepherdtrust-7a837c.jpg" }, { "if": { @@ -49081,7 +49137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehighlandcouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehighlandcouncil-7782f9.jpg" }, { "if": { @@ -49097,7 +49153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehowardpartnershiptrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehowardpartnershiptrust-7a837c.jpg" }, { "if": { @@ -49112,7 +49168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thekiteacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thekiteacademytrust-7a837c.jpg" }, { "if": { @@ -49128,7 +49184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/themeadeducationaltrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/themeadeducationaltrust-7a837c.jpg" }, { "if": { @@ -49143,7 +49199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thenorthtynesidelearningtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thenorthtynesidelearningtrust-7a837c.jpg" }, { "if": { @@ -49158,7 +49214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thepainsleycatholicacademy-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thepainsleycatholicacademy-7a837c.jpg" }, { "if": { @@ -49174,7 +49230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thepioneeracademy-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/thepioneeracademy-7a837c.png" }, { "if": { @@ -49189,7 +49245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theprimaryfirsttrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theprimaryfirsttrust-7a837c.jpg" }, { "if": { @@ -49204,7 +49260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/therutlandlearningtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/therutlandlearningtrust-7a837c.jpg" }, { "if": { @@ -49219,7 +49275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theshaweducationtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theshaweducationtrust-7a837c.jpg" }, { "if": { @@ -49234,7 +49290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thespenceracademiestrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thespenceracademiestrust-26e9df.jpg" }, { "if": { @@ -49249,7 +49305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thetedwraggmultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thetedwraggmultiacademytrust-7a837c.jpg" }, { "if": { @@ -49264,7 +49320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thewensumtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thewensumtrust-7a837c.jpg" }, { "if": { @@ -49280,7 +49336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thorntonfractionaltownshiphighschooldistrict215-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/thorntonfractionaltownshiphighschooldistrict215-6d6198.png" }, { "if": { @@ -49296,7 +49352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thorntontownshiphighschooldistrict205-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thorntontownshiphighschooldistrict205-6d6198.jpg" }, { "if": { @@ -49312,7 +49368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/threeriversschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/threeriversschooldistrict-330cad.jpg" }, { "if": { @@ -49327,7 +49383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tierpskommun-0f2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/tierpskommun-0f2dfb.png" }, { "if": { @@ -49343,7 +49399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigardtualatinschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigardtualatinschooldistrict-330cad.jpg" }, { "if": { @@ -49358,7 +49414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timekommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/timekommune-ee5f1f.svg" }, { "if": { @@ -49373,7 +49429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timrakommun-0f2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/timrakommun-0f2dfb.png" }, { "if": { @@ -49388,7 +49444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tonsbergkommune-ee5f1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tonsbergkommune-ee5f1f.jpg" }, { "if": { @@ -49403,7 +49459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torbaycouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torbaycouncil-7a837c.jpg" }, { "if": { @@ -49419,7 +49475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontocatholicdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torontocatholicdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -49435,7 +49491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontodistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torontodistrictschoolboard-57bf82.jpg" }, { "if": { @@ -49451,7 +49507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torranceunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torranceunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -49466,7 +49522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tovelearningtrust-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/tovelearningtrust-7a837c.png" }, { "if": { @@ -49482,7 +49538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townshiphighschooldistrict211-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townshiphighschooldistrict211-6d6198.jpg" }, { "if": { @@ -49498,7 +49554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townshiphighschooldistrict214-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townshiphighschooldistrict214-6d6198.jpg" }, { "if": { @@ -49514,7 +49570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/traversecityareapublicschools-aa6f23.png" + "then": "https://data.mapcomplete.org/nsi//logos/traversecityareapublicschools-aa6f23.png" }, { "if": { @@ -49529,7 +49585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trinitymultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trinitymultiacademytrust-7a837c.jpg" }, { "if": { @@ -49544,7 +49600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tromsfylkeskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tromsfylkeskommune-ee5f1f.svg" }, { "if": { @@ -49559,7 +49615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tromsokommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tromsokommune-ee5f1f.svg" }, { "if": { @@ -49574,7 +49630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trondheimkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trondheimkommune-ee5f1f.svg" }, { "if": { @@ -49590,7 +49646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/troyschooldistrict-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/troyschooldistrict-aa6f23.jpg" }, { "if": { @@ -49605,7 +49661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truroandpenwithacademytrust-26e9df.png" + "then": "https://data.mapcomplete.org/nsi//logos/truroandpenwithacademytrust-26e9df.png" }, { "if": { @@ -49620,7 +49676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tulsapublicschools-68061d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tulsapublicschools-68061d.jpg" }, { "if": { @@ -49636,7 +49692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tumwaterschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tumwaterschooldistrict-48f47a.jpg" }, { "if": { @@ -49652,7 +49708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tustinunifiedschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tustinunifiedschooldistrict-4ed216.jpg" }, { "if": { @@ -49667,7 +49723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ullensakerkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ullensakerkommune-ee5f1f.svg" }, { "if": { @@ -49682,7 +49738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicef-155571.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unicef-155571.jpg" }, { "if": { @@ -49697,7 +49753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unioncommunityschooldistrict-6e0541.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unioncommunityschooldistrict-6e0541.jpg" }, { "if": { @@ -49713,7 +49769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unioncountypublicschools-4e7bb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unioncountypublicschools-4e7bb3.jpg" }, { "if": { @@ -49729,7 +49785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unioncountypublicschools-15bd72.png" + "then": "https://data.mapcomplete.org/nsi//logos/unioncountypublicschools-15bd72.png" }, { "if": { @@ -49745,7 +49801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unioncountypublicschools-3799fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unioncountypublicschools-3799fa.jpg" }, { "if": { @@ -49760,7 +49816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unioncountyschooldistrict-36719b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unioncountyschooldistrict-36719b.jpg" }, { "if": { @@ -49775,7 +49831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unioncountyschools-159679.png" + "then": "https://data.mapcomplete.org/nsi//logos/unioncountyschools-159679.png" }, { "if": { @@ -49790,7 +49846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unioncountyschools-b0049f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unioncountyschools-b0049f.jpg" }, { "if": { @@ -49805,7 +49861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedlearningtrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedlearningtrust-26e9df.jpg" }, { "if": { @@ -49820,7 +49876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unityschoolspartnership-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unityschoolspartnership-26e9df.jpg" }, { "if": { @@ -49835,7 +49891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universidadnacionalautonomademexico-422367.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universidadnacionalautonomademexico-422367.jpg" }, { "if": { @@ -49851,7 +49907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofbrightonacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofbrightonacademiestrust-7a837c.jpg" }, { "if": { @@ -49866,7 +49922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unrwa-155571.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unrwa-155571.jpg" }, { "if": { @@ -49881,7 +49937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uppsalakommun-0f2dfb.png" + "then": "https://data.mapcomplete.org/nsi//logos/uppsalakommun-0f2dfb.png" }, { "if": { @@ -49896,7 +49952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uticacommunityschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uticacommunityschools-aa6f23.jpg" }, { "if": { @@ -49911,7 +49967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valeofglamorgancouncil-3a6545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valeofglamorgancouncil-3a6545.jpg" }, { "if": { @@ -49926,7 +49982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valleyviewcommunityunitschooldistrict365u-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valleyviewcommunityunitschooldistrict365u-6d6198.jpg" }, { "if": { @@ -49942,7 +49998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vallivueschooldistrict-d7611a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vallivueschooldistrict-d7611a.jpg" }, { "if": { @@ -49958,7 +50014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vancouverpublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vancouverpublicschools-48f47a.jpg" }, { "if": { @@ -49973,7 +50029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vantaankaupunki-4ccccf.png" + "then": "https://data.mapcomplete.org/nsi//logos/vantaankaupunki-4ccccf.png" }, { "if": { @@ -49988,7 +50044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vantageceacademiestrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vantageceacademiestrust-7a837c.jpg" }, { "if": { @@ -50003,7 +50059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verdalkommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verdalkommune-ee5f1f.svg" }, { "if": { @@ -50018,7 +50074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vestfoldfylkeskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vestfoldfylkeskommune-ee5f1f.svg" }, { "if": { @@ -50033,7 +50089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vestlandfylkeskommune-ee5f1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vestlandfylkeskommune-ee5f1f.svg" }, { "if": { @@ -50049,7 +50105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiabeachcitypublicschools-3cf7e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/virginiabeachcitypublicschools-3cf7e1.png" }, { "if": { @@ -50065,7 +50121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visaliaunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visaliaunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -50081,7 +50137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vistaunifiedschooldistrict-ff98ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vistaunifiedschooldistrict-ff98ff.jpg" }, { "if": { @@ -50096,7 +50152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wakecountypublicschoolsystem-15bd72.png" + "then": "https://data.mapcomplete.org/nsi//logos/wakecountypublicschoolsystem-15bd72.png" }, { "if": { @@ -50112,7 +50168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/walnutvalleyunifiedschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/walnutvalleyunifiedschooldistrict-f343c1.jpg" }, { "if": { @@ -50128,7 +50184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warrenconsolidatedschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warrenconsolidatedschools-aa6f23.jpg" }, { "if": { @@ -50143,7 +50199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warwickshirecountycouncil-7a837c.png" + "then": "https://data.mapcomplete.org/nsi//logos/warwickshirecountycouncil-7a837c.png" }, { "if": { @@ -50159,7 +50215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtoncountyschooldistrict-614f2b.png" + "then": "https://data.mapcomplete.org/nsi//logos/washingtoncountyschooldistrict-614f2b.png" }, { "if": { @@ -50175,7 +50231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waterburypublicschools-547ddd.png" + "then": "https://data.mapcomplete.org/nsi//logos/waterburypublicschools-547ddd.png" }, { "if": { @@ -50191,7 +50247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waterloocatholicdistrictschoolboard-57bf82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waterloocatholicdistrictschoolboard-57bf82.jpg" }, { "if": { @@ -50207,7 +50263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waukegancommunityunitschooldistrict60-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waukegancommunityunitschooldistrict60-6d6198.jpg" }, { "if": { @@ -50223,7 +50279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wausauschooldistrict-ac5479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wausauschooldistrict-ac5479.jpg" }, { "if": { @@ -50238,7 +50294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wavemultiacademytrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wavemultiacademytrust-7a837c.jpg" }, { "if": { @@ -50254,7 +50310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wenatcheepublicschools-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wenatcheepublicschools-48f47a.jpg" }, { "if": { @@ -50270,7 +50326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/weslacoindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/weslacoindependentschooldistrict-d19570.jpg" }, { "if": { @@ -50285,7 +50341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wessexlearningtrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wessexlearningtrust-7a837c.jpg" }, { "if": { @@ -50300,7 +50356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westadaschooldistrict-d7611a.png" + "then": "https://data.mapcomplete.org/nsi//logos/westadaschooldistrict-d7611a.png" }, { "if": { @@ -50315,7 +50371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westaurorapublicschooldistrict129-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/westaurorapublicschooldistrict129-6d6198.png" }, { "if": { @@ -50331,7 +50387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westcovinaunifiedschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/westcovinaunifiedschooldistrict-f343c1.png" }, { "if": { @@ -50347,7 +50403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westlinnwilsonvilleschooldistrict-330cad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westlinnwilsonvilleschooldistrict-330cad.jpg" }, { "if": { @@ -50362,7 +50418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westlothiancouncil-7782f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westlothiancouncil-7782f9.jpg" }, { "if": { @@ -50377,7 +50433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westcountryschoolstrust-26e9df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westcountryschoolstrust-26e9df.jpg" }, { "if": { @@ -50392,7 +50448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westerncapeeducationdepartment-3306c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westerncapeeducationdepartment-3306c5.jpg" }, { "if": { @@ -50408,7 +50464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westminsterschooldistrict-4ed216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westminsterschooldistrict-4ed216.jpg" }, { "if": { @@ -50423,7 +50479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westmontcommunityunitschooldistrict201-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westmontcommunityunitschooldistrict201-6d6198.jpg" }, { "if": { @@ -50438,7 +50494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westmorlandandfurnesscouncil-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westmorlandandfurnesscouncil-7a837c.jpg" }, { "if": { @@ -50453,7 +50509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westportpublicschools-547ddd.png" + "then": "https://data.mapcomplete.org/nsi//logos/westportpublicschools-547ddd.png" }, { "if": { @@ -50469,7 +50525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westsideunionschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westsideunionschooldistrict-f343c1.jpg" }, { "if": { @@ -50485,7 +50541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wheelingcommunityconsolidatedschooldistrict21-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wheelingcommunityconsolidatedschooldistrict21-6d6198.jpg" }, { "if": { @@ -50501,7 +50557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/whittiercityschooldistrict-f343c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/whittiercityschooldistrict-f343c1.png" }, { "if": { @@ -50517,7 +50573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wichitafallsindependentschooldistrict-d19570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wichitafallsindependentschooldistrict-d19570.jpg" }, { "if": { @@ -50533,7 +50589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wichitapublicschools-43eeb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wichitapublicschools-43eeb8.jpg" }, { "if": { @@ -50549,7 +50605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wickersleypartnershiptrust-7a837c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wickersleypartnershiptrust-7a837c.jpg" }, { "if": { @@ -50565,7 +50621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/williamshartunionhighschooldistrict-f343c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/williamshartunionhighschooldistrict-f343c1.jpg" }, { "if": { @@ -50581,7 +50637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilmettepublicschoolsdistrict39-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilmettepublicschoolsdistrict39-6d6198.jpg" }, { "if": { @@ -50596,7 +50652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wojewodztwodolnoslaskie-83282a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wojewodztwodolnoslaskie-83282a.jpg" }, { "if": { @@ -50611,7 +50667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodridgeschooldistrict68-6d6198.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woodridgeschooldistrict68-6d6198.jpg" }, { "if": { @@ -50626,7 +50682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xuntadegalicia-c1ff56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xuntadegalicia-c1ff56.jpg" }, { "if": { @@ -50642,7 +50698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yakimaschooldistrict-48f47a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yakimaschooldistrict-48f47a.jpg" }, { "if": { @@ -50657,7 +50713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yorkvillecommunityunitschooldistrict115-6d6198.png" + "then": "https://data.mapcomplete.org/nsi//logos/yorkvillecommunityunitschooldistrict115-6d6198.png" }, { "if": { @@ -50672,7 +50728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ypsilanticommunityschools-aa6f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ypsilanticommunityschools-aa6f23.jpg" }, { "if": { @@ -50687,7 +50743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zoliborz-83282a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zoliborz-83282a.svg" }, { "if": { @@ -50702,7 +50758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4c66bf-1af210.png" + "then": "https://data.mapcomplete.org/nsi//logos/4c66bf-1af210.png" }, { "if": { @@ -50717,7 +50773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ad5af7-ca324a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ad5af7-ca324a.jpg" }, { "if": { @@ -50734,7 +50790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poleungkuk-084410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/poleungkuk-084410.jpg" }, { "if": { @@ -50751,7 +50807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tungwahgroupofhospitals-084410.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tungwahgroupofhospitals-084410.svg" }, { "if": { @@ -50768,7 +50824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritashongkong-084410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritashongkong-084410.jpg" }, { "if": { @@ -50783,7 +50839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abbeyfield-bdda3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abbeyfield-bdda3a.jpg" }, { "if": { @@ -50798,7 +50854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/admr-704240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/admr-704240.jpg" }, { "if": { @@ -50813,7 +50869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/advitapflegedienstgmbh-9a82eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/advitapflegedienstgmbh-9a82eb.png" }, { "if": { @@ -50828,7 +50884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdebarcelona-4392ed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-4392ed.svg" }, { "if": { @@ -50843,7 +50899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliade-627b49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alliade-627b49.jpg" }, { "if": { @@ -50858,7 +50914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alloheimseniorenresidenzen-9a82eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alloheimseniorenresidenzen-9a82eb.jpg" }, { "if": { @@ -50874,7 +50930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anchor-c79a8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anchor-c79a8f.jpg" }, { "if": { @@ -50889,7 +50945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anglicare-9d36ac.png" + "then": "https://data.mapcomplete.org/nsi//logos/anglicare-9d36ac.png" }, { "if": { @@ -50906,7 +50962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arvida-97ad99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arvida-97ad99.jpg" }, { "if": { @@ -50921,7 +50977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/attendo-affb39.png" + "then": "https://data.mapcomplete.org/nsi//logos/attendo-affb39.png" }, { "if": { @@ -50936,7 +50992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/azuritrohrgmbh-9a82eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/azuritrohrgmbh-9a82eb.jpg" }, { "if": { @@ -50951,7 +51007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barchesterhealthcare-bdda3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/barchesterhealthcare-bdda3a.jpg" }, { "if": { @@ -50966,7 +51022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchousing-8d05c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/bchousing-8d05c1.png" }, { "if": { @@ -50981,7 +51037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bergenkommune-2efea4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bergenkommune-2efea4.svg" }, { "if": { @@ -50996,7 +51052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bremerheimstiftung-739aab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bremerheimstiftung-739aab.jpg" }, { "if": { @@ -51011,7 +51067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brookdaleseniorliving-04bb0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brookdaleseniorliving-04bb0a.jpg" }, { "if": { @@ -51026,7 +51082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bszstiftung-52b44a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bszstiftung-52b44a.jpg" }, { "if": { @@ -51041,7 +51097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bupa-bdda3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bupa-bdda3a.png" }, { "if": { @@ -51056,7 +51112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/careuk-bdda3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/careuk-bdda3a.jpg" }, { "if": { @@ -51071,7 +51127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chartwell-4dbadb.png" + "then": "https://data.mapcomplete.org/nsi//logos/chartwell-4dbadb.png" }, { "if": { @@ -51086,7 +51142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coallia-704240.png" + "then": "https://data.mapcomplete.org/nsi//logos/coallia-704240.png" }, { "if": { @@ -51101,7 +51157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedigenova-9cadb3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedigenova-9cadb3.svg" }, { "if": { @@ -51116,7 +51172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunidaddemadrid-324b90.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-324b90.svg" }, { "if": { @@ -51131,7 +51187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crousdeparis-704240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crousdeparis-704240.jpg" }, { "if": { @@ -51146,7 +51202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daheimev-f38aef.png" + "then": "https://data.mapcomplete.org/nsi//logos/daheimev-f38aef.png" }, { "if": { @@ -51162,7 +51218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofhealth-1b29d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofhealth-1b29d4.svg" }, { "if": { @@ -51178,7 +51234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofsocialwelfareanddevelopment-1b29d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofsocialwelfareanddevelopment-1b29d4.jpg" }, { "if": { @@ -51194,7 +51250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentoftheinteriorandlocalgovernment-1b29d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentoftheinteriorandlocalgovernment-1b29d4.jpg" }, { "if": { @@ -51209,7 +51265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diakoniewerkessen-f38aef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diakoniewerkessen-f38aef.jpg" }, { "if": { @@ -51224,7 +51280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/diakonischeswerkinneremissionleipzigev-9a82eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/diakonischeswerkinneremissionleipzigev-9a82eb.jpg" }, { "if": { @@ -51239,7 +51295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/domitys-704240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/domitys-704240.jpg" }, { "if": { @@ -51254,7 +51310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drammenkommune-2efea4.png" + "then": "https://data.mapcomplete.org/nsi//logos/drammenkommune-2efea4.png" }, { "if": { @@ -51269,7 +51325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edenis-704240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edenis-704240.jpg" }, { "if": { @@ -51284,7 +51340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elimdiakoniegmbh-9a82eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elimdiakoniegmbh-9a82eb.jpg" }, { "if": { @@ -51299,7 +51355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/espericare-d65e34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/espericare-d65e34.jpg" }, { "if": { @@ -51315,7 +51371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evangelischeheimstiftung-86cc42.png" + "then": "https://data.mapcomplete.org/nsi//logos/evangelischeheimstiftung-86cc42.png" }, { "if": { @@ -51331,7 +51387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evangelischestiftungneinstedt-b42b1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evangelischestiftungneinstedt-b42b1a.jpg" }, { "if": { @@ -51347,7 +51403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evangelischestiftungneuerkerode-3c1636.png" + "then": "https://data.mapcomplete.org/nsi//logos/evangelischestiftungneuerkerode-3c1636.png" }, { "if": { @@ -51363,7 +51419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evangelischervereinfurinneremissioninnassau-516e6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evangelischervereinfurinneremissioninnassau-516e6a.jpg" }, { "if": { @@ -51378,7 +51434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fedasil-5c0b3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fedasil-5c0b3d.jpg" }, { "if": { @@ -51393,7 +51449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodsharingde-caa2a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/foodsharingde-caa2a5.png" }, { "if": { @@ -51408,7 +51464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fourseasonshealthcare-bdda3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fourseasonshealthcare-bdda3a.jpg" }, { "if": { @@ -51423,7 +51479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fredrikstadkommune-2efea4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fredrikstadkommune-2efea4.svg" }, { "if": { @@ -51438,7 +51494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitatdecatalunya-a8af6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitatdecatalunya-a8af6f.jpg" }, { "if": { @@ -51453,7 +51509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genesishealthcare-04bb0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genesishealthcare-04bb0a.jpg" }, { "if": { @@ -51468,7 +51524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goteborgsstad-0c56f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/goteborgsstad-0c56f6.png" }, { "if": { @@ -51483,7 +51539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haderslevkommune-d61588.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haderslevkommune-d61588.jpg" }, { "if": { @@ -51498,7 +51554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hcone-bdda3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hcone-bdda3a.jpg" }, { "if": { @@ -51514,7 +51570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthserviceexecutive-b5f0b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/healthserviceexecutive-b5f0b6.jpg" }, { "if": { @@ -51529,7 +51585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heiliggeistspitalstiftungfreiburg-86cc42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heiliggeistspitalstiftungfreiburg-86cc42.jpg" }, { "if": { @@ -51544,7 +51600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heilsarmee-9a82eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/heilsarmee-9a82eb.png" }, { "if": { @@ -51559,7 +51615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hetgastenhuis-627b49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hetgastenhuis-627b49.jpg" }, { "if": { @@ -51574,7 +51630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipsedebruggen-627b49.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipsedebruggen-627b49.png" }, { "if": { @@ -51589,7 +51645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johanniterseniorenhausergmbh-9a82eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/johanniterseniorenhausergmbh-9a82eb.png" }, { "if": { @@ -51604,7 +51660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadeandalucia-a8af6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-a8af6f.jpg" }, { "if": { @@ -51619,7 +51675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadecastillayleon-a8af6f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadecastillayleon-a8af6f.svg" }, { "if": { @@ -51634,7 +51690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlstadskommun-0c56f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karlstadskommun-0c56f6.jpg" }, { "if": { @@ -51649,7 +51705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kirkenskorshaer-18f4fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/kirkenskorshaer-18f4fe.png" }, { "if": { @@ -51664,7 +51720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kleeblattpflegeheimeggmbh-86cc42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kleeblattpflegeheimeggmbh-86cc42.jpg" }, { "if": { @@ -51679,7 +51735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/korian-08d104.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/korian-08d104.jpg" }, { "if": { @@ -51694,7 +51750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kristiansandkommune-2efea4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kristiansandkommune-2efea4.svg" }, { "if": { @@ -51709,7 +51765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kursana-9a82eb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kursana-9a82eb.svg" }, { "if": { @@ -51724,7 +51780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/legerdesheils-627b49.png" + "then": "https://data.mapcomplete.org/nsi//logos/legerdesheils-627b49.png" }, { "if": { @@ -51739,7 +51795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magyarmaltaiszeretetszolgalat-bb8da1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magyarmaltaiszeretetszolgalat-bb8da1.jpg" }, { "if": { @@ -51754,7 +51810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mairiedeparis-0553d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-0553d6.jpg" }, { "if": { @@ -51769,7 +51825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mccarthyandstone-bdda3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/mccarthyandstone-bdda3a.png" }, { "if": { @@ -51784,7 +51840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miastostolecznewarszawa-01d55f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/miastostolecznewarszawa-01d55f.jpg" }, { "if": { @@ -51800,7 +51856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesaludpublica-7d5963.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-7d5963.png" }, { "if": { @@ -51815,7 +51871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moldekommune-2efea4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moldekommune-2efea4.jpg" }, { "if": { @@ -51830,7 +51886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/munchenstift-b322b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/munchenstift-b322b0.jpg" }, { "if": { @@ -51845,7 +51901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nhs-bdda3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/nhs-bdda3a.png" }, { "if": { @@ -51860,7 +51916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norrkopingskommun-0c56f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/norrkopingskommun-0c56f6.png" }, { "if": { @@ -51876,7 +51932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norwegianrefugeecouncil-01cce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norwegianrefugeecouncil-01cce6.jpg" }, { "if": { @@ -51893,7 +51949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oceaniahealthcare-97ad99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oceaniahealthcare-97ad99.jpg" }, { "if": { @@ -51908,7 +51964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ocmw-5c0b3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ocmw-5c0b3d.jpg" }, { "if": { @@ -51923,7 +51979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orpea-704240.svg" + "then": "https://data.mapcomplete.org/nsi//logos/orpea-704240.svg" }, { "if": { @@ -51938,7 +51994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oslokommune-2efea4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oslokommune-2efea4.jpg" }, { "if": { @@ -51954,7 +52010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palangmerahindonesia-90bc4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palangmerahindonesia-90bc4f.jpg" }, { "if": { @@ -51971,7 +52027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plunket-97ad99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plunket-97ad99.jpg" }, { "if": { @@ -51986,7 +52042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rummelsbergerdiakonie-b322b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/rummelsbergerdiakonie-b322b0.png" }, { "if": { @@ -52001,7 +52057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandneskommune-2efea4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sandneskommune-2efea4.svg" }, { "if": { @@ -52016,7 +52072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savethechildreninternational-01cce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/savethechildreninternational-01cce6.jpg" }, { "if": { @@ -52031,7 +52087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sozialwerkderfreienchristengemeindebremenev-739aab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sozialwerkderfreienchristengemeindebremenev-739aab.jpg" }, { "if": { @@ -52046,7 +52102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkoln-f38aef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkoln-f38aef.jpg" }, { "if": { @@ -52061,7 +52117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtischealtenpflegeheimeleipzigggmbh-000f65.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtischealtenpflegeheimeleipzigggmbh-000f65.jpg" }, { "if": { @@ -52076,7 +52132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stavangerkommune-2efea4.png" + "then": "https://data.mapcomplete.org/nsi//logos/stavangerkommune-2efea4.png" }, { "if": { @@ -52091,7 +52147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stiftungebenezer-f38aef.png" + "then": "https://data.mapcomplete.org/nsi//logos/stiftungebenezer-f38aef.png" }, { "if": { @@ -52107,7 +52163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stiftungfurschwerbehinderteluzern-cf20ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stiftungfurschwerbehinderteluzern-cf20ba.jpg" }, { "if": { @@ -52124,7 +52180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/summerset-97ad99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/summerset-97ad99.jpg" }, { "if": { @@ -52139,7 +52195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunriseseniorliving-04bb0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunriseseniorliving-04bb0a.jpg" }, { "if": { @@ -52155,7 +52211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suomenpunainenristi-d65e34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suomenpunainenristi-d65e34.jpg" }, { "if": { @@ -52170,7 +52226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svrz-627b49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/svrz-627b49.jpg" }, { "if": { @@ -52186,7 +52242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/themissiontoseafarers-01cce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/themissiontoseafarers-01cce6.jpg" }, { "if": { @@ -52201,7 +52257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesalvationarmy-01cce6.png" + "then": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-01cce6.png" }, { "if": { @@ -52217,7 +52273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thetrusselltrust-bdda3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/thetrusselltrust-bdda3a.png" }, { "if": { @@ -52232,7 +52288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umeakommun-0c56f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umeakommun-0c56f6.jpg" }, { "if": { @@ -52247,7 +52303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unhcr-01cce6.png" + "then": "https://data.mapcomplete.org/nsi//logos/unhcr-01cce6.png" }, { "if": { @@ -52262,7 +52318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vardaga-0c56f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/vardaga-0c56f6.png" }, { "if": { @@ -52277,7 +52333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitanas-9a82eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitanas-9a82eb.jpg" }, { "if": { @@ -52293,7 +52349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldfoodprogramme-01cce6.png" + "then": "https://data.mapcomplete.org/nsi//logos/worldfoodprogramme-01cce6.png" }, { "if": { @@ -52308,7 +52364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldvision-01cce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldvision-01cce6.jpg" }, { "if": { @@ -52322,7 +52378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1-1e9ebd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a1-1e9ebd.jpg" }, { "if": { @@ -52336,7 +52392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alticeportugal-b47ccc.png" + "then": "https://data.mapcomplete.org/nsi//logos/alticeportugal-b47ccc.png" }, { "if": { @@ -52350,7 +52406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/antel-106ca3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/antel-106ca3.svg" }, { "if": { @@ -52364,7 +52420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arqiva-190dbf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arqiva-190dbf.svg" }, { "if": { @@ -52378,7 +52434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellaliant-25374a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellaliant-25374a.jpg" }, { "if": { @@ -52392,7 +52448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellcanada-25374a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellcanada-25374a.jpg" }, { "if": { @@ -52406,7 +52462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellmts-c4f09e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellmts-c4f09e.jpg" }, { "if": { @@ -52420,7 +52476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bsnl-b0ab99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bsnl-b0ab99.jpg" }, { "if": { @@ -52434,7 +52490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bt-2be02b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bt-2be02b.svg" }, { "if": { @@ -52448,7 +52504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cantv-da1b5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cantv-da1b5a.png" }, { "if": { @@ -52462,7 +52518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/claro-6490cd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/claro-6490cd.svg" }, { "if": { @@ -52476,7 +52532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyta-414160.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyta-414160.jpg" }, { "if": { @@ -52490,7 +52546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschetelekomag-fe847d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschetelekomag-fe847d.jpg" }, { "if": { @@ -52504,7 +52560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etecsa-e894e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etecsa-e894e6.jpg" }, { "if": { @@ -52518,7 +52574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethiotelecom-636f14.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ethiotelecom-636f14.jpg" }, { "if": { @@ -52532,7 +52588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jcdecaux-2be02b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcdecaux-2be02b.jpg" }, { "if": { @@ -52546,7 +52602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kcom-190dbf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kcom-190dbf.jpg" }, { "if": { @@ -52560,7 +52616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magyartelekom-a3dfca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magyartelekom-a3dfca.jpg" }, { "if": { @@ -52574,7 +52630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/movistar-2be02b.png" + "then": "https://data.mapcomplete.org/nsi//logos/movistar-2be02b.png" }, { "if": { @@ -52593,7 +52649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nippontelegraphandtelephoneeast-a6a893.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nippontelegraphandtelephoneeast-a6a893.jpg" }, { "if": { @@ -52612,7 +52668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nippontelegraphandtelephonewest-ff8e1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nippontelegraphandtelephonewest-ff8e1b.jpg" }, { "if": { @@ -52626,7 +52682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oi-2d3d8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oi-2d3d8d.jpg" }, { "if": { @@ -52640,7 +52696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ooredoo-19d03a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ooredoo-19d03a.jpg" }, { "if": { @@ -52655,7 +52711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/officedespostesettelecommunicationsdenouvellecaledonie-32dfcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/officedespostesettelecommunicationsdenouvellecaledonie-32dfcb.jpg" }, { "if": { @@ -52670,7 +52726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/officedespostesettelecommunicationsdepolynesiefrancaise-6c2af3.png" + "then": "https://data.mapcomplete.org/nsi//logos/officedespostesettelecommunicationsdepolynesiefrancaise-6c2af3.png" }, { "if": { @@ -52684,7 +52740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orange-2be02b.png" + "then": "https://data.mapcomplete.org/nsi//logos/orange-2be02b.png" }, { "if": { @@ -52698,7 +52754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pldt-795ee8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pldt-795ee8.jpg" }, { "if": { @@ -52712,7 +52768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/postluxembourg-0ddef4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/postluxembourg-0ddef4.jpg" }, { "if": { @@ -52726,7 +52782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/r-57fa2c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/r-57fa2c.svg" }, { "if": { @@ -52740,7 +52796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparknewzealand-2e73ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparknewzealand-2e73ba.jpg" }, { "if": { @@ -52754,7 +52810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisscom-2e827a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisscom-2e827a.jpg" }, { "if": { @@ -52769,7 +52825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telecommalaysia-f8aa27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telecommalaysia-f8aa27.jpg" }, { "if": { @@ -52783,7 +52839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telefonica-de3c7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telefonica-de3c7f.jpg" }, { "if": { @@ -52797,7 +52853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telefonicabrasil-2d3d8d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telefonicabrasil-2d3d8d.svg" }, { "if": { @@ -52811,7 +52867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telefonicadeargentinasa-b0400a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telefonicadeargentinasa-b0400a.svg" }, { "if": { @@ -52825,7 +52881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenor-2be02b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telenor-2be02b.svg" }, { "if": { @@ -52839,7 +52895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telkom-37d783.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telkom-37d783.svg" }, { "if": { @@ -52853,7 +52909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telmex-eff826.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telmex-eff826.jpg" }, { "if": { @@ -52867,7 +52923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telstra-c9cd58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telstra-c9cd58.jpg" }, { "if": { @@ -52881,7 +52937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telus-25374a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telus-25374a.jpg" }, { "if": { @@ -52895,7 +52951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tigo-9cae6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tigo-9cae6a.jpg" }, { "if": { @@ -52909,7 +52965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tim-dc727e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tim-dc727e.jpg" }, { "if": { @@ -52923,7 +52979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tot-c8699e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tot-c8699e.jpg" }, { "if": { @@ -52937,7 +52993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turktelekom-665e92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turktelekom-665e92.jpg" }, { "if": { @@ -52951,7 +53007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vivo-2d3d8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vivo-2d3d8d.jpg" }, { "if": { @@ -52965,7 +53021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/387537-9da549.svg" + "then": "https://data.mapcomplete.org/nsi//logos/387537-9da549.svg" }, { "if": { @@ -52979,7 +53035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b6fed5-6db49f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/b6fed5-6db49f.svg" }, { "if": { @@ -52995,7 +53051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bezeq-f642b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bezeq-f642b6.jpg" }, { "if": { @@ -53011,7 +53067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chunghwatelecom-ac3b33.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chunghwatelecom-ac3b33.svg" }, { "if": { @@ -53025,7 +53081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/at-0b3968.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/at-0b3968.jpg" }, { "if": { @@ -53039,7 +53095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caltrain-883676.png" + "then": "https://data.mapcomplete.org/nsi//logos/caltrain-883676.png" }, { "if": { @@ -53054,7 +53110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compagniedestransportsstrasbourgeois-b6a498.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compagniedestransportsstrasbourgeois-b6a498.jpg" }, { "if": { @@ -53068,7 +53124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbvertriebgmbh-f980d0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbvertriebgmbh-f980d0.svg" }, { "if": { @@ -53082,7 +53138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebahn-f980d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebahn-f980d0.png" }, { "if": { @@ -53096,7 +53152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metlink-3eb661.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metlink-3eb661.jpg" }, { "if": { @@ -53110,7 +53166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nederlandsespoorwegen-23194f.png" + "then": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-23194f.png" }, { "if": { @@ -53125,7 +53181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionaltransportationdistrict-4cc7a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regionaltransportationdistrict-4cc7a7.jpg" }, { "if": { @@ -53139,7 +53195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbahnberlingmbh-666711.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sbahnberlingmbh-666711.svg" }, { "if": { @@ -53156,7 +53212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbbcffffs-ac77cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbbcffffs-ac77cd.png" }, { "if": { @@ -53170,7 +53226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terhautsdefrance-258336.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/terhautsdefrance-258336.jpg" }, { "if": { @@ -53184,7 +53240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/translink-2260c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/translink-2260c1.jpg" }, { "if": { @@ -53199,7 +53255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportforlondon-73d484.png" + "then": "https://data.mapcomplete.org/nsi//logos/transportforlondon-73d484.png" }, { "if": { @@ -53213,7 +53269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-832030.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-832030.jpg" }, { "if": { @@ -53227,7 +53283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportforwestmidlands-1d1aee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportforwestmidlands-1d1aee.jpg" }, { "if": { @@ -53242,7 +53298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trenitalia-73a324.png" + "then": "https://data.mapcomplete.org/nsi//logos/trenitalia-73a324.png" }, { "if": { @@ -53256,7 +53312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wsw-08753d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wsw-08753d.jpg" }, { "if": { @@ -53270,7 +53326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wswmobilgmbh-f980d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wswmobilgmbh-f980d0.jpg" }, { "if": { @@ -53284,7 +53340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2theloo-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/2theloo-48c608.png" }, { "if": { @@ -53301,7 +53357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/actioncontrelafaim-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/actioncontrelafaim-48c608.png" }, { "if": { @@ -53316,7 +53372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agriculturefisheriesandconservationdepartment-70c95d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agriculturefisheriesandconservationdepartment-70c95d.jpg" }, { "if": { @@ -53330,7 +53386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asda-4f5d70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/asda-4f5d70.jpg" }, { "if": { @@ -53344,7 +53400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asfinag-dd4146.svg" + "then": "https://data.mapcomplete.org/nsi//logos/asfinag-dd4146.svg" }, { "if": { @@ -53358,7 +53414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemadrid-6c3752.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-6c3752.png" }, { "if": { @@ -53372,7 +53428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodepamplona-4984c1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodepamplona-4984c1.svg" }, { "if": { @@ -53386,7 +53442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bcparks-af8860.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcparks-af8860.jpg" }, { "if": { @@ -53401,7 +53457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belfastcitycouncil-93a25a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belfastcitycouncil-93a25a.jpg" }, { "if": { @@ -53416,7 +53472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bowlinggreenstateuniversity-ee33ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-ee33ef.jpg" }, { "if": { @@ -53430,7 +53486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-48c608.jpg" }, { "if": { @@ -53444,7 +53500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brisbanecitycouncil-1f33cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brisbanecitycouncil-1f33cd.jpg" }, { "if": { @@ -53458,7 +53514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishredcross-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/britishredcross-48c608.png" }, { "if": { @@ -53473,7 +53529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bruhatbengalurumahanagarapalike-5a8295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bruhatbengalurumahanagarapalike-5a8295.jpg" }, { "if": { @@ -53488,7 +53544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauoflandmanagement-a5d9f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-a5d9f0.jpg" }, { "if": { @@ -53502,7 +53558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-b9c42e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-b9c42e.jpg" }, { "if": { @@ -53516,7 +53572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camaramunicipaldelisboa-1f5e60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camaramunicipaldelisboa-1f5e60.jpg" }, { "if": { @@ -53530,7 +53586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canalandrivertrust-4f5d70.png" + "then": "https://data.mapcomplete.org/nsi//logos/canalandrivertrust-4f5d70.png" }, { "if": { @@ -53544,7 +53600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-48c608.png" }, { "if": { @@ -53559,7 +53615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/catholicreliefservices-481bb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/catholicreliefservices-481bb7.jpg" }, { "if": { @@ -53573,7 +53629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-48c608.png" }, { "if": { @@ -53588,7 +53644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcalgary-fa5474.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcalgary-fa5474.jpg" }, { "if": { @@ -53606,7 +53662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcapetown-48ee64.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-48ee64.png" }, { "if": { @@ -53621,7 +53677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofottawa-7c1906.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofottawa-7c1906.svg" }, { "if": { @@ -53635,7 +53691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwindhoek-1c76ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwindhoek-1c76ba.jpg" }, { "if": { @@ -53649,7 +53705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/croixrougebritanique-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/croixrougebritanique-48c608.png" }, { "if": { @@ -53664,7 +53720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/croixrougefrancaise-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/croixrougefrancaise-48c608.jpg" }, { "if": { @@ -53678,7 +53734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/curtinuniversity-ea8b29.png" + "then": "https://data.mapcomplete.org/nsi//logos/curtinuniversity-ea8b29.png" }, { "if": { @@ -53693,7 +53749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/danishrefugeecouncil-4a7536.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/danishrefugeecouncil-4a7536.jpg" }, { "if": { @@ -53707,7 +53763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofconservation-7e943b.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-7e943b.png" }, { "if": { @@ -53722,7 +53778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofconservationandrecreation-536e2b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofconservationandrecreation-536e2b.svg" }, { "if": { @@ -53736,7 +53792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhamtechnicalcommunitycollege-a5c9d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/durhamtechnicalcommunitycollege-a5c9d1.jpg" }, { "if": { @@ -53751,7 +53807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastbourneboroughcouncil-94d3cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastbourneboroughcouncil-94d3cf.jpg" }, { "if": { @@ -53765,7 +53821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edeka-a4f70c.png" + "then": "https://data.mapcomplete.org/nsi//logos/edeka-a4f70c.png" }, { "if": { @@ -53779,7 +53835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/einwohnergemeindebaar-5e4f87.svg" + "then": "https://data.mapcomplete.org/nsi//logos/einwohnergemeindebaar-5e4f87.svg" }, { "if": { @@ -53793,7 +53849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flughafenzurichag-960a4a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/flughafenzurichag-960a4a.svg" }, { "if": { @@ -53807,7 +53863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortcobbstatepark-c3f3e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortcobbstatepark-c3f3e2.jpg" }, { "if": { @@ -53821,7 +53877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentofjersey-057698.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentofjersey-057698.jpg" }, { "if": { @@ -53835,7 +53891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haderslevkommune-2d1379.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/haderslevkommune-2d1379.jpg" }, { "if": { @@ -53849,7 +53905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halifaxregionalmunicipality-59976c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halifaxregionalmunicipality-59976c.jpg" }, { "if": { @@ -53863,7 +53919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iom-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iom-48c608.jpg" }, { "if": { @@ -53877,7 +53933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jcdecaux-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jcdecaux-48c608.jpg" }, { "if": { @@ -53891,7 +53947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaufland-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/kaufland-48c608.png" }, { "if": { @@ -53905,7 +53961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentstateuniversity-ee33ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-ee33ef.jpg" }, { "if": { @@ -53919,7 +53975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kfc-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kfc-48c608.jpg" }, { "if": { @@ -53934,7 +53990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leisureandculturalservicesdepartment-70c95d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leisureandculturalservicesdepartment-70c95d.jpg" }, { "if": { @@ -53949,7 +54005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lutheranworldfederation-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/lutheranworldfederation-48c608.png" }, { "if": { @@ -53963,7 +54019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mav-c8692e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mav-c8692e.svg" }, { "if": { @@ -53977,7 +54033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-70db25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-70db25.jpg" }, { "if": { @@ -53991,7 +54047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melbournecitycouncil-1f48c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/melbournecitycouncil-1f48c5.png" }, { "if": { @@ -54005,7 +54061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrowarszawskiespzoo-dbab0a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metrowarszawskiespzoo-dbab0a.svg" }, { "if": { @@ -54019,7 +54075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropoledelyon-28a80b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropoledelyon-28a80b.jpg" }, { "if": { @@ -54033,7 +54089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metsahallitus-086043.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metsahallitus-086043.jpg" }, { "if": { @@ -54047,7 +54103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/miamidadecollege-67f563.png" + "then": "https://data.mapcomplete.org/nsi//logos/miamidadecollege-67f563.png" }, { "if": { @@ -54062,7 +54118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigandepartmentofnaturalresources-4d3dc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofnaturalresources-4d3dc8.jpg" }, { "if": { @@ -54076,7 +54132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morrisons-4f5d70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morrisons-4f5d70.jpg" }, { "if": { @@ -54090,7 +54146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mosmancouncil-3fb4b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/mosmancouncil-3fb4b7.png" }, { "if": { @@ -54105,7 +54161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalcapitalcommission-7c1906.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalcapitalcommission-7c1906.jpg" }, { "if": { @@ -54120,7 +54176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparkservice-a5d9f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-a5d9f0.jpg" }, { "if": { @@ -54135,7 +54191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrust-c8175c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrust-c8175c.jpg" }, { "if": { @@ -54151,7 +54207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrustforscotland-cd0adc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-cd0adc.jpg" }, { "if": { @@ -54165,7 +54221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neste-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/neste-48c608.png" }, { "if": { @@ -54179,7 +54235,35 @@ } ] }, - "then": "./assets/data/nsi/logos/nordseeheilbadcuxhavengmbh-b913f2.png" + "then": "https://data.mapcomplete.org/nsi//logos/nordseeheilbadcuxhavengmbh-b913f2.png" + }, + { + "if": { + "and": [ + "amenity=toilets", + { + "or": [ + "operator=North Sydney Council", + "operator:wikidata=Q56477552" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/northsydneycouncil-3fb4b7.png" + }, + { + "if": { + "and": [ + "amenity=toilets", + { + "or": [ + "operator=Northern Beaches Council", + "operator:wikidata=Q56477644" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/northernbeachescouncil-3fb4b7.jpg" }, { "if": { @@ -54194,7 +54278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norwegianrefugeecouncil-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norwegianrefugeecouncil-48c608.jpg" }, { "if": { @@ -54209,7 +54293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswnationalparksandwildlifeservice-3fb4b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswnationalparksandwildlifeservice-3fb4b7.jpg" }, { "if": { @@ -54223,7 +54307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obb-dd4146.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obb-dd4146.jpg" }, { "if": { @@ -54237,7 +54321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oxfam-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oxfam-48c608.jpg" }, { "if": { @@ -54251,7 +54335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkscanada-ab7656.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkscanada-ab7656.jpg" }, { "if": { @@ -54265,7 +54349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksvictoria-1f48c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/parksvictoria-1f48c5.png" }, { "if": { @@ -54279,7 +54363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petron-d85df6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petron-d85df6.jpg" }, { "if": { @@ -54293,7 +54377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/philmontscoutranch-6e5f60.svg" + "then": "https://data.mapcomplete.org/nsi//logos/philmontscoutranch-6e5f60.svg" }, { "if": { @@ -54307,7 +54391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewe-a4f70c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rewe-a4f70c.jpg" }, { "if": { @@ -54321,7 +54405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rotherdistrictcouncil-a7de47.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rotherdistrictcouncil-a7de47.jpg" }, { "if": { @@ -54335,7 +54419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sainsburys-4f5d70.png" + "then": "https://data.mapcomplete.org/nsi//logos/sainsburys-4f5d70.png" }, { "if": { @@ -54352,7 +54436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanifairgmbh-99935b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sanifairgmbh-99935b.svg" }, { "if": { @@ -54366,7 +54450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/savethechildren-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/savethechildren-48c608.jpg" }, { "if": { @@ -54380,7 +54464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-cb9186.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-cb9186.png" }, { "if": { @@ -54395,7 +54479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swachhbharatmission-5a8295.svg" + "then": "https://data.mapcomplete.org/nsi//logos/swachhbharatmission-5a8295.svg" }, { "if": { @@ -54409,7 +54493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serways-a4f70c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/serways-a4f70c.svg" }, { "if": { @@ -54423,7 +54507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-48c608.jpg" }, { "if": { @@ -54437,7 +54521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-73fc0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-73fc0c.png" }, { "if": { @@ -54452,7 +54536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetcouncil-8471a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-8471a3.jpg" }, { "if": { @@ -54466,7 +54550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southafricannationalparks-48ee64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southafricannationalparks-48ee64.jpg" }, { "if": { @@ -54480,7 +54564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadgent-d606a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadgent-d606a5.jpg" }, { "if": { @@ -54494,7 +54578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgraz-4f5743.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgraz-4f5743.svg" }, { "if": { @@ -54508,7 +54592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkarlsruhe-ee7438.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-ee7438.png" }, { "if": { @@ -54522,7 +54606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtreinigunghamburg-263841.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtreinigunghamburg-263841.jpg" }, { "if": { @@ -54536,7 +54620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sulabhinternational-5a8295.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sulabhinternational-5a8295.jpg" }, { "if": { @@ -54550,7 +54634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydneytrains-3fb4b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/sydneytrains-3fb4b7.png" }, { "if": { @@ -54564,7 +54648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tankonosro-1edb53.gif" + "then": "https://data.mapcomplete.org/nsi//logos/tankonosro-1edb53.gif" }, { "if": { @@ -54578,7 +54662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasmaniaparksandwildlifeservice-55b315.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tasmaniaparksandwildlifeservice-55b315.jpg" }, { "if": { @@ -54592,7 +54676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teboil-cadadd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teboil-cadadd.jpg" }, { "if": { @@ -54606,7 +54690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischeuniversitatdresden-6ee337.png" + "then": "https://data.mapcomplete.org/nsi//logos/technischeuniversitatdresden-6ee337.png" }, { "if": { @@ -54620,7 +54704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischeuniversitatilmenau-d67e15.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/technischeuniversitatilmenau-d67e15.jpg" }, { "if": { @@ -54635,7 +54719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischeshilfswerk-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/technischeshilfswerk-48c608.jpg" }, { "if": { @@ -54649,7 +54733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehighlandcouncil-cd0adc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehighlandcouncil-cd0adc.jpg" }, { "if": { @@ -54668,7 +54752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofportland-346746.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofportland-346746.svg" }, { "if": { @@ -54682,7 +54766,21 @@ } ] }, - "then": "./assets/data/nsi/logos/thesalvationarmy-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-48c608.png" + }, + { + "if": { + "and": [ + "amenity=toilets", + { + "or": [ + "operator=Toi Toi", + "operator:wikidata=Q2384640" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/toitoi-48c608.jpg" }, { "if": { @@ -54696,7 +54794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trafikverket-05ca0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/trafikverket-05ca0b.png" }, { "if": { @@ -54710,7 +54808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trenesargentinos-3cb239.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-3cb239.svg" }, { "if": { @@ -54724,7 +54822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unhcr-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/unhcr-48c608.png" }, { "if": { @@ -54738,7 +54836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unicef-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unicef-48c608.jpg" }, { "if": { @@ -54753,7 +54851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesforestservice-a5d9f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesforestservice-a5d9f0.jpg" }, { "if": { @@ -54768,7 +54866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universidadtecnologicadepereira-452bf3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universidadtecnologicadepereira-452bf3.jpg" }, { "if": { @@ -54782,7 +54880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vanuaturedcrosssociety-ad746b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vanuaturedcrosssociety-ad746b.jpg" }, { "if": { @@ -54798,7 +54896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedebruxellesstadbrussel-d606a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villedebruxellesstadbrussel-d606a5.jpg" }, { "if": { @@ -54812,7 +54910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedevevey-4c0236.svg" + "then": "https://data.mapcomplete.org/nsi//logos/villedevevey-4c0236.svg" }, { "if": { @@ -54826,7 +54924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wall-a4f70c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wall-a4f70c.svg" }, { "if": { @@ -54841,7 +54939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtondepartmentoffishandwildlife-6e9e2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtondepartmentoffishandwildlife-6e9e2e.jpg" }, { "if": { @@ -54856,7 +54954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldfoodprogramme-48c608.png" + "then": "https://data.mapcomplete.org/nsi//logos/worldfoodprogramme-48c608.png" }, { "if": { @@ -54870,7 +54968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/worldvision-48c608.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/worldvision-48c608.jpg" }, { "if": { @@ -54893,7 +54991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/foodandenvironmentalhygienedepartment-70c95d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/foodandenvironmentalhygienedepartment-70c95d.jpg" }, { "if": { @@ -54907,7 +55005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofekurhuleni-7b4eec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofekurhuleni-7b4eec.jpg" }, { "if": { @@ -54921,7 +55019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenterotterdam-7a23ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-7a23ae.jpg" }, { "if": { @@ -54935,7 +55033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtludwigshafenamrhein-0751eb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtludwigshafenamrhein-0751eb.svg" }, { "if": { @@ -54949,7 +55047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtschwabischgmund-40dca9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtschwabischgmund-40dca9.svg" }, { "if": { @@ -54963,7 +55061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ef66ae-a72f79.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ef66ae-a72f79.svg" }, { "if": { @@ -54977,7 +55075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4d455f-a72f79.png" + "then": "https://data.mapcomplete.org/nsi//logos/4d455f-a72f79.png" }, { "if": { @@ -54991,7 +55089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4c66bf-a72f79.png" + "then": "https://data.mapcomplete.org/nsi//logos/4c66bf-a72f79.png" }, { "if": { @@ -55006,7 +55104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutopolitecniconacional-c5122f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutopolitecniconacional-c5122f.jpg" }, { "if": { @@ -55022,7 +55120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keiseruniversity-bc9681.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keiseruniversity-bc9681.jpg" }, { "if": { @@ -55040,7 +55138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aliae-187795.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aliae-187795.svg" }, { "if": { @@ -55055,7 +55153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/at-7f6a8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/at-7f6a8f.jpg" }, { "if": { @@ -55080,7 +55178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mennicapolska-a736eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mennicapolska-a736eb.jpg" }, { "if": { @@ -55096,7 +55194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestokosice-3d34f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestokosice-3d34f5.jpg" }, { "if": { @@ -55111,7 +55209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pharmaself24-44db7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pharmaself24-44db7a.jpg" }, { "if": { @@ -55128,7 +55226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/returo-33f2a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/returo-33f2a6.jpg" }, { "if": { @@ -55143,7 +55241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ringgo-6fe21e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ringgo-6fe21e.jpg" }, { "if": { @@ -55161,7 +55259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanef-dc912e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sanef-dc912e.svg" }, { "if": { @@ -55177,7 +55275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetcouncil-ef1a8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-ef1a8e.jpg" }, { "if": { @@ -55197,7 +55295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/translink-b39439.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/translink-b39439.jpg" }, { "if": { @@ -55215,7 +55313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/184e0b-c8e53b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/184e0b-c8e53b.svg" }, { "if": { @@ -55229,7 +55327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thrivepethealthcare-af633f.png" + "then": "https://data.mapcomplete.org/nsi//logos/thrivepethealthcare-af633f.png" }, { "if": { @@ -55244,7 +55342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/n3tollconcessionltd-073dc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/n3tollconcessionltd-073dc4.jpg" }, { "if": { @@ -55259,7 +55357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southafricannationalroadsagency-073dc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southafricannationalroadsagency-073dc4.jpg" }, { "if": { @@ -55275,7 +55373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauofindianaffairs-9a1c88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauofindianaffairs-9a1c88.jpg" }, { "if": { @@ -55289,7 +55387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/actparksandconservationservice-1512f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/actparksandconservationservice-1512f7.png" }, { "if": { @@ -55303,7 +55401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bahamasnationaltrust-243c3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bahamasnationaltrust-243c3a.jpg" }, { "if": { @@ -55317,7 +55415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bcparks-9f409c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcparks-9f409c.jpg" }, { "if": { @@ -55333,7 +55431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauoflandmanagement-918b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-918b1c.jpg" }, { "if": { @@ -55348,7 +55446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofparksandrecreation-789082.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofparksandrecreation-789082.jpg" }, { "if": { @@ -55363,7 +55461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionnacionaldeareasnaturalesprotegidas-5f811a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comisionnacionaldeareasnaturalesprotegidas-5f811a.jpg" }, { "if": { @@ -55378,7 +55476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutonacionaldeparques-08aba9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/institutonacionaldeparques-08aba9.svg" }, { "if": { @@ -55392,7 +55490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metsahallitus-c049cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metsahallitus-c049cd.jpg" }, { "if": { @@ -55410,7 +55508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparkservice-918b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-918b1c.jpg" }, { "if": { @@ -55424,7 +55522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparksandwildlifeservicesouthaustralia-cf0481.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparksandwildlifeservicesouthaustralia-cf0481.jpg" }, { "if": { @@ -55440,7 +55538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nebraskagameandparkscommission-2f5d74.png" + "then": "https://data.mapcomplete.org/nsi//logos/nebraskagameandparkscommission-2f5d74.png" }, { "if": { @@ -55455,7 +55553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswnationalparksandwildlifeservice-1c4cc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswnationalparksandwildlifeservice-1c4cc3.jpg" }, { "if": { @@ -55471,7 +55569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiodepartmentofnaturalresources-376ab0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofnaturalresources-376ab0.jpg" }, { "if": { @@ -55486,7 +55584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontarioparks-71e570.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ontarioparks-71e570.jpg" }, { "if": { @@ -55500,7 +55598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksandwildlifeservice-e147be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parksandwildlifeservice-e147be.jpg" }, { "if": { @@ -55514,7 +55612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksaustralia-44065a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parksaustralia-44065a.jpg" }, { "if": { @@ -55528,7 +55626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksvictoria-cdaa72.png" + "then": "https://data.mapcomplete.org/nsi//logos/parksvictoria-cdaa72.png" }, { "if": { @@ -55542,7 +55640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queenslandparksandwildlifeservice-223e1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/queenslandparksandwildlifeservice-223e1e.jpg" }, { "if": { @@ -55556,7 +55654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasmaniaparksandwildlifeservice-eb48a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tasmaniaparksandwildlifeservice-eb48a1.jpg" }, { "if": { @@ -55571,7 +55669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesforestservice-918b1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesforestservice-918b1c.jpg" }, { "if": { @@ -55597,7 +55695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agriculturefisheriesandconservationdepartment-52b423.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agriculturefisheriesandconservationdepartment-52b423.jpg" }, { "if": { @@ -55611,7 +55709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/administraciondeparquesnacionales-8282c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/administraciondeparquesnacionales-8282c4.jpg" }, { "if": { @@ -55625,7 +55723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agentschapnatuurandbos-733240.png" + "then": "https://data.mapcomplete.org/nsi//logos/agentschapnatuurandbos-733240.png" }, { "if": { @@ -55640,7 +55738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alaskadivisionofparksandoutdoorrecreation-fee862.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alaskadivisionofparksandoutdoorrecreation-fee862.jpg" }, { "if": { @@ -55655,7 +55753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aucklandcouncil-a9b2b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-a9b2b6.png" }, { "if": { @@ -55670,7 +55768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australianantarcticdivision-2b5d76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/australianantarcticdivision-2b5d76.jpg" }, { "if": { @@ -55684,7 +55782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australianwildlifeconservancy-b5b751.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/australianwildlifeconservancy-b5b751.jpg" }, { "if": { @@ -55699,7 +55797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecounty-f0b713.svg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecounty-f0b713.svg" }, { "if": { @@ -55714,7 +55812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecountydepartmentofrecreationandparks-f0b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecountydepartmentofrecreationandparks-f0b713.jpg" }, { "if": { @@ -55729,7 +55827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berkshirenaturalresourcescouncil-dd28c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berkshirenaturalresourcescouncil-dd28c3.jpg" }, { "if": { @@ -55743,7 +55841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brabantslandschap-889726.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brabantslandschap-889726.jpg" }, { "if": { @@ -55761,7 +55859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauoflandmanagement-167f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-167f6a.jpg" }, { "if": { @@ -55779,7 +55877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauofreclamation-167f6a.png" + "then": "https://data.mapcomplete.org/nsi//logos/bureauofreclamation-167f6a.png" }, { "if": { @@ -55793,7 +55891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bushheritageaustralia-b5b751.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bushheritageaustralia-b5b751.jpg" }, { "if": { @@ -55808,7 +55906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentoffishandwildlife-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentoffishandwildlife-6f7339.jpg" }, { "if": { @@ -55824,7 +55922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofforestryandfireprotection-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofforestryandfireprotection-6f7339.jpg" }, { "if": { @@ -55839,7 +55937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofparksandrecreation-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofparksandrecreation-6f7339.jpg" }, { "if": { @@ -55854,7 +55952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityandcountyofdenver-13d7c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityandcountyofdenver-13d7c3.jpg" }, { "if": { @@ -55869,7 +55967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcoloradosprings-13d7c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcoloradosprings-13d7c3.jpg" }, { "if": { @@ -55884,7 +55982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflosangeles-396679.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflosangeles-396679.png" }, { "if": { @@ -55900,7 +55998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradoparksandwildlife-13d7c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradoparksandwildlife-13d7c3.jpg" }, { "if": { @@ -55915,7 +56013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthdepartmentofclimatechangeenergytheenvironmentandwater-b5b751.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthdepartmentofclimatechangeenergytheenvironmentandwater-b5b751.jpg" }, { "if": { @@ -55929,7 +56027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunidadautonomadelaregiondemurcia-41b358.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunidadautonomadelaregiondemurcia-41b358.svg" }, { "if": { @@ -55943,7 +56041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conejoopenspaceconservationagency-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conejoopenspaceconservationagency-6f7339.jpg" }, { "if": { @@ -55957,7 +56055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corporacionnacionalforestal-f965a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/corporacionnacionalforestal-f965a9.jpg" }, { "if": { @@ -55972,7 +56070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofenergyenvironmentandclimateaction-261f43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofenergyenvironmentandclimateaction-261f43.jpg" }, { "if": { @@ -55987,7 +56085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delawaredivisionoffishandwildlife-429456.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delawaredivisionoffishandwildlife-429456.jpg" }, { "if": { @@ -56002,7 +56100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofconservation-997671.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-997671.png" }, { "if": { @@ -56016,7 +56114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentoffisheriesandmarineresearch-98c4db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentoffisheriesandmarineresearch-98c4db.jpg" }, { "if": { @@ -56031,7 +56129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastbayregionalparkdistrict-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastbayregionalparkdistrict-6f7339.jpg" }, { "if": { @@ -56045,7 +56143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emissionxggmbh-e037dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emissionxggmbh-e037dc.jpg" }, { "if": { @@ -56060,7 +56158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestpreservedistrictofcookcounty-8c9c28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofcookcounty-8c9c28.jpg" }, { "if": { @@ -56075,7 +56173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestpreservedistrictofdupagecounty-8c9c28.png" + "then": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofdupagecounty-8c9c28.png" }, { "if": { @@ -56089,7 +56187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestrycorporationofnsw-292b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forestrycorporationofnsw-292b9d.jpg" }, { "if": { @@ -56103,7 +56201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gelderschlandschapandkasteelen-889726.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gelderschlandschapandkasteelen-889726.jpg" }, { "if": { @@ -56117,7 +56215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindepetershausen-a1651b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindepetershausen-a1651b.svg" }, { "if": { @@ -56131,7 +56229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitatvalenciana-41b358.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-41b358.jpg" }, { "if": { @@ -56145,7 +56243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatparksofhamiltoncounty-73cd94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatparksofhamiltoncounty-73cd94.jpg" }, { "if": { @@ -56160,7 +56258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grongkommune-65ea71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/grongkommune-65ea71.svg" }, { "if": { @@ -56176,7 +56274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoisdepartmentofnaturalresources-8c9c28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentofnaturalresources-8c9c28.jpg" }, { "if": { @@ -56191,7 +56289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutochicomendesdeconservacaodabiodiversidade-20a11c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutochicomendesdeconservacaodabiodiversidade-20a11c.jpg" }, { "if": { @@ -56206,7 +56304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutoestadualdoambiente-20a11c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutoestadualdoambiente-20a11c.jpg" }, { "if": { @@ -56222,7 +56320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iowadepartmentofnaturalresources-bde927.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iowadepartmentofnaturalresources-bde927.jpg" }, { "if": { @@ -56238,7 +56336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeffersoncountyopenspace-13d7c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeffersoncountyopenspace-13d7c3.jpg" }, { "if": { @@ -56254,7 +56352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansasdepartmentofwildlifeandparks-34586e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kansasdepartmentofwildlifeandparks-34586e.jpg" }, { "if": { @@ -56270,7 +56368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-6f7339.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-6f7339.png" }, { "if": { @@ -56284,7 +56382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisharburg-d97dc4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisharburg-d97dc4.svg" }, { "if": { @@ -56298,7 +56396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisheidekreis-d97dc4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisheidekreis-d97dc4.svg" }, { "if": { @@ -56312,7 +56410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisrotenburg-d97dc4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisrotenburg-d97dc4.svg" }, { "if": { @@ -56326,7 +56424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelseniblekingelan-c450a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelseniblekingelan-c450a4.png" }, { "if": { @@ -56340,7 +56438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenidalarnaslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenidalarnaslan-c450a4.jpg" }, { "if": { @@ -56354,7 +56452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenigavleborgslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenigavleborgslan-c450a4.jpg" }, { "if": { @@ -56368,7 +56466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenigotlandslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenigotlandslan-c450a4.jpg" }, { "if": { @@ -56382,7 +56480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenihallandslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenihallandslan-c450a4.jpg" }, { "if": { @@ -56396,7 +56494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenijamtlandslan-c450a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenijamtlandslan-c450a4.png" }, { "if": { @@ -56410,7 +56508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenijonkopingslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenijonkopingslan-c450a4.jpg" }, { "if": { @@ -56424,7 +56522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenikalmarlan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenikalmarlan-c450a4.jpg" }, { "if": { @@ -56438,7 +56536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenikronobergslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenikronobergslan-c450a4.jpg" }, { "if": { @@ -56452,7 +56550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelseninorrbottenslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelseninorrbottenslan-c450a4.jpg" }, { "if": { @@ -56466,7 +56564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelseniorebrolan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelseniorebrolan-c450a4.jpg" }, { "if": { @@ -56480,7 +56578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelseniostergotlandslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelseniostergotlandslan-c450a4.jpg" }, { "if": { @@ -56494,7 +56592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelseniskanelan-c450a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelseniskanelan-c450a4.png" }, { "if": { @@ -56508,7 +56606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenisodermanlandslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenisodermanlandslan-c450a4.jpg" }, { "if": { @@ -56522,7 +56620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenistockholmslan-c450a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenistockholmslan-c450a4.png" }, { "if": { @@ -56536,7 +56634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenivarmlandslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivarmlandslan-c450a4.jpg" }, { "if": { @@ -56550,7 +56648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenivasterbottenslan-c450a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivasterbottenslan-c450a4.png" }, { "if": { @@ -56564,7 +56662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenivasternorrlandslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivasternorrlandslan-c450a4.jpg" }, { "if": { @@ -56578,7 +56676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenivastmanlandslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivastmanlandslan-c450a4.jpg" }, { "if": { @@ -56592,7 +56690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lansstyrelsenivastragotalandslan-c450a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivastragotalandslan-c450a4.jpg" }, { "if": { @@ -56606,7 +56704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/limburgslandschap-12c161.png" + "then": "https://data.mapcomplete.org/nsi//logos/limburgslandschap-12c161.png" }, { "if": { @@ -56621,7 +56719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelescounty-396679.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losangelescounty-396679.jpg" }, { "if": { @@ -56635,7 +56733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marincountyparks-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marincountyparks-6f7339.jpg" }, { "if": { @@ -56650,7 +56748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylandparkservice-f0b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marylandparkservice-f0b713.jpg" }, { "if": { @@ -56665,7 +56763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylandnationalcapitalparkandplanningcommission-167f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marylandnationalcapitalparkandplanningcommission-167f6a.jpg" }, { "if": { @@ -56679,7 +56777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massaudubon-dd28c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/massaudubon-dd28c3.png" }, { "if": { @@ -56694,7 +56792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrovancouverregionalparks-dc06ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/metrovancouverregionalparks-dc06ea.png" }, { "if": { @@ -56708,7 +56806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metsahallitus-34f9cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metsahallitus-34f9cb.jpg" }, { "if": { @@ -56724,7 +56822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigandepartmentofnaturalresources-0e46de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofnaturalresources-0e46de.jpg" }, { "if": { @@ -56740,7 +56838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotadepartmentofnaturalresources-24a567.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotadepartmentofnaturalresources-24a567.jpg" }, { "if": { @@ -56755,7 +56853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missouridepartmentofconservation-ff9f49.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missouridepartmentofconservation-ff9f49.jpg" }, { "if": { @@ -56770,7 +56868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montanadepartmentoffishwildlifeandparks-d69c95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montanadepartmentoffishwildlifeandparks-d69c95.jpg" }, { "if": { @@ -56785,7 +56883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montgomeryparks-f0b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montgomeryparks-f0b713.jpg" }, { "if": { @@ -56800,7 +56898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mosskommune-65ea71.png" + "then": "https://data.mapcomplete.org/nsi//logos/mosskommune-65ea71.png" }, { "if": { @@ -56814,7 +56912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mountainsrecreationandconservationauthority-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mountainsrecreationandconservationauthority-6f7339.jpg" }, { "if": { @@ -56832,7 +56930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaloceanicandatmosphericadministration-167f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaloceanicandatmosphericadministration-167f6a.jpg" }, { "if": { @@ -56850,7 +56948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparkservice-167f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-167f6a.jpg" }, { "if": { @@ -56865,7 +56963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrust-b10dfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrust-b10dfd.jpg" }, { "if": { @@ -56881,7 +56979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrustforscotland-3da0d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-3da0d4.jpg" }, { "if": { @@ -56895,7 +56993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturalengland-e218b1.png" + "then": "https://data.mapcomplete.org/nsi//logos/naturalengland-e218b1.png" }, { "if": { @@ -56910,7 +57008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturalresourcesconservationservice-167f6a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/naturalresourcesconservationservice-167f6a.svg" }, { "if": { @@ -56926,7 +57024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natureconservancyofcanada-eb4300.png" + "then": "https://data.mapcomplete.org/nsi//logos/natureconservancyofcanada-eb4300.png" }, { "if": { @@ -56940,7 +57038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natuurmonumenten-889726.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/natuurmonumenten-889726.jpg" }, { "if": { @@ -56954,7 +57052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natuurpunt-733240.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/natuurpunt-733240.jpg" }, { "if": { @@ -56970,7 +57068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nebraskagameandparkscommission-22c000.png" + "then": "https://data.mapcomplete.org/nsi//logos/nebraskagameandparkscommission-22c000.png" }, { "if": { @@ -56985,7 +57083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newjerseydivisionoffishandwildlife-bfc7af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newjerseydivisionoffishandwildlife-bfc7af.jpg" }, { "if": { @@ -57000,7 +57098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newmexicodepartmentofgameandfish-515a72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newmexicodepartmentofgameandfish-515a72.jpg" }, { "if": { @@ -57016,7 +57114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatedepartmentofenvironmentalconservation-b02294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofenvironmentalconservation-b02294.jpg" }, { "if": { @@ -57031,7 +57129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstateofficeofparksrecreationandhistoricpreservation-b02294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstateofficeofparksrecreationandhistoricpreservation-b02294.jpg" }, { "if": { @@ -57047,7 +57145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcarolinadivisionofparksandrecreation-6d4e0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northcarolinadivisionofparksandrecreation-6d4e0c.jpg" }, { "if": { @@ -57061,7 +57159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcarolinawildliferesourcescommission-6d4e0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/northcarolinawildliferesourcescommission-6d4e0c.png" }, { "if": { @@ -57076,7 +57174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northdakotagameandfishdepartment-86859c.png" + "then": "https://data.mapcomplete.org/nsi//logos/northdakotagameandfishdepartment-86859c.png" }, { "if": { @@ -57091,7 +57189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswnationalparksandwildlifeservice-292b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswnationalparksandwildlifeservice-292b9d.jpg" }, { "if": { @@ -57107,7 +57205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiodepartmentofnaturalresources-73cd94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofnaturalresources-73cd94.jpg" }, { "if": { @@ -57123,7 +57221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomadepartmentofwildlifeconservation-5cc372.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomadepartmentofwildlifeconservation-5cc372.jpg" }, { "if": { @@ -57138,7 +57236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontarioparks-acb620.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ontarioparks-acb620.jpg" }, { "if": { @@ -57153,7 +57251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangecounty-637e4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orangecounty-637e4d.jpg" }, { "if": { @@ -57168,7 +57266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orangecounty-b02294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orangecounty-b02294.jpg" }, { "if": { @@ -57186,7 +57284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregondepartmentofforestry-8f69f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oregondepartmentofforestry-8f69f0.jpg" }, { "if": { @@ -57204,7 +57302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregondepartmentoffishandwildlife-8f69f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oregondepartmentoffishandwildlife-8f69f0.jpg" }, { "if": { @@ -57219,7 +57317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregonparksandrecreationdepartment-8f69f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oregonparksandrecreationdepartment-8f69f0.jpg" }, { "if": { @@ -57233,7 +57331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksandwildlifeservice-245152.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parksandwildlifeservice-245152.jpg" }, { "if": { @@ -57247,7 +57345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksaustralia-b5b751.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parksaustralia-b5b751.jpg" }, { "if": { @@ -57261,7 +57359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksvictoria-261f43.png" + "then": "https://data.mapcomplete.org/nsi//logos/parksvictoria-261f43.png" }, { "if": { @@ -57276,7 +57374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/princegeorgescountydepartmentofparksandrecreation-f0b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/princegeorgescountydepartmentofparksandrecreation-f0b713.jpg" }, { "if": { @@ -57290,7 +57388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadebuenosaires-37bb86.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadebuenosaires-37bb86.jpg" }, { "if": { @@ -57304,7 +57402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadechubut-1b7dd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadechubut-1b7dd7.jpg" }, { "if": { @@ -57318,7 +57416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadecordoba-c8f652.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadecordoba-c8f652.jpg" }, { "if": { @@ -57332,7 +57430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadeformosa-2c3b94.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadeformosa-2c3b94.svg" }, { "if": { @@ -57346,7 +57444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciademendoza-8ccc57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciademendoza-8ccc57.jpg" }, { "if": { @@ -57360,7 +57458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciademisiones-2fd7fa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciademisiones-2fd7fa.svg" }, { "if": { @@ -57374,7 +57472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadeneuquen-357075.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadeneuquen-357075.svg" }, { "if": { @@ -57388,7 +57486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadesalta-341dc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadesalta-341dc9.jpg" }, { "if": { @@ -57402,7 +57500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadesantacruz-68cd17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadesantacruz-68cd17.jpg" }, { "if": { @@ -57416,7 +57514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadesantafe-0b6ccc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadesantafe-0b6ccc.jpg" }, { "if": { @@ -57431,7 +57529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadibologna-85a6ed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadibologna-85a6ed.svg" }, { "if": { @@ -57446,7 +57544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadimodena-85a6ed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadimodena-85a6ed.svg" }, { "if": { @@ -57461,7 +57559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadireggioemilia-85a6ed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadireggioemilia-85a6ed.svg" }, { "if": { @@ -57476,7 +57574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regioneumbria-72c2fa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/regioneumbria-72c2fa.svg" }, { "if": { @@ -57491,7 +57589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalsocietyfortheprotectionofbirds-e218b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalsocietyfortheprotectionofbirds-e218b1.jpg" }, { "if": { @@ -57505,7 +57603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santaclaravalleyopenspaceauthority-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/santaclaravalleyopenspaceauthority-6f7339.jpg" }, { "if": { @@ -57519,7 +57617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sempervirensfund-6f7339.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sempervirensfund-6f7339.jpg" }, { "if": { @@ -57533,7 +57631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southfloridawatermanagementdistrict-a46e88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southfloridawatermanagementdistrict-a46e88.jpg" }, { "if": { @@ -57547,7 +57645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnsriverwatermanagementdistrict-a46e88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnsriverwatermanagementdistrict-a46e88.jpg" }, { "if": { @@ -57561,7 +57659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/staatsbosbeheer-889726.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/staatsbosbeheer-889726.jpg" }, { "if": { @@ -57576,7 +57674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateofhawaii-433b65.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stateofhawaii-433b65.jpg" }, { "if": { @@ -57591,7 +57689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sudburyvalleytrustees-dd28c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sudburyvalleytrustees-dd28c3.jpg" }, { "if": { @@ -57606,7 +57704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suldalkommune-65ea71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/suldalkommune-65ea71.svg" }, { "if": { @@ -57620,7 +57718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwanneeriverwatermanagementdistrict-a46e88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwanneeriverwatermanagementdistrict-a46e88.jpg" }, { "if": { @@ -57634,7 +57732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasmaniaparksandwildlifeservice-3bca28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tasmaniaparksandwildlifeservice-3bca28.jpg" }, { "if": { @@ -57648,7 +57746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseewildliferesourcesagency-091300.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseewildliferesourcesagency-091300.png" }, { "if": { @@ -57664,7 +57762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasparksandwildlifedepartment-c4044d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasparksandwildlifedepartment-c4044d.jpg" }, { "if": { @@ -57680,7 +57778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thenatureconservancy-7f8cf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thenatureconservancy-7f8cf5.jpg" }, { "if": { @@ -57695,7 +57793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofrye-38c1a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofrye-38c1a8.jpg" }, { "if": { @@ -57710,7 +57808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofsudbury-dd28c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofsudbury-dd28c3.jpg" }, { "if": { @@ -57724,7 +57822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trusteesofreservations-dd28c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trusteesofreservations-dd28c3.jpg" }, { "if": { @@ -57740,7 +57838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesarmycorpsofengineers-167f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesarmycorpsofengineers-167f6a.jpg" }, { "if": { @@ -57756,7 +57854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usdepartmentofdefense-167f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usdepartmentofdefense-167f6a.jpg" }, { "if": { @@ -57774,7 +57872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesfishandwildlifeservice-167f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesfishandwildlifeservice-167f6a.jpg" }, { "if": { @@ -57792,7 +57890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesforestservice-167f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesforestservice-167f6a.jpg" }, { "if": { @@ -57807,7 +57905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesofamerica-167f6a.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesofamerica-167f6a.png" }, { "if": { @@ -57822,7 +57920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontdepartmentofforestsparksandrecreation-6f8ce2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontdepartmentofforestsparksandrecreation-6f8ce2.jpg" }, { "if": { @@ -57837,7 +57935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontfishandwildlifedepartment-6f8ce2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontfishandwildlifedepartment-6f8ce2.jpg" }, { "if": { @@ -57852,7 +57950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiadepartmentofgameandinlandfisheries-eb41a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentofgameandinlandfisheries-eb41a5.jpg" }, { "if": { @@ -57866,7 +57964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vlaamsgewestagentschapnatuurenbos-733240.png" + "then": "https://data.mapcomplete.org/nsi//logos/vlaamsgewestagentschapnatuurenbos-733240.png" }, { "if": { @@ -57882,7 +57980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtondepartmentoffishandwildlife-4d9054.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtondepartmentoffishandwildlife-4d9054.jpg" }, { "if": { @@ -57897,7 +57995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonstatedepartmentofnaturalresources-4d9054.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonstatedepartmentofnaturalresources-4d9054.jpg" }, { "if": { @@ -57912,7 +58010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonstateparksandrecreationcommission-4d9054.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonstateparksandrecreationcommission-4d9054.jpg" }, { "if": { @@ -57928,7 +58026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsindepartmentofnaturalresources-c2df53.png" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentofnaturalresources-c2df53.png" }, { "if": { @@ -57942,7 +58040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wolfriverconservancy-091300.png" + "then": "https://data.mapcomplete.org/nsi//logos/wolfriverconservancy-091300.png" }, { "if": { @@ -57956,7 +58054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xuntadegalicia-41b358.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xuntadegalicia-41b358.jpg" }, { "if": { @@ -57970,7 +58068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adacluftrettungggmbh-d077c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/adacluftrettungggmbh-d077c2.png" }, { "if": { @@ -57984,7 +58082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambulanceijsselland-851507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ambulanceijsselland-851507.jpg" }, { "if": { @@ -57998,7 +58096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambulanceoost-851507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ambulanceoost-851507.jpg" }, { "if": { @@ -58012,7 +58110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ambulancevictoria-6651b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ambulancevictoria-6651b8.jpg" }, { "if": { @@ -58026,7 +58124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemadrid-b3e350.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-b3e350.png" }, { "if": { @@ -58040,7 +58138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bcambulanceservice-ffbb04.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bcambulanceservice-ffbb04.jpg" }, { "if": { @@ -58054,7 +58152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerfeuerwehr-4125a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerfeuerwehr-4125a2.jpg" }, { "if": { @@ -58068,7 +58166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drkrettungsdienstmittelhessen-843991.png" + "then": "https://data.mapcomplete.org/nsi//logos/drkrettungsdienstmittelhessen-843991.png" }, { "if": { @@ -58082,7 +58180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastmidlandsambulanceservice-4d00c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastmidlandsambulanceservice-4d00c7.jpg" }, { "if": { @@ -58096,7 +58194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastofenglandambulanceservice-ccb804.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastofenglandambulanceservice-ccb804.jpg" }, { "if": { @@ -58110,7 +58208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/feuerwehrhamburg-cc534f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/feuerwehrhamburg-cc534f.jpg" }, { "if": { @@ -58124,7 +58222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hsenationalambulanceservice-55b9ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hsenationalambulanceservice-55b9ac.jpg" }, { "if": { @@ -58138,7 +58236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isleofwightnhstrust-071b94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/isleofwightnhstrust-071b94.jpg" }, { "if": { @@ -58152,7 +58250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landesrettungsvereinweisseskreuz-d63413.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landesrettungsvereinweisseskreuz-d63413.jpg" }, { "if": { @@ -58166,7 +58264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonambulanceservice-aece76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonambulanceservice-aece76.jpg" }, { "if": { @@ -58180,7 +58278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northeastambulanceservice-5ff189.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northeastambulanceservice-5ff189.jpg" }, { "if": { @@ -58194,7 +58292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestambulanceservice-ab716a.png" + "then": "https://data.mapcomplete.org/nsi//logos/northwestambulanceservice-ab716a.png" }, { "if": { @@ -58208,7 +58306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernirelandambulanceservice-578b54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernirelandambulanceservice-578b54.jpg" }, { "if": { @@ -58222,7 +58320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswambulance-2fb321.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswambulance-2fb321.jpg" }, { "if": { @@ -58236,7 +58334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orszagosmentoszolgalat-9ab0cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orszagosmentoszolgalat-9ab0cd.jpg" }, { "if": { @@ -58250,7 +58348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterreichischesroteskreuzlandesverbandburgenland-a0ed90.png" + "then": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuzlandesverbandburgenland-a0ed90.png" }, { "if": { @@ -58264,7 +58362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterreichischesroteskreuzlandesverbandkarnten-4d3418.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuzlandesverbandkarnten-4d3418.jpg" }, { "if": { @@ -58278,7 +58376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterreichischesroteskreuzlandesverbandniederosterreich-d0862d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuzlandesverbandniederosterreich-d0862d.jpg" }, { "if": { @@ -58292,7 +58390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterreichischesroteskreuzlandesverbandsalzburg-ae68c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuzlandesverbandsalzburg-ae68c2.jpg" }, { "if": { @@ -58306,7 +58404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queenslandambulanceservice-958c13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/queenslandambulanceservice-958c13.jpg" }, { "if": { @@ -58320,7 +58418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ravbrabantmiddenwestnoord-851507.png" + "then": "https://data.mapcomplete.org/nsi//logos/ravbrabantmiddenwestnoord-851507.png" }, { "if": { @@ -58334,7 +58432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ravhollandsmidden-851507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ravhollandsmidden-851507.jpg" }, { "if": { @@ -58348,7 +58446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rettungsdienstkooperationinschleswigholsteinggmbh-86bca7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rettungsdienstkooperationinschleswigholsteinggmbh-86bca7.jpg" }, { "if": { @@ -58362,7 +58460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saambulanceservice-78af57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saambulanceservice-78af57.jpg" }, { "if": { @@ -58376,7 +58474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/samu192-01b57c.png" + "then": "https://data.mapcomplete.org/nsi//logos/samu192-01b57c.png" }, { "if": { @@ -58390,7 +58488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishambulanceservice-402965.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scottishambulanceservice-402965.jpg" }, { "if": { @@ -58404,7 +58502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southcentralambulanceservice-5ae902.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southcentralambulanceservice-5ae902.jpg" }, { "if": { @@ -58418,7 +58516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southeastcoastambulanceservice-ebeb10.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southeastcoastambulanceservice-ebeb10.jpg" }, { "if": { @@ -58432,7 +58530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwesternambulanceservice-bba5ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwesternambulanceservice-bba5ce.jpg" }, { "if": { @@ -58446,7 +58544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnambulance-88fc80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-88fc80.jpg" }, { "if": { @@ -58460,7 +58558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnambulance-55b9ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-55b9ac.jpg" }, { "if": { @@ -58474,7 +58572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnambulance-ec65c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-ec65c5.jpg" }, { "if": { @@ -58488,7 +58586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnambulance-578b54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-578b54.jpg" }, { "if": { @@ -58502,7 +58600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnambulance-aa98c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-aa98c4.jpg" }, { "if": { @@ -58516,7 +58614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnambulancent-94c74e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnambulancent-94c74e.jpg" }, { "if": { @@ -58530,7 +58628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stjohnambulancewa-1d2a42.png" + "then": "https://data.mapcomplete.org/nsi//logos/stjohnambulancewa-1d2a42.png" }, { "if": { @@ -58546,7 +58644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welshambulanceservice-aa98c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welshambulanceservice-aa98c4.jpg" }, { "if": { @@ -58560,7 +58658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westmidlandsambulanceservice-514458.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westmidlandsambulanceservice-514458.jpg" }, { "if": { @@ -58574,7 +58672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienerberufsrettung-804f9e.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienerberufsrettung-804f9e.png" }, { "if": { @@ -58588,7 +58686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yorkshireambulanceservice-396bc7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yorkshireambulanceservice-396bc7.jpg" }, { "if": { @@ -58602,7 +58700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zdravotnickazachrannasluzbaplzenskehokraje-baba62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zdravotnickazachrannasluzbaplzenskehokraje-baba62.jpg" }, { "if": { @@ -58621,7 +58719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongfireservicesdepartment-921c7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongfireservicesdepartment-921c7f.jpg" }, { "if": { @@ -58635,7 +58733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/actstateemergencyservice-5fddb6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/actstateemergencyservice-5fddb6.jpg" }, { "if": { @@ -58649,7 +58747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswstateemergencyservice-5c3990.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswstateemergencyservice-5c3990.jpg" }, { "if": { @@ -58663,7 +58761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southaustralianstateemergencyservice-ee4c67.svg" + "then": "https://data.mapcomplete.org/nsi//logos/southaustralianstateemergencyservice-ee4c67.svg" }, { "if": { @@ -58678,7 +58776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundesanstalttechnischeshilfswerk-2e84d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundesanstalttechnischeshilfswerk-2e84d6.jpg" }, { "if": { @@ -58692,7 +58790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/victoriastateemergencyservice-c5f233.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/victoriastateemergencyservice-c5f233.jpg" }, { "if": { @@ -58706,7 +58804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdebarcelona-470772.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-470772.svg" }, { "if": { @@ -58721,7 +58819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayerischesroteskreuz-29d641.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-29d641.jpg" }, { "if": { @@ -58738,7 +58836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brigadamilitardoriograndedosul-17456e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brigadamilitardoriograndedosul-17456e.jpg" }, { "if": { @@ -58753,7 +58851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpodebombeirosmilitardesantacatarina-30a857.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpodebombeirosmilitardesantacatarina-30a857.png" }, { "if": { @@ -58767,7 +58865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpodebombeirosmilitardoriograndedosul-17456e.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpodebombeirosmilitardoriograndedosul-17456e.png" }, { "if": { @@ -58782,7 +58880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschelebensrettungsgesellschaft-1a514f.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschelebensrettungsgesellschaft-1a514f.png" }, { "if": { @@ -58797,7 +58895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldcoastcitycouncil-4be82f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldcoastcitycouncil-4be82f.jpg" }, { "if": { @@ -58812,7 +58910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalnationallifeboatinstitution-d799df.png" + "then": "https://data.mapcomplete.org/nsi//logos/royalnationallifeboatinstitution-d799df.png" }, { "if": { @@ -58827,7 +58925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societenationaledesauvetageenmer-adf184.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/societenationaledesauvetageenmer-adf184.jpg" }, { "if": { @@ -58841,7 +58939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surflifesavingnewzealand-d0e9cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surflifesavingnewzealand-d0e9cd.jpg" }, { "if": { @@ -58855,7 +58953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asfinag-ed5273.svg" + "then": "https://data.mapcomplete.org/nsi//logos/asfinag-ed5273.svg" }, { "if": { @@ -58869,7 +58967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/at-25eda4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/at-25eda4.jpg" }, { "if": { @@ -58883,7 +58981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auburnuniversity-b53a22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/auburnuniversity-b53a22.jpg" }, { "if": { @@ -58898,7 +58996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autopistasurbanassa-66a4a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autopistasurbanassa-66a4a0.jpg" }, { "if": { @@ -58912,7 +59010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autostradawielkopolska-cf0612.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autostradawielkopolska-cf0612.jpg" }, { "if": { @@ -58926,7 +59024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bjornsteigerstiftung-3876cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bjornsteigerstiftung-3876cc.jpg" }, { "if": { @@ -58940,7 +59038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bombersdelageneralitatdecatalunya-a463d2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bombersdelageneralitatdecatalunya-a463d2.svg" }, { "if": { @@ -58955,7 +59053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bowlinggreenstateuniversity-25a309.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-25a309.jpg" }, { "if": { @@ -58969,7 +59067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brownuniversity-0bc0f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/brownuniversity-0bc0f6.png" }, { "if": { @@ -58983,7 +59081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clemsonuniversity-ce3621.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clemsonuniversity-ce3621.jpg" }, { "if": { @@ -58997,7 +59095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csuchicopolicedepartment-a22ec8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csuchicopolicedepartment-a22ec8.jpg" }, { "if": { @@ -59011,7 +59109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebahn-3876cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebahn-3876cc.png" }, { "if": { @@ -59025,7 +59123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschetelekomag-3876cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschetelekomag-3876cc.jpg" }, { "if": { @@ -59039,7 +59137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dieautobahngmbhdesbundes-3876cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/dieautobahngmbhdesbundes-3876cc.png" }, { "if": { @@ -59054,7 +59152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalnadyrekcjadrogkrajowychiautostrad-cf0612.png" + "then": "https://data.mapcomplete.org/nsi//logos/generalnadyrekcjadrogkrajowychiautostrad-cf0612.png" }, { "if": { @@ -59068,7 +59166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hopecollege-4b3b14.png" + "then": "https://data.mapcomplete.org/nsi//logos/hopecollege-4b3b14.png" }, { "if": { @@ -59083,7 +59181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnshopkinsuniversity-b21369.png" + "then": "https://data.mapcomplete.org/nsi//logos/johnshopkinsuniversity-b21369.png" }, { "if": { @@ -59097,7 +59195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentstateuniversity-25a309.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-25a309.jpg" }, { "if": { @@ -59111,7 +59209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayettecollege-db5f36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayettecollege-db5f36.jpg" }, { "if": { @@ -59125,7 +59223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landesbetriebstrassenbaunrw-3876cc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landesbetriebstrassenbaunrw-3876cc.svg" }, { "if": { @@ -59139,7 +59237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcgilluniversity-3673d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcgilluniversity-3673d4.jpg" }, { "if": { @@ -59153,7 +59251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mit-4facae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mit-4facae.jpg" }, { "if": { @@ -59168,7 +59266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/munchnerverkehrsgesellschaft-e1233b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/munchnerverkehrsgesellschaft-e1233b.jpg" }, { "if": { @@ -59183,7 +59281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalhighways-851822.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalhighways-851822.jpg" }, { "if": { @@ -59198,7 +59296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nederlandsespoorwegen-5f7cd9.png" + "then": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-5f7cd9.png" }, { "if": { @@ -59212,7 +59310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkrail-89d420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkrail-89d420.jpg" }, { "if": { @@ -59226,7 +59324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nlexcorporation-507034.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nlexcorporation-507034.jpg" }, { "if": { @@ -59240,7 +59338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcarolinastateuniversity-ca5227.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northcarolinastateuniversity-ca5227.jpg" }, { "if": { @@ -59254,7 +59352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/queensuniversity-de0db7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/queensuniversity-de0db7.jpg" }, { "if": { @@ -59269,7 +59367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochesterinstituteoftechnology-c2fcbd.png" + "then": "https://data.mapcomplete.org/nsi//logos/rochesterinstituteoftechnology-c2fcbd.png" }, { "if": { @@ -59283,7 +59381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rsd-5526e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rsd-5526e0.jpg" }, { "if": { @@ -59297,7 +59395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanef-6aca25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sanef-6aca25.svg" }, { "if": { @@ -59311,7 +59409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/santaclaracounty-87c79e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/santaclaracounty-87c79e.svg" }, { "if": { @@ -59325,7 +59423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattleuniversity-82c3f1.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattleuniversity-82c3f1.png" }, { "if": { @@ -59339,7 +59437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slipperyrockuniversity-db5f36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slipperyrockuniversity-db5f36.jpg" }, { "if": { @@ -59354,7 +59452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-6aca25.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-6aca25.png" }, { "if": { @@ -59368,7 +59466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkarlsruhe-a87c27.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-a87c27.png" }, { "if": { @@ -59382,7 +59480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaugsburg-223542.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-223542.png" }, { "if": { @@ -59396,7 +59494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stanforduniversity-a22ec8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stanforduniversity-a22ec8.jpg" }, { "if": { @@ -59411,7 +59509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svenskaturistforeningen-76fb80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/svenskaturistforeningen-76fb80.jpg" }, { "if": { @@ -59425,7 +59523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texaswomansuniversity-d7c31f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texaswomansuniversity-d7c31f.jpg" }, { "if": { @@ -59439,7 +59537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/towsonuniversity-b21369.png" + "then": "https://data.mapcomplete.org/nsi//logos/towsonuniversity-b21369.png" }, { "if": { @@ -59453,7 +59551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transfort-2829ac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transfort-2829ac.svg" }, { "if": { @@ -59467,7 +59565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-86d884.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-86d884.jpg" }, { "if": { @@ -59481,7 +59579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trenesargentinos-91d45d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-91d45d.svg" }, { "if": { @@ -59495,7 +59593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umasslowell-4facae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umasslowell-4facae.jpg" }, { "if": { @@ -59510,7 +59608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatescustomsandborderprotection-dc8817.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatescustomsandborderprotection-dc8817.jpg" }, { "if": { @@ -59524,7 +59622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityatbuffalo-c2fcbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityatbuffalo-c2fcbd.jpg" }, { "if": { @@ -59538,7 +59636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofcanterbury-dce6cd.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofcanterbury-dce6cd.png" }, { "if": { @@ -59552,7 +59650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofmelbourne-9d2726.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofmelbourne-9d2726.jpg" }, { "if": { @@ -59566,7 +59664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofsussex-851822.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofsussex-851822.jpg" }, { "if": { @@ -59580,7 +59678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityoftoronto-de0db7.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityoftoronto-de0db7.png" }, { "if": { @@ -59594,7 +59692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ustrahannoverscheverkehrsbetriebeag-3876cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ustrahannoverscheverkehrsbetriebeag-3876cc.jpg" }, { "if": { @@ -59608,7 +59706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verkehrsbetriebekarlsruhegmbh-3876cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verkehrsbetriebekarlsruhegmbh-3876cc.jpg" }, { "if": { @@ -59622,7 +59720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiatech-1efc6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/virginiatech-1efc6c.png" }, { "if": { @@ -59636,7 +59734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wakakotahi-ed25d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/wakakotahi-ed25d5.png" }, { "if": { @@ -59650,7 +59748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wswmobilgmbh-2f9882.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wswmobilgmbh-2f9882.jpg" }, { "if": { @@ -59664,7 +59762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yaleuniversity-2ea36d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yaleuniversity-2ea36d.jpg" }, { "if": { @@ -59678,7 +59776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yorkuniversity-de0db7.png" + "then": "https://data.mapcomplete.org/nsi//logos/yorkuniversity-de0db7.png" }, { "if": { @@ -59692,7 +59790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundesstadtbonn-f8b912.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundesstadtbonn-f8b912.jpg" }, { "if": { @@ -59706,7 +59804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbrooklynpark-639ea2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbrooklynpark-639ea2.svg" }, { "if": { @@ -59720,7 +59818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdavao-26df2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdavao-26df2d.jpg" }, { "if": { @@ -59734,7 +59832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofminneapolis-639ea2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofminneapolis-639ea2.svg" }, { "if": { @@ -59748,7 +59846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsandsprings-058349.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsandsprings-058349.png" }, { "if": { @@ -59764,7 +59862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftulsa-058349.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftulsa-058349.svg" }, { "if": { @@ -59778,7 +59876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/douglascountyemergencymanagementagency-c6bab2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/douglascountyemergencymanagementagency-c6bab2.jpg" }, { "if": { @@ -59792,7 +59890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamiltoncountyemergencymanagementandhomelandsecurityagency-52d0dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/hamiltoncountyemergencymanagementandhomelandsecurityagency-52d0dc.png" }, { "if": { @@ -59806,7 +59904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeshauptstadtdusseldorf-f8b912.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtdusseldorf-f8b912.jpg" }, { "if": { @@ -59820,7 +59918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landkreisnortheim-796fc0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landkreisnortheim-796fc0.svg" }, { "if": { @@ -59834,7 +59932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelescountysheriffsdepartment-7b4625.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losangelescountysheriffsdepartment-7b4625.jpg" }, { "if": { @@ -59848,7 +59946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldemarica-768e06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldemarica-768e06.jpg" }, { "if": { @@ -59862,7 +59960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/severnsidesirenstrust-9767ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/severnsidesirenstrust-9767ed.jpg" }, { "if": { @@ -59877,7 +59975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniaedison-6e3e97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-6e3e97.jpg" }, { "if": { @@ -59891,7 +59989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbadenbaden-a3f227.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbadenbaden-a3f227.jpg" }, { "if": { @@ -59905,7 +60003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbruhl-f8b912.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbruhl-f8b912.svg" }, { "if": { @@ -59919,7 +60017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtdorsten-f8b912.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtdorsten-f8b912.svg" }, { "if": { @@ -59933,7 +60031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgelsenkirchen-f8b912.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgelsenkirchen-f8b912.svg" }, { "if": { @@ -59947,7 +60045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgladbeck-f8b912.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgladbeck-f8b912.svg" }, { "if": { @@ -59961,7 +60059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtheidelberg-a3f227.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtheidelberg-a3f227.png" }, { "if": { @@ -59975,7 +60073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkoln-f8b912.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkoln-f8b912.jpg" }, { "if": { @@ -59989,7 +60087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtnorderstedt-ed9346.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtnorderstedt-ed9346.svg" }, { "if": { @@ -60003,7 +60101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtpassau-831afc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtpassau-831afc.jpg" }, { "if": { @@ -60017,7 +60115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwitten-f8b912.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwitten-f8b912.jpg" }, { "if": { @@ -60031,7 +60129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-99055c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-99055c.svg" }, { "if": { @@ -60045,7 +60143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofminnesota-639ea2.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofminnesota-639ea2.png" }, { "if": { @@ -60059,7 +60157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindeprum-d10492.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeprum-d10492.svg" }, { "if": { @@ -60073,7 +60171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbandsgemeindesudeifel-d10492.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindesudeifel-d10492.svg" }, { "if": { @@ -60090,7 +60188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschegesellschaftzurrettungschiffbruchiger-2bd3ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschegesellschaftzurrettungschiffbruchiger-2bd3ed.png" }, { "if": { @@ -60106,7 +60204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koninklijkenederlandsereddingmaatschappij-67af85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koninklijkenederlandsereddingmaatschappij-67af85.jpg" }, { "if": { @@ -60122,7 +60220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalsearescueinstitute-a2f807.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalsearescueinstitute-a2f807.jpg" }, { "if": { @@ -60138,7 +60236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redningsselskapet-47607c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redningsselskapet-47607c.jpg" }, { "if": { @@ -60152,7 +60250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalcanadianmarinesearchandrescue-5b3a4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalcanadianmarinesearchandrescue-5b3a4b.jpg" }, { "if": { @@ -60167,7 +60265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalnationallifeboatinstitution-fd74ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/royalnationallifeboatinstitution-fd74ef.png" }, { "if": { @@ -60181,7 +60279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royalnewzealandcoastguard-9ad5bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royalnewzealandcoastguard-9ad5bc.jpg" }, { "if": { @@ -60197,7 +60295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sjoraddningssallskapet-c00171.png" + "then": "https://data.mapcomplete.org/nsi//logos/sjoraddningssallskapet-c00171.png" }, { "if": { @@ -60212,7 +60310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societenationaledesauvetageenmer-04cc00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/societenationaledesauvetageenmer-04cc00.jpg" }, { "if": { @@ -60226,7 +60324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/moto-5b1071.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/moto-5b1071.jpg" }, { "if": { @@ -60240,7 +60338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-fb22f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-fb22f2.jpg" }, { "if": { @@ -60254,7 +60352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-c6232d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-c6232d.jpg" }, { "if": { @@ -60268,7 +60366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-794e30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-794e30.jpg" }, { "if": { @@ -60282,7 +60380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-36d8ba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-36d8ba.svg" }, { "if": { @@ -60296,7 +60394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmax-1a9281.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmax-1a9281.png" }, { "if": { @@ -60310,7 +60408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbnetworks-aacf49.png" + "then": "https://data.mapcomplete.org/nsi//logos/esbnetworks-aacf49.png" }, { "if": { @@ -60325,7 +60423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansascityboardofpublicutilities-26592d.png" + "then": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-26592d.png" }, { "if": { @@ -60340,7 +60438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leecountyelectriccooperative-c4768d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-c4768d.jpg" }, { "if": { @@ -60355,7 +60453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monroecountydepartmentoftransportation-36d8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monroecountydepartmentoftransportation-36d8ba.jpg" }, { "if": { @@ -60370,7 +60468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pugetsoundenergy-2e474f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-2e474f.jpg" }, { "if": { @@ -60384,7 +60482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochestergasandelectric-36d8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-36d8ba.jpg" }, { "if": { @@ -60398,7 +60496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salfordcitycouncil-82a173.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salfordcitycouncil-82a173.jpg" }, { "if": { @@ -60413,7 +60511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlecitylight-2e474f.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-2e474f.png" }, { "if": { @@ -60427,7 +60525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-794e30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-794e30.jpg" }, { "if": { @@ -60444,7 +60542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centraltexasregionalmobilityauthority-2ee94d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centraltexasregionalmobilityauthority-2ee94d.jpg" }, { "if": { @@ -60460,7 +60558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harriscountytollroadauthority-2ee94d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harriscountytollroadauthority-2ee94d.jpg" }, { "if": { @@ -60474,7 +60572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoistollway-6b4377.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/illinoistollway-6b4377.jpg" }, { "if": { @@ -60489,7 +60587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylandtransportationauthority-7b785c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marylandtransportationauthority-7b785c.jpg" }, { "if": { @@ -60504,7 +60602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatethruwayauthority-b7c415.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatethruwayauthority-b7c415.jpg" }, { "if": { @@ -60521,7 +60619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northeasttexasregionalmobilityauthority-2ee94d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northeasttexasregionalmobilityauthority-2ee94d.jpg" }, { "if": { @@ -60539,7 +60637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northtexastollwayauthority-2ee94d.png" + "then": "https://data.mapcomplete.org/nsi//logos/northtexastollwayauthority-2ee94d.png" }, { "if": { @@ -60556,7 +60654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linknyc-18f10f.gif" + "then": "https://data.mapcomplete.org/nsi//logos/linknyc-18f10f.gif" }, { "if": { @@ -60572,7 +60670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cemex-4804e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cemex-4804e2.jpg" }, { "if": { @@ -60588,7 +60686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dopravnypodnikmestakosice-538cb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dopravnypodnikmestakosice-538cb3.jpg" }, { "if": { @@ -60604,7 +60702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skanskatransbetonsro-63d3fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/skanskatransbetonsro-63d3fe.png" }, { "if": { @@ -60619,7 +60717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/184e0b-4a2e40.png" + "then": "https://data.mapcomplete.org/nsi//logos/184e0b-4a2e40.png" }, { "if": { @@ -60634,7 +60732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/28c7ea-4a2e40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/28c7ea-4a2e40.jpg" }, { "if": { @@ -60649,7 +60747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cemex-19e3b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cemex-19e3b1.jpg" }, { "if": { @@ -60663,7 +60761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euroviacs-60440c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/euroviacs-60440c.jpg" }, { "if": { @@ -60677,7 +60775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euroviask-7ab4fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/euroviask-7ab4fb.jpg" }, { "if": { @@ -60691,7 +60789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fultonhogan-30f0f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fultonhogan-30f0f6.jpg" }, { "if": { @@ -60706,7 +60804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greystar-c22904.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greystar-c22904.jpg" }, { "if": { @@ -60723,7 +60821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkonghousingauthority-c7b8ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkonghousingauthority-c7b8ae.jpg" }, { "if": { @@ -60737,7 +60835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kimcorealty-b79e4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kimcorealty-b79e4b.jpg" }, { "if": { @@ -60751,7 +60849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regencycenters-b79e4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/regencycenters-b79e4b.png" }, { "if": { @@ -60765,7 +60863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sitecenters-b79e4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sitecenters-b79e4b.jpg" }, { "if": { @@ -60780,7 +60878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/audubon-b9cbaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/audubon-b9cbaf.png" }, { "if": { @@ -60795,7 +60893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ducksunlimited-c37c3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ducksunlimited-c37c3f.jpg" }, { "if": { @@ -60810,7 +60908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestpreservedistrictofdupagecounty-6b40ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofdupagecounty-6b40ef.png" }, { "if": { @@ -60825,7 +60923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestpreservedistrictofkanecounty-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofkanecounty-6b40ef.jpg" }, { "if": { @@ -60840,7 +60938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakecountyforestpreserves-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lakecountyforestpreserves-6b40ef.jpg" }, { "if": { @@ -60855,7 +60953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/littletraverseconservancy-101c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/littletraverseconservancy-101c18.jpg" }, { "if": { @@ -60870,7 +60968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonwildlifetrust-de0fdb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonwildlifetrust-de0fdb.jpg" }, { "if": { @@ -60886,7 +60984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigannatureassociation-101c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michigannatureassociation-101c18.jpg" }, { "if": { @@ -60902,7 +61000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/natureconservancyofcanada-355d3b.png" + "then": "https://data.mapcomplete.org/nsi//logos/natureconservancyofcanada-355d3b.png" }, { "if": { @@ -60917,7 +61015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/openspaceinstitute-b9cbaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/openspaceinstitute-b9cbaf.jpg" }, { "if": { @@ -60933,7 +61031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thenatureconservancy-0d1563.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thenatureconservancy-0d1563.jpg" }, { "if": { @@ -60949,7 +61047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesfishandwildlifeservice-b9cbaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesfishandwildlifeservice-b9cbaf.jpg" }, { "if": { @@ -60964,7 +61062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abbotsfordparksrecreationandculture-56b35c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abbotsfordparksrecreationandculture-56b35c.jpg" }, { "if": { @@ -60979,7 +61077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdelhospitaletdellobregat-c4d908.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdelhospitaletdellobregat-c4d908.svg" }, { "if": { @@ -60994,7 +61092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamastateparks-e4aae0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamastateparks-e4aae0.jpg" }, { "if": { @@ -61009,7 +61107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alaskadivisionofparksandoutdoorrecreation-e9a2c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alaskadivisionofparksandoutdoorrecreation-e9a2c6.jpg" }, { "if": { @@ -61024,7 +61122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alleganycountycommissioners-6ec8b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/alleganycountycommissioners-6ec8b9.png" }, { "if": { @@ -61039,7 +61137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andersonislandparksandrecreationdistrict-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andersonislandparksandrecreationdistrict-9f19b6.jpg" }, { "if": { @@ -61054,7 +61152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonastateparks-d11711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arizonastateparks-d11711.jpg" }, { "if": { @@ -61069,7 +61167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasstateparks-0cc157.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasstateparks-0cc157.jpg" }, { "if": { @@ -61085,7 +61183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arlingtonheightsparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arlingtonheightsparkdistrict-6b40ef.jpg" }, { "if": { @@ -61100,7 +61198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aucklandcouncil-fa9be8.png" + "then": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-fa9be8.png" }, { "if": { @@ -61115,7 +61213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinparksandrecreationdepartment-a3b6e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinparksandrecreationdepartment-a3b6e6.jpg" }, { "if": { @@ -61130,7 +61228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemalaga-c4d908.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemalaga-c4d908.svg" }, { "if": { @@ -61145,7 +61243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bainbridgeislandmetroparkandrecreationdistrict-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bainbridgeislandmetroparkandrecreationdistrict-9f19b6.jpg" }, { "if": { @@ -61160,7 +61258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecountydepartmentofrecreationandparks-6ec8b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecountydepartmentofrecreationandparks-6ec8b9.jpg" }, { "if": { @@ -61175,7 +61273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barnetcouncil-de0fdb.png" + "then": "https://data.mapcomplete.org/nsi//logos/barnetcouncil-de0fdb.png" }, { "if": { @@ -61190,7 +61288,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bataviaparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bataviaparkdistrict-6b40ef.jpg" }, { "if": { @@ -61205,7 +61303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayerischeverwaltungderstaatlichenschlossergartenundseen-25ab8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayerischeverwaltungderstaatlichenschlossergartenundseen-25ab8c.jpg" }, { "if": { @@ -61223,7 +61321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bruhatbengalurumahanagarapalike-38394d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bruhatbengalurumahanagarapalike-38394d.jpg" }, { "if": { @@ -61239,7 +61337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecitydepartmentofrecreationandparks-6f7ba5.png" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecitydepartmentofrecreationandparks-6f7ba5.png" }, { "if": { @@ -61254,7 +61352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belfastcitycouncil-afc2c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belfastcitycouncil-afc2c1.jpg" }, { "if": { @@ -61269,7 +61367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bendparkandrecreationdistrict-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bendparkandrecreationdistrict-4dc167.jpg" }, { "if": { @@ -61284,7 +61382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamparkandrecreationboard-e4aae0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamparkandrecreationboard-e4aae0.jpg" }, { "if": { @@ -61299,7 +61397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blacksburgparksandrecreation-d70331.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blacksburgparksandrecreation-d70331.jpg" }, { "if": { @@ -61317,7 +61415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bhubaneswarmunicipalcorporation-73d14c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bhubaneswarmunicipalcorporation-73d14c.jpg" }, { "if": { @@ -61332,7 +61430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bolingbrookparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bolingbrookparkdistrict-6b40ef.jpg" }, { "if": { @@ -61347,7 +61445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brec-615c8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brec-615c8d.jpg" }, { "if": { @@ -61362,7 +61460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brisbanecitycouncil-aa8094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brisbanecitycouncil-aa8094.jpg" }, { "if": { @@ -61377,7 +61475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristolcitycouncil-cd8f03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristolcitycouncil-cd8f03.jpg" }, { "if": { @@ -61393,7 +61491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buffalogroveparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buffalogroveparkdistrict-6b40ef.jpg" }, { "if": { @@ -61409,7 +61507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauoflandmanagement-b9cbaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-b9cbaf.jpg" }, { "if": { @@ -61424,7 +61522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofparksandrecreation-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofparksandrecreation-46dc27.jpg" }, { "if": { @@ -61440,7 +61538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calumetmemorialparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calumetmemorialparkdistrict-6b40ef.jpg" }, { "if": { @@ -61455,7 +61553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camaramunicipaldelisboa-d55e30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camaramunicipaldelisboa-d55e30.jpg" }, { "if": { @@ -61470,7 +61568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/campbelltowncitycouncil-044fbe.png" + "then": "https://data.mapcomplete.org/nsi//logos/campbelltowncitycouncil-044fbe.png" }, { "if": { @@ -61485,7 +61583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canyonlakepropertyownersassociation-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canyonlakepropertyownersassociation-46dc27.jpg" }, { "if": { @@ -61501,7 +61599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitaldevelopmentauthority-b726dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitaldevelopmentauthority-b726dd.jpg" }, { "if": { @@ -61516,7 +61614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carsoncityparksrecreationandopenspacedepartment-320125.png" + "then": "https://data.mapcomplete.org/nsi//logos/carsoncityparksrecreationandopenspacedepartment-320125.png" }, { "if": { @@ -61532,7 +61630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cartersvilleparksandrecreation-62554d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cartersvilleparksandrecreation-62554d.jpg" }, { "if": { @@ -61548,7 +61646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralregionaldistrict-56b35c.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralregionaldistrict-56b35c.png" }, { "if": { @@ -61563,7 +61661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chehalemparkandrecreationdistrict-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chehalemparkandrecreationdistrict-4dc167.jpg" }, { "if": { @@ -61578,7 +61676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagoheightsparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagoheightsparkdistrict-6b40ef.jpg" }, { "if": { @@ -61593,7 +61691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagoparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagoparkdistrict-6b40ef.jpg" }, { "if": { @@ -61608,7 +61706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christchurchcitycouncil-ff83c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/christchurchcitycouncil-ff83c4.jpg" }, { "if": { @@ -61623,7 +61721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofames-083489.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofames-083489.jpg" }, { "if": { @@ -61638,7 +61736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofandover-19fc0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofandover-19fc0b.jpg" }, { "if": { @@ -61653,7 +61751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofannarbor-101c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofannarbor-101c18.jpg" }, { "if": { @@ -61668,7 +61766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofashland-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofashland-4dc167.jpg" }, { "if": { @@ -61683,7 +61781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofashland-d8ec11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofashland-d8ec11.jpg" }, { "if": { @@ -61698,7 +61796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofashtabula-e4a950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofashtabula-e4a950.jpg" }, { "if": { @@ -61713,7 +61811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofauburn-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofauburn-9f19b6.jpg" }, { "if": { @@ -61728,7 +61826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofaurora-241158.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofaurora-241158.svg" }, { "if": { @@ -61743,7 +61841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbattlecreek-101c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbattlecreek-101c18.jpg" }, { "if": { @@ -61758,7 +61856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbattleground-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbattleground-9f19b6.jpg" }, { "if": { @@ -61773,7 +61871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbeaverton-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbeaverton-4dc167.jpg" }, { "if": { @@ -61788,7 +61886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbelleair-611b25.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbelleair-611b25.png" }, { "if": { @@ -61803,7 +61901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbellevue-083489.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbellevue-083489.jpg" }, { "if": { @@ -61818,7 +61916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbellevue-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbellevue-9f19b6.jpg" }, { "if": { @@ -61833,7 +61931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbellingham-9f19b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbellingham-9f19b6.png" }, { "if": { @@ -61848,7 +61946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofblaine-19fc0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofblaine-19fc0b.png" }, { "if": { @@ -61863,7 +61961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofblaine-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofblaine-9f19b6.jpg" }, { "if": { @@ -61878,7 +61976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofboise-53eecf.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofboise-53eecf.png" }, { "if": { @@ -61893,7 +61991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofboulder-241158.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofboulder-241158.jpg" }, { "if": { @@ -61908,7 +62006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofboyntonbeach-611b25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofboyntonbeach-611b25.svg" }, { "if": { @@ -61923,7 +62021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbremerton-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbremerton-9f19b6.jpg" }, { "if": { @@ -61938,7 +62036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbrentwood-46dc27.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbrentwood-46dc27.svg" }, { "if": { @@ -61953,7 +62051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbrentwood-44b06a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbrentwood-44b06a.jpg" }, { "if": { @@ -61968,7 +62066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbuffalo-5fa58e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbuffalo-5fa58e.svg" }, { "if": { @@ -61983,7 +62081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcaldwell-53eecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcaldwell-53eecf.jpg" }, { "if": { @@ -61998,7 +62096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcalgary-469704.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcalgary-469704.jpg" }, { "if": { @@ -62013,7 +62111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcamas-9f19b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcamas-9f19b6.png" }, { "if": { @@ -62028,7 +62126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcambridge-defa05.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcambridge-defa05.svg" }, { "if": { @@ -62043,7 +62141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcambridge-45bb01.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcambridge-45bb01.svg" }, { "if": { @@ -62061,7 +62159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcapetown-e7313b.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-e7313b.png" }, { "if": { @@ -62076,7 +62174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofchandler-d11711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofchandler-d11711.jpg" }, { "if": { @@ -62091,7 +62189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcharleston-0d235d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcharleston-0d235d.jpg" }, { "if": { @@ -62106,7 +62204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofclearwater-611b25.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofclearwater-611b25.png" }, { "if": { @@ -62121,7 +62219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcleveland-e4a950.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcleveland-e4a950.svg" }, { "if": { @@ -62136,7 +62234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcoeurdalene-53eecf.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcoeurdalene-53eecf.png" }, { "if": { @@ -62151,7 +62249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcorinth-a3b6e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcorinth-a3b6e6.png" }, { "if": { @@ -62166,7 +62264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcornelius-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcornelius-4dc167.jpg" }, { "if": { @@ -62181,7 +62279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdenton-a3b6e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdenton-a3b6e6.jpg" }, { "if": { @@ -62196,7 +62294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdesmoines-083489.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdesmoines-083489.png" }, { "if": { @@ -62211,7 +62309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdesmoines-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdesmoines-9f19b6.jpg" }, { "if": { @@ -62226,7 +62324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdetroit-101c18.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdetroit-101c18.svg" }, { "if": { @@ -62241,7 +62339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdover-7b86a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdover-7b86a2.jpg" }, { "if": { @@ -62256,7 +62354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofedmonton-469704.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofedmonton-469704.svg" }, { "if": { @@ -62271,7 +62369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofemeryville-273080.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofemeryville-273080.jpg" }, { "if": { @@ -62286,7 +62384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoferie-bec98d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoferie-bec98d.svg" }, { "if": { @@ -62301,7 +62399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoffairview-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoffairview-4dc167.png" }, { "if": { @@ -62316,7 +62414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoffarmington-9edcaa.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoffarmington-9edcaa.png" }, { "if": { @@ -62331,7 +62429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoffayetteville-0cc157.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoffayetteville-0cc157.jpg" }, { "if": { @@ -62346,7 +62444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoffontana-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoffontana-46dc27.jpg" }, { "if": { @@ -62361,7 +62459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofforestgrove-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofforestgrove-4dc167.jpg" }, { "if": { @@ -62376,7 +62474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgary-be422a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgary-be422a.svg" }, { "if": { @@ -62391,7 +62489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgeneva-5fa58e.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgeneva-5fa58e.png" }, { "if": { @@ -62406,7 +62504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgladstone-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgladstone-4dc167.png" }, { "if": { @@ -62421,7 +62519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofglendale-d11711.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofglendale-d11711.svg" }, { "if": { @@ -62436,7 +62534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgrandledge-101c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgrandledge-101c18.jpg" }, { "if": { @@ -62451,7 +62549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgreatersudbury-45bb01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgreatersudbury-45bb01.jpg" }, { "if": { @@ -62466,7 +62564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgreeley-241158.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgreeley-241158.jpg" }, { "if": { @@ -62481,7 +62579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgresham-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgresham-4dc167.jpg" }, { "if": { @@ -62496,7 +62594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhammond-be422a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhammond-be422a.png" }, { "if": { @@ -62511,7 +62609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhartford-67b670.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhartford-67b670.jpg" }, { "if": { @@ -62526,7 +62624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhartford-d8ec11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhartford-d8ec11.jpg" }, { "if": { @@ -62541,7 +62639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhighlandvillage-a3b6e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhighlandvillage-a3b6e6.png" }, { "if": { @@ -62559,7 +62657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houstonparksandrecreationdepartment-a3b6e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houstonparksandrecreationdepartment-a3b6e6.jpg" }, { "if": { @@ -62574,7 +62672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofidahofalls-53eecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofidahofalls-53eecf.jpg" }, { "if": { @@ -62589,7 +62687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofjacksonville-611b25.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofjacksonville-611b25.png" }, { "if": { @@ -62604,7 +62702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofkamloops-56b35c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofkamloops-56b35c.png" }, { "if": { @@ -62619,7 +62717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofkeizer-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofkeizer-4dc167.png" }, { "if": { @@ -62634,7 +62732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofkitchener-45bb01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofkitchener-45bb01.jpg" }, { "if": { @@ -62649,7 +62747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofknoxville-6118d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofknoxville-6118d7.png" }, { "if": { @@ -62664,7 +62762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakeoswego-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakeoswego-4dc167.jpg" }, { "if": { @@ -62679,7 +62777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakewood-1fa081.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-1fa081.svg" }, { "if": { @@ -62694,7 +62792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakewood-241158.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-241158.jpg" }, { "if": { @@ -62709,7 +62807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakewood-e4a950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-e4a950.jpg" }, { "if": { @@ -62724,7 +62822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakewoodparksandrecreation-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakewoodparksandrecreation-9f19b6.jpg" }, { "if": { @@ -62739,7 +62837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflancaster-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflancaster-46dc27.jpg" }, { "if": { @@ -62754,7 +62852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflancaster-bec98d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflancaster-bec98d.jpg" }, { "if": { @@ -62769,7 +62867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflansing-101c18.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflansing-101c18.svg" }, { "if": { @@ -62784,7 +62882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflewiston-53eecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflewiston-53eecf.jpg" }, { "if": { @@ -62799,7 +62897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflincoln-d7c809.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflincoln-d7c809.jpg" }, { "if": { @@ -62814,7 +62912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflosangeles-1fa081.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflosangeles-1fa081.png" }, { "if": { @@ -62829,7 +62927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmahtomedi-19fc0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmahtomedi-19fc0b.png" }, { "if": { @@ -62844,7 +62942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmartinez-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmartinez-46dc27.jpg" }, { "if": { @@ -62859,7 +62957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmedford-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmedford-4dc167.png" }, { "if": { @@ -62874,7 +62972,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmeridian-53eecf.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmeridian-53eecf.png" }, { "if": { @@ -62889,7 +62987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmesa-d11711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmesa-d11711.jpg" }, { "if": { @@ -62904,7 +63002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmiami-611b25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmiami-611b25.svg" }, { "if": { @@ -62919,7 +63017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmiddletown-67b670.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmiddletown-67b670.jpg" }, { "if": { @@ -62934,7 +63032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmiddletown-5fa58e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmiddletown-5fa58e.jpg" }, { "if": { @@ -62949,7 +63047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmoretonbay-aa8094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmoretonbay-aa8094.jpg" }, { "if": { @@ -62964,7 +63062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmountlaketerrace-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmountlaketerrace-9f19b6.jpg" }, { "if": { @@ -62979,7 +63077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnampa-53eecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnampa-53eecf.jpg" }, { "if": { @@ -62994,7 +63092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnorfolk-d70331.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnorfolk-d70331.png" }, { "if": { @@ -63009,7 +63107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnorman-726c77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnorman-726c77.jpg" }, { "if": { @@ -63024,7 +63122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnorwich-67b670.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnorwich-67b670.png" }, { "if": { @@ -63039,7 +63137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofoklahomacity-726c77.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofoklahomacity-726c77.png" }, { "if": { @@ -63054,7 +63152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoforlando-611b25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoforlando-611b25.jpg" }, { "if": { @@ -63069,7 +63167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoforting-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoforting-9f19b6.jpg" }, { "if": { @@ -63084,7 +63182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofoshawa-45bb01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofoshawa-45bb01.jpg" }, { "if": { @@ -63099,7 +63197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofottawa-45bb01.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofottawa-45bb01.svg" }, { "if": { @@ -63114,7 +63212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofphoenixparksandrecreationdepartment-d11711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofphoenixparksandrecreationdepartment-d11711.jpg" }, { "if": { @@ -63129,7 +63227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofpocatello-53eecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofpocatello-53eecf.jpg" }, { "if": { @@ -63144,7 +63242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofportland-46e924.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofportland-46e924.jpg" }, { "if": { @@ -63159,7 +63257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofranchocucamonga-46dc27.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofranchocucamonga-46dc27.svg" }, { "if": { @@ -63174,7 +63272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofredlands-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofredlands-46dc27.jpg" }, { "if": { @@ -63189,7 +63287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofredmond-9f19b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofredmond-9f19b6.png" }, { "if": { @@ -63204,7 +63302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofregina-2649a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofregina-2649a0.svg" }, { "if": { @@ -63219,7 +63317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrichmond-56b35c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-56b35c.jpg" }, { "if": { @@ -63234,7 +63332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrichmond-be422a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-be422a.png" }, { "if": { @@ -63249,7 +63347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrichmond-d70331.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-d70331.png" }, { "if": { @@ -63264,7 +63362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-101c18.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-101c18.png" }, { "if": { @@ -63279,7 +63377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-19fc0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-19fc0b.png" }, { "if": { @@ -63294,7 +63392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-fcd3ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-fcd3ad.jpg" }, { "if": { @@ -63309,7 +63407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-5fa58e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-5fa58e.svg" }, { "if": { @@ -63324,7 +63422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrocklin-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrocklin-46dc27.jpg" }, { "if": { @@ -63339,7 +63437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrolla-44b06a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrolla-44b06a.jpg" }, { "if": { @@ -63354,7 +63452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofroseburg-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofroseburg-4dc167.jpg" }, { "if": { @@ -63369,7 +63467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofroseville-46dc27.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofroseville-46dc27.png" }, { "if": { @@ -63384,7 +63482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsalem-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsalem-4dc167.jpg" }, { "if": { @@ -63399,7 +63497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsanantonio-a3b6e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsanantonio-a3b6e6.png" }, { "if": { @@ -63414,7 +63512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsantafe-9edcaa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsantafe-9edcaa.svg" }, { "if": { @@ -63429,7 +63527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsaultstemarie-101c18.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsaultstemarie-101c18.svg" }, { "if": { @@ -63444,7 +63542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofschertz-a3b6e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofschertz-a3b6e6.jpg" }, { "if": { @@ -63459,7 +63557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofscottsdale-d11711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofscottsdale-d11711.jpg" }, { "if": { @@ -63474,7 +63572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsherwood-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsherwood-4dc167.jpg" }, { "if": { @@ -63489,7 +63587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstjohns-9c430f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstjohns-9c430f.svg" }, { "if": { @@ -63504,7 +63602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstlouis-44b06a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstlouis-44b06a.svg" }, { "if": { @@ -63519,7 +63617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstaunton-d70331.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstaunton-d70331.jpg" }, { "if": { @@ -63534,7 +63632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstuart-611b25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstuart-611b25.jpg" }, { "if": { @@ -63549,7 +63647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsydney-044fbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsydney-044fbe.jpg" }, { "if": { @@ -63564,7 +63662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftallahassee-611b25.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-611b25.png" }, { "if": { @@ -63579,7 +63677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftigard-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftigard-4dc167.jpg" }, { "if": { @@ -63594,7 +63692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftoronto-45bb01.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftoronto-45bb01.svg" }, { "if": { @@ -63609,7 +63707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftracy-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftracy-46dc27.jpg" }, { "if": { @@ -63624,7 +63722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftroutdale-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftroutdale-4dc167.jpg" }, { "if": { @@ -63639,7 +63737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftualatin-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftualatin-4dc167.jpg" }, { "if": { @@ -63654,7 +63752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofturku-175718.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofturku-175718.jpg" }, { "if": { @@ -63669,7 +63767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftwinfalls-53eecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftwinfalls-53eecf.jpg" }, { "if": { @@ -63684,7 +63782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofvancouver-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofvancouver-9f19b6.jpg" }, { "if": { @@ -63699,7 +63797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwarren-101c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwarren-101c18.jpg" }, { "if": { @@ -63714,7 +63812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwarren-19fc0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwarren-19fc0b.jpg" }, { "if": { @@ -63729,7 +63827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwarren-bec98d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwarren-bec98d.jpg" }, { "if": { @@ -63744,7 +63842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwashougal-9f19b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwashougal-9f19b6.png" }, { "if": { @@ -63759,7 +63857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwatsonville-46dc27.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwatsonville-46dc27.png" }, { "if": { @@ -63774,7 +63872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwestlinn-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwestlinn-4dc167.jpg" }, { "if": { @@ -63789,7 +63887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwichita-e424b1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwichita-e424b1.svg" }, { "if": { @@ -63804,7 +63902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwilmington-7b86a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwilmington-7b86a2.jpg" }, { "if": { @@ -63819,7 +63917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwilsonville-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwilsonville-4dc167.png" }, { "if": { @@ -63834,7 +63932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwinnipeg-012dd4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwinnipeg-012dd4.svg" }, { "if": { @@ -63849,7 +63947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwinterpark-611b25.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwinterpark-611b25.png" }, { "if": { @@ -63864,7 +63962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwoodbury-19fc0b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwoodbury-19fc0b.svg" }, { "if": { @@ -63879,7 +63977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clackamascounty-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clackamascounty-4dc167.jpg" }, { "if": { @@ -63894,7 +63992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkcounty-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkcounty-9f19b6.jpg" }, { "if": { @@ -63909,7 +64007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandmetroparks-e4a950.svg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandmetroparks-e4a950.svg" }, { "if": { @@ -63924,7 +64022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cluthadistrictcouncil-6e0a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cluthadistrictcouncil-6e0a50.jpg" }, { "if": { @@ -63939,7 +64037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clydeparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clydeparkdistrict-6b40ef.jpg" }, { "if": { @@ -63955,7 +64053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradoparksandwildlife-241158.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradoparksandwildlife-241158.jpg" }, { "if": { @@ -63970,7 +64068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedibrescia-97b1e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedibrescia-97b1e4.svg" }, { "if": { @@ -63985,7 +64083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedicarrara-900b86.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedicarrara-900b86.svg" }, { "if": { @@ -64000,7 +64098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corkcitycouncil-93dea7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/corkcitycouncil-93dea7.svg" }, { "if": { @@ -64015,7 +64113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corvallisparksandrecreation-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/corvallisparksandrecreation-4dc167.jpg" }, { "if": { @@ -64030,7 +64128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crystallakeparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crystallakeparkdistrict-6b40ef.jpg" }, { "if": { @@ -64045,7 +64143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofconservation-c80d8f.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-c80d8f.png" }, { "if": { @@ -64060,7 +64158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dinaskotasurabaya-4e42ef.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dinaskotasurabaya-4e42ef.svg" }, { "if": { @@ -64075,7 +64173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drammenkommune-0c6879.png" + "then": "https://data.mapcomplete.org/nsi//logos/drammenkommune-0c6879.png" }, { "if": { @@ -64090,7 +64188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dublincitycouncil-73c4f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dublincitycouncil-73c4f0.jpg" }, { "if": { @@ -64106,7 +64204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhamparksandrecreation-b9a958.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/durhamparksandrecreation-b9a958.jpg" }, { "if": { @@ -64121,7 +64219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastbayregionalparkdistrict-46dc27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastbayregionalparkdistrict-46dc27.jpg" }, { "if": { @@ -64136,7 +64234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emaverde-a93914.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emaverde-a93914.jpg" }, { "if": { @@ -64152,7 +64250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresamunicipaldeareasverdesyrecreacionalternativa-a93914.png" + "then": "https://data.mapcomplete.org/nsi//logos/empresamunicipaldeareasverdesyrecreacionalternativa-a93914.png" }, { "if": { @@ -64167,7 +64265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erewashboroughcouncil-d42e3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erewashboroughcouncil-d42e3f.jpg" }, { "if": { @@ -64182,7 +64280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/espoonkaupunki-175718.png" + "then": "https://data.mapcomplete.org/nsi//logos/espoonkaupunki-175718.png" }, { "if": { @@ -64197,7 +64295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eugeneparksandopenspace-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eugeneparksandopenspace-4dc167.jpg" }, { "if": { @@ -64212,7 +64310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evanstonparksandrecreation-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evanstonparksandrecreation-6b40ef.jpg" }, { "if": { @@ -64227,7 +64325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fairfaxcountyparkauthority-d70331.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fairfaxcountyparkauthority-d70331.jpg" }, { "if": { @@ -64242,7 +64340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fargoparkdistrict-f7d259.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fargoparkdistrict-f7d259.jpg" }, { "if": { @@ -64257,7 +64355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiveriversmetroparks-e4a950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiveriversmetroparks-e4a950.jpg" }, { "if": { @@ -64273,7 +64371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridastateparks-611b25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/floridastateparks-611b25.jpg" }, { "if": { @@ -64288,7 +64386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestpreservedistrictofcookcounty-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofcookcounty-6b40ef.jpg" }, { "if": { @@ -64303,7 +64401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestryengland-cd8f03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forestryengland-cd8f03.jpg" }, { "if": { @@ -64318,7 +64416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galwaycitycouncil-006c63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/galwaycitycouncil-006c63.jpg" }, { "if": { @@ -64333,7 +64431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gams-a93914.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gams-a93914.jpg" }, { "if": { @@ -64348,7 +64446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gedlingboroughcouncil-d42e3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gedlingboroughcouncil-d42e3f.jpg" }, { "if": { @@ -64363,7 +64461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genevaparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genevaparkdistrict-6b40ef.jpg" }, { "if": { @@ -64378,7 +64476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/georgiastateparksandhistoricsites-62554d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/georgiastateparksandhistoricsites-62554d.jpg" }, { "if": { @@ -64393,7 +64491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glenellynparkdistrict-6b40ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/glenellynparkdistrict-6b40ef.png" }, { "if": { @@ -64408,7 +64506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glencoeparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glencoeparkdistrict-6b40ef.jpg" }, { "if": { @@ -64423,7 +64521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glenviewparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glenviewparkdistrict-6b40ef.jpg" }, { "if": { @@ -64439,7 +64537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldcoastcitycouncil-aa8094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldcoastcitycouncil-aa8094.jpg" }, { "if": { @@ -64454,7 +64552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatparksofhamiltoncounty-e4a950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatparksofhamiltoncounty-e4a950.jpg" }, { "if": { @@ -64469,7 +64567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grunstadtzurich-d2a83e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grunstadtzurich-d2a83e.jpg" }, { "if": { @@ -64484,7 +64582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hackneycouncil-de0fdb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-de0fdb.jpg" }, { "if": { @@ -64499,7 +64597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halifaxregionalmunicipality-b8580d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halifaxregionalmunicipality-b8580d.jpg" }, { "if": { @@ -64514,7 +64612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hameenlinnankaupunki-175718.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hameenlinnankaupunki-175718.svg" }, { "if": { @@ -64529,7 +64627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hammondparksandrecreation-be422a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hammondparksandrecreation-be422a.jpg" }, { "if": { @@ -64544,7 +64642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hardincountyconservation-083489.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hardincountyconservation-083489.jpg" }, { "if": { @@ -64559,7 +64657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harriscountyprecinct3-a3b6e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/harriscountyprecinct3-a3b6e6.png" }, { "if": { @@ -64574,7 +64672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiidivisionofstateparks-589011.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiidivisionofstateparks-589011.jpg" }, { "if": { @@ -64589,7 +64687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hillsboroparksandrecreation-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hillsboroparksandrecreation-4dc167.jpg" }, { "if": { @@ -64604,7 +64702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hillsboroughcounty-611b25.png" + "then": "https://data.mapcomplete.org/nsi//logos/hillsboroughcounty-611b25.png" }, { "if": { @@ -64619,7 +64717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hurunuidistrictcouncil-ff83c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hurunuidistrictcouncil-ff83c4.jpg" }, { "if": { @@ -64635,7 +64733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahodepartmentofparksandrecreation-53eecf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahodepartmentofparksandrecreation-53eecf.jpg" }, { "if": { @@ -64651,7 +64749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoisdepartmentofnaturalresources-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentofnaturalresources-6b40ef.jpg" }, { "if": { @@ -64666,7 +64764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/incorporatedvillageofflowerhill-5fa58e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/incorporatedvillageofflowerhill-5fa58e.jpg" }, { "if": { @@ -64681,7 +64779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indyparks-be422a.png" + "then": "https://data.mapcomplete.org/nsi//logos/indyparks-be422a.png" }, { "if": { @@ -64697,7 +64795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutodistritalderecreacionydeporte-7274bc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/institutodistritalderecreacionydeporte-7274bc.svg" }, { "if": { @@ -64712,7 +64810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invercargillcitycouncil-bec51a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invercargillcitycouncil-bec51a.jpg" }, { "if": { @@ -64728,7 +64826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iowadepartmentofnaturalresources-083489.svg" + "then": "https://data.mapcomplete.org/nsi//logos/iowadepartmentofnaturalresources-083489.svg" }, { "if": { @@ -64743,7 +64841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/islingtoncouncil-de0fdb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/islingtoncouncil-de0fdb.jpg" }, { "if": { @@ -64759,7 +64857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istanbulbuyuksehirbelediyesi-f5e45e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istanbulbuyuksehirbelediyesi-f5e45e.jpg" }, { "if": { @@ -64775,7 +64873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutosalvadorenodeturismo-b33958.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutosalvadorenodeturismo-b33958.jpg" }, { "if": { @@ -64790,7 +64888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksoncounty-101c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksoncounty-101c18.jpg" }, { "if": { @@ -64805,7 +64903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksoncounty-19fc0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksoncounty-19fc0b.jpg" }, { "if": { @@ -64820,7 +64918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksoncountyconservation-083489.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksoncountyconservation-083489.jpg" }, { "if": { @@ -64835,7 +64933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeffersoncounty-d8ec11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeffersoncounty-d8ec11.jpg" }, { "if": { @@ -64851,7 +64949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnsoncountyparkandrecreationdistrict-e424b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnsoncountyparkandrecreationdistrict-e424b1.jpg" }, { "if": { @@ -64867,7 +64965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kankakeevalleyparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kankakeevalleyparkdistrict-6b40ef.jpg" }, { "if": { @@ -64883,7 +64981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansasdepartmentofwildlifeandparks-e424b1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kansasdepartmentofwildlifeandparks-e424b1.jpg" }, { "if": { @@ -64898,7 +64996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kapiticoastdistrictcouncil-3e515f.png" + "then": "https://data.mapcomplete.org/nsi//logos/kapiticoastdistrictcouncil-3e515f.png" }, { "if": { @@ -64913,7 +65011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kauhajoenkaupunki-175718.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kauhajoenkaupunki-175718.jpg" }, { "if": { @@ -64928,7 +65026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckydepartmentofparks-933e5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckydepartmentofparks-933e5b.jpg" }, { "if": { @@ -64943,7 +65041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingcountyparks-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingcountyparks-9f19b6.jpg" }, { "if": { @@ -64958,7 +65056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitsapcountyparks-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitsapcountyparks-9f19b6.jpg" }, { "if": { @@ -64976,7 +65074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kolkatamunicipalcorporation-38394d.png" + "then": "https://data.mapcomplete.org/nsi//logos/kolkatamunicipalcorporation-38394d.png" }, { "if": { @@ -64991,7 +65089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knowsleycouncil-6a216f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knowsleycouncil-6a216f.jpg" }, { "if": { @@ -65006,7 +65104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuopionkaupunki-175718.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kuopionkaupunki-175718.svg" }, { "if": { @@ -65021,7 +65119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakemetroparks-e4a950.png" + "then": "https://data.mapcomplete.org/nsi//logos/lakemetroparks-e4a950.png" }, { "if": { @@ -65036,7 +65134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lanecounty-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/lanecounty-4dc167.png" }, { "if": { @@ -65051,7 +65149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lanecovecouncil-044fbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lanecovecouncil-044fbe.jpg" }, { "if": { @@ -65066,7 +65164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnwoodparksandrecreation-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnwoodparksandrecreation-6b40ef.jpg" }, { "if": { @@ -65081,7 +65179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lisleparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lisleparkdistrict-6b40ef.jpg" }, { "if": { @@ -65096,7 +65194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/logancitycouncil-aa8094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/logancitycouncil-aa8094.jpg" }, { "if": { @@ -65111,7 +65209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisianaofficeofstateparks-615c8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louisianaofficeofstateparks-615c8d.jpg" }, { "if": { @@ -65126,7 +65224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisvilleparksandrecreation-933e5b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louisvilleparksandrecreation-933e5b.jpg" }, { "if": { @@ -65141,7 +65239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowermeriontownship-bec98d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lowermeriontownship-bec98d.jpg" }, { "if": { @@ -65156,7 +65254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manchestercitycouncil-cd8f03.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manchestercitycouncil-cd8f03.svg" }, { "if": { @@ -65171,7 +65269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maplegroveparksandrecreation-19fc0b.png" + "then": "https://data.mapcomplete.org/nsi//logos/maplegroveparksandrecreation-19fc0b.png" }, { "if": { @@ -65186,7 +65284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mariettaparksandrecreation-62554d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mariettaparksandrecreation-62554d.jpg" }, { "if": { @@ -65201,7 +65299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martincounty-611b25.png" + "then": "https://data.mapcomplete.org/nsi//logos/martincounty-611b25.png" }, { "if": { @@ -65216,7 +65314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylandparkservice-6ec8b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marylandparkservice-6ec8b9.jpg" }, { "if": { @@ -65231,7 +65329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mauicounty-589011.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mauicounty-589011.jpg" }, { "if": { @@ -65247,7 +65345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippidepartmentofwildlifefisheriesandparks-ae3bd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/mississippidepartmentofwildlifefisheriesandparks-ae3bd1.png" }, { "if": { @@ -65262,7 +65360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/metro-4dc167.png" }, { "if": { @@ -65278,7 +65376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metroparkstacoma-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metroparkstacoma-9f19b6.jpg" }, { "if": { @@ -65293,7 +65391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrovancouverregionalparks-56b35c.png" + "then": "https://data.mapcomplete.org/nsi//logos/metrovancouverregionalparks-56b35c.png" }, { "if": { @@ -65309,7 +65407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigandepartmentofnaturalresources-101c18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofnaturalresources-101c18.jpg" }, { "if": { @@ -65325,7 +65423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigandepartmentoftransportation-101c18.png" + "then": "https://data.mapcomplete.org/nsi//logos/michigandepartmentoftransportation-101c18.png" }, { "if": { @@ -65340,7 +65438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/millcreektownship-bec98d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/millcreektownship-bec98d.jpg" }, { "if": { @@ -65355,7 +65453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milwaukeecountyparks-d8ec11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milwaukeecountyparks-d8ec11.jpg" }, { "if": { @@ -65370,7 +65468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minneapolisparkandrecreationboard-19fc0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minneapolisparkandrecreationboard-19fc0b.jpg" }, { "if": { @@ -65386,7 +65484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotadepartmentofnaturalresources-19fc0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotadepartmentofnaturalresources-19fc0b.jpg" }, { "if": { @@ -65401,7 +65499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missouristateparks-44b06a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missouristateparks-44b06a.jpg" }, { "if": { @@ -65417,7 +65515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magistratmestaceskebudejovice-ab8e90.png" + "then": "https://data.mapcomplete.org/nsi//logos/magistratmestaceskebudejovice-ab8e90.png" }, { "if": { @@ -65433,7 +65531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montanadepartmentoffishwildlifeandparks-863db2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montanadepartmentoffishwildlifeandparks-863db2.jpg" }, { "if": { @@ -65448,7 +65546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montgomeryparks-6ec8b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montgomeryparks-6ec8b9.jpg" }, { "if": { @@ -65463,7 +65561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mortongroveparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mortongroveparkdistrict-6b40ef.jpg" }, { "if": { @@ -65478,7 +65576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddeneuquen-b8dcab.png" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-b8dcab.png" }, { "if": { @@ -65493,7 +65591,22 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddezapala-b8dcab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddezapala-b8dcab.jpg" + }, + { + "if": { + "and": [ + "leisure=nature_reserve", + { + "or": [ + "operator=Município de Maputo", + "operator:type=government", + "operator:wikidata=Q3889" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/municipiodemaputo-8f4719.jpg" }, { "if": { @@ -65508,7 +65621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/napervilleparkdistrict-6b40ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/napervilleparkdistrict-6b40ef.png" }, { "if": { @@ -65524,7 +65637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalcapitalcommission-45bb01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalcapitalcommission-45bb01.jpg" }, { "if": { @@ -65540,7 +65653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparkservice-b9cbaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-b9cbaf.jpg" }, { "if": { @@ -65556,7 +65669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparksboard-96e2ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparksboard-96e2ce.png" }, { "if": { @@ -65571,7 +65684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrust-e7710d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrust-e7710d.jpg" }, { "if": { @@ -65587,7 +65700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrustforscotland-bce0df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-bce0df.jpg" }, { "if": { @@ -65603,7 +65716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northclackamasparksandrecreationdistrict-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northclackamasparksandrecreationdistrict-4dc167.jpg" }, { "if": { @@ -65619,7 +65732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nebraskagameandparkscommission-d7c809.png" + "then": "https://data.mapcomplete.org/nsi//logos/nebraskagameandparkscommission-d7c809.png" }, { "if": { @@ -65634,7 +65747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nelsoncitycouncil-ec3f18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nelsoncitycouncil-ec3f18.jpg" }, { "if": { @@ -65649,7 +65762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nevadastateparks-320125.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nevadastateparks-320125.jpg" }, { "if": { @@ -65665,7 +65778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newmexicodepartmentofenergymineralsandnaturalresources-d11711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newmexicodepartmentofenergymineralsandnaturalresources-d11711.jpg" }, { "if": { @@ -65681,7 +65794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatedepartmentofenvironmentalconservation-5fa58e.png" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofenvironmentalconservation-5fa58e.png" }, { "if": { @@ -65696,7 +65809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstateofficeofparksrecreationandhistoricpreservation-5fa58e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstateofficeofparksrecreationandhistoricpreservation-5fa58e.jpg" }, { "if": { @@ -65711,7 +65824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportcitycouncil-65fcd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-65fcd1.jpg" }, { "if": { @@ -65726,7 +65839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportnewsgreenfoundation-d70331.png" + "then": "https://data.mapcomplete.org/nsi//logos/newportnewsgreenfoundation-d70331.png" }, { "if": { @@ -65741,7 +65854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nilesparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nilesparkdistrict-6b40ef.jpg" }, { "if": { @@ -65757,7 +65870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcarolinadivisionofparksandrecreation-b9a958.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northcarolinadivisionofparksandrecreation-b9a958.jpg" }, { "if": { @@ -65772,7 +65885,22 @@ } ] }, - "then": "./assets/data/nsi/logos/northdakotaparksandrecreationdepartment-f7d259.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northdakotaparksandrecreationdepartment-f7d259.jpg" + }, + { + "if": { + "and": [ + "leisure=nature_reserve", + { + "or": [ + "operator=Northern Beaches Council", + "operator:type=government", + "operator:wikidata=Q56477644" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/northernbeachescouncil-044fbe.jpg" }, { "if": { @@ -65787,7 +65915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nottinghamcitycouncil-d42e3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nottinghamcitycouncil-d42e3f.jpg" }, { "if": { @@ -65802,7 +65930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiaprovincialparks-b8580d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiaprovincialparks-b8580d.jpg" }, { "if": { @@ -65818,7 +65946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkcitydepartmentofparksandrecreation-d291b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkcitydepartmentofparksandrecreation-d291b6.jpg" }, { "if": { @@ -65834,7 +65962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiodepartmentofnaturalresources-e4a950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofnaturalresources-e4a950.jpg" }, { "if": { @@ -65849,7 +65977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiostateparksandwatercraft-e4a950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiostateparksandwatercraft-e4a950.jpg" }, { "if": { @@ -65865,7 +65993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomadepartmentofwildlifeconservation-726c77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomadepartmentofwildlifeconservation-726c77.jpg" }, { "if": { @@ -65880,7 +66008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontarioparks-45bb01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ontarioparks-45bb01.jpg" }, { "if": { @@ -65895,7 +66023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregoncityparksandrecreation-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/oregoncityparksandrecreation-4dc167.png" }, { "if": { @@ -65910,7 +66038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregonparksandrecreationdepartment-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oregonparksandrecreationdepartment-4dc167.jpg" }, { "if": { @@ -65925,7 +66053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oswegolandparkdistrict-6b40ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/oswegolandparkdistrict-6b40ef.png" }, { "if": { @@ -65940,7 +66068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palatineparkdistrict-6b40ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/palatineparkdistrict-6b40ef.png" }, { "if": { @@ -65956,7 +66084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmerstonnorthcitycouncil-e93827.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmerstonnorthcitycouncil-e93827.jpg" }, { "if": { @@ -65972,7 +66100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkdistrictofoakpark-6b40ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/parkdistrictofoakpark-6b40ef.png" }, { "if": { @@ -65987,7 +66115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkscanada-355d3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkscanada-355d3b.jpg" }, { "if": { @@ -66002,7 +66130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksvictoria-612bf2.png" + "then": "https://data.mapcomplete.org/nsi//logos/parksvictoria-612bf2.png" }, { "if": { @@ -66018,7 +66146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peoriaparkdistrict-6b40ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/peoriaparkdistrict-6b40ef.png" }, { "if": { @@ -66033,7 +66161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgllp-34905d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgllp-34905d.jpg" }, { "if": { @@ -66048,7 +66176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phoenixvilleborough-bec98d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phoenixvilleborough-bec98d.jpg" }, { "if": { @@ -66063,7 +66191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plainecommune-23b918.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plainecommune-23b918.jpg" }, { "if": { @@ -66078,7 +66206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plainfieldparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plainfieldparkdistrict-6b40ef.jpg" }, { "if": { @@ -66094,7 +66222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandparksandrecreation-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portlandparksandrecreation-4dc167.jpg" }, { "if": { @@ -66109,7 +66237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituradecatalao-b4fd50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituradecatalao-b4fd50.jpg" }, { "if": { @@ -66124,7 +66252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituraderibeiraopires-dd876e.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituraderibeiraopires-dd876e.png" }, { "if": { @@ -66139,7 +66267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituraderioverde-b4fd50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituraderioverde-b4fd50.jpg" }, { "if": { @@ -66154,7 +66282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldecuritiba-125318.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldecuritiba-125318.svg" }, { "if": { @@ -66169,7 +66297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldefortaleza-2cb1ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldefortaleza-2cb1ce.jpg" }, { "if": { @@ -66184,7 +66312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/princegeorgescountydepartmentofparksandrecreation-6ec8b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/princegeorgescountydepartmentofparksandrecreation-6ec8b9.jpg" }, { "if": { @@ -66199,7 +66327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roselleparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roselleparkdistrict-6b40ef.jpg" }, { "if": { @@ -66214,7 +66342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rotherdistrictcouncil-18aa96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rotherdistrictcouncil-18aa96.jpg" }, { "if": { @@ -66229,7 +66357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintpauldepartmentofparksandrecreation-19fc0b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintpauldepartmentofparksandrecreation-19fc0b.jpg" }, { "if": { @@ -66244,7 +66372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanbernardinocounty-46dc27.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sanbernardinocounty-46dc27.svg" }, { "if": { @@ -66259,7 +66387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanfranciscorecreationandparkdepartment-36fb4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanfranciscorecreationandparkdepartment-36fb4a.jpg" }, { "if": { @@ -66274,7 +66402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanjoseparksrecreationandneighborhoodservices-5ed6d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanjoseparksrecreationandneighborhoodservices-5ed6d7.jpg" }, { "if": { @@ -66289,7 +66417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serviciodeparquesdelima-5e3ba0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/serviciodeparquesdelima-5e3ba0.jpg" }, { "if": { @@ -66304,7 +66432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skokieparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skokieparkdistrict-6b40ef.jpg" }, { "if": { @@ -66319,7 +66447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetcouncil-44bb55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-44bb55.jpg" }, { "if": { @@ -66334,7 +66462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southcarolinastateparks-0d235d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southcarolinastateparks-0d235d.jpg" }, { "if": { @@ -66350,7 +66478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southdakotadepartmentofgamefishandparks-4e700d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southdakotadepartmentofgamefishandparks-4e700d.jpg" }, { "if": { @@ -66365,7 +66493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southlanddistrictcouncil-bec51a.png" + "then": "https://data.mapcomplete.org/nsi//logos/southlanddistrictcouncil-bec51a.png" }, { "if": { @@ -66380,7 +66508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestmichiganlandconservancy-101c18.png" + "then": "https://data.mapcomplete.org/nsi//logos/southwestmichiganlandconservancy-101c18.png" }, { "if": { @@ -66396,7 +66524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spravamestskejzelenevkosiciach-e7985b.png" + "then": "https://data.mapcomplete.org/nsi//logos/spravamestskejzelenevkosiciach-e7985b.png" }, { "if": { @@ -66411,7 +66539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldparkdistrict-6b40ef.jpg" }, { "if": { @@ -66426,7 +66554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtinnsbruck-45d910.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtinnsbruck-45d910.png" }, { "if": { @@ -66441,7 +66569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtnorden-949413.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtnorden-949413.svg" }, { "if": { @@ -66456,7 +66584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtweimar-84908a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtweimar-84908a.svg" }, { "if": { @@ -66471,7 +66599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwitten-9a715f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwitten-9a715f.jpg" }, { "if": { @@ -66486,7 +66614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateofconnecticut-67b670.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stateofconnecticut-67b670.svg" }, { "if": { @@ -66501,7 +66629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sugargroveparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sugargroveparkdistrict-6b40ef.jpg" }, { "if": { @@ -66516,7 +66644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/summitmetroparks-e4a950.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/summitmetroparks-e4a950.jpg" }, { "if": { @@ -66531,7 +66659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunshinecoastcouncil-aa8094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunshinecoastcouncil-aa8094.jpg" }, { "if": { @@ -66546,7 +66674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasmandistrictcouncil-ce5753.png" + "then": "https://data.mapcomplete.org/nsi//logos/tasmandistrictcouncil-ce5753.png" }, { "if": { @@ -66561,7 +66689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseestateparks-6118d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseestateparks-6118d7.png" }, { "if": { @@ -66576,7 +66704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texashistoricalcommission-a3b6e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/texashistoricalcommission-a3b6e6.png" }, { "if": { @@ -66592,7 +66720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasparksandwildlifedepartment-a3b6e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasparksandwildlifedepartment-a3b6e6.jpg" }, { "if": { @@ -66607,7 +66735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theparkstrust-99dd62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theparkstrust-99dd62.jpg" }, { "if": { @@ -66622,7 +66750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theroyalparks-de0fdb.png" + "then": "https://data.mapcomplete.org/nsi//logos/theroyalparks-de0fdb.png" }, { "if": { @@ -66638,7 +66766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tualatinhillsparkandrecreationdistrict-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tualatinhillsparkandrecreationdistrict-4dc167.jpg" }, { "if": { @@ -66653,7 +66781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timarudistrictcouncil-ff83c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/timarudistrictcouncil-ff83c4.jpg" }, { "if": { @@ -66668,7 +66796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofabingdon-d70331.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofabingdon-d70331.jpg" }, { "if": { @@ -66683,7 +66811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofalva-726c77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofalva-726c77.jpg" }, { "if": { @@ -66698,7 +66826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofamherst-defa05.svg" + "then": "https://data.mapcomplete.org/nsi//logos/townofamherst-defa05.svg" }, { "if": { @@ -66713,7 +66841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofamherst-fcd3ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/townofamherst-fcd3ad.png" }, { "if": { @@ -66728,7 +66856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofeasthartford-67b670.png" + "then": "https://data.mapcomplete.org/nsi//logos/townofeasthartford-67b670.png" }, { "if": { @@ -66743,7 +66871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofhempstead-5fa58e.png" + "then": "https://data.mapcomplete.org/nsi//logos/townofhempstead-5fa58e.png" }, { "if": { @@ -66758,7 +66886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofmanchester-67b670.png" + "then": "https://data.mapcomplete.org/nsi//logos/townofmanchester-67b670.png" }, { "if": { @@ -66773,7 +66901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofnorthhempstead-5fa58e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofnorthhempstead-5fa58e.jpg" }, { "if": { @@ -66788,7 +66916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofsaintjohn-be422a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofsaintjohn-be422a.jpg" }, { "if": { @@ -66803,7 +66931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofvienna-d70331.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofvienna-d70331.jpg" }, { "if": { @@ -66818,7 +66946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredyffrintownship-bec98d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredyffrintownship-bec98d.jpg" }, { "if": { @@ -66834,7 +66962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesarmycorpsofengineers-b9cbaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesarmycorpsofengineers-b9cbaf.jpg" }, { "if": { @@ -66849,7 +66977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofmelbourne-612bf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofmelbourne-612bf2.jpg" }, { "if": { @@ -66864,7 +66992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/utahstateparks-7625dc.png" + "then": "https://data.mapcomplete.org/nsi//logos/utahstateparks-7625dc.png" }, { "if": { @@ -66879,7 +67007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vantaankaupunki-175718.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vantaankaupunki-175718.jpg" }, { "if": { @@ -66894,7 +67022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villageofbourbonnais-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villageofbourbonnais-6b40ef.jpg" }, { "if": { @@ -66909,7 +67037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villageoffayetteville-5fa58e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villageoffayetteville-5fa58e.jpg" }, { "if": { @@ -66924,7 +67052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villageofwaunakee-d8ec11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villageofwaunakee-d8ec11.jpg" }, { "if": { @@ -66939,7 +67067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedemontreal-9bd80d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/villedemontreal-9bd80d.svg" }, { "if": { @@ -66954,7 +67082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedenicolet-9bd80d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villedenicolet-9bd80d.jpg" }, { "if": { @@ -66970,7 +67098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiadepartmentoftransportation-d70331.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentoftransportation-d70331.jpg" }, { "if": { @@ -66985,7 +67113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waimakariridistrictcouncil-ff83c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/waimakariridistrictcouncil-ff83c4.png" }, { "if": { @@ -67000,7 +67128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waitakidistrictcouncil-6e0a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waitakidistrictcouncil-6e0a50.jpg" }, { "if": { @@ -67015,7 +67143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warrenvilleparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warrenvilleparkdistrict-6b40ef.jpg" }, { "if": { @@ -67030,7 +67158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtoncounty-4dc167.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtoncounty-4dc167.jpg" }, { "if": { @@ -67046,7 +67174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtondepartmentoffishandwildlife-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtondepartmentoffishandwildlife-9f19b6.jpg" }, { "if": { @@ -67061,7 +67189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonstateparksandrecreationcommission-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonstateparksandrecreationcommission-9f19b6.jpg" }, { "if": { @@ -67077,7 +67205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waukeganparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waukeganparkdistrict-6b40ef.jpg" }, { "if": { @@ -67092,7 +67220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellingtoncitycouncil-3e515f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellingtoncitycouncil-3e515f.jpg" }, { "if": { @@ -67107,7 +67235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westchicagoparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westchicagoparkdistrict-6b40ef.jpg" }, { "if": { @@ -67123,7 +67251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfargoparkdistrict-f7d259.png" + "then": "https://data.mapcomplete.org/nsi//logos/westfargoparkdistrict-f7d259.png" }, { "if": { @@ -67139,7 +67267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westvirginiadivisionofnaturalresources-89af7f.png" + "then": "https://data.mapcomplete.org/nsi//logos/westvirginiadivisionofnaturalresources-89af7f.png" }, { "if": { @@ -67154,7 +67282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernspringsparkdistrict-6b40ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/westernspringsparkdistrict-6b40ef.png" }, { "if": { @@ -67169,7 +67297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wheatonparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wheatonparkdistrict-6b40ef.jpg" }, { "if": { @@ -67184,7 +67312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/willamalaneparkandrecreationdistrict-4dc167.png" + "then": "https://data.mapcomplete.org/nsi//logos/willamalaneparkandrecreationdistrict-4dc167.png" }, { "if": { @@ -67199,7 +67327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/willoughbycitycouncil-044fbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/willoughbycitycouncil-044fbe.jpg" }, { "if": { @@ -67214,7 +67342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilmetteparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilmetteparkdistrict-6b40ef.jpg" }, { "if": { @@ -67229,7 +67357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winfieldparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winfieldparkdistrict-6b40ef.jpg" }, { "if": { @@ -67244,7 +67372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winnetkaparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winnetkaparkdistrict-6b40ef.jpg" }, { "if": { @@ -67260,7 +67388,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsindepartmentofnaturalresources-d8ec11.png" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentofnaturalresources-d8ec11.png" }, { "if": { @@ -67275,7 +67403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodridgeparkdistrict-6b40ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woodridgeparkdistrict-6b40ef.jpg" }, { "if": { @@ -67291,7 +67419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wyomingdivisionofstateparksandhistoricsites-6870e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wyomingdivisionofstateparksandhistoricsites-6870e0.jpg" }, { "if": { @@ -67306,7 +67434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yakimaparksandrecreation-9f19b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yakimaparksandrecreation-9f19b6.jpg" }, { "if": { @@ -67328,7 +67456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leisureandculturalservicesdepartment-3ea41a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leisureandculturalservicesdepartment-3ea41a.jpg" }, { "if": { @@ -67343,7 +67471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abbotsfordparksrecreationandculture-b3cf59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/abbotsfordparksrecreationandculture-b3cf59.jpg" }, { "if": { @@ -67358,7 +67486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdelhospitaletdellobregat-e4902f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdelhospitaletdellobregat-e4902f.svg" }, { "if": { @@ -67373,7 +67501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamastateparks-aefb27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamastateparks-aefb27.jpg" }, { "if": { @@ -67388,7 +67516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alaskadivisionofparksandoutdoorrecreation-50e0e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alaskadivisionofparksandoutdoorrecreation-50e0e1.jpg" }, { "if": { @@ -67403,7 +67531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alleganycountycommissioners-fb928d.png" + "then": "https://data.mapcomplete.org/nsi//logos/alleganycountycommissioners-fb928d.png" }, { "if": { @@ -67418,7 +67546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/andersonislandparksandrecreationdistrict-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/andersonislandparksandrecreationdistrict-6c188f.jpg" }, { "if": { @@ -67433,7 +67561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonastateparks-1fe561.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arizonastateparks-1fe561.jpg" }, { "if": { @@ -67448,7 +67576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasstateparks-2e75ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasstateparks-2e75ab.jpg" }, { "if": { @@ -67464,7 +67592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arlingtonheightsparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arlingtonheightsparkdistrict-17eabc.jpg" }, { "if": { @@ -67479,7 +67607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aucklandcouncil-9b811e.png" + "then": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-9b811e.png" }, { "if": { @@ -67494,7 +67622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinparksandrecreationdepartment-8bfd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinparksandrecreationdepartment-8bfd34.jpg" }, { "if": { @@ -67509,7 +67637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemalaga-e4902f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemalaga-e4902f.svg" }, { "if": { @@ -67524,7 +67652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bainbridgeislandmetroparkandrecreationdistrict-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bainbridgeislandmetroparkandrecreationdistrict-6c188f.jpg" }, { "if": { @@ -67539,7 +67667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecountydepartmentofrecreationandparks-fb928d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecountydepartmentofrecreationandparks-fb928d.jpg" }, { "if": { @@ -67554,7 +67682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barnetcouncil-777334.png" + "then": "https://data.mapcomplete.org/nsi//logos/barnetcouncil-777334.png" }, { "if": { @@ -67569,7 +67697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bataviaparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bataviaparkdistrict-17eabc.jpg" }, { "if": { @@ -67584,7 +67712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayerischeverwaltungderstaatlichenschlossergartenundseen-105075.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bayerischeverwaltungderstaatlichenschlossergartenundseen-105075.jpg" }, { "if": { @@ -67602,7 +67730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bruhatbengalurumahanagarapalike-d31221.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bruhatbengalurumahanagarapalike-d31221.jpg" }, { "if": { @@ -67618,7 +67746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecitydepartmentofrecreationandparks-1dd8f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecitydepartmentofrecreationandparks-1dd8f5.png" }, { "if": { @@ -67633,7 +67761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belfastcitycouncil-fe9c0f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belfastcitycouncil-fe9c0f.jpg" }, { "if": { @@ -67648,7 +67776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bendparkandrecreationdistrict-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bendparkandrecreationdistrict-9db284.jpg" }, { "if": { @@ -67663,7 +67791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamparkandrecreationboard-aefb27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamparkandrecreationboard-aefb27.jpg" }, { "if": { @@ -67678,7 +67806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blacksburgparksandrecreation-414f19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blacksburgparksandrecreation-414f19.jpg" }, { "if": { @@ -67696,7 +67824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bhubaneswarmunicipalcorporation-f088cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bhubaneswarmunicipalcorporation-f088cd.jpg" }, { "if": { @@ -67711,7 +67839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bolingbrookparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bolingbrookparkdistrict-17eabc.jpg" }, { "if": { @@ -67726,7 +67854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brec-4221d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brec-4221d5.jpg" }, { "if": { @@ -67741,7 +67869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brisbanecitycouncil-f88a26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brisbanecitycouncil-f88a26.jpg" }, { "if": { @@ -67756,7 +67884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristolcitycouncil-0421ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristolcitycouncil-0421ca.jpg" }, { "if": { @@ -67772,7 +67900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/buffalogroveparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/buffalogroveparkdistrict-17eabc.jpg" }, { "if": { @@ -67788,7 +67916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauoflandmanagement-059b34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-059b34.jpg" }, { "if": { @@ -67803,7 +67931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofparksandrecreation-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofparksandrecreation-dc1787.jpg" }, { "if": { @@ -67819,7 +67947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calumetmemorialparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calumetmemorialparkdistrict-17eabc.jpg" }, { "if": { @@ -67834,7 +67962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/camaramunicipaldelisboa-2f623b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/camaramunicipaldelisboa-2f623b.jpg" }, { "if": { @@ -67849,7 +67977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/campbelltowncitycouncil-11d7e5.png" + "then": "https://data.mapcomplete.org/nsi//logos/campbelltowncitycouncil-11d7e5.png" }, { "if": { @@ -67864,7 +67992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canyonlakepropertyownersassociation-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canyonlakepropertyownersassociation-dc1787.jpg" }, { "if": { @@ -67880,7 +68008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitaldevelopmentauthority-0d1b38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitaldevelopmentauthority-0d1b38.jpg" }, { "if": { @@ -67895,7 +68023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carsoncityparksrecreationandopenspacedepartment-130a83.png" + "then": "https://data.mapcomplete.org/nsi//logos/carsoncityparksrecreationandopenspacedepartment-130a83.png" }, { "if": { @@ -67911,7 +68039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cartersvilleparksandrecreation-c2abce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cartersvilleparksandrecreation-c2abce.jpg" }, { "if": { @@ -67927,7 +68055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralregionaldistrict-b3cf59.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralregionaldistrict-b3cf59.png" }, { "if": { @@ -67942,7 +68070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chehalemparkandrecreationdistrict-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chehalemparkandrecreationdistrict-9db284.jpg" }, { "if": { @@ -67957,7 +68085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagoheightsparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagoheightsparkdistrict-17eabc.jpg" }, { "if": { @@ -67972,7 +68100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagoparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagoparkdistrict-17eabc.jpg" }, { "if": { @@ -67987,7 +68115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/christchurchcitycouncil-b93ce4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/christchurchcitycouncil-b93ce4.jpg" }, { "if": { @@ -68002,7 +68130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofames-5303d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofames-5303d3.jpg" }, { "if": { @@ -68017,7 +68145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofandover-853554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofandover-853554.jpg" }, { "if": { @@ -68032,7 +68160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofannarbor-b9c410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofannarbor-b9c410.jpg" }, { "if": { @@ -68047,7 +68175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofashland-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofashland-9db284.jpg" }, { "if": { @@ -68062,7 +68190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofashland-ef1d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofashland-ef1d28.jpg" }, { "if": { @@ -68077,7 +68205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofashtabula-c0c15b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofashtabula-c0c15b.jpg" }, { "if": { @@ -68092,7 +68220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofauburn-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofauburn-6c188f.jpg" }, { "if": { @@ -68107,7 +68235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofaurora-0900ba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofaurora-0900ba.svg" }, { "if": { @@ -68122,7 +68250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbattlecreek-b9c410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbattlecreek-b9c410.jpg" }, { "if": { @@ -68137,7 +68265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbattleground-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbattleground-6c188f.jpg" }, { "if": { @@ -68152,7 +68280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbeaverton-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbeaverton-9db284.jpg" }, { "if": { @@ -68167,7 +68295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbelleair-38b713.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbelleair-38b713.png" }, { "if": { @@ -68182,7 +68310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbellevue-5303d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbellevue-5303d3.jpg" }, { "if": { @@ -68197,7 +68325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbellevue-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbellevue-6c188f.jpg" }, { "if": { @@ -68212,7 +68340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbellingham-6c188f.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbellingham-6c188f.png" }, { "if": { @@ -68227,7 +68355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofblaine-853554.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofblaine-853554.png" }, { "if": { @@ -68242,7 +68370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofblaine-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofblaine-6c188f.jpg" }, { "if": { @@ -68257,7 +68385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofboise-e3f3ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofboise-e3f3ca.png" }, { "if": { @@ -68272,7 +68400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofboulder-0900ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofboulder-0900ba.jpg" }, { "if": { @@ -68287,7 +68415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofboyntonbeach-38b713.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofboyntonbeach-38b713.svg" }, { "if": { @@ -68302,7 +68430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbremerton-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbremerton-6c188f.jpg" }, { "if": { @@ -68317,7 +68445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbrentwood-dc1787.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbrentwood-dc1787.svg" }, { "if": { @@ -68332,7 +68460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbrentwood-5e2224.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbrentwood-5e2224.jpg" }, { "if": { @@ -68347,7 +68475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbuffalo-932a36.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbuffalo-932a36.svg" }, { "if": { @@ -68362,7 +68490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcaldwell-e3f3ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcaldwell-e3f3ca.jpg" }, { "if": { @@ -68377,7 +68505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcalgary-85dee0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcalgary-85dee0.jpg" }, { "if": { @@ -68392,7 +68520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcamas-6c188f.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcamas-6c188f.png" }, { "if": { @@ -68407,7 +68535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcambridge-58b3db.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcambridge-58b3db.svg" }, { "if": { @@ -68422,7 +68550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcambridge-62b82e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcambridge-62b82e.svg" }, { "if": { @@ -68440,7 +68568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcapetown-1d1c6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-1d1c6d.png" }, { "if": { @@ -68455,7 +68583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofchandler-1fe561.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofchandler-1fe561.jpg" }, { "if": { @@ -68470,7 +68598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcharleston-35a23d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcharleston-35a23d.jpg" }, { "if": { @@ -68485,7 +68613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofclearwater-38b713.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofclearwater-38b713.png" }, { "if": { @@ -68500,7 +68628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcleveland-c0c15b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcleveland-c0c15b.svg" }, { "if": { @@ -68515,7 +68643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcoeurdalene-e3f3ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcoeurdalene-e3f3ca.png" }, { "if": { @@ -68530,7 +68658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcorinth-8bfd34.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcorinth-8bfd34.png" }, { "if": { @@ -68545,7 +68673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcornelius-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcornelius-9db284.jpg" }, { "if": { @@ -68560,7 +68688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdenton-8bfd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdenton-8bfd34.jpg" }, { "if": { @@ -68575,7 +68703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdesmoines-5303d3.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdesmoines-5303d3.png" }, { "if": { @@ -68590,7 +68718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdesmoines-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdesmoines-6c188f.jpg" }, { "if": { @@ -68605,7 +68733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdetroit-b9c410.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdetroit-b9c410.svg" }, { "if": { @@ -68620,7 +68748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdover-bce3f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdover-bce3f1.jpg" }, { "if": { @@ -68635,7 +68763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofedmonton-85dee0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofedmonton-85dee0.svg" }, { "if": { @@ -68650,7 +68778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofemeryville-bd5a8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofemeryville-bd5a8e.jpg" }, { "if": { @@ -68665,7 +68793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoferie-dc67ca.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoferie-dc67ca.svg" }, { "if": { @@ -68680,7 +68808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoffairview-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoffairview-9db284.png" }, { "if": { @@ -68695,7 +68823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoffarmington-c18344.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoffarmington-c18344.png" }, { "if": { @@ -68710,7 +68838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoffayetteville-2e75ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoffayetteville-2e75ab.jpg" }, { "if": { @@ -68725,7 +68853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoffontana-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoffontana-dc1787.jpg" }, { "if": { @@ -68740,7 +68868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofforestgrove-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofforestgrove-9db284.jpg" }, { "if": { @@ -68755,7 +68883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgary-86dc7f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgary-86dc7f.svg" }, { "if": { @@ -68770,7 +68898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgeneva-932a36.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgeneva-932a36.png" }, { "if": { @@ -68785,7 +68913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgladstone-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgladstone-9db284.png" }, { "if": { @@ -68800,7 +68928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofglendale-1fe561.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofglendale-1fe561.svg" }, { "if": { @@ -68815,7 +68943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgrandledge-b9c410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgrandledge-b9c410.jpg" }, { "if": { @@ -68830,7 +68958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgreatersudbury-62b82e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgreatersudbury-62b82e.jpg" }, { "if": { @@ -68845,7 +68973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgreeley-0900ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgreeley-0900ba.jpg" }, { "if": { @@ -68860,7 +68988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgresham-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgresham-9db284.jpg" }, { "if": { @@ -68875,7 +69003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhammond-86dc7f.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhammond-86dc7f.png" }, { "if": { @@ -68890,7 +69018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhartford-e713eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhartford-e713eb.jpg" }, { "if": { @@ -68905,7 +69033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhartford-ef1d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhartford-ef1d28.jpg" }, { "if": { @@ -68920,7 +69048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhighlandvillage-8bfd34.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhighlandvillage-8bfd34.png" }, { "if": { @@ -68938,7 +69066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/houstonparksandrecreationdepartment-8bfd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/houstonparksandrecreationdepartment-8bfd34.jpg" }, { "if": { @@ -68953,7 +69081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofidahofalls-e3f3ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofidahofalls-e3f3ca.jpg" }, { "if": { @@ -68968,7 +69096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofjacksonville-38b713.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofjacksonville-38b713.png" }, { "if": { @@ -68983,7 +69111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofkamloops-b3cf59.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofkamloops-b3cf59.png" }, { "if": { @@ -68998,7 +69126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofkeizer-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofkeizer-9db284.png" }, { "if": { @@ -69013,7 +69141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofkitchener-62b82e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofkitchener-62b82e.jpg" }, { "if": { @@ -69028,7 +69156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofknoxville-742928.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofknoxville-742928.png" }, { "if": { @@ -69043,7 +69171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakeoswego-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakeoswego-9db284.jpg" }, { "if": { @@ -69058,7 +69186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakewood-c970c6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-c970c6.svg" }, { "if": { @@ -69073,7 +69201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakewood-0900ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-0900ba.jpg" }, { "if": { @@ -69088,7 +69216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakewood-c0c15b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-c0c15b.jpg" }, { "if": { @@ -69103,7 +69231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakewoodparksandrecreation-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakewoodparksandrecreation-6c188f.jpg" }, { "if": { @@ -69118,7 +69246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflancaster-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflancaster-dc1787.jpg" }, { "if": { @@ -69133,7 +69261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflancaster-dc67ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflancaster-dc67ca.jpg" }, { "if": { @@ -69148,7 +69276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflansing-b9c410.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflansing-b9c410.svg" }, { "if": { @@ -69163,7 +69291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflewiston-e3f3ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflewiston-e3f3ca.jpg" }, { "if": { @@ -69178,7 +69306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflincoln-01fc82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflincoln-01fc82.jpg" }, { "if": { @@ -69193,7 +69321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflosangeles-c970c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflosangeles-c970c6.png" }, { "if": { @@ -69208,7 +69336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmahtomedi-853554.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmahtomedi-853554.png" }, { "if": { @@ -69223,7 +69351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmartinez-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmartinez-dc1787.jpg" }, { "if": { @@ -69238,7 +69366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmedford-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmedford-9db284.png" }, { "if": { @@ -69253,7 +69381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmeridian-e3f3ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmeridian-e3f3ca.png" }, { "if": { @@ -69268,7 +69396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmesa-1fe561.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmesa-1fe561.jpg" }, { "if": { @@ -69283,7 +69411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmiami-38b713.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmiami-38b713.svg" }, { "if": { @@ -69298,7 +69426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmiddletown-e713eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmiddletown-e713eb.jpg" }, { "if": { @@ -69313,7 +69441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmiddletown-932a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmiddletown-932a36.jpg" }, { "if": { @@ -69328,7 +69456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmoretonbay-f88a26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmoretonbay-f88a26.jpg" }, { "if": { @@ -69343,7 +69471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofmountlaketerrace-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofmountlaketerrace-6c188f.jpg" }, { "if": { @@ -69358,7 +69486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnampa-e3f3ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnampa-e3f3ca.jpg" }, { "if": { @@ -69373,7 +69501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnorfolk-414f19.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnorfolk-414f19.png" }, { "if": { @@ -69388,7 +69516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnorman-930c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnorman-930c38.jpg" }, { "if": { @@ -69403,7 +69531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnorwich-e713eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnorwich-e713eb.png" }, { "if": { @@ -69418,7 +69546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofoklahomacity-930c38.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofoklahomacity-930c38.png" }, { "if": { @@ -69433,7 +69561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoforlando-38b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoforlando-38b713.jpg" }, { "if": { @@ -69448,7 +69576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoforting-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoforting-6c188f.jpg" }, { "if": { @@ -69463,7 +69591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofoshawa-62b82e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofoshawa-62b82e.jpg" }, { "if": { @@ -69478,7 +69606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofottawa-62b82e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofottawa-62b82e.svg" }, { "if": { @@ -69493,7 +69621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofphoenixparksandrecreationdepartment-1fe561.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofphoenixparksandrecreationdepartment-1fe561.jpg" }, { "if": { @@ -69508,7 +69636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofpocatello-e3f3ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofpocatello-e3f3ca.jpg" }, { "if": { @@ -69523,7 +69651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofportland-82e140.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofportland-82e140.jpg" }, { "if": { @@ -69538,7 +69666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofranchocucamonga-dc1787.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofranchocucamonga-dc1787.svg" }, { "if": { @@ -69553,7 +69681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofredlands-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofredlands-dc1787.jpg" }, { "if": { @@ -69568,7 +69696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofredmond-6c188f.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofredmond-6c188f.png" }, { "if": { @@ -69583,7 +69711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofregina-ff43b4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofregina-ff43b4.svg" }, { "if": { @@ -69598,7 +69726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrichmond-b3cf59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-b3cf59.jpg" }, { "if": { @@ -69613,7 +69741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrichmond-86dc7f.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-86dc7f.png" }, { "if": { @@ -69628,7 +69756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrichmond-414f19.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-414f19.png" }, { "if": { @@ -69643,7 +69771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-b9c410.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-b9c410.png" }, { "if": { @@ -69658,7 +69786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-853554.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-853554.png" }, { "if": { @@ -69673,7 +69801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-97a560.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-97a560.jpg" }, { "if": { @@ -69688,7 +69816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrochester-932a36.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrochester-932a36.svg" }, { "if": { @@ -69703,7 +69831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrocklin-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrocklin-dc1787.jpg" }, { "if": { @@ -69718,7 +69846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofrolla-5e2224.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofrolla-5e2224.jpg" }, { "if": { @@ -69733,7 +69861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofroseburg-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofroseburg-9db284.jpg" }, { "if": { @@ -69748,7 +69876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofroseville-dc1787.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofroseville-dc1787.png" }, { "if": { @@ -69763,7 +69891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsalem-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsalem-9db284.jpg" }, { "if": { @@ -69778,7 +69906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsanantonio-8bfd34.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsanantonio-8bfd34.png" }, { "if": { @@ -69793,7 +69921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsantafe-c18344.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsantafe-c18344.svg" }, { "if": { @@ -69808,7 +69936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsaultstemarie-b9c410.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsaultstemarie-b9c410.svg" }, { "if": { @@ -69823,7 +69951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofschertz-8bfd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofschertz-8bfd34.jpg" }, { "if": { @@ -69838,7 +69966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofscottsdale-1fe561.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofscottsdale-1fe561.jpg" }, { "if": { @@ -69853,7 +69981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsherwood-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsherwood-9db284.jpg" }, { "if": { @@ -69868,7 +69996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstjohns-c56363.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstjohns-c56363.svg" }, { "if": { @@ -69883,7 +70011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstlouis-5e2224.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstlouis-5e2224.svg" }, { "if": { @@ -69898,7 +70026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstaunton-414f19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstaunton-414f19.jpg" }, { "if": { @@ -69913,7 +70041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstuart-38b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstuart-38b713.jpg" }, { "if": { @@ -69928,7 +70056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsydney-11d7e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsydney-11d7e5.jpg" }, { "if": { @@ -69943,7 +70071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftallahassee-38b713.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-38b713.png" }, { "if": { @@ -69958,7 +70086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftigard-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftigard-9db284.jpg" }, { "if": { @@ -69973,7 +70101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftoronto-62b82e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftoronto-62b82e.svg" }, { "if": { @@ -69988,7 +70116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftracy-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftracy-dc1787.jpg" }, { "if": { @@ -70003,7 +70131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftroutdale-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftroutdale-9db284.jpg" }, { "if": { @@ -70018,7 +70146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftualatin-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftualatin-9db284.jpg" }, { "if": { @@ -70033,7 +70161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofturku-b3609d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofturku-b3609d.jpg" }, { "if": { @@ -70048,7 +70176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftwinfalls-e3f3ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftwinfalls-e3f3ca.jpg" }, { "if": { @@ -70063,7 +70191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofvancouver-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofvancouver-6c188f.jpg" }, { "if": { @@ -70078,7 +70206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwarren-b9c410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwarren-b9c410.jpg" }, { "if": { @@ -70093,7 +70221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwarren-853554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwarren-853554.jpg" }, { "if": { @@ -70108,7 +70236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwarren-dc67ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwarren-dc67ca.jpg" }, { "if": { @@ -70123,7 +70251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwashougal-6c188f.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwashougal-6c188f.png" }, { "if": { @@ -70138,7 +70266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwatsonville-dc1787.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwatsonville-dc1787.png" }, { "if": { @@ -70153,7 +70281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwestlinn-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwestlinn-9db284.jpg" }, { "if": { @@ -70168,7 +70296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwichita-3287b4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwichita-3287b4.svg" }, { "if": { @@ -70183,7 +70311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwilmington-bce3f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwilmington-bce3f1.jpg" }, { "if": { @@ -70198,7 +70326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwilsonville-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwilsonville-9db284.png" }, { "if": { @@ -70213,7 +70341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwinnipeg-3d8c8b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwinnipeg-3d8c8b.svg" }, { "if": { @@ -70228,7 +70356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwinterpark-38b713.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwinterpark-38b713.png" }, { "if": { @@ -70243,7 +70371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwoodbury-853554.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwoodbury-853554.svg" }, { "if": { @@ -70258,7 +70386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clackamascounty-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clackamascounty-9db284.jpg" }, { "if": { @@ -70273,7 +70401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkcounty-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkcounty-6c188f.jpg" }, { "if": { @@ -70288,7 +70416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandmetroparks-c0c15b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandmetroparks-c0c15b.svg" }, { "if": { @@ -70303,7 +70431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cluthadistrictcouncil-a83a4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cluthadistrictcouncil-a83a4e.jpg" }, { "if": { @@ -70318,7 +70446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clydeparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clydeparkdistrict-17eabc.jpg" }, { "if": { @@ -70334,7 +70462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradoparksandwildlife-0900ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradoparksandwildlife-0900ba.jpg" }, { "if": { @@ -70349,7 +70477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedibrescia-e51756.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedibrescia-e51756.svg" }, { "if": { @@ -70364,7 +70492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedicarrara-e1f757.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedicarrara-e1f757.svg" }, { "if": { @@ -70379,7 +70507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corkcitycouncil-62b8c3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/corkcitycouncil-62b8c3.svg" }, { "if": { @@ -70394,7 +70522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corvallisparksandrecreation-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/corvallisparksandrecreation-9db284.jpg" }, { "if": { @@ -70409,7 +70537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/crystallakeparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/crystallakeparkdistrict-17eabc.jpg" }, { "if": { @@ -70424,7 +70552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofconservation-0a56ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-0a56ce.png" }, { "if": { @@ -70439,7 +70567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dinaskotasurabaya-eab1bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dinaskotasurabaya-eab1bf.svg" }, { "if": { @@ -70454,7 +70582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drammenkommune-5cc6e8.png" + "then": "https://data.mapcomplete.org/nsi//logos/drammenkommune-5cc6e8.png" }, { "if": { @@ -70469,7 +70597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dublincitycouncil-fb990e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dublincitycouncil-fb990e.jpg" }, { "if": { @@ -70485,7 +70613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhamparksandrecreation-dc7d2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/durhamparksandrecreation-dc7d2a.jpg" }, { "if": { @@ -70500,7 +70628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastbayregionalparkdistrict-dc1787.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastbayregionalparkdistrict-dc1787.jpg" }, { "if": { @@ -70515,7 +70643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emaverde-14104f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emaverde-14104f.jpg" }, { "if": { @@ -70531,7 +70659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresamunicipaldeareasverdesyrecreacionalternativa-14104f.png" + "then": "https://data.mapcomplete.org/nsi//logos/empresamunicipaldeareasverdesyrecreacionalternativa-14104f.png" }, { "if": { @@ -70546,7 +70674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erewashboroughcouncil-165719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erewashboroughcouncil-165719.jpg" }, { "if": { @@ -70561,7 +70689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/espoonkaupunki-b3609d.png" + "then": "https://data.mapcomplete.org/nsi//logos/espoonkaupunki-b3609d.png" }, { "if": { @@ -70576,7 +70704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eugeneparksandopenspace-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eugeneparksandopenspace-9db284.jpg" }, { "if": { @@ -70591,7 +70719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evanstonparksandrecreation-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evanstonparksandrecreation-17eabc.jpg" }, { "if": { @@ -70606,7 +70734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fairfaxcountyparkauthority-414f19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fairfaxcountyparkauthority-414f19.jpg" }, { "if": { @@ -70621,7 +70749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fargoparkdistrict-20a56e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fargoparkdistrict-20a56e.jpg" }, { "if": { @@ -70636,7 +70764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fiveriversmetroparks-c0c15b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fiveriversmetroparks-c0c15b.jpg" }, { "if": { @@ -70652,7 +70780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridastateparks-38b713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/floridastateparks-38b713.jpg" }, { "if": { @@ -70667,7 +70795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestpreservedistrictofcookcounty-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofcookcounty-17eabc.jpg" }, { "if": { @@ -70682,7 +70810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/forestryengland-0421ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/forestryengland-0421ca.jpg" }, { "if": { @@ -70697,7 +70825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/galwaycitycouncil-8ff4eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/galwaycitycouncil-8ff4eb.jpg" }, { "if": { @@ -70712,7 +70840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gams-14104f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gams-14104f.jpg" }, { "if": { @@ -70727,7 +70855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gedlingboroughcouncil-165719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gedlingboroughcouncil-165719.jpg" }, { "if": { @@ -70742,7 +70870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genevaparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/genevaparkdistrict-17eabc.jpg" }, { "if": { @@ -70757,7 +70885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/georgiastateparksandhistoricsites-c2abce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/georgiastateparksandhistoricsites-c2abce.jpg" }, { "if": { @@ -70772,7 +70900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glenellynparkdistrict-17eabc.png" + "then": "https://data.mapcomplete.org/nsi//logos/glenellynparkdistrict-17eabc.png" }, { "if": { @@ -70787,7 +70915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glencoeparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glencoeparkdistrict-17eabc.jpg" }, { "if": { @@ -70802,7 +70930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glenviewparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glenviewparkdistrict-17eabc.jpg" }, { "if": { @@ -70818,7 +70946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldcoastcitycouncil-f88a26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldcoastcitycouncil-f88a26.jpg" }, { "if": { @@ -70833,7 +70961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatparksofhamiltoncounty-c0c15b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greatparksofhamiltoncounty-c0c15b.jpg" }, { "if": { @@ -70848,7 +70976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grunstadtzurich-265307.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grunstadtzurich-265307.jpg" }, { "if": { @@ -70863,7 +70991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hackneycouncil-777334.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-777334.jpg" }, { "if": { @@ -70878,7 +71006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/halifaxregionalmunicipality-f40be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/halifaxregionalmunicipality-f40be7.jpg" }, { "if": { @@ -70893,7 +71021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hameenlinnankaupunki-b3609d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hameenlinnankaupunki-b3609d.svg" }, { "if": { @@ -70908,7 +71036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hammondparksandrecreation-86dc7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hammondparksandrecreation-86dc7f.jpg" }, { "if": { @@ -70923,7 +71051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hardincountyconservation-5303d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hardincountyconservation-5303d3.jpg" }, { "if": { @@ -70938,7 +71066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harriscountyprecinct3-8bfd34.png" + "then": "https://data.mapcomplete.org/nsi//logos/harriscountyprecinct3-8bfd34.png" }, { "if": { @@ -70953,7 +71081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiidivisionofstateparks-ea65bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiidivisionofstateparks-ea65bf.jpg" }, { "if": { @@ -70968,7 +71096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hillsboroparksandrecreation-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hillsboroparksandrecreation-9db284.jpg" }, { "if": { @@ -70983,7 +71111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hillsboroughcounty-38b713.png" + "then": "https://data.mapcomplete.org/nsi//logos/hillsboroughcounty-38b713.png" }, { "if": { @@ -70998,7 +71126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hurunuidistrictcouncil-b93ce4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hurunuidistrictcouncil-b93ce4.jpg" }, { "if": { @@ -71014,7 +71142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahodepartmentofparksandrecreation-e3f3ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahodepartmentofparksandrecreation-e3f3ca.jpg" }, { "if": { @@ -71030,7 +71158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoisdepartmentofnaturalresources-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentofnaturalresources-17eabc.jpg" }, { "if": { @@ -71045,7 +71173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/incorporatedvillageofflowerhill-932a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/incorporatedvillageofflowerhill-932a36.jpg" }, { "if": { @@ -71060,7 +71188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indyparks-86dc7f.png" + "then": "https://data.mapcomplete.org/nsi//logos/indyparks-86dc7f.png" }, { "if": { @@ -71076,7 +71204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutodistritalderecreacionydeporte-e0463d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/institutodistritalderecreacionydeporte-e0463d.svg" }, { "if": { @@ -71091,7 +71219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invercargillcitycouncil-7ce967.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invercargillcitycouncil-7ce967.jpg" }, { "if": { @@ -71107,7 +71235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iowadepartmentofnaturalresources-5303d3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/iowadepartmentofnaturalresources-5303d3.svg" }, { "if": { @@ -71122,7 +71250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/islingtoncouncil-777334.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/islingtoncouncil-777334.jpg" }, { "if": { @@ -71138,7 +71266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istanbulbuyuksehirbelediyesi-2ed982.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istanbulbuyuksehirbelediyesi-2ed982.jpg" }, { "if": { @@ -71154,7 +71282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutosalvadorenodeturismo-489562.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutosalvadorenodeturismo-489562.jpg" }, { "if": { @@ -71169,7 +71297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksoncounty-b9c410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksoncounty-b9c410.jpg" }, { "if": { @@ -71184,7 +71312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksoncounty-853554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksoncounty-853554.jpg" }, { "if": { @@ -71199,7 +71327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksoncountyconservation-5303d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksoncountyconservation-5303d3.jpg" }, { "if": { @@ -71214,7 +71342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jeffersoncounty-ef1d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jeffersoncounty-ef1d28.jpg" }, { "if": { @@ -71230,7 +71358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnsoncountyparkandrecreationdistrict-3287b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnsoncountyparkandrecreationdistrict-3287b4.jpg" }, { "if": { @@ -71246,7 +71374,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kankakeevalleyparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kankakeevalleyparkdistrict-17eabc.jpg" }, { "if": { @@ -71262,7 +71390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansasdepartmentofwildlifeandparks-3287b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kansasdepartmentofwildlifeandparks-3287b4.jpg" }, { "if": { @@ -71277,7 +71405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kapiticoastdistrictcouncil-465cf6.png" + "then": "https://data.mapcomplete.org/nsi//logos/kapiticoastdistrictcouncil-465cf6.png" }, { "if": { @@ -71292,7 +71420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kauhajoenkaupunki-b3609d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kauhajoenkaupunki-b3609d.jpg" }, { "if": { @@ -71307,7 +71435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckydepartmentofparks-9af01b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckydepartmentofparks-9af01b.jpg" }, { "if": { @@ -71322,7 +71450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kingcountyparks-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kingcountyparks-6c188f.jpg" }, { "if": { @@ -71337,7 +71465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kitsapcountyparks-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kitsapcountyparks-6c188f.jpg" }, { "if": { @@ -71355,7 +71483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kolkatamunicipalcorporation-d31221.png" + "then": "https://data.mapcomplete.org/nsi//logos/kolkatamunicipalcorporation-d31221.png" }, { "if": { @@ -71370,7 +71498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knowsleycouncil-331094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knowsleycouncil-331094.jpg" }, { "if": { @@ -71385,7 +71513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuopionkaupunki-b3609d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/kuopionkaupunki-b3609d.svg" }, { "if": { @@ -71400,7 +71528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lakemetroparks-c0c15b.png" + "then": "https://data.mapcomplete.org/nsi//logos/lakemetroparks-c0c15b.png" }, { "if": { @@ -71415,7 +71543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lanecounty-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/lanecounty-9db284.png" }, { "if": { @@ -71430,7 +71558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lanecovecouncil-11d7e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lanecovecouncil-11d7e5.jpg" }, { "if": { @@ -71445,7 +71573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnwoodparksandrecreation-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnwoodparksandrecreation-17eabc.jpg" }, { "if": { @@ -71460,7 +71588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lisleparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lisleparkdistrict-17eabc.jpg" }, { "if": { @@ -71475,7 +71603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/logancitycouncil-f88a26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/logancitycouncil-f88a26.jpg" }, { "if": { @@ -71490,7 +71618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisianaofficeofstateparks-4221d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louisianaofficeofstateparks-4221d5.jpg" }, { "if": { @@ -71505,7 +71633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisvilleparksandrecreation-9af01b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louisvilleparksandrecreation-9af01b.jpg" }, { "if": { @@ -71520,7 +71648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowermeriontownship-dc67ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lowermeriontownship-dc67ca.jpg" }, { "if": { @@ -71535,7 +71663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manchestercitycouncil-0421ca.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manchestercitycouncil-0421ca.svg" }, { "if": { @@ -71550,7 +71678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maplegroveparksandrecreation-853554.png" + "then": "https://data.mapcomplete.org/nsi//logos/maplegroveparksandrecreation-853554.png" }, { "if": { @@ -71565,7 +71693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mariettaparksandrecreation-c2abce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mariettaparksandrecreation-c2abce.jpg" }, { "if": { @@ -71580,7 +71708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/martincounty-38b713.png" + "then": "https://data.mapcomplete.org/nsi//logos/martincounty-38b713.png" }, { "if": { @@ -71595,7 +71723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylandparkservice-fb928d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marylandparkservice-fb928d.jpg" }, { "if": { @@ -71610,7 +71738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mauicounty-ea65bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mauicounty-ea65bf.jpg" }, { "if": { @@ -71626,7 +71754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippidepartmentofwildlifefisheriesandparks-97a1c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/mississippidepartmentofwildlifefisheriesandparks-97a1c6.png" }, { "if": { @@ -71641,7 +71769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metro-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/metro-9db284.png" }, { "if": { @@ -71657,7 +71785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metroparkstacoma-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metroparkstacoma-6c188f.jpg" }, { "if": { @@ -71672,7 +71800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metrovancouverregionalparks-b3cf59.png" + "then": "https://data.mapcomplete.org/nsi//logos/metrovancouverregionalparks-b3cf59.png" }, { "if": { @@ -71688,7 +71816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigandepartmentofnaturalresources-b9c410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofnaturalresources-b9c410.jpg" }, { "if": { @@ -71704,7 +71832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigandepartmentoftransportation-b9c410.png" + "then": "https://data.mapcomplete.org/nsi//logos/michigandepartmentoftransportation-b9c410.png" }, { "if": { @@ -71719,7 +71847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/millcreektownship-dc67ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/millcreektownship-dc67ca.jpg" }, { "if": { @@ -71734,7 +71862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/milwaukeecountyparks-ef1d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/milwaukeecountyparks-ef1d28.jpg" }, { "if": { @@ -71749,7 +71877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minneapolisparkandrecreationboard-853554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minneapolisparkandrecreationboard-853554.jpg" }, { "if": { @@ -71765,7 +71893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotadepartmentofnaturalresources-853554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotadepartmentofnaturalresources-853554.jpg" }, { "if": { @@ -71780,7 +71908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missouristateparks-5e2224.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missouristateparks-5e2224.jpg" }, { "if": { @@ -71796,7 +71924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magistratmestaceskebudejovice-63f1de.png" + "then": "https://data.mapcomplete.org/nsi//logos/magistratmestaceskebudejovice-63f1de.png" }, { "if": { @@ -71812,7 +71940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montanadepartmentoffishwildlifeandparks-7d0f2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montanadepartmentoffishwildlifeandparks-7d0f2d.jpg" }, { "if": { @@ -71827,7 +71955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/montgomeryparks-fb928d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/montgomeryparks-fb928d.jpg" }, { "if": { @@ -71842,7 +71970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mortongroveparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mortongroveparkdistrict-17eabc.jpg" }, { "if": { @@ -71857,7 +71985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddeneuquen-c3e953.png" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-c3e953.png" }, { "if": { @@ -71872,7 +72000,22 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddezapala-c3e953.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddezapala-c3e953.jpg" + }, + { + "if": { + "and": [ + "leisure=park", + { + "or": [ + "operator=Município de Maputo", + "operator:type=government", + "operator:wikidata=Q3889" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/municipiodemaputo-840c65.jpg" }, { "if": { @@ -71887,7 +72030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/napervilleparkdistrict-17eabc.png" + "then": "https://data.mapcomplete.org/nsi//logos/napervilleparkdistrict-17eabc.png" }, { "if": { @@ -71903,7 +72046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalcapitalcommission-62b82e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalcapitalcommission-62b82e.jpg" }, { "if": { @@ -71919,7 +72062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparkservice-059b34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-059b34.jpg" }, { "if": { @@ -71935,7 +72078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparksboard-671a98.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparksboard-671a98.png" }, { "if": { @@ -71950,7 +72093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrust-8367e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrust-8367e0.jpg" }, { "if": { @@ -71966,7 +72109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltrustforscotland-5433bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-5433bf.jpg" }, { "if": { @@ -71982,7 +72125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northclackamasparksandrecreationdistrict-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northclackamasparksandrecreationdistrict-9db284.jpg" }, { "if": { @@ -71998,7 +72141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nebraskagameandparkscommission-01fc82.png" + "then": "https://data.mapcomplete.org/nsi//logos/nebraskagameandparkscommission-01fc82.png" }, { "if": { @@ -72013,7 +72156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nelsoncitycouncil-c11cf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nelsoncitycouncil-c11cf0.jpg" }, { "if": { @@ -72028,7 +72171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nevadastateparks-130a83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nevadastateparks-130a83.jpg" }, { "if": { @@ -72044,7 +72187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newmexicodepartmentofenergymineralsandnaturalresources-1fe561.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newmexicodepartmentofenergymineralsandnaturalresources-1fe561.jpg" }, { "if": { @@ -72060,7 +72203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatedepartmentofenvironmentalconservation-932a36.png" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofenvironmentalconservation-932a36.png" }, { "if": { @@ -72075,7 +72218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstateofficeofparksrecreationandhistoricpreservation-932a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstateofficeofparksrecreationandhistoricpreservation-932a36.jpg" }, { "if": { @@ -72090,7 +72233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportcitycouncil-cb6ad2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-cb6ad2.jpg" }, { "if": { @@ -72105,7 +72248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportnewsgreenfoundation-414f19.png" + "then": "https://data.mapcomplete.org/nsi//logos/newportnewsgreenfoundation-414f19.png" }, { "if": { @@ -72120,7 +72263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nilesparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nilesparkdistrict-17eabc.jpg" }, { "if": { @@ -72136,7 +72279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcarolinadivisionofparksandrecreation-dc7d2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northcarolinadivisionofparksandrecreation-dc7d2a.jpg" }, { "if": { @@ -72151,7 +72294,22 @@ } ] }, - "then": "./assets/data/nsi/logos/northdakotaparksandrecreationdepartment-20a56e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northdakotaparksandrecreationdepartment-20a56e.jpg" + }, + { + "if": { + "and": [ + "leisure=park", + { + "or": [ + "operator=Northern Beaches Council", + "operator:type=government", + "operator:wikidata=Q56477644" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/northernbeachescouncil-11d7e5.jpg" }, { "if": { @@ -72166,7 +72324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nottinghamcitycouncil-165719.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nottinghamcitycouncil-165719.jpg" }, { "if": { @@ -72181,7 +72339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiaprovincialparks-f40be7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiaprovincialparks-f40be7.jpg" }, { "if": { @@ -72197,7 +72355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkcitydepartmentofparksandrecreation-155697.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkcitydepartmentofparksandrecreation-155697.jpg" }, { "if": { @@ -72213,7 +72371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiodepartmentofnaturalresources-c0c15b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofnaturalresources-c0c15b.jpg" }, { "if": { @@ -72228,7 +72386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiostateparksandwatercraft-c0c15b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiostateparksandwatercraft-c0c15b.jpg" }, { "if": { @@ -72244,7 +72402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomadepartmentofwildlifeconservation-930c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomadepartmentofwildlifeconservation-930c38.jpg" }, { "if": { @@ -72259,7 +72417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontarioparks-62b82e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ontarioparks-62b82e.jpg" }, { "if": { @@ -72274,7 +72432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregoncityparksandrecreation-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/oregoncityparksandrecreation-9db284.png" }, { "if": { @@ -72289,7 +72447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregonparksandrecreationdepartment-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oregonparksandrecreationdepartment-9db284.jpg" }, { "if": { @@ -72304,7 +72462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oswegolandparkdistrict-17eabc.png" + "then": "https://data.mapcomplete.org/nsi//logos/oswegolandparkdistrict-17eabc.png" }, { "if": { @@ -72319,7 +72477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palatineparkdistrict-17eabc.png" + "then": "https://data.mapcomplete.org/nsi//logos/palatineparkdistrict-17eabc.png" }, { "if": { @@ -72335,7 +72493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmerstonnorthcitycouncil-174b70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmerstonnorthcitycouncil-174b70.jpg" }, { "if": { @@ -72351,7 +72509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkdistrictofoakpark-17eabc.png" + "then": "https://data.mapcomplete.org/nsi//logos/parkdistrictofoakpark-17eabc.png" }, { "if": { @@ -72366,7 +72524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parkscanada-fc15e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/parkscanada-fc15e4.jpg" }, { "if": { @@ -72381,7 +72539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/parksvictoria-3b6b12.png" + "then": "https://data.mapcomplete.org/nsi//logos/parksvictoria-3b6b12.png" }, { "if": { @@ -72397,7 +72555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peoriaparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peoriaparkdistrict-17eabc.jpg" }, { "if": { @@ -72412,7 +72570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgllp-d6816a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgllp-d6816a.jpg" }, { "if": { @@ -72427,7 +72585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phoenixvilleborough-dc67ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phoenixvilleborough-dc67ca.jpg" }, { "if": { @@ -72442,7 +72600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plainecommune-28de19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plainecommune-28de19.jpg" }, { "if": { @@ -72457,7 +72615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plainfieldparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plainfieldparkdistrict-17eabc.jpg" }, { "if": { @@ -72473,7 +72631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandparksandrecreation-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/portlandparksandrecreation-9db284.jpg" }, { "if": { @@ -72488,7 +72646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituradecatalao-2ff008.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituradecatalao-2ff008.jpg" }, { "if": { @@ -72503,7 +72661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituraderibeiraopires-7edb87.png" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituraderibeiraopires-7edb87.png" }, { "if": { @@ -72518,7 +72676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituraderioverde-2ff008.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituraderioverde-2ff008.jpg" }, { "if": { @@ -72533,7 +72691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldecuritiba-9e5f1d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldecuritiba-9e5f1d.svg" }, { "if": { @@ -72548,7 +72706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefeituramunicipaldefortaleza-09addb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldefortaleza-09addb.jpg" }, { "if": { @@ -72563,7 +72721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/princegeorgescountydepartmentofparksandrecreation-fb928d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/princegeorgescountydepartmentofparksandrecreation-fb928d.jpg" }, { "if": { @@ -72578,7 +72736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roselleparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roselleparkdistrict-17eabc.jpg" }, { "if": { @@ -72593,7 +72751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rotherdistrictcouncil-4c36e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rotherdistrictcouncil-4c36e5.jpg" }, { "if": { @@ -72608,7 +72766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saintpauldepartmentofparksandrecreation-853554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saintpauldepartmentofparksandrecreation-853554.jpg" }, { "if": { @@ -72623,7 +72781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanbernardinocounty-dc1787.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sanbernardinocounty-dc1787.svg" }, { "if": { @@ -72638,7 +72796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanfranciscorecreationandparkdepartment-7d4eb5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanfranciscorecreationandparkdepartment-7d4eb5.jpg" }, { "if": { @@ -72653,7 +72811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanjoseparksrecreationandneighborhoodservices-551cbb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sanjoseparksrecreationandneighborhoodservices-551cbb.jpg" }, { "if": { @@ -72668,7 +72826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serviciodeparquesdelima-2a5779.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/serviciodeparquesdelima-2a5779.jpg" }, { "if": { @@ -72683,7 +72841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skokieparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/skokieparkdistrict-17eabc.jpg" }, { "if": { @@ -72698,7 +72856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetcouncil-09986d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-09986d.jpg" }, { "if": { @@ -72713,7 +72871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southcarolinastateparks-35a23d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southcarolinastateparks-35a23d.jpg" }, { "if": { @@ -72729,7 +72887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southdakotadepartmentofgamefishandparks-2c4d84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southdakotadepartmentofgamefishandparks-2c4d84.jpg" }, { "if": { @@ -72744,7 +72902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southlanddistrictcouncil-7ce967.png" + "then": "https://data.mapcomplete.org/nsi//logos/southlanddistrictcouncil-7ce967.png" }, { "if": { @@ -72759,7 +72917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestmichiganlandconservancy-b9c410.png" + "then": "https://data.mapcomplete.org/nsi//logos/southwestmichiganlandconservancy-b9c410.png" }, { "if": { @@ -72775,7 +72933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spravamestskejzelenevkosiciach-f67935.png" + "then": "https://data.mapcomplete.org/nsi//logos/spravamestskejzelenevkosiciach-f67935.png" }, { "if": { @@ -72790,7 +72948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldparkdistrict-17eabc.jpg" }, { "if": { @@ -72805,7 +72963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtinnsbruck-c774fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtinnsbruck-c774fa.png" }, { "if": { @@ -72820,7 +72978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtnorden-a7fb0c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtnorden-a7fb0c.svg" }, { "if": { @@ -72835,7 +72993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtweimar-5e34cd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtweimar-5e34cd.svg" }, { "if": { @@ -72850,7 +73008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwitten-afee1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwitten-afee1b.jpg" }, { "if": { @@ -72865,7 +73023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stateofconnecticut-e713eb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stateofconnecticut-e713eb.svg" }, { "if": { @@ -72880,7 +73038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sugargroveparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sugargroveparkdistrict-17eabc.jpg" }, { "if": { @@ -72895,7 +73053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/summitmetroparks-c0c15b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/summitmetroparks-c0c15b.jpg" }, { "if": { @@ -72910,7 +73068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunshinecoastcouncil-f88a26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunshinecoastcouncil-f88a26.jpg" }, { "if": { @@ -72925,7 +73083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasmandistrictcouncil-1585a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/tasmandistrictcouncil-1585a5.png" }, { "if": { @@ -72940,7 +73098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseestateparks-742928.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseestateparks-742928.png" }, { "if": { @@ -72955,7 +73113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texashistoricalcommission-8bfd34.png" + "then": "https://data.mapcomplete.org/nsi//logos/texashistoricalcommission-8bfd34.png" }, { "if": { @@ -72971,7 +73129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasparksandwildlifedepartment-8bfd34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasparksandwildlifedepartment-8bfd34.jpg" }, { "if": { @@ -72986,7 +73144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theparkstrust-122ca7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theparkstrust-122ca7.jpg" }, { "if": { @@ -73001,7 +73159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theroyalparks-777334.png" + "then": "https://data.mapcomplete.org/nsi//logos/theroyalparks-777334.png" }, { "if": { @@ -73017,7 +73175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tualatinhillsparkandrecreationdistrict-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tualatinhillsparkandrecreationdistrict-9db284.jpg" }, { "if": { @@ -73032,7 +73190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/timarudistrictcouncil-b93ce4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/timarudistrictcouncil-b93ce4.jpg" }, { "if": { @@ -73047,7 +73205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofabingdon-414f19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofabingdon-414f19.jpg" }, { "if": { @@ -73062,7 +73220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofalva-930c38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofalva-930c38.jpg" }, { "if": { @@ -73077,7 +73235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofamherst-58b3db.svg" + "then": "https://data.mapcomplete.org/nsi//logos/townofamherst-58b3db.svg" }, { "if": { @@ -73092,7 +73250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofamherst-97a560.png" + "then": "https://data.mapcomplete.org/nsi//logos/townofamherst-97a560.png" }, { "if": { @@ -73107,7 +73265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofeasthartford-e713eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/townofeasthartford-e713eb.png" }, { "if": { @@ -73122,7 +73280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofhempstead-932a36.png" + "then": "https://data.mapcomplete.org/nsi//logos/townofhempstead-932a36.png" }, { "if": { @@ -73137,7 +73295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofmanchester-e713eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/townofmanchester-e713eb.png" }, { "if": { @@ -73152,7 +73310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofnorthhempstead-932a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofnorthhempstead-932a36.jpg" }, { "if": { @@ -73167,7 +73325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofsaintjohn-86dc7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofsaintjohn-86dc7f.jpg" }, { "if": { @@ -73182,7 +73340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/townofvienna-414f19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/townofvienna-414f19.jpg" }, { "if": { @@ -73197,7 +73355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredyffrintownship-dc67ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredyffrintownship-dc67ca.jpg" }, { "if": { @@ -73213,7 +73371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesarmycorpsofengineers-059b34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesarmycorpsofengineers-059b34.jpg" }, { "if": { @@ -73228,7 +73386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofmelbourne-3b6b12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universityofmelbourne-3b6b12.jpg" }, { "if": { @@ -73243,7 +73401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/utahstateparks-535432.png" + "then": "https://data.mapcomplete.org/nsi//logos/utahstateparks-535432.png" }, { "if": { @@ -73258,7 +73416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vantaankaupunki-b3609d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vantaankaupunki-b3609d.jpg" }, { "if": { @@ -73273,7 +73431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villageofbourbonnais-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villageofbourbonnais-17eabc.jpg" }, { "if": { @@ -73288,7 +73446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villageoffayetteville-932a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villageoffayetteville-932a36.jpg" }, { "if": { @@ -73303,7 +73461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villageofwaunakee-ef1d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villageofwaunakee-ef1d28.jpg" }, { "if": { @@ -73318,7 +73476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedemontreal-8d83b2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/villedemontreal-8d83b2.svg" }, { "if": { @@ -73333,7 +73491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedenicolet-8d83b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/villedenicolet-8d83b2.jpg" }, { "if": { @@ -73349,7 +73507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiadepartmentoftransportation-414f19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentoftransportation-414f19.jpg" }, { "if": { @@ -73364,7 +73522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waimakariridistrictcouncil-b93ce4.png" + "then": "https://data.mapcomplete.org/nsi//logos/waimakariridistrictcouncil-b93ce4.png" }, { "if": { @@ -73379,7 +73537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waitakidistrictcouncil-a83a4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waitakidistrictcouncil-a83a4e.jpg" }, { "if": { @@ -73394,7 +73552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/warrenvilleparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/warrenvilleparkdistrict-17eabc.jpg" }, { "if": { @@ -73409,7 +73567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtoncounty-9db284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtoncounty-9db284.jpg" }, { "if": { @@ -73425,7 +73583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtondepartmentoffishandwildlife-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtondepartmentoffishandwildlife-6c188f.jpg" }, { "if": { @@ -73440,7 +73598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonstateparksandrecreationcommission-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonstateparksandrecreationcommission-6c188f.jpg" }, { "if": { @@ -73456,7 +73614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waukeganparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waukeganparkdistrict-17eabc.jpg" }, { "if": { @@ -73471,7 +73629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wellingtoncitycouncil-465cf6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wellingtoncitycouncil-465cf6.jpg" }, { "if": { @@ -73486,7 +73644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westchicagoparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westchicagoparkdistrict-17eabc.jpg" }, { "if": { @@ -73502,7 +73660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfargoparkdistrict-20a56e.png" + "then": "https://data.mapcomplete.org/nsi//logos/westfargoparkdistrict-20a56e.png" }, { "if": { @@ -73518,7 +73676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westvirginiadivisionofnaturalresources-0e9e9f.png" + "then": "https://data.mapcomplete.org/nsi//logos/westvirginiadivisionofnaturalresources-0e9e9f.png" }, { "if": { @@ -73533,7 +73691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernspringsparkdistrict-17eabc.png" + "then": "https://data.mapcomplete.org/nsi//logos/westernspringsparkdistrict-17eabc.png" }, { "if": { @@ -73548,7 +73706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wheatonparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wheatonparkdistrict-17eabc.jpg" }, { "if": { @@ -73563,7 +73721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/willamalaneparkandrecreationdistrict-9db284.png" + "then": "https://data.mapcomplete.org/nsi//logos/willamalaneparkandrecreationdistrict-9db284.png" }, { "if": { @@ -73578,7 +73736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/willoughbycitycouncil-11d7e5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/willoughbycitycouncil-11d7e5.jpg" }, { "if": { @@ -73593,7 +73751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wilmetteparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wilmetteparkdistrict-17eabc.jpg" }, { "if": { @@ -73608,7 +73766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winfieldparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winfieldparkdistrict-17eabc.jpg" }, { "if": { @@ -73623,7 +73781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/winnetkaparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/winnetkaparkdistrict-17eabc.jpg" }, { "if": { @@ -73639,7 +73797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsindepartmentofnaturalresources-ef1d28.png" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentofnaturalresources-ef1d28.png" }, { "if": { @@ -73654,7 +73812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/woodridgeparkdistrict-17eabc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/woodridgeparkdistrict-17eabc.jpg" }, { "if": { @@ -73670,7 +73828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wyomingdivisionofstateparksandhistoricsites-cea54e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wyomingdivisionofstateparksandhistoricsites-cea54e.jpg" }, { "if": { @@ -73685,7 +73843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yakimaparksandrecreation-6c188f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yakimaparksandrecreation-6c188f.jpg" }, { "if": { @@ -73707,7 +73865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leisureandculturalservicesdepartment-30eaed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leisureandculturalservicesdepartment-30eaed.jpg" }, { "if": { @@ -73722,7 +73880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bowlinggreenstateuniversity-573bf6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-573bf6.jpg" }, { "if": { @@ -73736,7 +73894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/broxtoweboroughcouncil-45fac9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/broxtoweboroughcouncil-45fac9.jpg" }, { "if": { @@ -73750,7 +73908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcalgary-8d2a1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcalgary-8d2a1d.jpg" }, { "if": { @@ -73764,7 +73922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofdubuque-3b2d57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofdubuque-3b2d57.jpg" }, { "if": { @@ -73778,7 +73936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofottawa-272e42.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofottawa-272e42.png" }, { "if": { @@ -73792,7 +73950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decathlon-31fbc1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/decathlon-31fbc1.jpg" }, { "if": { @@ -73806,7 +73964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindeunterhaching-d293c1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindeunterhaching-d293c1.svg" }, { "if": { @@ -73822,7 +73980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hackneytennis-bac174.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hackneytennis-bac174.jpg" }, { "if": { @@ -73836,7 +73994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kouvolankaupunki-8c67a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/kouvolankaupunki-8c67a7.png" }, { "if": { @@ -73850,7 +74008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kuopionkaupunki-8c67a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/kuopionkaupunki-8c67a7.png" }, { "if": { @@ -73865,7 +74023,21 @@ } ] }, - "then": "./assets/data/nsi/logos/magistratmestaceskebudejovice-378c31.png" + "then": "https://data.mapcomplete.org/nsi//logos/magistratmestaceskebudejovice-378c31.png" + }, + { + "if": { + "and": [ + "leisure=pitch", + { + "or": [ + "operator=Município de Maputo", + "operator:wikidata=Q3889" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/municipiodemaputo-fe1461.jpg" }, { "if": { @@ -73879,7 +74051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newportcitycouncil-1a17df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-1a17df.jpg" }, { "if": { @@ -73893,7 +74065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slipperyrockuniversity-b14250.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slipperyrockuniversity-b14250.jpg" }, { "if": { @@ -73907,7 +74079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sportskiparkmladost-dca74c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sportskiparkmladost-dca74c.jpg" }, { "if": { @@ -73921,7 +74093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbonn-d74e32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbonn-d74e32.jpg" }, { "if": { @@ -73935,7 +74107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtfreising-d293c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtfreising-d293c1.jpg" }, { "if": { @@ -73949,7 +74121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgiessen-10ccb2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgiessen-10ccb2.svg" }, { "if": { @@ -73963,7 +74135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtneuss-d74e32.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtneuss-d74e32.svg" }, { "if": { @@ -73977,7 +74149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwitten-d74e32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwitten-d74e32.jpg" }, { "if": { @@ -73993,7 +74165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/towerhamletstennis-bac174.png" + "then": "https://data.mapcomplete.org/nsi//logos/towerhamletstennis-bac174.png" }, { "if": { @@ -74007,7 +74179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universityofminnesota-8586be.png" + "then": "https://data.mapcomplete.org/nsi//logos/universityofminnesota-8586be.png" }, { "if": { @@ -74021,7 +74193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/123energie-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/123energie-9a316b.jpg" }, { "if": { @@ -74037,7 +74209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7eleven-416623.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7eleven-416623.jpg" }, { "if": { @@ -74051,7 +74223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a2a-60858d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a2a-60858d.jpg" }, { "if": { @@ -74065,7 +74237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abb-5601d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/abb-5601d5.png" }, { "if": { @@ -74079,7 +74251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accionaenergia-9bc2ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accionaenergia-9bc2ed.jpg" }, { "if": { @@ -74093,7 +74265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adac-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adac-9a316b.jpg" }, { "if": { @@ -74107,7 +74279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrisnellaad-a00d8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/agrisnellaad-a00d8a.png" }, { "if": { @@ -74121,7 +74293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agrola-d761b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agrola-d761b8.jpg" }, { "if": { @@ -74135,7 +74307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airbus-aaa4a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airbus-aaa4a2.jpg" }, { "if": { @@ -74149,7 +74321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akademiskahus-fe9964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/akademiskahus-fe9964.jpg" }, { "if": { @@ -74163,7 +74335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-550ee8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-550ee8.svg" }, { "if": { @@ -74177,7 +74349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-302bb9.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-302bb9.png" }, { "if": { @@ -74191,7 +74363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alfen-073d71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alfen-073d71.jpg" }, { "if": { @@ -74205,7 +74377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allego-073d71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/allego-073d71.jpg" }, { "if": { @@ -74220,7 +74392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allgaueruberlandwerk-bea674.png" + "then": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-bea674.png" }, { "if": { @@ -74234,7 +74406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alperia-60858d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alperia-60858d.jpg" }, { "if": { @@ -74248,7 +74420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altis-9327de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altis-9327de.jpg" }, { "if": { @@ -74262,7 +74434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/applegreenelectric-ae7de3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/applegreenelectric-ae7de3.jpg" }, { "if": { @@ -74277,7 +74449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aral-026fb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aral-026fb8.jpg" }, { "if": { @@ -74291,7 +74463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arinea-3c58b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/arinea-3c58b6.png" }, { "if": { @@ -74305,7 +74477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asp-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/asp-0f84be.png" }, { "if": { @@ -74319,7 +74491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchan-c9b0aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchan-c9b0aa.png" }, { "if": { @@ -74333,7 +74505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/audiag-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/audiag-9a316b.jpg" }, { "if": { @@ -74347,7 +74519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-e8d2ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-e8d2ef.jpg" }, { "if": { @@ -74361,7 +74533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autoenterprise-bfc601.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autoenterprise-bfc601.jpg" }, { "if": { @@ -74375,7 +74547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autolib-e794c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/autolib-e794c8.svg" }, { "if": { @@ -74389,7 +74561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avacon-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avacon-9a316b.jpg" }, { "if": { @@ -74403,7 +74575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avu-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avu-0f84be.jpg" }, { "if": { @@ -74418,7 +74590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aziendeindustrialidilugano-d3d79f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aziendeindustrialidilugano-d3d79f.jpg" }, { "if": { @@ -74432,7 +74604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-c1a2f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-c1a2f3.jpg" }, { "if": { @@ -74446,7 +74618,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bauhaus-e9ea4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bauhaus-e9ea4c.png" }, { "if": { @@ -74460,7 +74632,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayernwerk-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bayernwerk-9a316b.svg" }, { "if": { @@ -74474,7 +74646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-ff5a4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-ff5a4e.jpg" }, { "if": { @@ -74488,7 +74660,7 @@ } ] }, - "then": "./assets/data/nsi/logos/becharge-60858d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/becharge-60858d.svg" }, { "if": { @@ -74502,7 +74674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerstadtwerke-d5d657.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerstadtwerke-d5d657.jpg" }, { "if": { @@ -74516,7 +74688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biggeenergie-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/biggeenergie-0f84be.jpg" }, { "if": { @@ -74532,7 +74704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bikeenergy-d742f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bikeenergy-d742f8.jpg" }, { "if": { @@ -74546,7 +74718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamcitycouncil-1ba162.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-1ba162.jpg" }, { "if": { @@ -74562,7 +74734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blink-4b4f7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blink-4b4f7a.jpg" }, { "if": { @@ -74576,7 +74748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluecharge-009624.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluecharge-009624.jpg" }, { "if": { @@ -74590,7 +74762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bmw-5601d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bmw-5601d5.jpg" }, { "if": { @@ -74605,7 +74777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bocholterenergieundwasserversorgung-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/bocholterenergieundwasserversorgung-0f84be.png" }, { "if": { @@ -74619,7 +74791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/booths-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/booths-2a0385.jpg" }, { "if": { @@ -74634,7 +74806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boschebikesystems-5601d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/boschebikesystems-5601d5.jpg" }, { "if": { @@ -74648,7 +74820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-7872f6.jpg" }, { "if": { @@ -74662,7 +74834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightonandhovecitycouncil-477ad0.png" + "then": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-477ad0.png" }, { "if": { @@ -74676,7 +74848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bsenergy-7a74c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bsenergy-7a74c6.jpg" }, { "if": { @@ -74690,7 +74862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgenlandenergieag-c4e7a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-c4e7a0.png" }, { "if": { @@ -74704,7 +74876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caritas-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caritas-0f84be.jpg" }, { "if": { @@ -74718,7 +74890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-7872f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-7872f6.png" }, { "if": { @@ -74732,7 +74904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carusocarsharing-7a4e5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/carusocarsharing-7a4e5c.jpg" }, { "if": { @@ -74746,7 +74918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralschweizerischekraftwerke-91dfc8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/centralschweizerischekraftwerke-91dfc8.svg" }, { "if": { @@ -74760,7 +74932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cepsa-b3093e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cepsa-b3093e.jpg" }, { "if": { @@ -74774,7 +74946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cez-788d35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cez-788d35.jpg" }, { "if": { @@ -74788,7 +74960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargeyourcar-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chargeyourcar-2a0385.jpg" }, { "if": { @@ -74802,7 +74974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargefox-d7f9de.png" + "then": "https://data.mapcomplete.org/nsi//logos/chargefox-d7f9de.png" }, { "if": { @@ -74816,7 +74988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargenetnz-3fbaa3.png" + "then": "https://data.mapcomplete.org/nsi//logos/chargenetnz-3fbaa3.png" }, { "if": { @@ -74830,7 +75002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargeplacescotland-353a00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chargeplacescotland-353a00.jpg" }, { "if": { @@ -74846,7 +75018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chargepoint-5601d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/chargepoint-5601d5.png" }, { "if": { @@ -74862,7 +75034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circlek-7872f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/circlek-7872f6.png" }, { "if": { @@ -74884,7 +75056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/circuitelectrique-40271b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/circuitelectrique-40271b.jpg" }, { "if": { @@ -74898,7 +75070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofgoldcoast-cf5c60.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofgoldcoast-cf5c60.jpg" }, { "if": { @@ -74912,7 +75084,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhobart-7f392c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhobart-7f392c.png" }, { "if": { @@ -74926,7 +75098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflaunceston-3ca73a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflaunceston-3ca73a.jpg" }, { "if": { @@ -74940,7 +75112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citywatt-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citywatt-9a316b.jpg" }, { "if": { @@ -74954,7 +75126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clever-819017.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clever-819017.jpg" }, { "if": { @@ -74968,7 +75140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compleochargingtechnologiesgmbh-c6e3e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compleochargingtechnologiesgmbh-c6e3e9.jpg" }, { "if": { @@ -74982,7 +75154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/connectedkerb-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/connectedkerb-2a0385.jpg" }, { "if": { @@ -74996,7 +75168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-60858d.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-60858d.png" }, { "if": { @@ -75010,7 +75182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-d761b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/coop-d761b8.png" }, { "if": { @@ -75024,7 +75196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-fe9964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-fe9964.jpg" }, { "if": { @@ -75038,7 +75210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coop-0916f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coop-0916f2.jpg" }, { "if": { @@ -75052,7 +75224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copec-579fc5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/copec-579fc5.svg" }, { "if": { @@ -75068,7 +75240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countiesenergy-3fbaa3.png" + "then": "https://data.mapcomplete.org/nsi//logos/countiesenergy-3fbaa3.png" }, { "if": { @@ -75082,7 +75254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csdd-935738.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csdd-935738.jpg" }, { "if": { @@ -75096,7 +75268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daemobil-5d4d83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/daemobil-5d4d83.jpg" }, { "if": { @@ -75110,7 +75282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dats24-9feda4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dats24-9feda4.jpg" }, { "if": { @@ -75124,7 +75296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deergmbh-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deergmbh-9a316b.jpg" }, { "if": { @@ -75138,7 +75310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschetelekom-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschetelekom-9a316b.jpg" }, { "if": { @@ -75152,7 +75324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deviwa-9327de.svg" + "then": "https://data.mapcomplete.org/nsi//logos/deviwa-9327de.svg" }, { "if": { @@ -75166,7 +75338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dew21-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dew21-0f84be.jpg" }, { "if": { @@ -75180,7 +75352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drewag-7df435.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drewag-7df435.jpg" }, { "if": { @@ -75194,7 +75366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duferco-60858d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/duferco-60858d.svg" }, { "if": { @@ -75208,7 +75380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dufercoenergia-60858d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dufercoenergia-60858d.jpg" }, { "if": { @@ -75222,7 +75394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-416623.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-416623.jpg" }, { "if": { @@ -75236,7 +75408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eregio-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eregio-0f84be.jpg" }, { "if": { @@ -75250,7 +75422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewerkmittelbaden-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewerkmittelbaden-9a316b.jpg" }, { "if": { @@ -75264,7 +75436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edis-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edis-9a316b.jpg" }, { "if": { @@ -75278,7 +75450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclerc-c9b0aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclerc-c9b0aa.jpg" }, { "if": { @@ -75292,7 +75464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-22bfb3.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-22bfb3.png" }, { "if": { @@ -75306,7 +75478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eam-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eam-9a316b.jpg" }, { "if": { @@ -75320,7 +75492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/easygo-3b851d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/easygo-3b851d.jpg" }, { "if": { @@ -75334,7 +75506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecotap-b91a42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecotap-b91a42.jpg" }, { "if": { @@ -75348,7 +75520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edeka-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/edeka-9a316b.png" }, { "if": { @@ -75362,7 +75534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edp-367d30.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edp-367d30.svg" }, { "if": { @@ -75376,7 +75548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eestienergiaas-eec16b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eestienergiaas-eec16b.jpg" }, { "if": { @@ -75390,7 +75562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eggenergieversorgunggera-6e1091.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eggenergieversorgunggera-6e1091.jpg" }, { "if": { @@ -75404,7 +75576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/einsenergieinsachsen-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/einsenergieinsachsen-9a316b.png" }, { "if": { @@ -75418,7 +75590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ejoin-d74d01.png" + "then": "https://data.mapcomplete.org/nsi//logos/ejoin-d74d01.png" }, { "if": { @@ -75432,7 +75604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekz-d761b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ekz-d761b8.png" }, { "if": { @@ -75446,7 +75618,21 @@ } ] }, - "then": "./assets/data/nsi/logos/eldrive-d04590.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eldrive-d04590.jpg" + }, + { + "if": { + "and": [ + "man_made=charge_point", + { + "or": [ + "operator=Electra", + "operator:wikidata=Q128592938" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/electra-fa309c.jpg" }, { "if": { @@ -75460,7 +75646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electrichighwaytasmania-db19b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electrichighwaytasmania-db19b8.jpg" }, { "if": { @@ -75475,7 +75661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-7872f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-7872f6.png" }, { "if": { @@ -75489,7 +75675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electrifyamerica-416623.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electrifyamerica-416623.jpg" }, { "if": { @@ -75503,7 +75689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrizitatswerkdavos-3ef8c4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkdavos-3ef8c4.svg" }, { "if": { @@ -75517,7 +75703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrizitatswerkobwalden-ac53a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkobwalden-ac53a7.jpg" }, { "if": { @@ -75531,7 +75717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleport-bb1b8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleport-bb1b8e.jpg" }, { "if": { @@ -75545,7 +75731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ella-c4e7a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ella-c4e7a0.png" }, { "if": { @@ -75559,7 +75745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elli-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elli-9a316b.jpg" }, { "if": { @@ -75573,7 +75759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmu-7c6771.png" + "then": "https://data.mapcomplete.org/nsi//logos/elmu-7c6771.png" }, { "if": { @@ -75587,7 +75773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emel-c59d8c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/emel-c59d8c.svg" }, { "if": { @@ -75601,7 +75787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emoti-d3d79f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emoti-d3d79f.jpg" }, { "if": { @@ -75616,7 +75802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emscherlippeenergie-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/emscherlippeenergie-0f84be.jpg" }, { "if": { @@ -75630,7 +75816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-9a316b.png" }, { "if": { @@ -75644,7 +75830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-9bc2ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-9bc2ed.png" }, { "if": { @@ -75658,7 +75844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneco-c910a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneco-c910a1.png" }, { "if": { @@ -75674,7 +75860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-60858d.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-60858d.png" }, { "if": { @@ -75690,7 +75876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelx-f8853a.png" + "then": "https://data.mapcomplete.org/nsi//logos/enelx-f8853a.png" }, { "if": { @@ -75704,7 +75890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelxway-60858d.png" + "then": "https://data.mapcomplete.org/nsi//logos/enelxway-60858d.png" }, { "if": { @@ -75718,7 +75904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enercity-7a74c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enercity-7a74c6.jpg" }, { "if": { @@ -75732,7 +75918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-3c58b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-3c58b6.png" }, { "if": { @@ -75746,7 +75932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7977b1-d761b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/7977b1-d761b8.png" }, { "if": { @@ -75760,7 +75946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-c4e7a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-c4e7a0.png" }, { "if": { @@ -75774,7 +75960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiecalw-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiecalw-f38d07.jpg" }, { "if": { @@ -75788,7 +75974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieeureetloir-50b7ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieeureetloir-50b7ae.jpg" }, { "if": { @@ -75802,7 +75988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesaarlorlux-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiesaarlorlux-9a316b.svg" }, { "if": { @@ -75816,7 +76002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesteiermark-be6553.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-be6553.png" }, { "if": { @@ -75830,7 +76016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesudbayern-e3d1c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiesudbayern-e3d1c8.svg" }, { "if": { @@ -75844,7 +76030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedienst-0a01b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedienst-0a01b8.jpg" }, { "if": { @@ -75858,7 +76044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energis-cb812f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energis-cb812f.jpg" }, { "if": { @@ -75872,7 +76058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-ce6b96.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-ce6b96.jpg" }, { "if": { @@ -75886,7 +76072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eni-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eni-7872f6.jpg" }, { "if": { @@ -75900,7 +76086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eniwa-0685b9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eniwa-0685b9.svg" }, { "if": { @@ -75914,7 +76100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ensoenergiesachsenostag-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ensoenergiesachsenostag-9a316b.svg" }, { "if": { @@ -75928,7 +76114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entega-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/entega-9a316b.png" }, { "if": { @@ -75942,7 +76128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enviam-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/enviam-9a316b.png" }, { "if": { @@ -75956,7 +76142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eo-ae7de3.png" + "then": "https://data.mapcomplete.org/nsi//logos/eo-ae7de3.png" }, { "if": { @@ -75971,7 +76157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieservicebielbienne-33781b.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieservicebielbienne-33781b.png" }, { "if": { @@ -75986,7 +76172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbgroup-bd441e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/esbgroup-bd441e.svg" }, { "if": { @@ -76000,7 +76186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbenergy-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esbenergy-2a0385.jpg" }, { "if": { @@ -76014,7 +76200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-7872f6.jpg" }, { "if": { @@ -76028,7 +76214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eswe-c6e3e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eswe-c6e3e9.jpg" }, { "if": { @@ -76042,7 +76228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evconnect-416623.png" + "then": "https://data.mapcomplete.org/nsi//logos/evconnect-416623.png" }, { "if": { @@ -76056,7 +76242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evbox-22bfb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evbox-22bfb3.jpg" }, { "if": { @@ -76070,7 +76256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evcs-416623.png" + "then": "https://data.mapcomplete.org/nsi//logos/evcs-416623.png" }, { "if": { @@ -76084,7 +76270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evdenergieversorgungdormagen-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/evdenergieversorgungdormagen-0f84be.png" }, { "if": { @@ -76098,7 +76284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evienetworks-6d1cb9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evienetworks-6d1cb9.jpg" }, { "if": { @@ -76112,7 +76298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-c4e7a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-c4e7a0.jpg" }, { "if": { @@ -76126,7 +76312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evpass-d761b8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evpass-d761b8.svg" }, { "if": { @@ -76140,7 +76326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evway-60858d.png" + "then": "https://data.mapcomplete.org/nsi//logos/evway-60858d.png" }, { "if": { @@ -76154,7 +76340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewhofe-2bf16b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ewhofe-2bf16b.svg" }, { "if": { @@ -76168,7 +76354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eways-fe9964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eways-fe9964.jpg" }, { "if": { @@ -76182,7 +76368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewego-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ewego-9a316b.png" }, { "if": { @@ -76196,7 +76382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewii-b5d24c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ewii-b5d24c.png" }, { "if": { @@ -76210,7 +76396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewiva-60858d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewiva-60858d.jpg" }, { "if": { @@ -76224,7 +76410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewr-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewr-9a316b.jpg" }, { "if": { @@ -76238,7 +76424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewv-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewv-9a316b.jpg" }, { "if": { @@ -76252,7 +76438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastned-073d71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fastned-073d71.jpg" }, { "if": { @@ -76266,7 +76452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fenieenergia-9bc2ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/fenieenergia-9bc2ed.png" }, { "if": { @@ -76280,7 +76466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c9c8bd-f58e30.png" + "then": "https://data.mapcomplete.org/nsi//logos/c9c8bd-f58e30.png" }, { "if": { @@ -76296,7 +76482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flo-5b5c3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flo-5b5c3d.jpg" }, { "if": { @@ -76310,7 +76496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freshmile-c9b0aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freshmile-c9b0aa.jpg" }, { "if": { @@ -76324,7 +76510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fyrfasenenergiab-fe9964.png" + "then": "https://data.mapcomplete.org/nsi//logos/fyrfasenenergiab-fe9964.png" }, { "if": { @@ -76338,7 +76524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentedenhaag-a00d8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentedenhaag-a00d8a.png" }, { "if": { @@ -76352,7 +76538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenterotterdam-a00d8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-a00d8a.jpg" }, { "if": { @@ -76366,7 +76552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenteutrecht-a00d8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenteutrecht-a00d8a.jpg" }, { "if": { @@ -76380,7 +76566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindeunterhaching-e3d1c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindeunterhaching-e3d1c8.svg" }, { "if": { @@ -76394,7 +76580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geniepoint-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geniepoint-2a0385.jpg" }, { "if": { @@ -76408,7 +76594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ggew-c6e3e9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ggew-c6e3e9.svg" }, { "if": { @@ -76422,7 +76608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/750c54-f58e30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/750c54-f58e30.jpg" }, { "if": { @@ -76436,7 +76622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gocharge-3b851d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gocharge-3b851d.jpg" }, { "if": { @@ -76450,7 +76636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gofast-d761b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gofast-d761b8.jpg" }, { "if": { @@ -76466,7 +76652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/62c656-5601d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/62c656-5601d5.jpg" }, { "if": { @@ -76480,7 +76666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gpjouleconnect-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gpjouleconnect-9a316b.jpg" }, { "if": { @@ -76494,7 +76680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenmotion-d761b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/greenmotion-d761b8.png" }, { "if": { @@ -76508,7 +76694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenflux-a00d8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenflux-a00d8a.jpg" }, { "if": { @@ -76522,7 +76708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenway-41f761.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenway-41f761.jpg" }, { "if": { @@ -76536,7 +76722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gridserve-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gridserve-2a0385.jpg" }, { "if": { @@ -76550,7 +76736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groupee-d761b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupee-d761b8.jpg" }, { "if": { @@ -76564,7 +76750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/helen-c07792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/helen-c07792.jpg" }, { "if": { @@ -76578,7 +76764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hikotron-3fbaa3.png" + "then": "https://data.mapcomplete.org/nsi//logos/hikotron-3fbaa3.png" }, { "if": { @@ -76592,7 +76778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holmgrensbilab-fe9964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holmgrensbilab-fe9964.jpg" }, { "if": { @@ -76606,7 +76792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hyundai-5601d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hyundai-5601d5.jpg" }, { "if": { @@ -76620,7 +76806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-9bc2ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-9bc2ed.jpg" }, { "if": { @@ -76634,7 +76820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ice-ac12d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ice-ac12d3.jpg" }, { "if": { @@ -76648,7 +76834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ignitis-7d5905.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ignitis-7d5905.jpg" }, { "if": { @@ -76662,7 +76848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikea-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikea-7872f6.jpg" }, { "if": { @@ -76676,7 +76862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-c4e7a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-c4e7a0.png" }, { "if": { @@ -76692,7 +76878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogy-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/innogy-9a316b.svg" }, { "if": { @@ -76706,7 +76892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/inselwerke-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/inselwerke-9a316b.jpg" }, { "if": { @@ -76720,7 +76906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/instavolt-2a0385.png" + "then": "https://data.mapcomplete.org/nsi//logos/instavolt-2a0385.png" }, { "if": { @@ -76734,7 +76920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intelcorporation-416623.png" + "then": "https://data.mapcomplete.org/nsi//logos/intelcorporation-416623.png" }, { "if": { @@ -76748,7 +76934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarche-6ec72c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarche-6ec72c.jpg" }, { "if": { @@ -76762,7 +76948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isorka-e805b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/isorka-e805b7.png" }, { "if": { @@ -76776,7 +76962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iwb-d761b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/iwb-d761b8.png" }, { "if": { @@ -76790,7 +76976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jamtkraft-fe9964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jamtkraft-fe9964.jpg" }, { "if": { @@ -76804,7 +76990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jolt-a34f13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jolt-a34f13.jpg" }, { "if": { @@ -76818,7 +77004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonkopingenergi-fe9964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonkopingenergi-fe9964.jpg" }, { "if": { @@ -76832,7 +77018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/klataus-c07792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/klataus-c07792.jpg" }, { "if": { @@ -76846,7 +77032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaufland-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/kaufland-9a316b.png" }, { "if": { @@ -76860,7 +77046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keba-e9ea4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/keba-e9ea4c.png" }, { "if": { @@ -76874,7 +77060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-534534.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-534534.jpg" }, { "if": { @@ -76888,7 +77074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kreiswerkemainkinzig-c6e3e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kreiswerkemainkinzig-c6e3e9.jpg" }, { "if": { @@ -76902,7 +77088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kungsbackakommun-fe9964.png" + "then": "https://data.mapcomplete.org/nsi//logos/kungsbackakommun-fe9964.png" }, { "if": { @@ -76916,7 +77102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancastercitycouncil-1da7fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancastercitycouncil-1da7fc.jpg" }, { "if": { @@ -76930,7 +77116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lancasteruniversity-1da7fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lancasteruniversity-1da7fc.jpg" }, { "if": { @@ -76944,7 +77130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lastmilesolutions-22bfb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lastmilesolutions-22bfb3.jpg" }, { "if": { @@ -76958,7 +77144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leap24-e8ea48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leap24-e8ea48.jpg" }, { "if": { @@ -76972,7 +77158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leasys-9c7e3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/leasys-9c7e3a.png" }, { "if": { @@ -76986,7 +77172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechwerkeag-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechwerkeag-9a316b.jpg" }, { "if": { @@ -77000,7 +77186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidl-c74eaa.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidl-c74eaa.png" }, { "if": { @@ -77014,7 +77200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidlsverigekb-fe9964.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidlsverigekb-fe9964.png" }, { "if": { @@ -77028,7 +77214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-081dfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-081dfd.jpg" }, { "if": { @@ -77042,7 +77228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lokalwerke-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lokalwerke-0f84be.jpg" }, { "if": { @@ -77056,7 +77242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswenergie-7a74c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswenergie-7a74c6.png" }, { "if": { @@ -77070,7 +77256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luminus-31a4ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luminus-31a4ce.jpg" }, { "if": { @@ -77084,7 +77270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maingauenergie-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/maingauenergie-9a316b.svg" }, { "if": { @@ -77098,7 +77284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainova-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/mainova-9a316b.png" }, { "if": { @@ -77112,7 +77298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainzerstadtwerke-c7ca4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mainzerstadtwerke-c7ca4b.jpg" }, { "if": { @@ -77126,7 +77312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mairiedeparis-e794c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-e794c8.jpg" }, { "if": { @@ -77140,7 +77326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/malarenergi-fe9964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/malarenergi-fe9964.jpg" }, { "if": { @@ -77154,7 +77340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marke-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marke-9a316b.jpg" }, { "if": { @@ -77168,7 +77354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxsolar-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/maxsolar-9a316b.png" }, { "if": { @@ -77182,7 +77368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-7872f6.jpg" }, { "if": { @@ -77196,7 +77382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mennekes-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mennekes-9a316b.svg" }, { "if": { @@ -77210,7 +77396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercadona-b3093e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercadona-b3093e.jpg" }, { "if": { @@ -77224,7 +77410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercedesbenz-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mercedesbenz-7872f6.jpg" }, { "if": { @@ -77238,7 +77424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michiganstateuniversity-035fe0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michiganstateuniversity-035fe0.jpg" }, { "if": { @@ -77252,7 +77438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/migrol-d761b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/migrol-d761b8.jpg" }, { "if": { @@ -77266,7 +77452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobie-009624.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobie-009624.jpg" }, { "if": { @@ -77280,7 +77466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mobilityplus-31a4ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mobilityplus-31a4ce.jpg" }, { "if": { @@ -77294,7 +77480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morbihanenergies-fa309c.png" + "then": "https://data.mapcomplete.org/nsi//logos/morbihanenergies-fa309c.png" }, { "if": { @@ -77308,7 +77494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/move-d761b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/move-d761b8.jpg" }, { "if": { @@ -77322,7 +77508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mvvenergie-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mvvenergie-f38d07.jpg" }, { "if": { @@ -77336,7 +77522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nergie-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/nergie-9a316b.png" }, { "if": { @@ -77350,7 +77536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/n1-e805b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/n1-e805b7.png" }, { "if": { @@ -77364,7 +77550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nabibajk-d74d01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nabibajk-d74d01.jpg" }, { "if": { @@ -77378,7 +77564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturenergie-0a01b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturenergie-0a01b8.jpg" }, { "if": { @@ -77392,7 +77578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neogy-60858d.png" + "then": "https://data.mapcomplete.org/nsi//logos/neogy-60858d.png" }, { "if": { @@ -77406,7 +77592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/new-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/new-9a316b.svg" }, { "if": { @@ -77420,7 +77606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nissan-5601d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nissan-5601d5.jpg" }, { "if": { @@ -77434,7 +77620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norlys-b5d24c.png" + "then": "https://data.mapcomplete.org/nsi//logos/norlys-b5d24c.png" }, { "if": { @@ -77448,7 +77634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/noxo-3c58b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/noxo-3c58b6.jpg" }, { "if": { @@ -77462,7 +77648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nrgenergy-416623.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nrgenergy-416623.jpg" }, { "if": { @@ -77476,7 +77662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nrma-6d1cb9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nrma-6d1cb9.jpg" }, { "if": { @@ -77490,7 +77676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nuon-a00d8a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nuon-a00d8a.svg" }, { "if": { @@ -77504,7 +77690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oamtc-c4e7a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oamtc-c4e7a0.jpg" }, { "if": { @@ -77518,7 +77704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omv-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omv-7872f6.jpg" }, { "if": { @@ -77532,7 +77718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opcharge-a00d8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/opcharge-a00d8a.png" }, { "if": { @@ -77546,7 +77732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orion-3fbaa3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orion-3fbaa3.jpg" }, { "if": { @@ -77560,7 +77746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orkanatturunnar-e805b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/orkanatturunnar-e805b7.png" }, { "if": { @@ -77574,7 +77760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlen-3c58b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlen-3c58b6.jpg" }, { "if": { @@ -77588,7 +77774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osprey-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osprey-2a0385.jpg" }, { "if": { @@ -77602,7 +77788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ovag-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ovag-9a316b.png" }, { "if": { @@ -77616,7 +77802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perusahaanlistriknegara-fb9abf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-fb9abf.jpg" }, { "if": { @@ -77630,7 +77816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrol-9d352c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petrol-9d352c.jpg" }, { "if": { @@ -77644,7 +77830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfalzwerke-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/pfalzwerke-9a316b.png" }, { "if": { @@ -77658,7 +77844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plenitude-60858d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plenitude-60858d.jpg" }, { "if": { @@ -77672,7 +77858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plugnroll-d761b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/plugnroll-d761b8.png" }, { "if": { @@ -77686,7 +77872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/podpoint-2a0385.png" + "then": "https://data.mapcomplete.org/nsi//logos/podpoint-2a0385.png" }, { "if": { @@ -77700,7 +77886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/porsche-5601d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/porsche-5601d5.jpg" }, { "if": { @@ -77714,7 +77900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pre-788d35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pre-788d35.jpg" }, { "if": { @@ -77728,7 +77914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/protergia-ab9b63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/protergia-ab9b63.jpg" }, { "if": { @@ -77742,7 +77928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qpark-22bfb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/qpark-22bfb3.jpg" }, { "if": { @@ -77756,7 +77942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qbuzz-a00d8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/qbuzz-a00d8a.png" }, { "if": { @@ -77770,7 +77956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qwello-bb1996.png" + "then": "https://data.mapcomplete.org/nsi//logos/qwello-bb1996.png" }, { "if": { @@ -77784,7 +77970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renault-5601d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renault-5601d5.jpg" }, { "if": { @@ -77798,7 +77984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renovatioecharge-2ef00a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renovatioecharge-2ef00a.jpg" }, { "if": { @@ -77812,7 +77998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repower-d157bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/repower-d157bf.svg" }, { "if": { @@ -77826,7 +78012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repsol-b3093e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/repsol-b3093e.jpg" }, { "if": { @@ -77840,7 +78026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reveo-fa309c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reveo-fa309c.jpg" }, { "if": { @@ -77854,7 +78040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewag-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rewag-9a316b.jpg" }, { "if": { @@ -77868,7 +78054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rewe-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rewe-9a316b.jpg" }, { "if": { @@ -77882,7 +78068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinenergie-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/rheinenergie-9a316b.png" }, { "if": { @@ -77896,7 +78082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhonenergiefulda-c6e3e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/rhonenergiefulda-c6e3e9.png" }, { "if": { @@ -77910,7 +78096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ringerikskraftas-0916f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ringerikskraftas-0916f2.jpg" }, { "if": { @@ -77924,7 +78110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robertboschgmbh-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/robertboschgmbh-9a316b.jpg" }, { "if": { @@ -77938,7 +78124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/roche-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/roche-7872f6.jpg" }, { "if": { @@ -77952,7 +78138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stpt-2ef00a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stpt-2ef00a.jpg" }, { "if": { @@ -77966,7 +78152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-7df435.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-7df435.png" }, { "if": { @@ -77980,7 +78166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sak-d761b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sak-d761b8.jpg" }, { "if": { @@ -77994,7 +78180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-28a506.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-28a506.jpg" }, { "if": { @@ -78008,7 +78194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schneiderelectric-5601d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/schneiderelectric-5601d5.png" }, { "if": { @@ -78022,7 +78208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/semaconnect-416623.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/semaconnect-416623.jpg" }, { "if": { @@ -78036,7 +78222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-5601d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-5601d5.jpg" }, { "if": { @@ -78050,7 +78236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shellrechargesolutions-7872f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/shellrechargesolutions-7872f6.png" }, { "if": { @@ -78064,7 +78250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smatrics-c4e7a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smatrics-c4e7a0.jpg" }, { "if": { @@ -78080,7 +78266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sourcelondon-d8cc94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sourcelondon-d8cc94.jpg" }, { "if": { @@ -78094,7 +78280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southlakelanddistrictcouncil-081ccb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southlakelanddistrictcouncil-081ccb.jpg" }, { "if": { @@ -78108,7 +78294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spar-7872f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spar-7872f6.jpg" }, { "if": { @@ -78122,7 +78308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtlorch-f38d07.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtlorch-f38d07.svg" }, { "if": { @@ -78137,7 +78323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtischewerkemagdeburg-ef5441.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtischewerkemagdeburg-ef5441.svg" }, { "if": { @@ -78152,7 +78338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkamsee-f38d07.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkamsee-f38d07.png" }, { "if": { @@ -78166,7 +78352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaugsburg-e3d1c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-e3d1c8.png" }, { "if": { @@ -78180,7 +78366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebadenbaden-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadenbaden-f38d07.jpg" }, { "if": { @@ -78194,7 +78380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebielefeld-0f84be.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebielefeld-0f84be.svg" }, { "if": { @@ -78208,7 +78394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebochum-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebochum-0f84be.png" }, { "if": { @@ -78222,7 +78408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedachau-e3d1c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedachau-e3d1c8.jpg" }, { "if": { @@ -78236,7 +78422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedessau-ea9737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedessau-ea9737.jpg" }, { "if": { @@ -78250,7 +78436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedusseldorf-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-0f84be.jpg" }, { "if": { @@ -78264,7 +78450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeenergiejenapossneckgmbh-6e1091.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeenergiejenapossneckgmbh-6e1091.png" }, { "if": { @@ -78279,7 +78465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeerfurt-6e1091.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeerfurt-6e1091.jpg" }, { "if": { @@ -78293,7 +78479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeevbhuntetalgmbh-7a74c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeevbhuntetalgmbh-7a74c6.jpg" }, { "if": { @@ -78307,7 +78493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkefurstenfeldbruck-e3d1c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkefurstenfeldbruck-e3d1c8.png" }, { "if": { @@ -78321,7 +78507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegiessen-c6e3e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegiessen-c6e3e9.png" }, { "if": { @@ -78335,7 +78521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegochgmbh-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegochgmbh-0f84be.png" }, { "if": { @@ -78349,7 +78535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegottingen-7a74c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegottingen-7a74c6.jpg" }, { "if": { @@ -78363,7 +78549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkehamm-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkehamm-0f84be.jpg" }, { "if": { @@ -78377,7 +78563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeheidelberg-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeheidelberg-f38d07.jpg" }, { "if": { @@ -78392,7 +78578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeherne-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherne-0f84be.jpg" }, { "if": { @@ -78406,7 +78592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeiserlohn-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeiserlohn-0f84be.jpg" }, { "if": { @@ -78421,7 +78607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekiel-2af49a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekiel-2af49a.jpg" }, { "if": { @@ -78435,7 +78621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeklagenfurt-7f89d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeklagenfurt-7f89d4.svg" }, { "if": { @@ -78449,7 +78635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekonstanz-f38d07.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekonstanz-f38d07.png" }, { "if": { @@ -78463,7 +78649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelandshut-e3d1c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelandshut-e3d1c8.jpg" }, { "if": { @@ -78477,7 +78663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelangen-c6e3e9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelangen-c6e3e9.png" }, { "if": { @@ -78491,7 +78677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeleipzig-7df435.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-7df435.jpg" }, { "if": { @@ -78505,7 +78691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemarburg-c6e3e9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemarburg-c6e3e9.svg" }, { "if": { @@ -78519,7 +78705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemeerbuschgmbh-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemeerbuschgmbh-0f84be.jpg" }, { "if": { @@ -78534,7 +78720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-17fa3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-17fa3d.jpg" }, { "if": { @@ -78548,7 +78734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunster-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunster-0f84be.jpg" }, { "if": { @@ -78563,7 +78749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneuss-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuss-0f84be.jpg" }, { "if": { @@ -78577,7 +78763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneustadtanderweinstrasse-c7ca4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneustadtanderweinstrasse-c7ca4b.png" }, { "if": { @@ -78591,7 +78777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkenorderstedt-2af49a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkenorderstedt-2af49a.jpg" }, { "if": { @@ -78605,7 +78791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeoberkirch-f38d07.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeoberkirch-f38d07.png" }, { "if": { @@ -78619,7 +78805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeosnabruck-7a74c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeosnabruck-7a74c6.jpg" }, { "if": { @@ -78634,7 +78820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkepforzheim-f38d07.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkepforzheim-f38d07.png" }, { "if": { @@ -78648,7 +78834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkerhede-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkerhede-0f84be.jpg" }, { "if": { @@ -78662,7 +78848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkerusselsheim-c6e3e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkerusselsheim-c6e3e9.jpg" }, { "if": { @@ -78676,7 +78862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeschwabischhall-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeschwabischhall-f38d07.jpg" }, { "if": { @@ -78690,7 +78876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkesindelfingen-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkesindelfingen-f38d07.jpg" }, { "if": { @@ -78704,7 +78890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkesolingen-0f84be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkesolingen-0f84be.jpg" }, { "if": { @@ -78719,7 +78905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkespeyer-c7ca4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-c7ca4b.jpg" }, { "if": { @@ -78733,7 +78919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkestuttgart-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkestuttgart-f38d07.jpg" }, { "if": { @@ -78748,7 +78934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerketubingen-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerketubingen-f38d07.jpg" }, { "if": { @@ -78762,7 +78948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeunionnordhessen-c6e3e9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeunionnordhessen-c6e3e9.svg" }, { "if": { @@ -78776,7 +78962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkevelbert-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkevelbert-0f84be.png" }, { "if": { @@ -78790,7 +78976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeweimar-6e1091.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeweimar-6e1091.svg" }, { "if": { @@ -78804,7 +78990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewitten-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-0f84be.png" }, { "if": { @@ -78818,7 +79004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stawag-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/stawag-0f84be.png" }, { "if": { @@ -78832,7 +79018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-d99909.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-d99909.jpg" }, { "if": { @@ -78848,7 +79034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fmconway-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fmconway-2a0385.jpg" }, { "if": { @@ -78862,7 +79048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwag-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwag-9a316b.jpg" }, { "if": { @@ -78876,7 +79062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swb-fd47ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swb-fd47ae.jpg" }, { "if": { @@ -78891,7 +79077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swbenergieundwasser-0f84be.svg" + "then": "https://data.mapcomplete.org/nsi//logos/swbenergieundwasser-0f84be.svg" }, { "if": { @@ -78905,7 +79091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisscharge-d761b8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisscharge-d761b8.jpg" }, { "if": { @@ -78920,7 +79106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swustadtwerkeulmneuulmgmbh-a90ddb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swustadtwerkeulmneuulmgmbh-a90ddb.jpg" }, { "if": { @@ -78934,7 +79120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tankandrast-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/tankandrast-9a316b.png" }, { "if": { @@ -78948,7 +79134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-3c58b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-3c58b6.png" }, { "if": { @@ -78963,7 +79149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischewerkeosning-0f84be.png" + "then": "https://data.mapcomplete.org/nsi//logos/technischewerkeosning-0f84be.png" }, { "if": { @@ -78977,7 +79163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischewerkeschussental-f38d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/technischewerkeschussental-f38d07.jpg" }, { "if": { @@ -78991,7 +79177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teilauto-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teilauto-9a316b.jpg" }, { "if": { @@ -79005,7 +79191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teplarnybrno-788d35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teplarnybrno-788d35.jpg" }, { "if": { @@ -79019,7 +79205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-c4e7a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-c4e7a0.svg" }, { "if": { @@ -79035,7 +79221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toka-bfc601.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/toka-bfc601.jpg" }, { "if": { @@ -79049,7 +79235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/total-5601d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/total-5601d5.png" }, { "if": { @@ -79063,7 +79249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalenergies-7872f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalenergies-7872f6.png" }, { "if": { @@ -79077,7 +79263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uabignitis-7d5905.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uabignitis-7d5905.jpg" }, { "if": { @@ -79091,7 +79277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ubeeqo-7872f6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ubeeqo-7872f6.svg" }, { "if": { @@ -79105,7 +79291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umeaenergi-fe9964.png" + "then": "https://data.mapcomplete.org/nsi//logos/umeaenergi-fe9964.png" }, { "if": { @@ -79121,7 +79307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universidadedacoruna-9bc2ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universidadedacoruna-9bc2ed.jpg" }, { "if": { @@ -79135,7 +79321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unox-7aa565.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unox-7aa565.jpg" }, { "if": { @@ -79149,7 +79335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-de5d53.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-de5d53.svg" }, { "if": { @@ -79163,7 +79349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vmarkt-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/vmarkt-9a316b.png" }, { "if": { @@ -79179,7 +79365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfallincharge-54e104.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfallincharge-54e104.jpg" }, { "if": { @@ -79193,7 +79379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-3fbaa3.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-3fbaa3.png" }, { "if": { @@ -79207,7 +79393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viesgo-9bc2ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/viesgo-9bc2ed.png" }, { "if": { @@ -79223,7 +79409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virta-c07792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virta-c07792.jpg" }, { "if": { @@ -79237,7 +79423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkswagen-9a316b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/volkswagen-9a316b.jpg" }, { "if": { @@ -79251,7 +79437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waybler-fe9964.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waybler-fe9964.jpg" }, { "if": { @@ -79267,7 +79453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welnetworks-3fbaa3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welnetworks-3fbaa3.jpg" }, { "if": { @@ -79281,7 +79467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wemag-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/wemag-9a316b.png" }, { "if": { @@ -79295,7 +79481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wenea-09fce6.png" + "then": "https://data.mapcomplete.org/nsi//logos/wenea-09fce6.png" }, { "if": { @@ -79309,7 +79495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westenergie-9a316b.png" + "then": "https://data.mapcomplete.org/nsi//logos/westenergie-9a316b.png" }, { "if": { @@ -79323,7 +79509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfalenweserladeservice-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westfalenweserladeservice-9a316b.svg" }, { "if": { @@ -79337,7 +79523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wholefoods-416623.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wholefoods-416623.jpg" }, { "if": { @@ -79351,7 +79537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-c4e7a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-c4e7a0.jpg" }, { "if": { @@ -79365,7 +79551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wirelane-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wirelane-9a316b.svg" }, { "if": { @@ -79379,7 +79565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wvv-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wvv-9a316b.svg" }, { "if": { @@ -79395,7 +79581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zenergy-3fbaa3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zenergy-3fbaa3.jpg" }, { "if": { @@ -79409,7 +79595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zes-680e24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zes-680e24.jpg" }, { "if": { @@ -79423,7 +79609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zest-2a0385.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zest-2a0385.jpg" }, { "if": { @@ -79437,7 +79623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ztmlublin-3c58b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ztmlublin-3c58b6.jpg" }, { "if": { @@ -79451,7 +79637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zunder-b3093e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zunder-b3093e.jpg" }, { "if": { @@ -79465,7 +79651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zwickau-9a316b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zwickau-9a316b.svg" }, { "if": { @@ -79479,7 +79665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/788cf3-ab9b63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/788cf3-ab9b63.jpg" }, { "if": { @@ -79493,7 +79679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1e6fb1-e1f318.svg" + "then": "https://data.mapcomplete.org/nsi//logos/1e6fb1-e1f318.svg" }, { "if": { @@ -79507,7 +79693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/09a705-bfc601.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/09a705-bfc601.jpg" }, { "if": { @@ -79521,7 +79707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/70aabc-e1f318.png" + "then": "https://data.mapcomplete.org/nsi//logos/70aabc-e1f318.png" }, { "if": { @@ -79536,7 +79722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arqiva-556014.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arqiva-556014.svg" }, { "if": { @@ -79553,7 +79739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorepolicedepartment-6caef4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorepolicedepartment-6caef4.jpg" }, { "if": { @@ -79569,7 +79755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ee-556014.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ee-556014.svg" }, { "if": { @@ -79584,7 +79770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iheartmedia-005557.png" + "then": "https://data.mapcomplete.org/nsi//logos/iheartmedia-005557.png" }, { "if": { @@ -79599,7 +79785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtn-a5a5e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtn-a5a5e8.jpg" }, { "if": { @@ -79613,7 +79799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalairtrafficservices-556014.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalairtrafficservices-556014.jpg" }, { "if": { @@ -79628,7 +79814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkrail-556014.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkrail-556014.jpg" }, { "if": { @@ -79644,7 +79830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/o2-556014.svg" + "then": "https://data.mapcomplete.org/nsi//logos/o2-556014.svg" }, { "if": { @@ -79660,7 +79846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orange-6ada36.png" + "then": "https://data.mapcomplete.org/nsi//logos/orange-6ada36.png" }, { "if": { @@ -79675,7 +79861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sentech-602a68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sentech-602a68.jpg" }, { "if": { @@ -79691,7 +79877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telekom-488966.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telekom-488966.jpg" }, { "if": { @@ -79706,7 +79892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telkom-602a68.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telkom-602a68.svg" }, { "if": { @@ -79722,7 +79908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/three-556014.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/three-556014.jpg" }, { "if": { @@ -79737,7 +79923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacomcongo-5540e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacomcongo-5540e6.jpg" }, { "if": { @@ -79752,7 +79938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacomlesotho-2fd42f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacomlesotho-2fd42f.jpg" }, { "if": { @@ -79767,7 +79953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacommocambique-031a1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/vodacommocambique-031a1f.png" }, { "if": { @@ -79782,7 +79968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacom-602a68.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacom-602a68.jpg" }, { "if": { @@ -79797,7 +79983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacomtanzania-0f2159.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacomtanzania-0f2159.jpg" }, { "if": { @@ -79813,7 +79999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodafoneegypt-1329c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodafoneegypt-1329c8.jpg" }, { "if": { @@ -79829,7 +80015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodafone-556014.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodafone-556014.jpg" }, { "if": { @@ -79845,7 +80031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afetveacildurumyonetimibaskanligi-5f056e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/afetveacildurumyonetimibaskanligi-5f056e.svg" }, { "if": { @@ -79861,7 +80047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agenciaestataldemeteorologia-4de89d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agenciaestataldemeteorologia-4de89d.jpg" }, { "if": { @@ -79875,7 +80061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agencianacionaldetierras-eaf2bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/agencianacionaldetierras-eaf2bf.jpg" }, { "if": { @@ -79889,7 +80075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arlingtoncounty-004478.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arlingtoncounty-004478.jpg" }, { "if": { @@ -79903,7 +80089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asfinag-5d5a13.svg" + "then": "https://data.mapcomplete.org/nsi//logos/asfinag-5d5a13.svg" }, { "if": { @@ -79918,7 +80104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aucklandcouncil-4c3d8e.png" + "then": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-4c3d8e.png" }, { "if": { @@ -79933,7 +80119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aucklandtransport-c4e69c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aucklandtransport-c4e69c.jpg" }, { "if": { @@ -79947,7 +80133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/birminghamcitycouncil-ee3921.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-ee3921.jpg" }, { "if": { @@ -79962,7 +80148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brusselsmobility-3026fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brusselsmobility-3026fb.jpg" }, { "if": { @@ -79978,7 +80164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundesamtfurstrahlenschutz-07a9c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundesamtfurstrahlenschutz-07a9c8.jpg" }, { "if": { @@ -79993,7 +80179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauofmeteorology-c56e64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauofmeteorology-c56e64.jpg" }, { "if": { @@ -80007,7 +80193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralhidroelectricadecaldas-eaf2bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/centralhidroelectricadecaldas-eaf2bf.png" }, { "if": { @@ -80022,7 +80208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskyhydrometeorologickyustav-c67c8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceskyhydrometeorologickyustav-c67c8a.jpg" }, { "if": { @@ -80036,7 +80222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedigenova-1fc046.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedigenova-1fc046.svg" }, { "if": { @@ -80051,7 +80237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corporacionautonomaregionaldelafronteranororiental-eaf2bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/corporacionautonomaregionaldelafronteranororiental-eaf2bf.svg" }, { "if": { @@ -80065,7 +80251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ctbto-756944.png" + "then": "https://data.mapcomplete.org/nsi//logos/ctbto-756944.png" }, { "if": { @@ -80081,7 +80267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dcmrmilieudienstrijnmond-2cb44b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dcmrmilieudienstrijnmond-2cb44b.jpg" }, { "if": { @@ -80096,7 +80282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofscienceandtechnology-afd051.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofscienceandtechnology-afd051.jpg" }, { "if": { @@ -80111,7 +80297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutscheforschungsgemeinschaft-07a9c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/deutscheforschungsgemeinschaft-07a9c8.svg" }, { "if": { @@ -80126,7 +80312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutscherwetterdienst-07a9c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutscherwetterdienst-07a9c8.jpg" }, { "if": { @@ -80141,7 +80327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutscheszentrumfurluftundraumfahrt-91e43b.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutscheszentrumfurluftundraumfahrt-91e43b.png" }, { "if": { @@ -80155,7 +80341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecocompteur-69109e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ecocompteur-69109e.png" }, { "if": { @@ -80169,7 +80355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresadeacueductoyalcantarilladodebogota-eaf2bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/empresadeacueductoyalcantarilladodebogota-eaf2bf.png" }, { "if": { @@ -80184,7 +80370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresaspublicasdemedellin-eaf2bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/empresaspublicasdemedellin-eaf2bf.svg" }, { "if": { @@ -80198,7 +80384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/environmentagency-505a45.png" + "then": "https://data.mapcomplete.org/nsi//logos/environmentagency-505a45.png" }, { "if": { @@ -80212,7 +80398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/environmentcanada-a34f5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/environmentcanada-a34f5a.jpg" }, { "if": { @@ -80227,7 +80413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federationfrancaisedevollibre-94cf3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/federationfrancaisedevollibre-94cf3c.png" }, { "if": { @@ -80242,7 +80428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freistaatsachsen-56cd1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freistaatsachsen-56cd1d.jpg" }, { "if": { @@ -80257,7 +80443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalnadyrekcjadrogkrajowychiautostrad-3409e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/generalnadyrekcjadrogkrajowychiautostrad-3409e6.png" }, { "if": { @@ -80271,7 +80457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geosphereaustria-5d5a13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geosphereaustria-5d5a13.jpg" }, { "if": { @@ -80285,7 +80471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ggdamsterdam-2cb44b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ggdamsterdam-2cb44b.png" }, { "if": { @@ -80299,7 +80485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glencore-ec2cd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/glencore-ec2cd1.jpg" }, { "if": { @@ -80313,7 +80499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansestadtrostock-bfcca6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hansestadtrostock-bfcca6.svg" }, { "if": { @@ -80328,7 +80514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoisdepartmentoftransportation-4018ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentoftransportation-4018ee.jpg" }, { "if": { @@ -80342,7 +80528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutodehidrologiameteorologiayestudiosambientales-eaf2bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/institutodehidrologiameteorologiayestudiosambientales-eaf2bf.png" }, { "if": { @@ -80356,7 +80542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/isagen-eaf2bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/isagen-eaf2bf.svg" }, { "if": { @@ -80371,7 +80557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koninklijknederlandsmeteorologischinstituut-2cb44b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/koninklijknederlandsmeteorologischinstituut-2cb44b.jpg" }, { "if": { @@ -80385,7 +80571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kystverket-8246c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/kystverket-8246c4.png" }, { "if": { @@ -80399,7 +80585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landtirol-10d800.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landtirol-10d800.jpg" }, { "if": { @@ -80413,7 +80599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leicageosystemsbv-9f02ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leicageosystemsbv-9f02ae.jpg" }, { "if": { @@ -80427,7 +80613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ligair-c66cc0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ligair-c66cc0.svg" }, { "if": { @@ -80441,7 +80627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lmbv-07a9c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lmbv-07a9c8.svg" }, { "if": { @@ -80455,7 +80641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lwdtirol-5d5a13.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lwdtirol-5d5a13.jpg" }, { "if": { @@ -80469,7 +80655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metoffice-505a45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metoffice-505a45.jpg" }, { "if": { @@ -80483,7 +80669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meteomedia-07a9c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/meteomedia-07a9c8.svg" }, { "if": { @@ -80498,7 +80684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropoolregiorotterdamdenhaag-2cb44b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metropoolregiorotterdamdenhaag-2cb44b.svg" }, { "if": { @@ -80512,7 +80698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodeagriculturaydesarrollorural-eaf2bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodeagriculturaydesarrollorural-eaf2bf.png" }, { "if": { @@ -80526,7 +80712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodetransportedecolombia-eaf2bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodetransportedecolombia-eaf2bf.jpg" }, { "if": { @@ -80541,7 +80727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaloceanicandatmosphericadministration-35adb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaloceanicandatmosphericadministration-35adb7.jpg" }, { "if": { @@ -80555,7 +80741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ogs-73d6fa.png" + "then": "https://data.mapcomplete.org/nsi//logos/ogs-73d6fa.png" }, { "if": { @@ -80569,7 +80755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciadigenova-1fc046.svg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciadigenova-1fc046.svg" }, { "if": { @@ -80583,7 +80769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provincielimburg-dc8a1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provincielimburg-dc8a1d.jpg" }, { "if": { @@ -80597,7 +80783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciezuidholland-2cb44b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/provinciezuidholland-2cb44b.jpg" }, { "if": { @@ -80613,7 +80799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regierungsprasidiumkarlsruhe-f441e8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/regierungsprasidiumkarlsruhe-f441e8.svg" }, { "if": { @@ -80629,7 +80815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regierungsprasidiumkassel-d9d644.svg" + "then": "https://data.mapcomplete.org/nsi//logos/regierungsprasidiumkassel-d9d644.svg" }, { "if": { @@ -80645,7 +80831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regierungsprasidiumstuttgart-f441e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regierungsprasidiumstuttgart-f441e8.jpg" }, { "if": { @@ -80661,7 +80847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regierungsprasidiumtubingen-f441e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regierungsprasidiumtubingen-f441e8.jpg" }, { "if": { @@ -80676,7 +80862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rijksinstituutvoorvolksgezondheidenmilieu-2cb44b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rijksinstituutvoorvolksgezondheidenmilieu-2cb44b.svg" }, { "if": { @@ -80691,7 +80877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rijkswaterstaat-2cb44b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rijkswaterstaat-2cb44b.jpg" }, { "if": { @@ -80705,7 +80891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegocountywaterauthority-6171e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegocountywaterauthority-6171e7.jpg" }, { "if": { @@ -80720,7 +80906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishgovernment-505a45.png" + "then": "https://data.mapcomplete.org/nsi//logos/scottishgovernment-505a45.png" }, { "if": { @@ -80735,7 +80921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senatsverwaltungfurstadtentwicklungberlin-d6fc7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senatsverwaltungfurstadtentwicklungberlin-d6fc7a.jpg" }, { "if": { @@ -80749,7 +80935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/serveimeteorologicdecatalunya-4de89d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/serveimeteorologicdecatalunya-4de89d.jpg" }, { "if": { @@ -80763,7 +80949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shelldeutschland-07a9c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/shelldeutschland-07a9c8.png" }, { "if": { @@ -80778,7 +80964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskyhydrometeorologickyustav-a6407c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskyhydrometeorologickyustav-a6407c.jpg" }, { "if": { @@ -80792,7 +80978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbonn-574564.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbonn-574564.jpg" }, { "if": { @@ -80806,7 +80992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtfreiburg-f441e8.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtfreiburg-f441e8.png" }, { "if": { @@ -80820,7 +81006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtheidelberg-f441e8.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtheidelberg-f441e8.png" }, { "if": { @@ -80834,7 +81020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stars4all-b2961a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stars4all-b2961a.jpg" }, { "if": { @@ -80848,7 +81034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statensvegvesen-8246c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/statensvegvesen-8246c4.png" }, { "if": { @@ -80864,7 +81050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesgeologicalsurvey-35adb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesgeologicalsurvey-35adb7.jpg" }, { "if": { @@ -80879,7 +81065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vegagerdhin-27e2b0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vegagerdhin-27e2b0.svg" }, { "if": { @@ -80893,7 +81079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vlaamsemilieumaatschappij-3026fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vlaamsemilieumaatschappij-3026fb.jpg" }, { "if": { @@ -80907,7 +81093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wegenercenterfurklimaundglobalenwandel-b7373e.png" + "then": "https://data.mapcomplete.org/nsi//logos/wegenercenterfurklimaundglobalenwandel-b7373e.png" }, { "if": { @@ -80921,7 +81107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/23d9d7-9afd0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/23d9d7-9afd0a.png" }, { "if": { @@ -80935,7 +81121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acea-e17829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acea-e17829.jpg" }, { "if": { @@ -80949,7 +81135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airliquide-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airliquide-143312.jpg" }, { "if": { @@ -80963,7 +81149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airproducts-143312.png" + "then": "https://data.mapcomplete.org/nsi//logos/airproducts-143312.png" }, { "if": { @@ -80977,7 +81163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alyeskapipelineservicecompany-16072e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alyeskapipelineservicecompany-16072e.jpg" }, { "if": { @@ -80991,7 +81177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/angloamerican-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/angloamerican-143312.jpg" }, { "if": { @@ -81005,7 +81191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ankarasuvekanalizasyonidaresi-8a4901.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ankarasuvekanalizasyonidaresi-8a4901.jpg" }, { "if": { @@ -81019,7 +81205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ascendperformancematerials-184490.png" + "then": "https://data.mapcomplete.org/nsi//logos/ascendperformancematerials-184490.png" }, { "if": { @@ -81033,7 +81219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlantagaslight-9a3d1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/atlantagaslight-9a3d1a.png" }, { "if": { @@ -81047,7 +81233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avacon-da7c89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avacon-da7c89.jpg" }, { "if": { @@ -81061,7 +81247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodezaragoza-58be62.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodezaragoza-58be62.png" }, { "if": { @@ -81075,7 +81261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/badenova-da7c89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/badenova-da7c89.svg" }, { "if": { @@ -81089,7 +81275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecitydepartmentofpublicworks-0dc4c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecitydepartmentofpublicworks-0dc4c6.jpg" }, { "if": { @@ -81103,7 +81289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basf-de820e.png" + "then": "https://data.mapcomplete.org/nsi//logos/basf-de820e.png" }, { "if": { @@ -81118,7 +81304,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-f62730.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-f62730.jpg" }, { "if": { @@ -81133,7 +81319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerwasserbetriebe-55a794.png" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerwasserbetriebe-55a794.png" }, { "if": { @@ -81147,7 +81333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/botas-8a4901.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/botas-8a4901.jpg" }, { "if": { @@ -81161,7 +81347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-143312.jpg" }, { "if": { @@ -81175,7 +81361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristolwater-7ca529.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristolwater-7ca529.jpg" }, { "if": { @@ -81190,7 +81376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cadent-0affc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cadent-0affc0.jpg" }, { "if": { @@ -81204,7 +81390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caltex-b8bcc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caltex-b8bcc2.jpg" }, { "if": { @@ -81218,7 +81404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-0a386a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-0a386a.jpg" }, { "if": { @@ -81232,7 +81418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cez-446620.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cez-446620.jpg" }, { "if": { @@ -81246,7 +81432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstaunton-23e3a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstaunton-23e3a3.jpg" }, { "if": { @@ -81260,7 +81446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofvancouver-f62730.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofvancouver-f62730.svg" }, { "if": { @@ -81274,7 +81460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cnr-02b185.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cnr-02b185.jpg" }, { "if": { @@ -81288,7 +81474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colonialpipeline-0a386a.png" + "then": "https://data.mapcomplete.org/nsi//logos/colonialpipeline-0a386a.png" }, { "if": { @@ -81302,7 +81488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conagua-c74959.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conagua-c74959.jpg" }, { "if": { @@ -81316,7 +81502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-46297b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-46297b.jpg" }, { "if": { @@ -81330,7 +81516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creosdeutschland-da7c89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creosdeutschland-da7c89.jpg" }, { "if": { @@ -81344,7 +81530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dalkia-55fc32.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dalkia-55fc32.svg" }, { "if": { @@ -81358,7 +81544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhakawasa-7a1e05.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dhakawasa-7a1e05.svg" }, { "if": { @@ -81372,7 +81558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/districtofcolumbiawaterandsewerauthority-c0acc8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/districtofcolumbiawaterandsewerauthority-c0acc8.jpg" }, { "if": { @@ -81386,7 +81572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dowchemicalcompany-0a386a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-0a386a.jpg" }, { "if": { @@ -81400,7 +81586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dsm-f82a4b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dsm-f82a4b.svg" }, { "if": { @@ -81414,7 +81600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-c9fb9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-c9fb9d.jpg" }, { "if": { @@ -81428,7 +81614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enetzsudhessen-da7c89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enetzsudhessen-da7c89.svg" }, { "if": { @@ -81442,7 +81628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eregio-e37083.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eregio-e37083.jpg" }, { "if": { @@ -81456,7 +81642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edison-e17829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edison-e17829.jpg" }, { "if": { @@ -81471,7 +81657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-143312.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-143312.png" }, { "if": { @@ -81485,7 +81671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-4947e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-4947e8.jpg" }, { "if": { @@ -81499,7 +81685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enagas-143312.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enagas-143312.svg" }, { "if": { @@ -81513,7 +81699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbridge-e04216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enbridge-e04216.jpg" }, { "if": { @@ -81527,7 +81713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-da7c89.png" + "then": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-da7c89.png" }, { "if": { @@ -81541,7 +81727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-86ac77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-86ac77.jpg" }, { "if": { @@ -81555,7 +81741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-143312.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-143312.png" }, { "if": { @@ -81569,7 +81755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-143312.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-143312.svg" }, { "if": { @@ -81583,7 +81769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelproduzione-e17829.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelproduzione-e17829.svg" }, { "if": { @@ -81597,7 +81783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesaarlorlux-da7c89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiesaarlorlux-da7c89.svg" }, { "if": { @@ -81612,7 +81798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieversorgungfilstal-0b5f1c.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieversorgungfilstal-0b5f1c.png" }, { "if": { @@ -81627,7 +81813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energir-ec6451.png" + "then": "https://data.mapcomplete.org/nsi//logos/energir-ec6451.png" }, { "if": { @@ -81641,7 +81827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-143312.jpg" }, { "if": { @@ -81655,7 +81841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eni-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eni-143312.jpg" }, { "if": { @@ -81669,7 +81855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eogresources-0a386a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eogresources-0a386a.svg" }, { "if": { @@ -81683,7 +81869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equinor-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equinor-143312.jpg" }, { "if": { @@ -81697,7 +81883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erdgasostschweizag-e0d926.svg" + "then": "https://data.mapcomplete.org/nsi//logos/erdgasostschweizag-e0d926.svg" }, { "if": { @@ -81711,7 +81897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erdgaszentralschweiz-c2536a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/erdgaszentralschweiz-c2536a.svg" }, { "if": { @@ -81725,7 +81911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbgenerationandwholesalemarkets-fbcea5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/esbgenerationandwholesalemarkets-fbcea5.svg" }, { "if": { @@ -81739,7 +81925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-143312.jpg" }, { "if": { @@ -81753,7 +81939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evideswaterbedrijf-f82a4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/evideswaterbedrijf-f82a4b.png" }, { "if": { @@ -81767,7 +81953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-9c8423.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-9c8423.jpg" }, { "if": { @@ -81782,7 +81968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evolve-caca88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evolve-caca88.jpg" }, { "if": { @@ -81796,7 +81982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewz-e0d926.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewz-e0d926.jpg" }, { "if": { @@ -81810,7 +81996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exolum-0a3816.svg" + "then": "https://data.mapcomplete.org/nsi//logos/exolum-0a3816.svg" }, { "if": { @@ -81824,7 +82010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exxonmobilpipelinecompany-9b1cf7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exxonmobilpipelinecompany-9b1cf7.jpg" }, { "if": { @@ -81839,7 +82025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstgas-22b69e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstgas-22b69e.jpg" }, { "if": { @@ -81853,7 +82039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fluxys-5c754e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fluxys-5c754e.svg" }, { "if": { @@ -81867,7 +82053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortisbc-f62730.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortisbc-f62730.png" }, { "if": { @@ -81882,7 +82068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gail-fbc79a.png" + "then": "https://data.mapcomplete.org/nsi//logos/gail-fbc79a.png" }, { "if": { @@ -81896,7 +82082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gasnetworksireland-d9b47c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gasnetworksireland-d9b47c.jpg" }, { "if": { @@ -81910,7 +82096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gascade-da7c89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gascade-da7c89.svg" }, { "if": { @@ -81924,7 +82110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gassco-143312.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gassco-143312.svg" }, { "if": { @@ -81938,7 +82124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gasum-143312.png" + "then": "https://data.mapcomplete.org/nsi//logos/gasum-143312.png" }, { "if": { @@ -81952,7 +82138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gasunie-f82a4b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gasunie-f82a4b.svg" }, { "if": { @@ -81967,7 +82153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gasverbundmittellandag-e0d926.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gasverbundmittellandag-e0d926.svg" }, { "if": { @@ -81981,7 +82167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gaznatsa-f9727e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gaznatsa-f9727e.svg" }, { "if": { @@ -81995,7 +82181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gazprom-143312.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gazprom-143312.svg" }, { "if": { @@ -82009,7 +82195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindegrossheirath-d75ea7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindegrossheirath-d75ea7.svg" }, { "if": { @@ -82023,7 +82209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindeschonbrunn-0b5f1c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindeschonbrunn-0b5f1c.svg" }, { "if": { @@ -82037,7 +82223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindetrabitz-d75ea7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindetrabitz-d75ea7.svg" }, { "if": { @@ -82051,7 +82237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gippslandwater-76a468.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gippslandwater-76a468.jpg" }, { "if": { @@ -82066,7 +82252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grosskraftwerkmannheim-0b5f1c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/grosskraftwerkmannheim-0b5f1c.svg" }, { "if": { @@ -82080,7 +82266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harzenergie-38071f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harzenergie-38071f.jpg" }, { "if": { @@ -82094,7 +82280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hesscorporation-9b1cf7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hesscorporation-9b1cf7.jpg" }, { "if": { @@ -82108,7 +82294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-ec6451.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-ec6451.png" }, { "if": { @@ -82122,7 +82308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-9c8423.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-9c8423.png" }, { "if": { @@ -82136,7 +82322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialoil-4442fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialoil-4442fb.jpg" }, { "if": { @@ -82150,7 +82336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ina-d574ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ina-d574ff.jpg" }, { "if": { @@ -82164,7 +82350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ineosusa-0a386a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ineosusa-0a386a.jpg" }, { "if": { @@ -82178,7 +82364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/internationalpaper-0a386a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/internationalpaper-0a386a.jpg" }, { "if": { @@ -82193,7 +82379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iocl-fbc79a.png" + "then": "https://data.mapcomplete.org/nsi//logos/iocl-fbc79a.png" }, { "if": { @@ -82209,7 +82395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishwater-d9b47c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishwater-d9b47c.jpg" }, { "if": { @@ -82223,7 +82409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irvingoil-e04216.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irvingoil-e04216.jpg" }, { "if": { @@ -82238,7 +82424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istanbulsuvekanalizasyonidaresi-8a4901.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istanbulsuvekanalizasyonidaresi-8a4901.jpg" }, { "if": { @@ -82253,7 +82439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlsruherinstitutfurtechnologie-0b5f1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karlsruherinstitutfurtechnologie-0b5f1c.jpg" }, { "if": { @@ -82267,7 +82453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-739664.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-739664.jpg" }, { "if": { @@ -82281,7 +82467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kindermorgan-e04216.png" + "then": "https://data.mapcomplete.org/nsi//logos/kindermorgan-e04216.png" }, { "if": { @@ -82296,7 +82482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-6bbcf6.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-6bbcf6.png" }, { "if": { @@ -82310,7 +82496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linde-0a386a.png" + "then": "https://data.mapcomplete.org/nsi//logos/linde-0a386a.png" }, { "if": { @@ -82324,7 +82510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mancomunidaddeloscanalesdeltaibilla-86ac77.png" + "then": "https://data.mapcomplete.org/nsi//logos/mancomunidaddeloscanalesdeltaibilla-86ac77.png" }, { "if": { @@ -82338,7 +82524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonoil-46297b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonoil-46297b.svg" }, { "if": { @@ -82352,7 +82538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonpipeline-0a386a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonpipeline-0a386a.svg" }, { "if": { @@ -82366,7 +82552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayniladwaterservices-98d0ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-98d0ce.jpg" }, { "if": { @@ -82380,7 +82566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memorialuniversity-4286b2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/memorialuniversity-4286b2.svg" }, { "if": { @@ -82395,7 +82581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphislightgasandwater-f2876e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-f2876e.jpg" }, { "if": { @@ -82410,7 +82596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolitanwaterdistrictofsoutherncalifornia-3e913e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolitanwaterdistrictofsoutherncalifornia-3e913e.jpg" }, { "if": { @@ -82424,7 +82610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mol-26624f.png" + "then": "https://data.mapcomplete.org/nsi//logos/mol-26624f.png" }, { "if": { @@ -82438,7 +82624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motivaenterprises-0a386a.png" + "then": "https://data.mapcomplete.org/nsi//logos/motivaenterprises-0a386a.png" }, { "if": { @@ -82452,7 +82638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturgy-86ac77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturgy-86ac77.jpg" }, { "if": { @@ -82466,7 +82652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzno-9c8423.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netzno-9c8423.jpg" }, { "if": { @@ -82481,7 +82667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzesudwest-0b5f1c.png" + "then": "https://data.mapcomplete.org/nsi//logos/netzesudwest-0b5f1c.png" }, { "if": { @@ -82495,7 +82681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nicorgas-0a386a.png" + "then": "https://data.mapcomplete.org/nsi//logos/nicorgas-0a386a.png" }, { "if": { @@ -82510,7 +82696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordwestoelleitunggmbh-db8d21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordwestoelleitunggmbh-db8d21.jpg" }, { "if": { @@ -82524,7 +82710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernirelandwater-caca88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernirelandwater-caca88.jpg" }, { "if": { @@ -82538,7 +82724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-5e35cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-5e35cd.jpg" }, { "if": { @@ -82552,7 +82738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-14d875.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-14d875.jpg" }, { "if": { @@ -82566,7 +82752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nukissiorfiit-f00fb9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-f00fb9.jpg" }, { "if": { @@ -82581,7 +82767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nwnatural-937f46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nwnatural-937f46.jpg" }, { "if": { @@ -82595,7 +82781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obb-9c8423.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obb-9c8423.jpg" }, { "if": { @@ -82609,7 +82795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oiltankingdeutschlandgmbhandcokg-da7c89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/oiltankingdeutschlandgmbhandcokg-da7c89.svg" }, { "if": { @@ -82623,7 +82809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omv-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omv-143312.jpg" }, { "if": { @@ -82637,7 +82823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oneok-0a386a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oneok-0a386a.jpg" }, { "if": { @@ -82651,7 +82837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontras-da7c89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ontras-da7c89.svg" }, { "if": { @@ -82666,7 +82852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opengrideuropegmbh-143312.svg" + "then": "https://data.mapcomplete.org/nsi//logos/opengrideuropegmbh-143312.svg" }, { "if": { @@ -82680,7 +82866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orkanatturunnar-9f3dd9.png" + "then": "https://data.mapcomplete.org/nsi//logos/orkanatturunnar-9f3dd9.png" }, { "if": { @@ -82695,7 +82881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-3e913e.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-3e913e.png" }, { "if": { @@ -82709,7 +82895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pemex-c74959.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pemex-c74959.jpg" }, { "if": { @@ -82723,7 +82909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pennsylvaniastateuniversity-586f4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pennsylvaniastateuniversity-586f4c.jpg" }, { "if": { @@ -82737,7 +82923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrobras-b2714a.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrobras-b2714a.png" }, { "if": { @@ -82751,7 +82937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroecuador-a80893.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroecuador-a80893.jpg" }, { "if": { @@ -82765,7 +82951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phillips66-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phillips66-143312.jpg" }, { "if": { @@ -82779,7 +82965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piedmontnaturalgascompany-9444cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piedmontnaturalgascompany-9444cc.jpg" }, { "if": { @@ -82793,7 +82979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plzenskateplarenskaas-446620.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plzenskateplarenskaas-446620.jpg" }, { "if": { @@ -82808,7 +82994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerco-22b69e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerco-22b69e.jpg" }, { "if": { @@ -82822,7 +83008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/preem-febfa2.png" + "then": "https://data.mapcomplete.org/nsi//logos/preem-febfa2.png" }, { "if": { @@ -82836,7 +83022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qgc-3592c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/qgc-3592c9.png" }, { "if": { @@ -82850,7 +83036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ragaustria-9c8423.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ragaustria-9c8423.jpg" }, { "if": { @@ -82864,7 +83050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ren-9fc26f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ren-9fc26f.svg" }, { "if": { @@ -82879,7 +83065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinmainrohrleitungstransportgesellschaft-da7c89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rheinmainrohrleitungstransportgesellschaft-da7c89.jpg" }, { "if": { @@ -82893,7 +83079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-aa0e70.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-aa0e70.svg" }, { "if": { @@ -82907,7 +83093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-55fc32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-55fc32.jpg" }, { "if": { @@ -82921,7 +83107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sawater-c35d57.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sawater-c35d57.jpg" }, { "if": { @@ -82935,7 +83121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sabesp-ca5551.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sabesp-ca5551.jpg" }, { "if": { @@ -82949,7 +83135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-2bc2b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-2bc2b4.png" }, { "if": { @@ -82965,7 +83151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbbcff-e0d926.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbbcff-e0d926.png" }, { "if": { @@ -82979,7 +83165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-9683bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-9683bf.svg" }, { "if": { @@ -82993,7 +83179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishwater-73cbec.png" + "then": "https://data.mapcomplete.org/nsi//logos/scottishwater-73cbec.png" }, { "if": { @@ -83009,7 +83195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-6da778.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-6da778.png" }, { "if": { @@ -83023,7 +83209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seqwater-3592c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seqwater-3592c9.jpg" }, { "if": { @@ -83037,7 +83223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/severntrent-0affc0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/severntrent-0affc0.svg" }, { "if": { @@ -83051,7 +83237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-143312.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-143312.jpg" }, { "if": { @@ -83065,7 +83251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shelldeutschland-da7c89.png" + "then": "https://data.mapcomplete.org/nsi//logos/shelldeutschland-da7c89.png" }, { "if": { @@ -83079,7 +83265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shem-02b185.png" + "then": "https://data.mapcomplete.org/nsi//logos/shem-02b185.png" }, { "if": { @@ -83093,7 +83279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snowyhydro-588004.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snowyhydro-588004.jpg" }, { "if": { @@ -83107,7 +83293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-6d32cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-6d32cf.jpg" }, { "if": { @@ -83122,7 +83308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniagascompany-3e913e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniagascompany-3e913e.jpg" }, { "if": { @@ -83137,7 +83323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestgas-19dc0e.png" + "then": "https://data.mapcomplete.org/nsi//logos/southwestgas-19dc0e.png" }, { "if": { @@ -83151,7 +83337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spacex-0a386a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/spacex-0a386a.svg" }, { "if": { @@ -83165,7 +83351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sse-143312.png" + "then": "https://data.mapcomplete.org/nsi//logos/sse-143312.png" }, { "if": { @@ -83181,7 +83367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtentwasserungstuttgart-0b5f1c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtentwasserungstuttgart-0b5f1c.svg" }, { "if": { @@ -83195,7 +83381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegoch-e37083.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegoch-e37083.png" }, { "if": { @@ -83209,7 +83395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkejena-b8415f.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkejena-b8415f.png" }, { "if": { @@ -83223,7 +83409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelubeck-9683bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-9683bf.jpg" }, { "if": { @@ -83238,7 +83424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-d75ea7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-d75ea7.jpg" }, { "if": { @@ -83252,7 +83438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeschwetzingen-0b5f1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeschwetzingen-0b5f1c.jpg" }, { "if": { @@ -83266,7 +83452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerketreuchtlingen-d75ea7.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerketreuchtlingen-d75ea7.png" }, { "if": { @@ -83280,7 +83466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissgas-e0d926.svg" + "then": "https://data.mapcomplete.org/nsi//logos/swissgas-e0d926.svg" }, { "if": { @@ -83294,7 +83480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydneywater-7a96c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sydneywater-7a96c6.jpg" }, { "if": { @@ -83308,7 +83494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tcenergycorporation-45a322.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tcenergycorporation-45a322.svg" }, { "if": { @@ -83323,7 +83509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terranetsbwgmbh-0b5f1c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/terranetsbwgmbh-0b5f1c.svg" }, { "if": { @@ -83337,7 +83523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tgssa-02fa2c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tgssa-02fa2c.svg" }, { "if": { @@ -83351,7 +83537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thameswater-0affc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thameswater-0affc0.jpg" }, { "if": { @@ -83366,7 +83552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thyssengas-e37083.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thyssengas-e37083.jpg" }, { "if": { @@ -83380,7 +83566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thyssenkruppsteel-e37083.png" + "then": "https://data.mapcomplete.org/nsi//logos/thyssenkruppsteel-e37083.png" }, { "if": { @@ -83394,7 +83580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalenergies-143312.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalenergies-143312.png" }, { "if": { @@ -83408,7 +83594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tpcgroup-46297b.png" + "then": "https://data.mapcomplete.org/nsi//logos/tpcgroup-46297b.png" }, { "if": { @@ -83422,7 +83608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transpetrol-7fc625.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transpetrol-7fc625.svg" }, { "if": { @@ -83436,7 +83622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniper-55fc32.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniper-55fc32.png" }, { "if": { @@ -83450,7 +83636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedutilities-f2d4b6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedutilities-f2d4b6.svg" }, { "if": { @@ -83464,7 +83650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitil-dda696.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitil-dda696.png" }, { "if": { @@ -83478,7 +83664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unocalcorporation-e92df5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unocalcorporation-e92df5.svg" }, { "if": { @@ -83492,7 +83678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valero-761061.png" + "then": "https://data.mapcomplete.org/nsi//logos/valero-761061.png" }, { "if": { @@ -83506,7 +83692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-ea8ab3.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-ea8ab3.png" }, { "if": { @@ -83520,7 +83706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-da7c89.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-da7c89.png" }, { "if": { @@ -83534,7 +83720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-e3c464.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-e3c464.png" }, { "if": { @@ -83548,7 +83734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfallnederland-f82a4b.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfallnederland-f82a4b.png" }, { "if": { @@ -83562,7 +83748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-febfa2.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-febfa2.png" }, { "if": { @@ -83576,7 +83762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfallunitedkingdom-f2d4b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfallunitedkingdom-f2d4b6.png" }, { "if": { @@ -83591,7 +83777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-22b69e.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-22b69e.png" }, { "if": { @@ -83605,7 +83791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-9c8423.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-9c8423.jpg" }, { "if": { @@ -83620,7 +83806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundnetzgas-da7c89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundnetzgas-da7c89.svg" }, { "if": { @@ -83635,7 +83821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wasserversorgungbayerischerwald-d75ea7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wasserversorgungbayerischerwald-d75ea7.jpg" }, { "if": { @@ -83649,7 +83835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watercare-4e7678.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watercare-4e7678.jpg" }, { "if": { @@ -83663,7 +83849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welshwater-5498c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welshwater-5498c5.jpg" }, { "if": { @@ -83677,7 +83863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wessexwater-7ca529.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wessexwater-7ca529.jpg" }, { "if": { @@ -83691,7 +83877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westtexasgasutility-46297b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westtexasgasutility-46297b.jpg" }, { "if": { @@ -83705,7 +83891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienernetze-9c8423.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienernetze-9c8423.png" }, { "if": { @@ -83719,7 +83905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/williams-0a386a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/williams-0a386a.jpg" }, { "if": { @@ -83733,7 +83919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wingasgmbhandcokg-da7c89.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wingasgmbhandcokg-da7c89.svg" }, { "if": { @@ -83748,7 +83934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsinpublicservicecorporation-7aea5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsinpublicservicecorporation-7aea5f.jpg" }, { "if": { @@ -83763,7 +83949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wuppertalerstadtwerke-e37083.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wuppertalerstadtwerke-e37083.jpg" }, { "if": { @@ -83777,7 +83963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xtoenergy-46297b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/xtoenergy-46297b.svg" }, { "if": { @@ -83791,7 +83977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-6c161b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-6c161b.svg" }, { "if": { @@ -83805,7 +83991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ypfsa-02fa2c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ypfsa-02fa2c.jpg" }, { "if": { @@ -83820,7 +84006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zweckverbandbodenseewasserversorgung-0b5f1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zweckverbandbodenseewasserversorgung-0b5f1c.jpg" }, { "if": { @@ -83834,7 +84020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bb4e91-324985.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bb4e91-324985.jpg" }, { "if": { @@ -83848,7 +84034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/71a366-324985.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/71a366-324985.jpg" }, { "if": { @@ -83862,7 +84048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d08e33-324985.png" + "then": "https://data.mapcomplete.org/nsi//logos/d08e33-324985.png" }, { "if": { @@ -83878,7 +84064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watersuppliesdepartment-dde9b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-dde9b2.jpg" }, { "if": { @@ -83892,7 +84078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dewatergroep-37f4a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/dewatergroep-37f4a5.png" }, { "if": { @@ -83906,7 +84092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayniladwaterservices-2062c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-2062c7.jpg" }, { "if": { @@ -83920,7 +84106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pidpa-37f4a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/pidpa-37f4a5.png" }, { "if": { @@ -83936,7 +84122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-d7758e.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-d7758e.png" }, { "if": { @@ -83950,7 +84136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watercare-876848.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watercare-876848.jpg" }, { "if": { @@ -83964,7 +84150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41a232-479c7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/41a232-479c7b.jpg" }, { "if": { @@ -83978,7 +84164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41df5e-479c7b.png" + "then": "https://data.mapcomplete.org/nsi//logos/41df5e-479c7b.png" }, { "if": { @@ -83992,7 +84178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/423877-c9307d.png" + "then": "https://data.mapcomplete.org/nsi//logos/423877-c9307d.png" }, { "if": { @@ -84006,7 +84192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/938062-c9307d.png" + "then": "https://data.mapcomplete.org/nsi//logos/938062-c9307d.png" }, { "if": { @@ -84022,7 +84208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watersuppliesdepartment-c4c4f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-c4c4f5.jpg" }, { "if": { @@ -84037,7 +84223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiethunag-500353.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiethunag-500353.png" }, { "if": { @@ -84052,7 +84238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbnco-bf0b59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nbnco-bf0b59.jpg" }, { "if": { @@ -84067,7 +84253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/openreach-9ac957.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/openreach-9ac957.jpg" }, { "if": { @@ -84081,7 +84267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pldt-27846b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pldt-27846b.jpg" }, { "if": { @@ -84096,7 +84282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proximus-d4d0f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/proximus-d4d0f4.png" }, { "if": { @@ -84110,7 +84296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telenet-d4d0f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telenet-d4d0f4.jpg" }, { "if": { @@ -84124,7 +84310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-8d0f7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-8d0f7b.jpg" }, { "if": { @@ -84139,7 +84325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginmedia-9ac957.png" + "then": "https://data.mapcomplete.org/nsi//logos/virginmedia-9ac957.png" }, { "if": { @@ -84154,7 +84340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wightfibre-9ac957.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wightfibre-9ac957.jpg" }, { "if": { @@ -84168,7 +84354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdebarcelona-eb94ba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-eb94ba.svg" }, { "if": { @@ -84184,7 +84370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamadepartmentoftransportation-48e1a1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamadepartmentoftransportation-48e1a1.svg" }, { "if": { @@ -84200,7 +84386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alaskadepartmentoftransportationandpublicfacilities-a67cda.png" + "then": "https://data.mapcomplete.org/nsi//logos/alaskadepartmentoftransportationandpublicfacilities-a67cda.png" }, { "if": { @@ -84214,7 +84400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albert-5f01ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/albert-5f01ff.png" }, { "if": { @@ -84228,7 +84414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-c81adf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-c81adf.svg" }, { "if": { @@ -84242,7 +84428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-39cd69.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-39cd69.png" }, { "if": { @@ -84256,7 +84442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldinord-8d575f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aldinord-8d575f.svg" }, { "if": { @@ -84270,7 +84456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldisud-c27ec5.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldisud-c27ec5.png" }, { "if": { @@ -84284,7 +84470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazon-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/amazon-9c1a6c.png" }, { "if": { @@ -84298,7 +84484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apcoa-9c1a6c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/apcoa-9c1a6c.svg" }, { "if": { @@ -84312,7 +84498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aprr-3bfa97.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aprr-3bfa97.svg" }, { "if": { @@ -84326,7 +84512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aral-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aral-2b1420.jpg" }, { "if": { @@ -84342,7 +84528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonadepartmentoftransportation-e44391.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arizonadepartmentoftransportation-e44391.jpg" }, { "if": { @@ -84356,7 +84542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/asfinag-b9389d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/asfinag-b9389d.svg" }, { "if": { @@ -84370,7 +84556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/askoas-5f01ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/askoas-5f01ff.png" }, { "if": { @@ -84384,7 +84570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auchan-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/auchan-9c1a6c.png" }, { "if": { @@ -84398,7 +84584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/australiannationaluniversity-5b876a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/australiannationaluniversity-5b876a.jpg" }, { "if": { @@ -84412,7 +84598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autoroutesdusuddelafrance-d6d8df.png" + "then": "https://data.mapcomplete.org/nsi//logos/autoroutesdusuddelafrance-d6d8df.png" }, { "if": { @@ -84426,7 +84612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodemadrid-ad7c50.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-ad7c50.png" }, { "if": { @@ -84440,7 +84626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bancolombia-3fecaf.png" + "then": "https://data.mapcomplete.org/nsi//logos/bancolombia-3fecaf.png" }, { "if": { @@ -84454,7 +84640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banquedefrance-e10d05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banquedefrance-e10d05.jpg" }, { "if": { @@ -84468,7 +84654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/biedronka-e50517.png" + "then": "https://data.mapcomplete.org/nsi//logos/biedronka-e50517.png" }, { "if": { @@ -84482,7 +84668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/billa-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/billa-5f01ff.jpg" }, { "if": { @@ -84496,7 +84682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnpparibas-9c1a6c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bnpparibas-9c1a6c.svg" }, { "if": { @@ -84510,7 +84696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bogestra-2b1420.png" + "then": "https://data.mapcomplete.org/nsi//logos/bogestra-2b1420.png" }, { "if": { @@ -84525,7 +84711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bowlinggreenstateuniversity-545962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-545962.jpg" }, { "if": { @@ -84539,7 +84725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-9c1a6c.jpg" }, { "if": { @@ -84553,7 +84739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brfk-300a9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brfk-300a9e.jpg" }, { "if": { @@ -84567,7 +84753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristolcitycouncil-36d2be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristolcitycouncil-36d2be.jpg" }, { "if": { @@ -84581,7 +84767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brownuniversity-373ed2.png" + "then": "https://data.mapcomplete.org/nsi//logos/brownuniversity-373ed2.png" }, { "if": { @@ -84595,7 +84781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundesheer-b9389d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bundesheer-b9389d.svg" }, { "if": { @@ -84609,7 +84795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgerking-33dc65.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgerking-33dc65.jpg" }, { "if": { @@ -84623,7 +84809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caissedepargne-e10d05.png" + "then": "https://data.mapcomplete.org/nsi//logos/caissedepargne-e10d05.png" }, { "if": { @@ -84639,7 +84825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentoftransportation-4bdb29.png" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentoftransportation-4bdb29.png" }, { "if": { @@ -84653,7 +84839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cambridgecitycouncil-0f75ee.png" + "then": "https://data.mapcomplete.org/nsi//logos/cambridgecitycouncil-0f75ee.png" }, { "if": { @@ -84667,7 +84853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canobielakepark-69a4af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canobielakepark-69a4af.jpg" }, { "if": { @@ -84681,7 +84867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/carrefour-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/carrefour-9c1a6c.png" }, { "if": { @@ -84695,7 +84881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceamse-3deb7a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceamse-3deb7a.png" }, { "if": { @@ -84709,7 +84895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskanarodnibanka-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceskanarodnibanka-5f01ff.jpg" }, { "if": { @@ -84723,7 +84909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskapostasp-5f01ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceskapostasp-5f01ff.png" }, { "if": { @@ -84737,7 +84923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskasporitelna-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceskasporitelna-5f01ff.jpg" }, { "if": { @@ -84751,7 +84937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagopolicedepartment-8cb4a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagopolicedepartment-8cb4a4.jpg" }, { "if": { @@ -84765,7 +84951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cic-3bfa97.png" + "then": "https://data.mapcomplete.org/nsi//logos/cic-3bfa97.png" }, { "if": { @@ -84779,7 +84965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofedinburghcouncil-cadc88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofedinburghcouncil-cadc88.jpg" }, { "if": { @@ -84793,7 +84979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofottawa-35e98c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofottawa-35e98c.png" }, { "if": { @@ -84807,7 +84993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofsomerville-13fd93.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofsomerville-13fd93.svg" }, { "if": { @@ -84821,7 +85007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofwindsor-35e98c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofwindsor-35e98c.svg" }, { "if": { @@ -84835,7 +85021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clermontauvergnemetropole-276786.svg" + "then": "https://data.mapcomplete.org/nsi//logos/clermontauvergnemetropole-276786.svg" }, { "if": { @@ -84851,7 +85037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradodepartmentoftransportation-79888a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradodepartmentoftransportation-79888a.jpg" }, { "if": { @@ -84865,7 +85051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/columbiauniversity-0a7690.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/columbiauniversity-0a7690.jpg" }, { "if": { @@ -84879,7 +85065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communedetterbeekgemeenteetterbeek-fe27ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/communedetterbeekgemeenteetterbeek-fe27ed.png" }, { "if": { @@ -84893,7 +85079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communeducclegemeenteukkel-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communeducclegemeenteukkel-fe27ed.jpg" }, { "if": { @@ -84907,7 +85093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communedeberchemsainteagathegemeentesintagathaberchem-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communedeberchemsainteagathegemeentesintagathaberchem-fe27ed.jpg" }, { "if": { @@ -84921,7 +85107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communedekoekelberggemeentekoekelberg-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communedekoekelberggemeentekoekelberg-fe27ed.jpg" }, { "if": { @@ -84935,7 +85121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communedewoluwesaintlambertgemeentesintlambrechtswoluwe-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communedewoluwesaintlambertgemeentesintlambrechtswoluwe-fe27ed.jpg" }, { "if": { @@ -84949,7 +85135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedibolzanostadtgemeindebozen-db3b0a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedibolzanostadtgemeindebozen-db3b0a.svg" }, { "if": { @@ -84963,7 +85149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedicagliari-f8f6de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedicagliari-f8f6de.jpg" }, { "if": { @@ -84977,7 +85163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedilaives-db3b0a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedilaives-db3b0a.svg" }, { "if": { @@ -84991,7 +85177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedimagenta-5db564.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedimagenta-5db564.svg" }, { "if": { @@ -85005,7 +85191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedimontepulciano-63c64f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedimontepulciano-63c64f.svg" }, { "if": { @@ -85019,7 +85205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedisandonatomilanese-5db564.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedisandonatomilanese-5db564.svg" }, { "if": { @@ -85033,7 +85219,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedisangiulianomilanese-5db564.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedisangiulianomilanese-5db564.svg" }, { "if": { @@ -85047,7 +85233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunediterni-6f9bad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunediterni-6f9bad.svg" }, { "if": { @@ -85061,7 +85247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comuneditrezzosulladda-5db564.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comuneditrezzosulladda-5db564.svg" }, { "if": { @@ -85075,7 +85261,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comunedivignate-5db564.svg" + "then": "https://data.mapcomplete.org/nsi//logos/comunedivignate-5db564.svg" }, { "if": { @@ -85091,7 +85277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/connecticutdepartmentoftransportation-5f4799.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/connecticutdepartmentoftransportation-5f4799.jpg" }, { "if": { @@ -85105,7 +85291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditagricole-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditagricole-9c1a6c.png" }, { "if": { @@ -85119,7 +85305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creditmutuel-e10d05.png" + "then": "https://data.mapcomplete.org/nsi//logos/creditmutuel-e10d05.png" }, { "if": { @@ -85133,7 +85319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csob-9137b5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/csob-9137b5.jpg" }, { "if": { @@ -85147,7 +85333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbinfrago-2b1420.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbinfrago-2b1420.svg" }, { "if": { @@ -85161,7 +85347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dennsbiomarkt-38ba6f.png" + "then": "https://data.mapcomplete.org/nsi//logos/dennsbiomarkt-38ba6f.png" }, { "if": { @@ -85175,7 +85361,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebahn-2b1420.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebahn-2b1420.png" }, { "if": { @@ -85189,7 +85375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschetelekomag-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschetelekomag-2b1420.jpg" }, { "if": { @@ -85203,7 +85389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhl-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dhl-9c1a6c.jpg" }, { "if": { @@ -85217,7 +85403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dieautobahngmbhdesbundes-2b1420.png" + "then": "https://data.mapcomplete.org/nsi//logos/dieautobahngmbhdesbundes-2b1420.png" }, { "if": { @@ -85231,7 +85417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/divia-6e3818.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/divia-6e3818.jpg" }, { "if": { @@ -85245,7 +85431,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dlr-2b1420.png" + "then": "https://data.mapcomplete.org/nsi//logos/dlr-2b1420.png" }, { "if": { @@ -85259,7 +85445,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dm-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dm-5f01ff.jpg" }, { "if": { @@ -85273,7 +85459,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dm-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dm-2b1420.jpg" }, { "if": { @@ -85287,7 +85473,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dm-b9389d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dm-b9389d.jpg" }, { "if": { @@ -85301,7 +85487,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dsat-3810f7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dsat-3810f7.svg" }, { "if": { @@ -85315,7 +85501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/durhamcountycouncil-5f1c77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/durhamcountycouncil-5f1c77.jpg" }, { "if": { @@ -85329,7 +85515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dvg-2b1420.png" + "then": "https://data.mapcomplete.org/nsi//logos/dvg-2b1420.png" }, { "if": { @@ -85343,7 +85529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etoll-e50517.png" + "then": "https://data.mapcomplete.org/nsi//logos/etoll-e50517.png" }, { "if": { @@ -85357,7 +85543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eleclerc-e10d05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eleclerc-e10d05.jpg" }, { "if": { @@ -85371,7 +85557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-9c1a6c.png" }, { "if": { @@ -85386,7 +85572,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-9c1a6c.png" }, { "if": { @@ -85400,7 +85586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emschemie-db5bb4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/emschemie-db5bb4.svg" }, { "if": { @@ -85414,7 +85600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enercity-7368ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enercity-7368ba.jpg" }, { "if": { @@ -85428,7 +85614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eni-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eni-9c1a6c.jpg" }, { "if": { @@ -85442,7 +85628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erstebank-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erstebank-9c1a6c.jpg" }, { "if": { @@ -85456,7 +85642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-9c1a6c.jpg" }, { "if": { @@ -85470,7 +85656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-b9389d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-b9389d.jpg" }, { "if": { @@ -85484,7 +85670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federalofficefortheprotectionoftheconstitutionandcounterterrorism-b9389d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/federalofficefortheprotectionoftheconstitutionandcounterterrorism-b9389d.svg" }, { "if": { @@ -85498,7 +85684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federalepolitie-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/federalepolitie-fe27ed.jpg" }, { "if": { @@ -85512,7 +85698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flocksafety-cf76d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flocksafety-cf76d3.jpg" }, { "if": { @@ -85528,7 +85714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridadepartmentoftransportation-9eb20b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/floridadepartmentoftransportation-9eb20b.jpg" }, { "if": { @@ -85542,7 +85728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flughafenwienag-6f6c15.svg" + "then": "https://data.mapcomplete.org/nsi//logos/flughafenwienag-6f6c15.svg" }, { "if": { @@ -85556,7 +85742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentegroningen-4a64b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentegroningen-4a64b4.jpg" }, { "if": { @@ -85570,7 +85756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeentenijmegen-4a64b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeentenijmegen-4a64b4.jpg" }, { "if": { @@ -85586,7 +85772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeenterotterdam-4a64b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-4a64b4.jpg" }, { "if": { @@ -85601,7 +85787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalnadyrekcjadrogkrajowychiautostrad-e50517.png" + "then": "https://data.mapcomplete.org/nsi//logos/generalnadyrekcjadrogkrajowychiautostrad-e50517.png" }, { "if": { @@ -85617,7 +85803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/georgiadepartmentoftransportation-17a2f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/georgiadepartmentoftransportation-17a2f1.jpg" }, { "if": { @@ -85631,7 +85817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/handm-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/handm-9c1a6c.png" }, { "if": { @@ -85645,7 +85831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hackneycouncil-e6c6e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-e6c6e4.jpg" }, { "if": { @@ -85659,7 +85845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamburgerhochbahnag-2b1420.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hamburgerhochbahnag-2b1420.svg" }, { "if": { @@ -85675,7 +85861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiidepartmentoftransportation-4ea7da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiidepartmentoftransportation-4ea7da.jpg" }, { "if": { @@ -85689,7 +85875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hebe-e50517.png" + "then": "https://data.mapcomplete.org/nsi//logos/hebe-e50517.png" }, { "if": { @@ -85703,7 +85889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hem-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hem-2b1420.jpg" }, { "if": { @@ -85717,7 +85903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hogeschoolvanamsterdam-4a64b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hogeschoolvanamsterdam-4a64b4.jpg" }, { "if": { @@ -85731,7 +85917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hornbach-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/hornbach-9c1a6c.png" }, { "if": { @@ -85746,7 +85932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hamburgerverkehrsverbund-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hamburgerverkehrsverbund-2b1420.jpg" }, { "if": { @@ -85762,7 +85948,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoisdepartmentoftransportation-8cb4a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentoftransportation-8cb4a4.jpg" }, { "if": { @@ -85777,7 +85963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoisstatepolice-8cb4a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/illinoisstatepolice-8cb4a4.png" }, { "if": { @@ -85793,7 +85979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianadepartmentoftransportation-0b40aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/indianadepartmentoftransportation-0b40aa.jpg" }, { "if": { @@ -85807,7 +85993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/intermarche-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/intermarche-9c1a6c.jpg" }, { "if": { @@ -85823,7 +86009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iowadepartmentoftransportation-fff1d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iowadepartmentoftransportation-fff1d2.jpg" }, { "if": { @@ -85837,7 +86023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jet-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jet-9c1a6c.jpg" }, { "if": { @@ -85851,7 +86037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/johnsonandwalesuniversity-373ed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/johnsonandwalesuniversity-373ed2.jpg" }, { "if": { @@ -85867,7 +86053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansasdepartmentoftransportation-ab554c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kansasdepartmentoftransportation-ab554c.png" }, { "if": { @@ -85881,7 +86067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kaufland-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kaufland-9c1a6c.png" }, { "if": { @@ -85895,7 +86081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kik-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/kik-9c1a6c.png" }, { "if": { @@ -85909,7 +86095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/labanquepostale-e10d05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/labanquepostale-e10d05.jpg" }, { "if": { @@ -85923,7 +86109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/laposte-e10d05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/laposte-e10d05.jpg" }, { "if": { @@ -85937,7 +86123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landoberosterreich-b6b08f.png" + "then": "https://data.mapcomplete.org/nsi//logos/landoberosterreich-b6b08f.png" }, { "if": { @@ -85951,7 +86137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landtirol-668f50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landtirol-668f50.jpg" }, { "if": { @@ -85965,7 +86151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leroymerlin-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/leroymerlin-9c1a6c.png" }, { "if": { @@ -85979,7 +86165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lidl-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lidl-9c1a6c.png" }, { "if": { @@ -85993,7 +86179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lightsourcebp-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lightsourcebp-9c1a6c.png" }, { "if": { @@ -86007,7 +86193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonboroughofnewham-2402d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/londonboroughofnewham-2402d9.png" }, { "if": { @@ -86023,7 +86209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/louisianadepartmentoftransportationanddevelopment-5fc25c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/louisianadepartmentoftransportationanddevelopment-5fc25c.jpg" }, { "if": { @@ -86037,7 +86223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lyceumofthephilippinesuniversity-0dafa0.png" + "then": "https://data.mapcomplete.org/nsi//logos/lyceumofthephilippinesuniversity-0dafa0.png" }, { "if": { @@ -86053,7 +86239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainedepartmentoftransportation-a83068.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mainedepartmentoftransportation-a83068.jpg" }, { "if": { @@ -86067,7 +86253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mairiedeparis-ddc08a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-ddc08a.jpg" }, { "if": { @@ -86083,7 +86269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylanddepartmentoftransportation-a4529d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marylanddepartmentoftransportation-a4529d.jpg" }, { "if": { @@ -86098,7 +86284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massachusettsbaytransportationauthority-13fd93.png" + "then": "https://data.mapcomplete.org/nsi//logos/massachusettsbaytransportationauthority-13fd93.png" }, { "if": { @@ -86114,7 +86300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/massachusettsdepartmentoftransportation-13fd93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/massachusettsdepartmentoftransportation-13fd93.jpg" }, { "if": { @@ -86128,7 +86314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maxrubnerinstitut-2b1420.svg" + "then": "https://data.mapcomplete.org/nsi//logos/maxrubnerinstitut-2b1420.svg" }, { "if": { @@ -86142,7 +86328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mcdonalds-50eddc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mcdonalds-50eddc.jpg" }, { "if": { @@ -86157,7 +86343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstvodopravyceskerepubliky-5f01ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstvodopravyceskerepubliky-5f01ff.png" }, { "if": { @@ -86171,7 +86357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestoolomouc-5f01ff.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mestoolomouc-5f01ff.svg" }, { "if": { @@ -86185,7 +86371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestoplzen-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestoplzen-5f01ff.jpg" }, { "if": { @@ -86199,7 +86385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestoruzomberok-77e4ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/mestoruzomberok-77e4ef.png" }, { "if": { @@ -86213,7 +86399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestskapoliciebrno-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestskapoliciebrno-5f01ff.jpg" }, { "if": { @@ -86227,7 +86413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestskapoliciefrydlantnadostravici-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestskapoliciefrydlantnadostravici-5f01ff.jpg" }, { "if": { @@ -86241,7 +86427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestskapolicieopava-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestskapolicieopava-5f01ff.jpg" }, { "if": { @@ -86255,7 +86441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestskapolicieostrava-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestskapolicieostrava-5f01ff.jpg" }, { "if": { @@ -86269,7 +86455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestskapolicieprerov-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestskapolicieprerov-5f01ff.jpg" }, { "if": { @@ -86283,7 +86469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mestskapolicieroudnicenadlabem-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mestskapolicieroudnicenadlabem-5f01ff.jpg" }, { "if": { @@ -86297,7 +86483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropoledelyon-276786.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropoledelyon-276786.jpg" }, { "if": { @@ -86311,7 +86497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolitanmaniladevelopmentauthority-298953.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolitanmaniladevelopmentauthority-298953.jpg" }, { "if": { @@ -86327,7 +86513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigandepartmentoftransportation-585cc8.png" + "then": "https://data.mapcomplete.org/nsi//logos/michigandepartmentoftransportation-585cc8.png" }, { "if": { @@ -86341,7 +86527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/microcenter-cf76d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/microcenter-cf76d3.jpg" }, { "if": { @@ -86355,7 +86541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofdefence-74812b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofdefence-74812b.jpg" }, { "if": { @@ -86369,7 +86555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryoftransportationofontario-35e98c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministryoftransportationofontario-35e98c.png" }, { "if": { @@ -86385,7 +86571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotadepartmentoftransportation-b6cd3f.png" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotadepartmentoftransportation-b6cd3f.png" }, { "if": { @@ -86401,7 +86587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missouridepartmentoftransportation-23dcdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/missouridepartmentoftransportation-23dcdc.jpg" }, { "if": { @@ -86415,7 +86601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mit-13fd93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mit-13fd93.jpg" }, { "if": { @@ -86429,7 +86615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddefunes-069ba6.png" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddefunes-069ba6.png" }, { "if": { @@ -86443,7 +86629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidadderosario-069ba6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidadderosario-069ba6.svg" }, { "if": { @@ -86457,7 +86643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nanyangpolytechnic-1886fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/nanyangpolytechnic-1886fd.png" }, { "if": { @@ -86472,7 +86658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalhighways-36d2be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalhighways-36d2be.jpg" }, { "if": { @@ -86487,7 +86673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalparkservice-cf76d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-cf76d3.jpg" }, { "if": { @@ -86501,7 +86687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalsecurityagency-cf76d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalsecurityagency-cf76d3.jpg" }, { "if": { @@ -86517,7 +86703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nebraskadepartmentoftransportation-e249dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nebraskadepartmentoftransportation-e249dc.jpg" }, { "if": { @@ -86533,7 +86719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nevadadepartmentoftransportation-4a48c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nevadadepartmentoftransportation-4a48c1.jpg" }, { "if": { @@ -86549,7 +86735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newhampshiredepartmentoftransportation-69a4af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newhampshiredepartmentoftransportation-69a4af.jpg" }, { "if": { @@ -86565,7 +86751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newjerseydepartmentoftransportation-e4819c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newjerseydepartmentoftransportation-e4819c.jpg" }, { "if": { @@ -86581,7 +86767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newmexicodepartmentoftransportation-52b3ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newmexicodepartmentoftransportation-52b3ac.jpg" }, { "if": { @@ -86597,7 +86783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatedepartmentoftransportation-e862e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentoftransportation-e862e8.jpg" }, { "if": { @@ -86613,7 +86799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatethruwayauthority-e862e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatethruwayauthority-e862e8.jpg" }, { "if": { @@ -86629,7 +86815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nmbssncb-fe27ed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nmbssncb-fe27ed.svg" }, { "if": { @@ -86645,7 +86831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northcarolinadepartmentoftransportation-1db201.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northcarolinadepartmentoftransportation-1db201.jpg" }, { "if": { @@ -86661,7 +86847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northdakotadepartmentoftransportation-58741c.png" + "then": "https://data.mapcomplete.org/nsi//logos/northdakotadepartmentoftransportation-58741c.png" }, { "if": { @@ -86675,7 +86861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novomaticag-063466.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novomaticag-063466.jpg" }, { "if": { @@ -86689,7 +86875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obb-b9389d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obb-b9389d.jpg" }, { "if": { @@ -86703,7 +86889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oesterreichischenationalbank-b9389d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/oesterreichischenationalbank-b9389d.svg" }, { "if": { @@ -86719,7 +86905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiodepartmentoftransportation-545962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentoftransportation-545962.jpg" }, { "if": { @@ -86735,7 +86921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomadepartmentoftransportation-440757.png" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomadepartmentoftransportation-440757.png" }, { "if": { @@ -86749,7 +86935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omv-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omv-9c1a6c.jpg" }, { "if": { @@ -86763,7 +86949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orange-3bfa97.png" + "then": "https://data.mapcomplete.org/nsi//logos/orange-3bfa97.png" }, { "if": { @@ -86777,7 +86963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlen-e50517.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlen-e50517.jpg" }, { "if": { @@ -86793,7 +86979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pennsylvaniadepartmentoftransportation-00360b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pennsylvaniadepartmentoftransportation-00360b.jpg" }, { "if": { @@ -86807,7 +86993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penny-9c1a6c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/penny-9c1a6c.svg" }, { "if": { @@ -86821,7 +87007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poleuniversitaireleonarddevinci-ddc08a.png" + "then": "https://data.mapcomplete.org/nsi//logos/poleuniversitaireleonarddevinci-ddc08a.png" }, { "if": { @@ -86835,7 +87021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policenationale-e10d05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policenationale-e10d05.jpg" }, { "if": { @@ -86850,7 +87036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiamilitardoestadodesantacatarina-db2979.png" + "then": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodesantacatarina-db2979.png" }, { "if": { @@ -86864,7 +87050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policiasr-77e4ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policiasr-77e4ef.jpg" }, { "if": { @@ -86878,7 +87064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/policieceskerepubliky-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/policieceskerepubliky-5f01ff.jpg" }, { "if": { @@ -86892,7 +87078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/politiezoneblankenberge-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/politiezoneblankenberge-fe27ed.jpg" }, { "if": { @@ -86906,7 +87092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/politiezoneleuven-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/politiezoneleuven-fe27ed.jpg" }, { "if": { @@ -86920,7 +87106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/politiezonezennevallei-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/politiezonezennevallei-fe27ed.jpg" }, { "if": { @@ -86934,7 +87120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polomarket-e50517.png" + "then": "https://data.mapcomplete.org/nsi//logos/polomarket-e50517.png" }, { "if": { @@ -86948,7 +87134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlotniczylodz-e50517.svg" + "then": "https://data.mapcomplete.org/nsi//logos/portlotniczylodz-e50517.svg" }, { "if": { @@ -86962,7 +87148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prefecturedepolicedeparis-ddc08a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prefecturedepolicedeparis-ddc08a.jpg" }, { "if": { @@ -86976,7 +87162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/provinciegroningen-4a64b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/provinciegroningen-4a64b4.png" }, { "if": { @@ -86990,7 +87176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ratp-3bfa97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ratp-3bfa97.jpg" }, { "if": { @@ -87004,7 +87190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-00fbd3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-00fbd3.svg" }, { "if": { @@ -87018,7 +87204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinneckarverkehr-2b1420.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rheinneckarverkehr-2b1420.svg" }, { "if": { @@ -87034,7 +87220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodeislanddepartmentoftransportation-373ed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodeislanddepartmentoftransportation-373ed2.jpg" }, { "if": { @@ -87048,7 +87234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodeislandschoolofdesign-373ed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodeislandschoolofdesign-373ed2.jpg" }, { "if": { @@ -87063,7 +87249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rijkswaterstaat-4a64b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rijkswaterstaat-4a64b4.jpg" }, { "if": { @@ -87077,7 +87263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/safebrussels-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/safebrussels-fe27ed.jpg" }, { "if": { @@ -87091,7 +87277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sanef-3bfa97.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sanef-3bfa97.svg" }, { "if": { @@ -87105,7 +87291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schwarzwaldmilch-c3b0f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/schwarzwaldmilch-c3b0f7.jpg" }, { "if": { @@ -87120,7 +87306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sedgemoordistrictcouncil-2d7413.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sedgemoordistrictcouncil-2d7413.jpg" }, { "if": { @@ -87134,7 +87320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/setram-9ba658.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/setram-9ba658.jpg" }, { "if": { @@ -87148,7 +87334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-9c1a6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-9c1a6c.jpg" }, { "if": { @@ -87162,7 +87348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/siemensag-38ba6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/siemensag-38ba6f.jpg" }, { "if": { @@ -87176,7 +87362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slipperyrockuniversity-00360b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slipperyrockuniversity-00360b.jpg" }, { "if": { @@ -87190,7 +87376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-3bfa97.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-3bfa97.png" }, { "if": { @@ -87204,7 +87390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societegenerale-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/societegenerale-9c1a6c.png" }, { "if": { @@ -87219,7 +87405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/somersetcouncil-2d7413.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-2d7413.jpg" }, { "if": { @@ -87235,7 +87421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southcarolinadepartmentoftransportation-db0f7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southcarolinadepartmentoftransportation-db0f7d.jpg" }, { "if": { @@ -87251,7 +87437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southdakotadepartmentoftransportation-927751.png" + "then": "https://data.mapcomplete.org/nsi//logos/southdakotadepartmentoftransportation-927751.png" }, { "if": { @@ -87265,7 +87451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkasse-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkasse-2b1420.jpg" }, { "if": { @@ -87279,7 +87465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sparkassespreeneisse-d67f12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sparkassespreeneisse-d67f12.jpg" }, { "if": { @@ -87293,7 +87479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldpolicedepartment-8cb4a4.png" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldpolicedepartment-8cb4a4.png" }, { "if": { @@ -87307,7 +87493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadantwerpen-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadantwerpen-fe27ed.jpg" }, { "if": { @@ -87321,7 +87507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadbrugge-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadbrugge-fe27ed.jpg" }, { "if": { @@ -87335,7 +87521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadleuven-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadleuven-fe27ed.jpg" }, { "if": { @@ -87349,7 +87535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtahlen-bddc17.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtahlen-bddc17.svg" }, { "if": { @@ -87363,7 +87549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbonn-bddc17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbonn-bddc17.jpg" }, { "if": { @@ -87377,7 +87563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadthamm-bddc17.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadthamm-bddc17.svg" }, { "if": { @@ -87391,7 +87577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkarlsruhe-c3b0f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-c3b0f7.png" }, { "if": { @@ -87405,7 +87591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtmannheim-c3b0f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtmannheim-c3b0f7.png" }, { "if": { @@ -87419,7 +87605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtstuttgart-c3b0f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtstuttgart-c3b0f7.jpg" }, { "if": { @@ -87433,7 +87619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtundland-afce8c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtundland-afce8c.svg" }, { "if": { @@ -87447,7 +87633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwitten-bddc17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwitten-bddc17.jpg" }, { "if": { @@ -87461,7 +87647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtgaleriewitten-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtgaleriewitten-2b1420.jpg" }, { "if": { @@ -87475,7 +87661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeheilbronngmbh-c3b0f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeheilbronngmbh-c3b0f7.jpg" }, { "if": { @@ -87489,7 +87675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewitten-bddc17.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-bddc17.png" }, { "if": { @@ -87503,7 +87689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/star-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/star-2b1420.jpg" }, { "if": { @@ -87517,7 +87703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statensvegvesen-be4042.png" + "then": "https://data.mapcomplete.org/nsi//logos/statensvegvesen-be4042.png" }, { "if": { @@ -87531,7 +87717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/steiermarkischesparkasse-b9389d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/steiermarkischesparkasse-b9389d.jpg" }, { "if": { @@ -87545,7 +87731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stellantis-74812b.png" + "then": "https://data.mapcomplete.org/nsi//logos/stellantis-74812b.png" }, { "if": { @@ -87559,7 +87745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sudtirolersparkasse-00fbd3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sudtirolersparkasse-00fbd3.jpg" }, { "if": { @@ -87573,7 +87759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/superu-e10d05.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/superu-e10d05.jpg" }, { "if": { @@ -87587,7 +87773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sureteferroviairesncf-3bfa97.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sureteferroviairesncf-3bfa97.svg" }, { "if": { @@ -87601,7 +87787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swg-011884.png" + "then": "https://data.mapcomplete.org/nsi//logos/swg-011884.png" }, { "if": { @@ -87615,7 +87801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/szdc-5f01ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/szdc-5f01ff.jpg" }, { "if": { @@ -87629,7 +87815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/target-cf76d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/target-cf76d3.jpg" }, { "if": { @@ -87643,7 +87829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teta-9137b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/teta-9137b5.png" }, { "if": { @@ -87659,7 +87845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasdepartmentoftransportation-46f947.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasdepartmentoftransportation-46f947.jpg" }, { "if": { @@ -87673,7 +87859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/theuniversityofedinburgh-cadc88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/theuniversityofedinburgh-cadc88.jpg" }, { "if": { @@ -87687,7 +87873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tisseo-54417e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tisseo-54417e.jpg" }, { "if": { @@ -87701,7 +87887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tnt-9c1a6c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tnt-9c1a6c.svg" }, { "if": { @@ -87715,7 +87901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tollcollect-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tollcollect-2b1420.jpg" }, { "if": { @@ -87729,7 +87915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalenergies-9c1a6c.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalenergies-9c1a6c.png" }, { "if": { @@ -87744,7 +87930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trafficscotland-cadc88.png" + "then": "https://data.mapcomplete.org/nsi//logos/trafficscotland-cadc88.png" }, { "if": { @@ -87758,7 +87944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trafikverket-926ff3.png" + "then": "https://data.mapcomplete.org/nsi//logos/trafikverket-926ff3.png" }, { "if": { @@ -87773,7 +87959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportforlondon-36d2be.png" + "then": "https://data.mapcomplete.org/nsi//logos/transportforlondon-36d2be.png" }, { "if": { @@ -87787,7 +87973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trenesargentinos-ae8db7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-ae8db7.svg" }, { "if": { @@ -87801,7 +87987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuwien-9815c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/tuwien-9815c8.png" }, { "if": { @@ -87815,7 +88001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tuftsuniversity-13fd93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tuftsuniversity-13fd93.jpg" }, { "if": { @@ -87829,7 +88015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turmol-b9389d.png" + "then": "https://data.mapcomplete.org/nsi//logos/turmol-b9389d.png" }, { "if": { @@ -87843,7 +88029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umasslowell-13fd93.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/umasslowell-13fd93.jpg" }, { "if": { @@ -87857,7 +88043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitatsklinikumschleswigholstein-2b1420.png" + "then": "https://data.mapcomplete.org/nsi//logos/universitatsklinikumschleswigholstein-2b1420.png" }, { "if": { @@ -87871,7 +88057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitecatholiquedelouvain-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitecatholiquedelouvain-fe27ed.jpg" }, { "if": { @@ -87885,7 +88071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/universitepaulsabatier-54417e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/universitepaulsabatier-54417e.jpg" }, { "if": { @@ -87899,7 +88085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/urzadmiastahelu-e50517.svg" + "then": "https://data.mapcomplete.org/nsi//logos/urzadmiastahelu-e50517.svg" }, { "if": { @@ -87915,7 +88101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/utahdepartmentoftransportation-0839c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/utahdepartmentoftransportation-0839c4.png" }, { "if": { @@ -87929,7 +88115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vejdirektoratet-e9585f.png" + "then": "https://data.mapcomplete.org/nsi//logos/vejdirektoratet-e9585f.png" }, { "if": { @@ -87943,7 +88129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundvolksbankowl-2b1420.png" + "then": "https://data.mapcomplete.org/nsi//logos/verbundvolksbankowl-2b1420.png" }, { "if": { @@ -87957,7 +88143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verkehrsbetriebekarlsruhegmbh-2b1420.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verkehrsbetriebekarlsruhegmbh-2b1420.jpg" }, { "if": { @@ -87973,7 +88159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontagencyoftransportation-21d333.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontagencyoftransportation-21d333.jpg" }, { "if": { @@ -87987,7 +88173,21 @@ } ] }, - "then": "./assets/data/nsi/logos/villedemontreal-89d7b3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/villedemontreal-89d7b3.svg" + }, + { + "if": { + "and": [ + "man_made=surveillance", + { + "or": [ + "operator=Ville de Papeete", + "operator:wikidata=Q130800" + ] + } + ] + }, + "then": "https://data.mapcomplete.org/nsi//logos/villedepapeete-9cba75.jpg" }, { "if": { @@ -88001,7 +88201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/villedepirae-9cba75.svg" + "then": "https://data.mapcomplete.org/nsi//logos/villedepirae-9cba75.svg" }, { "if": { @@ -88017,7 +88217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiadepartmentoftransportation-25e72c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentoftransportation-25e72c.jpg" }, { "if": { @@ -88031,7 +88231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiatech-25e72c.png" + "then": "https://data.mapcomplete.org/nsi//logos/virginiatech-25e72c.png" }, { "if": { @@ -88045,7 +88245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voiesnavigablesdefrance-3bfa97.svg" + "then": "https://data.mapcomplete.org/nsi//logos/voiesnavigablesdefrance-3bfa97.svg" }, { "if": { @@ -88059,7 +88259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volksbank-b9389d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/volksbank-b9389d.svg" }, { "if": { @@ -88075,7 +88275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonstatedepartmentoftransportation-a51efb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonstatedepartmentoftransportation-a51efb.jpg" }, { "if": { @@ -88091,7 +88291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westvirginiadepartmentoftransportation-87d022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westvirginiadepartmentoftransportation-87d022.jpg" }, { "if": { @@ -88105,7 +88305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernsydneyuniversity-55d639.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westernsydneyuniversity-55d639.jpg" }, { "if": { @@ -88119,7 +88319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-b9389d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-b9389d.jpg" }, { "if": { @@ -88133,7 +88333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienerlinien-063466.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienerlinien-063466.jpg" }, { "if": { @@ -88147,7 +88347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienerstadthalle-9815c8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wienerstadthalle-9815c8.svg" }, { "if": { @@ -88163,7 +88363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsindepartmentoftransportation-13167a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentoftransportation-13167a.jpg" }, { "if": { @@ -88177,7 +88377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wuwien-9815c8.png" + "then": "https://data.mapcomplete.org/nsi//logos/wuwien-9815c8.png" }, { "if": { @@ -88193,7 +88393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wyomingdepartmentoftransportation-89ba23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wyomingdepartmentoftransportation-89ba23.jpg" }, { "if": { @@ -88207,7 +88407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yaleuniversity-5f4799.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yaleuniversity-5f4799.jpg" }, { "if": { @@ -88221,7 +88421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zagrebackiholding-234fa0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/zagrebackiholding-234fa0.svg" }, { "if": { @@ -88237,7 +88437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zonedepolicebruxellescapitaleixellespolitiezonebrusselhoofdstadelsene-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zonedepolicebruxellescapitaleixellespolitiezonebrusselhoofdstadelsene-fe27ed.jpg" }, { "if": { @@ -88253,7 +88453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zonedepolicebruxellesouestpolitiezonebrusselwest-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zonedepolicebruxellesouestpolitiezonebrusselwest-fe27ed.jpg" }, { "if": { @@ -88269,7 +88469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zonedepolicemidipolitiezonezuid-fe27ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zonedepolicemidipolitiezonezuid-fe27ed.jpg" }, { "if": { @@ -88285,7 +88485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zonedepolicepolbrunopolitiezonepolbruno-fe27ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/zonedepolicepolbrunopolitiezonepolbruno-fe27ed.png" }, { "if": { @@ -88299,7 +88499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturalresourcescanada-dbb4a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/naturalresourcescanada-dbb4a6.png" }, { "if": { @@ -88313,7 +88513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ordnancesurvey-a1ffb2.png" + "then": "https://data.mapcomplete.org/nsi//logos/ordnancesurvey-a1ffb2.png" }, { "if": { @@ -88327,7 +88527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ressourcesnaturellescanada-9cab83.png" + "then": "https://data.mapcomplete.org/nsi//logos/ressourcesnaturellescanada-9cab83.png" }, { "if": { @@ -88342,7 +88542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arqiva-b64a30.svg" + "then": "https://data.mapcomplete.org/nsi//logos/arqiva-b64a30.svg" }, { "if": { @@ -88359,7 +88559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorepolicedepartment-62d396.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorepolicedepartment-62d396.jpg" }, { "if": { @@ -88375,7 +88575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ee-b64a30.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ee-b64a30.svg" }, { "if": { @@ -88390,7 +88590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iheartmedia-cdc266.png" + "then": "https://data.mapcomplete.org/nsi//logos/iheartmedia-cdc266.png" }, { "if": { @@ -88405,7 +88605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtn-a1bc20.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtn-a1bc20.jpg" }, { "if": { @@ -88419,7 +88619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalairtrafficservices-b64a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalairtrafficservices-b64a30.jpg" }, { "if": { @@ -88434,7 +88634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkrail-b64a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkrail-b64a30.jpg" }, { "if": { @@ -88450,7 +88650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/o2-b64a30.svg" + "then": "https://data.mapcomplete.org/nsi//logos/o2-b64a30.svg" }, { "if": { @@ -88466,7 +88666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orange-5566a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/orange-5566a2.png" }, { "if": { @@ -88481,7 +88681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sentech-134622.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sentech-134622.jpg" }, { "if": { @@ -88497,7 +88697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telekom-a8749b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telekom-a8749b.jpg" }, { "if": { @@ -88512,7 +88712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telkom-134622.svg" + "then": "https://data.mapcomplete.org/nsi//logos/telkom-134622.svg" }, { "if": { @@ -88528,7 +88728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/three-b64a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/three-b64a30.jpg" }, { "if": { @@ -88543,7 +88743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacomcongo-e13b02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacomcongo-e13b02.jpg" }, { "if": { @@ -88558,7 +88758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacomlesotho-f10e6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacomlesotho-f10e6d.jpg" }, { "if": { @@ -88573,7 +88773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacommocambique-25a58e.png" + "then": "https://data.mapcomplete.org/nsi//logos/vodacommocambique-25a58e.png" }, { "if": { @@ -88588,7 +88788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacom-134622.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacom-134622.jpg" }, { "if": { @@ -88603,7 +88803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodacomtanzania-02351e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodacomtanzania-02351e.jpg" }, { "if": { @@ -88619,7 +88819,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodafoneegypt-48c88e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodafoneegypt-48c88e.jpg" }, { "if": { @@ -88635,7 +88835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vodafone-b64a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vodafone-b64a30.jpg" }, { "if": { @@ -88649,7 +88849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aquafin-2214b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aquafin-2214b4.jpg" }, { "if": { @@ -88663,7 +88863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autoridaddeacueductosyalcantarillados-e33c0e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autoridaddeacueductosyalcantarillados-e33c0e.jpg" }, { "if": { @@ -88677,7 +88877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barwonwater-9409a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/barwonwater-9409a2.png" }, { "if": { @@ -88692,7 +88892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerwasserbetriebe-96557d.png" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerwasserbetriebe-96557d.png" }, { "if": { @@ -88706,7 +88906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralhighlandswater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralhighlandswater-9409a2.jpg" }, { "if": { @@ -88720,7 +88920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleanharbors-0761ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cleanharbors-0761ed.jpg" }, { "if": { @@ -88735,7 +88935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleanwaterservices-3ab24f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cleanwaterservices-3ab24f.jpg" }, { "if": { @@ -88749,7 +88949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colibanwater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colibanwater-9409a2.jpg" }, { "if": { @@ -88763,7 +88963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/communautedecommuneslesavantmonts-798128.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/communautedecommuneslesavantmonts-798128.jpg" }, { "if": { @@ -88778,7 +88978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/companhiadeaguaeesgotodoceara-11a6e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/companhiadeaguaeesgotodoceara-11a6e3.jpg" }, { "if": { @@ -88792,7 +88992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copasa-11a6e3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/copasa-11a6e3.svg" }, { "if": { @@ -88808,7 +89008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dwrcymruwelshwater-6a6be4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dwrcymruwelshwater-6a6be4.jpg" }, { "if": { @@ -88822,7 +89022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastgippslandwater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastgippslandwater-9409a2.jpg" }, { "if": { @@ -88836,7 +89036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erftverband-ea0c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erftverband-ea0c8b.jpg" }, { "if": { @@ -88850,7 +89050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gippslandwater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gippslandwater-9409a2.jpg" }, { "if": { @@ -88864,7 +89064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goulburnvalleywater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goulburnvalleywater-9409a2.jpg" }, { "if": { @@ -88878,7 +89078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grampianswimmeramalleewater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grampianswimmeramalleewater-9409a2.jpg" }, { "if": { @@ -88892,7 +89092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greaterwesternwater-9409a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/greaterwesternwater-9409a2.png" }, { "if": { @@ -88906,7 +89106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hafrendyfrdwycyfyngedig-9a5141.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hafrendyfrdwycyfyngedig-9a5141.jpg" }, { "if": { @@ -88920,7 +89120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hunterwater-3a15ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hunterwater-3a15ac.jpg" }, { "if": { @@ -88934,7 +89134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iconwater-98f006.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iconwater-98f006.jpg" }, { "if": { @@ -88949,7 +89149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indahwater-36d0a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/indahwater-36d0a3.png" }, { "if": { @@ -88965,7 +89165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishwater-cd7865.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishwater-cd7865.jpg" }, { "if": { @@ -88979,7 +89179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/izsu-ec1879.png" + "then": "https://data.mapcomplete.org/nsi//logos/izsu-ec1879.png" }, { "if": { @@ -88994,7 +89194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-750319.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-750319.jpg" }, { "if": { @@ -89008,7 +89208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kositas-6f062f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kositas-6f062f.jpg" }, { "if": { @@ -89023,7 +89223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-f08e14.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-f08e14.png" }, { "if": { @@ -89037,7 +89237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowermurraywater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lowermurraywater-9409a2.jpg" }, { "if": { @@ -89051,7 +89251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayniladwaterservices-9ef527.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-9ef527.jpg" }, { "if": { @@ -89065,7 +89265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melbournewater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/melbournewater-9409a2.jpg" }, { "if": { @@ -89080,7 +89280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolitanwaterreclamationdistrictofgreaterchicago-eb5ed3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolitanwaterreclamationdistrictofgreaterchicago-eb5ed3.jpg" }, { "if": { @@ -89094,7 +89294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/niersverband-ea0c8b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/niersverband-ea0c8b.svg" }, { "if": { @@ -89108,7 +89308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northeastwater-9409a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/northeastwater-9409a2.png" }, { "if": { @@ -89122,7 +89322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernirelandwater-4ab999.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernirelandwater-4ab999.jpg" }, { "if": { @@ -89136,7 +89336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northumbrianwater-9a5141.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northumbrianwater-9a5141.jpg" }, { "if": { @@ -89150,7 +89350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerandwater-e69d8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerandwater-e69d8a.jpg" }, { "if": { @@ -89164,7 +89364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rodezagglomeration-798128.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rodezagglomeration-798128.jpg" }, { "if": { @@ -89179,7 +89379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ruhrverband-ea0c8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ruhrverband-ea0c8b.jpg" }, { "if": { @@ -89193,7 +89393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sawater-12f4ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sawater-12f4ae.jpg" }, { "if": { @@ -89207,7 +89407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sabesp-220197.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sabesp-220197.jpg" }, { "if": { @@ -89221,7 +89421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishwater-4f92d3.png" + "then": "https://data.mapcomplete.org/nsi//logos/scottishwater-4f92d3.png" }, { "if": { @@ -89237,7 +89437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-0ed09f.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-0ed09f.png" }, { "if": { @@ -89251,7 +89451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seqwater-b109db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seqwater-b109db.jpg" }, { "if": { @@ -89265,7 +89465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/severntrent-3c939b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/severntrent-3c939b.svg" }, { "if": { @@ -89279,7 +89479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southeastwater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southeastwater-9409a2.jpg" }, { "if": { @@ -89293,7 +89493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestwater-2a6f9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwestwater-2a6f9d.jpg" }, { "if": { @@ -89307,7 +89507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suezeaufrance-ea08bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suezeaufrance-ea08bf.jpg" }, { "if": { @@ -89321,7 +89521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydneywater-3a15ac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sydneywater-3a15ac.jpg" }, { "if": { @@ -89335,7 +89535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taswater-24f6df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taswater-24f6df.jpg" }, { "if": { @@ -89349,7 +89549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thameswater-3c939b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thameswater-3c939b.jpg" }, { "if": { @@ -89363,7 +89563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedutilities-9a5141.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedutilities-9a5141.svg" }, { "if": { @@ -89377,7 +89577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veolia-ea08bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veolia-ea08bf.jpg" }, { "if": { @@ -89391,7 +89591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wannonwater-9409a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/wannonwater-9409a2.png" }, { "if": { @@ -89405,7 +89605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watercorporation-c76c40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watercorporation-c76c40.jpg" }, { "if": { @@ -89419,7 +89619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waterschaphollandsedelta-addada.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waterschaphollandsedelta-addada.jpg" }, { "if": { @@ -89433,7 +89633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waterschaprivierenland-addada.svg" + "then": "https://data.mapcomplete.org/nsi//logos/waterschaprivierenland-addada.svg" }, { "if": { @@ -89447,7 +89647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/waterschapscheldestromen-addada.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/waterschapscheldestromen-addada.jpg" }, { "if": { @@ -89461,7 +89661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wessexwater-2a6f9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wessexwater-2a6f9d.jpg" }, { "if": { @@ -89475,7 +89675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wetterskipfryslan-addada.png" + "then": "https://data.mapcomplete.org/nsi//logos/wetterskipfryslan-addada.png" }, { "if": { @@ -89489,7 +89689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yarravalleywater-9409a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yarravalleywater-9409a2.jpg" }, { "if": { @@ -89503,7 +89703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/423877-bcdd97.png" + "then": "https://data.mapcomplete.org/nsi//logos/423877-bcdd97.png" }, { "if": { @@ -89517,7 +89717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/938062-bcdd97.png" + "then": "https://data.mapcomplete.org/nsi//logos/938062-bcdd97.png" }, { "if": { @@ -89532,7 +89732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-c592bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-c592bb.jpg" }, { "if": { @@ -89546,7 +89746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dewatergroep-08646f.png" + "then": "https://data.mapcomplete.org/nsi//logos/dewatergroep-08646f.png" }, { "if": { @@ -89560,7 +89760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayniladwaterservices-9f6c7e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-9f6c7e.jpg" }, { "if": { @@ -89574,7 +89774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pidpa-08646f.png" + "then": "https://data.mapcomplete.org/nsi//logos/pidpa-08646f.png" }, { "if": { @@ -89590,7 +89790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-e7ea7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-e7ea7d.png" }, { "if": { @@ -89604,7 +89804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watercare-988247.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watercare-988247.jpg" }, { "if": { @@ -89618,7 +89818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41a232-23dae7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/41a232-23dae7.jpg" }, { "if": { @@ -89632,7 +89832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41df5e-23dae7.png" + "then": "https://data.mapcomplete.org/nsi//logos/41df5e-23dae7.png" }, { "if": { @@ -89646,7 +89846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/423877-067baf.png" + "then": "https://data.mapcomplete.org/nsi//logos/423877-067baf.png" }, { "if": { @@ -89660,7 +89860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/938062-067baf.png" + "then": "https://data.mapcomplete.org/nsi//logos/938062-067baf.png" }, { "if": { @@ -89676,7 +89876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watersuppliesdepartment-ad7a9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-ad7a9b.jpg" }, { "if": { @@ -89690,7 +89890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/barwonwater-086b9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/barwonwater-086b9d.png" }, { "if": { @@ -89704,7 +89904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralhighlandswater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralhighlandswater-086b9d.jpg" }, { "if": { @@ -89718,7 +89918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colibanwater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colibanwater-086b9d.jpg" }, { "if": { @@ -89732,7 +89932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastgippslandwater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastgippslandwater-086b9d.jpg" }, { "if": { @@ -89746,7 +89946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gippslandwater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gippslandwater-086b9d.jpg" }, { "if": { @@ -89760,7 +89960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goulburnvalleywater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goulburnvalleywater-086b9d.jpg" }, { "if": { @@ -89774,7 +89974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grampianswimmeramalleewater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grampianswimmeramalleewater-086b9d.jpg" }, { "if": { @@ -89788,7 +89988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greaterwesternwater-086b9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/greaterwesternwater-086b9d.png" }, { "if": { @@ -89802,7 +90002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hunterwater-ba95cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hunterwater-ba95cc.jpg" }, { "if": { @@ -89816,7 +90016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iconwater-42b9af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iconwater-42b9af.jpg" }, { "if": { @@ -89832,7 +90032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishwater-7da298.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishwater-7da298.jpg" }, { "if": { @@ -89847,7 +90047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-5fdce4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-5fdce4.jpg" }, { "if": { @@ -89862,7 +90062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-19993d.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-19993d.png" }, { "if": { @@ -89876,7 +90076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowermurraywater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lowermurraywater-086b9d.jpg" }, { "if": { @@ -89890,7 +90090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/melbournewater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/melbournewater-086b9d.jpg" }, { "if": { @@ -89904,7 +90104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northeastwater-086b9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/northeastwater-086b9d.png" }, { "if": { @@ -89918,7 +90118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerandwater-e23dc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerandwater-e23dc4.jpg" }, { "if": { @@ -89932,7 +90132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sawater-24df78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sawater-24df78.jpg" }, { "if": { @@ -89946,7 +90146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seqwater-10fc82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seqwater-10fc82.jpg" }, { "if": { @@ -89960,7 +90160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southeastwater-086b9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southeastwater-086b9d.jpg" }, { "if": { @@ -89974,7 +90174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydneywater-ba95cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sydneywater-ba95cc.jpg" }, { "if": { @@ -89988,7 +90188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taswater-eded62.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taswater-eded62.jpg" }, { "if": { @@ -90003,7 +90203,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskavodarenskaspolocnost-8c4b19.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskavodarenskaspolocnost-8c4b19.png" }, { "if": { @@ -90017,7 +90217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wannonwater-086b9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/wannonwater-086b9d.png" }, { "if": { @@ -90031,7 +90231,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watercorporation-bf7ce7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watercorporation-bf7ce7.jpg" }, { "if": { @@ -90045,7 +90245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dewatergroep-71ff59.png" + "then": "https://data.mapcomplete.org/nsi//logos/dewatergroep-71ff59.png" }, { "if": { @@ -90059,7 +90259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayniladwaterservices-e7ef26.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-e7ef26.jpg" }, { "if": { @@ -90073,7 +90273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pidpa-71ff59.png" + "then": "https://data.mapcomplete.org/nsi//logos/pidpa-71ff59.png" }, { "if": { @@ -90089,7 +90289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-17b995.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-17b995.png" }, { "if": { @@ -90103,7 +90303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watercare-1be0b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watercare-1be0b4.jpg" }, { "if": { @@ -90117,7 +90317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41a232-1c8757.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/41a232-1c8757.jpg" }, { "if": { @@ -90131,7 +90331,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41df5e-1c8757.png" + "then": "https://data.mapcomplete.org/nsi//logos/41df5e-1c8757.png" }, { "if": { @@ -90145,7 +90345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/423877-a924a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/423877-a924a3.png" }, { "if": { @@ -90159,7 +90359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/938062-a924a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/938062-a924a3.png" }, { "if": { @@ -90175,7 +90375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watersuppliesdepartment-e2749b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-e2749b.jpg" }, { "if": { @@ -90191,7 +90391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firthconcrete-3369b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firthconcrete-3369b6.jpg" }, { "if": { @@ -90206,7 +90406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristolwater-237d50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristolwater-237d50.jpg" }, { "if": { @@ -90223,7 +90423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishwater-48be47.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishwater-48be47.jpg" }, { "if": { @@ -90239,7 +90439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-57bade.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-57bade.jpg" }, { "if": { @@ -90255,7 +90455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-7ff67e.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-7ff67e.png" }, { "if": { @@ -90270,7 +90470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernirelandwater-7dc8bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernirelandwater-7dc8bd.jpg" }, { "if": { @@ -90285,7 +90485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishwater-e8c2ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/scottishwater-e8c2ca.png" }, { "if": { @@ -90300,7 +90500,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestwater-237d50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwestwater-237d50.jpg" }, { "if": { @@ -90317,7 +90517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welshwater-8746b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welshwater-8746b0.jpg" }, { "if": { @@ -90332,7 +90532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wessexwater-237d50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wessexwater-237d50.jpg" }, { "if": { @@ -90348,7 +90548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clubalpinoitaliano-3400e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/clubalpinoitaliano-3400e1.png" }, { "if": { @@ -90363,7 +90563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eredes-3edaec.png" + "then": "https://data.mapcomplete.org/nsi//logos/eredes-3edaec.png" }, { "if": { @@ -90378,7 +90578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elpedison-d62fd2.png" + "then": "https://data.mapcomplete.org/nsi//logos/elpedison-d62fd2.png" }, { "if": { @@ -90393,7 +90593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-6c94a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-6c94a9.png" }, { "if": { @@ -90408,7 +90608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-39d306.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-39d306.png" }, { "if": { @@ -90423,7 +90623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/02fa7d-8661b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/02fa7d-8661b0.png" }, { "if": { @@ -90438,7 +90638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-39d306.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-39d306.jpg" }, { "if": { @@ -90453,7 +90653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogy-157631.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/innogy-157631.jpg" }, { "if": { @@ -90469,7 +90669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-5c8e71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-5c8e71.jpg" }, { "if": { @@ -90485,7 +90685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralastateelectricityboard-cedd8d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-cedd8d.jpg" }, { "if": { @@ -90500,7 +90700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturgy-e15d8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturgy-e15d8a.jpg" }, { "if": { @@ -90515,7 +90715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicpowercorporationsa-d62fd2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicpowercorporationsa-d62fd2.jpg" }, { "if": { @@ -90530,7 +90730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-7c1c4a.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-7c1c4a.png" }, { "if": { @@ -90545,24 +90745,24 @@ } ] }, - "then": "./assets/data/nsi/logos/unionelectricadecuba-602d88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unionelectricadecuba-602d88.jpg" }, { "if": { "and": [ "office=energy_supplier", - "official_name=Електрохолд Продажби", { "or": [ "alt_name=ЕРМ Запад", "name=Електрохолд", + "official_name=Електрохолд Продажби", "operator=Електрохолд", "operator:wikidata=Q61140077" ] } ] }, - "then": "./assets/data/nsi/logos/0d7f82-8661b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/0d7f82-8661b0.jpg" }, { "if": { @@ -90577,7 +90777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/2dfabb-8661b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/2dfabb-8661b0.png" }, { "if": { @@ -90598,7 +90798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taipower-cce231.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taipower-cce231.jpg" }, { "if": { @@ -90617,7 +90817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tepco-374039.png" + "then": "https://data.mapcomplete.org/nsi//logos/tepco-374039.png" }, { "if": { @@ -90636,7 +90836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kepco-374039.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kepco-374039.jpg" }, { "if": { @@ -90652,7 +90852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/administracionfederaldeingresospublicos-cc6da1.png" + "then": "https://data.mapcomplete.org/nsi//logos/administracionfederaldeingresospublicos-cc6da1.png" }, { "if": { @@ -90671,7 +90871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agencedesservicesfrontaliersducanada-00acfa.png" + "then": "https://data.mapcomplete.org/nsi//logos/agencedesservicesfrontaliersducanada-00acfa.png" }, { "if": { @@ -90685,7 +90885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ajuntamentdebarcelona-c7b087.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-c7b087.svg" }, { "if": { @@ -90700,7 +90900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anses-cc6da1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/anses-cc6da1.jpg" }, { "if": { @@ -90715,7 +90915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autobahngmbh-c58ea0.png" + "then": "https://data.mapcomplete.org/nsi//logos/autobahngmbh-c58ea0.png" }, { "if": { @@ -90731,7 +90931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/automobileclubditalia-52677d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/automobileclubditalia-52677d.jpg" }, { "if": { @@ -90745,7 +90945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/autoridadnacionaldelagua-b5f2e9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/autoridadnacionaldelagua-b5f2e9.jpg" }, { "if": { @@ -90760,7 +90960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belastingdienst-9dbfcd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/belastingdienst-9dbfcd.svg" }, { "if": { @@ -90774,7 +90974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belgischefederaleregeringgouvernementfederalbelgebelgischefoderaleregierung-81c06d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/belgischefederaleregeringgouvernementfederalbelgebelgischefoderaleregierung-81c06d.svg" }, { "if": { @@ -90789,7 +90989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundesanstalttechnischeshilfswerk-c58ea0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundesanstalttechnischeshilfswerk-c58ea0.jpg" }, { "if": { @@ -90807,7 +91007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauofcustoms-7987d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/bureauofcustoms-7987d4.png" }, { "if": { @@ -90825,7 +91025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauoffisheriesandaquaticresources-7987d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauoffisheriesandaquaticresources-7987d4.svg" }, { "if": { @@ -90843,7 +91043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauofimmigration-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauofimmigration-7987d4.jpg" }, { "if": { @@ -90861,7 +91061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauofinternalrevenue-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bureauofinternalrevenue-7987d4.jpg" }, { "if": { @@ -90879,7 +91079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bureauofjailmanagementandpenology-7987d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/bureauofjailmanagementandpenology-7987d4.png" }, { "if": { @@ -90894,7 +91094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofforestryandfireprotection-2a14ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofforestryandfireprotection-2a14ff.jpg" }, { "if": { @@ -90910,7 +91110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiadepartmentofmotorvehicles-2a14ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofmotorvehicles-2a14ff.jpg" }, { "if": { @@ -90929,7 +91129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadaborderservicesagency-84c35e.png" + "then": "https://data.mapcomplete.org/nsi//logos/canadaborderservicesagency-84c35e.png" }, { "if": { @@ -90947,7 +91147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/civilservicecommission-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/civilservicecommission-7987d4.jpg" }, { "if": { @@ -90963,7 +91163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consejonacionalelectoral-b90a8d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/consejonacionalelectoral-b90a8d.svg" }, { "if": { @@ -90981,7 +91181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commissiononelections-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commissiononelections-7987d4.jpg" }, { "if": { @@ -90999,7 +91199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commissiononhighereducation-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commissiononhighereducation-7987d4.jpg" }, { "if": { @@ -91017,7 +91217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commissiononhumanrights-7987d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/commissiononhumanrights-7987d4.png" }, { "if": { @@ -91032,7 +91232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/companhiadeaguaeesgotodoceara-efa52e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/companhiadeaguaeesgotodoceara-efa52e.jpg" }, { "if": { @@ -91048,7 +91248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/connecticutdepartmentofmotorvehicles-5b0fd8.png" + "then": "https://data.mapcomplete.org/nsi//logos/connecticutdepartmentofmotorvehicles-5b0fd8.png" }, { "if": { @@ -91063,7 +91263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpodebombeirosmilitardesantacatarina-a702cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpodebombeirosmilitardesantacatarina-a702cf.png" }, { "if": { @@ -91081,7 +91281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofagriculture-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofagriculture-7987d4.jpg" }, { "if": { @@ -91099,7 +91299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofeducation-7987d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofeducation-7987d4.svg" }, { "if": { @@ -91117,7 +91317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofenvironmentandnaturalresources-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofenvironmentandnaturalresources-7987d4.jpg" }, { "if": { @@ -91134,7 +91334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofforeignaffairs-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofforeignaffairs-7987d4.jpg" }, { "if": { @@ -91152,7 +91352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofhealth-7987d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofhealth-7987d4.svg" }, { "if": { @@ -91167,7 +91367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofhomeaffairs-efe93a.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofhomeaffairs-efe93a.png" }, { "if": { @@ -91183,7 +91383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofhomelandsecurity-eaa288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofhomelandsecurity-eaa288.jpg" }, { "if": { @@ -91200,7 +91400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentoflaborandemployment-7987d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentoflaborandemployment-7987d4.svg" }, { "if": { @@ -91218,7 +91418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofpublicworksandhighways-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofpublicworksandhighways-7987d4.jpg" }, { "if": { @@ -91235,7 +91435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofscienceandtechnology-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofscienceandtechnology-7987d4.jpg" }, { "if": { @@ -91253,7 +91453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofsocialwelfareanddevelopment-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofsocialwelfareanddevelopment-7987d4.jpg" }, { "if": { @@ -91271,7 +91471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentoftheinteriorandlocalgovernment-7987d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentoftheinteriorandlocalgovernment-7987d4.png" }, { "if": { @@ -91289,7 +91489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentoftradeandindustry-7987d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentoftradeandindustry-7987d4.png" }, { "if": { @@ -91303,7 +91503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentoftransportandmainroads-1b54b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/departmentoftransportandmainroads-1b54b2.jpg" }, { "if": { @@ -91318,7 +91518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutscherbundestag-c58ea0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/deutscherbundestag-c58ea0.svg" }, { "if": { @@ -91333,7 +91533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/driverandvehiclestandardsagency-3cd046.png" + "then": "https://data.mapcomplete.org/nsi//logos/driverandvehiclestandardsagency-3cd046.png" }, { "if": { @@ -91349,7 +91549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/federalbureauofinvestigation-eaa288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/federalbureauofinvestigation-eaa288.jpg" }, { "if": { @@ -91363,7 +91563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/financnaspravaslovenskejrepubliky-18bdcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/financnaspravaslovenskejrepubliky-18bdcf.jpg" }, { "if": { @@ -91379,7 +91579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridadepartmentofhighwaysafetyandmotorvehicles-75d2a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridadepartmentofhighwaysafetyandmotorvehicles-75d2a7.png" }, { "if": { @@ -91393,7 +91593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/freistaatbayern-bab14c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/freistaatbayern-bab14c.jpg" }, { "if": { @@ -91407,7 +91607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gendarmeria-974d55.png" + "then": "https://data.mapcomplete.org/nsi//logos/gendarmeria-974d55.png" }, { "if": { @@ -91421,7 +91621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalitatdecatalunya-f19bf1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/generalitatdecatalunya-f19bf1.jpg" }, { "if": { @@ -91435,7 +91635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gobiernodeespana-f19bf1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gobiernodeespana-f19bf1.svg" }, { "if": { @@ -91453,7 +91653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/governmentserviceinsurancesystem-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/governmentserviceinsurancesystem-7987d4.jpg" }, { "if": { @@ -91467,7 +91667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hayuntamientodeciudadvalles-877419.png" + "then": "https://data.mapcomplete.org/nsi//logos/hayuntamientodeciudadvalles-877419.png" }, { "if": { @@ -91481,7 +91681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansestadtlubeck-d9ea25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hansestadtlubeck-d9ea25.svg" }, { "if": { @@ -91496,7 +91696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/healthserviceexecutive-7f4a2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/healthserviceexecutive-7f4a2e.jpg" }, { "if": { @@ -91510,7 +91710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illinoissecretaryofstate-4714be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/illinoissecretaryofstate-4714be.jpg" }, { "if": { @@ -91526,7 +91726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutonacionaldosegurosocial-efa52e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/institutonacionaldosegurosocial-efa52e.svg" }, { "if": { @@ -91542,7 +91742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/insurancecorporationofbritishcolumbia-e8231b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/insurancecorporationofbritishcolumbia-e8231b.jpg" }, { "if": { @@ -91558,7 +91758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/internalrevenueservice-eaa288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/internalrevenueservice-eaa288.jpg" }, { "if": { @@ -91574,7 +91774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iowadepartmentoftransportation-1af1d0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/iowadepartmentoftransportation-1af1d0.svg" }, { "if": { @@ -91590,7 +91790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jabatanimigresenmalaysia-e4510b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jabatanimigresenmalaysia-e4510b.svg" }, { "if": { @@ -91606,7 +91806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jabatanpengangkutanjalan-e4510b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jabatanpengangkutanjalan-e4510b.jpg" }, { "if": { @@ -91620,7 +91820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadeandalucia-f19bf1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-f19bf1.jpg" }, { "if": { @@ -91634,7 +91834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juntadecastillayleon-f19bf1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/juntadecastillayleon-f19bf1.svg" }, { "if": { @@ -91648,7 +91848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kantonbasellandschaft-e127b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/kantonbasellandschaft-e127b9.png" }, { "if": { @@ -91664,7 +91864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-2a14ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-2a14ff.png" }, { "if": { @@ -91682,7 +91882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landtransportationfranchisingandregulatoryboard-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landtransportationfranchisingandregulatoryboard-7987d4.jpg" }, { "if": { @@ -91700,7 +91900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landtransportationoffice-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landtransportationoffice-7987d4.jpg" }, { "if": { @@ -91714,7 +91914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landeshauptstadtsaarbrucken-ce5de2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtsaarbrucken-ce5de2.svg" }, { "if": { @@ -91730,7 +91930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landesamtfurgeoinformationundlandesvermessungniedersachsen-d4346f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/landesamtfurgeoinformationundlandesvermessungniedersachsen-d4346f.svg" }, { "if": { @@ -91746,7 +91946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylandmotorvehicleadministration-ac5917.png" + "then": "https://data.mapcomplete.org/nsi//logos/marylandmotorvehicleadministration-ac5917.png" }, { "if": { @@ -91761,7 +91961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marylandstatepolice-ac5917.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marylandstatepolice-ac5917.jpg" }, { "if": { @@ -91775,7 +91975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/michigansecretaryofstate-3e8496.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/michigansecretaryofstate-3e8496.jpg" }, { "if": { @@ -91789,7 +91989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodecienciatecnologiaymedioambiente-a67644.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodecienciatecnologiaymedioambiente-a67644.svg" }, { "if": { @@ -91803,7 +92003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodeinterioryjusticia-b90a8d.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodeinterioryjusticia-b90a8d.png" }, { "if": { @@ -91817,7 +92017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministeriodesalud-7b455f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-7b455f.jpg" }, { "if": { @@ -91833,7 +92033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstvoinvesticiiregionalnehorozvojaainformatizacieslovenskejrepubliky-18bdcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstvoinvesticiiregionalnehorozvojaainformatizacieslovenskejrepubliky-18bdcf.jpg" }, { "if": { @@ -91849,7 +92049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstvopracesocialnychveciarodinyslovenskejrepubliky-18bdcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstvopracesocialnychveciarodinyslovenskejrepubliky-18bdcf.jpg" }, { "if": { @@ -91864,7 +92064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstvovnutraslovenskejrepubliky-18bdcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstvovnutraslovenskejrepubliky-18bdcf.jpg" }, { "if": { @@ -91880,7 +92080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministerstvozivotnehoprostrediaslovenskejrepubliky-18bdcf.png" + "then": "https://data.mapcomplete.org/nsi//logos/ministerstvozivotnehoprostrediaslovenskejrepubliky-18bdcf.png" }, { "if": { @@ -91894,7 +92094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/missouridepartmentofrevenue-3e8496.png" + "then": "https://data.mapcomplete.org/nsi//logos/missouridepartmentofrevenue-3e8496.png" }, { "if": { @@ -91908,7 +92108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddecordoba-8e912f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddecordoba-8e912f.jpg" }, { "if": { @@ -91922,7 +92122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddeneuquen-7c2695.png" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-7c2695.png" }, { "if": { @@ -91936,7 +92136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/municipalidaddesanmartin-a0c9ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/municipalidaddesanmartin-a0c9ea.png" }, { "if": { @@ -91952,7 +92152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newmexicomotorvehicledivision-5098d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newmexicomotorvehicledivision-5098d2.jpg" }, { "if": { @@ -91968,7 +92168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/najvyssikontrolnyuradslovenskejrepubliky-18bdcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/najvyssikontrolnyuradslovenskejrepubliky-18bdcf.jpg" }, { "if": { @@ -91984,7 +92184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/narodnyinspektoratprace-18bdcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/narodnyinspektoratprace-18bdcf.jpg" }, { "if": { @@ -92002,7 +92202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalbureauofinvestigation-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalbureauofinvestigation-7987d4.jpg" }, { "if": { @@ -92020,7 +92220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalcommissiononindigenouspeoples-7987d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalcommissiononindigenouspeoples-7987d4.png" }, { "if": { @@ -92038,7 +92238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaldisasterriskreductionandmanagementcouncil-7987d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaldisasterriskreductionandmanagementcouncil-7987d4.svg" }, { "if": { @@ -92056,7 +92256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaleconomicanddevelopmentauthority-7987d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaleconomicanddevelopmentauthority-7987d4.svg" }, { "if": { @@ -92074,7 +92274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalpolicecommission-7987d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalpolicecommission-7987d4.png" }, { "if": { @@ -92092,7 +92292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationaltelecommunicationscommission-7987d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationaltelecommunicationscommission-7987d4.svg" }, { "if": { @@ -92108,7 +92308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalweatherservice-eaa288.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalweatherservice-eaa288.png" }, { "if": { @@ -92124,7 +92324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nevadadepartmentofmotorvehicles-331b92.png" + "then": "https://data.mapcomplete.org/nsi//logos/nevadadepartmentofmotorvehicles-331b92.png" }, { "if": { @@ -92140,7 +92340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkstatedepartmentofmotorvehicles-b00967.png" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofmotorvehicles-b00967.png" }, { "if": { @@ -92156,7 +92356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newjerseymotorvehiclecommission-7de197.png" + "then": "https://data.mapcomplete.org/nsi//logos/newjerseymotorvehiclecommission-7de197.png" }, { "if": { @@ -92170,7 +92370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nswruralfireservice-6e393a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nswruralfireservice-6e393a.jpg" }, { "if": { @@ -92186,7 +92386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiobureauofmotorvehicles-e18323.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiobureauofmotorvehicles-e18323.jpg" }, { "if": { @@ -92202,7 +92402,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oregondepartmentofhumanservices-244100.png" + "then": "https://data.mapcomplete.org/nsi//logos/oregondepartmentofhumanservices-244100.png" }, { "if": { @@ -92217,7 +92417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/panstwowastrazpozarna-995fc9.png" + "then": "https://data.mapcomplete.org/nsi//logos/panstwowastrazpozarna-995fc9.png" }, { "if": { @@ -92235,7 +92435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/philippineportsauthority-7987d4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/philippineportsauthority-7987d4.svg" }, { "if": { @@ -92253,7 +92453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/professionalregulationcommission-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/professionalregulationcommission-7987d4.jpg" }, { "if": { @@ -92267,7 +92467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/receitafederaldobrasil-efa52e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/receitafederaldobrasil-efa52e.jpg" }, { "if": { @@ -92283,7 +92483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarenministeriodeinterioryjusticia-b90a8d.png" + "then": "https://data.mapcomplete.org/nsi//logos/sarenministeriodeinterioryjusticia-b90a8d.png" }, { "if": { @@ -92297,7 +92497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/servicecanada-c369f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/servicecanada-c369f1.jpg" }, { "if": { @@ -92314,7 +92514,7 @@ } ] }, - "then": "./assets/data/nsi/logos/socialsecurityadministration-eaa288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/socialsecurityadministration-eaa288.jpg" }, { "if": { @@ -92332,7 +92532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/socialsecuritysystem-7987d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/socialsecuritysystem-7987d4.jpg" }, { "if": { @@ -92349,7 +92549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southafricanrevenueservice-efe93a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southafricanrevenueservice-efe93a.jpg" }, { "if": { @@ -92364,7 +92564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southdakotadepartmentofpublicsafety-b4f9cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/southdakotadepartmentofpublicsafety-b4f9cc.png" }, { "if": { @@ -92378,7 +92578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtaugsburg-bab14c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtaugsburg-bab14c.svg" }, { "if": { @@ -92392,7 +92592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtbielefeld-7646da.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtbielefeld-7646da.png" }, { "if": { @@ -92407,7 +92607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sureteduquebec-00acfa.png" + "then": "https://data.mapcomplete.org/nsi//logos/sureteduquebec-00acfa.png" }, { "if": { @@ -92423,7 +92623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasdepartmentofmotorvehicles-c28928.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/texasdepartmentofmotorvehicles-c28928.jpg" }, { "if": { @@ -92440,7 +92640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatescustomsandborderprotection-eaa288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatescustomsandborderprotection-eaa288.jpg" }, { "if": { @@ -92455,7 +92655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesgeologicalsurvey-eaa288.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesgeologicalsurvey-eaa288.jpg" }, { "if": { @@ -92471,7 +92671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontdepartmentofmotorvehicles-e8b2d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontdepartmentofmotorvehicles-e8b2d3.jpg" }, { "if": { @@ -92487,7 +92687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/virginiadepartmentofmotorvehicles-74923a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentofmotorvehicles-74923a.jpg" }, { "if": { @@ -92501,7 +92701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xuntadegalicia-f19bf1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xuntadegalicia-f19bf1.jpg" }, { "if": { @@ -92516,7 +92716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ff615c-8d3c9a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ff615c-8d3c9a.png" }, { "if": { @@ -92530,7 +92730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c2eee5-8d3c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c2eee5-8d3c9a.jpg" }, { "if": { @@ -92544,7 +92744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/144fef-8d3c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/144fef-8d3c9a.jpg" }, { "if": { @@ -92559,7 +92759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/24960f-8d3c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/24960f-8d3c9a.jpg" }, { "if": { @@ -92573,7 +92773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/57670d-8d3c9a.png" + "then": "https://data.mapcomplete.org/nsi//logos/57670d-8d3c9a.png" }, { "if": { @@ -92588,7 +92788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/5494fb-8d3c9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/5494fb-8d3c9a.jpg" }, { "if": { @@ -92613,7 +92813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leplpublicservicehall-9d46cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/leplpublicservicehall-9d46cb.png" }, { "if": { @@ -92628,7 +92828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vfsglobal-3aff24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vfsglobal-3aff24.jpg" }, { "if": { @@ -92643,7 +92843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dewatergroep-a32d06.png" + "then": "https://data.mapcomplete.org/nsi//logos/dewatergroep-a32d06.png" }, { "if": { @@ -92658,7 +92858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayniladwaterservices-306e90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-306e90.jpg" }, { "if": { @@ -92673,7 +92873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pidpa-a32d06.png" + "then": "https://data.mapcomplete.org/nsi//logos/pidpa-a32d06.png" }, { "if": { @@ -92690,7 +92890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-ed9ebd.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-ed9ebd.png" }, { "if": { @@ -92705,7 +92905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watercare-7cc3eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watercare-7cc3eb.jpg" }, { "if": { @@ -92720,7 +92920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41a232-0a36a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/41a232-0a36a3.jpg" }, { "if": { @@ -92735,7 +92935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/41df5e-0a36a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/41df5e-0a36a3.png" }, { "if": { @@ -92750,7 +92950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/423877-2a765c.png" + "then": "https://data.mapcomplete.org/nsi//logos/423877-2a765c.png" }, { "if": { @@ -92765,7 +92965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/938062-2a765c.png" + "then": "https://data.mapcomplete.org/nsi//logos/938062-2a765c.png" }, { "if": { @@ -92781,7 +92981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watersuppliesdepartment-b29262.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-b29262.jpg" }, { "if": { @@ -92795,7 +92995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/acea-bb421b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/acea-bb421b.jpg" }, { "if": { @@ -92809,7 +93009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airliquide-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/airliquide-03e08c.jpg" }, { "if": { @@ -92823,7 +93023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/airproducts-03e08c.png" + "then": "https://data.mapcomplete.org/nsi//logos/airproducts-03e08c.png" }, { "if": { @@ -92837,7 +93037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alyeskapipelineservicecompany-4e089c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alyeskapipelineservicecompany-4e089c.jpg" }, { "if": { @@ -92851,7 +93051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/angloamerican-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/angloamerican-03e08c.jpg" }, { "if": { @@ -92865,7 +93065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ankarasuvekanalizasyonidaresi-d39c59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ankarasuvekanalizasyonidaresi-d39c59.jpg" }, { "if": { @@ -92879,7 +93079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ascendperformancematerials-79a9ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/ascendperformancematerials-79a9ce.png" }, { "if": { @@ -92893,7 +93093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlantagaslight-8e8830.png" + "then": "https://data.mapcomplete.org/nsi//logos/atlantagaslight-8e8830.png" }, { "if": { @@ -92907,7 +93107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avacon-47dd0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avacon-47dd0d.jpg" }, { "if": { @@ -92921,7 +93121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayuntamientodezaragoza-c0b79c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ayuntamientodezaragoza-c0b79c.png" }, { "if": { @@ -92935,7 +93135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/badenova-47dd0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/badenova-47dd0d.svg" }, { "if": { @@ -92949,7 +93149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimorecitydepartmentofpublicworks-b96711.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimorecitydepartmentofpublicworks-b96711.jpg" }, { "if": { @@ -92963,7 +93163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/basf-961a21.png" + "then": "https://data.mapcomplete.org/nsi//logos/basf-961a21.png" }, { "if": { @@ -92978,7 +93178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-21cbc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-21cbc0.jpg" }, { "if": { @@ -92993,7 +93193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerwasserbetriebe-599929.png" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerwasserbetriebe-599929.png" }, { "if": { @@ -93007,7 +93207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/botas-d39c59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/botas-d39c59.jpg" }, { "if": { @@ -93021,7 +93221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-03e08c.jpg" }, { "if": { @@ -93035,7 +93235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bristolwater-7b0aaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bristolwater-7b0aaf.jpg" }, { "if": { @@ -93050,7 +93250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cadent-5737c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cadent-5737c5.jpg" }, { "if": { @@ -93064,7 +93264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caltex-fe28ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/caltex-fe28ca.jpg" }, { "if": { @@ -93078,7 +93278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-cbbbb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-cbbbb7.jpg" }, { "if": { @@ -93092,7 +93292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cez-ccffd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cez-ccffd7.jpg" }, { "if": { @@ -93106,7 +93306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofstaunton-9e1f3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofstaunton-9e1f3f.jpg" }, { "if": { @@ -93120,7 +93320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofvancouver-21cbc0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofvancouver-21cbc0.svg" }, { "if": { @@ -93134,7 +93334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cnr-4a5c8f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cnr-4a5c8f.jpg" }, { "if": { @@ -93148,7 +93348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colonialpipeline-cbbbb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/colonialpipeline-cbbbb7.png" }, { "if": { @@ -93162,7 +93362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/conagua-02fb83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/conagua-02fb83.jpg" }, { "if": { @@ -93176,7 +93376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-15c306.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-15c306.jpg" }, { "if": { @@ -93190,7 +93390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creosdeutschland-47dd0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creosdeutschland-47dd0d.jpg" }, { "if": { @@ -93204,7 +93404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dalkia-706135.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dalkia-706135.svg" }, { "if": { @@ -93218,7 +93418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dhakawasa-5e5bff.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dhakawasa-5e5bff.svg" }, { "if": { @@ -93232,7 +93432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/districtofcolumbiawaterandsewerauthority-7540e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/districtofcolumbiawaterandsewerauthority-7540e0.jpg" }, { "if": { @@ -93246,7 +93446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dowchemicalcompany-cbbbb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-cbbbb7.jpg" }, { "if": { @@ -93260,7 +93460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dsm-983549.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dsm-983549.svg" }, { "if": { @@ -93274,7 +93474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-9c139d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-9c139d.jpg" }, { "if": { @@ -93288,7 +93488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enetzsudhessen-47dd0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enetzsudhessen-47dd0d.svg" }, { "if": { @@ -93302,7 +93502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eregio-dfd0ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eregio-dfd0ce.jpg" }, { "if": { @@ -93316,7 +93516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edison-bb421b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edison-bb421b.jpg" }, { "if": { @@ -93331,7 +93531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-03e08c.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-03e08c.png" }, { "if": { @@ -93345,7 +93545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-0c79f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-0c79f8.jpg" }, { "if": { @@ -93359,7 +93559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enagas-03e08c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enagas-03e08c.svg" }, { "if": { @@ -93373,7 +93573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbridge-2e27a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enbridge-2e27a1.jpg" }, { "if": { @@ -93387,7 +93587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-47dd0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-47dd0d.png" }, { "if": { @@ -93401,7 +93601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-0e4881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-0e4881.jpg" }, { "if": { @@ -93415,7 +93615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-03e08c.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-03e08c.png" }, { "if": { @@ -93429,7 +93629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-03e08c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-03e08c.svg" }, { "if": { @@ -93443,7 +93643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelproduzione-bb421b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelproduzione-bb421b.svg" }, { "if": { @@ -93457,7 +93657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesaarlorlux-47dd0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiesaarlorlux-47dd0d.svg" }, { "if": { @@ -93472,7 +93672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieversorgungfilstal-3970e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieversorgungfilstal-3970e4.png" }, { "if": { @@ -93487,7 +93687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energir-16a4d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/energir-16a4d7.png" }, { "if": { @@ -93501,7 +93701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-03e08c.jpg" }, { "if": { @@ -93515,7 +93715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eni-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eni-03e08c.jpg" }, { "if": { @@ -93529,7 +93729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eogresources-cbbbb7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eogresources-cbbbb7.svg" }, { "if": { @@ -93543,7 +93743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equinor-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equinor-03e08c.jpg" }, { "if": { @@ -93557,7 +93757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erdgasostschweizag-03e5ba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/erdgasostschweizag-03e5ba.svg" }, { "if": { @@ -93571,7 +93771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erdgaszentralschweiz-c0f0d1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/erdgaszentralschweiz-c0f0d1.svg" }, { "if": { @@ -93585,7 +93785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbgenerationandwholesalemarkets-964520.svg" + "then": "https://data.mapcomplete.org/nsi//logos/esbgenerationandwholesalemarkets-964520.svg" }, { "if": { @@ -93599,7 +93799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esso-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/esso-03e08c.jpg" }, { "if": { @@ -93613,7 +93813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evideswaterbedrijf-983549.png" + "then": "https://data.mapcomplete.org/nsi//logos/evideswaterbedrijf-983549.png" }, { "if": { @@ -93627,7 +93827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-a158a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-a158a5.jpg" }, { "if": { @@ -93642,7 +93842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evolve-c929bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evolve-c929bc.jpg" }, { "if": { @@ -93656,7 +93856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewz-03e5ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewz-03e5ba.jpg" }, { "if": { @@ -93670,7 +93870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exolum-7ee736.svg" + "then": "https://data.mapcomplete.org/nsi//logos/exolum-7ee736.svg" }, { "if": { @@ -93684,7 +93884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exxonmobilpipelinecompany-075232.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exxonmobilpipelinecompany-075232.jpg" }, { "if": { @@ -93699,7 +93899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstgas-dddc03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstgas-dddc03.jpg" }, { "if": { @@ -93713,7 +93913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fluxys-0d984d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fluxys-0d984d.svg" }, { "if": { @@ -93727,7 +93927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortisbc-21cbc0.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortisbc-21cbc0.png" }, { "if": { @@ -93742,7 +93942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gail-4351eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/gail-4351eb.png" }, { "if": { @@ -93756,7 +93956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gasnetworksireland-00086a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gasnetworksireland-00086a.jpg" }, { "if": { @@ -93770,7 +93970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gascade-47dd0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gascade-47dd0d.svg" }, { "if": { @@ -93784,7 +93984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gassco-03e08c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gassco-03e08c.svg" }, { "if": { @@ -93798,7 +93998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gasum-03e08c.png" + "then": "https://data.mapcomplete.org/nsi//logos/gasum-03e08c.png" }, { "if": { @@ -93812,7 +94012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gasunie-983549.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gasunie-983549.svg" }, { "if": { @@ -93827,7 +94027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gasverbundmittellandag-03e5ba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gasverbundmittellandag-03e5ba.svg" }, { "if": { @@ -93841,7 +94041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gaznatsa-17e5f5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gaznatsa-17e5f5.svg" }, { "if": { @@ -93855,7 +94055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gazprom-03e08c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gazprom-03e08c.svg" }, { "if": { @@ -93869,7 +94069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindegrossheirath-32d0c9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindegrossheirath-32d0c9.svg" }, { "if": { @@ -93883,7 +94083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindeschonbrunn-3970e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindeschonbrunn-3970e4.svg" }, { "if": { @@ -93897,7 +94097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindetrabitz-32d0c9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindetrabitz-32d0c9.svg" }, { "if": { @@ -93911,7 +94111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gippslandwater-cba2a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gippslandwater-cba2a8.jpg" }, { "if": { @@ -93926,7 +94126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grosskraftwerkmannheim-3970e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/grosskraftwerkmannheim-3970e4.svg" }, { "if": { @@ -93940,7 +94140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harzenergie-433a4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harzenergie-433a4c.jpg" }, { "if": { @@ -93954,7 +94154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hesscorporation-075232.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hesscorporation-075232.jpg" }, { "if": { @@ -93968,7 +94168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-16a4d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-16a4d7.png" }, { "if": { @@ -93982,7 +94182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-a158a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-a158a5.png" }, { "if": { @@ -93996,7 +94196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialoil-baa3c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialoil-baa3c0.jpg" }, { "if": { @@ -94010,7 +94210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ina-38d7d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ina-38d7d1.jpg" }, { "if": { @@ -94024,7 +94224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ineosusa-cbbbb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ineosusa-cbbbb7.jpg" }, { "if": { @@ -94038,7 +94238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/internationalpaper-cbbbb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/internationalpaper-cbbbb7.jpg" }, { "if": { @@ -94053,7 +94253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iocl-4351eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/iocl-4351eb.png" }, { "if": { @@ -94069,7 +94269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishwater-00086a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishwater-00086a.jpg" }, { "if": { @@ -94083,7 +94283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irvingoil-2e27a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irvingoil-2e27a1.jpg" }, { "if": { @@ -94098,7 +94298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/istanbulsuvekanalizasyonidaresi-d39c59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/istanbulsuvekanalizasyonidaresi-d39c59.jpg" }, { "if": { @@ -94113,7 +94313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlsruherinstitutfurtechnologie-3970e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karlsruherinstitutfurtechnologie-3970e4.jpg" }, { "if": { @@ -94127,7 +94327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-4d2223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-4d2223.jpg" }, { "if": { @@ -94141,7 +94341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kindermorgan-2e27a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/kindermorgan-2e27a1.png" }, { "if": { @@ -94156,7 +94356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-2a0bd0.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-2a0bd0.png" }, { "if": { @@ -94170,7 +94370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linde-cbbbb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/linde-cbbbb7.png" }, { "if": { @@ -94184,7 +94384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mancomunidaddeloscanalesdeltaibilla-0e4881.png" + "then": "https://data.mapcomplete.org/nsi//logos/mancomunidaddeloscanalesdeltaibilla-0e4881.png" }, { "if": { @@ -94198,7 +94398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonoil-15c306.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonoil-15c306.svg" }, { "if": { @@ -94212,7 +94412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonpipeline-cbbbb7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonpipeline-cbbbb7.svg" }, { "if": { @@ -94226,7 +94426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mayniladwaterservices-4097bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-4097bd.jpg" }, { "if": { @@ -94240,7 +94440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memorialuniversity-ae59ea.svg" + "then": "https://data.mapcomplete.org/nsi//logos/memorialuniversity-ae59ea.svg" }, { "if": { @@ -94255,7 +94455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphislightgasandwater-67a7c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-67a7c7.jpg" }, { "if": { @@ -94270,7 +94470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolitanwaterdistrictofsoutherncalifornia-2125b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolitanwaterdistrictofsoutherncalifornia-2125b6.jpg" }, { "if": { @@ -94284,7 +94484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mol-1cc3f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/mol-1cc3f6.png" }, { "if": { @@ -94298,7 +94498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/motivaenterprises-cbbbb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/motivaenterprises-cbbbb7.png" }, { "if": { @@ -94312,7 +94512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturgy-0e4881.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturgy-0e4881.jpg" }, { "if": { @@ -94326,7 +94526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzno-a158a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netzno-a158a5.jpg" }, { "if": { @@ -94341,7 +94541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzesudwest-3970e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/netzesudwest-3970e4.png" }, { "if": { @@ -94355,7 +94555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nicorgas-cbbbb7.png" + "then": "https://data.mapcomplete.org/nsi//logos/nicorgas-cbbbb7.png" }, { "if": { @@ -94370,7 +94570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordwestoelleitunggmbh-26df3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordwestoelleitunggmbh-26df3e.jpg" }, { "if": { @@ -94384,7 +94584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernirelandwater-c929bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernirelandwater-c929bc.jpg" }, { "if": { @@ -94398,7 +94598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-5f8fb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-5f8fb7.jpg" }, { "if": { @@ -94412,7 +94612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-fc7ec3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-fc7ec3.jpg" }, { "if": { @@ -94426,7 +94626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nukissiorfiit-5901b9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-5901b9.jpg" }, { "if": { @@ -94441,7 +94641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nwnatural-9fbe40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nwnatural-9fbe40.jpg" }, { "if": { @@ -94455,7 +94655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obb-a158a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obb-a158a5.jpg" }, { "if": { @@ -94469,7 +94669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oiltankingdeutschlandgmbhandcokg-47dd0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/oiltankingdeutschlandgmbhandcokg-47dd0d.svg" }, { "if": { @@ -94483,7 +94683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omv-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/omv-03e08c.jpg" }, { "if": { @@ -94497,7 +94697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oneok-cbbbb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oneok-cbbbb7.jpg" }, { "if": { @@ -94511,7 +94711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontras-47dd0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ontras-47dd0d.svg" }, { "if": { @@ -94526,7 +94726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/opengrideuropegmbh-03e08c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/opengrideuropegmbh-03e08c.svg" }, { "if": { @@ -94540,7 +94740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orkanatturunnar-b95f4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/orkanatturunnar-b95f4c.png" }, { "if": { @@ -94555,7 +94755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-2125b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-2125b6.png" }, { "if": { @@ -94569,7 +94769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pemex-02fb83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pemex-02fb83.jpg" }, { "if": { @@ -94583,7 +94783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pennsylvaniastateuniversity-3a2dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pennsylvaniastateuniversity-3a2dd1.jpg" }, { "if": { @@ -94597,7 +94797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrobras-0efc1c.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrobras-0efc1c.png" }, { "if": { @@ -94611,7 +94811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroecuador-81ae8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroecuador-81ae8e.jpg" }, { "if": { @@ -94625,7 +94825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/phillips66-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/phillips66-03e08c.jpg" }, { "if": { @@ -94639,7 +94839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/piedmontnaturalgascompany-e18127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/piedmontnaturalgascompany-e18127.jpg" }, { "if": { @@ -94653,7 +94853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/plzenskateplarenskaas-ccffd7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/plzenskateplarenskaas-ccffd7.jpg" }, { "if": { @@ -94668,7 +94868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerco-dddc03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerco-dddc03.jpg" }, { "if": { @@ -94682,7 +94882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/preem-6502da.png" + "then": "https://data.mapcomplete.org/nsi//logos/preem-6502da.png" }, { "if": { @@ -94696,7 +94896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qgc-0331bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/qgc-0331bf.png" }, { "if": { @@ -94710,7 +94910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ragaustria-a158a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ragaustria-a158a5.jpg" }, { "if": { @@ -94724,7 +94924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ren-fe4ad6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ren-fe4ad6.svg" }, { "if": { @@ -94739,7 +94939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinmainrohrleitungstransportgesellschaft-47dd0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rheinmainrohrleitungstransportgesellschaft-47dd0d.jpg" }, { "if": { @@ -94753,7 +94953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-7d59ca.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-7d59ca.svg" }, { "if": { @@ -94767,7 +94967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-706135.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-706135.jpg" }, { "if": { @@ -94781,7 +94981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sawater-137d4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sawater-137d4e.jpg" }, { "if": { @@ -94795,7 +94995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sabesp-1902d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sabesp-1902d2.jpg" }, { "if": { @@ -94809,7 +95009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-e6f7d6.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-e6f7d6.png" }, { "if": { @@ -94825,7 +95025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbbcff-03e5ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbbcff-03e5ba.png" }, { "if": { @@ -94839,7 +95039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-63650c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-63650c.svg" }, { "if": { @@ -94853,7 +95053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishwater-5f4966.png" + "then": "https://data.mapcomplete.org/nsi//logos/scottishwater-5f4966.png" }, { "if": { @@ -94869,7 +95069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlepublicutilities-5fe888.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-5fe888.png" }, { "if": { @@ -94883,7 +95083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seqwater-0331bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seqwater-0331bf.jpg" }, { "if": { @@ -94897,7 +95097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/severntrent-5737c5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/severntrent-5737c5.svg" }, { "if": { @@ -94911,7 +95111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shell-03e08c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shell-03e08c.jpg" }, { "if": { @@ -94925,7 +95125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shelldeutschland-47dd0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/shelldeutschland-47dd0d.png" }, { "if": { @@ -94939,7 +95139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shem-4a5c8f.png" + "then": "https://data.mapcomplete.org/nsi//logos/shem-4a5c8f.png" }, { "if": { @@ -94953,7 +95153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snowyhydro-2fb7da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snowyhydro-2fb7da.jpg" }, { "if": { @@ -94967,7 +95167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-1d7473.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-1d7473.jpg" }, { "if": { @@ -94982,7 +95182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniagascompany-2125b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniagascompany-2125b6.jpg" }, { "if": { @@ -94997,7 +95197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestgas-5b19b8.png" + "then": "https://data.mapcomplete.org/nsi//logos/southwestgas-5b19b8.png" }, { "if": { @@ -95011,7 +95211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spacex-cbbbb7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/spacex-cbbbb7.svg" }, { "if": { @@ -95025,7 +95225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sse-03e08c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sse-03e08c.png" }, { "if": { @@ -95041,7 +95241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtentwasserungstuttgart-3970e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtentwasserungstuttgart-3970e4.svg" }, { "if": { @@ -95055,7 +95255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegoch-dfd0ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegoch-dfd0ce.png" }, { "if": { @@ -95069,7 +95269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkejena-dc7419.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkejena-dc7419.png" }, { "if": { @@ -95083,7 +95283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelubeck-63650c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-63650c.jpg" }, { "if": { @@ -95098,7 +95298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-32d0c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-32d0c9.jpg" }, { "if": { @@ -95112,7 +95312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeschwetzingen-3970e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeschwetzingen-3970e4.jpg" }, { "if": { @@ -95126,7 +95326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerketreuchtlingen-32d0c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerketreuchtlingen-32d0c9.png" }, { "if": { @@ -95140,7 +95340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissgas-03e5ba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/swissgas-03e5ba.svg" }, { "if": { @@ -95154,7 +95354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydneywater-db32ff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sydneywater-db32ff.jpg" }, { "if": { @@ -95168,7 +95368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tcenergycorporation-06fef8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tcenergycorporation-06fef8.svg" }, { "if": { @@ -95183,7 +95383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terranetsbwgmbh-3970e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/terranetsbwgmbh-3970e4.svg" }, { "if": { @@ -95197,7 +95397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tgssa-f2a8db.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tgssa-f2a8db.svg" }, { "if": { @@ -95211,7 +95411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thameswater-5737c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thameswater-5737c5.jpg" }, { "if": { @@ -95226,7 +95426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thyssengas-dfd0ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thyssengas-dfd0ce.jpg" }, { "if": { @@ -95240,7 +95440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thyssenkruppsteel-dfd0ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/thyssenkruppsteel-dfd0ce.png" }, { "if": { @@ -95254,7 +95454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/totalenergies-03e08c.png" + "then": "https://data.mapcomplete.org/nsi//logos/totalenergies-03e08c.png" }, { "if": { @@ -95268,7 +95468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tpcgroup-15c306.png" + "then": "https://data.mapcomplete.org/nsi//logos/tpcgroup-15c306.png" }, { "if": { @@ -95282,7 +95482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transpetrol-0d789f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transpetrol-0d789f.svg" }, { "if": { @@ -95296,7 +95496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniper-706135.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniper-706135.png" }, { "if": { @@ -95310,7 +95510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedutilities-d20081.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedutilities-d20081.svg" }, { "if": { @@ -95324,7 +95524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitil-cdce47.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitil-cdce47.png" }, { "if": { @@ -95338,7 +95538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unocalcorporation-fbf18f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unocalcorporation-fbf18f.svg" }, { "if": { @@ -95352,7 +95552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valero-011eb6.png" + "then": "https://data.mapcomplete.org/nsi//logos/valero-011eb6.png" }, { "if": { @@ -95366,7 +95566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-46989b.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-46989b.png" }, { "if": { @@ -95380,7 +95580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-47dd0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-47dd0d.png" }, { "if": { @@ -95394,7 +95594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-30982d.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-30982d.png" }, { "if": { @@ -95408,7 +95608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfallnederland-983549.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfallnederland-983549.png" }, { "if": { @@ -95422,7 +95622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-6502da.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-6502da.png" }, { "if": { @@ -95436,7 +95636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfallunitedkingdom-d20081.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfallunitedkingdom-d20081.png" }, { "if": { @@ -95451,7 +95651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-dddc03.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-dddc03.png" }, { "if": { @@ -95465,7 +95665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-a158a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-a158a5.jpg" }, { "if": { @@ -95480,7 +95680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundnetzgas-47dd0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundnetzgas-47dd0d.svg" }, { "if": { @@ -95495,7 +95695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wasserversorgungbayerischerwald-32d0c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wasserversorgungbayerischerwald-32d0c9.jpg" }, { "if": { @@ -95509,7 +95709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watercare-a4487c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watercare-a4487c.jpg" }, { "if": { @@ -95523,7 +95723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welshwater-f02b92.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welshwater-f02b92.jpg" }, { "if": { @@ -95537,7 +95737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wessexwater-7b0aaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wessexwater-7b0aaf.jpg" }, { "if": { @@ -95551,7 +95751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westtexasgasutility-15c306.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westtexasgasutility-15c306.jpg" }, { "if": { @@ -95565,7 +95765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienernetze-a158a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienernetze-a158a5.png" }, { "if": { @@ -95579,7 +95779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/williams-cbbbb7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/williams-cbbbb7.jpg" }, { "if": { @@ -95593,7 +95793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wingasgmbhandcokg-47dd0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wingasgmbhandcokg-47dd0d.svg" }, { "if": { @@ -95608,7 +95808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsinpublicservicecorporation-ea69f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsinpublicservicecorporation-ea69f5.jpg" }, { "if": { @@ -95623,7 +95823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wuppertalerstadtwerke-dfd0ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wuppertalerstadtwerke-dfd0ce.jpg" }, { "if": { @@ -95637,7 +95837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xtoenergy-15c306.svg" + "then": "https://data.mapcomplete.org/nsi//logos/xtoenergy-15c306.svg" }, { "if": { @@ -95651,7 +95851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-45421b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-45421b.svg" }, { "if": { @@ -95665,7 +95865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ypfsa-f2a8db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ypfsa-f2a8db.jpg" }, { "if": { @@ -95680,7 +95880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zweckverbandbodenseewasserversorgung-3970e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zweckverbandbodenseewasserversorgung-3970e4.jpg" }, { "if": { @@ -95694,7 +95894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bb4e91-b34ac9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bb4e91-b34ac9.jpg" }, { "if": { @@ -95708,7 +95908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/71a366-b34ac9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/71a366-b34ac9.jpg" }, { "if": { @@ -95722,7 +95922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d08e33-b34ac9.png" + "then": "https://data.mapcomplete.org/nsi//logos/d08e33-b34ac9.png" }, { "if": { @@ -95738,7 +95938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/watersuppliesdepartment-dfcc55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-dfcc55.jpg" }, { "if": { @@ -95752,7 +95952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adif-3adfd3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adif-3adfd3.jpg" }, { "if": { @@ -95766,7 +95966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtrak-8f25d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtrak-8f25d0.jpg" }, { "if": { @@ -95780,7 +95980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banedanmark-4800c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/banedanmark-4800c7.png" }, { "if": { @@ -95794,7 +95994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bls-bbfe12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bls-bbfe12.jpg" }, { "if": { @@ -95808,7 +96008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnsfrailway-5ff56d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnsfrailway-5ff56d.jpg" }, { "if": { @@ -95823,7 +96023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiahighspeedrailauthority-b614de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiahighspeedrailauthority-b614de.jpg" }, { "if": { @@ -95837,7 +96037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadiannationalrailway-0c2e78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadiannationalrailway-0c2e78.jpg" }, { "if": { @@ -95851,7 +96051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadianpacifickansascity-76b8be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadianpacifickansascity-76b8be.jpg" }, { "if": { @@ -95866,7 +96066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskedrahy-e7d44b.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceskedrahy-e7d44b.png" }, { "if": { @@ -95880,7 +96080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cfrcalatori-7a5ea5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cfrcalatori-7a5ea5.jpg" }, { "if": { @@ -95894,7 +96094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comboiosdeportugal-58c517.png" + "then": "https://data.mapcomplete.org/nsi//logos/comboiosdeportugal-58c517.png" }, { "if": { @@ -95908,7 +96108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csx-5ff56d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/csx-5ff56d.svg" }, { "if": { @@ -95927,7 +96127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euskaltrenbidesarearedferroviariavasca-d62c9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/euskaltrenbidesarearedferroviariavasca-d62c9c.png" }, { "if": { @@ -95942,7 +96142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ferrocarrilsdelageneralitatdecatalunya-3adfd3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ferrocarrilsdelageneralitatdecatalunya-3adfd3.svg" }, { "if": { @@ -95958,7 +96158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alstom-5c4676.png" + "then": "https://data.mapcomplete.org/nsi//logos/alstom-5c4676.png" }, { "if": { @@ -95972,7 +96172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gysev-9b4488.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gysev-9b4488.jpg" }, { "if": { @@ -95986,7 +96186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianrailway-a8eb91.svg" + "then": "https://data.mapcomplete.org/nsi//logos/indianrailway-a8eb91.svg" }, { "if": { @@ -96000,7 +96200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infrabel-801411.png" + "then": "https://data.mapcomplete.org/nsi//logos/infrabel-801411.png" }, { "if": { @@ -96014,7 +96214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infraestruturasdeportugal-58c517.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/infraestruturasdeportugal-58c517.jpg" }, { "if": { @@ -96028,7 +96228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishrail-493e5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishrail-493e5d.jpg" }, { "if": { @@ -96047,7 +96247,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushurailwaycompany-9408c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kyushurailwaycompany-9408c5.jpg" }, { "if": { @@ -96066,7 +96266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastjapanrailwaycompany-9408c5.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-9408c5.png" }, { "if": { @@ -96085,7 +96285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westjapanrailwaycompany-9408c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westjapanrailwaycompany-9408c5.jpg" }, { "if": { @@ -96100,7 +96300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kenyarailways-8838c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/kenyarailways-8838c1.png" }, { "if": { @@ -96114,7 +96314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelescountymetropolitantransportationauthority-b614de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losangelescountymetropolitantransportationauthority-b614de.jpg" }, { "if": { @@ -96128,7 +96328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mav-9b4488.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mav-9b4488.svg" }, { "if": { @@ -96142,7 +96342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nederlandsespoorwegen-f24dc3.png" + "then": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-f24dc3.png" }, { "if": { @@ -96156,7 +96356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkrail-52d65d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkrail-52d65d.jpg" }, { "if": { @@ -96170,7 +96370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkcitytransitauthority-bde191.svg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkcitytransitauthority-bde191.svg" }, { "if": { @@ -96184,7 +96384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolksouthern-5ff56d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolksouthern-5ff56d.jpg" }, { "if": { @@ -96198,7 +96398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obb-744936.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obb-744936.jpg" }, { "if": { @@ -96212,7 +96412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/philippinenationalrailways-6b70e7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/philippinenationalrailways-6b70e7.svg" }, { "if": { @@ -96226,7 +96426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pkppolskieliniekolejowesa-f7e94c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pkppolskieliniekolejowesa-f7e94c.jpg" }, { "if": { @@ -96240,7 +96440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regiocalatori-7a5ea5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regiocalatori-7a5ea5.jpg" }, { "if": { @@ -96254,7 +96454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-4b4a6a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-4b4a6a.svg" }, { "if": { @@ -96268,7 +96468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rumosa-1ff1a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/rumosa-1ff1a5.png" }, { "if": { @@ -96282,7 +96482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-33be22.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-33be22.png" }, { "if": { @@ -96296,7 +96496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-604b3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-604b3c.png" }, { "if": { @@ -96310,7 +96510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-604b3c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-604b3c.png" }, { "if": { @@ -96324,7 +96524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spravazeleznicso-e7d44b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spravazeleznicso-e7d44b.jpg" }, { "if": { @@ -96338,7 +96538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tcdd-f9e75c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tcdd-f9e75c.jpg" }, { "if": { @@ -96352,7 +96552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trafikverket-0ff71a.png" + "then": "https://data.mapcomplete.org/nsi//logos/trafikverket-0ff71a.png" }, { "if": { @@ -96366,7 +96566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionpacificrailroad-5ff56d.png" + "then": "https://data.mapcomplete.org/nsi//logos/unionpacificrailroad-5ff56d.png" }, { "if": { @@ -96380,7 +96580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zsr-5fda63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zsr-5fda63.jpg" }, { "if": { @@ -96394,7 +96594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zssk-5fda63.png" + "then": "https://data.mapcomplete.org/nsi//logos/zssk-5fda63.png" }, { "if": { @@ -96408,7 +96608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b5cfb7-20c40a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/b5cfb7-20c40a.svg" }, { "if": { @@ -96422,7 +96622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afbfca-a81f47.png" + "then": "https://data.mapcomplete.org/nsi//logos/afbfca-a81f47.png" }, { "if": { @@ -96438,7 +96638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odesarailways-1f8b79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/odesarailways-1f8b79.jpg" }, { "if": { @@ -96454,7 +96654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russianrailways-61bcef.png" + "then": "https://data.mapcomplete.org/nsi//logos/russianrailways-61bcef.png" }, { "if": { @@ -96472,7 +96672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/korearailnetworkauthority-4699f2.png" + "then": "https://data.mapcomplete.org/nsi//logos/korearailnetworkauthority-4699f2.png" }, { "if": { @@ -96488,7 +96688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinarailway-452f47.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chinarailway-452f47.svg" }, { "if": { @@ -96507,7 +96707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nagoyarailroad-9408c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nagoyarailroad-9408c5.jpg" }, { "if": { @@ -96526,7 +96726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kintetsurailwaycompany-9408c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kintetsurailwaycompany-9408c5.jpg" }, { "if": { @@ -96541,7 +96741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albtalverkehrsgesellschaftmbh-319ba8.png" + "then": "https://data.mapcomplete.org/nsi//logos/albtalverkehrsgesellschaftmbh-319ba8.png" }, { "if": { @@ -96556,7 +96756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteautonomovolturno-4b4a6a.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteautonomovolturno-4b4a6a.png" }, { "if": { @@ -96570,7 +96770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hgk-7e6c6f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hgk-7e6c6f.svg" }, { "if": { @@ -96584,7 +96784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sporveien-5ea77b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sporveien-5ea77b.jpg" }, { "if": { @@ -96598,7 +96798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/czspravazeleznic-e7d44b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/czspravazeleznic-e7d44b.jpg" }, { "if": { @@ -96612,7 +96812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surreycountycouncil-07a364.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surreycountycouncil-07a364.jpg" }, { "if": { @@ -96626,7 +96826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/szinfrastruktura-f19c50.svg" + "then": "https://data.mapcomplete.org/nsi//logos/szinfrastruktura-f19c50.svg" }, { "if": { @@ -96640,7 +96840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abowind-74685d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/abowind-74685d.svg" }, { "if": { @@ -96654,7 +96854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accionaenergia-ae5946.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accionaenergia-ae5946.jpg" }, { "if": { @@ -96668,7 +96868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-0e0bfd.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-0e0bfd.png" }, { "if": { @@ -96682,7 +96882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aescorporation-f7f223.png" + "then": "https://data.mapcomplete.org/nsi//logos/aescorporation-f7f223.png" }, { "if": { @@ -96696,7 +96896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aglenergy-08761e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aglenergy-08761e.jpg" }, { "if": { @@ -96710,7 +96910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/akuo-74685d.png" + "then": "https://data.mapcomplete.org/nsi//logos/akuo-74685d.png" }, { "if": { @@ -96724,7 +96924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamapower-f81226.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamapower-f81226.jpg" }, { "if": { @@ -96738,7 +96938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-fd3a93.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-fd3a93.svg" }, { "if": { @@ -96752,7 +96952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldi-2fe7a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldi-2fe7a2.png" }, { "if": { @@ -96766,7 +96966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldinord-8532fd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aldinord-8532fd.svg" }, { "if": { @@ -96780,7 +96980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aldisud-63ded7.png" + "then": "https://data.mapcomplete.org/nsi//logos/aldisud-63ded7.png" }, { "if": { @@ -96794,7 +96994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliantenergy-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/alliantenergy-19ecba.png" }, { "if": { @@ -96809,7 +97009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazonwebservices-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amazonwebservices-74685d.jpg" }, { "if": { @@ -96823,7 +97023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameren-ebd878.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameren-ebd878.png" }, { "if": { @@ -96838,7 +97038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanelectricpower-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-19ecba.png" }, { "if": { @@ -96852,7 +97052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apexcleanenergy-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/apexcleanenergy-19ecba.png" }, { "if": { @@ -96866,7 +97066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apexenergies-ebc5ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apexenergies-ebc5ae.jpg" }, { "if": { @@ -96880,7 +97080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aquilacapital-a62919.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aquilacapital-a62919.svg" }, { "if": { @@ -96894,7 +97094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-546c7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-546c7b.jpg" }, { "if": { @@ -96908,7 +97108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avangridrenewables-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avangridrenewables-19ecba.jpg" }, { "if": { @@ -96922,7 +97122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axpo-5b591a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axpo-5b591a.jpg" }, { "if": { @@ -96936,7 +97136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banksrenewables-9ac094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/banksrenewables-9ac094.jpg" }, { "if": { @@ -96950,7 +97150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baywa-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baywa-b8ae25.jpg" }, { "if": { @@ -96964,7 +97164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-4add1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-4add1e.jpg" }, { "if": { @@ -96978,7 +97178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerstadtwerke-aa0276.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerstadtwerke-aa0276.jpg" }, { "if": { @@ -96992,7 +97192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bernmobil-80ad05.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bernmobil-80ad05.svg" }, { "if": { @@ -97006,7 +97206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blackhillscorporation-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blackhillscorporation-19ecba.jpg" }, { "if": { @@ -97020,7 +97220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluearthrenewables-2d6bbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluearthrenewables-2d6bbd.jpg" }, { "if": { @@ -97034,7 +97234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boralex-9f0ca5.png" + "then": "https://data.mapcomplete.org/nsi//logos/boralex-9f0ca5.png" }, { "if": { @@ -97048,7 +97248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bordgaisenergy-1f8ba0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bordgaisenergy-1f8ba0.jpg" }, { "if": { @@ -97062,7 +97262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bordnamona-1f8ba0.png" + "then": "https://data.mapcomplete.org/nsi//logos/bordnamona-1f8ba0.png" }, { "if": { @@ -97077,7 +97277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bowlinggreenstateuniversity-3c4f74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-3c4f74.jpg" }, { "if": { @@ -97091,7 +97291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bp-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bp-74685d.jpg" }, { "if": { @@ -97106,7 +97306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishsolarrenewables-9ac094.png" + "then": "https://data.mapcomplete.org/nsi//logos/britishsolarrenewables-9ac094.png" }, { "if": { @@ -97121,7 +97321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bundfurumweltundnaturschutzdeutschland-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bundfurumweltundnaturschutzdeutschland-b8ae25.jpg" }, { "if": { @@ -97135,7 +97335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calpine-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calpine-19ecba.jpg" }, { "if": { @@ -97149,7 +97349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalpower-4cccf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalpower-4cccf0.jpg" }, { "if": { @@ -97164,7 +97364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceylonelectricityboard-3c99fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-3c99fb.png" }, { "if": { @@ -97178,7 +97378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cez-e7507c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cez-e7507c.jpg" }, { "if": { @@ -97192,7 +97392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chevron-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/chevron-19ecba.png" }, { "if": { @@ -97206,7 +97406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofbeaverton-a46631.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofbeaverton-a46631.jpg" }, { "if": { @@ -97220,7 +97420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofshafter-a94a78.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofshafter-a94a78.jpg" }, { "if": { @@ -97234,7 +97434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftruthorconsequences-bcd865.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftruthorconsequences-bcd865.jpg" }, { "if": { @@ -97248,7 +97448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cnr-33d749.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cnr-33d749.jpg" }, { "if": { @@ -97262,7 +97462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coillte-1f8ba0.png" + "then": "https://data.mapcomplete.org/nsi//logos/coillte-1f8ba0.png" }, { "if": { @@ -97276,7 +97476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colbun-daaa5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colbun-daaa5a.jpg" }, { "if": { @@ -97291,7 +97491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradostateuniversity-a34a72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradostateuniversity-a34a72.jpg" }, { "if": { @@ -97306,7 +97506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionfederaldeelectricidad-5ce1cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-5ce1cf.png" }, { "if": { @@ -97321,7 +97521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compagniavaldostanaacque-052129.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compagniavaldostanaacque-052129.jpg" }, { "if": { @@ -97335,7 +97535,7 @@ } ] }, - "then": "./assets/data/nsi/logos/constellation-c841a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/constellation-c841a9.jpg" }, { "if": { @@ -97349,7 +97549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-546c7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-546c7b.jpg" }, { "if": { @@ -97363,7 +97563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbenergie-b8ae25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbenergie-b8ae25.svg" }, { "if": { @@ -97377,7 +97577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decathlon-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/decathlon-74685d.jpg" }, { "if": { @@ -97391,7 +97591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/denkerandwulf-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/denkerandwulf-b8ae25.jpg" }, { "if": { @@ -97405,7 +97605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebahn-b8ae25.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebahn-b8ae25.png" }, { "if": { @@ -97419,7 +97619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dewind-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/dewind-19ecba.png" }, { "if": { @@ -97433,7 +97633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/digitalrealty-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/digitalrealty-74685d.jpg" }, { "if": { @@ -97447,7 +97647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dmdrogeriemarktgmbhandcokg-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dmdrogeriemarktgmbhandcokg-b8ae25.jpg" }, { "if": { @@ -97461,7 +97661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominionenergy-c58391.png" + "then": "https://data.mapcomplete.org/nsi//logos/dominionenergy-c58391.png" }, { "if": { @@ -97475,7 +97675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteenergy-b3e144.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteenergy-b3e144.png" }, { "if": { @@ -97489,7 +97689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-b7bbc1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-b7bbc1.jpg" }, { "if": { @@ -97503,7 +97703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergyprogress-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-19ecba.jpg" }, { "if": { @@ -97517,7 +97717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-74685d.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-74685d.png" }, { "if": { @@ -97531,7 +97731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonwasserkraft-b8ae25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonwasserkraft-b8ae25.svg" }, { "if": { @@ -97545,7 +97745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ecotricity-9ac094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ecotricity-9ac094.jpg" }, { "if": { @@ -97559,7 +97759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edfrenewables-f15854.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edfrenewables-f15854.svg" }, { "if": { @@ -97573,7 +97773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edgeconnex-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edgeconnex-74685d.jpg" }, { "if": { @@ -97587,7 +97787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edison-052129.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edison-052129.jpg" }, { "if": { @@ -97601,7 +97801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edp-74685d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edp-74685d.svg" }, { "if": { @@ -97616,7 +97816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovablesespana-ae5946.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovablesespana-ae5946.svg" }, { "if": { @@ -97632,7 +97832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovaveis-ecaffb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-ecaffb.svg" }, { "if": { @@ -97646,7 +97846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eestienergia-7050ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eestienergia-7050ae.jpg" }, { "if": { @@ -97660,7 +97860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egat-4362ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/egat-4362ae.jpg" }, { "if": { @@ -97675,7 +97875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-74685d.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-74685d.png" }, { "if": { @@ -97689,7 +97889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbridge-4cccf0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enbridge-4cccf0.jpg" }, { "if": { @@ -97703,7 +97903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-b8ae25.png" + "then": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-b8ae25.png" }, { "if": { @@ -97717,7 +97917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-ae5946.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-ae5946.jpg" }, { "if": { @@ -97731,7 +97931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneco-59360d.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneco-59360d.png" }, { "if": { @@ -97745,7 +97945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enecowind-59360d.png" + "then": "https://data.mapcomplete.org/nsi//logos/enecowind-59360d.png" }, { "if": { @@ -97759,7 +97959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-74685d.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-74685d.png" }, { "if": { @@ -97773,7 +97973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-885195.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-885195.svg" }, { "if": { @@ -97787,7 +97987,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enercon-b8ae25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enercon-b8ae25.svg" }, { "if": { @@ -97801,7 +98001,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energia-8a255d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energia-8a255d.jpg" }, { "if": { @@ -97815,7 +98015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-7d0c03.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-7d0c03.png" }, { "if": { @@ -97829,7 +98029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesteiermark-a6368a.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-a6368a.png" }, { "if": { @@ -97843,7 +98043,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiequelle-43a77a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiequelle-43a77a.jpg" }, { "if": { @@ -97858,7 +98058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energyfijilimited-32a62a.png" + "then": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-32a62a.png" }, { "if": { @@ -97872,7 +98072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enertrag-a301bb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enertrag-a301bb.jpg" }, { "if": { @@ -97886,7 +98086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-74685d.jpg" }, { "if": { @@ -97900,7 +98100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmax-60f7b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmax-60f7b4.png" }, { "if": { @@ -97914,7 +98114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmaxenergy-60f7b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmaxenergy-60f7b4.png" }, { "if": { @@ -97928,7 +98128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enovos-779fe4.png" + "then": "https://data.mapcomplete.org/nsi//logos/enovos-779fe4.png" }, { "if": { @@ -97942,7 +98142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entega-57cee2.png" + "then": "https://data.mapcomplete.org/nsi//logos/entega-57cee2.png" }, { "if": { @@ -97956,7 +98156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergylouisiana-35de23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-35de23.jpg" }, { "if": { @@ -97970,7 +98170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equinor-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equinor-74685d.jpg" }, { "if": { @@ -97984,7 +98184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erdgassudwestgmbh-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erdgassudwestgmbh-b8ae25.jpg" }, { "if": { @@ -97998,7 +98198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbgenerationandwholesalemarkets-8a255d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/esbgenerationandwholesalemarkets-8a255d.svg" }, { "if": { @@ -98013,7 +98213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethiopianelectricpower-f81514.png" + "then": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-f81514.png" }, { "if": { @@ -98027,7 +98227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eurusenergy-74685d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eurusenergy-74685d.svg" }, { "if": { @@ -98041,7 +98241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-e9dfd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-e9dfd9.jpg" }, { "if": { @@ -98055,7 +98255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-7d0c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-7d0c03.jpg" }, { "if": { @@ -98070,7 +98270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-640b1a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-640b1a.svg" }, { "if": { @@ -98084,7 +98284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-87ac22.png" + "then": "https://data.mapcomplete.org/nsi//logos/evn-87ac22.png" }, { "if": { @@ -98098,7 +98298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstsolar-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstsolar-19ecba.jpg" }, { "if": { @@ -98112,7 +98312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstwindoandm-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/firstwindoandm-19ecba.png" }, { "if": { @@ -98126,7 +98326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstenergy-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstenergy-19ecba.jpg" }, { "if": { @@ -98140,7 +98340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridapowerandlight-2af0cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-2af0cf.png" }, { "if": { @@ -98154,7 +98354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortum-cf9247.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortum-cf9247.jpg" }, { "if": { @@ -98168,7 +98368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gemeindeubstadtweiher-235ee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gemeindeubstadtweiher-235ee2.jpg" }, { "if": { @@ -98182,7 +98382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/generalelectric-74685d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/generalelectric-74685d.svg" }, { "if": { @@ -98196,7 +98396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/genesisenergy-7b0614.png" + "then": "https://data.mapcomplete.org/nsi//logos/genesisenergy-7b0614.png" }, { "if": { @@ -98210,7 +98410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenspreadelectriccooperative-546c7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-546c7b.jpg" }, { "if": { @@ -98224,7 +98424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldwind-19ecba.svg" + "then": "https://data.mapcomplete.org/nsi//logos/goldwind-19ecba.svg" }, { "if": { @@ -98238,7 +98438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greencityag-b8ae25.png" + "then": "https://data.mapcomplete.org/nsi//logos/greencityag-b8ae25.png" }, { "if": { @@ -98252,7 +98452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groenleven-7c4044.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groenleven-7c4044.jpg" }, { "if": { @@ -98266,7 +98466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydrotasmania-569db4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hydrotasmania-569db4.jpg" }, { "if": { @@ -98280,7 +98480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-e9c9aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-e9c9aa.png" }, { "if": { @@ -98294,7 +98494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-74685d.jpg" }, { "if": { @@ -98308,7 +98508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ieasa-76b721.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ieasa-76b721.svg" }, { "if": { @@ -98322,7 +98522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ignitisgrupe-f48411.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ignitisgrupe-f48411.jpg" }, { "if": { @@ -98336,7 +98536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikbag-b3c54e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikbag-b3c54e.jpg" }, { "if": { @@ -98350,7 +98550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ikea-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ikea-74685d.jpg" }, { "if": { @@ -98364,7 +98564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innergex-4ffecb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/innergex-4ffecb.jpg" }, { "if": { @@ -98378,7 +98578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogy-16c9d0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/innogy-16c9d0.svg" }, { "if": { @@ -98392,7 +98592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invenergy-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invenergy-19ecba.jpg" }, { "if": { @@ -98406,7 +98606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itaipubinacional-635f5b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-635f5b.svg" }, { "if": { @@ -98420,7 +98620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jamesmadisonuniversity-4ed0ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jamesmadisonuniversity-4ed0ab.jpg" }, { "if": { @@ -98434,7 +98634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jamtkraftab-ec34a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jamtkraftab-ec34a3.jpg" }, { "if": { @@ -98448,7 +98648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juwi-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juwi-b8ae25.jpg" }, { "if": { @@ -98462,7 +98662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juwioperationsandmaintenancegmbh-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juwioperationsandmaintenancegmbh-b8ae25.jpg" }, { "if": { @@ -98477,7 +98677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/karlsruherinstitutfurtechnologie-235ee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/karlsruherinstitutfurtechnologie-235ee2.jpg" }, { "if": { @@ -98491,7 +98691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-666aab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-666aab.jpg" }, { "if": { @@ -98505,7 +98705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kendallcounty-10551b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kendallcounty-10551b.jpg" }, { "if": { @@ -98519,7 +98719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentstateuniversity-3c4f74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-3c4f74.jpg" }, { "if": { @@ -98533,7 +98733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kochimetro-d7cade.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kochimetro-d7cade.jpg" }, { "if": { @@ -98547,7 +98747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koncar-0189d2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/koncar-0189d2.svg" }, { "if": { @@ -98561,7 +98761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lightsourcebp-74685d.png" + "then": "https://data.mapcomplete.org/nsi//logos/lightsourcebp-74685d.png" }, { "if": { @@ -98575,7 +98775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/listerundlennekraftwerkegmbh-b8ae25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/listerundlennekraftwerkegmbh-b8ae25.svg" }, { "if": { @@ -98589,7 +98789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lockhartpowercompany-3f646f.png" + "then": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-3f646f.png" }, { "if": { @@ -98603,7 +98803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonfirebrigade-b31211.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonfirebrigade-b31211.jpg" }, { "if": { @@ -98617,7 +98817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/longyuansa-6ca71c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/longyuansa-6ca71c.jpg" }, { "if": { @@ -98632,7 +98832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-546c7b.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-546c7b.png" }, { "if": { @@ -98647,7 +98847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubbockpowerandlight-546c7b.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-546c7b.png" }, { "if": { @@ -98661,7 +98861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luminant-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luminant-19ecba.jpg" }, { "if": { @@ -98675,7 +98875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luminus-a327c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luminus-a327c1.jpg" }, { "if": { @@ -98690,7 +98890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/madisongasandelectric-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/madisongasandelectric-19ecba.jpg" }, { "if": { @@ -98704,7 +98904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mainova-b8ae25.png" + "then": "https://data.mapcomplete.org/nsi//logos/mainova-b8ae25.png" }, { "if": { @@ -98718,7 +98918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mdu-c40494.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mdu-c40494.jpg" }, { "if": { @@ -98732,7 +98932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercedesbenzag-b8ae25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mercedesbenzag-b8ae25.svg" }, { "if": { @@ -98746,7 +98946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercuryenergy-7b0614.png" + "then": "https://data.mapcomplete.org/nsi//logos/mercuryenergy-7b0614.png" }, { "if": { @@ -98760,7 +98960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metropolitanpoliceservice-a0f939.svg" + "then": "https://data.mapcomplete.org/nsi//logos/metropolitanpoliceservice-a0f939.svg" }, { "if": { @@ -98774,7 +98974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midamericanenergy-fa13cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-fa13cd.jpg" }, { "if": { @@ -98788,7 +98988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/middleburycollege-281c4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/middleburycollege-281c4a.jpg" }, { "if": { @@ -98802,7 +99002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ministryofhealthandsanitation-899c80.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ministryofhealthandsanitation-899c80.jpg" }, { "if": { @@ -98816,7 +99016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mvm-dc1ee9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mvm-dc1ee9.jpg" }, { "if": { @@ -98830,7 +99030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mvvenergieag-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mvvenergieag-b8ae25.jpg" }, { "if": { @@ -98844,7 +99044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturgy-ae5946.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturgy-ae5946.jpg" }, { "if": { @@ -98858,7 +99058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturstromag-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturstromag-b8ae25.jpg" }, { "if": { @@ -98872,7 +99072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoen-74685d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoen-74685d.svg" }, { "if": { @@ -98886,7 +99086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoenergia-104cf6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoenergia-104cf6.svg" }, { "if": { @@ -98900,7 +99100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nextbike-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nextbike-74685d.jpg" }, { "if": { @@ -98914,7 +99114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexteraenergy-4cccf0.png" + "then": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-4cccf0.png" }, { "if": { @@ -98928,7 +99128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordex-74685d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nordex-74685d.svg" }, { "if": { @@ -98942,7 +99142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestenergy-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwestenergy-19ecba.jpg" }, { "if": { @@ -98956,7 +99156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-eabe09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-eabe09.jpg" }, { "if": { @@ -98970,7 +99170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/npowerlimited-9ac094.svg" + "then": "https://data.mapcomplete.org/nsi//logos/npowerlimited-9ac094.svg" }, { "if": { @@ -98984,7 +99184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nrgenergy-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nrgenergy-19ecba.jpg" }, { "if": { @@ -98998,7 +99198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntpc-d7cade.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ntpc-d7cade.jpg" }, { "if": { @@ -99012,7 +99212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntr-1f8ba0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ntr-1f8ba0.svg" }, { "if": { @@ -99026,7 +99226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nukissiorfiit-f72d87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-f72d87.jpg" }, { "if": { @@ -99040,7 +99240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obb-7d0c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obb-7d0c03.jpg" }, { "if": { @@ -99054,7 +99254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/octopusinvestments-9ac094.png" + "then": "https://data.mapcomplete.org/nsi//logos/octopusinvestments-9ac094.png" }, { "if": { @@ -99069,7 +99269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomagasandelectric-7551be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-7551be.jpg" }, { "if": { @@ -99083,7 +99283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlen-c79aa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlen-c79aa4.jpg" }, { "if": { @@ -99097,7 +99297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orsted-6f1448.png" + "then": "https://data.mapcomplete.org/nsi//logos/orsted-6f1448.png" }, { "if": { @@ -99111,7 +99311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ovag-b8ae25.png" + "then": "https://data.mapcomplete.org/nsi//logos/ovag-b8ae25.png" }, { "if": { @@ -99125,7 +99325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificblue-7a5436.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificblue-7a5436.jpg" }, { "if": { @@ -99139,7 +99339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacifichydro-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pacifichydro-74685d.jpg" }, { "if": { @@ -99153,7 +99353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patternenergy-dede2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/patternenergy-dede2e.jpg" }, { "if": { @@ -99167,7 +99367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/patternenergycanada-2d6bbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/patternenergycanada-2d6bbd.jpg" }, { "if": { @@ -99181,7 +99381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pge-c79aa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pge-c79aa4.jpg" }, { "if": { @@ -99195,7 +99395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pioneerenergy-7b0614.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pioneerenergy-7b0614.jpg" }, { "if": { @@ -99209,7 +99409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pln-e605d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pln-e605d3.jpg" }, { "if": { @@ -99223,7 +99423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pne-b8ae25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pne-b8ae25.svg" }, { "if": { @@ -99238,7 +99438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-d67b9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-d67b9a.jpg" }, { "if": { @@ -99252,7 +99452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poweo-ef21ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/poweo-ef21ea.png" }, { "if": { @@ -99266,7 +99466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prokon-8248fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prokon-8248fb.jpg" }, { "if": { @@ -99280,7 +99480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redcap-6ca71c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redcap-6ca71c.jpg" }, { "if": { @@ -99295,7 +99495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renewableenergysystems-9a894e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renewableenergysystems-9a894e.jpg" }, { "if": { @@ -99309,7 +99509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/repowerag-e3662a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/repowerag-e3662a.svg" }, { "if": { @@ -99323,7 +99523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resaustralia-7a5436.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/resaustralia-7a5436.jpg" }, { "if": { @@ -99337,7 +99537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rescanada-60f7b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rescanada-60f7b4.jpg" }, { "if": { @@ -99351,7 +99551,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-2e2ed1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-2e2ed1.svg" }, { "if": { @@ -99365,7 +99565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/royaldutchshell-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/royaldutchshell-74685d.jpg" }, { "if": { @@ -99379,7 +99579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-16c9d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-16c9d0.jpg" }, { "if": { @@ -99393,7 +99593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwegenerationse-b8ae25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rwegenerationse-b8ae25.svg" }, { "if": { @@ -99407,7 +99607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwerenewables-80815a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwerenewables-80815a.jpg" }, { "if": { @@ -99421,7 +99621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwerenewablespolska-c79aa4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwerenewablespolska-c79aa4.jpg" }, { "if": { @@ -99435,7 +99635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwerenewablesswedenab-ec34a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwerenewablesswedenab-ec34a3.jpg" }, { "if": { @@ -99449,7 +99649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-1f61f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-1f61f0.png" }, { "if": { @@ -99464,7 +99664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltriverproject-7494e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/saltriverproject-7494e7.png" }, { "if": { @@ -99478,7 +99678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-295d00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-295d00.jpg" }, { "if": { @@ -99492,7 +99692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saskpower-167375.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saskpower-167375.svg" }, { "if": { @@ -99506,7 +99706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seminoleelectriccooperative-2af0cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-2af0cf.jpg" }, { "if": { @@ -99520,7 +99720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shem-33d749.png" + "then": "https://data.mapcomplete.org/nsi//logos/shem-33d749.png" }, { "if": { @@ -99534,7 +99734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slnaturenergie-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slnaturenergie-b8ae25.jpg" }, { "if": { @@ -99548,7 +99748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smithfieldfreshmeatscorporation-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/smithfieldfreshmeatscorporation-19ecba.png" }, { "if": { @@ -99562,7 +99762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-33d749.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-33d749.png" }, { "if": { @@ -99576,7 +99776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snowyhydro-08761e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snowyhydro-08761e.jpg" }, { "if": { @@ -99590,7 +99790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/solarwatt-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/solarwatt-b8ae25.jpg" }, { "if": { @@ -99604,7 +99804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southtexaselectriccooperative-546c7b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southtexaselectriccooperative-546c7b.jpg" }, { "if": { @@ -99618,7 +99818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncompany-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncompany-19ecba.jpg" }, { "if": { @@ -99632,7 +99832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/squadronenergy-4d20e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/squadronenergy-4d20e6.jpg" }, { "if": { @@ -99646,7 +99846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sse-300ba3.png" + "then": "https://data.mapcomplete.org/nsi//logos/sse-300ba3.png" }, { "if": { @@ -99660,7 +99860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sserenewables-8d3bcf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sserenewables-8d3bcf.svg" }, { "if": { @@ -99674,7 +99874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtkarlsruhe-235ee2.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-235ee2.png" }, { "if": { @@ -99688,7 +99888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekarlsruhegmbh-235ee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekarlsruhegmbh-235ee2.jpg" }, { "if": { @@ -99702,7 +99902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelubeck-6d7be1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-6d7be1.jpg" }, { "if": { @@ -99717,7 +99917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-64ea79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-64ea79.jpg" }, { "if": { @@ -99732,7 +99932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkespeyer-865cfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-865cfd.jpg" }, { "if": { @@ -99746,7 +99946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewalldorf-235ee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewalldorf-235ee2.jpg" }, { "if": { @@ -99760,7 +99960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starwoodenergygroup-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/starwoodenergygroup-19ecba.jpg" }, { "if": { @@ -99774,7 +99974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statkraft-16c9d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/statkraft-16c9d0.png" }, { "if": { @@ -99788,7 +99988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/storm-a327c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/storm-a327c1.jpg" }, { "if": { @@ -99802,7 +100002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suncorenergy-2d6bbd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suncorenergy-2d6bbd.jpg" }, { "if": { @@ -99816,7 +100016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunedison-9a0961.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunedison-9a0961.jpg" }, { "if": { @@ -99830,7 +100030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwag-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwag-b8ae25.jpg" }, { "if": { @@ -99844,7 +100044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisscom-b18b84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisscom-b18b84.jpg" }, { "if": { @@ -99858,7 +100058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/targetcorporation-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/targetcorporation-19ecba.jpg" }, { "if": { @@ -99872,7 +100072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenaska-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tenaska-19ecba.jpg" }, { "if": { @@ -99887,7 +100087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseevalleyauthority-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-19ecba.png" }, { "if": { @@ -99901,7 +100101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ternaenergy-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ternaenergy-74685d.jpg" }, { "if": { @@ -99915,7 +100115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-7d0c03.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-7d0c03.svg" }, { "if": { @@ -99929,7 +100129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transalta-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transalta-74685d.jpg" }, { "if": { @@ -99943,7 +100143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trianel-0e2731.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trianel-0e2731.svg" }, { "if": { @@ -99957,7 +100157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trianelwindkraftwerkborkumgmbhandcokg-1a7ca0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trianelwindkraftwerkborkumgmbhandcokg-1a7ca0.svg" }, { "if": { @@ -99971,7 +100171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trustpower-239f09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trustpower-239f09.jpg" }, { "if": { @@ -99985,7 +100185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniper-16c9d0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/uniper-16c9d0.svg" }, { "if": { @@ -99999,7 +100199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniperkraftwerke-b8ae25.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-b8ae25.png" }, { "if": { @@ -100014,7 +100214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesbureauofreclamation-19ecba.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesbureauofreclamation-19ecba.png" }, { "if": { @@ -100028,7 +100228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-626380.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-626380.svg" }, { "if": { @@ -100042,7 +100242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valero-f2eccb.png" + "then": "https://data.mapcomplete.org/nsi//logos/valero-f2eccb.png" }, { "if": { @@ -100056,7 +100256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valorem-ebc5ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/valorem-ebc5ae.png" }, { "if": { @@ -100070,7 +100270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-c18b00.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-c18b00.png" }, { "if": { @@ -100084,7 +100284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-b8ae25.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-b8ae25.png" }, { "if": { @@ -100098,7 +100298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfallnederland-7c4044.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfallnederland-7c4044.svg" }, { "if": { @@ -100112,7 +100312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfallunitedkingdom-9ac094.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfallunitedkingdom-9ac094.png" }, { "if": { @@ -100126,7 +100326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-7d0c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-7d0c03.jpg" }, { "if": { @@ -100140,7 +100340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vestas-74685d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vestas-74685d.jpg" }, { "if": { @@ -100154,7 +100354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/volkswagen-74685d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/volkswagen-74685d.svg" }, { "if": { @@ -100168,7 +100368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voltalia-cc560c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/voltalia-cc560c.jpg" }, { "if": { @@ -100182,7 +100382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/webwindenergieag-47fbc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/webwindenergieag-47fbc0.jpg" }, { "if": { @@ -100196,7 +100396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westwindenergy-f033f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westwindenergy-f033f7.jpg" }, { "if": { @@ -100210,7 +100410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-7d0c03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-7d0c03.jpg" }, { "if": { @@ -100224,7 +100424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/windkraftsimonsfeld-4f665e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/windkraftsimonsfeld-4f665e.jpg" }, { "if": { @@ -100239,7 +100439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsinpublicservicecorporation-27c60c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsinpublicservicecorporation-27c60c.jpg" }, { "if": { @@ -100253,7 +100453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wpd-74685d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wpd-74685d.svg" }, { "if": { @@ -100267,7 +100467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wpdonshoregmbhandcokg-b8ae25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/wpdonshoregmbhandcokg-b8ae25.svg" }, { "if": { @@ -100281,7 +100481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wpo-16c9d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/wpo-16c9d0.png" }, { "if": { @@ -100295,7 +100495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-19ecba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-19ecba.jpg" }, { "if": { @@ -100309,7 +100509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yaleuniversity-866ce7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/yaleuniversity-866ce7.jpg" }, { "if": { @@ -100323,7 +100523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ypfluz-76b721.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ypfluz-76b721.jpg" }, { "if": { @@ -100337,7 +100537,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeagerneuerbareenergiengmbh-b8ae25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeagerneuerbareenergiengmbh-b8ae25.jpg" }, { "if": { @@ -100353,7 +100553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chugokuelectricpowercompany-11cc64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chugokuelectricpowercompany-11cc64.jpg" }, { "if": { @@ -100370,7 +100570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chubuelectricpowercompany-11cc64.png" + "then": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowercompany-11cc64.png" }, { "if": { @@ -100387,7 +100587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushuelectricpowercompany-11cc64.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowercompany-11cc64.png" }, { "if": { @@ -100404,7 +100604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokkaidoelectricpowercompany-11cc64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowercompany-11cc64.jpg" }, { "if": { @@ -100421,7 +100621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokurikuelectricpowercompany-11cc64.png" + "then": "https://data.mapcomplete.org/nsi//logos/hokurikuelectricpowercompany-11cc64.png" }, { "if": { @@ -100437,7 +100637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanpowercompany-b27929.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanpowercompany-b27929.jpg" }, { "if": { @@ -100454,7 +100654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shikokuelectricpowercompany-11cc64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/shikokuelectricpowercompany-11cc64.jpg" }, { "if": { @@ -100471,7 +100671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokyoelectricpowercompany-11cc64.png" + "then": "https://data.mapcomplete.org/nsi//logos/tokyoelectricpowercompany-11cc64.png" }, { "if": { @@ -100488,7 +100688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tohokuelectricpowercompany-11cc64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tohokuelectricpowercompany-11cc64.jpg" }, { "if": { @@ -100505,7 +100705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okinawaelectricpowercompany-11cc64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-11cc64.jpg" }, { "if": { @@ -100522,7 +100722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansaielectricpowercompany-11cc64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kansaielectricpowercompany-11cc64.jpg" }, { "if": { @@ -100538,7 +100738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricpowerdevelopmentcompany-11cc64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricpowerdevelopmentcompany-11cc64.jpg" }, { "if": { @@ -100552,7 +100752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4countyelectricpowerassociation-7d3f64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/4countyelectricpowerassociation-7d3f64.jpg" }, { "if": { @@ -100566,7 +100766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/50hertztransmission-d5e323.svg" + "then": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-d5e323.svg" }, { "if": { @@ -100580,7 +100780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aenergivannkraft-e0b869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-e0b869.jpg" }, { "if": { @@ -100594,7 +100794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adif-769454.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adif-769454.jpg" }, { "if": { @@ -100608,7 +100808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aek-72f7bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aek-72f7bc.jpg" }, { "if": { @@ -100622,7 +100822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aepohio-b6ef1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/aepohio-b6ef1d.png" }, { "if": { @@ -100636,7 +100836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeptexas-2d9f43.png" + "then": "https://data.mapcomplete.org/nsi//logos/aeptexas-2d9f43.png" }, { "if": { @@ -100650,7 +100850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-551283.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-551283.png" }, { "if": { @@ -100664,7 +100864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aew-3c10bb.png" + "then": "https://data.mapcomplete.org/nsi//logos/aew-3c10bb.png" }, { "if": { @@ -100678,7 +100878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agderenergi-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agderenergi-e0b869.svg" }, { "if": { @@ -100693,7 +100893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktiengesellschaftfurversorgungsunternehmen-fe2846.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aktiengesellschaftfurversorgungsunternehmen-fe2846.svg" }, { "if": { @@ -100707,7 +100907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamapower-ed245e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamapower-ed245e.jpg" }, { "if": { @@ -100722,7 +100922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allgaueruberlandwerk-a9bd01.png" + "then": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-a9bd01.png" }, { "if": { @@ -100737,7 +100937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliantenergy-b654b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/alliantenergy-b654b4.png" }, { "if": { @@ -100751,7 +100951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altalink-a4e32f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altalink-a4e32f.jpg" }, { "if": { @@ -100766,7 +100966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameren-858afb.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameren-858afb.png" }, { "if": { @@ -100781,7 +100981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanelectricpower-b654b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-b654b4.png" }, { "if": { @@ -100795,7 +100995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amprion-d5e323.svg" + "then": "https://data.mapcomplete.org/nsi//logos/amprion-d5e323.svg" }, { "if": { @@ -100809,7 +101009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtrak-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtrak-b654b4.jpg" }, { "if": { @@ -100823,7 +101023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaheimpublicutilities-eefbc4.png" + "then": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-eefbc4.png" }, { "if": { @@ -100837,7 +101037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ande-101239.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ande-101239.jpg" }, { "if": { @@ -100851,7 +101051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appalachianpowercompany-33137a.png" + "then": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-33137a.png" }, { "if": { @@ -100865,7 +101065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonapublicservice-33eed2.png" + "then": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-33eed2.png" }, { "if": { @@ -100879,7 +101079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-527b39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-527b39.jpg" }, { "if": { @@ -100893,7 +101093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atcoelectric-95aa3c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atcoelectric-95aa3c.svg" }, { "if": { @@ -100907,7 +101107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atel-151882.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atel-151882.svg" }, { "if": { @@ -100921,7 +101121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlanticcityelectric-91e428.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-91e428.jpg" }, { "if": { @@ -100935,7 +101135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/augstspriegumatikls-e41140.png" + "then": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-e41140.png" }, { "if": { @@ -100949,7 +101149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausgrid-67a43a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausgrid-67a43a.jpg" }, { "if": { @@ -100963,7 +101163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-2d9f43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-2d9f43.jpg" }, { "if": { @@ -100977,7 +101177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avaconnetz-439c77.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avaconnetz-439c77.svg" }, { "if": { @@ -100991,7 +101191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avista-5cd90b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avista-5cd90b.jpg" }, { "if": { @@ -101005,7 +101205,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axpo-ac4ca5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axpo-ac4ca5.jpg" }, { "if": { @@ -101020,7 +101220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-ab2cf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-ab2cf5.jpg" }, { "if": { @@ -101034,7 +101234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayernwerk-fe1279.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bayernwerk-fe1279.svg" }, { "if": { @@ -101048,7 +101248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-5611ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-5611ce.jpg" }, { "if": { @@ -101063,7 +101263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belizeelectricitylimited-f57c83.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-f57c83.jpg" }, { "if": { @@ -101077,7 +101277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkk-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bkk-e0b869.svg" }, { "if": { @@ -101091,7 +101291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkw-34ad9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bkw-34ad9c.png" }, { "if": { @@ -101105,7 +101305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blueridgeenergy-86b821.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-86b821.jpg" }, { "if": { @@ -101120,7 +101320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonnevillepoweradministration-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-b654b4.jpg" }, { "if": { @@ -101134,7 +101334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bornholmsenergiandforsyning-5fe2bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-5fe2bf.jpg" }, { "if": { @@ -101148,7 +101348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightridge-be4a58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightridge-be4a58.jpg" }, { "if": { @@ -101162,7 +101362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bryantexasutilities-2d9f43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-2d9f43.jpg" }, { "if": { @@ -101176,7 +101376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgenlandenergieag-43114e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-43114e.jpg" }, { "if": { @@ -101190,7 +101390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalpower-464507.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalpower-464507.jpg" }, { "if": { @@ -101204,7 +101404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caruna-17e9a7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caruna-17e9a7.svg" }, { "if": { @@ -101218,7 +101418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cdeee-5cfbc0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cdeee-5cfbc0.jpg" }, { "if": { @@ -101232,7 +101432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceee-ddc6a3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ceee-ddc6a3.svg" }, { "if": { @@ -101246,7 +101446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celesc-ddc6a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celesc-ddc6a3.jpg" }, { "if": { @@ -101260,7 +101460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cemig-ddc6a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cemig-ddc6a3.jpg" }, { "if": { @@ -101274,7 +101474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-b654b4.jpg" }, { "if": { @@ -101288,7 +101488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralmainepowercompany-834cd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-834cd5.jpg" }, { "if": { @@ -101302,7 +101502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceps-f6b6f1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceps-f6b6f1.jpg" }, { "if": { @@ -101316,7 +101516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cern-68daa6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cern-68daa6.jpg" }, { "if": { @@ -101331,7 +101531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceylonelectricityboard-5c8a2f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-5c8a2f.png" }, { "if": { @@ -101345,7 +101545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cge-ea1a07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cge-ea1a07.jpg" }, { "if": { @@ -101360,7 +101560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cipco-11f0ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cipco-11f0ed.jpg" }, { "if": { @@ -101374,7 +101574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofames-11f0ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofames-11f0ed.jpg" }, { "if": { @@ -101388,7 +101588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofconcord-86b821.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofconcord-86b821.png" }, { "if": { @@ -101402,7 +101602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofelizabeth-86b821.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofelizabeth-86b821.jpg" }, { "if": { @@ -101416,7 +101616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhighpoint-86b821.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhighpoint-86b821.jpg" }, { "if": { @@ -101430,7 +101630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakeland-05df97.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-05df97.png" }, { "if": { @@ -101444,7 +101644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflexington-86b821.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflexington-86b821.jpg" }, { "if": { @@ -101458,7 +101658,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnatchitoches-f4d799.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnatchitoches-f4d799.jpg" }, { "if": { @@ -101472,7 +101672,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftallahassee-05df97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-05df97.jpg" }, { "if": { @@ -101486,7 +101686,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkpublicutilities-fa4900.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-fa4900.jpg" }, { "if": { @@ -101500,7 +101700,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clayelectriccooperative-05df97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-05df97.jpg" }, { "if": { @@ -101514,7 +101714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleco-f4d799.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cleco-f4d799.svg" }, { "if": { @@ -101528,7 +101728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandpublicpower-b6ef1d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandpublicpower-b6ef1d.jpg" }, { "if": { @@ -101542,7 +101742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cnr-e3be4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cnr-e3be4c.jpg" }, { "if": { @@ -101556,7 +101756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codelcochile-ea1a07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/codelcochile-ea1a07.jpg" }, { "if": { @@ -101570,7 +101770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coelba-ddc6a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/coelba-ddc6a3.png" }, { "if": { @@ -101584,7 +101784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colbun-ea1a07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colbun-ea1a07.jpg" }, { "if": { @@ -101598,7 +101798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradospringsutilities-482ae7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-482ae7.jpg" }, { "if": { @@ -101613,7 +101813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionfederaldeelectricidad-f3e3fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-f3e3fb.png" }, { "if": { @@ -101627,7 +101827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthedison-a6ad72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-a6ad72.jpg" }, { "if": { @@ -101641,7 +101841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consolidatededison-255ed7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consolidatededison-255ed7.jpg" }, { "if": { @@ -101655,7 +101855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumersenergy-a1df2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumersenergy-a1df2e.png" }, { "if": { @@ -101669,7 +101869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copel-ddc6a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copel-ddc6a3.jpg" }, { "if": { @@ -101684,7 +101884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornbeltpowercooperative-11f0ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-11f0ed.jpg" }, { "if": { @@ -101698,7 +101898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpoelec-220436.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpoelec-220436.png" }, { "if": { @@ -101712,7 +101912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosern-ddc6a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/cosern-ddc6a3.png" }, { "if": { @@ -101726,7 +101926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countiesenergy-737a3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/countiesenergy-737a3a.png" }, { "if": { @@ -101740,7 +101940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpflenergia-ddc6a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/cpflenergia-ddc6a3.png" }, { "if": { @@ -101754,7 +101954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-2d9f43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-2d9f43.jpg" }, { "if": { @@ -101768,7 +101968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cullmanelectriccooperative-ed245e.png" + "then": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-ed245e.png" }, { "if": { @@ -101782,7 +101982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dairylandpowercooperative-f1b5e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-f1b5e8.jpg" }, { "if": { @@ -101797,7 +101997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daytonpowerandlight-b6ef1d.png" + "then": "https://data.mapcomplete.org/nsi//logos/daytonpowerandlight-b6ef1d.png" }, { "if": { @@ -101811,7 +102011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbenergie-d5e323.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbenergie-d5e323.svg" }, { "if": { @@ -101825,7 +102025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decaturutilities-ed245e.png" + "then": "https://data.mapcomplete.org/nsi//logos/decaturutilities-ed245e.png" }, { "if": { @@ -101839,7 +102039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delmarvapower-dd2844.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delmarvapower-dd2844.jpg" }, { "if": { @@ -101853,7 +102053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/demco-f4d799.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/demco-f4d799.jpg" }, { "if": { @@ -101867,7 +102067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominionenergy-48be4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/dominionenergy-48be4c.png" }, { "if": { @@ -101881,7 +102081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dowchemicalcompany-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-b654b4.jpg" }, { "if": { @@ -101895,7 +102095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteelectriccompany-a1df2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-a1df2e.png" }, { "if": { @@ -101909,7 +102109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteenergy-a1df2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteenergy-a1df2e.png" }, { "if": { @@ -101923,7 +102123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-6adeb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-6adeb8.jpg" }, { "if": { @@ -101937,7 +102137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergyprogress-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-b654b4.jpg" }, { "if": { @@ -101951,7 +102151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duquesnelight-32252f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duquesnelight-32252f.jpg" }, { "if": { @@ -101965,7 +102165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eredes-4d28c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/eredes-4d28c7.png" }, { "if": { @@ -101979,7 +102179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edisnetzgmbh-3723c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-3723c9.jpg" }, { "if": { @@ -101993,7 +102193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-116894.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-116894.png" }, { "if": { @@ -102007,7 +102207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonmitte-d5e323.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonmitte-d5e323.svg" }, { "if": { @@ -102021,7 +102221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonnetz-d5e323.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonnetz-d5e323.svg" }, { "if": { @@ -102035,7 +102235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonwestfalenweser-d5e323.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonwestfalenweser-d5e323.svg" }, { "if": { @@ -102049,7 +102249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastkentuckypowercooperative-037ea9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-037ea9.jpg" }, { "if": { @@ -102063,7 +102263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastriverelectricpowercooperative-389441.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-389441.jpg" }, { "if": { @@ -102077,7 +102277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edenor-ba4280.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edenor-ba4280.jpg" }, { "if": { @@ -102091,7 +102291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpespiritosanto-f914f4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-f914f4.svg" }, { "if": { @@ -102107,7 +102307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovaveis-a40c2f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-a40c2f.svg" }, { "if": { @@ -102121,7 +102321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpsaopaulo-ddc6a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-ddc6a3.jpg" }, { "if": { @@ -102135,7 +102335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egd-04ae3b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/egd-04ae3b.svg" }, { "if": { @@ -102149,7 +102349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eirgrid-1057b0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eirgrid-1057b0.jpg" }, { "if": { @@ -102163,7 +102363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekt-2c2136.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekt-2c2136.jpg" }, { "if": { @@ -102178,7 +102378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-116894.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-116894.png" }, { "if": { @@ -102192,7 +102392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitynorthwest-11f3a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-11f3a5.jpg" }, { "if": { @@ -102206,7 +102406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrilevi-d57d1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrilevi-d57d1a.png" }, { "if": { @@ -102220,7 +102420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elenia-17e9a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elenia-17e9a7.jpg" }, { "if": { @@ -102234,7 +102434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-d57d1a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-d57d1a.jpg" }, { "if": { @@ -102248,7 +102448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eletropaulo-ddc6a3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eletropaulo-ddc6a3.svg" }, { "if": { @@ -102262,7 +102462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elia-d02b4f.png" + "then": "https://data.mapcomplete.org/nsi//logos/elia-d02b4f.png" }, { "if": { @@ -102276,7 +102476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ellevio-dc38bb.png" + "then": "https://data.mapcomplete.org/nsi//logos/ellevio-dc38bb.png" }, { "if": { @@ -102290,7 +102490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmu-74d56c.png" + "then": "https://data.mapcomplete.org/nsi//logos/elmu-74d56c.png" }, { "if": { @@ -102304,7 +102504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elvia-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elvia-e0b869.svg" }, { "if": { @@ -102319,7 +102519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-c9a7db.png" + "then": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-c9a7db.png" }, { "if": { @@ -102333,7 +102533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endeavourenergy-67a43a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-67a43a.jpg" }, { "if": { @@ -102347,7 +102547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-769454.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-769454.png" }, { "if": { @@ -102361,7 +102561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enea-dffc4e.png" + "then": "https://data.mapcomplete.org/nsi//logos/enea-dffc4e.png" }, { "if": { @@ -102375,7 +102575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enedis-34bf95.png" + "then": "https://data.mapcomplete.org/nsi//logos/enedis-34bf95.png" }, { "if": { @@ -102389,7 +102589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-116894.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-116894.png" }, { "if": { @@ -102403,7 +102603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaoceara-ddc6a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-ddc6a3.png" }, { "if": { @@ -102417,7 +102617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-ddc6a3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-ddc6a3.svg" }, { "if": { @@ -102431,7 +102631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-116894.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-116894.svg" }, { "if": { @@ -102445,7 +102645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-dffc4e.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-dffc4e.png" }, { "if": { @@ -102459,7 +102659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energex-189d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energex-189d90.jpg" }, { "if": { @@ -102474,7 +102674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiasdeportugal-4d28c7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-4d28c7.svg" }, { "if": { @@ -102488,7 +102688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-7a29cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-7a29cb.jpg" }, { "if": { @@ -102502,7 +102702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedumali-c36b76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedumali-c36b76.jpg" }, { "if": { @@ -102517,7 +102717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieversorgungmittelrhein-dc465b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-dc465b.jpg" }, { "if": { @@ -102531,7 +102731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energinet-b29599.png" + "then": "https://data.mapcomplete.org/nsi//logos/energinet-b29599.png" }, { "if": { @@ -102546,7 +102746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energyfijilimited-64ce40.png" + "then": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-64ce40.png" }, { "if": { @@ -102560,7 +102760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enertrag-33ce8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enertrag-33ce8b.jpg" }, { "if": { @@ -102574,7 +102774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enexis-754f07.png" + "then": "https://data.mapcomplete.org/nsi//logos/enexis-754f07.png" }, { "if": { @@ -102588,7 +102788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-116894.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-116894.jpg" }, { "if": { @@ -102602,7 +102802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmax-a4e32f.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmax-a4e32f.png" }, { "if": { @@ -102616,7 +102816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-d126c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-d126c4.png" }, { "if": { @@ -102630,7 +102830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergy-d6e068.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergy-d6e068.jpg" }, { "if": { @@ -102644,7 +102844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergyarkansas-527b39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-527b39.jpg" }, { "if": { @@ -102658,7 +102858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergylouisiana-c5977e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-c5977e.jpg" }, { "if": { @@ -102672,7 +102872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enviam-dce62c.png" + "then": "https://data.mapcomplete.org/nsi//logos/enviam-dce62c.png" }, { "if": { @@ -102686,7 +102886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epb-5d1a79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epb-5d1a79.jpg" }, { "if": { @@ -102700,7 +102900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epcor-ec456d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epcor-ec456d.jpg" }, { "if": { @@ -102714,7 +102914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epec-7b93c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epec-7b93c1.jpg" }, { "if": { @@ -102728,7 +102928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equatorialenergiapiaui-ee8d9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-ee8d9c.jpg" }, { "if": { @@ -102742,7 +102942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ergonenergy-189d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ergonenergy-189d90.jpg" }, { "if": { @@ -102756,7 +102956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbnetworks-1057b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/esbnetworks-1057b0.png" }, { "if": { @@ -102770,7 +102970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eskom-88ff58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eskom-88ff58.jpg" }, { "if": { @@ -102784,7 +102984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentialenergy-d64094.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentialenergy-d64094.jpg" }, { "if": { @@ -102799,7 +102999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eswatinielectricitycompany-60a7a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/eswatinielectricitycompany-60a7a1.png" }, { "if": { @@ -102814,7 +103014,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethiopianelectricpower-079142.png" + "then": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-079142.png" }, { "if": { @@ -102829,7 +103029,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eugenewaterandelectricboard-c9a7db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-c9a7db.jpg" }, { "if": { @@ -102844,7 +103044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-b4cc40.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-b4cc40.jpg" }, { "if": { @@ -102858,7 +103058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eversource-b15319.png" + "then": "https://data.mapcomplete.org/nsi//logos/eversource-b15319.png" }, { "if": { @@ -102872,7 +103072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-7a29cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-7a29cb.jpg" }, { "if": { @@ -102887,7 +103087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-e72a33.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-e72a33.svg" }, { "if": { @@ -102901,7 +103101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evs-fe2846.png" + "then": "https://data.mapcomplete.org/nsi//logos/evs-fe2846.png" }, { "if": { @@ -102915,7 +103115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewz-34ad9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewz-34ad9c.jpg" }, { "if": { @@ -102929,7 +103129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fagne-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fagne-e0b869.svg" }, { "if": { @@ -102944,7 +103144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fayettevillepublicworkscommission-86b821.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-86b821.jpg" }, { "if": { @@ -102958,7 +103158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fingrid-17e9a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fingrid-17e9a7.jpg" }, { "if": { @@ -102972,7 +103172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstenergy-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstenergy-b654b4.jpg" }, { "if": { @@ -102986,7 +103186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fjellnett-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fjellnett-e0b869.svg" }, { "if": { @@ -103000,7 +103200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridapowerandlight-05df97.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-05df97.png" }, { "if": { @@ -103014,7 +103214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortisbc-5611ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortisbc-5611ce.png" }, { "if": { @@ -103028,7 +103228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortum-73a902.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortum-73a902.jpg" }, { "if": { @@ -103042,7 +103242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fs-b6e02f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fs-b6e02f.jpg" }, { "if": { @@ -103056,7 +103256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/furnascentraiseletricas-ddc6a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-ddc6a3.jpg" }, { "if": { @@ -103071,7 +103271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gainesvilleregionalutilities-05df97.png" + "then": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-05df97.png" }, { "if": { @@ -103085,7 +103285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gladeselectriccoop-05df97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-05df97.jpg" }, { "if": { @@ -103099,7 +103299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glitrenett-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/glitrenett-e0b869.svg" }, { "if": { @@ -103113,7 +103313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenspreadelectriccooperative-2d9f43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-2d9f43.jpg" }, { "if": { @@ -103128,7 +103328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandriverdamauthority-67f39c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-67f39c.jpg" }, { "if": { @@ -103142,7 +103342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenevilleenergyauthority-be4a58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-be4a58.jpg" }, { "if": { @@ -103156,7 +103356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenvilleutilitiescommission-86b821.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-86b821.jpg" }, { "if": { @@ -103170,7 +103370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groupee-34ad9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupee-34ad9c.jpg" }, { "if": { @@ -103184,7 +103384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harzenergie-d5e323.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harzenergie-d5e323.jpg" }, { "if": { @@ -103198,7 +103398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haugalandkraftnett-e0b869.png" + "then": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-e0b869.png" }, { "if": { @@ -103212,7 +103412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiianelectriccompany-a27456.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-a27456.jpg" }, { "if": { @@ -103226,7 +103426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntsvilleutilities-ed245e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-ed245e.jpg" }, { "if": { @@ -103240,7 +103440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroenergi-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroenergi-e0b869.svg" }, { "if": { @@ -103254,7 +103454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-f669fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-f669fe.png" }, { "if": { @@ -103268,7 +103468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-116894.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-116894.jpg" }, { "if": { @@ -103282,7 +103482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahopower-3cf0c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahopower-3cf0c1.jpg" }, { "if": { @@ -103296,7 +103496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-7a29cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-7a29cb.png" }, { "if": { @@ -103311,7 +103511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialirrigationdistrict-eefbc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-eefbc4.jpg" }, { "if": { @@ -103325,7 +103525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/independencepowerandlight-f274f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-f274f2.jpg" }, { "if": { @@ -103340,7 +103540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianamichiganpower-e5a7c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-e5a7c1.png" }, { "if": { @@ -103355,7 +103555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianapolispowerandlight-6d7c22.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-6d7c22.png" }, { "if": { @@ -103370,7 +103570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-afbd38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-afbd38.jpg" }, { "if": { @@ -103384,7 +103584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invenergy-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invenergy-b654b4.jpg" }, { "if": { @@ -103398,7 +103598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipto-8d1dd6.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipto-8d1dd6.png" }, { "if": { @@ -103412,7 +103612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itaipubinacional-e91c3a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-e91c3a.svg" }, { "if": { @@ -103426,7 +103626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itc-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itc-b654b4.jpg" }, { "if": { @@ -103440,7 +103640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonenergyauthority-be4a58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-be4a58.jpg" }, { "if": { @@ -103455,7 +103655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-ece18d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-ece18d.jpg" }, { "if": { @@ -103470,7 +103670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseycentralpowerandlight-4409eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-4409eb.jpg" }, { "if": { @@ -103484,7 +103684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joewheeleremc-ed245e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-ed245e.jpg" }, { "if": { @@ -103498,7 +103698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonesborocitywaterandlight-527b39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-527b39.jpg" }, { "if": { @@ -103517,7 +103717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastjapanrailwaycompany-e95322.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-e95322.png" }, { "if": { @@ -103536,7 +103736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centraljapanrailwaycompany-e95322.svg" + "then": "https://data.mapcomplete.org/nsi//logos/centraljapanrailwaycompany-e95322.svg" }, { "if": { @@ -103551,7 +103751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansascityboardofpublicutilities-beff6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-beff6d.png" }, { "if": { @@ -103565,7 +103765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-7a9953.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-7a9953.jpg" }, { "if": { @@ -103579,7 +103779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckypower-ab6528.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckypower-ab6528.png" }, { "if": { @@ -103594,7 +103794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralastateelectricityboard-5c9c82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-5c9c82.jpg" }, { "if": { @@ -103608,7 +103808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kissimmeeutilityauthority-05df97.png" + "then": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-05df97.png" }, { "if": { @@ -103623,7 +103823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knoxvilleutilitiesboard-be4a58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-be4a58.jpg" }, { "if": { @@ -103637,7 +103837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kystnett-e0b869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kystnett-e0b869.jpg" }, { "if": { @@ -103652,7 +103852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-eefbc4.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-eefbc4.png" }, { "if": { @@ -103667,7 +103867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayetteutilitiessystem-f4d799.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-f4d799.jpg" }, { "if": { @@ -103682,7 +103882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leecountyelectriccooperative-05df97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-05df97.jpg" }, { "if": { @@ -103696,7 +103896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leag-d5e323.svg" + "then": "https://data.mapcomplete.org/nsi//logos/leag-d5e323.svg" }, { "if": { @@ -103711,7 +103911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechwerke-fe1279.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechwerke-fe1279.jpg" }, { "if": { @@ -103725,7 +103925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liander-754f07.png" + "then": "https://data.mapcomplete.org/nsi//logos/liander-754f07.png" }, { "if": { @@ -103739,7 +103939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnelectricsystem-fcf6da.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-fcf6da.png" }, { "if": { @@ -103753,7 +103953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linja-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/linja-e0b869.svg" }, { "if": { @@ -103767,7 +103967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-c1b8b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-c1b8b3.jpg" }, { "if": { @@ -103781,7 +103981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lockhartpowercompany-ae69b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-ae69b6.png" }, { "if": { @@ -103796,7 +103996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-2d9f43.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-2d9f43.png" }, { "if": { @@ -103810,7 +104010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswnetz-9e30b0.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswnetz-9e30b0.png" }, { "if": { @@ -103825,7 +104025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubbockpowerandlight-2d9f43.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-2d9f43.png" }, { "if": { @@ -103839,7 +104039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lyse-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lyse-e0b869.svg" }, { "if": { @@ -103853,7 +104053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manitobahydro-d668c3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manitobahydro-d668c3.svg" }, { "if": { @@ -103867,7 +104067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marke-fe2846.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marke-fe2846.jpg" }, { "if": { @@ -103881,7 +104081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshallmunicipalutilities-16a6a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-16a6a1.jpg" }, { "if": { @@ -103895,7 +104095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-ed245e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-ed245e.jpg" }, { "if": { @@ -103909,7 +104109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mdu-955eef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mdu-955eef.jpg" }, { "if": { @@ -103924,7 +104124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphislightgasandwater-be4a58.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-be4a58.jpg" }, { "if": { @@ -103938,7 +104138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meralco-53cceb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meralco-53cceb.jpg" }, { "if": { @@ -103952,7 +104152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meted-32252f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meted-32252f.jpg" }, { "if": { @@ -103967,7 +104167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midamericanenergy-43ace8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-43ace8.jpg" }, { "if": { @@ -103981,7 +104181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midwestenergy-beff6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midwestenergy-beff6d.jpg" }, { "if": { @@ -103995,7 +104195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-16a6a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-16a6a1.jpg" }, { "if": { @@ -104009,7 +104209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnkotapowercooperative-982f8f.png" + "then": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-982f8f.png" }, { "if": { @@ -104023,7 +104223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippipower-7d3f64.png" + "then": "https://data.mapcomplete.org/nsi//logos/mississippipower-7d3f64.png" }, { "if": { @@ -104037,7 +104237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monpower-349cef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monpower-349cef.jpg" }, { "if": { @@ -104051,7 +104251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nampower-42c28a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nampower-42c28a.svg" }, { "if": { @@ -104066,7 +104266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nashvilleelectricservice-be4a58.png" + "then": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-be4a58.png" }, { "if": { @@ -104080,7 +104280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgrid-e4870f.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgrid-e4870f.png" }, { "if": { @@ -104095,7 +104295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-53cceb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-53cceb.jpg" }, { "if": { @@ -104109,7 +104309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitydistribution-11f3a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-11f3a5.jpg" }, { "if": { @@ -104123,7 +104323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitytransmission-11f3a5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-11f3a5.svg" }, { "if": { @@ -104139,7 +104339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbpower-d59b81.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nbpower-d59b81.svg" }, { "if": { @@ -104153,7 +104353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoenergia-ddc6a3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoenergia-ddc6a3.svg" }, { "if": { @@ -104167,7 +104367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzno-7a29cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netzno-7a29cb.jpg" }, { "if": { @@ -104181,7 +104381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzebwgmbh-2bcac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-2bcac7.svg" }, { "if": { @@ -104196,7 +104396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkpowerauthority-255ed7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-255ed7.jpg" }, { "if": { @@ -104210,7 +104410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-657911.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-657911.jpg" }, { "if": { @@ -104224,7 +104424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandpower-657911.png" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-657911.png" }, { "if": { @@ -104238,7 +104438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexteraenergy-464507.png" + "then": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-464507.png" }, { "if": { @@ -104252,7 +104452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nienetworks-a6966c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nienetworks-a6966c.jpg" }, { "if": { @@ -104266,7 +104466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernpowergrid-11f3a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-11f3a5.jpg" }, { "if": { @@ -104280,7 +104480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-3aac48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-3aac48.jpg" }, { "if": { @@ -104294,7 +104494,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-5f1772.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-5f1772.jpg" }, { "if": { @@ -104308,7 +104508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntenett-e0b869.png" + "then": "https://data.mapcomplete.org/nsi//logos/ntenett-e0b869.png" }, { "if": { @@ -104322,7 +104522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nvenergy-0b9217.png" + "then": "https://data.mapcomplete.org/nsi//logos/nvenergy-0b9217.png" }, { "if": { @@ -104336,7 +104536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nwelectricpowercooperative-f274f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-f274f2.jpg" }, { "if": { @@ -104350,7 +104550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nyseg-255ed7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nyseg-255ed7.jpg" }, { "if": { @@ -104365,7 +104565,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomagasandelectric-67f39c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-67f39c.jpg" }, { "if": { @@ -104379,7 +104579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omahapublicpowerdistrict-fcf6da.png" + "then": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-fcf6da.png" }, { "if": { @@ -104393,7 +104593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oncor-2d9f43.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oncor-2d9f43.jpg" }, { "if": { @@ -104407,7 +104607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orionnewzealand-737a3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-737a3a.jpg" }, { "if": { @@ -104422,7 +104622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlandoutilitiescommission-05df97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-05df97.jpg" }, { "if": { @@ -104436,7 +104636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottertailpowercompany-59ff21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-59ff21.jpg" }, { "if": { @@ -104451,7 +104651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-eefbc4.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-eefbc4.png" }, { "if": { @@ -104465,7 +104665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificpower-4146e4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificpower-4146e4.svg" }, { "if": { @@ -104479,7 +104679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificorp-b654b4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificorp-b654b4.svg" }, { "if": { @@ -104493,7 +104693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pea-af4985.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pea-af4985.jpg" }, { "if": { @@ -104507,7 +104707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peco-e7c462.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peco-e7c462.jpg" }, { "if": { @@ -104521,7 +104721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peinertragergmbh-9e30b0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/peinertragergmbh-9e30b0.svg" }, { "if": { @@ -104535,7 +104735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penelec-32252f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penelec-32252f.jpg" }, { "if": { @@ -104550,7 +104750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perusahaanlistriknegara-f1e749.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-f1e749.jpg" }, { "if": { @@ -104564,7 +104764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrobras-ddc6a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrobras-ddc6a3.png" }, { "if": { @@ -104578,7 +104778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfalzwerkeag-dc465b.png" + "then": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-dc465b.png" }, { "if": { @@ -104592,7 +104792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgedystrybucja-dffc4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-dffc4e.jpg" }, { "if": { @@ -104606,7 +104806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgeenergetykakolejowa-dffc4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-dffc4e.jpg" }, { "if": { @@ -104620,7 +104820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pjm-4409eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pjm-4409eb.jpg" }, { "if": { @@ -104635,7 +104835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-07c80d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-07c80d.jpg" }, { "if": { @@ -104650,7 +104850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-6ebdc3.png" + "then": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-6ebdc3.png" }, { "if": { @@ -104665,7 +104865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandgeneralelectric-c9a7db.png" + "then": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-c9a7db.png" }, { "if": { @@ -104679,7 +104879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacedison-d1354a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacedison-d1354a.jpg" }, { "if": { @@ -104694,7 +104894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacelectricpowercompany-f7bab7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-f7bab7.jpg" }, { "if": { @@ -104708,7 +104908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powergridcorporationofindialtd-5c9c82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-5c9c82.jpg" }, { "if": { @@ -104722,7 +104922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerco-737a3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerco-737a3a.jpg" }, { "if": { @@ -104736,7 +104936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powercor-8d5e75.png" + "then": "https://data.mapcomplete.org/nsi//logos/powercor-8d5e75.png" }, { "if": { @@ -104750,7 +104950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerlink-189d90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerlink-189d90.jpg" }, { "if": { @@ -104764,7 +104964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ppl-91e428.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ppl-91e428.jpg" }, { "if": { @@ -104778,7 +104978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pre-04ae3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pre-04ae3b.jpg" }, { "if": { @@ -104792,7 +104992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premierenergy-4f2e12.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/premierenergy-4f2e12.jpg" }, { "if": { @@ -104807,7 +105007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-bcec93.png" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-bcec93.png" }, { "if": { @@ -104821,7 +105021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicserviceenterprisegroup-022a9f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-022a9f.jpg" }, { "if": { @@ -104836,7 +105036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-58ac50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-58ac50.jpg" }, { "if": { @@ -104851,7 +105051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pugetsoundenergy-fa4900.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-fa4900.jpg" }, { "if": { @@ -104865,7 +105065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radiuselnet-be8c7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radiuselnet-be8c7f.jpg" }, { "if": { @@ -104879,7 +105079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rappahannockelectriccooperative-0c4694.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-0c4694.jpg" }, { "if": { @@ -104894,7 +105094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redelectricadeespana-769454.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-769454.jpg" }, { "if": { @@ -104908,7 +105108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reedycreekimprovementdistrict-05df97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reedycreekimprovementdistrict-05df97.jpg" }, { "if": { @@ -104922,7 +105122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ren-4d28c7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ren-4d28c7.svg" }, { "if": { @@ -104936,7 +105136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resoluteforestproducts-f669fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/resoluteforestproducts-f669fe.jpg" }, { "if": { @@ -104950,7 +105150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-b6e02f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-b6e02f.svg" }, { "if": { @@ -104964,7 +105164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodeislandenergy-690b32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-690b32.jpg" }, { "if": { @@ -104978,7 +105178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riograndeenergia-ddc6a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-ddc6a3.png" }, { "if": { @@ -104992,7 +105192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-c4d364.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-c4d364.svg" }, { "if": { @@ -105006,7 +105206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochestergasandelectric-255ed7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-255ed7.jpg" }, { "if": { @@ -105020,7 +105220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockymountainpower-5acb27.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-5acb27.svg" }, { "if": { @@ -105034,7 +105234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romandeenergie-74cefd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romandeenergie-74cefd.jpg" }, { "if": { @@ -105048,7 +105248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosevilleelectric-eefbc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-eefbc4.jpg" }, { "if": { @@ -105062,7 +105262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rte-e3be4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/rte-e3be4c.png" }, { "if": { @@ -105076,7 +105276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-87b138.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-87b138.jpg" }, { "if": { @@ -105090,7 +105290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-14962e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-14962e.png" }, { "if": { @@ -105105,7 +105305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-eefbc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-eefbc4.jpg" }, { "if": { @@ -105119,7 +105319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sadalestikls-e41140.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sadalestikls-e41140.jpg" }, { "if": { @@ -105134,7 +105334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltriverproject-33eed2.png" + "then": "https://data.mapcomplete.org/nsi//logos/saltriverproject-33eed2.png" }, { "if": { @@ -105148,7 +105348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-38d9ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-38d9ce.jpg" }, { "if": { @@ -105163,7 +105363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegogasandelectric-3e105f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-3e105f.jpg" }, { "if": { @@ -105177,7 +105377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saskpower-e7518f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saskpower-e7518f.svg" }, { "if": { @@ -105191,7 +105391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-34ad9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-34ad9c.png" }, { "if": { @@ -105205,7 +105405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-2d11c2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-2d11c2.svg" }, { "if": { @@ -105220,7 +105420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-2a61eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-2a61eb.jpg" }, { "if": { @@ -105235,7 +105435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlecitylight-fa4900.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-fa4900.png" }, { "if": { @@ -105249,7 +105449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seminoleelectriccooperative-05df97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-05df97.jpg" }, { "if": { @@ -105263,7 +105463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senelec-2f9919.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senelec-2f9919.jpg" }, { "if": { @@ -105277,7 +105477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sig-27ed5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sig-27ed5d.jpg" }, { "if": { @@ -105291,7 +105491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slemco-f4d799.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slemco-f4d799.jpg" }, { "if": { @@ -105306,7 +105506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-1baa28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-1baa28.jpg" }, { "if": { @@ -105320,7 +105520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-e3be4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-e3be4c.png" }, { "if": { @@ -105334,7 +105534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-e3be4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-e3be4c.png" }, { "if": { @@ -105349,7 +105549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-b8385e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-b8385e.jpg" }, { "if": { @@ -105364,7 +105564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sognogfjordaneenergi-e0b869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-e0b869.jpg" }, { "if": { @@ -105379,7 +105579,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniaedison-eefbc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-eefbc4.jpg" }, { "if": { @@ -105393,7 +105593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-527b39.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-527b39.jpg" }, { "if": { @@ -105407,7 +105607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spenergynetworks-2a61eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-2a61eb.jpg" }, { "if": { @@ -105422,7 +105622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldutilityboard-c9a7db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-c9a7db.jpg" }, { "if": { @@ -105436,7 +105636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssentransmission-cd3045.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ssentransmission-cd3045.jpg" }, { "if": { @@ -105450,7 +105650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedusseldorf-fe2846.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-fe2846.jpg" }, { "if": { @@ -105464,7 +105664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeleipzig-14962e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-14962e.jpg" }, { "if": { @@ -105479,7 +105679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-fe1279.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-fe1279.jpg" }, { "if": { @@ -105493,7 +105693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statkraft-87b138.png" + "then": "https://data.mapcomplete.org/nsi//logos/statkraft-87b138.png" }, { "if": { @@ -105507,7 +105707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statnett-e0b869.png" + "then": "https://data.mapcomplete.org/nsi//logos/statnett-e0b869.png" }, { "if": { @@ -105521,7 +105721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stedin-754f07.png" + "then": "https://data.mapcomplete.org/nsi//logos/stedin-754f07.png" }, { "if": { @@ -105535,7 +105735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzberlin-e98750.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-e98750.svg" }, { "if": { @@ -105549,7 +105749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-840ea0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-840ea0.jpg" }, { "if": { @@ -105563,7 +105763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-beff6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-beff6d.jpg" }, { "if": { @@ -105577,7 +105777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwagenergie-65a0b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwagenergie-65a0b6.jpg" }, { "if": { @@ -105591,7 +105791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svenskakraftnat-dc38bb.png" + "then": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-dc38bb.png" }, { "if": { @@ -105606,7 +105806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwesternelectricpowercompany-43998f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-43998f.jpg" }, { "if": { @@ -105620,7 +105820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissgrid-34ad9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/swissgrid-34ad9c.png" }, { "if": { @@ -105634,7 +105834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sygnir-e0b869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sygnir-e0b869.jpg" }, { "if": { @@ -105648,7 +105848,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-dffc4e.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-dffc4e.png" }, { "if": { @@ -105662,7 +105862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teias-54dc4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teias-54dc4b.jpg" }, { "if": { @@ -105676,7 +105876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenaganasional-97fc17.png" + "then": "https://data.mapcomplete.org/nsi//logos/tenaganasional-97fc17.png" }, { "if": { @@ -105691,7 +105891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseevalleyauthority-b654b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-b654b4.png" }, { "if": { @@ -105705,7 +105905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennet-754f07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennet-754f07.jpg" }, { "if": { @@ -105719,7 +105919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennettso-adf225.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennettso-adf225.jpg" }, { "if": { @@ -105733,7 +105933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tensio-e0b869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tensio-e0b869.jpg" }, { "if": { @@ -105747,7 +105947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terna-7de2b1.png" + "then": "https://data.mapcomplete.org/nsi//logos/terna-7de2b1.png" }, { "if": { @@ -105762,7 +105962,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasnewmexicopower-2d9f43.png" + "then": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-2d9f43.png" }, { "if": { @@ -105776,7 +105976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-7a29cb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-7a29cb.svg" }, { "if": { @@ -105790,7 +105990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transcomahuesa-97607d.png" + "then": "https://data.mapcomplete.org/nsi//logos/transcomahuesa-97607d.png" }, { "if": { @@ -105804,7 +106004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transener-c85572.png" + "then": "https://data.mapcomplete.org/nsi//logos/transener-c85572.png" }, { "if": { @@ -105818,7 +106018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transgrid-67a43a.png" + "then": "https://data.mapcomplete.org/nsi//logos/transgrid-67a43a.png" }, { "if": { @@ -105832,7 +106032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transmissioncompanyofnigeria-d7a735.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-d7a735.jpg" }, { "if": { @@ -105846,7 +106046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnetbwgmbh-2bcac7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-2bcac7.svg" }, { "if": { @@ -105860,7 +106060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-67a43a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-67a43a.jpg" }, { "if": { @@ -105874,7 +106074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transpowernewzealand-737a3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-737a3a.jpg" }, { "if": { @@ -105888,7 +106088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredas-54dc4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredas-54dc4b.jpg" }, { "if": { @@ -105903,7 +106103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tucsonelectricpower-33eed2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-33eed2.jpg" }, { "if": { @@ -105917,7 +106117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugi-32252f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ugi-32252f.png" }, { "if": { @@ -105931,7 +106131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukpowernetworks-11f3a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-11f3a5.jpg" }, { "if": { @@ -105945,7 +106145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniperkraftwerke-d5e323.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-d5e323.png" }, { "if": { @@ -105959,7 +106159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedilluminatingcompany-f193f8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-f193f8.jpg" }, { "if": { @@ -105973,7 +106173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatessteel-ed245e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-ed245e.svg" }, { "if": { @@ -105987,7 +106187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitil-6459f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitil-6459f7.png" }, { "if": { @@ -106001,7 +106201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-a0eb04.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-a0eb04.svg" }, { "if": { @@ -106015,7 +106215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valesa-ddc6a3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valesa-ddc6a3.jpg" }, { "if": { @@ -106029,7 +106229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-ccd735.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-ccd735.png" }, { "if": { @@ -106043,7 +106243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-d5e323.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-d5e323.png" }, { "if": { @@ -106057,7 +106257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-737a3a.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-737a3a.png" }, { "if": { @@ -106071,7 +106271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-7a29cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-7a29cb.jpg" }, { "if": { @@ -106085,7 +106285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontelectricpowercompany-f51223.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-f51223.jpg" }, { "if": { @@ -106099,7 +106299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/versantpower-834cd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/versantpower-834cd5.jpg" }, { "if": { @@ -106113,7 +106313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vestall-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vestall-e0b869.svg" }, { "if": { @@ -106127,7 +106327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vevig-e0b869.png" + "then": "https://data.mapcomplete.org/nsi//logos/vevig-e0b869.png" }, { "if": { @@ -106141,7 +106341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viesgodistribucionelectrica-769454.png" + "then": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-769454.png" }, { "if": { @@ -106155,7 +106355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visayanelectric-53cceb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visayanelectric-53cceb.jpg" }, { "if": { @@ -106169,7 +106369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vissi-e0b869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vissi-e0b869.svg" }, { "if": { @@ -106184,7 +106384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskadistribucna-1baa28.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-1baa28.png" }, { "if": { @@ -106198,7 +106398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-f4d799.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-f4d799.jpg" }, { "if": { @@ -106212,7 +106412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wemagnetzgmbh-3723c9.png" + "then": "https://data.mapcomplete.org/nsi//logos/wemagnetzgmbh-3723c9.png" }, { "if": { @@ -106226,7 +106426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westpennpower-67e3b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westpennpower-67e3b3.jpg" }, { "if": { @@ -106241,7 +106441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernareapoweradministration-b654b4.png" + "then": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-b654b4.png" }, { "if": { @@ -106256,7 +106456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfalenwesernetz-1c69d7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westfalenwesernetz-1c69d7.svg" }, { "if": { @@ -106270,7 +106470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westnetz-d5e323.png" + "then": "https://data.mapcomplete.org/nsi//logos/westnetz-d5e323.png" }, { "if": { @@ -106284,7 +106484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-7a29cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-7a29cb.jpg" }, { "if": { @@ -106298,7 +106498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienernetze-7a29cb.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienernetze-7a29cb.png" }, { "if": { @@ -106312,7 +106512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-b654b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-b654b4.jpg" }, { "if": { @@ -106326,7 +106526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-57554f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-57554f.svg" }, { "if": { @@ -106340,7 +106540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/788cf3-8d1dd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/788cf3-8d1dd6.jpg" }, { "if": { @@ -106354,7 +106554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7c17ff-af3ca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7c17ff-af3ca1.jpg" }, { "if": { @@ -106368,7 +106568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f36860-af3ca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/f36860-af3ca1.jpg" }, { "if": { @@ -106382,7 +106582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/084a1e-af3ca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/084a1e-af3ca1.jpg" }, { "if": { @@ -106396,7 +106596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cc48e9-af3ca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cc48e9-af3ca1.jpg" }, { "if": { @@ -106410,7 +106610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dd2584-af3ca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dd2584-af3ca1.jpg" }, { "if": { @@ -106424,7 +106624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9e843b-af3ca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9e843b-af3ca1.jpg" }, { "if": { @@ -106438,7 +106638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8fc412-99800a.png" + "then": "https://data.mapcomplete.org/nsi//logos/8fc412-99800a.png" }, { "if": { @@ -106452,7 +106652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1fc076-99800a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1fc076-99800a.jpg" }, { "if": { @@ -106466,7 +106666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/472734-af3ca1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/472734-af3ca1.jpg" }, { "if": { @@ -106482,7 +106682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tunisiancompanyofelectricityandgas-7743c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tunisiancompanyofelectricityandgas-7743c5.jpg" }, { "if": { @@ -106498,7 +106698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-1c2f9f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-1c2f9f.jpg" }, { "if": { @@ -106515,7 +106715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-af4985.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-af4985.jpg" }, { "if": { @@ -106538,7 +106738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clppowerhongkonglimited-64f82c.png" + "then": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-64f82c.png" }, { "if": { @@ -106554,7 +106754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chubuelectricpowergridcompany-e95322.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-e95322.svg" }, { "if": { @@ -106570,7 +106770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-e95322.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-e95322.png" }, { "if": { @@ -106587,7 +106787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-e95322.png" + "then": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-e95322.png" }, { "if": { @@ -106601,7 +106801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/34ba0b-4e9660.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/34ba0b-4e9660.jpg" }, { "if": { @@ -106617,7 +106817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tepcopowergrid-e95322.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-e95322.svg" }, { "if": { @@ -106634,7 +106834,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okinawaelectricpowercompany-e95322.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-e95322.jpg" }, { "if": { @@ -106650,7 +106850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jpowertransmissionnetwork-e95322.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jpowertransmissionnetwork-e95322.svg" }, { "if": { @@ -106673,7 +106873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-64f82c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-64f82c.jpg" }, { "if": { @@ -106687,7 +106887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroottawa-e22604.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroottawa-e22604.svg" }, { "if": { @@ -106701,7 +106901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontohydro-e22604.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torontohydro-e22604.jpg" }, { "if": { @@ -106715,7 +106915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4countyelectricpowerassociation-311089.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/4countyelectricpowerassociation-311089.jpg" }, { "if": { @@ -106729,7 +106929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/50hertztransmission-be6516.svg" + "then": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-be6516.svg" }, { "if": { @@ -106743,7 +106943,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aenergivannkraft-5b4abc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-5b4abc.jpg" }, { "if": { @@ -106757,7 +106957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adif-0a3cea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adif-0a3cea.jpg" }, { "if": { @@ -106771,7 +106971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aek-dc3d2f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aek-dc3d2f.jpg" }, { "if": { @@ -106785,7 +106985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aepohio-d69390.png" + "then": "https://data.mapcomplete.org/nsi//logos/aepohio-d69390.png" }, { "if": { @@ -106799,7 +106999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeptexas-1f3576.png" + "then": "https://data.mapcomplete.org/nsi//logos/aeptexas-1f3576.png" }, { "if": { @@ -106813,7 +107013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-b598fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-b598fb.png" }, { "if": { @@ -106827,7 +107027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aew-f9871c.png" + "then": "https://data.mapcomplete.org/nsi//logos/aew-f9871c.png" }, { "if": { @@ -106841,7 +107041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agderenergi-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agderenergi-5b4abc.svg" }, { "if": { @@ -106856,7 +107056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktiengesellschaftfurversorgungsunternehmen-727666.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aktiengesellschaftfurversorgungsunternehmen-727666.svg" }, { "if": { @@ -106870,7 +107070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamapower-07573a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamapower-07573a.jpg" }, { "if": { @@ -106885,7 +107085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allgaueruberlandwerk-3f3e0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-3f3e0f.png" }, { "if": { @@ -106900,7 +107100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliantenergy-8222ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/alliantenergy-8222ce.png" }, { "if": { @@ -106914,7 +107114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altalink-f0e797.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altalink-f0e797.jpg" }, { "if": { @@ -106929,7 +107129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameren-8445a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameren-8445a0.png" }, { "if": { @@ -106944,7 +107144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanelectricpower-8222ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-8222ce.png" }, { "if": { @@ -106958,7 +107158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amprion-be6516.svg" + "then": "https://data.mapcomplete.org/nsi//logos/amprion-be6516.svg" }, { "if": { @@ -106972,7 +107172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtrak-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtrak-8222ce.jpg" }, { "if": { @@ -106986,7 +107186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaheimpublicutilities-16d513.png" + "then": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-16d513.png" }, { "if": { @@ -107000,7 +107200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ande-221939.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ande-221939.jpg" }, { "if": { @@ -107014,7 +107214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appalachianpowercompany-a249c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-a249c6.png" }, { "if": { @@ -107028,7 +107228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonapublicservice-568d52.png" + "then": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-568d52.png" }, { "if": { @@ -107042,7 +107242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-20ede4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-20ede4.jpg" }, { "if": { @@ -107056,7 +107256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atcoelectric-7d6f54.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atcoelectric-7d6f54.svg" }, { "if": { @@ -107070,7 +107270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atel-abd8f7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atel-abd8f7.svg" }, { "if": { @@ -107084,7 +107284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlanticcityelectric-ef89a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-ef89a2.jpg" }, { "if": { @@ -107098,7 +107298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/augstspriegumatikls-a6ab81.png" + "then": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-a6ab81.png" }, { "if": { @@ -107112,7 +107312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausgrid-efee82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausgrid-efee82.jpg" }, { "if": { @@ -107126,7 +107326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-1f3576.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-1f3576.jpg" }, { "if": { @@ -107140,7 +107340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avaconnetz-ae138d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avaconnetz-ae138d.svg" }, { "if": { @@ -107154,7 +107354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avista-30afc2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avista-30afc2.jpg" }, { "if": { @@ -107168,7 +107368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axpo-3c6d24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axpo-3c6d24.jpg" }, { "if": { @@ -107183,7 +107383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-d4ea6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-d4ea6d.jpg" }, { "if": { @@ -107197,7 +107397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayernwerk-fe9235.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bayernwerk-fe9235.svg" }, { "if": { @@ -107211,7 +107411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-b42389.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-b42389.jpg" }, { "if": { @@ -107226,7 +107426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belizeelectricitylimited-8eb1ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-8eb1ad.jpg" }, { "if": { @@ -107240,7 +107440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkk-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bkk-5b4abc.svg" }, { "if": { @@ -107254,7 +107454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkw-ee442c.png" + "then": "https://data.mapcomplete.org/nsi//logos/bkw-ee442c.png" }, { "if": { @@ -107268,7 +107468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blueridgeenergy-183b18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-183b18.jpg" }, { "if": { @@ -107283,7 +107483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonnevillepoweradministration-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-8222ce.jpg" }, { "if": { @@ -107297,7 +107497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bornholmsenergiandforsyning-dd69df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-dd69df.jpg" }, { "if": { @@ -107311,7 +107511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightridge-a20e2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightridge-a20e2a.jpg" }, { "if": { @@ -107325,7 +107525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bryantexasutilities-1f3576.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-1f3576.jpg" }, { "if": { @@ -107339,7 +107539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgenlandenergieag-ac2579.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-ac2579.jpg" }, { "if": { @@ -107353,7 +107553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalpower-3c7f2b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalpower-3c7f2b.jpg" }, { "if": { @@ -107367,7 +107567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caruna-4923eb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caruna-4923eb.svg" }, { "if": { @@ -107381,7 +107581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cdeee-6f048b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cdeee-6f048b.jpg" }, { "if": { @@ -107395,7 +107595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceee-241a4c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ceee-241a4c.svg" }, { "if": { @@ -107409,7 +107609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celesc-241a4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celesc-241a4c.jpg" }, { "if": { @@ -107423,7 +107623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cemig-241a4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cemig-241a4c.jpg" }, { "if": { @@ -107437,7 +107637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-8222ce.jpg" }, { "if": { @@ -107451,7 +107651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralmainepowercompany-13240d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-13240d.jpg" }, { "if": { @@ -107465,7 +107665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceps-43d40b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceps-43d40b.jpg" }, { "if": { @@ -107479,7 +107679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cern-db1f4d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cern-db1f4d.jpg" }, { "if": { @@ -107494,7 +107694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceylonelectricityboard-827b69.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-827b69.png" }, { "if": { @@ -107508,7 +107708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cge-68c0ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cge-68c0ce.jpg" }, { "if": { @@ -107523,7 +107723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cipco-5ca3fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cipco-5ca3fb.jpg" }, { "if": { @@ -107537,7 +107737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofames-5ca3fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofames-5ca3fb.jpg" }, { "if": { @@ -107551,7 +107751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofconcord-183b18.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofconcord-183b18.png" }, { "if": { @@ -107565,7 +107765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofelizabeth-183b18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofelizabeth-183b18.jpg" }, { "if": { @@ -107579,7 +107779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhighpoint-183b18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhighpoint-183b18.jpg" }, { "if": { @@ -107593,7 +107793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakeland-1d9dd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-1d9dd1.png" }, { "if": { @@ -107607,7 +107807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflexington-183b18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflexington-183b18.jpg" }, { "if": { @@ -107621,7 +107821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnatchitoches-d6d8c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnatchitoches-d6d8c4.jpg" }, { "if": { @@ -107635,7 +107835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftallahassee-1d9dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-1d9dd1.jpg" }, { "if": { @@ -107649,7 +107849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkpublicutilities-4d2784.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-4d2784.jpg" }, { "if": { @@ -107663,7 +107863,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clayelectriccooperative-1d9dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-1d9dd1.jpg" }, { "if": { @@ -107677,7 +107877,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleco-d6d8c4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cleco-d6d8c4.svg" }, { "if": { @@ -107691,7 +107891,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandpublicpower-d69390.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandpublicpower-d69390.jpg" }, { "if": { @@ -107705,7 +107905,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cnr-718125.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cnr-718125.jpg" }, { "if": { @@ -107719,7 +107919,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codelcochile-68c0ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/codelcochile-68c0ce.jpg" }, { "if": { @@ -107733,7 +107933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coelba-241a4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/coelba-241a4c.png" }, { "if": { @@ -107747,7 +107947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colbun-68c0ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colbun-68c0ce.jpg" }, { "if": { @@ -107761,7 +107961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradospringsutilities-ff44fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-ff44fb.jpg" }, { "if": { @@ -107776,7 +107976,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionfederaldeelectricidad-a17773.png" + "then": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-a17773.png" }, { "if": { @@ -107790,7 +107990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthedison-dbfde7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-dbfde7.jpg" }, { "if": { @@ -107804,7 +108004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consolidatededison-451afe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consolidatededison-451afe.jpg" }, { "if": { @@ -107818,7 +108018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumersenergy-b0ef94.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumersenergy-b0ef94.png" }, { "if": { @@ -107832,7 +108032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copel-241a4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copel-241a4c.jpg" }, { "if": { @@ -107847,7 +108047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornbeltpowercooperative-5ca3fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-5ca3fb.jpg" }, { "if": { @@ -107861,7 +108061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpoelec-4f3615.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpoelec-4f3615.png" }, { "if": { @@ -107875,7 +108075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosern-241a4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cosern-241a4c.png" }, { "if": { @@ -107889,7 +108089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countiesenergy-43abd4.png" + "then": "https://data.mapcomplete.org/nsi//logos/countiesenergy-43abd4.png" }, { "if": { @@ -107903,7 +108103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpflenergia-241a4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/cpflenergia-241a4c.png" }, { "if": { @@ -107917,7 +108117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-1f3576.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-1f3576.jpg" }, { "if": { @@ -107931,7 +108131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cullmanelectriccooperative-07573a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-07573a.png" }, { "if": { @@ -107945,7 +108145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dairylandpowercooperative-401a30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-401a30.jpg" }, { "if": { @@ -107960,7 +108160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daytonpowerandlight-d69390.png" + "then": "https://data.mapcomplete.org/nsi//logos/daytonpowerandlight-d69390.png" }, { "if": { @@ -107974,7 +108174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbenergie-be6516.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbenergie-be6516.svg" }, { "if": { @@ -107988,7 +108188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decaturutilities-07573a.png" + "then": "https://data.mapcomplete.org/nsi//logos/decaturutilities-07573a.png" }, { "if": { @@ -108002,7 +108202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delmarvapower-4fc575.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delmarvapower-4fc575.jpg" }, { "if": { @@ -108016,7 +108216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/demco-d6d8c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/demco-d6d8c4.jpg" }, { "if": { @@ -108030,7 +108230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominionenergy-fe3dff.png" + "then": "https://data.mapcomplete.org/nsi//logos/dominionenergy-fe3dff.png" }, { "if": { @@ -108044,7 +108244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dowchemicalcompany-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-8222ce.jpg" }, { "if": { @@ -108058,7 +108258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteelectriccompany-b0ef94.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-b0ef94.png" }, { "if": { @@ -108072,7 +108272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteenergy-b0ef94.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteenergy-b0ef94.png" }, { "if": { @@ -108086,7 +108286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-a55424.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-a55424.jpg" }, { "if": { @@ -108100,7 +108300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergyprogress-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-8222ce.jpg" }, { "if": { @@ -108114,7 +108314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duquesnelight-cdf661.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duquesnelight-cdf661.jpg" }, { "if": { @@ -108128,7 +108328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eredes-a8586b.png" + "then": "https://data.mapcomplete.org/nsi//logos/eredes-a8586b.png" }, { "if": { @@ -108142,7 +108342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edisnetzgmbh-7fac1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-7fac1b.jpg" }, { "if": { @@ -108156,7 +108356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-060465.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-060465.png" }, { "if": { @@ -108170,7 +108370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonmitte-be6516.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonmitte-be6516.svg" }, { "if": { @@ -108184,7 +108384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonnetz-be6516.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonnetz-be6516.svg" }, { "if": { @@ -108198,7 +108398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonwestfalenweser-be6516.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonwestfalenweser-be6516.svg" }, { "if": { @@ -108212,7 +108412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastkentuckypowercooperative-ca375a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-ca375a.jpg" }, { "if": { @@ -108226,7 +108426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastriverelectricpowercooperative-0861a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-0861a1.jpg" }, { "if": { @@ -108240,7 +108440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edenor-85438f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edenor-85438f.jpg" }, { "if": { @@ -108254,7 +108454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpespiritosanto-06c212.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-06c212.svg" }, { "if": { @@ -108270,7 +108470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovaveis-8b66af.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-8b66af.svg" }, { "if": { @@ -108284,7 +108484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpsaopaulo-241a4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-241a4c.jpg" }, { "if": { @@ -108298,7 +108498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egd-9e3254.svg" + "then": "https://data.mapcomplete.org/nsi//logos/egd-9e3254.svg" }, { "if": { @@ -108312,7 +108512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eirgrid-9084ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eirgrid-9084ae.jpg" }, { "if": { @@ -108326,7 +108526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekt-46d8da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekt-46d8da.jpg" }, { "if": { @@ -108341,7 +108541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-060465.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-060465.png" }, { "if": { @@ -108355,7 +108555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitynorthwest-73f066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-73f066.jpg" }, { "if": { @@ -108369,7 +108569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrilevi-9b4ddf.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrilevi-9b4ddf.png" }, { "if": { @@ -108383,7 +108583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elenia-4923eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elenia-4923eb.jpg" }, { "if": { @@ -108397,7 +108597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-9b4ddf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-9b4ddf.jpg" }, { "if": { @@ -108411,7 +108611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eletropaulo-241a4c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eletropaulo-241a4c.svg" }, { "if": { @@ -108425,7 +108625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elia-683ab7.png" + "then": "https://data.mapcomplete.org/nsi//logos/elia-683ab7.png" }, { "if": { @@ -108439,7 +108639,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ellevio-da7f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ellevio-da7f1f.png" }, { "if": { @@ -108453,7 +108653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmu-b8e692.png" + "then": "https://data.mapcomplete.org/nsi//logos/elmu-b8e692.png" }, { "if": { @@ -108467,7 +108667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elvia-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elvia-5b4abc.svg" }, { "if": { @@ -108482,7 +108682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-6a73f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-6a73f0.png" }, { "if": { @@ -108496,7 +108696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endeavourenergy-efee82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-efee82.jpg" }, { "if": { @@ -108510,7 +108710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-0a3cea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-0a3cea.jpg" }, { "if": { @@ -108524,7 +108724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enea-8d0004.png" + "then": "https://data.mapcomplete.org/nsi//logos/enea-8d0004.png" }, { "if": { @@ -108538,7 +108738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enedis-46f9bb.png" + "then": "https://data.mapcomplete.org/nsi//logos/enedis-46f9bb.png" }, { "if": { @@ -108552,7 +108752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-060465.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-060465.png" }, { "if": { @@ -108566,7 +108766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaoceara-241a4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-241a4c.png" }, { "if": { @@ -108580,7 +108780,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-241a4c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-241a4c.svg" }, { "if": { @@ -108594,7 +108794,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-060465.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-060465.svg" }, { "if": { @@ -108608,7 +108808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-8d0004.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-8d0004.png" }, { "if": { @@ -108622,7 +108822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energex-069ec2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energex-069ec2.jpg" }, { "if": { @@ -108637,7 +108837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiasdeportugal-a8586b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-a8586b.svg" }, { "if": { @@ -108651,7 +108851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-877aa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-877aa7.jpg" }, { "if": { @@ -108665,7 +108865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedumali-ff520c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedumali-ff520c.jpg" }, { "if": { @@ -108680,7 +108880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieversorgungmittelrhein-b8409d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-b8409d.jpg" }, { "if": { @@ -108694,7 +108894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energinet-dd0e35.png" + "then": "https://data.mapcomplete.org/nsi//logos/energinet-dd0e35.png" }, { "if": { @@ -108709,7 +108909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energyfijilimited-bff915.png" + "then": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-bff915.png" }, { "if": { @@ -108723,7 +108923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enertrag-b3beb3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enertrag-b3beb3.jpg" }, { "if": { @@ -108737,7 +108937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enexis-bd8f8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/enexis-bd8f8a.png" }, { "if": { @@ -108751,7 +108951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-060465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-060465.jpg" }, { "if": { @@ -108765,7 +108965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmax-f0e797.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmax-f0e797.png" }, { "if": { @@ -108779,7 +108979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-1a9781.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-1a9781.png" }, { "if": { @@ -108793,7 +108993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergy-af2ebc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergy-af2ebc.jpg" }, { "if": { @@ -108807,7 +109007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergyarkansas-20ede4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-20ede4.jpg" }, { "if": { @@ -108821,7 +109021,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergylouisiana-03a962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-03a962.jpg" }, { "if": { @@ -108835,7 +109035,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enviam-5c072b.png" + "then": "https://data.mapcomplete.org/nsi//logos/enviam-5c072b.png" }, { "if": { @@ -108849,7 +109049,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epb-ae956a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epb-ae956a.jpg" }, { "if": { @@ -108863,7 +109063,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epcor-dda2f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epcor-dda2f7.jpg" }, { "if": { @@ -108877,7 +109077,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epec-d14905.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epec-d14905.jpg" }, { "if": { @@ -108891,7 +109091,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equatorialenergiapiaui-daa104.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-daa104.jpg" }, { "if": { @@ -108905,7 +109105,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ergonenergy-069ec2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ergonenergy-069ec2.jpg" }, { "if": { @@ -108919,7 +109119,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbnetworks-9084ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/esbnetworks-9084ae.png" }, { "if": { @@ -108933,7 +109133,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eskom-238b2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eskom-238b2e.jpg" }, { "if": { @@ -108947,7 +109147,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentialenergy-ac7d4f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentialenergy-ac7d4f.jpg" }, { "if": { @@ -108962,7 +109162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eswatinielectricitycompany-45a461.png" + "then": "https://data.mapcomplete.org/nsi//logos/eswatinielectricitycompany-45a461.png" }, { "if": { @@ -108977,7 +109177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethiopianelectricpower-02869f.png" + "then": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-02869f.png" }, { "if": { @@ -108992,7 +109192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eugenewaterandelectricboard-6a73f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-6a73f0.jpg" }, { "if": { @@ -109007,7 +109207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-a8490b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-a8490b.jpg" }, { "if": { @@ -109021,7 +109221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eversource-fa80fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/eversource-fa80fd.png" }, { "if": { @@ -109035,7 +109235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-877aa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-877aa7.jpg" }, { "if": { @@ -109050,7 +109250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-45575f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-45575f.svg" }, { "if": { @@ -109064,7 +109264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evs-727666.png" + "then": "https://data.mapcomplete.org/nsi//logos/evs-727666.png" }, { "if": { @@ -109078,7 +109278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewz-ee442c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewz-ee442c.jpg" }, { "if": { @@ -109092,7 +109292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fagne-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fagne-5b4abc.svg" }, { "if": { @@ -109107,7 +109307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fayettevillepublicworkscommission-183b18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-183b18.jpg" }, { "if": { @@ -109121,7 +109321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fingrid-4923eb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fingrid-4923eb.jpg" }, { "if": { @@ -109135,7 +109335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstenergy-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstenergy-8222ce.jpg" }, { "if": { @@ -109149,7 +109349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fjellnett-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fjellnett-5b4abc.svg" }, { "if": { @@ -109163,7 +109363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridapowerandlight-1d9dd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-1d9dd1.png" }, { "if": { @@ -109177,7 +109377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortisbc-b42389.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortisbc-b42389.png" }, { "if": { @@ -109191,7 +109391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortum-21296c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortum-21296c.jpg" }, { "if": { @@ -109205,7 +109405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fs-c74937.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fs-c74937.jpg" }, { "if": { @@ -109219,7 +109419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/furnascentraiseletricas-241a4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-241a4c.jpg" }, { "if": { @@ -109234,7 +109434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gainesvilleregionalutilities-1d9dd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-1d9dd1.png" }, { "if": { @@ -109248,7 +109448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gladeselectriccoop-1d9dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-1d9dd1.jpg" }, { "if": { @@ -109262,7 +109462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glitrenett-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/glitrenett-5b4abc.svg" }, { "if": { @@ -109276,7 +109476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenspreadelectriccooperative-1f3576.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-1f3576.jpg" }, { "if": { @@ -109291,7 +109491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandriverdamauthority-cdec2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-cdec2d.jpg" }, { "if": { @@ -109305,7 +109505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenevilleenergyauthority-a20e2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-a20e2a.jpg" }, { "if": { @@ -109319,7 +109519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenvilleutilitiescommission-183b18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-183b18.jpg" }, { "if": { @@ -109333,7 +109533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groupee-ee442c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupee-ee442c.jpg" }, { "if": { @@ -109347,7 +109547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harzenergie-be6516.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harzenergie-be6516.jpg" }, { "if": { @@ -109361,7 +109561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haugalandkraftnett-5b4abc.png" + "then": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-5b4abc.png" }, { "if": { @@ -109375,7 +109575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiianelectriccompany-6e2dd9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-6e2dd9.jpg" }, { "if": { @@ -109389,7 +109589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntsvilleutilities-07573a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-07573a.jpg" }, { "if": { @@ -109403,7 +109603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroenergi-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroenergi-5b4abc.svg" }, { "if": { @@ -109417,7 +109617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-8a4c04.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-8a4c04.png" }, { "if": { @@ -109431,7 +109631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-060465.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-060465.jpg" }, { "if": { @@ -109445,7 +109645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahopower-2b3157.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahopower-2b3157.jpg" }, { "if": { @@ -109459,7 +109659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-877aa7.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-877aa7.png" }, { "if": { @@ -109474,7 +109674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialirrigationdistrict-16d513.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-16d513.jpg" }, { "if": { @@ -109488,7 +109688,7 @@ } ] }, - "then": "./assets/data/nsi/logos/independencepowerandlight-50b8fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-50b8fb.jpg" }, { "if": { @@ -109503,7 +109703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianamichiganpower-0bc4c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-0bc4c7.png" }, { "if": { @@ -109518,7 +109718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianapolispowerandlight-4b415d.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-4b415d.png" }, { "if": { @@ -109533,7 +109733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-c6799e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-c6799e.jpg" }, { "if": { @@ -109547,7 +109747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invenergy-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invenergy-8222ce.jpg" }, { "if": { @@ -109561,7 +109761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipto-693934.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipto-693934.png" }, { "if": { @@ -109575,7 +109775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itaipubinacional-a71f9d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-a71f9d.svg" }, { "if": { @@ -109589,7 +109789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itc-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itc-8222ce.jpg" }, { "if": { @@ -109603,7 +109803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonenergyauthority-a20e2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-a20e2a.jpg" }, { "if": { @@ -109618,7 +109818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-f01c27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-f01c27.jpg" }, { "if": { @@ -109633,7 +109833,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseycentralpowerandlight-10d01e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-10d01e.jpg" }, { "if": { @@ -109647,7 +109847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joewheeleremc-07573a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-07573a.jpg" }, { "if": { @@ -109661,7 +109861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonesborocitywaterandlight-20ede4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-20ede4.jpg" }, { "if": { @@ -109680,7 +109880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastjapanrailwaycompany-89f10b.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-89f10b.png" }, { "if": { @@ -109699,7 +109899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centraljapanrailwaycompany-89f10b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/centraljapanrailwaycompany-89f10b.svg" }, { "if": { @@ -109714,7 +109914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansascityboardofpublicutilities-4c7c55.png" + "then": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-4c7c55.png" }, { "if": { @@ -109728,7 +109928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-f6794e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-f6794e.jpg" }, { "if": { @@ -109742,7 +109942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckypower-cc20a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckypower-cc20a8.png" }, { "if": { @@ -109757,7 +109957,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralastateelectricityboard-0db0d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-0db0d2.jpg" }, { "if": { @@ -109771,7 +109971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kissimmeeutilityauthority-1d9dd1.png" + "then": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-1d9dd1.png" }, { "if": { @@ -109786,7 +109986,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knoxvilleutilitiesboard-a20e2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-a20e2a.jpg" }, { "if": { @@ -109800,7 +110000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kystnett-5b4abc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kystnett-5b4abc.jpg" }, { "if": { @@ -109815,7 +110015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-16d513.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-16d513.png" }, { "if": { @@ -109830,7 +110030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayetteutilitiessystem-d6d8c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-d6d8c4.jpg" }, { "if": { @@ -109845,7 +110045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leecountyelectriccooperative-1d9dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-1d9dd1.jpg" }, { "if": { @@ -109859,7 +110059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leag-be6516.svg" + "then": "https://data.mapcomplete.org/nsi//logos/leag-be6516.svg" }, { "if": { @@ -109874,7 +110074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechwerke-fe9235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechwerke-fe9235.jpg" }, { "if": { @@ -109888,7 +110088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liander-bd8f8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/liander-bd8f8a.png" }, { "if": { @@ -109902,7 +110102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnelectricsystem-84a479.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-84a479.png" }, { "if": { @@ -109916,7 +110116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linja-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/linja-5b4abc.svg" }, { "if": { @@ -109930,7 +110130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-c2c254.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-c2c254.jpg" }, { "if": { @@ -109944,7 +110144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lockhartpowercompany-cbaa6f.png" + "then": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-cbaa6f.png" }, { "if": { @@ -109959,7 +110159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-1f3576.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-1f3576.png" }, { "if": { @@ -109973,7 +110173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswnetz-fcdf17.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswnetz-fcdf17.png" }, { "if": { @@ -109988,7 +110188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubbockpowerandlight-1f3576.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-1f3576.png" }, { "if": { @@ -110002,7 +110202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lyse-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lyse-5b4abc.svg" }, { "if": { @@ -110016,7 +110216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manitobahydro-1ab7f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manitobahydro-1ab7f3.svg" }, { "if": { @@ -110030,7 +110230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marke-727666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marke-727666.jpg" }, { "if": { @@ -110044,7 +110244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshallmunicipalutilities-7acf5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-7acf5a.jpg" }, { "if": { @@ -110058,7 +110258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-07573a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-07573a.jpg" }, { "if": { @@ -110072,7 +110272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mdu-487d89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mdu-487d89.jpg" }, { "if": { @@ -110087,7 +110287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphislightgasandwater-a20e2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-a20e2a.jpg" }, { "if": { @@ -110101,7 +110301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meralco-da5cb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meralco-da5cb0.jpg" }, { "if": { @@ -110115,7 +110315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meted-cdf661.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meted-cdf661.jpg" }, { "if": { @@ -110130,7 +110330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midamericanenergy-2f7812.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-2f7812.jpg" }, { "if": { @@ -110144,7 +110344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midwestenergy-4c7c55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midwestenergy-4c7c55.jpg" }, { "if": { @@ -110158,7 +110358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-7acf5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-7acf5a.jpg" }, { "if": { @@ -110172,7 +110372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnkotapowercooperative-93f57a.png" + "then": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-93f57a.png" }, { "if": { @@ -110186,7 +110386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippipower-311089.png" + "then": "https://data.mapcomplete.org/nsi//logos/mississippipower-311089.png" }, { "if": { @@ -110200,7 +110400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monpower-703893.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monpower-703893.jpg" }, { "if": { @@ -110214,7 +110414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nampower-eb37fc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nampower-eb37fc.svg" }, { "if": { @@ -110229,7 +110429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nashvilleelectricservice-a20e2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-a20e2a.png" }, { "if": { @@ -110243,7 +110443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgrid-a4d329.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgrid-a4d329.png" }, { "if": { @@ -110258,7 +110458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-da5cb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-da5cb0.jpg" }, { "if": { @@ -110272,7 +110472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitydistribution-73f066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-73f066.jpg" }, { "if": { @@ -110286,7 +110486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitytransmission-73f066.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-73f066.svg" }, { "if": { @@ -110302,7 +110502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbpower-45aa37.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nbpower-45aa37.svg" }, { "if": { @@ -110316,7 +110516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoenergia-241a4c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoenergia-241a4c.svg" }, { "if": { @@ -110330,7 +110530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzno-877aa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netzno-877aa7.jpg" }, { "if": { @@ -110344,7 +110544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzebwgmbh-c11af1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-c11af1.svg" }, { "if": { @@ -110359,7 +110559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkpowerauthority-451afe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-451afe.jpg" }, { "if": { @@ -110373,7 +110573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-f24725.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-f24725.jpg" }, { "if": { @@ -110387,7 +110587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandpower-f24725.png" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-f24725.png" }, { "if": { @@ -110401,7 +110601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexteraenergy-3c7f2b.png" + "then": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-3c7f2b.png" }, { "if": { @@ -110415,7 +110615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nienetworks-538231.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nienetworks-538231.jpg" }, { "if": { @@ -110429,7 +110629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernpowergrid-73f066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-73f066.jpg" }, { "if": { @@ -110443,7 +110643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-86ce5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-86ce5c.jpg" }, { "if": { @@ -110457,7 +110657,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-9248e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-9248e3.jpg" }, { "if": { @@ -110471,7 +110671,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntenett-5b4abc.png" + "then": "https://data.mapcomplete.org/nsi//logos/ntenett-5b4abc.png" }, { "if": { @@ -110485,7 +110685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nvenergy-34eada.png" + "then": "https://data.mapcomplete.org/nsi//logos/nvenergy-34eada.png" }, { "if": { @@ -110499,7 +110699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nwelectricpowercooperative-50b8fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-50b8fb.jpg" }, { "if": { @@ -110513,7 +110713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nyseg-451afe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nyseg-451afe.jpg" }, { "if": { @@ -110528,7 +110728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomagasandelectric-cdec2d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-cdec2d.jpg" }, { "if": { @@ -110542,7 +110742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omahapublicpowerdistrict-84a479.png" + "then": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-84a479.png" }, { "if": { @@ -110556,7 +110756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oncor-1f3576.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oncor-1f3576.jpg" }, { "if": { @@ -110570,7 +110770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orionnewzealand-43abd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-43abd4.jpg" }, { "if": { @@ -110585,7 +110785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlandoutilitiescommission-1d9dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-1d9dd1.jpg" }, { "if": { @@ -110599,7 +110799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottertailpowercompany-a52be3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-a52be3.jpg" }, { "if": { @@ -110614,7 +110814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-16d513.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-16d513.png" }, { "if": { @@ -110628,7 +110828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificpower-151384.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificpower-151384.svg" }, { "if": { @@ -110642,7 +110842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificorp-8222ce.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificorp-8222ce.svg" }, { "if": { @@ -110656,7 +110856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pea-4edad1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pea-4edad1.jpg" }, { "if": { @@ -110670,7 +110870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peco-d5a9d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peco-d5a9d9.jpg" }, { "if": { @@ -110684,7 +110884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peinertragergmbh-fcdf17.svg" + "then": "https://data.mapcomplete.org/nsi//logos/peinertragergmbh-fcdf17.svg" }, { "if": { @@ -110698,7 +110898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penelec-cdf661.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penelec-cdf661.jpg" }, { "if": { @@ -110713,7 +110913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perusahaanlistriknegara-756643.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-756643.jpg" }, { "if": { @@ -110727,7 +110927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrobras-241a4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrobras-241a4c.png" }, { "if": { @@ -110741,7 +110941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfalzwerkeag-b8409d.png" + "then": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-b8409d.png" }, { "if": { @@ -110755,7 +110955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgedystrybucja-8d0004.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-8d0004.jpg" }, { "if": { @@ -110769,7 +110969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgeenergetykakolejowa-8d0004.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-8d0004.jpg" }, { "if": { @@ -110783,7 +110983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pjm-10d01e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pjm-10d01e.jpg" }, { "if": { @@ -110798,7 +110998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-0194af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-0194af.jpg" }, { "if": { @@ -110813,7 +111013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-677727.png" + "then": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-677727.png" }, { "if": { @@ -110828,7 +111028,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandgeneralelectric-6a73f0.png" + "then": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-6a73f0.png" }, { "if": { @@ -110842,7 +111042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacedison-64127a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacedison-64127a.jpg" }, { "if": { @@ -110857,7 +111057,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacelectricpowercompany-7e9bf2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-7e9bf2.jpg" }, { "if": { @@ -110871,7 +111071,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powergridcorporationofindialtd-0db0d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-0db0d2.jpg" }, { "if": { @@ -110885,7 +111085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerco-43abd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerco-43abd4.jpg" }, { "if": { @@ -110899,7 +111099,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powercor-b4baaa.png" + "then": "https://data.mapcomplete.org/nsi//logos/powercor-b4baaa.png" }, { "if": { @@ -110913,7 +111113,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerlink-069ec2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerlink-069ec2.jpg" }, { "if": { @@ -110927,7 +111127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ppl-ef89a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ppl-ef89a2.jpg" }, { "if": { @@ -110941,7 +111141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pre-9e3254.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pre-9e3254.jpg" }, { "if": { @@ -110955,7 +111155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premierenergy-414eae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/premierenergy-414eae.jpg" }, { "if": { @@ -110970,7 +111170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-fab6f4.png" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-fab6f4.png" }, { "if": { @@ -110984,7 +111184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicserviceenterprisegroup-4116e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-4116e1.jpg" }, { "if": { @@ -110999,7 +111199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-d5140c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-d5140c.jpg" }, { "if": { @@ -111014,7 +111214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pugetsoundenergy-4d2784.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-4d2784.jpg" }, { "if": { @@ -111028,7 +111228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radiuselnet-6a131d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radiuselnet-6a131d.jpg" }, { "if": { @@ -111042,7 +111242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rappahannockelectriccooperative-d0b6bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-d0b6bc.jpg" }, { "if": { @@ -111057,7 +111257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redelectricadeespana-0a3cea.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-0a3cea.jpg" }, { "if": { @@ -111071,7 +111271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reedycreekimprovementdistrict-1d9dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reedycreekimprovementdistrict-1d9dd1.jpg" }, { "if": { @@ -111085,7 +111285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ren-a8586b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ren-a8586b.svg" }, { "if": { @@ -111099,7 +111299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resoluteforestproducts-8a4c04.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/resoluteforestproducts-8a4c04.jpg" }, { "if": { @@ -111113,7 +111313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-c74937.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-c74937.svg" }, { "if": { @@ -111127,7 +111327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodeislandenergy-3faf16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-3faf16.jpg" }, { "if": { @@ -111141,7 +111341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riograndeenergia-241a4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-241a4c.png" }, { "if": { @@ -111155,7 +111355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-0427a6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-0427a6.svg" }, { "if": { @@ -111169,7 +111369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochestergasandelectric-451afe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-451afe.jpg" }, { "if": { @@ -111183,7 +111383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockymountainpower-900587.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-900587.svg" }, { "if": { @@ -111197,7 +111397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romandeenergie-d521ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romandeenergie-d521ae.jpg" }, { "if": { @@ -111211,7 +111411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosevilleelectric-16d513.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-16d513.jpg" }, { "if": { @@ -111225,7 +111425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rte-718125.png" + "then": "https://data.mapcomplete.org/nsi//logos/rte-718125.png" }, { "if": { @@ -111239,7 +111439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-7feb9d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-7feb9d.jpg" }, { "if": { @@ -111253,7 +111453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-d2ed5a.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-d2ed5a.png" }, { "if": { @@ -111268,7 +111468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-16d513.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-16d513.jpg" }, { "if": { @@ -111282,7 +111482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sadalestikls-a6ab81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sadalestikls-a6ab81.jpg" }, { "if": { @@ -111297,7 +111497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltriverproject-568d52.png" + "then": "https://data.mapcomplete.org/nsi//logos/saltriverproject-568d52.png" }, { "if": { @@ -111311,7 +111511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-bd38fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-bd38fa.jpg" }, { "if": { @@ -111326,7 +111526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegogasandelectric-655d98.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-655d98.jpg" }, { "if": { @@ -111340,7 +111540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saskpower-541d20.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saskpower-541d20.svg" }, { "if": { @@ -111354,7 +111554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-ee442c.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-ee442c.png" }, { "if": { @@ -111368,7 +111568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-99a780.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-99a780.svg" }, { "if": { @@ -111383,7 +111583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-18a6c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-18a6c2.jpg" }, { "if": { @@ -111398,7 +111598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlecitylight-4d2784.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-4d2784.png" }, { "if": { @@ -111412,7 +111612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seminoleelectriccooperative-1d9dd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-1d9dd1.jpg" }, { "if": { @@ -111426,7 +111626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senelec-0f3a97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senelec-0f3a97.jpg" }, { "if": { @@ -111440,7 +111640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sig-28e447.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sig-28e447.jpg" }, { "if": { @@ -111454,7 +111654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slemco-d6d8c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slemco-d6d8c4.jpg" }, { "if": { @@ -111469,7 +111669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-475230.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-475230.jpg" }, { "if": { @@ -111483,7 +111683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-718125.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-718125.png" }, { "if": { @@ -111497,7 +111697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-718125.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-718125.png" }, { "if": { @@ -111512,7 +111712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-f1dc56.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-f1dc56.jpg" }, { "if": { @@ -111527,7 +111727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sognogfjordaneenergi-5b4abc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-5b4abc.jpg" }, { "if": { @@ -111542,7 +111742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniaedison-16d513.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-16d513.jpg" }, { "if": { @@ -111556,7 +111756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-20ede4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-20ede4.jpg" }, { "if": { @@ -111570,7 +111770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spenergynetworks-18a6c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-18a6c2.jpg" }, { "if": { @@ -111585,7 +111785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldutilityboard-6a73f0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-6a73f0.jpg" }, { "if": { @@ -111599,7 +111799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssentransmission-65daaf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ssentransmission-65daaf.jpg" }, { "if": { @@ -111613,7 +111813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedusseldorf-727666.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-727666.jpg" }, { "if": { @@ -111627,7 +111827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeleipzig-d2ed5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-d2ed5a.jpg" }, { "if": { @@ -111642,7 +111842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-fe9235.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-fe9235.jpg" }, { "if": { @@ -111656,7 +111856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statkraft-7feb9d.png" + "then": "https://data.mapcomplete.org/nsi//logos/statkraft-7feb9d.png" }, { "if": { @@ -111670,7 +111870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statnett-5b4abc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/statnett-5b4abc.jpg" }, { "if": { @@ -111684,7 +111884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stedin-bd8f8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/stedin-bd8f8a.png" }, { "if": { @@ -111698,7 +111898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzberlin-cc6d07.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-cc6d07.svg" }, { "if": { @@ -111712,7 +111912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-6e3902.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-6e3902.jpg" }, { "if": { @@ -111726,7 +111926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-4c7c55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-4c7c55.jpg" }, { "if": { @@ -111740,7 +111940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwagenergie-c24667.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwagenergie-c24667.jpg" }, { "if": { @@ -111754,7 +111954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svenskakraftnat-da7f1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-da7f1f.png" }, { "if": { @@ -111769,7 +111969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwesternelectricpowercompany-4550ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-4550ee.jpg" }, { "if": { @@ -111783,7 +111983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissgrid-ee442c.png" + "then": "https://data.mapcomplete.org/nsi//logos/swissgrid-ee442c.png" }, { "if": { @@ -111797,7 +111997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sygnir-5b4abc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sygnir-5b4abc.jpg" }, { "if": { @@ -111811,7 +112011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-8d0004.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-8d0004.png" }, { "if": { @@ -111825,7 +112025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teias-34b30e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teias-34b30e.jpg" }, { "if": { @@ -111839,7 +112039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenaganasional-7478eb.png" + "then": "https://data.mapcomplete.org/nsi//logos/tenaganasional-7478eb.png" }, { "if": { @@ -111854,7 +112054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseevalleyauthority-8222ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-8222ce.png" }, { "if": { @@ -111868,7 +112068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennet-bd8f8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennet-bd8f8a.jpg" }, { "if": { @@ -111882,7 +112082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennettso-d61b6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennettso-d61b6c.jpg" }, { "if": { @@ -111896,7 +112096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tensio-5b4abc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tensio-5b4abc.jpg" }, { "if": { @@ -111910,7 +112110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terna-062e0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/terna-062e0c.png" }, { "if": { @@ -111925,7 +112125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasnewmexicopower-1f3576.png" + "then": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-1f3576.png" }, { "if": { @@ -111939,7 +112139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-877aa7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-877aa7.svg" }, { "if": { @@ -111953,7 +112153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transcomahuesa-67e175.png" + "then": "https://data.mapcomplete.org/nsi//logos/transcomahuesa-67e175.png" }, { "if": { @@ -111967,7 +112167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transener-0aca96.png" + "then": "https://data.mapcomplete.org/nsi//logos/transener-0aca96.png" }, { "if": { @@ -111981,7 +112181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transgrid-efee82.png" + "then": "https://data.mapcomplete.org/nsi//logos/transgrid-efee82.png" }, { "if": { @@ -111995,7 +112195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transmissioncompanyofnigeria-51c9f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-51c9f4.jpg" }, { "if": { @@ -112009,7 +112209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnetbwgmbh-c11af1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-c11af1.svg" }, { "if": { @@ -112023,7 +112223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-efee82.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-efee82.jpg" }, { "if": { @@ -112037,7 +112237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transpowernewzealand-43abd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-43abd4.jpg" }, { "if": { @@ -112051,7 +112251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredas-34b30e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredas-34b30e.jpg" }, { "if": { @@ -112066,7 +112266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tucsonelectricpower-568d52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-568d52.jpg" }, { "if": { @@ -112080,7 +112280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugi-cdf661.png" + "then": "https://data.mapcomplete.org/nsi//logos/ugi-cdf661.png" }, { "if": { @@ -112094,7 +112294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukpowernetworks-73f066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-73f066.jpg" }, { "if": { @@ -112108,7 +112308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniperkraftwerke-be6516.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-be6516.png" }, { "if": { @@ -112122,7 +112322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedilluminatingcompany-e46126.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-e46126.jpg" }, { "if": { @@ -112136,7 +112336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatessteel-07573a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-07573a.svg" }, { "if": { @@ -112150,7 +112350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitil-175481.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitil-175481.png" }, { "if": { @@ -112164,7 +112364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-247b3b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-247b3b.svg" }, { "if": { @@ -112178,7 +112378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valesa-241a4c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valesa-241a4c.jpg" }, { "if": { @@ -112192,7 +112392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-5b0667.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-5b0667.png" }, { "if": { @@ -112206,7 +112406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-be6516.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-be6516.png" }, { "if": { @@ -112220,7 +112420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-43abd4.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-43abd4.png" }, { "if": { @@ -112234,7 +112434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-877aa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-877aa7.jpg" }, { "if": { @@ -112248,7 +112448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontelectricpowercompany-950eb5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-950eb5.jpg" }, { "if": { @@ -112262,7 +112462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/versantpower-13240d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/versantpower-13240d.jpg" }, { "if": { @@ -112276,7 +112476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vestall-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vestall-5b4abc.svg" }, { "if": { @@ -112290,7 +112490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vevig-5b4abc.png" + "then": "https://data.mapcomplete.org/nsi//logos/vevig-5b4abc.png" }, { "if": { @@ -112304,7 +112504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viesgodistribucionelectrica-0a3cea.png" + "then": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-0a3cea.png" }, { "if": { @@ -112318,7 +112518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visayanelectric-da5cb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visayanelectric-da5cb0.jpg" }, { "if": { @@ -112332,7 +112532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vissi-5b4abc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vissi-5b4abc.svg" }, { "if": { @@ -112347,7 +112547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskadistribucna-475230.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-475230.png" }, { "if": { @@ -112361,7 +112561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-d6d8c4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-d6d8c4.jpg" }, { "if": { @@ -112375,7 +112575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wemagnetzgmbh-7fac1b.png" + "then": "https://data.mapcomplete.org/nsi//logos/wemagnetzgmbh-7fac1b.png" }, { "if": { @@ -112389,7 +112589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westpennpower-69a3c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westpennpower-69a3c2.jpg" }, { "if": { @@ -112404,7 +112604,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernareapoweradministration-8222ce.png" + "then": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-8222ce.png" }, { "if": { @@ -112419,7 +112619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfalenwesernetz-8a1dc6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westfalenwesernetz-8a1dc6.svg" }, { "if": { @@ -112433,7 +112633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westnetz-be6516.png" + "then": "https://data.mapcomplete.org/nsi//logos/westnetz-be6516.png" }, { "if": { @@ -112447,7 +112647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-877aa7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-877aa7.jpg" }, { "if": { @@ -112461,7 +112661,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienernetze-877aa7.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienernetze-877aa7.png" }, { "if": { @@ -112475,7 +112675,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-8222ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-8222ce.jpg" }, { "if": { @@ -112489,7 +112689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-564db9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-564db9.svg" }, { "if": { @@ -112503,7 +112703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/788cf3-693934.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/788cf3-693934.jpg" }, { "if": { @@ -112517,7 +112717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7c17ff-c7c530.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7c17ff-c7c530.jpg" }, { "if": { @@ -112531,7 +112731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f36860-c7c530.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/f36860-c7c530.jpg" }, { "if": { @@ -112545,7 +112745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/084a1e-c7c530.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/084a1e-c7c530.jpg" }, { "if": { @@ -112559,7 +112759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cc48e9-c7c530.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cc48e9-c7c530.jpg" }, { "if": { @@ -112573,7 +112773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dd2584-c7c530.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dd2584-c7c530.jpg" }, { "if": { @@ -112587,7 +112787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9e843b-c7c530.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9e843b-c7c530.jpg" }, { "if": { @@ -112601,7 +112801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8fc412-ba1053.png" + "then": "https://data.mapcomplete.org/nsi//logos/8fc412-ba1053.png" }, { "if": { @@ -112615,7 +112815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1fc076-ba1053.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1fc076-ba1053.jpg" }, { "if": { @@ -112629,7 +112829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/472734-c7c530.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/472734-c7c530.jpg" }, { "if": { @@ -112645,7 +112845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tunisiancompanyofelectricityandgas-d3d77a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tunisiancompanyofelectricityandgas-d3d77a.jpg" }, { "if": { @@ -112661,7 +112861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-9d8084.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-9d8084.jpg" }, { "if": { @@ -112678,7 +112878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-4edad1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-4edad1.jpg" }, { "if": { @@ -112701,7 +112901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clppowerhongkonglimited-bb3ff5.png" + "then": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-bb3ff5.png" }, { "if": { @@ -112717,7 +112917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chubuelectricpowergridcompany-89f10b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-89f10b.svg" }, { "if": { @@ -112733,7 +112933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-89f10b.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-89f10b.png" }, { "if": { @@ -112750,7 +112950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-89f10b.png" + "then": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-89f10b.png" }, { "if": { @@ -112764,7 +112964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/34ba0b-b8f128.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/34ba0b-b8f128.jpg" }, { "if": { @@ -112780,7 +112980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tepcopowergrid-89f10b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-89f10b.svg" }, { "if": { @@ -112797,7 +112997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okinawaelectricpowercompany-89f10b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-89f10b.jpg" }, { "if": { @@ -112813,7 +113013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jpowertransmissionnetwork-89f10b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jpowertransmissionnetwork-89f10b.svg" }, { "if": { @@ -112836,7 +113036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-bb3ff5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-bb3ff5.jpg" }, { "if": { @@ -112850,7 +113050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aenergivannkraft-44cc7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-44cc7f.jpg" }, { "if": { @@ -112864,7 +113064,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a2a-ed757e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a2a-ed757e.jpg" }, { "if": { @@ -112878,7 +113078,7 @@ } ] }, - "then": "./assets/data/nsi/logos/abowind-e6c8aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/abowind-e6c8aa.svg" }, { "if": { @@ -112892,7 +113092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/accionaenergia-d14bb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/accionaenergia-d14bb1.jpg" }, { "if": { @@ -112906,7 +113106,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-bc90e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-bc90e6.png" }, { "if": { @@ -112920,7 +113120,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aescorporation-12344d.png" + "then": "https://data.mapcomplete.org/nsi//logos/aescorporation-12344d.png" }, { "if": { @@ -112934,7 +113134,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agderenergi-44cc7f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agderenergi-44cc7f.svg" }, { "if": { @@ -112948,7 +113148,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aglenergy-225a52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aglenergy-225a52.jpg" }, { "if": { @@ -112962,7 +113162,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamapower-035181.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamapower-035181.jpg" }, { "if": { @@ -112976,7 +113176,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliantenergy-2ac081.png" + "then": "https://data.mapcomplete.org/nsi//logos/alliantenergy-2ac081.png" }, { "if": { @@ -112990,7 +113190,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameren-b27b77.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameren-b27b77.png" }, { "if": { @@ -113004,7 +113204,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanmunicipalpower-fbd018.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanmunicipalpower-fbd018.png" }, { "if": { @@ -113018,7 +113218,7 @@ } ] }, - "then": "./assets/data/nsi/logos/apexenergies-e1f5e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/apexenergies-e1f5e6.jpg" }, { "if": { @@ -113032,7 +113232,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aquilacapital-63ab97.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aquilacapital-63ab97.svg" }, { "if": { @@ -113046,7 +113246,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonapublicservice-78c78a.png" + "then": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-78c78a.png" }, { "if": { @@ -113060,7 +113260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avangridrenewables-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avangridrenewables-2ac081.jpg" }, { "if": { @@ -113074,7 +113274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/54215d-a01010.png" + "then": "https://data.mapcomplete.org/nsi//logos/54215d-a01010.png" }, { "if": { @@ -113089,7 +113289,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bangladeshpowerdevelopmentboard-495def.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bangladeshpowerdevelopmentboard-495def.jpg" }, { "if": { @@ -113103,7 +113303,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-4dbdc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-4dbdc9.jpg" }, { "if": { @@ -113117,7 +113317,7 @@ } ] }, - "then": "./assets/data/nsi/logos/boralex-e0e75c.png" + "then": "https://data.mapcomplete.org/nsi//logos/boralex-e0e75c.png" }, { "if": { @@ -113132,7 +113332,7 @@ } ] }, - "then": "./assets/data/nsi/logos/britishsolarrenewables-961ad5.png" + "then": "https://data.mapcomplete.org/nsi//logos/britishsolarrenewables-961ad5.png" }, { "if": { @@ -113146,7 +113346,7 @@ } ] }, - "then": "./assets/data/nsi/logos/calpine-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/calpine-2ac081.jpg" }, { "if": { @@ -113160,7 +113360,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadiansolar-e6c8aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/canadiansolar-e6c8aa.png" }, { "if": { @@ -113175,7 +113375,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceylonelectricityboard-07a83a.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-07a83a.png" }, { "if": { @@ -113189,7 +113389,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cez-14fcf8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cez-14fcf8.jpg" }, { "if": { @@ -113203,7 +113403,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cnr-a6c8fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cnr-a6c8fe.jpg" }, { "if": { @@ -113217,7 +113417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colbun-da5611.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colbun-da5611.jpg" }, { "if": { @@ -113232,7 +113432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionfederaldeelectricidad-56e313.png" + "then": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-56e313.png" }, { "if": { @@ -113246,7 +113446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumersenergy-b409f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumersenergy-b409f5.png" }, { "if": { @@ -113260,7 +113460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copel-f91242.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copel-f91242.jpg" }, { "if": { @@ -113274,7 +113474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dalkia-fadf07.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dalkia-fadf07.svg" }, { "if": { @@ -113288,7 +113488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominionenergy-ff5e26.png" + "then": "https://data.mapcomplete.org/nsi//logos/dominionenergy-ff5e26.png" }, { "if": { @@ -113303,7 +113503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dravskeelektrarnemaribor-526b7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dravskeelektrarnemaribor-526b7d.jpg" }, { "if": { @@ -113317,7 +113517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteelectriccompany-b409f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-b409f5.png" }, { "if": { @@ -113331,7 +113531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteenergy-b409f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteenergy-b409f5.png" }, { "if": { @@ -113345,7 +113545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-0446df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-0446df.jpg" }, { "if": { @@ -113359,7 +113559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergyprogress-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-2ac081.jpg" }, { "if": { @@ -113373,7 +113573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-e6c8aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-e6c8aa.png" }, { "if": { @@ -113387,7 +113587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edfenergy-961ad5.png" + "then": "https://data.mapcomplete.org/nsi//logos/edfenergy-961ad5.png" }, { "if": { @@ -113401,7 +113601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edfrenewables-e6c8aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edfrenewables-e6c8aa.svg" }, { "if": { @@ -113415,7 +113615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edinburghcommunitysolarcooperative-961ad5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edinburghcommunitysolarcooperative-961ad5.jpg" }, { "if": { @@ -113429,7 +113629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edison-ed757e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edison-ed757e.jpg" }, { "if": { @@ -113445,7 +113645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovaveis-7a0274.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-7a0274.svg" }, { "if": { @@ -113459,7 +113659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egehaina-20d3cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/egehaina-20d3cf.png" }, { "if": { @@ -113474,7 +113674,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-9c3b97.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-9c3b97.png" }, { "if": { @@ -113489,7 +113689,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresaspublicasdemedellin-eb9540.svg" + "then": "https://data.mapcomplete.org/nsi//logos/empresaspublicasdemedellin-eb9540.svg" }, { "if": { @@ -113503,7 +113703,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-b0fa44.png" + "then": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-b0fa44.png" }, { "if": { @@ -113517,7 +113717,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-d14bb1.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-d14bb1.png" }, { "if": { @@ -113531,7 +113731,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneco-473e48.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneco-473e48.png" }, { "if": { @@ -113545,7 +113745,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-e6c8aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-e6c8aa.png" }, { "if": { @@ -113559,7 +113759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-d43b49.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-d43b49.svg" }, { "if": { @@ -113573,7 +113773,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpowerespana-d14bb1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpowerespana-d14bb1.svg" }, { "if": { @@ -113587,7 +113787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energia-d7adcb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energia-d7adcb.jpg" }, { "if": { @@ -113602,7 +113802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiasdeportugal-6bc5f8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-6bc5f8.svg" }, { "if": { @@ -113616,7 +113816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-e28236.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-e28236.png" }, { "if": { @@ -113630,7 +113830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedumali-f15c91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedumali-f15c91.jpg" }, { "if": { @@ -113644,7 +113844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energopro-8a4876.png" + "then": "https://data.mapcomplete.org/nsi//logos/energopro-8a4876.png" }, { "if": { @@ -113658,7 +113858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enertrag-068479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enertrag-068479.jpg" }, { "if": { @@ -113672,7 +113872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-1c8782.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-1c8782.jpg" }, { "if": { @@ -113686,7 +113886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergy-9ec78b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergy-9ec78b.jpg" }, { "if": { @@ -113700,7 +113900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergylouisiana-87cc41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-87cc41.jpg" }, { "if": { @@ -113714,7 +113914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epec-aa40ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epec-aa40ba.jpg" }, { "if": { @@ -113728,7 +113928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbgenerationandwholesalemarkets-d7adcb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/esbgenerationandwholesalemarkets-d7adcb.svg" }, { "if": { @@ -113742,7 +113942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eskom-e03987.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eskom-e03987.jpg" }, { "if": { @@ -113756,7 +113956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euas-bd89f3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/euas-bd89f3.svg" }, { "if": { @@ -113770,7 +113970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-7ad0e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-7ad0e6.jpg" }, { "if": { @@ -113784,7 +113984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-e28236.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-e28236.jpg" }, { "if": { @@ -113799,7 +113999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-2004ec.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-2004ec.svg" }, { "if": { @@ -113813,7 +114013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/exelon-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/exelon-2ac081.jpg" }, { "if": { @@ -113827,7 +114027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridapowerandlight-a087b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-a087b9.png" }, { "if": { @@ -113841,7 +114041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortum-b16c32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortum-b16c32.jpg" }, { "if": { @@ -113855,7 +114055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groenleven-789671.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groenleven-789671.jpg" }, { "if": { @@ -113869,7 +114069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoosierenergy-2f6852.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoosierenergy-2f6852.jpg" }, { "if": { @@ -113883,7 +114083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroenergi-44cc7f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroenergi-44cc7f.svg" }, { "if": { @@ -113897,7 +114097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydrotasmania-072ee3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hydrotasmania-072ee3.jpg" }, { "if": { @@ -113911,7 +114111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-ca99a3.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-ca99a3.png" }, { "if": { @@ -113925,7 +114125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-e6c8aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-e6c8aa.jpg" }, { "if": { @@ -113939,7 +114139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iconwater-1df8cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iconwater-1df8cd.jpg" }, { "if": { @@ -113953,7 +114153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahopower-02d2e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahopower-02d2e7.jpg" }, { "if": { @@ -113967,7 +114167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-e28236.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-e28236.png" }, { "if": { @@ -113982,7 +114182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialirrigationdistrict-190d94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-190d94.jpg" }, { "if": { @@ -113996,7 +114196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innergex-dafc6c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/innergex-dafc6c.jpg" }, { "if": { @@ -114011,7 +114211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-3b052a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-3b052a.jpg" }, { "if": { @@ -114025,7 +114225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invenergy-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invenergy-2ac081.jpg" }, { "if": { @@ -114039,7 +114239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/juwi-b0fa44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/juwi-b0fa44.jpg" }, { "if": { @@ -114053,7 +114253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-5af64d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-5af64d.jpg" }, { "if": { @@ -114067,7 +114267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kengen-9cf682.png" + "then": "https://data.mapcomplete.org/nsi//logos/kengen-9cf682.png" }, { "if": { @@ -114082,7 +114282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-190d94.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-190d94.png" }, { "if": { @@ -114096,7 +114296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landsvirkjun-4ac1fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landsvirkjun-4ac1fe.jpg" }, { "if": { @@ -114110,7 +114310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lightsourcebp-e6c8aa.png" + "then": "https://data.mapcomplete.org/nsi//logos/lightsourcebp-e6c8aa.png" }, { "if": { @@ -114125,7 +114325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-e34e34.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-e34e34.png" }, { "if": { @@ -114139,7 +114339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luminus-0e3d28.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luminus-0e3d28.jpg" }, { "if": { @@ -114153,7 +114353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manitobahydro-d2ada9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manitobahydro-d2ada9.svg" }, { "if": { @@ -114167,7 +114367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/masen-ff30b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/masen-ff30b3.jpg" }, { "if": { @@ -114181,7 +114381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mercuryenergy-2bbe4e.png" + "then": "https://data.mapcomplete.org/nsi//logos/mercuryenergy-2bbe4e.png" }, { "if": { @@ -114195,7 +114395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midamericanenergy-c2f488.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-c2f488.jpg" }, { "if": { @@ -114209,7 +114409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mvm-0e87a9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mvm-0e87a9.jpg" }, { "if": { @@ -114223,7 +114423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/naturgy-d14bb1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/naturgy-d14bb1.jpg" }, { "if": { @@ -114239,7 +114439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbpower-ae65d1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nbpower-ae65d1.svg" }, { "if": { @@ -114253,7 +114453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoen-e6c8aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoen-e6c8aa.svg" }, { "if": { @@ -114268,7 +114468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkpowerauthority-f48e75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-f48e75.jpg" }, { "if": { @@ -114282,7 +114482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-4775fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-4775fe.jpg" }, { "if": { @@ -114296,7 +114496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandpower-4775fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-4775fe.png" }, { "if": { @@ -114310,7 +114510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexteraenergy-708d89.png" + "then": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-708d89.png" }, { "if": { @@ -114324,7 +114524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-4700fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-4700fb.jpg" }, { "if": { @@ -114338,7 +114538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-09803b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-09803b.jpg" }, { "if": { @@ -114352,7 +114552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nrgenergy-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nrgenergy-2ac081.jpg" }, { "if": { @@ -114366,7 +114566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nteenergi-44cc7f.png" + "then": "https://data.mapcomplete.org/nsi//logos/nteenergi-44cc7f.png" }, { "if": { @@ -114380,7 +114580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntpc-bf89c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ntpc-bf89c5.jpg" }, { "if": { @@ -114395,7 +114595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomagasandelectric-66347c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-66347c.jpg" }, { "if": { @@ -114409,7 +114609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ontariopowergeneration-fa3428.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ontariopowergeneration-fa3428.svg" }, { "if": { @@ -114423,7 +114623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orsted-67f0f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/orsted-67f0f6.png" }, { "if": { @@ -114438,7 +114638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-190d94.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-190d94.png" }, { "if": { @@ -114452,7 +114652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificorp-2ac081.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificorp-2ac081.svg" }, { "if": { @@ -114466,7 +114666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pampaenergia-fe32f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pampaenergia-fe32f3.jpg" }, { "if": { @@ -114481,7 +114681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgepolskagrupaenergetycznasa-73b00d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgepolskagrupaenergetycznasa-73b00d.jpg" }, { "if": { @@ -114495,7 +114695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pioneerenergy-2bbe4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pioneerenergy-2bbe4e.jpg" }, { "if": { @@ -114509,7 +114709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pln-db9f5e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pln-db9f5e.jpg" }, { "if": { @@ -114524,7 +114724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-fc8452.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-fc8452.jpg" }, { "if": { @@ -114538,7 +114738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerandwater-f6a6c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerandwater-f6a6c0.jpg" }, { "if": { @@ -114552,7 +114752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicserviceenterprisegroup-06f695.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-06f695.jpg" }, { "if": { @@ -114567,7 +114767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/punjabstatepowercorporation-bf89c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/punjabstatepowercorporation-bf89c5.jpg" }, { "if": { @@ -114582,7 +114782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/renewableenergysystems-e6c8aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/renewableenergysystems-e6c8aa.jpg" }, { "if": { @@ -114596,7 +114796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-aaca30.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-aaca30.svg" }, { "if": { @@ -114610,7 +114810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-fadf07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-fadf07.jpg" }, { "if": { @@ -114625,7 +114825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-190d94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-190d94.jpg" }, { "if": { @@ -114640,7 +114840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltriverproject-78c78a.png" + "then": "https://data.mapcomplete.org/nsi//logos/saltriverproject-78c78a.png" }, { "if": { @@ -114654,7 +114854,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-da17ce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-da17ce.jpg" }, { "if": { @@ -114668,7 +114868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarawakenergy-6d7a7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sarawakenergy-6d7a7d.jpg" }, { "if": { @@ -114682,7 +114882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saskpower-02624c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saskpower-02624c.svg" }, { "if": { @@ -114696,7 +114896,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saudielectricitycompany-435ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/saudielectricitycompany-435ddd.jpg" }, { "if": { @@ -114710,7 +114910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/shem-a6c8fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/shem-a6c8fe.png" }, { "if": { @@ -114724,7 +114924,7 @@ } ] }, - "then": "./assets/data/nsi/logos/skagerakkraft-44cc7f.png" + "then": "https://data.mapcomplete.org/nsi//logos/skagerakkraft-44cc7f.png" }, { "if": { @@ -114739,7 +114939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskeelektrarne-074aec.png" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskeelektrarne-074aec.png" }, { "if": { @@ -114753,7 +114953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/snowyhydro-225a52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/snowyhydro-225a52.jpg" }, { "if": { @@ -114768,7 +114968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sognogfjordaneenergi-44cc7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-44cc7f.jpg" }, { "if": { @@ -114782,7 +114982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-029c1e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-029c1e.jpg" }, { "if": { @@ -114797,7 +114997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniaedison-190d94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-190d94.jpg" }, { "if": { @@ -114811,7 +115011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sse-074aec.png" + "then": "https://data.mapcomplete.org/nsi//logos/sse-074aec.png" }, { "if": { @@ -114825,7 +115025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sserenewables-6adf37.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sserenewables-6adf37.svg" }, { "if": { @@ -114839,7 +115039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statkraft-fadf07.png" + "then": "https://data.mapcomplete.org/nsi//logos/statkraft-fadf07.png" }, { "if": { @@ -114853,7 +115053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunedison-1b79f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunedison-1b79f6.jpg" }, { "if": { @@ -114867,7 +115067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenaganasional-6d7a7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/tenaganasional-6d7a7d.png" }, { "if": { @@ -114882,7 +115082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseevalleyauthority-2ac081.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-2ac081.png" }, { "if": { @@ -114896,7 +115096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teslainc-e6c8aa.svg" + "then": "https://data.mapcomplete.org/nsi//logos/teslainc-e6c8aa.svg" }, { "if": { @@ -114910,7 +115110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transalta-e6c8aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transalta-e6c8aa.jpg" }, { "if": { @@ -114924,7 +115124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trustpower-3485ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/trustpower-3485ae.jpg" }, { "if": { @@ -114938,7 +115138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniper-fadf07.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniper-fadf07.png" }, { "if": { @@ -114952,7 +115152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniperkraftwerke-b0fa44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-b0fa44.jpg" }, { "if": { @@ -114967,7 +115167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesarmycorpsofengineers-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesarmycorpsofengineers-2ac081.jpg" }, { "if": { @@ -114982,7 +115182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatesbureauofreclamation-2ac081.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatesbureauofreclamation-2ac081.png" }, { "if": { @@ -114996,7 +115196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/usacenorthwesterndivision-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/usacenorthwesterndivision-2ac081.jpg" }, { "if": { @@ -115010,7 +115210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-39af9f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-39af9f.svg" }, { "if": { @@ -115024,7 +115224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valorem-e1f5e6.png" + "then": "https://data.mapcomplete.org/nsi//logos/valorem-e1f5e6.png" }, { "if": { @@ -115038,7 +115238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-0e7ff4.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-0e7ff4.png" }, { "if": { @@ -115052,7 +115252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-b0fa44.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-b0fa44.png" }, { "if": { @@ -115066,7 +115266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/veolia-e6c8aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/veolia-e6c8aa.jpg" }, { "if": { @@ -115080,7 +115280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-e28236.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-e28236.jpg" }, { "if": { @@ -115094,7 +115294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viridor-961ad5.png" + "then": "https://data.mapcomplete.org/nsi//logos/viridor-961ad5.png" }, { "if": { @@ -115108,7 +115308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/voltalia-12b85e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/voltalia-12b85e.jpg" }, { "if": { @@ -115122,7 +115322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-e28236.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-e28236.jpg" }, { "if": { @@ -115136,7 +115336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/windkraftsimonsfeld-b0af4a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/windkraftsimonsfeld-b0af4a.jpg" }, { "if": { @@ -115151,7 +115351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wisconsinpublicservicecorporation-12c448.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wisconsinpublicservicecorporation-12c448.jpg" }, { "if": { @@ -115165,7 +115365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-2ac081.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-2ac081.jpg" }, { "if": { @@ -115179,7 +115379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zesco-07b96c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zesco-07b96c.jpg" }, { "if": { @@ -115193,7 +115393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/788cf3-245a70.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/788cf3-245a70.jpg" }, { "if": { @@ -115207,7 +115407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/70be46-d6d29e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/70be46-d6d29e.jpg" }, { "if": { @@ -115221,7 +115421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3ea478-b5970c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/3ea478-b5970c.svg" }, { "if": { @@ -115235,7 +115435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/3b87db-becb55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/3b87db-becb55.jpg" }, { "if": { @@ -115249,7 +115449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/70aabc-d6d29e.png" + "then": "https://data.mapcomplete.org/nsi//logos/70aabc-d6d29e.png" }, { "if": { @@ -115263,7 +115463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/71a366-becb55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/71a366-becb55.jpg" }, { "if": { @@ -115277,7 +115477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/d08e33-becb55.png" + "then": "https://data.mapcomplete.org/nsi//logos/d08e33-becb55.png" }, { "if": { @@ -115291,7 +115491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/763bc8-13807d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/763bc8-13807d.jpg" }, { "if": { @@ -115308,7 +115508,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-06427d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-06427d.jpg" }, { "if": { @@ -115323,7 +115523,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7af654-02dd35.svg" + "then": "https://data.mapcomplete.org/nsi//logos/7af654-02dd35.svg" }, { "if": { @@ -115340,7 +115540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chubuelectricpowercompany-083ddd.png" + "then": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowercompany-083ddd.png" }, { "if": { @@ -115357,7 +115557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushuelectricpowercompany-083ddd.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowercompany-083ddd.png" }, { "if": { @@ -115373,7 +115573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanpowercompany-84e908.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanpowercompany-84e908.jpg" }, { "if": { @@ -115390,7 +115590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tokyoelectricpowercompany-083ddd.png" + "then": "https://data.mapcomplete.org/nsi//logos/tokyoelectricpowercompany-083ddd.png" }, { "if": { @@ -115407,7 +115607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tohokuelectricpowercompany-083ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tohokuelectricpowercompany-083ddd.jpg" }, { "if": { @@ -115424,7 +115624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansaielectricpowercompany-083ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kansaielectricpowercompany-083ddd.jpg" }, { "if": { @@ -115441,7 +115641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricpowerdevelopmentcompany-083ddd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricpowerdevelopmentcompany-083ddd.jpg" }, { "if": { @@ -115455,7 +115655,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroottawa-4c765c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroottawa-4c765c.svg" }, { "if": { @@ -115469,7 +115669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontohydro-4c765c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torontohydro-4c765c.jpg" }, { "if": { @@ -115483,7 +115683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4countyelectricpowerassociation-ac8329.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/4countyelectricpowerassociation-ac8329.jpg" }, { "if": { @@ -115497,7 +115697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/50hertztransmission-c94250.svg" + "then": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-c94250.svg" }, { "if": { @@ -115511,7 +115711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aenergivannkraft-05f310.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-05f310.jpg" }, { "if": { @@ -115525,7 +115725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adif-139d53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adif-139d53.jpg" }, { "if": { @@ -115539,7 +115739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aek-d1325e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aek-d1325e.jpg" }, { "if": { @@ -115553,7 +115753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aepohio-55b3e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/aepohio-55b3e4.png" }, { "if": { @@ -115567,7 +115767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeptexas-b4c145.png" + "then": "https://data.mapcomplete.org/nsi//logos/aeptexas-b4c145.png" }, { "if": { @@ -115581,7 +115781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-d84880.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-d84880.png" }, { "if": { @@ -115595,7 +115795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aew-6b178d.png" + "then": "https://data.mapcomplete.org/nsi//logos/aew-6b178d.png" }, { "if": { @@ -115609,7 +115809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agderenergi-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agderenergi-05f310.svg" }, { "if": { @@ -115624,7 +115824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktiengesellschaftfurversorgungsunternehmen-bf3b54.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aktiengesellschaftfurversorgungsunternehmen-bf3b54.svg" }, { "if": { @@ -115638,7 +115838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamapower-58f3ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamapower-58f3ef.jpg" }, { "if": { @@ -115653,7 +115853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allgaueruberlandwerk-f24b12.png" + "then": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-f24b12.png" }, { "if": { @@ -115668,7 +115868,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliantenergy-777c2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/alliantenergy-777c2a.png" }, { "if": { @@ -115682,7 +115882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altalink-70d480.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altalink-70d480.jpg" }, { "if": { @@ -115697,7 +115897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameren-395973.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameren-395973.png" }, { "if": { @@ -115712,7 +115912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanelectricpower-777c2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-777c2a.png" }, { "if": { @@ -115726,7 +115926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amprion-c94250.svg" + "then": "https://data.mapcomplete.org/nsi//logos/amprion-c94250.svg" }, { "if": { @@ -115740,7 +115940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtrak-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtrak-777c2a.jpg" }, { "if": { @@ -115754,7 +115954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaheimpublicutilities-4d73bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-4d73bd.png" }, { "if": { @@ -115768,7 +115968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ande-839b81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ande-839b81.jpg" }, { "if": { @@ -115782,7 +115982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appalachianpowercompany-a9fd36.png" + "then": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-a9fd36.png" }, { "if": { @@ -115796,7 +115996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonapublicservice-4d7f6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-4d7f6d.png" }, { "if": { @@ -115810,7 +116010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-ab0eee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-ab0eee.jpg" }, { "if": { @@ -115824,7 +116024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atcoelectric-d8b98b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atcoelectric-d8b98b.svg" }, { "if": { @@ -115838,7 +116038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atel-4b9791.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atel-4b9791.svg" }, { "if": { @@ -115852,7 +116052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlanticcityelectric-af79fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-af79fb.jpg" }, { "if": { @@ -115866,7 +116066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/augstspriegumatikls-b1384e.png" + "then": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-b1384e.png" }, { "if": { @@ -115880,7 +116080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausgrid-e2ed89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausgrid-e2ed89.jpg" }, { "if": { @@ -115894,7 +116094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-b4c145.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-b4c145.jpg" }, { "if": { @@ -115908,7 +116108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avaconnetz-b411b9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avaconnetz-b411b9.svg" }, { "if": { @@ -115922,7 +116122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avista-cafee1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avista-cafee1.jpg" }, { "if": { @@ -115936,7 +116136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axpo-fbb9cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axpo-fbb9cb.jpg" }, { "if": { @@ -115951,7 +116151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-39a21c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-39a21c.jpg" }, { "if": { @@ -115965,7 +116165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayernwerk-6fe3c7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bayernwerk-6fe3c7.svg" }, { "if": { @@ -115979,7 +116179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-f4e8ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-f4e8ab.jpg" }, { "if": { @@ -115994,7 +116194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belizeelectricitylimited-2d1f01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-2d1f01.jpg" }, { "if": { @@ -116008,7 +116208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkk-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bkk-05f310.svg" }, { "if": { @@ -116022,7 +116222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkw-84ac21.png" + "then": "https://data.mapcomplete.org/nsi//logos/bkw-84ac21.png" }, { "if": { @@ -116036,7 +116236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blueridgeenergy-97b3a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-97b3a1.jpg" }, { "if": { @@ -116051,7 +116251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonnevillepoweradministration-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-777c2a.jpg" }, { "if": { @@ -116065,7 +116265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bornholmsenergiandforsyning-fcd4fa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-fcd4fa.jpg" }, { "if": { @@ -116079,7 +116279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightridge-ef3bf9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightridge-ef3bf9.jpg" }, { "if": { @@ -116093,7 +116293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bryantexasutilities-b4c145.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-b4c145.jpg" }, { "if": { @@ -116107,7 +116307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgenlandenergieag-1b1e2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-1b1e2a.jpg" }, { "if": { @@ -116121,7 +116321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalpower-84ef3e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalpower-84ef3e.jpg" }, { "if": { @@ -116135,7 +116335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caruna-48367d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caruna-48367d.svg" }, { "if": { @@ -116149,7 +116349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cdeee-1128d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cdeee-1128d3.jpg" }, { "if": { @@ -116163,7 +116363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceee-0aa22a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ceee-0aa22a.svg" }, { "if": { @@ -116177,7 +116377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celesc-0aa22a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celesc-0aa22a.jpg" }, { "if": { @@ -116191,7 +116391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cemig-0aa22a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cemig-0aa22a.jpg" }, { "if": { @@ -116205,7 +116405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-777c2a.jpg" }, { "if": { @@ -116219,7 +116419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralmainepowercompany-360ef7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-360ef7.jpg" }, { "if": { @@ -116233,7 +116433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceps-cbe952.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceps-cbe952.jpg" }, { "if": { @@ -116247,7 +116447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cern-b7887d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cern-b7887d.jpg" }, { "if": { @@ -116262,7 +116462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceylonelectricityboard-e5850e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-e5850e.png" }, { "if": { @@ -116276,7 +116476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cge-565432.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cge-565432.jpg" }, { "if": { @@ -116291,7 +116491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cipco-205a74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cipco-205a74.jpg" }, { "if": { @@ -116305,7 +116505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofames-205a74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofames-205a74.jpg" }, { "if": { @@ -116319,7 +116519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofconcord-97b3a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofconcord-97b3a1.png" }, { "if": { @@ -116333,7 +116533,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofelizabeth-97b3a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofelizabeth-97b3a1.jpg" }, { "if": { @@ -116347,7 +116547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhighpoint-97b3a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhighpoint-97b3a1.jpg" }, { "if": { @@ -116361,7 +116561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakeland-7b79c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-7b79c3.png" }, { "if": { @@ -116375,7 +116575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflexington-97b3a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflexington-97b3a1.jpg" }, { "if": { @@ -116389,7 +116589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnatchitoches-16cc25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnatchitoches-16cc25.jpg" }, { "if": { @@ -116403,7 +116603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftallahassee-7b79c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-7b79c3.jpg" }, { "if": { @@ -116417,7 +116617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkpublicutilities-30bece.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-30bece.jpg" }, { "if": { @@ -116431,7 +116631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clayelectriccooperative-7b79c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-7b79c3.jpg" }, { "if": { @@ -116445,7 +116645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleco-16cc25.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cleco-16cc25.svg" }, { "if": { @@ -116459,7 +116659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandpublicpower-55b3e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandpublicpower-55b3e4.jpg" }, { "if": { @@ -116473,7 +116673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cnr-1716c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cnr-1716c3.jpg" }, { "if": { @@ -116487,7 +116687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codelcochile-565432.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/codelcochile-565432.jpg" }, { "if": { @@ -116501,7 +116701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coelba-0aa22a.png" + "then": "https://data.mapcomplete.org/nsi//logos/coelba-0aa22a.png" }, { "if": { @@ -116515,7 +116715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colbun-565432.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colbun-565432.jpg" }, { "if": { @@ -116529,7 +116729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradospringsutilities-1103f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-1103f4.jpg" }, { "if": { @@ -116544,7 +116744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionfederaldeelectricidad-c496a2.png" + "then": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-c496a2.png" }, { "if": { @@ -116558,7 +116758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthedison-82293c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-82293c.jpg" }, { "if": { @@ -116572,7 +116772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consolidatededison-08de41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consolidatededison-08de41.jpg" }, { "if": { @@ -116586,7 +116786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumersenergy-b11ee8.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumersenergy-b11ee8.png" }, { "if": { @@ -116600,7 +116800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copel-0aa22a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copel-0aa22a.jpg" }, { "if": { @@ -116615,7 +116815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornbeltpowercooperative-205a74.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-205a74.jpg" }, { "if": { @@ -116629,7 +116829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpoelec-1a0ccd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/corpoelec-1a0ccd.jpg" }, { "if": { @@ -116643,7 +116843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosern-0aa22a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cosern-0aa22a.png" }, { "if": { @@ -116657,7 +116857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countiesenergy-54adcf.png" + "then": "https://data.mapcomplete.org/nsi//logos/countiesenergy-54adcf.png" }, { "if": { @@ -116671,7 +116871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpflenergia-0aa22a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cpflenergia-0aa22a.png" }, { "if": { @@ -116685,7 +116885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-b4c145.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-b4c145.jpg" }, { "if": { @@ -116699,7 +116899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cullmanelectriccooperative-58f3ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-58f3ef.png" }, { "if": { @@ -116713,7 +116913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dairylandpowercooperative-207d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-207d2e.jpg" }, { "if": { @@ -116728,7 +116928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daytonpowerandlight-55b3e4.png" + "then": "https://data.mapcomplete.org/nsi//logos/daytonpowerandlight-55b3e4.png" }, { "if": { @@ -116742,7 +116942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbenergie-c94250.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbenergie-c94250.svg" }, { "if": { @@ -116756,7 +116956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decaturutilities-58f3ef.png" + "then": "https://data.mapcomplete.org/nsi//logos/decaturutilities-58f3ef.png" }, { "if": { @@ -116770,7 +116970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delmarvapower-92a207.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delmarvapower-92a207.jpg" }, { "if": { @@ -116784,7 +116984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/demco-16cc25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/demco-16cc25.jpg" }, { "if": { @@ -116798,7 +116998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominionenergy-72e7ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/dominionenergy-72e7ed.png" }, { "if": { @@ -116812,7 +117012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dowchemicalcompany-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-777c2a.jpg" }, { "if": { @@ -116826,7 +117026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteelectriccompany-b11ee8.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-b11ee8.png" }, { "if": { @@ -116840,7 +117040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteenergy-b11ee8.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteenergy-b11ee8.png" }, { "if": { @@ -116854,7 +117054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-a13928.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-a13928.jpg" }, { "if": { @@ -116868,7 +117068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergyprogress-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-777c2a.jpg" }, { "if": { @@ -116882,7 +117082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duquesnelight-c65a21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duquesnelight-c65a21.jpg" }, { "if": { @@ -116896,7 +117096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eredes-0223fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/eredes-0223fd.png" }, { "if": { @@ -116910,7 +117110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edisnetzgmbh-ee88bc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-ee88bc.jpg" }, { "if": { @@ -116924,7 +117124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-90f5bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-90f5bd.png" }, { "if": { @@ -116938,7 +117138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonmitte-c94250.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonmitte-c94250.svg" }, { "if": { @@ -116952,7 +117152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonnetz-c94250.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonnetz-c94250.svg" }, { "if": { @@ -116966,7 +117166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonwestfalenweser-c94250.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonwestfalenweser-c94250.svg" }, { "if": { @@ -116980,7 +117180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastkentuckypowercooperative-3de8e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-3de8e2.jpg" }, { "if": { @@ -116994,7 +117194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastriverelectricpowercooperative-62cd2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-62cd2a.jpg" }, { "if": { @@ -117008,7 +117208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edenor-29b430.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edenor-29b430.jpg" }, { "if": { @@ -117022,7 +117222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpespiritosanto-8ceb0b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-8ceb0b.svg" }, { "if": { @@ -117038,7 +117238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovaveis-c7ec1c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-c7ec1c.svg" }, { "if": { @@ -117052,7 +117252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpsaopaulo-0aa22a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-0aa22a.jpg" }, { "if": { @@ -117066,7 +117266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egd-51167e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/egd-51167e.svg" }, { "if": { @@ -117080,7 +117280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eirgrid-90059a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eirgrid-90059a.jpg" }, { "if": { @@ -117094,7 +117294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekt-55fe6e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekt-55fe6e.jpg" }, { "if": { @@ -117109,7 +117309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-90f5bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-90f5bd.png" }, { "if": { @@ -117123,7 +117323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitynorthwest-054628.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-054628.jpg" }, { "if": { @@ -117137,7 +117337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrilevi-c438ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrilevi-c438ae.png" }, { "if": { @@ -117151,7 +117351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elenia-48367d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elenia-48367d.jpg" }, { "if": { @@ -117165,7 +117365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-c438ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-c438ae.jpg" }, { "if": { @@ -117179,7 +117379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eletropaulo-0aa22a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eletropaulo-0aa22a.svg" }, { "if": { @@ -117193,7 +117393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elia-c39316.png" + "then": "https://data.mapcomplete.org/nsi//logos/elia-c39316.png" }, { "if": { @@ -117207,7 +117407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ellevio-cbf906.png" + "then": "https://data.mapcomplete.org/nsi//logos/ellevio-cbf906.png" }, { "if": { @@ -117221,7 +117421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmu-294d85.png" + "then": "https://data.mapcomplete.org/nsi//logos/elmu-294d85.png" }, { "if": { @@ -117235,7 +117435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elvia-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elvia-05f310.svg" }, { "if": { @@ -117250,7 +117450,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-8c99ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-8c99ae.png" }, { "if": { @@ -117264,7 +117464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endeavourenergy-e2ed89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-e2ed89.jpg" }, { "if": { @@ -117278,7 +117478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-139d53.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-139d53.png" }, { "if": { @@ -117292,7 +117492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enea-7d29f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/enea-7d29f7.png" }, { "if": { @@ -117306,7 +117506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enedis-76dcb2.png" + "then": "https://data.mapcomplete.org/nsi//logos/enedis-76dcb2.png" }, { "if": { @@ -117320,7 +117520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-90f5bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-90f5bd.png" }, { "if": { @@ -117334,7 +117534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaoceara-0aa22a.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-0aa22a.png" }, { "if": { @@ -117348,7 +117548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-0aa22a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-0aa22a.svg" }, { "if": { @@ -117362,7 +117562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-90f5bd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-90f5bd.svg" }, { "if": { @@ -117376,7 +117576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-7d29f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-7d29f7.png" }, { "if": { @@ -117390,7 +117590,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energex-79d5c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energex-79d5c9.jpg" }, { "if": { @@ -117405,7 +117605,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiasdeportugal-0223fd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-0223fd.svg" }, { "if": { @@ -117419,7 +117619,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-3edee5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-3edee5.jpg" }, { "if": { @@ -117433,7 +117633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedumali-4c0493.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedumali-4c0493.jpg" }, { "if": { @@ -117448,7 +117648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieversorgungmittelrhein-b1071a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-b1071a.jpg" }, { "if": { @@ -117462,7 +117662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energinet-677094.png" + "then": "https://data.mapcomplete.org/nsi//logos/energinet-677094.png" }, { "if": { @@ -117477,7 +117677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energyfijilimited-fbc365.png" + "then": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-fbc365.png" }, { "if": { @@ -117491,7 +117691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enertrag-cab1db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enertrag-cab1db.jpg" }, { "if": { @@ -117505,7 +117705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enexis-42ab8c.png" + "then": "https://data.mapcomplete.org/nsi//logos/enexis-42ab8c.png" }, { "if": { @@ -117519,7 +117719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-90f5bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-90f5bd.jpg" }, { "if": { @@ -117533,7 +117733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmax-70d480.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmax-70d480.png" }, { "if": { @@ -117547,7 +117747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-ff0414.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-ff0414.png" }, { "if": { @@ -117561,7 +117761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergy-f574d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergy-f574d5.jpg" }, { "if": { @@ -117575,7 +117775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergyarkansas-ab0eee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-ab0eee.jpg" }, { "if": { @@ -117589,7 +117789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergylouisiana-acd049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-acd049.jpg" }, { "if": { @@ -117603,7 +117803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enviam-211376.png" + "then": "https://data.mapcomplete.org/nsi//logos/enviam-211376.png" }, { "if": { @@ -117617,7 +117817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epb-727709.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epb-727709.jpg" }, { "if": { @@ -117631,7 +117831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epcor-e09e4b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epcor-e09e4b.jpg" }, { "if": { @@ -117645,7 +117845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epec-62812c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epec-62812c.jpg" }, { "if": { @@ -117659,7 +117859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equatorialenergiapiaui-c83cbe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-c83cbe.jpg" }, { "if": { @@ -117673,7 +117873,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ergonenergy-79d5c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ergonenergy-79d5c9.jpg" }, { "if": { @@ -117687,7 +117887,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbnetworks-90059a.png" + "then": "https://data.mapcomplete.org/nsi//logos/esbnetworks-90059a.png" }, { "if": { @@ -117701,7 +117901,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eskom-f94165.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eskom-f94165.jpg" }, { "if": { @@ -117715,7 +117915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentialenergy-4411dc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentialenergy-4411dc.jpg" }, { "if": { @@ -117730,7 +117930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eswatinielectricitycompany-6e9fe5.png" + "then": "https://data.mapcomplete.org/nsi//logos/eswatinielectricitycompany-6e9fe5.png" }, { "if": { @@ -117745,7 +117945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethiopianelectricpower-d64a98.png" + "then": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-d64a98.png" }, { "if": { @@ -117760,7 +117960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eugenewaterandelectricboard-8c99ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-8c99ae.jpg" }, { "if": { @@ -117775,7 +117975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-fbf835.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-fbf835.jpg" }, { "if": { @@ -117789,7 +117989,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eversource-d83c76.png" + "then": "https://data.mapcomplete.org/nsi//logos/eversource-d83c76.png" }, { "if": { @@ -117803,7 +118003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-3edee5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-3edee5.jpg" }, { "if": { @@ -117818,7 +118018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-5e319c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-5e319c.svg" }, { "if": { @@ -117832,7 +118032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evs-bf3b54.png" + "then": "https://data.mapcomplete.org/nsi//logos/evs-bf3b54.png" }, { "if": { @@ -117846,7 +118046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewz-84ac21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewz-84ac21.jpg" }, { "if": { @@ -117860,7 +118060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fagne-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fagne-05f310.svg" }, { "if": { @@ -117875,7 +118075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fayettevillepublicworkscommission-97b3a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-97b3a1.jpg" }, { "if": { @@ -117889,7 +118089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fingrid-48367d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fingrid-48367d.jpg" }, { "if": { @@ -117903,7 +118103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstenergy-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstenergy-777c2a.jpg" }, { "if": { @@ -117917,7 +118117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fjellnett-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fjellnett-05f310.svg" }, { "if": { @@ -117931,7 +118131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridapowerandlight-7b79c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-7b79c3.png" }, { "if": { @@ -117945,7 +118145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortisbc-f4e8ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortisbc-f4e8ab.png" }, { "if": { @@ -117959,7 +118159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortum-1188a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortum-1188a0.jpg" }, { "if": { @@ -117973,7 +118173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fs-db4d8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fs-db4d8e.jpg" }, { "if": { @@ -117987,7 +118187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/furnascentraiseletricas-0aa22a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-0aa22a.jpg" }, { "if": { @@ -118002,7 +118202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gainesvilleregionalutilities-7b79c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-7b79c3.png" }, { "if": { @@ -118016,7 +118216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gladeselectriccoop-7b79c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-7b79c3.jpg" }, { "if": { @@ -118030,7 +118230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glitrenett-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/glitrenett-05f310.svg" }, { "if": { @@ -118044,7 +118244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenspreadelectriccooperative-b4c145.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-b4c145.jpg" }, { "if": { @@ -118059,7 +118259,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandriverdamauthority-0874bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-0874bd.jpg" }, { "if": { @@ -118073,7 +118273,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenevilleenergyauthority-ef3bf9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-ef3bf9.jpg" }, { "if": { @@ -118087,7 +118287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenvilleutilitiescommission-97b3a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-97b3a1.jpg" }, { "if": { @@ -118101,7 +118301,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groupee-84ac21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupee-84ac21.jpg" }, { "if": { @@ -118115,7 +118315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harzenergie-c94250.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harzenergie-c94250.jpg" }, { "if": { @@ -118129,7 +118329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haugalandkraftnett-05f310.png" + "then": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-05f310.png" }, { "if": { @@ -118143,7 +118343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiianelectriccompany-ef03b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-ef03b3.jpg" }, { "if": { @@ -118157,7 +118357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntsvilleutilities-58f3ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-58f3ef.jpg" }, { "if": { @@ -118171,7 +118371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroenergi-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroenergi-05f310.svg" }, { "if": { @@ -118185,7 +118385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-8e54ec.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-8e54ec.png" }, { "if": { @@ -118199,7 +118399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-90f5bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-90f5bd.jpg" }, { "if": { @@ -118213,7 +118413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahopower-01bcc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahopower-01bcc3.jpg" }, { "if": { @@ -118227,7 +118427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-3edee5.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-3edee5.png" }, { "if": { @@ -118242,7 +118442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialirrigationdistrict-4d73bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-4d73bd.jpg" }, { "if": { @@ -118256,7 +118456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/independencepowerandlight-c17ebf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-c17ebf.jpg" }, { "if": { @@ -118271,7 +118471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianamichiganpower-caf4b5.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-caf4b5.png" }, { "if": { @@ -118286,7 +118486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianapolispowerandlight-bb97f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-bb97f5.png" }, { "if": { @@ -118301,7 +118501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-45d569.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-45d569.jpg" }, { "if": { @@ -118315,7 +118515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invenergy-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invenergy-777c2a.jpg" }, { "if": { @@ -118329,7 +118529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipto-dfaa84.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipto-dfaa84.png" }, { "if": { @@ -118343,7 +118543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itaipubinacional-881e0f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-881e0f.svg" }, { "if": { @@ -118357,7 +118557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itc-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itc-777c2a.jpg" }, { "if": { @@ -118371,7 +118571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonenergyauthority-ef3bf9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-ef3bf9.jpg" }, { "if": { @@ -118386,7 +118586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-b03b37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-b03b37.jpg" }, { "if": { @@ -118401,7 +118601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseycentralpowerandlight-a27c88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-a27c88.jpg" }, { "if": { @@ -118415,7 +118615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joewheeleremc-58f3ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-58f3ef.jpg" }, { "if": { @@ -118429,7 +118629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonesborocitywaterandlight-ab0eee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-ab0eee.jpg" }, { "if": { @@ -118448,7 +118648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastjapanrailwaycompany-f42ba4.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-f42ba4.png" }, { "if": { @@ -118467,7 +118667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centraljapanrailwaycompany-f42ba4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/centraljapanrailwaycompany-f42ba4.svg" }, { "if": { @@ -118482,7 +118682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansascityboardofpublicutilities-25219f.png" + "then": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-25219f.png" }, { "if": { @@ -118496,7 +118696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-2102e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-2102e1.jpg" }, { "if": { @@ -118510,7 +118710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckypower-09c49f.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckypower-09c49f.png" }, { "if": { @@ -118525,7 +118725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralastateelectricityboard-178f76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-178f76.jpg" }, { "if": { @@ -118539,7 +118739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kissimmeeutilityauthority-7b79c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-7b79c3.png" }, { "if": { @@ -118554,7 +118754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knoxvilleutilitiesboard-ef3bf9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-ef3bf9.jpg" }, { "if": { @@ -118568,7 +118768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kystnett-05f310.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kystnett-05f310.jpg" }, { "if": { @@ -118583,7 +118783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-4d73bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-4d73bd.png" }, { "if": { @@ -118598,7 +118798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayetteutilitiessystem-16cc25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-16cc25.jpg" }, { "if": { @@ -118613,7 +118813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leecountyelectriccooperative-7b79c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-7b79c3.jpg" }, { "if": { @@ -118627,7 +118827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leag-c94250.svg" + "then": "https://data.mapcomplete.org/nsi//logos/leag-c94250.svg" }, { "if": { @@ -118642,7 +118842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechwerke-6fe3c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechwerke-6fe3c7.jpg" }, { "if": { @@ -118656,7 +118856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liander-42ab8c.png" + "then": "https://data.mapcomplete.org/nsi//logos/liander-42ab8c.png" }, { "if": { @@ -118670,7 +118870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnelectricsystem-5e8583.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-5e8583.png" }, { "if": { @@ -118684,7 +118884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linja-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/linja-05f310.svg" }, { "if": { @@ -118698,7 +118898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-72f362.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-72f362.jpg" }, { "if": { @@ -118712,7 +118912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lockhartpowercompany-cf81af.png" + "then": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-cf81af.png" }, { "if": { @@ -118727,7 +118927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-b4c145.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-b4c145.png" }, { "if": { @@ -118741,7 +118941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswnetz-91d594.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswnetz-91d594.png" }, { "if": { @@ -118756,7 +118956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubbockpowerandlight-b4c145.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-b4c145.png" }, { "if": { @@ -118770,7 +118970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lyse-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lyse-05f310.svg" }, { "if": { @@ -118784,7 +118984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manitobahydro-446769.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manitobahydro-446769.svg" }, { "if": { @@ -118798,7 +118998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marke-bf3b54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marke-bf3b54.jpg" }, { "if": { @@ -118812,7 +119012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshallmunicipalutilities-a6a90b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-a6a90b.jpg" }, { "if": { @@ -118826,7 +119026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-58f3ef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-58f3ef.jpg" }, { "if": { @@ -118840,7 +119040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mdu-e54906.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mdu-e54906.jpg" }, { "if": { @@ -118855,7 +119055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphislightgasandwater-ef3bf9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-ef3bf9.jpg" }, { "if": { @@ -118869,7 +119069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meralco-4b9a17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meralco-4b9a17.jpg" }, { "if": { @@ -118883,7 +119083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meted-c65a21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meted-c65a21.jpg" }, { "if": { @@ -118898,7 +119098,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midamericanenergy-dabe73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-dabe73.jpg" }, { "if": { @@ -118912,7 +119112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midwestenergy-25219f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midwestenergy-25219f.jpg" }, { "if": { @@ -118926,7 +119126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-a6a90b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-a6a90b.jpg" }, { "if": { @@ -118940,7 +119140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnkotapowercooperative-add366.png" + "then": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-add366.png" }, { "if": { @@ -118954,7 +119154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippipower-ac8329.png" + "then": "https://data.mapcomplete.org/nsi//logos/mississippipower-ac8329.png" }, { "if": { @@ -118968,7 +119168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monpower-646cd0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monpower-646cd0.jpg" }, { "if": { @@ -118982,7 +119182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nampower-ec5d68.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nampower-ec5d68.svg" }, { "if": { @@ -118997,7 +119197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nashvilleelectricservice-ef3bf9.png" + "then": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-ef3bf9.png" }, { "if": { @@ -119011,7 +119211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgrid-931e9c.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgrid-931e9c.png" }, { "if": { @@ -119026,7 +119226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-4b9a17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-4b9a17.jpg" }, { "if": { @@ -119040,7 +119240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitydistribution-054628.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-054628.jpg" }, { "if": { @@ -119054,7 +119254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitytransmission-054628.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-054628.svg" }, { "if": { @@ -119070,7 +119270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbpower-19cd2f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nbpower-19cd2f.svg" }, { "if": { @@ -119084,7 +119284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoenergia-0aa22a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoenergia-0aa22a.svg" }, { "if": { @@ -119098,7 +119298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzno-3edee5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netzno-3edee5.jpg" }, { "if": { @@ -119112,7 +119312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzebwgmbh-9f3684.svg" + "then": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-9f3684.svg" }, { "if": { @@ -119127,7 +119327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkpowerauthority-08de41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-08de41.jpg" }, { "if": { @@ -119141,7 +119341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-2f814b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-2f814b.jpg" }, { "if": { @@ -119155,7 +119355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandpower-2f814b.png" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-2f814b.png" }, { "if": { @@ -119169,7 +119369,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexteraenergy-84ef3e.png" + "then": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-84ef3e.png" }, { "if": { @@ -119183,7 +119383,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nienetworks-af96ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nienetworks-af96ca.jpg" }, { "if": { @@ -119197,7 +119397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernpowergrid-054628.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-054628.jpg" }, { "if": { @@ -119211,7 +119411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-c1d6b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-c1d6b7.jpg" }, { "if": { @@ -119225,7 +119425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-4e702c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-4e702c.jpg" }, { "if": { @@ -119239,7 +119439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntenett-05f310.png" + "then": "https://data.mapcomplete.org/nsi//logos/ntenett-05f310.png" }, { "if": { @@ -119253,7 +119453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nvenergy-21116b.png" + "then": "https://data.mapcomplete.org/nsi//logos/nvenergy-21116b.png" }, { "if": { @@ -119267,7 +119467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nwelectricpowercooperative-c17ebf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-c17ebf.jpg" }, { "if": { @@ -119281,7 +119481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nyseg-08de41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nyseg-08de41.jpg" }, { "if": { @@ -119296,7 +119496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomagasandelectric-0874bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-0874bd.jpg" }, { "if": { @@ -119310,7 +119510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omahapublicpowerdistrict-5e8583.png" + "then": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-5e8583.png" }, { "if": { @@ -119324,7 +119524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oncor-b4c145.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oncor-b4c145.jpg" }, { "if": { @@ -119338,7 +119538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orionnewzealand-54adcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-54adcf.jpg" }, { "if": { @@ -119353,7 +119553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlandoutilitiescommission-7b79c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-7b79c3.jpg" }, { "if": { @@ -119367,7 +119567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottertailpowercompany-940dba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-940dba.jpg" }, { "if": { @@ -119382,7 +119582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-4d73bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-4d73bd.png" }, { "if": { @@ -119396,7 +119596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificpower-c4cc72.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificpower-c4cc72.svg" }, { "if": { @@ -119410,7 +119610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificorp-777c2a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificorp-777c2a.svg" }, { "if": { @@ -119424,7 +119624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pea-c89122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pea-c89122.jpg" }, { "if": { @@ -119438,7 +119638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peco-8902b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peco-8902b7.jpg" }, { "if": { @@ -119452,7 +119652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peinertragergmbh-91d594.svg" + "then": "https://data.mapcomplete.org/nsi//logos/peinertragergmbh-91d594.svg" }, { "if": { @@ -119466,7 +119666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penelec-c65a21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penelec-c65a21.jpg" }, { "if": { @@ -119481,7 +119681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perusahaanlistriknegara-605f64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-605f64.jpg" }, { "if": { @@ -119495,7 +119695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrobras-0aa22a.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrobras-0aa22a.png" }, { "if": { @@ -119509,7 +119709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfalzwerkeag-b1071a.png" + "then": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-b1071a.png" }, { "if": { @@ -119523,7 +119723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgedystrybucja-7d29f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-7d29f7.jpg" }, { "if": { @@ -119537,7 +119737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgeenergetykakolejowa-7d29f7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-7d29f7.jpg" }, { "if": { @@ -119551,7 +119751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pjm-a27c88.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pjm-a27c88.jpg" }, { "if": { @@ -119566,7 +119766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-abbcc9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-abbcc9.jpg" }, { "if": { @@ -119581,7 +119781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-858c1e.png" + "then": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-858c1e.png" }, { "if": { @@ -119596,7 +119796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandgeneralelectric-8c99ae.png" + "then": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-8c99ae.png" }, { "if": { @@ -119610,7 +119810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacedison-6c07c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacedison-6c07c9.jpg" }, { "if": { @@ -119625,7 +119825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacelectricpowercompany-bd6bd5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-bd6bd5.jpg" }, { "if": { @@ -119639,7 +119839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powergridcorporationofindialtd-178f76.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-178f76.jpg" }, { "if": { @@ -119653,7 +119853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerco-54adcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerco-54adcf.jpg" }, { "if": { @@ -119667,7 +119867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powercor-6c22c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/powercor-6c22c4.png" }, { "if": { @@ -119681,7 +119881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerlink-79d5c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerlink-79d5c9.jpg" }, { "if": { @@ -119695,7 +119895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ppl-af79fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ppl-af79fb.jpg" }, { "if": { @@ -119709,7 +119909,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pre-51167e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pre-51167e.jpg" }, { "if": { @@ -119723,7 +119923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premierenergy-9ddea3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/premierenergy-9ddea3.jpg" }, { "if": { @@ -119738,7 +119938,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-7b2677.png" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-7b2677.png" }, { "if": { @@ -119752,7 +119952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicserviceenterprisegroup-db78e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-db78e4.jpg" }, { "if": { @@ -119767,7 +119967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-637829.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-637829.jpg" }, { "if": { @@ -119782,7 +119982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pugetsoundenergy-30bece.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-30bece.jpg" }, { "if": { @@ -119796,7 +119996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radiuselnet-1f5c3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radiuselnet-1f5c3b.jpg" }, { "if": { @@ -119810,7 +120010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rappahannockelectriccooperative-f601d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-f601d1.jpg" }, { "if": { @@ -119825,7 +120025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redelectricadeespana-139d53.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-139d53.jpg" }, { "if": { @@ -119839,7 +120039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reedycreekimprovementdistrict-7b79c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reedycreekimprovementdistrict-7b79c3.jpg" }, { "if": { @@ -119853,7 +120053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ren-0223fd.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ren-0223fd.svg" }, { "if": { @@ -119867,7 +120067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resoluteforestproducts-8e54ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/resoluteforestproducts-8e54ec.jpg" }, { "if": { @@ -119881,7 +120081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-db4d8e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-db4d8e.svg" }, { "if": { @@ -119895,7 +120095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodeislandenergy-fd32de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-fd32de.jpg" }, { "if": { @@ -119909,7 +120109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riograndeenergia-0aa22a.png" + "then": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-0aa22a.png" }, { "if": { @@ -119923,7 +120123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-4dd5c6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-4dd5c6.svg" }, { "if": { @@ -119937,7 +120137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochestergasandelectric-08de41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-08de41.jpg" }, { "if": { @@ -119951,7 +120151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockymountainpower-3a4568.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-3a4568.svg" }, { "if": { @@ -119965,7 +120165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romandeenergie-4a0640.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romandeenergie-4a0640.jpg" }, { "if": { @@ -119979,7 +120179,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosevilleelectric-4d73bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-4d73bd.jpg" }, { "if": { @@ -119993,7 +120193,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rte-1716c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/rte-1716c3.png" }, { "if": { @@ -120007,7 +120207,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-46b867.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-46b867.jpg" }, { "if": { @@ -120021,7 +120221,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-59db59.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-59db59.png" }, { "if": { @@ -120036,7 +120236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-4d73bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-4d73bd.jpg" }, { "if": { @@ -120050,7 +120250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sadalestikls-b1384e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sadalestikls-b1384e.jpg" }, { "if": { @@ -120065,7 +120265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltriverproject-4d7f6d.png" + "then": "https://data.mapcomplete.org/nsi//logos/saltriverproject-4d7f6d.png" }, { "if": { @@ -120079,7 +120279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-3061ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-3061ab.jpg" }, { "if": { @@ -120094,7 +120294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegogasandelectric-416b27.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-416b27.jpg" }, { "if": { @@ -120108,7 +120308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saskpower-19de1f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saskpower-19de1f.svg" }, { "if": { @@ -120122,7 +120322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-84ac21.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-84ac21.png" }, { "if": { @@ -120136,7 +120336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-0d4d66.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-0d4d66.svg" }, { "if": { @@ -120151,7 +120351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-4cd76b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-4cd76b.jpg" }, { "if": { @@ -120166,7 +120366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlecitylight-30bece.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-30bece.png" }, { "if": { @@ -120180,7 +120380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seminoleelectriccooperative-7b79c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-7b79c3.jpg" }, { "if": { @@ -120194,7 +120394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senelec-1601b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senelec-1601b6.jpg" }, { "if": { @@ -120208,7 +120408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sig-3c01da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sig-3c01da.jpg" }, { "if": { @@ -120222,7 +120422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slemco-16cc25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slemco-16cc25.jpg" }, { "if": { @@ -120237,7 +120437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-4eb8d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-4eb8d2.jpg" }, { "if": { @@ -120251,7 +120451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-1716c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-1716c3.png" }, { "if": { @@ -120265,7 +120465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-1716c3.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-1716c3.png" }, { "if": { @@ -120280,7 +120480,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-401909.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-401909.jpg" }, { "if": { @@ -120295,7 +120495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sognogfjordaneenergi-05f310.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-05f310.jpg" }, { "if": { @@ -120310,7 +120510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniaedison-4d73bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-4d73bd.jpg" }, { "if": { @@ -120324,7 +120524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-ab0eee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-ab0eee.jpg" }, { "if": { @@ -120338,7 +120538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spenergynetworks-4cd76b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-4cd76b.jpg" }, { "if": { @@ -120353,7 +120553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldutilityboard-8c99ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-8c99ae.jpg" }, { "if": { @@ -120367,7 +120567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssentransmission-a65ddf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ssentransmission-a65ddf.jpg" }, { "if": { @@ -120381,7 +120581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedusseldorf-bf3b54.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-bf3b54.jpg" }, { "if": { @@ -120395,7 +120595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeleipzig-59db59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-59db59.jpg" }, { "if": { @@ -120410,7 +120610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-6fe3c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-6fe3c7.jpg" }, { "if": { @@ -120424,7 +120624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statkraft-46b867.png" + "then": "https://data.mapcomplete.org/nsi//logos/statkraft-46b867.png" }, { "if": { @@ -120438,7 +120638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statnett-05f310.png" + "then": "https://data.mapcomplete.org/nsi//logos/statnett-05f310.png" }, { "if": { @@ -120452,7 +120652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stedin-42ab8c.png" + "then": "https://data.mapcomplete.org/nsi//logos/stedin-42ab8c.png" }, { "if": { @@ -120466,7 +120666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzberlin-ff5d95.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-ff5d95.svg" }, { "if": { @@ -120480,7 +120680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-e3db22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-e3db22.jpg" }, { "if": { @@ -120494,7 +120694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-25219f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-25219f.jpg" }, { "if": { @@ -120508,7 +120708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwagenergie-7ec739.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwagenergie-7ec739.jpg" }, { "if": { @@ -120522,7 +120722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svenskakraftnat-cbf906.png" + "then": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-cbf906.png" }, { "if": { @@ -120537,7 +120737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwesternelectricpowercompany-79abae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-79abae.jpg" }, { "if": { @@ -120551,7 +120751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissgrid-84ac21.png" + "then": "https://data.mapcomplete.org/nsi//logos/swissgrid-84ac21.png" }, { "if": { @@ -120565,7 +120765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sygnir-05f310.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sygnir-05f310.jpg" }, { "if": { @@ -120579,7 +120779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-7d29f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-7d29f7.png" }, { "if": { @@ -120593,7 +120793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teias-822e3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teias-822e3b.jpg" }, { "if": { @@ -120607,7 +120807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenaganasional-c8ef55.png" + "then": "https://data.mapcomplete.org/nsi//logos/tenaganasional-c8ef55.png" }, { "if": { @@ -120622,7 +120822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseevalleyauthority-777c2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-777c2a.png" }, { "if": { @@ -120636,7 +120836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennet-42ab8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennet-42ab8c.jpg" }, { "if": { @@ -120650,7 +120850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennettso-9c1c2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennettso-9c1c2e.jpg" }, { "if": { @@ -120664,7 +120864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tensio-05f310.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tensio-05f310.jpg" }, { "if": { @@ -120678,7 +120878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terna-c79ba9.png" + "then": "https://data.mapcomplete.org/nsi//logos/terna-c79ba9.png" }, { "if": { @@ -120693,7 +120893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasnewmexicopower-b4c145.png" + "then": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-b4c145.png" }, { "if": { @@ -120707,7 +120907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-3edee5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-3edee5.svg" }, { "if": { @@ -120721,7 +120921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transcomahuesa-681180.png" + "then": "https://data.mapcomplete.org/nsi//logos/transcomahuesa-681180.png" }, { "if": { @@ -120735,7 +120935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transener-3f53e7.png" + "then": "https://data.mapcomplete.org/nsi//logos/transener-3f53e7.png" }, { "if": { @@ -120749,7 +120949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transgrid-e2ed89.png" + "then": "https://data.mapcomplete.org/nsi//logos/transgrid-e2ed89.png" }, { "if": { @@ -120763,7 +120963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transmissioncompanyofnigeria-784ea8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-784ea8.jpg" }, { "if": { @@ -120777,7 +120977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnetbwgmbh-9f3684.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-9f3684.svg" }, { "if": { @@ -120791,7 +120991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-e2ed89.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-e2ed89.jpg" }, { "if": { @@ -120805,7 +121005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transpowernewzealand-54adcf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-54adcf.jpg" }, { "if": { @@ -120819,7 +121019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredas-822e3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredas-822e3b.jpg" }, { "if": { @@ -120834,7 +121034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tucsonelectricpower-4d7f6d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-4d7f6d.jpg" }, { "if": { @@ -120848,7 +121048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugi-c65a21.png" + "then": "https://data.mapcomplete.org/nsi//logos/ugi-c65a21.png" }, { "if": { @@ -120862,7 +121062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukpowernetworks-054628.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-054628.jpg" }, { "if": { @@ -120876,7 +121076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniperkraftwerke-c94250.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-c94250.png" }, { "if": { @@ -120890,7 +121090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedilluminatingcompany-e3394a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-e3394a.jpg" }, { "if": { @@ -120904,7 +121104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatessteel-58f3ef.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-58f3ef.svg" }, { "if": { @@ -120918,7 +121118,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitil-8cab10.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitil-8cab10.png" }, { "if": { @@ -120932,7 +121132,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-ad3803.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-ad3803.svg" }, { "if": { @@ -120946,7 +121146,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valesa-0aa22a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valesa-0aa22a.jpg" }, { "if": { @@ -120960,7 +121160,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-6444bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-6444bc.png" }, { "if": { @@ -120974,7 +121174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-c94250.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-c94250.png" }, { "if": { @@ -120988,7 +121188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-54adcf.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-54adcf.png" }, { "if": { @@ -121002,7 +121202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-3edee5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-3edee5.jpg" }, { "if": { @@ -121016,7 +121216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontelectricpowercompany-332bd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-332bd4.jpg" }, { "if": { @@ -121030,7 +121230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/versantpower-360ef7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/versantpower-360ef7.jpg" }, { "if": { @@ -121044,7 +121244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vestall-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vestall-05f310.svg" }, { "if": { @@ -121058,7 +121258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vevig-05f310.png" + "then": "https://data.mapcomplete.org/nsi//logos/vevig-05f310.png" }, { "if": { @@ -121072,7 +121272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viesgodistribucionelectrica-139d53.png" + "then": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-139d53.png" }, { "if": { @@ -121086,7 +121286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visayanelectric-4b9a17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visayanelectric-4b9a17.jpg" }, { "if": { @@ -121100,7 +121300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vissi-05f310.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vissi-05f310.svg" }, { "if": { @@ -121115,7 +121315,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskadistribucna-4eb8d2.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-4eb8d2.png" }, { "if": { @@ -121129,7 +121329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-16cc25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-16cc25.jpg" }, { "if": { @@ -121143,7 +121343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wemagnetzgmbh-ee88bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/wemagnetzgmbh-ee88bc.png" }, { "if": { @@ -121157,7 +121357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westpennpower-a5719a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westpennpower-a5719a.jpg" }, { "if": { @@ -121172,7 +121372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernareapoweradministration-777c2a.png" + "then": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-777c2a.png" }, { "if": { @@ -121187,7 +121387,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfalenwesernetz-902312.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westfalenwesernetz-902312.svg" }, { "if": { @@ -121201,7 +121401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westnetz-c94250.png" + "then": "https://data.mapcomplete.org/nsi//logos/westnetz-c94250.png" }, { "if": { @@ -121215,7 +121415,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-3edee5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-3edee5.jpg" }, { "if": { @@ -121229,7 +121429,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienernetze-3edee5.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienernetze-3edee5.png" }, { "if": { @@ -121243,7 +121443,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-777c2a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-777c2a.jpg" }, { "if": { @@ -121257,7 +121457,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-441803.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-441803.svg" }, { "if": { @@ -121271,7 +121471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/788cf3-dfaa84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/788cf3-dfaa84.jpg" }, { "if": { @@ -121285,7 +121485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7c17ff-b77294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7c17ff-b77294.jpg" }, { "if": { @@ -121299,7 +121499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f36860-b77294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/f36860-b77294.jpg" }, { "if": { @@ -121313,7 +121513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/084a1e-b77294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/084a1e-b77294.jpg" }, { "if": { @@ -121327,7 +121527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cc48e9-b77294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cc48e9-b77294.jpg" }, { "if": { @@ -121341,7 +121541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dd2584-b77294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dd2584-b77294.jpg" }, { "if": { @@ -121355,7 +121555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9e843b-b77294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9e843b-b77294.jpg" }, { "if": { @@ -121369,7 +121569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8fc412-407be8.png" + "then": "https://data.mapcomplete.org/nsi//logos/8fc412-407be8.png" }, { "if": { @@ -121383,7 +121583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1fc076-407be8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1fc076-407be8.jpg" }, { "if": { @@ -121397,7 +121597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/472734-b77294.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/472734-b77294.jpg" }, { "if": { @@ -121413,7 +121613,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tunisiancompanyofelectricityandgas-ddece0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tunisiancompanyofelectricityandgas-ddece0.jpg" }, { "if": { @@ -121429,7 +121629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-9dcc3d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-9dcc3d.jpg" }, { "if": { @@ -121446,7 +121646,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-c89122.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-c89122.jpg" }, { "if": { @@ -121469,7 +121669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clppowerhongkonglimited-64f448.png" + "then": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-64f448.png" }, { "if": { @@ -121485,7 +121685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chubuelectricpowergridcompany-f42ba4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-f42ba4.svg" }, { "if": { @@ -121501,7 +121701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-f42ba4.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-f42ba4.png" }, { "if": { @@ -121518,7 +121718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-f42ba4.png" + "then": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-f42ba4.png" }, { "if": { @@ -121532,7 +121732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/34ba0b-c529db.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/34ba0b-c529db.jpg" }, { "if": { @@ -121548,7 +121748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tepcopowergrid-f42ba4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-f42ba4.svg" }, { "if": { @@ -121565,7 +121765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okinawaelectricpowercompany-f42ba4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-f42ba4.jpg" }, { "if": { @@ -121581,7 +121781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jpowertransmissionnetwork-f42ba4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jpowertransmissionnetwork-f42ba4.svg" }, { "if": { @@ -121604,7 +121804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-64f448.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-64f448.jpg" }, { "if": { @@ -121618,7 +121818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/50hertztransmission-7ff171.svg" + "then": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-7ff171.svg" }, { "if": { @@ -121632,7 +121832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a2a-5e9b52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a2a-5e9b52.jpg" }, { "if": { @@ -121646,7 +121846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aceadistribuzione-5e9b52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aceadistribuzione-5e9b52.jpg" }, { "if": { @@ -121660,7 +121860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adif-294d99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adif-294d99.jpg" }, { "if": { @@ -121674,7 +121874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aepohio-7dabf9.png" + "then": "https://data.mapcomplete.org/nsi//logos/aepohio-7dabf9.png" }, { "if": { @@ -121688,7 +121888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeptexas-9e5147.png" + "then": "https://data.mapcomplete.org/nsi//logos/aeptexas-9e5147.png" }, { "if": { @@ -121702,7 +121902,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-1d9244.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-1d9244.png" }, { "if": { @@ -121716,7 +121916,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aew-f6524b.png" + "then": "https://data.mapcomplete.org/nsi//logos/aew-f6524b.png" }, { "if": { @@ -121730,7 +121930,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agderenergi-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agderenergi-ba6ae8.svg" }, { "if": { @@ -121744,7 +121944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamapower-569b0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamapower-569b0d.jpg" }, { "if": { @@ -121759,7 +121959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albtalverkehrsgesellschaftmbh-dda049.png" + "then": "https://data.mapcomplete.org/nsi//logos/albtalverkehrsgesellschaftmbh-dda049.png" }, { "if": { @@ -121773,7 +121973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albwerk-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albwerk-dda049.jpg" }, { "if": { @@ -121788,7 +121988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allgaueruberlandwerk-79f5a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-79f5a8.png" }, { "if": { @@ -121802,7 +122002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliantenergy-301545.png" + "then": "https://data.mapcomplete.org/nsi//logos/alliantenergy-301545.png" }, { "if": { @@ -121816,7 +122016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alpineenergy-e516d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alpineenergy-e516d3.jpg" }, { "if": { @@ -121830,7 +122030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altalink-ebf474.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altalink-ebf474.jpg" }, { "if": { @@ -121844,7 +122044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameren-8ed706.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameren-8ed706.png" }, { "if": { @@ -121859,7 +122059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanelectricpower-301545.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-301545.png" }, { "if": { @@ -121873,7 +122073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amprion-7ff171.svg" + "then": "https://data.mapcomplete.org/nsi//logos/amprion-7ff171.svg" }, { "if": { @@ -121887,7 +122087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtrak-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtrak-301545.jpg" }, { "if": { @@ -121901,7 +122101,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaheimpublicutilities-9f24bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-9f24bd.png" }, { "if": { @@ -121915,7 +122115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ande-2b7b09.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ande-2b7b09.jpg" }, { "if": { @@ -121929,7 +122129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appalachianpowercompany-0f82b9.png" + "then": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-0f82b9.png" }, { "if": { @@ -121943,7 +122143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonapublicservice-260b75.png" + "then": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-260b75.png" }, { "if": { @@ -121957,7 +122157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-5f1fb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-5f1fb8.jpg" }, { "if": { @@ -121971,7 +122171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atcoelectric-5212b2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atcoelectric-5212b2.svg" }, { "if": { @@ -121985,7 +122185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlanticcityelectric-61b2a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-61b2a4.jpg" }, { "if": { @@ -121999,7 +122199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/augstspriegumatikls-b57901.png" + "then": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-b57901.png" }, { "if": { @@ -122013,7 +122213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auroraenergy-8d74a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/auroraenergy-8d74a7.jpg" }, { "if": { @@ -122027,7 +122227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausgrid-1266b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausgrid-1266b7.jpg" }, { "if": { @@ -122041,7 +122241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausnet-2fd8c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausnet-2fd8c0.jpg" }, { "if": { @@ -122055,7 +122255,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-9e5147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-9e5147.jpg" }, { "if": { @@ -122069,7 +122269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avaconnetz-6177b3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avaconnetz-6177b3.svg" }, { "if": { @@ -122083,7 +122283,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avista-2dbf5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avista-2dbf5c.jpg" }, { "if": { @@ -122097,7 +122297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avuag-26c4cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avuag-26c4cf.svg" }, { "if": { @@ -122111,7 +122311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axpoekz-42bdec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axpoekz-42bdec.jpg" }, { "if": { @@ -122125,7 +122325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-62c87b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-62c87b.jpg" }, { "if": { @@ -122139,7 +122339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banenor-ba6ae8.png" + "then": "https://data.mapcomplete.org/nsi//logos/banenor-ba6ae8.png" }, { "if": { @@ -122153,7 +122353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banedanmark-3aeb55.png" + "then": "https://data.mapcomplete.org/nsi//logos/banedanmark-3aeb55.png" }, { "if": { @@ -122167,7 +122367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-9c288b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-9c288b.jpg" }, { "if": { @@ -122181,7 +122381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedas-13aefb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedas-13aefb.jpg" }, { "if": { @@ -122196,7 +122396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belizeelectricitylimited-925406.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-925406.jpg" }, { "if": { @@ -122210,7 +122410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bentonpublicutilitydistrict-99a087.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bentonpublicutilitydistrict-99a087.jpg" }, { "if": { @@ -122224,7 +122424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerverkehrsbetriebe-e93127.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerverkehrsbetriebe-e93127.jpg" }, { "if": { @@ -122238,7 +122438,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkk-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bkk-ba6ae8.svg" }, { "if": { @@ -122252,7 +122452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkw-dc04c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/bkw-dc04c1.png" }, { "if": { @@ -122266,7 +122466,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blueridgeenergy-32600e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-32600e.jpg" }, { "if": { @@ -122281,7 +122481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluebonnetelectriccooperative-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluebonnetelectriccooperative-301545.jpg" }, { "if": { @@ -122295,7 +122495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnnetze-dda049.png" + "then": "https://data.mapcomplete.org/nsi//logos/bnnetze-dda049.png" }, { "if": { @@ -122310,7 +122510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonnevillepoweradministration-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-301545.jpg" }, { "if": { @@ -122324,7 +122524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bornholmsenergiandforsyning-647e81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-647e81.jpg" }, { "if": { @@ -122339,7 +122539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/braunschweigerverkehrsgmbh-1af6be.png" + "then": "https://data.mapcomplete.org/nsi//logos/braunschweigerverkehrsgmbh-1af6be.png" }, { "if": { @@ -122354,7 +122554,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bremerstrassenbahnag-b4e66c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bremerstrassenbahnag-b4e66c.svg" }, { "if": { @@ -122368,7 +122568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightridge-a96cd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightridge-a96cd6.jpg" }, { "if": { @@ -122382,7 +122582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bryantexasutilities-9e5147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-9e5147.jpg" }, { "if": { @@ -122396,7 +122596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caruna-a5d6ed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caruna-a5d6ed.svg" }, { "if": { @@ -122410,7 +122610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cdeee-e52dba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cdeee-e52dba.jpg" }, { "if": { @@ -122424,7 +122624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceee-acc4a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ceee-acc4a0.svg" }, { "if": { @@ -122438,7 +122638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celesc-acc4a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celesc-acc4a0.jpg" }, { "if": { @@ -122453,7 +122653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celleuelzennetz-1af6be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celleuelzennetz-1af6be.jpg" }, { "if": { @@ -122467,7 +122667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cemig-acc4a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cemig-acc4a0.jpg" }, { "if": { @@ -122481,7 +122681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-301545.jpg" }, { "if": { @@ -122495,7 +122695,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralmainepowercompany-140c84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-140c84.jpg" }, { "if": { @@ -122509,7 +122709,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centraltexaselectriccooperative-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centraltexaselectriccooperative-301545.jpg" }, { "if": { @@ -122523,7 +122723,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceps-fdda90.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceps-fdda90.jpg" }, { "if": { @@ -122538,7 +122738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceylonelectricityboard-2e3b42.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-2e3b42.png" }, { "if": { @@ -122552,7 +122752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cge-6cc51c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cge-6cc51c.jpg" }, { "if": { @@ -122567,7 +122767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagotransitauthority-09b582.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagotransitauthority-09b582.jpg" }, { "if": { @@ -122581,7 +122781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cipco-49fcf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cipco-49fcf5.jpg" }, { "if": { @@ -122599,7 +122799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcapetown-ae9b5d.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-ae9b5d.png" }, { "if": { @@ -122613,7 +122813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakeland-8432e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-8432e2.png" }, { "if": { @@ -122627,7 +122827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftallahassee-8432e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-8432e2.jpg" }, { "if": { @@ -122642,7 +122842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citywaterlightandpower-09b582.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citywaterlightandpower-09b582.jpg" }, { "if": { @@ -122656,7 +122856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkpublicutilities-99a087.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-99a087.jpg" }, { "if": { @@ -122670,7 +122870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clayelectriccooperative-8432e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-8432e2.jpg" }, { "if": { @@ -122684,7 +122884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleco-403aa2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cleco-403aa2.svg" }, { "if": { @@ -122698,7 +122898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coastmountainbuscompany-9c288b.png" + "then": "https://data.mapcomplete.org/nsi//logos/coastmountainbuscompany-9c288b.png" }, { "if": { @@ -122712,7 +122912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codelcochile-6cc51c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/codelcochile-6cc51c.jpg" }, { "if": { @@ -122726,7 +122926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coelba-acc4a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/coelba-acc4a0.png" }, { "if": { @@ -122740,7 +122940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colbun-6cc51c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colbun-6cc51c.jpg" }, { "if": { @@ -122754,7 +122954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colonialpipeline-301545.png" + "then": "https://data.mapcomplete.org/nsi//logos/colonialpipeline-301545.png" }, { "if": { @@ -122768,7 +122968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradospringsutilities-80514d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-80514d.jpg" }, { "if": { @@ -122783,7 +122983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionfederaldeelectricidad-e47698.png" + "then": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-e47698.png" }, { "if": { @@ -122797,7 +122997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthedison-e23b8e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-e23b8e.jpg" }, { "if": { @@ -122812,7 +123012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compagniavaldostanaacque-5e9b52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compagniavaldostanaacque-5e9b52.jpg" }, { "if": { @@ -122827,7 +123027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/companhiapaulistadetrensmetropolitanos-acc4a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/companhiapaulistadetrensmetropolitanos-acc4a0.jpg" }, { "if": { @@ -122841,7 +123041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consolidatededison-203caa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consolidatededison-203caa.jpg" }, { "if": { @@ -122855,7 +123055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumersenergy-22dfff.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumersenergy-22dfff.png" }, { "if": { @@ -122869,7 +123069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copel-acc4a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copel-acc4a0.jpg" }, { "if": { @@ -122883,7 +123083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornbeltenergycorporation-09b582.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornbeltenergycorporation-09b582.jpg" }, { "if": { @@ -122897,7 +123097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornbeltpowercooperative-49fcf5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-49fcf5.jpg" }, { "if": { @@ -122911,7 +123111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpoelec-ed6156.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpoelec-ed6156.png" }, { "if": { @@ -122925,7 +123125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosern-acc4a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cosern-acc4a0.png" }, { "if": { @@ -122939,7 +123139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpflenergia-acc4a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/cpflenergia-acc4a0.png" }, { "if": { @@ -122953,7 +123153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-9e5147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-9e5147.jpg" }, { "if": { @@ -122967,7 +123167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creos-6d4ec8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creos-6d4ec8.jpg" }, { "if": { @@ -122981,7 +123181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cullmanelectriccooperative-569b0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-569b0d.png" }, { "if": { @@ -122995,7 +123195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dairylandpowercooperative-32b37c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-32b37c.jpg" }, { "if": { @@ -123009,7 +123209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davaolightandpowercompany-851165.png" + "then": "https://data.mapcomplete.org/nsi//logos/davaolightandpowercompany-851165.png" }, { "if": { @@ -123023,7 +123223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbenergie-7ff171.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbenergie-7ff171.svg" }, { "if": { @@ -123037,7 +123237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbinfrago-7ff171.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbinfrago-7ff171.svg" }, { "if": { @@ -123051,7 +123251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decaturutilities-569b0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/decaturutilities-569b0d.png" }, { "if": { @@ -123065,7 +123265,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delmarvapower-2687bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delmarvapower-2687bf.jpg" }, { "if": { @@ -123079,7 +123279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/demco-403aa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/demco-403aa2.jpg" }, { "if": { @@ -123093,7 +123293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebahn-7ff171.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebahn-7ff171.png" }, { "if": { @@ -123107,7 +123307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominionenergy-c6b596.png" + "then": "https://data.mapcomplete.org/nsi//logos/dominionenergy-c6b596.png" }, { "if": { @@ -123121,7 +123321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dowchemicalcompany-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-301545.jpg" }, { "if": { @@ -123135,7 +123335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpp-fd39e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/dpp-fd39e1.png" }, { "if": { @@ -123149,7 +123349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drewag-8b3810.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drewag-8b3810.jpg" }, { "if": { @@ -123163,7 +123363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteenergy-22dfff.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteenergy-22dfff.png" }, { "if": { @@ -123177,7 +123377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-dc12e8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-dc12e8.jpg" }, { "if": { @@ -123191,7 +123391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergyprogress-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-301545.jpg" }, { "if": { @@ -123205,7 +123405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duquesnelight-6d7b97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duquesnelight-6d7b97.jpg" }, { "if": { @@ -123219,7 +123419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dvv-caeb06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dvv-caeb06.jpg" }, { "if": { @@ -123233,7 +123433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edistribuzionespa-5e9b52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edistribuzionespa-5e9b52.jpg" }, { "if": { @@ -123247,7 +123447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enetzsudhessen-7ff171.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enetzsudhessen-7ff171.svg" }, { "if": { @@ -123261,7 +123461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eredes-108ef7.png" + "then": "https://data.mapcomplete.org/nsi//logos/eredes-108ef7.png" }, { "if": { @@ -123275,7 +123475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewerkmittelbaden-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewerkmittelbaden-dda049.jpg" }, { "if": { @@ -123289,7 +123489,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edisnetzgmbh-b09616.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-b09616.jpg" }, { "if": { @@ -123303,7 +123503,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-fc3a87.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-fc3a87.png" }, { "if": { @@ -123317,7 +123517,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonnetz-7ff171.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonnetz-7ff171.svg" }, { "if": { @@ -123331,7 +123531,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastkentuckypowercooperative-44fcc4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-44fcc4.jpg" }, { "if": { @@ -123345,7 +123545,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastriverelectricpowercooperative-148f21.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-148f21.jpg" }, { "if": { @@ -123359,7 +123559,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ednetze-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ednetze-dda049.jpg" }, { "if": { @@ -123373,7 +123573,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edenor-95f729.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edenor-95f729.jpg" }, { "if": { @@ -123387,7 +123587,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edison-5e9b52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edison-5e9b52.jpg" }, { "if": { @@ -123401,7 +123601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpespiritosanto-4428e8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-4428e8.svg" }, { "if": { @@ -123417,7 +123617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovaveis-8a3460.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-8a3460.svg" }, { "if": { @@ -123431,7 +123631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpsaopaulo-acc4a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-acc4a0.jpg" }, { "if": { @@ -123445,7 +123645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/efe-6cc51c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/efe-6cc51c.svg" }, { "if": { @@ -123459,7 +123659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egd-fd39e1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/egd-fd39e1.svg" }, { "if": { @@ -123473,7 +123673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eirgrid-705ceb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eirgrid-705ceb.jpg" }, { "if": { @@ -123487,7 +123687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eks-9a284f.png" + "then": "https://data.mapcomplete.org/nsi//logos/eks-9a284f.png" }, { "if": { @@ -123501,7 +123701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekt-0bd48b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekt-0bd48b.jpg" }, { "if": { @@ -123515,7 +123715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekz-dc04c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/ekz-dc04c1.png" }, { "if": { @@ -123530,7 +123730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-fc3a87.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-fc3a87.png" }, { "if": { @@ -123544,7 +123744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitynorthwest-a368ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-a368ae.jpg" }, { "if": { @@ -123558,7 +123758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrilevi-6bba64.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrilevi-6bba64.png" }, { "if": { @@ -123572,7 +123772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrizitatswerkereutte-31e6bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkereutte-31e6bd.png" }, { "if": { @@ -123586,7 +123786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elenia-a5d6ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elenia-a5d6ed.jpg" }, { "if": { @@ -123600,7 +123800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-6bba64.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-6bba64.jpg" }, { "if": { @@ -123614,7 +123814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eletropaulo-acc4a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eletropaulo-acc4a0.svg" }, { "if": { @@ -123628,7 +123828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elia-531b98.png" + "then": "https://data.mapcomplete.org/nsi//logos/elia-531b98.png" }, { "if": { @@ -123642,7 +123842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ellevio-44b3db.png" + "then": "https://data.mapcomplete.org/nsi//logos/ellevio-44b3db.png" }, { "if": { @@ -123656,7 +123856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmu-998f8d.png" + "then": "https://data.mapcomplete.org/nsi//logos/elmu-998f8d.png" }, { "if": { @@ -123670,7 +123870,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elvia-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elvia-ba6ae8.svg" }, { "if": { @@ -123685,7 +123885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-404227.png" + "then": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-404227.png" }, { "if": { @@ -123700,7 +123900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresaspublicasdemedellin-8e2bec.svg" + "then": "https://data.mapcomplete.org/nsi//logos/empresaspublicasdemedellin-8e2bec.svg" }, { "if": { @@ -123714,7 +123914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-7ff171.png" + "then": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-7ff171.png" }, { "if": { @@ -123728,7 +123928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endeavourenergy-1266b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-1266b7.jpg" }, { "if": { @@ -123742,7 +123942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-294d99.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-294d99.png" }, { "if": { @@ -123756,7 +123956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enea-83e94a.png" + "then": "https://data.mapcomplete.org/nsi//logos/enea-83e94a.png" }, { "if": { @@ -123770,7 +123970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneco-d719f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneco-d719f8.png" }, { "if": { @@ -123784,7 +123984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enedis-55e14a.png" + "then": "https://data.mapcomplete.org/nsi//logos/enedis-55e14a.png" }, { "if": { @@ -123798,7 +123998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-fc3a87.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-fc3a87.png" }, { "if": { @@ -123812,7 +124012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribucionchile-6cc51c.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribucionchile-6cc51c.png" }, { "if": { @@ -123826,7 +124026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaoceara-acc4a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-acc4a0.png" }, { "if": { @@ -123840,7 +124040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-acc4a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-acc4a0.svg" }, { "if": { @@ -123854,7 +124054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-fc3a87.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-fc3a87.svg" }, { "if": { @@ -123868,7 +124068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelproduzione-5e9b52.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelproduzione-5e9b52.svg" }, { "if": { @@ -123882,7 +124082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enemalta-79e49d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enemalta-79e49d.jpg" }, { "if": { @@ -123896,7 +124096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enercon-7ff171.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enercon-7ff171.svg" }, { "if": { @@ -123910,7 +124110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-83e94a.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-83e94a.png" }, { "if": { @@ -123924,7 +124124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energex-46c365.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energex-46c365.jpg" }, { "if": { @@ -123939,7 +124139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiasdeportugal-108ef7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-108ef7.svg" }, { "if": { @@ -123953,7 +124153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-3e6be9.png" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-3e6be9.png" }, { "if": { @@ -123967,7 +124167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedumali-8f416b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedumali-8f416b.jpg" }, { "if": { @@ -123981,7 +124181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiegraz-1506ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiegraz-1506ff.png" }, { "if": { @@ -123995,7 +124195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieklagenfurtgmbh-a84f0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieklagenfurtgmbh-a84f0c.jpg" }, { "if": { @@ -124009,7 +124209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesteiermark-086f41.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-086f41.png" }, { "if": { @@ -124023,7 +124223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiethunag-00339e.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiethunag-00339e.png" }, { "if": { @@ -124038,7 +124238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiewaldeckfrankenberg-43eb08.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiewaldeckfrankenberg-43eb08.png" }, { "if": { @@ -124053,7 +124253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieversorgungmittelrhein-4afb0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-4afb0a.jpg" }, { "if": { @@ -124067,7 +124267,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energinet-3aeb55.png" + "then": "https://data.mapcomplete.org/nsi//logos/energinet-3aeb55.png" }, { "if": { @@ -124081,7 +124281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enexis-01f022.png" + "then": "https://data.mapcomplete.org/nsi//logos/enexis-01f022.png" }, { "if": { @@ -124095,7 +124295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-fc3a87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-fc3a87.jpg" }, { "if": { @@ -124109,7 +124309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enipower-5e9b52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enipower-5e9b52.jpg" }, { "if": { @@ -124123,7 +124323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmax-ebf474.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmax-ebf474.png" }, { "if": { @@ -124137,7 +124337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enrwenergieversorgungrottweil-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enrwenergieversorgungrottweil-dda049.jpg" }, { "if": { @@ -124151,7 +124351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-499fd2.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-499fd2.png" }, { "if": { @@ -124165,7 +124365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entega-43eb08.png" + "then": "https://data.mapcomplete.org/nsi//logos/entega-43eb08.png" }, { "if": { @@ -124179,7 +124379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergy-442494.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergy-442494.jpg" }, { "if": { @@ -124193,7 +124393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergyarkansas-5f1fb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-5f1fb8.jpg" }, { "if": { @@ -124207,7 +124407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergylouisiana-3e5609.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-3e5609.jpg" }, { "if": { @@ -124221,7 +124421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enviam-e6380a.png" + "then": "https://data.mapcomplete.org/nsi//logos/enviam-e6380a.png" }, { "if": { @@ -124235,7 +124435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enwor-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/enwor-26c4cf.png" }, { "if": { @@ -124249,7 +124449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epb-bcfc45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epb-bcfc45.jpg" }, { "if": { @@ -124263,7 +124463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epcor-b7915e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epcor-b7915e.jpg" }, { "if": { @@ -124277,7 +124477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epec-00288a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epec-00288a.jpg" }, { "if": { @@ -124291,7 +124491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eps-0be006.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eps-0be006.svg" }, { "if": { @@ -124305,7 +124505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equatorialenergiapiaui-5d7987.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-5d7987.jpg" }, { "if": { @@ -124319,7 +124519,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ergonenergy-46c365.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ergonenergy-46c365.jpg" }, { "if": { @@ -124334,7 +124534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erlangerstadtwerke-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erlangerstadtwerke-218486.jpg" }, { "if": { @@ -124348,7 +124548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbnetworks-705ceb.png" + "then": "https://data.mapcomplete.org/nsi//logos/esbnetworks-705ceb.png" }, { "if": { @@ -124362,7 +124562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eskom-ae9b5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eskom-ae9b5d.jpg" }, { "if": { @@ -124376,7 +124576,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentialenergy-b07c08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentialenergy-b07c08.jpg" }, { "if": { @@ -124391,7 +124591,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethiopianelectricpower-08b603.png" + "then": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-08b603.png" }, { "if": { @@ -124406,7 +124606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eugenewaterandelectricboard-404227.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-404227.jpg" }, { "if": { @@ -124421,7 +124621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evaenergieversorgungapolda-402326.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evaenergieversorgungapolda-402326.jpg" }, { "if": { @@ -124435,7 +124635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-44a6c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-44a6c7.jpg" }, { "if": { @@ -124449,7 +124649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eversource-374743.png" + "then": "https://data.mapcomplete.org/nsi//logos/eversource-374743.png" }, { "if": { @@ -124463,7 +124663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-3e6be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-3e6be9.jpg" }, { "if": { @@ -124478,7 +124678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-64dced.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-64dced.svg" }, { "if": { @@ -124492,7 +124692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evo-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evo-26c4cf.jpg" }, { "if": { @@ -124506,7 +124706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evoenergy-975e91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evoenergy-975e91.jpg" }, { "if": { @@ -124520,7 +124720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evs-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/evs-26c4cf.png" }, { "if": { @@ -124534,7 +124734,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewaenergieuri-1e8ee1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ewaenergieuri-1e8ee1.svg" }, { "if": { @@ -124548,7 +124748,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewe-7ff171.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewe-7ff171.jpg" }, { "if": { @@ -124562,7 +124762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewmag-7ff171.png" + "then": "https://data.mapcomplete.org/nsi//logos/ewmag-7ff171.png" }, { "if": { @@ -124576,7 +124776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewr-a0065c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewr-a0065c.jpg" }, { "if": { @@ -124590,7 +124790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eww-faf755.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eww-faf755.jpg" }, { "if": { @@ -124604,7 +124804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewz-dc04c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewz-dc04c1.jpg" }, { "if": { @@ -124618,7 +124818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ezv-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ezv-218486.jpg" }, { "if": { @@ -124632,7 +124832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fagne-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fagne-ba6ae8.svg" }, { "if": { @@ -124647,7 +124847,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fayettevillepublicworkscommission-32600e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-32600e.jpg" }, { "if": { @@ -124661,7 +124861,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fingrid-a5d6ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fingrid-a5d6ed.jpg" }, { "if": { @@ -124675,7 +124875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstenergy-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstenergy-301545.jpg" }, { "if": { @@ -124689,7 +124889,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fjellnett-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fjellnett-ba6ae8.svg" }, { "if": { @@ -124703,7 +124903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridapowerandlight-8432e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-8432e2.png" }, { "if": { @@ -124717,7 +124917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flughafenzurichag-42bdec.svg" + "then": "https://data.mapcomplete.org/nsi//logos/flughafenzurichag-42bdec.svg" }, { "if": { @@ -124731,7 +124931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fluvius-531b98.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fluvius-531b98.jpg" }, { "if": { @@ -124745,7 +124945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortisbc-9c288b.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortisbc-9c288b.png" }, { "if": { @@ -124759,7 +124959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortum-8c6066.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortum-8c6066.jpg" }, { "if": { @@ -124773,7 +124973,7 @@ } ] }, - "then": "./assets/data/nsi/logos/furnascentraiseletricas-acc4a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-acc4a0.jpg" }, { "if": { @@ -124788,7 +124988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gainesvilleregionalutilities-8432e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-8432e2.png" }, { "if": { @@ -124802,7 +125002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gavleenergi-44b3db.png" + "then": "https://data.mapcomplete.org/nsi//logos/gavleenergi-44b3db.png" }, { "if": { @@ -124816,7 +125016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geg-90b6b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geg-90b6b6.jpg" }, { "if": { @@ -124831,7 +125031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gewwilhelmshaven-1af6be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gewwilhelmshaven-1af6be.jpg" }, { "if": { @@ -124845,7 +125045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gladeselectriccoop-8432e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-8432e2.jpg" }, { "if": { @@ -124859,7 +125059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glitrenett-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/glitrenett-ba6ae8.svg" }, { "if": { @@ -124873,7 +125073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenspreadelectriccooperative-9e5147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-9e5147.jpg" }, { "if": { @@ -124888,7 +125088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandriverdamauthority-3e7f38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-3e7f38.jpg" }, { "if": { @@ -124902,7 +125102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatriverenergy-301545.png" + "then": "https://data.mapcomplete.org/nsi//logos/greatriverenergy-301545.png" }, { "if": { @@ -124916,7 +125116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenevilleenergyauthority-a96cd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-a96cd6.jpg" }, { "if": { @@ -124930,7 +125130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenvilleutilitiescommission-32600e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-32600e.jpg" }, { "if": { @@ -124944,7 +125144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groupee-dc04c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupee-dc04c1.jpg" }, { "if": { @@ -124959,7 +125159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guadalupevalleyelectriccooperative-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guadalupevalleyelectriccooperative-301545.jpg" }, { "if": { @@ -124973,7 +125173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansewerk-7ff171.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hansewerk-7ff171.jpg" }, { "if": { @@ -124987,7 +125187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harzenergie-7ff171.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harzenergie-7ff171.jpg" }, { "if": { @@ -125001,7 +125201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haugalandkraftnett-ba6ae8.png" + "then": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-ba6ae8.png" }, { "if": { @@ -125015,7 +125215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiianelectriccompany-5d1a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-5d1a50.jpg" }, { "if": { @@ -125029,7 +125229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holmeswayneelectriccooperative-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holmeswayneelectriccooperative-301545.jpg" }, { "if": { @@ -125043,7 +125243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoosierenergy-942a6f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoosierenergy-942a6f.jpg" }, { "if": { @@ -125057,7 +125257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hs1ltd-3f58d2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hs1ltd-3f58d2.svg" }, { "if": { @@ -125071,7 +125271,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntsvilleutilities-569b0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-569b0d.jpg" }, { "if": { @@ -125085,7 +125285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroottawa-214de1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroottawa-214de1.svg" }, { "if": { @@ -125099,7 +125299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydrotasmania-787f6a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hydrotasmania-787f6a.jpg" }, { "if": { @@ -125113,7 +125313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-72b7fb.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-72b7fb.png" }, { "if": { @@ -125127,7 +125327,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-fc3a87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-fc3a87.jpg" }, { "if": { @@ -125141,7 +125341,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahopower-7bf1a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahopower-7bf1a6.jpg" }, { "if": { @@ -125155,7 +125355,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-3e6be9.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-3e6be9.png" }, { "if": { @@ -125170,7 +125370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialirrigationdistrict-9f24bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-9f24bd.jpg" }, { "if": { @@ -125184,7 +125384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/independencepowerandlight-9508de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-9508de.jpg" }, { "if": { @@ -125199,7 +125399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianamichiganpower-e29678.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-e29678.png" }, { "if": { @@ -125214,7 +125414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianapolispowerandlight-e785bc.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-e785bc.png" }, { "if": { @@ -125228,7 +125428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infrafurth-218486.png" + "then": "https://data.mapcomplete.org/nsi//logos/infrafurth-218486.png" }, { "if": { @@ -125242,7 +125442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infrabel-531b98.png" + "then": "https://data.mapcomplete.org/nsi//logos/infrabel-531b98.png" }, { "if": { @@ -125256,7 +125456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infraestruturasdeportugal-108ef7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/infraestruturasdeportugal-108ef7.jpg" }, { "if": { @@ -125270,7 +125470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogy-57e02d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/innogy-57e02d.svg" }, { "if": { @@ -125285,7 +125485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-844d97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-844d97.jpg" }, { "if": { @@ -125299,7 +125499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invenergy-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invenergy-301545.jpg" }, { "if": { @@ -125313,7 +125513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipto-cf2a0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipto-cf2a0d.png" }, { "if": { @@ -125327,7 +125527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irenenergia-5e9b52.png" + "then": "https://data.mapcomplete.org/nsi//logos/irenenergia-5e9b52.png" }, { "if": { @@ -125343,7 +125543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishrail-705ceb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishrail-705ceb.jpg" }, { "if": { @@ -125357,7 +125557,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itc-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itc-301545.jpg" }, { "if": { @@ -125371,7 +125571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonenergyauthority-a96cd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-a96cd6.jpg" }, { "if": { @@ -125386,7 +125586,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-ec30f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-ec30f3.jpg" }, { "if": { @@ -125401,7 +125601,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseycentralpowerandlight-e36655.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-e36655.jpg" }, { "if": { @@ -125415,7 +125615,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseyelectricitycompany-fa4114.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseyelectricitycompany-fa4114.jpg" }, { "if": { @@ -125429,7 +125629,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joewheeleremc-569b0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-569b0d.jpg" }, { "if": { @@ -125443,7 +125643,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonesborocitywaterandlight-5f1fb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-5f1fb8.jpg" }, { "if": { @@ -125462,7 +125662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastjapanrailwaycompany-85251b.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-85251b.png" }, { "if": { @@ -125477,7 +125677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansascityboardofpublicutilities-2b5e72.png" + "then": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-2b5e72.png" }, { "if": { @@ -125492,7 +125692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kauaiislandutilitycooperative-5d1a50.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kauaiislandutilitycooperative-5d1a50.jpg" }, { "if": { @@ -125506,7 +125706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckypower-6f0d53.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckypower-6f0d53.png" }, { "if": { @@ -125521,7 +125721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralastateelectricityboard-487ae0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-487ae0.jpg" }, { "if": { @@ -125535,7 +125735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kissimmeeutilityauthority-8432e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-8432e2.png" }, { "if": { @@ -125549,7 +125749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiwirail-8d74a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiwirail-8d74a7.jpg" }, { "if": { @@ -125564,7 +125764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knoxvilleutilitiesboard-a96cd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-a96cd6.jpg" }, { "if": { @@ -125578,7 +125778,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kommenergie-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kommenergie-218486.jpg" }, { "if": { @@ -125592,7 +125792,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kreiswerkemainkinzig-43eb08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kreiswerkemainkinzig-43eb08.jpg" }, { "if": { @@ -125606,7 +125806,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kystnett-ba6ae8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kystnett-ba6ae8.jpg" }, { "if": { @@ -125621,7 +125821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-9f24bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-9f24bd.png" }, { "if": { @@ -125636,7 +125836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayetteutilitiessystem-403aa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-403aa2.jpg" }, { "if": { @@ -125651,7 +125851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leecountyelectriccooperative-8432e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-8432e2.jpg" }, { "if": { @@ -125666,7 +125866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechwerke-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechwerke-218486.jpg" }, { "if": { @@ -125680,7 +125880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liander-01f022.png" + "then": "https://data.mapcomplete.org/nsi//logos/liander-01f022.png" }, { "if": { @@ -125694,7 +125894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnelectricsystem-9705f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-9705f8.png" }, { "if": { @@ -125708,7 +125908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linja-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/linja-ba6ae8.svg" }, { "if": { @@ -125722,7 +125922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-91958b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-91958b.jpg" }, { "if": { @@ -125736,7 +125936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonunderground-a368ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonunderground-a368ae.jpg" }, { "if": { @@ -125750,7 +125950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lorainmedinaruralelectriccooperative-7dabf9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lorainmedinaruralelectriccooperative-7dabf9.jpg" }, { "if": { @@ -125765,7 +125965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-9e5147.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-9e5147.png" }, { "if": { @@ -125779,7 +125979,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswnetz-1af6be.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswnetz-1af6be.png" }, { "if": { @@ -125793,7 +125993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luastransdevdublinlightraillimited-705ceb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luastransdevdublinlightraillimited-705ceb.jpg" }, { "if": { @@ -125808,7 +126008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubbockpowerandlight-9e5147.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-9e5147.png" }, { "if": { @@ -125822,7 +126022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lyse-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lyse-ba6ae8.svg" }, { "if": { @@ -125837,7 +126037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magdeburgerverkehrsbetriebe-caeb06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magdeburgerverkehrsbetriebe-caeb06.jpg" }, { "if": { @@ -125851,7 +126051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manitobahydro-20fa2d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manitobahydro-20fa2d.svg" }, { "if": { @@ -125865,7 +126065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maquoketavalleyrec-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maquoketavalleyrec-301545.jpg" }, { "if": { @@ -125879,7 +126079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonpipeline-301545.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonpipeline-301545.svg" }, { "if": { @@ -125893,7 +126093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marke-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marke-26c4cf.jpg" }, { "if": { @@ -125907,7 +126107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshallmunicipalutilities-2f1b0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-2f1b0a.jpg" }, { "if": { @@ -125921,7 +126121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-569b0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-569b0d.jpg" }, { "if": { @@ -125936,7 +126136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphislightgasandwater-a96cd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-a96cd6.jpg" }, { "if": { @@ -125950,7 +126150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meralco-851165.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meralco-851165.jpg" }, { "if": { @@ -125964,7 +126164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meted-6d7b97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meted-6d7b97.jpg" }, { "if": { @@ -125978,7 +126178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metra-09b582.png" + "then": "https://data.mapcomplete.org/nsi//logos/metra-09b582.png" }, { "if": { @@ -125992,7 +126192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midamericanenergy-2b8f9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-2b8f9e.jpg" }, { "if": { @@ -126006,7 +126206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midwestenergy-2b5e72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midwestenergy-2b5e72.jpg" }, { "if": { @@ -126020,7 +126220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-2f1b0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-2f1b0a.jpg" }, { "if": { @@ -126034,7 +126234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnkotapowercooperative-d70eed.png" + "then": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-d70eed.png" }, { "if": { @@ -126048,7 +126248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippipower-142bdd.png" + "then": "https://data.mapcomplete.org/nsi//logos/mississippipower-142bdd.png" }, { "if": { @@ -126062,7 +126262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monpower-0ffdee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monpower-0ffdee.jpg" }, { "if": { @@ -126076,7 +126276,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nampower-49152b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nampower-49152b.svg" }, { "if": { @@ -126091,7 +126291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nashvilleelectricservice-a96cd6.png" + "then": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-a96cd6.png" }, { "if": { @@ -126105,7 +126305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgrid-c3892d.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgrid-c3892d.png" }, { "if": { @@ -126120,7 +126320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-851165.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-851165.jpg" }, { "if": { @@ -126134,7 +126334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitydistribution-a368ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-a368ae.jpg" }, { "if": { @@ -126148,7 +126348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitytransmission-a368ae.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-a368ae.svg" }, { "if": { @@ -126164,7 +126364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbpower-a35217.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nbpower-a35217.svg" }, { "if": { @@ -126178,7 +126378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoenergia-acc4a0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoenergia-acc4a0.svg" }, { "if": { @@ -126192,7 +126392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkrail-3f58d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkrail-3f58d2.jpg" }, { "if": { @@ -126206,7 +126406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkwaitaki-8d74a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkwaitaki-8d74a7.jpg" }, { "if": { @@ -126220,7 +126420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzno-3e6be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netzno-3e6be9.jpg" }, { "if": { @@ -126234,7 +126434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzebwgmbh-dda049.svg" + "then": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-dda049.svg" }, { "if": { @@ -126248,7 +126448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/new-26c4cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/new-26c4cf.svg" }, { "if": { @@ -126262,7 +126462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newbraunfelsutilities-9e5147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newbraunfelsutilities-9e5147.jpg" }, { "if": { @@ -126276,7 +126476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkcitytransitauthority-206eed.svg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkcitytransitauthority-206eed.svg" }, { "if": { @@ -126290,7 +126490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-dca6c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-dca6c2.jpg" }, { "if": { @@ -126304,7 +126504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandpower-dca6c2.png" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-dca6c2.png" }, { "if": { @@ -126318,7 +126518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexteraenergy-1b6d9e.png" + "then": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-1b6d9e.png" }, { "if": { @@ -126332,7 +126532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nienetworks-285315.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nienetworks-285315.jpg" }, { "if": { @@ -126347,7 +126547,7 @@ } ] }, - "then": "./assets/data/nsi/logos/njtransit-e36655.png" + "then": "https://data.mapcomplete.org/nsi//logos/njtransit-e36655.png" }, { "if": { @@ -126361,7 +126561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordkraftnett-ba6ae8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordkraftnett-ba6ae8.jpg" }, { "if": { @@ -126375,7 +126575,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolkandnorwichuniversityhospitaltrust-3f58d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolkandnorwichuniversityhospitaltrust-3f58d2.jpg" }, { "if": { @@ -126389,7 +126589,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernpowergrid-a368ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-a368ae.jpg" }, { "if": { @@ -126403,7 +126603,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northpower-8d74a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/northpower-8d74a7.png" }, { "if": { @@ -126417,7 +126617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestenergy-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwestenergy-301545.jpg" }, { "if": { @@ -126431,7 +126631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-253645.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-253645.jpg" }, { "if": { @@ -126445,7 +126645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-9b0148.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-9b0148.jpg" }, { "if": { @@ -126459,7 +126659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novec-b14c84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novec-b14c84.jpg" }, { "if": { @@ -126473,7 +126673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntenett-ba6ae8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ntenett-ba6ae8.png" }, { "if": { @@ -126487,7 +126687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nukissiorfiit-533b11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-533b11.jpg" }, { "if": { @@ -126501,7 +126701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nvenergy-122fad.png" + "then": "https://data.mapcomplete.org/nsi//logos/nvenergy-122fad.png" }, { "if": { @@ -126515,7 +126715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nwelectricpowercooperative-9508de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-9508de.jpg" }, { "if": { @@ -126529,7 +126729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nyseg-203caa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nyseg-203caa.jpg" }, { "if": { @@ -126544,7 +126744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomagasandelectric-3e7f38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-3e7f38.jpg" }, { "if": { @@ -126558,7 +126758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omahapublicpowerdistrict-9705f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-9705f8.png" }, { "if": { @@ -126572,7 +126772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oncor-9e5147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oncor-9e5147.jpg" }, { "if": { @@ -126586,7 +126786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ores-531b98.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ores-531b98.jpg" }, { "if": { @@ -126600,7 +126800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orionnewzealand-8d74a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-8d74a7.jpg" }, { "if": { @@ -126615,7 +126815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlandoutilitiescommission-8432e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-8432e2.jpg" }, { "if": { @@ -126629,7 +126829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterholzerstadtwerke-1af6be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterholzerstadtwerke-1af6be.jpg" }, { "if": { @@ -126643,7 +126843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottertailpowercompany-18f2a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-18f2a7.jpg" }, { "if": { @@ -126657,7 +126857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oulunenergiasiirtojajakelu-a5d6ed.png" + "then": "https://data.mapcomplete.org/nsi//logos/oulunenergiasiirtojajakelu-a5d6ed.png" }, { "if": { @@ -126672,7 +126872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-9f24bd.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-9f24bd.png" }, { "if": { @@ -126686,7 +126886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificpower-890f83.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificpower-890f83.svg" }, { "if": { @@ -126700,7 +126900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificorp-301545.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificorp-301545.svg" }, { "if": { @@ -126714,7 +126914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pea-8cb22b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pea-8cb22b.jpg" }, { "if": { @@ -126728,7 +126928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peco-c011fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peco-c011fe.jpg" }, { "if": { @@ -126742,7 +126942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pedernaleselectriccooperative-301545.png" + "then": "https://data.mapcomplete.org/nsi//logos/pedernaleselectriccooperative-301545.png" }, { "if": { @@ -126756,7 +126956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penelec-6d7b97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penelec-6d7b97.jpg" }, { "if": { @@ -126770,7 +126970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pennpower-6d7b97.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pennpower-6d7b97.jpg" }, { "if": { @@ -126785,7 +126985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perusahaanlistriknegara-7eaee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-7eaee2.jpg" }, { "if": { @@ -126799,7 +126999,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroamazonas-b68855.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroamazonas-b68855.jpg" }, { "if": { @@ -126813,7 +127013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfalzwerkeag-4afb0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-4afb0a.png" }, { "if": { @@ -126827,7 +127027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgedystrybucja-83e94a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-83e94a.jpg" }, { "if": { @@ -126841,7 +127041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgeenergetykakolejowa-83e94a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-83e94a.jpg" }, { "if": { @@ -126855,7 +127055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pjm-e36655.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pjm-e36655.jpg" }, { "if": { @@ -126870,7 +127070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-553e38.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-553e38.jpg" }, { "if": { @@ -126885,7 +127085,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-3be91d.png" + "then": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-3be91d.png" }, { "if": { @@ -126900,7 +127100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandgeneralelectric-404227.png" + "then": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-404227.png" }, { "if": { @@ -126915,7 +127115,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacelectricpowercompany-c153a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-c153a8.jpg" }, { "if": { @@ -126929,7 +127129,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerandwater-b382a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerandwater-b382a8.jpg" }, { "if": { @@ -126943,7 +127143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powergridcorporationofindialtd-487ae0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-487ae0.jpg" }, { "if": { @@ -126957,7 +127157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerco-8d74a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerco-8d74a7.jpg" }, { "if": { @@ -126971,7 +127171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powercor-e597e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/powercor-e597e3.png" }, { "if": { @@ -126985,7 +127185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerlink-46c365.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerlink-46c365.jpg" }, { "if": { @@ -126999,7 +127199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ppl-61b2a4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ppl-61b2a4.jpg" }, { "if": { @@ -127013,7 +127213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pre-fd39e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pre-fd39e1.jpg" }, { "if": { @@ -127027,7 +127227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premierenergy-ca331e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/premierenergy-ca331e.jpg" }, { "if": { @@ -127041,7 +127241,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prorail-01f022.png" + "then": "https://data.mapcomplete.org/nsi//logos/prorail-01f022.png" }, { "if": { @@ -127056,7 +127256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-b5d3f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-b5d3f3.png" }, { "if": { @@ -127070,7 +127270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicserviceenterprisegroup-9ce5fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-9ce5fc.jpg" }, { "if": { @@ -127085,7 +127285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-a8f137.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-a8f137.jpg" }, { "if": { @@ -127100,7 +127300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pugetsoundenergy-99a087.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-99a087.jpg" }, { "if": { @@ -127114,7 +127314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radiuselnet-6970d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radiuselnet-6970d6.jpg" }, { "if": { @@ -127128,7 +127328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rappahannockelectriccooperative-b14c84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-b14c84.jpg" }, { "if": { @@ -127142,7 +127342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ratp-90b6b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ratp-90b6b6.jpg" }, { "if": { @@ -127157,7 +127357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redelectricadeespana-294d99.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-294d99.jpg" }, { "if": { @@ -127171,7 +127371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionalwerkbodensee-7ff171.png" + "then": "https://data.mapcomplete.org/nsi//logos/regionalwerkbodensee-7ff171.png" }, { "if": { @@ -127185,7 +127385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ren-108ef7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ren-108ef7.svg" }, { "if": { @@ -127199,7 +127399,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-5e9b52.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-5e9b52.svg" }, { "if": { @@ -127213,7 +127413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinenergie-7ff171.png" + "then": "https://data.mapcomplete.org/nsi//logos/rheinenergie-7ff171.png" }, { "if": { @@ -127227,7 +127427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodeislandenergy-ba677e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-ba677e.jpg" }, { "if": { @@ -127241,7 +127441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riograndeenergia-acc4a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-acc4a0.png" }, { "if": { @@ -127255,7 +127455,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-5eb8ce.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-5eb8ce.svg" }, { "if": { @@ -127269,7 +127469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochestergasandelectric-203caa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-203caa.jpg" }, { "if": { @@ -127283,7 +127483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockymountainpower-d898d7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-d898d7.svg" }, { "if": { @@ -127297,7 +127497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosevilleelectric-9f24bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-9f24bd.jpg" }, { "if": { @@ -127311,7 +127511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rte-90b6b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/rte-90b6b6.png" }, { "if": { @@ -127325,7 +127525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-57e02d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-57e02d.jpg" }, { "if": { @@ -127339,7 +127539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbahnberlingmbh-7ff171.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sbahnberlingmbh-7ff171.svg" }, { "if": { @@ -127353,7 +127553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-8b3810.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-8b3810.png" }, { "if": { @@ -127368,7 +127568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-9f24bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-9f24bd.jpg" }, { "if": { @@ -127382,7 +127582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sadalestikls-b57901.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sadalestikls-b57901.jpg" }, { "if": { @@ -127396,7 +127596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sak-dc04c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sak-dc04c1.jpg" }, { "if": { @@ -127411,7 +127611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltriverproject-260b75.png" + "then": "https://data.mapcomplete.org/nsi//logos/saltriverproject-260b75.png" }, { "if": { @@ -127425,7 +127625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-d5d274.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-d5d274.jpg" }, { "if": { @@ -127440,7 +127640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegogasandelectric-bc961e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-bc961e.jpg" }, { "if": { @@ -127454,7 +127654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarawakenergy-fb8dd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sarawakenergy-fb8dd8.jpg" }, { "if": { @@ -127468,7 +127668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saskpower-ba0a5f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saskpower-ba0a5f.svg" }, { "if": { @@ -127482,7 +127682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-dc04c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-dc04c1.png" }, { "if": { @@ -127496,7 +127696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-5fcfdc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-5fcfdc.svg" }, { "if": { @@ -127511,7 +127711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-3f58d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-3f58d2.jpg" }, { "if": { @@ -127525,7 +127725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senelec-4b249c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senelec-4b249c.jpg" }, { "if": { @@ -127539,7 +127739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sibelga-531b98.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sibelga-531b98.jpg" }, { "if": { @@ -127553,7 +127753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sicaedelasommeetducambraisis-90b6b6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sicaedelasommeetducambraisis-90b6b6.jpg" }, { "if": { @@ -127567,7 +127767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slemco-403aa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slemco-403aa2.jpg" }, { "if": { @@ -127582,7 +127782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-052fd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-052fd4.jpg" }, { "if": { @@ -127596,7 +127796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-90b6b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-90b6b6.png" }, { "if": { @@ -127610,7 +127810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-90b6b6.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-90b6b6.png" }, { "if": { @@ -127626,7 +127826,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-cdb120.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-cdb120.jpg" }, { "if": { @@ -127641,7 +127841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sognogfjordaneenergi-ba6ae8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-ba6ae8.jpg" }, { "if": { @@ -127655,7 +127855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-34b5c5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-34b5c5.jpg" }, { "if": { @@ -127669,7 +127869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southtexaselectriccooperative-9e5147.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southtexaselectriccooperative-9e5147.jpg" }, { "if": { @@ -127684,7 +127884,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniaedison-9f24bd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-9f24bd.jpg" }, { "if": { @@ -127698,7 +127898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-5f1fb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-5f1fb8.jpg" }, { "if": { @@ -127712,7 +127912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spenergynetworks-3f58d2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-3f58d2.jpg" }, { "if": { @@ -127727,7 +127927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldutilityboard-404227.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-404227.jpg" }, { "if": { @@ -127741,7 +127941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssentransmission-6ff402.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ssentransmission-6ff402.jpg" }, { "if": { @@ -127756,7 +127956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtischewerkeangermunde-f7a8ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtischewerkeangermunde-f7a8ec.jpg" }, { "if": { @@ -127770,7 +127970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtischewerkekassel-43eb08.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtischewerkekassel-43eb08.png" }, { "if": { @@ -127784,7 +127984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaalen-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaalen-dda049.jpg" }, { "if": { @@ -127798,7 +127998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeachim-1af6be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeachim-1af6be.jpg" }, { "if": { @@ -127812,7 +128012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeansbach-218486.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeansbach-218486.svg" }, { "if": { @@ -127826,7 +128026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaschaffenburg-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaschaffenburg-218486.jpg" }, { "if": { @@ -127840,7 +128040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaugsburg-218486.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-218486.png" }, { "if": { @@ -127854,7 +128054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebadreichenhall-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadreichenhall-218486.jpg" }, { "if": { @@ -127868,7 +128068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebadenbaden-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadenbaden-dda049.jpg" }, { "if": { @@ -127882,7 +128082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebielefeld-26c4cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebielefeld-26c4cf.svg" }, { "if": { @@ -127896,7 +128096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebochum-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebochum-26c4cf.png" }, { "if": { @@ -127911,7 +128111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebonn-26c4cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebonn-26c4cf.svg" }, { "if": { @@ -127925,7 +128125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebruhl-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebruhl-26c4cf.jpg" }, { "if": { @@ -127939,7 +128139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeenergiejenapossneck-402326.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeenergiejenapossneck-402326.png" }, { "if": { @@ -127953,7 +128153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkefrankenthal-4afb0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkefrankenthal-4afb0a.jpg" }, { "if": { @@ -127967,7 +128167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkefurstenfeldbruck-218486.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkefurstenfeldbruck-218486.png" }, { "if": { @@ -127981,7 +128181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegiessen-43eb08.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegiessen-43eb08.png" }, { "if": { @@ -127995,7 +128195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegorlitzag-8b3810.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegorlitzag-8b3810.png" }, { "if": { @@ -128009,7 +128209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegreifswald-58f462.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegreifswald-58f462.png" }, { "if": { @@ -128023,7 +128223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkehaltern-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkehaltern-26c4cf.jpg" }, { "if": { @@ -128037,7 +128237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkehamm-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkehamm-26c4cf.jpg" }, { "if": { @@ -128051,7 +128251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeherborn-43eb08.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherborn-43eb08.jpg" }, { "if": { @@ -128066,7 +128266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeherne-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherne-26c4cf.jpg" }, { "if": { @@ -128080,7 +128280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeilmenau-402326.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeilmenau-402326.jpg" }, { "if": { @@ -128094,7 +128294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeingolstadt-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeingolstadt-218486.jpg" }, { "if": { @@ -128109,7 +128309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekiel-5fcfdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekiel-5fcfdc.jpg" }, { "if": { @@ -128123,7 +128323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekonstanz-dda049.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekonstanz-dda049.png" }, { "if": { @@ -128137,7 +128337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekufstein-8d025f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekufstein-8d025f.jpg" }, { "if": { @@ -128151,7 +128351,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeleipzig-8b3810.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-8b3810.jpg" }, { "if": { @@ -128165,7 +128365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelemgo-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelemgo-26c4cf.png" }, { "if": { @@ -128179,7 +128379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelubeck-5fcfdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-5fcfdc.jpg" }, { "if": { @@ -128193,7 +128393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemarburg-43eb08.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemarburg-43eb08.svg" }, { "if": { @@ -128208,7 +128408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-218486.jpg" }, { "if": { @@ -128222,7 +128422,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunster-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunster-26c4cf.jpg" }, { "if": { @@ -128237,7 +128437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneumarkt-218486.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneumarkt-218486.jpg" }, { "if": { @@ -128252,7 +128452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneumunster-5fcfdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneumunster-5fcfdc.jpg" }, { "if": { @@ -128267,7 +128467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneuss-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuss-26c4cf.jpg" }, { "if": { @@ -128282,7 +128482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneuwied-4afb0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuwied-4afb0a.png" }, { "if": { @@ -128296,7 +128496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkenorderstedt-5fcfdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkenorderstedt-5fcfdc.jpg" }, { "if": { @@ -128311,7 +128511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkenurtingen-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkenurtingen-dda049.jpg" }, { "if": { @@ -128326,7 +128526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkepforzheim-dda049.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkepforzheim-dda049.png" }, { "if": { @@ -128341,7 +128541,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkepirmasens-4afb0a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkepirmasens-4afb0a.svg" }, { "if": { @@ -128356,7 +128556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkepotsdam-f7a8ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkepotsdam-f7a8ec.jpg" }, { "if": { @@ -128370,7 +128570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkequedlinburg-caeb06.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkequedlinburg-caeb06.svg" }, { "if": { @@ -128384,7 +128584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkerastatt-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkerastatt-dda049.jpg" }, { "if": { @@ -128398,7 +128598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkesaarbrucken-af21d1.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkesaarbrucken-af21d1.png" }, { "if": { @@ -128412,7 +128612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkesindelfingen-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkesindelfingen-dda049.jpg" }, { "if": { @@ -128427,7 +128627,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkespeyer-4afb0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-4afb0a.jpg" }, { "if": { @@ -128441,7 +128641,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerketroisdorf-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerketroisdorf-26c4cf.png" }, { "if": { @@ -128456,7 +128656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerketubingen-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerketubingen-dda049.jpg" }, { "if": { @@ -128470,7 +128670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkevelbert-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkevelbert-26c4cf.png" }, { "if": { @@ -128484,7 +128684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewaiblingen-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewaiblingen-dda049.jpg" }, { "if": { @@ -128499,7 +128699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeweinheim-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeweinheim-dda049.jpg" }, { "if": { @@ -128513,7 +128713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewitten-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-26c4cf.png" }, { "if": { @@ -128527,7 +128727,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewolfenbuttel-1af6be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewolfenbuttel-1af6be.jpg" }, { "if": { @@ -128541,7 +128741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeworgl-8d025f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeworgl-8d025f.jpg" }, { "if": { @@ -128555,7 +128755,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statkraft-57e02d.png" + "then": "https://data.mapcomplete.org/nsi//logos/statkraft-57e02d.png" }, { "if": { @@ -128569,7 +128769,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statnett-ba6ae8.png" + "then": "https://data.mapcomplete.org/nsi//logos/statnett-ba6ae8.png" }, { "if": { @@ -128583,7 +128783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stawag-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/stawag-26c4cf.png" }, { "if": { @@ -128597,7 +128797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stedin-01f022.png" + "then": "https://data.mapcomplete.org/nsi//logos/stedin-01f022.png" }, { "if": { @@ -128611,7 +128811,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzberlin-e93127.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-e93127.svg" }, { "if": { @@ -128625,7 +128825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-de1365.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-de1365.jpg" }, { "if": { @@ -128639,7 +128839,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stuttgartnetze-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stuttgartnetze-dda049.jpg" }, { "if": { @@ -128653,7 +128853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-2b5e72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-2b5e72.jpg" }, { "if": { @@ -128667,7 +128867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwagenergie-313ef0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwagenergie-313ef0.jpg" }, { "if": { @@ -128681,7 +128881,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svenskakraftnat-44b3db.png" + "then": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-44b3db.png" }, { "if": { @@ -128695,7 +128895,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swb-b4e66c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swb-b4e66c.jpg" }, { "if": { @@ -128710,7 +128910,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swbenergieundwasser-26c4cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/swbenergieundwasser-26c4cf.svg" }, { "if": { @@ -128725,7 +128925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swestadtwerkeesslingen-dda049.png" + "then": "https://data.mapcomplete.org/nsi//logos/swestadtwerkeesslingen-dda049.png" }, { "if": { @@ -128740,7 +128940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwesternelectricpowercompany-815b02.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-815b02.jpg" }, { "if": { @@ -128754,7 +128954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissgrid-dc04c1.png" + "then": "https://data.mapcomplete.org/nsi//logos/swissgrid-dc04c1.png" }, { "if": { @@ -128768,7 +128968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swk-4afb0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swk-4afb0a.jpg" }, { "if": { @@ -128782,7 +128982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swk-26c4cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/swk-26c4cf.png" }, { "if": { @@ -128797,7 +128997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swustadtwerkeulmneuulmgmbh-d11add.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swustadtwerkeulmneuulmgmbh-d11add.jpg" }, { "if": { @@ -128811,7 +129011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydneytrains-1266b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/sydneytrains-1266b7.png" }, { "if": { @@ -128825,7 +129025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sygnir-ba6ae8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sygnir-ba6ae8.jpg" }, { "if": { @@ -128839,7 +129039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/szdc-fd39e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/szdc-fd39e1.jpg" }, { "if": { @@ -128853,7 +129053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacomapower-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacomapower-301545.jpg" }, { "if": { @@ -128867,7 +129067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasnetworks-787f6a.png" + "then": "https://data.mapcomplete.org/nsi//logos/tasnetworks-787f6a.png" }, { "if": { @@ -128881,7 +129081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-83e94a.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-83e94a.png" }, { "if": { @@ -128896,7 +129096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischewerkeludwigshafenag-4afb0a.png" + "then": "https://data.mapcomplete.org/nsi//logos/technischewerkeludwigshafenag-4afb0a.png" }, { "if": { @@ -128911,7 +129111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischewerkenaumburg-caeb06.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/technischewerkenaumburg-caeb06.jpg" }, { "if": { @@ -128925,7 +129125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tedas-13aefb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tedas-13aefb.jpg" }, { "if": { @@ -128939,7 +129139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teias-13aefb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teias-13aefb.jpg" }, { "if": { @@ -128953,7 +129153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenaganasional-fb8dd8.png" + "then": "https://data.mapcomplete.org/nsi//logos/tenaganasional-fb8dd8.png" }, { "if": { @@ -128968,7 +129168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseevalleyauthority-301545.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-301545.png" }, { "if": { @@ -128982,7 +129182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennet-01f022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennet-01f022.jpg" }, { "if": { @@ -128996,7 +129196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennettso-56054e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennettso-56054e.jpg" }, { "if": { @@ -129010,7 +129210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tensio-ba6ae8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tensio-ba6ae8.jpg" }, { "if": { @@ -129024,7 +129224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terna-a69408.png" + "then": "https://data.mapcomplete.org/nsi//logos/terna-a69408.png" }, { "if": { @@ -129039,7 +129239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasnewmexicopower-9e5147.png" + "then": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-9e5147.png" }, { "if": { @@ -129053,7 +129253,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thugaenergie-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thugaenergie-dda049.jpg" }, { "if": { @@ -129068,7 +129268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirolernetze-8d025f.png" + "then": "https://data.mapcomplete.org/nsi//logos/tirolernetze-8d025f.png" }, { "if": { @@ -129082,7 +129282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-3e6be9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-3e6be9.svg" }, { "if": { @@ -129096,7 +129296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topenergy-8d74a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/topenergy-8d74a7.png" }, { "if": { @@ -129110,7 +129310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontohydro-214de1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torontohydro-214de1.jpg" }, { "if": { @@ -129124,7 +129324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tramwajewarszawskie-83e94a.png" + "then": "https://data.mapcomplete.org/nsi//logos/tramwajewarszawskie-83e94a.png" }, { "if": { @@ -129139,7 +129339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transelectrica-e2eb53.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transelectrica-e2eb53.svg" }, { "if": { @@ -129153,7 +129353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transgrid-1266b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/transgrid-1266b7.png" }, { "if": { @@ -129167,7 +129367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transmissioncompanyofnigeria-591354.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-591354.jpg" }, { "if": { @@ -129181,7 +129381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnetbwgmbh-dda049.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-dda049.svg" }, { "if": { @@ -129195,7 +129395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-1266b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-1266b7.jpg" }, { "if": { @@ -129209,7 +129409,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transpowernewzealand-8d74a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-8d74a7.jpg" }, { "if": { @@ -129223,7 +129423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredas-13aefb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredas-13aefb.jpg" }, { "if": { @@ -129237,7 +129437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trenesargentinos-e1c05a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-e1c05a.svg" }, { "if": { @@ -129252,7 +129452,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trimet-404227.png" + "then": "https://data.mapcomplete.org/nsi//logos/trimet-404227.png" }, { "if": { @@ -129267,7 +129467,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tucsonelectricpower-260b75.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-260b75.jpg" }, { "if": { @@ -129282,7 +129482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkiyecumhuriyetidevletdemiryollari-13aefb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkiyecumhuriyetidevletdemiryollari-13aefb.jpg" }, { "if": { @@ -129297,7 +129497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uberlandwerkleinetal-1af6be.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uberlandwerkleinetal-1af6be.jpg" }, { "if": { @@ -129311,7 +129511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukpowernetworks-a368ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-a368ae.jpg" }, { "if": { @@ -129325,7 +129525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umeaenergi-44b3db.png" + "then": "https://data.mapcomplete.org/nsi//logos/umeaenergi-44b3db.png" }, { "if": { @@ -129339,7 +129539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unison-8d74a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unison-8d74a7.jpg" }, { "if": { @@ -129353,7 +129553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedilluminatingcompany-83e51e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-83e51e.jpg" }, { "if": { @@ -129367,7 +129567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatessteel-569b0d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-569b0d.svg" }, { "if": { @@ -129381,7 +129581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitil-869ced.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitil-869ced.png" }, { "if": { @@ -129395,7 +129595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-69a3df.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-69a3df.svg" }, { "if": { @@ -129409,7 +129609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uzmainfranken-218486.png" + "then": "https://data.mapcomplete.org/nsi//logos/uzmainfranken-218486.png" }, { "if": { @@ -129423,7 +129623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valesa-acc4a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valesa-acc4a0.jpg" }, { "if": { @@ -129437,7 +129637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-7bf6b3.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-7bf6b3.png" }, { "if": { @@ -129451,7 +129651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-7ff171.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-7ff171.png" }, { "if": { @@ -129465,7 +129665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vaylavirasto-a5d6ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vaylavirasto-a5d6ed.jpg" }, { "if": { @@ -129479,7 +129679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-8d74a7.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-8d74a7.png" }, { "if": { @@ -129493,7 +129693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-3e6be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-3e6be9.jpg" }, { "if": { @@ -129507,7 +129707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verdo-3aeb55.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verdo-3aeb55.jpg" }, { "if": { @@ -129521,7 +129721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontelectricpowercompany-b24902.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-b24902.jpg" }, { "if": { @@ -129535,7 +129735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/versantpower-140c84.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/versantpower-140c84.jpg" }, { "if": { @@ -129549,7 +129749,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vevig-ba6ae8.png" + "then": "https://data.mapcomplete.org/nsi//logos/vevig-ba6ae8.png" }, { "if": { @@ -129563,7 +129763,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viesgodistribucionelectrica-294d99.png" + "then": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-294d99.png" }, { "if": { @@ -129577,7 +129777,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visayanelectric-851165.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visayanelectric-851165.jpg" }, { "if": { @@ -129591,7 +129791,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vissi-ba6ae8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vissi-ba6ae8.svg" }, { "if": { @@ -129605,7 +129805,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vossenergi-ba6ae8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vossenergi-ba6ae8.jpg" }, { "if": { @@ -129620,7 +129820,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskadistribucna-052fd4.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-052fd4.png" }, { "if": { @@ -129635,7 +129835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskaenergetika-052fd4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskaenergetika-052fd4.svg" }, { "if": { @@ -129650,7 +129850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonmetropolitanareatransitauthority-0d215b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonmetropolitanareatransitauthority-0d215b.jpg" }, { "if": { @@ -129664,7 +129864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-403aa2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-403aa2.jpg" }, { "if": { @@ -129678,7 +129878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wasserwerkezug-7ee2f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/wasserwerkezug-7ee2f7.png" }, { "if": { @@ -129692,7 +129892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welnetworks-8d74a7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welnetworks-8d74a7.jpg" }, { "if": { @@ -129706,7 +129906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westpennpower-9031bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westpennpower-9031bf.jpg" }, { "if": { @@ -129721,7 +129921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernareapoweradministration-301545.png" + "then": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-301545.png" }, { "if": { @@ -129735,7 +129935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westlandinfra-01f022.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westlandinfra-01f022.jpg" }, { "if": { @@ -129749,7 +129949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westnetz-7ff171.png" + "then": "https://data.mapcomplete.org/nsi//logos/westnetz-7ff171.png" }, { "if": { @@ -129763,7 +129963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-3e6be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-3e6be9.jpg" }, { "if": { @@ -129777,7 +129977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienernetze-3e6be9.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienernetze-3e6be9.png" }, { "if": { @@ -129792,7 +129992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wuppertalerstadtwerke-26c4cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wuppertalerstadtwerke-26c4cf.jpg" }, { "if": { @@ -129806,7 +130006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-301545.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-301545.jpg" }, { "if": { @@ -129820,7 +130020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeagenergie-dda049.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeagenergie-dda049.jpg" }, { "if": { @@ -129834,7 +130034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zesco-9cd713.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zesco-9cd713.jpg" }, { "if": { @@ -129850,7 +130050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitebskenergo-1d411a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitebskenergo-1d411a.jpg" }, { "if": { @@ -129866,7 +130066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektroprivredasrbije-0be006.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elektroprivredasrbije-0be006.svg" }, { "if": { @@ -129881,7 +130081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c6dafd-42843b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c6dafd-42843b.jpg" }, { "if": { @@ -129897,7 +130097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lvivoblenergo-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lvivoblenergo-b0b17c.jpg" }, { "if": { @@ -129911,7 +130111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afbfca-250fb8.png" + "then": "https://data.mapcomplete.org/nsi//logos/afbfca-250fb8.png" }, { "if": { @@ -129927,7 +130127,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poltavaoblenergo-b0b17c.png" + "then": "https://data.mapcomplete.org/nsi//logos/poltavaoblenergo-b0b17c.png" }, { "if": { @@ -129943,7 +130143,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prykarpattiaoblenergo-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prykarpattiaoblenergo-b0b17c.jpg" }, { "if": { @@ -129957,7 +130157,7 @@ } ] }, - "then": "./assets/data/nsi/logos/388547-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/388547-b0b17c.jpg" }, { "if": { @@ -129973,7 +130173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivneoblenergo-b0b17c.png" + "then": "https://data.mapcomplete.org/nsi//logos/rivneoblenergo-b0b17c.png" }, { "if": { @@ -129989,7 +130189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosseti-42843b.png" + "then": "https://data.mapcomplete.org/nsi//logos/rosseti-42843b.png" }, { "if": { @@ -130006,7 +130206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russianrailways-42843b.png" + "then": "https://data.mapcomplete.org/nsi//logos/russianrailways-42843b.png" }, { "if": { @@ -130022,7 +130222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sakhalinenergo-42843b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sakhalinenergo-42843b.jpg" }, { "if": { @@ -130036,7 +130236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/28c7ea-250fb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/28c7ea-250fb8.jpg" }, { "if": { @@ -130052,7 +130252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ternopiloblenergo-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ternopiloblenergo-b0b17c.jpg" }, { "if": { @@ -130069,7 +130269,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrenergo-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrenergo-b0b17c.jpg" }, { "if": { @@ -130086,7 +130286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrainianrailways-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrainianrailways-b0b17c.jpg" }, { "if": { @@ -130102,7 +130302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kharkivoblenergo-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kharkivoblenergo-b0b17c.jpg" }, { "if": { @@ -130118,7 +130318,7 @@ } ] }, - "then": "./assets/data/nsi/logos/khersonoblenergo-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/khersonoblenergo-b0b17c.jpg" }, { "if": { @@ -130134,7 +130334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/khmelnytskoblenergo-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/khmelnytskoblenergo-b0b17c.jpg" }, { "if": { @@ -130148,7 +130348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/472734-b0b17c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/472734-b0b17c.jpg" }, { "if": { @@ -130165,7 +130365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-8cb22b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-8cb22b.jpg" }, { "if": { @@ -130182,7 +130382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koreaelectricpowercorporation-de9ad2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/koreaelectricpowercorporation-de9ad2.svg" }, { "if": { @@ -130198,7 +130398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koreanationalrailway-de9ad2.png" + "then": "https://data.mapcomplete.org/nsi//logos/koreanationalrailway-de9ad2.png" }, { "if": { @@ -130221,7 +130421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clppowerhongkonglimited-5df361.png" + "then": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-5df361.png" }, { "if": { @@ -130237,7 +130437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chubuelectricpowergridcompany-85251b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-85251b.svg" }, { "if": { @@ -130253,7 +130453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-85251b.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-85251b.png" }, { "if": { @@ -130270,7 +130470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-85251b.png" + "then": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-85251b.png" }, { "if": { @@ -130286,7 +130486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanpowercompany-c8f19e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanpowercompany-c8f19e.jpg" }, { "if": { @@ -130302,7 +130502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tepcopowergrid-85251b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-85251b.svg" }, { "if": { @@ -130321,7 +130521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toburailway-85251b.png" + "then": "https://data.mapcomplete.org/nsi//logos/toburailway-85251b.png" }, { "if": { @@ -130338,7 +130538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okinawaelectricpowercompany-85251b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-85251b.jpg" }, { "if": { @@ -130361,7 +130561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e30df9-9f60fb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/e30df9-9f60fb.jpg" }, { "if": { @@ -130384,7 +130584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-5df361.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-5df361.jpg" }, { "if": { @@ -130398,7 +130598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/4countyelectricpowerassociation-8f2428.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/4countyelectricpowerassociation-8f2428.jpg" }, { "if": { @@ -130412,7 +130612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/50hertztransmission-586af6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-586af6.svg" }, { "if": { @@ -130426,7 +130626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aenergivannkraft-c20ae5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-c20ae5.jpg" }, { "if": { @@ -130440,7 +130640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adif-69d425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adif-69d425.jpg" }, { "if": { @@ -130454,7 +130654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aek-ba1eb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aek-ba1eb0.jpg" }, { "if": { @@ -130468,7 +130668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aepohio-2bf52c.png" + "then": "https://data.mapcomplete.org/nsi//logos/aepohio-2bf52c.png" }, { "if": { @@ -130482,7 +130682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeptexas-a67ac1.png" + "then": "https://data.mapcomplete.org/nsi//logos/aeptexas-a67ac1.png" }, { "if": { @@ -130496,7 +130696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-df3eaa.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-df3eaa.png" }, { "if": { @@ -130510,7 +130710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aew-e2ba80.png" + "then": "https://data.mapcomplete.org/nsi//logos/aew-e2ba80.png" }, { "if": { @@ -130524,7 +130724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agderenergi-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agderenergi-c20ae5.svg" }, { "if": { @@ -130539,7 +130739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aktiengesellschaftfurversorgungsunternehmen-bfea7f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/aktiengesellschaftfurversorgungsunternehmen-bfea7f.svg" }, { "if": { @@ -130553,7 +130753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamapower-9f0401.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamapower-9f0401.jpg" }, { "if": { @@ -130568,7 +130768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allgaueruberlandwerk-5ce831.png" + "then": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-5ce831.png" }, { "if": { @@ -130583,7 +130783,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliantenergy-bdcff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/alliantenergy-bdcff1.png" }, { "if": { @@ -130597,7 +130797,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altalink-4cd406.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altalink-4cd406.jpg" }, { "if": { @@ -130612,7 +130812,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameren-8579ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameren-8579ba.png" }, { "if": { @@ -130627,7 +130827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanelectricpower-bdcff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-bdcff1.png" }, { "if": { @@ -130641,7 +130841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amprion-586af6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/amprion-586af6.svg" }, { "if": { @@ -130655,7 +130855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtrak-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtrak-bdcff1.jpg" }, { "if": { @@ -130669,7 +130869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaheimpublicutilities-bc3f25.png" + "then": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-bc3f25.png" }, { "if": { @@ -130683,7 +130883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ande-f310f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ande-f310f5.jpg" }, { "if": { @@ -130697,7 +130897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appalachianpowercompany-ea1744.png" + "then": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-ea1744.png" }, { "if": { @@ -130711,7 +130911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonapublicservice-fa3ca4.png" + "then": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-fa3ca4.png" }, { "if": { @@ -130725,7 +130925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-fbadb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-fbadb0.jpg" }, { "if": { @@ -130739,7 +130939,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atcoelectric-e3681f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atcoelectric-e3681f.svg" }, { "if": { @@ -130753,7 +130953,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atel-ca3aad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atel-ca3aad.svg" }, { "if": { @@ -130767,7 +130967,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlanticcityelectric-ce395d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-ce395d.jpg" }, { "if": { @@ -130781,7 +130981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/augstspriegumatikls-ea2dda.png" + "then": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-ea2dda.png" }, { "if": { @@ -130795,7 +130995,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausgrid-1b8b00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausgrid-1b8b00.jpg" }, { "if": { @@ -130809,7 +131009,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-a67ac1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-a67ac1.jpg" }, { "if": { @@ -130823,7 +131023,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avaconnetz-599fc5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avaconnetz-599fc5.svg" }, { "if": { @@ -130837,7 +131037,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avista-87ed44.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avista-87ed44.jpg" }, { "if": { @@ -130851,7 +131051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axpo-fb5d52.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axpo-fb5d52.jpg" }, { "if": { @@ -130866,7 +131066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-407ea9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-407ea9.jpg" }, { "if": { @@ -130880,7 +131080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bayernwerk-a4bad4.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bayernwerk-a4bad4.svg" }, { "if": { @@ -130894,7 +131094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-20cbd8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-20cbd8.jpg" }, { "if": { @@ -130909,7 +131109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belizeelectricitylimited-18ef5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-18ef5d.jpg" }, { "if": { @@ -130923,7 +131123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkk-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bkk-c20ae5.svg" }, { "if": { @@ -130937,7 +131137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkw-1670a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/bkw-1670a6.png" }, { "if": { @@ -130951,7 +131151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blueridgeenergy-4b3bfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-4b3bfa.jpg" }, { "if": { @@ -130966,7 +131166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonnevillepoweradministration-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-bdcff1.jpg" }, { "if": { @@ -130980,7 +131180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bornholmsenergiandforsyning-d08188.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-d08188.jpg" }, { "if": { @@ -130994,7 +131194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightridge-ef63dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightridge-ef63dd.jpg" }, { "if": { @@ -131008,7 +131208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bryantexasutilities-a67ac1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-a67ac1.jpg" }, { "if": { @@ -131022,7 +131222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/burgenlandenergieag-e911fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-e911fe.jpg" }, { "if": { @@ -131036,7 +131236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/capitalpower-e19a0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/capitalpower-e19a0c.jpg" }, { "if": { @@ -131050,7 +131250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caruna-010e24.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caruna-010e24.svg" }, { "if": { @@ -131064,7 +131264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cdeee-6cbcd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cdeee-6cbcd4.jpg" }, { "if": { @@ -131078,7 +131278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceee-3ce1ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ceee-3ce1ab.svg" }, { "if": { @@ -131092,7 +131292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celesc-3ce1ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celesc-3ce1ab.jpg" }, { "if": { @@ -131106,7 +131306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cemig-3ce1ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cemig-3ce1ab.jpg" }, { "if": { @@ -131120,7 +131320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-bdcff1.jpg" }, { "if": { @@ -131134,7 +131334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralmainepowercompany-c6deed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-c6deed.jpg" }, { "if": { @@ -131148,7 +131348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceps-2998d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceps-2998d9.jpg" }, { "if": { @@ -131162,7 +131362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cern-ed9688.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cern-ed9688.jpg" }, { "if": { @@ -131177,7 +131377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceylonelectricityboard-4af160.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-4af160.png" }, { "if": { @@ -131191,7 +131391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cge-539b17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cge-539b17.jpg" }, { "if": { @@ -131206,7 +131406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cipco-277843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cipco-277843.jpg" }, { "if": { @@ -131220,7 +131420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofames-277843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofames-277843.jpg" }, { "if": { @@ -131234,7 +131434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofconcord-4b3bfa.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofconcord-4b3bfa.png" }, { "if": { @@ -131248,7 +131448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofelizabeth-4b3bfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofelizabeth-4b3bfa.jpg" }, { "if": { @@ -131262,7 +131462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofhighpoint-4b3bfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofhighpoint-4b3bfa.jpg" }, { "if": { @@ -131276,7 +131476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakeland-a2a8ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-a2a8ba.png" }, { "if": { @@ -131290,7 +131490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflexington-4b3bfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflexington-4b3bfa.jpg" }, { "if": { @@ -131304,7 +131504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofnatchitoches-7b80e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityofnatchitoches-7b80e6.jpg" }, { "if": { @@ -131318,7 +131518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftallahassee-a2a8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-a2a8ba.jpg" }, { "if": { @@ -131332,7 +131532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkpublicutilities-60887c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-60887c.jpg" }, { "if": { @@ -131346,7 +131546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clayelectriccooperative-a2a8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-a2a8ba.jpg" }, { "if": { @@ -131360,7 +131560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleco-7b80e6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cleco-7b80e6.svg" }, { "if": { @@ -131374,7 +131574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clevelandpublicpower-2bf52c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clevelandpublicpower-2bf52c.jpg" }, { "if": { @@ -131388,7 +131588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cnr-06d365.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cnr-06d365.jpg" }, { "if": { @@ -131402,7 +131602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codelcochile-539b17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/codelcochile-539b17.jpg" }, { "if": { @@ -131416,7 +131616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coelba-3ce1ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/coelba-3ce1ab.png" }, { "if": { @@ -131430,7 +131630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colbun-539b17.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colbun-539b17.jpg" }, { "if": { @@ -131444,7 +131644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradospringsutilities-b97cd6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-b97cd6.jpg" }, { "if": { @@ -131459,7 +131659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionfederaldeelectricidad-326c07.png" + "then": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-326c07.png" }, { "if": { @@ -131473,7 +131673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthedison-e55a59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-e55a59.jpg" }, { "if": { @@ -131487,7 +131687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consolidatededison-f597d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consolidatededison-f597d1.jpg" }, { "if": { @@ -131501,7 +131701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumersenergy-52f18f.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumersenergy-52f18f.png" }, { "if": { @@ -131515,7 +131715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copel-3ce1ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copel-3ce1ab.jpg" }, { "if": { @@ -131530,7 +131730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornbeltpowercooperative-277843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-277843.jpg" }, { "if": { @@ -131544,7 +131744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpoelec-46d8fc.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpoelec-46d8fc.png" }, { "if": { @@ -131558,7 +131758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosern-3ce1ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/cosern-3ce1ab.png" }, { "if": { @@ -131572,7 +131772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/countiesenergy-9a0f48.png" + "then": "https://data.mapcomplete.org/nsi//logos/countiesenergy-9a0f48.png" }, { "if": { @@ -131586,7 +131786,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpflenergia-3ce1ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/cpflenergia-3ce1ab.png" }, { "if": { @@ -131600,7 +131800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-a67ac1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-a67ac1.jpg" }, { "if": { @@ -131614,7 +131814,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cullmanelectriccooperative-9f0401.png" + "then": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-9f0401.png" }, { "if": { @@ -131628,7 +131828,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dairylandpowercooperative-8b110c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-8b110c.jpg" }, { "if": { @@ -131643,7 +131843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/daytonpowerandlight-2bf52c.png" + "then": "https://data.mapcomplete.org/nsi//logos/daytonpowerandlight-2bf52c.png" }, { "if": { @@ -131657,7 +131857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbenergie-586af6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbenergie-586af6.svg" }, { "if": { @@ -131671,7 +131871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decaturutilities-9f0401.png" + "then": "https://data.mapcomplete.org/nsi//logos/decaturutilities-9f0401.png" }, { "if": { @@ -131685,7 +131885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delmarvapower-ac3708.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delmarvapower-ac3708.jpg" }, { "if": { @@ -131699,7 +131899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/demco-7b80e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/demco-7b80e6.jpg" }, { "if": { @@ -131713,7 +131913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominionenergy-640563.png" + "then": "https://data.mapcomplete.org/nsi//logos/dominionenergy-640563.png" }, { "if": { @@ -131727,7 +131927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dowchemicalcompany-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-bdcff1.jpg" }, { "if": { @@ -131741,7 +131941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteelectriccompany-52f18f.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-52f18f.png" }, { "if": { @@ -131755,7 +131955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteenergy-52f18f.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteenergy-52f18f.png" }, { "if": { @@ -131769,7 +131969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-88249c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-88249c.jpg" }, { "if": { @@ -131783,7 +131983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergyprogress-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-bdcff1.jpg" }, { "if": { @@ -131797,7 +131997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duquesnelight-052d73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duquesnelight-052d73.jpg" }, { "if": { @@ -131811,7 +132011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eredes-331927.png" + "then": "https://data.mapcomplete.org/nsi//logos/eredes-331927.png" }, { "if": { @@ -131825,7 +132025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edisnetzgmbh-89cf7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-89cf7c.jpg" }, { "if": { @@ -131839,7 +132039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-9156cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-9156cf.png" }, { "if": { @@ -131853,7 +132053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonmitte-586af6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonmitte-586af6.svg" }, { "if": { @@ -131867,7 +132067,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonnetz-586af6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonnetz-586af6.svg" }, { "if": { @@ -131881,7 +132081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonwestfalenweser-586af6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonwestfalenweser-586af6.svg" }, { "if": { @@ -131895,7 +132095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastkentuckypowercooperative-c8adae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-c8adae.jpg" }, { "if": { @@ -131909,7 +132109,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastriverelectricpowercooperative-4ce78d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-4ce78d.jpg" }, { "if": { @@ -131923,7 +132123,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edenor-13cce6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edenor-13cce6.jpg" }, { "if": { @@ -131937,7 +132137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpespiritosanto-f44267.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-f44267.svg" }, { "if": { @@ -131953,7 +132153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovaveis-e07165.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-e07165.svg" }, { "if": { @@ -131967,7 +132167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpsaopaulo-3ce1ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-3ce1ab.jpg" }, { "if": { @@ -131981,7 +132181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egd-814054.svg" + "then": "https://data.mapcomplete.org/nsi//logos/egd-814054.svg" }, { "if": { @@ -131995,7 +132195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eirgrid-ace1ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eirgrid-ace1ec.jpg" }, { "if": { @@ -132009,7 +132209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekt-13334a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekt-13334a.jpg" }, { "if": { @@ -132024,7 +132224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-9156cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-9156cf.png" }, { "if": { @@ -132038,7 +132238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitynorthwest-b49d3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-b49d3c.jpg" }, { "if": { @@ -132052,7 +132252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrilevi-3741d9.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrilevi-3741d9.png" }, { "if": { @@ -132066,7 +132266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elenia-010e24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elenia-010e24.jpg" }, { "if": { @@ -132080,7 +132280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-3741d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-3741d9.jpg" }, { "if": { @@ -132094,7 +132294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eletropaulo-3ce1ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eletropaulo-3ce1ab.svg" }, { "if": { @@ -132108,7 +132308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elia-e76493.png" + "then": "https://data.mapcomplete.org/nsi//logos/elia-e76493.png" }, { "if": { @@ -132122,7 +132322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ellevio-57ded1.png" + "then": "https://data.mapcomplete.org/nsi//logos/ellevio-57ded1.png" }, { "if": { @@ -132136,7 +132336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmu-fb6ef4.png" + "then": "https://data.mapcomplete.org/nsi//logos/elmu-fb6ef4.png" }, { "if": { @@ -132150,7 +132350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elvia-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elvia-c20ae5.svg" }, { "if": { @@ -132165,7 +132365,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-53c7cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-53c7cc.png" }, { "if": { @@ -132179,7 +132379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endeavourenergy-1b8b00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-1b8b00.jpg" }, { "if": { @@ -132193,7 +132393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-69d425.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-69d425.png" }, { "if": { @@ -132207,7 +132407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enea-983018.png" + "then": "https://data.mapcomplete.org/nsi//logos/enea-983018.png" }, { "if": { @@ -132221,7 +132421,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enedis-c5898d.png" + "then": "https://data.mapcomplete.org/nsi//logos/enedis-c5898d.png" }, { "if": { @@ -132235,7 +132435,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-9156cf.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-9156cf.png" }, { "if": { @@ -132249,7 +132449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaoceara-3ce1ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-3ce1ab.png" }, { "if": { @@ -132263,7 +132463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-3ce1ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-3ce1ab.svg" }, { "if": { @@ -132277,7 +132477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-9156cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-9156cf.svg" }, { "if": { @@ -132291,7 +132491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-983018.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-983018.png" }, { "if": { @@ -132305,7 +132505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energex-7b2d4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energex-7b2d4e.jpg" }, { "if": { @@ -132320,7 +132520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiasdeportugal-331927.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-331927.svg" }, { "if": { @@ -132334,7 +132534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-9e91b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-9e91b2.jpg" }, { "if": { @@ -132348,7 +132548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedumali-a3395e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedumali-a3395e.jpg" }, { "if": { @@ -132363,7 +132563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieversorgungmittelrhein-33a850.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-33a850.jpg" }, { "if": { @@ -132377,7 +132577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energinet-8ed41d.png" + "then": "https://data.mapcomplete.org/nsi//logos/energinet-8ed41d.png" }, { "if": { @@ -132392,7 +132592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energyfijilimited-ba7816.png" + "then": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-ba7816.png" }, { "if": { @@ -132406,7 +132606,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enertrag-2577fc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enertrag-2577fc.jpg" }, { "if": { @@ -132420,7 +132620,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enexis-858998.png" + "then": "https://data.mapcomplete.org/nsi//logos/enexis-858998.png" }, { "if": { @@ -132434,7 +132634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-9156cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-9156cf.jpg" }, { "if": { @@ -132448,7 +132648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmax-4cd406.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmax-4cd406.png" }, { "if": { @@ -132462,7 +132662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-aa3cc2.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-aa3cc2.png" }, { "if": { @@ -132476,7 +132676,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergy-76a7b4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergy-76a7b4.jpg" }, { "if": { @@ -132490,7 +132690,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergyarkansas-fbadb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-fbadb0.jpg" }, { "if": { @@ -132504,7 +132704,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergylouisiana-2a5830.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-2a5830.jpg" }, { "if": { @@ -132518,7 +132718,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enviam-d1d8c4.png" + "then": "https://data.mapcomplete.org/nsi//logos/enviam-d1d8c4.png" }, { "if": { @@ -132532,7 +132732,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epb-7a59c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epb-7a59c2.jpg" }, { "if": { @@ -132546,7 +132746,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epcor-f12bdc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epcor-f12bdc.jpg" }, { "if": { @@ -132560,7 +132760,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epec-992f03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epec-992f03.jpg" }, { "if": { @@ -132574,7 +132774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equatorialenergiapiaui-32cb8c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-32cb8c.jpg" }, { "if": { @@ -132588,7 +132788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ergonenergy-7b2d4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ergonenergy-7b2d4e.jpg" }, { "if": { @@ -132602,7 +132802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbnetworks-ace1ec.png" + "then": "https://data.mapcomplete.org/nsi//logos/esbnetworks-ace1ec.png" }, { "if": { @@ -132616,7 +132816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eskom-5fc5f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eskom-5fc5f3.jpg" }, { "if": { @@ -132630,7 +132830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentialenergy-af1cc5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentialenergy-af1cc5.jpg" }, { "if": { @@ -132645,7 +132845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eswatinielectricitycompany-cab1ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/eswatinielectricitycompany-cab1ca.png" }, { "if": { @@ -132660,7 +132860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethiopianelectricpower-96e206.png" + "then": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-96e206.png" }, { "if": { @@ -132675,7 +132875,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eugenewaterandelectricboard-53c7cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-53c7cc.jpg" }, { "if": { @@ -132690,7 +132890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-c44c9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-c44c9e.jpg" }, { "if": { @@ -132704,7 +132904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eversource-3b99a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/eversource-3b99a1.png" }, { "if": { @@ -132718,7 +132918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-9e91b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-9e91b2.jpg" }, { "if": { @@ -132733,7 +132933,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-46fdad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-46fdad.svg" }, { "if": { @@ -132747,7 +132947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evs-bfea7f.png" + "then": "https://data.mapcomplete.org/nsi//logos/evs-bfea7f.png" }, { "if": { @@ -132761,7 +132961,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewz-1670a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewz-1670a6.jpg" }, { "if": { @@ -132775,7 +132975,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fagne-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fagne-c20ae5.svg" }, { "if": { @@ -132790,7 +132990,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fayettevillepublicworkscommission-4b3bfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-4b3bfa.jpg" }, { "if": { @@ -132804,7 +133004,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fingrid-010e24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fingrid-010e24.jpg" }, { "if": { @@ -132818,7 +133018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstenergy-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstenergy-bdcff1.jpg" }, { "if": { @@ -132832,7 +133032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fjellnett-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fjellnett-c20ae5.svg" }, { "if": { @@ -132846,7 +133046,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridapowerandlight-a2a8ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-a2a8ba.png" }, { "if": { @@ -132860,7 +133060,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortisbc-20cbd8.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortisbc-20cbd8.png" }, { "if": { @@ -132874,7 +133074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortum-a16d72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortum-a16d72.jpg" }, { "if": { @@ -132888,7 +133088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fs-4a8556.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fs-4a8556.jpg" }, { "if": { @@ -132902,7 +133102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/furnascentraiseletricas-3ce1ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-3ce1ab.jpg" }, { "if": { @@ -132917,7 +133117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gainesvilleregionalutilities-a2a8ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-a2a8ba.png" }, { "if": { @@ -132931,7 +133131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gladeselectriccoop-a2a8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-a2a8ba.jpg" }, { "if": { @@ -132945,7 +133145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glitrenett-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/glitrenett-c20ae5.svg" }, { "if": { @@ -132959,7 +133159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenspreadelectriccooperative-a67ac1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-a67ac1.jpg" }, { "if": { @@ -132974,7 +133174,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandriverdamauthority-f05dd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-f05dd4.jpg" }, { "if": { @@ -132988,7 +133188,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenevilleenergyauthority-ef63dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-ef63dd.jpg" }, { "if": { @@ -133002,7 +133202,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenvilleutilitiescommission-4b3bfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-4b3bfa.jpg" }, { "if": { @@ -133016,7 +133216,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groupee-1670a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupee-1670a6.jpg" }, { "if": { @@ -133030,7 +133230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harzenergie-586af6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harzenergie-586af6.jpg" }, { "if": { @@ -133044,7 +133244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haugalandkraftnett-c20ae5.png" + "then": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-c20ae5.png" }, { "if": { @@ -133058,7 +133258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiianelectriccompany-bc01c1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-bc01c1.jpg" }, { "if": { @@ -133072,7 +133272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntsvilleutilities-9f0401.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-9f0401.jpg" }, { "if": { @@ -133086,7 +133286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroenergi-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroenergi-c20ae5.svg" }, { "if": { @@ -133100,7 +133300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-e95ba8.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-e95ba8.png" }, { "if": { @@ -133114,7 +133314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-9156cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-9156cf.jpg" }, { "if": { @@ -133128,7 +133328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahopower-597e0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahopower-597e0c.jpg" }, { "if": { @@ -133142,7 +133342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-9e91b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-9e91b2.png" }, { "if": { @@ -133157,7 +133357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialirrigationdistrict-bc3f25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-bc3f25.jpg" }, { "if": { @@ -133171,7 +133371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/independencepowerandlight-8c097c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-8c097c.jpg" }, { "if": { @@ -133186,7 +133386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianamichiganpower-c664da.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-c664da.png" }, { "if": { @@ -133201,7 +133401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianapolispowerandlight-395972.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-395972.png" }, { "if": { @@ -133216,7 +133416,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-2f755a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-2f755a.jpg" }, { "if": { @@ -133230,7 +133430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invenergy-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invenergy-bdcff1.jpg" }, { "if": { @@ -133244,7 +133444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipto-05655c.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipto-05655c.png" }, { "if": { @@ -133258,7 +133458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itaipubinacional-dc71bc.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-dc71bc.svg" }, { "if": { @@ -133272,7 +133472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itc-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itc-bdcff1.jpg" }, { "if": { @@ -133286,7 +133486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonenergyauthority-ef63dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-ef63dd.jpg" }, { "if": { @@ -133301,7 +133501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-a5d5ed.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-a5d5ed.jpg" }, { "if": { @@ -133316,7 +133516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseycentralpowerandlight-6dc924.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-6dc924.jpg" }, { "if": { @@ -133330,7 +133530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joewheeleremc-9f0401.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-9f0401.jpg" }, { "if": { @@ -133344,7 +133544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonesborocitywaterandlight-fbadb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-fbadb0.jpg" }, { "if": { @@ -133363,7 +133563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastjapanrailwaycompany-57f06a.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-57f06a.png" }, { "if": { @@ -133382,7 +133582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centraljapanrailwaycompany-57f06a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/centraljapanrailwaycompany-57f06a.svg" }, { "if": { @@ -133397,7 +133597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansascityboardofpublicutilities-f0bd87.png" + "then": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-f0bd87.png" }, { "if": { @@ -133411,7 +133611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kelag-a632a6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kelag-a632a6.jpg" }, { "if": { @@ -133425,7 +133625,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckypower-17602a.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckypower-17602a.png" }, { "if": { @@ -133440,7 +133640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralastateelectricityboard-b0a0f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-b0a0f3.jpg" }, { "if": { @@ -133454,7 +133654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kissimmeeutilityauthority-a2a8ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-a2a8ba.png" }, { "if": { @@ -133469,7 +133669,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knoxvilleutilitiesboard-ef63dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-ef63dd.jpg" }, { "if": { @@ -133483,7 +133683,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kystnett-c20ae5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kystnett-c20ae5.jpg" }, { "if": { @@ -133498,7 +133698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-bc3f25.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-bc3f25.png" }, { "if": { @@ -133513,7 +133713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayetteutilitiessystem-7b80e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-7b80e6.jpg" }, { "if": { @@ -133528,7 +133728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leecountyelectriccooperative-a2a8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-a2a8ba.jpg" }, { "if": { @@ -133542,7 +133742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leag-586af6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/leag-586af6.svg" }, { "if": { @@ -133557,7 +133757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechwerke-a4bad4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechwerke-a4bad4.jpg" }, { "if": { @@ -133571,7 +133771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liander-858998.png" + "then": "https://data.mapcomplete.org/nsi//logos/liander-858998.png" }, { "if": { @@ -133585,7 +133785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnelectricsystem-5529f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-5529f3.png" }, { "if": { @@ -133599,7 +133799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linja-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/linja-c20ae5.svg" }, { "if": { @@ -133613,7 +133813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-e85d67.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-e85d67.jpg" }, { "if": { @@ -133627,7 +133827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lockhartpowercompany-d82b92.png" + "then": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-d82b92.png" }, { "if": { @@ -133642,7 +133842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-a67ac1.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-a67ac1.png" }, { "if": { @@ -133656,7 +133856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswnetz-9a0609.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswnetz-9a0609.png" }, { "if": { @@ -133671,7 +133871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubbockpowerandlight-a67ac1.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-a67ac1.png" }, { "if": { @@ -133685,7 +133885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lyse-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lyse-c20ae5.svg" }, { "if": { @@ -133699,7 +133899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manitobahydro-0866fb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manitobahydro-0866fb.svg" }, { "if": { @@ -133713,7 +133913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marke-bfea7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marke-bfea7f.jpg" }, { "if": { @@ -133727,7 +133927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshallmunicipalutilities-02d934.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-02d934.jpg" }, { "if": { @@ -133741,7 +133941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-9f0401.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-9f0401.jpg" }, { "if": { @@ -133755,7 +133955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mdu-e052ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mdu-e052ca.jpg" }, { "if": { @@ -133770,7 +133970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphislightgasandwater-ef63dd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-ef63dd.jpg" }, { "if": { @@ -133784,7 +133984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meralco-d1f649.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meralco-d1f649.jpg" }, { "if": { @@ -133798,7 +133998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meted-052d73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meted-052d73.jpg" }, { "if": { @@ -133813,7 +134013,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midamericanenergy-60a5ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-60a5ba.jpg" }, { "if": { @@ -133827,7 +134027,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midwestenergy-f0bd87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midwestenergy-f0bd87.jpg" }, { "if": { @@ -133841,7 +134041,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-02d934.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-02d934.jpg" }, { "if": { @@ -133855,7 +134055,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnkotapowercooperative-5a1a5f.png" + "then": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-5a1a5f.png" }, { "if": { @@ -133869,7 +134069,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippipower-8f2428.png" + "then": "https://data.mapcomplete.org/nsi//logos/mississippipower-8f2428.png" }, { "if": { @@ -133883,7 +134083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monpower-d1056a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monpower-d1056a.jpg" }, { "if": { @@ -133897,7 +134097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nampower-fcc6fb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nampower-fcc6fb.svg" }, { "if": { @@ -133912,7 +134112,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nashvilleelectricservice-ef63dd.png" + "then": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-ef63dd.png" }, { "if": { @@ -133926,7 +134126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgrid-f62dfe.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgrid-f62dfe.png" }, { "if": { @@ -133941,7 +134141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-d1f649.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-d1f649.jpg" }, { "if": { @@ -133955,7 +134155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitydistribution-b49d3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-b49d3c.jpg" }, { "if": { @@ -133969,7 +134169,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitytransmission-b49d3c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-b49d3c.svg" }, { "if": { @@ -133985,7 +134185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbpower-4e35ae.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nbpower-4e35ae.svg" }, { "if": { @@ -133999,7 +134199,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoenergia-3ce1ab.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoenergia-3ce1ab.svg" }, { "if": { @@ -134013,7 +134213,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzno-9e91b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netzno-9e91b2.jpg" }, { "if": { @@ -134027,7 +134227,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzebwgmbh-69414f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-69414f.svg" }, { "if": { @@ -134042,7 +134242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkpowerauthority-f597d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-f597d1.jpg" }, { "if": { @@ -134056,7 +134256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-ec628a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-ec628a.jpg" }, { "if": { @@ -134070,7 +134270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandpower-ec628a.png" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-ec628a.png" }, { "if": { @@ -134084,7 +134284,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexteraenergy-e19a0c.png" + "then": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-e19a0c.png" }, { "if": { @@ -134098,7 +134298,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nienetworks-2f5bde.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nienetworks-2f5bde.jpg" }, { "if": { @@ -134112,7 +134312,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernpowergrid-b49d3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-b49d3c.jpg" }, { "if": { @@ -134126,7 +134326,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-6d72ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-6d72ab.jpg" }, { "if": { @@ -134140,7 +134340,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-5507cb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-5507cb.jpg" }, { "if": { @@ -134154,7 +134354,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntenett-c20ae5.png" + "then": "https://data.mapcomplete.org/nsi//logos/ntenett-c20ae5.png" }, { "if": { @@ -134168,7 +134368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nvenergy-5524d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/nvenergy-5524d0.png" }, { "if": { @@ -134182,7 +134382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nwelectricpowercooperative-8c097c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-8c097c.jpg" }, { "if": { @@ -134196,7 +134396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nyseg-f597d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nyseg-f597d1.jpg" }, { "if": { @@ -134211,7 +134411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomagasandelectric-f05dd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-f05dd4.jpg" }, { "if": { @@ -134225,7 +134425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omahapublicpowerdistrict-5529f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-5529f3.png" }, { "if": { @@ -134239,7 +134439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oncor-a67ac1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oncor-a67ac1.jpg" }, { "if": { @@ -134253,7 +134453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orionnewzealand-9a0f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-9a0f48.jpg" }, { "if": { @@ -134268,7 +134468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlandoutilitiescommission-a2a8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-a2a8ba.jpg" }, { "if": { @@ -134282,7 +134482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottertailpowercompany-435ecb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-435ecb.jpg" }, { "if": { @@ -134297,7 +134497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-bc3f25.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-bc3f25.png" }, { "if": { @@ -134311,7 +134511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificpower-410860.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificpower-410860.svg" }, { "if": { @@ -134325,7 +134525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificorp-bdcff1.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificorp-bdcff1.svg" }, { "if": { @@ -134339,7 +134539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pea-27f90a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pea-27f90a.jpg" }, { "if": { @@ -134353,7 +134553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peco-8ebb48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peco-8ebb48.jpg" }, { "if": { @@ -134367,7 +134567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peinertragergmbh-9a0609.svg" + "then": "https://data.mapcomplete.org/nsi//logos/peinertragergmbh-9a0609.svg" }, { "if": { @@ -134381,7 +134581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penelec-052d73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penelec-052d73.jpg" }, { "if": { @@ -134396,7 +134596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perusahaanlistriknegara-1697d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-1697d1.jpg" }, { "if": { @@ -134410,7 +134610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petrobras-3ce1ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/petrobras-3ce1ab.png" }, { "if": { @@ -134424,7 +134624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfalzwerkeag-33a850.png" + "then": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-33a850.png" }, { "if": { @@ -134438,7 +134638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgedystrybucja-983018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-983018.jpg" }, { "if": { @@ -134452,7 +134652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgeenergetykakolejowa-983018.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-983018.jpg" }, { "if": { @@ -134466,7 +134666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pjm-6dc924.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pjm-6dc924.jpg" }, { "if": { @@ -134481,7 +134681,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-b4f0f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-b4f0f3.jpg" }, { "if": { @@ -134496,7 +134696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-2ca0f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-2ca0f6.png" }, { "if": { @@ -134511,7 +134711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandgeneralelectric-53c7cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-53c7cc.png" }, { "if": { @@ -134525,7 +134725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacedison-c9580d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacedison-c9580d.jpg" }, { "if": { @@ -134540,7 +134740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacelectricpowercompany-86668f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-86668f.jpg" }, { "if": { @@ -134554,7 +134754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powergridcorporationofindialtd-b0a0f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-b0a0f3.jpg" }, { "if": { @@ -134568,7 +134768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerco-9a0f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerco-9a0f48.jpg" }, { "if": { @@ -134582,7 +134782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powercor-1f9868.png" + "then": "https://data.mapcomplete.org/nsi//logos/powercor-1f9868.png" }, { "if": { @@ -134596,7 +134796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerlink-7b2d4e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerlink-7b2d4e.jpg" }, { "if": { @@ -134610,7 +134810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ppl-ce395d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ppl-ce395d.jpg" }, { "if": { @@ -134624,7 +134824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pre-814054.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pre-814054.jpg" }, { "if": { @@ -134638,7 +134838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premierenergy-30be6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/premierenergy-30be6b.jpg" }, { "if": { @@ -134653,7 +134853,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-df4988.png" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-df4988.png" }, { "if": { @@ -134667,7 +134867,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicserviceenterprisegroup-f244e7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-f244e7.jpg" }, { "if": { @@ -134682,7 +134882,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-a167d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-a167d5.jpg" }, { "if": { @@ -134697,7 +134897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pugetsoundenergy-60887c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-60887c.jpg" }, { "if": { @@ -134711,7 +134911,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radiuselnet-30d808.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radiuselnet-30d808.jpg" }, { "if": { @@ -134725,7 +134925,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rappahannockelectriccooperative-1ba2af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-1ba2af.jpg" }, { "if": { @@ -134740,7 +134940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redelectricadeespana-69d425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-69d425.jpg" }, { "if": { @@ -134754,7 +134954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/reedycreekimprovementdistrict-a2a8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/reedycreekimprovementdistrict-a2a8ba.jpg" }, { "if": { @@ -134768,7 +134968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ren-331927.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ren-331927.svg" }, { "if": { @@ -134782,7 +134982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/resoluteforestproducts-e95ba8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/resoluteforestproducts-e95ba8.jpg" }, { "if": { @@ -134796,7 +134996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-4a8556.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-4a8556.svg" }, { "if": { @@ -134810,7 +135010,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodeislandenergy-c4d194.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-c4d194.jpg" }, { "if": { @@ -134824,7 +135024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riograndeenergia-3ce1ab.png" + "then": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-3ce1ab.png" }, { "if": { @@ -134838,7 +135038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-741701.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-741701.svg" }, { "if": { @@ -134852,7 +135052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochestergasandelectric-f597d1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-f597d1.jpg" }, { "if": { @@ -134866,7 +135066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockymountainpower-abd620.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-abd620.svg" }, { "if": { @@ -134880,7 +135080,7 @@ } ] }, - "then": "./assets/data/nsi/logos/romandeenergie-15be37.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/romandeenergie-15be37.jpg" }, { "if": { @@ -134894,7 +135094,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosevilleelectric-bc3f25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-bc3f25.jpg" }, { "if": { @@ -134908,7 +135108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rte-06d365.png" + "then": "https://data.mapcomplete.org/nsi//logos/rte-06d365.png" }, { "if": { @@ -134922,7 +135122,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-df4479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-df4479.jpg" }, { "if": { @@ -134936,7 +135136,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-7d3d19.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-7d3d19.png" }, { "if": { @@ -134951,7 +135151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-bc3f25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-bc3f25.jpg" }, { "if": { @@ -134965,7 +135165,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sadalestikls-ea2dda.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sadalestikls-ea2dda.jpg" }, { "if": { @@ -134980,7 +135180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltriverproject-fa3ca4.png" + "then": "https://data.mapcomplete.org/nsi//logos/saltriverproject-fa3ca4.png" }, { "if": { @@ -134994,7 +135194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-f0df32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-f0df32.jpg" }, { "if": { @@ -135009,7 +135209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegogasandelectric-5bf02a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-5bf02a.jpg" }, { "if": { @@ -135023,7 +135223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saskpower-c3753d.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saskpower-c3753d.svg" }, { "if": { @@ -135037,7 +135237,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-1670a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-1670a6.png" }, { "if": { @@ -135051,7 +135251,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-573184.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-573184.svg" }, { "if": { @@ -135066,7 +135266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-0a478d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-0a478d.jpg" }, { "if": { @@ -135081,7 +135281,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seattlecitylight-60887c.png" + "then": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-60887c.png" }, { "if": { @@ -135095,7 +135295,7 @@ } ] }, - "then": "./assets/data/nsi/logos/seminoleelectriccooperative-a2a8ba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-a2a8ba.jpg" }, { "if": { @@ -135109,7 +135309,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senelec-bd6fe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senelec-bd6fe7.jpg" }, { "if": { @@ -135123,7 +135323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sig-c495cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sig-c495cc.jpg" }, { "if": { @@ -135137,7 +135337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slemco-7b80e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slemco-7b80e6.jpg" }, { "if": { @@ -135152,7 +135352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-9271f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-9271f5.jpg" }, { "if": { @@ -135166,7 +135366,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-06d365.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-06d365.png" }, { "if": { @@ -135180,7 +135380,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-06d365.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-06d365.png" }, { "if": { @@ -135195,7 +135395,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-b975a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-b975a8.jpg" }, { "if": { @@ -135210,7 +135410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sognogfjordaneenergi-c20ae5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-c20ae5.jpg" }, { "if": { @@ -135225,7 +135425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniaedison-bc3f25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-bc3f25.jpg" }, { "if": { @@ -135239,7 +135439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-fbadb0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-fbadb0.jpg" }, { "if": { @@ -135253,7 +135453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spenergynetworks-0a478d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-0a478d.jpg" }, { "if": { @@ -135268,7 +135468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldutilityboard-53c7cc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-53c7cc.jpg" }, { "if": { @@ -135282,7 +135482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssentransmission-63de3a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ssentransmission-63de3a.jpg" }, { "if": { @@ -135296,7 +135496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkedusseldorf-bfea7f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-bfea7f.jpg" }, { "if": { @@ -135310,7 +135510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeleipzig-7d3d19.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-7d3d19.jpg" }, { "if": { @@ -135325,7 +135525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-a4bad4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-a4bad4.jpg" }, { "if": { @@ -135339,7 +135539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statkraft-df4479.png" + "then": "https://data.mapcomplete.org/nsi//logos/statkraft-df4479.png" }, { "if": { @@ -135353,7 +135553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statnett-c20ae5.png" + "then": "https://data.mapcomplete.org/nsi//logos/statnett-c20ae5.png" }, { "if": { @@ -135367,7 +135567,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stedin-858998.png" + "then": "https://data.mapcomplete.org/nsi//logos/stedin-858998.png" }, { "if": { @@ -135381,7 +135581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzberlin-40bb71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-40bb71.svg" }, { "if": { @@ -135395,7 +135595,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-7db4f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-7db4f5.jpg" }, { "if": { @@ -135409,7 +135609,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-f0bd87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-f0bd87.jpg" }, { "if": { @@ -135423,7 +135623,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwagenergie-50bb25.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwagenergie-50bb25.jpg" }, { "if": { @@ -135437,7 +135637,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svenskakraftnat-57ded1.png" + "then": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-57ded1.png" }, { "if": { @@ -135452,7 +135652,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwesternelectricpowercompany-0d5051.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-0d5051.jpg" }, { "if": { @@ -135466,7 +135666,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissgrid-1670a6.png" + "then": "https://data.mapcomplete.org/nsi//logos/swissgrid-1670a6.png" }, { "if": { @@ -135480,7 +135680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sygnir-c20ae5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sygnir-c20ae5.jpg" }, { "if": { @@ -135494,7 +135694,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-983018.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-983018.png" }, { "if": { @@ -135508,7 +135708,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teias-9b1ae4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teias-9b1ae4.jpg" }, { "if": { @@ -135522,7 +135722,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenaganasional-da9bd2.png" + "then": "https://data.mapcomplete.org/nsi//logos/tenaganasional-da9bd2.png" }, { "if": { @@ -135537,7 +135737,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseevalleyauthority-bdcff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-bdcff1.png" }, { "if": { @@ -135551,7 +135751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennet-858998.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennet-858998.jpg" }, { "if": { @@ -135565,7 +135765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennettso-85a108.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennettso-85a108.jpg" }, { "if": { @@ -135579,7 +135779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tensio-c20ae5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tensio-c20ae5.jpg" }, { "if": { @@ -135593,7 +135793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terna-0f2e54.png" + "then": "https://data.mapcomplete.org/nsi//logos/terna-0f2e54.png" }, { "if": { @@ -135608,7 +135808,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasnewmexicopower-a67ac1.png" + "then": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-a67ac1.png" }, { "if": { @@ -135622,7 +135822,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-9e91b2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-9e91b2.svg" }, { "if": { @@ -135636,7 +135836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transcomahuesa-54b22a.png" + "then": "https://data.mapcomplete.org/nsi//logos/transcomahuesa-54b22a.png" }, { "if": { @@ -135650,7 +135850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transener-a8b1df.png" + "then": "https://data.mapcomplete.org/nsi//logos/transener-a8b1df.png" }, { "if": { @@ -135664,7 +135864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transgrid-1b8b00.png" + "then": "https://data.mapcomplete.org/nsi//logos/transgrid-1b8b00.png" }, { "if": { @@ -135678,7 +135878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transmissioncompanyofnigeria-390765.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-390765.jpg" }, { "if": { @@ -135692,7 +135892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnetbwgmbh-69414f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-69414f.svg" }, { "if": { @@ -135706,7 +135906,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-1b8b00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-1b8b00.jpg" }, { "if": { @@ -135720,7 +135920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transpowernewzealand-9a0f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-9a0f48.jpg" }, { "if": { @@ -135734,7 +135934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredas-9b1ae4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredas-9b1ae4.jpg" }, { "if": { @@ -135749,7 +135949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tucsonelectricpower-fa3ca4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-fa3ca4.jpg" }, { "if": { @@ -135763,7 +135963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ugi-052d73.png" + "then": "https://data.mapcomplete.org/nsi//logos/ugi-052d73.png" }, { "if": { @@ -135777,7 +135977,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukpowernetworks-b49d3c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-b49d3c.jpg" }, { "if": { @@ -135791,7 +135991,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uniperkraftwerke-586af6.png" + "then": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-586af6.png" }, { "if": { @@ -135805,7 +136005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedilluminatingcompany-311ea4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-311ea4.jpg" }, { "if": { @@ -135819,7 +136019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatessteel-9f0401.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-9f0401.svg" }, { "if": { @@ -135833,7 +136033,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitil-4ad8ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitil-4ad8ba.png" }, { "if": { @@ -135847,7 +136047,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-970753.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-970753.svg" }, { "if": { @@ -135861,7 +136061,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valesa-3ce1ab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valesa-3ce1ab.jpg" }, { "if": { @@ -135875,7 +136075,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-892a1b.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-892a1b.png" }, { "if": { @@ -135889,7 +136089,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-586af6.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-586af6.png" }, { "if": { @@ -135903,7 +136103,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-9a0f48.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-9a0f48.png" }, { "if": { @@ -135917,7 +136117,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-9e91b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-9e91b2.jpg" }, { "if": { @@ -135931,7 +136131,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontelectricpowercompany-e6e703.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-e6e703.jpg" }, { "if": { @@ -135945,7 +136145,7 @@ } ] }, - "then": "./assets/data/nsi/logos/versantpower-c6deed.png" + "then": "https://data.mapcomplete.org/nsi//logos/versantpower-c6deed.png" }, { "if": { @@ -135959,7 +136159,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vestall-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vestall-c20ae5.svg" }, { "if": { @@ -135973,7 +136173,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vevig-c20ae5.png" + "then": "https://data.mapcomplete.org/nsi//logos/vevig-c20ae5.png" }, { "if": { @@ -135987,7 +136187,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viesgodistribucionelectrica-69d425.png" + "then": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-69d425.png" }, { "if": { @@ -136001,7 +136201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visayanelectric-d1f649.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visayanelectric-d1f649.jpg" }, { "if": { @@ -136015,7 +136215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vissi-c20ae5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vissi-c20ae5.svg" }, { "if": { @@ -136030,7 +136230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskadistribucna-9271f5.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-9271f5.png" }, { "if": { @@ -136044,7 +136244,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-7b80e6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-7b80e6.jpg" }, { "if": { @@ -136058,7 +136258,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wemagnetzgmbh-89cf7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/wemagnetzgmbh-89cf7c.png" }, { "if": { @@ -136072,7 +136272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westpennpower-ebbe72.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westpennpower-ebbe72.jpg" }, { "if": { @@ -136087,7 +136287,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernareapoweradministration-bdcff1.png" + "then": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-bdcff1.png" }, { "if": { @@ -136102,7 +136302,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westfalenwesernetz-d92498.svg" + "then": "https://data.mapcomplete.org/nsi//logos/westfalenwesernetz-d92498.svg" }, { "if": { @@ -136116,7 +136316,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westnetz-586af6.png" + "then": "https://data.mapcomplete.org/nsi//logos/westnetz-586af6.png" }, { "if": { @@ -136130,7 +136330,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-9e91b2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-9e91b2.jpg" }, { "if": { @@ -136144,7 +136344,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienernetze-9e91b2.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienernetze-9e91b2.png" }, { "if": { @@ -136158,7 +136358,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-bdcff1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-bdcff1.jpg" }, { "if": { @@ -136172,7 +136372,7 @@ } ] }, - "then": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-c229b9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-c229b9.svg" }, { "if": { @@ -136186,7 +136386,7 @@ } ] }, - "then": "./assets/data/nsi/logos/788cf3-05655c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/788cf3-05655c.jpg" }, { "if": { @@ -136200,7 +136400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/7c17ff-ff50a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/7c17ff-ff50a8.jpg" }, { "if": { @@ -136214,7 +136414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/f36860-ff50a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/f36860-ff50a8.jpg" }, { "if": { @@ -136228,7 +136428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/084a1e-ff50a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/084a1e-ff50a8.jpg" }, { "if": { @@ -136242,7 +136442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cc48e9-ff50a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cc48e9-ff50a8.jpg" }, { "if": { @@ -136256,7 +136456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dd2584-ff50a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dd2584-ff50a8.jpg" }, { "if": { @@ -136270,7 +136470,7 @@ } ] }, - "then": "./assets/data/nsi/logos/9e843b-ff50a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/9e843b-ff50a8.jpg" }, { "if": { @@ -136284,7 +136484,7 @@ } ] }, - "then": "./assets/data/nsi/logos/8fc412-588b2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/8fc412-588b2e.png" }, { "if": { @@ -136298,7 +136498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/1fc076-588b2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/1fc076-588b2e.jpg" }, { "if": { @@ -136312,7 +136512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/472734-ff50a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/472734-ff50a8.jpg" }, { "if": { @@ -136328,7 +136528,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tunisiancompanyofelectricityandgas-fa07c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tunisiancompanyofelectricityandgas-fa07c9.jpg" }, { "if": { @@ -136344,7 +136544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-ded989.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-ded989.jpg" }, { "if": { @@ -136361,7 +136561,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-27f90a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-27f90a.jpg" }, { "if": { @@ -136384,7 +136584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clppowerhongkonglimited-c1db1f.png" + "then": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-c1db1f.png" }, { "if": { @@ -136400,7 +136600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chubuelectricpowergridcompany-57f06a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-57f06a.svg" }, { "if": { @@ -136416,7 +136616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-57f06a.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-57f06a.png" }, { "if": { @@ -136433,7 +136633,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-57f06a.png" + "then": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-57f06a.png" }, { "if": { @@ -136447,7 +136647,7 @@ } ] }, - "then": "./assets/data/nsi/logos/34ba0b-5c8f5d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/34ba0b-5c8f5d.jpg" }, { "if": { @@ -136463,7 +136663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tepcopowergrid-57f06a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-57f06a.svg" }, { "if": { @@ -136480,7 +136680,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okinawaelectricpowercompany-57f06a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-57f06a.jpg" }, { "if": { @@ -136496,7 +136696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jpowertransmissionnetwork-57f06a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/jpowertransmissionnetwork-57f06a.svg" }, { "if": { @@ -136519,7 +136719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-c1db1f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-c1db1f.jpg" }, { "if": { @@ -136533,7 +136733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/50hertztransmission-e097a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-e097a8.svg" }, { "if": { @@ -136547,7 +136747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a2a-713962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a2a-713962.jpg" }, { "if": { @@ -136561,7 +136761,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aceadistribuzione-713962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/aceadistribuzione-713962.jpg" }, { "if": { @@ -136575,7 +136775,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adif-489479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adif-489479.jpg" }, { "if": { @@ -136589,7 +136789,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aepohio-2f96e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/aepohio-2f96e1.png" }, { "if": { @@ -136603,7 +136803,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aeptexas-70fbe7.png" + "then": "https://data.mapcomplete.org/nsi//logos/aeptexas-70fbe7.png" }, { "if": { @@ -136617,7 +136817,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-43b659.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-43b659.png" }, { "if": { @@ -136631,7 +136831,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aew-5e4e63.png" + "then": "https://data.mapcomplete.org/nsi//logos/aew-5e4e63.png" }, { "if": { @@ -136645,7 +136845,7 @@ } ] }, - "then": "./assets/data/nsi/logos/agderenergi-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/agderenergi-7fe9fe.svg" }, { "if": { @@ -136659,7 +136859,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamapower-a5723a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamapower-a5723a.jpg" }, { "if": { @@ -136674,7 +136874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albtalverkehrsgesellschaftmbh-645c81.png" + "then": "https://data.mapcomplete.org/nsi//logos/albtalverkehrsgesellschaftmbh-645c81.png" }, { "if": { @@ -136688,7 +136888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albwerk-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/albwerk-645c81.jpg" }, { "if": { @@ -136703,7 +136903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/allgaueruberlandwerk-99c86a.png" + "then": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-99c86a.png" }, { "if": { @@ -136717,7 +136917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alliantenergy-9a842a.png" + "then": "https://data.mapcomplete.org/nsi//logos/alliantenergy-9a842a.png" }, { "if": { @@ -136731,7 +136931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alpineenergy-a6e13b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alpineenergy-a6e13b.jpg" }, { "if": { @@ -136745,7 +136945,7 @@ } ] }, - "then": "./assets/data/nsi/logos/altalink-8b0dc6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/altalink-8b0dc6.jpg" }, { "if": { @@ -136759,7 +136959,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ameren-049175.png" + "then": "https://data.mapcomplete.org/nsi//logos/ameren-049175.png" }, { "if": { @@ -136774,7 +136974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanelectricpower-9a842a.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-9a842a.png" }, { "if": { @@ -136788,7 +136988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amprion-e097a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/amprion-e097a8.svg" }, { "if": { @@ -136802,7 +137002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtrak-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtrak-9a842a.jpg" }, { "if": { @@ -136816,7 +137016,7 @@ } ] }, - "then": "./assets/data/nsi/logos/anaheimpublicutilities-a1ef23.png" + "then": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-a1ef23.png" }, { "if": { @@ -136830,7 +137030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ande-1b412c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ande-1b412c.jpg" }, { "if": { @@ -136844,7 +137044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appalachianpowercompany-9aaa69.png" + "then": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-9aaa69.png" }, { "if": { @@ -136858,7 +137058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arizonapublicservice-b6d642.png" + "then": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-b6d642.png" }, { "if": { @@ -136872,7 +137072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-0a90d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-0a90d3.jpg" }, { "if": { @@ -136886,7 +137086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atcoelectric-907aac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atcoelectric-907aac.svg" }, { "if": { @@ -136900,7 +137100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atlanticcityelectric-0e9d9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-0e9d9b.jpg" }, { "if": { @@ -136914,7 +137114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/augstspriegumatikls-79b2b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-79b2b7.png" }, { "if": { @@ -136928,7 +137128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/auroraenergy-05e84a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/auroraenergy-05e84a.jpg" }, { "if": { @@ -136942,7 +137142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausgrid-17e0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausgrid-17e0e3.jpg" }, { "if": { @@ -136956,7 +137156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ausnet-d07c0c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ausnet-d07c0c.jpg" }, { "if": { @@ -136970,7 +137170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-70fbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-70fbe7.jpg" }, { "if": { @@ -136984,7 +137184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avaconnetz-f46145.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avaconnetz-f46145.svg" }, { "if": { @@ -136998,7 +137198,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avista-7c3ee6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/avista-7c3ee6.jpg" }, { "if": { @@ -137012,7 +137212,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avuag-ad09f9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avuag-ad09f9.svg" }, { "if": { @@ -137026,7 +137226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axpoekz-41d358.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axpoekz-41d358.jpg" }, { "if": { @@ -137040,7 +137240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/baltimoregasandelectric-2e2532.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-2e2532.jpg" }, { "if": { @@ -137054,7 +137254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banenor-7fe9fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/banenor-7fe9fe.png" }, { "if": { @@ -137068,7 +137268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banedanmark-694f23.png" + "then": "https://data.mapcomplete.org/nsi//logos/banedanmark-694f23.png" }, { "if": { @@ -137082,7 +137282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bchydro-401b6b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bchydro-401b6b.jpg" }, { "if": { @@ -137096,7 +137296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bedas-31b591.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bedas-31b591.jpg" }, { "if": { @@ -137111,7 +137311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/belizeelectricitylimited-94b790.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-94b790.jpg" }, { "if": { @@ -137125,7 +137325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bentonpublicutilitydistrict-401d11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bentonpublicutilitydistrict-401d11.jpg" }, { "if": { @@ -137139,7 +137339,7 @@ } ] }, - "then": "./assets/data/nsi/logos/berlinerverkehrsbetriebe-26ff34.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/berlinerverkehrsbetriebe-26ff34.jpg" }, { "if": { @@ -137153,7 +137353,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkk-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bkk-7fe9fe.svg" }, { "if": { @@ -137167,7 +137367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bkw-b75b2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/bkw-b75b2e.png" }, { "if": { @@ -137181,7 +137381,7 @@ } ] }, - "then": "./assets/data/nsi/logos/blueridgeenergy-458d87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-458d87.jpg" }, { "if": { @@ -137196,7 +137396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bluebonnetelectriccooperative-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bluebonnetelectriccooperative-9a842a.jpg" }, { "if": { @@ -137210,7 +137410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnnetze-645c81.png" + "then": "https://data.mapcomplete.org/nsi//logos/bnnetze-645c81.png" }, { "if": { @@ -137225,7 +137425,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bonnevillepoweradministration-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-9a842a.jpg" }, { "if": { @@ -137239,7 +137439,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bornholmsenergiandforsyning-cf3ef6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-cf3ef6.jpg" }, { "if": { @@ -137254,7 +137454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/braunschweigerverkehrsgmbh-d8137c.png" + "then": "https://data.mapcomplete.org/nsi//logos/braunschweigerverkehrsgmbh-d8137c.png" }, { "if": { @@ -137269,7 +137469,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bremerstrassenbahnag-d1d6a2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bremerstrassenbahnag-d1d6a2.svg" }, { "if": { @@ -137283,7 +137483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brightridge-3fded7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/brightridge-3fded7.jpg" }, { "if": { @@ -137297,7 +137497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bryantexasutilities-70fbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-70fbe7.jpg" }, { "if": { @@ -137311,7 +137511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/caruna-5ad418.svg" + "then": "https://data.mapcomplete.org/nsi//logos/caruna-5ad418.svg" }, { "if": { @@ -137325,7 +137525,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cdeee-0e05aa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cdeee-0e05aa.jpg" }, { "if": { @@ -137339,7 +137539,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceee-dc5268.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ceee-dc5268.svg" }, { "if": { @@ -137353,7 +137553,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celesc-dc5268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celesc-dc5268.jpg" }, { "if": { @@ -137368,7 +137568,7 @@ } ] }, - "then": "./assets/data/nsi/logos/celleuelzennetz-d8137c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/celleuelzennetz-d8137c.jpg" }, { "if": { @@ -137382,7 +137582,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cemig-dc5268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cemig-dc5268.jpg" }, { "if": { @@ -137396,7 +137596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centerpointenergy-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-9a842a.jpg" }, { "if": { @@ -137410,7 +137610,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralmainepowercompany-289571.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-289571.jpg" }, { "if": { @@ -137424,7 +137624,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centraltexaselectriccooperative-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centraltexaselectriccooperative-9a842a.jpg" }, { "if": { @@ -137438,7 +137638,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceps-ecf5fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceps-ecf5fe.jpg" }, { "if": { @@ -137453,7 +137653,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceylonelectricityboard-c43671.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-c43671.png" }, { "if": { @@ -137467,7 +137667,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cge-1cd455.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cge-1cd455.jpg" }, { "if": { @@ -137482,7 +137682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chicagotransitauthority-60c111.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chicagotransitauthority-60c111.jpg" }, { "if": { @@ -137496,7 +137696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cipco-ed770b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cipco-ed770b.jpg" }, { "if": { @@ -137514,7 +137714,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityofcapetown-8cd021.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-8cd021.png" }, { "if": { @@ -137528,7 +137728,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoflakeland-c33728.png" + "then": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-c33728.png" }, { "if": { @@ -137542,7 +137742,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cityoftallahassee-c33728.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-c33728.jpg" }, { "if": { @@ -137557,7 +137757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/citywaterlightandpower-60c111.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/citywaterlightandpower-60c111.jpg" }, { "if": { @@ -137571,7 +137771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clarkpublicutilities-401d11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-401d11.jpg" }, { "if": { @@ -137585,7 +137785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clayelectriccooperative-c33728.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-c33728.jpg" }, { "if": { @@ -137599,7 +137799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cleco-9b6869.svg" + "then": "https://data.mapcomplete.org/nsi//logos/cleco-9b6869.svg" }, { "if": { @@ -137613,7 +137813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coastmountainbuscompany-401b6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/coastmountainbuscompany-401b6b.png" }, { "if": { @@ -137627,7 +137827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codelcochile-1cd455.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/codelcochile-1cd455.jpg" }, { "if": { @@ -137641,7 +137841,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coelba-dc5268.png" + "then": "https://data.mapcomplete.org/nsi//logos/coelba-dc5268.png" }, { "if": { @@ -137655,7 +137855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colbun-1cd455.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/colbun-1cd455.jpg" }, { "if": { @@ -137669,7 +137869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/colonialpipeline-9a842a.png" + "then": "https://data.mapcomplete.org/nsi//logos/colonialpipeline-9a842a.png" }, { "if": { @@ -137683,7 +137883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/coloradospringsutilities-dbd23d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-dbd23d.jpg" }, { "if": { @@ -137698,7 +137898,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comisionfederaldeelectricidad-2d15fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-2d15fd.png" }, { "if": { @@ -137712,7 +137912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/commonwealthedison-b9c53a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-b9c53a.jpg" }, { "if": { @@ -137727,7 +137927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/compagniavaldostanaacque-713962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/compagniavaldostanaacque-713962.jpg" }, { "if": { @@ -137742,7 +137942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/companhiapaulistadetrensmetropolitanos-dc5268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/companhiapaulistadetrensmetropolitanos-dc5268.jpg" }, { "if": { @@ -137756,7 +137956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consolidatededison-81dd91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/consolidatededison-81dd91.jpg" }, { "if": { @@ -137770,7 +137970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/consumersenergy-a3e4d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/consumersenergy-a3e4d0.png" }, { "if": { @@ -137784,7 +137984,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copel-dc5268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copel-dc5268.jpg" }, { "if": { @@ -137798,7 +137998,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornbeltenergycorporation-60c111.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornbeltenergycorporation-60c111.jpg" }, { "if": { @@ -137812,7 +138012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cornbeltpowercooperative-ed770b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-ed770b.jpg" }, { "if": { @@ -137826,7 +138026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/corpoelec-eee9f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/corpoelec-eee9f7.png" }, { "if": { @@ -137840,7 +138040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cosern-dc5268.png" + "then": "https://data.mapcomplete.org/nsi//logos/cosern-dc5268.png" }, { "if": { @@ -137854,7 +138054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpflenergia-dc5268.png" + "then": "https://data.mapcomplete.org/nsi//logos/cpflenergia-dc5268.png" }, { "if": { @@ -137868,7 +138068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cpsenergy-70fbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cpsenergy-70fbe7.jpg" }, { "if": { @@ -137882,7 +138082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/creos-d85a73.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/creos-d85a73.jpg" }, { "if": { @@ -137896,7 +138096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cullmanelectriccooperative-a5723a.png" + "then": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-a5723a.png" }, { "if": { @@ -137910,7 +138110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dairylandpowercooperative-9dceab.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-9dceab.jpg" }, { "if": { @@ -137924,7 +138124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/davaolightandpowercompany-d6fa7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/davaolightandpowercompany-d6fa7d.png" }, { "if": { @@ -137938,7 +138138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbenergie-e097a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbenergie-e097a8.svg" }, { "if": { @@ -137952,7 +138152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbinfrago-e097a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbinfrago-e097a8.svg" }, { "if": { @@ -137966,7 +138166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/decaturutilities-a5723a.png" + "then": "https://data.mapcomplete.org/nsi//logos/decaturutilities-a5723a.png" }, { "if": { @@ -137980,7 +138180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/delmarvapower-81dec4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/delmarvapower-81dec4.jpg" }, { "if": { @@ -137994,7 +138194,7 @@ } ] }, - "then": "./assets/data/nsi/logos/demco-9b6869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/demco-9b6869.jpg" }, { "if": { @@ -138008,7 +138208,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschebahn-e097a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutschebahn-e097a8.png" }, { "if": { @@ -138022,7 +138222,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dominionenergy-f9fb0f.png" + "then": "https://data.mapcomplete.org/nsi//logos/dominionenergy-f9fb0f.png" }, { "if": { @@ -138036,7 +138236,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dowchemicalcompany-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-9a842a.jpg" }, { "if": { @@ -138050,7 +138250,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dpp-5a056f.png" + "then": "https://data.mapcomplete.org/nsi//logos/dpp-5a056f.png" }, { "if": { @@ -138064,7 +138264,7 @@ } ] }, - "then": "./assets/data/nsi/logos/drewag-52cc32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/drewag-52cc32.jpg" }, { "if": { @@ -138078,7 +138278,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dteenergy-a3e4d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/dteenergy-a3e4d0.png" }, { "if": { @@ -138092,7 +138292,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergy-77b0c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergy-77b0c6.jpg" }, { "if": { @@ -138106,7 +138306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dukeenergyprogress-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-9a842a.jpg" }, { "if": { @@ -138120,7 +138320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/duquesnelight-c93538.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/duquesnelight-c93538.jpg" }, { "if": { @@ -138134,7 +138334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dvv-80fbfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/dvv-80fbfb.jpg" }, { "if": { @@ -138148,7 +138348,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edistribuzionespa-713962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edistribuzionespa-713962.jpg" }, { "if": { @@ -138162,7 +138362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enetzsudhessen-e097a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enetzsudhessen-e097a8.svg" }, { "if": { @@ -138176,7 +138376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eredes-e26b9a.png" + "then": "https://data.mapcomplete.org/nsi//logos/eredes-e26b9a.png" }, { "if": { @@ -138190,7 +138390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewerkmittelbaden-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewerkmittelbaden-645c81.jpg" }, { "if": { @@ -138204,7 +138404,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edisnetzgmbh-53fc23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-53fc23.jpg" }, { "if": { @@ -138218,7 +138418,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-636d24.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-636d24.png" }, { "if": { @@ -138232,7 +138432,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonnetz-e097a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonnetz-e097a8.svg" }, { "if": { @@ -138246,7 +138446,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastkentuckypowercooperative-72d60b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-72d60b.jpg" }, { "if": { @@ -138260,7 +138460,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastriverelectricpowercooperative-06599d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-06599d.jpg" }, { "if": { @@ -138274,7 +138474,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ednetze-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ednetze-645c81.jpg" }, { "if": { @@ -138288,7 +138488,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edenor-9f5ee2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edenor-9f5ee2.jpg" }, { "if": { @@ -138302,7 +138502,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edison-713962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edison-713962.jpg" }, { "if": { @@ -138316,7 +138516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpespiritosanto-187a44.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-187a44.svg" }, { "if": { @@ -138332,7 +138532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edprenovaveis-aaa4d2.svg" + "then": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-aaa4d2.svg" }, { "if": { @@ -138346,7 +138546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edpsaopaulo-dc5268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-dc5268.jpg" }, { "if": { @@ -138360,7 +138560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/efe-1cd455.svg" + "then": "https://data.mapcomplete.org/nsi//logos/efe-1cd455.svg" }, { "if": { @@ -138374,7 +138574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egd-5a056f.svg" + "then": "https://data.mapcomplete.org/nsi//logos/egd-5a056f.svg" }, { "if": { @@ -138388,7 +138588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eirgrid-fddd7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eirgrid-fddd7d.jpg" }, { "if": { @@ -138402,7 +138602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eks-4ca046.png" + "then": "https://data.mapcomplete.org/nsi//logos/eks-4ca046.png" }, { "if": { @@ -138416,7 +138616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekt-3d470b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ekt-3d470b.jpg" }, { "if": { @@ -138430,7 +138630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ekz-b75b2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/ekz-b75b2e.png" }, { "if": { @@ -138445,7 +138645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-636d24.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-636d24.png" }, { "if": { @@ -138459,7 +138659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitynorthwest-306792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-306792.jpg" }, { "if": { @@ -138473,7 +138673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrilevi-8b8dca.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrilevi-8b8dca.png" }, { "if": { @@ -138487,7 +138687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrizitatswerkereutte-a3f8c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkereutte-a3f8c7.png" }, { "if": { @@ -138501,7 +138701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elenia-5ad418.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elenia-5ad418.jpg" }, { "if": { @@ -138515,7 +138715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-8b8dca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-8b8dca.jpg" }, { "if": { @@ -138529,7 +138729,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eletropaulo-dc5268.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eletropaulo-dc5268.svg" }, { "if": { @@ -138543,7 +138743,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elia-4648a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/elia-4648a1.png" }, { "if": { @@ -138557,7 +138757,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ellevio-da9798.png" + "then": "https://data.mapcomplete.org/nsi//logos/ellevio-da9798.png" }, { "if": { @@ -138571,7 +138771,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elmu-d2172f.png" + "then": "https://data.mapcomplete.org/nsi//logos/elmu-d2172f.png" }, { "if": { @@ -138585,7 +138785,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elvia-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elvia-7fe9fe.svg" }, { "if": { @@ -138600,7 +138800,7 @@ } ] }, - "then": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-8ea204.png" + "then": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-8ea204.png" }, { "if": { @@ -138615,7 +138815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/empresaspublicasdemedellin-1e9fc0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/empresaspublicasdemedellin-1e9fc0.svg" }, { "if": { @@ -138629,7 +138829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-e097a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-e097a8.png" }, { "if": { @@ -138643,7 +138843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endeavourenergy-17e0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-17e0e3.jpg" }, { "if": { @@ -138657,7 +138857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/endesa-489479.png" + "then": "https://data.mapcomplete.org/nsi//logos/endesa-489479.png" }, { "if": { @@ -138671,7 +138871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enea-b34e65.png" + "then": "https://data.mapcomplete.org/nsi//logos/enea-b34e65.png" }, { "if": { @@ -138685,7 +138885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneco-611411.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneco-611411.png" }, { "if": { @@ -138699,7 +138899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enedis-723622.png" + "then": "https://data.mapcomplete.org/nsi//logos/enedis-723622.png" }, { "if": { @@ -138713,7 +138913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enel-636d24.png" + "then": "https://data.mapcomplete.org/nsi//logos/enel-636d24.png" }, { "if": { @@ -138727,7 +138927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribucionchile-1cd455.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribucionchile-1cd455.png" }, { "if": { @@ -138741,7 +138941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaoceara-dc5268.png" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-dc5268.png" }, { "if": { @@ -138755,7 +138955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-dc5268.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-dc5268.svg" }, { "if": { @@ -138769,7 +138969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelgreenpower-636d24.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-636d24.svg" }, { "if": { @@ -138783,7 +138983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enelproduzione-713962.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enelproduzione-713962.svg" }, { "if": { @@ -138797,7 +138997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enemalta-e6482f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enemalta-e6482f.jpg" }, { "if": { @@ -138811,7 +139011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enercon-e097a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/enercon-e097a8.svg" }, { "if": { @@ -138825,7 +139025,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-b34e65.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-b34e65.png" }, { "if": { @@ -138839,7 +139039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energex-c26b41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energex-c26b41.jpg" }, { "if": { @@ -138854,7 +139054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiasdeportugal-e26b9a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-e26b9a.svg" }, { "if": { @@ -138868,7 +139068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieag-c84cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieag-c84cac.jpg" }, { "if": { @@ -138882,7 +139082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiedumali-8afa3f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energiedumali-8afa3f.jpg" }, { "if": { @@ -138896,7 +139096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiegraz-d63e23.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiegraz-d63e23.png" }, { "if": { @@ -138910,7 +139110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieklagenfurtgmbh-60ead3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieklagenfurtgmbh-60ead3.jpg" }, { "if": { @@ -138924,7 +139124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiesteiermark-bb235b.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-bb235b.png" }, { "if": { @@ -138938,7 +139138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiethunag-c74f84.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiethunag-c74f84.png" }, { "if": { @@ -138953,7 +139153,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energiewaldeckfrankenberg-b05a85.png" + "then": "https://data.mapcomplete.org/nsi//logos/energiewaldeckfrankenberg-b05a85.png" }, { "if": { @@ -138968,7 +139168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energieversorgungmittelrhein-3d40d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-3d40d5.jpg" }, { "if": { @@ -138982,7 +139182,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energinet-694f23.png" + "then": "https://data.mapcomplete.org/nsi//logos/energinet-694f23.png" }, { "if": { @@ -138996,7 +139196,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enexis-dcd896.png" + "then": "https://data.mapcomplete.org/nsi//logos/enexis-dcd896.png" }, { "if": { @@ -139010,7 +139210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-636d24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-636d24.jpg" }, { "if": { @@ -139024,7 +139224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enipower-713962.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enipower-713962.jpg" }, { "if": { @@ -139038,7 +139238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enmax-8b0dc6.png" + "then": "https://data.mapcomplete.org/nsi//logos/enmax-8b0dc6.png" }, { "if": { @@ -139052,7 +139252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enrwenergieversorgungrottweil-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/enrwenergieversorgungrottweil-645c81.jpg" }, { "if": { @@ -139066,7 +139266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-c224fd.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-c224fd.png" }, { "if": { @@ -139080,7 +139280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entega-b05a85.png" + "then": "https://data.mapcomplete.org/nsi//logos/entega-b05a85.png" }, { "if": { @@ -139094,7 +139294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergy-1cd4ae.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergy-1cd4ae.jpg" }, { "if": { @@ -139108,7 +139308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergyarkansas-0a90d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-0a90d3.jpg" }, { "if": { @@ -139122,7 +139322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/entergylouisiana-785c01.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-785c01.jpg" }, { "if": { @@ -139136,7 +139336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enviam-eee5a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/enviam-eee5a0.png" }, { "if": { @@ -139150,7 +139350,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enwor-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/enwor-ad09f9.png" }, { "if": { @@ -139164,7 +139364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epb-d455af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epb-d455af.jpg" }, { "if": { @@ -139178,7 +139378,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epcor-f6996f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epcor-f6996f.jpg" }, { "if": { @@ -139192,7 +139392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/epec-898214.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/epec-898214.jpg" }, { "if": { @@ -139206,7 +139406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eps-c7be96.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eps-c7be96.svg" }, { "if": { @@ -139220,7 +139420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equatorialenergiapiaui-17f0f4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-17f0f4.jpg" }, { "if": { @@ -139234,7 +139434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ergonenergy-c26b41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ergonenergy-c26b41.jpg" }, { "if": { @@ -139249,7 +139449,7 @@ } ] }, - "then": "./assets/data/nsi/logos/erlangerstadtwerke-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/erlangerstadtwerke-40fb94.jpg" }, { "if": { @@ -139263,7 +139463,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbnetworks-fddd7d.png" + "then": "https://data.mapcomplete.org/nsi//logos/esbnetworks-fddd7d.png" }, { "if": { @@ -139277,7 +139477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eskom-8cd021.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eskom-8cd021.jpg" }, { "if": { @@ -139291,7 +139491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/essentialenergy-028f77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/essentialenergy-028f77.jpg" }, { "if": { @@ -139306,7 +139506,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ethiopianelectricpower-5e1f94.png" + "then": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-5e1f94.png" }, { "if": { @@ -139321,7 +139521,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eugenewaterandelectricboard-8ea204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-8ea204.jpg" }, { "if": { @@ -139336,7 +139536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evaenergieversorgungapolda-f3bd8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evaenergieversorgungapolda-f3bd8a.jpg" }, { "if": { @@ -139350,7 +139550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-7e4526.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-7e4526.jpg" }, { "if": { @@ -139364,7 +139564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eversource-d51e21.png" + "then": "https://data.mapcomplete.org/nsi//logos/eversource-d51e21.png" }, { "if": { @@ -139378,7 +139578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-c84cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-c84cac.jpg" }, { "if": { @@ -139393,7 +139593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-1127e0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-1127e0.svg" }, { "if": { @@ -139407,7 +139607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evo-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evo-ad09f9.jpg" }, { "if": { @@ -139421,7 +139621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evoenergy-222d1c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evoenergy-222d1c.jpg" }, { "if": { @@ -139435,7 +139635,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evs-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/evs-ad09f9.png" }, { "if": { @@ -139449,7 +139649,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewaenergieuri-bd81bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ewaenergieuri-bd81bf.svg" }, { "if": { @@ -139463,7 +139663,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewe-e097a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewe-e097a8.jpg" }, { "if": { @@ -139477,7 +139677,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewmag-e097a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/ewmag-e097a8.png" }, { "if": { @@ -139491,7 +139691,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewr-77b208.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewr-77b208.jpg" }, { "if": { @@ -139505,7 +139705,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eww-004bba.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eww-004bba.jpg" }, { "if": { @@ -139519,7 +139719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ewz-b75b2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ewz-b75b2e.jpg" }, { "if": { @@ -139533,7 +139733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ezv-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ezv-40fb94.jpg" }, { "if": { @@ -139547,7 +139747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fagne-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fagne-7fe9fe.svg" }, { "if": { @@ -139562,7 +139762,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fayettevillepublicworkscommission-458d87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-458d87.jpg" }, { "if": { @@ -139576,7 +139776,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fingrid-5ad418.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fingrid-5ad418.jpg" }, { "if": { @@ -139590,7 +139790,7 @@ } ] }, - "then": "./assets/data/nsi/logos/firstenergy-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/firstenergy-9a842a.jpg" }, { "if": { @@ -139604,7 +139804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fjellnett-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/fjellnett-7fe9fe.svg" }, { "if": { @@ -139618,7 +139818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/floridapowerandlight-c33728.png" + "then": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-c33728.png" }, { "if": { @@ -139632,7 +139832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flughafenzurichag-41d358.svg" + "then": "https://data.mapcomplete.org/nsi//logos/flughafenzurichag-41d358.svg" }, { "if": { @@ -139646,7 +139846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fluvius-4648a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fluvius-4648a1.jpg" }, { "if": { @@ -139660,7 +139860,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortisbc-401b6b.png" + "then": "https://data.mapcomplete.org/nsi//logos/fortisbc-401b6b.png" }, { "if": { @@ -139674,7 +139874,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fortum-2e1f9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/fortum-2e1f9b.jpg" }, { "if": { @@ -139688,7 +139888,7 @@ } ] }, - "then": "./assets/data/nsi/logos/furnascentraiseletricas-dc5268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-dc5268.jpg" }, { "if": { @@ -139703,7 +139903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gainesvilleregionalutilities-c33728.png" + "then": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-c33728.png" }, { "if": { @@ -139717,7 +139917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gavleenergi-da9798.png" + "then": "https://data.mapcomplete.org/nsi//logos/gavleenergi-da9798.png" }, { "if": { @@ -139731,7 +139931,7 @@ } ] }, - "then": "./assets/data/nsi/logos/geg-bc2a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/geg-bc2a36.jpg" }, { "if": { @@ -139746,7 +139946,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gewwilhelmshaven-d8137c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gewwilhelmshaven-d8137c.jpg" }, { "if": { @@ -139760,7 +139960,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gladeselectriccoop-c33728.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-c33728.jpg" }, { "if": { @@ -139774,7 +139974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/glitrenett-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/glitrenett-7fe9fe.svg" }, { "if": { @@ -139788,7 +139988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goldenspreadelectriccooperative-70fbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-70fbe7.jpg" }, { "if": { @@ -139803,7 +140003,7 @@ } ] }, - "then": "./assets/data/nsi/logos/grandriverdamauthority-bab4e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-bab4e4.jpg" }, { "if": { @@ -139817,7 +140017,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greatriverenergy-9a842a.png" + "then": "https://data.mapcomplete.org/nsi//logos/greatriverenergy-9a842a.png" }, { "if": { @@ -139831,7 +140031,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenevilleenergyauthority-3fded7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-3fded7.jpg" }, { "if": { @@ -139845,7 +140045,7 @@ } ] }, - "then": "./assets/data/nsi/logos/greenvilleutilitiescommission-458d87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-458d87.jpg" }, { "if": { @@ -139859,7 +140059,7 @@ } ] }, - "then": "./assets/data/nsi/logos/groupee-b75b2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/groupee-b75b2e.jpg" }, { "if": { @@ -139874,7 +140074,7 @@ } ] }, - "then": "./assets/data/nsi/logos/guadalupevalleyelectriccooperative-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/guadalupevalleyelectriccooperative-9a842a.jpg" }, { "if": { @@ -139888,7 +140088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hansewerk-e097a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hansewerk-e097a8.jpg" }, { "if": { @@ -139902,7 +140102,7 @@ } ] }, - "then": "./assets/data/nsi/logos/harzenergie-e097a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/harzenergie-e097a8.jpg" }, { "if": { @@ -139916,7 +140116,7 @@ } ] }, - "then": "./assets/data/nsi/logos/haugalandkraftnett-7fe9fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-7fe9fe.png" }, { "if": { @@ -139930,7 +140130,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hawaiianelectriccompany-151da3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-151da3.jpg" }, { "if": { @@ -139944,7 +140144,7 @@ } ] }, - "then": "./assets/data/nsi/logos/holmeswayneelectriccooperative-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/holmeswayneelectriccooperative-9a842a.jpg" }, { "if": { @@ -139958,7 +140158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hoosierenergy-997648.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hoosierenergy-997648.jpg" }, { "if": { @@ -139972,7 +140172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hs1ltd-35338a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hs1ltd-35338a.svg" }, { "if": { @@ -139986,7 +140186,7 @@ } ] }, - "then": "./assets/data/nsi/logos/huntsvilleutilities-a5723a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-a5723a.jpg" }, { "if": { @@ -140000,7 +140200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroottawa-88d972.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hydroottawa-88d972.svg" }, { "if": { @@ -140014,7 +140214,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydrotasmania-e46949.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/hydrotasmania-e46949.jpg" }, { "if": { @@ -140028,7 +140228,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-40df57.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-40df57.png" }, { "if": { @@ -140042,7 +140242,7 @@ } ] }, - "then": "./assets/data/nsi/logos/iberdrola-636d24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/iberdrola-636d24.jpg" }, { "if": { @@ -140056,7 +140256,7 @@ } ] }, - "then": "./assets/data/nsi/logos/idahopower-0840f5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/idahopower-0840f5.jpg" }, { "if": { @@ -140070,7 +140270,7 @@ } ] }, - "then": "./assets/data/nsi/logos/illwerkevkw-c84cac.png" + "then": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-c84cac.png" }, { "if": { @@ -140085,7 +140285,7 @@ } ] }, - "then": "./assets/data/nsi/logos/imperialirrigationdistrict-a1ef23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-a1ef23.jpg" }, { "if": { @@ -140099,7 +140299,7 @@ } ] }, - "then": "./assets/data/nsi/logos/independencepowerandlight-148d30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-148d30.jpg" }, { "if": { @@ -140114,7 +140314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianamichiganpower-513574.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-513574.png" }, { "if": { @@ -140129,7 +140329,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianapolispowerandlight-d0bea9.png" + "then": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-d0bea9.png" }, { "if": { @@ -140143,7 +140343,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infrafurth-40fb94.png" + "then": "https://data.mapcomplete.org/nsi//logos/infrafurth-40fb94.png" }, { "if": { @@ -140157,7 +140357,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infrabel-4648a1.png" + "then": "https://data.mapcomplete.org/nsi//logos/infrabel-4648a1.png" }, { "if": { @@ -140171,7 +140371,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infraestruturasdeportugal-e26b9a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/infraestruturasdeportugal-e26b9a.jpg" }, { "if": { @@ -140185,7 +140385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/innogy-8c57c6.svg" + "then": "https://data.mapcomplete.org/nsi//logos/innogy-8c57c6.svg" }, { "if": { @@ -140200,7 +140400,7 @@ } ] }, - "then": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-93b425.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-93b425.jpg" }, { "if": { @@ -140214,7 +140414,7 @@ } ] }, - "then": "./assets/data/nsi/logos/invenergy-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/invenergy-9a842a.jpg" }, { "if": { @@ -140228,7 +140428,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ipto-922fc1.png" + "then": "https://data.mapcomplete.org/nsi//logos/ipto-922fc1.png" }, { "if": { @@ -140242,7 +140442,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irenenergia-713962.png" + "then": "https://data.mapcomplete.org/nsi//logos/irenenergia-713962.png" }, { "if": { @@ -140258,7 +140458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishrail-fddd7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishrail-fddd7d.jpg" }, { "if": { @@ -140272,7 +140472,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itc-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/itc-9a842a.jpg" }, { "if": { @@ -140286,7 +140486,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonenergyauthority-3fded7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-3fded7.jpg" }, { "if": { @@ -140301,7 +140501,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jacksonvilleelectricauthority-a9ebfc.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-a9ebfc.jpg" }, { "if": { @@ -140316,7 +140516,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseycentralpowerandlight-6ae7d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-6ae7d0.jpg" }, { "if": { @@ -140330,7 +140530,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jerseyelectricitycompany-c279ee.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jerseyelectricitycompany-c279ee.jpg" }, { "if": { @@ -140344,7 +140544,7 @@ } ] }, - "then": "./assets/data/nsi/logos/joewheeleremc-a5723a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-a5723a.jpg" }, { "if": { @@ -140358,7 +140558,7 @@ } ] }, - "then": "./assets/data/nsi/logos/jonesborocitywaterandlight-0a90d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-0a90d3.jpg" }, { "if": { @@ -140377,7 +140577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastjapanrailwaycompany-2c1653.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-2c1653.png" }, { "if": { @@ -140392,7 +140592,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kansascityboardofpublicutilities-5fb284.png" + "then": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-5fb284.png" }, { "if": { @@ -140407,7 +140607,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kauaiislandutilitycooperative-151da3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kauaiislandutilitycooperative-151da3.jpg" }, { "if": { @@ -140421,7 +140621,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kentuckypower-505574.png" + "then": "https://data.mapcomplete.org/nsi//logos/kentuckypower-505574.png" }, { "if": { @@ -140436,7 +140636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/keralastateelectricityboard-1b8373.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-1b8373.jpg" }, { "if": { @@ -140450,7 +140650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kissimmeeutilityauthority-c33728.png" + "then": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-c33728.png" }, { "if": { @@ -140464,7 +140664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kiwirail-05e84a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kiwirail-05e84a.jpg" }, { "if": { @@ -140479,7 +140679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/knoxvilleutilitiesboard-3fded7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-3fded7.jpg" }, { "if": { @@ -140493,7 +140693,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kommenergie-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kommenergie-40fb94.jpg" }, { "if": { @@ -140507,7 +140707,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kreiswerkemainkinzig-b05a85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kreiswerkemainkinzig-b05a85.jpg" }, { "if": { @@ -140521,7 +140721,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kystnett-7fe9fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kystnett-7fe9fe.jpg" }, { "if": { @@ -140536,7 +140736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-a1ef23.png" + "then": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-a1ef23.png" }, { "if": { @@ -140551,7 +140751,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lafayetteutilitiessystem-9b6869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-9b6869.jpg" }, { "if": { @@ -140566,7 +140766,7 @@ } ] }, - "then": "./assets/data/nsi/logos/leecountyelectriccooperative-c33728.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-c33728.jpg" }, { "if": { @@ -140581,7 +140781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lechwerke-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lechwerke-40fb94.jpg" }, { "if": { @@ -140595,7 +140795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liander-dcd896.png" + "then": "https://data.mapcomplete.org/nsi//logos/liander-dcd896.png" }, { "if": { @@ -140609,7 +140809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lincolnelectricsystem-5b199d.png" + "then": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-5b199d.png" }, { "if": { @@ -140623,7 +140823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linja-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/linja-7fe9fe.svg" }, { "if": { @@ -140637,7 +140837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/linzag-f02bb8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/linzag-f02bb8.jpg" }, { "if": { @@ -140651,7 +140851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/londonunderground-306792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/londonunderground-306792.jpg" }, { "if": { @@ -140665,7 +140865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lorainmedinaruralelectriccooperative-2f96e1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lorainmedinaruralelectriccooperative-2f96e1.jpg" }, { "if": { @@ -140680,7 +140880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-70fbe7.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-70fbe7.png" }, { "if": { @@ -140694,7 +140894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswnetz-d8137c.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswnetz-d8137c.png" }, { "if": { @@ -140708,7 +140908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/luastransdevdublinlightraillimited-fddd7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/luastransdevdublinlightraillimited-fddd7d.jpg" }, { "if": { @@ -140723,7 +140923,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubbockpowerandlight-70fbe7.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-70fbe7.png" }, { "if": { @@ -140737,7 +140937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lyse-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/lyse-7fe9fe.svg" }, { "if": { @@ -140752,7 +140952,7 @@ } ] }, - "then": "./assets/data/nsi/logos/magdeburgerverkehrsbetriebe-80fbfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/magdeburgerverkehrsbetriebe-80fbfb.jpg" }, { "if": { @@ -140766,7 +140966,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manitobahydro-4c81de.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manitobahydro-4c81de.svg" }, { "if": { @@ -140780,7 +140980,7 @@ } ] }, - "then": "./assets/data/nsi/logos/maquoketavalleyrec-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/maquoketavalleyrec-9a842a.jpg" }, { "if": { @@ -140794,7 +140994,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marathonpipeline-9a842a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/marathonpipeline-9a842a.svg" }, { "if": { @@ -140808,7 +141008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marke-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marke-ad09f9.jpg" }, { "if": { @@ -140822,7 +141022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshallmunicipalutilities-c7fa5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-c7fa5f.jpg" }, { "if": { @@ -140836,7 +141036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-a5723a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-a5723a.jpg" }, { "if": { @@ -140851,7 +141051,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphislightgasandwater-3fded7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-3fded7.jpg" }, { "if": { @@ -140865,7 +141065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meralco-d6fa7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meralco-d6fa7d.jpg" }, { "if": { @@ -140879,7 +141079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meted-c93538.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meted-c93538.jpg" }, { "if": { @@ -140893,7 +141093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/metra-60c111.png" + "then": "https://data.mapcomplete.org/nsi//logos/metra-60c111.png" }, { "if": { @@ -140907,7 +141107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midamericanenergy-517f79.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-517f79.jpg" }, { "if": { @@ -140921,7 +141121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/midwestenergy-5fb284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/midwestenergy-5fb284.jpg" }, { "if": { @@ -140935,7 +141135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-c7fa5f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-c7fa5f.jpg" }, { "if": { @@ -140949,7 +141149,7 @@ } ] }, - "then": "./assets/data/nsi/logos/minnkotapowercooperative-47dd8c.png" + "then": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-47dd8c.png" }, { "if": { @@ -140963,7 +141163,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mississippipower-37fac4.png" + "then": "https://data.mapcomplete.org/nsi//logos/mississippipower-37fac4.png" }, { "if": { @@ -140977,7 +141177,7 @@ } ] }, - "then": "./assets/data/nsi/logos/monpower-1cd21e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/monpower-1cd21e.jpg" }, { "if": { @@ -140991,7 +141191,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nampower-71c590.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nampower-71c590.svg" }, { "if": { @@ -141006,7 +141206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nashvilleelectricservice-3fded7.png" + "then": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-3fded7.png" }, { "if": { @@ -141020,7 +141220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgrid-6eb91f.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgrid-6eb91f.png" }, { "if": { @@ -141035,7 +141235,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-d6fa7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-d6fa7d.jpg" }, { "if": { @@ -141049,7 +141249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitydistribution-306792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-306792.jpg" }, { "if": { @@ -141063,7 +141263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridelectricitytransmission-306792.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-306792.svg" }, { "if": { @@ -141079,7 +141279,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbpower-6196b9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/nbpower-6196b9.svg" }, { "if": { @@ -141093,7 +141293,7 @@ } ] }, - "then": "./assets/data/nsi/logos/neoenergia-dc5268.svg" + "then": "https://data.mapcomplete.org/nsi//logos/neoenergia-dc5268.svg" }, { "if": { @@ -141107,7 +141307,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkrail-35338a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkrail-35338a.jpg" }, { "if": { @@ -141121,7 +141321,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkwaitaki-05e84a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkwaitaki-05e84a.jpg" }, { "if": { @@ -141135,7 +141335,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzno-c84cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/netzno-c84cac.jpg" }, { "if": { @@ -141149,7 +141349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzebwgmbh-645c81.svg" + "then": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-645c81.svg" }, { "if": { @@ -141163,7 +141363,7 @@ } ] }, - "then": "./assets/data/nsi/logos/new-ad09f9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/new-ad09f9.svg" }, { "if": { @@ -141177,7 +141377,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newbraunfelsutilities-70fbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newbraunfelsutilities-70fbe7.jpg" }, { "if": { @@ -141191,7 +141391,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkcitytransitauthority-0d43f0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkcitytransitauthority-0d43f0.svg" }, { "if": { @@ -141205,7 +141405,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-261cf4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-261cf4.jpg" }, { "if": { @@ -141219,7 +141419,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newfoundlandpower-261cf4.png" + "then": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-261cf4.png" }, { "if": { @@ -141233,7 +141433,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nexteraenergy-b66412.png" + "then": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-b66412.png" }, { "if": { @@ -141247,7 +141447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nienetworks-7d8fef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nienetworks-7d8fef.jpg" }, { "if": { @@ -141262,7 +141462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/njtransit-6ae7d0.png" + "then": "https://data.mapcomplete.org/nsi//logos/njtransit-6ae7d0.png" }, { "if": { @@ -141276,7 +141476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nordkraftnett-7fe9fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nordkraftnett-7fe9fe.jpg" }, { "if": { @@ -141290,7 +141490,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolkandnorwichuniversityhospitaltrust-35338a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolkandnorwichuniversityhospitaltrust-35338a.jpg" }, { "if": { @@ -141304,7 +141504,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northernpowergrid-306792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-306792.jpg" }, { "if": { @@ -141318,7 +141518,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northpower-05e84a.png" + "then": "https://data.mapcomplete.org/nsi//logos/northpower-05e84a.png" }, { "if": { @@ -141332,7 +141532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwestenergy-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwestenergy-9a842a.jpg" }, { "if": { @@ -141346,7 +141546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/northwesternenergy-1ef91e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-1ef91e.jpg" }, { "if": { @@ -141360,7 +141560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novascotiapower-192d87.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novascotiapower-192d87.jpg" }, { "if": { @@ -141374,7 +141574,7 @@ } ] }, - "then": "./assets/data/nsi/logos/novec-294bac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/novec-294bac.jpg" }, { "if": { @@ -141388,7 +141588,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntenett-7fe9fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/ntenett-7fe9fe.png" }, { "if": { @@ -141402,7 +141602,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nukissiorfiit-a74bf3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-a74bf3.jpg" }, { "if": { @@ -141416,7 +141616,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nvenergy-da11cc.png" + "then": "https://data.mapcomplete.org/nsi//logos/nvenergy-da11cc.png" }, { "if": { @@ -141430,7 +141630,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nwelectricpowercooperative-148d30.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-148d30.jpg" }, { "if": { @@ -141444,7 +141644,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nyseg-81dd91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nyseg-81dd91.jpg" }, { "if": { @@ -141459,7 +141659,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oklahomagasandelectric-bab4e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-bab4e4.jpg" }, { "if": { @@ -141473,7 +141673,7 @@ } ] }, - "then": "./assets/data/nsi/logos/omahapublicpowerdistrict-5b199d.png" + "then": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-5b199d.png" }, { "if": { @@ -141487,7 +141687,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oncor-70fbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oncor-70fbe7.jpg" }, { "if": { @@ -141501,7 +141701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ores-4648a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ores-4648a1.jpg" }, { "if": { @@ -141515,7 +141715,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orionnewzealand-05e84a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-05e84a.jpg" }, { "if": { @@ -141530,7 +141730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orlandoutilitiescommission-c33728.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-c33728.jpg" }, { "if": { @@ -141544,7 +141744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/osterholzerstadtwerke-d8137c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/osterholzerstadtwerke-d8137c.jpg" }, { "if": { @@ -141558,7 +141758,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ottertailpowercompany-88d76c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-88d76c.jpg" }, { "if": { @@ -141572,7 +141772,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oulunenergiasiirtojajakelu-5ad418.png" + "then": "https://data.mapcomplete.org/nsi//logos/oulunenergiasiirtojajakelu-5ad418.png" }, { "if": { @@ -141587,7 +141787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificgasandelectriccompany-a1ef23.png" + "then": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-a1ef23.png" }, { "if": { @@ -141601,7 +141801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificpower-b7667c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificpower-b7667c.svg" }, { "if": { @@ -141615,7 +141815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pacificorp-9a842a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/pacificorp-9a842a.svg" }, { "if": { @@ -141629,7 +141829,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pea-e82cec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pea-e82cec.jpg" }, { "if": { @@ -141643,7 +141843,7 @@ } ] }, - "then": "./assets/data/nsi/logos/peco-0ba8e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/peco-0ba8e3.jpg" }, { "if": { @@ -141657,7 +141857,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pedernaleselectriccooperative-9a842a.png" + "then": "https://data.mapcomplete.org/nsi//logos/pedernaleselectriccooperative-9a842a.png" }, { "if": { @@ -141671,7 +141871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/penelec-c93538.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/penelec-c93538.jpg" }, { "if": { @@ -141685,7 +141885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pennpower-c93538.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pennpower-c93538.jpg" }, { "if": { @@ -141700,7 +141900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/perusahaanlistriknegara-798eb2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-798eb2.jpg" }, { "if": { @@ -141714,7 +141914,7 @@ } ] }, - "then": "./assets/data/nsi/logos/petroamazonas-0772ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/petroamazonas-0772ca.jpg" }, { "if": { @@ -141728,7 +141928,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pfalzwerkeag-3d40d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-3d40d5.png" }, { "if": { @@ -141742,7 +141942,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgedystrybucja-b34e65.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-b34e65.jpg" }, { "if": { @@ -141756,7 +141956,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgeenergetykakolejowa-b34e65.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-b34e65.jpg" }, { "if": { @@ -141770,7 +141970,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pjm-6ae7d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pjm-6ae7d0.jpg" }, { "if": { @@ -141785,7 +141985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-78bc42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-78bc42.jpg" }, { "if": { @@ -141800,7 +142000,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-4f94e1.png" + "then": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-4f94e1.png" }, { "if": { @@ -141815,7 +142015,7 @@ } ] }, - "then": "./assets/data/nsi/logos/portlandgeneralelectric-8ea204.png" + "then": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-8ea204.png" }, { "if": { @@ -141830,7 +142030,7 @@ } ] }, - "then": "./assets/data/nsi/logos/potomacelectricpowercompany-ad237e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-ad237e.jpg" }, { "if": { @@ -141844,7 +142044,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerandwater-375533.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerandwater-375533.jpg" }, { "if": { @@ -141858,7 +142058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powergridcorporationofindialtd-1b8373.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-1b8373.jpg" }, { "if": { @@ -141872,7 +142072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerco-05e84a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerco-05e84a.jpg" }, { "if": { @@ -141886,7 +142086,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powercor-ace77b.png" + "then": "https://data.mapcomplete.org/nsi//logos/powercor-ace77b.png" }, { "if": { @@ -141900,7 +142100,7 @@ } ] }, - "then": "./assets/data/nsi/logos/powerlink-c26b41.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/powerlink-c26b41.jpg" }, { "if": { @@ -141914,7 +142114,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ppl-0e9d9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ppl-0e9d9b.jpg" }, { "if": { @@ -141928,7 +142128,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pre-5a056f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pre-5a056f.jpg" }, { "if": { @@ -141942,7 +142142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/premierenergy-5f4b46.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/premierenergy-5f4b46.jpg" }, { "if": { @@ -141956,7 +142156,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prorail-dcd896.png" + "then": "https://data.mapcomplete.org/nsi//logos/prorail-dcd896.png" }, { "if": { @@ -141971,7 +142171,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-d15bf5.png" + "then": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-d15bf5.png" }, { "if": { @@ -141985,7 +142185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/publicserviceenterprisegroup-80d764.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-80d764.jpg" }, { "if": { @@ -142000,7 +142200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-3edc24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-3edc24.jpg" }, { "if": { @@ -142015,7 +142215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pugetsoundenergy-401d11.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-401d11.jpg" }, { "if": { @@ -142029,7 +142229,7 @@ } ] }, - "then": "./assets/data/nsi/logos/radiuselnet-b43408.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/radiuselnet-b43408.jpg" }, { "if": { @@ -142043,7 +142243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rappahannockelectriccooperative-294bac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-294bac.jpg" }, { "if": { @@ -142057,7 +142257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ratp-bc2a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ratp-bc2a36.jpg" }, { "if": { @@ -142072,7 +142272,7 @@ } ] }, - "then": "./assets/data/nsi/logos/redelectricadeespana-489479.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-489479.jpg" }, { "if": { @@ -142086,7 +142286,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regionalwerkbodensee-e097a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/regionalwerkbodensee-e097a8.png" }, { "if": { @@ -142100,7 +142300,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ren-e26b9a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ren-e26b9a.svg" }, { "if": { @@ -142114,7 +142314,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-713962.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-713962.svg" }, { "if": { @@ -142128,7 +142328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rheinenergie-e097a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/rheinenergie-e097a8.png" }, { "if": { @@ -142142,7 +142342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rhodeislandenergy-204a23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-204a23.jpg" }, { "if": { @@ -142156,7 +142356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riograndeenergia-dc5268.png" + "then": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-dc5268.png" }, { "if": { @@ -142170,7 +142370,7 @@ } ] }, - "then": "./assets/data/nsi/logos/riotintoalcan-bd12ad.svg" + "then": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-bd12ad.svg" }, { "if": { @@ -142184,7 +142384,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rochestergasandelectric-81dd91.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-81dd91.jpg" }, { "if": { @@ -142198,7 +142398,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rockymountainpower-b2dffe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-b2dffe.svg" }, { "if": { @@ -142212,7 +142412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosevilleelectric-a1ef23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-a1ef23.jpg" }, { "if": { @@ -142226,7 +142426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rte-bc2a36.png" + "then": "https://data.mapcomplete.org/nsi//logos/rte-bc2a36.png" }, { "if": { @@ -142240,7 +142440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-8c57c6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-8c57c6.jpg" }, { "if": { @@ -142254,7 +142454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbahnberlingmbh-e097a8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/sbahnberlingmbh-e097a8.svg" }, { "if": { @@ -142268,7 +142468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sachsenenergie-52cc32.png" + "then": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-52cc32.png" }, { "if": { @@ -142283,7 +142483,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-a1ef23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-a1ef23.jpg" }, { "if": { @@ -142297,7 +142497,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sadalestikls-79b2b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sadalestikls-79b2b7.jpg" }, { "if": { @@ -142311,7 +142511,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sak-b75b2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sak-b75b2e.jpg" }, { "if": { @@ -142326,7 +142526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saltriverproject-b6d642.png" + "then": "https://data.mapcomplete.org/nsi//logos/saltriverproject-b6d642.png" }, { "if": { @@ -142340,7 +142540,7 @@ } ] }, - "then": "./assets/data/nsi/logos/salzburgag-6beb1b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/salzburgag-6beb1b.jpg" }, { "if": { @@ -142355,7 +142555,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sandiegogasandelectric-71613e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-71613e.jpg" }, { "if": { @@ -142369,7 +142569,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sarawakenergy-ff1f66.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sarawakenergy-ff1f66.jpg" }, { "if": { @@ -142383,7 +142583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/saskpower-abf763.svg" + "then": "https://data.mapcomplete.org/nsi//logos/saskpower-abf763.svg" }, { "if": { @@ -142397,7 +142597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-b75b2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-b75b2e.png" }, { "if": { @@ -142411,7 +142611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-66c909.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-66c909.svg" }, { "if": { @@ -142426,7 +142626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-35338a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-35338a.jpg" }, { "if": { @@ -142440,7 +142640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/senelec-2c55c3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/senelec-2c55c3.jpg" }, { "if": { @@ -142454,7 +142654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sibelga-4648a1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sibelga-4648a1.jpg" }, { "if": { @@ -142468,7 +142668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sicaedelasommeetducambraisis-bc2a36.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sicaedelasommeetducambraisis-bc2a36.jpg" }, { "if": { @@ -142482,7 +142682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slemco-9b6869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slemco-9b6869.jpg" }, { "if": { @@ -142497,7 +142697,7 @@ } ] }, - "then": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-1cd5bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-1cd5bf.jpg" }, { "if": { @@ -142511,7 +142711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-bc2a36.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-bc2a36.png" }, { "if": { @@ -142525,7 +142725,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-bc2a36.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-bc2a36.png" }, { "if": { @@ -142541,7 +142741,7 @@ } ] }, - "then": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-decc63.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-decc63.jpg" }, { "if": { @@ -142556,7 +142756,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sognogfjordaneenergi-7fe9fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-7fe9fe.jpg" }, { "if": { @@ -142570,7 +142770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sonelgaz-e89c7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sonelgaz-e89c7a.jpg" }, { "if": { @@ -142584,7 +142784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southtexaselectriccooperative-70fbe7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southtexaselectriccooperative-70fbe7.jpg" }, { "if": { @@ -142599,7 +142799,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southerncaliforniaedison-a1ef23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-a1ef23.jpg" }, { "if": { @@ -142613,7 +142813,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-0a90d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-0a90d3.jpg" }, { "if": { @@ -142627,7 +142827,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spenergynetworks-35338a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-35338a.jpg" }, { "if": { @@ -142642,7 +142842,7 @@ } ] }, - "then": "./assets/data/nsi/logos/springfieldutilityboard-8ea204.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-8ea204.jpg" }, { "if": { @@ -142656,7 +142856,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ssentransmission-b073c8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ssentransmission-b073c8.jpg" }, { "if": { @@ -142671,7 +142871,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtischewerkeangermunde-cec853.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtischewerkeangermunde-cec853.jpg" }, { "if": { @@ -142685,7 +142885,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtischewerkekassel-b05a85.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtischewerkekassel-b05a85.png" }, { "if": { @@ -142699,7 +142899,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaalen-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaalen-645c81.jpg" }, { "if": { @@ -142713,7 +142913,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeachim-d8137c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeachim-d8137c.jpg" }, { "if": { @@ -142727,7 +142927,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeansbach-40fb94.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeansbach-40fb94.svg" }, { "if": { @@ -142741,7 +142941,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaschaffenburg-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaschaffenburg-40fb94.jpg" }, { "if": { @@ -142755,7 +142955,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeaugsburg-40fb94.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-40fb94.png" }, { "if": { @@ -142769,7 +142969,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebadreichenhall-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadreichenhall-40fb94.jpg" }, { "if": { @@ -142783,7 +142983,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebadenbaden-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadenbaden-645c81.jpg" }, { "if": { @@ -142797,7 +142997,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebielefeld-ad09f9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebielefeld-ad09f9.svg" }, { "if": { @@ -142811,7 +143011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebochum-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebochum-ad09f9.png" }, { "if": { @@ -142826,7 +143026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebonn-ad09f9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebonn-ad09f9.svg" }, { "if": { @@ -142840,7 +143040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkebruhl-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkebruhl-ad09f9.jpg" }, { "if": { @@ -142854,7 +143054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeenergiejenapossneck-f3bd8a.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeenergiejenapossneck-f3bd8a.png" }, { "if": { @@ -142868,7 +143068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkefrankenthal-3d40d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkefrankenthal-3d40d5.jpg" }, { "if": { @@ -142882,7 +143082,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkefurstenfeldbruck-40fb94.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkefurstenfeldbruck-40fb94.png" }, { "if": { @@ -142896,7 +143096,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegiessen-b05a85.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegiessen-b05a85.png" }, { "if": { @@ -142910,7 +143110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegorlitzag-52cc32.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegorlitzag-52cc32.png" }, { "if": { @@ -142924,7 +143124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkegreifswald-db0b36.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkegreifswald-db0b36.png" }, { "if": { @@ -142938,7 +143138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkehaltern-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkehaltern-ad09f9.jpg" }, { "if": { @@ -142952,7 +143152,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkehamm-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkehamm-ad09f9.jpg" }, { "if": { @@ -142966,7 +143166,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeherborn-b05a85.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherborn-b05a85.jpg" }, { "if": { @@ -142981,7 +143181,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeherne-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherne-ad09f9.jpg" }, { "if": { @@ -142995,7 +143195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeilmenau-f3bd8a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeilmenau-f3bd8a.jpg" }, { "if": { @@ -143009,7 +143209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeingolstadt-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeingolstadt-40fb94.jpg" }, { "if": { @@ -143024,7 +143224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekiel-66c909.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekiel-66c909.jpg" }, { "if": { @@ -143038,7 +143238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekonstanz-645c81.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekonstanz-645c81.png" }, { "if": { @@ -143052,7 +143252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkekufstein-7c3fb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkekufstein-7c3fb4.jpg" }, { "if": { @@ -143066,7 +143266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeleipzig-52cc32.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-52cc32.jpg" }, { "if": { @@ -143080,7 +143280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelemgo-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelemgo-ad09f9.png" }, { "if": { @@ -143094,7 +143294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkelubeck-66c909.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-66c909.jpg" }, { "if": { @@ -143108,7 +143308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemarburg-b05a85.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemarburg-b05a85.svg" }, { "if": { @@ -143123,7 +143323,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunchen-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-40fb94.jpg" }, { "if": { @@ -143137,7 +143337,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkemunster-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunster-ad09f9.jpg" }, { "if": { @@ -143152,7 +143352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneumarkt-40fb94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneumarkt-40fb94.jpg" }, { "if": { @@ -143167,7 +143367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneumunster-66c909.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneumunster-66c909.png" }, { "if": { @@ -143182,7 +143382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneuss-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuss-ad09f9.jpg" }, { "if": { @@ -143197,7 +143397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeneuwied-3d40d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuwied-3d40d5.png" }, { "if": { @@ -143211,7 +143411,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkenorderstedt-66c909.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkenorderstedt-66c909.jpg" }, { "if": { @@ -143226,7 +143426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkenurtingen-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkenurtingen-645c81.jpg" }, { "if": { @@ -143241,7 +143441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkepforzheim-645c81.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkepforzheim-645c81.png" }, { "if": { @@ -143256,7 +143456,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkepirmasens-3d40d5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkepirmasens-3d40d5.svg" }, { "if": { @@ -143271,7 +143471,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkepotsdam-cec853.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkepotsdam-cec853.jpg" }, { "if": { @@ -143285,7 +143485,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkequedlinburg-80fbfb.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkequedlinburg-80fbfb.svg" }, { "if": { @@ -143299,7 +143499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkerastatt-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkerastatt-645c81.jpg" }, { "if": { @@ -143313,7 +143513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkesaarbrucken-32e7ba.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkesaarbrucken-32e7ba.png" }, { "if": { @@ -143327,7 +143527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkesindelfingen-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkesindelfingen-645c81.jpg" }, { "if": { @@ -143342,7 +143542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkespeyer-3d40d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-3d40d5.jpg" }, { "if": { @@ -143356,7 +143556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerketroisdorf-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerketroisdorf-ad09f9.png" }, { "if": { @@ -143371,7 +143571,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerketubingen-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerketubingen-645c81.jpg" }, { "if": { @@ -143385,7 +143585,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkevelbert-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkevelbert-ad09f9.png" }, { "if": { @@ -143399,7 +143599,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewaiblingen-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewaiblingen-645c81.jpg" }, { "if": { @@ -143414,7 +143614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeweinheim-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeweinheim-645c81.jpg" }, { "if": { @@ -143428,7 +143628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewitten-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-ad09f9.png" }, { "if": { @@ -143442,7 +143642,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkewolfenbuttel-d8137c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkewolfenbuttel-d8137c.jpg" }, { "if": { @@ -143456,7 +143656,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stadtwerkeworgl-7c3fb4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stadtwerkeworgl-7c3fb4.jpg" }, { "if": { @@ -143470,7 +143670,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statkraft-8c57c6.png" + "then": "https://data.mapcomplete.org/nsi//logos/statkraft-8c57c6.png" }, { "if": { @@ -143484,7 +143684,7 @@ } ] }, - "then": "./assets/data/nsi/logos/statnett-7fe9fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/statnett-7fe9fe.png" }, { "if": { @@ -143498,7 +143698,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stawag-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/stawag-ad09f9.png" }, { "if": { @@ -143512,7 +143712,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stedin-dcd896.png" + "then": "https://data.mapcomplete.org/nsi//logos/stedin-dcd896.png" }, { "if": { @@ -143526,7 +143726,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzberlin-26ff34.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-26ff34.svg" }, { "if": { @@ -143540,7 +143740,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-eba937.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-eba937.jpg" }, { "if": { @@ -143554,7 +143754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stuttgartnetze-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/stuttgartnetze-645c81.jpg" }, { "if": { @@ -143568,7 +143768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-5fb284.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-5fb284.jpg" }, { "if": { @@ -143582,7 +143782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/suwagenergie-feb2d6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/suwagenergie-feb2d6.jpg" }, { "if": { @@ -143596,7 +143796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/svenskakraftnat-da9798.png" + "then": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-da9798.png" }, { "if": { @@ -143610,7 +143810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swb-d1d6a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swb-d1d6a2.jpg" }, { "if": { @@ -143625,7 +143825,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swbenergieundwasser-ad09f9.svg" + "then": "https://data.mapcomplete.org/nsi//logos/swbenergieundwasser-ad09f9.svg" }, { "if": { @@ -143640,7 +143840,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swestadtwerkeesslingen-645c81.png" + "then": "https://data.mapcomplete.org/nsi//logos/swestadtwerkeesslingen-645c81.png" }, { "if": { @@ -143655,7 +143855,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwesternelectricpowercompany-24511b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-24511b.jpg" }, { "if": { @@ -143669,7 +143869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swissgrid-b75b2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/swissgrid-b75b2e.png" }, { "if": { @@ -143683,7 +143883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swk-3d40d5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swk-3d40d5.jpg" }, { "if": { @@ -143697,7 +143897,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swk-ad09f9.png" + "then": "https://data.mapcomplete.org/nsi//logos/swk-ad09f9.png" }, { "if": { @@ -143712,7 +143912,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swustadtwerkeulmneuulmgmbh-92d6af.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swustadtwerkeulmneuulmgmbh-92d6af.jpg" }, { "if": { @@ -143726,7 +143926,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sydneytrains-17e0e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/sydneytrains-17e0e3.png" }, { "if": { @@ -143740,7 +143940,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sygnir-7fe9fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sygnir-7fe9fe.jpg" }, { "if": { @@ -143754,7 +143954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/szdc-5a056f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/szdc-5a056f.jpg" }, { "if": { @@ -143768,7 +143968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tacomapower-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tacomapower-9a842a.jpg" }, { "if": { @@ -143782,7 +143982,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tasnetworks-e46949.png" + "then": "https://data.mapcomplete.org/nsi//logos/tasnetworks-e46949.png" }, { "if": { @@ -143796,7 +143996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-b34e65.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-b34e65.png" }, { "if": { @@ -143811,7 +144011,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischewerkeludwigshafenag-3d40d5.png" + "then": "https://data.mapcomplete.org/nsi//logos/technischewerkeludwigshafenag-3d40d5.png" }, { "if": { @@ -143826,7 +144026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/technischewerkenaumburg-80fbfb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/technischewerkenaumburg-80fbfb.jpg" }, { "if": { @@ -143840,7 +144040,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tedas-31b591.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tedas-31b591.jpg" }, { "if": { @@ -143854,7 +144054,7 @@ } ] }, - "then": "./assets/data/nsi/logos/teias-31b591.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/teias-31b591.jpg" }, { "if": { @@ -143868,7 +144068,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tenaganasional-ff1f66.png" + "then": "https://data.mapcomplete.org/nsi//logos/tenaganasional-ff1f66.png" }, { "if": { @@ -143883,7 +144083,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennesseevalleyauthority-9a842a.png" + "then": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-9a842a.png" }, { "if": { @@ -143897,7 +144097,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennet-dcd896.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennet-dcd896.jpg" }, { "if": { @@ -143911,7 +144111,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennettso-90172e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennettso-90172e.jpg" }, { "if": { @@ -143925,7 +144125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tensio-7fe9fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tensio-7fe9fe.jpg" }, { "if": { @@ -143939,7 +144139,7 @@ } ] }, - "then": "./assets/data/nsi/logos/terna-8a8d4c.png" + "then": "https://data.mapcomplete.org/nsi//logos/terna-8a8d4c.png" }, { "if": { @@ -143954,7 +144154,7 @@ } ] }, - "then": "./assets/data/nsi/logos/texasnewmexicopower-70fbe7.png" + "then": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-70fbe7.png" }, { "if": { @@ -143968,7 +144168,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thugaenergie-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thugaenergie-645c81.jpg" }, { "if": { @@ -143983,7 +144183,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tirolernetze-7c3fb4.png" + "then": "https://data.mapcomplete.org/nsi//logos/tirolernetze-7c3fb4.png" }, { "if": { @@ -143997,7 +144197,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tiwag-c84cac.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tiwag-c84cac.svg" }, { "if": { @@ -144011,7 +144211,7 @@ } ] }, - "then": "./assets/data/nsi/logos/topenergy-05e84a.png" + "then": "https://data.mapcomplete.org/nsi//logos/topenergy-05e84a.png" }, { "if": { @@ -144025,7 +144225,7 @@ } ] }, - "then": "./assets/data/nsi/logos/torontohydro-88d972.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/torontohydro-88d972.jpg" }, { "if": { @@ -144039,7 +144239,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tramwajewarszawskie-b34e65.png" + "then": "https://data.mapcomplete.org/nsi//logos/tramwajewarszawskie-b34e65.png" }, { "if": { @@ -144054,7 +144254,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transelectrica-68cee0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transelectrica-68cee0.svg" }, { "if": { @@ -144068,7 +144268,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transgrid-17e0e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/transgrid-17e0e3.png" }, { "if": { @@ -144082,7 +144282,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transmissioncompanyofnigeria-db71cf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-db71cf.jpg" }, { "if": { @@ -144096,7 +144296,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnetbwgmbh-645c81.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-645c81.svg" }, { "if": { @@ -144110,7 +144310,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transportfornsw-17e0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transportfornsw-17e0e3.jpg" }, { "if": { @@ -144124,7 +144324,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transpowernewzealand-05e84a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-05e84a.jpg" }, { "if": { @@ -144138,7 +144338,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tredas-31b591.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tredas-31b591.jpg" }, { "if": { @@ -144152,7 +144352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trenesargentinos-f8f64e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-f8f64e.svg" }, { "if": { @@ -144167,7 +144367,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trimet-8ea204.png" + "then": "https://data.mapcomplete.org/nsi//logos/trimet-8ea204.png" }, { "if": { @@ -144182,7 +144382,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tucsonelectricpower-b6d642.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-b6d642.jpg" }, { "if": { @@ -144197,7 +144397,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turkiyecumhuriyetidevletdemiryollari-31b591.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turkiyecumhuriyetidevletdemiryollari-31b591.jpg" }, { "if": { @@ -144212,7 +144412,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uberlandwerkleinetal-d8137c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/uberlandwerkleinetal-d8137c.jpg" }, { "if": { @@ -144226,7 +144426,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukpowernetworks-306792.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-306792.jpg" }, { "if": { @@ -144240,7 +144440,7 @@ } ] }, - "then": "./assets/data/nsi/logos/umeaenergi-da9798.png" + "then": "https://data.mapcomplete.org/nsi//logos/umeaenergi-da9798.png" }, { "if": { @@ -144254,7 +144454,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unison-05e84a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unison-05e84a.jpg" }, { "if": { @@ -144268,7 +144468,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedilluminatingcompany-a8c5a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-a8c5a0.jpg" }, { "if": { @@ -144282,7 +144482,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitedstatessteel-a5723a.svg" + "then": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-a5723a.svg" }, { "if": { @@ -144296,7 +144496,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unitil-a10417.png" + "then": "https://data.mapcomplete.org/nsi//logos/unitil-a10417.png" }, { "if": { @@ -144310,7 +144510,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ute-caa7d8.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ute-caa7d8.svg" }, { "if": { @@ -144324,7 +144524,7 @@ } ] }, - "then": "./assets/data/nsi/logos/uzmainfranken-40fb94.png" + "then": "https://data.mapcomplete.org/nsi//logos/uzmainfranken-40fb94.png" }, { "if": { @@ -144338,7 +144538,7 @@ } ] }, - "then": "./assets/data/nsi/logos/valesa-dc5268.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/valesa-dc5268.jpg" }, { "if": { @@ -144352,7 +144552,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-3c123b.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-3c123b.png" }, { "if": { @@ -144366,7 +144566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vattenfall-e097a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/vattenfall-e097a8.png" }, { "if": { @@ -144380,7 +144580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vaylavirasto-5ad418.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vaylavirasto-5ad418.jpg" }, { "if": { @@ -144394,7 +144594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vector-05e84a.png" + "then": "https://data.mapcomplete.org/nsi//logos/vector-05e84a.png" }, { "if": { @@ -144408,7 +144608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verbundhydropowergmbh-c84cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-c84cac.jpg" }, { "if": { @@ -144422,7 +144622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verdo-694f23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verdo-694f23.jpg" }, { "if": { @@ -144436,7 +144636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vermontelectricpowercompany-170cd1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-170cd1.jpg" }, { "if": { @@ -144450,7 +144650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/versantpower-289571.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/versantpower-289571.jpg" }, { "if": { @@ -144464,7 +144664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vevig-7fe9fe.png" + "then": "https://data.mapcomplete.org/nsi//logos/vevig-7fe9fe.png" }, { "if": { @@ -144478,7 +144678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/viesgodistribucionelectrica-489479.png" + "then": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-489479.png" }, { "if": { @@ -144492,7 +144692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/visayanelectric-d6fa7d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/visayanelectric-d6fa7d.jpg" }, { "if": { @@ -144506,7 +144706,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vissi-7fe9fe.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vissi-7fe9fe.svg" }, { "if": { @@ -144520,7 +144720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vossenergi-7fe9fe.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vossenergi-7fe9fe.jpg" }, { "if": { @@ -144535,7 +144735,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskadistribucna-1cd5bf.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-1cd5bf.png" }, { "if": { @@ -144550,7 +144750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskaenergetika-1cd5bf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskaenergetika-1cd5bf.svg" }, { "if": { @@ -144565,7 +144765,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonmetropolitanareatransitauthority-4f107c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonmetropolitanareatransitauthority-4f107c.jpg" }, { "if": { @@ -144579,7 +144779,7 @@ } ] }, - "then": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-9b6869.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-9b6869.jpg" }, { "if": { @@ -144593,7 +144793,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wasserwerkezug-e6eb02.png" + "then": "https://data.mapcomplete.org/nsi//logos/wasserwerkezug-e6eb02.png" }, { "if": { @@ -144607,7 +144807,7 @@ } ] }, - "then": "./assets/data/nsi/logos/welnetworks-05e84a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/welnetworks-05e84a.jpg" }, { "if": { @@ -144621,7 +144821,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westpennpower-06fb35.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westpennpower-06fb35.jpg" }, { "if": { @@ -144636,7 +144836,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westernareapoweradministration-9a842a.png" + "then": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-9a842a.png" }, { "if": { @@ -144650,7 +144850,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westlandinfra-dcd896.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westlandinfra-dcd896.jpg" }, { "if": { @@ -144664,7 +144864,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westnetz-e097a8.png" + "then": "https://data.mapcomplete.org/nsi//logos/westnetz-e097a8.png" }, { "if": { @@ -144678,7 +144878,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienenergie-c84cac.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wienenergie-c84cac.jpg" }, { "if": { @@ -144692,7 +144892,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wienernetze-c84cac.png" + "then": "https://data.mapcomplete.org/nsi//logos/wienernetze-c84cac.png" }, { "if": { @@ -144707,7 +144907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wuppertalerstadtwerke-ad09f9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wuppertalerstadtwerke-ad09f9.jpg" }, { "if": { @@ -144721,7 +144921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/xcelenergy-9a842a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/xcelenergy-9a842a.jpg" }, { "if": { @@ -144735,7 +144935,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zeagenergie-645c81.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zeagenergie-645c81.jpg" }, { "if": { @@ -144749,7 +144949,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zesco-6a2ea1.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zesco-6a2ea1.jpg" }, { "if": { @@ -144765,7 +144965,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vitebskenergo-4e3767.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/vitebskenergo-4e3767.jpg" }, { "if": { @@ -144781,7 +144981,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektroprivredasrbije-c7be96.svg" + "then": "https://data.mapcomplete.org/nsi//logos/elektroprivredasrbije-c7be96.svg" }, { "if": { @@ -144796,7 +144996,7 @@ } ] }, - "then": "./assets/data/nsi/logos/c6dafd-258459.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/c6dafd-258459.jpg" }, { "if": { @@ -144812,7 +145012,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lvivoblenergo-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lvivoblenergo-01f0e3.jpg" }, { "if": { @@ -144826,7 +145026,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afbfca-82b16b.png" + "then": "https://data.mapcomplete.org/nsi//logos/afbfca-82b16b.png" }, { "if": { @@ -144842,7 +145042,7 @@ } ] }, - "then": "./assets/data/nsi/logos/poltavaoblenergo-01f0e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/poltavaoblenergo-01f0e3.png" }, { "if": { @@ -144858,7 +145058,7 @@ } ] }, - "then": "./assets/data/nsi/logos/prykarpattiaoblenergo-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/prykarpattiaoblenergo-01f0e3.jpg" }, { "if": { @@ -144872,7 +145072,7 @@ } ] }, - "then": "./assets/data/nsi/logos/388547-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/388547-01f0e3.jpg" }, { "if": { @@ -144888,7 +145088,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rivneoblenergo-01f0e3.png" + "then": "https://data.mapcomplete.org/nsi//logos/rivneoblenergo-01f0e3.png" }, { "if": { @@ -144904,7 +145104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rosseti-258459.png" + "then": "https://data.mapcomplete.org/nsi//logos/rosseti-258459.png" }, { "if": { @@ -144921,7 +145121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russianrailways-258459.png" + "then": "https://data.mapcomplete.org/nsi//logos/russianrailways-258459.png" }, { "if": { @@ -144937,7 +145137,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sakhalinenergo-258459.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sakhalinenergo-258459.jpg" }, { "if": { @@ -144951,7 +145151,7 @@ } ] }, - "then": "./assets/data/nsi/logos/28c7ea-82b16b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/28c7ea-82b16b.jpg" }, { "if": { @@ -144967,7 +145167,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ternopiloblenergo-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ternopiloblenergo-01f0e3.jpg" }, { "if": { @@ -144984,7 +145184,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrenergo-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrenergo-01f0e3.jpg" }, { "if": { @@ -145001,7 +145201,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ukrainianrailways-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ukrainianrailways-01f0e3.jpg" }, { "if": { @@ -145017,7 +145217,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kharkivoblenergo-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kharkivoblenergo-01f0e3.jpg" }, { "if": { @@ -145033,7 +145233,7 @@ } ] }, - "then": "./assets/data/nsi/logos/khersonoblenergo-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/khersonoblenergo-01f0e3.jpg" }, { "if": { @@ -145049,7 +145249,7 @@ } ] }, - "then": "./assets/data/nsi/logos/khmelnytskoblenergo-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/khmelnytskoblenergo-01f0e3.jpg" }, { "if": { @@ -145063,7 +145263,7 @@ } ] }, - "then": "./assets/data/nsi/logos/472734-01f0e3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/472734-01f0e3.jpg" }, { "if": { @@ -145080,7 +145280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-e82cec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-e82cec.jpg" }, { "if": { @@ -145097,7 +145297,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koreaelectricpowercorporation-c8a485.svg" + "then": "https://data.mapcomplete.org/nsi//logos/koreaelectricpowercorporation-c8a485.svg" }, { "if": { @@ -145113,7 +145313,7 @@ } ] }, - "then": "./assets/data/nsi/logos/koreanationalrailway-c8a485.png" + "then": "https://data.mapcomplete.org/nsi//logos/koreanationalrailway-c8a485.png" }, { "if": { @@ -145136,7 +145336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/clppowerhongkonglimited-25f50a.png" + "then": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-25f50a.png" }, { "if": { @@ -145152,7 +145352,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chubuelectricpowergridcompany-2c1653.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-2c1653.svg" }, { "if": { @@ -145168,7 +145368,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-2c1653.png" + "then": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-2c1653.png" }, { "if": { @@ -145185,7 +145385,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-2c1653.png" + "then": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-2c1653.png" }, { "if": { @@ -145201,7 +145401,7 @@ } ] }, - "then": "./assets/data/nsi/logos/taiwanpowercompany-7d07c2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/taiwanpowercompany-7d07c2.jpg" }, { "if": { @@ -145217,7 +145417,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tepcopowergrid-2c1653.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-2c1653.svg" }, { "if": { @@ -145236,7 +145436,7 @@ } ] }, - "then": "./assets/data/nsi/logos/toburailway-2c1653.png" + "then": "https://data.mapcomplete.org/nsi//logos/toburailway-2c1653.png" }, { "if": { @@ -145253,7 +145453,7 @@ } ] }, - "then": "./assets/data/nsi/logos/okinawaelectricpowercompany-2c1653.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-2c1653.jpg" }, { "if": { @@ -145276,7 +145476,7 @@ } ] }, - "then": "./assets/data/nsi/logos/e30df9-6b1c5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/e30df9-6b1c5a.jpg" }, { "if": { @@ -145299,7 +145499,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-25f50a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-25f50a.jpg" }, { "if": { @@ -145313,7 +145513,7 @@ } ] }, - "then": "./assets/data/nsi/logos/50hertztransmission-6070b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-6070b7.svg" }, { "if": { @@ -145327,7 +145527,7 @@ } ] }, - "then": "./assets/data/nsi/logos/aesandes-0cf561.png" + "then": "https://data.mapcomplete.org/nsi//logos/aesandes-0cf561.png" }, { "if": { @@ -145342,7 +145542,7 @@ } ] }, - "then": "./assets/data/nsi/logos/americanelectricpower-3c8213.png" + "then": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-3c8213.png" }, { "if": { @@ -145356,7 +145556,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amprion-6070b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/amprion-6070b7.svg" }, { "if": { @@ -145370,7 +145570,7 @@ } ] }, - "then": "./assets/data/nsi/logos/augstspriegumatikls-9b994c.png" + "then": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-9b994c.png" }, { "if": { @@ -145384,7 +145584,7 @@ } ] }, - "then": "./assets/data/nsi/logos/austinenergy-2db3e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/austinenergy-2db3e2.jpg" }, { "if": { @@ -145398,7 +145598,7 @@ } ] }, - "then": "./assets/data/nsi/logos/avaconnetz-9d7364.svg" + "then": "https://data.mapcomplete.org/nsi//logos/avaconnetz-9d7364.svg" }, { "if": { @@ -145412,7 +145612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bornholmsenergiandforsyning-fc9c5a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-fc9c5a.jpg" }, { "if": { @@ -145426,7 +145626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceps-3c5842.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ceps-3c5842.jpg" }, { "if": { @@ -145440,7 +145640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/codelcochile-8df055.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/codelcochile-8df055.jpg" }, { "if": { @@ -145454,7 +145654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/copel-82c27b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/copel-82c27b.jpg" }, { "if": { @@ -145468,7 +145668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/dbenergie-6070b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/dbenergie-6070b7.svg" }, { "if": { @@ -145482,7 +145682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edisnetz-6070b7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edisnetz-6070b7.jpg" }, { "if": { @@ -145496,7 +145696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eon-6a8196.png" + "then": "https://data.mapcomplete.org/nsi//logos/eon-6a8196.png" }, { "if": { @@ -145510,7 +145710,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eonnetz-6070b7.svg" + "then": "https://data.mapcomplete.org/nsi//logos/eonnetz-6070b7.svg" }, { "if": { @@ -145524,7 +145724,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egd-41fb94.svg" + "then": "https://data.mapcomplete.org/nsi//logos/egd-41fb94.svg" }, { "if": { @@ -145538,7 +145738,7 @@ } ] }, - "then": "./assets/data/nsi/logos/egat-08a278.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/egat-08a278.jpg" }, { "if": { @@ -145552,7 +145752,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eirgrid-0db0d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eirgrid-0db0d4.jpg" }, { "if": { @@ -145567,7 +145767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/electricitedefrance-6a8196.png" + "then": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-6a8196.png" }, { "if": { @@ -145581,7 +145781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elektrilevi-f7b360.png" + "then": "https://data.mapcomplete.org/nsi//logos/elektrilevi-f7b360.png" }, { "if": { @@ -145595,7 +145795,7 @@ } ] }, - "then": "./assets/data/nsi/logos/elering-f7b360.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/elering-f7b360.jpg" }, { "if": { @@ -145609,7 +145809,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enea-99d878.png" + "then": "https://data.mapcomplete.org/nsi//logos/enea-99d878.png" }, { "if": { @@ -145623,7 +145823,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energa-99d878.png" + "then": "https://data.mapcomplete.org/nsi//logos/energa-99d878.png" }, { "if": { @@ -145637,7 +145837,7 @@ } ] }, - "then": "./assets/data/nsi/logos/energinet-0da34c.png" + "then": "https://data.mapcomplete.org/nsi//logos/energinet-0da34c.png" }, { "if": { @@ -145651,7 +145851,7 @@ } ] }, - "then": "./assets/data/nsi/logos/engie-6a8196.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/engie-6a8196.jpg" }, { "if": { @@ -145665,7 +145865,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-2549a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-2549a9.png" }, { "if": { @@ -145679,7 +145879,7 @@ } ] }, - "then": "./assets/data/nsi/logos/esbnetworks-0db0d4.png" + "then": "https://data.mapcomplete.org/nsi//logos/esbnetworks-0db0d4.png" }, { "if": { @@ -145693,7 +145893,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eskom-413da8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/eskom-413da8.jpg" }, { "if": { @@ -145707,7 +145907,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergy-ba6e22.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergy-ba6e22.jpg" }, { "if": { @@ -145721,7 +145921,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-baa9ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-baa9ad.jpg" }, { "if": { @@ -145736,7 +145936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evn-2a64cf.svg" + "then": "https://data.mapcomplete.org/nsi//logos/evn-2a64cf.svg" }, { "if": { @@ -145750,7 +145950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hydroquebec-f5644d.png" + "then": "https://data.mapcomplete.org/nsi//logos/hydroquebec-f5644d.png" }, { "if": { @@ -145764,7 +145964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/itaipubinacional-89347b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-89347b.svg" }, { "if": { @@ -145778,7 +145978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/liander-010a98.png" + "then": "https://data.mapcomplete.org/nsi//logos/liander-010a98.png" }, { "if": { @@ -145793,7 +145993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lowercoloradoriverauthority-2db3e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-2db3e2.png" }, { "if": { @@ -145807,7 +146007,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lswnetz-0b37b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/lswnetz-0b37b7.png" }, { "if": { @@ -145822,7 +146022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lubbockpowerandlight-2db3e2.png" + "then": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-2db3e2.png" }, { "if": { @@ -145836,7 +146036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meralco-5f3699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/meralco-5f3699.jpg" }, { "if": { @@ -145850,7 +146050,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgrid-738a0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgrid-738a0d.png" }, { "if": { @@ -145865,7 +146065,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-5f3699.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-5f3699.jpg" }, { "if": { @@ -145879,7 +146079,7 @@ } ] }, - "then": "./assets/data/nsi/logos/netzebwgmbh-d2c714.svg" + "then": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-d2c714.svg" }, { "if": { @@ -145893,7 +146093,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nienetworks-a428e4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nienetworks-a428e4.jpg" }, { "if": { @@ -145907,7 +146107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obb-eee531.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obb-eee531.jpg" }, { "if": { @@ -145921,7 +146121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/oncor-2db3e2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/oncor-2db3e2.jpg" }, { "if": { @@ -145935,7 +146135,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pgedystrybucja-99d878.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-99d878.jpg" }, { "if": { @@ -145950,7 +146150,7 @@ } ] }, - "then": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-d26bf2.png" + "then": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-d26bf2.png" }, { "if": { @@ -145964,7 +146164,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rte-0421f7.png" + "then": "https://data.mapcomplete.org/nsi//logos/rte-0421f7.png" }, { "if": { @@ -145978,7 +146178,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rwe-baa9ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/rwe-baa9ad.jpg" }, { "if": { @@ -145992,7 +146192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-98046e.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-98046e.png" }, { "if": { @@ -146006,7 +146206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/schleswigholsteinnetzag-3e5ac3.svg" + "then": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-3e5ac3.svg" }, { "if": { @@ -146020,7 +146220,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stedin-010a98.png" + "then": "https://data.mapcomplete.org/nsi//logos/stedin-010a98.png" }, { "if": { @@ -146034,7 +146234,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzberlin-28c936.svg" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-28c936.svg" }, { "if": { @@ -146048,7 +146248,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stromnetzhamburg-227083.png" + "then": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-227083.png" }, { "if": { @@ -146062,7 +146262,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-0a1228.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-0a1228.jpg" }, { "if": { @@ -146077,7 +146277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southwesternelectricpowercompany-a8c872.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-a8c872.jpg" }, { "if": { @@ -146091,7 +146291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tauron-99d878.png" + "then": "https://data.mapcomplete.org/nsi//logos/tauron-99d878.png" }, { "if": { @@ -146105,7 +146305,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennet-010a98.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennet-010a98.jpg" }, { "if": { @@ -146119,7 +146319,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tennettso-45db45.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tennettso-45db45.jpg" }, { "if": { @@ -146133,7 +146333,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transener-1169c7.png" + "then": "https://data.mapcomplete.org/nsi//logos/transener-1169c7.png" }, { "if": { @@ -146147,7 +146347,7 @@ } ] }, - "then": "./assets/data/nsi/logos/transnetbwgmbh-d2c714.svg" + "then": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-d2c714.svg" }, { "if": { @@ -146162,7 +146362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/vychodoslovenskadistribucna-698423.png" + "then": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-698423.png" }, { "if": { @@ -146176,7 +146376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westnetz-6070b7.png" + "then": "https://data.mapcomplete.org/nsi//logos/westnetz-6070b7.png" }, { "if": { @@ -146192,7 +146392,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tepcopowergrid-15f210.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-15f210.svg" }, { "if": { @@ -146206,7 +146406,7 @@ } ] }, - "then": "./assets/data/nsi/logos/adif-762e69.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/adif-762e69.jpg" }, { "if": { @@ -146220,7 +146420,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amtrak-7523d3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amtrak-7523d3.jpg" }, { "if": { @@ -146234,7 +146434,7 @@ } ] }, - "then": "./assets/data/nsi/logos/banedanmark-8a3339.png" + "then": "https://data.mapcomplete.org/nsi//logos/banedanmark-8a3339.png" }, { "if": { @@ -146248,7 +146448,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bls-a9df5c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bls-a9df5c.jpg" }, { "if": { @@ -146262,7 +146462,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bnsfrailway-2c7402.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bnsfrailway-2c7402.jpg" }, { "if": { @@ -146277,7 +146477,7 @@ } ] }, - "then": "./assets/data/nsi/logos/californiahighspeedrailauthority-86f3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/californiahighspeedrailauthority-86f3a2.jpg" }, { "if": { @@ -146291,7 +146491,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadiannationalrailway-bfb76c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadiannationalrailway-bfb76c.jpg" }, { "if": { @@ -146305,7 +146505,7 @@ } ] }, - "then": "./assets/data/nsi/logos/canadianpacifickansascity-e8b07c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/canadianpacifickansascity-e8b07c.jpg" }, { "if": { @@ -146320,7 +146520,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ceskedrahy-fb3809.png" + "then": "https://data.mapcomplete.org/nsi//logos/ceskedrahy-fb3809.png" }, { "if": { @@ -146334,7 +146534,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cfrcalatori-e13be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cfrcalatori-e13be9.jpg" }, { "if": { @@ -146348,7 +146548,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comboiosdeportugal-6391e0.png" + "then": "https://data.mapcomplete.org/nsi//logos/comboiosdeportugal-6391e0.png" }, { "if": { @@ -146362,7 +146562,7 @@ } ] }, - "then": "./assets/data/nsi/logos/csx-2c7402.svg" + "then": "https://data.mapcomplete.org/nsi//logos/csx-2c7402.svg" }, { "if": { @@ -146381,7 +146581,7 @@ } ] }, - "then": "./assets/data/nsi/logos/euskaltrenbidesarearedferroviariavasca-eeecbf.png" + "then": "https://data.mapcomplete.org/nsi//logos/euskaltrenbidesarearedferroviariavasca-eeecbf.png" }, { "if": { @@ -146396,7 +146596,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ferrocarrilsdelageneralitatdecatalunya-762e69.svg" + "then": "https://data.mapcomplete.org/nsi//logos/ferrocarrilsdelageneralitatdecatalunya-762e69.svg" }, { "if": { @@ -146412,7 +146612,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alstom-a83027.png" + "then": "https://data.mapcomplete.org/nsi//logos/alstom-a83027.png" }, { "if": { @@ -146426,7 +146626,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gysev-6c36c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gysev-6c36c0.jpg" }, { "if": { @@ -146440,7 +146640,7 @@ } ] }, - "then": "./assets/data/nsi/logos/indianrailway-04612b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/indianrailway-04612b.svg" }, { "if": { @@ -146454,7 +146654,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infrabel-1684ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/infrabel-1684ca.png" }, { "if": { @@ -146468,7 +146668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/infraestruturasdeportugal-6391e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/infraestruturasdeportugal-6391e0.jpg" }, { "if": { @@ -146482,7 +146682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/irishrail-8601a8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/irishrail-8601a8.jpg" }, { "if": { @@ -146501,7 +146701,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kyushurailwaycompany-c878da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kyushurailwaycompany-c878da.jpg" }, { "if": { @@ -146520,7 +146720,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastjapanrailwaycompany-c878da.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-c878da.png" }, { "if": { @@ -146539,7 +146739,7 @@ } ] }, - "then": "./assets/data/nsi/logos/westjapanrailwaycompany-c878da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/westjapanrailwaycompany-c878da.jpg" }, { "if": { @@ -146554,7 +146754,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kenyarailways-220ac2.png" + "then": "https://data.mapcomplete.org/nsi//logos/kenyarailways-220ac2.png" }, { "if": { @@ -146568,7 +146768,7 @@ } ] }, - "then": "./assets/data/nsi/logos/losangelescountymetropolitantransportationauthority-86f3a2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/losangelescountymetropolitantransportationauthority-86f3a2.jpg" }, { "if": { @@ -146582,7 +146782,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mav-6c36c0.svg" + "then": "https://data.mapcomplete.org/nsi//logos/mav-6c36c0.svg" }, { "if": { @@ -146596,7 +146796,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nederlandsespoorwegen-2ab239.png" + "then": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-2ab239.png" }, { "if": { @@ -146610,7 +146810,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkrail-b6d660.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkrail-b6d660.jpg" }, { "if": { @@ -146624,7 +146824,7 @@ } ] }, - "then": "./assets/data/nsi/logos/newyorkcitytransitauthority-d97a9c.svg" + "then": "https://data.mapcomplete.org/nsi//logos/newyorkcitytransitauthority-d97a9c.svg" }, { "if": { @@ -146638,7 +146838,7 @@ } ] }, - "then": "./assets/data/nsi/logos/norfolksouthern-2c7402.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/norfolksouthern-2c7402.jpg" }, { "if": { @@ -146652,7 +146852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/obb-4c3eff.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/obb-4c3eff.jpg" }, { "if": { @@ -146666,7 +146866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/philippinenationalrailways-c5c786.svg" + "then": "https://data.mapcomplete.org/nsi//logos/philippinenationalrailways-c5c786.svg" }, { "if": { @@ -146680,7 +146880,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pkppolskieliniekolejowesa-b8385d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pkppolskieliniekolejowesa-b8385d.jpg" }, { "if": { @@ -146694,7 +146894,7 @@ } ] }, - "then": "./assets/data/nsi/logos/regiocalatori-e13be9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/regiocalatori-e13be9.jpg" }, { "if": { @@ -146708,7 +146908,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-4ed8db.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-4ed8db.svg" }, { "if": { @@ -146722,7 +146922,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rumosa-6e3fcb.png" + "then": "https://data.mapcomplete.org/nsi//logos/rumosa-6e3fcb.png" }, { "if": { @@ -146736,7 +146936,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sbb-8e443b.png" + "then": "https://data.mapcomplete.org/nsi//logos/sbb-8e443b.png" }, { "if": { @@ -146750,7 +146950,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncf-ced9a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncf-ced9a9.png" }, { "if": { @@ -146764,7 +146964,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sncfreseau-ced9a9.png" + "then": "https://data.mapcomplete.org/nsi//logos/sncfreseau-ced9a9.png" }, { "if": { @@ -146778,7 +146978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/spravazeleznicso-fb3809.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/spravazeleznicso-fb3809.jpg" }, { "if": { @@ -146792,7 +146992,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tcdd-e43c16.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tcdd-e43c16.jpg" }, { "if": { @@ -146806,7 +147006,7 @@ } ] }, - "then": "./assets/data/nsi/logos/trafikverket-18cfca.png" + "then": "https://data.mapcomplete.org/nsi//logos/trafikverket-18cfca.png" }, { "if": { @@ -146820,7 +147020,7 @@ } ] }, - "then": "./assets/data/nsi/logos/unionpacificrailroad-2c7402.png" + "then": "https://data.mapcomplete.org/nsi//logos/unionpacificrailroad-2c7402.png" }, { "if": { @@ -146834,7 +147034,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zsr-ae10a0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zsr-ae10a0.jpg" }, { "if": { @@ -146848,7 +147048,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zssk-ae10a0.png" + "then": "https://data.mapcomplete.org/nsi//logos/zssk-ae10a0.png" }, { "if": { @@ -146862,7 +147062,7 @@ } ] }, - "then": "./assets/data/nsi/logos/b5cfb7-dc2a17.svg" + "then": "https://data.mapcomplete.org/nsi//logos/b5cfb7-dc2a17.svg" }, { "if": { @@ -146876,7 +147076,7 @@ } ] }, - "then": "./assets/data/nsi/logos/afbfca-ce52f6.png" + "then": "https://data.mapcomplete.org/nsi//logos/afbfca-ce52f6.png" }, { "if": { @@ -146892,7 +147092,7 @@ } ] }, - "then": "./assets/data/nsi/logos/odesarailways-53b4a5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/odesarailways-53b4a5.jpg" }, { "if": { @@ -146908,7 +147108,7 @@ } ] }, - "then": "./assets/data/nsi/logos/russianrailways-538f7a.png" + "then": "https://data.mapcomplete.org/nsi//logos/russianrailways-538f7a.png" }, { "if": { @@ -146926,7 +147126,7 @@ } ] }, - "then": "./assets/data/nsi/logos/korearailnetworkauthority-70c7ea.png" + "then": "https://data.mapcomplete.org/nsi//logos/korearailnetworkauthority-70c7ea.png" }, { "if": { @@ -146942,7 +147142,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chinarailway-b63757.svg" + "then": "https://data.mapcomplete.org/nsi//logos/chinarailway-b63757.svg" }, { "if": { @@ -146961,7 +147161,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nagoyarailroad-c878da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nagoyarailroad-c878da.jpg" }, { "if": { @@ -146980,7 +147180,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kintetsurailwaycompany-c878da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/kintetsurailwaycompany-c878da.jpg" }, { "if": { @@ -146995,7 +147195,7 @@ } ] }, - "then": "./assets/data/nsi/logos/albtalverkehrsgesellschaftmbh-7a762a.png" + "then": "https://data.mapcomplete.org/nsi//logos/albtalverkehrsgesellschaftmbh-7a762a.png" }, { "if": { @@ -147010,7 +147210,7 @@ } ] }, - "then": "./assets/data/nsi/logos/enteautonomovolturno-063200.png" + "then": "https://data.mapcomplete.org/nsi//logos/enteautonomovolturno-063200.png" }, { "if": { @@ -147024,7 +147224,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hgk-40c7ea.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hgk-40c7ea.svg" }, { "if": { @@ -147038,7 +147238,7 @@ } ] }, - "then": "./assets/data/nsi/logos/networkrail-ce54b3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/networkrail-ce54b3.jpg" }, { "if": { @@ -147052,7 +147252,7 @@ } ] }, - "then": "./assets/data/nsi/logos/pkppolskieliniekolejowesa-3a0b03.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/pkppolskieliniekolejowesa-3a0b03.jpg" }, { "if": { @@ -147066,7 +147266,7 @@ } ] }, - "then": "./assets/data/nsi/logos/rfi-063200.svg" + "then": "https://data.mapcomplete.org/nsi//logos/rfi-063200.svg" }, { "if": { @@ -147080,7 +147280,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sporveien-7041d4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sporveien-7041d4.jpg" }, { "if": { @@ -147094,7 +147294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/czspravazeleznic-bc9d07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/czspravazeleznic-bc9d07.jpg" }, { "if": { @@ -147108,7 +147308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/surreycountycouncil-51438e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/surreycountycouncil-51438e.jpg" }, { "if": { @@ -147122,7 +147322,7 @@ } ] }, - "then": "./assets/data/nsi/logos/szinfrastruktura-41e182.svg" + "then": "https://data.mapcomplete.org/nsi//logos/szinfrastruktura-41e182.svg" }, { "if": { @@ -147136,7 +147336,7 @@ } ] }, - "then": "./assets/data/nsi/logos/zsr-5c437f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/zsr-5c437f.jpg" }, { "if": { @@ -147156,7 +147356,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thehongkongjockeyclub-24af24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/thehongkongjockeyclub-24af24.jpg" }, { "if": { @@ -147173,7 +147373,7 @@ } ] }, - "then": "./assets/data/nsi/logos/alabamagoodwillindustries-a00d18.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/alabamagoodwillindustries-a00d18.jpg" }, { "if": { @@ -147190,7 +147390,7 @@ } ] }, - "then": "./assets/data/nsi/logos/eastersealsgoodwillnorthernrockymountain-72b5ff.png" + "then": "https://data.mapcomplete.org/nsi//logos/eastersealsgoodwillnorthernrockymountain-72b5ff.png" }, { "if": { @@ -147207,7 +147407,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evansvillegoodwillindustries-f90552.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evansvillegoodwillindustries-f90552.jpg" }, { "if": { @@ -147224,7 +147424,7 @@ } ] }, - "then": "./assets/data/nsi/logos/evergreengoodwill-4ad421.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/evergreengoodwill-4ad421.jpg" }, { "if": { @@ -147241,7 +147441,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillcentralcoast-efc9f2.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillcentralcoast-efc9f2.png" }, { "if": { @@ -147258,7 +147458,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillcolumbus-7d1450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillcolumbus-7d1450.jpg" }, { "if": { @@ -147275,7 +147475,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilleastersealsmiamivalley-7d1450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsmiamivalley-7d1450.jpg" }, { "if": { @@ -147292,7 +147492,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilleastersealsofthegulfcoast-d08f44.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsofthegulfcoast-d08f44.png" }, { "if": { @@ -147309,7 +147509,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillhawaii-7d314b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillhawaii-7d314b.jpg" }, { "if": { @@ -147326,7 +147526,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesontariogreatlakes-48713b.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesontariogreatlakes-48713b.png" }, { "if": { @@ -147343,7 +147543,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesbigbend-e021cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesbigbend-e021cd.jpg" }, { "if": { @@ -147360,7 +147560,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriescentraltexas-1f3843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriescentraltexas-1f3843.jpg" }, { "if": { @@ -147377,7 +147577,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofacadiana-239b23.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofacadiana-239b23.png" }, { "if": { @@ -147394,7 +147594,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofakron-7d1450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofakron-7d1450.jpg" }, { "if": { @@ -147411,7 +147611,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofalaska-47c56e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofalaska-47c56e.jpg" }, { "if": { @@ -147428,7 +147628,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofarkansas-99d5c9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofarkansas-99d5c9.jpg" }, { "if": { @@ -147445,7 +147645,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentralandnorthernarizona-69add3.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralandnorthernarizona-69add3.png" }, { "if": { @@ -147462,7 +147662,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentraleasttexas-1f3843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentraleasttexas-1f3843.jpg" }, { "if": { @@ -147479,7 +147679,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentralillinois-04edf3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralillinois-04edf3.jpg" }, { "if": { @@ -147496,7 +147696,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentralnorthcarolina-c4bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralnorthcarolina-c4bcca.jpg" }, { "if": { @@ -147513,7 +147713,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofcentraloklahoma-81bbf3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentraloklahoma-81bbf3.jpg" }, { "if": { @@ -147530,7 +147730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofeasttexas-1f3843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofeasttexas-1f3843.jpg" }, { "if": { @@ -147547,7 +147747,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofeasternnorthcarolina-c4bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofeasternnorthcarolina-c4bcca.jpg" }, { "if": { @@ -147564,7 +147764,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofelpaso-4d0aef.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofelpaso-4d0aef.png" }, { "if": { @@ -147581,7 +147781,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoferiehuronottawaandsanduskycounties-7d1450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoferiehuronottawaandsanduskycounties-7d1450.jpg" }, { "if": { @@ -147598,7 +147798,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofgreaterclevelandandeastcentralohio-e44058.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaterclevelandandeastcentralohio-e44058.jpg" }, { "if": { @@ -147615,7 +147815,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofgreaterdetroit-db4f48.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaterdetroit-db4f48.png" }, { "if": { @@ -147632,7 +147832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofgreatergrandrapids-db4f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreatergrandrapids-db4f48.jpg" }, { "if": { @@ -147649,7 +147849,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofgreaternebraska-730912.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaternebraska-730912.jpg" }, { "if": { @@ -147666,7 +147866,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofhouston-1f3843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofhouston-1f3843.jpg" }, { "if": { @@ -147683,7 +147883,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofkansas-557a0a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkansas-557a0a.jpg" }, { "if": { @@ -147700,7 +147900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofkentucky-ff88c0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkentucky-ff88c0.jpg" }, { "if": { @@ -147717,7 +147917,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofkyowvaarea-70702e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkyowvaarea-70702e.jpg" }, { "if": { @@ -147734,7 +147934,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoflaneandsouthcoastcounties-469915.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoflaneandsouthcoastcounties-469915.jpg" }, { "if": { @@ -147751,7 +147951,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmichiana-2fd554.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmichiana-2fd554.jpg" }, { "if": { @@ -147768,7 +147968,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmidmichigan-db4f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmidmichigan-db4f48.jpg" }, { "if": { @@ -147785,7 +147985,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmiddlegeorgiaandthecentralsavannahriverarea-788893.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmiddlegeorgiaandthecentralsavannahriverarea-788893.jpg" }, { "if": { @@ -147802,7 +148002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmiddletennessee-c25d71.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmiddletennessee-c25d71.png" }, { "if": { @@ -147819,7 +148019,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofmississippi-5da02e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmississippi-5da02e.jpg" }, { "if": { @@ -147836,7 +148036,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnewmexico-b5dc7a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnewmexico-b5dc7a.jpg" }, { "if": { @@ -147853,7 +148053,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthcentralpennsylvania-90dcfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthcentralpennsylvania-90dcfa.jpg" }, { "if": { @@ -147870,7 +148070,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthcentralwisconsin-3917ca.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthcentralwisconsin-3917ca.png" }, { "if": { @@ -147887,7 +148087,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthflorida-4a845a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthflorida-4a845a.jpg" }, { "if": { @@ -147904,7 +148104,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthlouisiana-239b23.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthlouisiana-239b23.jpg" }, { "if": { @@ -147921,7 +148121,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnortheastiowa-110f24.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheastiowa-110f24.jpg" }, { "if": { @@ -147938,7 +148138,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnortheasttexas-f45a9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheasttexas-f45a9b.jpg" }, { "if": { @@ -147955,7 +148155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnortheasternpennsylvania-90dcfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheasternpennsylvania-90dcfa.jpg" }, { "if": { @@ -147972,7 +148172,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthernmichigan-db4f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthernmichigan-db4f48.jpg" }, { "if": { @@ -147989,7 +148189,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthwestnorthcarolina-c4bcca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthwestnorthcarolina-c4bcca.jpg" }, { "if": { @@ -148006,7 +148206,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthwesttexas-1f3843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthwesttexas-1f3843.jpg" }, { "if": { @@ -148023,7 +148223,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsaintclaircounty-db4f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsaintclaircounty-db4f48.jpg" }, { "if": { @@ -148040,7 +148240,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsanantonio-1f3843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsanantonio-1f3843.jpg" }, { "if": { @@ -148057,7 +148257,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsandiegocounty-efc9f2.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsandiegocounty-efc9f2.png" }, { "if": { @@ -148074,7 +148274,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsanjoaquinvalley-efc9f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsanjoaquinvalley-efc9f2.jpg" }, { "if": { @@ -148091,7 +148291,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthcentralcalifornia-efc9f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthcentralcalifornia-efc9f2.jpg" }, { "if": { @@ -148108,7 +148308,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthflorida-4a845a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthflorida-4a845a.jpg" }, { "if": { @@ -148125,7 +148325,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthmississippi-5da02e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthmississippi-5da02e.jpg" }, { "if": { @@ -148142,7 +148342,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthtexas-1f3843.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthtexas-1f3843.png" }, { "if": { @@ -148159,7 +148359,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsoutheasttexasandsouthwestlouisiana-0a5fc3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasttexasandsouthwestlouisiana-0a5fc3.jpg" }, { "if": { @@ -148176,7 +148376,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsoutheasternmichigan-db4f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasternmichigan-db4f48.jpg" }, { "if": { @@ -148193,7 +148393,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsoutheasternwisconsinandmetropolitanchicago-fd97cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasternwisconsinandmetropolitanchicago-fd97cd.jpg" }, { "if": { @@ -148210,7 +148410,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthernarizona-69add3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthernarizona-69add3.jpg" }, { "if": { @@ -148227,7 +148427,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthernnewjerseyandphiladelphia-9a105e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthernnewjerseyandphiladelphia-9a105e.jpg" }, { "if": { @@ -148244,7 +148444,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthwestflorida-4a845a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwestflorida-4a845a.jpg" }, { "if": { @@ -148261,7 +148461,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthwestoklahomaandnorthtexas-f45a9b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwestoklahomaandnorthtexas-f45a9b.jpg" }, { "if": { @@ -148278,7 +148478,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofsouthwesternmichigan-db4f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwesternmichigan-db4f48.jpg" }, { "if": { @@ -148295,7 +148495,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoftenneva-e7ef9c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftenneva-e7ef9c.jpg" }, { "if": { @@ -148312,7 +148512,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoftheberkshiresandsouthernvermont-b60dce.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftheberkshiresandsouthernvermont-b60dce.jpg" }, { "if": { @@ -148329,7 +148529,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthechesapeake-c7f62c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthechesapeake-c7f62c.jpg" }, { "if": { @@ -148346,7 +148546,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthecolumbia-ffe688.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthecolumbia-ffe688.png" }, { "if": { @@ -148363,7 +148563,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthecolumbiawillamette-ffe688.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthecolumbiawillamette-ffe688.jpg" }, { "if": { @@ -148380,7 +148580,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthegreaterchattanoogaarea-0a549e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthegreaterchattanoogaarea-0a549e.jpg" }, { "if": { @@ -148397,7 +148597,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoftheinlandnorthwest-b786a5.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftheinlandnorthwest-b786a5.png" }, { "if": { @@ -148414,7 +148614,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthesouthernpiedmont-a6f29a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthesouthernpiedmont-a6f29a.jpg" }, { "if": { @@ -148431,7 +148631,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthesummit-1772e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthesummit-1772e0.jpg" }, { "if": { @@ -148448,7 +148648,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofthevalleys-8ffb7c.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthevalleys-8ffb7c.png" }, { "if": { @@ -148465,7 +148665,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesoftulsa-59d264.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftulsa-59d264.jpg" }, { "if": { @@ -148482,7 +148682,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofupstatemidlandssouthcarolina-80da42.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofupstatemidlandssouthcarolina-80da42.png" }, { "if": { @@ -148499,7 +148699,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofwayneandholmescounties-7d1450.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwayneandholmescounties-7d1450.png" }, { "if": { @@ -148516,7 +148716,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofwestmichigan-db4f48.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwestmichigan-db4f48.jpg" }, { "if": { @@ -148533,7 +148733,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofwyoming-7ddffb.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwyoming-7ddffb.jpg" }, { "if": { @@ -148550,7 +148750,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofzanesville-e44058.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofzanesville-e44058.jpg" }, { "if": { @@ -148567,7 +148767,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesservingsoutheastnebraska-730912.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesservingsoutheastnebraska-730912.png" }, { "if": { @@ -148584,7 +148784,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriessuncoast-4a845a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriessuncoast-4a845a.jpg" }, { "if": { @@ -148601,7 +148801,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesknoxville-c25d71.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesknoxville-c25d71.jpg" }, { "if": { @@ -148618,7 +148818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillkeystonearea-90dcfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillkeystonearea-90dcfa.jpg" }, { "if": { @@ -148635,7 +148835,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillmanasota-4a845a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillmanasota-4a845a.jpg" }, { "if": { @@ -148652,7 +148852,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillnorthcentraltexas-1f3843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillnorthcentraltexas-1f3843.jpg" }, { "if": { @@ -148669,7 +148869,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofnorthernnewengland-8706d7.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthernnewengland-8706d7.png" }, { "if": { @@ -148686,7 +148886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillnynj-af8277.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillnynj-af8277.jpg" }, { "if": { @@ -148703,7 +148903,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofcentralandsouthernindiana-fa4f39.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofcentralandsouthernindiana-fa4f39.png" }, { "if": { @@ -148720,7 +148920,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofcentralandcoastalvirginia-8ffb7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofcentralandcoastalvirginia-8ffb7c.jpg" }, { "if": { @@ -148737,7 +148937,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofcolorado-97b90c.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofcolorado-97b90c.png" }, { "if": { @@ -148754,7 +148954,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofgreaterwashington-9f4803.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofgreaterwashington-9f4803.png" }, { "if": { @@ -148771,7 +148971,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofnorthcentralwestvirginia-1772e0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthcentralwestvirginia-1772e0.jpg" }, { "if": { @@ -148788,7 +148988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofnorthgeorgia-a151f3.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthgeorgia-a151f3.png" }, { "if": { @@ -148805,7 +149005,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofnorthernillinois-fd97cd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthernillinois-fd97cd.jpg" }, { "if": { @@ -148822,7 +149022,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofnorthernwisconsinanduppermichigan-298eef.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthernwisconsinanduppermichigan-298eef.jpg" }, { "if": { @@ -148839,7 +149039,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilloforangecounty-c30ced.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilloforangecounty-c30ced.jpg" }, { "if": { @@ -148856,7 +149056,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsiliconvalley-efc9f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsiliconvalley-efc9f2.jpg" }, { "if": { @@ -148873,7 +149073,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthcentralohio-7d1450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthcentralohio-7d1450.jpg" }, { "if": { @@ -148890,7 +149090,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthcentralwisconsin-3917ca.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthcentralwisconsin-3917ca.jpg" }, { "if": { @@ -148907,7 +149107,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthernnevada-e2f593.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthernnevada-e2f593.jpg" }, { "if": { @@ -148924,7 +149124,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthernnewengland-73c42a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthernnewengland-73c42a.jpg" }, { "if": { @@ -148941,7 +149141,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsouthwesternpennsylvania-90dcfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthwesternpennsylvania-90dcfa.jpg" }, { "if": { @@ -148958,7 +149158,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofthefingerlakes-94c896.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofthefingerlakes-94c896.png" }, { "if": { @@ -148975,7 +149175,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofthegreatplains-830112.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofthegreatplains-830112.png" }, { "if": { @@ -148992,7 +149192,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilloftheheartland-e890bf.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilloftheheartland-e890bf.jpg" }, { "if": { @@ -149009,7 +149209,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilloftheolympicsandrainierregion-4ad421.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilloftheolympicsandrainierregion-4ad421.png" }, { "if": { @@ -149026,7 +149226,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofthesouthernalleghenies-90dcfa.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofthesouthernalleghenies-90dcfa.jpg" }, { "if": { @@ -149043,7 +149243,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofwesternandnorthernconnecticut-31280a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternandnorthernconnecticut-31280a.jpg" }, { "if": { @@ -149060,7 +149260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofwesternmissouriandeasternkansas-9827d9.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternmissouriandeasternkansas-9827d9.jpg" }, { "if": { @@ -149077,7 +149277,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofwesternnewyork-94c896.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternnewyork-94c896.jpg" }, { "if": { @@ -149094,7 +149294,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillrappahannock-8ffb7c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillrappahannock-8ffb7c.jpg" }, { "if": { @@ -149111,7 +149311,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillredwoodempire-efc9f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillredwoodempire-efc9f2.jpg" }, { "if": { @@ -149128,7 +149328,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillsacramentovalleyandnorthernnevada-d1b13f.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillsacramentovalleyandnorthernnevada-d1b13f.png" }, { "if": { @@ -149145,7 +149345,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillservingeasternnebraskaandsouthwestiowa-9df4d0.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillservingeasternnebraskaandsouthwestiowa-9df4d0.jpg" }, { "if": { @@ -149162,7 +149362,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillservinglorainerieandhuroncounties-7d1450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillservinglorainerieandhuroncounties-7d1450.jpg" }, { "if": { @@ -149179,7 +149379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillofsanfranciscobay-efc9f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillofsanfranciscobay-efc9f2.jpg" }, { "if": { @@ -149196,7 +149396,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillsoutheastgeorgia-a151f3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillsoutheastgeorgia-a151f3.jpg" }, { "if": { @@ -149213,7 +149413,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillsoutherncalifornia-efc9f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillsoutherncalifornia-efc9f2.jpg" }, { "if": { @@ -149230,7 +149430,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillsouthernlosangelescounty-efc9f2.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillsouthernlosangelescounty-efc9f2.png" }, { "if": { @@ -149247,7 +149447,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillindustriesofventuraandsantabarbaracounties-efc9f2.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofventuraandsantabarbaracounties-efc9f2.jpg" }, { "if": { @@ -149264,7 +149464,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwillwesttexas-1f3843.png" + "then": "https://data.mapcomplete.org/nsi//logos/goodwillwesttexas-1f3843.png" }, { "if": { @@ -149281,7 +149481,7 @@ } ] }, - "then": "./assets/data/nsi/logos/goodwilleastersealsminnesota-d58266.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsminnesota-d58266.jpg" }, { "if": { @@ -149298,7 +149498,7 @@ } ] }, - "then": "./assets/data/nsi/logos/gulfstreamgoodwillindustries-4a845a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/gulfstreamgoodwillindustries-4a845a.jpg" }, { "if": { @@ -149315,7 +149515,7 @@ } ] }, - "then": "./assets/data/nsi/logos/heartoftexasgoodwillindustries-1f3843.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/heartoftexasgoodwillindustries-1f3843.jpg" }, { "if": { @@ -149332,7 +149532,7 @@ } ] }, - "then": "./assets/data/nsi/logos/horizongoodwillindustries-fa25da.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/horizongoodwillindustries-fa25da.jpg" }, { "if": { @@ -149349,7 +149549,7 @@ } ] }, - "then": "./assets/data/nsi/logos/landoflincolngoodwillindustries-4e33ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/landoflincolngoodwillindustries-4e33ec.jpg" }, { "if": { @@ -149366,7 +149566,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lickingknoxgoodwillindustries-7d1450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lickingknoxgoodwillindustries-7d1450.jpg" }, { "if": { @@ -149383,7 +149583,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mariongoodwillindustries-7d1450.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mariongoodwillindustries-7d1450.jpg" }, { "if": { @@ -149400,7 +149600,7 @@ } ] }, - "then": "./assets/data/nsi/logos/memphisgoodwill-587281.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/memphisgoodwill-587281.jpg" }, { "if": { @@ -149417,7 +149617,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mersmissourigoodwillindustries-bb7113.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mersmissourigoodwillindustries-bb7113.jpg" }, { "if": { @@ -149434,7 +149634,7 @@ } ] }, - "then": "./assets/data/nsi/logos/morganmemorialgoodwillindustries-798f3b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/morganmemorialgoodwillindustries-798f3b.jpg" }, { "if": { @@ -149451,7 +149651,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ohiovalleygoodwillindustries-9d056f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ohiovalleygoodwillindustries-9d056f.jpg" }, { "if": { @@ -149468,7 +149668,7 @@ } ] }, - "then": "./assets/data/nsi/logos/palmettogoodwill-80da42.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/palmettogoodwill-80da42.jpg" }, { "if": { @@ -149485,7 +149685,7 @@ } ] }, - "then": "./assets/data/nsi/logos/southernoregongoodwillindustries-175839.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/southernoregongoodwillindustries-175839.jpg" }, { "if": { @@ -149502,7 +149702,7 @@ } ] }, - "then": "./assets/data/nsi/logos/truenorthgoodwill-d58266.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/truenorthgoodwill-d58266.jpg" }, { "if": { @@ -149519,7 +149719,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wabashvalleygoodwillindustries-4e33ec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/wabashvalleygoodwillindustries-4e33ec.jpg" }, { "if": { @@ -149536,7 +149736,7 @@ } ] }, - "then": "./assets/data/nsi/logos/youngstownareagoodwillindustries-cc721c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/youngstownareagoodwillindustries-cc721c.jpg" }, { "if": { @@ -149553,7 +149753,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralenglandcooperative-ac8d0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/centralenglandcooperative-ac8d0d.jpg" }, { "if": { @@ -149570,7 +149770,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chelmsfordstarcooperativesociety-ac8d0d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chelmsfordstarcooperativesociety-ac8d0d.jpg" }, { "if": { @@ -149587,7 +149787,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecooperativegroup-ac8d0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/thecooperativegroup-ac8d0d.png" }, { "if": { @@ -149604,7 +149804,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thesoutherncooperative-ac8d0d.png" + "then": "https://data.mapcomplete.org/nsi//logos/thesoutherncooperative-ac8d0d.png" }, { "if": { @@ -149618,7 +149818,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ayalamalls-36e96f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ayalamalls-36e96f.jpg" }, { "if": { @@ -149632,7 +149832,7 @@ } ] }, - "then": "./assets/data/nsi/logos/brookfieldproperties-58b77a.png" + "then": "https://data.mapcomplete.org/nsi//logos/brookfieldproperties-58b77a.png" }, { "if": { @@ -149646,7 +149846,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cblproperties-da138d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cblproperties-da138d.jpg" }, { "if": { @@ -149662,7 +149862,7 @@ } ] }, - "then": "./assets/data/nsi/logos/centralpattana-a61f66.svg" + "then": "https://data.mapcomplete.org/nsi//logos/centralpattana-a61f66.svg" }, { "if": { @@ -149676,7 +149876,7 @@ } ] }, - "then": "./assets/data/nsi/logos/macerich-da138d.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/macerich-da138d.jpg" }, { "if": { @@ -149690,7 +149890,7 @@ } ] }, - "then": "./assets/data/nsi/logos/megaworldlifestylemalls-36e96f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/megaworldlifestylemalls-36e96f.jpg" }, { "if": { @@ -149704,7 +149904,7 @@ } ] }, - "then": "./assets/data/nsi/logos/robinsonsmalls-36e96f.png" + "then": "https://data.mapcomplete.org/nsi//logos/robinsonsmalls-36e96f.png" }, { "if": { @@ -149718,7 +149918,7 @@ } ] }, - "then": "./assets/data/nsi/logos/simonpropertygroup-58b77a.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/simonpropertygroup-58b77a.jpg" }, { "if": { @@ -149732,7 +149932,7 @@ } ] }, - "then": "./assets/data/nsi/logos/smsupermalls-36e96f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/smsupermalls-36e96f.jpg" }, { "if": { @@ -149747,7 +149947,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cellularsales-89d4ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/cellularsales-89d4ad.png" }, { "if": { @@ -149763,7 +149963,7 @@ } ] }, - "then": "./assets/data/nsi/logos/thecellularconnection-89d4ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/thecellularconnection-89d4ad.png" }, { "if": { @@ -149778,7 +149978,7 @@ } ] }, - "then": "./assets/data/nsi/logos/victra-89d4ad.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/victra-89d4ad.jpg" }, { "if": { @@ -149793,7 +149993,7 @@ } ] }, - "then": "./assets/data/nsi/logos/wirelesszone-89d4ad.png" + "then": "https://data.mapcomplete.org/nsi//logos/wirelesszone-89d4ad.png" }, { "if": { @@ -149808,7 +150008,7 @@ } ] }, - "then": "./assets/data/nsi/logos/184e0b-394562.svg" + "then": "https://data.mapcomplete.org/nsi//logos/184e0b-394562.svg" }, { "if": { @@ -149824,7 +150024,7 @@ } ] }, - "then": "./assets/data/nsi/logos/amazonwebservices-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/amazonwebservices-918717.jpg" }, { "if": { @@ -149838,7 +150038,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appleinc-918717.png" + "then": "https://data.mapcomplete.org/nsi//logos/appleinc-918717.png" }, { "if": { @@ -149852,7 +150052,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bouyguestelecom-fa4ae3.png" + "then": "https://data.mapcomplete.org/nsi//logos/bouyguestelecom-fa4ae3.png" }, { "if": { @@ -149866,7 +150066,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bunny-918717.png" + "then": "https://data.mapcomplete.org/nsi//logos/bunny-918717.png" }, { "if": { @@ -149881,7 +150081,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cloudflare-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cloudflare-918717.jpg" }, { "if": { @@ -149895,7 +150095,7 @@ } ] }, - "then": "./assets/data/nsi/logos/cyrusone-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/cyrusone-918717.jpg" }, { "if": { @@ -149910,7 +150110,7 @@ } ] }, - "then": "./assets/data/nsi/logos/digitalrealty-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/digitalrealty-918717.jpg" }, { "if": { @@ -149925,7 +150125,7 @@ } ] }, - "then": "./assets/data/nsi/logos/digitalocean-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/digitalocean-918717.jpg" }, { "if": { @@ -149940,7 +150140,7 @@ } ] }, - "then": "./assets/data/nsi/logos/edgeconnex-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/edgeconnex-918717.jpg" }, { "if": { @@ -149955,7 +150155,7 @@ } ] }, - "then": "./assets/data/nsi/logos/equinix-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/equinix-918717.jpg" }, { "if": { @@ -149970,7 +150170,7 @@ } ] }, - "then": "./assets/data/nsi/logos/fastly-918717.png" + "then": "https://data.mapcomplete.org/nsi//logos/fastly-918717.png" }, { "if": { @@ -149985,7 +150185,7 @@ } ] }, - "then": "./assets/data/nsi/logos/flexential-251dd4.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/flexential-251dd4.jpg" }, { "if": { @@ -150000,7 +150200,7 @@ } ] }, - "then": "./assets/data/nsi/logos/google-918717.png" + "then": "https://data.mapcomplete.org/nsi//logos/google-918717.png" }, { "if": { @@ -150015,7 +150215,7 @@ } ] }, - "then": "./assets/data/nsi/logos/interxion-918717.png" + "then": "https://data.mapcomplete.org/nsi//logos/interxion-918717.png" }, { "if": { @@ -150030,7 +150230,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lumentechnologies-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lumentechnologies-918717.jpg" }, { "if": { @@ -150045,7 +150245,7 @@ } ] }, - "then": "./assets/data/nsi/logos/meta-918717.png" + "then": "https://data.mapcomplete.org/nsi//logos/meta-918717.png" }, { "if": { @@ -150060,7 +150260,7 @@ } ] }, - "then": "./assets/data/nsi/logos/microsoft-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/microsoft-918717.jpg" }, { "if": { @@ -150075,7 +150275,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nextdc-ea7a9e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nextdc-ea7a9e.jpg" }, { "if": { @@ -150090,7 +150290,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ntt-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ntt-918717.jpg" }, { "if": { @@ -150106,7 +150306,7 @@ } ] }, - "then": "./assets/data/nsi/logos/qualitytechnologyservices-149364.png" + "then": "https://data.mapcomplete.org/nsi//logos/qualitytechnologyservices-149364.png" }, { "if": { @@ -150120,7 +150320,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sabeydatacenters-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sabeydatacenters-918717.jpg" }, { "if": { @@ -150134,7 +150334,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sfr-fa4ae3.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sfr-fa4ae3.jpg" }, { "if": { @@ -150149,7 +150349,7 @@ } ] }, - "then": "./assets/data/nsi/logos/stackinfrastructure-918717.png" + "then": "https://data.mapcomplete.org/nsi//logos/stackinfrastructure-918717.png" }, { "if": { @@ -150164,7 +150364,7 @@ } ] }, - "then": "./assets/data/nsi/logos/t5datacenters-251dd4.png" + "then": "https://data.mapcomplete.org/nsi//logos/t5datacenters-251dd4.png" }, { "if": { @@ -150179,7 +150379,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telstra-918717.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telstra-918717.jpg" }, { "if": { @@ -150194,7 +150394,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tpgtelecom-61c6f8.png" + "then": "https://data.mapcomplete.org/nsi//logos/tpgtelecom-61c6f8.png" }, { "if": { @@ -150208,7 +150408,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a1telekomaustria-72cd8b.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/a1telekomaustria-72cd8b.jpg" }, { "if": { @@ -150223,7 +150423,7 @@ } ] }, - "then": "./assets/data/nsi/logos/atandt-ca5b07.svg" + "then": "https://data.mapcomplete.org/nsi//logos/atandt-ca5b07.svg" }, { "if": { @@ -150237,7 +150437,7 @@ } ] }, - "then": "./assets/data/nsi/logos/axione-92129e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/axione-92129e.jpg" }, { "if": { @@ -150251,7 +150451,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellaliant-972095.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellaliant-972095.jpg" }, { "if": { @@ -150265,7 +150465,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellcanada-972095.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellcanada-972095.jpg" }, { "if": { @@ -150279,7 +150479,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bellmts-e779de.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bellmts-e779de.jpg" }, { "if": { @@ -150293,7 +150493,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bsnl-f69aec.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/bsnl-f69aec.jpg" }, { "if": { @@ -150307,7 +150507,7 @@ } ] }, - "then": "./assets/data/nsi/logos/chorus-04ab95.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/chorus-04ab95.jpg" }, { "if": { @@ -150322,7 +150522,7 @@ } ] }, - "then": "./assets/data/nsi/logos/comcast-ca5b07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/comcast-ca5b07.jpg" }, { "if": { @@ -150336,7 +150536,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutscheglasfaser-650d2e.png" + "then": "https://data.mapcomplete.org/nsi//logos/deutscheglasfaser-650d2e.png" }, { "if": { @@ -150350,7 +150550,7 @@ } ] }, - "then": "./assets/data/nsi/logos/deutschetelekomag-650d2e.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/deutschetelekomag-650d2e.jpg" }, { "if": { @@ -150364,7 +150564,7 @@ } ] }, - "then": "./assets/data/nsi/logos/etecsa-99f410.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/etecsa-99f410.jpg" }, { "if": { @@ -150378,7 +150578,7 @@ } ] }, - "then": "./assets/data/nsi/logos/free-a5dd94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/free-a5dd94.jpg" }, { "if": { @@ -150393,7 +150593,7 @@ } ] }, - "then": "./assets/data/nsi/logos/frontier-c2d6f6.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/frontier-c2d6f6.jpg" }, { "if": { @@ -150408,7 +150608,7 @@ } ] }, - "then": "./assets/data/nsi/logos/globacom-d6ad77.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/globacom-d6ad77.jpg" }, { "if": { @@ -150422,7 +150622,7 @@ } ] }, - "then": "./assets/data/nsi/logos/hongkongtelecom-361b71.svg" + "then": "https://data.mapcomplete.org/nsi//logos/hongkongtelecom-361b71.svg" }, { "if": { @@ -150436,7 +150636,7 @@ } ] }, - "then": "./assets/data/nsi/logos/kpn-2cd407.png" + "then": "https://data.mapcomplete.org/nsi//logos/kpn-2cd407.png" }, { "if": { @@ -150450,7 +150650,7 @@ } ] }, - "then": "./assets/data/nsi/logos/lumen-94a439.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/lumen-94a439.jpg" }, { "if": { @@ -150464,7 +150664,7 @@ } ] }, - "then": "./assets/data/nsi/logos/manxtelecom-672f7b.svg" + "then": "https://data.mapcomplete.org/nsi//logos/manxtelecom-672f7b.svg" }, { "if": { @@ -150478,7 +150678,7 @@ } ] }, - "then": "./assets/data/nsi/logos/mtn-a2c6c7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/mtn-a2c6c7.jpg" }, { "if": { @@ -150492,7 +150692,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nbnco-03cc00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nbnco-03cc00.jpg" }, { "if": { @@ -150511,7 +150711,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nippontelegraphandtelephoneeast-d78dfd.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nippontelegraphandtelephoneeast-d78dfd.jpg" }, { "if": { @@ -150530,7 +150730,7 @@ } ] }, - "then": "./assets/data/nsi/logos/nippontelegraphandtelephonewest-bad60c.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/nippontelegraphandtelephonewest-bad60c.jpg" }, { "if": { @@ -150544,7 +150744,7 @@ } ] }, - "then": "./assets/data/nsi/logos/openreach-ef19df.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/openreach-ef19df.jpg" }, { "if": { @@ -150559,7 +150759,7 @@ } ] }, - "then": "./assets/data/nsi/logos/orange-a5dd94.png" + "then": "https://data.mapcomplete.org/nsi//logos/orange-a5dd94.png" }, { "if": { @@ -150574,7 +150774,7 @@ } ] }, - "then": "./assets/data/nsi/logos/proximus-121b1a.png" + "then": "https://data.mapcomplete.org/nsi//logos/proximus-121b1a.png" }, { "if": { @@ -150588,7 +150788,7 @@ } ] }, - "then": "./assets/data/nsi/logos/sfr-a5dd94.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/sfr-a5dd94.jpg" }, { "if": { @@ -150602,7 +150802,7 @@ } ] }, - "then": "./assets/data/nsi/logos/starlink-d331a5.svg" + "then": "https://data.mapcomplete.org/nsi//logos/starlink-d331a5.svg" }, { "if": { @@ -150616,7 +150816,7 @@ } ] }, - "then": "./assets/data/nsi/logos/swisscom-3773d7.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/swisscom-3773d7.jpg" }, { "if": { @@ -150630,7 +150830,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tdf-92129e.svg" + "then": "https://data.mapcomplete.org/nsi//logos/tdf-92129e.svg" }, { "if": { @@ -150644,7 +150844,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telefonica-1b5ba5.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telefonica-1b5ba5.jpg" }, { "if": { @@ -150658,7 +150858,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telstra-03cc00.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telstra-03cc00.jpg" }, { "if": { @@ -150672,7 +150872,7 @@ } ] }, - "then": "./assets/data/nsi/logos/telus-972095.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/telus-972095.jpg" }, { "if": { @@ -150686,7 +150886,7 @@ } ] }, - "then": "./assets/data/nsi/logos/tim-16a737.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/tim-16a737.jpg" }, { "if": { @@ -150700,7 +150900,7 @@ } ] }, - "then": "./assets/data/nsi/logos/turktelekom-fd4f59.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/turktelekom-fd4f59.jpg" }, { "if": { @@ -150715,7 +150915,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verizon-ca5b07.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/verizon-ca5b07.jpg" }, { "if": { @@ -150729,7 +150929,7 @@ } ] }, - "then": "./assets/data/nsi/logos/verizonvirginiallc-ca5b07.svg" + "then": "https://data.mapcomplete.org/nsi//logos/verizonvirginiallc-ca5b07.svg" }, { "if": { @@ -150744,7 +150944,7 @@ } ] }, - "then": "./assets/data/nsi/logos/ziplyfiber-a4e28f.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/ziplyfiber-a4e28f.jpg" }, { "if": { @@ -150758,7 +150958,7 @@ } ] }, - "then": "./assets/data/nsi/logos/a9dd80-83cf97.svg" + "then": "https://data.mapcomplete.org/nsi//logos/a9dd80-83cf97.svg" }, { "if": { @@ -150774,7 +150974,7 @@ } ] }, - "then": "./assets/data/nsi/logos/appalachianmountainclub-7cd18b.png" + "then": "https://data.mapcomplete.org/nsi//logos/appalachianmountainclub-7cd18b.png" }, { "if": { @@ -150788,7 +150988,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofconservation-b76ca8.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-b76ca8.png" }, { "if": { @@ -150802,7 +151002,7 @@ } ] }, - "then": "./assets/data/nsi/logos/top10holidayparks-b76ca8.jpg" + "then": "https://data.mapcomplete.org/nsi//logos/top10holidayparks-b76ca8.jpg" }, { "if": { @@ -150818,7 +151018,7 @@ } ] }, - "then": "./assets/data/nsi/logos/bulgariantouristunion-308d11.svg" + "then": "https://data.mapcomplete.org/nsi//logos/bulgariantouristunion-308d11.svg" }, { "if": { @@ -150832,7 +151032,7 @@ } ] }, - "then": "./assets/data/nsi/logos/departmentofconservation-5df9f2.png" + "then": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-5df9f2.png" } ] } @@ -150949,7 +151149,7 @@ }, { "question": "Affiouest", - "icon": "./assets/data/nsi/logos/affiouest-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/affiouest-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151001,7 +151201,7 @@ }, { "question": "AGSD", - "icon": "./assets/data/nsi/logos/agsd-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agsd-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151016,7 +151216,7 @@ }, { "question": "APG-SGA", - "icon": "./assets/data/nsi/logos/apgsga-e306ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apgsga-e306ca.png", "osmTags": { "and": [ "advertising=billboard", @@ -151054,7 +151254,7 @@ }, { "question": "awk", - "icon": "./assets/data/nsi/logos/awk-9fb964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/awk-9fb964.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151170,7 +151370,7 @@ }, { "question": "Charvet Digital Media", - "icon": "./assets/data/nsi/logos/charvetdigitalmedia-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/charvetdigitalmedia-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151185,7 +151385,7 @@ }, { "question": "Cityboard Media", - "icon": "./assets/data/nsi/logos/cityboardmedia-b0d60a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityboardmedia-b0d60a.png", "osmTags": { "and": [ "advertising=billboard", @@ -151200,7 +151400,7 @@ }, { "question": "Cityz Media", - "icon": "./assets/data/nsi/logos/cityzmedia-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityzmedia-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151215,7 +151415,7 @@ }, { "question": "Clear Channel", - "icon": "./assets/data/nsi/logos/clearchanneloutdoor-9f7775.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clearchanneloutdoor-9f7775.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151230,7 +151430,7 @@ }, { "question": "Clear Channel UK", - "icon": "./assets/data/nsi/logos/clearchanneluk-7bfab1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clearchanneluk-7bfab1.png", "osmTags": { "and": [ "advertising=billboard", @@ -151268,7 +151468,7 @@ }, { "question": "Cocktail Vision", - "icon": "./assets/data/nsi/logos/cocktailvision-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cocktailvision-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151297,7 +151497,7 @@ }, { "question": "Compy", - "icon": "./assets/data/nsi/logos/compy-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compy-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151423,7 +151623,7 @@ }, { "question": "Fiacchetti", - "icon": "./assets/data/nsi/logos/fiacchetti-28ca1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fiacchetti-28ca1f.png", "osmTags": { "and": [ "advertising=billboard", @@ -151466,7 +151666,7 @@ }, { "question": "Giraudy", - "icon": "./assets/data/nsi/logos/giraudy-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giraudy-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151495,7 +151695,7 @@ }, { "question": "Global", - "icon": "./assets/data/nsi/logos/global-451da4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/global-451da4.png", "osmTags": { "and": [ "advertising=billboard", @@ -151524,7 +151724,7 @@ }, { "question": "IKEA", - "icon": "./assets/data/nsi/logos/ikea-d4816c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-d4816c.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151548,7 +151748,7 @@ }, { "question": "JCDecaux", - "icon": "./assets/data/nsi/logos/jcdecaux-d4816c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcdecaux-d4816c.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151572,7 +151772,7 @@ }, { "question": "Lamar", - "icon": "./assets/data/nsi/logos/lamaradvertising-6f04f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamaradvertising-6f04f8.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151605,7 +151805,7 @@ }, { "question": "Lidl", - "icon": "./assets/data/nsi/logos/lidl-d4816c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidl-d4816c.png", "osmTags": { "and": [ "advertising=billboard", @@ -151629,7 +151829,7 @@ }, { "question": "McDonald's", - "icon": "./assets/data/nsi/logos/mcdonalds-d4816c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-d4816c.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151658,7 +151858,7 @@ }, { "question": "Megameedia", - "icon": "./assets/data/nsi/logos/megameedia-b19c35.png", + "icon": "https://data.mapcomplete.org/nsi//logos/megameedia-b19c35.png", "osmTags": { "and": [ "advertising=billboard", @@ -151682,7 +151882,7 @@ }, { "question": "North Lincolnshire Council", - "icon": "./assets/data/nsi/logos/northlincolnshirecouncil-920a75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northlincolnshirecouncil-920a75.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151715,7 +151915,7 @@ }, { "question": "oOh!media", - "icon": "./assets/data/nsi/logos/oohmedia-32eb77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oohmedia-32eb77.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151730,7 +151930,7 @@ }, { "question": "Outfront Media", - "icon": "./assets/data/nsi/logos/outfrontmedia-6f04f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/outfrontmedia-6f04f8.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151786,7 +151986,7 @@ }, { "question": "Pattison", - "icon": "./assets/data/nsi/logos/pattisonoutdoor-dc8034.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pattisonoutdoor-dc8034.svg", "osmTags": { "and": [ "advertising=billboard", @@ -151842,7 +152042,7 @@ }, { "question": "Promovil", - "icon": "./assets/data/nsi/logos/promovil-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/promovil-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -151885,7 +152085,7 @@ }, { "question": "Publi Espace", - "icon": "./assets/data/nsi/logos/publiespace-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publiespace-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -152033,7 +152233,7 @@ }, { "question": "Signali", - "icon": "./assets/data/nsi/logos/signali-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/signali-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -152066,7 +152266,7 @@ }, { "question": "Ströer Media", - "icon": "./assets/data/nsi/logos/stroermedia-a9f308.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stroermedia-a9f308.svg", "osmTags": { "and": [ "advertising=billboard", @@ -152081,7 +152281,7 @@ }, { "question": "Triaire", - "icon": "./assets/data/nsi/logos/triaire-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/triaire-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -152096,7 +152296,7 @@ }, { "question": "Védiaud", - "icon": "./assets/data/nsi/logos/vediaud-28ca1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vediaud-28ca1f.png", "osmTags": { "and": [ "advertising=billboard", @@ -152153,7 +152353,7 @@ }, { "question": "Visiocom Outdoor", - "icon": "./assets/data/nsi/logos/visiocomoutdoor-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visiocomoutdoor-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -152191,7 +152391,7 @@ }, { "question": "Wall", - "icon": "./assets/data/nsi/logos/wall-9fb964.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wall-9fb964.svg", "osmTags": { "and": [ "advertising=billboard", @@ -152206,7 +152406,7 @@ }, { "question": "Wancom", - "icon": "./assets/data/nsi/logos/wancom-28ca1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wancom-28ca1f.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -152221,7 +152421,7 @@ }, { "question": "WC Media", - "icon": "./assets/data/nsi/logos/wcmedia-7ece49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wcmedia-7ece49.jpg", "osmTags": { "and": [ "advertising=billboard", @@ -152236,7 +152436,7 @@ }, { "question": "Werbe Fabry", - "icon": "./assets/data/nsi/logos/werbefabry-9fb964.png", + "icon": "https://data.mapcomplete.org/nsi//logos/werbefabry-9fb964.png", "osmTags": { "and": [ "advertising=billboard", @@ -152251,7 +152451,7 @@ }, { "question": "Aarhus Kommune", - "icon": "./assets/data/nsi/logos/aarhuskommune-258737.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aarhuskommune-258737.png", "osmTags": { "and": [ "advertising=column", @@ -152266,7 +152466,7 @@ }, { "question": "Ankünder", - "icon": "./assets/data/nsi/logos/ankunder-7c9127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ankunder-7c9127.jpg", "osmTags": { "and": [ "advertising=column", @@ -152290,7 +152490,7 @@ }, { "question": "Clear Channel", - "icon": "./assets/data/nsi/logos/clearchanneloutdoor-ad58fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clearchanneloutdoor-ad58fe.jpg", "osmTags": { "and": [ "advertising=column", @@ -152305,7 +152505,7 @@ }, { "question": "Clear Channel Poland", - "icon": "./assets/data/nsi/logos/clearchannelpoland-e3069d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clearchannelpoland-e3069d.png", "osmTags": { "and": [ "advertising=column", @@ -152320,7 +152520,7 @@ }, { "question": "Clear Channel UK", - "icon": "./assets/data/nsi/logos/clearchanneluk-1fdb7a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clearchanneluk-1fdb7a.png", "osmTags": { "and": [ "advertising=column", @@ -152335,7 +152535,7 @@ }, { "question": "Compagnie des Transports Strasbourgeois", - "icon": "./assets/data/nsi/logos/compagniedestransportsstrasbourgeois-d2e336.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compagniedestransportsstrasbourgeois-d2e336.jpg", "osmTags": { "and": [ "advertising=column", @@ -152351,7 +152551,7 @@ }, { "question": "Gemeente Groningen", - "icon": "./assets/data/nsi/logos/gemeentegroningen-c47c8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentegroningen-c47c8e.jpg", "osmTags": { "and": [ "advertising=column", @@ -152366,7 +152566,7 @@ }, { "question": "Goldbach Neo", - "icon": "./assets/data/nsi/logos/goldbachneo-b19548.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldbachneo-b19548.jpg", "osmTags": { "and": [ "advertising=column", @@ -152395,7 +152595,7 @@ }, { "question": "JCDecaux", - "icon": "./assets/data/nsi/logos/jcdecaux-61f694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcdecaux-61f694.jpg", "osmTags": { "and": [ "advertising=column", @@ -152410,7 +152610,7 @@ }, { "question": "Karlsruher Institut für Technologie", - "icon": "./assets/data/nsi/logos/karlsruherinstitutfurtechnologie-b3b4c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlsruherinstitutfurtechnologie-b3b4c8.jpg", "osmTags": { "and": [ "advertising=column", @@ -152449,7 +152649,7 @@ }, { "question": "Megameedia", - "icon": "./assets/data/nsi/logos/megameedia-28a710.png", + "icon": "https://data.mapcomplete.org/nsi//logos/megameedia-28a710.png", "osmTags": { "and": [ "advertising=column", @@ -152464,7 +152664,7 @@ }, { "question": "Outfront Media", - "icon": "./assets/data/nsi/logos/outfrontmedia-97b662.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/outfrontmedia-97b662.jpg", "osmTags": { "and": [ "advertising=column", @@ -152479,7 +152679,7 @@ }, { "question": "Prisma NET", - "icon": "./assets/data/nsi/logos/prismanet-28a710.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prismanet-28a710.png", "osmTags": { "and": [ "advertising=column", @@ -152494,7 +152694,7 @@ }, { "question": "RENGL", - "icon": "./assets/data/nsi/logos/rengl-618f49.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rengl-618f49.png", "osmTags": { "and": [ "advertising=column", @@ -152509,7 +152709,7 @@ }, { "question": "RENGL Polska", - "icon": "./assets/data/nsi/logos/renglpolska-e3069d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/renglpolska-e3069d.png", "osmTags": { "and": [ "advertising=column", @@ -152524,7 +152724,7 @@ }, { "question": "RENGL Slovensko", - "icon": "./assets/data/nsi/logos/renglslovensko-95c4b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/renglslovensko-95c4b9.png", "osmTags": { "and": [ "advertising=column", @@ -152553,7 +152753,7 @@ }, { "question": "Stadt Bern", - "icon": "./assets/data/nsi/logos/stadtbern-03edcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbern-03edcf.jpg", "osmTags": { "and": [ "advertising=column", @@ -152568,7 +152768,7 @@ }, { "question": "Ströer Media", - "icon": "./assets/data/nsi/logos/stroermedia-e9f6ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stroermedia-e9f6ab.svg", "osmTags": { "and": [ "advertising=column", @@ -152625,7 +152825,7 @@ }, { "question": "Wall", - "icon": "./assets/data/nsi/logos/wall-e9f6ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wall-e9f6ab.svg", "osmTags": { "and": [ "advertising=column", @@ -152649,7 +152849,7 @@ }, { "question": "Affiouest", - "icon": "./assets/data/nsi/logos/affiouest-b12dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/affiouest-b12dbd.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -152692,7 +152892,7 @@ }, { "question": "BOGESTRA", - "icon": "./assets/data/nsi/logos/bogestra-f3dae2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bogestra-f3dae2.png", "osmTags": { "and": [ "advertising=poster_box", @@ -152721,7 +152921,7 @@ }, { "question": "Cityz Media", - "icon": "./assets/data/nsi/logos/cityzmedia-b12dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityzmedia-b12dbd.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -152736,7 +152936,7 @@ }, { "question": "Clear Channel", - "icon": "./assets/data/nsi/logos/clearchanneloutdoor-9eb85a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clearchanneloutdoor-9eb85a.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -152779,7 +152979,7 @@ }, { "question": "euroAWK", - "icon": "./assets/data/nsi/logos/euroawk-bac8b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/euroawk-bac8b6.png", "osmTags": { "and": [ "advertising=poster_box", @@ -152822,7 +153022,7 @@ }, { "question": "H-Publicité", - "icon": "./assets/data/nsi/logos/hpublicite-b12dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hpublicite-b12dbd.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -152869,7 +153069,7 @@ }, { "question": "JCDecaux", - "icon": "./assets/data/nsi/logos/jcdecaux-57a51e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcdecaux-57a51e.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -152962,7 +153162,7 @@ }, { "question": "Outfront Media", - "icon": "./assets/data/nsi/logos/outfrontmedia-783560.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/outfrontmedia-783560.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -153000,7 +153200,7 @@ }, { "question": "Promovil", - "icon": "./assets/data/nsi/logos/promovil-b12dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/promovil-b12dbd.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -153107,7 +153307,7 @@ }, { "question": "Ströer Media", - "icon": "./assets/data/nsi/logos/stroermedia-9b0833.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stroermedia-9b0833.svg", "osmTags": { "and": [ "advertising=poster_box", @@ -153122,7 +153322,7 @@ }, { "question": "Triaire", - "icon": "./assets/data/nsi/logos/triaire-b12dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/triaire-b12dbd.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -153137,7 +153337,7 @@ }, { "question": "Umeå kommun", - "icon": "./assets/data/nsi/logos/umeakommun-a5ccac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umeakommun-a5ccac.jpg", "osmTags": { "and": [ "advertising=poster_box", @@ -153152,7 +153352,7 @@ }, { "question": "Védiaud", - "icon": "./assets/data/nsi/logos/vediaud-b12dbd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vediaud-b12dbd.png", "osmTags": { "and": [ "advertising=poster_box", @@ -153181,7 +153381,7 @@ }, { "question": "Wall", - "icon": "./assets/data/nsi/logos/wall-9683c3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wall-9683c3.svg", "osmTags": { "and": [ "advertising=poster_box", @@ -153196,7 +153396,7 @@ }, { "question": "APG-SGA", - "icon": "./assets/data/nsi/logos/apgsga-8eaf78.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apgsga-8eaf78.png", "osmTags": { "and": [ "advertising=screen", @@ -153220,7 +153420,7 @@ }, { "question": "Clear Channel", - "icon": "./assets/data/nsi/logos/clearchanneloutdoor-0a0057.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clearchanneloutdoor-0a0057.jpg", "osmTags": { "and": [ "advertising=screen", @@ -153235,7 +153435,7 @@ }, { "question": "JCDecaux", - "icon": "./assets/data/nsi/logos/jcdecaux-0134c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcdecaux-0134c0.jpg", "osmTags": { "and": [ "advertising=screen", @@ -153250,7 +153450,7 @@ }, { "question": "London Lites", - "icon": "./assets/data/nsi/logos/londonlites-8d15a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonlites-8d15a4.jpg", "osmTags": { "and": [ "advertising=screen", @@ -153288,7 +153488,7 @@ }, { "question": "oOh!media", - "icon": "./assets/data/nsi/logos/oohmedia-735cb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oohmedia-735cb8.jpg", "osmTags": { "and": [ "advertising=screen", @@ -153303,7 +153503,7 @@ }, { "question": "Outfront Media", - "icon": "./assets/data/nsi/logos/outfrontmedia-871964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/outfrontmedia-871964.jpg", "osmTags": { "and": [ "advertising=screen", @@ -153355,7 +153555,7 @@ }, { "question": "STIB/MIVB", - "icon": "./assets/data/nsi/logos/stibmivb-bc2c94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stibmivb-bc2c94.jpg", "osmTags": { "and": [ "advertising=screen", @@ -153370,7 +153570,7 @@ }, { "question": "Ströer Media", - "icon": "./assets/data/nsi/logos/stroermedia-9d8ee9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stroermedia-9d8ee9.svg", "osmTags": { "and": [ "advertising=screen", @@ -153394,7 +153594,7 @@ }, { "question": "Ace Parking", - "icon": "./assets/data/nsi/logos/aceparking-93cfc3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aceparking-93cfc3.png", "osmTags": { "and": [ "amenity=bicycle_parking", @@ -153414,7 +153614,7 @@ }, { "question": "Ayuntamiento de Zaragoza", - "icon": "./assets/data/nsi/logos/ayuntamientodezaragoza-12c64c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodezaragoza-12c64c.png", "osmTags": { "and": [ "amenity=bicycle_parking", @@ -153430,7 +153630,7 @@ }, { "question": "BikeAway", - "icon": "./assets/data/nsi/logos/bikeaway-46d76d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bikeaway-46d76d.png", "osmTags": { "and": [ "amenity=bicycle_parking", @@ -153449,7 +153649,7 @@ }, { "question": "RTD Bike-n-Ride", - "icon": "./assets/data/nsi/logos/regionaltransportationdistrict-8adeca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regionaltransportationdistrict-8adeca.jpg", "osmTags": { "and": [ "amenity=bicycle_parking", @@ -153468,7 +153668,7 @@ }, { "question": "TriMet Bike & Ride", - "icon": "./assets/data/nsi/logos/trimet-b008ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trimet-b008ab.png", "osmTags": { "and": [ "amenity=bicycle_parking", @@ -153486,7 +153686,7 @@ }, { "question": "Verkehrsverbund Vorarlberg", - "icon": "./assets/data/nsi/logos/verkehrsverbundvorarlberggmbh-d1c524.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verkehrsverbundvorarlberggmbh-d1c524.svg", "osmTags": { "and": [ "amenity=bicycle_parking", @@ -153504,7 +153704,7 @@ }, { "question": "サイクルタイムズ", - "icon": "./assets/data/nsi/logos/times-5a9b3d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/times-5a9b3d.png", "osmTags": { "and": [ "amenity=bicycle_parking", @@ -153602,7 +153802,7 @@ }, { "question": "Autolib'", - "icon": "./assets/data/nsi/logos/autolib-5fef8e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/autolib-5fef8e.svg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153674,7 +153874,7 @@ }, { "question": "Bolloré", - "icon": "./assets/data/nsi/logos/bollore-672a50.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bollore-672a50.svg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153690,7 +153890,7 @@ }, { "question": "book-n-drive", - "icon": "./assets/data/nsi/logos/bookndrive-088af7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bookndrive-088af7.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153706,7 +153906,7 @@ }, { "question": "cambio CarSharing", - "icon": "./assets/data/nsi/logos/cambiocarsharing-c92445.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cambiocarsharing-c92445.png", "osmTags": { "and": [ "amenity=car_sharing", @@ -153737,7 +153937,7 @@ }, { "question": "CarSharing Erlangen", - "icon": "./assets/data/nsi/logos/carsharingerlangen-c92445.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carsharingerlangen-c92445.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153753,7 +153953,7 @@ }, { "question": "Caruso Carsharing", - "icon": "./assets/data/nsi/logos/carusocarsharing-2fb9ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carusocarsharing-2fb9ba.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153797,7 +153997,7 @@ }, { "question": "Citiz", - "icon": "./assets/data/nsi/logos/citiz-672a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citiz-672a50.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153870,7 +154070,7 @@ }, { "question": "Co-wheels", - "icon": "./assets/data/nsi/logos/cowheels-398ebe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cowheels-398ebe.png", "osmTags": { "and": [ "amenity=car_sharing", @@ -153886,7 +154086,7 @@ }, { "question": "Communauto", - "icon": "./assets/data/nsi/logos/communauto-ed01ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communauto-ed01ab.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153902,7 +154102,7 @@ }, { "question": "Conficars", - "icon": "./assets/data/nsi/logos/conficars-088af7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conficars-088af7.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153918,7 +154118,7 @@ }, { "question": "deer", - "icon": "./assets/data/nsi/logos/deer-088af7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deer-088af7.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153934,7 +154134,7 @@ }, { "question": "Deutsche Bahn Connect (Flinkster)", - "icon": "./assets/data/nsi/logos/deutschebahnconnect-088af7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebahnconnect-088af7.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -153996,7 +154196,7 @@ }, { "question": "Enterprise Car Club", - "icon": "./assets/data/nsi/logos/enterprisecarclub-398ebe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enterprisecarclub-398ebe.png", "osmTags": { "and": [ "amenity=car_sharing", @@ -154012,7 +154212,7 @@ }, { "question": "Enterprise CarShare", - "icon": "./assets/data/nsi/logos/enterprisecarshare-79c4ed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enterprisecarshare-79c4ed.svg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154071,7 +154271,7 @@ }, { "question": "GoCar", - "icon": "./assets/data/nsi/logos/gocar-084dbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gocar-084dbd.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154087,7 +154287,7 @@ }, { "question": "GoGet", - "icon": "./assets/data/nsi/logos/goget-d577f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goget-d577f8.png", "osmTags": { "and": [ "amenity=car_sharing", @@ -154117,7 +154317,7 @@ }, { "question": "Greenwheels", - "icon": "./assets/data/nsi/logos/greenwheels-96ec63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greenwheels-96ec63.png", "osmTags": { "and": [ "amenity=car_sharing", @@ -154203,7 +154403,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-b99113.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-b99113.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154219,7 +154419,7 @@ }, { "question": "Marguerite", - "icon": "./assets/data/nsi/logos/marguerite-672a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marguerite-672a50.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154249,7 +154449,7 @@ }, { "question": "Mobility", - "icon": "./assets/data/nsi/logos/mobility-488f3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mobility-488f3c.png", "osmTags": { "and": [ "amenity=car_sharing", @@ -154265,7 +154465,7 @@ }, { "question": "Modo", - "icon": "./assets/data/nsi/logos/modo-2b1603.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/modo-2b1603.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154281,7 +154481,7 @@ }, { "question": "Modulauto", - "icon": "./assets/data/nsi/logos/modulauto-672a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/modulauto-672a50.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154311,7 +154511,7 @@ }, { "question": "MyWheels", - "icon": "./assets/data/nsi/logos/mywheels-c3e863.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mywheels-c3e863.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154414,7 +154614,7 @@ }, { "question": "Roma Servizi per la Mobilità", - "icon": "./assets/data/nsi/logos/romaserviziperlamobilita-4d7a0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romaserviziperlamobilita-4d7a0e.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154430,7 +154630,7 @@ }, { "question": "Scouter Carsharing", - "icon": "./assets/data/nsi/logos/scoutercarsharing-088af7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scoutercarsharing-088af7.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154446,7 +154646,7 @@ }, { "question": "Share Now", - "icon": "./assets/data/nsi/logos/sharenow-663d52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sharenow-663d52.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154561,7 +154761,7 @@ }, { "question": "Stadtwerke Augsburg", - "icon": "./assets/data/nsi/logos/stadtwerkeaugsburg-1dcf8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-1dcf8b.png", "osmTags": { "and": [ "amenity=car_sharing", @@ -154591,7 +154791,7 @@ }, { "question": "Sunfleet", - "icon": "./assets/data/nsi/logos/sunfleet-cd4862.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunfleet-cd4862.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154635,7 +154835,7 @@ }, { "question": "Ubeeqo", - "icon": "./assets/data/nsi/logos/ubeeqo-59e811.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ubeeqo-59e811.svg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154693,7 +154893,7 @@ }, { "question": "Zipcar", - "icon": "./assets/data/nsi/logos/zipcar-aa2ec2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zipcar-aa2ec2.jpg", "osmTags": { "and": [ "amenity=car_sharing", @@ -154747,7 +154947,7 @@ }, { "question": "123energie", - "icon": "./assets/data/nsi/logos/123energie-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/123energie-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -154762,7 +154962,7 @@ }, { "question": "7-Eleven", - "icon": "./assets/data/nsi/logos/7eleven-994ed4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7eleven-994ed4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -154780,7 +154980,7 @@ }, { "question": "a2a", - "icon": "./assets/data/nsi/logos/a2a-2c5517.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a2a-2c5517.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -154795,7 +154995,7 @@ }, { "question": "ABB", - "icon": "./assets/data/nsi/logos/abb-28ff7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abb-28ff7e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -154824,7 +155024,7 @@ }, { "question": "Acciona Energía", - "icon": "./assets/data/nsi/logos/accionaenergia-97d7cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accionaenergia-97d7cf.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -154853,7 +155053,7 @@ }, { "question": "ADAC", - "icon": "./assets/data/nsi/logos/adac-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adac-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -154868,7 +155068,7 @@ }, { "question": "Agrisnellaad", - "icon": "./assets/data/nsi/logos/agrisnellaad-fa6152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrisnellaad-fa6152.png", "osmTags": { "and": [ "amenity=charging_station", @@ -154883,7 +155083,7 @@ }, { "question": "Agrola", - "icon": "./assets/data/nsi/logos/agrola-086737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrola-086737.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -154926,7 +155126,7 @@ }, { "question": "Airbus", - "icon": "./assets/data/nsi/logos/airbus-feea12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airbus-feea12.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -154941,7 +155141,7 @@ }, { "question": "Akademiska Hus", - "icon": "./assets/data/nsi/logos/akademiskahus-c9e89f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akademiskahus-c9e89f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -154956,7 +155156,7 @@ }, { "question": "Aldi (Aldi Nord group)", - "icon": "./assets/data/nsi/logos/aldi-ed8273.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-ed8273.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -154971,7 +155171,7 @@ }, { "question": "Aldi (Aldi Süd group)", - "icon": "./assets/data/nsi/logos/aldi-141059.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-141059.png", "osmTags": { "and": [ "amenity=charging_station", @@ -154986,7 +155186,7 @@ }, { "question": "ALDI Nord (Deutschland)", - "icon": "./assets/data/nsi/logos/aldi-de3fd8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-de3fd8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -155001,7 +155201,7 @@ }, { "question": "ALDI Süd (Deutschland)", - "icon": "./assets/data/nsi/logos/aldi-fee10d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-fee10d.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155016,7 +155216,7 @@ }, { "question": "Alfen", - "icon": "./assets/data/nsi/logos/alfen-17c03e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfen-17c03e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155040,7 +155240,7 @@ }, { "question": "Allego", - "icon": "./assets/data/nsi/logos/allego-17c03e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allego-17c03e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155055,7 +155255,7 @@ }, { "question": "Allgäuer Überlandwerk", - "icon": "./assets/data/nsi/logos/allgaueruberlandwerk-b2a48c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-b2a48c.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155071,7 +155271,7 @@ }, { "question": "Alperia", - "icon": "./assets/data/nsi/logos/alperia-2c5517.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alperia-2c5517.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155086,7 +155286,7 @@ }, { "question": "ALTIS", - "icon": "./assets/data/nsi/logos/altis-d0faa5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altis-d0faa5.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155115,7 +155315,7 @@ }, { "question": "Applegreen Electric", - "icon": "./assets/data/nsi/logos/applegreenelectric-f6fe0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/applegreenelectric-f6fe0b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155130,7 +155330,7 @@ }, { "question": "Aral pulse", - "icon": "./assets/data/nsi/logos/aral-2d0940.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aral-2d0940.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155160,7 +155360,7 @@ }, { "question": "Arinea", - "icon": "./assets/data/nsi/logos/arinea-392011.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arinea-392011.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155175,7 +155375,7 @@ }, { "question": "ASP", - "icon": "./assets/data/nsi/logos/asp-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asp-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155208,7 +155408,7 @@ }, { "question": "Auchan", - "icon": "./assets/data/nsi/logos/auchan-f6553b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchan-f6553b.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155223,7 +155423,7 @@ }, { "question": "Audi AG", - "icon": "./assets/data/nsi/logos/audiag-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/audiag-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155238,7 +155438,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-04a521.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-04a521.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155253,7 +155453,7 @@ }, { "question": "AutoEnterprise", - "icon": "./assets/data/nsi/logos/autoenterprise-a6c3f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autoenterprise-a6c3f2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155268,7 +155468,7 @@ }, { "question": "Autolib'", - "icon": "./assets/data/nsi/logos/autolib-37370f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/autolib-37370f.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -155283,7 +155483,7 @@ }, { "question": "Avacon", - "icon": "./assets/data/nsi/logos/avacon-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avacon-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155298,7 +155498,7 @@ }, { "question": "AVU", - "icon": "./assets/data/nsi/logos/avu-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avu-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155313,7 +155513,7 @@ }, { "question": "Aziende Industriali di Lugano", - "icon": "./assets/data/nsi/logos/aziendeindustrialidilugano-d3f33a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aziendeindustrialidilugano-d3f33a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155329,7 +155529,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-4c7d3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-4c7d3b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155353,7 +155553,7 @@ }, { "question": "Bauhaus", - "icon": "./assets/data/nsi/logos/bauhaus-a5756d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bauhaus-a5756d.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155368,7 +155568,7 @@ }, { "question": "Bayernwerk", - "icon": "./assets/data/nsi/logos/bayernwerk-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayernwerk-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -155383,7 +155583,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-e7f57e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-e7f57e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155398,7 +155598,7 @@ }, { "question": "Be Charge", - "icon": "./assets/data/nsi/logos/becharge-2c5517.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/becharge-2c5517.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -155460,7 +155660,7 @@ }, { "question": "Berliner Stadtwerke", - "icon": "./assets/data/nsi/logos/berlinerstadtwerke-db4fd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerstadtwerke-db4fd8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155489,7 +155689,7 @@ }, { "question": "Bigge Energie", - "icon": "./assets/data/nsi/logos/biggeenergie-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biggeenergie-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155504,7 +155704,7 @@ }, { "question": "bike-energy", - "icon": "./assets/data/nsi/logos/bikeenergy-ff2890.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikeenergy-ff2890.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155522,7 +155722,7 @@ }, { "question": "Birmingham City Council", - "icon": "./assets/data/nsi/logos/birminghamcitycouncil-56e584.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-56e584.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155537,7 +155737,7 @@ }, { "question": "Blink", - "icon": "./assets/data/nsi/logos/blink-74901a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blink-74901a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155569,7 +155769,7 @@ }, { "question": "Bluecharge", - "icon": "./assets/data/nsi/logos/bluecharge-a1285d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluecharge-a1285d.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155584,7 +155784,7 @@ }, { "question": "BMW", - "icon": "./assets/data/nsi/logos/bmw-28ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmw-28ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155599,7 +155799,7 @@ }, { "question": "Bocholter Energie- und Wasserversorgung", - "icon": "./assets/data/nsi/logos/bocholterenergieundwasserversorgung-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bocholterenergieundwasserversorgung-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155615,7 +155815,7 @@ }, { "question": "Booths", - "icon": "./assets/data/nsi/logos/booths-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/booths-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155630,7 +155830,7 @@ }, { "question": "Bosch eBike Systems", - "icon": "./assets/data/nsi/logos/boschebikesystems-28ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boschebikesystems-28ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155670,7 +155870,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155703,7 +155903,7 @@ }, { "question": "Brighton and Hove City Council", - "icon": "./assets/data/nsi/logos/brightonandhovecitycouncil-a4110c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-a4110c.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155718,7 +155918,7 @@ }, { "question": "BS Energy", - "icon": "./assets/data/nsi/logos/bsenergy-d9ec6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bsenergy-d9ec6c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155742,7 +155942,7 @@ }, { "question": "Burgenland Energie", - "icon": "./assets/data/nsi/logos/burgenlandenergieag-3f60da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-3f60da.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155757,7 +155957,7 @@ }, { "question": "Caritas", - "icon": "./assets/data/nsi/logos/caritas-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155772,7 +155972,7 @@ }, { "question": "Carrefour", - "icon": "./assets/data/nsi/logos/carrefour-c22d3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-c22d3a.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155787,7 +155987,7 @@ }, { "question": "Caruso Carsharing", - "icon": "./assets/data/nsi/logos/carusocarsharing-53499e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carusocarsharing-53499e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155802,7 +156002,7 @@ }, { "question": "Centralschweizerische Kraftwerke", - "icon": "./assets/data/nsi/logos/centralschweizerischekraftwerke-8e9cb9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralschweizerischekraftwerke-8e9cb9.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -155817,7 +156017,7 @@ }, { "question": "Cepsa", - "icon": "./assets/data/nsi/logos/cepsa-3948da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cepsa-3948da.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155832,7 +156032,7 @@ }, { "question": "ČEZ", - "icon": "./assets/data/nsi/logos/cez-f67a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cez-f67a50.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155847,7 +156047,7 @@ }, { "question": "Charge Your Car", - "icon": "./assets/data/nsi/logos/chargeyourcar-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chargeyourcar-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155888,7 +156088,7 @@ }, { "question": "Chargefox", - "icon": "./assets/data/nsi/logos/chargefox-61042c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chargefox-61042c.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155903,7 +156103,7 @@ }, { "question": "ChargeNet NZ", - "icon": "./assets/data/nsi/logos/chargenetnz-9850e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chargenetnz-9850e1.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155918,7 +156118,7 @@ }, { "question": "ChargePlace Scotland", - "icon": "./assets/data/nsi/logos/chargeplacescotland-416a92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chargeplacescotland-416a92.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -155933,7 +156133,7 @@ }, { "question": "ChargePoint", - "icon": "./assets/data/nsi/logos/chargepoint-28ff7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chargepoint-28ff7e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -155985,7 +156185,7 @@ }, { "question": "Circle K", - "icon": "./assets/data/nsi/logos/circlek-c22d3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-c22d3a.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156003,7 +156203,7 @@ }, { "question": "Circuit électrique", - "icon": "./assets/data/nsi/logos/circuitelectrique-67089a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/circuitelectrique-67089a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156041,7 +156241,7 @@ }, { "question": "City of Gold Coast", - "icon": "./assets/data/nsi/logos/cityofgoldcoast-bd4e91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgoldcoast-bd4e91.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156056,7 +156256,7 @@ }, { "question": "City of Hobart", - "icon": "./assets/data/nsi/logos/cityofhobart-becf90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhobart-becf90.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156071,7 +156271,7 @@ }, { "question": "City of Launceston", - "icon": "./assets/data/nsi/logos/cityoflaunceston-2fce2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflaunceston-2fce2c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156086,7 +156286,7 @@ }, { "question": "Citywatt", - "icon": "./assets/data/nsi/logos/citywatt-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citywatt-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156110,7 +156310,7 @@ }, { "question": "Clever", - "icon": "./assets/data/nsi/logos/clever-28cec3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clever-28cec3.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156139,7 +156339,7 @@ }, { "question": "Compleo Charging Technologies GmbH", - "icon": "./assets/data/nsi/logos/compleochargingtechnologiesgmbh-43ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compleochargingtechnologiesgmbh-43ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156154,7 +156354,7 @@ }, { "question": "Connected Kerb", - "icon": "./assets/data/nsi/logos/connectedkerb-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/connectedkerb-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156169,7 +156369,7 @@ }, { "question": "Coop (Italia)", - "icon": "./assets/data/nsi/logos/coop-2c5517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-2c5517.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156184,7 +156384,7 @@ }, { "question": "Coop (Schweiz)", - "icon": "./assets/data/nsi/logos/coop-086737.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-086737.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156199,7 +156399,7 @@ }, { "question": "Coop (Sverige)", - "icon": "./assets/data/nsi/logos/coop-c9e89f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-c9e89f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156214,7 +156414,7 @@ }, { "question": "Coop Norge", - "icon": "./assets/data/nsi/logos/coop-476d58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-476d58.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156229,7 +156429,7 @@ }, { "question": "Copec", - "icon": "./assets/data/nsi/logos/copec-df2b32.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/copec-df2b32.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -156244,7 +156444,7 @@ }, { "question": "Counties Energy", - "icon": "./assets/data/nsi/logos/countiesenergy-9850e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countiesenergy-9850e1.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156261,7 +156461,7 @@ }, { "question": "CSDD", - "icon": "./assets/data/nsi/logos/csdd-94e3c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csdd-94e3c4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156276,7 +156476,7 @@ }, { "question": "da emobil", - "icon": "./assets/data/nsi/logos/daemobil-8ae1a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daemobil-8ae1a0.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156300,7 +156500,7 @@ }, { "question": "DATS 24", - "icon": "./assets/data/nsi/logos/dats24-292b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dats24-292b4b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156324,7 +156524,7 @@ }, { "question": "deer GmbH", - "icon": "./assets/data/nsi/logos/deergmbh-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deergmbh-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156348,7 +156548,7 @@ }, { "question": "Deutsche Telekom", - "icon": "./assets/data/nsi/logos/deutschetelekom-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschetelekom-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156363,7 +156563,7 @@ }, { "question": "Deviwa", - "icon": "./assets/data/nsi/logos/deviwa-d0faa5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/deviwa-d0faa5.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -156378,7 +156578,7 @@ }, { "question": "DEW21", - "icon": "./assets/data/nsi/logos/dew21-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dew21-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156393,7 +156593,7 @@ }, { "question": "DREWAG", - "icon": "./assets/data/nsi/logos/drewag-b8794d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drewag-b8794d.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156432,7 +156632,7 @@ }, { "question": "Duferco", - "icon": "./assets/data/nsi/logos/duferco-2c5517.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/duferco-2c5517.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -156447,7 +156647,7 @@ }, { "question": "Duferco Energia", - "icon": "./assets/data/nsi/logos/dufercoenergia-2c5517.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dufercoenergia-2c5517.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156462,7 +156662,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-994ed4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-994ed4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156504,7 +156704,7 @@ }, { "question": "e-regio", - "icon": "./assets/data/nsi/logos/eregio-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eregio-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156550,7 +156750,7 @@ }, { "question": "E-Werk Mittelbaden", - "icon": "./assets/data/nsi/logos/ewerkmittelbaden-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewerkmittelbaden-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156565,7 +156765,7 @@ }, { "question": "e.dis", - "icon": "./assets/data/nsi/logos/edis-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edis-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156580,7 +156780,7 @@ }, { "question": "E.Leclerc", - "icon": "./assets/data/nsi/logos/eleclerc-f6553b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclerc-f6553b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156595,7 +156795,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-7f623e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-7f623e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156619,7 +156819,7 @@ }, { "question": "EAM", - "icon": "./assets/data/nsi/logos/eam-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eam-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156643,7 +156843,7 @@ }, { "question": "EasyGo", - "icon": "./assets/data/nsi/logos/easygo-179e3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easygo-179e3e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156722,7 +156922,7 @@ }, { "question": "Ecotap", - "icon": "./assets/data/nsi/logos/ecotap-c98650.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecotap-c98650.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156737,7 +156937,7 @@ }, { "question": "EDEKA", - "icon": "./assets/data/nsi/logos/edeka-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edeka-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156752,7 +156952,7 @@ }, { "question": "EDP", - "icon": "./assets/data/nsi/logos/edp-387085.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edp-387085.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -156781,7 +156981,7 @@ }, { "question": "Eesti Energia AS", - "icon": "./assets/data/nsi/logos/eestienergiaas-733008.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eestienergiaas-733008.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156810,7 +157010,7 @@ }, { "question": "EGG Energieversorgung Gera", - "icon": "./assets/data/nsi/logos/eggenergieversorgunggera-8c6e73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eggenergieversorgunggera-8c6e73.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156825,7 +157025,7 @@ }, { "question": "eins energie in sachsen", - "icon": "./assets/data/nsi/logos/einsenergieinsachsen-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/einsenergieinsachsen-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156840,7 +157040,7 @@ }, { "question": "ejoin", - "icon": "./assets/data/nsi/logos/ejoin-b23832.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ejoin-b23832.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156855,7 +157055,7 @@ }, { "question": "EKZ", - "icon": "./assets/data/nsi/logos/ekz-086737.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ekz-086737.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156870,7 +157070,7 @@ }, { "question": "Eldrive", - "icon": "./assets/data/nsi/logos/eldrive-8c357e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eldrive-8c357e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156885,6 +157085,7 @@ }, { "question": "Electra", + "icon": "https://data.mapcomplete.org/nsi//logos/electra-170e94.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156908,7 +157109,7 @@ }, { "question": "Electric Highway Tasmania", - "icon": "./assets/data/nsi/logos/electrichighwaytasmania-341d66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electrichighwaytasmania-341d66.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156923,7 +157124,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-c22d3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-c22d3a.png", "osmTags": { "and": [ "amenity=charging_station", @@ -156954,7 +157155,7 @@ }, { "question": "Electrify America", - "icon": "./assets/data/nsi/logos/electrifyamerica-994ed4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electrifyamerica-994ed4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -156978,7 +157179,7 @@ }, { "question": "Elektrizitätswerk Davos", - "icon": "./assets/data/nsi/logos/elektrizitatswerkdavos-ba2d61.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkdavos-ba2d61.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -156993,7 +157194,7 @@ }, { "question": "Elektrizitätswerk Obwalden", - "icon": "./assets/data/nsi/logos/elektrizitatswerkobwalden-714754.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkobwalden-714754.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157050,7 +157251,7 @@ }, { "question": "Eleport", - "icon": "./assets/data/nsi/logos/eleport-512be8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleport-512be8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157074,7 +157275,7 @@ }, { "question": "Ella", - "icon": "./assets/data/nsi/logos/ella-3f60da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ella-3f60da.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157089,7 +157290,7 @@ }, { "question": "Elli", - "icon": "./assets/data/nsi/logos/elli-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elli-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157104,7 +157305,7 @@ }, { "question": "ELMŰ", - "icon": "./assets/data/nsi/logos/elmu-27e906.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elmu-27e906.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157142,7 +157343,7 @@ }, { "question": "EMEL", - "icon": "./assets/data/nsi/logos/emel-8fbbd7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/emel-8fbbd7.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -157157,7 +157358,7 @@ }, { "question": "emotì", - "icon": "./assets/data/nsi/logos/emoti-d3f33a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emoti-d3f33a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157172,7 +157373,7 @@ }, { "question": "Emscher Lippe Energie", - "icon": "./assets/data/nsi/logos/emscherlippeenergie-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emscherlippeenergie-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157188,7 +157389,7 @@ }, { "question": "EnBW Energie Baden-Württemberg AG", - "icon": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157212,7 +157413,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-97d7cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-97d7cf.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157241,7 +157442,7 @@ }, { "question": "Eneco", - "icon": "./assets/data/nsi/logos/eneco-35c01b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneco-35c01b.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157265,7 +157466,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-2c5517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-2c5517.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157283,7 +157484,7 @@ }, { "question": "Enel X", - "icon": "./assets/data/nsi/logos/enelx-bdf07e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enelx-bdf07e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157301,7 +157502,7 @@ }, { "question": "Enel X Way", - "icon": "./assets/data/nsi/logos/enelxway-2c5517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enelxway-2c5517.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157316,7 +157517,7 @@ }, { "question": "enercity", - "icon": "./assets/data/nsi/logos/enercity-d9ec6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enercity-d9ec6c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157331,7 +157532,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-392011.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-392011.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157346,7 +157547,7 @@ }, { "question": "Energie 360°", - "icon": "./assets/data/nsi/logos/7977b1-086737.png", + "icon": "https://data.mapcomplete.org/nsi//logos/7977b1-086737.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157361,7 +157562,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-3f60da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-3f60da.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157376,7 +157577,7 @@ }, { "question": "Energie Calw", - "icon": "./assets/data/nsi/logos/energiecalw-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiecalw-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157391,7 +157592,7 @@ }, { "question": "ENERGIE Eure-et-Loir", - "icon": "./assets/data/nsi/logos/energieeureetloir-0f5d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieeureetloir-0f5d07.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157406,7 +157607,7 @@ }, { "question": "Energie SaarLorLux", - "icon": "./assets/data/nsi/logos/energiesaarlorlux-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesaarlorlux-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -157421,7 +157622,7 @@ }, { "question": "Energie Steiermark", - "icon": "./assets/data/nsi/logos/energiesteiermark-b4f287.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-b4f287.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157436,7 +157637,7 @@ }, { "question": "Energie Südbayern", - "icon": "./assets/data/nsi/logos/energiesudbayern-259ab2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesudbayern-259ab2.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -157478,7 +157679,7 @@ }, { "question": "Energiedienst", - "icon": "./assets/data/nsi/logos/energiedienst-6cf9a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedienst-6cf9a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157516,7 +157717,7 @@ }, { "question": "energis", - "icon": "./assets/data/nsi/logos/energis-124d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energis-124d23.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157549,7 +157750,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-b2225d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-b2225d.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157564,7 +157765,7 @@ }, { "question": "Eni", - "icon": "./assets/data/nsi/logos/eni-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eni-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157579,7 +157780,7 @@ }, { "question": "Eniwa", - "icon": "./assets/data/nsi/logos/eniwa-d48833.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eniwa-d48833.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -157594,7 +157795,7 @@ }, { "question": "ENSO Energie Sachsen Ost AG", - "icon": "./assets/data/nsi/logos/ensoenergiesachsenostag-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ensoenergiesachsenostag-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -157609,7 +157810,7 @@ }, { "question": "Entega", - "icon": "./assets/data/nsi/logos/entega-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/entega-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157624,7 +157825,7 @@ }, { "question": "enviaM", - "icon": "./assets/data/nsi/logos/enviam-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enviam-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157639,7 +157840,7 @@ }, { "question": "EO", - "icon": "./assets/data/nsi/logos/eo-f6fe0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eo-f6fe0b.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157695,7 +157896,7 @@ }, { "question": "ESB (Schweiz)", - "icon": "./assets/data/nsi/logos/energieservicebielbienne-0c1e54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieservicebielbienne-0c1e54.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157711,7 +157912,7 @@ }, { "question": "ESB ecars", - "icon": "./assets/data/nsi/logos/esbgroup-881c56.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbgroup-881c56.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -157727,7 +157928,7 @@ }, { "question": "ESB Energy", - "icon": "./assets/data/nsi/logos/esbenergy-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbenergy-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157742,7 +157943,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157757,7 +157958,7 @@ }, { "question": "ESWE", - "icon": "./assets/data/nsi/logos/eswe-43ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eswe-43ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157795,7 +157996,7 @@ }, { "question": "EV Connect", - "icon": "./assets/data/nsi/logos/evconnect-994ed4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evconnect-994ed4.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157828,7 +158029,7 @@ }, { "question": "EVBox", - "icon": "./assets/data/nsi/logos/evbox-7f623e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evbox-7f623e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157857,7 +158058,7 @@ }, { "question": "EVCS", - "icon": "./assets/data/nsi/logos/evcs-994ed4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evcs-994ed4.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157872,7 +158073,7 @@ }, { "question": "evd energieversorgung dormagen", - "icon": "./assets/data/nsi/logos/evdenergieversorgungdormagen-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evdenergieversorgungdormagen-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -157904,7 +158105,7 @@ }, { "question": "Evie Networks", - "icon": "./assets/data/nsi/logos/evienetworks-943805.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evienetworks-943805.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157951,7 +158152,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-3f60da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-3f60da.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -157998,7 +158199,7 @@ }, { "question": "evpass", - "icon": "./assets/data/nsi/logos/evpass-086737.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evpass-086737.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -158013,7 +158214,7 @@ }, { "question": "Evway", - "icon": "./assets/data/nsi/logos/evway-2c5517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evway-2c5517.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158051,7 +158252,7 @@ }, { "question": "EW Höfe", - "icon": "./assets/data/nsi/logos/ewhofe-485cc9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewhofe-485cc9.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -158066,7 +158267,7 @@ }, { "question": "Eways", - "icon": "./assets/data/nsi/logos/eways-c9e89f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eways-c9e89f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158081,7 +158282,7 @@ }, { "question": "EWE Go", - "icon": "./assets/data/nsi/logos/ewego-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ewego-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158096,7 +158297,7 @@ }, { "question": "EWII", - "icon": "./assets/data/nsi/logos/ewii-7d9e8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ewii-7d9e8e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158111,7 +158312,7 @@ }, { "question": "Ewiva", - "icon": "./assets/data/nsi/logos/ewiva-2c5517.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewiva-2c5517.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158126,7 +158327,7 @@ }, { "question": "EWR", - "icon": "./assets/data/nsi/logos/ewr-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewr-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158141,7 +158342,7 @@ }, { "question": "EWV", - "icon": "./assets/data/nsi/logos/ewv-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewv-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158198,7 +158399,7 @@ }, { "question": "Fastned", - "icon": "./assets/data/nsi/logos/fastned-17c03e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastned-17c03e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158213,7 +158414,7 @@ }, { "question": "Feníe Energía", - "icon": "./assets/data/nsi/logos/fenieenergia-97d7cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fenieenergia-97d7cf.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158242,7 +158443,7 @@ }, { "question": "FINES Charging", - "icon": "./assets/data/nsi/logos/c9c8bd-befeeb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/c9c8bd-befeeb.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158257,7 +158458,7 @@ }, { "question": "FLO", - "icon": "./assets/data/nsi/logos/flo-78626b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flo-78626b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158284,7 +158485,7 @@ }, { "question": "Freshmile", - "icon": "./assets/data/nsi/logos/freshmile-f6553b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshmile-f6553b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158299,7 +158500,7 @@ }, { "question": "Fyrfasen Energi AB", - "icon": "./assets/data/nsi/logos/fyrfasenenergiab-c9e89f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fyrfasenenergiab-c9e89f.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158341,7 +158542,7 @@ }, { "question": "Gemeente Den Haag", - "icon": "./assets/data/nsi/logos/gemeentedenhaag-fa6152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentedenhaag-fa6152.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158356,7 +158557,7 @@ }, { "question": "Gemeente Rotterdam", - "icon": "./assets/data/nsi/logos/gemeenterotterdam-fa6152.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-fa6152.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158371,7 +158572,7 @@ }, { "question": "Gemeente Utrecht", - "icon": "./assets/data/nsi/logos/gemeenteutrecht-fa6152.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteutrecht-fa6152.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158386,7 +158587,7 @@ }, { "question": "Gemeinde Unterhaching", - "icon": "./assets/data/nsi/logos/gemeindeunterhaching-259ab2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindeunterhaching-259ab2.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -158438,7 +158639,7 @@ }, { "question": "GeniePoint", - "icon": "./assets/data/nsi/logos/geniepoint-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geniepoint-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158490,7 +158691,7 @@ }, { "question": "GGEW", - "icon": "./assets/data/nsi/logos/ggew-43ff7e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ggew-43ff7e.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -158514,7 +158715,7 @@ }, { "question": "GigaCharger", - "icon": "./assets/data/nsi/logos/gigacharger-befeeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gigacharger-befeeb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158539,7 +158740,7 @@ }, { "question": "GOcharge", - "icon": "./assets/data/nsi/logos/gocharge-179e3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gocharge-179e3e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158554,7 +158755,7 @@ }, { "question": "GOFAST", - "icon": "./assets/data/nsi/logos/gofast-086737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gofast-086737.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158569,7 +158770,7 @@ }, { "question": "Gogoro 電池交換站", - "icon": "./assets/data/nsi/logos/62c656-28ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/62c656-28ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158601,7 +158802,7 @@ }, { "question": "GP JOULE Connect", - "icon": "./assets/data/nsi/logos/gpjouleconnect-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gpjouleconnect-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158616,7 +158817,7 @@ }, { "question": "Green Motion", - "icon": "./assets/data/nsi/logos/greenmotion-086737.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greenmotion-086737.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158649,7 +158850,7 @@ }, { "question": "GreenFlux", - "icon": "./assets/data/nsi/logos/greenflux-fa6152.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenflux-fa6152.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158673,7 +158874,7 @@ }, { "question": "GreenWay", - "icon": "./assets/data/nsi/logos/greenway-40951a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenway-40951a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158688,7 +158889,7 @@ }, { "question": "Gridserve", - "icon": "./assets/data/nsi/logos/gridserve-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gridserve-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158704,7 +158905,7 @@ }, { "question": "Groupe E", - "icon": "./assets/data/nsi/logos/groupee-086737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupee-086737.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158719,7 +158920,7 @@ }, { "question": "Helen", - "icon": "./assets/data/nsi/logos/helen-e80d25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/helen-e80d25.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158793,7 +158994,7 @@ }, { "question": "Hikotron", - "icon": "./assets/data/nsi/logos/hikotron-9850e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hikotron-9850e1.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158817,7 +159018,7 @@ }, { "question": "Holmgrens bil AB", - "icon": "./assets/data/nsi/logos/holmgrensbilab-c9e89f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holmgrensbilab-c9e89f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158832,7 +159033,7 @@ }, { "question": "Hyundai", - "icon": "./assets/data/nsi/logos/hyundai-28ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyundai-28ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158847,7 +159048,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-97d7cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-97d7cf.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158871,7 +159072,7 @@ }, { "question": "ICE", - "icon": "./assets/data/nsi/logos/ice-296db6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ice-296db6.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158895,7 +159096,7 @@ }, { "question": "Ignitis", - "icon": "./assets/data/nsi/logos/ignitis-467e3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ignitis-467e3c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158910,7 +159111,7 @@ }, { "question": "IKEA", - "icon": "./assets/data/nsi/logos/ikea-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158925,7 +159126,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-3f60da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-3f60da.png", "osmTags": { "and": [ "amenity=charging_station", @@ -158958,7 +159159,7 @@ }, { "question": "Innogy", - "icon": "./assets/data/nsi/logos/innogy-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogy-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -158976,7 +159177,7 @@ }, { "question": "Inselwerke", - "icon": "./assets/data/nsi/logos/inselwerke-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inselwerke-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -158991,7 +159192,7 @@ }, { "question": "InstaVolt", - "icon": "./assets/data/nsi/logos/instavolt-0793ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/instavolt-0793ce.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159006,7 +159207,7 @@ }, { "question": "Intel Corporation", - "icon": "./assets/data/nsi/logos/intelcorporation-994ed4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/intelcorporation-994ed4.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159021,7 +159222,7 @@ }, { "question": "Intermarché", - "icon": "./assets/data/nsi/logos/intermarche-abe4b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarche-abe4b6.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159036,7 +159237,7 @@ }, { "question": "Ísorka", - "icon": "./assets/data/nsi/logos/isorka-8fcd5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/isorka-8fcd5a.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159060,7 +159261,7 @@ }, { "question": "IWB", - "icon": "./assets/data/nsi/logos/iwb-086737.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iwb-086737.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159089,7 +159290,7 @@ }, { "question": "Jämtkraft", - "icon": "./assets/data/nsi/logos/jamtkraft-c9e89f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jamtkraft-c9e89f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159104,7 +159305,7 @@ }, { "question": "Jolt", - "icon": "./assets/data/nsi/logos/jolt-743b2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jolt-743b2f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159128,7 +159329,7 @@ }, { "question": "Jönköping Energi", - "icon": "./assets/data/nsi/logos/jonkopingenergi-c9e89f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonkopingenergi-c9e89f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159143,7 +159344,7 @@ }, { "question": "K-Lataus", - "icon": "./assets/data/nsi/logos/klataus-e80d25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klataus-e80d25.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159158,7 +159359,7 @@ }, { "question": "Kaufland", - "icon": "./assets/data/nsi/logos/kaufland-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kaufland-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159173,7 +159374,7 @@ }, { "question": "KEBA", - "icon": "./assets/data/nsi/logos/keba-a5756d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keba-a5756d.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159188,7 +159389,7 @@ }, { "question": "Kelag", - "icon": "./assets/data/nsi/logos/kelag-3bcc5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-3bcc5b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159235,7 +159436,7 @@ }, { "question": "Kreiswerke Main-Kinzig", - "icon": "./assets/data/nsi/logos/kreiswerkemainkinzig-43ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kreiswerkemainkinzig-43ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159250,7 +159451,7 @@ }, { "question": "Kungsbacka Kommun", - "icon": "./assets/data/nsi/logos/kungsbackakommun-c9e89f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kungsbackakommun-c9e89f.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159292,7 +159493,7 @@ }, { "question": "Lancaster City Council", - "icon": "./assets/data/nsi/logos/lancastercitycouncil-9ba54b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancastercitycouncil-9ba54b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159307,7 +159508,7 @@ }, { "question": "Lancaster University", - "icon": "./assets/data/nsi/logos/lancasteruniversity-9ba54b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancasteruniversity-9ba54b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159322,7 +159523,7 @@ }, { "question": "Last Mile Solutions", - "icon": "./assets/data/nsi/logos/lastmilesolutions-7f623e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lastmilesolutions-7f623e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159346,7 +159547,7 @@ }, { "question": "LEAP24", - "icon": "./assets/data/nsi/logos/leap24-461188.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leap24-461188.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159361,7 +159562,7 @@ }, { "question": "Leasys", - "icon": "./assets/data/nsi/logos/leasys-257863.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leasys-257863.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159385,7 +159586,7 @@ }, { "question": "Lechwerke AG", - "icon": "./assets/data/nsi/logos/lechwerkeag-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechwerkeag-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159400,7 +159601,7 @@ }, { "question": "Lidl", - "icon": "./assets/data/nsi/logos/lidl-e2f086.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidl-e2f086.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159415,7 +159616,7 @@ }, { "question": "Lidl Sverige KB", - "icon": "./assets/data/nsi/logos/lidlsverigekb-c9e89f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidlsverigekb-c9e89f.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159430,7 +159631,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-6a71ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-6a71ec.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159445,7 +159646,7 @@ }, { "question": "LokalWerke", - "icon": "./assets/data/nsi/logos/lokalwerke-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lokalwerke-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159483,7 +159684,7 @@ }, { "question": "LSW Energie", - "icon": "./assets/data/nsi/logos/lswenergie-d9ec6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswenergie-d9ec6c.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159507,7 +159708,7 @@ }, { "question": "Luminus", - "icon": "./assets/data/nsi/logos/luminus-87ebf4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luminus-87ebf4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159531,7 +159732,7 @@ }, { "question": "Maingau Energie", - "icon": "./assets/data/nsi/logos/maingauenergie-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/maingauenergie-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -159546,7 +159747,7 @@ }, { "question": "Mainova", - "icon": "./assets/data/nsi/logos/mainova-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mainova-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159561,7 +159762,7 @@ }, { "question": "Mainzer Stadtwerke", - "icon": "./assets/data/nsi/logos/mainzerstadtwerke-bb1d73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mainzerstadtwerke-bb1d73.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159576,7 +159777,7 @@ }, { "question": "Mairie de Paris", - "icon": "./assets/data/nsi/logos/mairiedeparis-37370f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-37370f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159600,7 +159801,7 @@ }, { "question": "Mälarenergi", - "icon": "./assets/data/nsi/logos/malarenergi-c9e89f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/malarenergi-c9e89f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159615,7 +159816,7 @@ }, { "question": "Mark-E", - "icon": "./assets/data/nsi/logos/marke-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marke-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159630,7 +159831,7 @@ }, { "question": "MaxSolar", - "icon": "./assets/data/nsi/logos/maxsolar-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maxsolar-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159645,7 +159846,7 @@ }, { "question": "McDonald's", - "icon": "./assets/data/nsi/logos/mcdonalds-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159660,7 +159861,7 @@ }, { "question": "Mennekes", - "icon": "./assets/data/nsi/logos/mennekes-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mennekes-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -159675,7 +159876,7 @@ }, { "question": "Mercadona", - "icon": "./assets/data/nsi/logos/mercadona-3948da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercadona-3948da.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159690,7 +159891,7 @@ }, { "question": "Mercedes-Benz", - "icon": "./assets/data/nsi/logos/mercedesbenz-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercedesbenz-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159705,7 +159906,7 @@ }, { "question": "Michigan State University", - "icon": "./assets/data/nsi/logos/michiganstateuniversity-258d0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michiganstateuniversity-258d0b.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159720,7 +159921,7 @@ }, { "question": "Migrol", - "icon": "./assets/data/nsi/logos/migrol-086737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/migrol-086737.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159735,7 +159936,7 @@ }, { "question": "Mobi.E", - "icon": "./assets/data/nsi/logos/mobie-a1285d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobie-a1285d.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159775,7 +159976,7 @@ }, { "question": "MobilityPlus", - "icon": "./assets/data/nsi/logos/mobilityplus-87ebf4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobilityplus-87ebf4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159845,7 +160046,7 @@ }, { "question": "Morbihan énergies", - "icon": "./assets/data/nsi/logos/morbihanenergies-170e94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/morbihanenergies-170e94.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159887,7 +160088,7 @@ }, { "question": "MOVE", - "icon": "./assets/data/nsi/logos/move-086737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/move-086737.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159902,7 +160103,7 @@ }, { "question": "MVV Energie", - "icon": "./assets/data/nsi/logos/mvvenergie-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mvvenergie-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159917,7 +160118,7 @@ }, { "question": "N-ERGIE", - "icon": "./assets/data/nsi/logos/nergie-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nergie-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159932,7 +160133,7 @@ }, { "question": "N1", - "icon": "./assets/data/nsi/logos/n1-8fcd5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/n1-8fcd5a.png", "osmTags": { "and": [ "amenity=charging_station", @@ -159947,7 +160148,7 @@ }, { "question": "NabiBajk", - "icon": "./assets/data/nsi/logos/nabibajk-b23832.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nabibajk-b23832.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159962,7 +160163,7 @@ }, { "question": "NaturEnergie", - "icon": "./assets/data/nsi/logos/naturenergie-6cf9a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturenergie-6cf9a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -159977,7 +160178,7 @@ }, { "question": "Neogy", - "icon": "./assets/data/nsi/logos/neogy-2c5517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/neogy-2c5517.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160001,7 +160202,7 @@ }, { "question": "NEW", - "icon": "./assets/data/nsi/logos/new-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/new-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -160016,7 +160217,7 @@ }, { "question": "Nissan", - "icon": "./assets/data/nsi/logos/nissan-28ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nissan-28ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160040,7 +160241,7 @@ }, { "question": "Norlys", - "icon": "./assets/data/nsi/logos/norlys-7d9e8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norlys-7d9e8e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160055,7 +160256,7 @@ }, { "question": "NOXO.", - "icon": "./assets/data/nsi/logos/noxo-392011.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noxo-392011.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160070,7 +160271,7 @@ }, { "question": "NRG Energy", - "icon": "./assets/data/nsi/logos/nrgenergy-994ed4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nrgenergy-994ed4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160085,7 +160286,7 @@ }, { "question": "NRMA", - "icon": "./assets/data/nsi/logos/nrma-943805.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nrma-943805.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160100,7 +160301,7 @@ }, { "question": "NUON", - "icon": "./assets/data/nsi/logos/nuon-fa6152.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nuon-fa6152.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -160115,7 +160316,7 @@ }, { "question": "ÖAMTC", - "icon": "./assets/data/nsi/logos/oamtc-3f60da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oamtc-3f60da.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160153,7 +160354,7 @@ }, { "question": "OMV eMotion", - "icon": "./assets/data/nsi/logos/omv-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omv-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160177,7 +160378,7 @@ }, { "question": "Opcharge", - "icon": "./assets/data/nsi/logos/opcharge-fa6152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/opcharge-fa6152.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160192,7 +160393,7 @@ }, { "question": "Orion", - "icon": "./assets/data/nsi/logos/orion-9850e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orion-9850e1.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160207,7 +160408,7 @@ }, { "question": "Orka náttúrunnar", - "icon": "./assets/data/nsi/logos/orkanatturunnar-8fcd5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orkanatturunnar-8fcd5a.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160222,7 +160423,7 @@ }, { "question": "Orlen", - "icon": "./assets/data/nsi/logos/orlen-392011.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlen-392011.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160246,7 +160447,7 @@ }, { "question": "Osprey", - "icon": "./assets/data/nsi/logos/osprey-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osprey-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160270,7 +160471,7 @@ }, { "question": "OVAG", - "icon": "./assets/data/nsi/logos/ovag-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ovag-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160308,7 +160509,7 @@ }, { "question": "Perusahaan Listrik Negara", - "icon": "./assets/data/nsi/logos/perusahaanlistriknegara-34ae8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-34ae8c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160323,7 +160524,7 @@ }, { "question": "Petrol", - "icon": "./assets/data/nsi/logos/petrol-6b6292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrol-6b6292.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160338,7 +160539,7 @@ }, { "question": "Pfalzwerke", - "icon": "./assets/data/nsi/logos/pfalzwerke-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pfalzwerke-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160376,7 +160577,7 @@ }, { "question": "Plenitude", - "icon": "./assets/data/nsi/logos/plenitude-2c5517.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plenitude-2c5517.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160391,7 +160592,7 @@ }, { "question": "Plug'n Roll", - "icon": "./assets/data/nsi/logos/plugnroll-086737.png", + "icon": "https://data.mapcomplete.org/nsi//logos/plugnroll-086737.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160424,7 +160625,7 @@ }, { "question": "Pod Point", - "icon": "./assets/data/nsi/logos/podpoint-0793ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/podpoint-0793ce.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160439,7 +160640,7 @@ }, { "question": "Porsche", - "icon": "./assets/data/nsi/logos/porsche-28ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porsche-28ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160481,7 +160682,7 @@ }, { "question": "PRE", - "icon": "./assets/data/nsi/logos/pre-f67a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pre-f67a50.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160505,7 +160706,7 @@ }, { "question": "Protergia", - "icon": "./assets/data/nsi/logos/protergia-e68869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/protergia-e68869.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160520,7 +160721,7 @@ }, { "question": "Q-Park", - "icon": "./assets/data/nsi/logos/qpark-7f623e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qpark-7f623e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160544,7 +160745,7 @@ }, { "question": "Qbuzz", - "icon": "./assets/data/nsi/logos/qbuzz-fa6152.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qbuzz-fa6152.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160582,7 +160783,7 @@ }, { "question": "Qwello", - "icon": "./assets/data/nsi/logos/qwello-381a82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qwello-381a82.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160641,7 +160842,7 @@ }, { "question": "Renault", - "icon": "./assets/data/nsi/logos/renault-28ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renault-28ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160656,7 +160857,7 @@ }, { "question": "Renovatio e-charge", - "icon": "./assets/data/nsi/logos/renovatioecharge-806f62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renovatioecharge-806f62.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160671,7 +160872,7 @@ }, { "question": "Repower", - "icon": "./assets/data/nsi/logos/repower-c58b31.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/repower-c58b31.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -160686,7 +160887,7 @@ }, { "question": "Repsol", - "icon": "./assets/data/nsi/logos/repsol-3948da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/repsol-3948da.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160701,7 +160902,7 @@ }, { "question": "Révéo", - "icon": "./assets/data/nsi/logos/reveo-170e94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reveo-170e94.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160725,7 +160926,7 @@ }, { "question": "Rewag", - "icon": "./assets/data/nsi/logos/rewag-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rewag-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160740,7 +160941,7 @@ }, { "question": "REWE", - "icon": "./assets/data/nsi/logos/rewe-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rewe-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160755,7 +160956,7 @@ }, { "question": "RheinEnergie", - "icon": "./assets/data/nsi/logos/rheinenergie-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinenergie-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160770,7 +160971,7 @@ }, { "question": "RhönEnergie Fulda", - "icon": "./assets/data/nsi/logos/rhonenergiefulda-43ff7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rhonenergiefulda-43ff7e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160785,7 +160986,7 @@ }, { "question": "Ringeriks-kraft AS", - "icon": "./assets/data/nsi/logos/ringerikskraftas-476d58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ringerikskraftas-476d58.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160800,7 +161001,7 @@ }, { "question": "Robert Bosch GmbH", - "icon": "./assets/data/nsi/logos/robertboschgmbh-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robertboschgmbh-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160815,7 +161016,7 @@ }, { "question": "Roche", - "icon": "./assets/data/nsi/logos/roche-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roche-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160857,7 +161058,7 @@ }, { "question": "S.T.P.T.", - "icon": "./assets/data/nsi/logos/stpt-806f62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stpt-806f62.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160872,7 +161073,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-b8794d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-b8794d.png", "osmTags": { "and": [ "amenity=charging_station", @@ -160887,7 +161088,7 @@ }, { "question": "SAK", - "icon": "./assets/data/nsi/logos/sak-086737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sak-086737.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160902,7 +161103,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-2afdb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-2afdb6.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -160944,7 +161145,7 @@ }, { "question": "Schneider Electric", - "icon": "./assets/data/nsi/logos/schneiderelectric-28ff7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schneiderelectric-28ff7e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161049,7 +161250,7 @@ }, { "question": "SemaConnect", - "icon": "./assets/data/nsi/logos/semaconnect-994ed4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/semaconnect-994ed4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161118,7 +161319,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-28ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-28ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161133,7 +161334,7 @@ }, { "question": "Shell Recharge Solutions", - "icon": "./assets/data/nsi/logos/shellrechargesolutions-c22d3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shellrechargesolutions-c22d3a.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161236,7 +161437,7 @@ }, { "question": "SMATRICS", - "icon": "./assets/data/nsi/logos/smatrics-3f60da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smatrics-3f60da.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161301,7 +161502,7 @@ }, { "question": "Source London", - "icon": "./assets/data/nsi/logos/sourcelondon-489d95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sourcelondon-489d95.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161319,7 +161520,7 @@ }, { "question": "South Lakeland District Council", - "icon": "./assets/data/nsi/logos/southlakelanddistrictcouncil-16207f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southlakelanddistrictcouncil-16207f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161334,7 +161535,7 @@ }, { "question": "Spar", - "icon": "./assets/data/nsi/logos/spar-c22d3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spar-c22d3a.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161399,7 +161600,7 @@ }, { "question": "Stadt Lorch", - "icon": "./assets/data/nsi/logos/stadtlorch-6bc1fb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtlorch-6bc1fb.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -161414,7 +161615,7 @@ }, { "question": "Städtische Werke Magdeburg", - "icon": "./assets/data/nsi/logos/stadtischewerkemagdeburg-eaf1ad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtischewerkemagdeburg-eaf1ad.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -161430,7 +161631,7 @@ }, { "question": "Stadtwerk am See", - "icon": "./assets/data/nsi/logos/stadtwerkamsee-6bc1fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkamsee-6bc1fb.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161446,7 +161647,7 @@ }, { "question": "Stadtwerke Augsburg", - "icon": "./assets/data/nsi/logos/stadtwerkeaugsburg-259ab2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-259ab2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161489,7 +161690,7 @@ }, { "question": "Stadtwerke Baden-Baden", - "icon": "./assets/data/nsi/logos/stadtwerkebadenbaden-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadenbaden-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161504,7 +161705,7 @@ }, { "question": "Stadtwerke Bielefeld", - "icon": "./assets/data/nsi/logos/stadtwerkebielefeld-fcc3c2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebielefeld-fcc3c2.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -161519,7 +161720,7 @@ }, { "question": "Stadtwerke Bochum", - "icon": "./assets/data/nsi/logos/stadtwerkebochum-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebochum-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161548,7 +161749,7 @@ }, { "question": "Stadtwerke Dachau", - "icon": "./assets/data/nsi/logos/stadtwerkedachau-259ab2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedachau-259ab2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161563,7 +161764,7 @@ }, { "question": "Stadtwerke Dessau", - "icon": "./assets/data/nsi/logos/stadtwerkedessau-b7b244.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedessau-b7b244.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161578,7 +161779,7 @@ }, { "question": "Stadtwerke Düsseldorf", - "icon": "./assets/data/nsi/logos/stadtwerkedusseldorf-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161607,7 +161808,7 @@ }, { "question": "Stadtwerke Energie Jena-Pößneck GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkeenergiejenapossneckgmbh-8c6e73.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeenergiejenapossneckgmbh-8c6e73.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161622,7 +161823,7 @@ }, { "question": "Stadtwerke Erfurt", - "icon": "./assets/data/nsi/logos/stadtwerkeerfurt-8c6e73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeerfurt-8c6e73.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161638,7 +161839,7 @@ }, { "question": "Stadtwerke EVB Huntetal GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkeevbhuntetalgmbh-d9ec6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeevbhuntetalgmbh-d9ec6c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161653,7 +161854,7 @@ }, { "question": "Stadtwerke Fürstenfeldbruck", - "icon": "./assets/data/nsi/logos/stadtwerkefurstenfeldbruck-259ab2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkefurstenfeldbruck-259ab2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161668,7 +161869,7 @@ }, { "question": "Stadtwerke Gießen", - "icon": "./assets/data/nsi/logos/stadtwerkegiessen-43ff7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegiessen-43ff7e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161683,7 +161884,7 @@ }, { "question": "Stadtwerke Goch GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkegochgmbh-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegochgmbh-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161698,7 +161899,7 @@ }, { "question": "Stadtwerke Göttingen", - "icon": "./assets/data/nsi/logos/stadtwerkegottingen-d9ec6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegottingen-d9ec6c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161713,7 +161914,7 @@ }, { "question": "Stadtwerke Hamm", - "icon": "./assets/data/nsi/logos/stadtwerkehamm-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkehamm-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161742,7 +161943,7 @@ }, { "question": "Stadtwerke Heidelberg", - "icon": "./assets/data/nsi/logos/stadtwerkeheidelberg-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeheidelberg-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161757,7 +161958,7 @@ }, { "question": "Stadtwerke Herne", - "icon": "./assets/data/nsi/logos/stadtwerkeherne-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherne-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161773,7 +161974,7 @@ }, { "question": "Stadtwerke Iserlohn", - "icon": "./assets/data/nsi/logos/stadtwerkeiserlohn-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeiserlohn-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161788,7 +161989,7 @@ }, { "question": "Stadtwerke Kiel", - "icon": "./assets/data/nsi/logos/stadtwerkekiel-cf3cf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekiel-cf3cf5.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161804,7 +162005,7 @@ }, { "question": "Stadtwerke Klagenfurt", - "icon": "./assets/data/nsi/logos/stadtwerkeklagenfurt-f703d0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeklagenfurt-f703d0.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -161819,7 +162020,7 @@ }, { "question": "Stadtwerke Konstanz", - "icon": "./assets/data/nsi/logos/stadtwerkekonstanz-6bc1fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekonstanz-6bc1fb.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161834,7 +162035,7 @@ }, { "question": "Stadtwerke Landshut", - "icon": "./assets/data/nsi/logos/stadtwerkelandshut-259ab2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelandshut-259ab2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161849,7 +162050,7 @@ }, { "question": "Stadtwerke Langen", - "icon": "./assets/data/nsi/logos/stadtwerkelangen-43ff7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelangen-43ff7e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161878,7 +162079,7 @@ }, { "question": "Stadtwerke Leipzig", - "icon": "./assets/data/nsi/logos/stadtwerkeleipzig-b8794d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-b8794d.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161893,7 +162094,7 @@ }, { "question": "Stadtwerke Marburg", - "icon": "./assets/data/nsi/logos/stadtwerkemarburg-43ff7e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemarburg-43ff7e.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -161908,7 +162109,7 @@ }, { "question": "Stadtwerke Meerbusch GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkemeerbuschgmbh-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemeerbuschgmbh-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161923,7 +162124,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-4b68f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-4b68f8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161939,7 +162140,7 @@ }, { "question": "Stadtwerke Münster", - "icon": "./assets/data/nsi/logos/stadtwerkemunster-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunster-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161954,7 +162155,7 @@ }, { "question": "Stadtwerke Neuss", - "icon": "./assets/data/nsi/logos/stadtwerkeneuss-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuss-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -161970,7 +162171,7 @@ }, { "question": "Stadtwerke Neustadt an der Weinstraße", - "icon": "./assets/data/nsi/logos/stadtwerkeneustadtanderweinstrasse-bb1d73.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneustadtanderweinstrasse-bb1d73.png", "osmTags": { "and": [ "amenity=charging_station", @@ -161985,7 +162186,7 @@ }, { "question": "Stadtwerke Norderstedt", - "icon": "./assets/data/nsi/logos/stadtwerkenorderstedt-cf3cf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkenorderstedt-cf3cf5.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162000,7 +162201,7 @@ }, { "question": "Stadtwerke Oberkirch", - "icon": "./assets/data/nsi/logos/stadtwerkeoberkirch-6bc1fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeoberkirch-6bc1fb.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162015,7 +162216,7 @@ }, { "question": "Stadtwerke Osnabrück", - "icon": "./assets/data/nsi/logos/stadtwerkeosnabruck-d9ec6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeosnabruck-d9ec6c.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162030,7 +162231,7 @@ }, { "question": "Stadtwerke Pforzheim", - "icon": "./assets/data/nsi/logos/stadtwerkepforzheim-6bc1fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkepforzheim-6bc1fb.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162046,7 +162247,7 @@ }, { "question": "Stadtwerke Rhede", - "icon": "./assets/data/nsi/logos/stadtwerkerhede-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkerhede-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162075,7 +162276,7 @@ }, { "question": "Stadtwerke Rüsselsheim", - "icon": "./assets/data/nsi/logos/stadtwerkerusselsheim-43ff7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkerusselsheim-43ff7e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162090,7 +162291,7 @@ }, { "question": "Stadtwerke Schwäbisch Hall", - "icon": "./assets/data/nsi/logos/stadtwerkeschwabischhall-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeschwabischhall-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162133,7 +162334,7 @@ }, { "question": "Stadtwerke Sindelfingen", - "icon": "./assets/data/nsi/logos/stadtwerkesindelfingen-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkesindelfingen-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162148,7 +162349,7 @@ }, { "question": "Stadtwerke Solingen", - "icon": "./assets/data/nsi/logos/stadtwerkesolingen-fcc3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkesolingen-fcc3c2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162163,7 +162364,7 @@ }, { "question": "Stadtwerke Speyer", - "icon": "./assets/data/nsi/logos/stadtwerkespeyer-bb1d73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-bb1d73.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162179,7 +162380,7 @@ }, { "question": "Stadtwerke Stuttgart", - "icon": "./assets/data/nsi/logos/stadtwerkestuttgart-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkestuttgart-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162194,7 +162395,7 @@ }, { "question": "Stadtwerke Tübingen", - "icon": "./assets/data/nsi/logos/stadtwerketubingen-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerketubingen-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162210,7 +162411,7 @@ }, { "question": "Stadtwerke Union Nordhessen", - "icon": "./assets/data/nsi/logos/stadtwerkeunionnordhessen-43ff7e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeunionnordhessen-43ff7e.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -162225,7 +162426,7 @@ }, { "question": "Stadtwerke Velbert", - "icon": "./assets/data/nsi/logos/stadtwerkevelbert-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkevelbert-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162240,7 +162441,7 @@ }, { "question": "Stadtwerke Weimar", - "icon": "./assets/data/nsi/logos/stadtwerkeweimar-8c6e73.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeweimar-8c6e73.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -162269,7 +162470,7 @@ }, { "question": "Stadtwerke Witten", - "icon": "./assets/data/nsi/logos/stadtwerkewitten-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162302,7 +162503,7 @@ }, { "question": "STAWAG", - "icon": "./assets/data/nsi/logos/stawag-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stawag-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162317,7 +162518,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-43ccfe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-43ccfe.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162332,7 +162533,7 @@ }, { "question": "SureCharge", - "icon": "./assets/data/nsi/logos/fmconway-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fmconway-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162349,7 +162550,7 @@ }, { "question": "Süwag", - "icon": "./assets/data/nsi/logos/suwag-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwag-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162378,7 +162579,7 @@ }, { "question": "swb (Bremen)", - "icon": "./assets/data/nsi/logos/swb-152e8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swb-152e8e.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162393,7 +162594,7 @@ }, { "question": "SWB Energie und Wasser", - "icon": "./assets/data/nsi/logos/swbenergieundwasser-fcc3c2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/swbenergieundwasser-fcc3c2.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -162409,7 +162610,7 @@ }, { "question": "Swisscharge", - "icon": "./assets/data/nsi/logos/swisscharge-086737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisscharge-086737.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162424,7 +162625,7 @@ }, { "question": "SWU Stadtwerke Ulm/Neu-Ulm GmbH", - "icon": "./assets/data/nsi/logos/swustadtwerkeulmneuulmgmbh-f8e5ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swustadtwerkeulmneuulmgmbh-f8e5ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162476,7 +162677,7 @@ }, { "question": "Tank & Rast", - "icon": "./assets/data/nsi/logos/tankandrast-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tankandrast-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162505,7 +162706,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-392011.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-392011.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162534,7 +162735,7 @@ }, { "question": "Technische Werke Osning", - "icon": "./assets/data/nsi/logos/technischewerkeosning-fcc3c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technischewerkeosning-fcc3c2.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162550,7 +162751,7 @@ }, { "question": "Technische Werke Schussental", - "icon": "./assets/data/nsi/logos/technischewerkeschussental-6bc1fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/technischewerkeschussental-6bc1fb.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162565,7 +162766,7 @@ }, { "question": "teilAuto", - "icon": "./assets/data/nsi/logos/teilauto-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teilauto-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162580,7 +162781,7 @@ }, { "question": "Teplárny Brno", - "icon": "./assets/data/nsi/logos/teplarnybrno-f67a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teplarnybrno-f67a50.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162604,7 +162805,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-3f60da.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-3f60da.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -162619,7 +162820,7 @@ }, { "question": "Toka", - "icon": "./assets/data/nsi/logos/toka-a6c3f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toka-a6c3f2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162637,7 +162838,7 @@ }, { "question": "Total", - "icon": "./assets/data/nsi/logos/total-28ff7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/total-28ff7e.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162666,7 +162867,7 @@ }, { "question": "TotalEnergies", - "icon": "./assets/data/nsi/logos/totalenergies-c22d3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalenergies-c22d3a.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162690,7 +162891,7 @@ }, { "question": "UAB Ignitis", - "icon": "./assets/data/nsi/logos/uabignitis-467e3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uabignitis-467e3c.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162705,7 +162906,7 @@ }, { "question": "Ubeeqo", - "icon": "./assets/data/nsi/logos/ubeeqo-c22d3a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ubeeqo-c22d3a.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -162761,7 +162962,7 @@ }, { "question": "Umeå Energi", - "icon": "./assets/data/nsi/logos/umeaenergi-c9e89f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/umeaenergi-c9e89f.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162776,7 +162977,7 @@ }, { "question": "Universidade da Coruña", - "icon": "./assets/data/nsi/logos/universidadedacoruna-97d7cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universidadedacoruna-97d7cf.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162793,7 +162994,7 @@ }, { "question": "Uno-X", - "icon": "./assets/data/nsi/logos/unox-285e25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unox-285e25.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162817,7 +163018,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-dde172.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-dde172.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -162832,7 +163033,7 @@ }, { "question": "V-MARKT", - "icon": "./assets/data/nsi/logos/vmarkt-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vmarkt-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162847,7 +163048,7 @@ }, { "question": "Vattenfall InCharge", - "icon": "./assets/data/nsi/logos/vattenfallincharge-648812.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfallincharge-648812.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162865,7 +163066,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-9850e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-9850e1.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162898,7 +163099,7 @@ }, { "question": "Viesgo", - "icon": "./assets/data/nsi/logos/viesgo-97d7cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viesgo-97d7cf.png", "osmTags": { "and": [ "amenity=charging_station", @@ -162936,7 +163137,7 @@ }, { "question": "VIRTA", - "icon": "./assets/data/nsi/logos/virta-e80d25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virta-e80d25.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -162968,7 +163169,7 @@ }, { "question": "Volkswagen", - "icon": "./assets/data/nsi/logos/volkswagen-1299a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkswagen-1299a8.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163024,7 +163225,7 @@ }, { "question": "Waybler", - "icon": "./assets/data/nsi/logos/waybler-c9e89f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waybler-c9e89f.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163055,7 +163256,7 @@ }, { "question": "WEL Networks", - "icon": "./assets/data/nsi/logos/welnetworks-9850e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welnetworks-9850e1.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163081,7 +163282,7 @@ }, { "question": "WEMAG", - "icon": "./assets/data/nsi/logos/wemag-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wemag-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -163096,7 +163297,7 @@ }, { "question": "Wenea", - "icon": "./assets/data/nsi/logos/wenea-417ce7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wenea-417ce7.png", "osmTags": { "and": [ "amenity=charging_station", @@ -163111,7 +163312,7 @@ }, { "question": "westenergie", - "icon": "./assets/data/nsi/logos/westenergie-1299a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westenergie-1299a8.png", "osmTags": { "and": [ "amenity=charging_station", @@ -163135,7 +163336,7 @@ }, { "question": "Westfalen Weser Ladeservice", - "icon": "./assets/data/nsi/logos/westfalenweserladeservice-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfalenweserladeservice-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -163150,7 +163351,7 @@ }, { "question": "Whole Foods", - "icon": "./assets/data/nsi/logos/wholefoods-994ed4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wholefoods-994ed4.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163165,7 +163366,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-3f60da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-3f60da.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163196,7 +163397,7 @@ }, { "question": "Wirelane", - "icon": "./assets/data/nsi/logos/wirelane-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wirelane-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -163220,7 +163421,7 @@ }, { "question": "WVV", - "icon": "./assets/data/nsi/logos/wvv-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wvv-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -163235,7 +163436,7 @@ }, { "question": "Z Energy", - "icon": "./assets/data/nsi/logos/zenergy-9850e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zenergy-9850e1.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163261,7 +163462,7 @@ }, { "question": "ZES", - "icon": "./assets/data/nsi/logos/zes-f274f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zes-f274f9.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163276,7 +163477,7 @@ }, { "question": "Zest", - "icon": "./assets/data/nsi/logos/zest-0793ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zest-0793ce.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163309,7 +163510,7 @@ }, { "question": "ZTM Lublin", - "icon": "./assets/data/nsi/logos/ztmlublin-392011.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ztmlublin-392011.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163324,7 +163525,7 @@ }, { "question": "Zunder", - "icon": "./assets/data/nsi/logos/zunder-3948da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zunder-3948da.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163339,7 +163540,7 @@ }, { "question": "Zwickau", - "icon": "./assets/data/nsi/logos/zwickau-1299a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zwickau-1299a8.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -163354,7 +163555,7 @@ }, { "question": "ΔΕΗ", - "icon": "./assets/data/nsi/logos/788cf3-e68869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/788cf3-e68869.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163396,7 +163597,7 @@ }, { "question": "Мосэнерго", - "icon": "./assets/data/nsi/logos/1e6fb1-18ef61.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/1e6fb1-18ef61.svg", "osmTags": { "and": [ "amenity=charging_station", @@ -163411,7 +163612,7 @@ }, { "question": "Одеська міська рада", - "icon": "./assets/data/nsi/logos/09a705-a6c3f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/09a705-a6c3f2.jpg", "osmTags": { "and": [ "amenity=charging_station", @@ -163471,7 +163672,7 @@ }, { "question": "РусГидро", - "icon": "./assets/data/nsi/logos/70aabc-18ef61.png", + "icon": "https://data.mapcomplete.org/nsi//logos/70aabc-18ef61.png", "osmTags": { "and": [ "amenity=charging_station", @@ -163659,7 +163860,7 @@ }, { "question": "Government of Kerala", - "icon": "./assets/data/nsi/logos/governmentofkerala-4b0d98.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentofkerala-4b0d98.svg", "osmTags": { "and": [ "amenity=childcare", @@ -163704,7 +163905,7 @@ }, { "question": "ICBF", - "icon": "./assets/data/nsi/logos/icbf-6a04ca.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/icbf-6a04ca.svg", "osmTags": { "and": [ "amenity=childcare", @@ -163736,7 +163937,7 @@ }, { "question": "Københavns Kommune", - "icon": "./assets/data/nsi/logos/kobenhavnskommune-7bdbd2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kobenhavnskommune-7bdbd2.jpg", "osmTags": { "and": [ "amenity=childcare", @@ -163752,7 +163953,7 @@ }, { "question": "Mairie de Paris", - "icon": "./assets/data/nsi/logos/mairiedeparis-6dda0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-6dda0f.jpg", "osmTags": { "and": [ "amenity=childcare", @@ -163796,7 +163997,7 @@ }, { "question": "San José Unified School District", - "icon": "./assets/data/nsi/logos/sanjoseunifiedschooldistrict-943069.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanjoseunifiedschooldistrict-943069.jpg", "osmTags": { "and": [ "amenity=childcare", @@ -163857,7 +164058,7 @@ }, { "question": "Abrazo Community Health Network", - "icon": "./assets/data/nsi/logos/abrazocommunityhealthnetwork-2a9247.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abrazocommunityhealthnetwork-2a9247.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -163889,7 +164090,7 @@ }, { "question": "AFC Urgent Care", - "icon": "./assets/data/nsi/logos/afcurgentcare-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/afcurgentcare-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -163924,7 +164125,7 @@ }, { "question": "Akron Children's Hospital", - "icon": "./assets/data/nsi/logos/akronchildrenshospital-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akronchildrenshospital-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -163942,7 +164143,7 @@ }, { "question": "Ascension", - "icon": "./assets/data/nsi/logos/ascension-0ca787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ascension-0ca787.png", "osmTags": { "and": [ "amenity=clinic", @@ -163959,7 +164160,7 @@ }, { "question": "Asepeyo", - "icon": "./assets/data/nsi/logos/asepeyo-edc4ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asepeyo-edc4ef.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164007,7 +164208,7 @@ }, { "question": "Aspirus", - "icon": "./assets/data/nsi/logos/aspirus-df05bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aspirus-df05bc.png", "osmTags": { "and": [ "amenity=clinic", @@ -164055,7 +164256,7 @@ }, { "question": "Aurora Health Care", - "icon": "./assets/data/nsi/logos/aurorahealthcare-91d413.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aurorahealthcare-91d413.png", "osmTags": { "and": [ "amenity=clinic", @@ -164072,7 +164273,7 @@ }, { "question": "Avon and Wiltshire Mental Health Partnership NHS Trust", - "icon": "./assets/data/nsi/logos/avonandwiltshirementalhealthpartnershipnhstrust-c61c44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avonandwiltshirementalhealthpartnershipnhstrust-c61c44.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164104,7 +164305,7 @@ }, { "question": "Banner Health", - "icon": "./assets/data/nsi/logos/bannerhealth-0ca787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bannerhealth-0ca787.png", "osmTags": { "and": [ "amenity=clinic", @@ -164121,7 +164322,7 @@ }, { "question": "Capio", - "icon": "./assets/data/nsi/logos/capio-5b16c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capio-5b16c3.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164153,7 +164354,7 @@ }, { "question": "CCSS", - "icon": "./assets/data/nsi/logos/ccss-03ea79.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ccss-03ea79.png", "osmTags": { "and": [ "amenity=clinic", @@ -164185,7 +164386,7 @@ }, { "question": "ChristianaCare", - "icon": "./assets/data/nsi/logos/christianacare-751657.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/christianacare-751657.svg", "osmTags": { "and": [ "amenity=clinic", @@ -164202,7 +164403,7 @@ }, { "question": "City of Cape Town", - "icon": "./assets/data/nsi/logos/cityofcapetown-0d0fcb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-0d0fcb.png", "osmTags": { "and": [ "amenity=clinic", @@ -164219,7 +164420,7 @@ }, { "question": "CityMD", - "icon": "./assets/data/nsi/logos/citymd-1972a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citymd-1972a2.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164237,7 +164438,7 @@ }, { "question": "Cleveland Clinic", - "icon": "./assets/data/nsi/logos/clevelandclinic-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandclinic-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164254,7 +164455,7 @@ }, { "question": "Clinica Sante", - "icon": "./assets/data/nsi/logos/clinicasante-6e8e8c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clinicasante-6e8e8c.png", "osmTags": { "and": [ "amenity=clinic", @@ -164287,7 +164488,7 @@ }, { "question": "Community Healthcare Network", - "icon": "./assets/data/nsi/logos/communityhealthcarenetwork-91756e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/communityhealthcarenetwork-91756e.png", "osmTags": { "and": [ "amenity=clinic", @@ -164304,7 +164505,7 @@ }, { "question": "Comunidad de Madrid", - "icon": "./assets/data/nsi/logos/comunidaddemadrid-852236.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-852236.svg", "osmTags": { "and": [ "amenity=clinic", @@ -164321,7 +164522,7 @@ }, { "question": "Concentra", - "icon": "./assets/data/nsi/logos/concentra-0ca787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/concentra-0ca787.png", "osmTags": { "and": [ "amenity=clinic", @@ -164338,7 +164539,7 @@ }, { "question": "Cook County Health", - "icon": "./assets/data/nsi/logos/cookcountyhealth-15fccf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cookcountyhealth-15fccf.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164371,7 +164572,7 @@ }, { "question": "Cornwall Partnership NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/cornwallpartnershipnhsfoundationtrust-df4e98.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornwallpartnershipnhsfoundationtrust-df4e98.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164388,7 +164589,7 @@ }, { "question": "DaVita Dialysis", - "icon": "./assets/data/nsi/logos/davitadialysis-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/davitadialysis-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164437,7 +164638,7 @@ }, { "question": "Devon Partnership NHS Trust", - "icon": "./assets/data/nsi/logos/devonpartnershipnhstrust-228a98.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devonpartnershipnhstrust-228a98.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164473,7 +164674,7 @@ }, { "question": "Dignity Health", - "icon": "./assets/data/nsi/logos/dignityhealth-781184.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dignityhealth-781184.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164490,7 +164691,7 @@ }, { "question": "Dorset HealthCare University NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/dorsethealthcareuniversitynhsfoundationtrust-da597c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorsethealthcareuniversitynhsfoundationtrust-da597c.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164507,7 +164708,7 @@ }, { "question": "Duly Health & Care", - "icon": "./assets/data/nsi/logos/dulyhealthandcare-15fccf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dulyhealthandcare-15fccf.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164524,7 +164725,7 @@ }, { "question": "Eastern Cape Department of Health", - "icon": "./assets/data/nsi/logos/easterncapedepartmentofhealth-0d0fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easterncapedepartmentofhealth-0d0fcb.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164541,7 +164742,7 @@ }, { "question": "Essentia Health", - "icon": "./assets/data/nsi/logos/essentiahealth-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentiahealth-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164559,7 +164760,7 @@ }, { "question": "Free State Department of Health", - "icon": "./assets/data/nsi/logos/freestatedepartmentofhealth-0d0fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freestatedepartmentofhealth-0d0fcb.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164576,7 +164777,7 @@ }, { "question": "Fresenius Kidney Care", - "icon": "./assets/data/nsi/logos/freseniuskidneycare-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freseniuskidneycare-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164595,7 +164796,7 @@ }, { "question": "Fresenius Medical Care", - "icon": "./assets/data/nsi/logos/freseniusmedicalcare-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freseniusmedicalcare-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164629,7 +164830,7 @@ }, { "question": "Gauteng Department of Health", - "icon": "./assets/data/nsi/logos/gautengdepartmentofhealth-0d0fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gautengdepartmentofhealth-0d0fcb.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164646,7 +164847,7 @@ }, { "question": "Generalitat Valenciana", - "icon": "./assets/data/nsi/logos/generalitatvalenciana-edc4ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-edc4ef.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164679,7 +164880,7 @@ }, { "question": "Ghana Health Service", - "icon": "./assets/data/nsi/logos/ghanahealthservice-7981f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ghanahealthservice-7981f3.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164712,7 +164913,7 @@ }, { "question": "Gobierno de la Ciudad de Buenos Aires", - "icon": "./assets/data/nsi/logos/gobiernodelaciudaddebuenosaires-1cb73a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gobiernodelaciudaddebuenosaires-1cb73a.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164745,7 +164946,7 @@ }, { "question": "Government of Liberia", - "icon": "./assets/data/nsi/logos/governmentofliberia-9451ff.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentofliberia-9451ff.svg", "osmTags": { "and": [ "amenity=clinic", @@ -164762,7 +164963,7 @@ }, { "question": "Great Ormond Street Hospital for Children NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/greatormondstreethospitalforchildrennhsfoundationtrust-87581d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatormondstreethospitalforchildrennhsfoundationtrust-87581d.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164779,7 +164980,7 @@ }, { "question": "Greater Manchester Mental Health NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/greatermanchestermentalhealthnhsfoundationtrust-eea98d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatermanchestermentalhealthnhsfoundationtrust-eea98d.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164796,7 +164997,7 @@ }, { "question": "Guthrie Clinic", - "icon": "./assets/data/nsi/logos/guthrieclinic-903c2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guthrieclinic-903c2d.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164813,7 +165014,7 @@ }, { "question": "Hartford HealthCare", - "icon": "./assets/data/nsi/logos/hartfordhealthcare-190c2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hartfordhealthcare-190c2f.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164830,7 +165031,7 @@ }, { "question": "Hattiesburg Clinic", - "icon": "./assets/data/nsi/logos/hattiesburgclinic-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hattiesburgclinic-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164847,7 +165048,7 @@ }, { "question": "HCA", - "icon": "./assets/data/nsi/logos/hca-0ca787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hca-0ca787.png", "osmTags": { "and": [ "amenity=clinic", @@ -164864,7 +165065,7 @@ }, { "question": "Health Service Executive", - "icon": "./assets/data/nsi/logos/healthserviceexecutive-049286.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/healthserviceexecutive-049286.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164897,7 +165098,7 @@ }, { "question": "Helios Kliniken", - "icon": "./assets/data/nsi/logos/helioskliniken-ee9e20.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/helioskliniken-ee9e20.svg", "osmTags": { "and": [ "amenity=clinic", @@ -164914,7 +165115,7 @@ }, { "question": "Henry Ford Health System", - "icon": "./assets/data/nsi/logos/henryfordhealthsystem-5a0195.png", + "icon": "https://data.mapcomplete.org/nsi//logos/henryfordhealthsystem-5a0195.png", "osmTags": { "and": [ "amenity=clinic", @@ -164931,7 +165132,7 @@ }, { "question": "Hoag", - "icon": "./assets/data/nsi/logos/hoag-40b2ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoag-40b2ce.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164948,7 +165149,7 @@ }, { "question": "Imperial College Healthcare NHS Trust", - "icon": "./assets/data/nsi/logos/imperialcollegehealthcarenhstrust-3be3d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialcollegehealthcarenhstrust-3be3d3.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164965,7 +165166,7 @@ }, { "question": "Inova Health System", - "icon": "./assets/data/nsi/logos/inovahealthsystem-c2d833.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inovahealthsystem-c2d833.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -164982,7 +165183,7 @@ }, { "question": "Instituto Mexicano del Seguro Social", - "icon": "./assets/data/nsi/logos/institutomexicanodelsegurosocial-093f43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutomexicanodelsegurosocial-093f43.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165002,7 +165203,7 @@ }, { "question": "Intermountain Healthcare", - "icon": "./assets/data/nsi/logos/intermountainhealthcare-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermountainhealthcare-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165019,7 +165220,7 @@ }, { "question": "International Red Cross", - "icon": "./assets/data/nsi/logos/internationalredcross-55c168.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/internationalredcross-55c168.svg", "osmTags": { "and": [ "amenity=clinic", @@ -165036,7 +165237,7 @@ }, { "question": "Isle of Wight NHS Trust", - "icon": "./assets/data/nsi/logos/isleofwightnhstrust-cfb929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isleofwightnhstrust-cfb929.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165053,7 +165254,7 @@ }, { "question": "Junta de Andalucía", - "icon": "./assets/data/nsi/logos/juntadeandalucia-edc4ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-edc4ef.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165085,7 +165286,7 @@ }, { "question": "Kaiser Permanente", - "icon": "./assets/data/nsi/logos/kaiserpermanente-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaiserpermanente-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165103,7 +165304,7 @@ }, { "question": "Kementerian Kesihatan Malaysia", - "icon": "./assets/data/nsi/logos/kementeriankesihatanmalaysia-7765cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kementeriankesihatanmalaysia-7765cf.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165137,7 +165338,7 @@ }, { "question": "Klinik Mediviron", - "icon": "./assets/data/nsi/logos/klinikmediviron-7765cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klinikmediviron-7765cf.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165172,7 +165373,7 @@ }, { "question": "KwaZulu-Natal Department of Health", - "icon": "./assets/data/nsi/logos/kwazulunataldepartmentofhealth-0d0fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwazulunataldepartmentofhealth-0d0fcb.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165189,7 +165390,7 @@ }, { "question": "Legacy Health", - "icon": "./assets/data/nsi/logos/legacyhealth-a30f15.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/legacyhealth-a30f15.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165206,7 +165407,7 @@ }, { "question": "Lehigh Valley Health Network", - "icon": "./assets/data/nsi/logos/lehighvalleyhealthnetwork-9e6808.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lehighvalleyhealthnetwork-9e6808.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165223,7 +165424,7 @@ }, { "question": "Limpopo Department of Health", - "icon": "./assets/data/nsi/logos/limpopodepartmentofhealth-0d0fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/limpopodepartmentofhealth-0d0fcb.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165240,7 +165441,7 @@ }, { "question": "Maidstone and Tunbridge Wells NHS Trust", - "icon": "./assets/data/nsi/logos/maidstoneandtunbridgewellsnhstrust-c8e3c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maidstoneandtunbridgewellsnhstrust-c8e3c4.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165257,7 +165458,7 @@ }, { "question": "Marshfield Clinic", - "icon": "./assets/data/nsi/logos/marshfieldclinic-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshfieldclinic-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165274,7 +165475,7 @@ }, { "question": "Médecins sans frontières", - "icon": "./assets/data/nsi/logos/medecinssansfrontieres-55c168.png", + "icon": "https://data.mapcomplete.org/nsi//logos/medecinssansfrontieres-55c168.png", "osmTags": { "and": [ "amenity=clinic", @@ -165308,7 +165509,7 @@ }, { "question": "Medic-Center Nürnberg", - "icon": "./assets/data/nsi/logos/mediccenternurnberg-0c30b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mediccenternurnberg-0c30b1.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165343,7 +165544,7 @@ }, { "question": "Mercy", - "icon": "./assets/data/nsi/logos/mercy-0636e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercy-0636e2.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165360,7 +165561,7 @@ }, { "question": "Michigan Medicine", - "icon": "./assets/data/nsi/logos/michiganmedicine-5a0195.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michiganmedicine-5a0195.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165377,7 +165578,7 @@ }, { "question": "Ministère de la Santé du Burkina Faso", - "icon": "./assets/data/nsi/logos/ministeredelasanteduburkinafaso-9e1076.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeredelasanteduburkinafaso-9e1076.png", "osmTags": { "and": [ "amenity=clinic", @@ -165410,7 +165611,7 @@ }, { "question": "Ministério da Saúde (Brasil)", - "icon": "./assets/data/nsi/logos/ministeriodasaude-5f4b12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodasaude-5f4b12.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165443,7 +165644,7 @@ }, { "question": "Ministerio de Salud (Argentina)", - "icon": "./assets/data/nsi/logos/ministeriodesalud-4df2ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-4df2ff.png", "osmTags": { "and": [ "amenity=clinic", @@ -165461,7 +165662,7 @@ }, { "question": "Ministerio de Salud (El Salvador)", - "icon": "./assets/data/nsi/logos/ministeriodesalud-5a45cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-5a45cd.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165494,7 +165695,7 @@ }, { "question": "Ministerio de Salud del Perú", - "icon": "./assets/data/nsi/logos/ministeriodesaluddelperu-aa2e69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaluddelperu-aa2e69.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165512,7 +165713,7 @@ }, { "question": "Ministerio de Salud Pública (Cuba)", - "icon": "./assets/data/nsi/logos/ministeriodesaludpublica-72f142.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-72f142.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165530,7 +165731,7 @@ }, { "question": "Ministerio de Salud Pública (Ecuador)", - "icon": "./assets/data/nsi/logos/ministeriodesaludpublica-371d66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-371d66.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165548,7 +165749,7 @@ }, { "question": "Ministry of Health (Indonesia)", - "icon": "./assets/data/nsi/logos/ministryofhealth-1dcb84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-1dcb84.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165567,7 +165768,7 @@ }, { "question": "Ministry of Health (Uganda)", - "icon": "./assets/data/nsi/logos/ministryofhealth-5624d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-5624d8.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165584,7 +165785,7 @@ }, { "question": "Ministry of Health and Sanitation (Sierra Leone)", - "icon": "./assets/data/nsi/logos/ministryofhealthandsanitation-13b62c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealthandsanitation-13b62c.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165601,7 +165802,7 @@ }, { "question": "Ministry of Public Health (Thailand)", - "icon": "./assets/data/nsi/logos/ministryofpublichealth-144162.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofpublichealth-144162.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165619,7 +165820,7 @@ }, { "question": "Mpumalanga Department of Health", - "icon": "./assets/data/nsi/logos/mpumalangadepartmentofhealth-0d0fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mpumalangadepartmentofhealth-0d0fcb.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165667,7 +165868,7 @@ }, { "question": "Municipalidad de Rosario", - "icon": "./assets/data/nsi/logos/municipalidadderosario-435027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidadderosario-435027.svg", "osmTags": { "and": [ "amenity=clinic", @@ -165684,7 +165885,7 @@ }, { "question": "Municipalidad de San Martín", - "icon": "./assets/data/nsi/logos/municipalidaddesanmartin-106d15.png", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddesanmartin-106d15.png", "osmTags": { "and": [ "amenity=clinic", @@ -165701,7 +165902,7 @@ }, { "question": "NHS", - "icon": "./assets/data/nsi/logos/nhs-3d3458.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nhs-3d3458.png", "osmTags": { "and": [ "amenity=clinic", @@ -165718,7 +165919,7 @@ }, { "question": "NHS Grampian", - "icon": "./assets/data/nsi/logos/nhsgrampian-3d3458.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nhsgrampian-3d3458.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165735,7 +165936,7 @@ }, { "question": "North West Department of Health", - "icon": "./assets/data/nsi/logos/northwestdepartmentofhealth-0d0fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestdepartmentofhealth-0d0fcb.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165752,7 +165953,7 @@ }, { "question": "Northern Cape Department of Health", - "icon": "./assets/data/nsi/logos/northerncapedepartmentofhealth-0d0fcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northerncapedepartmentofhealth-0d0fcb.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165769,7 +165970,7 @@ }, { "question": "Northwell Health", - "icon": "./assets/data/nsi/logos/northwellhealth-a74a54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northwellhealth-a74a54.png", "osmTags": { "and": [ "amenity=clinic", @@ -165786,7 +165987,7 @@ }, { "question": "Novant Health", - "icon": "./assets/data/nsi/logos/novanthealth-524bbb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/novanthealth-524bbb.png", "osmTags": { "and": [ "amenity=clinic", @@ -165849,7 +166050,7 @@ }, { "question": "NYU Langone Health", - "icon": "./assets/data/nsi/logos/nyulangonehealth-4c7359.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nyulangonehealth-4c7359.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165866,7 +166067,7 @@ }, { "question": "OHSU", - "icon": "./assets/data/nsi/logos/oregonhealthandscienceuniversity-a30f15.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oregonhealthandscienceuniversity-a30f15.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165884,7 +166085,7 @@ }, { "question": "One Medical", - "icon": "./assets/data/nsi/logos/1lifehealthcare-0ca787.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/1lifehealthcare-0ca787.svg", "osmTags": { "and": [ "amenity=clinic", @@ -165902,7 +166103,7 @@ }, { "question": "Osakidetza", - "icon": "./assets/data/nsi/logos/osakidetza-edc4ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osakidetza-edc4ef.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165919,7 +166120,7 @@ }, { "question": "Passport Health", - "icon": "./assets/data/nsi/logos/passporthealth-e1ad58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/passporthealth-e1ad58.png", "osmTags": { "and": [ "amenity=clinic", @@ -165936,7 +166137,7 @@ }, { "question": "Patient First", - "icon": "./assets/data/nsi/logos/patientfirst-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/patientfirst-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165968,7 +166169,7 @@ }, { "question": "Planned Parenthood", - "icon": "./assets/data/nsi/logos/plannedparenthood-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plannedparenthood-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -165987,7 +166188,7 @@ }, { "question": "PM Pediatrics", - "icon": "./assets/data/nsi/logos/pmpediatrics-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pmpediatrics-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166037,7 +166238,7 @@ }, { "question": "Prefeitura da Cidade do Rio de Janeiro", - "icon": "./assets/data/nsi/logos/prefeituradacidadedoriodejaneiro-4e3c1b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituradacidadedoriodejaneiro-4e3c1b.svg", "osmTags": { "and": [ "amenity=clinic", @@ -166054,7 +166255,7 @@ }, { "question": "Prefeitura de Camocim", - "icon": "./assets/data/nsi/logos/prefeituradecamocim-d148ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituradecamocim-d148ab.png", "osmTags": { "and": [ "amenity=clinic", @@ -166071,7 +166272,7 @@ }, { "question": "Prefeitura do Natal", - "icon": "./assets/data/nsi/logos/prefeituradonatal-c2c81c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituradonatal-c2c81c.svg", "osmTags": { "and": [ "amenity=clinic", @@ -166088,7 +166289,7 @@ }, { "question": "Prefeitura Municipal de Araguaína", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldearaguaina-9860b3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldearaguaina-9860b3.svg", "osmTags": { "and": [ "amenity=clinic", @@ -166121,7 +166322,7 @@ }, { "question": "Prefeitura Municipal de Catanduva", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldecatanduva-f10a78.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldecatanduva-f10a78.png", "osmTags": { "and": [ "amenity=clinic", @@ -166138,7 +166339,7 @@ }, { "question": "Prefeitura Municipal de Chapecó", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldechapeco-b1ce44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldechapeco-b1ce44.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166155,7 +166356,7 @@ }, { "question": "Prefeitura Municipal de Florianópolis", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldeflorianopolis-b1ce44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeflorianopolis-b1ce44.png", "osmTags": { "and": [ "amenity=clinic", @@ -166172,7 +166373,7 @@ }, { "question": "Prefeitura Municipal de Pomerode", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldepomerode-b1ce44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldepomerode-b1ce44.png", "osmTags": { "and": [ "amenity=clinic", @@ -166205,7 +166406,7 @@ }, { "question": "Prefeitura Municipal de Seropédica", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldeseropedica-4e3c1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeseropedica-4e3c1b.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166239,7 +166440,7 @@ }, { "question": "ProCare", - "icon": "./assets/data/nsi/logos/procare-ada481.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/procare-ada481.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166256,7 +166457,7 @@ }, { "question": "Providence Health & Services", - "icon": "./assets/data/nsi/logos/providencehealthandservices-0ca787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/providencehealthandservices-0ca787.png", "osmTags": { "and": [ "amenity=clinic", @@ -166273,7 +166474,7 @@ }, { "question": "Provincia de Santa Fe", - "icon": "./assets/data/nsi/logos/provinciadesantafe-435027.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadesantafe-435027.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166290,7 +166491,7 @@ }, { "question": "Provincia del Chaco", - "icon": "./assets/data/nsi/logos/provinciadelchaco-fcab17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadelchaco-fcab17.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166337,7 +166538,7 @@ }, { "question": "Region Blekinge", - "icon": "./assets/data/nsi/logos/regionblekinge-020929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regionblekinge-020929.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166384,7 +166585,7 @@ }, { "question": "Rhön-Klinikum", - "icon": "./assets/data/nsi/logos/rhonklinikum-ee9e20.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhonklinikum-ee9e20.svg", "osmTags": { "and": [ "amenity=clinic", @@ -166401,7 +166602,7 @@ }, { "question": "Rochester Regional Health", - "icon": "./assets/data/nsi/logos/rochesterregionalhealth-a74a54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochesterregionalhealth-a74a54.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166418,7 +166619,7 @@ }, { "question": "SACYL", - "icon": "./assets/data/nsi/logos/sacyl-edc4ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacyl-edc4ef.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166435,7 +166636,7 @@ }, { "question": "Sağlık Bakanlığı", - "icon": "./assets/data/nsi/logos/saglikbakanligi-712bef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saglikbakanligi-712bef.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166468,7 +166669,7 @@ }, { "question": "Samaritan Health Services", - "icon": "./assets/data/nsi/logos/samaritanhealthservices-51a80e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samaritanhealthservices-51a80e.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166485,7 +166686,7 @@ }, { "question": "Sana Kliniken", - "icon": "./assets/data/nsi/logos/sanakliniken-ee9e20.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanakliniken-ee9e20.png", "osmTags": { "and": [ "amenity=clinic", @@ -166502,7 +166703,7 @@ }, { "question": "Satellite Healthcare", - "icon": "./assets/data/nsi/logos/satellitehealthcare-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/satellitehealthcare-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166644,7 +166845,7 @@ }, { "question": "Seguro Social de Salud (Perú)", - "icon": "./assets/data/nsi/logos/segurosocialdesalud-aa2e69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/segurosocialdesalud-aa2e69.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166677,7 +166878,7 @@ }, { "question": "Servicio Andaluz de Salud", - "icon": "./assets/data/nsi/logos/servicioandaluzdesalud-edc4ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicioandaluzdesalud-edc4ef.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166695,7 +166896,7 @@ }, { "question": "Servicio de Salud de Castilla-La Mancha", - "icon": "./assets/data/nsi/logos/serviciodesaluddecastillalamancha-edc4ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/serviciodesaluddecastillalamancha-edc4ef.png", "osmTags": { "and": [ "amenity=clinic", @@ -166713,7 +166914,7 @@ }, { "question": "Servicio Extremeño de Salud", - "icon": "./assets/data/nsi/logos/servicioextremenodesalud-edc4ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicioextremenodesalud-edc4ef.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166731,7 +166932,7 @@ }, { "question": "Servicio Madrileño de Salud", - "icon": "./assets/data/nsi/logos/serviciomadrilenodesalud-edc4ef.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/serviciomadrilenodesalud-edc4ef.svg", "osmTags": { "and": [ "amenity=clinic", @@ -166749,7 +166950,7 @@ }, { "question": "Serviço Nacional de Saúde (Portugal)", - "icon": "./assets/data/nsi/logos/serviconacionaldesaude-3f54c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/serviconacionaldesaude-3f54c3.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166767,7 +166968,7 @@ }, { "question": "Servizo Galego de Saúde", - "icon": "./assets/data/nsi/logos/servizogalegodesaude-edc4ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/servizogalegodesaude-edc4ef.png", "osmTags": { "and": [ "amenity=clinic", @@ -166785,7 +166986,7 @@ }, { "question": "Sistema Único de Saúde (Brasil)", - "icon": "./assets/data/nsi/logos/sistemaunicodesaude-5f4b12.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sistemaunicodesaude-5f4b12.svg", "osmTags": { "and": [ "amenity=clinic", @@ -166803,7 +167004,7 @@ }, { "question": "Somerset NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/somersetnhsfoundationtrust-7489bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetnhsfoundationtrust-7489bf.png", "osmTags": { "and": [ "amenity=clinic", @@ -166882,7 +167083,7 @@ }, { "question": "Terveystalo", - "icon": "./assets/data/nsi/logos/terveystalo-6db834.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terveystalo-6db834.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166900,7 +167101,7 @@ }, { "question": "UC San Diego Health", - "icon": "./assets/data/nsi/logos/ucsandiegohealth-40b2ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ucsandiegohealth-40b2ce.png", "osmTags": { "and": [ "amenity=clinic", @@ -166917,7 +167118,7 @@ }, { "question": "UCI Health", - "icon": "./assets/data/nsi/logos/ucihealth-caf9d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ucihealth-caf9d6.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166933,7 +167134,7 @@ }, { "question": "UCLA Health", - "icon": "./assets/data/nsi/logos/uclahealth-40b2ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uclahealth-40b2ce.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166950,7 +167151,7 @@ }, { "question": "UnityPoint Health", - "icon": "./assets/data/nsi/logos/unitypointhealth-37d845.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitypointhealth-37d845.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166967,7 +167168,7 @@ }, { "question": "University Hospitals Dorset NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/universityhospitalsdorsetnhsfoundationtrust-da597c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityhospitalsdorsetnhsfoundationtrust-da597c.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -166984,7 +167185,7 @@ }, { "question": "UPMC", - "icon": "./assets/data/nsi/logos/upmc-0ca787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/upmc-0ca787.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -167001,7 +167202,7 @@ }, { "question": "UR Medicine", - "icon": "./assets/data/nsi/logos/universityofrochestermedicalcenter-a74a54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofrochestermedicalcenter-a74a54.png", "osmTags": { "and": [ "amenity=clinic", @@ -167034,7 +167235,7 @@ }, { "question": "VA Clinic", - "icon": "./assets/data/nsi/logos/veteranshealthadministration-0ca787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/veteranshealthadministration-0ca787.png", "osmTags": { "and": [ "amenity=clinic", @@ -167055,7 +167256,7 @@ }, { "question": "Västra Götalandsregionen", - "icon": "./assets/data/nsi/logos/vastragotalandsregionen-020929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vastragotalandsregionen-020929.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -167073,7 +167274,7 @@ }, { "question": "Vivantes", - "icon": "./assets/data/nsi/logos/vivantes-ee9e20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivantes-ee9e20.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -167122,7 +167323,7 @@ }, { "question": "ZoomCare", - "icon": "./assets/data/nsi/logos/zoomcare-0ca787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zoomcare-0ca787.png", "osmTags": { "and": [ "amenity=clinic", @@ -167203,7 +167404,7 @@ }, { "question": "כללית", - "icon": "./assets/data/nsi/logos/clalithealthcareservices-1b314b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clalithealthcareservices-1b314b.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -167238,7 +167439,7 @@ }, { "question": "מכבי", - "icon": "./assets/data/nsi/logos/maccabihealthcareservices-1b314b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maccabihealthcareservices-1b314b.jpg", "osmTags": { "and": [ "amenity=clinic", @@ -167321,7 +167522,7 @@ }, { "question": "City of Dublin Education and Training Board", - "icon": "./assets/data/nsi/logos/cityofdublineducationandtrainingboard-f72bc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdublineducationandtrainingboard-f72bc8.jpg", "osmTags": { "and": [ "amenity=college", @@ -167426,7 +167627,7 @@ }, { "question": "Instituto Nacional de Aprendizaje", - "icon": "./assets/data/nsi/logos/institutonacionaldeaprendizaje-12434b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutonacionaldeaprendizaje-12434b.jpg", "osmTags": { "and": [ "amenity=college", @@ -167443,7 +167644,7 @@ }, { "question": "Ministère de l'Enseignement supérieur et de la Recherche", - "icon": "./assets/data/nsi/logos/ministeredelenseignementsuperieuretdelarecherche-dac3bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeredelenseignementsuperieuretdelarecherche-dac3bc.png", "osmTags": { "and": [ "amenity=college", @@ -167488,7 +167689,7 @@ }, { "question": "Portland Community College", - "icon": "./assets/data/nsi/logos/portlandcommunitycollege-58b6d9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandcommunitycollege-58b6d9.svg", "osmTags": { "and": [ "amenity=college", @@ -167519,7 +167720,7 @@ }, { "question": "Servicio Nacional de Aprendizaje", - "icon": "./assets/data/nsi/logos/servicionacionaldeaprendizaje-04260a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicionacionaldeaprendizaje-04260a.jpg", "osmTags": { "and": [ "amenity=college", @@ -167564,7 +167765,7 @@ }, { "question": "TAFE NSW", - "icon": "./assets/data/nsi/logos/tafensw-e830c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tafensw-e830c3.jpg", "osmTags": { "and": [ "amenity=college", @@ -167580,7 +167781,7 @@ }, { "question": "TAFE Queensland", - "icon": "./assets/data/nsi/logos/tafequeensland-fa7e1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tafequeensland-fa7e1f.jpg", "osmTags": { "and": [ "amenity=college", @@ -167596,7 +167797,7 @@ }, { "question": "TAFE South Australia", - "icon": "./assets/data/nsi/logos/tafesouthaustralia-6ab48a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tafesouthaustralia-6ab48a.png", "osmTags": { "and": [ "amenity=college", @@ -167627,7 +167828,7 @@ }, { "question": "TasTAFE", - "icon": "./assets/data/nsi/logos/tastafe-e237af.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tastafe-e237af.png", "osmTags": { "and": [ "amenity=college", @@ -167643,7 +167844,7 @@ }, { "question": "Universidade de São Paulo", - "icon": "./assets/data/nsi/logos/universidadedesaopaulo-628adc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/universidadedesaopaulo-628adc.svg", "osmTags": { "and": [ "amenity=college", @@ -167659,7 +167860,7 @@ }, { "question": "Université de Lille", - "icon": "./assets/data/nsi/logos/universitedelille-9d11c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universitedelille-9d11c1.png", "osmTags": { "and": [ "amenity=college", @@ -167675,7 +167876,7 @@ }, { "question": "Universiti Malaya", - "icon": "./assets/data/nsi/logos/universitimalaya-b3f432.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitimalaya-b3f432.jpg", "osmTags": { "and": [ "amenity=college", @@ -167691,7 +167892,7 @@ }, { "question": "University of Duhok", - "icon": "./assets/data/nsi/logos/universityofduhok-7b4b17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofduhok-7b4b17.jpg", "osmTags": { "and": [ "amenity=college", @@ -167707,7 +167908,7 @@ }, { "question": "University of North Georgia", - "icon": "./assets/data/nsi/logos/universityofnorthgeorgia-c585b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofnorthgeorgia-c585b8.png", "osmTags": { "and": [ "amenity=college", @@ -167723,7 +167924,7 @@ }, { "question": "University of the Highlands and Islands", - "icon": "./assets/data/nsi/logos/universityofthehighlandsandislands-35db51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofthehighlandsandislands-35db51.jpg", "osmTags": { "and": [ "amenity=college", @@ -167781,7 +167982,7 @@ }, { "question": "Ajuntament de Barcelona", - "icon": "./assets/data/nsi/logos/ajuntamentdebarcelona-b0bc99.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-b0bc99.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -167811,7 +168012,7 @@ }, { "question": "Auckland Council", - "icon": "./assets/data/nsi/logos/aucklandcouncil-8f36f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-8f36f1.png", "osmTags": { "and": [ "amenity=community_centre", @@ -167841,7 +168042,7 @@ }, { "question": "Ayuntamiento de Madrid", - "icon": "./assets/data/nsi/logos/ayuntamientodemadrid-bf9ebc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-bf9ebc.png", "osmTags": { "and": [ "amenity=community_centre", @@ -167928,7 +168129,7 @@ }, { "question": "Caritas", - "icon": "./assets/data/nsi/logos/caritas-57d70d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-57d70d.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -167958,7 +168159,7 @@ }, { "question": "Chicago Park District", - "icon": "./assets/data/nsi/logos/chicagoparkdistrict-706aee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagoparkdistrict-706aee.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -167974,7 +168175,7 @@ }, { "question": "Chiro", - "icon": "./assets/data/nsi/logos/chiro-d3b2a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chiro-d3b2a9.png", "osmTags": { "and": [ "amenity=community_centre", @@ -167990,7 +168191,7 @@ }, { "question": "City of Cape Town", - "icon": "./assets/data/nsi/logos/cityofcapetown-2d14a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-2d14a3.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168006,7 +168207,7 @@ }, { "question": "City of Cleveland", - "icon": "./assets/data/nsi/logos/cityofcleveland-47f0c6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcleveland-47f0c6.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -168022,7 +168223,7 @@ }, { "question": "City of Kitchener", - "icon": "./assets/data/nsi/logos/cityofkitchener-6e645e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofkitchener-6e645e.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168053,7 +168254,7 @@ }, { "question": "City of Los Angeles", - "icon": "./assets/data/nsi/logos/cityoflosangeles-0fcd3d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflosangeles-0fcd3d.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168069,7 +168270,7 @@ }, { "question": "City of Orlando", - "icon": "./assets/data/nsi/logos/cityoforlando-fb3645.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoforlando-fb3645.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168085,7 +168286,7 @@ }, { "question": "City of Ottawa", - "icon": "./assets/data/nsi/logos/cityofottawa-6e645e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofottawa-6e645e.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168101,7 +168302,7 @@ }, { "question": "City of Portland (Oregon)", - "icon": "./assets/data/nsi/logos/cityofportland-60cfde.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofportland-60cfde.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -168117,7 +168318,7 @@ }, { "question": "City of Toronto", - "icon": "./assets/data/nsi/logos/cityoftoronto-6e645e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftoronto-6e645e.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -168133,7 +168334,7 @@ }, { "question": "Concello de Abegondo", - "icon": "./assets/data/nsi/logos/concellodeabegondo-1f7aba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/concellodeabegondo-1f7aba.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -168149,7 +168350,7 @@ }, { "question": "Concello de Carral", - "icon": "./assets/data/nsi/logos/concellodecarral-1f7aba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/concellodecarral-1f7aba.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -168165,7 +168366,7 @@ }, { "question": "Gemeente Nijmegen", - "icon": "./assets/data/nsi/logos/gemeentenijmegen-f90bd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentenijmegen-f90bd5.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168181,7 +168382,7 @@ }, { "question": "Gmina Chojnów", - "icon": "./assets/data/nsi/logos/gminachojnow-c977f5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gminachojnow-c977f5.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -168197,7 +168398,7 @@ }, { "question": "Halifax Regional Municipality", - "icon": "./assets/data/nsi/logos/halifaxregionalmunicipality-74c2ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halifaxregionalmunicipality-74c2ea.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168228,7 +168429,7 @@ }, { "question": "Instituto Ecuatoriano de Seguridad Social", - "icon": "./assets/data/nsi/logos/institutoecuatorianodeseguridadsocial-aa1b4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutoecuatorianodeseguridadsocial-aa1b4b.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168260,7 +168461,7 @@ }, { "question": "JUNGE KIRCHE SPEYER Diözesanverband", - "icon": "./assets/data/nsi/logos/jungekirchespeyerdiozesanverband-84d773.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jungekirchespeyerdiozesanverband-84d773.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168276,7 +168477,7 @@ }, { "question": "Junta de Andalucía", - "icon": "./assets/data/nsi/logos/juntadeandalucia-1f7aba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-1f7aba.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168292,7 +168493,7 @@ }, { "question": "Kreisjugendring München-Stadt", - "icon": "./assets/data/nsi/logos/kreisjugendringmunchenstadt-1aa910.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kreisjugendringmunchenstadt-1aa910.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168368,7 +168569,7 @@ }, { "question": "Municipalidad de Neuquén", - "icon": "./assets/data/nsi/logos/municipalidaddeneuquen-ff4eea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-ff4eea.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168413,7 +168614,7 @@ }, { "question": "Scouts South Africa", - "icon": "./assets/data/nsi/logos/scoutssouthafrica-2d14a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scoutssouthafrica-2d14a3.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168429,7 +168630,7 @@ }, { "question": "Stadt Paderborn", - "icon": "./assets/data/nsi/logos/stadtpaderborn-ffde9d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtpaderborn-ffde9d.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -168445,7 +168646,7 @@ }, { "question": "Stadtjugendring Augsburg", - "icon": "./assets/data/nsi/logos/stadtjugendringaugsburg-1aa910.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtjugendringaugsburg-1aa910.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168462,7 +168663,7 @@ }, { "question": "Stiftung Zürcher Gemeinschaftszentren", - "icon": "./assets/data/nsi/logos/stiftungzurchergemeinschaftszentren-4b6460.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stiftungzurchergemeinschaftszentren-4b6460.svg", "osmTags": { "and": [ "amenity=community_centre", @@ -168478,7 +168679,7 @@ }, { "question": "Svenska kyrkan", - "icon": "./assets/data/nsi/logos/svenskakyrkan-57685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/svenskakyrkan-57685d.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168494,7 +168695,7 @@ }, { "question": "The Salvation Army", - "icon": "./assets/data/nsi/logos/thesalvationarmy-e4e4f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-e4e4f8.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168510,7 +168711,7 @@ }, { "question": "University of Florida", - "icon": "./assets/data/nsi/logos/universityofflorida-fb3645.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofflorida-fb3645.jpg", "osmTags": { "and": [ "amenity=community_centre", @@ -168571,7 +168772,7 @@ }, { "question": "YMCA (USA)", - "icon": "./assets/data/nsi/logos/ymca-232bda.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ymca-232bda.png", "osmTags": { "and": [ "amenity=community_centre", @@ -168840,7 +169041,7 @@ }, { "question": "Circuit Court of Cook County", - "icon": "./assets/data/nsi/logos/circuitcourtofcookcounty-ca7500.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/circuitcourtofcookcounty-ca7500.jpg", "osmTags": { "and": [ "amenity=courthouse", @@ -168855,7 +169056,7 @@ }, { "question": "Commonwealth of Massachusetts", - "icon": "./assets/data/nsi/logos/commonwealthofmassachusetts-cb4f91.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthofmassachusetts-cb4f91.svg", "osmTags": { "and": [ "amenity=courthouse", @@ -168898,7 +169099,7 @@ }, { "question": "Courts of the Republic of Ireland", - "icon": "./assets/data/nsi/logos/courtsoftherepublicofireland-920af5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/courtsoftherepublicofireland-920af5.jpg", "osmTags": { "and": [ "amenity=courthouse", @@ -168923,7 +169124,7 @@ }, { "question": "HM Courts and Tribunals Service", - "icon": "./assets/data/nsi/logos/hmcourtsandtribunalsservice-c561a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hmcourtsandtribunalsservice-c561a5.jpg", "osmTags": { "and": [ "amenity=courthouse", @@ -169009,7 +169210,7 @@ }, { "question": "Ministério da Justiça (Brasil)", - "icon": "./assets/data/nsi/logos/ministeriodajustica-e063cd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodajustica-e063cd.svg", "osmTags": { "and": [ "amenity=courthouse", @@ -169024,7 +169225,7 @@ }, { "question": "Ministério da Justiça (Portugal)", - "icon": "./assets/data/nsi/logos/ministeriodajustica-b3c1f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodajustica-b3c1f4.png", "osmTags": { "and": [ "amenity=courthouse", @@ -169039,7 +169240,7 @@ }, { "question": "Ministerio de Justicia (Bolivia)", - "icon": "./assets/data/nsi/logos/ministeriodejusticia-66344a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodejusticia-66344a.png", "osmTags": { "and": [ "amenity=courthouse", @@ -169054,7 +169255,7 @@ }, { "question": "Ministerio de Justicia (Colombia)", - "icon": "./assets/data/nsi/logos/ministeriodejusticia-a94c87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodejusticia-a94c87.jpg", "osmTags": { "and": [ "amenity=courthouse", @@ -169097,7 +169298,7 @@ }, { "question": "Ministerio de Justicia (España)", - "icon": "./assets/data/nsi/logos/ministeriodejusticia-3a2cbc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodejusticia-3a2cbc.svg", "osmTags": { "and": [ "amenity=courthouse", @@ -169112,7 +169313,7 @@ }, { "question": "Ministero della Giustizia", - "icon": "./assets/data/nsi/logos/ministerodellagiustizia-df8fce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerodellagiustizia-df8fce.jpg", "osmTags": { "and": [ "amenity=courthouse", @@ -169127,7 +169328,7 @@ }, { "question": "Ministry of Justice (New Zealand)", - "icon": "./assets/data/nsi/logos/ministryofjustice-497bf0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofjustice-497bf0.png", "osmTags": { "and": [ "amenity=courthouse", @@ -169142,7 +169343,7 @@ }, { "question": "Ministry of Justice (UK)", - "icon": "./assets/data/nsi/logos/ministryofjustice-c561a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofjustice-c561a5.jpg", "osmTags": { "and": [ "amenity=courthouse", @@ -169171,7 +169372,7 @@ }, { "question": "Poder Judicial (Costa Rica)", - "icon": "./assets/data/nsi/logos/poderjudicial-db9fe2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/poderjudicial-db9fe2.svg", "osmTags": { "and": [ "amenity=courthouse", @@ -169218,7 +169419,7 @@ }, { "question": "Poder Judicial del Perú", - "icon": "./assets/data/nsi/logos/poderjudicialdelperu-351c1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poderjudicialdelperu-351c1b.jpg", "osmTags": { "and": [ "amenity=courthouse", @@ -169264,7 +169465,7 @@ }, { "question": "Tribunal de Justiça do Distrito Federal e dos Territórios", - "icon": "./assets/data/nsi/logos/tribunaldejusticadodistritofederaledosterritorios-e063cd.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/tribunaldejusticadodistritofederaledosterritorios-e063cd.gif", "osmTags": { "and": [ "amenity=courthouse", @@ -169293,7 +169494,7 @@ }, { "question": "Tribunal de Justiça do Estado de Minas Gerais", - "icon": "./assets/data/nsi/logos/tribunaldejusticadoestadodeminasgerais-145c04.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tribunaldejusticadoestadodeminasgerais-145c04.png", "osmTags": { "and": [ "amenity=courthouse", @@ -169336,7 +169537,7 @@ }, { "question": "Abrazo Community Health Network", - "icon": "./assets/data/nsi/logos/abrazocommunityhealthnetwork-85b200.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abrazocommunityhealthnetwork-85b200.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -169377,7 +169578,7 @@ }, { "question": "Augenzentrum Eckert", - "icon": "./assets/data/nsi/logos/augenzentrumeckert-628c49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/augenzentrumeckert-628c49.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -169493,7 +169694,7 @@ }, { "question": "Generalitat Valenciana", - "icon": "./assets/data/nsi/logos/generalitatvalenciana-82fbf1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-82fbf1.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -169510,7 +169711,7 @@ }, { "question": "GGD Rotterdam-Rijnmond", - "icon": "./assets/data/nsi/logos/ggdrotterdamrijnmond-dc48cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ggdrotterdamrijnmond-dc48cf.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -169526,7 +169727,7 @@ }, { "question": "GGD Zeeland", - "icon": "./assets/data/nsi/logos/ggdzeeland-dc48cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ggdzeeland-dc48cf.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -169552,7 +169753,7 @@ }, { "question": "Hoag", - "icon": "./assets/data/nsi/logos/hoag-a20194.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoag-a20194.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -169568,7 +169769,7 @@ }, { "question": "Mercy Health", - "icon": "./assets/data/nsi/logos/mercyhealth-4a018b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mercyhealth-4a018b.png", "osmTags": { "and": [ "amenity=doctors", @@ -169684,7 +169885,7 @@ }, { "question": "Rochester Regional Health", - "icon": "./assets/data/nsi/logos/rochesterregionalhealth-cadfb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochesterregionalhealth-cadfb7.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -169730,7 +169931,7 @@ }, { "question": "UR Medicine", - "icon": "./assets/data/nsi/logos/universityofrochestermedicalcenter-cadfb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofrochestermedicalcenter-cadfb7.png", "osmTags": { "and": [ "amenity=doctors", @@ -169747,7 +169948,7 @@ }, { "question": "UW Medicine", - "icon": "./assets/data/nsi/logos/uwmedicine-3ba0f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uwmedicine-3ba0f7.jpg", "osmTags": { "and": [ "amenity=doctors", @@ -169891,7 +170092,7 @@ }, { "question": "Acea", - "icon": "./assets/data/nsi/logos/acea-8df115.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acea-8df115.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -169953,7 +170154,7 @@ }, { "question": "Ajuntament de Barcelona", - "icon": "./assets/data/nsi/logos/ajuntamentdebarcelona-fb4f0f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-fb4f0f.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -169996,7 +170197,7 @@ }, { "question": "Ajuntament de València", - "icon": "./assets/data/nsi/logos/ajuntamentdevalencia-a7f52c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdevalencia-a7f52c.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170039,7 +170240,7 @@ }, { "question": "Ayuntamiento de Madrid", - "icon": "./assets/data/nsi/logos/ayuntamientodemadrid-08fe37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-08fe37.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170091,7 +170292,7 @@ }, { "question": "Berliner Wasserbetriebe", - "icon": "./assets/data/nsi/logos/berlinerwasserbetriebe-8361bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerwasserbetriebe-8361bc.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170107,7 +170308,7 @@ }, { "question": "Brabant Water", - "icon": "./assets/data/nsi/logos/brabantwater-0a63fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brabantwater-0a63fc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170148,7 +170349,7 @@ }, { "question": "Christchurch City Council", - "icon": "./assets/data/nsi/logos/christchurchcitycouncil-f7c9d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/christchurchcitycouncil-f7c9d2.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170163,7 +170364,7 @@ }, { "question": "City of Austin (Texas)", - "icon": "./assets/data/nsi/logos/cityofaustin-6aaee1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofaustin-6aaee1.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170179,7 +170380,7 @@ }, { "question": "City of Burnaby", - "icon": "./assets/data/nsi/logos/cityofburnaby-f4df2b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofburnaby-f4df2b.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170194,7 +170395,7 @@ }, { "question": "City of Denton", - "icon": "./assets/data/nsi/logos/cityofdenton-6aaee1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdenton-6aaee1.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170224,7 +170425,7 @@ }, { "question": "Comune di Montalcino", - "icon": "./assets/data/nsi/logos/comunedimontalcino-1a4497.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedimontalcino-1a4497.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170239,7 +170440,7 @@ }, { "question": "Comune di Montepulciano", - "icon": "./assets/data/nsi/logos/comunedimontepulciano-1a4497.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedimontepulciano-1a4497.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170298,7 +170499,7 @@ }, { "question": "Comune di Siena", - "icon": "./assets/data/nsi/logos/comunedisiena-1a4497.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedisiena-1a4497.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170313,7 +170514,7 @@ }, { "question": "Comune di Torrita di Siena", - "icon": "./assets/data/nsi/logos/comuneditorritadisiena-1a4497.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comuneditorritadisiena-1a4497.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170328,7 +170529,7 @@ }, { "question": "Darebin City Council", - "icon": "./assets/data/nsi/logos/darebincitycouncil-bffbbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/darebincitycouncil-bffbbc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170343,7 +170544,7 @@ }, { "question": "De Watergroep", - "icon": "./assets/data/nsi/logos/dewatergroep-d9e26a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dewatergroep-d9e26a.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170358,7 +170559,7 @@ }, { "question": "Dunea", - "icon": "./assets/data/nsi/logos/dunea-0a63fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunea-0a63fc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170373,7 +170574,7 @@ }, { "question": "Eau de Paris", - "icon": "./assets/data/nsi/logos/eaudeparis-02ca9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eaudeparis-02ca9b.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170397,7 +170598,7 @@ }, { "question": "Emasesa", - "icon": "./assets/data/nsi/logos/emasesa-a7f52c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emasesa-a7f52c.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170412,7 +170613,7 @@ }, { "question": "Evides", - "icon": "./assets/data/nsi/logos/evides-0a63fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evides-0a63fc.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170441,7 +170642,7 @@ }, { "question": "Gemeinde Gampel-Bratsch", - "icon": "./assets/data/nsi/logos/gemeindegampelbratsch-223315.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindegampelbratsch-223315.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170456,7 +170657,7 @@ }, { "question": "Gemeinde Toblach", - "icon": "./assets/data/nsi/logos/gemeindetoblach-6c07c4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindetoblach-6c07c4.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170485,7 +170686,7 @@ }, { "question": "GlobalTap", - "icon": "./assets/data/nsi/logos/globaltap-3fbe17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globaltap-3fbe17.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170500,7 +170701,7 @@ }, { "question": "Helsingin seudun ympäristöpalvelut", - "icon": "./assets/data/nsi/logos/helsinginseudunymparistopalvelut-077748.png", + "icon": "https://data.mapcomplete.org/nsi//logos/helsinginseudunymparistopalvelut-077748.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170516,7 +170717,7 @@ }, { "question": "Hocking Hills State Park", - "icon": "./assets/data/nsi/logos/hockinghillsstatepark-44b6ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hockinghillsstatepark-44b6ea.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170531,7 +170732,7 @@ }, { "question": "Holding Graz", - "icon": "./assets/data/nsi/logos/holdinggraz-8c9bfd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/holdinggraz-8c9bfd.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170546,7 +170747,7 @@ }, { "question": "Iren", - "icon": "./assets/data/nsi/logos/iren-8df115.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iren-8df115.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170629,7 +170830,7 @@ }, { "question": "Miami Dade College", - "icon": "./assets/data/nsi/logos/miamidadecollege-4ee648.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miamidadecollege-4ee648.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170685,7 +170886,7 @@ }, { "question": "Municipality of Shumen", - "icon": "./assets/data/nsi/logos/municipalityofshumen-65e457.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalityofshumen-65e457.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170700,7 +170901,7 @@ }, { "question": "Nederlandse Spoorwegen", - "icon": "./assets/data/nsi/logos/nederlandsespoorwegen-0a63fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-0a63fc.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170715,7 +170916,7 @@ }, { "question": "Oasen", - "icon": "./assets/data/nsi/logos/oasen-0a63fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oasen-0a63fc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170730,7 +170931,7 @@ }, { "question": "ONEA", - "icon": "./assets/data/nsi/logos/onea-12cfce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onea-12cfce.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170745,7 +170946,7 @@ }, { "question": "Oxfam", - "icon": "./assets/data/nsi/logos/oxfam-3fbe17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfam-3fbe17.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170769,7 +170970,7 @@ }, { "question": "Parks Victoria", - "icon": "./assets/data/nsi/logos/parksvictoria-bffbbc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parksvictoria-bffbbc.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170784,7 +170985,7 @@ }, { "question": "PBOT", - "icon": "./assets/data/nsi/logos/portlandbureauoftransportation-f48dad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandbureauoftransportation-f48dad.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170800,7 +171001,7 @@ }, { "question": "Peace Winds Japan", - "icon": "./assets/data/nsi/logos/peacewindsjapan-1f271a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peacewindsjapan-1f271a.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170815,7 +171016,7 @@ }, { "question": "Provincia di Brescia", - "icon": "./assets/data/nsi/logos/provinciadibrescia-001ccd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadibrescia-001ccd.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170839,7 +171040,7 @@ }, { "question": "PWN", - "icon": "./assets/data/nsi/logos/pwn-0a63fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pwn-0a63fc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170868,7 +171069,7 @@ }, { "question": "RheinEnergie", - "icon": "./assets/data/nsi/logos/rheinenergie-a3ecbe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinenergie-a3ecbe.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170897,7 +171098,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-a1fadc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-a1fadc.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170912,7 +171113,7 @@ }, { "question": "Scottish Water", - "icon": "./assets/data/nsi/logos/scottishwater-3032ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishwater-3032ed.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170928,7 +171129,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-223fdb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-223fdb.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -170982,7 +171183,7 @@ }, { "question": "Stadt Bludenz", - "icon": "./assets/data/nsi/logos/stadtbludenz-44bf8e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbludenz-44bf8e.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -170997,7 +171198,7 @@ }, { "question": "Stadt Dornbirn", - "icon": "./assets/data/nsi/logos/stadtdornbirn-44bf8e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtdornbirn-44bf8e.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171012,7 +171213,7 @@ }, { "question": "Stadt Graz", - "icon": "./assets/data/nsi/logos/stadtgraz-8c9bfd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgraz-8c9bfd.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171027,7 +171228,7 @@ }, { "question": "Stadt Linz", - "icon": "./assets/data/nsi/logos/stadtlinz-ea6086.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtlinz-ea6086.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171056,7 +171257,7 @@ }, { "question": "Stadtwerke Brixen AG", - "icon": "./assets/data/nsi/logos/stadtwerkebrixenag-6c07c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebrixenag-6c07c4.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171136,7 +171337,7 @@ }, { "question": "UNICEF", - "icon": "./assets/data/nsi/logos/unicef-3fbe17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unicef-3fbe17.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171151,7 +171352,7 @@ }, { "question": "University of Melbourne", - "icon": "./assets/data/nsi/logos/universityofmelbourne-bffbbc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofmelbourne-bffbbc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171166,7 +171367,7 @@ }, { "question": "University of South Wales", - "icon": "./assets/data/nsi/logos/universityofsouthwales-97bbae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofsouthwales-97bbae.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171181,7 +171382,7 @@ }, { "question": "Vale of Glamorgan Council", - "icon": "./assets/data/nsi/logos/valeofglamorgancouncil-97bbae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valeofglamorgancouncil-97bbae.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171196,7 +171397,7 @@ }, { "question": "Veolia Eau", - "icon": "./assets/data/nsi/logos/veoliaeau-02ca9b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/veoliaeau-02ca9b.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171211,7 +171412,7 @@ }, { "question": "Veřejná zeleň města Brna", - "icon": "./assets/data/nsi/logos/verejnazelenmestabrna-eb7dc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verejnazelenmestabrna-eb7dc3.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171255,7 +171456,7 @@ }, { "question": "Ville de Lévis", - "icon": "./assets/data/nsi/logos/villedelevis-5fe9c1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedelevis-5fe9c1.svg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171270,7 +171471,7 @@ }, { "question": "Ville de Liège", - "icon": "./assets/data/nsi/logos/villedeliege-d9e26a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedeliege-d9e26a.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171299,7 +171500,7 @@ }, { "question": "Vitens", - "icon": "./assets/data/nsi/logos/vitens-0a63fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitens-0a63fc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171323,7 +171524,7 @@ }, { "question": "Východoslovenská vodárenská spoločnosť", - "icon": "./assets/data/nsi/logos/vychodoslovenskavodarenskaspolocnost-82b290.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskavodarenskaspolocnost-82b290.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -171348,7 +171549,7 @@ }, { "question": "Waterbedrijf Groningen", - "icon": "./assets/data/nsi/logos/waterbedrijfgroningen-0a63fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waterbedrijfgroningen-0a63fc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171363,7 +171564,7 @@ }, { "question": "Waterlink", - "icon": "./assets/data/nsi/logos/waterlink-d9e26a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waterlink-d9e26a.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171378,7 +171579,7 @@ }, { "question": "Waternet", - "icon": "./assets/data/nsi/logos/waternet-0a63fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/waternet-0a63fc.png", "osmTags": { "and": [ "amenity=drinking_water", @@ -171393,7 +171594,7 @@ }, { "question": "Wellington City Council", - "icon": "./assets/data/nsi/logos/wellingtoncitycouncil-93c193.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellingtoncitycouncil-93c193.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171408,7 +171609,7 @@ }, { "question": "Wessex Water Refill", - "icon": "./assets/data/nsi/logos/wessexwater-87a91c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wessexwater-87a91c.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171423,7 +171624,7 @@ }, { "question": "WMD Drents drinkwater", - "icon": "./assets/data/nsi/logos/wmddrentsdrinkwater-0a63fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wmddrentsdrinkwater-0a63fc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171438,7 +171639,7 @@ }, { "question": "WML Limburgs drinkwater", - "icon": "./assets/data/nsi/logos/wmllimburgsdrinkwater-0a63fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wmllimburgsdrinkwater-0a63fc.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171453,7 +171654,7 @@ }, { "question": "WVZ", - "icon": "./assets/data/nsi/logos/wvz-32a6c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wvz-32a6c1.jpg", "osmTags": { "and": [ "amenity=drinking_water", @@ -171672,7 +171873,7 @@ }, { "question": "Ankara İtfaiyesi", - "icon": "./assets/data/nsi/logos/ankaraitfaiyesi-65f4f7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ankaraitfaiyesi-65f4f7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -171696,7 +171897,7 @@ }, { "question": "Avon Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/avonfireandrescueservice-ab1fb5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avonfireandrescueservice-ab1fb5.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171711,7 +171912,7 @@ }, { "question": "Ayuntamiento de Madrid", - "icon": "./assets/data/nsi/logos/ayuntamientodemadrid-5d5dc4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-5d5dc4.png", "osmTags": { "and": [ "amenity=fire_station", @@ -171726,7 +171927,7 @@ }, { "question": "Baltimore City Fire Department", - "icon": "./assets/data/nsi/logos/baltimorecityfiredepartment-476f51.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecityfiredepartment-476f51.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171741,7 +171942,7 @@ }, { "question": "Bataillon de marins-pompiers de Marseille", - "icon": "./assets/data/nsi/logos/bataillondemarinspompiersdemarseille-2fa295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bataillondemarinspompiersdemarseille-2fa295.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171756,7 +171957,7 @@ }, { "question": "Bedfordshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/bedfordshirefireandrescueservice-61f16b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedfordshirefireandrescueservice-61f16b.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171780,7 +171981,7 @@ }, { "question": "Berliner Feuerwehr", - "icon": "./assets/data/nsi/logos/berlinerfeuerwehr-6d60c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerfeuerwehr-6d60c4.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171795,7 +171996,7 @@ }, { "question": "Bernalillo County Fire Department", - "icon": "./assets/data/nsi/logos/bernalillocountyfiredepartment-ee0f4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bernalillocountyfiredepartment-ee0f4a.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171811,7 +172012,7 @@ }, { "question": "Birmingham Fire and Rescue Service Department", - "icon": "./assets/data/nsi/logos/birminghamfireandrescueservicedepartment-cc12c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamfireandrescueservicedepartment-cc12c6.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171853,7 +172054,7 @@ }, { "question": "Brandweerzone Centrum", - "icon": "./assets/data/nsi/logos/brandweerzonecentrum-17028f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brandweerzonecentrum-17028f.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171882,7 +172083,7 @@ }, { "question": "Brandweerzone Rivierenland", - "icon": "./assets/data/nsi/logos/brandweerzonerivierenland-17028f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brandweerzonerivierenland-17028f.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171915,7 +172116,7 @@ }, { "question": "Brigada Militar do Rio Grande do Sul", - "icon": "./assets/data/nsi/logos/brigadamilitardoriograndedosul-5b42d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brigadamilitardoriograndedosul-5b42d3.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171933,7 +172134,7 @@ }, { "question": "BSPP", - "icon": "./assets/data/nsi/logos/bspp-9a45cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bspp-9a45cb.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171950,7 +172151,7 @@ }, { "question": "Buckinghamshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/buckinghamshirefireandrescueservice-6145a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buckinghamshirefireandrescueservice-6145a7.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171965,7 +172166,7 @@ }, { "question": "Bureau of Fire Protection", - "icon": "./assets/data/nsi/logos/bureauoffireprotection-267105.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauoffireprotection-267105.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -171980,7 +172181,7 @@ }, { "question": "Calgary Fire Department", - "icon": "./assets/data/nsi/logos/calgaryfiredepartment-d75009.png", + "icon": "https://data.mapcomplete.org/nsi//logos/calgaryfiredepartment-d75009.png", "osmTags": { "and": [ "amenity=fire_station", @@ -171995,7 +172196,7 @@ }, { "question": "California Department of Forestry and Fire Protection", - "icon": "./assets/data/nsi/logos/californiadepartmentofforestryandfireprotection-8a59ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofforestryandfireprotection-8a59ad.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172011,7 +172212,7 @@ }, { "question": "Cambridgeshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/cambridgeshirefireandrescueservice-61f16b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cambridgeshirefireandrescueservice-61f16b.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172026,7 +172227,7 @@ }, { "question": "CGDIS", - "icon": "./assets/data/nsi/logos/cgdis-113857.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cgdis-113857.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172041,7 +172242,7 @@ }, { "question": "Cheshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/cheshirefireandrescueservice-5355cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cheshirefireandrescueservice-5355cf.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172056,7 +172257,7 @@ }, { "question": "Chicago Fire Department", - "icon": "./assets/data/nsi/logos/chicagofiredepartment-68d3d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagofiredepartment-68d3d9.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172071,7 +172272,7 @@ }, { "question": "Cincinnati Fire Department", - "icon": "./assets/data/nsi/logos/cincinnatifiredepartment-9e25c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cincinnatifiredepartment-9e25c5.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172086,7 +172287,7 @@ }, { "question": "City of Boise", - "icon": "./assets/data/nsi/logos/cityofboise-46f1bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofboise-46f1bf.png", "osmTags": { "and": [ "amenity=fire_station", @@ -172101,7 +172302,7 @@ }, { "question": "City of Concord", - "icon": "./assets/data/nsi/logos/cityofconcord-79c902.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofconcord-79c902.png", "osmTags": { "and": [ "amenity=fire_station", @@ -172116,7 +172317,7 @@ }, { "question": "City of Phoenix (Arizona)", - "icon": "./assets/data/nsi/logos/cityofphoenix-988138.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofphoenix-988138.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172131,7 +172332,7 @@ }, { "question": "Clackamas Fire", - "icon": "./assets/data/nsi/logos/clackamasfiredistrict1-b9064d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clackamasfiredistrict1-b9064d.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172146,7 +172347,7 @@ }, { "question": "Cleveland Fire Brigade", - "icon": "./assets/data/nsi/logos/clevelandfirebrigade-c946be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandfirebrigade-c946be.png", "osmTags": { "and": [ "amenity=fire_station", @@ -172161,7 +172362,7 @@ }, { "question": "Cobb County Fire & Emergency Services", - "icon": "./assets/data/nsi/logos/cobbcountyfireandemergencyservices-0d982b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cobbcountyfireandemergencyservices-0d982b.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172190,7 +172391,7 @@ }, { "question": "Comunidad de Madrid", - "icon": "./assets/data/nsi/logos/comunidaddemadrid-5d5dc4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-5d5dc4.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -172232,7 +172433,7 @@ }, { "question": "Cornwall Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/cornwallfireandrescueservice-668361.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornwallfireandrescueservice-668361.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172247,7 +172448,7 @@ }, { "question": "Corpo de Bombeiros Militar de Santa Catarina", - "icon": "./assets/data/nsi/logos/corpodebombeirosmilitardesantacatarina-81e8d3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpodebombeirosmilitardesantacatarina-81e8d3.png", "osmTags": { "and": [ "amenity=fire_station", @@ -172263,7 +172464,7 @@ }, { "question": "Corpo Nazionale dei Vigili del Fuoco", - "icon": "./assets/data/nsi/logos/corponazionaledeivigilidelfuoco-783fb8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/corponazionaledeivigilidelfuoco-783fb8.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -172278,7 +172479,7 @@ }, { "question": "Country Fire Authority", - "icon": "./assets/data/nsi/logos/countryfireauthority-1faece.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countryfireauthority-1faece.png", "osmTags": { "and": [ "amenity=fire_station", @@ -172293,7 +172494,7 @@ }, { "question": "County Durham and Darlington Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/countydurhamanddarlingtonfireandrescueservice-c946be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/countydurhamanddarlingtonfireandrescueservice-c946be.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172317,7 +172518,7 @@ }, { "question": "Cuerpo de Bomberos de Honduras", - "icon": "./assets/data/nsi/logos/cuerpodebomberosdehonduras-696c1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cuerpodebomberosdehonduras-696c1a.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172362,7 +172563,7 @@ }, { "question": "Cumbria Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/cumbriafireandrescueservice-5355cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cumbriafireandrescueservice-5355cf.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172377,7 +172578,7 @@ }, { "question": "Department of Fire & Emergency Services", - "icon": "./assets/data/nsi/logos/departmentoffireandemergencyservices-72fb76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentoffireandemergencyservices-72fb76.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172392,7 +172593,7 @@ }, { "question": "Derbyshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/derbyshirefireandrescueservice-18a147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derbyshirefireandrescueservice-18a147.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172407,7 +172608,7 @@ }, { "question": "Devon and Somerset Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/devonandsomersetfireandrescueservice-52c78e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devonandsomersetfireandrescueservice-52c78e.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172422,7 +172623,7 @@ }, { "question": "Dobrovoľná požiarna ochrana Slovenskej republiky", - "icon": "./assets/data/nsi/logos/dobrovolnapoziarnaochranaslovenskejrepubliky-e10424.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dobrovolnapoziarnaochranaslovenskejrepubliky-e10424.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172447,7 +172648,7 @@ }, { "question": "Dorset & Wiltshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/dorsetandwiltshirefireandrescueservice-1f1daa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorsetandwiltshirefireandrescueservice-1f1daa.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172462,7 +172663,7 @@ }, { "question": "Dublin Fire Brigade", - "icon": "./assets/data/nsi/logos/dublinfirebrigade-ef8593.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dublinfirebrigade-ef8593.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172477,7 +172678,7 @@ }, { "question": "East Sussex Fire & Rescue Service", - "icon": "./assets/data/nsi/logos/eastsussexfireandrescueservice-ad6cf7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastsussexfireandrescueservice-ad6cf7.png", "osmTags": { "and": [ "amenity=fire_station", @@ -172492,7 +172693,7 @@ }, { "question": "Essex County Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/essexcountyfireandrescueservice-61f16b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essexcountyfireandrescueservice-61f16b.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172507,7 +172708,7 @@ }, { "question": "Fentress County Fire Department", - "icon": "./assets/data/nsi/logos/fentresscountyfiredepartment-9a6744.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fentresscountyfiredepartment-9a6744.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172600,7 +172801,7 @@ }, { "question": "Fire and Emergency New Zealand", - "icon": "./assets/data/nsi/logos/fireandemergencynewzealand-4a36f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fireandemergencynewzealand-4a36f8.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172615,7 +172816,7 @@ }, { "question": "Fire and Rescue NSW", - "icon": "./assets/data/nsi/logos/fireandrescuensw-da435c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fireandrescuensw-da435c.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172630,7 +172831,7 @@ }, { "question": "Fire Rescue Victoria", - "icon": "./assets/data/nsi/logos/firerescuevictoria-1faece.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firerescuevictoria-1faece.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172677,7 +172878,7 @@ }, { "question": "Gemeinde Gnarrenburg", - "icon": "./assets/data/nsi/logos/gemeindegnarrenburg-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindegnarrenburg-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -172692,7 +172893,7 @@ }, { "question": "Gemeinde Loxstedt", - "icon": "./assets/data/nsi/logos/gemeindeloxstedt-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindeloxstedt-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -172707,7 +172908,7 @@ }, { "question": "Gloucestershire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/gloucestershirefireandrescueservice-ab1fb5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gloucestershirefireandrescueservice-ab1fb5.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172722,7 +172923,7 @@ }, { "question": "Greater Manchester Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/greatermanchesterfireandrescueservice-9d4156.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatermanchesterfireandrescueservice-9d4156.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172737,7 +172938,7 @@ }, { "question": "Halifax Regional Fire and Emergency", - "icon": "./assets/data/nsi/logos/halifaxregionalfireandemergency-d13411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halifaxregionalfireandemergency-d13411.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172752,7 +172953,7 @@ }, { "question": "Hampshire & Isle of Wight Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/hampshireandisleofwightfireandrescueservice-6145a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hampshireandisleofwightfireandrescueservice-6145a7.png", "osmTags": { "and": [ "amenity=fire_station", @@ -172767,7 +172968,7 @@ }, { "question": "Hasičský a záchranný zbor", - "icon": "./assets/data/nsi/logos/hasicskyazachrannyzbor-e10424.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hasicskyazachrannyzbor-e10424.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172783,7 +172984,7 @@ }, { "question": "Hereford and Worcester Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/herefordandworcesterfireandrescueservice-794a68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/herefordandworcesterfireandrescueservice-794a68.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172798,7 +172999,7 @@ }, { "question": "Heroico Cuerpo de Bomberos de la Ciudad de México", - "icon": "./assets/data/nsi/logos/heroicocuerpodebomberosdelaciudaddemexico-c99019.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heroicocuerpodebomberosdelaciudaddemexico-c99019.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172813,7 +173014,7 @@ }, { "question": "Hertfordshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/hertfordshirefireandrescueservice-61f16b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hertfordshirefireandrescueservice-61f16b.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172828,7 +173029,7 @@ }, { "question": "Hillsboro Fire & Rescue", - "icon": "./assets/data/nsi/logos/hillsborofireandrescue-b9064d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hillsborofireandrescue-b9064d.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172843,7 +173044,7 @@ }, { "question": "Horry County", - "icon": "./assets/data/nsi/logos/horrycounty-104978.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/horrycounty-104978.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172858,7 +173059,7 @@ }, { "question": "Hulpverleningszone Centrum", - "icon": "./assets/data/nsi/logos/hulpverleningszonecentrum-17028f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonecentrum-17028f.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172873,7 +173074,7 @@ }, { "question": "Hulpverleningszone Fluvia", - "icon": "./assets/data/nsi/logos/hulpverleningszonefluvia-17028f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonefluvia-17028f.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172888,7 +173089,7 @@ }, { "question": "Hulpverleningszone Rand", - "icon": "./assets/data/nsi/logos/hulpverleningszonerand-17028f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonerand-17028f.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172903,7 +173104,7 @@ }, { "question": "Hulpverleningszone Taxandria", - "icon": "./assets/data/nsi/logos/hulpverleningszonetaxandria-17028f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonetaxandria-17028f.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172918,7 +173119,7 @@ }, { "question": "Hulpverleningszone Zone 1", - "icon": "./assets/data/nsi/logos/hulpverleningszonezone1-17028f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hulpverleningszonezone1-17028f.png", "osmTags": { "and": [ "amenity=fire_station", @@ -172933,7 +173134,7 @@ }, { "question": "Humberside Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/humbersidefireandrescueservice-6d4c94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/humbersidefireandrescueservice-6d4c94.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -172971,7 +173172,7 @@ }, { "question": "İstanbul İtfaiyesi", - "icon": "./assets/data/nsi/logos/istanbulitfaiyesi-65f4f7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/istanbulitfaiyesi-65f4f7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -172995,7 +173196,7 @@ }, { "question": "JCFD3", - "icon": "./assets/data/nsi/logos/jacksoncountyfiredistrict3-b9064d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksoncountyfiredistrict3-b9064d.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173011,7 +173212,7 @@ }, { "question": "Kansas City Fire Department", - "icon": "./assets/data/nsi/logos/kansascityfiredepartment-6af3e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kansascityfiredepartment-6af3e3.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173026,7 +173227,7 @@ }, { "question": "Kent Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/kentfireandrescueservice-ad6cf7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentfireandrescueservice-ad6cf7.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173041,7 +173242,7 @@ }, { "question": "Lafayette County Fire Department", - "icon": "./assets/data/nsi/logos/lafayettecountyfiredepartment-c14f55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayettecountyfiredepartment-c14f55.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173056,7 +173257,7 @@ }, { "question": "Lancashire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/lancashirefireandrescueservice-5355cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancashirefireandrescueservice-5355cf.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173071,7 +173272,7 @@ }, { "question": "Landeshauptstadt Hannover", - "icon": "./assets/data/nsi/logos/landeshauptstadthannover-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeshauptstadthannover-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -173086,7 +173287,7 @@ }, { "question": "Leicestershire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/leicestershirefireandrescueservice-18a147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leicestershirefireandrescueservice-18a147.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173110,7 +173311,7 @@ }, { "question": "Lincoln Fire & Rescue", - "icon": "./assets/data/nsi/logos/lincolnfireandrescue-9a1d02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnfireandrescue-9a1d02.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173125,7 +173326,7 @@ }, { "question": "Lincolnshire Fire and Rescue", - "icon": "./assets/data/nsi/logos/lincolnshirefireandrescue-18a147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnshirefireandrescue-18a147.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173140,7 +173341,7 @@ }, { "question": "London Fire Brigade", - "icon": "./assets/data/nsi/logos/londonfirebrigade-459fd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonfirebrigade-459fd1.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173155,7 +173356,7 @@ }, { "question": "Los Angeles County Fire Department", - "icon": "./assets/data/nsi/logos/losangelescountyfiredepartment-baa277.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelescountyfiredepartment-baa277.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173170,7 +173371,7 @@ }, { "question": "Los Angeles Fire Department", - "icon": "./assets/data/nsi/logos/losangelesfiredepartment-a95892.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesfiredepartment-a95892.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173194,7 +173395,7 @@ }, { "question": "Merseyside Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/merseysidefireandrescueservice-5355cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/merseysidefireandrescueservice-5355cf.png", "osmTags": { "and": [ "amenity=fire_station", @@ -173209,7 +173410,7 @@ }, { "question": "Mid and West Wales Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/midandwestwalesfireandrescueservice-6e80d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midandwestwalesfireandrescueservice-6e80d5.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173235,7 +173436,7 @@ }, { "question": "Milwaukee Fire Department", - "icon": "./assets/data/nsi/logos/milwaukeefiredepartment-37838a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milwaukeefiredepartment-37838a.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173264,7 +173465,7 @@ }, { "question": "Ministerstvo vnútra Slovenskej republiky", - "icon": "./assets/data/nsi/logos/ministerstvovnutraslovenskejrepubliky-e10424.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstvovnutraslovenskejrepubliky-e10424.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173303,7 +173504,7 @@ }, { "question": "Naperville Fire Department", - "icon": "./assets/data/nsi/logos/napervillefiredepartment-67e5e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/napervillefiredepartment-67e5e3.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173327,7 +173528,7 @@ }, { "question": "New York City Fire Department", - "icon": "./assets/data/nsi/logos/newyorkcityfiredepartment-bff363.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkcityfiredepartment-bff363.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173342,7 +173543,7 @@ }, { "question": "Norfolk Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/norfolkfireandrescueservice-61f16b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolkfireandrescueservice-61f16b.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173357,7 +173558,7 @@ }, { "question": "North Wales Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/northwalesfireandrescueservice-6e80d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwalesfireandrescueservice-6e80d5.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173374,7 +173575,7 @@ }, { "question": "North Yorkshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/northyorkshirefireandrescueservice-6d4c94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northyorkshirefireandrescueservice-6d4c94.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173389,7 +173590,7 @@ }, { "question": "Northamptonshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/northamptonshirefireandrescueservice-18a147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northamptonshirefireandrescueservice-18a147.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173404,7 +173605,7 @@ }, { "question": "Northern Ireland Fire & Rescue Service", - "icon": "./assets/data/nsi/logos/northernirelandfireandrescueservice-5d3b39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernirelandfireandrescueservice-5d3b39.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173419,7 +173620,7 @@ }, { "question": "Northumberland Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/northumberlandfireandrescueservice-c946be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northumberlandfireandrescueservice-c946be.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173434,7 +173635,7 @@ }, { "question": "Nottinghamshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/nottinghamshirefireandrescueservice-18a147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nottinghamshirefireandrescueservice-18a147.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173449,7 +173650,7 @@ }, { "question": "NSW Rural Fire Service", - "icon": "./assets/data/nsi/logos/nswruralfireservice-da435c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswruralfireservice-da435c.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173478,7 +173679,7 @@ }, { "question": "Orange County Fire Authority", - "icon": "./assets/data/nsi/logos/orangecountyfireauthority-cc9388.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orangecountyfireauthority-cc9388.png", "osmTags": { "and": [ "amenity=fire_station", @@ -173493,7 +173694,7 @@ }, { "question": "Orange County Fire Rescue", - "icon": "./assets/data/nsi/logos/orangecountyfirerescue-528b2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orangecountyfirerescue-528b2f.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173508,7 +173709,7 @@ }, { "question": "Orlando Fire Department", - "icon": "./assets/data/nsi/logos/orlandofiredepartment-528b2f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orlandofiredepartment-528b2f.png", "osmTags": { "and": [ "amenity=fire_station", @@ -173560,7 +173761,7 @@ }, { "question": "Päästeamet", - "icon": "./assets/data/nsi/logos/paasteamet-26aa01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paasteamet-26aa01.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173575,7 +173776,7 @@ }, { "question": "Państwowa Straż Pożarna", - "icon": "./assets/data/nsi/logos/panstwowastrazpozarna-a9e71c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/panstwowastrazpozarna-a9e71c.png", "osmTags": { "and": [ "amenity=fire_station", @@ -173590,7 +173791,7 @@ }, { "question": "Pasco County Fire Rescue", - "icon": "./assets/data/nsi/logos/pascocountyfirerescue-528b2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pascocountyfirerescue-528b2f.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173605,7 +173806,7 @@ }, { "question": "Policía de la Provincia de Misiones", - "icon": "./assets/data/nsi/logos/policiadelaprovinciademisiones-2eeaa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciademisiones-2eeaa2.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173620,7 +173821,7 @@ }, { "question": "Portland Fire & Rescue", - "icon": "./assets/data/nsi/logos/portlandfireandrescue-b9064d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandfireandrescue-b9064d.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173683,7 +173884,7 @@ }, { "question": "Royal Berkshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/royalberkshirefireandrescueservice-6145a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/royalberkshirefireandrescueservice-6145a7.png", "osmTags": { "and": [ "amenity=fire_station", @@ -173923,7 +174124,7 @@ }, { "question": "Sacramento Metropolitan Fire District", - "icon": "./assets/data/nsi/logos/sacramentometropolitanfiredistrict-8a59ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacramentometropolitanfiredistrict-8a59ad.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173938,7 +174139,7 @@ }, { "question": "Saint Paul Fire Department", - "icon": "./assets/data/nsi/logos/saintpaulfiredepartment-6b79bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintpaulfiredepartment-6b79bb.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173953,7 +174154,7 @@ }, { "question": "Salten Brann IKS", - "icon": "./assets/data/nsi/logos/saltenbranniks-ac32fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saltenbranniks-ac32fd.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -173968,7 +174169,7 @@ }, { "question": "Samtgemeinde Geestequelle", - "icon": "./assets/data/nsi/logos/samtgemeindegeestequelle-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/samtgemeindegeestequelle-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -173983,7 +174184,7 @@ }, { "question": "Samtgemeinde Grafschaft Hoya", - "icon": "./assets/data/nsi/logos/samtgemeindegrafschafthoya-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/samtgemeindegrafschafthoya-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -173998,7 +174199,7 @@ }, { "question": "Samtgemeinde Selsingen", - "icon": "./assets/data/nsi/logos/samtgemeindeselsingen-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/samtgemeindeselsingen-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -174013,7 +174214,7 @@ }, { "question": "Samtgemeinde Tostedt", - "icon": "./assets/data/nsi/logos/samtgemeindetostedt-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/samtgemeindetostedt-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -174028,7 +174229,7 @@ }, { "question": "Samtgemeinde Uchte", - "icon": "./assets/data/nsi/logos/samtgemeindeuchte-204ac7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/samtgemeindeuchte-204ac7.png", "osmTags": { "and": [ "amenity=fire_station", @@ -174043,7 +174244,7 @@ }, { "question": "San Antonio Fire Department", - "icon": "./assets/data/nsi/logos/sanantoniofiredepartment-3bf6a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanantoniofiredepartment-3bf6a6.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174058,7 +174259,7 @@ }, { "question": "San Bernardino County Fire Protection District", - "icon": "./assets/data/nsi/logos/sanbernardinocountyfireprotectiondistrict-8a59ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanbernardinocountyfireprotectiondistrict-8a59ad.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174074,7 +174275,7 @@ }, { "question": "San Francisco Fire Department", - "icon": "./assets/data/nsi/logos/sanfranciscofiredepartment-e783e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanfranciscofiredepartment-e783e7.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174089,7 +174290,7 @@ }, { "question": "San Jose Fire Department", - "icon": "./assets/data/nsi/logos/sanjosefiredepartment-f2f943.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanjosefiredepartment-f2f943.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174119,7 +174320,7 @@ }, { "question": "Santa Clara County Fire Department", - "icon": "./assets/data/nsi/logos/santaclaracountyfiredepartment-461f66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santaclaracountyfiredepartment-461f66.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174134,7 +174335,7 @@ }, { "question": "Scottish Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/scottishfireandrescueservice-12e6fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishfireandrescueservice-12e6fd.png", "osmTags": { "and": [ "amenity=fire_station", @@ -174247,7 +174448,7 @@ }, { "question": "SDIS 08", - "icon": "./assets/data/nsi/logos/sdis08-345308.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis08-345308.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174542,7 +174743,7 @@ }, { "question": "SDIS 30", - "icon": "./assets/data/nsi/logos/sdis30-713fa8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis30-713fa8.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174655,7 +174856,7 @@ }, { "question": "SDIS 38", - "icon": "./assets/data/nsi/logos/sdis38-3ba645.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis38-3ba645.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174810,7 +175011,7 @@ }, { "question": "SDIS 49", - "icon": "./assets/data/nsi/logos/sdis49-610da5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis49-610da5.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174839,7 +175040,7 @@ }, { "question": "SDIS 51", - "icon": "./assets/data/nsi/logos/sdis51-345308.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis51-345308.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174854,7 +175055,7 @@ }, { "question": "SDIS 52", - "icon": "./assets/data/nsi/logos/sdis52-345308.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis52-345308.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174883,7 +175084,7 @@ }, { "question": "SDIS 54", - "icon": "./assets/data/nsi/logos/sdis54-345308.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis54-345308.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -174926,7 +175127,7 @@ }, { "question": "SDIS 57", - "icon": "./assets/data/nsi/logos/sdis57-345308.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis57-345308.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175067,7 +175268,7 @@ }, { "question": "SDIS 67", - "icon": "./assets/data/nsi/logos/sdis67-345308.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis67-345308.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175082,7 +175283,7 @@ }, { "question": "SDIS 68", - "icon": "./assets/data/nsi/logos/sdis68-345308.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis68-345308.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175293,7 +175494,7 @@ }, { "question": "SDIS 86", - "icon": "./assets/data/nsi/logos/sdis86-a24b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sdis86-a24b9d.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175429,7 +175630,7 @@ }, { "question": "Shropshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/shropshirefireandrescueservice-794a68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shropshirefireandrescueservice-794a68.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175481,7 +175682,7 @@ }, { "question": "South Australian Country Fire Service", - "icon": "./assets/data/nsi/logos/southaustraliancountryfireservice-f58103.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southaustraliancountryfireservice-f58103.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175510,7 +175711,7 @@ }, { "question": "South Metro Fire Rescue", - "icon": "./assets/data/nsi/logos/southmetrofirerescue-631c9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southmetrofirerescue-631c9b.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175526,7 +175727,7 @@ }, { "question": "South Wales Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/southwalesfireandrescueservice-6e80d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwalesfireandrescueservice-6e80d5.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175543,7 +175744,7 @@ }, { "question": "South Yorkshire Fire & Rescue", - "icon": "./assets/data/nsi/logos/southyorkshirefireandrescue-6d4c94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southyorkshirefireandrescue-6d4c94.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175586,7 +175787,7 @@ }, { "question": "Springfield Fire Department (Missouri)", - "icon": "./assets/data/nsi/logos/springfieldfiredepartment-66adb9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldfiredepartment-66adb9.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175615,7 +175816,7 @@ }, { "question": "Stadt Bremervörde", - "icon": "./assets/data/nsi/logos/stadtbremervorde-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbremervorde-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -175630,7 +175831,7 @@ }, { "question": "Stadt Goslar", - "icon": "./assets/data/nsi/logos/stadtgoslar-204ac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgoslar-204ac7.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -175645,7 +175846,7 @@ }, { "question": "Stadt Homberg (Ohm)", - "icon": "./assets/data/nsi/logos/stadthombergohm-8eb808.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadthombergohm-8eb808.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -175660,7 +175861,7 @@ }, { "question": "Stadt Horb", - "icon": "./assets/data/nsi/logos/stadthorb-3f63b8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadthorb-3f63b8.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -175675,7 +175876,7 @@ }, { "question": "Stadt Höxter", - "icon": "./assets/data/nsi/logos/stadthoxter-630125.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadthoxter-630125.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -175690,7 +175891,7 @@ }, { "question": "Stadt Jena", - "icon": "./assets/data/nsi/logos/stadtjena-e7e7a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtjena-e7e7a1.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175705,7 +175906,7 @@ }, { "question": "Stadt Langelsheim", - "icon": "./assets/data/nsi/logos/stadtlangelsheim-204ac7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtlangelsheim-204ac7.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175720,7 +175921,7 @@ }, { "question": "Stadt Oberzent", - "icon": "./assets/data/nsi/logos/stadtoberzent-8eb808.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtoberzent-8eb808.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -175735,7 +175936,7 @@ }, { "question": "Stadt Seelze", - "icon": "./assets/data/nsi/logos/stadtseelze-204ac7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtseelze-204ac7.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175764,7 +175965,7 @@ }, { "question": "Stadt Uebigau-Wahrenbrück", - "icon": "./assets/data/nsi/logos/stadtuebigauwahrenbruck-c95b65.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtuebigauwahrenbruck-c95b65.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175779,7 +175980,7 @@ }, { "question": "Stadt Uslar", - "icon": "./assets/data/nsi/logos/stadtuslar-204ac7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtuslar-204ac7.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175831,7 +176032,7 @@ }, { "question": "Suffolk Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/suffolkfireandrescueservice-61f16b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/suffolkfireandrescueservice-61f16b.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175846,7 +176047,7 @@ }, { "question": "Surrey Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/surreyfireandrescueservice-ad6cf7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surreyfireandrescueservice-ad6cf7.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175861,7 +176062,7 @@ }, { "question": "Tacoma Fire Department", - "icon": "./assets/data/nsi/logos/tacomafiredepartment-c0ee6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tacomafiredepartment-c0ee6d.png", "osmTags": { "and": [ "amenity=fire_station", @@ -175876,7 +176077,7 @@ }, { "question": "Tasmanian Fire Service", - "icon": "./assets/data/nsi/logos/tasmanianfireservice-6b676e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tasmanianfireservice-6b676e.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175900,7 +176101,7 @@ }, { "question": "Tualatin Valley Fire & Rescue", - "icon": "./assets/data/nsi/logos/tualatinvalleyfireandrescue-b9064d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tualatinvalleyfireandrescue-b9064d.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175930,7 +176131,7 @@ }, { "question": "Tyne and Wear Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/tyneandwearfireandrescueservice-c946be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tyneandwearfireandrescueservice-c946be.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175945,7 +176146,7 @@ }, { "question": "Unified Fire Authority", - "icon": "./assets/data/nsi/logos/unifiedfireauthority-7e1920.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unifiedfireauthority-7e1920.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175960,7 +176161,7 @@ }, { "question": "United States Forest Service", - "icon": "./assets/data/nsi/logos/unitedstatesforestservice-92f26a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesforestservice-92f26a.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -175976,7 +176177,7 @@ }, { "question": "Valencia County Fire Department", - "icon": "./assets/data/nsi/logos/valenciacountyfiredepartment-ee0f4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valenciacountyfiredepartment-ee0f4a.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -176006,7 +176207,7 @@ }, { "question": "Vancouver Fire Department (Washington)", - "icon": "./assets/data/nsi/logos/vancouverfiredepartment-c0ee6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vancouverfiredepartment-c0ee6d.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -176063,7 +176264,7 @@ }, { "question": "Veiligheidsregio Gelderland-Zuid", - "icon": "./assets/data/nsi/logos/veiligheidsregiogelderlandzuid-0004ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veiligheidsregiogelderlandzuid-0004ee.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -176106,7 +176307,7 @@ }, { "question": "Verbandsgemeinde Aar-Einrich", - "icon": "./assets/data/nsi/logos/verbandsgemeindeaareinrich-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeaareinrich-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176121,7 +176322,7 @@ }, { "question": "Verbandsgemeinde Adenau", - "icon": "./assets/data/nsi/logos/verbandsgemeindeadenau-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeadenau-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176136,7 +176337,7 @@ }, { "question": "Verbandsgemeinde Altenahr", - "icon": "./assets/data/nsi/logos/verbandsgemeindealtenahr-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindealtenahr-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176151,7 +176352,7 @@ }, { "question": "Verbandsgemeinde Arzfeld", - "icon": "./assets/data/nsi/logos/verbandsgemeindearzfeld-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindearzfeld-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176166,7 +176367,7 @@ }, { "question": "Verbandsgemeinde Bad Ems-Nassau", - "icon": "./assets/data/nsi/logos/verbandsgemeindebademsnassau-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebademsnassau-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176181,7 +176382,7 @@ }, { "question": "Verbandsgemeinde Bernkastel-Kues", - "icon": "./assets/data/nsi/logos/verbandsgemeindebernkastelkues-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebernkastelkues-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176196,7 +176397,7 @@ }, { "question": "Verbandsgemeinde Birkenfeld", - "icon": "./assets/data/nsi/logos/verbandsgemeindebirkenfeld-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebirkenfeld-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176211,7 +176412,7 @@ }, { "question": "Verbandsgemeinde Bitburger Land", - "icon": "./assets/data/nsi/logos/verbandsgemeindebitburgerland-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebitburgerland-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176226,7 +176427,7 @@ }, { "question": "Verbandsgemeinde Brohltal", - "icon": "./assets/data/nsi/logos/verbandsgemeindebrohltal-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindebrohltal-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176241,7 +176442,7 @@ }, { "question": "Verbandsgemeinde Cochem", - "icon": "./assets/data/nsi/logos/verbandsgemeindecochem-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindecochem-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176256,7 +176457,7 @@ }, { "question": "Verbandsgemeinde Daun", - "icon": "./assets/data/nsi/logos/verbandsgemeindedaun-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindedaun-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176299,7 +176500,7 @@ }, { "question": "Verbandsgemeinde Kelberg", - "icon": "./assets/data/nsi/logos/verbandsgemeindekelberg-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindekelberg-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176328,7 +176529,7 @@ }, { "question": "Verbandsgemeinde Konz", - "icon": "./assets/data/nsi/logos/verbandsgemeindekonz-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindekonz-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176343,7 +176544,7 @@ }, { "question": "Verbandsgemeinde Kusel-Altenglan", - "icon": "./assets/data/nsi/logos/verbandsgemeindekuselaltenglan-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindekuselaltenglan-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176358,7 +176559,7 @@ }, { "question": "Verbandsgemeinde Landstuhl", - "icon": "./assets/data/nsi/logos/verbandsgemeindelandstuhl-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindelandstuhl-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176373,7 +176574,7 @@ }, { "question": "Verbandsgemeinde Langenlonsheim-Stromberg", - "icon": "./assets/data/nsi/logos/verbandsgemeindelangenlonsheimstromberg-83d42d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindelangenlonsheimstromberg-83d42d.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -176388,7 +176589,7 @@ }, { "question": "Verbandsgemeinde Maifeld", - "icon": "./assets/data/nsi/logos/verbandsgemeindemaifeld-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindemaifeld-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176431,7 +176632,7 @@ }, { "question": "Verbandsgemeinde Prüm", - "icon": "./assets/data/nsi/logos/verbandsgemeindeprum-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeprum-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176446,7 +176647,7 @@ }, { "question": "Verbandsgemeinde Rengsdorf-Waldbreitbach", - "icon": "./assets/data/nsi/logos/verbandsgemeinderengsdorfwaldbreitbach-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeinderengsdorfwaldbreitbach-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176475,7 +176676,7 @@ }, { "question": "Verbandsgemeinde Rhein-Selz", - "icon": "./assets/data/nsi/logos/verbandsgemeinderheinselz-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeinderheinselz-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176490,7 +176691,7 @@ }, { "question": "Verbandsgemeinde Rüdesheim", - "icon": "./assets/data/nsi/logos/verbandsgemeinderudesheim-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeinderudesheim-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176505,7 +176706,7 @@ }, { "question": "Verbandsgemeinde Ruwer", - "icon": "./assets/data/nsi/logos/verbandsgemeinderuwer-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeinderuwer-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176520,7 +176721,7 @@ }, { "question": "Verbandsgemeinde Saarburg-Kell", - "icon": "./assets/data/nsi/logos/verbandsgemeindesaarburgkell-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindesaarburgkell-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176535,7 +176736,7 @@ }, { "question": "Verbandsgemeinde Schweich", - "icon": "./assets/data/nsi/logos/verbandsgemeindeschweich-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeschweich-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176550,7 +176751,7 @@ }, { "question": "Verbandsgemeinde Simmern-Rheinböllen", - "icon": "./assets/data/nsi/logos/verbandsgemeindesimmernrheinbollen-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindesimmernrheinbollen-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176565,7 +176766,7 @@ }, { "question": "Verbandsgemeinde Südeifel", - "icon": "./assets/data/nsi/logos/verbandsgemeindesudeifel-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindesudeifel-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176580,7 +176781,7 @@ }, { "question": "Verbandsgemeinde Thalfang am Erbeskopf", - "icon": "./assets/data/nsi/logos/verbandsgemeindethalfangamerbeskopf-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindethalfangamerbeskopf-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176595,7 +176796,7 @@ }, { "question": "Verbandsgemeinde Traben-Trarbach", - "icon": "./assets/data/nsi/logos/verbandsgemeindetrabentrarbach-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindetrabentrarbach-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176610,7 +176811,7 @@ }, { "question": "Verbandsgemeinde Trier-Land", - "icon": "./assets/data/nsi/logos/verbandsgemeindetrierland-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindetrierland-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176625,7 +176826,7 @@ }, { "question": "Verbandsgemeinde Vordereifel", - "icon": "./assets/data/nsi/logos/verbandsgemeindevordereifel-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindevordereifel-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176640,7 +176841,7 @@ }, { "question": "Verbandsgemeinde Wittlich-Land", - "icon": "./assets/data/nsi/logos/verbandsgemeindewittlichland-83d42d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindewittlichland-83d42d.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176687,7 +176888,7 @@ }, { "question": "Ville de Montréal", - "icon": "./assets/data/nsi/logos/villedemontreal-841560.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedemontreal-841560.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -176717,7 +176918,7 @@ }, { "question": "Warwickshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/warwickshirefireandrescueservice-794a68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/warwickshirefireandrescueservice-794a68.png", "osmTags": { "and": [ "amenity=fire_station", @@ -176741,7 +176942,7 @@ }, { "question": "West Midlands Fire Service", - "icon": "./assets/data/nsi/logos/westmidlandsfireservice-794a68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westmidlandsfireservice-794a68.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -176756,7 +176957,7 @@ }, { "question": "West Sussex Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/westsussexfireandrescueservice-ad6cf7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westsussexfireandrescueservice-ad6cf7.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -176771,7 +176972,7 @@ }, { "question": "West Yorkshire Fire and Rescue Service", - "icon": "./assets/data/nsi/logos/westyorkshirefireandrescueservice-6d4c94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westyorkshirefireandrescueservice-6d4c94.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -176795,7 +176996,7 @@ }, { "question": "Zone de Secours Luxembourg", - "icon": "./assets/data/nsi/logos/zonedesecoursluxembourg-17028f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zonedesecoursluxembourg-17028f.png", "osmTags": { "and": [ "amenity=fire_station", @@ -177046,7 +177247,7 @@ }, { "question": "中国森林消防", - "icon": "./assets/data/nsi/logos/c615bb-1157b6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/c615bb-1157b6.svg", "osmTags": { "and": [ "amenity=fire_station", @@ -177155,7 +177356,7 @@ }, { "question": "東京消防庁第八消防方面本部", - "icon": "./assets/data/nsi/logos/tokyofiredepartment-be27ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tokyofiredepartment-be27ba.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -177186,7 +177387,7 @@ }, { "question": "澳門消防局 Corpo de Bombeiros de Macau", - "icon": "./assets/data/nsi/logos/macaofireservicesbureau-2187d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macaofireservicesbureau-2187d2.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -177220,7 +177421,7 @@ }, { "question": "香港消防處 Hong Kong Fire Services Department", - "icon": "./assets/data/nsi/logos/hongkongfireservicesdepartment-ac17f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongfireservicesdepartment-ac17f0.jpg", "osmTags": { "and": [ "amenity=fire_station", @@ -177254,7 +177455,7 @@ }, { "question": "Acıbadem", - "icon": "./assets/data/nsi/logos/acibadem-007b1e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/acibadem-007b1e.svg", "osmTags": { "and": [ "amenity=hospital", @@ -177287,7 +177488,7 @@ }, { "question": "AdventHealth", - "icon": "./assets/data/nsi/logos/adventhealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adventhealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177304,7 +177505,7 @@ }, { "question": "Adventist Health", - "icon": "./assets/data/nsi/logos/adventisthealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adventisthealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177321,7 +177522,7 @@ }, { "question": "Advocate Health Care", - "icon": "./assets/data/nsi/logos/advocatehealthcare-929fa5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/advocatehealthcare-929fa5.png", "osmTags": { "and": [ "amenity=hospital", @@ -177338,7 +177539,7 @@ }, { "question": "Agaplesion", - "icon": "./assets/data/nsi/logos/agaplesion-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agaplesion-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177355,7 +177556,7 @@ }, { "question": "Alberta Health Services", - "icon": "./assets/data/nsi/logos/albertahealthservices-1b0aca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albertahealthservices-1b0aca.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177373,7 +177574,7 @@ }, { "question": "Alexianer GmbH", - "icon": "./assets/data/nsi/logos/alexianergmbh-8bb61e.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/alexianergmbh-8bb61e.gif", "osmTags": { "and": [ "amenity=hospital", @@ -177390,7 +177591,7 @@ }, { "question": "Allina Health", - "icon": "./assets/data/nsi/logos/allinahealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allinahealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177407,7 +177608,7 @@ }, { "question": "Ameos", - "icon": "./assets/data/nsi/logos/ameos-98b222.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameos-98b222.png", "osmTags": { "and": [ "amenity=hospital", @@ -177424,7 +177625,7 @@ }, { "question": "Apollo Hospitals", - "icon": "./assets/data/nsi/logos/apollohospitals-585fc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apollohospitals-585fc8.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177442,7 +177643,7 @@ }, { "question": "Ascension", - "icon": "./assets/data/nsi/logos/ascension-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ascension-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -177459,7 +177660,7 @@ }, { "question": "Asklepios Kliniken", - "icon": "./assets/data/nsi/logos/asklepioskliniken-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asklepioskliniken-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177492,7 +177693,7 @@ }, { "question": "Aspirus", - "icon": "./assets/data/nsi/logos/aspirus-1d4590.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aspirus-1d4590.png", "osmTags": { "and": [ "amenity=hospital", @@ -177525,7 +177726,7 @@ }, { "question": "Assistance publique - Hôpitaux de Paris", - "icon": "./assets/data/nsi/logos/assistancepubliquehopitauxdeparis-73646a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/assistancepubliquehopitauxdeparis-73646a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177543,7 +177744,7 @@ }, { "question": "ATOS Kliniken", - "icon": "./assets/data/nsi/logos/atoskliniken-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atoskliniken-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177561,7 +177762,7 @@ }, { "question": "Atrium Health", - "icon": "./assets/data/nsi/logos/atriumhealth-991ea9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atriumhealth-991ea9.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177578,7 +177779,7 @@ }, { "question": "Aurora Health Care", - "icon": "./assets/data/nsi/logos/aurorahealthcare-a89708.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aurorahealthcare-a89708.png", "osmTags": { "and": [ "amenity=hospital", @@ -177595,7 +177796,7 @@ }, { "question": "Avera Health", - "icon": "./assets/data/nsi/logos/averahealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/averahealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177612,7 +177813,7 @@ }, { "question": "Avon and Wiltshire Mental Health Partnership NHS Trust", - "icon": "./assets/data/nsi/logos/avonandwiltshirementalhealthpartnershipnhstrust-ad589e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avonandwiltshirementalhealthpartnershipnhstrust-ad589e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177629,7 +177830,7 @@ }, { "question": "Ballad Health", - "icon": "./assets/data/nsi/logos/balladhealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/balladhealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177646,7 +177847,7 @@ }, { "question": "Banner Health", - "icon": "./assets/data/nsi/logos/bannerhealth-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bannerhealth-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -177678,7 +177879,7 @@ }, { "question": "Baptist Health (Florida)", - "icon": "./assets/data/nsi/logos/baptisthealth-b94cef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baptisthealth-b94cef.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177711,7 +177912,7 @@ }, { "question": "Baylor Scott & White Health", - "icon": "./assets/data/nsi/logos/baylorscottandwhitehealth-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baylorscottandwhitehealth-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -177728,7 +177929,7 @@ }, { "question": "BBT-Gruppe", - "icon": "./assets/data/nsi/logos/bbtgruppe-8bb61e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bbtgruppe-8bb61e.png", "osmTags": { "and": [ "amenity=hospital", @@ -177745,7 +177946,7 @@ }, { "question": "Beth Israel Lahey Health", - "icon": "./assets/data/nsi/logos/bethisraellaheyhealth-73dad1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bethisraellaheyhealth-73dad1.svg", "osmTags": { "and": [ "amenity=hospital", @@ -177762,7 +177963,7 @@ }, { "question": "BG Kliniken", - "icon": "./assets/data/nsi/logos/bgkliniken-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bgkliniken-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177827,7 +178028,7 @@ }, { "question": "Capio", - "icon": "./assets/data/nsi/logos/capio-ee5a4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capio-ee5a4b.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177844,7 +178045,7 @@ }, { "question": "CCSS", - "icon": "./assets/data/nsi/logos/ccss-4f92b3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ccss-4f92b3.png", "osmTags": { "and": [ "amenity=hospital", @@ -177861,7 +178062,7 @@ }, { "question": "Celenus Kliniken", - "icon": "./assets/data/nsi/logos/celenuskliniken-8bb61e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/celenuskliniken-8bb61e.svg", "osmTags": { "and": [ "amenity=hospital", @@ -177911,7 +178112,7 @@ }, { "question": "ChristianaCare", - "icon": "./assets/data/nsi/logos/christianacare-888e5a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/christianacare-888e5a.svg", "osmTags": { "and": [ "amenity=hospital", @@ -177928,7 +178129,7 @@ }, { "question": "CHRISTUS Health", - "icon": "./assets/data/nsi/logos/christushealth-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/christushealth-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -177945,7 +178146,7 @@ }, { "question": "Cleveland Clinic", - "icon": "./assets/data/nsi/logos/clevelandclinic-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandclinic-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -177962,7 +178163,7 @@ }, { "question": "Columbia Asia Hospital", - "icon": "./assets/data/nsi/logos/columbiaasia-fcf381.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/columbiaasia-fcf381.svg", "osmTags": { "and": [ "amenity=hospital", @@ -177980,7 +178181,7 @@ }, { "question": "Comunidad de Madrid", - "icon": "./assets/data/nsi/logos/comunidaddemadrid-2f367e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-2f367e.svg", "osmTags": { "and": [ "amenity=hospital", @@ -177997,7 +178198,7 @@ }, { "question": "Cornwall Partnership NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/cornwallpartnershipnhsfoundationtrust-6508f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornwallpartnershipnhsfoundationtrust-6508f7.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178014,7 +178215,7 @@ }, { "question": "Covenant Health (Alberta)", - "icon": "./assets/data/nsi/logos/covenanthealth-1b0aca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/covenanthealth-1b0aca.png", "osmTags": { "and": [ "amenity=hospital", @@ -178031,7 +178232,7 @@ }, { "question": "Covenant Health (Tennessee)", - "icon": "./assets/data/nsi/logos/covenanthealth-1c8a55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/covenanthealth-1c8a55.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178048,7 +178249,7 @@ }, { "question": "Covenant Health (Texas)", - "icon": "./assets/data/nsi/logos/covenanthealth-94a05e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/covenanthealth-94a05e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178065,7 +178266,7 @@ }, { "question": "Cruz Roja", - "icon": "./assets/data/nsi/logos/cruzroja-16e9ec.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cruzroja-16e9ec.svg", "osmTags": { "and": [ "amenity=hospital", @@ -178083,7 +178284,7 @@ }, { "question": "Department of Health (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofhealth-d0fa1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofhealth-d0fa1f.svg", "osmTags": { "and": [ "amenity=hospital", @@ -178103,7 +178304,7 @@ }, { "question": "Department of Health (Tasmania)", - "icon": "./assets/data/nsi/logos/departmentofhealth-a65a5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofhealth-a65a5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178182,7 +178383,7 @@ }, { "question": "Devon Partnership NHS Trust", - "icon": "./assets/data/nsi/logos/devonpartnershipnhstrust-cd1ad5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devonpartnershipnhstrust-cd1ad5.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178199,7 +178400,7 @@ }, { "question": "Dignity Health", - "icon": "./assets/data/nsi/logos/dignityhealth-a0d953.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dignityhealth-a0d953.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178216,7 +178417,7 @@ }, { "question": "Dorset HealthCare University NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/dorsethealthcareuniversitynhsfoundationtrust-65a858.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorsethealthcareuniversitynhsfoundationtrust-65a858.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178249,7 +178450,7 @@ }, { "question": "Dr. Becker Klinikgruppe", - "icon": "./assets/data/nsi/logos/drbeckerklinikgruppe-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drbeckerklinikgruppe-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178266,7 +178467,7 @@ }, { "question": "Eastern Cape Department of Health", - "icon": "./assets/data/nsi/logos/easterncapedepartmentofhealth-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easterncapedepartmentofhealth-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178298,7 +178499,7 @@ }, { "question": "Elsan", - "icon": "./assets/data/nsi/logos/elsan-73646a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elsan-73646a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178315,7 +178516,7 @@ }, { "question": "Employees' State Insurance (India)", - "icon": "./assets/data/nsi/logos/employeesstateinsurance-585fc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/employeesstateinsurance-585fc8.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178334,7 +178535,7 @@ }, { "question": "Encompass Health", - "icon": "./assets/data/nsi/logos/encompasshealth-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/encompasshealth-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -178351,7 +178552,7 @@ }, { "question": "Essentia Health", - "icon": "./assets/data/nsi/logos/essentiahealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentiahealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178368,7 +178569,7 @@ }, { "question": "Federal Ministry of Health (Nigeria)", - "icon": "./assets/data/nsi/logos/federalministryofhealth-f23e0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/federalministryofhealth-f23e0b.png", "osmTags": { "and": [ "amenity=hospital", @@ -178385,7 +178586,7 @@ }, { "question": "Fortis Healthcare", - "icon": "./assets/data/nsi/logos/fortishealthcare-585fc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortishealthcare-585fc8.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178403,7 +178604,7 @@ }, { "question": "Franciscan Health", - "icon": "./assets/data/nsi/logos/franciscanhealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/franciscanhealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178420,7 +178621,7 @@ }, { "question": "Fraser Health Authority", - "icon": "./assets/data/nsi/logos/fraserhealthauthority-bebe85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fraserhealthauthority-bebe85.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178437,7 +178638,7 @@ }, { "question": "Free State Department of Health", - "icon": "./assets/data/nsi/logos/freestatedepartmentofhealth-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freestatedepartmentofhealth-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178454,7 +178655,7 @@ }, { "question": "Gauteng Department of Health", - "icon": "./assets/data/nsi/logos/gautengdepartmentofhealth-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gautengdepartmentofhealth-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178471,7 +178672,7 @@ }, { "question": "Generalitat Valenciana", - "icon": "./assets/data/nsi/logos/generalitatvalenciana-34fe48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-34fe48.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178488,7 +178689,7 @@ }, { "question": "Gesundheitszentren Rhein-Neckar", - "icon": "./assets/data/nsi/logos/gesundheitszentrenrheinneckar-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gesundheitszentrenrheinneckar-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178506,7 +178707,7 @@ }, { "question": "Gobierno de la Ciudad de Buenos Aires", - "icon": "./assets/data/nsi/logos/gobiernodelaciudaddebuenosaires-e6d349.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gobiernodelaciudaddebuenosaires-e6d349.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178539,7 +178740,7 @@ }, { "question": "Government of Kerala", - "icon": "./assets/data/nsi/logos/governmentofkerala-585fc8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentofkerala-585fc8.svg", "osmTags": { "and": [ "amenity=hospital", @@ -178556,7 +178757,7 @@ }, { "question": "Great Ormond Street Hospital for Children NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/greatormondstreethospitalforchildrennhsfoundationtrust-129d8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatormondstreethospitalforchildrennhsfoundationtrust-129d8c.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178573,7 +178774,7 @@ }, { "question": "Greater Manchester Mental Health NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/greatermanchestermentalhealthnhsfoundationtrust-947faa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatermanchestermentalhealthnhsfoundationtrust-947faa.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178590,7 +178791,7 @@ }, { "question": "HCA", - "icon": "./assets/data/nsi/logos/hca-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hca-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -178607,7 +178808,7 @@ }, { "question": "Health Service Executive", - "icon": "./assets/data/nsi/logos/healthserviceexecutive-467fad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/healthserviceexecutive-467fad.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178641,7 +178842,7 @@ }, { "question": "Helios Kliniken", - "icon": "./assets/data/nsi/logos/helioskliniken-8bb61e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/helioskliniken-8bb61e.svg", "osmTags": { "and": [ "amenity=hospital", @@ -178658,7 +178859,7 @@ }, { "question": "Hoag", - "icon": "./assets/data/nsi/logos/hoag-537093.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoag-537093.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178692,7 +178893,7 @@ }, { "question": "Hospital Sisters Health System", - "icon": "./assets/data/nsi/logos/hospitalsistershealthsystem-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hospitalsistershealthsystem-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -178710,7 +178911,7 @@ }, { "question": "Imperial College Healthcare NHS Trust", - "icon": "./assets/data/nsi/logos/imperialcollegehealthcarenhstrust-f81042.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialcollegehealthcarenhstrust-f81042.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178727,7 +178928,7 @@ }, { "question": "Indian Health Service", - "icon": "./assets/data/nsi/logos/indianhealthservice-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianhealthservice-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -178745,7 +178946,7 @@ }, { "question": "Indiana University Health", - "icon": "./assets/data/nsi/logos/indianauniversityhealth-8108c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianauniversityhealth-8108c1.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178762,7 +178963,7 @@ }, { "question": "Inova Health System", - "icon": "./assets/data/nsi/logos/inovahealthsystem-37da20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inovahealthsystem-37da20.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178779,7 +178980,7 @@ }, { "question": "Instituto de Seguridad y Servicios Sociales de los Trabajadores del Estado", - "icon": "./assets/data/nsi/logos/institutodeseguridadyserviciossocialesdelostrabajadoresdelestado-5e0bc0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutodeseguridadyserviciossocialesdelostrabajadoresdelestado-5e0bc0.svg", "osmTags": { "and": [ "amenity=hospital", @@ -178797,7 +178998,7 @@ }, { "question": "Instituto Ecuatoriano de Seguridad Social", - "icon": "./assets/data/nsi/logos/institutoecuatorianodeseguridadsocial-92bc1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutoecuatorianodeseguridadsocial-92bc1d.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178832,7 +179033,7 @@ }, { "question": "Instituto Mexicano del Seguro Social", - "icon": "./assets/data/nsi/logos/institutomexicanodelsegurosocial-5e0bc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutomexicanodelsegurosocial-5e0bc0.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178850,7 +179051,7 @@ }, { "question": "Instituto Venezolano de los Seguros Sociales", - "icon": "./assets/data/nsi/logos/institutovenezolanodelossegurossociales-0e934a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutovenezolanodelossegurossociales-0e934a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178868,7 +179069,7 @@ }, { "question": "Intermountain Healthcare", - "icon": "./assets/data/nsi/logos/intermountainhealthcare-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermountainhealthcare-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178885,7 +179086,7 @@ }, { "question": "Johannesbad", - "icon": "./assets/data/nsi/logos/johannesbad-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johannesbad-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178902,7 +179103,7 @@ }, { "question": "Johanniter GmbH", - "icon": "./assets/data/nsi/logos/johannitergmbh-8bb61e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johannitergmbh-8bb61e.png", "osmTags": { "and": [ "amenity=hospital", @@ -178919,7 +179120,7 @@ }, { "question": "Kaiser Permanente", - "icon": "./assets/data/nsi/logos/kaiserpermanente-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kaiserpermanente-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178937,7 +179138,7 @@ }, { "question": "Kementerian Kesihatan Malaysia", - "icon": "./assets/data/nsi/logos/kementeriankesihatanmalaysia-a918ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kementeriankesihatanmalaysia-a918ec.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178971,7 +179172,7 @@ }, { "question": "Kindred Healthcare", - "icon": "./assets/data/nsi/logos/kindredhealthcare-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kindredhealthcare-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -178988,7 +179189,7 @@ }, { "question": "KMG Kliniken", - "icon": "./assets/data/nsi/logos/kmgkliniken-8bb61e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kmgkliniken-8bb61e.png", "osmTags": { "and": [ "amenity=hospital", @@ -179005,7 +179206,7 @@ }, { "question": "KwaZulu-Natal Department of Health", - "icon": "./assets/data/nsi/logos/kwazulunataldepartmentofhealth-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwazulunataldepartmentofhealth-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179022,7 +179223,7 @@ }, { "question": "Legacy Medical Group", - "icon": "./assets/data/nsi/logos/legacyhealth-6cad9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/legacyhealth-6cad9c.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179039,7 +179240,7 @@ }, { "question": "Lenmed", - "icon": "./assets/data/nsi/logos/lenmed-56725c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lenmed-56725c.png", "osmTags": { "and": [ "amenity=hospital", @@ -179056,7 +179257,7 @@ }, { "question": "Life Healthcare", - "icon": "./assets/data/nsi/logos/lifehealthcare-650276.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lifehealthcare-650276.png", "osmTags": { "and": [ "amenity=hospital", @@ -179073,7 +179274,7 @@ }, { "question": "Limpopo Department of Health", - "icon": "./assets/data/nsi/logos/limpopodepartmentofhealth-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/limpopodepartmentofhealth-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179090,7 +179291,7 @@ }, { "question": "Ludwig-Maximilians-Universität", - "icon": "./assets/data/nsi/logos/ludwigmaximiliansuniversitat-8bb61e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ludwigmaximiliansuniversitat-8bb61e.svg", "osmTags": { "and": [ "amenity=hospital", @@ -179108,7 +179309,7 @@ }, { "question": "Maidstone and Tunbridge Wells NHS Trust", - "icon": "./assets/data/nsi/logos/maidstoneandtunbridgewellsnhstrust-634f11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maidstoneandtunbridgewellsnhstrust-634f11.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179141,7 +179342,7 @@ }, { "question": "Marienhaus", - "icon": "./assets/data/nsi/logos/marienhaus-8bb61e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marienhaus-8bb61e.svg", "osmTags": { "and": [ "amenity=hospital", @@ -179158,7 +179359,7 @@ }, { "question": "Mass General Brigham", - "icon": "./assets/data/nsi/logos/massgeneralbrigham-73dad1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/massgeneralbrigham-73dad1.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179191,7 +179392,7 @@ }, { "question": "Mayo Clinic Health System", - "icon": "./assets/data/nsi/logos/mayoclinichealthsystem-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayoclinichealthsystem-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179208,7 +179409,7 @@ }, { "question": "Médecins sans frontières", - "icon": "./assets/data/nsi/logos/medecinssansfrontieres-fbd4f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/medecinssansfrontieres-fbd4f5.png", "osmTags": { "and": [ "amenity=hospital", @@ -179226,7 +179427,7 @@ }, { "question": "Median Kliniken", - "icon": "./assets/data/nsi/logos/mediankliniken-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mediankliniken-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179243,7 +179444,7 @@ }, { "question": "Medical Park (Deutschland)", - "icon": "./assets/data/nsi/logos/medicalpark-8bb61e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/medicalpark-8bb61e.png", "osmTags": { "and": [ "amenity=hospital", @@ -179276,7 +179477,7 @@ }, { "question": "Mediclin", - "icon": "./assets/data/nsi/logos/mediclin-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mediclin-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179293,7 +179494,7 @@ }, { "question": "Mediclinic", - "icon": "./assets/data/nsi/logos/mediclinic-97e588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mediclinic-97e588.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179326,7 +179527,7 @@ }, { "question": "Mercy", - "icon": "./assets/data/nsi/logos/mercy-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercy-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179343,7 +179544,7 @@ }, { "question": "Mercy Health", - "icon": "./assets/data/nsi/logos/mercyhealth-4cdbcf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mercyhealth-4cdbcf.png", "osmTags": { "and": [ "amenity=hospital", @@ -179483,7 +179684,7 @@ }, { "question": "Ministère de la Santé Publique (Madagascar)", - "icon": "./assets/data/nsi/logos/ministeredelasantepublique-0923db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeredelasantepublique-0923db.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179516,7 +179717,7 @@ }, { "question": "Ministério da Saúde (Brasil)", - "icon": "./assets/data/nsi/logos/ministeriodasaude-d30bb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodasaude-d30bb4.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179579,7 +179780,7 @@ }, { "question": "Ministerio de Salud (Argentina)", - "icon": "./assets/data/nsi/logos/ministeriodesalud-b92ad7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-b92ad7.png", "osmTags": { "and": [ "amenity=hospital", @@ -179597,7 +179798,7 @@ }, { "question": "Ministerio de Salud (El Salvador)", - "icon": "./assets/data/nsi/logos/ministeriodesalud-e39fb9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-e39fb9.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179632,7 +179833,7 @@ }, { "question": "Ministerio de Salud del Perú", - "icon": "./assets/data/nsi/logos/ministeriodesaluddelperu-d29164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaluddelperu-d29164.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179650,7 +179851,7 @@ }, { "question": "Ministerio de Salud Pública (Cuba)", - "icon": "./assets/data/nsi/logos/ministeriodesaludpublica-08985e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-08985e.png", "osmTags": { "and": [ "amenity=hospital", @@ -179668,7 +179869,7 @@ }, { "question": "Ministerio de Salud Pública (Ecuador)", - "icon": "./assets/data/nsi/logos/ministeriodesaludpublica-92bc1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-92bc1d.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179686,7 +179887,7 @@ }, { "question": "Ministerio de Salud Pública y Asistencia Social (Guatemala)", - "icon": "./assets/data/nsi/logos/ministeriodesaludpublicayasistenciasocial-0cfb3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublicayasistenciasocial-0cfb3e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179704,7 +179905,7 @@ }, { "question": "Ministerio de Salud Pública y Asistencia Social (República Dominicana)", - "icon": "./assets/data/nsi/logos/ministeriodesaludpublicayasistenciasocial-d139a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublicayasistenciasocial-d139a9.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179722,7 +179923,7 @@ }, { "question": "Ministerio de Salud Pública y Bienestar Social (Paraguay)", - "icon": "./assets/data/nsi/logos/ministeriodesaludpublicaybienestarsocial-4add5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublicaybienestarsocial-4add5c.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179739,7 +179940,7 @@ }, { "question": "Ministerio de Salud y Deportes (Bolivia)", - "icon": "./assets/data/nsi/logos/ministeriodesaludydeportes-bdc341.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludydeportes-bdc341.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179757,7 +179958,7 @@ }, { "question": "Ministerio de Salud y Protección Social (Colombia)", - "icon": "./assets/data/nsi/logos/ministeriodesaludyproteccionsocial-d793a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludyproteccionsocial-d793a3.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179792,7 +179993,7 @@ }, { "question": "Ministerstvo zdravotníctva Slovenskej republiky", - "icon": "./assets/data/nsi/logos/ministerstvozdravotnictvaslovenskejrepubliky-ecf182.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstvozdravotnictvaslovenskejrepubliky-ecf182.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179810,7 +180011,7 @@ }, { "question": "Ministry of Health (Kenya)", - "icon": "./assets/data/nsi/logos/ministryofhealth-aa1e94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-aa1e94.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179842,7 +180043,7 @@ }, { "question": "Ministry of Health (Uganda)", - "icon": "./assets/data/nsi/logos/ministryofhealth-14c7e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-14c7e1.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179859,7 +180060,7 @@ }, { "question": "Ministry of Health (Zambia)", - "icon": "./assets/data/nsi/logos/ministryofhealth-ddfad3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealth-ddfad3.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179876,7 +180077,7 @@ }, { "question": "Ministry of Health & Wellness (Jamaica)", - "icon": "./assets/data/nsi/logos/ministryofhealthandwellness-c10140.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealthandwellness-c10140.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179925,7 +180126,7 @@ }, { "question": "Ministry of Health, Nutrition and Indigenous Medicine (Sri Lanka)", - "icon": "./assets/data/nsi/logos/ministryofhealthnutritionandindigenousmedicine-fb2edf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealthnutritionandindigenousmedicine-fb2edf.png", "osmTags": { "and": [ "amenity=hospital", @@ -179942,7 +180143,7 @@ }, { "question": "Ministry of Public Health (Thailand)", - "icon": "./assets/data/nsi/logos/ministryofpublichealth-b5eaef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofpublichealth-b5eaef.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -179960,7 +180161,7 @@ }, { "question": "Mpumalanga Department of Health", - "icon": "./assets/data/nsi/logos/mpumalangadepartmentofhealth-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mpumalangadepartmentofhealth-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180007,7 +180208,7 @@ }, { "question": "Municipalidad Metropolitana de Lima", - "icon": "./assets/data/nsi/logos/municipalidadmetropolitanadelima-d29164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidadmetropolitanadelima-d29164.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180072,7 +180273,7 @@ }, { "question": "Netcare", - "icon": "./assets/data/nsi/logos/netcare-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netcare-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180089,7 +180290,7 @@ }, { "question": "NHS", - "icon": "./assets/data/nsi/logos/nhs-b0b612.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nhs-b0b612.png", "osmTags": { "and": [ "amenity=hospital", @@ -180121,7 +180322,7 @@ }, { "question": "North West Department of Health", - "icon": "./assets/data/nsi/logos/northwestdepartmentofhealth-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestdepartmentofhealth-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180138,7 +180339,7 @@ }, { "question": "Northern Cape Department of Health", - "icon": "./assets/data/nsi/logos/northerncapedepartmentofhealth-650276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northerncapedepartmentofhealth-650276.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180155,7 +180356,7 @@ }, { "question": "Northwell Health", - "icon": "./assets/data/nsi/logos/northwellhealth-27bc64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northwellhealth-27bc64.png", "osmTags": { "and": [ "amenity=hospital", @@ -180172,7 +180373,7 @@ }, { "question": "Northwestern Medicine", - "icon": "./assets/data/nsi/logos/northwesternmedicine-1d2216.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternmedicine-1d2216.png", "osmTags": { "and": [ "amenity=hospital", @@ -180189,7 +180390,7 @@ }, { "question": "Novant Health", - "icon": "./assets/data/nsi/logos/novanthealth-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/novanthealth-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -180206,7 +180407,7 @@ }, { "question": "NSW Health", - "icon": "./assets/data/nsi/logos/nswhealth-768201.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswhealth-768201.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180239,7 +180440,7 @@ }, { "question": "Nuffield Health", - "icon": "./assets/data/nsi/logos/nuffieldhealth-b0b612.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nuffieldhealth-b0b612.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180256,7 +180457,7 @@ }, { "question": "Ochsner Health System", - "icon": "./assets/data/nsi/logos/ochsnerhealthsystem-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ochsnerhealthsystem-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -180273,7 +180474,7 @@ }, { "question": "OhioHealth", - "icon": "./assets/data/nsi/logos/ohiohealth-776941.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiohealth-776941.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180290,7 +180491,7 @@ }, { "question": "Osakidetza", - "icon": "./assets/data/nsi/logos/osakidetza-34fe48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osakidetza-34fe48.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180307,7 +180508,7 @@ }, { "question": "Paracelsus-Kliniken", - "icon": "./assets/data/nsi/logos/paracelsuskliniken-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paracelsuskliniken-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180324,7 +180525,7 @@ }, { "question": "PeaceHealth", - "icon": "./assets/data/nsi/logos/peacehealth-1d1c43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peacehealth-1d1c43.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180356,7 +180557,7 @@ }, { "question": "Prime Healthcare Services", - "icon": "./assets/data/nsi/logos/primehealthcareservices-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/primehealthcareservices-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180373,7 +180574,7 @@ }, { "question": "Providence Health & Services", - "icon": "./assets/data/nsi/logos/providencehealthandservices-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/providencehealthandservices-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -180390,7 +180591,7 @@ }, { "question": "Provincia de Santa Fe", - "icon": "./assets/data/nsi/logos/provinciadesantafe-632554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadesantafe-632554.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180422,7 +180623,7 @@ }, { "question": "Queensland Health", - "icon": "./assets/data/nsi/logos/queenslandhealth-82bd63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/queenslandhealth-82bd63.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180455,7 +180656,7 @@ }, { "question": "Ramsay Health Care UK", - "icon": "./assets/data/nsi/logos/ramsayhealthcareuk-b0b612.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ramsayhealthcareuk-b0b612.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180472,7 +180673,7 @@ }, { "question": "Ramsay Santé", - "icon": "./assets/data/nsi/logos/ramsaysante-73646a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ramsaysante-73646a.png", "osmTags": { "and": [ "amenity=hospital", @@ -180489,7 +180690,7 @@ }, { "question": "Rhön-Klinikum", - "icon": "./assets/data/nsi/logos/rhonklinikum-8bb61e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhonklinikum-8bb61e.svg", "osmTags": { "and": [ "amenity=hospital", @@ -180506,7 +180707,7 @@ }, { "question": "Rochester Regional Health", - "icon": "./assets/data/nsi/logos/rochesterregionalhealth-27bc64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochesterregionalhealth-27bc64.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180538,7 +180739,7 @@ }, { "question": "SA Health", - "icon": "./assets/data/nsi/logos/sahealth-26d4fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sahealth-26d4fb.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180555,7 +180756,7 @@ }, { "question": "SACYL", - "icon": "./assets/data/nsi/logos/sacyl-34fe48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacyl-34fe48.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180572,7 +180773,7 @@ }, { "question": "Sağlık Bakanlığı", - "icon": "./assets/data/nsi/logos/saglikbakanligi-4e781b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saglikbakanligi-4e781b.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180604,7 +180805,7 @@ }, { "question": "Samaritan Health Services", - "icon": "./assets/data/nsi/logos/samaritanhealthservices-cfad4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/samaritanhealthservices-cfad4c.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180621,7 +180822,7 @@ }, { "question": "Sana Kliniken", - "icon": "./assets/data/nsi/logos/sanakliniken-8bb61e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanakliniken-8bb61e.png", "osmTags": { "and": [ "amenity=hospital", @@ -180638,7 +180839,7 @@ }, { "question": "Sanford Health", - "icon": "./assets/data/nsi/logos/sanfordhealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanfordhealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180655,7 +180856,7 @@ }, { "question": "Schön Klinik", - "icon": "./assets/data/nsi/logos/schonklinik-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schonklinik-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180702,7 +180903,7 @@ }, { "question": "Seguro Social de Salud (Perú)", - "icon": "./assets/data/nsi/logos/segurosocialdesalud-d29164.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/segurosocialdesalud-d29164.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180720,7 +180921,7 @@ }, { "question": "Select Specialty Hospital", - "icon": "./assets/data/nsi/logos/selectspecialtyhospital-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/selectspecialtyhospital-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180738,7 +180939,7 @@ }, { "question": "Servicio Andaluz de Salud", - "icon": "./assets/data/nsi/logos/servicioandaluzdesalud-34fe48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicioandaluzdesalud-34fe48.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180756,7 +180957,7 @@ }, { "question": "Shriners Hospital for Children", - "icon": "./assets/data/nsi/logos/shrinershospitalsforchildren-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shrinershospitalsforchildren-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180775,7 +180976,7 @@ }, { "question": "Sistema Único de Saúde", - "icon": "./assets/data/nsi/logos/sistemaunicodesaude-d30bb4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sistemaunicodesaude-d30bb4.svg", "osmTags": { "and": [ "amenity=hospital", @@ -180808,7 +181009,7 @@ }, { "question": "Somerset NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/somersetnhsfoundationtrust-5fb324.png", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetnhsfoundationtrust-5fb324.png", "osmTags": { "and": [ "amenity=hospital", @@ -180840,7 +181041,7 @@ }, { "question": "SSM Health", - "icon": "./assets/data/nsi/logos/ssmhealth-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ssmhealth-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -180857,7 +181058,7 @@ }, { "question": "St. Charles Health System", - "icon": "./assets/data/nsi/logos/stcharleshealthsystem-cfad4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stcharleshealthsystem-cfad4c.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180874,7 +181075,7 @@ }, { "question": "St. Franziskus-Stiftung Münster", - "icon": "./assets/data/nsi/logos/stfranziskusstiftungmunster-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stfranziskusstiftungmunster-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180907,7 +181108,7 @@ }, { "question": "Steiermärkische Krankenanstaltengesellschaft m.b.H.", - "icon": "./assets/data/nsi/logos/steiermarkischekrankenanstaltengesellschaftmbh-5682c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steiermarkischekrankenanstaltengesellschaftmbh-5682c5.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180924,7 +181125,7 @@ }, { "question": "Steward Health Care", - "icon": "./assets/data/nsi/logos/stewardhealthcare-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stewardhealthcare-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -180941,7 +181142,7 @@ }, { "question": "Sutter Health", - "icon": "./assets/data/nsi/logos/sutterhealth-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sutterhealth-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181020,7 +181221,7 @@ }, { "question": "TRICARE", - "icon": "./assets/data/nsi/logos/tricare-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tricare-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181037,7 +181238,7 @@ }, { "question": "Trinity Health", - "icon": "./assets/data/nsi/logos/trinityhealth-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trinityhealth-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -181085,7 +181286,7 @@ }, { "question": "UnityPoint Health", - "icon": "./assets/data/nsi/logos/unitypointhealth-ac6cc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitypointhealth-ac6cc4.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181102,7 +181303,7 @@ }, { "question": "Universal Health Services", - "icon": "./assets/data/nsi/logos/universalhealthservices-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universalhealthservices-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -181120,7 +181321,7 @@ }, { "question": "University Hospitals Dorset NHS Foundation Trust", - "icon": "./assets/data/nsi/logos/universityhospitalsdorsetnhsfoundationtrust-65a858.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityhospitalsdorsetnhsfoundationtrust-65a858.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181137,7 +181338,7 @@ }, { "question": "University Hospitals of Cleveland", - "icon": "./assets/data/nsi/logos/universityhospitalsofcleveland-776941.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityhospitalsofcleveland-776941.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181154,7 +181355,7 @@ }, { "question": "University of Pittsburgh Medical Center", - "icon": "./assets/data/nsi/logos/universityofpittsburghmedicalcenter-888e5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofpittsburghmedicalcenter-888e5a.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181172,7 +181373,7 @@ }, { "question": "UR Medicine", - "icon": "./assets/data/nsi/logos/universityofrochestermedicalcenter-27bc64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofrochestermedicalcenter-27bc64.png", "osmTags": { "and": [ "amenity=hospital", @@ -181190,7 +181391,7 @@ }, { "question": "VA Medical Center", - "icon": "./assets/data/nsi/logos/veteranshealthadministration-888e5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/veteranshealthadministration-888e5a.png", "osmTags": { "and": [ "amenity=hospital", @@ -181211,7 +181412,7 @@ }, { "question": "Västra Götalandsregionen", - "icon": "./assets/data/nsi/logos/vastragotalandsregionen-653dc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vastragotalandsregionen-653dc5.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181245,7 +181446,7 @@ }, { "question": "Vivantes", - "icon": "./assets/data/nsi/logos/vivantes-8bb61e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivantes-8bb61e.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181278,7 +181479,7 @@ }, { "question": "Ziekenhuis Netwerk Antwerpen", - "icon": "./assets/data/nsi/logos/ziekenhuisnetwerkantwerpen-1fd604.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ziekenhuisnetwerkantwerpen-1fd604.png", "osmTags": { "and": [ "amenity=hospital", @@ -181372,7 +181573,7 @@ }, { "question": "醫院管理局 Hospital Authority", - "icon": "./assets/data/nsi/logos/hospitalauthority-fafb13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hospitalauthority-fafb13.jpg", "osmTags": { "and": [ "amenity=hospital", @@ -181412,7 +181613,7 @@ }, { "question": "Adelby 1", - "icon": "./assets/data/nsi/logos/adelby1-41f292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adelby1-41f292.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181443,7 +181644,7 @@ }, { "question": "Agrupamento de Escolas de Tondela Cândido de Figueiredo", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdetondelacandidodefigueiredo-64d503.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdetondelacandidodefigueiredo-64d503.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -181459,7 +181660,7 @@ }, { "question": "Ajuntament de Barcelona", - "icon": "./assets/data/nsi/logos/ajuntamentdebarcelona-bf7a11.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-bf7a11.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181518,7 +181719,7 @@ }, { "question": "AWO Regionalverband Rhein-Erft & Euskirchen e.V.", - "icon": "./assets/data/nsi/logos/aworegionalverbandrheinerftandeuskirchenev-76bfc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aworegionalverbandrheinerftandeuskirchenev-76bfc3.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181562,7 +181763,7 @@ }, { "question": "Bayerisches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/bayerischesroteskreuz-fd062c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-fd062c.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181579,7 +181780,7 @@ }, { "question": "Białołęka", - "icon": "./assets/data/nsi/logos/bialoleka-6b0035.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bialoleka-6b0035.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181595,7 +181796,7 @@ }, { "question": "Bielany", - "icon": "./assets/data/nsi/logos/bielany-6b0035.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bielany-6b0035.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181625,7 +181826,7 @@ }, { "question": "BVZ", - "icon": "./assets/data/nsi/logos/bvz-17b2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bvz-17b2fe.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181641,7 +181842,7 @@ }, { "question": "Caritasverband Dortmund e.V.", - "icon": "./assets/data/nsi/logos/caritasverbanddortmundev-76bfc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritasverbanddortmundev-76bfc3.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181700,7 +181901,7 @@ }, { "question": "Comune di Bologna", - "icon": "./assets/data/nsi/logos/comunedibologna-624c08.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedibologna-624c08.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181746,7 +181947,7 @@ }, { "question": "Denk mit! Kinderbetreuungseinrichtungen GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/denkmitkinderbetreuungseinrichtungengmbhandcokg-fd062c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/denkmitkinderbetreuungseinrichtungengmbhandcokg-fd062c.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181864,7 +182065,7 @@ }, { "question": "Esbjerg Kommune", - "icon": "./assets/data/nsi/logos/esbjergkommune-d0c2f5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbjergkommune-d0c2f5.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181880,7 +182081,7 @@ }, { "question": "Espoon kaupunki", - "icon": "./assets/data/nsi/logos/espoonkaupunki-f5d7fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/espoonkaupunki-f5d7fd.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -181896,7 +182097,7 @@ }, { "question": "Evangelischer Kirchenkreis Dortmund", - "icon": "./assets/data/nsi/logos/evangelischerkirchenkreisdortmund-76bfc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evangelischerkirchenkreisdortmund-76bfc3.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181912,7 +182113,7 @@ }, { "question": "Evangelischer Kirchenkreis Hamm", - "icon": "./assets/data/nsi/logos/evangelischerkirchenkreishamm-76bfc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evangelischerkirchenkreishamm-76bfc3.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -181971,7 +182172,7 @@ }, { "question": "FRÖBEL Bildung und Erziehung", - "icon": "./assets/data/nsi/logos/frobelbildungunderziehung-747d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frobelbildungunderziehung-747d0f.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182001,7 +182202,7 @@ }, { "question": "Gemeinde Hohe Börde", - "icon": "./assets/data/nsi/logos/gemeindehoheborde-ba3488.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindehoheborde-ba3488.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -182017,7 +182218,7 @@ }, { "question": "Generalitat Valenciana", - "icon": "./assets/data/nsi/logos/generalitatvalenciana-afa509.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-afa509.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182033,7 +182234,7 @@ }, { "question": "Gmina Lublin", - "icon": "./assets/data/nsi/logos/gminalublin-6b0035.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gminalublin-6b0035.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182049,7 +182250,7 @@ }, { "question": "Gmina Miasto Rzeszów", - "icon": "./assets/data/nsi/logos/gminamiastorzeszow-6b0035.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gminamiastorzeszow-6b0035.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182093,7 +182294,7 @@ }, { "question": "Hå kommune", - "icon": "./assets/data/nsi/logos/hakommune-04f073.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hakommune-04f073.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182124,7 +182325,7 @@ }, { "question": "INA.KINDER.GARTEN gGmbH", - "icon": "./assets/data/nsi/logos/inakindergartenggmbh-4ea051.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inakindergartenggmbh-4ea051.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182140,7 +182341,7 @@ }, { "question": "Instituto del Niño y Adolescente del Uruguay", - "icon": "./assets/data/nsi/logos/institutodelninoyadolescentedeluruguay-3e78b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutodelninoyadolescentedeluruguay-3e78b4.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182157,7 +182358,7 @@ }, { "question": "Internationaler Bund", - "icon": "./assets/data/nsi/logos/internationalerbund-747d0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/internationalerbund-747d0f.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -182173,7 +182374,7 @@ }, { "question": "Järvenpään kaupunki", - "icon": "./assets/data/nsi/logos/jarvenpaankaupunki-f5d7fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jarvenpaankaupunki-f5d7fd.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182189,7 +182390,7 @@ }, { "question": "Johanniter-Unfall-Hilfe e.V.", - "icon": "./assets/data/nsi/logos/johanniterunfallhilfeev-747d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfeev-747d0f.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182263,7 +182464,7 @@ }, { "question": "JUL", - "icon": "./assets/data/nsi/logos/jul-747d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jul-747d0f.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182337,7 +182538,7 @@ }, { "question": "Katholische KiTa gGmbH Saarland", - "icon": "./assets/data/nsi/logos/katholischekitaggmbhsaarland-7a6925.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/katholischekitaggmbhsaarland-7a6925.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182353,7 +182554,7 @@ }, { "question": "Katholische KiTa gGmbH Trier", - "icon": "./assets/data/nsi/logos/katholischekitaggmbhtrier-df3d5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/katholischekitaggmbhtrier-df3d5e.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182398,7 +182599,7 @@ }, { "question": "Kinder in Wien", - "icon": "./assets/data/nsi/logos/kinderinwien-7d90b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinderinwien-7d90b0.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182414,7 +182615,7 @@ }, { "question": "Kinderfreunde", - "icon": "./assets/data/nsi/logos/kinderfreunde-7bcf1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kinderfreunde-7bcf1a.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -182445,7 +182646,7 @@ }, { "question": "Kindergärten NordOst", - "icon": "./assets/data/nsi/logos/kindergartennordost-4ea051.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kindergartennordost-4ea051.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182521,7 +182722,7 @@ }, { "question": "Kinderzentren Kunterbunt gGmbH", - "icon": "./assets/data/nsi/logos/kinderzentrenkunterbuntggmbh-747d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinderzentrenkunterbuntggmbh-747d0f.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182552,7 +182753,7 @@ }, { "question": "Kita Frankfurt", - "icon": "./assets/data/nsi/logos/kitafrankfurt-17b2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitafrankfurt-17b2fe.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182568,7 +182769,7 @@ }, { "question": "Kitaverband Diepholz", - "icon": "./assets/data/nsi/logos/kitaverbanddiepholz-b371e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitaverbanddiepholz-b371e3.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182584,7 +182785,7 @@ }, { "question": "Klax Berlin gGmbH", - "icon": "./assets/data/nsi/logos/klaxberlinggmbh-4ea051.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klaxberlinggmbh-4ea051.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182600,7 +182801,7 @@ }, { "question": "Klepp kommune", - "icon": "./assets/data/nsi/logos/kleppkommune-04f073.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kleppkommune-04f073.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182616,7 +182817,7 @@ }, { "question": "Kolding Kommune", - "icon": "./assets/data/nsi/logos/koldingkommune-d0c2f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/koldingkommune-d0c2f5.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -182632,7 +182833,7 @@ }, { "question": "Kungsbacka kommun", - "icon": "./assets/data/nsi/logos/kungsbackakommun-b6a588.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kungsbackakommun-b6a588.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -182691,7 +182892,7 @@ }, { "question": "Landeshauptstadt Stuttgart", - "icon": "./assets/data/nsi/logos/landeshauptstadtstuttgart-df1e7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtstuttgart-df1e7e.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182722,7 +182923,7 @@ }, { "question": "Luleå kommun", - "icon": "./assets/data/nsi/logos/luleakommun-b6a588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luleakommun-b6a588.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182738,7 +182939,7 @@ }, { "question": "Mairie de Paris", - "icon": "./assets/data/nsi/logos/mairiedeparis-452f91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-452f91.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182769,7 +182970,7 @@ }, { "question": "Malmö stad", - "icon": "./assets/data/nsi/logos/malmostad-b6a588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/malmostad-b6a588.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182799,7 +183000,7 @@ }, { "question": "Nachbarschaftsheim Schöneberg e.V.", - "icon": "./assets/data/nsi/logos/nachbarschaftsheimschonebergev-4ea051.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nachbarschaftsheimschonebergev-4ea051.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182815,7 +183016,7 @@ }, { "question": "Narvik kommune", - "icon": "./assets/data/nsi/logos/narvikkommune-04f073.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/narvikkommune-04f073.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182845,7 +183046,7 @@ }, { "question": "Norrköpings kommun", - "icon": "./assets/data/nsi/logos/norrkopingskommun-b6a588.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norrkopingskommun-b6a588.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -182861,7 +183062,7 @@ }, { "question": "Nurmijärven kunta", - "icon": "./assets/data/nsi/logos/nurmijarvenkunta-f5d7fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nurmijarvenkunta-f5d7fd.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182920,7 +183121,7 @@ }, { "question": "Oslo kommune", - "icon": "./assets/data/nsi/logos/oslokommune-04f073.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oslokommune-04f073.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -182936,7 +183137,7 @@ }, { "question": "Outlaw", - "icon": "./assets/data/nsi/logos/outlaw-747d0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/outlaw-747d0f.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183024,7 +183225,7 @@ }, { "question": "Praga-Północ", - "icon": "./assets/data/nsi/logos/pragapolnoc-6b0035.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pragapolnoc-6b0035.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -183070,7 +183271,7 @@ }, { "question": "Prefeitura Municipal de Florianópolis", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldeflorianopolis-b3185a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeflorianopolis-b3185a.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -183160,7 +183361,7 @@ }, { "question": "San José Unified School District", - "icon": "./assets/data/nsi/logos/sanjoseunifiedschooldistrict-2a3fae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanjoseunifiedschooldistrict-2a3fae.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183192,7 +183393,7 @@ }, { "question": "Save the Children", - "icon": "./assets/data/nsi/logos/savethechildren-0ff93d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/savethechildren-0ff93d.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183251,7 +183452,7 @@ }, { "question": "Sogndal kommune", - "icon": "./assets/data/nsi/logos/sogndalkommune-04f073.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sogndalkommune-04f073.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183267,7 +183468,7 @@ }, { "question": "Sozialpädagogischer Verein", - "icon": "./assets/data/nsi/logos/sozialpadagogischerverein-17b2fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sozialpadagogischerverein-17b2fe.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183298,7 +183499,7 @@ }, { "question": "Stadt Dietikon", - "icon": "./assets/data/nsi/logos/stadtdietikon-af761c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtdietikon-af761c.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183314,7 +183515,7 @@ }, { "question": "Stadt Freising", - "icon": "./assets/data/nsi/logos/stadtfreising-fd062c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtfreising-fd062c.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183330,7 +183531,7 @@ }, { "question": "Stadt Gelsenkirchen", - "icon": "./assets/data/nsi/logos/stadtgelsenkirchen-76bfc3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgelsenkirchen-76bfc3.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183346,7 +183547,7 @@ }, { "question": "Stadt Graz", - "icon": "./assets/data/nsi/logos/stadtgraz-0a8f8a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgraz-0a8f8a.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183362,7 +183563,7 @@ }, { "question": "Stadt Herne", - "icon": "./assets/data/nsi/logos/stadtherne-76bfc3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtherne-76bfc3.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183378,7 +183579,7 @@ }, { "question": "Stadt Köln", - "icon": "./assets/data/nsi/logos/stadtkoln-76bfc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkoln-76bfc3.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183394,7 +183595,7 @@ }, { "question": "Stadt Krefeld", - "icon": "./assets/data/nsi/logos/stadtkrefeld-76bfc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkrefeld-76bfc3.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183424,7 +183625,7 @@ }, { "question": "Stadt Leverkusen", - "icon": "./assets/data/nsi/logos/stadtleverkusen-76bfc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtleverkusen-76bfc3.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183440,7 +183641,7 @@ }, { "question": "Stadt Lünen", - "icon": "./assets/data/nsi/logos/stadtlunen-76bfc3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtlunen-76bfc3.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183456,7 +183657,7 @@ }, { "question": "Stadt Mannheim", - "icon": "./assets/data/nsi/logos/stadtmannheim-df1e7e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmannheim-df1e7e.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -183472,7 +183673,7 @@ }, { "question": "Stadt Mössingen", - "icon": "./assets/data/nsi/logos/stadtmossingen-df1e7e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmossingen-df1e7e.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183488,7 +183689,7 @@ }, { "question": "Stadt München", - "icon": "./assets/data/nsi/logos/stadtmunchen-fd062c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmunchen-fd062c.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -183504,7 +183705,7 @@ }, { "question": "Stadt Rodgau", - "icon": "./assets/data/nsi/logos/stadtrodgau-17b2fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtrodgau-17b2fe.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183520,7 +183721,7 @@ }, { "question": "Stadt Ronnenberg", - "icon": "./assets/data/nsi/logos/stadtronnenberg-b371e3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtronnenberg-b371e3.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183536,7 +183737,7 @@ }, { "question": "Stadt Singen", - "icon": "./assets/data/nsi/logos/stadtsingen-df1e7e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtsingen-df1e7e.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183552,7 +183753,7 @@ }, { "question": "Stadt Steyr", - "icon": "./assets/data/nsi/logos/stadtsteyr-0e4679.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtsteyr-0e4679.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183568,7 +183769,7 @@ }, { "question": "Stadt Troisdorf", - "icon": "./assets/data/nsi/logos/stadttroisdorf-76bfc3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadttroisdorf-76bfc3.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183584,7 +183785,7 @@ }, { "question": "Stadt Ulm", - "icon": "./assets/data/nsi/logos/stadtulm-df1e7e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtulm-df1e7e.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183600,7 +183801,7 @@ }, { "question": "Stadt Weinstadt", - "icon": "./assets/data/nsi/logos/stadtweinstadt-df1e7e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtweinstadt-df1e7e.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183616,7 +183817,7 @@ }, { "question": "Stadt Winnenden", - "icon": "./assets/data/nsi/logos/stadtwinnenden-df1e7e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwinnenden-df1e7e.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183632,7 +183833,7 @@ }, { "question": "Stadt Wolfenbüttel", - "icon": "./assets/data/nsi/logos/stadtwolfenbuttel-b371e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwolfenbuttel-b371e3.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -183662,7 +183863,7 @@ }, { "question": "Stockholms kommun", - "icon": "./assets/data/nsi/logos/stockholmskommun-b6a588.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stockholmskommun-b6a588.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -183678,7 +183879,7 @@ }, { "question": "Sundsvalls kommun", - "icon": "./assets/data/nsi/logos/sundsvallskommun-b6a588.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sundsvallskommun-b6a588.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -183723,7 +183924,7 @@ }, { "question": "Targówek", - "icon": "./assets/data/nsi/logos/targowek-6b0035.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/targowek-6b0035.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183781,7 +183982,7 @@ }, { "question": "Ullensvang kommune", - "icon": "./assets/data/nsi/logos/ullensvangkommune-04f073.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ullensvangkommune-04f073.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183839,7 +184040,7 @@ }, { "question": "Vantaan kaupunki", - "icon": "./assets/data/nsi/logos/vantaankaupunki-f5d7fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vantaankaupunki-f5d7fd.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183855,7 +184056,7 @@ }, { "question": "Värnamo kommun", - "icon": "./assets/data/nsi/logos/varnamokommun-b6a588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/varnamokommun-b6a588.jpg", "osmTags": { "and": [ "amenity=kindergarten", @@ -183971,7 +184172,7 @@ }, { "question": "Żoliborz", - "icon": "./assets/data/nsi/logos/zoliborz-6b0035.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zoliborz-6b0035.svg", "osmTags": { "and": [ "amenity=kindergarten", @@ -184071,7 +184272,7 @@ }, { "question": "Столична община", - "icon": "./assets/data/nsi/logos/4c66bf-563fb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/4c66bf-563fb8.png", "osmTags": { "and": [ "amenity=kindergarten", @@ -184115,7 +184316,7 @@ }, { "question": "Aberdeen City Council", - "icon": "./assets/data/nsi/logos/aberdeencitycouncil-033317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aberdeencitycouncil-033317.jpg", "osmTags": { "and": [ "amenity=library", @@ -184132,7 +184333,7 @@ }, { "question": "Ajuntament de València", - "icon": "./assets/data/nsi/logos/ajuntamentdevalencia-3746d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdevalencia-3746d4.svg", "osmTags": { "and": [ "amenity=library", @@ -184148,7 +184349,7 @@ }, { "question": "Alachua County Library District", - "icon": "./assets/data/nsi/logos/alachuacountylibrarydistrict-7fd740.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alachuacountylibrarydistrict-7fd740.png", "osmTags": { "and": [ "amenity=library", @@ -184180,7 +184381,7 @@ }, { "question": "Auckland Libraries", - "icon": "./assets/data/nsi/logos/aucklandlibraries-f1e6a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aucklandlibraries-f1e6a6.png", "osmTags": { "and": [ "amenity=library", @@ -184198,7 +184399,7 @@ }, { "question": "Austin Public Library", - "icon": "./assets/data/nsi/logos/austinpubliclibrary-24a277.png", + "icon": "https://data.mapcomplete.org/nsi//logos/austinpubliclibrary-24a277.png", "osmTags": { "and": [ "amenity=library", @@ -184229,7 +184430,7 @@ }, { "question": "Ayuntamiento de Valladolid", - "icon": "./assets/data/nsi/logos/ayuntamientodevalladolid-3746d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodevalladolid-3746d4.svg", "osmTags": { "and": [ "amenity=library", @@ -184245,7 +184446,7 @@ }, { "question": "Baltimore County Public Library", - "icon": "./assets/data/nsi/logos/baltimorecountypubliclibrary-1170f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecountypubliclibrary-1170f4.jpg", "osmTags": { "and": [ "amenity=library", @@ -184262,7 +184463,7 @@ }, { "question": "Bibliocenter", - "icon": "./assets/data/nsi/logos/bibliocenter-08efeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bibliocenter-08efeb.jpg", "osmTags": { "and": [ "amenity=library", @@ -184278,7 +184479,7 @@ }, { "question": "Biblionet Groningen", - "icon": "./assets/data/nsi/logos/biblionetgroningen-08efeb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biblionetgroningen-08efeb.png", "osmTags": { "and": [ "amenity=library", @@ -184339,7 +184540,7 @@ }, { "question": "Biblioteka Kraków", - "icon": "./assets/data/nsi/logos/bibliotekakrakow-2579f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bibliotekakrakow-2579f7.jpg", "osmTags": { "and": [ "amenity=library", @@ -184439,7 +184640,7 @@ }, { "question": "Bibliotheek Den Haag", - "icon": "./assets/data/nsi/logos/bibliotheekdenhaag-08efeb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bibliotheekdenhaag-08efeb.png", "osmTags": { "and": [ "amenity=library", @@ -184575,7 +184776,7 @@ }, { "question": "Bibliotheek Rivierenland", - "icon": "./assets/data/nsi/logos/bibliotheekrivierenland-08efeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bibliotheekrivierenland-08efeb.jpg", "osmTags": { "and": [ "amenity=library", @@ -184591,7 +184792,7 @@ }, { "question": "Bibliotheek Rotterdam", - "icon": "./assets/data/nsi/logos/bibliotheekrotterdam-08efeb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bibliotheekrotterdam-08efeb.svg", "osmTags": { "and": [ "amenity=library", @@ -184725,7 +184926,7 @@ }, { "question": "Birmingham City Council", - "icon": "./assets/data/nsi/logos/birminghamcitycouncil-b45619.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-b45619.jpg", "osmTags": { "and": [ "amenity=library", @@ -184741,7 +184942,7 @@ }, { "question": "Birmingham Public Library", - "icon": "./assets/data/nsi/logos/birminghampubliclibrary-8c84f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghampubliclibrary-8c84f7.jpg", "osmTags": { "and": [ "amenity=library", @@ -184772,7 +184973,7 @@ }, { "question": "Bowling Green State University", - "icon": "./assets/data/nsi/logos/bowlinggreenstateuniversity-f8d891.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-f8d891.jpg", "osmTags": { "and": [ "amenity=library", @@ -184789,7 +184990,7 @@ }, { "question": "Brighton and Hove City Council", - "icon": "./assets/data/nsi/logos/brightonandhovecitycouncil-5f562a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-5f562a.png", "osmTags": { "and": [ "amenity=library", @@ -184806,7 +185007,7 @@ }, { "question": "Brisbane City Council", - "icon": "./assets/data/nsi/logos/brisbanecitycouncil-8e5058.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/brisbanecitycouncil-8e5058.svg", "osmTags": { "and": [ "amenity=library", @@ -184822,7 +185023,7 @@ }, { "question": "Brooklyn Public Library", - "icon": "./assets/data/nsi/logos/brooklynpubliclibrary-df14d6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brooklynpubliclibrary-df14d6.png", "osmTags": { "and": [ "amenity=library", @@ -184855,7 +185056,7 @@ }, { "question": "Büchereien Wien", - "icon": "./assets/data/nsi/logos/buchereienwien-1625ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buchereienwien-1625ae.jpg", "osmTags": { "and": [ "amenity=library", @@ -184871,7 +185072,7 @@ }, { "question": "Buffalo & Erie County Public Library System", - "icon": "./assets/data/nsi/logos/buffaloanderiecountypubliclibrarysystem-4be4fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buffaloanderiecountypubliclibrarysystem-4be4fd.jpg", "osmTags": { "and": [ "amenity=library", @@ -184888,7 +185089,7 @@ }, { "question": "Calgary Public Library", - "icon": "./assets/data/nsi/logos/calgarypubliclibrary-9e3799.png", + "icon": "https://data.mapcomplete.org/nsi//logos/calgarypubliclibrary-9e3799.png", "osmTags": { "and": [ "amenity=library", @@ -184905,7 +185106,7 @@ }, { "question": "Cardiff Council", - "icon": "./assets/data/nsi/logos/cardiffcouncil-88f8da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cardiffcouncil-88f8da.jpg", "osmTags": { "and": [ "amenity=library", @@ -184937,7 +185138,7 @@ }, { "question": "CCLSD", - "icon": "./assets/data/nsi/logos/cooscountylibraryservicedistrict-199ec0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cooscountylibraryservicedistrict-199ec0.jpg", "osmTags": { "and": [ "amenity=library", @@ -184954,7 +185155,7 @@ }, { "question": "Chautauqua-Cattaraugus Library System", - "icon": "./assets/data/nsi/logos/chautauquacattarauguslibrarysystem-4be4fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chautauquacattarauguslibrarysystem-4be4fd.png", "osmTags": { "and": [ "amenity=library", @@ -184971,7 +185172,7 @@ }, { "question": "Chicago Public Library", - "icon": "./assets/data/nsi/logos/chicagopubliclibrary-f51cb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagopubliclibrary-f51cb2.jpg", "osmTags": { "and": [ "amenity=library", @@ -184988,7 +185189,7 @@ }, { "question": "Cincinnati and Hamilton County Public Library", - "icon": "./assets/data/nsi/logos/cincinnatiandhamiltoncountypubliclibrary-f8d891.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cincinnatiandhamiltoncountypubliclibrary-f8d891.svg", "osmTags": { "and": [ "amenity=library", @@ -185005,7 +185206,7 @@ }, { "question": "City of Cape Town", - "icon": "./assets/data/nsi/logos/cityofcapetown-80b0ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-80b0ad.png", "osmTags": { "and": [ "amenity=library", @@ -185024,7 +185225,7 @@ }, { "question": "City of Moreton Bay", - "icon": "./assets/data/nsi/logos/cityofmoretonbay-8e5058.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmoretonbay-8e5058.jpg", "osmTags": { "and": [ "amenity=library", @@ -185040,7 +185241,7 @@ }, { "question": "City of San Antonio", - "icon": "./assets/data/nsi/logos/cityofsanantonio-24a277.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsanantonio-24a277.png", "osmTags": { "and": [ "amenity=library", @@ -185056,7 +185257,7 @@ }, { "question": "City of San Diego", - "icon": "./assets/data/nsi/logos/cityofsandiego-b5320b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsandiego-b5320b.svg", "osmTags": { "and": [ "amenity=library", @@ -185072,7 +185273,7 @@ }, { "question": "Clare County Library", - "icon": "./assets/data/nsi/logos/clarecountylibrary-418067.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clarecountylibrary-418067.png", "osmTags": { "and": [ "amenity=library", @@ -185090,7 +185291,7 @@ }, { "question": "Cleveland Public Library", - "icon": "./assets/data/nsi/logos/clevelandpubliclibrary-f8d891.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandpubliclibrary-f8d891.svg", "osmTags": { "and": [ "amenity=library", @@ -185107,7 +185308,7 @@ }, { "question": "Cobb County Public Library System", - "icon": "./assets/data/nsi/logos/cobbcountypubliclibrarysystem-3f6d55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cobbcountypubliclibrarysystem-3f6d55.png", "osmTags": { "and": [ "amenity=library", @@ -185124,7 +185325,7 @@ }, { "question": "Communauté de communes Châteaubriant-Derval", - "icon": "./assets/data/nsi/logos/communautedecommuneschateaubriantderval-461dc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communautedecommuneschateaubriantderval-461dc5.jpg", "osmTags": { "and": [ "amenity=library", @@ -185140,7 +185341,7 @@ }, { "question": "Communauté de communes du Pays d'Ancenis", - "icon": "./assets/data/nsi/logos/communautedecommunesdupaysdancenis-461dc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communautedecommunesdupaysdancenis-461dc5.jpg", "osmTags": { "and": [ "amenity=library", @@ -185156,7 +185357,7 @@ }, { "question": "Comune di Milano", - "icon": "./assets/data/nsi/logos/comunedimilano-ff35cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedimilano-ff35cb.jpg", "osmTags": { "and": [ "amenity=library", @@ -185172,7 +185373,7 @@ }, { "question": "Cornwall Council", - "icon": "./assets/data/nsi/logos/cornwallcouncil-1aa95b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornwallcouncil-1aa95b.jpg", "osmTags": { "and": [ "amenity=library", @@ -185188,7 +185389,7 @@ }, { "question": "de Bibliotheek CultuurPuntAltena", - "icon": "./assets/data/nsi/logos/debibliotheekcultuurpuntaltena-08efeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/debibliotheekcultuurpuntaltena-08efeb.jpg", "osmTags": { "and": [ "amenity=library", @@ -185219,7 +185420,7 @@ }, { "question": "Deschutes Public Library", - "icon": "./assets/data/nsi/logos/deschutespubliclibrary-199ec0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deschutespubliclibrary-199ec0.png", "osmTags": { "and": [ "amenity=library", @@ -185235,7 +185436,7 @@ }, { "question": "Detroit Public Library", - "icon": "./assets/data/nsi/logos/detroitpubliclibrary-dccdd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/detroitpubliclibrary-dccdd9.jpg", "osmTags": { "and": [ "amenity=library", @@ -185252,7 +185453,7 @@ }, { "question": "Devon County Council", - "icon": "./assets/data/nsi/logos/devoncountycouncil-e39d1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/devoncountycouncil-e39d1a.png", "osmTags": { "and": [ "amenity=library", @@ -185269,7 +185470,7 @@ }, { "question": "Diputació de Barcelona", - "icon": "./assets/data/nsi/logos/diputaciodebarcelona-f7a909.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diputaciodebarcelona-f7a909.jpg", "osmTags": { "and": [ "amenity=library", @@ -185299,7 +185500,7 @@ }, { "question": "Dorset Council", - "icon": "./assets/data/nsi/logos/dorsetcouncil-1a7c11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorsetcouncil-1a7c11.jpg", "osmTags": { "and": [ "amenity=library", @@ -185316,7 +185517,7 @@ }, { "question": "Dublin City Council", - "icon": "./assets/data/nsi/logos/dublincitycouncil-f8622f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dublincitycouncil-f8622f.jpg", "osmTags": { "and": [ "amenity=library", @@ -185334,7 +185535,7 @@ }, { "question": "Dún Laoghaire-Rathdown County Council", - "icon": "./assets/data/nsi/logos/dunlaoghairerathdowncountycouncil-f8622f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dunlaoghairerathdowncountycouncil-f8622f.jpg", "osmTags": { "and": [ "amenity=library", @@ -185352,7 +185553,7 @@ }, { "question": "Edmonton Public Library", - "icon": "./assets/data/nsi/logos/edmontonpubliclibrary-9e3799.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edmontonpubliclibrary-9e3799.png", "osmTags": { "and": [ "amenity=library", @@ -185384,7 +185585,7 @@ }, { "question": "Enoch Pratt Free Library", - "icon": "./assets/data/nsi/logos/enochprattfreelibrary-1170f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enochprattfreelibrary-1170f4.jpg", "osmTags": { "and": [ "amenity=library", @@ -185400,7 +185601,7 @@ }, { "question": "Essex County Council", - "icon": "./assets/data/nsi/logos/essexcountycouncil-088e6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essexcountycouncil-088e6d.jpg", "osmTags": { "and": [ "amenity=library", @@ -185416,7 +185617,7 @@ }, { "question": "Finger Lakes Library System", - "icon": "./assets/data/nsi/logos/fingerlakeslibrarysystem-4be4fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fingerlakeslibrarysystem-4be4fd.jpg", "osmTags": { "and": [ "amenity=library", @@ -185433,7 +185634,7 @@ }, { "question": "Fougères Agglomération", - "icon": "./assets/data/nsi/logos/fougeresagglomeration-b386fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fougeresagglomeration-b386fe.jpg", "osmTags": { "and": [ "amenity=library", @@ -185449,7 +185650,7 @@ }, { "question": "Four County Library System", - "icon": "./assets/data/nsi/logos/fourcountylibrarysystem-4be4fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fourcountylibrarysystem-4be4fd.jpg", "osmTags": { "and": [ "amenity=library", @@ -185466,7 +185667,7 @@ }, { "question": "Fővárosi Szabó Ervin Könyvtár", - "icon": "./assets/data/nsi/logos/fovarosiszaboervinkonyvtar-231351.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fovarosiszaboervinkonyvtar-231351.jpg", "osmTags": { "and": [ "amenity=library", @@ -185482,7 +185683,7 @@ }, { "question": "Fraser Valley Regional Library", - "icon": "./assets/data/nsi/logos/fraservalleyregionallibrary-b48f8b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fraservalleyregionallibrary-b48f8b.png", "osmTags": { "and": [ "amenity=library", @@ -185499,7 +185700,7 @@ }, { "question": "Free Library of Philadelphia", - "icon": "./assets/data/nsi/logos/freelibraryofphiladelphia-5c5b2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freelibraryofphiladelphia-5c5b2b.jpg", "osmTags": { "and": [ "amenity=library", @@ -185530,7 +185731,7 @@ }, { "question": "FVRLibraries", - "icon": "./assets/data/nsi/logos/fortvancouverregionallibraries-48ecdd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortvancouverregionallibraries-48ecdd.png", "osmTags": { "and": [ "amenity=library", @@ -185561,7 +185762,7 @@ }, { "question": "Hamilton Public Library (Ontario)", - "icon": "./assets/data/nsi/logos/hamiltonpubliclibrary-b0fd6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hamiltonpubliclibrary-b0fd6b.png", "osmTags": { "and": [ "amenity=library", @@ -185578,7 +185779,7 @@ }, { "question": "Hampshire County Council", - "icon": "./assets/data/nsi/logos/hampshirecountycouncil-03a231.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hampshirecountycouncil-03a231.png", "osmTags": { "and": [ "amenity=library", @@ -185594,7 +185795,7 @@ }, { "question": "Harford County Public Library", - "icon": "./assets/data/nsi/logos/harfordcountypubliclibrary-1170f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harfordcountypubliclibrary-1170f4.jpg", "osmTags": { "and": [ "amenity=library", @@ -185610,7 +185811,7 @@ }, { "question": "Hawaii State Public Library System", - "icon": "./assets/data/nsi/logos/hawaiistatepubliclibrarysystem-2f64e5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiistatepubliclibrarysystem-2f64e5.png", "osmTags": { "and": [ "amenity=library", @@ -185627,7 +185828,7 @@ }, { "question": "Helmet", - "icon": "./assets/data/nsi/logos/helmet-75c643.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/helmet-75c643.jpg", "osmTags": { "and": [ "amenity=library", @@ -185643,7 +185844,7 @@ }, { "question": "Hennepin County Library", - "icon": "./assets/data/nsi/logos/hennepincountylibrary-8eb121.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hennepincountylibrary-8eb121.png", "osmTags": { "and": [ "amenity=library", @@ -185660,7 +185861,7 @@ }, { "question": "Hertfordshire County Council", - "icon": "./assets/data/nsi/logos/hertfordshirecountycouncil-088e6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hertfordshirecountycouncil-088e6d.jpg", "osmTags": { "and": [ "amenity=library", @@ -185676,7 +185877,7 @@ }, { "question": "Houston Public Library", - "icon": "./assets/data/nsi/logos/houstonpubliclibrary-24a277.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houstonpubliclibrary-24a277.jpg", "osmTags": { "and": [ "amenity=library", @@ -185693,7 +185894,7 @@ }, { "question": "Huron County Library", - "icon": "./assets/data/nsi/logos/huroncountylibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huroncountylibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -185709,7 +185910,7 @@ }, { "question": "İstanbul Büyükşehir Belediyesi", - "icon": "./assets/data/nsi/logos/istanbulbuyuksehirbelediyesi-80cd01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istanbulbuyuksehirbelediyesi-80cd01.jpg", "osmTags": { "and": [ "amenity=library", @@ -185726,7 +185927,7 @@ }, { "question": "JCLS", - "icon": "./assets/data/nsi/logos/jacksoncountylibraryservices-199ec0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksoncountylibraryservices-199ec0.png", "osmTags": { "and": [ "amenity=library", @@ -185743,7 +185944,7 @@ }, { "question": "Kawartha Lakes Public Library", - "icon": "./assets/data/nsi/logos/kawarthalakespubliclibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kawarthalakespubliclibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -185759,7 +185960,7 @@ }, { "question": "KCLSD", - "icon": "./assets/data/nsi/logos/klamathcountylibraryservicedistrict-199ec0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klamathcountylibraryservicedistrict-199ec0.jpg", "osmTags": { "and": [ "amenity=library", @@ -185776,7 +185977,7 @@ }, { "question": "Kent County Council", - "icon": "./assets/data/nsi/logos/kentcountycouncil-5f562a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentcountycouncil-5f562a.png", "osmTags": { "and": [ "amenity=library", @@ -185792,7 +185993,7 @@ }, { "question": "Kent State University", - "icon": "./assets/data/nsi/logos/kentstateuniversity-737b54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-737b54.jpg", "osmTags": { "and": [ "amenity=library", @@ -185808,7 +186009,7 @@ }, { "question": "King County Library System", - "icon": "./assets/data/nsi/logos/kingcountylibrarysystem-48ecdd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingcountylibrarysystem-48ecdd.jpg", "osmTags": { "and": [ "amenity=library", @@ -185825,7 +186026,7 @@ }, { "question": "Kingston Frontenac Public Library", - "icon": "./assets/data/nsi/logos/kingstonfrontenacpubliclibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingstonfrontenacpubliclibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -185842,7 +186043,7 @@ }, { "question": "Knižnica pre mládež mesta Košice", - "icon": "./assets/data/nsi/logos/kniznicapremladezmestakosice-36c657.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kniznicapremladezmestakosice-36c657.jpg", "osmTags": { "and": [ "amenity=library", @@ -185859,7 +186060,7 @@ }, { "question": "Knjižnice grada Zagreba", - "icon": "./assets/data/nsi/logos/knjiznicegradazagreba-e2bdd2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knjiznicegradazagreba-e2bdd2.jpg", "osmTags": { "and": [ "amenity=library", @@ -185875,7 +186076,7 @@ }, { "question": "KopGroep Bibliotheken", - "icon": "./assets/data/nsi/logos/kopgroepbibliotheken-08efeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kopgroepbibliotheken-08efeb.jpg", "osmTags": { "and": [ "amenity=library", @@ -185891,7 +186092,7 @@ }, { "question": "Kornhausbibliotheken Bern", - "icon": "./assets/data/nsi/logos/kornhausbibliothekenbern-4ad6fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kornhausbibliothekenbern-4ad6fe.png", "osmTags": { "and": [ "amenity=library", @@ -185921,7 +186122,7 @@ }, { "question": "LA County Library", - "icon": "./assets/data/nsi/logos/lacountylibrary-d6a8bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lacountylibrary-d6a8bf.jpg", "osmTags": { "and": [ "amenity=library", @@ -185937,7 +186138,7 @@ }, { "question": "Lake Agassiz Regional Library", - "icon": "./assets/data/nsi/logos/lakeagassizregionallibrary-8eb121.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lakeagassizregionallibrary-8eb121.png", "osmTags": { "and": [ "amenity=library", @@ -185954,7 +186155,7 @@ }, { "question": "Lake County Public Library", - "icon": "./assets/data/nsi/logos/lakecountypubliclibrary-3f8c31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lakecountypubliclibrary-3f8c31.png", "osmTags": { "and": [ "amenity=library", @@ -185972,7 +186173,7 @@ }, { "question": "Lambton County Library", - "icon": "./assets/data/nsi/logos/lambtoncountylibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lambtoncountylibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -185988,7 +186189,7 @@ }, { "question": "Lancashire County Council", - "icon": "./assets/data/nsi/logos/lancashirecountycouncil-c1fc6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lancashirecountycouncil-c1fc6c.png", "osmTags": { "and": [ "amenity=library", @@ -186004,7 +186205,7 @@ }, { "question": "Libraries Tasmania", - "icon": "./assets/data/nsi/logos/librariestasmania-41eb09.png", + "icon": "https://data.mapcomplete.org/nsi//logos/librariestasmania-41eb09.png", "osmTags": { "and": [ "amenity=library", @@ -186020,7 +186221,7 @@ }, { "question": "London Borough of Hounslow", - "icon": "./assets/data/nsi/logos/londonboroughofhounslow-d8f64f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofhounslow-d8f64f.svg", "osmTags": { "and": [ "amenity=library", @@ -186037,7 +186238,7 @@ }, { "question": "London Borough of Merton", - "icon": "./assets/data/nsi/logos/londonboroughofmerton-d8f64f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofmerton-d8f64f.svg", "osmTags": { "and": [ "amenity=library", @@ -186054,7 +186255,7 @@ }, { "question": "London Borough of Richmond Upon Thames", - "icon": "./assets/data/nsi/logos/londonboroughofrichmonduponthames-d8f64f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofrichmonduponthames-d8f64f.svg", "osmTags": { "and": [ "amenity=library", @@ -186072,7 +186273,7 @@ }, { "question": "London Borough of Wandsworth", - "icon": "./assets/data/nsi/logos/londonboroughofwandsworth-d8f64f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofwandsworth-d8f64f.svg", "osmTags": { "and": [ "amenity=library", @@ -186089,7 +186290,7 @@ }, { "question": "London Public Library", - "icon": "./assets/data/nsi/logos/londonpubliclibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonpubliclibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -186106,7 +186307,7 @@ }, { "question": "Los Angeles Public Library", - "icon": "./assets/data/nsi/logos/losangelespubliclibrary-d6a8bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelespubliclibrary-d6a8bf.png", "osmTags": { "and": [ "amenity=library", @@ -186123,7 +186324,7 @@ }, { "question": "Mairie de Paris", - "icon": "./assets/data/nsi/logos/mairiedeparis-024698.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-024698.jpg", "osmTags": { "and": [ "amenity=library", @@ -186139,7 +186340,7 @@ }, { "question": "Mestna knjižnica Ljubljana", - "icon": "./assets/data/nsi/logos/mestnaknjiznicaljubljana-86076e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestnaknjiznicaljubljana-86076e.jpg", "osmTags": { "and": [ "amenity=library", @@ -186155,7 +186356,7 @@ }, { "question": "Městská knihovna v Praze", - "icon": "./assets/data/nsi/logos/mestskaknihovnavpraze-cbbd2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestskaknihovnavpraze-cbbd2f.jpg", "osmTags": { "and": [ "amenity=library", @@ -186171,7 +186372,7 @@ }, { "question": "Middlesex County Library", - "icon": "./assets/data/nsi/logos/middlesexcountylibrary-9e3799.png", + "icon": "https://data.mapcomplete.org/nsi//logos/middlesexcountylibrary-9e3799.png", "osmTags": { "and": [ "amenity=library", @@ -186215,7 +186416,7 @@ }, { "question": "Milwaukee Public Library", - "icon": "./assets/data/nsi/logos/milwaukeepubliclibrary-b285d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milwaukeepubliclibrary-b285d6.jpg", "osmTags": { "and": [ "amenity=library", @@ -186232,7 +186433,7 @@ }, { "question": "Mississauga Library", - "icon": "./assets/data/nsi/logos/mississaugalibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mississaugalibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -186248,7 +186449,7 @@ }, { "question": "Monroe County Library System (Michigan)", - "icon": "./assets/data/nsi/logos/monroecountylibrarysystem-dccdd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monroecountylibrarysystem-dccdd9.jpg", "osmTags": { "and": [ "amenity=library", @@ -186281,7 +186482,7 @@ }, { "question": "Montpellier Méditerranée Métropole", - "icon": "./assets/data/nsi/logos/montpelliermediterraneemetropole-668c92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montpelliermediterraneemetropole-668c92.jpg", "osmTags": { "and": [ "amenity=library", @@ -186297,7 +186498,7 @@ }, { "question": "Multnomah County Library", - "icon": "./assets/data/nsi/logos/multnomahcountylibrary-199ec0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/multnomahcountylibrary-199ec0.png", "osmTags": { "and": [ "amenity=library", @@ -186313,7 +186514,7 @@ }, { "question": "Münchner Stadtbibliothek", - "icon": "./assets/data/nsi/logos/munchnerstadtbibliothek-9f9ae7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/munchnerstadtbibliothek-9f9ae7.jpg", "osmTags": { "and": [ "amenity=library", @@ -186329,7 +186530,7 @@ }, { "question": "Municipalidad de Neuquén", - "icon": "./assets/data/nsi/logos/municipalidaddeneuquen-e12b56.png", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-e12b56.png", "osmTags": { "and": [ "amenity=library", @@ -186345,7 +186546,7 @@ }, { "question": "New York Public Library", - "icon": "./assets/data/nsi/logos/newyorkpubliclibrary-df14d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkpubliclibrary-df14d6.jpg", "osmTags": { "and": [ "amenity=library", @@ -186362,7 +186563,7 @@ }, { "question": "Newport City Council", - "icon": "./assets/data/nsi/logos/newportcitycouncil-e31f47.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-e31f47.jpg", "osmTags": { "and": [ "amenity=library", @@ -186379,7 +186580,7 @@ }, { "question": "Nioga Library System", - "icon": "./assets/data/nsi/logos/niogalibrarysystem-4be4fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/niogalibrarysystem-4be4fd.jpg", "osmTags": { "and": [ "amenity=library", @@ -186410,7 +186611,7 @@ }, { "question": "Norfolk County Council", - "icon": "./assets/data/nsi/logos/norfolkcountycouncil-088e6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolkcountycouncil-088e6d.jpg", "osmTags": { "and": [ "amenity=library", @@ -186426,7 +186627,7 @@ }, { "question": "North Country Library System", - "icon": "./assets/data/nsi/logos/northcountrylibrarysystem-4be4fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northcountrylibrarysystem-4be4fd.png", "osmTags": { "and": [ "amenity=library", @@ -186443,7 +186644,7 @@ }, { "question": "North Northamptonshire", - "icon": "./assets/data/nsi/logos/northnorthamptonshire-f83674.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northnorthamptonshire-f83674.jpg", "osmTags": { "and": [ "amenity=library", @@ -186459,7 +186660,7 @@ }, { "question": "North Somerset Council", - "icon": "./assets/data/nsi/logos/northsomersetcouncil-beca46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northsomersetcouncil-beca46.jpg", "osmTags": { "and": [ "amenity=library", @@ -186475,7 +186676,7 @@ }, { "question": "Northern Ireland Library Authority", - "icon": "./assets/data/nsi/logos/northernirelandlibraryauthority-134a25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northernirelandlibraryauthority-134a25.png", "osmTags": { "and": [ "amenity=library", @@ -186491,7 +186692,7 @@ }, { "question": "Nottinghamshire County Council", - "icon": "./assets/data/nsi/logos/nottinghamshirecountycouncil-f83674.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nottinghamshirecountycouncil-f83674.jpg", "osmTags": { "and": [ "amenity=library", @@ -186522,7 +186723,7 @@ }, { "question": "OBA", - "icon": "./assets/data/nsi/logos/oba-08efeb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oba-08efeb.jpg", "osmTags": { "and": [ "amenity=library", @@ -186538,7 +186739,7 @@ }, { "question": "OC Public Libraries", - "icon": "./assets/data/nsi/logos/ocpubliclibraries-585335.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocpubliclibraries-585335.jpg", "osmTags": { "and": [ "amenity=library", @@ -186555,7 +186756,7 @@ }, { "question": "Onondaga County Public Libraries", - "icon": "./assets/data/nsi/logos/onondagacountypubliclibraries-4be4fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/onondagacountypubliclibraries-4be4fd.jpg", "osmTags": { "and": [ "amenity=library", @@ -186572,7 +186773,7 @@ }, { "question": "Orange County Library System", - "icon": "./assets/data/nsi/logos/orangecountylibrarysystem-7fd740.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orangecountylibrarysystem-7fd740.png", "osmTags": { "and": [ "amenity=library", @@ -186589,7 +186790,7 @@ }, { "question": "Ottawa Public Library", - "icon": "./assets/data/nsi/logos/ottawapubliclibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottawapubliclibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -186608,7 +186809,7 @@ }, { "question": "OWWL Library System", - "icon": "./assets/data/nsi/logos/owwllibrarysystem-4be4fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/owwllibrarysystem-4be4fd.jpg", "osmTags": { "and": [ "amenity=library", @@ -186624,7 +186825,7 @@ }, { "question": "Oxford County Library", - "icon": "./assets/data/nsi/logos/oxfordcountylibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfordcountylibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -186657,7 +186858,7 @@ }, { "question": "Pestalozzi-Bibliothek Zürich", - "icon": "./assets/data/nsi/logos/pestalozzibibliothekzurich-eb2614.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pestalozzibibliothekzurich-eb2614.jpg", "osmTags": { "and": [ "amenity=library", @@ -186674,7 +186875,7 @@ }, { "question": "Philipps-Universität Marburg", - "icon": "./assets/data/nsi/logos/philippsuniversitatmarburg-3533f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/philippsuniversitatmarburg-3533f8.jpg", "osmTags": { "and": [ "amenity=library", @@ -186690,7 +186891,7 @@ }, { "question": "Pikes Peak Library District", - "icon": "./assets/data/nsi/logos/pikespeaklibrarydistrict-0087cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pikespeaklibrarydistrict-0087cb.jpg", "osmTags": { "and": [ "amenity=library", @@ -186707,7 +186908,7 @@ }, { "question": "Plymouth City Council", - "icon": "./assets/data/nsi/logos/plymouthcitycouncil-d00319.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plymouthcitycouncil-d00319.jpg", "osmTags": { "and": [ "amenity=library", @@ -186724,7 +186925,7 @@ }, { "question": "Prince George's County Memorial Library System", - "icon": "./assets/data/nsi/logos/princegeorgescountymemoriallibrarysystem-1170f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/princegeorgescountymemoriallibrarysystem-1170f4.png", "osmTags": { "and": [ "amenity=library", @@ -186741,7 +186942,7 @@ }, { "question": "Purdue University", - "icon": "./assets/data/nsi/logos/purdueuniversity-3f8c31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/purdueuniversity-3f8c31.jpg", "osmTags": { "and": [ "amenity=library", @@ -186757,7 +186958,7 @@ }, { "question": "Queens Public Library", - "icon": "./assets/data/nsi/logos/queenspubliclibrary-df14d6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/queenspubliclibrary-df14d6.png", "osmTags": { "and": [ "amenity=library", @@ -186802,7 +187003,7 @@ }, { "question": "Rochester Public Library", - "icon": "./assets/data/nsi/logos/rochesterpubliclibrary-4be4fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochesterpubliclibrary-4be4fd.jpg", "osmTags": { "and": [ "amenity=library", @@ -186819,7 +187020,7 @@ }, { "question": "Salford City Council", - "icon": "./assets/data/nsi/logos/salfordcitycouncil-e51a5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salfordcitycouncil-e51a5f.jpg", "osmTags": { "and": [ "amenity=library", @@ -186835,7 +187036,7 @@ }, { "question": "San Bernardino County Library", - "icon": "./assets/data/nsi/logos/sanbernardinocountylibrary-b5320b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanbernardinocountylibrary-b5320b.png", "osmTags": { "and": [ "amenity=library", @@ -186851,7 +187052,7 @@ }, { "question": "San Francisco Public Library", - "icon": "./assets/data/nsi/logos/sanfranciscopubliclibrary-92bbc9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanfranciscopubliclibrary-92bbc9.png", "osmTags": { "and": [ "amenity=library", @@ -186868,7 +187069,7 @@ }, { "question": "San José Public Library", - "icon": "./assets/data/nsi/logos/sanjosepubliclibrary-b5320b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanjosepubliclibrary-b5320b.png", "osmTags": { "and": [ "amenity=library", @@ -186885,7 +187086,7 @@ }, { "question": "Sapienza - Università di Roma", - "icon": "./assets/data/nsi/logos/sapienzauniversitadiroma-7d219c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sapienzauniversitadiroma-7d219c.jpg", "osmTags": { "and": [ "amenity=library", @@ -186932,7 +187133,7 @@ }, { "question": "Seattle Public Library", - "icon": "./assets/data/nsi/logos/seattlepubliclibrary-48ecdd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepubliclibrary-48ecdd.svg", "osmTags": { "and": [ "amenity=library", @@ -186949,7 +187150,7 @@ }, { "question": "Somerset Council", - "icon": "./assets/data/nsi/logos/somersetcouncil-0ac97c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-0ac97c.jpg", "osmTags": { "and": [ "amenity=library", @@ -186965,7 +187166,7 @@ }, { "question": "Southern Tier Library System", - "icon": "./assets/data/nsi/logos/southerntierlibrarysystem-4be4fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerntierlibrarysystem-4be4fd.jpg", "osmTags": { "and": [ "amenity=library", @@ -186982,7 +187183,7 @@ }, { "question": "Stadt Köln", - "icon": "./assets/data/nsi/logos/stadtkoln-cac9ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkoln-cac9ca.jpg", "osmTags": { "and": [ "amenity=library", @@ -186998,7 +187199,7 @@ }, { "question": "Stiftung Hamburger Öffentliche Bücherhallen", - "icon": "./assets/data/nsi/logos/stiftunghamburgeroffentlichebucherhallen-bba292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stiftunghamburgeroffentlichebucherhallen-bba292.jpg", "osmTags": { "and": [ "amenity=library", @@ -187015,7 +187216,7 @@ }, { "question": "Stiftung Kornhausbibliotheken", - "icon": "./assets/data/nsi/logos/stiftungkornhausbibliotheken-4ad6fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stiftungkornhausbibliotheken-4ad6fe.png", "osmTags": { "and": [ "amenity=library", @@ -187033,7 +187234,7 @@ }, { "question": "Toronto Public Library", - "icon": "./assets/data/nsi/logos/torontopubliclibrary-b0fd6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/torontopubliclibrary-b0fd6b.png", "osmTags": { "and": [ "amenity=library", @@ -187050,7 +187251,7 @@ }, { "question": "Tulare County Library", - "icon": "./assets/data/nsi/logos/tularecountylibrary-b5320b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tularecountylibrary-b5320b.jpg", "osmTags": { "and": [ "amenity=library", @@ -187080,7 +187281,7 @@ }, { "question": "Universidad de León", - "icon": "./assets/data/nsi/logos/universidaddeleon-3746d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universidaddeleon-3746d4.png", "osmTags": { "and": [ "amenity=library", @@ -187096,7 +187297,7 @@ }, { "question": "Universidad de Málaga", - "icon": "./assets/data/nsi/logos/universidaddemalaga-3746d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universidaddemalaga-3746d4.jpg", "osmTags": { "and": [ "amenity=library", @@ -187126,7 +187327,7 @@ }, { "question": "Università degli studi di Trieste", - "icon": "./assets/data/nsi/logos/universitadeglistudiditrieste-0c255f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitadeglistudiditrieste-0c255f.jpg", "osmTags": { "and": [ "amenity=library", @@ -187142,7 +187343,7 @@ }, { "question": "Università di Bologna", - "icon": "./assets/data/nsi/logos/universitadibologna-c0ba41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitadibologna-c0ba41.jpg", "osmTags": { "and": [ "amenity=library", @@ -187158,7 +187359,7 @@ }, { "question": "Universität Bonn", - "icon": "./assets/data/nsi/logos/universitatbonn-cac9ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitatbonn-cac9ca.jpg", "osmTags": { "and": [ "amenity=library", @@ -187174,7 +187375,7 @@ }, { "question": "Universität Hamburg", - "icon": "./assets/data/nsi/logos/universitathamburg-bba292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitathamburg-bba292.jpg", "osmTags": { "and": [ "amenity=library", @@ -187190,7 +187391,7 @@ }, { "question": "Universität Wien", - "icon": "./assets/data/nsi/logos/universitatwien-1625ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universitatwien-1625ae.png", "osmTags": { "and": [ "amenity=library", @@ -187253,7 +187454,7 @@ }, { "question": "Universitätsbibliothek der Humboldt-Universität zu Berlin", - "icon": "./assets/data/nsi/logos/universitatsbibliothekderhumboldtuniversitatzuberlin-8a11d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitatsbibliothekderhumboldtuniversitatzuberlin-8a11d2.jpg", "osmTags": { "and": [ "amenity=library", @@ -187269,7 +187470,7 @@ }, { "question": "Universitätsbibliothek der LMU München", - "icon": "./assets/data/nsi/logos/universitatsbibliothekderlmumunchen-9f9ae7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitatsbibliothekderlmumunchen-9f9ae7.jpg", "osmTags": { "and": [ "amenity=library", @@ -187285,7 +187486,7 @@ }, { "question": "Universitätsbibliothek der RWTH Aachen", - "icon": "./assets/data/nsi/logos/universitatsbibliothekderrwthaachen-cac9ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitatsbibliothekderrwthaachen-cac9ca.jpg", "osmTags": { "and": [ "amenity=library", @@ -187301,7 +187502,7 @@ }, { "question": "Universitätsbibliothek der Technischen Universität Berlin", - "icon": "./assets/data/nsi/logos/universitatsbibliothekdertechnischenuniversitatberlin-8a11d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitatsbibliothekdertechnischenuniversitatberlin-8a11d2.jpg", "osmTags": { "and": [ "amenity=library", @@ -187317,7 +187518,7 @@ }, { "question": "Université Bordeaux Montaigne", - "icon": "./assets/data/nsi/logos/universitebordeauxmontaigne-aef600.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitebordeauxmontaigne-aef600.jpg", "osmTags": { "and": [ "amenity=library", @@ -187333,7 +187534,7 @@ }, { "question": "Université de Lorraine", - "icon": "./assets/data/nsi/logos/universitedelorraine-c2daaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitedelorraine-c2daaf.jpg", "osmTags": { "and": [ "amenity=library", @@ -187349,7 +187550,7 @@ }, { "question": "University of Toronto", - "icon": "./assets/data/nsi/logos/universityoftoronto-b0fd6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityoftoronto-b0fd6b.png", "osmTags": { "and": [ "amenity=library", @@ -187365,7 +187566,7 @@ }, { "question": "Valence Romans Agglo", - "icon": "./assets/data/nsi/logos/valenceromansagglo-391b22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valenceromansagglo-391b22.jpg", "osmTags": { "and": [ "amenity=library", @@ -187381,7 +187582,7 @@ }, { "question": "Vancouver Public Library", - "icon": "./assets/data/nsi/logos/vancouverpubliclibrary-b48f8b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vancouverpubliclibrary-b48f8b.svg", "osmTags": { "and": [ "amenity=library", @@ -187398,7 +187599,7 @@ }, { "question": "Ville de Genève", - "icon": "./assets/data/nsi/logos/villedegeneve-68bbbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedegeneve-68bbbd.jpg", "osmTags": { "and": [ "amenity=library", @@ -187429,7 +187630,7 @@ }, { "question": "Wellington County Library", - "icon": "./assets/data/nsi/logos/wellingtoncountylibrary-b0fd6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellingtoncountylibrary-b0fd6b.jpg", "osmTags": { "and": [ "amenity=library", @@ -187446,7 +187647,7 @@ }, { "question": "West Northamptonshire", - "icon": "./assets/data/nsi/logos/westnorthamptonshire-f83674.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westnorthamptonshire-f83674.jpg", "osmTags": { "and": [ "amenity=library", @@ -187704,7 +187905,7 @@ }, { "question": "新北市三重區公所", - "icon": "./assets/data/nsi/logos/89e2b7-6a5686.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/89e2b7-6a5686.jpg", "osmTags": { "and": [ "amenity=library", @@ -187720,7 +187921,7 @@ }, { "question": "新北市立圖書館", - "icon": "./assets/data/nsi/logos/newtaipeicitylibrary-6a5686.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newtaipeicitylibrary-6a5686.jpg", "osmTags": { "and": [ "amenity=library", @@ -187738,7 +187939,7 @@ }, { "question": "桃園市立圖書館", - "icon": "./assets/data/nsi/logos/taoyuanpubliclibrary-6a5686.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taoyuanpubliclibrary-6a5686.jpg", "osmTags": { "and": [ "amenity=library", @@ -187804,7 +188005,7 @@ }, { "question": "香港公共圖書館 Hong Kong Public Libraries", - "icon": "./assets/data/nsi/logos/hongkongpubliclibraries-5d847a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongpubliclibraries-5d847a.jpg", "osmTags": { "and": [ "amenity=library", @@ -187874,7 +188075,7 @@ }, { "question": "Farm to City Markets", - "icon": "./assets/data/nsi/logos/farmtocitymarkets-f97474.png", + "icon": "https://data.mapcomplete.org/nsi//logos/farmtocitymarkets-f97474.png", "osmTags": { "and": [ "amenity=marketplace", @@ -187926,7 +188127,7 @@ }, { "question": "Hackney Council", - "icon": "./assets/data/nsi/logos/hackneycouncil-36ae31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-36ae31.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -187942,7 +188143,7 @@ }, { "question": "London Farmers' Market", - "icon": "./assets/data/nsi/logos/londonfarmersmarket-36ae31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonfarmersmarket-36ae31.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -187981,7 +188182,7 @@ }, { "question": "Stadt Luzern", - "icon": "./assets/data/nsi/logos/stadtluzern-adbdf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtluzern-adbdf0.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -187996,7 +188197,7 @@ }, { "question": "The Food Trust", - "icon": "./assets/data/nsi/logos/thefoodtrust-edd60a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thefoodtrust-edd60a.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -188011,7 +188212,7 @@ }, { "question": "VTM Mannheim", - "icon": "./assets/data/nsi/logos/vtmmannheim-19533a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vtmmannheim-19533a.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -188026,7 +188227,7 @@ }, { "question": "Zagrebački Holding - podružnica Tržnice Zagreb", - "icon": "./assets/data/nsi/logos/zagrebackiholdingpodruznicatrznicezagreb-f2d9a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zagrebackiholdingpodruznicatrznicezagreb-f2d9a8.svg", "osmTags": { "and": [ "amenity=marketplace", @@ -188041,7 +188242,7 @@ }, { "question": "Пазари Възраждане", - "icon": "./assets/data/nsi/logos/bf90bd-4269df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bf90bd-4269df.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -188056,7 +188257,7 @@ }, { "question": "Пазари Запад", - "icon": "./assets/data/nsi/logos/c98346-4269df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c98346-4269df.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -188071,7 +188272,7 @@ }, { "question": "Пазари Изток", - "icon": "./assets/data/nsi/logos/023771-4269df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/023771-4269df.png", "osmTags": { "and": [ "amenity=marketplace", @@ -188086,7 +188287,7 @@ }, { "question": "Пазари Север", - "icon": "./assets/data/nsi/logos/1b7778-4269df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1b7778-4269df.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -188101,7 +188302,7 @@ }, { "question": "Пазари Юг", - "icon": "./assets/data/nsi/logos/d399e0-4269df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/d399e0-4269df.jpg", "osmTags": { "and": [ "amenity=marketplace", @@ -188116,7 +188317,7 @@ }, { "question": "Ace Parking", - "icon": "./assets/data/nsi/logos/aceparking-c11ec2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aceparking-c11ec2.png", "osmTags": { "and": [ "amenity=parking", @@ -188136,7 +188337,7 @@ }, { "question": "APCOA Parking", - "icon": "./assets/data/nsi/logos/apcoaparking-e752ad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/apcoaparking-e752ad.svg", "osmTags": { "and": [ "amenity=parking", @@ -188166,7 +188367,7 @@ }, { "question": "Bath and North East Somerset Council", - "icon": "./assets/data/nsi/logos/bathandnortheastsomersetcouncil-854c9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bathandnortheastsomersetcouncil-854c9b.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188212,7 +188413,7 @@ }, { "question": "Care Park", - "icon": "./assets/data/nsi/logos/carepark-e0a745.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carepark-e0a745.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188232,7 +188433,7 @@ }, { "question": "City Center Parking", - "icon": "./assets/data/nsi/logos/citycenterparking-3047f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/citycenterparking-3047f4.png", "osmTags": { "and": [ "amenity=parking", @@ -188263,7 +188464,7 @@ }, { "question": "Colonial Parking", - "icon": "./assets/data/nsi/logos/colonialparking-c11ec2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/colonialparking-c11ec2.png", "osmTags": { "and": [ "amenity=parking", @@ -188282,7 +188483,7 @@ }, { "question": "Contipark", - "icon": "./assets/data/nsi/logos/contipark-083d22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/contipark-083d22.png", "osmTags": { "and": [ "amenity=parking", @@ -188298,7 +188499,7 @@ }, { "question": "Cornwall Council", - "icon": "./assets/data/nsi/logos/cornwallcouncil-76dd28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornwallcouncil-76dd28.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188314,7 +188515,7 @@ }, { "question": "Diamond Parking", - "icon": "./assets/data/nsi/logos/diamondparking-4ef6cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diamondparking-4ef6cc.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188333,7 +188534,7 @@ }, { "question": "Dorset Council", - "icon": "./assets/data/nsi/logos/dorsetcouncil-ba8105.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorsetcouncil-ba8105.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188367,7 +188568,7 @@ }, { "question": "English Heritage", - "icon": "./assets/data/nsi/logos/englishheritage-c49703.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/englishheritage-c49703.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188383,7 +188584,7 @@ }, { "question": "Erewash Borough Council", - "icon": "./assets/data/nsi/logos/erewashboroughcouncil-5b215a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erewashboroughcouncil-5b215a.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188399,7 +188600,7 @@ }, { "question": "Estapar", - "icon": "./assets/data/nsi/logos/estapar-67d8e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/estapar-67d8e2.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188444,7 +188645,7 @@ }, { "question": "Exeter City Council", - "icon": "./assets/data/nsi/logos/exetercitycouncil-6532f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exetercitycouncil-6532f5.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188460,7 +188661,7 @@ }, { "question": "Gedling Borough Council", - "icon": "./assets/data/nsi/logos/gedlingboroughcouncil-5b215a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gedlingboroughcouncil-5b215a.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188476,7 +188677,7 @@ }, { "question": "Gemeente Amsterdam", - "icon": "./assets/data/nsi/logos/gemeenteamsterdam-400e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteamsterdam-400e31.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188492,7 +188693,7 @@ }, { "question": "Gemeente Dordrecht", - "icon": "./assets/data/nsi/logos/gemeentedordrecht-400e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentedordrecht-400e31.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188508,7 +188709,7 @@ }, { "question": "Gemeente Leiden", - "icon": "./assets/data/nsi/logos/gemeenteleiden-400e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteleiden-400e31.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188524,7 +188725,7 @@ }, { "question": "Gemeente Rotterdam", - "icon": "./assets/data/nsi/logos/gemeenterotterdam-400e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-400e31.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188540,7 +188741,7 @@ }, { "question": "Gemeente Utrecht", - "icon": "./assets/data/nsi/logos/gemeenteutrecht-400e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteutrecht-400e31.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188556,7 +188757,7 @@ }, { "question": "Gemeente Weert", - "icon": "./assets/data/nsi/logos/gemeenteweert-400e31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteweert-400e31.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188602,7 +188803,7 @@ }, { "question": "Impark", - "icon": "./assets/data/nsi/logos/impark-4ef6cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/impark-4ef6cc.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188622,7 +188823,7 @@ }, { "question": "Indigo", - "icon": "./assets/data/nsi/logos/indigo-00023b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indigo-00023b.png", "osmTags": { "and": [ "amenity=parking", @@ -188642,7 +188843,7 @@ }, { "question": "Interparking", - "icon": "./assets/data/nsi/logos/interparking-119199.png", + "icon": "https://data.mapcomplete.org/nsi//logos/interparking-119199.png", "osmTags": { "and": [ "amenity=parking", @@ -188662,7 +188863,7 @@ }, { "question": "İSPARK", - "icon": "./assets/data/nsi/logos/ispark-2ec6a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ispark-2ec6a1.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188682,7 +188883,7 @@ }, { "question": "Keolis Commuter Services", - "icon": "./assets/data/nsi/logos/keoliscommuterservices-b745cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/keoliscommuterservices-b745cf.svg", "osmTags": { "and": [ "amenity=parking", @@ -188698,7 +188899,7 @@ }, { "question": "London Borough of Newham", - "icon": "./assets/data/nsi/logos/londonboroughofnewham-38d530.png", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofnewham-38d530.png", "osmTags": { "and": [ "amenity=parking", @@ -188729,7 +188930,7 @@ }, { "question": "Mesto Košice", - "icon": "./assets/data/nsi/logos/mestokosice-61f593.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestokosice-61f593.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188760,7 +188961,7 @@ }, { "question": "National Trust", - "icon": "./assets/data/nsi/logos/nationaltrust-d0df4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrust-d0df4a.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188776,7 +188977,7 @@ }, { "question": "National Trust for Scotland", - "icon": "./assets/data/nsi/logos/nationaltrustforscotland-8cff5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-8cff5c.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188793,7 +188994,7 @@ }, { "question": "North Somerset Council", - "icon": "./assets/data/nsi/logos/northsomersetcouncil-349006.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northsomersetcouncil-349006.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188870,7 +189071,7 @@ }, { "question": "ParkBee", - "icon": "./assets/data/nsi/logos/parkbee-6b1460.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parkbee-6b1460.png", "osmTags": { "and": [ "amenity=parking", @@ -188887,7 +189088,7 @@ }, { "question": "Parking Company of America", - "icon": "./assets/data/nsi/logos/parkingcompanyofamerica-c11ec2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkingcompanyofamerica-c11ec2.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188938,7 +189139,7 @@ }, { "question": "Payuca", - "icon": "./assets/data/nsi/logos/payuca-083d22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/payuca-083d22.png", "osmTags": { "and": [ "amenity=parking", @@ -188954,7 +189155,7 @@ }, { "question": "Pittsburgh Parking Authority", - "icon": "./assets/data/nsi/logos/pittsburghparkingauthority-ca0b08.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pittsburghparkingauthority-ca0b08.svg", "osmTags": { "and": [ "amenity=parking", @@ -188970,7 +189171,7 @@ }, { "question": "Plymouth City Council", - "icon": "./assets/data/nsi/logos/plymouthcitycouncil-b3011c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plymouthcitycouncil-b3011c.jpg", "osmTags": { "and": [ "amenity=parking", @@ -188986,7 +189187,7 @@ }, { "question": "Q-Park", - "icon": "./assets/data/nsi/logos/qpark-99dc74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qpark-99dc74.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189005,7 +189206,7 @@ }, { "question": "Queensland Rail park 'n' ride", - "icon": "./assets/data/nsi/logos/queenslandrail-d2c33d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/queenslandrail-d2c33d.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189026,7 +189227,7 @@ }, { "question": "Republic Parking", - "icon": "./assets/data/nsi/logos/republicparking-c11ec2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/republicparking-c11ec2.png", "osmTags": { "and": [ "amenity=parking", @@ -189043,7 +189244,7 @@ }, { "question": "Rother District Council", - "icon": "./assets/data/nsi/logos/rotherdistrictcouncil-a07589.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rotherdistrictcouncil-a07589.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189059,7 +189260,7 @@ }, { "question": "Salford City Council", - "icon": "./assets/data/nsi/logos/salfordcitycouncil-664294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salfordcitycouncil-664294.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189075,7 +189276,7 @@ }, { "question": "SmartPark", - "icon": "./assets/data/nsi/logos/portlandbureauoftransportation-3047f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandbureauoftransportation-3047f4.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189094,7 +189295,7 @@ }, { "question": "Somerset Council", - "icon": "./assets/data/nsi/logos/somersetcouncil-6e1dc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-6e1dc7.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189110,7 +189311,7 @@ }, { "question": "SP+", - "icon": "./assets/data/nsi/logos/sp-4ef6cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sp-4ef6cc.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189174,7 +189375,7 @@ }, { "question": "Torbay Council", - "icon": "./assets/data/nsi/logos/torbaycouncil-cf4093.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torbaycouncil-cf4093.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189190,7 +189391,7 @@ }, { "question": "Toronto Parking Authority", - "icon": "./assets/data/nsi/logos/torontoparkingauthority-51e243.png", + "icon": "https://data.mapcomplete.org/nsi//logos/torontoparkingauthority-51e243.png", "osmTags": { "and": [ "amenity=parking", @@ -189206,7 +189407,7 @@ }, { "question": "TriMet Park & Ride", - "icon": "./assets/data/nsi/logos/trimet-3047f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trimet-3047f4.png", "osmTags": { "and": [ "amenity=parking", @@ -189253,7 +189454,7 @@ }, { "question": "Wilson Parking", - "icon": "./assets/data/nsi/logos/wilsonparking-7fb8ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wilsonparking-7fb8ab.png", "osmTags": { "and": [ "amenity=parking", @@ -189273,7 +189474,7 @@ }, { "question": "WIPARK", - "icon": "./assets/data/nsi/logos/wipark-cf21e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wipark-cf21e1.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189289,7 +189490,7 @@ }, { "question": "Yespark", - "icon": "./assets/data/nsi/logos/yespark-dee437.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yespark-dee437.jpg", "osmTags": { "and": [ "amenity=parking", @@ -189306,7 +189507,7 @@ }, { "question": "Zagrebparking", - "icon": "./assets/data/nsi/logos/zagrebparking-2da37d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zagrebparking-2da37d.svg", "osmTags": { "and": [ "amenity=parking", @@ -189623,7 +189824,7 @@ }, { "question": "威信停車場 Wilson Parking", - "icon": "./assets/data/nsi/logos/wilsonparking-1f7225.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wilsonparking-1f7225.png", "osmTags": { "and": [ "amenity=parking", @@ -189685,7 +189886,7 @@ }, { "question": "Arizona DPS", - "icon": "./assets/data/nsi/logos/arizonadepartmentofpublicsafety-fb4941.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonadepartmentofpublicsafety-fb4941.svg", "osmTags": { "and": [ "amenity=police", @@ -189701,7 +189902,7 @@ }, { "question": "Arma dei Carabinieri", - "icon": "./assets/data/nsi/logos/armadeicarabinieri-f71f16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/armadeicarabinieri-f71f16.jpg", "osmTags": { "and": [ "amenity=police", @@ -189717,7 +189918,7 @@ }, { "question": "Avon and Somerset Police", - "icon": "./assets/data/nsi/logos/avonandsomersetpolice-e37317.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avonandsomersetpolice-e37317.jpg", "osmTags": { "and": [ "amenity=police", @@ -189732,7 +189933,7 @@ }, { "question": "Ayuntamiento de Madrid", - "icon": "./assets/data/nsi/logos/ayuntamientodemadrid-cdff0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-cdff0a.png", "osmTags": { "and": [ "amenity=police", @@ -189756,7 +189957,7 @@ }, { "question": "Baltimore Police Department", - "icon": "./assets/data/nsi/logos/baltimorepolicedepartment-069b69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorepolicedepartment-069b69.jpg", "osmTags": { "and": [ "amenity=police", @@ -189772,7 +189973,7 @@ }, { "question": "Bayerisches Landeskriminalamt", - "icon": "./assets/data/nsi/logos/bayerischeslandeskriminalamt-948feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayerischeslandeskriminalamt-948feb.jpg", "osmTags": { "and": [ "amenity=police", @@ -189788,7 +189989,7 @@ }, { "question": "Bedfordshire Police", - "icon": "./assets/data/nsi/logos/bedfordshirepolice-b0762b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedfordshirepolice-b0762b.jpg", "osmTags": { "and": [ "amenity=police", @@ -189803,7 +190004,7 @@ }, { "question": "Brigada Militar do Rio Grande do Sul", - "icon": "./assets/data/nsi/logos/brigadamilitardoriograndedosul-4f605e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brigadamilitardoriograndedosul-4f605e.jpg", "osmTags": { "and": [ "amenity=police", @@ -189821,7 +190022,7 @@ }, { "question": "British Transport Police", - "icon": "./assets/data/nsi/logos/britishtransportpolice-ad8563.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/britishtransportpolice-ad8563.jpg", "osmTags": { "and": [ "amenity=police", @@ -189836,7 +190037,7 @@ }, { "question": "Bundeskriminalamt (Deutschland)", - "icon": "./assets/data/nsi/logos/bundeskriminalamt-120877.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundeskriminalamt-120877.jpg", "osmTags": { "and": [ "amenity=police", @@ -189852,7 +190053,7 @@ }, { "question": "Bundeskriminalamt (Österreich)", - "icon": "./assets/data/nsi/logos/bundeskriminalamt-6671a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bundeskriminalamt-6671a8.png", "osmTags": { "and": [ "amenity=police", @@ -189868,7 +190069,7 @@ }, { "question": "Bundespolizei (Deutschland)", - "icon": "./assets/data/nsi/logos/bundespolizei-120877.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundespolizei-120877.jpg", "osmTags": { "and": [ "amenity=police", @@ -189884,7 +190085,7 @@ }, { "question": "Bundespolizei (Österreich)", - "icon": "./assets/data/nsi/logos/bundespolizei-6671a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundespolizei-6671a8.svg", "osmTags": { "and": [ "amenity=police", @@ -189899,7 +190100,7 @@ }, { "question": "California Highway Patrol", - "icon": "./assets/data/nsi/logos/californiahighwaypatrol-5ab5b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiahighwaypatrol-5ab5b5.jpg", "osmTags": { "and": [ "amenity=police", @@ -189929,7 +190130,7 @@ }, { "question": "Carabineros de Chile", - "icon": "./assets/data/nsi/logos/carabinerosdechile-2e4672.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/carabinerosdechile-2e4672.svg", "osmTags": { "and": [ "amenity=police", @@ -189944,7 +190145,7 @@ }, { "question": "Cheshire Constabulary", - "icon": "./assets/data/nsi/logos/cheshireconstabulary-e9bc23.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cheshireconstabulary-e9bc23.svg", "osmTags": { "and": [ "amenity=police", @@ -189959,7 +190160,7 @@ }, { "question": "Chicago Police Department", - "icon": "./assets/data/nsi/logos/chicagopolicedepartment-42a893.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagopolicedepartment-42a893.jpg", "osmTags": { "and": [ "amenity=police", @@ -189974,7 +190175,7 @@ }, { "question": "Colorado State Patrol", - "icon": "./assets/data/nsi/logos/coloradostatepatrol-6fe638.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradostatepatrol-6fe638.jpg", "osmTags": { "and": [ "amenity=police", @@ -189990,7 +190191,7 @@ }, { "question": "Comunidad de Madrid", - "icon": "./assets/data/nsi/logos/comunidaddemadrid-cdff0a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-cdff0a.svg", "osmTags": { "and": [ "amenity=police", @@ -190014,7 +190215,7 @@ }, { "question": "Cuerpo Nacional de Policía", - "icon": "./assets/data/nsi/logos/cuerponacionaldepolicia-dd66e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cuerponacionaldepolicia-dd66e9.jpg", "osmTags": { "and": [ "amenity=police", @@ -190032,7 +190233,7 @@ }, { "question": "Cumbria Constabulary", - "icon": "./assets/data/nsi/logos/cumbriaconstabulary-e9bc23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cumbriaconstabulary-e9bc23.jpg", "osmTags": { "and": [ "amenity=police", @@ -190047,7 +190248,7 @@ }, { "question": "Delaware State Police", - "icon": "./assets/data/nsi/logos/delawarestatepolice-255ad0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delawarestatepolice-255ad0.jpg", "osmTags": { "and": [ "amenity=police", @@ -190063,7 +190264,7 @@ }, { "question": "Delhi Police", - "icon": "./assets/data/nsi/logos/delhipolice-d0526a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delhipolice-d0526a.jpg", "osmTags": { "and": [ "amenity=police", @@ -190078,7 +190279,7 @@ }, { "question": "Derbyshire Constabulary", - "icon": "./assets/data/nsi/logos/derbyshireconstabulary-ada603.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derbyshireconstabulary-ada603.jpg", "osmTags": { "and": [ "amenity=police", @@ -190093,7 +190294,7 @@ }, { "question": "Devon and Cornwall Police", - "icon": "./assets/data/nsi/logos/devonandcornwallpolice-4da082.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/devonandcornwallpolice-4da082.jpg", "osmTags": { "and": [ "amenity=police", @@ -190108,7 +190309,7 @@ }, { "question": "DGSN (Algeria)", - "icon": "./assets/data/nsi/logos/directiongeneraledelasuretenationale-1f771a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/directiongeneraledelasuretenationale-1f771a.jpg", "osmTags": { "and": [ "amenity=police", @@ -190126,7 +190327,7 @@ }, { "question": "Direcția Generală de Poliție a Municipiului București", - "icon": "./assets/data/nsi/logos/directiageneraladepolitieamunicipiuluibucuresti-f06bca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/directiageneraladepolitieamunicipiuluibucuresti-f06bca.jpg", "osmTags": { "and": [ "amenity=police", @@ -190141,7 +190342,7 @@ }, { "question": "Dorset Police", - "icon": "./assets/data/nsi/logos/dorsetpolice-51bf4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorsetpolice-51bf4c.jpg", "osmTags": { "and": [ "amenity=police", @@ -190156,7 +190357,7 @@ }, { "question": "Durham Constabulary", - "icon": "./assets/data/nsi/logos/durhamconstabulary-0bde0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/durhamconstabulary-0bde0d.jpg", "osmTags": { "and": [ "amenity=police", @@ -190171,7 +190372,7 @@ }, { "question": "Dyfed–Powys Police", - "icon": "./assets/data/nsi/logos/dyfedpowyspolice-03a321.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dyfedpowyspolice-03a321.jpg", "osmTags": { "and": [ "amenity=police", @@ -190203,7 +190404,7 @@ }, { "question": "Emniyet Genel Müdürlüğü", - "icon": "./assets/data/nsi/logos/emniyetgenelmudurlugu-8fcafc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/emniyetgenelmudurlugu-8fcafc.svg", "osmTags": { "and": [ "amenity=police", @@ -190219,7 +190420,7 @@ }, { "question": "Essex Police", - "icon": "./assets/data/nsi/logos/essexpolice-b0762b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essexpolice-b0762b.jpg", "osmTags": { "and": [ "amenity=police", @@ -190243,7 +190444,7 @@ }, { "question": "Garda Síochána", - "icon": "./assets/data/nsi/logos/gardasiochana-82aa2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gardasiochana-82aa2a.jpg", "osmTags": { "and": [ "amenity=police", @@ -190258,7 +190459,7 @@ }, { "question": "Gendarmería Nacional Argentina", - "icon": "./assets/data/nsi/logos/gendarmerianacionalargentina-e73d55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gendarmerianacionalargentina-e73d55.png", "osmTags": { "and": [ "amenity=police", @@ -190289,7 +190490,7 @@ }, { "question": "Gendarmerie nationale (France)", - "icon": "./assets/data/nsi/logos/gendarmerienationale-714d2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gendarmerienationale-714d2d.jpg", "osmTags": { "and": [ "amenity=police", @@ -190318,7 +190519,7 @@ }, { "question": "Governo do Estado do Rio Grande do Norte", - "icon": "./assets/data/nsi/logos/governodoestadodoriograndedonorte-faf9f7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/governodoestadodoriograndedonorte-faf9f7.svg", "osmTags": { "and": [ "amenity=police", @@ -190347,7 +190548,7 @@ }, { "question": "Guarda Nacional Republicana", - "icon": "./assets/data/nsi/logos/guardanacionalrepublicana-269632.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/guardanacionalrepublicana-269632.svg", "osmTags": { "and": [ "amenity=police", @@ -190362,7 +190563,7 @@ }, { "question": "Guardia Civil", - "icon": "./assets/data/nsi/logos/guardiacivil-dd66e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guardiacivil-dd66e9.jpg", "osmTags": { "and": [ "amenity=police", @@ -190377,7 +190578,7 @@ }, { "question": "Guardia Costiera", - "icon": "./assets/data/nsi/logos/guardiacostiera-f71f16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guardiacostiera-f71f16.jpg", "osmTags": { "and": [ "amenity=police", @@ -190392,7 +190593,7 @@ }, { "question": "Guardia di Finanza", - "icon": "./assets/data/nsi/logos/guardiadifinanza-f71f16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guardiadifinanza-f71f16.jpg", "osmTags": { "and": [ "amenity=police", @@ -190421,7 +190622,7 @@ }, { "question": "Guardia Nacional Bolivariana de Venezuela", - "icon": "./assets/data/nsi/logos/guardianacionalbolivarianadevenezuela-3383b4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/guardianacionalbolivarianadevenezuela-3383b4.svg", "osmTags": { "and": [ "amenity=police", @@ -190455,7 +190656,7 @@ }, { "question": "Halton Regional Police Service", - "icon": "./assets/data/nsi/logos/haltonregionalpoliceservice-ecdb14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haltonregionalpoliceservice-ecdb14.jpg", "osmTags": { "and": [ "amenity=police", @@ -190498,7 +190699,7 @@ }, { "question": "Hessisches Landeskriminalamt", - "icon": "./assets/data/nsi/logos/hessischeslandeskriminalamt-2444f7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hessischeslandeskriminalamt-2444f7.svg", "osmTags": { "and": [ "amenity=police", @@ -190514,7 +190715,7 @@ }, { "question": "Honolulu Police Department", - "icon": "./assets/data/nsi/logos/honolulupolicedepartment-ac982f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/honolulupolicedepartment-ac982f.jpg", "osmTags": { "and": [ "amenity=police", @@ -190529,7 +190730,7 @@ }, { "question": "Humberside Police", - "icon": "./assets/data/nsi/logos/humbersidepolice-96e541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/humbersidepolice-96e541.jpg", "osmTags": { "and": [ "amenity=police", @@ -190544,7 +190745,7 @@ }, { "question": "Idaho State Police", - "icon": "./assets/data/nsi/logos/idahostatepolice-b19a53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahostatepolice-b19a53.jpg", "osmTags": { "and": [ "amenity=police", @@ -190560,7 +190761,7 @@ }, { "question": "Illinois State Police", - "icon": "./assets/data/nsi/logos/illinoisstatepolice-157c12.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoisstatepolice-157c12.png", "osmTags": { "and": [ "amenity=police", @@ -190576,7 +190777,7 @@ }, { "question": "Iowa State Patrol", - "icon": "./assets/data/nsi/logos/iowastatepatrol-61c181.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iowastatepatrol-61c181.jpg", "osmTags": { "and": [ "amenity=police", @@ -190606,7 +190807,7 @@ }, { "question": "Kansas Highway Patrol", - "icon": "./assets/data/nsi/logos/kansashighwaypatrol-9e9805.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kansashighwaypatrol-9e9805.jpg", "osmTags": { "and": [ "amenity=police", @@ -190650,7 +190851,7 @@ }, { "question": "Kantonspolizei Thurgau", - "icon": "./assets/data/nsi/logos/kantonspolizeithurgau-e5b07a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kantonspolizeithurgau-e5b07a.jpg", "osmTags": { "and": [ "amenity=police", @@ -190665,7 +190866,7 @@ }, { "question": "Kantonspolizei Zürich", - "icon": "./assets/data/nsi/logos/kantonspolizeizurich-ad4a21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kantonspolizeizurich-ad4a21.jpg", "osmTags": { "and": [ "amenity=police", @@ -190694,7 +190895,7 @@ }, { "question": "Kepolisian Negara Republik Indonesia", - "icon": "./assets/data/nsi/logos/kepolisiannegararepublikindonesia-d8ba39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kepolisiannegararepublikindonesia-d8ba39.jpg", "osmTags": { "and": [ "amenity=police", @@ -190712,7 +190913,7 @@ }, { "question": "Kerala Police", - "icon": "./assets/data/nsi/logos/keralapolice-d0526a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keralapolice-d0526a.png", "osmTags": { "and": [ "amenity=police", @@ -190738,7 +190939,7 @@ }, { "question": "Lancashire Constabulary", - "icon": "./assets/data/nsi/logos/lancashireconstabulary-e9bc23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancashireconstabulary-e9bc23.jpg", "osmTags": { "and": [ "amenity=police", @@ -190753,7 +190954,7 @@ }, { "question": "Landeskriminalamt Baden-Württemberg", - "icon": "./assets/data/nsi/logos/landeskriminalamtbadenwurttemberg-d0f2fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtbadenwurttemberg-d0f2fb.jpg", "osmTags": { "and": [ "amenity=police", @@ -190799,7 +191000,7 @@ }, { "question": "Landeskriminalamt Bremen", - "icon": "./assets/data/nsi/logos/landeskriminalamtbremen-048619.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtbremen-048619.jpg", "osmTags": { "and": [ "amenity=police", @@ -190845,7 +191046,7 @@ }, { "question": "Landeskriminalamt Niedersachsen", - "icon": "./assets/data/nsi/logos/landeskriminalamtniedersachsen-ce7aa3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtniedersachsen-ce7aa3.png", "osmTags": { "and": [ "amenity=police", @@ -190861,7 +191062,7 @@ }, { "question": "Landeskriminalamt Nordrhein-Westfalen", - "icon": "./assets/data/nsi/logos/landeskriminalamtnordrheinwestfalen-d18cd0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtnordrheinwestfalen-d18cd0.jpg", "osmTags": { "and": [ "amenity=police", @@ -190952,7 +191153,7 @@ }, { "question": "Landeskriminalamt Thüringen", - "icon": "./assets/data/nsi/logos/landeskriminalamtthuringen-87c090.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeskriminalamtthuringen-87c090.jpg", "osmTags": { "and": [ "amenity=police", @@ -190968,7 +191169,7 @@ }, { "question": "Landespolizeidirektion Niederösterreich", - "icon": "./assets/data/nsi/logos/landespolizeidirektionniederosterreich-890ad1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landespolizeidirektionniederosterreich-890ad1.jpg", "osmTags": { "and": [ "amenity=police", @@ -190983,7 +191184,7 @@ }, { "question": "Leicestershire Police", - "icon": "./assets/data/nsi/logos/leicestershirepolice-ada603.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leicestershirepolice-ada603.jpg", "osmTags": { "and": [ "amenity=police", @@ -190998,7 +191199,7 @@ }, { "question": "Lincolnshire Police", - "icon": "./assets/data/nsi/logos/lincolnshirepolice-ada603.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnshirepolice-ada603.jpg", "osmTags": { "and": [ "amenity=police", @@ -191013,7 +191214,7 @@ }, { "question": "Los Angeles Police Department", - "icon": "./assets/data/nsi/logos/losangelespolicedepartment-624635.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelespolicedepartment-624635.jpg", "osmTags": { "and": [ "amenity=police", @@ -191030,7 +191231,7 @@ }, { "question": "Luzerner Polizei", - "icon": "./assets/data/nsi/logos/luzernerpolizei-830d3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luzernerpolizei-830d3c.jpg", "osmTags": { "and": [ "amenity=police", @@ -191045,7 +191246,7 @@ }, { "question": "Maryland State Police", - "icon": "./assets/data/nsi/logos/marylandstatepolice-a9f0a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marylandstatepolice-a9f0a0.jpg", "osmTags": { "and": [ "amenity=police", @@ -191061,7 +191262,7 @@ }, { "question": "Massachusetts State Police", - "icon": "./assets/data/nsi/logos/massachusettsstatepolice-63829a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/massachusettsstatepolice-63829a.jpg", "osmTags": { "and": [ "amenity=police", @@ -191105,7 +191306,7 @@ }, { "question": "Metropolitan Police (London)", - "icon": "./assets/data/nsi/logos/metropolitanpolice-018d65.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolitanpolice-018d65.svg", "osmTags": { "and": [ "amenity=police", @@ -191120,7 +191321,7 @@ }, { "question": "Metropolitan Police Department (Washington DC)", - "icon": "./assets/data/nsi/logos/metropolitanpolicedepartment-90e1c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolitanpolicedepartment-90e1c9.jpg", "osmTags": { "and": [ "amenity=police", @@ -191194,7 +191395,7 @@ }, { "question": "Ministerio del Poder Popular para Relaciones Interiores, Justicia y Paz", - "icon": "./assets/data/nsi/logos/ministeriodelpoderpopularpararelacionesinterioresjusticiaypaz-3383b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodelpoderpopularpararelacionesinterioresjusticiaypaz-3383b4.png", "osmTags": { "and": [ "amenity=police", @@ -191209,7 +191410,7 @@ }, { "question": "Ministry of the Interior (Angola)", - "icon": "./assets/data/nsi/logos/ministryoftheinterior-d05393.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryoftheinterior-d05393.svg", "osmTags": { "and": [ "amenity=police", @@ -191225,7 +191426,7 @@ }, { "question": "Mississippi Highway Patrol", - "icon": "./assets/data/nsi/logos/mississippihighwaypatrol-6f856a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippihighwaypatrol-6f856a.jpg", "osmTags": { "and": [ "amenity=police", @@ -191241,7 +191442,7 @@ }, { "question": "Montana Highway Patrol", - "icon": "./assets/data/nsi/logos/montanahighwaypatrol-ac9f9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montanahighwaypatrol-ac9f9b.jpg", "osmTags": { "and": [ "amenity=police", @@ -191257,7 +191458,7 @@ }, { "question": "Mossos d'Esquadra", - "icon": "./assets/data/nsi/logos/mossosdesquadra-dd66e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mossosdesquadra-dd66e9.jpg", "osmTags": { "and": [ "amenity=police", @@ -191286,7 +191487,7 @@ }, { "question": "NAMPOL", - "icon": "./assets/data/nsi/logos/nampol-292e37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nampol-292e37.jpg", "osmTags": { "and": [ "amenity=police", @@ -191301,7 +191502,7 @@ }, { "question": "Nationale Politie", - "icon": "./assets/data/nsi/logos/nationalepolitie-5cfdc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalepolitie-5cfdc8.jpg", "osmTags": { "and": [ "amenity=police", @@ -191331,7 +191532,7 @@ }, { "question": "Nepal Police", - "icon": "./assets/data/nsi/logos/nepalpolice-f1d71d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nepalpolice-f1d71d.png", "osmTags": { "and": [ "amenity=police", @@ -191363,7 +191564,7 @@ }, { "question": "New Jersey State Police", - "icon": "./assets/data/nsi/logos/newjerseystatepolice-0f60fd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newjerseystatepolice-0f60fd.jpg", "osmTags": { "and": [ "amenity=police", @@ -191379,7 +191580,7 @@ }, { "question": "New Mexico State Police", - "icon": "./assets/data/nsi/logos/newmexicostatepolice-09cc93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newmexicostatepolice-09cc93.jpg", "osmTags": { "and": [ "amenity=police", @@ -191395,7 +191596,7 @@ }, { "question": "New York Police Department", - "icon": "./assets/data/nsi/logos/newyorkpolicedepartment-13fd26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkpolicedepartment-13fd26.jpg", "osmTags": { "and": [ "amenity=police", @@ -191412,7 +191613,7 @@ }, { "question": "New York State Police", - "icon": "./assets/data/nsi/logos/newyorkstatepolice-67ecfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatepolice-67ecfd.jpg", "osmTags": { "and": [ "amenity=police", @@ -191428,7 +191629,7 @@ }, { "question": "New Zealand Police", - "icon": "./assets/data/nsi/logos/newzealandpolice-6de575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newzealandpolice-6de575.jpg", "osmTags": { "and": [ "amenity=police", @@ -191443,7 +191644,7 @@ }, { "question": "Nordjyllands Politi", - "icon": "./assets/data/nsi/logos/nordjyllandspoliti-f27ed8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nordjyllandspoliti-f27ed8.png", "osmTags": { "and": [ "amenity=police", @@ -191458,7 +191659,7 @@ }, { "question": "Norfolk Constabulary", - "icon": "./assets/data/nsi/logos/norfolkconstabulary-b0762b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolkconstabulary-b0762b.jpg", "osmTags": { "and": [ "amenity=police", @@ -191473,7 +191674,7 @@ }, { "question": "North Carolina State Highway Patrol", - "icon": "./assets/data/nsi/logos/northcarolinastatehighwaypatrol-eadf83.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northcarolinastatehighwaypatrol-eadf83.png", "osmTags": { "and": [ "amenity=police", @@ -191489,7 +191690,7 @@ }, { "question": "North Dakota Highway Patrol", - "icon": "./assets/data/nsi/logos/northdakotahighwaypatrol-be4496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northdakotahighwaypatrol-be4496.jpg", "osmTags": { "and": [ "amenity=police", @@ -191521,7 +191722,7 @@ }, { "question": "North Yorkshire Police", - "icon": "./assets/data/nsi/logos/northyorkshirepolice-96e541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northyorkshirepolice-96e541.jpg", "osmTags": { "and": [ "amenity=police", @@ -191536,7 +191737,7 @@ }, { "question": "Northern Territory Police Force", - "icon": "./assets/data/nsi/logos/northernterritorypoliceforce-fa07c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernterritorypoliceforce-fa07c9.jpg", "osmTags": { "and": [ "amenity=police", @@ -191551,7 +191752,7 @@ }, { "question": "Northumbria Police", - "icon": "./assets/data/nsi/logos/northumbriapolice-0bde0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northumbriapolice-0bde0d.jpg", "osmTags": { "and": [ "amenity=police", @@ -191566,7 +191767,7 @@ }, { "question": "Nottinghamshire Police", - "icon": "./assets/data/nsi/logos/nottinghamshirepolice-ada603.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nottinghamshirepolice-ada603.jpg", "osmTags": { "and": [ "amenity=police", @@ -191581,7 +191782,7 @@ }, { "question": "NSW Police Force", - "icon": "./assets/data/nsi/logos/nswpoliceforce-4d9f38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswpoliceforce-4d9f38.jpg", "osmTags": { "and": [ "amenity=police", @@ -191596,7 +191797,7 @@ }, { "question": "Ontario Provincial Police", - "icon": "./assets/data/nsi/logos/ontarioprovincialpolice-ecdb14.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ontarioprovincialpolice-ecdb14.png", "osmTags": { "and": [ "amenity=police", @@ -191611,7 +191812,7 @@ }, { "question": "Oregon State Police", - "icon": "./assets/data/nsi/logos/oregonstatepolice-c23f57.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oregonstatepolice-c23f57.png", "osmTags": { "and": [ "amenity=police", @@ -191627,7 +191828,7 @@ }, { "question": "Ottawa Police Service", - "icon": "./assets/data/nsi/logos/ottawapoliceservice-ecdb14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottawapoliceservice-ecdb14.jpg", "osmTags": { "and": [ "amenity=police", @@ -191657,7 +191858,7 @@ }, { "question": "Philippine National Police", - "icon": "./assets/data/nsi/logos/philippinenationalpolice-959114.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/philippinenationalpolice-959114.jpg", "osmTags": { "and": [ "amenity=police", @@ -191673,7 +191874,7 @@ }, { "question": "Poder Judicial (Costa Rica)", - "icon": "./assets/data/nsi/logos/poderjudicial-05938a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/poderjudicial-05938a.svg", "osmTags": { "and": [ "amenity=police", @@ -191688,7 +191889,7 @@ }, { "question": "Policajný zbor", - "icon": "./assets/data/nsi/logos/policajnyzbor-546d53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policajnyzbor-546d53.jpg", "osmTags": { "and": [ "amenity=police", @@ -191704,7 +191905,7 @@ }, { "question": "Police nationale (France)", - "icon": "./assets/data/nsi/logos/policenationale-714d2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policenationale-714d2d.jpg", "osmTags": { "and": [ "amenity=police", @@ -191719,7 +191920,7 @@ }, { "question": "Police Scotland", - "icon": "./assets/data/nsi/logos/policescotland-ad9c86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policescotland-ad9c86.jpg", "osmTags": { "and": [ "amenity=police", @@ -191734,7 +191935,7 @@ }, { "question": "Police Service of Northern Ireland", - "icon": "./assets/data/nsi/logos/policeserviceofnorthernireland-e79ac6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policeserviceofnorthernireland-e79ac6.jpg", "osmTags": { "and": [ "amenity=police", @@ -191763,7 +191964,7 @@ }, { "question": "Polícia Civil do Estado da Bahia", - "icon": "./assets/data/nsi/logos/policiacivildoestadodabahia-199ea7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodabahia-199ea7.jpg", "osmTags": { "and": [ "amenity=police", @@ -191778,7 +191979,7 @@ }, { "question": "Polícia Civil do Estado de Minas Gerais", - "icon": "./assets/data/nsi/logos/policiacivildoestadodeminasgerais-5eef66.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodeminasgerais-5eef66.png", "osmTags": { "and": [ "amenity=police", @@ -191793,7 +191994,7 @@ }, { "question": "Polícia Civil do Estado de Santa Catarina", - "icon": "./assets/data/nsi/logos/policiacivildoestadodesantacatarina-5a51ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodesantacatarina-5a51ec.jpg", "osmTags": { "and": [ "amenity=police", @@ -191808,7 +192009,7 @@ }, { "question": "Polícia Civil do Estado de São Paulo", - "icon": "./assets/data/nsi/logos/policiacivildoestadodesaopaulo-0df637.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodesaopaulo-0df637.png", "osmTags": { "and": [ "amenity=police", @@ -191823,7 +192024,7 @@ }, { "question": "Polícia Civil do Estado do Espírito Santo", - "icon": "./assets/data/nsi/logos/policiacivildoestadodoespiritosanto-cf5b75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiacivildoestadodoespiritosanto-cf5b75.jpg", "osmTags": { "and": [ "amenity=police", @@ -191838,7 +192039,7 @@ }, { "question": "Policía de Catamarca", - "icon": "./assets/data/nsi/logos/policiadecatamarca-6fa7f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadecatamarca-6fa7f7.jpg", "osmTags": { "and": [ "amenity=police", @@ -191853,7 +192054,7 @@ }, { "question": "Policía de la Ciudad", - "icon": "./assets/data/nsi/logos/policiadelaciudad-c38488.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelaciudad-c38488.jpg", "osmTags": { "and": [ "amenity=police", @@ -191868,7 +192069,7 @@ }, { "question": "Policía de La Pampa", - "icon": "./assets/data/nsi/logos/policiadelapampa-4021d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelapampa-4021d5.png", "osmTags": { "and": [ "amenity=police", @@ -191883,7 +192084,7 @@ }, { "question": "Policía de la Provincia de Buenos Aires", - "icon": "./assets/data/nsi/logos/policiadelaprovinciadebuenosaires-c38488.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadebuenosaires-c38488.png", "osmTags": { "and": [ "amenity=police", @@ -191898,7 +192099,7 @@ }, { "question": "Policía de la Provincia de Córdoba", - "icon": "./assets/data/nsi/logos/policiadelaprovinciadecordoba-ed1bd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadecordoba-ed1bd8.jpg", "osmTags": { "and": [ "amenity=police", @@ -191913,7 +192114,7 @@ }, { "question": "Policía de la Provincia de Entre Ríos", - "icon": "./assets/data/nsi/logos/policiadelaprovinciadeentrerios-c437f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadeentrerios-c437f3.jpg", "osmTags": { "and": [ "amenity=police", @@ -191928,7 +192129,7 @@ }, { "question": "Policía de la Provincia de Misiones", - "icon": "./assets/data/nsi/logos/policiadelaprovinciademisiones-b3f80b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciademisiones-b3f80b.jpg", "osmTags": { "and": [ "amenity=police", @@ -191943,7 +192144,7 @@ }, { "question": "Policía de la Provincia de Neuquén", - "icon": "./assets/data/nsi/logos/policiadelaprovinciadeneuquen-2ae00c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadeneuquen-2ae00c.jpg", "osmTags": { "and": [ "amenity=police", @@ -191958,7 +192159,7 @@ }, { "question": "Policía de la Provincia de Santa Fe", - "icon": "./assets/data/nsi/logos/policiadelaprovinciadesantafe-6f8c3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadelaprovinciadesantafe-6f8c3b.jpg", "osmTags": { "and": [ "amenity=police", @@ -191973,7 +192174,7 @@ }, { "question": "Policía de Río Negro", - "icon": "./assets/data/nsi/logos/policiaderionegro-124cf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiaderionegro-124cf2.jpg", "osmTags": { "and": [ "amenity=police", @@ -191988,7 +192189,7 @@ }, { "question": "Policía de Santiago del Estero", - "icon": "./assets/data/nsi/logos/policiadesantiagodelestero-dbd40a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadesantiagodelestero-dbd40a.jpg", "osmTags": { "and": [ "amenity=police", @@ -192003,7 +192204,7 @@ }, { "question": "Polícia de Segurança Pública (Portugal)", - "icon": "./assets/data/nsi/logos/policiadesegurancapublica-269632.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiadesegurancapublica-269632.svg", "osmTags": { "and": [ "amenity=police", @@ -192036,7 +192237,7 @@ }, { "question": "Policía Federal Argentina", - "icon": "./assets/data/nsi/logos/policiafederalargentina-e73d55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiafederalargentina-e73d55.jpg", "osmTags": { "and": [ "amenity=police", @@ -192051,7 +192252,7 @@ }, { "question": "Polícia Federal do Brasil", - "icon": "./assets/data/nsi/logos/policiafederaldobrasil-f7f40a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiafederaldobrasil-f7f40a.jpg", "osmTags": { "and": [ "amenity=police", @@ -192082,7 +192283,7 @@ }, { "question": "Polícia Militar da Bahia", - "icon": "./assets/data/nsi/logos/policiamilitardabahia-199ea7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardabahia-199ea7.jpg", "osmTags": { "and": [ "amenity=police", @@ -192098,7 +192299,7 @@ }, { "question": "Polícia Militar da Paraíba", - "icon": "./assets/data/nsi/logos/policiamilitardaparaiba-1b5ab8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardaparaiba-1b5ab8.png", "osmTags": { "and": [ "amenity=police", @@ -192114,7 +192315,7 @@ }, { "question": "Polícia Militar de Alagoas", - "icon": "./assets/data/nsi/logos/policiamilitardealagoas-2ac7dd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardealagoas-2ac7dd.png", "osmTags": { "and": [ "amenity=police", @@ -192130,7 +192331,7 @@ }, { "question": "Polícia Militar de Mato Grosso do Sul", - "icon": "./assets/data/nsi/logos/policiamilitardematogrossodosul-7dcdd9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardematogrossodosul-7dcdd9.png", "osmTags": { "and": [ "amenity=police", @@ -192146,7 +192347,7 @@ }, { "question": "Polícia Militar de Minas Gerais", - "icon": "./assets/data/nsi/logos/policiamilitardeminasgerais-5eef66.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardeminasgerais-5eef66.png", "osmTags": { "and": [ "amenity=police", @@ -192162,7 +192363,7 @@ }, { "question": "Polícia Militar de Pernambuco", - "icon": "./assets/data/nsi/logos/policiamilitardepernambuco-e16786.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardepernambuco-e16786.png", "osmTags": { "and": [ "amenity=police", @@ -192178,7 +192379,7 @@ }, { "question": "Polícia Militar de Roraima", - "icon": "./assets/data/nsi/logos/policiamilitarderoraima-800492.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitarderoraima-800492.gif", "osmTags": { "and": [ "amenity=police", @@ -192194,7 +192395,7 @@ }, { "question": "Polícia Militar do Amazonas", - "icon": "./assets/data/nsi/logos/policiamilitardoamazonas-a3a7cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoamazonas-a3a7cc.png", "osmTags": { "and": [ "amenity=police", @@ -192210,7 +192411,7 @@ }, { "question": "Polícia Militar do Distrito Federal", - "icon": "./assets/data/nsi/logos/policiamilitardodistritofederal-50c96d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardodistritofederal-50c96d.png", "osmTags": { "and": [ "amenity=police", @@ -192226,7 +192427,7 @@ }, { "question": "Polícia Militar do Estado de Goiás", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodegoias-e8990e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodegoias-e8990e.png", "osmTags": { "and": [ "amenity=police", @@ -192242,7 +192443,7 @@ }, { "question": "Polícia Militar do Estado de Mato Grosso", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodematogrosso-bede3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodematogrosso-bede3c.png", "osmTags": { "and": [ "amenity=police", @@ -192258,7 +192459,7 @@ }, { "question": "Polícia Militar do Estado de Rondônia", - "icon": "./assets/data/nsi/logos/policiamilitardoestadoderondonia-200a68.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadoderondonia-200a68.png", "osmTags": { "and": [ "amenity=police", @@ -192274,7 +192475,7 @@ }, { "question": "Polícia Militar do Estado de Santa Catarina", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodesantacatarina-5a51ec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodesantacatarina-5a51ec.png", "osmTags": { "and": [ "amenity=police", @@ -192290,7 +192491,7 @@ }, { "question": "Polícia Militar do Estado de São Paulo", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodesaopaulo-0df637.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodesaopaulo-0df637.gif", "osmTags": { "and": [ "amenity=police", @@ -192306,7 +192507,7 @@ }, { "question": "Polícia Militar do Estado de Sergipe", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodesergipe-8453d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodesergipe-8453d9.png", "osmTags": { "and": [ "amenity=police", @@ -192322,7 +192523,7 @@ }, { "question": "Polícia Militar do Estado do Acre", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodoacre-b5c2fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoacre-b5c2fc.png", "osmTags": { "and": [ "amenity=police", @@ -192338,7 +192539,7 @@ }, { "question": "Polícia Militar do Estado do Amapá", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodoamapa-b9253d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoamapa-b9253d.png", "osmTags": { "and": [ "amenity=police", @@ -192354,7 +192555,7 @@ }, { "question": "Polícia Militar do Estado do Ceará", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodoceara-e543dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoceara-e543dc.png", "osmTags": { "and": [ "amenity=police", @@ -192370,7 +192571,7 @@ }, { "question": "Polícia Militar do Estado do Espírito Santo", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodoespiritosanto-cf5b75.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoespiritosanto-cf5b75.png", "osmTags": { "and": [ "amenity=police", @@ -192386,7 +192587,7 @@ }, { "question": "Polícia Militar do Estado do Maranhão", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodomaranhao-222628.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodomaranhao-222628.png", "osmTags": { "and": [ "amenity=police", @@ -192402,7 +192603,7 @@ }, { "question": "Polícia Militar do Estado do Pará", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodopara-d9607c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodopara-d9607c.png", "osmTags": { "and": [ "amenity=police", @@ -192433,7 +192634,7 @@ }, { "question": "Polícia Militar do Estado do Rio de Janeiro", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodoriodejaneiro-347580.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoriodejaneiro-347580.jpg", "osmTags": { "and": [ "amenity=police", @@ -192449,7 +192650,7 @@ }, { "question": "Polícia Militar do Estado do Rio Grande do Norte", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodoriograndedonorte-faf9f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodoriograndedonorte-faf9f7.jpg", "osmTags": { "and": [ "amenity=police", @@ -192465,7 +192666,7 @@ }, { "question": "Polícia Militar do Estado do Tocantins", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodotocantins-624e2f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodotocantins-624e2f.png", "osmTags": { "and": [ "amenity=police", @@ -192481,7 +192682,7 @@ }, { "question": "Polícia Militar do Paraná", - "icon": "./assets/data/nsi/logos/policiamilitardoparana-6e8c53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoparana-6e8c53.png", "osmTags": { "and": [ "amenity=police", @@ -192497,7 +192698,7 @@ }, { "question": "Policía Nacional Bolivariana", - "icon": "./assets/data/nsi/logos/policianacionalbolivariana-3383b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policianacionalbolivariana-3383b4.png", "osmTags": { "and": [ "amenity=police", @@ -192515,7 +192716,7 @@ }, { "question": "Policía Nacional de Bolivia", - "icon": "./assets/data/nsi/logos/policianacionaldebolivia-23a32a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policianacionaldebolivia-23a32a.jpg", "osmTags": { "and": [ "amenity=police", @@ -192531,7 +192732,7 @@ }, { "question": "Policía Nacional de Colombia", - "icon": "./assets/data/nsi/logos/policianacionaldecolombia-057a57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policianacionaldecolombia-057a57.jpg", "osmTags": { "and": [ "amenity=police", @@ -192546,7 +192747,7 @@ }, { "question": "Policía Nacional de Panama", - "icon": "./assets/data/nsi/logos/policianacionaldepanama-8db086.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policianacionaldepanama-8db086.png", "osmTags": { "and": [ "amenity=police", @@ -192561,7 +192762,7 @@ }, { "question": "Policía Nacional de Paraguay", - "icon": "./assets/data/nsi/logos/policianacionaldeparaguay-fe76ea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policianacionaldeparaguay-fe76ea.jpg", "osmTags": { "and": [ "amenity=police", @@ -192577,7 +192778,7 @@ }, { "question": "Policía Nacional de Uruguay", - "icon": "./assets/data/nsi/logos/policianacionaldeuruguay-2c325e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policianacionaldeuruguay-2c325e.png", "osmTags": { "and": [ "amenity=police", @@ -192606,7 +192807,7 @@ }, { "question": "Policía Nacional del Perú", - "icon": "./assets/data/nsi/logos/policianacionaldelperu-67e8f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policianacionaldelperu-67e8f0.jpg", "osmTags": { "and": [ "amenity=police", @@ -192636,7 +192837,7 @@ }, { "question": "Polícia Rodoviária Federal", - "icon": "./assets/data/nsi/logos/policiarodoviariafederal-f7f40a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiarodoviariafederal-f7f40a.jpg", "osmTags": { "and": [ "amenity=police", @@ -192651,7 +192852,7 @@ }, { "question": "Policja", - "icon": "./assets/data/nsi/logos/policja-821ef5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policja-821ef5.jpg", "osmTags": { "and": [ "amenity=police", @@ -192666,7 +192867,7 @@ }, { "question": "Polis Diraja Malaysia", - "icon": "./assets/data/nsi/logos/polisdirajamalaysia-6c0ab9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/polisdirajamalaysia-6c0ab9.svg", "osmTags": { "and": [ "amenity=police", @@ -192681,7 +192882,7 @@ }, { "question": "Polizei Baden-Württemberg", - "icon": "./assets/data/nsi/logos/polizeibadenwurttemberg-d0f2fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeibadenwurttemberg-d0f2fb.png", "osmTags": { "and": [ "amenity=police", @@ -192696,7 +192897,7 @@ }, { "question": "Polizei Bayern", - "icon": "./assets/data/nsi/logos/polizeibayern-948feb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeibayern-948feb.jpg", "osmTags": { "and": [ "amenity=police", @@ -192711,7 +192912,7 @@ }, { "question": "Polizei Berlin", - "icon": "./assets/data/nsi/logos/polizeiberlin-d728c1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeiberlin-d728c1.svg", "osmTags": { "and": [ "amenity=police", @@ -192726,7 +192927,7 @@ }, { "question": "Polizei Brandenburg", - "icon": "./assets/data/nsi/logos/polizeibrandenburg-e64180.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeibrandenburg-e64180.jpg", "osmTags": { "and": [ "amenity=police", @@ -192741,7 +192942,7 @@ }, { "question": "Polizei Bremen", - "icon": "./assets/data/nsi/logos/polizeibremen-048619.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeibremen-048619.jpg", "osmTags": { "and": [ "amenity=police", @@ -192756,7 +192957,7 @@ }, { "question": "Polizei Hamburg", - "icon": "./assets/data/nsi/logos/polizeihamburg-a93b62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeihamburg-a93b62.jpg", "osmTags": { "and": [ "amenity=police", @@ -192771,7 +192972,7 @@ }, { "question": "Polizei Hessen", - "icon": "./assets/data/nsi/logos/polizeihessen-2444f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeihessen-2444f7.jpg", "osmTags": { "and": [ "amenity=police", @@ -192786,7 +192987,7 @@ }, { "question": "Polizei Mecklenburg-Vorpommern", - "icon": "./assets/data/nsi/logos/polizeimecklenburgvorpommern-f418f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeimecklenburgvorpommern-f418f5.jpg", "osmTags": { "and": [ "amenity=police", @@ -192801,7 +193002,7 @@ }, { "question": "Polizei Niedersachsen", - "icon": "./assets/data/nsi/logos/polizeiniedersachsen-ce7aa3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeiniedersachsen-ce7aa3.jpg", "osmTags": { "and": [ "amenity=police", @@ -192816,7 +193017,7 @@ }, { "question": "Polizei Nordrhein-Westfalen", - "icon": "./assets/data/nsi/logos/polizeinordrheinwestfalen-d18cd0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeinordrheinwestfalen-d18cd0.svg", "osmTags": { "and": [ "amenity=police", @@ -192831,7 +193032,7 @@ }, { "question": "Polizei Rheinland-Pfalz", - "icon": "./assets/data/nsi/logos/polizeirheinlandpfalz-78e8a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeirheinlandpfalz-78e8a1.jpg", "osmTags": { "and": [ "amenity=police", @@ -192846,7 +193047,7 @@ }, { "question": "Polizei Saarland", - "icon": "./assets/data/nsi/logos/polizeisaarland-66d9ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeisaarland-66d9ba.jpg", "osmTags": { "and": [ "amenity=police", @@ -192861,7 +193062,7 @@ }, { "question": "Polizei Sachsen", - "icon": "./assets/data/nsi/logos/polizeisachsen-d7cb22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeisachsen-d7cb22.jpg", "osmTags": { "and": [ "amenity=police", @@ -192876,7 +193077,7 @@ }, { "question": "Polizei Sachsen-Anhalt", - "icon": "./assets/data/nsi/logos/polizeisachsenanhalt-0fb907.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeisachsenanhalt-0fb907.svg", "osmTags": { "and": [ "amenity=police", @@ -192891,7 +193092,7 @@ }, { "question": "Polizei Schleswig-Holstein", - "icon": "./assets/data/nsi/logos/polizeischleswigholstein-f07ddc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polizeischleswigholstein-f07ddc.jpg", "osmTags": { "and": [ "amenity=police", @@ -192929,7 +193130,7 @@ }, { "question": "Polizia di Stato", - "icon": "./assets/data/nsi/logos/poliziadistato-f71f16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poliziadistato-f71f16.jpg", "osmTags": { "and": [ "amenity=police", @@ -192944,7 +193145,7 @@ }, { "question": "Prefectura Naval Argentina", - "icon": "./assets/data/nsi/logos/prefecturanavalargentina-e73d55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefecturanavalargentina-e73d55.jpg", "osmTags": { "and": [ "amenity=police", @@ -192975,7 +193176,7 @@ }, { "question": "Pulizija ta' Malta", - "icon": "./assets/data/nsi/logos/pulizijatamalta-67380b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pulizijatamalta-67380b.jpg", "osmTags": { "and": [ "amenity=police", @@ -192990,7 +193191,7 @@ }, { "question": "Punjab Police (India)", - "icon": "./assets/data/nsi/logos/punjabpolice-d0526a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/punjabpolice-d0526a.jpg", "osmTags": { "and": [ "amenity=police", @@ -193019,7 +193220,7 @@ }, { "question": "Queensland Police Service", - "icon": "./assets/data/nsi/logos/queenslandpoliceservice-079051.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/queenslandpoliceservice-079051.jpg", "osmTags": { "and": [ "amenity=police", @@ -193034,7 +193235,7 @@ }, { "question": "Regione Siciliana", - "icon": "./assets/data/nsi/logos/regionesiciliana-6a6f8c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/regionesiciliana-6a6f8c.svg", "osmTags": { "and": [ "amenity=police", @@ -193049,7 +193250,7 @@ }, { "question": "Royal Canadian Mounted Police", - "icon": "./assets/data/nsi/logos/royalcanadianmountedpolice-b69ec0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalcanadianmountedpolice-b69ec0.jpg", "osmTags": { "and": [ "amenity=police", @@ -193065,7 +193266,7 @@ }, { "question": "Royal Newfoundland Constabulary", - "icon": "./assets/data/nsi/logos/royalnewfoundlandconstabulary-40e165.png", + "icon": "https://data.mapcomplete.org/nsi//logos/royalnewfoundlandconstabulary-40e165.png", "osmTags": { "and": [ "amenity=police", @@ -193096,7 +193297,7 @@ }, { "question": "Royal Thai Police", - "icon": "./assets/data/nsi/logos/royalthaipolice-951c56.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalthaipolice-951c56.svg", "osmTags": { "and": [ "amenity=police", @@ -193128,7 +193329,7 @@ }, { "question": "San Bernardino County Sheriff's Department", - "icon": "./assets/data/nsi/logos/sanbernardinocountysheriffsdepartment-5ab5b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanbernardinocountysheriffsdepartment-5ab5b5.png", "osmTags": { "and": [ "amenity=police", @@ -193181,7 +193382,7 @@ }, { "question": "Service de police de la ville de Montréal", - "icon": "./assets/data/nsi/logos/servicedepolicedelavilledemontreal-abba03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicedepolicedelavilledemontreal-abba03.jpg", "osmTags": { "and": [ "amenity=police", @@ -193196,7 +193397,7 @@ }, { "question": "South African Police Service", - "icon": "./assets/data/nsi/logos/southafricanpoliceservice-3a04a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southafricanpoliceservice-3a04a0.jpg", "osmTags": { "and": [ "amenity=police", @@ -193212,7 +193413,7 @@ }, { "question": "South Australia Police", - "icon": "./assets/data/nsi/logos/southaustraliapolice-6b6db7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southaustraliapolice-6b6db7.jpg", "osmTags": { "and": [ "amenity=police", @@ -193227,7 +193428,7 @@ }, { "question": "South Dakota Highway Patrol", - "icon": "./assets/data/nsi/logos/southdakotahighwaypatrol-ce37ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southdakotahighwaypatrol-ce37ff.jpg", "osmTags": { "and": [ "amenity=police", @@ -193259,7 +193460,7 @@ }, { "question": "South Yorkshire Police", - "icon": "./assets/data/nsi/logos/southyorkshirepolice-96e541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southyorkshirepolice-96e541.jpg", "osmTags": { "and": [ "amenity=police", @@ -193274,7 +193475,7 @@ }, { "question": "Sri Lanka Police", - "icon": "./assets/data/nsi/logos/srilankapolice-28cf45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/srilankapolice-28cf45.png", "osmTags": { "and": [ "amenity=police", @@ -193317,7 +193518,7 @@ }, { "question": "Suffolk Constabulary", - "icon": "./assets/data/nsi/logos/suffolkconstabulary-b0762b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suffolkconstabulary-b0762b.jpg", "osmTags": { "and": [ "amenity=police", @@ -193332,7 +193533,7 @@ }, { "question": "Sûreté du Québec", - "icon": "./assets/data/nsi/logos/sureteduquebec-abba03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sureteduquebec-abba03.png", "osmTags": { "and": [ "amenity=police", @@ -193362,7 +193563,7 @@ }, { "question": "Sussex Police", - "icon": "./assets/data/nsi/logos/sussexpolice-297ebf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sussexpolice-297ebf.jpg", "osmTags": { "and": [ "amenity=police", @@ -193414,7 +193615,7 @@ }, { "question": "Tasmania Police", - "icon": "./assets/data/nsi/logos/tasmaniapolice-9b55cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tasmaniapolice-9b55cd.jpg", "osmTags": { "and": [ "amenity=police", @@ -193429,7 +193630,7 @@ }, { "question": "Texas Highway Patrol", - "icon": "./assets/data/nsi/logos/texashighwaypatrol-d15be5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texashighwaypatrol-d15be5.jpg", "osmTags": { "and": [ "amenity=police", @@ -193445,7 +193646,7 @@ }, { "question": "Texas Rangers", - "icon": "./assets/data/nsi/logos/texasrangerdivision-d15be5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasrangerdivision-d15be5.jpg", "osmTags": { "and": [ "amenity=police", @@ -193461,7 +193662,7 @@ }, { "question": "Thames Valley Police", - "icon": "./assets/data/nsi/logos/thamesvalleypolice-01cccd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/thamesvalleypolice-01cccd.svg", "osmTags": { "and": [ "amenity=police", @@ -193476,7 +193677,7 @@ }, { "question": "Thüringer Polizei", - "icon": "./assets/data/nsi/logos/thuringerpolizei-87c090.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thuringerpolizei-87c090.jpg", "osmTags": { "and": [ "amenity=police", @@ -193491,7 +193692,7 @@ }, { "question": "Toronto Police Service", - "icon": "./assets/data/nsi/logos/torontopoliceservice-ecdb14.png", + "icon": "https://data.mapcomplete.org/nsi//logos/torontopoliceservice-ecdb14.png", "osmTags": { "and": [ "amenity=police", @@ -193522,7 +193723,7 @@ }, { "question": "United States Park Police", - "icon": "./assets/data/nsi/logos/unitedstatesparkpolice-04d52e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesparkpolice-04d52e.jpg", "osmTags": { "and": [ "amenity=police", @@ -193538,7 +193739,7 @@ }, { "question": "Utah Highway Patrol", - "icon": "./assets/data/nsi/logos/utahhighwaypatrol-b507af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/utahhighwaypatrol-b507af.jpg", "osmTags": { "and": [ "amenity=police", @@ -193554,7 +193755,7 @@ }, { "question": "Victoria Police", - "icon": "./assets/data/nsi/logos/victoriapolice-808201.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/victoriapolice-808201.jpg", "osmTags": { "and": [ "amenity=police", @@ -193569,7 +193770,7 @@ }, { "question": "Warwickshire Police", - "icon": "./assets/data/nsi/logos/warwickshirepolice-0d427b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warwickshirepolice-0d427b.jpg", "osmTags": { "and": [ "amenity=police", @@ -193584,7 +193785,7 @@ }, { "question": "Washington State Patrol", - "icon": "./assets/data/nsi/logos/washingtonstatepatrol-5dd6e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonstatepatrol-5dd6e3.jpg", "osmTags": { "and": [ "amenity=police", @@ -193600,7 +193801,7 @@ }, { "question": "West Mercia Police", - "icon": "./assets/data/nsi/logos/westmerciapolice-0d427b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westmerciapolice-0d427b.jpg", "osmTags": { "and": [ "amenity=police", @@ -193615,7 +193816,7 @@ }, { "question": "West Midlands Police", - "icon": "./assets/data/nsi/logos/westmidlandspolice-0d427b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westmidlandspolice-0d427b.svg", "osmTags": { "and": [ "amenity=police", @@ -193630,7 +193831,7 @@ }, { "question": "West Yorkshire Police", - "icon": "./assets/data/nsi/logos/westyorkshirepolice-96e541.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westyorkshirepolice-96e541.svg", "osmTags": { "and": [ "amenity=police", @@ -193645,7 +193846,7 @@ }, { "question": "Western Australia Police Force", - "icon": "./assets/data/nsi/logos/westernaustraliapoliceforce-fec6b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westernaustraliapoliceforce-fec6b2.jpg", "osmTags": { "and": [ "amenity=police", @@ -193698,7 +193899,7 @@ }, { "question": "Министерство Внутренних Дел", - "icon": "./assets/data/nsi/logos/ministryofinternalaffairs-3a79c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofinternalaffairs-3a79c7.jpg", "osmTags": { "and": [ "amenity=police", @@ -193730,7 +193931,7 @@ }, { "question": "Полиция России", - "icon": "./assets/data/nsi/logos/policeofrussia-3a79c7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/policeofrussia-3a79c7.svg", "osmTags": { "and": [ "amenity=police", @@ -193747,7 +193948,7 @@ }, { "question": "საპატრულო პოლიციის დეპარტამენტი", - "icon": "./assets/data/nsi/logos/patrolpolicedepartamentoftheministryofinternalaffairsofgeorgia-ce89ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/patrolpolicedepartamentoftheministryofinternalaffairsofgeorgia-ce89ae.png", "osmTags": { "and": [ "amenity=police", @@ -193797,7 +193998,7 @@ }, { "question": "نیروی انتظامی", - "icon": "./assets/data/nsi/logos/d1eead-555f12.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/d1eead-555f12.svg", "osmTags": { "and": [ "amenity=police", @@ -193821,7 +194022,7 @@ }, { "question": "刑事警察局", - "icon": "./assets/data/nsi/logos/criminalinvestigationbureau-c45d37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/criminalinvestigationbureau-c45d37.jpg", "osmTags": { "and": [ "amenity=police", @@ -193927,7 +194128,7 @@ }, { "question": "國道公路警察局", - "icon": "./assets/data/nsi/logos/nationalhighwaypolicebureau-c45d37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalhighwaypolicebureau-c45d37.jpg", "osmTags": { "and": [ "amenity=police", @@ -194003,7 +194204,7 @@ }, { "question": "山形県警察", - "icon": "./assets/data/nsi/logos/yamagataprefecturalpolice-ae5e65.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamagataprefecturalpolice-ae5e65.svg", "osmTags": { "and": [ "amenity=police", @@ -194051,7 +194252,7 @@ }, { "question": "新北市政府警察局", - "icon": "./assets/data/nsi/logos/newtaipeicitypolicedepartment-c45d37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newtaipeicitypolicedepartment-c45d37.jpg", "osmTags": { "and": [ "amenity=police", @@ -194132,7 +194333,7 @@ }, { "question": "治安警察局 Corpo de Polícia de Segurança Pública", - "icon": "./assets/data/nsi/logos/publicsecuritypoliceforce-ff7137.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicsecuritypoliceforce-ff7137.jpg", "osmTags": { "and": [ "amenity=police", @@ -194151,7 +194352,7 @@ }, { "question": "海巡署", - "icon": "./assets/data/nsi/logos/coastguardadministration-c45d37.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coastguardadministration-c45d37.png", "osmTags": { "and": [ "amenity=police", @@ -194168,7 +194369,7 @@ }, { "question": "澎湖縣政府警察局", - "icon": "./assets/data/nsi/logos/penghucountygovernmentpolicebureau-c45d37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penghucountygovernmentpolicebureau-c45d37.jpg", "osmTags": { "and": [ "amenity=police", @@ -194210,7 +194411,7 @@ }, { "question": "臺北市政府警察局", - "icon": "./assets/data/nsi/logos/taipeicitypolicedepartment-c45d37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taipeicitypolicedepartment-c45d37.jpg", "osmTags": { "and": [ "amenity=police", @@ -194387,7 +194588,7 @@ }, { "question": "香港警務處 Hong Kong Police Force", - "icon": "./assets/data/nsi/logos/hongkongpoliceforce-4394e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongpoliceforce-4394e5.jpg", "osmTags": { "and": [ "amenity=police", @@ -194423,7 +194624,7 @@ }, { "question": "鹿児島県警察", - "icon": "./assets/data/nsi/logos/kagoshimaprefecturalpolice-ae5e65.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kagoshimaprefecturalpolice-ae5e65.svg", "osmTags": { "and": [ "amenity=police", @@ -194440,7 +194641,7 @@ }, { "question": "Caixa dos Correios", - "icon": "./assets/data/nsi/logos/empresabrasileiradecorreiosetelegrafos-a9f49f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/empresabrasileiradecorreiosetelegrafos-a9f49f.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194457,7 +194658,7 @@ }, { "question": "FedEx", - "icon": "./assets/data/nsi/logos/fedex-b58716.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fedex-b58716.png", "osmTags": { "and": [ "amenity=post_box", @@ -194475,7 +194676,7 @@ }, { "question": "PIN Mail", - "icon": "./assets/data/nsi/logos/pinmail-225eac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pinmail-225eac.svg", "osmTags": { "and": [ "amenity=post_box", @@ -194491,7 +194692,7 @@ }, { "question": "Royal Mail", - "icon": "./assets/data/nsi/logos/royalmail-f65bfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalmail-f65bfd.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194506,15 +194707,15 @@ }, { "question": "UPS", - "icon": "./assets/data/nsi/logos/ups-b58716.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ups-b58716.png", "osmTags": { "and": [ "amenity=post_box", - "official_name=United Parcel Service", { "or": [ "brand=UPS", "brand:wikidata=Q155026", + "official_name=United Parcel Service", "operator=UPS", "operator:type=private", "operator:wikidata=Q155026" @@ -194525,7 +194726,7 @@ }, { "question": "Best Express", - "icon": "./assets/data/nsi/logos/bestexpress-75380d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bestexpress-75380d.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194546,7 +194747,7 @@ }, { "question": "City Express (Србија)", - "icon": "./assets/data/nsi/logos/cityexpress-776b1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityexpress-776b1b.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194563,7 +194764,7 @@ }, { "question": "DHL", - "icon": "./assets/data/nsi/logos/dhl-b58716.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhl-b58716.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194580,7 +194781,7 @@ }, { "question": "DPD", - "icon": "./assets/data/nsi/logos/dpd-d7f0d6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dpd-d7f0d6.png", "osmTags": { "and": [ "amenity=post_box", @@ -194597,7 +194798,7 @@ }, { "question": "Estafeta", - "icon": "./assets/data/nsi/logos/estafeta-f60cac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/estafeta-f60cac.svg", "osmTags": { "and": [ "amenity=post_box", @@ -194614,7 +194815,7 @@ }, { "question": "Express One (Bosnia & Herzegovina)", - "icon": "./assets/data/nsi/logos/expressone-715a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressone-715a36.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194631,7 +194832,7 @@ }, { "question": "Express One (Magyarország)", - "icon": "./assets/data/nsi/logos/expressone-b69600.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressone-b69600.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194680,7 +194881,7 @@ }, { "question": "Express One (България)", - "icon": "./assets/data/nsi/logos/expressone-0e5c7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/expressone-0e5c7d.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194697,7 +194898,7 @@ }, { "question": "Inter Rapidisimo", - "icon": "./assets/data/nsi/logos/interrapidisimo-3eebd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/interrapidisimo-3eebd4.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194714,7 +194915,7 @@ }, { "question": "InTime", - "icon": "./assets/data/nsi/logos/intime-0e5c7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intime-0e5c7d.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194731,7 +194932,7 @@ }, { "question": "Mail Boxes Etc.", - "icon": "./assets/data/nsi/logos/mailboxesetc-6064e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mailboxesetc-6064e7.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194748,7 +194949,7 @@ }, { "question": "Mail Boxes Etc. (Ireland/UK)", - "icon": "./assets/data/nsi/logos/mailboxesetc-f65bfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mailboxesetc-f65bfd.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194765,7 +194966,7 @@ }, { "question": "Oman Post / بريد عمان", - "icon": "./assets/data/nsi/logos/omanpost-d77818.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omanpost-d77818.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194786,7 +194987,7 @@ }, { "question": "Overseas Express (Hrvatska)", - "icon": "./assets/data/nsi/logos/cityexpress-006da0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityexpress-006da0.png", "osmTags": { "and": [ "amenity=post_box", @@ -194803,7 +195004,7 @@ }, { "question": "Pak Mail", - "icon": "./assets/data/nsi/logos/pakmail-a77078.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pakmail-a77078.png", "osmTags": { "and": [ "amenity=post_box", @@ -194820,7 +195021,7 @@ }, { "question": "Paquetexpress", - "icon": "./assets/data/nsi/logos/paquetexpress-f60cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/paquetexpress-f60cac.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194837,7 +195038,7 @@ }, { "question": "Poczta Polska", - "icon": "./assets/data/nsi/logos/pocztapolska-01d69e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pocztapolska-01d69e.png", "osmTags": { "and": [ "amenity=post_box", @@ -194854,7 +195055,7 @@ }, { "question": "Posta Kenya", - "icon": "./assets/data/nsi/logos/postakenya-8a89ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postakenya-8a89ac.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194871,7 +195072,7 @@ }, { "question": "Posten (Norge)", - "icon": "./assets/data/nsi/logos/posten-d3fd2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/posten-d3fd2e.png", "osmTags": { "and": [ "amenity=post_box", @@ -194888,7 +195089,7 @@ }, { "question": "PostNet", - "icon": "./assets/data/nsi/logos/postnet-f6a981.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postnet-f6a981.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194905,7 +195106,7 @@ }, { "question": "Speedy", - "icon": "./assets/data/nsi/logos/speedy-0e5c7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/speedy-0e5c7d.png", "osmTags": { "and": [ "amenity=post_box", @@ -194922,7 +195123,7 @@ }, { "question": "Български пощи", - "icon": "./assets/data/nsi/logos/6d0749-0e5c7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/6d0749-0e5c7d.png", "osmTags": { "and": [ "amenity=post_box", @@ -194939,7 +195140,7 @@ }, { "question": "Еконт", - "icon": "./assets/data/nsi/logos/4f7c8b-0e5c7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/4f7c8b-0e5c7d.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -194956,7 +195157,7 @@ }, { "question": "СДЭК", - "icon": "./assets/data/nsi/logos/5ac048-98aa7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/5ac048-98aa7c.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195035,7 +195236,7 @@ }, { "question": "圆通速递", - "icon": "./assets/data/nsi/logos/ytoexpress-38b646.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ytoexpress-38b646.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195057,7 +195258,7 @@ }, { "question": "德邦快递", - "icon": "./assets/data/nsi/logos/depponexpress-38b646.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/depponexpress-38b646.svg", "osmTags": { "and": [ "amenity=post_box", @@ -195100,7 +195301,7 @@ }, { "question": "菜鸟驿站", - "icon": "./assets/data/nsi/logos/cainiao-38b646.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cainiao-38b646.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195142,7 +195343,7 @@ }, { "question": "順豐速運 SF Express", - "icon": "./assets/data/nsi/logos/sfexpress-8ff70a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sfexpress-8ff70a.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195167,7 +195368,7 @@ }, { "question": "顺丰速运", - "icon": "./assets/data/nsi/logos/sfexpress-293b54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sfexpress-293b54.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195189,13 +195390,13 @@ }, { "question": "4-72", - "icon": "./assets/data/nsi/logos/472-3eebd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/472-3eebd4.jpg", "osmTags": { "and": [ "amenity=post_box", - "official_name=Servicios Postales Nacionales", { "or": [ + "official_name=Servicios Postales Nacionales", "operator=4-72", "operator:wikidata=Q85800448" ] @@ -195205,7 +195406,7 @@ }, { "question": "Aerocav", - "icon": "./assets/data/nsi/logos/aerocav-6371df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aerocav-6371df.png", "osmTags": { "and": [ "amenity=post_box", @@ -195220,7 +195421,7 @@ }, { "question": "Åland Post", - "icon": "./assets/data/nsi/logos/alandpost-d3c20b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alandpost-d3c20b.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195235,7 +195436,7 @@ }, { "question": "Algérie Poste", - "icon": "./assets/data/nsi/logos/algerieposte-b1eaa9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/algerieposte-b1eaa9.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195252,7 +195453,7 @@ }, { "question": "An Post", - "icon": "./assets/data/nsi/logos/anpost-389524.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anpost-389524.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195281,7 +195482,7 @@ }, { "question": "Australia Post", - "icon": "./assets/data/nsi/logos/australiapost-7f3a8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/australiapost-7f3a8a.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195296,7 +195497,7 @@ }, { "question": "Azərpoçt", - "icon": "./assets/data/nsi/logos/3a476b-f6482c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/3a476b-f6482c.png", "osmTags": { "and": [ "amenity=post_box", @@ -195311,7 +195512,7 @@ }, { "question": "Barid Al-Maghrib", - "icon": "./assets/data/nsi/logos/postemaroc-2a0eda.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postemaroc-2a0eda.png", "osmTags": { "and": [ "amenity=post_box", @@ -195329,7 +195530,7 @@ }, { "question": "BH Pošta", - "icon": "./assets/data/nsi/logos/bhposta-715a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bhposta-715a36.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195344,7 +195545,7 @@ }, { "question": "Blue Dart", - "icon": "./assets/data/nsi/logos/bluedartexpress-eef7b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluedartexpress-eef7b2.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195363,7 +195564,7 @@ }, { "question": "bpost", - "icon": "./assets/data/nsi/logos/bpost-fcdb5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpost-fcdb5b.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195387,7 +195588,7 @@ }, { "question": "Canada Post", - "icon": "./assets/data/nsi/logos/canadapost-00e6ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadapost-00e6ce.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195402,7 +195603,7 @@ }, { "question": "Cargus", - "icon": "./assets/data/nsi/logos/cargus-746983.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cargus-746983.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195417,7 +195618,7 @@ }, { "question": "Česká pošta", - "icon": "./assets/data/nsi/logos/ceskapostasp-645a7b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskapostasp-645a7b.png", "osmTags": { "and": [ "amenity=post_box", @@ -195432,7 +195633,7 @@ }, { "question": "Chilexpress", - "icon": "./assets/data/nsi/logos/chilexpress-5e8ca4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chilexpress-5e8ca4.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195447,7 +195648,7 @@ }, { "question": "Chronopost", - "icon": "./assets/data/nsi/logos/chronopost-747794.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chronopost-747794.png", "osmTags": { "and": [ "amenity=post_box", @@ -195462,13 +195663,13 @@ }, { "question": "Coordinadora", - "icon": "./assets/data/nsi/logos/coordinadora-3eebd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coordinadora-3eebd4.jpg", "osmTags": { "and": [ "amenity=post_box", - "official_name=Coordinadora Mercantil S.A.", { "or": [ + "official_name=Coordinadora Mercantil S.A.", "operator=Coordinadora", "operator:wikidata=Q109252162" ] @@ -195478,7 +195679,7 @@ }, { "question": "Correo Argentino", - "icon": "./assets/data/nsi/logos/correoargentino-4e393b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correoargentino-4e393b.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195493,7 +195694,7 @@ }, { "question": "Correos", - "icon": "./assets/data/nsi/logos/correos-05a564.png", + "icon": "https://data.mapcomplete.org/nsi//logos/correos-05a564.png", "osmTags": { "and": [ "amenity=post_box", @@ -195508,7 +195709,7 @@ }, { "question": "Correos de Chile", - "icon": "./assets/data/nsi/logos/correosdechile-5e8ca4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correosdechile-5e8ca4.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195523,7 +195724,7 @@ }, { "question": "Correos de Costa Rica", - "icon": "./assets/data/nsi/logos/correosdecostarica-89198c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correosdecostarica-89198c.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195538,7 +195739,7 @@ }, { "question": "Correos de Cuba", - "icon": "./assets/data/nsi/logos/correosdecuba-9416d8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correosdecuba-9416d8.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195553,7 +195754,7 @@ }, { "question": "Correos de México", - "icon": "./assets/data/nsi/logos/correosdemexico-f60cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correosdemexico-f60cac.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195568,7 +195769,7 @@ }, { "question": "CTT (Macau)", - "icon": "./assets/data/nsi/logos/ctt-e54f67.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ctt-e54f67.svg", "osmTags": { "and": [ "amenity=post_box", @@ -195583,7 +195784,7 @@ }, { "question": "CTT (Portugal)", - "icon": "./assets/data/nsi/logos/ctt-b2383c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ctt-b2383c.png", "osmTags": { "and": [ "amenity=post_box", @@ -195612,7 +195813,7 @@ }, { "question": "Delhivery", - "icon": "./assets/data/nsi/logos/delhivery-eef7b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/delhivery-eef7b2.png", "osmTags": { "and": [ "amenity=post_box", @@ -195629,7 +195830,7 @@ }, { "question": "Deutsche Post", - "icon": "./assets/data/nsi/logos/deutschepost-225eac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschepost-225eac.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195644,7 +195845,7 @@ }, { "question": "Domesa", - "icon": "./assets/data/nsi/logos/domesa-6371df.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/domesa-6371df.svg", "osmTags": { "and": [ "amenity=post_box", @@ -195686,7 +195887,7 @@ }, { "question": "Eesti Post", - "icon": "./assets/data/nsi/logos/eestipost-f66fc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eestipost-f66fc9.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195701,7 +195902,7 @@ }, { "question": "Emirates Post", - "icon": "./assets/data/nsi/logos/emiratespost-4c01d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emiratespost-4c01d7.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195725,7 +195926,7 @@ }, { "question": "Fancourier", - "icon": "./assets/data/nsi/logos/fancourier-746983.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fancourier-746983.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195740,7 +195941,7 @@ }, { "question": "General Logistics Systems Germany", - "icon": "./assets/data/nsi/logos/generallogisticssystemsgermany-225eac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generallogisticssystemsgermany-225eac.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195755,7 +195956,7 @@ }, { "question": "Ghana Post", - "icon": "./assets/data/nsi/logos/ghanapost-f32027.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ghanapost-f32027.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195770,7 +195971,7 @@ }, { "question": "GLS", - "icon": "./assets/data/nsi/logos/gls-b58716.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gls-b58716.svg", "osmTags": { "and": [ "amenity=post_box", @@ -195785,7 +195986,7 @@ }, { "question": "Guernsey Post", - "icon": "./assets/data/nsi/logos/guernseypost-9043f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guernseypost-9043f7.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195800,7 +196001,7 @@ }, { "question": "HayPost", - "icon": "./assets/data/nsi/logos/haypost-67ecec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haypost-67ecec.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195817,7 +196018,7 @@ }, { "question": "Hermes", - "icon": "./assets/data/nsi/logos/hermes-225eac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hermes-225eac.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195832,7 +196033,7 @@ }, { "question": "Hrvatska pošta", - "icon": "./assets/data/nsi/logos/hrvatskaposta-006da0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hrvatskaposta-006da0.png", "osmTags": { "and": [ "amenity=post_box", @@ -195847,7 +196048,7 @@ }, { "question": "Hrvatska pošta Mostar", - "icon": "./assets/data/nsi/logos/hrvatskapostamostar-715a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hrvatskapostamostar-715a36.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195862,7 +196063,7 @@ }, { "question": "India Post", - "icon": "./assets/data/nsi/logos/indiapost-eef7b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indiapost-eef7b2.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195877,7 +196078,7 @@ }, { "question": "InPost", - "icon": "./assets/data/nsi/logos/inpost-01d69e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/inpost-01d69e.svg", "osmTags": { "and": [ "amenity=post_box", @@ -195907,7 +196108,7 @@ }, { "question": "Íslandspóstur", - "icon": "./assets/data/nsi/logos/islandspostur-af7f84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/islandspostur-af7f84.png", "osmTags": { "and": [ "amenity=post_box", @@ -195922,7 +196123,7 @@ }, { "question": "Isle of Man Post Office", - "icon": "./assets/data/nsi/logos/isleofmanpostoffice-2536a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isleofmanpostoffice-2536a4.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195939,7 +196140,7 @@ }, { "question": "J&T Express", - "icon": "./assets/data/nsi/logos/jandtexpress-21508a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jandtexpress-21508a.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195954,7 +196155,7 @@ }, { "question": "Jersey Post", - "icon": "./assets/data/nsi/logos/jerseypost-9f43cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseypost-9f43cc.png", "osmTags": { "and": [ "amenity=post_box", @@ -195983,7 +196184,7 @@ }, { "question": "La Poste", - "icon": "./assets/data/nsi/logos/laposte-747794.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laposte-747794.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -195998,7 +196199,7 @@ }, { "question": "La Poste Monaco", - "icon": "./assets/data/nsi/logos/lapostemonaco-c6ecb3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lapostemonaco-c6ecb3.svg", "osmTags": { "and": [ "amenity=post_box", @@ -196013,7 +196214,7 @@ }, { "question": "La Poste Tunisienne", - "icon": "./assets/data/nsi/logos/lapostetunisienne-d4c01c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lapostetunisienne-d4c01c.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196030,7 +196231,7 @@ }, { "question": "Latvijas Pasts", - "icon": "./assets/data/nsi/logos/latvijaspasts-7d10cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/latvijaspasts-7d10cc.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196045,7 +196246,7 @@ }, { "question": "LBC", - "icon": "./assets/data/nsi/logos/lbc-4e7db5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lbc-4e7db5.svg", "osmTags": { "and": [ "amenity=post_box", @@ -196060,7 +196261,7 @@ }, { "question": "Liechtensteinische Post", - "icon": "./assets/data/nsi/logos/liechtensteinischepost-4fee35.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/liechtensteinischepost-4fee35.svg", "osmTags": { "and": [ "amenity=post_box", @@ -196075,7 +196276,7 @@ }, { "question": "Lietuvos paštas", - "icon": "./assets/data/nsi/logos/lietuvospastas-06c38d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lietuvospastas-06c38d.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196090,7 +196291,7 @@ }, { "question": "Mace", - "icon": "./assets/data/nsi/logos/mace-f65bfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mace-f65bfd.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196105,7 +196306,7 @@ }, { "question": "Magyar Posta", - "icon": "./assets/data/nsi/logos/magyarposta-b69600.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magyarposta-b69600.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196120,7 +196321,7 @@ }, { "question": "MaltaPost", - "icon": "./assets/data/nsi/logos/maltapost-381874.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maltapost-381874.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196135,7 +196336,7 @@ }, { "question": "MNG Kargo", - "icon": "./assets/data/nsi/logos/mngkargo-74be01.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mngkargo-74be01.svg", "osmTags": { "and": [ "amenity=post_box", @@ -196150,7 +196351,7 @@ }, { "question": "MRW", - "icon": "./assets/data/nsi/logos/mrw-f1512b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrw-f1512b.png", "osmTags": { "and": [ "amenity=post_box", @@ -196165,7 +196366,7 @@ }, { "question": "New Zealand Post", - "icon": "./assets/data/nsi/logos/newzealandpost-6c56da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newzealandpost-6c56da.png", "osmTags": { "and": [ "amenity=post_box", @@ -196180,7 +196381,7 @@ }, { "question": "Omniva", - "icon": "./assets/data/nsi/logos/omniva-f66fc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omniva-f66fc9.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196195,7 +196396,7 @@ }, { "question": "OPT (Polynésie française)", - "icon": "./assets/data/nsi/logos/officedespostesettelecommunicationsdepolynesiefrancaise-e94386.png", + "icon": "https://data.mapcomplete.org/nsi//logos/officedespostesettelecommunicationsdepolynesiefrancaise-e94386.png", "osmTags": { "and": [ "amenity=post_box", @@ -196211,7 +196412,7 @@ }, { "question": "Organización Coordinadora Argentina", - "icon": "./assets/data/nsi/logos/organizacioncoordinadoraargentina-4e393b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/organizacioncoordinadoraargentina-4e393b.svg", "osmTags": { "and": [ "amenity=post_box", @@ -196227,7 +196428,7 @@ }, { "question": "Österreichische Post AG", - "icon": "./assets/data/nsi/logos/osterreichischepostag-99c20d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterreichischepostag-99c20d.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196242,7 +196443,7 @@ }, { "question": "Pakistan Post", - "icon": "./assets/data/nsi/logos/pakistanpost-26ebda.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pakistanpost-26ebda.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196257,7 +196458,7 @@ }, { "question": "Palestine Post", - "icon": "./assets/data/nsi/logos/palestinepost-734900.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palestinepost-734900.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196272,13 +196473,13 @@ }, { "question": "PHLPost", - "icon": "./assets/data/nsi/logos/phlpost-4e7db5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/phlpost-4e7db5.png", "osmTags": { "and": [ "amenity=post_box", - "official_name=Philippine Postal Corporation", { "or": [ + "official_name=Philippine Postal Corporation", "operator=PHLPost", "operator:wikidata=Q1406037" ] @@ -196288,7 +196489,7 @@ }, { "question": "Pos Indonesia", - "icon": "./assets/data/nsi/logos/posindonesia-fdefd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/posindonesia-fdefd5.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196304,7 +196505,7 @@ }, { "question": "Pos Malaysia", - "icon": "./assets/data/nsi/logos/posmalaysia-083009.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/posmalaysia-083009.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196319,7 +196520,7 @@ }, { "question": "Post Aruba", - "icon": "./assets/data/nsi/logos/postaruba-337ad8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postaruba-337ad8.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196334,7 +196535,7 @@ }, { "question": "Post Danmark", - "icon": "./assets/data/nsi/logos/postdanmark-8e57c0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postdanmark-8e57c0.png", "osmTags": { "and": [ "amenity=post_box", @@ -196349,7 +196550,7 @@ }, { "question": "POST Luxembourg", - "icon": "./assets/data/nsi/logos/postluxembourg-378ac5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postluxembourg-378ac5.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196364,7 +196565,7 @@ }, { "question": "Posta", - "icon": "./assets/data/nsi/logos/posta-7a7118.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/posta-7a7118.svg", "osmTags": { "and": [ "amenity=post_box", @@ -196379,7 +196580,7 @@ }, { "question": "Pošta Crne Gore", - "icon": "./assets/data/nsi/logos/postacrnegore-1f0b4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postacrnegore-1f0b4c.png", "osmTags": { "and": [ "amenity=post_box", @@ -196394,7 +196595,7 @@ }, { "question": "Posta e Kosovës", - "icon": "./assets/data/nsi/logos/postaekosoves-238dcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postaekosoves-238dcb.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196409,7 +196610,7 @@ }, { "question": "Poșta Moldovei", - "icon": "./assets/data/nsi/logos/postamoldovei-833d92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postamoldovei-833d92.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196424,7 +196625,7 @@ }, { "question": "Poșta Română", - "icon": "./assets/data/nsi/logos/postaromana-746983.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postaromana-746983.png", "osmTags": { "and": [ "amenity=post_box", @@ -196439,7 +196640,7 @@ }, { "question": "Posta Shqiptare", - "icon": "./assets/data/nsi/logos/postashqiptare-5d3454.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postashqiptare-5d3454.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196454,7 +196655,7 @@ }, { "question": "Pošta Slovenije", - "icon": "./assets/data/nsi/logos/postaslovenije-68f37b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postaslovenije-68f37b.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196469,7 +196670,7 @@ }, { "question": "PostalAnnex", - "icon": "./assets/data/nsi/logos/postalannex-a77078.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postalannex-a77078.png", "osmTags": { "and": [ "amenity=post_box", @@ -196493,7 +196694,7 @@ }, { "question": "postcon", - "icon": "./assets/data/nsi/logos/postcon-225eac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postcon-225eac.png", "osmTags": { "and": [ "amenity=post_box", @@ -196508,7 +196709,7 @@ }, { "question": "Poste Italiane", - "icon": "./assets/data/nsi/logos/posteitaliane-f380c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/posteitaliane-f380c8.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196523,7 +196724,7 @@ }, { "question": "Poste San Marino", - "icon": "./assets/data/nsi/logos/postesanmarino-a544f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postesanmarino-a544f7.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196538,7 +196739,7 @@ }, { "question": "Pošte Srpske", - "icon": "./assets/data/nsi/logos/postesrpske-715a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postesrpske-715a36.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196553,7 +196754,7 @@ }, { "question": "Postes Canada", - "icon": "./assets/data/nsi/logos/postescanada-2241ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postescanada-2241ae.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196568,7 +196769,7 @@ }, { "question": "Posti", - "icon": "./assets/data/nsi/logos/posti-b6d4d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/posti-b6d4d9.png", "osmTags": { "and": [ "amenity=post_box", @@ -196583,7 +196784,7 @@ }, { "question": "PostNL", - "icon": "./assets/data/nsi/logos/postnl-3f4703.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postnl-3f4703.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196598,7 +196799,7 @@ }, { "question": "PostNord", - "icon": "./assets/data/nsi/logos/postnord-90fe7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postnord-90fe7c.png", "osmTags": { "and": [ "amenity=post_box", @@ -196613,7 +196814,7 @@ }, { "question": "PTT", - "icon": "./assets/data/nsi/logos/ptt-74be01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ptt-74be01.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196642,7 +196843,7 @@ }, { "question": "Serpost", - "icon": "./assets/data/nsi/logos/serpost-7393da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/serpost-7393da.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196657,7 +196858,7 @@ }, { "question": "Servientrega", - "icon": "./assets/data/nsi/logos/servientrega-3eebd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servientrega-3eebd4.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196672,7 +196873,7 @@ }, { "question": "Shoppers Drug Mart", - "icon": "./assets/data/nsi/logos/shoppersdrugmart-eb4eda.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoppersdrugmart-eb4eda.png", "osmTags": { "and": [ "amenity=post_box", @@ -196687,7 +196888,7 @@ }, { "question": "Singapore Post", - "icon": "./assets/data/nsi/logos/singaporepost-7412de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/singaporepost-7412de.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196702,7 +196903,7 @@ }, { "question": "Slovenská pošta", - "icon": "./assets/data/nsi/logos/slovenskaposta-d9cb9e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskaposta-d9cb9e.png", "osmTags": { "and": [ "amenity=post_box", @@ -196717,7 +196918,7 @@ }, { "question": "South African Post Office", - "icon": "./assets/data/nsi/logos/southafricanpostoffice-cf256c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southafricanpostoffice-cf256c.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196747,7 +196948,7 @@ }, { "question": "TCC", - "icon": "./assets/data/nsi/logos/tcc-3eebd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tcc-3eebd4.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196764,7 +196965,7 @@ }, { "question": "TEALCA", - "icon": "./assets/data/nsi/logos/tealca-6371df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tealca-6371df.png", "osmTags": { "and": [ "amenity=post_box", @@ -196779,7 +196980,7 @@ }, { "question": "Thailand Post", - "icon": "./assets/data/nsi/logos/thailandpost-15aacf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thailandpost-15aacf.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196796,7 +196997,7 @@ }, { "question": "TNT", - "icon": "./assets/data/nsi/logos/tnt-b58716.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tnt-b58716.svg", "osmTags": { "and": [ "amenity=post_box", @@ -196811,7 +197012,7 @@ }, { "question": "TTPost", - "icon": "./assets/data/nsi/logos/ttpost-d8fb16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ttpost-d8fb16.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196826,7 +197027,7 @@ }, { "question": "Tusass", - "icon": "./assets/data/nsi/logos/tusass-a8bc28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tusass-a8bc28.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196841,7 +197042,7 @@ }, { "question": "United States Postal Service", - "icon": "./assets/data/nsi/logos/unitedstatespostalservice-a77078.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatespostalservice-a77078.png", "osmTags": { "and": [ "amenity=post_box", @@ -196858,7 +197059,7 @@ }, { "question": "UzPost", - "icon": "./assets/data/nsi/logos/uzpost-f090a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uzpost-f090a1.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196873,7 +197074,7 @@ }, { "question": "Vietnam Post", - "icon": "./assets/data/nsi/logos/vietnampost-5b5816.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vietnampost-5b5816.png", "osmTags": { "and": [ "amenity=post_box", @@ -196888,7 +197089,7 @@ }, { "question": "Volg", - "icon": "./assets/data/nsi/logos/volg-c6967d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/volg-c6967d.svg", "osmTags": { "and": [ "amenity=post_box", @@ -196903,7 +197104,7 @@ }, { "question": "Yurtiçi Kargo", - "icon": "./assets/data/nsi/logos/yurticikargo-74be01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yurticikargo-74be01.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196918,7 +197119,7 @@ }, { "question": "Zásilkovna", - "icon": "./assets/data/nsi/logos/zasilkovna-645a7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zasilkovna-645a7b.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196933,7 +197134,7 @@ }, { "question": "Zoom", - "icon": "./assets/data/nsi/logos/zoom-6371df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zoom-6371df.png", "osmTags": { "and": [ "amenity=post_box", @@ -196948,7 +197149,7 @@ }, { "question": "Ελληνικά Ταχυδρομεία", - "icon": "./assets/data/nsi/logos/hellenicpost-d6ef5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hellenicpost-d6ef5f.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196966,7 +197167,7 @@ }, { "question": "Белпошта", - "icon": "./assets/data/nsi/logos/belposhta-f30b90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belposhta-f30b90.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -196993,7 +197194,7 @@ }, { "question": "ГУП Почта Приднестровья", - "icon": "./assets/data/nsi/logos/transnistriapost-833d92.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnistriapost-833d92.svg", "osmTags": { "and": [ "amenity=post_box", @@ -197019,7 +197220,7 @@ }, { "question": "Қазпошта", - "icon": "./assets/data/nsi/logos/kazpost-f5a740.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kazpost-f5a740.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197037,7 +197238,7 @@ }, { "question": "Македонска Пошта", - "icon": "./assets/data/nsi/logos/7fe185-4271bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/7fe185-4271bd.png", "osmTags": { "and": [ "amenity=post_box", @@ -197052,7 +197253,7 @@ }, { "question": "Почта Крыма", - "icon": "./assets/data/nsi/logos/postofcrimea-0d7391.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postofcrimea-0d7391.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197069,7 +197270,7 @@ }, { "question": "Почта России", - "icon": "./assets/data/nsi/logos/6898b3-98aa7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/6898b3-98aa7c.png", "osmTags": { "and": [ "amenity=post_box", @@ -197084,7 +197285,7 @@ }, { "question": "Пошта Србије", - "icon": "./assets/data/nsi/logos/848860-776b1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/848860-776b1b.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197108,7 +197309,7 @@ }, { "question": "Укрпошта", - "icon": "./assets/data/nsi/logos/ukrposhta-1a910f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrposhta-1a910f.png", "osmTags": { "and": [ "amenity=post_box", @@ -197126,7 +197327,7 @@ }, { "question": "საქართველოს ფოსტა", - "icon": "./assets/data/nsi/logos/georgianpost-a9190e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/georgianpost-a9190e.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197156,7 +197357,7 @@ }, { "question": "דואר ישראל", - "icon": "./assets/data/nsi/logos/israelpostalcompany-6a5101.png", + "icon": "https://data.mapcomplete.org/nsi//logos/israelpostalcompany-6a5101.png", "osmTags": { "and": [ "amenity=post_box", @@ -197173,7 +197374,7 @@ }, { "question": "البريد السعودي", - "icon": "./assets/data/nsi/logos/df1b33-6376b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/df1b33-6376b2.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197188,7 +197389,7 @@ }, { "question": "البريد العراقي", - "icon": "./assets/data/nsi/logos/iraqpost-8bf441.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iraqpost-8bf441.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197205,7 +197406,7 @@ }, { "question": "شركة سمسا للنقل السريع المحدودة", - "icon": "./assets/data/nsi/logos/66f694-6376b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/66f694-6376b2.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197236,7 +197437,7 @@ }, { "question": "우정사업본부", - "icon": "./assets/data/nsi/logos/koreapost-ff3ead.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koreapost-ff3ead.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197253,7 +197454,7 @@ }, { "question": "中華郵政", - "icon": "./assets/data/nsi/logos/chunghwapost-bed6e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chunghwapost-bed6e8.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197275,7 +197476,7 @@ }, { "question": "日本郵便", - "icon": "./assets/data/nsi/logos/japanpost-f7cda2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/japanpost-f7cda2.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197295,7 +197496,7 @@ }, { "question": "香港郵政 Hongkong Post", - "icon": "./assets/data/nsi/logos/hongkongpost-8ff70a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongpost-8ff70a.png", "osmTags": { "and": [ "amenity=post_box", @@ -197312,7 +197513,7 @@ }, { "question": "Die Post", - "icon": "./assets/data/nsi/logos/diepost-c6967d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diepost-c6967d.jpg", "osmTags": { "and": [ "amenity=post_box", @@ -197333,7 +197534,7 @@ }, { "question": "An Post", - "icon": "./assets/data/nsi/logos/anpost-2f7b40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anpost-2f7b40.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197350,7 +197551,7 @@ }, { "question": "Australia Post Distribution Centre", - "icon": "./assets/data/nsi/logos/australiapost-96d49b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/australiapost-96d49b.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197366,7 +197567,7 @@ }, { "question": "Canada Post", - "icon": "./assets/data/nsi/logos/canadapost-dd0253.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadapost-dd0253.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197382,7 +197583,7 @@ }, { "question": "Centro de Distribuição dos Correios", - "icon": "./assets/data/nsi/logos/empresabrasileiradecorreiosetelegrafos-28fd5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/empresabrasileiradecorreiosetelegrafos-28fd5c.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197400,7 +197601,7 @@ }, { "question": "Deutsche Post", - "icon": "./assets/data/nsi/logos/deutschepost-6fd7ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschepost-6fd7ff.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197417,7 +197618,7 @@ }, { "question": "Evri", - "icon": "./assets/data/nsi/logos/evri-a473cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evri-a473cc.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197432,7 +197633,7 @@ }, { "question": "General Logistics Systems Germany", - "icon": "./assets/data/nsi/logos/generallogisticssystemsgermany-6fd7ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generallogisticssystemsgermany-6fd7ff.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197465,7 +197666,7 @@ }, { "question": "La Poste", - "icon": "./assets/data/nsi/logos/laposte-5d47ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laposte-5d47ca.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197482,7 +197683,7 @@ }, { "question": "MRW", - "icon": "./assets/data/nsi/logos/mrw-71d94f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrw-71d94f.png", "osmTags": { "and": [ "amenity=post_depot", @@ -197497,7 +197698,7 @@ }, { "question": "New Zealand Post", - "icon": "./assets/data/nsi/logos/newzealandpost-6b0f2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newzealandpost-6b0f2e.png", "osmTags": { "and": [ "amenity=post_depot", @@ -197512,7 +197713,7 @@ }, { "question": "Österreichische Post", - "icon": "./assets/data/nsi/logos/osterreichischepost-b5ec48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterreichischepost-b5ec48.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197527,7 +197728,7 @@ }, { "question": "Postes Canada", - "icon": "./assets/data/nsi/logos/postescanada-7b7f06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postescanada-7b7f06.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197543,7 +197744,7 @@ }, { "question": "Royal Mail", - "icon": "./assets/data/nsi/logos/royalmail-a473cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalmail-a473cc.jpg", "osmTags": { "and": [ "amenity=post_depot", @@ -197560,7 +197761,7 @@ }, { "question": "SEUR", - "icon": "./assets/data/nsi/logos/seur-449920.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seur-449920.png", "osmTags": { "and": [ "amenity=post_depot", @@ -197575,7 +197776,7 @@ }, { "question": "United States Postal Service", - "icon": "./assets/data/nsi/logos/unitedstatespostalservice-9cb3b1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatespostalservice-9cb3b1.png", "osmTags": { "and": [ "amenity=post_depot", @@ -197592,13 +197793,13 @@ }, { "question": "4-72", - "icon": "./assets/data/nsi/logos/472-754eb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/472-754eb3.jpg", "osmTags": { "and": [ "amenity=post_office", - "official_name=Servicios Postales Nacionales", { "or": [ + "official_name=Servicios Postales Nacionales", "operator=4-72", "operator:wikidata=Q85800448" ] @@ -197608,7 +197809,7 @@ }, { "question": "Aerocav", - "icon": "./assets/data/nsi/logos/aerocav-de64fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aerocav-de64fe.png", "osmTags": { "and": [ "amenity=post_office", @@ -197623,7 +197824,7 @@ }, { "question": "Åland Post", - "icon": "./assets/data/nsi/logos/alandpost-3edbf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alandpost-3edbf0.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197638,7 +197839,7 @@ }, { "question": "Algérie Poste", - "icon": "./assets/data/nsi/logos/algerieposte-e99ec0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/algerieposte-e99ec0.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197655,7 +197856,7 @@ }, { "question": "An Post", - "icon": "./assets/data/nsi/logos/anpost-a056d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anpost-a056d1.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197684,7 +197885,7 @@ }, { "question": "Australia Post", - "icon": "./assets/data/nsi/logos/australiapost-536bec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/australiapost-536bec.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197699,7 +197900,7 @@ }, { "question": "Azərpoçt", - "icon": "./assets/data/nsi/logos/3a476b-ab1104.png", + "icon": "https://data.mapcomplete.org/nsi//logos/3a476b-ab1104.png", "osmTags": { "and": [ "amenity=post_office", @@ -197714,7 +197915,7 @@ }, { "question": "Barid Al-Maghrib", - "icon": "./assets/data/nsi/logos/postemaroc-efee55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postemaroc-efee55.png", "osmTags": { "and": [ "amenity=post_office", @@ -197732,7 +197933,7 @@ }, { "question": "BH Pošta", - "icon": "./assets/data/nsi/logos/bhposta-736d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bhposta-736d07.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197747,7 +197948,7 @@ }, { "question": "Blue Dart", - "icon": "./assets/data/nsi/logos/bluedartexpress-45da12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluedartexpress-45da12.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197766,7 +197967,7 @@ }, { "question": "bpost", - "icon": "./assets/data/nsi/logos/bpost-1b232e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bpost-1b232e.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197790,7 +197991,7 @@ }, { "question": "Canada Post", - "icon": "./assets/data/nsi/logos/canadapost-17c815.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadapost-17c815.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197805,7 +198006,7 @@ }, { "question": "Cargus", - "icon": "./assets/data/nsi/logos/cargus-08dfb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cargus-08dfb1.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197820,7 +198021,7 @@ }, { "question": "Česká pošta", - "icon": "./assets/data/nsi/logos/ceskapostasp-aa9270.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskapostasp-aa9270.png", "osmTags": { "and": [ "amenity=post_office", @@ -197835,7 +198036,7 @@ }, { "question": "Chilexpress", - "icon": "./assets/data/nsi/logos/chilexpress-3d11d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chilexpress-3d11d9.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197850,7 +198051,7 @@ }, { "question": "Chronopost", - "icon": "./assets/data/nsi/logos/chronopost-8f3efe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chronopost-8f3efe.png", "osmTags": { "and": [ "amenity=post_office", @@ -197865,13 +198066,13 @@ }, { "question": "Coordinadora", - "icon": "./assets/data/nsi/logos/coordinadora-754eb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coordinadora-754eb3.jpg", "osmTags": { "and": [ "amenity=post_office", - "official_name=Coordinadora Mercantil S.A.", { "or": [ + "official_name=Coordinadora Mercantil S.A.", "operator=Coordinadora", "operator:wikidata=Q109252162" ] @@ -197881,7 +198082,7 @@ }, { "question": "Correo Argentino", - "icon": "./assets/data/nsi/logos/correoargentino-debce4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correoargentino-debce4.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197896,7 +198097,7 @@ }, { "question": "Correos", - "icon": "./assets/data/nsi/logos/correos-e6c145.png", + "icon": "https://data.mapcomplete.org/nsi//logos/correos-e6c145.png", "osmTags": { "and": [ "amenity=post_office", @@ -197911,7 +198112,7 @@ }, { "question": "Correos de Chile", - "icon": "./assets/data/nsi/logos/correosdechile-3d11d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correosdechile-3d11d9.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197926,7 +198127,7 @@ }, { "question": "Correos de Costa Rica", - "icon": "./assets/data/nsi/logos/correosdecostarica-4fea3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correosdecostarica-4fea3e.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197941,7 +198142,7 @@ }, { "question": "Correos de Cuba", - "icon": "./assets/data/nsi/logos/correosdecuba-e577ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correosdecuba-e577ef.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197956,7 +198157,7 @@ }, { "question": "Correos de México", - "icon": "./assets/data/nsi/logos/correosdemexico-0b19e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/correosdemexico-0b19e1.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -197972,7 +198173,7 @@ }, { "question": "CTT (Macau)", - "icon": "./assets/data/nsi/logos/ctt-13f722.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ctt-13f722.svg", "osmTags": { "and": [ "amenity=post_office", @@ -197987,7 +198188,7 @@ }, { "question": "CTT (Portugal)", - "icon": "./assets/data/nsi/logos/ctt-5666eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ctt-5666eb.png", "osmTags": { "and": [ "amenity=post_office", @@ -198016,7 +198217,7 @@ }, { "question": "Delhivery", - "icon": "./assets/data/nsi/logos/delhivery-45da12.png", + "icon": "https://data.mapcomplete.org/nsi//logos/delhivery-45da12.png", "osmTags": { "and": [ "amenity=post_office", @@ -198033,7 +198234,7 @@ }, { "question": "Delivery", - "icon": "./assets/data/nsi/logos/delivery-970b0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delivery-970b0c.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198050,7 +198251,7 @@ }, { "question": "Deutsche Post", - "icon": "./assets/data/nsi/logos/deutschepost-8c0db3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschepost-8c0db3.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198065,7 +198266,7 @@ }, { "question": "Die Post", - "icon": "./assets/data/nsi/logos/diepost-62a267.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diepost-62a267.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198085,7 +198286,7 @@ }, { "question": "Domesa", - "icon": "./assets/data/nsi/logos/domesa-de64fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/domesa-de64fe.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198127,7 +198328,7 @@ }, { "question": "Eesti Post", - "icon": "./assets/data/nsi/logos/eestipost-df7ea1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eestipost-df7ea1.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198142,7 +198343,7 @@ }, { "question": "Emirates Post", - "icon": "./assets/data/nsi/logos/emiratespost-c6764e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emiratespost-c6764e.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198166,7 +198367,7 @@ }, { "question": "Fancourier", - "icon": "./assets/data/nsi/logos/fancourier-08dfb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fancourier-08dfb1.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198181,7 +198382,7 @@ }, { "question": "General Logistics Systems Germany", - "icon": "./assets/data/nsi/logos/generallogisticssystemsgermany-8c0db3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generallogisticssystemsgermany-8c0db3.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198196,7 +198397,7 @@ }, { "question": "Ghana Post", - "icon": "./assets/data/nsi/logos/ghanapost-aa5324.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ghanapost-aa5324.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198211,7 +198412,7 @@ }, { "question": "GLS", - "icon": "./assets/data/nsi/logos/gls-91a3cc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gls-91a3cc.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198226,7 +198427,7 @@ }, { "question": "Guernsey Post", - "icon": "./assets/data/nsi/logos/guernseypost-36d418.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guernseypost-36d418.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198241,7 +198442,7 @@ }, { "question": "HayPost", - "icon": "./assets/data/nsi/logos/haypost-1aee57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haypost-1aee57.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198258,7 +198459,7 @@ }, { "question": "Hermes", - "icon": "./assets/data/nsi/logos/hermes-8c0db3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hermes-8c0db3.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198273,7 +198474,7 @@ }, { "question": "Hrvatska pošta", - "icon": "./assets/data/nsi/logos/hrvatskaposta-745f1e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hrvatskaposta-745f1e.png", "osmTags": { "and": [ "amenity=post_office", @@ -198288,7 +198489,7 @@ }, { "question": "Hrvatska pošta Mostar", - "icon": "./assets/data/nsi/logos/hrvatskapostamostar-736d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hrvatskapostamostar-736d07.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198303,7 +198504,7 @@ }, { "question": "India Post", - "icon": "./assets/data/nsi/logos/indiapost-45da12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indiapost-45da12.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198318,7 +198519,7 @@ }, { "question": "InPost", - "icon": "./assets/data/nsi/logos/inpost-504b8a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/inpost-504b8a.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198348,7 +198549,7 @@ }, { "question": "Íslandspóstur", - "icon": "./assets/data/nsi/logos/islandspostur-b0beaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/islandspostur-b0beaf.png", "osmTags": { "and": [ "amenity=post_office", @@ -198363,7 +198564,7 @@ }, { "question": "Isle of Man Post Office", - "icon": "./assets/data/nsi/logos/isleofmanpostoffice-9ad038.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isleofmanpostoffice-9ad038.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198380,7 +198581,7 @@ }, { "question": "J&T Express", - "icon": "./assets/data/nsi/logos/jandtexpress-b78fda.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jandtexpress-b78fda.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198395,7 +198596,7 @@ }, { "question": "Jersey Post", - "icon": "./assets/data/nsi/logos/jerseypost-984d36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseypost-984d36.png", "osmTags": { "and": [ "amenity=post_office", @@ -198410,7 +198611,7 @@ }, { "question": "Justin", - "icon": "./assets/data/nsi/logos/justin-970b0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/justin-970b0c.png", "osmTags": { "and": [ "amenity=post_office", @@ -198439,7 +198640,7 @@ }, { "question": "La Poste", - "icon": "./assets/data/nsi/logos/laposte-8f3efe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laposte-8f3efe.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198454,7 +198655,7 @@ }, { "question": "La Poste Monaco", - "icon": "./assets/data/nsi/logos/lapostemonaco-65cd93.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lapostemonaco-65cd93.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198469,7 +198670,7 @@ }, { "question": "La Poste Tunisienne", - "icon": "./assets/data/nsi/logos/lapostetunisienne-fea313.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lapostetunisienne-fea313.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198486,7 +198687,7 @@ }, { "question": "Latvijas Pasts", - "icon": "./assets/data/nsi/logos/latvijaspasts-52791c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/latvijaspasts-52791c.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198501,7 +198702,7 @@ }, { "question": "LBC", - "icon": "./assets/data/nsi/logos/lbc-7e1eed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lbc-7e1eed.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198516,7 +198717,7 @@ }, { "question": "Liechtensteinische Post", - "icon": "./assets/data/nsi/logos/liechtensteinischepost-55a398.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/liechtensteinischepost-55a398.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198531,7 +198732,7 @@ }, { "question": "Lietuvos paštas", - "icon": "./assets/data/nsi/logos/lietuvospastas-738531.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lietuvospastas-738531.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198546,7 +198747,7 @@ }, { "question": "Mace", - "icon": "./assets/data/nsi/logos/mace-2ecbba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mace-2ecbba.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198561,7 +198762,7 @@ }, { "question": "Magyar Posta", - "icon": "./assets/data/nsi/logos/magyarposta-14f2b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magyarposta-14f2b7.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198576,7 +198777,7 @@ }, { "question": "MaltaPost", - "icon": "./assets/data/nsi/logos/maltapost-ed0160.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maltapost-ed0160.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198591,7 +198792,7 @@ }, { "question": "Meest", - "icon": "./assets/data/nsi/logos/meest-970b0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meest-970b0c.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198606,7 +198807,7 @@ }, { "question": "MNG Kargo", - "icon": "./assets/data/nsi/logos/mngkargo-56f07f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mngkargo-56f07f.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198621,7 +198822,7 @@ }, { "question": "MRW", - "icon": "./assets/data/nsi/logos/mrw-0a445b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mrw-0a445b.png", "osmTags": { "and": [ "amenity=post_office", @@ -198636,7 +198837,7 @@ }, { "question": "New Zealand Post", - "icon": "./assets/data/nsi/logos/newzealandpost-ff95ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newzealandpost-ff95ef.png", "osmTags": { "and": [ "amenity=post_office", @@ -198651,7 +198852,7 @@ }, { "question": "Nova Poshta", - "icon": "./assets/data/nsi/logos/novaposhta-48c390.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novaposhta-48c390.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198666,7 +198867,7 @@ }, { "question": "Nova Post", - "icon": "./assets/data/nsi/logos/novapost-fa5273.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novapost-fa5273.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198681,7 +198882,7 @@ }, { "question": "Omniva", - "icon": "./assets/data/nsi/logos/omniva-df7ea1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omniva-df7ea1.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198696,7 +198897,7 @@ }, { "question": "OPT (Polynésie française)", - "icon": "./assets/data/nsi/logos/officedespostesettelecommunicationsdepolynesiefrancaise-d4df4a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/officedespostesettelecommunicationsdepolynesiefrancaise-d4df4a.png", "osmTags": { "and": [ "amenity=post_office", @@ -198712,7 +198913,7 @@ }, { "question": "Organización Coordinadora Argentina", - "icon": "./assets/data/nsi/logos/organizacioncoordinadoraargentina-debce4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/organizacioncoordinadoraargentina-debce4.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198728,7 +198929,7 @@ }, { "question": "Österreichische Post AG", - "icon": "./assets/data/nsi/logos/osterreichischepostag-bb5e7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterreichischepostag-bb5e7f.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198743,7 +198944,7 @@ }, { "question": "Pakistan Post", - "icon": "./assets/data/nsi/logos/pakistanpost-87c3b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pakistanpost-87c3b9.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198758,7 +198959,7 @@ }, { "question": "Palestine Post", - "icon": "./assets/data/nsi/logos/palestinepost-c8471a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palestinepost-c8471a.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198773,13 +198974,13 @@ }, { "question": "PHLPost", - "icon": "./assets/data/nsi/logos/phlpost-7e1eed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/phlpost-7e1eed.png", "osmTags": { "and": [ "amenity=post_office", - "official_name=Philippine Postal Corporation", { "or": [ + "official_name=Philippine Postal Corporation", "operator=PHLPost", "operator:wikidata=Q1406037" ] @@ -198789,7 +198990,7 @@ }, { "question": "Pos Indonesia", - "icon": "./assets/data/nsi/logos/posindonesia-ab1265.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/posindonesia-ab1265.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198805,7 +199006,7 @@ }, { "question": "Pos Malaysia", - "icon": "./assets/data/nsi/logos/posmalaysia-1e070a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/posmalaysia-1e070a.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198820,7 +199021,7 @@ }, { "question": "Post Aruba", - "icon": "./assets/data/nsi/logos/postaruba-2b7fe6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postaruba-2b7fe6.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198835,7 +199036,7 @@ }, { "question": "Post Danmark", - "icon": "./assets/data/nsi/logos/postdanmark-6dc1f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postdanmark-6dc1f9.png", "osmTags": { "and": [ "amenity=post_office", @@ -198850,7 +199051,7 @@ }, { "question": "POST Luxembourg", - "icon": "./assets/data/nsi/logos/postluxembourg-be325d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postluxembourg-be325d.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198865,7 +199066,7 @@ }, { "question": "Posta", - "icon": "./assets/data/nsi/logos/posta-c7bca3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/posta-c7bca3.svg", "osmTags": { "and": [ "amenity=post_office", @@ -198880,7 +199081,7 @@ }, { "question": "Pošta Crne Gore", - "icon": "./assets/data/nsi/logos/postacrnegore-96ab16.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postacrnegore-96ab16.png", "osmTags": { "and": [ "amenity=post_office", @@ -198895,7 +199096,7 @@ }, { "question": "Posta e Kosovës", - "icon": "./assets/data/nsi/logos/postaekosoves-9e2709.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postaekosoves-9e2709.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198910,7 +199111,7 @@ }, { "question": "Poșta Moldovei", - "icon": "./assets/data/nsi/logos/postamoldovei-48c390.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postamoldovei-48c390.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198925,7 +199126,7 @@ }, { "question": "Poșta Română", - "icon": "./assets/data/nsi/logos/postaromana-08dfb1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postaromana-08dfb1.png", "osmTags": { "and": [ "amenity=post_office", @@ -198940,7 +199141,7 @@ }, { "question": "Posta Shqiptare", - "icon": "./assets/data/nsi/logos/postashqiptare-6d9f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postashqiptare-6d9f6a.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198955,7 +199156,7 @@ }, { "question": "Pošta Slovenije", - "icon": "./assets/data/nsi/logos/postaslovenije-0b013e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postaslovenije-0b013e.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -198970,7 +199171,7 @@ }, { "question": "PostalAnnex", - "icon": "./assets/data/nsi/logos/postalannex-c1ddbe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postalannex-c1ddbe.png", "osmTags": { "and": [ "amenity=post_office", @@ -198994,7 +199195,7 @@ }, { "question": "postcon", - "icon": "./assets/data/nsi/logos/postcon-8c0db3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postcon-8c0db3.png", "osmTags": { "and": [ "amenity=post_office", @@ -199009,7 +199210,7 @@ }, { "question": "Poste Italiane", - "icon": "./assets/data/nsi/logos/posteitaliane-b5464b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/posteitaliane-b5464b.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199024,7 +199225,7 @@ }, { "question": "Poste San Marino", - "icon": "./assets/data/nsi/logos/postesanmarino-b5563e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postesanmarino-b5563e.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199039,7 +199240,7 @@ }, { "question": "Pošte Srpske", - "icon": "./assets/data/nsi/logos/postesrpske-736d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postesrpske-736d07.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199054,7 +199255,7 @@ }, { "question": "Postes Canada", - "icon": "./assets/data/nsi/logos/postescanada-525cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postescanada-525cac.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199069,7 +199270,7 @@ }, { "question": "Posti", - "icon": "./assets/data/nsi/logos/posti-7504a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/posti-7504a1.png", "osmTags": { "and": [ "amenity=post_office", @@ -199084,7 +199285,7 @@ }, { "question": "PostNL", - "icon": "./assets/data/nsi/logos/postnl-b4b2c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postnl-b4b2c0.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199099,7 +199300,7 @@ }, { "question": "PostNord", - "icon": "./assets/data/nsi/logos/postnord-85beed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/postnord-85beed.png", "osmTags": { "and": [ "amenity=post_office", @@ -199114,7 +199315,7 @@ }, { "question": "PTT", - "icon": "./assets/data/nsi/logos/ptt-56f07f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ptt-56f07f.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199143,7 +199344,7 @@ }, { "question": "Serpost", - "icon": "./assets/data/nsi/logos/serpost-41842d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/serpost-41842d.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199158,7 +199359,7 @@ }, { "question": "Servientrega", - "icon": "./assets/data/nsi/logos/servientrega-754eb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servientrega-754eb3.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199173,7 +199374,7 @@ }, { "question": "Shoppers Drug Mart", - "icon": "./assets/data/nsi/logos/shoppersdrugmart-81497e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shoppersdrugmart-81497e.png", "osmTags": { "and": [ "amenity=post_office", @@ -199188,7 +199389,7 @@ }, { "question": "Singapore Post", - "icon": "./assets/data/nsi/logos/singaporepost-5f2b0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/singaporepost-5f2b0a.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199203,7 +199404,7 @@ }, { "question": "Slovenská pošta", - "icon": "./assets/data/nsi/logos/slovenskaposta-e92a45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskaposta-e92a45.png", "osmTags": { "and": [ "amenity=post_office", @@ -199218,7 +199419,7 @@ }, { "question": "South African Post Office", - "icon": "./assets/data/nsi/logos/southafricanpostoffice-dec673.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southafricanpostoffice-dec673.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199248,7 +199449,7 @@ }, { "question": "TCC", - "icon": "./assets/data/nsi/logos/tcc-754eb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tcc-754eb3.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199265,7 +199466,7 @@ }, { "question": "TEALCA", - "icon": "./assets/data/nsi/logos/tealca-de64fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tealca-de64fe.png", "osmTags": { "and": [ "amenity=post_office", @@ -199280,7 +199481,7 @@ }, { "question": "Thailand Post", - "icon": "./assets/data/nsi/logos/thailandpost-a61dae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thailandpost-a61dae.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199297,7 +199498,7 @@ }, { "question": "TNT", - "icon": "./assets/data/nsi/logos/tnt-91a3cc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tnt-91a3cc.svg", "osmTags": { "and": [ "amenity=post_office", @@ -199312,7 +199513,7 @@ }, { "question": "TTPost", - "icon": "./assets/data/nsi/logos/ttpost-a1fd14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ttpost-a1fd14.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199327,7 +199528,7 @@ }, { "question": "Tusass", - "icon": "./assets/data/nsi/logos/tusass-acd619.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tusass-acd619.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199342,7 +199543,7 @@ }, { "question": "United States Postal Service", - "icon": "./assets/data/nsi/logos/unitedstatespostalservice-c1ddbe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatespostalservice-c1ddbe.png", "osmTags": { "and": [ "amenity=post_office", @@ -199359,7 +199560,7 @@ }, { "question": "UzPost", - "icon": "./assets/data/nsi/logos/uzpost-9811e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uzpost-9811e4.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199374,7 +199575,7 @@ }, { "question": "Vietnam Post", - "icon": "./assets/data/nsi/logos/vietnampost-c0dded.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vietnampost-c0dded.png", "osmTags": { "and": [ "amenity=post_office", @@ -199389,7 +199590,7 @@ }, { "question": "Volg", - "icon": "./assets/data/nsi/logos/volg-62a267.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/volg-62a267.svg", "osmTags": { "and": [ "amenity=post_office", @@ -199404,7 +199605,7 @@ }, { "question": "Yurtiçi Kargo", - "icon": "./assets/data/nsi/logos/yurticikargo-56f07f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yurticikargo-56f07f.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199419,7 +199620,7 @@ }, { "question": "Zásilkovna", - "icon": "./assets/data/nsi/logos/zasilkovna-aa9270.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zasilkovna-aa9270.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199434,7 +199635,7 @@ }, { "question": "Zoom", - "icon": "./assets/data/nsi/logos/zoom-de64fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zoom-de64fe.png", "osmTags": { "and": [ "amenity=post_office", @@ -199449,7 +199650,7 @@ }, { "question": "Ελληνικά Ταχυδρομεία", - "icon": "./assets/data/nsi/logos/hellenicpost-f0c950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hellenicpost-f0c950.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199467,7 +199668,7 @@ }, { "question": "Белпошта", - "icon": "./assets/data/nsi/logos/belposhta-4d7a9f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belposhta-4d7a9f.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199494,7 +199695,7 @@ }, { "question": "ГУП Почта Приднестровья", - "icon": "./assets/data/nsi/logos/transnistriapost-48c390.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnistriapost-48c390.svg", "osmTags": { "and": [ "amenity=post_office", @@ -199520,7 +199721,7 @@ }, { "question": "Қазпошта", - "icon": "./assets/data/nsi/logos/kazpost-58ab80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kazpost-58ab80.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199538,7 +199739,7 @@ }, { "question": "Македонска Пошта", - "icon": "./assets/data/nsi/logos/7fe185-34211e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/7fe185-34211e.png", "osmTags": { "and": [ "amenity=post_office", @@ -199553,7 +199754,7 @@ }, { "question": "Нова Пошта", - "icon": "./assets/data/nsi/logos/530f2c-970b0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/530f2c-970b0c.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199568,7 +199769,7 @@ }, { "question": "Почта Крыма", - "icon": "./assets/data/nsi/logos/postofcrimea-98f61a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postofcrimea-98f61a.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199585,7 +199786,7 @@ }, { "question": "Почта России", - "icon": "./assets/data/nsi/logos/6898b3-5789f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/6898b3-5789f0.png", "osmTags": { "and": [ "amenity=post_office", @@ -199600,7 +199801,7 @@ }, { "question": "Пошта Србије", - "icon": "./assets/data/nsi/logos/848860-6e4d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/848860-6e4d23.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199624,7 +199825,7 @@ }, { "question": "Укрпошта", - "icon": "./assets/data/nsi/logos/ukrposhta-970b0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrposhta-970b0c.png", "osmTags": { "and": [ "amenity=post_office", @@ -199642,7 +199843,7 @@ }, { "question": "საქართველოს ფოსტა", - "icon": "./assets/data/nsi/logos/georgianpost-791091.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/georgianpost-791091.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199673,7 +199874,7 @@ }, { "question": "דואר ישראל", - "icon": "./assets/data/nsi/logos/israelpostalcompany-74bc74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/israelpostalcompany-74bc74.png", "osmTags": { "and": [ "amenity=post_office", @@ -199690,7 +199891,7 @@ }, { "question": "البريد السعودي", - "icon": "./assets/data/nsi/logos/df1b33-67dc37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/df1b33-67dc37.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199705,7 +199906,7 @@ }, { "question": "البريد العراقي", - "icon": "./assets/data/nsi/logos/iraqpost-371d69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iraqpost-371d69.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199722,7 +199923,7 @@ }, { "question": "شركة سمسا للنقل السريع المحدودة", - "icon": "./assets/data/nsi/logos/66f694-67dc37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/66f694-67dc37.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199753,7 +199954,7 @@ }, { "question": "우정사업본부", - "icon": "./assets/data/nsi/logos/koreapost-168da6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koreapost-168da6.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199770,7 +199971,7 @@ }, { "question": "ヤマト運輸", - "icon": "./assets/data/nsi/logos/yamatotransport-0af292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yamatotransport-0af292.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199787,7 +199988,7 @@ }, { "question": "中華郵政", - "icon": "./assets/data/nsi/logos/chunghwapost-feb726.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chunghwapost-feb726.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199809,7 +200010,7 @@ }, { "question": "佐川急便", - "icon": "./assets/data/nsi/logos/sagawaexpress-0af292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sagawaexpress-0af292.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199826,7 +200027,7 @@ }, { "question": "日本郵便", - "icon": "./assets/data/nsi/logos/japanpost-0af292.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/japanpost-0af292.jpg", "osmTags": { "and": [ "amenity=post_office", @@ -199846,7 +200047,7 @@ }, { "question": "香港郵政 Hongkong Post", - "icon": "./assets/data/nsi/logos/hongkongpost-c4c3b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongpost-c4c3b4.png", "osmTags": { "and": [ "amenity=post_office", @@ -199863,7 +200064,7 @@ }, { "question": "Alabama Department of Corrections", - "icon": "./assets/data/nsi/logos/alabamadepartmentofcorrections-d7c9d5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamadepartmentofcorrections-d7c9d5.svg", "osmTags": { "and": [ "amenity=prison", @@ -199879,7 +200080,7 @@ }, { "question": "Arizona Department of Corrections, Rehabilitation and Reentry", - "icon": "./assets/data/nsi/logos/arizonadepartmentofcorrectionsrehabilitationandreentry-767c1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonadepartmentofcorrectionsrehabilitationandreentry-767c1c.jpg", "osmTags": { "and": [ "amenity=prison", @@ -199896,7 +200097,7 @@ }, { "question": "Arkansas Department of Corrections", - "icon": "./assets/data/nsi/logos/arkansasdepartmentofcorrections-079086.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasdepartmentofcorrections-079086.png", "osmTags": { "and": [ "amenity=prison", @@ -199912,7 +200113,7 @@ }, { "question": "Bermuda Department of Corrections", - "icon": "./assets/data/nsi/logos/bermudadepartmentofcorrections-345f67.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bermudadepartmentofcorrections-345f67.jpg", "osmTags": { "and": [ "amenity=prison", @@ -199928,7 +200129,7 @@ }, { "question": "Bureau of Jail Management and Penology", - "icon": "./assets/data/nsi/logos/bureauofjailmanagementandpenology-9fb693.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauofjailmanagementandpenology-9fb693.png", "osmTags": { "and": [ "amenity=prison", @@ -199945,7 +200146,7 @@ }, { "question": "California Department of Corrections and Rehabilitation", - "icon": "./assets/data/nsi/logos/californiadepartmentofcorrectionsandrehabilitation-8f7b9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofcorrectionsandrehabilitation-8f7b9e.jpg", "osmTags": { "and": [ "amenity=prison", @@ -199961,7 +200162,7 @@ }, { "question": "CoreCivic", - "icon": "./assets/data/nsi/logos/corecivic-6535ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corecivic-6535ca.png", "osmTags": { "and": [ "amenity=prison", @@ -199991,7 +200192,7 @@ }, { "question": "Department of Corrections", - "icon": "./assets/data/nsi/logos/departmentofcorrections-1f32ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofcorrections-1f32ed.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200009,7 +200210,7 @@ }, { "question": "Dienst Justitiële Inrichtingen", - "icon": "./assets/data/nsi/logos/dienstjustitieleinrichtingen-3237b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dienstjustitieleinrichtingen-3237b8.png", "osmTags": { "and": [ "amenity=prison", @@ -200026,7 +200227,7 @@ }, { "question": "Direction de l'Administration pénitentiaire", - "icon": "./assets/data/nsi/logos/directiondeladministrationpenitentiaire-3e48e3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/directiondeladministrationpenitentiaire-3e48e3.svg", "osmTags": { "and": [ "amenity=prison", @@ -200042,7 +200243,7 @@ }, { "question": "Federal Bureau of Prisons", - "icon": "./assets/data/nsi/logos/federalbureauofprisons-6535ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/federalbureauofprisons-6535ca.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200072,7 +200273,7 @@ }, { "question": "Florida Department of Corrections", - "icon": "./assets/data/nsi/logos/floridadepartmentofcorrections-59f3bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridadepartmentofcorrections-59f3bf.png", "osmTags": { "and": [ "amenity=prison", @@ -200088,7 +200289,7 @@ }, { "question": "Georgia Department of Corrections", - "icon": "./assets/data/nsi/logos/georgiadepartmentofcorrections-c92cb0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/georgiadepartmentofcorrections-c92cb0.png", "osmTags": { "and": [ "amenity=prison", @@ -200104,7 +200305,7 @@ }, { "question": "His Majesty's Prison Service", - "icon": "./assets/data/nsi/logos/hismajestysprisonservice-900d21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hismajestysprisonservice-900d21.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200120,7 +200321,7 @@ }, { "question": "Idaho Department of Correction", - "icon": "./assets/data/nsi/logos/idahodepartmentofcorrection-e64a58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/idahodepartmentofcorrection-e64a58.png", "osmTags": { "and": [ "amenity=prison", @@ -200137,7 +200338,7 @@ }, { "question": "Illinois Department of Corrections", - "icon": "./assets/data/nsi/logos/illinoisdepartmentofcorrections-ab530c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentofcorrections-ab530c.png", "osmTags": { "and": [ "amenity=prison", @@ -200154,7 +200355,7 @@ }, { "question": "Indiana Department of Correction", - "icon": "./assets/data/nsi/logos/indianadepartmentofcorrection-910de5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianadepartmentofcorrection-910de5.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200170,7 +200371,7 @@ }, { "question": "Instituto Nacional Penitenciario", - "icon": "./assets/data/nsi/logos/institutonacionalpenitenciario-e9927b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutonacionalpenitenciario-e9927b.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200186,7 +200387,7 @@ }, { "question": "Irish Prison Service", - "icon": "./assets/data/nsi/logos/irishprisonservice-324cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishprisonservice-324cac.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200202,7 +200403,7 @@ }, { "question": "Kentucky Department of Corrections", - "icon": "./assets/data/nsi/logos/kentuckydepartmentofcorrections-1153aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckydepartmentofcorrections-1153aa.png", "osmTags": { "and": [ "amenity=prison", @@ -200218,7 +200419,7 @@ }, { "question": "Kriminalvården", - "icon": "./assets/data/nsi/logos/kriminalvarden-363fe4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kriminalvarden-363fe4.svg", "osmTags": { "and": [ "amenity=prison", @@ -200234,7 +200435,7 @@ }, { "question": "Michigan Department of Corrections", - "icon": "./assets/data/nsi/logos/michigandepartmentofcorrections-871ab4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofcorrections-871ab4.png", "osmTags": { "and": [ "amenity=prison", @@ -200251,7 +200452,7 @@ }, { "question": "Ministerio de Justicia y Paz", - "icon": "./assets/data/nsi/logos/ministeriodejusticiaypaz-e5ea62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodejusticiaypaz-e5ea62.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200267,7 +200468,7 @@ }, { "question": "Ministero della Giustizia", - "icon": "./assets/data/nsi/logos/ministerodellagiustizia-8d566d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerodellagiustizia-8d566d.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200283,7 +200484,7 @@ }, { "question": "Montana Department of Corrections", - "icon": "./assets/data/nsi/logos/montanadepartmentofcorrections-17b664.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montanadepartmentofcorrections-17b664.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200299,7 +200500,7 @@ }, { "question": "Nevada Department of Corrections", - "icon": "./assets/data/nsi/logos/nevadadepartmentofcorrections-fe3af9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nevadadepartmentofcorrections-fe3af9.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200316,7 +200517,7 @@ }, { "question": "New York State Department of Corrections and Community Supervision", - "icon": "./assets/data/nsi/logos/newyorkstatedepartmentofcorrectionsandcommunitysupervision-25d617.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofcorrectionsandcommunitysupervision-25d617.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200347,7 +200548,7 @@ }, { "question": "Ohio Department of Rehabilitation and Correction", - "icon": "./assets/data/nsi/logos/ohiodepartmentofrehabilitationandcorrection-367936.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofrehabilitationandcorrection-367936.png", "osmTags": { "and": [ "amenity=prison", @@ -200363,7 +200564,7 @@ }, { "question": "Oregon Department of Corrections", - "icon": "./assets/data/nsi/logos/oregondepartmentofcorrections-95714e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oregondepartmentofcorrections-95714e.png", "osmTags": { "and": [ "amenity=prison", @@ -200379,7 +200580,7 @@ }, { "question": "Pennsylvania Department of Corrections", - "icon": "./assets/data/nsi/logos/pennsylvaniadepartmentofcorrections-2d4209.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pennsylvaniadepartmentofcorrections-2d4209.png", "osmTags": { "and": [ "amenity=prison", @@ -200395,7 +200596,7 @@ }, { "question": "Scottish Prison Service", - "icon": "./assets/data/nsi/logos/scottishprisonservice-7a6ad4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishprisonservice-7a6ad4.png", "osmTags": { "and": [ "amenity=prison", @@ -200440,7 +200641,7 @@ }, { "question": "Service public fédéral Justice", - "icon": "./assets/data/nsi/logos/servicepublicfederaljustice-d13b57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicepublicfederaljustice-d13b57.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200456,7 +200657,7 @@ }, { "question": "Tennessee Department of Correction", - "icon": "./assets/data/nsi/logos/tennesseedepartmentofcorrection-438112.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseedepartmentofcorrection-438112.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200472,7 +200673,7 @@ }, { "question": "Texas Department of Criminal Justice", - "icon": "./assets/data/nsi/logos/texasdepartmentofcriminaljustice-024da5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasdepartmentofcriminaljustice-024da5.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200502,7 +200703,7 @@ }, { "question": "Utah Department of Corrections", - "icon": "./assets/data/nsi/logos/utahdepartmentofcorrections-213f01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/utahdepartmentofcorrections-213f01.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200519,7 +200720,7 @@ }, { "question": "Virginia Department of Corrections", - "icon": "./assets/data/nsi/logos/virginiadepartmentofcorrections-03430d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentofcorrections-03430d.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200535,7 +200736,7 @@ }, { "question": "Washington State Department of Corrections", - "icon": "./assets/data/nsi/logos/washingtonstatedepartmentofcorrections-c6fe94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonstatedepartmentofcorrections-c6fe94.png", "osmTags": { "and": [ "amenity=prison", @@ -200551,7 +200752,7 @@ }, { "question": "Wisconsin Department of Corrections", - "icon": "./assets/data/nsi/logos/wisconsindepartmentofcorrections-d538ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentofcorrections-d538ac.jpg", "osmTags": { "and": [ "amenity=prison", @@ -200567,7 +200768,7 @@ }, { "question": "Zbor väzenskej a justičnej stráže", - "icon": "./assets/data/nsi/logos/zborvazenskejajusticnejstraze-c449b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zborvazenskejajusticnejstraze-c449b6.png", "osmTags": { "and": [ "amenity=prison", @@ -200868,7 +201069,7 @@ }, { "question": "AAMPS", - "icon": "./assets/data/nsi/logos/aamps-94eaae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aamps-94eaae.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -200883,7 +201084,7 @@ }, { "question": "Aberdeenshire Council", - "icon": "./assets/data/nsi/logos/aberdeenshirecouncil-caa3da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aberdeenshirecouncil-caa3da.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -200928,7 +201129,7 @@ }, { "question": "Abfallwirtschaft Dithmarschen", - "icon": "./assets/data/nsi/logos/abfallwirtschaftdithmarschen-079fb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftdithmarschen-079fb7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -200958,7 +201159,7 @@ }, { "question": "Abfallwirtschaftsbetrieb München", - "icon": "./assets/data/nsi/logos/abfallwirtschaftsbetriebmunchen-4fb837.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsbetriebmunchen-4fb837.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -200974,7 +201175,7 @@ }, { "question": "Abfallwirtschaftsbetriebe Köln", - "icon": "./assets/data/nsi/logos/abfallwirtschaftsbetriebekoln-15b788.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsbetriebekoln-15b788.png", "osmTags": { "and": [ "amenity=recycling", @@ -200990,7 +201191,7 @@ }, { "question": "Abfallwirtschaftsbetriebe Münster", - "icon": "./assets/data/nsi/logos/abfallwirtschaftsbetriebemunster-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsbetriebemunster-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201006,7 +201207,7 @@ }, { "question": "Abfallwirtschaftsgesellschaft Bassum", - "icon": "./assets/data/nsi/logos/abfallwirtschaftsgesellschaftbassum-7d4127.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsgesellschaftbassum-7d4127.png", "osmTags": { "and": [ "amenity=recycling", @@ -201022,7 +201223,7 @@ }, { "question": "Abfallwirtschaftsgesellschaft Wuppertal", - "icon": "./assets/data/nsi/logos/abfallwirtschaftsgesellschaftwuppertal-15b788.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/abfallwirtschaftsgesellschaftwuppertal-15b788.svg", "osmTags": { "and": [ "amenity=recycling", @@ -201070,7 +201271,7 @@ }, { "question": "Afvalstoffendienst", - "icon": "./assets/data/nsi/logos/afvalstoffendienst-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/afvalstoffendienst-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201085,7 +201286,7 @@ }, { "question": "AHE", - "icon": "./assets/data/nsi/logos/ahe-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ahe-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201109,7 +201310,7 @@ }, { "question": "Ajuntament de Barcelona", - "icon": "./assets/data/nsi/logos/ajuntamentdebarcelona-04814d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-04814d.svg", "osmTags": { "and": [ "amenity=recycling", @@ -201231,7 +201432,7 @@ }, { "question": "Aktion Hoffnung", - "icon": "./assets/data/nsi/logos/aktionhoffnung-6737d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aktionhoffnung-6737d9.png", "osmTags": { "and": [ "amenity=recycling", @@ -201246,7 +201447,7 @@ }, { "question": "Alabama Goodwill Industries", - "icon": "./assets/data/nsi/logos/alabamagoodwillindustries-ba8eee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamagoodwillindustries-ba8eee.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201263,7 +201464,7 @@ }, { "question": "Alba", - "icon": "./assets/data/nsi/logos/alba-6737d9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alba-6737d9.svg", "osmTags": { "and": [ "amenity=recycling", @@ -201319,7 +201520,7 @@ }, { "question": "Alphen aan den Rijn", - "icon": "./assets/data/nsi/logos/alphenaandenrijn-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alphenaandenrijn-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201348,7 +201549,7 @@ }, { "question": "Amarsul", - "icon": "./assets/data/nsi/logos/amarsul-9cd697.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amarsul-9cd697.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201381,7 +201582,7 @@ }, { "question": "Apivet", - "icon": "./assets/data/nsi/logos/apivet-2b4e4a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apivet-2b4e4a.png", "osmTags": { "and": [ "amenity=recycling", @@ -201437,7 +201638,7 @@ }, { "question": "Asekol", - "icon": "./assets/data/nsi/logos/asekol-a83183.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asekol-a83183.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201488,7 +201689,7 @@ }, { "question": "Avalex", - "icon": "./assets/data/nsi/logos/avalex-fcd61b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/avalex-fcd61b.png", "osmTags": { "and": [ "amenity=recycling", @@ -201503,6 +201704,7 @@ }, { "question": "AVE", + "icon": "https://data.mapcomplete.org/nsi//logos/ave-778b5b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201517,7 +201719,7 @@ }, { "question": "AVEA (Leverkusen)", - "icon": "./assets/data/nsi/logos/avea-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avea-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201532,7 +201734,7 @@ }, { "question": "Avri", - "icon": "./assets/data/nsi/logos/avri-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avri-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201547,7 +201749,7 @@ }, { "question": "AWISTA (Düsseldorf)", - "icon": "./assets/data/nsi/logos/awista-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/awista-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201604,7 +201806,7 @@ }, { "question": "AWU Oberhavel", - "icon": "./assets/data/nsi/logos/awuoberhavel-5a52cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/awuoberhavel-5a52cc.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201633,7 +201835,7 @@ }, { "question": "Ayuntamiento de Albacete", - "icon": "./assets/data/nsi/logos/ayuntamientodealbacete-49dabd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodealbacete-49dabd.svg", "osmTags": { "and": [ "amenity=recycling", @@ -201648,7 +201850,7 @@ }, { "question": "Ayuntamiento de Madrid", - "icon": "./assets/data/nsi/logos/ayuntamientodemadrid-379168.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-379168.png", "osmTags": { "and": [ "amenity=recycling", @@ -201714,7 +201916,7 @@ }, { "question": "Bartow County", - "icon": "./assets/data/nsi/logos/bartowcounty-bddb39.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bartowcounty-bddb39.png", "osmTags": { "and": [ "amenity=recycling", @@ -201747,7 +201949,7 @@ }, { "question": "Berliner Stadtreinigungsbetriebe", - "icon": "./assets/data/nsi/logos/berlinerstadtreinigungsbetriebe-10028e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerstadtreinigungsbetriebe-10028e.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201763,7 +201965,7 @@ }, { "question": "Bethel", - "icon": "./assets/data/nsi/logos/bethel-6737d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bethel-6737d9.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201778,7 +201980,7 @@ }, { "question": "Bil Ta Garbi", - "icon": "./assets/data/nsi/logos/biltagarbi-a71053.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biltagarbi-a71053.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201793,7 +201995,7 @@ }, { "question": "BIR", - "icon": "./assets/data/nsi/logos/bir-3e1966.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bir-3e1966.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201859,7 +202061,7 @@ }, { "question": "Bowling Green State University", - "icon": "./assets/data/nsi/logos/bowlinggreenstateuniversity-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -201902,7 +202104,7 @@ }, { "question": "Brighton and Hove City Council", - "icon": "./assets/data/nsi/logos/brightonandhovecitycouncil-961c9e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-961c9e.png", "osmTags": { "and": [ "amenity=recycling", @@ -201917,7 +202119,7 @@ }, { "question": "British Heart Foundation", - "icon": "./assets/data/nsi/logos/britishheartfoundation-79fa96.png", + "icon": "https://data.mapcomplete.org/nsi//logos/britishheartfoundation-79fa96.png", "osmTags": { "and": [ "amenity=recycling", @@ -201941,7 +202143,7 @@ }, { "question": "Bruxelles Environnement - Leefmilieu Brussel", - "icon": "./assets/data/nsi/logos/bruxellesenvironnementleefmilieubrussel-980be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bruxellesenvironnementleefmilieubrussel-980be7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202012,7 +202214,7 @@ }, { "question": "Câmara Municipal de Lisboa", - "icon": "./assets/data/nsi/logos/camaramunicipaldelisboa-bcce0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camaramunicipaldelisboa-bcce0d.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202101,7 +202303,7 @@ }, { "question": "CenterParcs", - "icon": "./assets/data/nsi/logos/centerparcs-6ff6f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerparcs-6ff6f4.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202139,7 +202341,7 @@ }, { "question": "Circulus", - "icon": "./assets/data/nsi/logos/circulus-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/circulus-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202154,7 +202356,7 @@ }, { "question": "Circulus-Berkel", - "icon": "./assets/data/nsi/logos/circulusberkel-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/circulusberkel-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202169,7 +202371,7 @@ }, { "question": "Citeo", - "icon": "./assets/data/nsi/logos/citeo-59e4c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citeo-59e4c1.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202184,7 +202386,7 @@ }, { "question": "City of Denton", - "icon": "./assets/data/nsi/logos/cityofdenton-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdenton-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202199,7 +202401,7 @@ }, { "question": "City of Edinburgh Council", - "icon": "./assets/data/nsi/logos/cityofedinburghcouncil-9fa0da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofedinburghcouncil-9fa0da.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202214,7 +202416,7 @@ }, { "question": "City of Lawrence", - "icon": "./assets/data/nsi/logos/cityoflawrence-d780f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflawrence-d780f0.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202229,7 +202431,7 @@ }, { "question": "City of Modesto", - "icon": "./assets/data/nsi/logos/cityofmodesto-2532c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmodesto-2532c6.png", "osmTags": { "and": [ "amenity=recycling", @@ -202276,7 +202478,7 @@ }, { "question": "Clermont Auvergne Métropole", - "icon": "./assets/data/nsi/logos/clermontauvergnemetropole-51667b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/clermontauvergnemetropole-51667b.svg", "osmTags": { "and": [ "amenity=recycling", @@ -202291,7 +202493,7 @@ }, { "question": "Clisson Sèvre et Maine Agglo", - "icon": "./assets/data/nsi/logos/clissonsevreetmaineagglo-2b4e4a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clissonsevreetmaineagglo-2b4e4a.png", "osmTags": { "and": [ "amenity=recycling", @@ -202315,7 +202517,7 @@ }, { "question": "Cogersa", - "icon": "./assets/data/nsi/logos/cogersa-49dabd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cogersa-49dabd.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202348,7 +202550,7 @@ }, { "question": "Communauté d'Agglomération du Cotentin", - "icon": "./assets/data/nsi/logos/communautedagglomerationducotentin-cc4bea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communautedagglomerationducotentin-cc4bea.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202363,7 +202565,7 @@ }, { "question": "Communauté d'agglomération du Pays Basque", - "icon": "./assets/data/nsi/logos/communautedagglomerationdupaysbasque-a71053.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communautedagglomerationdupaysbasque-a71053.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202533,7 +202735,7 @@ }, { "question": "Communauté urbaine du Grand Reims", - "icon": "./assets/data/nsi/logos/communauteurbainedugrandreims-03cd48.png", + "icon": "https://data.mapcomplete.org/nsi//logos/communauteurbainedugrandreims-03cd48.png", "osmTags": { "and": [ "amenity=recycling", @@ -202557,7 +202759,7 @@ }, { "question": "Concello de Mugardos", - "icon": "./assets/data/nsi/logos/concellodemugardos-49dabd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/concellodemugardos-49dabd.svg", "osmTags": { "and": [ "amenity=recycling", @@ -202581,7 +202783,7 @@ }, { "question": "Coop", - "icon": "./assets/data/nsi/logos/coop-c59bef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-c59bef.png", "osmTags": { "and": [ "amenity=recycling", @@ -202605,7 +202807,7 @@ }, { "question": "COPAVO", - "icon": "./assets/data/nsi/logos/copavo-51667b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copavo-51667b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202620,7 +202822,7 @@ }, { "question": "Cork County Council", - "icon": "./assets/data/nsi/logos/corkcountycouncil-42dacd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corkcountycouncil-42dacd.png", "osmTags": { "and": [ "amenity=recycling", @@ -202687,7 +202889,7 @@ }, { "question": "Dansk Røde Kors", - "icon": "./assets/data/nsi/logos/danskrodekors-67373b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/danskrodekors-67373b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202729,7 +202931,7 @@ }, { "question": "De Kringwinkel", - "icon": "./assets/data/nsi/logos/dekringwinkel-980be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dekringwinkel-980be7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202744,7 +202946,7 @@ }, { "question": "Den Haag", - "icon": "./assets/data/nsi/logos/denhaag-fcd61b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/denhaag-fcd61b.png", "osmTags": { "and": [ "amenity=recycling", @@ -202768,7 +202970,7 @@ }, { "question": "DESWOS", - "icon": "./assets/data/nsi/logos/deswos-6737d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deswos-6737d9.png", "osmTags": { "and": [ "amenity=recycling", @@ -202783,7 +202985,7 @@ }, { "question": "Deutsche Lebens-Rettungs-Gesellschaft", - "icon": "./assets/data/nsi/logos/deutschelebensrettungsgesellschaft-6737d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschelebensrettungsgesellschaft-6737d9.png", "osmTags": { "and": [ "amenity=recycling", @@ -202808,7 +203010,7 @@ }, { "question": "Devon County Council", - "icon": "./assets/data/nsi/logos/devoncountycouncil-ad06a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/devoncountycouncil-ad06a1.png", "osmTags": { "and": [ "amenity=recycling", @@ -202823,7 +203025,7 @@ }, { "question": "Diakonie Broumov", - "icon": "./assets/data/nsi/logos/diakoniebroumov-778b5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diakoniebroumov-778b5b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202852,7 +203054,7 @@ }, { "question": "Diakoniewerk Essen", - "icon": "./assets/data/nsi/logos/diakoniewerkessen-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diakoniewerkessen-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202867,7 +203069,7 @@ }, { "question": "Douarnenez Communauté", - "icon": "./assets/data/nsi/logos/douarnenezcommunaute-cc247f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/douarnenezcommunaute-cc247f.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202882,7 +203084,7 @@ }, { "question": "DRK Kreisverband Bonn e.V.", - "icon": "./assets/data/nsi/logos/drkkreisverbandbonnev-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drkkreisverbandbonnev-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202912,7 +203114,7 @@ }, { "question": "Dürener Service Betrieb", - "icon": "./assets/data/nsi/logos/durenerservicebetrieb-15b788.png", + "icon": "https://data.mapcomplete.org/nsi//logos/durenerservicebetrieb-15b788.png", "osmTags": { "and": [ "amenity=recycling", @@ -202928,7 +203130,7 @@ }, { "question": "EAD (Darmstadt)", - "icon": "./assets/data/nsi/logos/ead-95f31a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ead-95f31a.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -202968,7 +203170,7 @@ }, { "question": "Easterseals-Goodwill", - "icon": "./assets/data/nsi/logos/eastersealsgoodwillnorthernrockymountain-9c67a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastersealsgoodwillnorthernrockymountain-9c67a8.png", "osmTags": { "and": [ "amenity=recycling", @@ -202994,7 +203196,7 @@ }, { "question": "Ecosystem", - "icon": "./assets/data/nsi/logos/ecosystem-59e4c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ecosystem-59e4c1.png", "osmTags": { "and": [ "amenity=recycling", @@ -203027,7 +203229,7 @@ }, { "question": "Ekocharita", - "icon": "./assets/data/nsi/logos/ekocharita-d6ea52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekocharita-d6ea52.jpg", "osmTags": { "and": [ "recycling:clothes=yes", @@ -203091,7 +203293,7 @@ }, { "question": "Entsorgung Dortmund GmbH", - "icon": "./assets/data/nsi/logos/entsorgungdortmundgmbh-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entsorgungdortmundgmbh-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203221,7 +203423,7 @@ }, { "question": "Evansville Goodwill Industries", - "icon": "./assets/data/nsi/logos/evansvillegoodwillindustries-b6bf84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evansvillegoodwillindustries-b6bf84.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203238,7 +203440,7 @@ }, { "question": "Evergreen Goodwill", - "icon": "./assets/data/nsi/logos/evergreengoodwill-0169dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergreengoodwill-0169dc.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203318,7 +203520,7 @@ }, { "question": "Fife Council", - "icon": "./assets/data/nsi/logos/fifecouncil-9fa0da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fifecouncil-9fa0da.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203333,7 +203535,7 @@ }, { "question": "FKF", - "icon": "./assets/data/nsi/logos/fkf-b316be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fkf-b316be.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203362,7 +203564,7 @@ }, { "question": "Frankfurter Entsorgungs- und Service GmbH", - "icon": "./assets/data/nsi/logos/frankfurterentsorgungsundservicegmbh-95f31a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/frankfurterentsorgungsundservicegmbh-95f31a.svg", "osmTags": { "and": [ "amenity=recycling", @@ -203378,7 +203580,7 @@ }, { "question": "Fretex", - "icon": "./assets/data/nsi/logos/fretex-3e1966.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fretex-3e1966.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203393,7 +203595,7 @@ }, { "question": "Friedensdorf International", - "icon": "./assets/data/nsi/logos/friedensdorfinternational-6737d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/friedensdorfinternational-6737d9.png", "osmTags": { "and": [ "amenity=recycling", @@ -203467,7 +203669,7 @@ }, { "question": "Gemeente Amsterdam", - "icon": "./assets/data/nsi/logos/gemeenteamsterdam-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteamsterdam-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203482,7 +203684,7 @@ }, { "question": "Gemeente Assen", - "icon": "./assets/data/nsi/logos/gemeenteassen-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteassen-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203497,7 +203699,7 @@ }, { "question": "Gemeente Groningen", - "icon": "./assets/data/nsi/logos/gemeentegroningen-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentegroningen-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203512,7 +203714,7 @@ }, { "question": "Gemeente Rotterdam", - "icon": "./assets/data/nsi/logos/gemeenterotterdam-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203527,7 +203729,7 @@ }, { "question": "Gemeente Utrechtse Heuvelrug", - "icon": "./assets/data/nsi/logos/gemeenteutrechtseheuvelrug-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteutrechtseheuvelrug-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203542,7 +203744,7 @@ }, { "question": "Gemeente Zaanstad", - "icon": "./assets/data/nsi/logos/gemeentezaanstad-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentezaanstad-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203557,7 +203759,7 @@ }, { "question": "Gemeente Zoetermeer", - "icon": "./assets/data/nsi/logos/gemeentezoetermeer-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentezoetermeer-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203572,7 +203774,7 @@ }, { "question": "Gemeinde Bedburg-Hau", - "icon": "./assets/data/nsi/logos/gemeindebedburghau-15b788.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindebedburghau-15b788.svg", "osmTags": { "and": [ "amenity=recycling", @@ -203605,7 +203807,7 @@ }, { "question": "Gesellschaft im Ostalbkreis für Abfallbewirtschaftung mbH", - "icon": "./assets/data/nsi/logos/gesellschaftimostalbkreisfurabfallbewirtschaftungmbh-fd14c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gesellschaftimostalbkreisfurabfallbewirtschaftungmbh-fd14c2.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203630,7 +203832,7 @@ }, { "question": "GIWOG", - "icon": "./assets/data/nsi/logos/giwog-2e00cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/giwog-2e00cf.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203645,7 +203847,7 @@ }, { "question": "Glasgow City Council", - "icon": "./assets/data/nsi/logos/glasgowcitycouncil-9fa0da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/glasgowcitycouncil-9fa0da.png", "osmTags": { "and": [ "amenity=recycling", @@ -203660,7 +203862,7 @@ }, { "question": "GLØR", - "icon": "./assets/data/nsi/logos/glor-3e1966.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glor-3e1966.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203675,7 +203877,7 @@ }, { "question": "Goodwill Central Coast", - "icon": "./assets/data/nsi/logos/goodwillcentralcoast-2532c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillcentralcoast-2532c6.png", "osmTags": { "and": [ "amenity=recycling", @@ -203692,7 +203894,7 @@ }, { "question": "Goodwill Columbus", - "icon": "./assets/data/nsi/logos/goodwillcolumbus-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillcolumbus-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203709,7 +203911,7 @@ }, { "question": "Goodwill Easterseals Miami Valley", - "icon": "./assets/data/nsi/logos/goodwilleastersealsmiamivalley-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsmiamivalley-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203726,7 +203928,7 @@ }, { "question": "Goodwill Easterseals of the Gulf Coast", - "icon": "./assets/data/nsi/logos/goodwilleastersealsofthegulfcoast-864873.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsofthegulfcoast-864873.png", "osmTags": { "and": [ "amenity=recycling", @@ -203743,7 +203945,7 @@ }, { "question": "Goodwill Hawaii", - "icon": "./assets/data/nsi/logos/goodwillhawaii-c82776.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillhawaii-c82776.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203760,7 +203962,7 @@ }, { "question": "Goodwill Industries", - "icon": "./assets/data/nsi/logos/goodwillindustriesontariogreatlakes-d16161.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesontariogreatlakes-d16161.png", "osmTags": { "and": [ "amenity=recycling", @@ -203777,7 +203979,7 @@ }, { "question": "Goodwill Industries Big Bend", - "icon": "./assets/data/nsi/logos/goodwillindustriesbigbend-4bf5e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesbigbend-4bf5e5.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203794,7 +203996,7 @@ }, { "question": "Goodwill Industries Central Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriescentraltexas-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriescentraltexas-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203811,7 +204013,7 @@ }, { "question": "Goodwill Industries of Acadiana", - "icon": "./assets/data/nsi/logos/goodwillindustriesofacadiana-f4b3df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofacadiana-f4b3df.png", "osmTags": { "and": [ "amenity=recycling", @@ -203828,7 +204030,7 @@ }, { "question": "Goodwill Industries of Akron", - "icon": "./assets/data/nsi/logos/goodwillindustriesofakron-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofakron-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203845,7 +204047,7 @@ }, { "question": "Goodwill Industries of Alaska", - "icon": "./assets/data/nsi/logos/goodwillindustriesofalaska-346f99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofalaska-346f99.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203862,7 +204064,7 @@ }, { "question": "Goodwill Industries of Arkansas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofarkansas-a88323.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofarkansas-a88323.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203911,7 +204113,7 @@ }, { "question": "Goodwill Industries of Central and Northern Arizona", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentralandnorthernarizona-6da3a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralandnorthernarizona-6da3a0.png", "osmTags": { "and": [ "amenity=recycling", @@ -203928,7 +204130,7 @@ }, { "question": "Goodwill Industries of Central East Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentraleasttexas-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentraleasttexas-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203961,7 +204163,7 @@ }, { "question": "Goodwill Industries of Central Illinois", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentralillinois-0dbe3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralillinois-0dbe3f.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -203994,7 +204196,7 @@ }, { "question": "Goodwill Industries of Central North Carolina", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentralnorthcarolina-ad5db1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralnorthcarolina-ad5db1.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204011,7 +204213,7 @@ }, { "question": "Goodwill Industries of Central Oklahoma", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentraloklahoma-3efb09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentraloklahoma-3efb09.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204060,7 +204262,7 @@ }, { "question": "Goodwill Industries of East Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofeasttexas-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofeasttexas-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204077,7 +204279,7 @@ }, { "question": "Goodwill Industries of Eastern North Carolina", - "icon": "./assets/data/nsi/logos/goodwillindustriesofeasternnorthcarolina-ad5db1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofeasternnorthcarolina-ad5db1.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204094,7 +204296,7 @@ }, { "question": "Goodwill Industries of El Paso", - "icon": "./assets/data/nsi/logos/goodwillindustriesofelpaso-b73102.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofelpaso-b73102.png", "osmTags": { "and": [ "amenity=recycling", @@ -204111,7 +204313,7 @@ }, { "question": "Goodwill Industries of Erie, Huron, Ottawa, and Sandusky Counties", - "icon": "./assets/data/nsi/logos/goodwillindustriesoferiehuronottawaandsanduskycounties-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoferiehuronottawaandsanduskycounties-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204128,7 +204330,7 @@ }, { "question": "Goodwill Industries of Greater Cleveland & East Central Ohio", - "icon": "./assets/data/nsi/logos/goodwillindustriesofgreaterclevelandandeastcentralohio-f79044.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaterclevelandandeastcentralohio-f79044.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204145,7 +204347,7 @@ }, { "question": "Goodwill Industries of Greater Detroit", - "icon": "./assets/data/nsi/logos/goodwillindustriesofgreaterdetroit-faffac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaterdetroit-faffac.png", "osmTags": { "and": [ "amenity=recycling", @@ -204162,7 +204364,7 @@ }, { "question": "Goodwill Industries of Greater Grand Rapids", - "icon": "./assets/data/nsi/logos/goodwillindustriesofgreatergrandrapids-faffac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreatergrandrapids-faffac.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204179,7 +204381,7 @@ }, { "question": "Goodwill Industries of Greater Nebraska", - "icon": "./assets/data/nsi/logos/goodwillindustriesofgreaternebraska-6446e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaternebraska-6446e0.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204196,7 +204398,7 @@ }, { "question": "Goodwill Industries of Houston", - "icon": "./assets/data/nsi/logos/goodwillindustriesofhouston-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofhouston-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204213,7 +204415,7 @@ }, { "question": "Goodwill Industries of Kansas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofkansas-d780f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkansas-d780f0.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204230,7 +204432,7 @@ }, { "question": "Goodwill Industries of Kentucky", - "icon": "./assets/data/nsi/logos/goodwillindustriesofkentucky-53bd99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkentucky-53bd99.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204247,7 +204449,7 @@ }, { "question": "Goodwill Industries of KYOWVA Area", - "icon": "./assets/data/nsi/logos/goodwillindustriesofkyowvaarea-a2cca0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkyowvaarea-a2cca0.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204264,7 +204466,7 @@ }, { "question": "Goodwill Industries of Lane and South Coast Counties", - "icon": "./assets/data/nsi/logos/goodwillindustriesoflaneandsouthcoastcounties-f1b1be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoflaneandsouthcoastcounties-f1b1be.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204281,7 +204483,7 @@ }, { "question": "Goodwill Industries of Michiana", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmichiana-050bed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmichiana-050bed.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204298,7 +204500,7 @@ }, { "question": "Goodwill Industries of Mid-Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmidmichigan-faffac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmidmichigan-faffac.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204315,7 +204517,7 @@ }, { "question": "Goodwill Industries of Middle Georgia and the Central Savannah River Area", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmiddlegeorgiaandthecentralsavannahriverarea-46156d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmiddlegeorgiaandthecentralsavannahriverarea-46156d.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204332,7 +204534,7 @@ }, { "question": "Goodwill Industries of Middle Tennessee", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmiddletennessee-5c7b72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmiddletennessee-5c7b72.png", "osmTags": { "and": [ "amenity=recycling", @@ -204349,7 +204551,7 @@ }, { "question": "Goodwill Industries of Mississippi", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmississippi-4702a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmississippi-4702a5.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204366,7 +204568,7 @@ }, { "question": "Goodwill Industries of New Mexico", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnewmexico-b786f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnewmexico-b786f3.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204383,7 +204585,7 @@ }, { "question": "Goodwill Industries of North Central Pennsylvania", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthcentralpennsylvania-a2879a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthcentralpennsylvania-a2879a.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204400,7 +204602,7 @@ }, { "question": "Goodwill Industries of North Central Wisconsin", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthcentralwisconsin-3d1452.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthcentralwisconsin-3d1452.png", "osmTags": { "and": [ "amenity=recycling", @@ -204417,7 +204619,7 @@ }, { "question": "Goodwill Industries of North Florida", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthflorida-e45d79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthflorida-e45d79.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204434,7 +204636,7 @@ }, { "question": "Goodwill Industries of North Louisiana", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthlouisiana-f4b3df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthlouisiana-f4b3df.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204467,7 +204669,7 @@ }, { "question": "Goodwill Industries of Northeast Iowa", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnortheastiowa-9b051b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheastiowa-9b051b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204484,7 +204686,7 @@ }, { "question": "Goodwill Industries of Northeast Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnortheasttexas-fd5c62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheasttexas-fd5c62.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204501,7 +204703,7 @@ }, { "question": "Goodwill Industries of Northeastern Pennsylvania", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnortheasternpennsylvania-a2879a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheasternpennsylvania-a2879a.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204518,7 +204720,7 @@ }, { "question": "Goodwill Industries of Northern Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthernmichigan-faffac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthernmichigan-faffac.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204535,7 +204737,7 @@ }, { "question": "Goodwill Industries of Northwest North Carolina", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthwestnorthcarolina-ad5db1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthwestnorthcarolina-ad5db1.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204568,7 +204770,7 @@ }, { "question": "Goodwill Industries of Northwest Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthwesttexas-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthwesttexas-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204585,7 +204787,7 @@ }, { "question": "Goodwill Industries of Saint Clair County", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsaintclaircounty-faffac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsaintclaircounty-faffac.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204602,7 +204804,7 @@ }, { "question": "Goodwill Industries of San Antonio", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsanantonio-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsanantonio-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204619,7 +204821,7 @@ }, { "question": "Goodwill Industries of San Diego County", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsandiegocounty-2532c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsandiegocounty-2532c6.png", "osmTags": { "and": [ "amenity=recycling", @@ -204636,7 +204838,7 @@ }, { "question": "Goodwill Industries of San Joaquin Valley", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsanjoaquinvalley-2532c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsanjoaquinvalley-2532c6.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204653,7 +204855,7 @@ }, { "question": "Goodwill Industries of South Central California", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthcentralcalifornia-2532c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthcentralcalifornia-2532c6.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204670,7 +204872,7 @@ }, { "question": "Goodwill Industries of South Florida", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthflorida-e45d79.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthflorida-e45d79.png", "osmTags": { "and": [ "amenity=recycling", @@ -204687,7 +204889,7 @@ }, { "question": "Goodwill Industries of South Mississippi", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthmississippi-4702a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthmississippi-4702a5.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204704,7 +204906,7 @@ }, { "question": "Goodwill Industries of South Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthtexas-5c5465.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthtexas-5c5465.png", "osmTags": { "and": [ "amenity=recycling", @@ -204721,7 +204923,7 @@ }, { "question": "Goodwill Industries of Southeast Texas and Southwest Louisiana", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsoutheasttexasandsouthwestlouisiana-868f8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasttexasandsouthwestlouisiana-868f8d.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204754,7 +204956,7 @@ }, { "question": "Goodwill Industries of Southeastern Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsoutheasternmichigan-faffac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasternmichigan-faffac.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204771,7 +204973,7 @@ }, { "question": "Goodwill Industries of Southeastern Wisconsin and Metropolitan Chicago", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsoutheasternwisconsinandmetropolitanchicago-2f2732.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasternwisconsinandmetropolitanchicago-2f2732.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204788,7 +204990,7 @@ }, { "question": "Goodwill Industries of Southern Arizona", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthernarizona-6da3a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthernarizona-6da3a0.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204805,7 +205007,7 @@ }, { "question": "Goodwill Industries of Southern New Jersey & Philadelphia", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthernnewjerseyandphiladelphia-3d3b8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthernnewjerseyandphiladelphia-3d3b8b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204838,7 +205040,7 @@ }, { "question": "Goodwill Industries of Southwest Florida", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthwestflorida-e45d79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwestflorida-e45d79.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204855,7 +205057,7 @@ }, { "question": "Goodwill Industries of Southwest Oklahoma and North Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthwestoklahomaandnorthtexas-fd5c62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwestoklahomaandnorthtexas-fd5c62.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204872,7 +205074,7 @@ }, { "question": "Goodwill Industries of Southwestern Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthwesternmichigan-faffac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwesternmichigan-faffac.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204889,7 +205091,7 @@ }, { "question": "Goodwill Industries of Tenneva", - "icon": "./assets/data/nsi/logos/goodwillindustriesoftenneva-527c10.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftenneva-527c10.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204906,7 +205108,7 @@ }, { "question": "Goodwill Industries of the Berkshires and Southern Vermont", - "icon": "./assets/data/nsi/logos/goodwillindustriesoftheberkshiresandsouthernvermont-02efc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftheberkshiresandsouthernvermont-02efc9.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204923,7 +205125,7 @@ }, { "question": "Goodwill Industries of the Chesapeake", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthechesapeake-00ca8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthechesapeake-00ca8a.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204940,7 +205142,7 @@ }, { "question": "Goodwill Industries of the Columbia", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthecolumbia-f5a3ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthecolumbia-f5a3ef.png", "osmTags": { "and": [ "amenity=recycling", @@ -204957,7 +205159,7 @@ }, { "question": "Goodwill Industries of the Columbia Willamette", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthecolumbiawillamette-f5a3ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthecolumbiawillamette-f5a3ef.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -204974,7 +205176,7 @@ }, { "question": "Goodwill Industries of the Greater Chattanooga Area", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthegreaterchattanoogaarea-6a894b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthegreaterchattanoogaarea-6a894b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205007,7 +205209,7 @@ }, { "question": "Goodwill Industries of the Inland Northwest", - "icon": "./assets/data/nsi/logos/goodwillindustriesoftheinlandnorthwest-10e8a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftheinlandnorthwest-10e8a5.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205024,7 +205226,7 @@ }, { "question": "Goodwill Industries of the Southern Piedmont", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthesouthernpiedmont-25b0e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthesouthernpiedmont-25b0e7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205041,7 +205243,7 @@ }, { "question": "Goodwill Industries of the Summit", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthesummit-c41e2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthesummit-c41e2f.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205058,7 +205260,7 @@ }, { "question": "Goodwill Industries of the Valleys", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthevalleys-68a1e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthevalleys-68a1e2.png", "osmTags": { "and": [ "amenity=recycling", @@ -205075,7 +205277,7 @@ }, { "question": "Goodwill Industries of Tulsa", - "icon": "./assets/data/nsi/logos/goodwillindustriesoftulsa-262734.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftulsa-262734.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205092,7 +205294,7 @@ }, { "question": "Goodwill Industries of Upstate/Midlands South Carolina", - "icon": "./assets/data/nsi/logos/goodwillindustriesofupstatemidlandssouthcarolina-66147f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofupstatemidlandssouthcarolina-66147f.png", "osmTags": { "and": [ "amenity=recycling", @@ -205109,7 +205311,7 @@ }, { "question": "Goodwill Industries of Wayne and Holmes Counties", - "icon": "./assets/data/nsi/logos/goodwillindustriesofwayneandholmescounties-5e5980.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwayneandholmescounties-5e5980.png", "osmTags": { "and": [ "amenity=recycling", @@ -205126,7 +205328,7 @@ }, { "question": "Goodwill Industries of West Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofwestmichigan-faffac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwestmichigan-faffac.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205143,7 +205345,7 @@ }, { "question": "Goodwill Industries of Wyoming", - "icon": "./assets/data/nsi/logos/goodwillindustriesofwyoming-d1801d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwyoming-d1801d.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205160,7 +205362,7 @@ }, { "question": "Goodwill Industries of Zanesville", - "icon": "./assets/data/nsi/logos/goodwillindustriesofzanesville-f79044.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofzanesville-f79044.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205177,7 +205379,7 @@ }, { "question": "Goodwill Industries Serving Southeast Nebraska", - "icon": "./assets/data/nsi/logos/goodwillindustriesservingsoutheastnebraska-6446e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesservingsoutheastnebraska-6446e0.png", "osmTags": { "and": [ "amenity=recycling", @@ -205194,7 +205396,7 @@ }, { "question": "Goodwill Industries Suncoast", - "icon": "./assets/data/nsi/logos/goodwillindustriessuncoast-e45d79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriessuncoast-e45d79.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205211,7 +205413,7 @@ }, { "question": "Goodwill Industries-Knoxville", - "icon": "./assets/data/nsi/logos/goodwillindustriesknoxville-5c7b72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesknoxville-5c7b72.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205228,7 +205430,7 @@ }, { "question": "Goodwill Keystone Area", - "icon": "./assets/data/nsi/logos/goodwillkeystonearea-a2879a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillkeystonearea-a2879a.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205245,7 +205447,7 @@ }, { "question": "Goodwill Manasota", - "icon": "./assets/data/nsi/logos/goodwillmanasota-e45d79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillmanasota-e45d79.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205262,7 +205464,7 @@ }, { "question": "Goodwill North Central Texas", - "icon": "./assets/data/nsi/logos/goodwillnorthcentraltexas-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillnorthcentraltexas-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205279,7 +205481,7 @@ }, { "question": "Goodwill Northern New England", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthernnewengland-b5c663.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthernnewengland-b5c663.png", "osmTags": { "and": [ "amenity=recycling", @@ -205296,7 +205498,7 @@ }, { "question": "Goodwill NYNJ", - "icon": "./assets/data/nsi/logos/goodwillnynj-ed1d24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillnynj-ed1d24.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205313,7 +205515,7 @@ }, { "question": "Goodwill of Central & Southern Indiana", - "icon": "./assets/data/nsi/logos/goodwillofcentralandsouthernindiana-827bef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofcentralandsouthernindiana-827bef.png", "osmTags": { "and": [ "amenity=recycling", @@ -205330,7 +205532,7 @@ }, { "question": "Goodwill of Central and Coastal Virginia", - "icon": "./assets/data/nsi/logos/goodwillofcentralandcoastalvirginia-68a1e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofcentralandcoastalvirginia-68a1e2.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205363,7 +205565,7 @@ }, { "question": "Goodwill of Colorado", - "icon": "./assets/data/nsi/logos/goodwillofcolorado-9180d8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofcolorado-9180d8.png", "osmTags": { "and": [ "amenity=recycling", @@ -205380,7 +205582,7 @@ }, { "question": "Goodwill of Greater Washington", - "icon": "./assets/data/nsi/logos/goodwillofgreaterwashington-be3266.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofgreaterwashington-be3266.png", "osmTags": { "and": [ "amenity=recycling", @@ -205397,7 +205599,7 @@ }, { "question": "Goodwill of North Central West Virginia", - "icon": "./assets/data/nsi/logos/goodwillofnorthcentralwestvirginia-c41e2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthcentralwestvirginia-c41e2f.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205414,7 +205616,7 @@ }, { "question": "Goodwill of North Georgia", - "icon": "./assets/data/nsi/logos/goodwillofnorthgeorgia-bddb39.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthgeorgia-bddb39.png", "osmTags": { "and": [ "amenity=recycling", @@ -205431,7 +205633,7 @@ }, { "question": "Goodwill of Northern Illinois", - "icon": "./assets/data/nsi/logos/goodwillofnorthernillinois-2f2732.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthernillinois-2f2732.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205448,7 +205650,7 @@ }, { "question": "Goodwill of Northern Wisconsin and Upper Michigan", - "icon": "./assets/data/nsi/logos/goodwillofnorthernwisconsinanduppermichigan-0c3cc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthernwisconsinanduppermichigan-0c3cc5.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205465,7 +205667,7 @@ }, { "question": "Goodwill of Orange County", - "icon": "./assets/data/nsi/logos/goodwilloforangecounty-392603.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilloforangecounty-392603.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205482,7 +205684,7 @@ }, { "question": "Goodwill of Silicon Valley", - "icon": "./assets/data/nsi/logos/goodwillofsiliconvalley-2532c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsiliconvalley-2532c6.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205499,7 +205701,7 @@ }, { "question": "Goodwill of South Central Ohio", - "icon": "./assets/data/nsi/logos/goodwillofsouthcentralohio-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthcentralohio-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205516,7 +205718,7 @@ }, { "question": "Goodwill of South Central Wisconsin", - "icon": "./assets/data/nsi/logos/goodwillofsouthcentralwisconsin-3d1452.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthcentralwisconsin-3d1452.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205533,7 +205735,7 @@ }, { "question": "Goodwill of Southern Nevada", - "icon": "./assets/data/nsi/logos/goodwillofsouthernnevada-c52770.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthernnevada-c52770.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205550,7 +205752,7 @@ }, { "question": "Goodwill of Southern New England", - "icon": "./assets/data/nsi/logos/goodwillofsouthernnewengland-93573f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthernnewengland-93573f.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205567,7 +205769,7 @@ }, { "question": "Goodwill of Southwestern Pennsylvania", - "icon": "./assets/data/nsi/logos/goodwillofsouthwesternpennsylvania-a2879a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthwesternpennsylvania-a2879a.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205584,7 +205786,7 @@ }, { "question": "Goodwill of the Finger Lakes", - "icon": "./assets/data/nsi/logos/goodwillofthefingerlakes-e1a32f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofthefingerlakes-e1a32f.png", "osmTags": { "and": [ "amenity=recycling", @@ -205601,7 +205803,7 @@ }, { "question": "Goodwill of the Great Plains", - "icon": "./assets/data/nsi/logos/goodwillofthegreatplains-de5c63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofthegreatplains-de5c63.png", "osmTags": { "and": [ "amenity=recycling", @@ -205618,7 +205820,7 @@ }, { "question": "Goodwill of the Heartland", - "icon": "./assets/data/nsi/logos/goodwilloftheheartland-078386.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilloftheheartland-078386.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205635,7 +205837,7 @@ }, { "question": "Goodwill of the Olympics & Rainier Region", - "icon": "./assets/data/nsi/logos/goodwilloftheolympicsandrainierregion-0169dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilloftheolympicsandrainierregion-0169dc.png", "osmTags": { "and": [ "amenity=recycling", @@ -205652,7 +205854,7 @@ }, { "question": "Goodwill of the Southern Alleghenies", - "icon": "./assets/data/nsi/logos/goodwillofthesouthernalleghenies-a2879a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofthesouthernalleghenies-a2879a.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205669,7 +205871,7 @@ }, { "question": "Goodwill of Western & Northern Connecticut", - "icon": "./assets/data/nsi/logos/goodwillofwesternandnorthernconnecticut-dbc5ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternandnorthernconnecticut-dbc5ec.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205686,7 +205888,7 @@ }, { "question": "Goodwill of Western Missouri and Eastern Kansas", - "icon": "./assets/data/nsi/logos/goodwillofwesternmissouriandeasternkansas-a67e1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternmissouriandeasternkansas-a67e1b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205703,7 +205905,7 @@ }, { "question": "Goodwill of Western New York", - "icon": "./assets/data/nsi/logos/goodwillofwesternnewyork-e1a32f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternnewyork-e1a32f.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205720,7 +205922,7 @@ }, { "question": "Goodwill Rappahannock", - "icon": "./assets/data/nsi/logos/goodwillrappahannock-68a1e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillrappahannock-68a1e2.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205737,7 +205939,7 @@ }, { "question": "Goodwill Redwood Empire", - "icon": "./assets/data/nsi/logos/goodwillredwoodempire-2532c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillredwoodempire-2532c6.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205754,7 +205956,7 @@ }, { "question": "Goodwill Sacramento Valley & Northern Nevada", - "icon": "./assets/data/nsi/logos/goodwillsacramentovalleyandnorthernnevada-a122c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillsacramentovalleyandnorthernnevada-a122c5.png", "osmTags": { "and": [ "amenity=recycling", @@ -205771,7 +205973,7 @@ }, { "question": "Goodwill Serving Eastern Nebraska and Southwest Iowa", - "icon": "./assets/data/nsi/logos/goodwillservingeasternnebraskaandsouthwestiowa-fa4fae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillservingeasternnebraskaandsouthwestiowa-fa4fae.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205788,7 +205990,7 @@ }, { "question": "Goodwill Serving Lorain, Erie and Huron Counties", - "icon": "./assets/data/nsi/logos/goodwillservinglorainerieandhuroncounties-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillservinglorainerieandhuroncounties-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205805,7 +206007,7 @@ }, { "question": "Goodwill SF Bay", - "icon": "./assets/data/nsi/logos/goodwillofsanfranciscobay-2532c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsanfranciscobay-2532c6.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205822,7 +206024,7 @@ }, { "question": "Goodwill Southeast Georgia", - "icon": "./assets/data/nsi/logos/goodwillsoutheastgeorgia-bddb39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillsoutheastgeorgia-bddb39.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205839,7 +206041,7 @@ }, { "question": "Goodwill Southern California", - "icon": "./assets/data/nsi/logos/goodwillsoutherncalifornia-2532c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillsoutherncalifornia-2532c6.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205856,7 +206058,7 @@ }, { "question": "Goodwill Southern Los Angeles County", - "icon": "./assets/data/nsi/logos/goodwillsouthernlosangelescounty-2532c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillsouthernlosangelescounty-2532c6.png", "osmTags": { "and": [ "amenity=recycling", @@ -205873,7 +206075,7 @@ }, { "question": "Goodwill VSB", - "icon": "./assets/data/nsi/logos/goodwillindustriesofventuraandsantabarbaracounties-2532c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofventuraandsantabarbaracounties-2532c6.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205890,7 +206092,7 @@ }, { "question": "Goodwill West Texas", - "icon": "./assets/data/nsi/logos/goodwillwesttexas-5c5465.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillwesttexas-5c5465.png", "osmTags": { "and": [ "amenity=recycling", @@ -205907,7 +206109,7 @@ }, { "question": "Goodwill-Easter Seals Minnesota", - "icon": "./assets/data/nsi/logos/goodwilleastersealsminnesota-a13c05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsminnesota-a13c05.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -205924,7 +206126,7 @@ }, { "question": "Göttinger Entsorgungsbetriebe", - "icon": "./assets/data/nsi/logos/gottingerentsorgungsbetriebe-7d4127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gottingerentsorgungsbetriebe-7d4127.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206005,7 +206207,7 @@ }, { "question": "Gulfstream Goodwill Industries", - "icon": "./assets/data/nsi/logos/gulfstreamgoodwillindustries-e45d79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gulfstreamgoodwillindustries-e45d79.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206040,7 +206242,7 @@ }, { "question": "Hackney Council", - "icon": "./assets/data/nsi/logos/hackneycouncil-c49ed3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-c49ed3.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206056,7 +206258,7 @@ }, { "question": "Heart of Texas Goodwill Industries", - "icon": "./assets/data/nsi/logos/heartoftexasgoodwillindustries-5c5465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heartoftexasgoodwillindustries-5c5465.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206082,7 +206284,7 @@ }, { "question": "Helsingin seudun ympäristöpalvelut", - "icon": "./assets/data/nsi/logos/helsinginseudunymparistopalvelut-3e65e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/helsinginseudunymparistopalvelut-3e65e0.png", "osmTags": { "and": [ "amenity=recycling", @@ -206098,7 +206300,7 @@ }, { "question": "HERA", - "icon": "./assets/data/nsi/logos/hera-94eaae.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hera-94eaae.svg", "osmTags": { "and": [ "amenity=recycling", @@ -206122,7 +206324,7 @@ }, { "question": "Holding Graz", - "icon": "./assets/data/nsi/logos/holdinggraz-0f4458.png", + "icon": "https://data.mapcomplete.org/nsi//logos/holdinggraz-0f4458.png", "osmTags": { "and": [ "amenity=recycling", @@ -206137,7 +206339,7 @@ }, { "question": "Horizon Goodwill Industries", - "icon": "./assets/data/nsi/logos/horizongoodwillindustries-331283.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/horizongoodwillindustries-331283.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206163,7 +206365,7 @@ }, { "question": "Humana", - "icon": "./assets/data/nsi/logos/humana-915a74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/humana-915a74.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206187,7 +206389,7 @@ }, { "question": "HVC", - "icon": "./assets/data/nsi/logos/hvc-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hvc-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206211,7 +206413,7 @@ }, { "question": "IDELUX Environnement", - "icon": "./assets/data/nsi/logos/ideluxenvironnement-980be7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ideluxenvironnement-980be7.png", "osmTags": { "and": [ "amenity=recycling", @@ -206226,7 +206428,7 @@ }, { "question": "IMOG", - "icon": "./assets/data/nsi/logos/imog-980be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imog-980be7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206264,7 +206466,7 @@ }, { "question": "Intradel", - "icon": "./assets/data/nsi/logos/intradel-980be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intradel-980be7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206302,7 +206504,7 @@ }, { "question": "Irado", - "icon": "./assets/data/nsi/logos/irado-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irado-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206340,7 +206542,7 @@ }, { "question": "Isle of Wight Council", - "icon": "./assets/data/nsi/logos/isleofwightcouncil-4fb1e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isleofwightcouncil-4fb1e4.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206369,7 +206571,7 @@ }, { "question": "IVAREM", - "icon": "./assets/data/nsi/logos/ivarem-980be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ivarem-980be7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206393,7 +206595,7 @@ }, { "question": "Jakob Becker Entsorgungs-GmbH", - "icon": "./assets/data/nsi/logos/jakobbeckerentsorgungsgmbh-6737d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jakobbeckerentsorgungsgmbh-6737d9.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206417,7 +206619,7 @@ }, { "question": "Jeder Tropfen zählt", - "icon": "./assets/data/nsi/logos/jedertropfenzahlt-0767fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jedertropfenzahlt-0767fe.jpg", "osmTags": { "and": [ "recycling:cooking_oil=yes", @@ -206443,7 +206645,7 @@ }, { "question": "Johanniter-Unfall-Hilfe", - "icon": "./assets/data/nsi/logos/johanniterunfallhilfe-6737d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johanniterunfallhilfe-6737d9.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206518,7 +206720,7 @@ }, { "question": "Kent State University", - "icon": "./assets/data/nsi/logos/kentstateuniversity-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206556,7 +206758,7 @@ }, { "question": "KlokTex", - "icon": "./assets/data/nsi/logos/kloktex-778b5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kloktex-778b5b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206603,7 +206805,7 @@ }, { "question": "KOSIT, a.s.", - "icon": "./assets/data/nsi/logos/kositas-d6ea52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kositas-d6ea52.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206618,7 +206820,7 @@ }, { "question": "Kredsløb", - "icon": "./assets/data/nsi/logos/kredslob-67373b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kredslob-67373b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206706,7 +206908,7 @@ }, { "question": "Lancashire County Council", - "icon": "./assets/data/nsi/logos/lancashirecountycouncil-01fac1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lancashirecountycouncil-01fac1.png", "osmTags": { "and": [ "amenity=recycling", @@ -206721,7 +206923,7 @@ }, { "question": "Lancaster City Council", - "icon": "./assets/data/nsi/logos/lancastercitycouncil-58d7ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancastercitycouncil-58d7ff.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206736,7 +206938,7 @@ }, { "question": "Land of Lincoln Goodwill Industries", - "icon": "./assets/data/nsi/logos/landoflincolngoodwillindustries-b90a9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landoflincolngoodwillindustries-b90a9c.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206753,7 +206955,7 @@ }, { "question": "Landkreis Kaiserslautern", - "icon": "./assets/data/nsi/logos/landkreiskaiserslautern-886dbb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreiskaiserslautern-886dbb.svg", "osmTags": { "and": [ "amenity=recycling", @@ -206768,7 +206970,7 @@ }, { "question": "Landkreis Prignitz", - "icon": "./assets/data/nsi/logos/landkreisprignitz-5a52cc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisprignitz-5a52cc.svg", "osmTags": { "and": [ "amenity=recycling", @@ -206783,7 +206985,7 @@ }, { "question": "Landkreis Rosenheim", - "icon": "./assets/data/nsi/logos/landkreisrosenheim-4fb837.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisrosenheim-4fb837.svg", "osmTags": { "and": [ "amenity=recycling", @@ -206910,7 +207112,7 @@ }, { "question": "Leeds City Council", - "icon": "./assets/data/nsi/logos/leedscitycouncil-6aed58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leedscitycouncil-6aed58.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206925,7 +207127,7 @@ }, { "question": "Leger des Heils", - "icon": "./assets/data/nsi/logos/legerdesheils-fcd61b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/legerdesheils-fcd61b.png", "osmTags": { "and": [ "amenity=recycling", @@ -206965,7 +207167,7 @@ }, { "question": "Licking/Knox Goodwill Industries", - "icon": "./assets/data/nsi/logos/lickingknoxgoodwillindustries-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lickingknoxgoodwillindustries-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -206982,7 +207184,7 @@ }, { "question": "Lidl", - "icon": "./assets/data/nsi/logos/lidl-91c985.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidl-91c985.png", "osmTags": { "and": [ "amenity=recycling", @@ -207038,7 +207240,7 @@ }, { "question": "LIPASAM", - "icon": "./assets/data/nsi/logos/lipasam-49dabd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lipasam-49dabd.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207062,7 +207264,7 @@ }, { "question": "London Borough of Newham", - "icon": "./assets/data/nsi/logos/londonboroughofnewham-c49ed3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofnewham-c49ed3.svg", "osmTags": { "and": [ "amenity=recycling", @@ -207104,7 +207306,7 @@ }, { "question": "M-Texx", - "icon": "./assets/data/nsi/logos/mtexx-f11175.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtexx-f11175.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207121,7 +207323,7 @@ }, { "question": "MA 48", - "icon": "./assets/data/nsi/logos/ma48-688e62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ma48-688e62.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207136,7 +207338,7 @@ }, { "question": "Madre Coraje", - "icon": "./assets/data/nsi/logos/madrecoraje-49dabd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madrecoraje-49dabd.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207165,7 +207367,7 @@ }, { "question": "Mairie de Paris", - "icon": "./assets/data/nsi/logos/mairiedeparis-f6a4bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-f6a4bb.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207189,7 +207391,7 @@ }, { "question": "Marion Goodwill Industries", - "icon": "./assets/data/nsi/logos/mariongoodwillindustries-5e5980.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mariongoodwillindustries-5e5980.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207230,7 +207432,7 @@ }, { "question": "Maxima", - "icon": "./assets/data/nsi/logos/maxima-3da616.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxima-3da616.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207245,7 +207447,7 @@ }, { "question": "MB Recycling", - "icon": "./assets/data/nsi/logos/mbrecycling-f1a5a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mbrecycling-f1a5a5.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207260,7 +207462,7 @@ }, { "question": "Meerlanden", - "icon": "./assets/data/nsi/logos/meerlanden-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meerlanden-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207275,7 +207477,7 @@ }, { "question": "Memphis Goodwill", - "icon": "./assets/data/nsi/logos/memphisgoodwill-361d78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphisgoodwill-361d78.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207292,7 +207494,7 @@ }, { "question": "MERS Missouri Goodwill Industries", - "icon": "./assets/data/nsi/logos/mersmissourigoodwillindustries-e14d83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mersmissourigoodwillindustries-e14d83.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207309,7 +207511,7 @@ }, { "question": "Město Sokolov", - "icon": "./assets/data/nsi/logos/mestosokolov-778b5b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestosokolov-778b5b.svg", "osmTags": { "and": [ "amenity=recycling", @@ -207324,7 +207526,7 @@ }, { "question": "Métropole Aix-Marseille-Provence", - "icon": "./assets/data/nsi/logos/metropoleaixmarseilleprovence-c4a3eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metropoleaixmarseilleprovence-c4a3eb.png", "osmTags": { "and": [ "amenity=recycling", @@ -207339,7 +207541,7 @@ }, { "question": "Métropole de Lyon", - "icon": "./assets/data/nsi/logos/metropoledelyon-51667b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropoledelyon-51667b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207354,7 +207556,7 @@ }, { "question": "Métropôle européenne de Lille", - "icon": "./assets/data/nsi/logos/metropoleeuropeennedelille-da77aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropoleeuropeennedelille-da77aa.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207379,7 +207581,7 @@ }, { "question": "Migros", - "icon": "./assets/data/nsi/logos/migros-c59bef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/migros-c59bef.png", "osmTags": { "and": [ "amenity=recycling", @@ -207403,7 +207605,7 @@ }, { "question": "Morgan Memorial Goodwill Industries", - "icon": "./assets/data/nsi/logos/morganmemorialgoodwillindustries-bca807.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morganmemorialgoodwillindustries-bca807.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207512,7 +207714,7 @@ }, { "question": "Newport City Council", - "icon": "./assets/data/nsi/logos/newportcitycouncil-abb8e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-abb8e1.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207536,7 +207738,7 @@ }, { "question": "Norfolk County Council", - "icon": "./assets/data/nsi/logos/norfolkcountycouncil-0288c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolkcountycouncil-0288c7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207551,7 +207753,7 @@ }, { "question": "Norges Røde Kors", - "icon": "./assets/data/nsi/logos/norgesrodekors-3e1966.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norgesrodekors-3e1966.png", "osmTags": { "and": [ "amenity=recycling", @@ -207566,7 +207768,7 @@ }, { "question": "Nottingham City Council", - "icon": "./assets/data/nsi/logos/nottinghamcitycouncil-a10777.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nottinghamcitycouncil-a10777.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207581,7 +207783,7 @@ }, { "question": "Novonor", - "icon": "./assets/data/nsi/logos/novonor-ade6e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/novonor-ade6e6.png", "osmTags": { "and": [ "amenity=recycling", @@ -207596,7 +207798,7 @@ }, { "question": "Obec Tuchlovice", - "icon": "./assets/data/nsi/logos/obectuchlovice-778b5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obectuchlovice-778b5b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207611,7 +207813,7 @@ }, { "question": "Ohio Valley Goodwill Industries", - "icon": "./assets/data/nsi/logos/ohiovalleygoodwillindustries-82bc2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiovalleygoodwillindustries-82bc2d.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207646,7 +207848,7 @@ }, { "question": "Optima", - "icon": "./assets/data/nsi/logos/optima-d6ea52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/optima-d6ea52.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207675,7 +207877,7 @@ }, { "question": "Palmetto Goodwill", - "icon": "./assets/data/nsi/logos/palmettogoodwill-66147f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmettogoodwill-66147f.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207720,7 +207922,7 @@ }, { "question": "Parish of Saint Helier", - "icon": "./assets/data/nsi/logos/parishofsainthelier-ca1d6d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/parishofsainthelier-ca1d6d.svg", "osmTags": { "and": [ "amenity=recycling", @@ -207744,7 +207946,7 @@ }, { "question": "Plaine Commune", - "icon": "./assets/data/nsi/logos/plainecommune-f6a4bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plainecommune-f6a4bb.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207793,7 +207995,7 @@ }, { "question": "Polski Czerwony Krzyż", - "icon": "./assets/data/nsi/logos/polskiczerwonykrzyz-f1a5a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/polskiczerwonykrzyz-f1a5a5.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207827,7 +208029,7 @@ }, { "question": "Pražské služby", - "icon": "./assets/data/nsi/logos/prazskesluzby-778b5b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prazskesluzby-778b5b.png", "osmTags": { "and": [ "amenity=recycling", @@ -207842,7 +208044,7 @@ }, { "question": "Prefeitura Municipal de Fortaleza", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldefortaleza-ccef4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldefortaleza-ccef4d.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207857,6 +208059,7 @@ }, { "question": "PreZero", + "icon": "https://data.mapcomplete.org/nsi//logos/prezero-6737d9.png", "osmTags": { "and": [ "amenity=recycling", @@ -207917,7 +208120,7 @@ }, { "question": "Ragn-Sells AS", - "icon": "./assets/data/nsi/logos/ragnsellsas-ef3a0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ragnsellsas-ef3a0e.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -207964,7 +208167,7 @@ }, { "question": "Red Barnet", - "icon": "./assets/data/nsi/logos/redbarnet-67373b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/redbarnet-67373b.png", "osmTags": { "and": [ "amenity=recycling", @@ -208007,7 +208210,7 @@ }, { "question": "reloga", - "icon": "./assets/data/nsi/logos/reloga-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reloga-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208022,7 +208225,7 @@ }, { "question": "REMONDIS", - "icon": "./assets/data/nsi/logos/remondis-222d99.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/remondis-222d99.svg", "osmTags": { "and": [ "amenity=recycling", @@ -208037,7 +208240,7 @@ }, { "question": "Rennes Métropole", - "icon": "./assets/data/nsi/logos/rennesmetropole-cc247f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rennesmetropole-cc247f.svg", "osmTags": { "and": [ "amenity=recycling", @@ -208136,7 +208339,7 @@ }, { "question": "Rimi", - "icon": "./assets/data/nsi/logos/rimi-3da616.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rimi-3da616.png", "osmTags": { "and": [ "amenity=recycling", @@ -208160,7 +208363,7 @@ }, { "question": "Rodez Agglomération", - "icon": "./assets/data/nsi/logos/rodezagglomeration-adf56a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rodezagglomeration-adf56a.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208203,7 +208406,7 @@ }, { "question": "RSAG", - "icon": "./assets/data/nsi/logos/rsag-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rsag-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208227,7 +208430,7 @@ }, { "question": "Sainsbury's", - "icon": "./assets/data/nsi/logos/sainsburys-79fa96.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sainsburys-79fa96.png", "osmTags": { "and": [ "amenity=recycling", @@ -208256,6 +208459,7 @@ }, { "question": "SAKO", + "icon": "https://data.mapcomplete.org/nsi//logos/sako-778b5b.png", "osmTags": { "and": [ "amenity=recycling", @@ -208288,7 +208492,7 @@ }, { "question": "Schönmackers Umweltdienste GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/schonmackersumweltdienstegmbhandcokg-15b788.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schonmackersumweltdienstegmbhandcokg-15b788.png", "osmTags": { "and": [ "amenity=recycling", @@ -208318,7 +208522,7 @@ }, { "question": "Scope", - "icon": "./assets/data/nsi/logos/scope-79fa96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scope-79fa96.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208342,7 +208546,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-0169dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-0169dc.png", "osmTags": { "and": [ "amenity=recycling", @@ -208359,7 +208563,7 @@ }, { "question": "Seattle University", - "icon": "./assets/data/nsi/logos/seattleuniversity-0169dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattleuniversity-0169dc.png", "osmTags": { "and": [ "amenity=recycling", @@ -208511,7 +208715,7 @@ }, { "question": "SIRCTOM", - "icon": "./assets/data/nsi/logos/sirctom-51667b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sirctom-51667b.png", "osmTags": { "and": [ "amenity=recycling", @@ -208526,7 +208730,7 @@ }, { "question": "Siredom", - "icon": "./assets/data/nsi/logos/siredom-f6a4bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siredom-f6a4bb.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208564,7 +208768,7 @@ }, { "question": "Sitcom Côte sud des Landes", - "icon": "./assets/data/nsi/logos/sitcomcotesuddeslandes-a71053.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sitcomcotesuddeslandes-a71053.png", "osmTags": { "and": [ "amenity=recycling", @@ -208579,7 +208783,7 @@ }, { "question": "SITREVA (Rambouillet)", - "icon": "./assets/data/nsi/logos/sitreva-8b4326.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sitreva-8b4326.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208594,7 +208798,7 @@ }, { "question": "SIVALOR", - "icon": "./assets/data/nsi/logos/sivalor-51667b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sivalor-51667b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208618,7 +208822,7 @@ }, { "question": "SMAV", - "icon": "./assets/data/nsi/logos/smav-da77aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smav-da77aa.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208633,7 +208837,7 @@ }, { "question": "Smictom d'Alsace Centrale", - "icon": "./assets/data/nsi/logos/smictomdalsacecentrale-03cd48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smictomdalsacecentrale-03cd48.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208648,7 +208852,7 @@ }, { "question": "SMICVAL", - "icon": "./assets/data/nsi/logos/smicval-a71053.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smicval-a71053.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208722,7 +208926,7 @@ }, { "question": "Somerset Waste Partnership", - "icon": "./assets/data/nsi/logos/somersetwastepartnership-934ccf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetwastepartnership-934ccf.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208737,7 +208941,7 @@ }, { "question": "Sorpa", - "icon": "./assets/data/nsi/logos/sorpa-270303.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sorpa-270303.png", "osmTags": { "and": [ "amenity=recycling", @@ -208752,7 +208956,7 @@ }, { "question": "Southern Oregon Goodwill Industries", - "icon": "./assets/data/nsi/logos/southernoregongoodwillindustries-d6f1b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southernoregongoodwillindustries-d6f1b8.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208778,7 +208982,7 @@ }, { "question": "Stad Halle", - "icon": "./assets/data/nsi/logos/stadhalle-980be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadhalle-980be7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208802,7 +209006,7 @@ }, { "question": "Stadt Bern", - "icon": "./assets/data/nsi/logos/stadtbern-6b5fd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbern-6b5fd1.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208817,7 +209021,7 @@ }, { "question": "Stadt Hamm", - "icon": "./assets/data/nsi/logos/stadthamm-15b788.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadthamm-15b788.svg", "osmTags": { "and": [ "amenity=recycling", @@ -208832,7 +209036,7 @@ }, { "question": "Stadt Heidelberg", - "icon": "./assets/data/nsi/logos/stadtheidelberg-fd14c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtheidelberg-fd14c2.png", "osmTags": { "and": [ "amenity=recycling", @@ -208847,7 +209051,7 @@ }, { "question": "Stadt Kamp-Lintfort", - "icon": "./assets/data/nsi/logos/stadtkamplintfort-15b788.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkamplintfort-15b788.png", "osmTags": { "and": [ "amenity=recycling", @@ -208862,7 +209066,7 @@ }, { "question": "Stadt Krems", - "icon": "./assets/data/nsi/logos/stadtkrems-a48b14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkrems-a48b14.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208877,7 +209081,7 @@ }, { "question": "Stadt Landshut", - "icon": "./assets/data/nsi/logos/stadtlandshut-4fb837.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtlandshut-4fb837.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208892,7 +209096,7 @@ }, { "question": "Stadt Willich", - "icon": "./assets/data/nsi/logos/stadtwillich-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwillich-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208950,7 +209154,7 @@ }, { "question": "Stadtreinigung Hamburg", - "icon": "./assets/data/nsi/logos/stadtreinigunghamburg-d0aa76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtreinigunghamburg-d0aa76.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208965,7 +209169,7 @@ }, { "question": "Stadtreinigung Leipzig", - "icon": "./assets/data/nsi/logos/stadtreinigungleipzig-180c3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtreinigungleipzig-180c3d.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -208995,7 +209199,7 @@ }, { "question": "Stadtwerke Brühl", - "icon": "./assets/data/nsi/logos/stadtwerkebruhl-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebruhl-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209010,7 +209214,7 @@ }, { "question": "Stadtwerke Erfurt", - "icon": "./assets/data/nsi/logos/stadtwerkeerfurt-0723c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeerfurt-0723c2.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209049,7 +209253,7 @@ }, { "question": "Suez", - "icon": "./assets/data/nsi/logos/suez-b5f2f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suez-b5f2f0.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209133,7 +209337,7 @@ }, { "question": "Sympany", - "icon": "./assets/data/nsi/logos/sympany-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sympany-fcd61b.jpg", "osmTags": { "and": [ "recycling:clothes=yes", @@ -209248,7 +209452,7 @@ }, { "question": "Syndicat Interdépartemental Mixte pour l'Equipement Rural", - "icon": "./assets/data/nsi/logos/syndicatinterdepartementalmixtepourlequipementrural-a71053.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/syndicatinterdepartementalmixtepourlequipementrural-a71053.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209278,7 +209482,7 @@ }, { "question": "Syndicat Médocain pour la collecte et le traitement des ordures ménagères", - "icon": "./assets/data/nsi/logos/syndicatmedocainpourlacollecteetletraitementdesorduresmenageres-a71053.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/syndicatmedocainpourlacollecteetletraitementdesorduresmenageres-a71053.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209336,7 +209540,7 @@ }, { "question": "Syndicat Mixte Départemental des Déchets de la Dordogne", - "icon": "./assets/data/nsi/logos/syndicatmixtedepartementaldesdechetsdeladordogne-a71053.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/syndicatmixtedepartementaldesdechetsdeladordogne-a71053.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209352,7 +209556,7 @@ }, { "question": "Syndicat Mixte du Département de l'Oise", - "icon": "./assets/data/nsi/logos/syndicatmixtedudepartementdeloise-da77aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/syndicatmixtedudepartementdeloise-da77aa.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209533,7 +209737,7 @@ }, { "question": "Tesco", - "icon": "./assets/data/nsi/logos/tesco-91c985.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tesco-91c985.png", "osmTags": { "and": [ "amenity=recycling", @@ -209642,7 +209846,7 @@ }, { "question": "TexCycle", - "icon": "./assets/data/nsi/logos/texcycle-f11175.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texcycle-f11175.png", "osmTags": { "and": [ "amenity=recycling", @@ -209673,7 +209877,7 @@ }, { "question": "The Fire Fighters Charity", - "icon": "./assets/data/nsi/logos/thefirefighterscharity-79fa96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thefirefighterscharity-79fa96.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209697,7 +209901,7 @@ }, { "question": "Toulouse Métropole", - "icon": "./assets/data/nsi/logos/toulousemetropole-adf56a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/toulousemetropole-adf56a.svg", "osmTags": { "and": [ "amenity=recycling", @@ -209712,7 +209916,7 @@ }, { "question": "Tours Métropole Val de Loire", - "icon": "./assets/data/nsi/logos/toursmetropolevaldeloire-aa5dde.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toursmetropolevaldeloire-aa5dde.png", "osmTags": { "and": [ "amenity=recycling", @@ -209768,7 +209972,7 @@ }, { "question": "Triple M Metal", - "icon": "./assets/data/nsi/logos/triplemmetal-2bbb23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/triplemmetal-2bbb23.png", "osmTags": { "and": [ "amenity=recycling", @@ -209783,7 +209987,7 @@ }, { "question": "True North Goodwill", - "icon": "./assets/data/nsi/logos/truenorthgoodwill-a13c05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truenorthgoodwill-a13c05.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209809,7 +210013,7 @@ }, { "question": "Twente Milieu", - "icon": "./assets/data/nsi/logos/twentemilieu-fcd61b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/twentemilieu-fcd61b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209851,7 +210055,7 @@ }, { "question": "University of Cambridge", - "icon": "./assets/data/nsi/logos/universityofcambridge-0288c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofcambridge-0288c7.png", "osmTags": { "and": [ "amenity=recycling", @@ -209889,7 +210093,7 @@ }, { "question": "Urząd Miasta Opola", - "icon": "./assets/data/nsi/logos/urzadmiastaopola-f1a5a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/urzadmiastaopola-f1a5a5.png", "osmTags": { "and": [ "amenity=recycling", @@ -209904,7 +210108,7 @@ }, { "question": "USB Bochum", - "icon": "./assets/data/nsi/logos/usbbochum-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usbbochum-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209937,7 +210141,7 @@ }, { "question": "Valence Romans Agglo", - "icon": "./assets/data/nsi/logos/valenceromansagglo-51667b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valenceromansagglo-51667b.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -209984,7 +210188,7 @@ }, { "question": "Veolia", - "icon": "./assets/data/nsi/logos/veolia-451a3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/veolia-451a3b.png", "osmTags": { "and": [ "amenity=recycling", @@ -210013,7 +210217,7 @@ }, { "question": "Veolia Umweltservice", - "icon": "./assets/data/nsi/logos/veoliaumweltservice-6737d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veoliaumweltservice-6737d9.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210083,7 +210287,7 @@ }, { "question": "Ville de Genève", - "icon": "./assets/data/nsi/logos/villedegeneve-4d3bc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedegeneve-4d3bc7.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210158,7 +210362,7 @@ }, { "question": "Wabash Valley Goodwill Industries", - "icon": "./assets/data/nsi/logos/wabashvalleygoodwillindustries-b90a9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wabashvalleygoodwillindustries-b90a9c.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210202,7 +210406,7 @@ }, { "question": "Wirtschaftsbetriebe Duisburg", - "icon": "./assets/data/nsi/logos/wirtschaftsbetriebeduisburg-15b788.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wirtschaftsbetriebeduisburg-15b788.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210242,7 +210446,7 @@ }, { "question": "Youngstown Area Goodwill Industries", - "icon": "./assets/data/nsi/logos/youngstownareagoodwillindustries-40d83e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/youngstownareagoodwillindustries-40d83e.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210259,7 +210463,7 @@ }, { "question": "Zagrebački holding", - "icon": "./assets/data/nsi/logos/zagrebackiholding-39eeaa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zagrebackiholding-39eeaa.svg", "osmTags": { "and": [ "amenity=recycling", @@ -210329,7 +210533,7 @@ }, { "question": "Zweckverband Abfallwirtschaft Region Hannover", - "icon": "./assets/data/nsi/logos/zweckverbandabfallwirtschaftregionhannover-7d4127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zweckverbandabfallwirtschaftregionhannover-7d4127.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210359,7 +210563,7 @@ }, { "question": "Zweckverband Abfallwirtschaft Straubing Stadt und Land", - "icon": "./assets/data/nsi/logos/zweckverbandabfallwirtschaftstraubingstadtundland-4fb837.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zweckverbandabfallwirtschaftstraubingstadtundland-4fb837.png", "osmTags": { "and": [ "amenity=recycling", @@ -210383,7 +210587,7 @@ }, { "question": "Zweckverband für Abfallwirtschaft Kempten", - "icon": "./assets/data/nsi/logos/zweckverbandfurabfallwirtschaftkempten-4fb837.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zweckverbandfurabfallwirtschaftkempten-4fb837.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210425,7 +210629,7 @@ }, { "question": "Булекопак", - "icon": "./assets/data/nsi/logos/c51e34-f11175.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c51e34-f11175.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210440,7 +210644,7 @@ }, { "question": "БЧК", - "icon": "./assets/data/nsi/logos/9906a9-f11175.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9906a9-f11175.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210464,7 +210668,7 @@ }, { "question": "Еко Партнърс", - "icon": "./assets/data/nsi/logos/bd1461-f11175.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bd1461-f11175.png", "osmTags": { "and": [ "amenity=recycling", @@ -210479,7 +210683,7 @@ }, { "question": "Екобулпак", - "icon": "./assets/data/nsi/logos/9f09a5-f11175.png", + "icon": "https://data.mapcomplete.org/nsi//logos/9f09a5-f11175.png", "osmTags": { "and": [ "amenity=recycling", @@ -210494,7 +210698,7 @@ }, { "question": "Екопак", - "icon": "./assets/data/nsi/logos/aa0e2d-f11175.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aa0e2d-f11175.jpg", "osmTags": { "and": [ "amenity=recycling", @@ -210509,7 +210713,7 @@ }, { "question": "Емаус-Оселя", - "icon": "./assets/data/nsi/logos/811117-c13e89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/811117-c13e89.jpg", "osmTags": { "and": [ "recycling:books=yes", @@ -210557,7 +210761,7 @@ }, { "question": "Київкомунсервіс", - "icon": "./assets/data/nsi/logos/56168c-c13e89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/56168c-c13e89.jpg", "osmTags": { "and": [ "recycling_type=container", @@ -210573,7 +210777,7 @@ }, { "question": "Кошик Добра", - "icon": "./assets/data/nsi/logos/521c50-c13e89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/521c50-c13e89.png", "osmTags": { "and": [ "recycling:clothes=yes", @@ -210769,7 +210973,7 @@ }, { "question": "Abbotsford School District", - "icon": "./assets/data/nsi/logos/abbotsfordschooldistrict-ac5479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abbotsfordschooldistrict-ac5479.jpg", "osmTags": { "and": [ "amenity=school", @@ -210786,7 +210990,7 @@ }, { "question": "ABC Unified School District", - "icon": "./assets/data/nsi/logos/abcunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abcunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -210803,7 +211007,7 @@ }, { "question": "Aberdeen City Council", - "icon": "./assets/data/nsi/logos/aberdeencitycouncil-5ae747.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aberdeencitycouncil-5ae747.jpg", "osmTags": { "and": [ "amenity=school", @@ -210819,7 +211023,7 @@ }, { "question": "Aberdeenshire Council", - "icon": "./assets/data/nsi/logos/aberdeenshirecouncil-e10172.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aberdeenshirecouncil-e10172.jpg", "osmTags": { "and": [ "amenity=school", @@ -210970,7 +211174,7 @@ }, { "question": "Académie de Versailles", - "icon": "./assets/data/nsi/logos/academiedeversailles-3c0887.png", + "icon": "https://data.mapcomplete.org/nsi//logos/academiedeversailles-3c0887.png", "osmTags": { "and": [ "amenity=school", @@ -210986,7 +211190,7 @@ }, { "question": "Academy District 20", - "icon": "./assets/data/nsi/logos/academydistrict20-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/academydistrict20-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -211002,7 +211206,7 @@ }, { "question": "Academy Transformation Trust", - "icon": "./assets/data/nsi/logos/academytransformationtrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/academytransformationtrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -211047,7 +211251,7 @@ }, { "question": "ACT Education Directorate", - "icon": "./assets/data/nsi/logos/acteducationdirectorate-2c901a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acteducationdirectorate-2c901a.jpg", "osmTags": { "and": [ "amenity=school", @@ -211107,7 +211311,7 @@ }, { "question": "Administración Nacional de Educatión Publica", - "icon": "./assets/data/nsi/logos/administracionnacionaldeeducationpublica-6176b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/administracionnacionaldeeducationpublica-6176b9.png", "osmTags": { "and": [ "amenity=school", @@ -211215,7 +211419,7 @@ }, { "question": "Agrupamento de Escolas Afonso de Albuquerque", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasafonsodealbuquerque-902108.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasafonsodealbuquerque-902108.jpg", "osmTags": { "and": [ "amenity=school", @@ -211231,7 +211435,7 @@ }, { "question": "Agrupamento de Escolas António Correia de Oliveira", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasantoniocorreiadeoliveira-a26df1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasantoniocorreiadeoliveira-a26df1.png", "osmTags": { "and": [ "amenity=school", @@ -211247,7 +211451,7 @@ }, { "question": "Agrupamento de Escolas Carmen Miranda", - "icon": "./assets/data/nsi/logos/agrupamentodeescolascarmenmiranda-bd750b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolascarmenmiranda-bd750b.jpg", "osmTags": { "and": [ "amenity=school", @@ -211263,7 +211467,7 @@ }, { "question": "Agrupamento de Escolas Coimbra Centro", - "icon": "./assets/data/nsi/logos/agrupamentodeescolascoimbracentro-ff6174.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolascoimbracentro-ff6174.jpg", "osmTags": { "and": [ "amenity=school", @@ -211279,7 +211483,7 @@ }, { "question": "Agrupamento de Escolas Coimbra Oeste", - "icon": "./assets/data/nsi/logos/agrupamentodeescolascoimbraoeste-ff6174.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolascoimbraoeste-ff6174.png", "osmTags": { "and": [ "amenity=school", @@ -211295,7 +211499,7 @@ }, { "question": "Agrupamento de Escolas D. Afonso Henriques (Santarém)", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdafonsohenriques-2166f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdafonsohenriques-2166f0.jpg", "osmTags": { "and": [ "amenity=school", @@ -211311,7 +211515,7 @@ }, { "question": "Agrupamento de Escolas D. Maria II (Vila Nova de Famalicão)", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdmariaii-a26df1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdmariaii-a26df1.jpg", "osmTags": { "and": [ "amenity=school", @@ -211342,7 +211546,7 @@ }, { "question": "Agrupamento de Escolas da Sé (Guarda)", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdase-902108.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdase-902108.jpg", "osmTags": { "and": [ "amenity=school", @@ -211358,7 +211562,7 @@ }, { "question": "Agrupamento de Escolas de Anadia", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdeanadia-5c16da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeanadia-5c16da.jpg", "osmTags": { "and": [ "amenity=school", @@ -211374,7 +211578,7 @@ }, { "question": "Agrupamento de Escolas de Arouca", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdearouca-5c16da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdearouca-5c16da.jpg", "osmTags": { "and": [ "amenity=school", @@ -211390,7 +211594,7 @@ }, { "question": "Agrupamento de Escolas de Búzio", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdebuzio-5c16da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdebuzio-5c16da.jpg", "osmTags": { "and": [ "amenity=school", @@ -211406,7 +211610,7 @@ }, { "question": "Agrupamento de Escolas de Canelas", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdecanelas-bd750b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdecanelas-bd750b.jpg", "osmTags": { "and": [ "amenity=school", @@ -211422,7 +211626,7 @@ }, { "question": "Agrupamento de Escolas de Castro Daire", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdecastrodaire-349a25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdecastrodaire-349a25.jpg", "osmTags": { "and": [ "amenity=school", @@ -211438,7 +211642,7 @@ }, { "question": "Agrupamento de Escolas de Cister", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdecister-2a7235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdecister-2a7235.jpg", "osmTags": { "and": [ "amenity=school", @@ -211454,7 +211658,7 @@ }, { "question": "Agrupamento de Escolas de Coronado e Castro", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdecoronadoecastro-bd750b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdecoronadoecastro-bd750b.png", "osmTags": { "and": [ "amenity=school", @@ -211485,7 +211689,7 @@ }, { "question": "Agrupamento de Escolas de Esmoriz - Ovar Norte", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdeesmorizovarnorte-5c16da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeesmorizovarnorte-5c16da.jpg", "osmTags": { "and": [ "amenity=school", @@ -211501,7 +211705,7 @@ }, { "question": "Agrupamento de Escolas de Marrazes", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdemarrazes-2a7235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdemarrazes-2a7235.jpg", "osmTags": { "and": [ "amenity=school", @@ -211517,7 +211721,7 @@ }, { "question": "Agrupamento de Escolas de Monte da Ola", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdemontedaola-3d7fba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdemontedaola-3d7fba.jpg", "osmTags": { "and": [ "amenity=school", @@ -211533,7 +211737,7 @@ }, { "question": "Agrupamento de Escolas de Montemor-o-Novo", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdemontemoronovo-2f65f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdemontemoronovo-2f65f7.jpg", "osmTags": { "and": [ "amenity=school", @@ -211549,7 +211753,7 @@ }, { "question": "Agrupamento de Escolas de Oliveira do Bairro", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdeoliveiradobairro-5c16da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeoliveiradobairro-5c16da.png", "osmTags": { "and": [ "amenity=school", @@ -211565,7 +211769,7 @@ }, { "question": "Agrupamento de Escolas de Oliveira do Hospital", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdeoliveiradohospital-ff6174.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeoliveiradohospital-ff6174.jpg", "osmTags": { "and": [ "amenity=school", @@ -211581,7 +211785,7 @@ }, { "question": "Agrupamento de Escolas de Ourém", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdeourem-2166f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeourem-2166f0.png", "osmTags": { "and": [ "amenity=school", @@ -211597,7 +211801,7 @@ }, { "question": "Agrupamento de Escolas de Pombal", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdepombal-2a7235.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdepombal-2a7235.png", "osmTags": { "and": [ "amenity=school", @@ -211613,7 +211817,7 @@ }, { "question": "Agrupamento de Escolas de Porto de Mós", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdeportodemos-2a7235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdeportodemos-2a7235.jpg", "osmTags": { "and": [ "amenity=school", @@ -211659,7 +211863,7 @@ }, { "question": "Agrupamento de Escolas de Vila Verde", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdevilaverde-a26df1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdevilaverde-a26df1.jpg", "osmTags": { "and": [ "amenity=school", @@ -211675,7 +211879,7 @@ }, { "question": "Agrupamento de Escolas Diogo de Macedo", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdiogodemacedo-bd750b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdiogodemacedo-bd750b.png", "osmTags": { "and": [ "amenity=school", @@ -211691,7 +211895,7 @@ }, { "question": "Agrupamento de Escolas do Cadaval", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdocadaval-1f63fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdocadaval-1f63fe.jpg", "osmTags": { "and": [ "amenity=school", @@ -211722,7 +211926,7 @@ }, { "question": "Agrupamento de Escolas Dr. Machado de Matos", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasdrmachadodematos-bd750b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasdrmachadodematos-bd750b.jpg", "osmTags": { "and": [ "amenity=school", @@ -211753,7 +211957,7 @@ }, { "question": "Agrupamento de Escolas Frei Heitor Pinto", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasfreiheitorpinto-a9e355.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasfreiheitorpinto-a9e355.jpg", "osmTags": { "and": [ "amenity=school", @@ -211769,7 +211973,7 @@ }, { "question": "Agrupamento de Escolas Gardunha e Xisto", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasgardunhaexisto-a9e355.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasgardunhaexisto-a9e355.jpg", "osmTags": { "and": [ "amenity=school", @@ -211860,7 +212064,7 @@ }, { "question": "Agrupamento de Escolas Martinho Árias", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasmartinhoarias-ff6174.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasmartinhoarias-ff6174.png", "osmTags": { "and": [ "amenity=school", @@ -211876,7 +212080,7 @@ }, { "question": "Agrupamento de Escolas Padre João Coelho Cabanita", - "icon": "./assets/data/nsi/logos/agrupamentodeescolaspadrejoaocoelhocabanita-9f50fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolaspadrejoaocoelhocabanita-9f50fa.jpg", "osmTags": { "and": [ "amenity=school", @@ -211907,7 +212111,7 @@ }, { "question": "Agrupamento de Escolas Rainha Santa Isabel (Coimbra)", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasrainhasantaisabel-ff6174.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasrainhasantaisabel-ff6174.jpg", "osmTags": { "and": [ "amenity=school", @@ -211923,7 +212127,7 @@ }, { "question": "Agrupamento de Escolas Rainha Santa Isabel (Leiria)", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasrainhasantaisabel-2a7235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasrainhasantaisabel-2a7235.jpg", "osmTags": { "and": [ "amenity=school", @@ -211939,7 +212143,7 @@ }, { "question": "Agrupamento de Escolas Rosa Ramalho", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasrosaramalho-a26df1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasrosaramalho-a26df1.jpg", "osmTags": { "and": [ "amenity=school", @@ -211955,7 +212159,7 @@ }, { "question": "Agrupamento de Escolas Sá da Bandeira", - "icon": "./assets/data/nsi/logos/agrupamentodeescolassadabandeira-2166f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolassadabandeira-2166f0.jpg", "osmTags": { "and": [ "amenity=school", @@ -211971,7 +212175,7 @@ }, { "question": "Agrupamento de Escolas Sophia de Mello Breyner", - "icon": "./assets/data/nsi/logos/agrupamentodeescolassophiademellobreyner-bd750b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolassophiademellobreyner-bd750b.jpg", "osmTags": { "and": [ "amenity=school", @@ -211987,7 +212191,7 @@ }, { "question": "Agrupamento de Escolas Templários", - "icon": "./assets/data/nsi/logos/agrupamentodeescolastemplarios-2166f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolastemplarios-2166f0.jpg", "osmTags": { "and": [ "amenity=school", @@ -212003,7 +212207,7 @@ }, { "question": "Agrupamento de Escolas Tomaz Pelayo", - "icon": "./assets/data/nsi/logos/agrupamentodeescolastomazpelayo-bd750b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolastomazpelayo-bd750b.jpg", "osmTags": { "and": [ "amenity=school", @@ -212019,7 +212223,7 @@ }, { "question": "Agrupamento de Escolas Viseu Norte", - "icon": "./assets/data/nsi/logos/agrupamentodeescolasviseunorte-349a25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrupamentodeescolasviseunorte-349a25.jpg", "osmTags": { "and": [ "amenity=school", @@ -212080,7 +212284,7 @@ }, { "question": "Akershus fylkeskommune", - "icon": "./assets/data/nsi/logos/akershusfylkeskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/akershusfylkeskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -212096,7 +212300,7 @@ }, { "question": "Alachua County Public Schools", - "icon": "./assets/data/nsi/logos/alachuacountypublicschools-e8bc2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alachuacountypublicschools-e8bc2a.png", "osmTags": { "and": [ "amenity=school", @@ -212202,7 +212406,7 @@ }, { "question": "Alavuden kaupunki", - "icon": "./assets/data/nsi/logos/alavudenkaupunki-4ccccf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alavudenkaupunki-4ccccf.png", "osmTags": { "and": [ "amenity=school", @@ -212218,7 +212422,7 @@ }, { "question": "Albany County School District #1", - "icon": "./assets/data/nsi/logos/albanycountyschooldistrict1-a56222.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albanycountyschooldistrict1-a56222.jpg", "osmTags": { "and": [ "amenity=school", @@ -212295,7 +212499,7 @@ }, { "question": "Albuquerque Public Schools", - "icon": "./assets/data/nsi/logos/albuquerquepublicschools-2a40d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albuquerquepublicschools-2a40d4.png", "osmTags": { "and": [ "amenity=school", @@ -212371,7 +212575,7 @@ }, { "question": "Aldine Independent School District", - "icon": "./assets/data/nsi/logos/aldineindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldineindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -212433,7 +212637,7 @@ }, { "question": "Ålesund kommune", - "icon": "./assets/data/nsi/logos/alesundkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alesundkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -212449,7 +212653,7 @@ }, { "question": "Aletheia Academies Trust", - "icon": "./assets/data/nsi/logos/aletheiaacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aletheiaacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -212465,7 +212669,7 @@ }, { "question": "Alexandria City Public Schools", - "icon": "./assets/data/nsi/logos/alexandriacitypublicschools-3cf7e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alexandriacitypublicschools-3cf7e1.png", "osmTags": { "and": [ "amenity=school", @@ -212558,7 +212762,7 @@ }, { "question": "Algonquin and Lakeshore Catholic District School Board", - "icon": "./assets/data/nsi/logos/algonquinandlakeshorecatholicdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/algonquinandlakeshorecatholicdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -212575,7 +212779,7 @@ }, { "question": "Alhambra Elementary School District", - "icon": "./assets/data/nsi/logos/alhambraelementaryschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alhambraelementaryschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -212592,7 +212796,7 @@ }, { "question": "Alhambra Unified School District", - "icon": "./assets/data/nsi/logos/alhambraunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alhambraunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -212624,7 +212828,7 @@ }, { "question": "Alice Independent School District", - "icon": "./assets/data/nsi/logos/aliceindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aliceindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -212716,7 +212920,7 @@ }, { "question": "Alief Independent School District", - "icon": "./assets/data/nsi/logos/aliefindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aliefindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -212927,7 +213131,7 @@ }, { "question": "Alpine School District", - "icon": "./assets/data/nsi/logos/alpineschooldistrict-614f2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alpineschooldistrict-614f2b.jpg", "osmTags": { "and": [ "amenity=school", @@ -212944,7 +213148,7 @@ }, { "question": "Alta kommune", - "icon": "./assets/data/nsi/logos/altakommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altakommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -212990,7 +213194,7 @@ }, { "question": "Alver kommune", - "icon": "./assets/data/nsi/logos/alverkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alverkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -213021,7 +213225,7 @@ }, { "question": "Amarillo ISD", - "icon": "./assets/data/nsi/logos/amarilloindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amarilloindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -213113,7 +213317,7 @@ }, { "question": "Anaheim Elementary School District", - "icon": "./assets/data/nsi/logos/anaheimelementaryschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anaheimelementaryschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -213130,7 +213334,7 @@ }, { "question": "Anaheim Union High School District", - "icon": "./assets/data/nsi/logos/anaheimunionhighschooldistrict-4ed216.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anaheimunionhighschooldistrict-4ed216.png", "osmTags": { "and": [ "amenity=school", @@ -213266,7 +213470,7 @@ }, { "question": "Anglian Learning", - "icon": "./assets/data/nsi/logos/anglianlearning-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anglianlearning-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -213282,7 +213486,7 @@ }, { "question": "Angus Council", - "icon": "./assets/data/nsi/logos/anguscouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anguscouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -213328,7 +213532,7 @@ }, { "question": "Ann Arbor Public Schools", - "icon": "./assets/data/nsi/logos/annarborpublicschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/annarborpublicschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -213556,7 +213760,7 @@ }, { "question": "Arcadia Unified School District", - "icon": "./assets/data/nsi/logos/arcadiaunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arcadiaunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -213573,7 +213777,7 @@ }, { "question": "Archdiocese of Chicago", - "icon": "./assets/data/nsi/logos/archdioceseofchicago-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/archdioceseofchicago-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -213589,7 +213793,7 @@ }, { "question": "Archdiocese of Cincinnati", - "icon": "./assets/data/nsi/logos/archdioceseofcincinnati-a7daad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/archdioceseofcincinnati-a7daad.jpg", "osmTags": { "and": [ "amenity=school", @@ -213605,7 +213809,7 @@ }, { "question": "Archdiocese of Detroit", - "icon": "./assets/data/nsi/logos/archdioceseofdetroit-aa6f23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/archdioceseofdetroit-aa6f23.png", "osmTags": { "and": [ "amenity=school", @@ -213621,7 +213825,7 @@ }, { "question": "Arendal kommune", - "icon": "./assets/data/nsi/logos/arendalkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arendalkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -213667,7 +213871,7 @@ }, { "question": "Argyll and Bute Council", - "icon": "./assets/data/nsi/logos/argyllandbutecouncil-7782f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/argyllandbutecouncil-7782f9.png", "osmTags": { "and": [ "amenity=school", @@ -213728,7 +213932,7 @@ }, { "question": "ARK Schools", - "icon": "./assets/data/nsi/logos/arkschools-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkschools-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -213744,7 +213948,7 @@ }, { "question": "Arlington Heights School District 25", - "icon": "./assets/data/nsi/logos/arlingtonheightsschooldistrict25-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arlingtonheightsschooldistrict25-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -213761,7 +213965,7 @@ }, { "question": "Arlington Independent School District", - "icon": "./assets/data/nsi/logos/arlingtonindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arlingtonindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -213778,7 +213982,7 @@ }, { "question": "Arlington Public Schools (Virginia)", - "icon": "./assets/data/nsi/logos/arlingtonpublicschools-3cf7e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arlingtonpublicschools-3cf7e1.png", "osmTags": { "and": [ "amenity=school", @@ -213795,7 +213999,7 @@ }, { "question": "Arlington Public Schools (Washington)", - "icon": "./assets/data/nsi/logos/arlingtonpublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arlingtonpublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -213916,7 +214120,7 @@ }, { "question": "Asker kommune", - "icon": "./assets/data/nsi/logos/askerkommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/askerkommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -213932,7 +214136,7 @@ }, { "question": "Askøy kommune", - "icon": "./assets/data/nsi/logos/askoykommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/askoykommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -213948,7 +214152,7 @@ }, { "question": "Aspirations Academies Trust", - "icon": "./assets/data/nsi/logos/aspirationsacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aspirationsacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -213964,7 +214168,7 @@ }, { "question": "Aspire Academy Trust", - "icon": "./assets/data/nsi/logos/aspireacademytrust-5dac27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aspireacademytrust-5dac27.jpg", "osmTags": { "and": [ "amenity=school", @@ -214010,7 +214214,7 @@ }, { "question": "Astrea Academy Trust", - "icon": "./assets/data/nsi/logos/astreaacademytrust-26e9df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/astreaacademytrust-26e9df.png", "osmTags": { "and": [ "amenity=school", @@ -214056,7 +214260,7 @@ }, { "question": "Atascadero Unified School District", - "icon": "./assets/data/nsi/logos/atascaderounifiedschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atascaderounifiedschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -214162,7 +214366,7 @@ }, { "question": "Austin Independent School District", - "icon": "./assets/data/nsi/logos/austinindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -214179,7 +214383,7 @@ }, { "question": "Avanti Schools Trust", - "icon": "./assets/data/nsi/logos/avantischoolstrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avantischoolstrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -214195,7 +214399,7 @@ }, { "question": "Avon Maitland District School Board", - "icon": "./assets/data/nsi/logos/avonmaitlanddistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avonmaitlanddistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -214242,7 +214446,7 @@ }, { "question": "Azusa Unified School District", - "icon": "./assets/data/nsi/logos/azusaunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/azusaunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -214619,7 +214823,7 @@ }, { "question": "Bærum kommune", - "icon": "./assets/data/nsi/logos/baerumkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/baerumkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -214965,7 +215169,7 @@ }, { "question": "Baldwin Park Unified School District", - "icon": "./assets/data/nsi/logos/baldwinparkunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baldwinparkunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -215177,7 +215381,7 @@ }, { "question": "Baltimore City Public Schools", - "icon": "./assets/data/nsi/logos/baltimorecitypublicschools-41ceb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecitypublicschools-41ceb1.jpg", "osmTags": { "and": [ "amenity=school", @@ -215193,7 +215397,7 @@ }, { "question": "Baltimore County Public Schools", - "icon": "./assets/data/nsi/logos/baltimorecountypublicschools-41ceb1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecountypublicschools-41ceb1.png", "osmTags": { "and": [ "amenity=school", @@ -215675,7 +215879,7 @@ }, { "question": "Barnsley Metropolitan Borough Council", - "icon": "./assets/data/nsi/logos/barnsleymetropolitanboroughcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barnsleymetropolitanboroughcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -215976,7 +216180,7 @@ }, { "question": "Batavia Public School District 101", - "icon": "./assets/data/nsi/logos/bataviapublicschooldistrict101-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bataviapublicschooldistrict101-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -215992,7 +216196,7 @@ }, { "question": "Bath and North East Somerset Council", - "icon": "./assets/data/nsi/logos/bathandnortheastsomersetcouncil-a0b0ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bathandnortheastsomersetcouncil-a0b0ec.jpg", "osmTags": { "and": [ "amenity=school", @@ -216053,7 +216257,7 @@ }, { "question": "Battle Ground Public Schools", - "icon": "./assets/data/nsi/logos/battlegroundpublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/battlegroundpublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -216489,7 +216693,7 @@ }, { "question": "Beaufort County School District", - "icon": "./assets/data/nsi/logos/beaufortcountyschooldistrict-b0049f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/beaufortcountyschooldistrict-b0049f.png", "osmTags": { "and": [ "amenity=school", @@ -216506,7 +216710,7 @@ }, { "question": "Beaverton School District", - "icon": "./assets/data/nsi/logos/beavertonschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/beavertonschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -216538,7 +216742,7 @@ }, { "question": "Bedford Borough Council", - "icon": "./assets/data/nsi/logos/bedfordboroughcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedfordboroughcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -216554,7 +216758,7 @@ }, { "question": "Bedfordshire Schools Trust Limited", - "icon": "./assets/data/nsi/logos/bedfordshireschoolstrustlimited-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedfordshireschoolstrustlimited-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -216570,7 +216774,7 @@ }, { "question": "Behörde für Schule und Berufsbildung", - "icon": "./assets/data/nsi/logos/behordefurschuleundberufsbildung-964df5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/behordefurschuleundberufsbildung-964df5.svg", "osmTags": { "and": [ "amenity=school", @@ -216600,7 +216804,7 @@ }, { "question": "Bellevue Place Education Trust", - "icon": "./assets/data/nsi/logos/bellevueplaceeducationtrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bellevueplaceeducationtrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -216616,7 +216820,7 @@ }, { "question": "Bellevue School District", - "icon": "./assets/data/nsi/logos/bellevueschooldistrict-48f47a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bellevueschooldistrict-48f47a.png", "osmTags": { "and": [ "amenity=school", @@ -216633,7 +216837,7 @@ }, { "question": "Bellflower Unified School District", - "icon": "./assets/data/nsi/logos/bellflowerunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellflowerunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -216666,7 +216870,7 @@ }, { "question": "Bend-La Pine Schools", - "icon": "./assets/data/nsi/logos/bendlapineschools-330cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bendlapineschools-330cad.png", "osmTags": { "and": [ "amenity=school", @@ -216698,7 +216902,7 @@ }, { "question": "Bergen kommune", - "icon": "./assets/data/nsi/logos/bergenkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bergenkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -216729,7 +216933,7 @@ }, { "question": "Bermuda Ministry of Education", - "icon": "./assets/data/nsi/logos/bermudaministryofeducation-21cfa2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bermudaministryofeducation-21cfa2.png", "osmTags": { "and": [ "amenity=school", @@ -216745,7 +216949,7 @@ }, { "question": "Berwyn North School District 98", - "icon": "./assets/data/nsi/logos/berwynnorthschooldistrict98-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berwynnorthschooldistrict98-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -216762,7 +216966,7 @@ }, { "question": "Berwyn South School District 100", - "icon": "./assets/data/nsi/logos/berwynsouthschooldistrict100-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/berwynsouthschooldistrict100-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -216810,7 +217014,7 @@ }, { "question": "Bethel School District (Washington)", - "icon": "./assets/data/nsi/logos/bethelschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bethelschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -216842,7 +217046,7 @@ }, { "question": "Bezirksamt Charlottenburg-Wilmersdorf von Berlin", - "icon": "./assets/data/nsi/logos/bezirksamtcharlottenburgwilmersdorfvonberlin-d52d16.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bezirksamtcharlottenburgwilmersdorfvonberlin-d52d16.svg", "osmTags": { "and": [ "amenity=school", @@ -216903,7 +217107,7 @@ }, { "question": "Bezirksamt Steglitz-Zehlendorf von Berlin", - "icon": "./assets/data/nsi/logos/bezirksamtsteglitzzehlendorfvonberlin-d52d16.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bezirksamtsteglitzzehlendorfvonberlin-d52d16.svg", "osmTags": { "and": [ "amenity=school", @@ -216934,7 +217138,7 @@ }, { "question": "Białołęka", - "icon": "./assets/data/nsi/logos/bialoleka-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bialoleka-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -216950,7 +217154,7 @@ }, { "question": "Bielany", - "icon": "./assets/data/nsi/logos/bielany-83282a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bielany-83282a.jpg", "osmTags": { "and": [ "amenity=school", @@ -217206,7 +217410,7 @@ }, { "question": "Birdville Independent School District", - "icon": "./assets/data/nsi/logos/birdvilleindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birdvilleindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -217238,7 +217442,7 @@ }, { "question": "Birmingham City Council", - "icon": "./assets/data/nsi/logos/birminghamcitycouncil-7ba3ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-7ba3ad.jpg", "osmTags": { "and": [ "amenity=school", @@ -217254,7 +217458,7 @@ }, { "question": "Birmingham Diocesan Multi-Academy Trust", - "icon": "./assets/data/nsi/logos/birminghamdiocesanmultiacademytrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamdiocesanmultiacademytrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -217286,7 +217490,7 @@ }, { "question": "Bishop Chadwick Catholic Education Trust", - "icon": "./assets/data/nsi/logos/bishopchadwickcatholiceducationtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bishopchadwickcatholiceducationtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -217318,7 +217522,7 @@ }, { "question": "Bishop Wilkinson Catholic Education Trust", - "icon": "./assets/data/nsi/logos/bishopwilkinsoncatholiceducationtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bishopwilkinsoncatholiceducationtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -217350,7 +217554,7 @@ }, { "question": "Bismarck Public Schools", - "icon": "./assets/data/nsi/logos/bismarckpublicschools-d1732d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bismarckpublicschools-d1732d.jpg", "osmTags": { "and": [ "amenity=school", @@ -217367,7 +217571,7 @@ }, { "question": "Bjørnafjorden kommune", - "icon": "./assets/data/nsi/logos/bjornafjordenkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bjornafjordenkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -217383,7 +217587,7 @@ }, { "question": "Black Gold Regional Division", - "icon": "./assets/data/nsi/logos/blackgoldregionaldivision-59fa08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/blackgoldregionaldivision-59fa08.png", "osmTags": { "and": [ "amenity=school", @@ -217399,7 +217603,7 @@ }, { "question": "Blackburn with Darwen Borough Council", - "icon": "./assets/data/nsi/logos/blackburnwithdarwenboroughcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackburnwithdarwenboroughcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -217415,7 +217619,7 @@ }, { "question": "Blackpool Borough Council", - "icon": "./assets/data/nsi/logos/blackpoolboroughcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackpoolboroughcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -217431,7 +217635,7 @@ }, { "question": "Blaenau Gwent County Borough Council", - "icon": "./assets/data/nsi/logos/blaenaugwentcountyboroughcouncil-3a6545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blaenaugwentcountyboroughcouncil-3a6545.jpg", "osmTags": { "and": [ "amenity=school", @@ -217462,7 +217666,7 @@ }, { "question": "Blessed Peter Snow Catholic Academy Trust", - "icon": "./assets/data/nsi/logos/blessedpetersnowcatholicacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blessedpetersnowcatholicacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -217492,7 +217696,7 @@ }, { "question": "Bluewater District School Board", - "icon": "./assets/data/nsi/logos/bluewaterdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluewaterdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -217509,7 +217713,7 @@ }, { "question": "BMAT Education", - "icon": "./assets/data/nsi/logos/bmateducation-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmateducation-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -217585,7 +217789,7 @@ }, { "question": "Bodø kommune", - "icon": "./assets/data/nsi/logos/bodokommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bodokommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -217616,7 +217820,7 @@ }, { "question": "Boise School District", - "icon": "./assets/data/nsi/logos/boiseschooldistrict-d7611a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boiseschooldistrict-d7611a.jpg", "osmTags": { "and": [ "amenity=school", @@ -217797,7 +218001,7 @@ }, { "question": "Bonita Unified School District", - "icon": "./assets/data/nsi/logos/bonitaunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonitaunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -217814,7 +218018,7 @@ }, { "question": "Bonneville Joint School District No. 93", - "icon": "./assets/data/nsi/logos/bonnevillejointschooldistrict-d7611a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonnevillejointschooldistrict-d7611a.jpg", "osmTags": { "and": [ "amenity=school", @@ -217876,7 +218080,7 @@ }, { "question": "Boone County Schools", - "icon": "./assets/data/nsi/logos/boonecountyschools-4e7bb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boonecountyschools-4e7bb3.jpg", "osmTags": { "and": [ "amenity=school", @@ -217952,7 +218156,7 @@ }, { "question": "Bossier Parish School Board", - "icon": "./assets/data/nsi/logos/bossierparishschoolboard-8f61a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bossierparishschoolboard-8f61a8.jpg", "osmTags": { "and": [ "amenity=school", @@ -217983,7 +218187,7 @@ }, { "question": "Boston Public Schools", - "icon": "./assets/data/nsi/logos/bostonpublicschools-be2584.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bostonpublicschools-be2584.jpg", "osmTags": { "and": [ "amenity=school", @@ -218030,7 +218234,7 @@ }, { "question": "Boulder Valley School District", - "icon": "./assets/data/nsi/logos/bouldervalleyschooldistrict-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bouldervalleyschooldistrict-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -218061,7 +218265,7 @@ }, { "question": "Bournemouth, Christchurch and Poole Council", - "icon": "./assets/data/nsi/logos/bournemouthchristchurchandpoolecouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bournemouthchristchurchandpoolecouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -218077,7 +218281,7 @@ }, { "question": "Box Elder School District", - "icon": "./assets/data/nsi/logos/boxelderschooldistrict-614f2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boxelderschooldistrict-614f2b.jpg", "osmTags": { "and": [ "amenity=school", @@ -218094,7 +218298,7 @@ }, { "question": "Bracknell Forest Council", - "icon": "./assets/data/nsi/logos/bracknellforestcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bracknellforestcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -218231,7 +218435,7 @@ }, { "question": "Bridgeport Public Schools", - "icon": "./assets/data/nsi/logos/bridgeportpublicschools-547ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bridgeportpublicschools-547ddd.jpg", "osmTags": { "and": [ "amenity=school", @@ -218248,7 +218452,7 @@ }, { "question": "Bright Futures Educational Trust", - "icon": "./assets/data/nsi/logos/brightfutureseducationaltrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightfutureseducationaltrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -218264,7 +218468,7 @@ }, { "question": "Brighton and Hove City Council", - "icon": "./assets/data/nsi/logos/brightonandhovecitycouncil-ccd4d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-ccd4d4.png", "osmTags": { "and": [ "amenity=school", @@ -218280,7 +218484,7 @@ }, { "question": "Brisbane Catholic Education", - "icon": "./assets/data/nsi/logos/brisbanecatholiceducation-37f40e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brisbanecatholiceducation-37f40e.jpg", "osmTags": { "and": [ "amenity=school", @@ -218296,7 +218500,7 @@ }, { "question": "Bristol City Council", - "icon": "./assets/data/nsi/logos/bristolcitycouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristolcitycouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -218357,7 +218561,7 @@ }, { "question": "Brownsville Independent School District", - "icon": "./assets/data/nsi/logos/brownsvilleindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brownsvilleindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -218374,7 +218578,7 @@ }, { "question": "Bruce-Grey Catholic District School Board", - "icon": "./assets/data/nsi/logos/brucegreycatholicdistrictschoolboard-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brucegreycatholicdistrictschoolboard-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -218391,7 +218595,7 @@ }, { "question": "Bryan Independent School District", - "icon": "./assets/data/nsi/logos/bryanindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bryanindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -218813,7 +219017,7 @@ }, { "question": "Burbank Unified School District", - "icon": "./assets/data/nsi/logos/burbankunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burbankunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -218920,7 +219124,7 @@ }, { "question": "Bury Metropolitan Borough Council", - "icon": "./assets/data/nsi/logos/burymetropolitanboroughcouncil-7a837c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/burymetropolitanboroughcouncil-7a837c.svg", "osmTags": { "and": [ "amenity=school", @@ -218936,7 +219140,7 @@ }, { "question": "Buskerud fylkeskommune", - "icon": "./assets/data/nsi/logos/buskerudfylkeskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/buskerudfylkeskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -219072,7 +219276,7 @@ }, { "question": "Cabarrus County Schools", - "icon": "./assets/data/nsi/logos/cabarruscountyschools-15bd72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cabarruscountyschools-15bd72.png", "osmTags": { "and": [ "amenity=school", @@ -219133,7 +219337,7 @@ }, { "question": "Cabot Learning Federation", - "icon": "./assets/data/nsi/logos/cabotlearningfederation-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cabotlearningfederation-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -219688,7 +219892,7 @@ }, { "question": "Calgary Catholic School District", - "icon": "./assets/data/nsi/logos/calgarycatholicschooldistrict-59fa08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/calgarycatholicschooldistrict-59fa08.png", "osmTags": { "and": [ "amenity=school", @@ -219930,7 +220134,7 @@ }, { "question": "Camas School District", - "icon": "./assets/data/nsi/logos/camasschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camasschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -219947,7 +220151,7 @@ }, { "question": "Cambridgeshire County Council", - "icon": "./assets/data/nsi/logos/cambridgeshirecountycouncil-00e0d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cambridgeshirecountycouncil-00e0d0.png", "osmTags": { "and": [ "amenity=school", @@ -220174,7 +220378,7 @@ }, { "question": "Canyon ISD", - "icon": "./assets/data/nsi/logos/canyonisd-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canyonisd-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -220250,7 +220454,7 @@ }, { "question": "Capistrano Unified School District", - "icon": "./assets/data/nsi/logos/capistranounifiedschooldistrict-4ed216.png", + "icon": "https://data.mapcomplete.org/nsi//logos/capistranounifiedschooldistrict-4ed216.png", "osmTags": { "and": [ "amenity=school", @@ -220267,7 +220471,7 @@ }, { "question": "Capitol Region Education Council", - "icon": "./assets/data/nsi/logos/capitolregioneducationcouncil-547ddd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/capitolregioneducationcouncil-547ddd.png", "osmTags": { "and": [ "amenity=school", @@ -220418,7 +220622,7 @@ }, { "question": "Cardiff Council", - "icon": "./assets/data/nsi/logos/cardiffcouncil-8be5aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cardiffcouncil-8be5aa.jpg", "osmTags": { "and": [ "amenity=school", @@ -220479,7 +220683,7 @@ }, { "question": "Caritas Österreich", - "icon": "./assets/data/nsi/logos/caritasosterreich-ab40eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritasosterreich-ab40eb.jpg", "osmTags": { "and": [ "amenity=school", @@ -220510,7 +220714,7 @@ }, { "question": "Carmarthenshire County Council", - "icon": "./assets/data/nsi/logos/carmarthenshirecountycouncil-3a6545.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/carmarthenshirecountycouncil-3a6545.svg", "osmTags": { "and": [ "amenity=school", @@ -220663,7 +220867,7 @@ }, { "question": "Carrollton-Farmers Branch Independent School District", - "icon": "./assets/data/nsi/logos/carrolltonfarmersbranchindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carrolltonfarmersbranchindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -220680,7 +220884,7 @@ }, { "question": "Carthage R-9 School District", - "icon": "./assets/data/nsi/logos/carthager9schooldistrict-9c7c62.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carthager9schooldistrict-9c7c62.png", "osmTags": { "and": [ "amenity=school", @@ -220861,7 +221065,7 @@ }, { "question": "Catawba County Schools", - "icon": "./assets/data/nsi/logos/catawbacountyschools-15bd72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/catawbacountyschools-15bd72.png", "osmTags": { "and": [ "amenity=school", @@ -220922,7 +221126,7 @@ }, { "question": "Catholic District School Board of Eastern Ontario", - "icon": "./assets/data/nsi/logos/catholicdistrictschoolboardofeasternontario-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/catholicdistrictschoolboardofeasternontario-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -220939,7 +221143,7 @@ }, { "question": "Catholic Education Sandhurst Limited", - "icon": "./assets/data/nsi/logos/catholiceducationsandhurstlimited-1fc2f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/catholiceducationsandhurstlimited-1fc2f5.png", "osmTags": { "and": [ "amenity=school", @@ -221150,7 +221354,7 @@ }, { "question": "Cecil County Public Schools", - "icon": "./assets/data/nsi/logos/cecilcountypublicschools-41ceb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cecilcountypublicschools-41ceb1.jpg", "osmTags": { "and": [ "amenity=school", @@ -221183,7 +221387,7 @@ }, { "question": "Cedar Rapids Community School District", - "icon": "./assets/data/nsi/logos/cedarrapidscommunityschooldistrict-6e0541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cedarrapidscommunityschooldistrict-6e0541.jpg", "osmTags": { "and": [ "amenity=school", @@ -221214,7 +221418,7 @@ }, { "question": "Centennial School District (Minnesota)", - "icon": "./assets/data/nsi/logos/centennialschooldistrict-177d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centennialschooldistrict-177d23.jpg", "osmTags": { "and": [ "amenity=school", @@ -221231,7 +221435,7 @@ }, { "question": "Centennial School District (Oregon)", - "icon": "./assets/data/nsi/logos/centennialschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centennialschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -221248,7 +221452,7 @@ }, { "question": "Centennial School District (Pennsylvania)", - "icon": "./assets/data/nsi/logos/centennialschooldistrict-664aaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centennialschooldistrict-664aaf.png", "osmTags": { "and": [ "amenity=school", @@ -221295,7 +221499,7 @@ }, { "question": "Central Community Unit School District 301", - "icon": "./assets/data/nsi/logos/centralcommunityunitschooldistrict301-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralcommunityunitschooldistrict301-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -221356,7 +221560,7 @@ }, { "question": "Central Kitsap School District", - "icon": "./assets/data/nsi/logos/centralkitsapschooldistrict-48f47a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralkitsapschooldistrict-48f47a.png", "osmTags": { "and": [ "amenity=school", @@ -221403,7 +221607,7 @@ }, { "question": "Central Valley School District (Washington)", - "icon": "./assets/data/nsi/logos/centralvalleyschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralvalleyschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -221420,7 +221624,7 @@ }, { "question": "Centre de services scolaire de la Beauce-Etchemin", - "icon": "./assets/data/nsi/logos/centredeservicesscolairedelabeauceetchemin-d1e97c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedelabeauceetchemin-d1e97c.png", "osmTags": { "and": [ "amenity=school", @@ -221437,7 +221641,7 @@ }, { "question": "Centre de services scolaire de la Capitale", - "icon": "./assets/data/nsi/logos/centredeservicesscolairedelacapitale-d1e97c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedelacapitale-d1e97c.png", "osmTags": { "and": [ "amenity=school", @@ -221453,7 +221657,7 @@ }, { "question": "Centre de services scolaire de la Région-de-Sherbrooke", - "icon": "./assets/data/nsi/logos/centredeservicesscolairedelaregiondesherbrooke-d1e97c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedelaregiondesherbrooke-d1e97c.png", "osmTags": { "and": [ "amenity=school", @@ -221469,7 +221673,7 @@ }, { "question": "Centre de services scolaire de Montréal", - "icon": "./assets/data/nsi/logos/centredeservicesscolairedemontreal-d1e97c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedemontreal-d1e97c.png", "osmTags": { "and": [ "amenity=school", @@ -221485,7 +221689,7 @@ }, { "question": "Centre de services scolaire des Draveurs", - "icon": "./assets/data/nsi/logos/centredeservicesscolairedesdraveurs-d1e97c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centredeservicesscolairedesdraveurs-d1e97c.jpg", "osmTags": { "and": [ "amenity=school", @@ -221546,7 +221750,7 @@ }, { "question": "Chandler Unified School District", - "icon": "./assets/data/nsi/logos/chandlerunifiedschooldistrict-59e2c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chandlerunifiedschooldistrict-59e2c9.jpg", "osmTags": { "and": [ "amenity=school", @@ -221563,7 +221767,7 @@ }, { "question": "Charlotte-Mecklenburg Schools", - "icon": "./assets/data/nsi/logos/charlottemecklenburgschools-15bd72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/charlottemecklenburgschools-15bd72.png", "osmTags": { "and": [ "amenity=school", @@ -221596,7 +221800,7 @@ }, { "question": "Cherokee County Schools (Alabama)", - "icon": "./assets/data/nsi/logos/cherokeecountyschools-cc53cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cherokeecountyschools-cc53cf.jpg", "osmTags": { "and": [ "amenity=school", @@ -221612,7 +221816,7 @@ }, { "question": "Cherokee County Schools (North Carolina)", - "icon": "./assets/data/nsi/logos/cherokeecountyschools-15bd72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cherokeecountyschools-15bd72.jpg", "osmTags": { "and": [ "amenity=school", @@ -221628,7 +221832,7 @@ }, { "question": "Cherry Creek School District", - "icon": "./assets/data/nsi/logos/cherrycreekschooldistrict-64c3e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cherrycreekschooldistrict-64c3e7.png", "osmTags": { "and": [ "amenity=school", @@ -221706,7 +221910,7 @@ }, { "question": "Chicago Public Schools", - "icon": "./assets/data/nsi/logos/chicagopublicschools-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagopublicschools-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -221738,7 +221942,7 @@ }, { "question": "Chino Valley Unified School District (Arizona)", - "icon": "./assets/data/nsi/logos/chinovalleyunifiedschooldistrict-59e2c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinovalleyunifiedschooldistrict-59e2c9.jpg", "osmTags": { "and": [ "amenity=school", @@ -221755,7 +221959,7 @@ }, { "question": "Chino Valley Unified School District (California)", - "icon": "./assets/data/nsi/logos/chinovalleyunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinovalleyunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -221788,7 +221992,7 @@ }, { "question": "Church of England", - "icon": "./assets/data/nsi/logos/churchofengland-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/churchofengland-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -221834,7 +222038,7 @@ }, { "question": "Cicero School District 99", - "icon": "./assets/data/nsi/logos/ciceroschooldistrict99-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ciceroschooldistrict99-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -221851,7 +222055,7 @@ }, { "question": "Cidari Education Limited", - "icon": "./assets/data/nsi/logos/cidarieducationlimited-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cidarieducationlimited-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -221867,7 +222071,7 @@ }, { "question": "Cincinnati Public Schools", - "icon": "./assets/data/nsi/logos/cincinnatipublicschools-a7daad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cincinnatipublicschools-a7daad.jpg", "osmTags": { "and": [ "amenity=school", @@ -221884,7 +222088,7 @@ }, { "question": "City and County of Swansea Council", - "icon": "./assets/data/nsi/logos/cityandcountyofswanseacouncil-3a6545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityandcountyofswanseacouncil-3a6545.jpg", "osmTags": { "and": [ "amenity=school", @@ -221915,7 +222119,7 @@ }, { "question": "City of Edinburgh Council", - "icon": "./assets/data/nsi/logos/cityofedinburghcouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofedinburghcouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -221931,7 +222135,7 @@ }, { "question": "City of London", - "icon": "./assets/data/nsi/logos/cityoflondon-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflondon-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -221962,7 +222166,7 @@ }, { "question": "City of Westminster", - "icon": "./assets/data/nsi/logos/cityofwestminster-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwestminster-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -221978,7 +222182,7 @@ }, { "question": "City of Wolverhampton Council", - "icon": "./assets/data/nsi/logos/cityofwolverhamptoncouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwolverhamptoncouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -222009,7 +222213,7 @@ }, { "question": "Clackmannanshire Council", - "icon": "./assets/data/nsi/logos/clackmannanshirecouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clackmannanshirecouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -222070,7 +222274,7 @@ }, { "question": "Clark County School District", - "icon": "./assets/data/nsi/logos/clarkcountyschooldistrict-cb1413.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkcountyschooldistrict-cb1413.png", "osmTags": { "and": [ "amenity=school", @@ -222087,7 +222291,7 @@ }, { "question": "Clarke County School District", - "icon": "./assets/data/nsi/logos/clarkecountyschooldistrict-159679.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkecountyschooldistrict-159679.jpg", "osmTags": { "and": [ "amenity=school", @@ -222103,7 +222307,7 @@ }, { "question": "Clarksville-Montgomery County School System", - "icon": "./assets/data/nsi/logos/clarksvillemontgomerycountyschoolsystem-3799fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarksvillemontgomerycountyschoolsystem-3799fa.jpg", "osmTags": { "and": [ "amenity=school", @@ -222224,7 +222428,7 @@ }, { "question": "Clover Park School District", - "icon": "./assets/data/nsi/logos/cloverparkschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cloverparkschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -222271,7 +222475,7 @@ }, { "question": "Cobb County School District", - "icon": "./assets/data/nsi/logos/cobbcountyschooldistrict-159679.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cobbcountyschooldistrict-159679.jpg", "osmTags": { "and": [ "amenity=school", @@ -222288,7 +222492,7 @@ }, { "question": "Coeur d'Alene Public Schools", - "icon": "./assets/data/nsi/logos/coeurdalenepublicschools-d7611a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coeurdalenepublicschools-d7611a.jpg", "osmTags": { "and": [ "amenity=school", @@ -222319,7 +222523,7 @@ }, { "question": "Colorado Springs School District 11", - "icon": "./assets/data/nsi/logos/coloradospringsschooldistrict11-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradospringsschooldistrict11-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -222336,7 +222540,7 @@ }, { "question": "Colton Joint Unified School District", - "icon": "./assets/data/nsi/logos/coltonjointunifiedschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coltonjointunifiedschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -222383,7 +222587,7 @@ }, { "question": "Comal Independent School District", - "icon": "./assets/data/nsi/logos/comalindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comalindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -222400,7 +222604,7 @@ }, { "question": "Comhairle nan Eilean Siar", - "icon": "./assets/data/nsi/logos/comhairlenaneileansiar-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comhairlenaneileansiar-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -222447,7 +222651,7 @@ }, { "question": "Community Consolidated School District 15", - "icon": "./assets/data/nsi/logos/communityconsolidatedschooldistrict15-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/communityconsolidatedschooldistrict15-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -222464,7 +222668,7 @@ }, { "question": "Community Consolidated School District 54", - "icon": "./assets/data/nsi/logos/communityconsolidatedschooldistrict54-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/communityconsolidatedschooldistrict54-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -222481,7 +222685,7 @@ }, { "question": "Community Consolidated School District 59", - "icon": "./assets/data/nsi/logos/communityconsolidatedschooldistrict59-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communityconsolidatedschooldistrict59-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -222498,7 +222702,7 @@ }, { "question": "Community Consolidated School District 62", - "icon": "./assets/data/nsi/logos/communityconsolidatedschooldistrict62-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communityconsolidatedschooldistrict62-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -222515,7 +222719,7 @@ }, { "question": "Community Inclusive Trust", - "icon": "./assets/data/nsi/logos/communityinclusivetrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communityinclusivetrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -222531,7 +222735,7 @@ }, { "question": "Community Unit School District 200", - "icon": "./assets/data/nsi/logos/communityunitschooldistrict200-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communityunitschooldistrict200-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -222577,7 +222781,7 @@ }, { "question": "Compton Unified School District", - "icon": "./assets/data/nsi/logos/comptonunifiedschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comptonunifiedschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -222594,7 +222798,7 @@ }, { "question": "Comune di Carrara", - "icon": "./assets/data/nsi/logos/comunedicarrara-39bf8c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedicarrara-39bf8c.svg", "osmTags": { "and": [ "amenity=school", @@ -222610,7 +222814,7 @@ }, { "question": "Comunidad de Madrid", - "icon": "./assets/data/nsi/logos/comunidaddemadrid-dd65e5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-dd65e5.svg", "osmTags": { "and": [ "amenity=school", @@ -222730,7 +222934,7 @@ }, { "question": "Conseil des écoles catholiques du Centre-Est", - "icon": "./assets/data/nsi/logos/conseildesecolescatholiquesducentreest-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conseildesecolescatholiquesducentreest-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -222746,7 +222950,7 @@ }, { "question": "Conseil des écoles publiques de l'Est de l'Ontario", - "icon": "./assets/data/nsi/logos/conseildesecolespubliquesdelestdelontario-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conseildesecolespubliquesdelestdelontario-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -222762,7 +222966,7 @@ }, { "question": "Conseil scolaire catholique du Nouvel-Ontario", - "icon": "./assets/data/nsi/logos/conseilscolairecatholiquedunouvelontario-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conseilscolairecatholiquedunouvelontario-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -222793,7 +222997,7 @@ }, { "question": "Conseil scolaire catholique Providence", - "icon": "./assets/data/nsi/logos/conseilscolairecatholiqueprovidence-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/conseilscolairecatholiqueprovidence-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -222809,7 +223013,7 @@ }, { "question": "Conseil scolaire de district catholique de l'Est ontarien", - "icon": "./assets/data/nsi/logos/conseilscolairededistrictcatholiquedelestontarien-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/conseilscolairededistrictcatholiquedelestontarien-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -222825,7 +223029,7 @@ }, { "question": "Conseil scolaire de district catholique des Grandes Rivières", - "icon": "./assets/data/nsi/logos/conseilscolairededistrictcatholiquedesgrandesrivieres-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conseilscolairededistrictcatholiquedesgrandesrivieres-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -222841,7 +223045,7 @@ }, { "question": "Conseil scolaire de district catholique Franco-Nord", - "icon": "./assets/data/nsi/logos/conseilscolairededistrictcatholiquefranconord-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conseilscolairededistrictcatholiquefranconord-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -222857,7 +223061,7 @@ }, { "question": "Conseil scolaire public du Grand Nord de l'Ontario", - "icon": "./assets/data/nsi/logos/conseilscolairepublicdugrandnorddelontario-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conseilscolairepublicdugrandnorddelontario-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -222873,7 +223077,7 @@ }, { "question": "Conseil scolaire public du Nord-Est de l'Ontario", - "icon": "./assets/data/nsi/logos/conseilscolairepublicdunordestdelontario-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conseilscolairepublicdunordestdelontario-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -222889,7 +223093,7 @@ }, { "question": "Conseil scolaire Viamonde", - "icon": "./assets/data/nsi/logos/conseilscolaireviamonde-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conseilscolaireviamonde-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -222920,7 +223124,7 @@ }, { "question": "Consejo de Educación Secundaria", - "icon": "./assets/data/nsi/logos/consejodeeducacionsecundaria-6176b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consejodeeducacionsecundaria-6176b9.png", "osmTags": { "and": [ "amenity=school", @@ -222936,7 +223140,7 @@ }, { "question": "Consejo Nacional de Fomento Educativo", - "icon": "./assets/data/nsi/logos/consejonacionaldefomentoeducativo-422367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consejonacionaldefomentoeducativo-422367.jpg", "osmTags": { "and": [ "amenity=school", @@ -223012,7 +223216,7 @@ }, { "question": "Consolidated School District of New Britain", - "icon": "./assets/data/nsi/logos/consolidatedschooldistrictofnewbritain-547ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consolidatedschooldistrictofnewbritain-547ddd.jpg", "osmTags": { "and": [ "amenity=school", @@ -223042,7 +223246,7 @@ }, { "question": "Consortium Trust", - "icon": "./assets/data/nsi/logos/consortiumtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consortiumtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -223101,7 +223305,7 @@ }, { "question": "Coppell Independent School District", - "icon": "./assets/data/nsi/logos/coppellindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coppellindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -223178,7 +223382,7 @@ }, { "question": "Cornwall Council", - "icon": "./assets/data/nsi/logos/cornwallcouncil-5dac27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornwallcouncil-5dac27.jpg", "osmTags": { "and": [ "amenity=school", @@ -223194,7 +223398,7 @@ }, { "question": "Cornwall Education Learning Trust", - "icon": "./assets/data/nsi/logos/cornwalleducationlearningtrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cornwalleducationlearningtrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -223271,7 +223475,7 @@ }, { "question": "Corvallis School District", - "icon": "./assets/data/nsi/logos/corvallisschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/corvallisschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -223318,7 +223522,7 @@ }, { "question": "Covina-Valley Unified School District", - "icon": "./assets/data/nsi/logos/covinavalleyunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/covinavalleyunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -223365,7 +223569,7 @@ }, { "question": "Crowley Independent School District", - "icon": "./assets/data/nsi/logos/crowleyindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crowleyindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -223457,7 +223661,7 @@ }, { "question": "Cumberland Council", - "icon": "./assets/data/nsi/logos/cumberlandcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cumberlandcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -223473,7 +223677,7 @@ }, { "question": "Cumbria Education Trust", - "icon": "./assets/data/nsi/logos/cumbriaeducationtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cumbriaeducationtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -223535,7 +223739,7 @@ }, { "question": "Cypress-Fairbanks Independent School District", - "icon": "./assets/data/nsi/logos/cypressfairbanksindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cypressfairbanksindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -223673,7 +223877,7 @@ }, { "question": "Dallas ISD", - "icon": "./assets/data/nsi/logos/dallasindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dallasindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -223720,7 +223924,7 @@ }, { "question": "Danderyds kommun", - "icon": "./assets/data/nsi/logos/danderydskommun-0f2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/danderydskommun-0f2dfb.jpg", "osmTags": { "and": [ "amenity=school", @@ -223886,7 +224090,7 @@ }, { "question": "Dartmoor Multi Academy Trust", - "icon": "./assets/data/nsi/logos/dartmoormultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dartmoormultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -223962,7 +224166,7 @@ }, { "question": "David Douglas School District", - "icon": "./assets/data/nsi/logos/daviddouglasschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daviddouglasschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -224007,7 +224211,7 @@ }, { "question": "Dearborn Public Schools", - "icon": "./assets/data/nsi/logos/dearbornpublicschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dearbornpublicschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -224099,7 +224303,7 @@ }, { "question": "Denton Independent School District", - "icon": "./assets/data/nsi/logos/dentonindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dentonindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -224116,7 +224320,7 @@ }, { "question": "Denver Public Schools", - "icon": "./assets/data/nsi/logos/denverpublicschools-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/denverpublicschools-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -224133,7 +224337,7 @@ }, { "question": "Departament d'Educació de la Generalitat de Catalunya", - "icon": "./assets/data/nsi/logos/departamentdeducaciodelageneralitatdecatalunya-c1ff56.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/departamentdeducaciodelageneralitatdecatalunya-c1ff56.svg", "osmTags": { "and": [ "amenity=school", @@ -224163,7 +224367,7 @@ }, { "question": "Departamento de Educación", - "icon": "./assets/data/nsi/logos/departamentodeeducacion-cd2b47.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departamentodeeducacion-cd2b47.jpg", "osmTags": { "and": [ "amenity=school", @@ -224238,7 +224442,7 @@ }, { "question": "Department for Education (South Australia)", - "icon": "./assets/data/nsi/logos/sadepartmentforeducation-4c8594.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sadepartmentforeducation-4c8594.jpg", "osmTags": { "and": [ "amenity=school", @@ -224268,7 +224472,7 @@ }, { "question": "Department of Education (New South Wales)", - "icon": "./assets/data/nsi/logos/nswdepartmentofeducation-d7e2f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswdepartmentofeducation-d7e2f4.jpg", "osmTags": { "and": [ "amenity=school", @@ -224284,7 +224488,7 @@ }, { "question": "Department of Education (Northern Territory)", - "icon": "./assets/data/nsi/logos/ntdepartmentofeducation-f2488a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntdepartmentofeducation-f2488a.jpg", "osmTags": { "and": [ "amenity=school", @@ -224315,7 +224519,7 @@ }, { "question": "Department of Education (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofeducation-775c70.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofeducation-775c70.svg", "osmTags": { "and": [ "amenity=school", @@ -224332,7 +224536,7 @@ }, { "question": "Department of Education (Queensland)", - "icon": "./assets/data/nsi/logos/queenslanddepartmentofeducation-37f40e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/queenslanddepartmentofeducation-37f40e.jpg", "osmTags": { "and": [ "amenity=school", @@ -224348,7 +224552,7 @@ }, { "question": "Department of Education (Tasmania)", - "icon": "./assets/data/nsi/logos/tasmaniandepartmentofeducation-c398f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tasmaniandepartmentofeducation-c398f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -224379,7 +224583,7 @@ }, { "question": "Department of Education (Western Australia)", - "icon": "./assets/data/nsi/logos/wadepartmentofeducation-3f16bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wadepartmentofeducation-3f16bf.jpg", "osmTags": { "and": [ "amenity=school", @@ -224439,7 +224643,7 @@ }, { "question": "Derby City Council", - "icon": "./assets/data/nsi/logos/derbycitycouncil-7a837c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/derbycitycouncil-7a837c.svg", "osmTags": { "and": [ "amenity=school", @@ -224455,7 +224659,7 @@ }, { "question": "Derby Diocesan Academy Trust", - "icon": "./assets/data/nsi/logos/derbydiocesanacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derbydiocesanacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -224471,7 +224675,7 @@ }, { "question": "Derby Diocesan Academy Trust 2", - "icon": "./assets/data/nsi/logos/derbydiocesanacademytrust2-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derbydiocesanacademytrust2-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -224488,7 +224692,7 @@ }, { "question": "Derbyshire County Council", - "icon": "./assets/data/nsi/logos/derbyshirecountycouncil-2bbb7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/derbyshirecountycouncil-2bbb7b.jpg", "osmTags": { "and": [ "amenity=school", @@ -224504,7 +224708,7 @@ }, { "question": "Des Moines Public Schools", - "icon": "./assets/data/nsi/logos/desmoinespublicschools-6e0541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/desmoinespublicschools-6e0541.jpg", "osmTags": { "and": [ "amenity=school", @@ -224520,7 +224724,7 @@ }, { "question": "Detroit Public Schools", - "icon": "./assets/data/nsi/logos/detroitpublicschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/detroitpublicschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -224537,7 +224741,7 @@ }, { "question": "Deutscher Caritasverband", - "icon": "./assets/data/nsi/logos/deutschercaritasverband-33ddf1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschercaritasverband-33ddf1.jpg", "osmTags": { "and": [ "amenity=school", @@ -224553,7 +224757,7 @@ }, { "question": "Devon County Council", - "icon": "./assets/data/nsi/logos/devoncountycouncil-02f810.png", + "icon": "https://data.mapcomplete.org/nsi//logos/devoncountycouncil-02f810.png", "osmTags": { "and": [ "amenity=school", @@ -224941,7 +225145,7 @@ }, { "question": "Diocese of Covington", - "icon": "./assets/data/nsi/logos/dioceseofcovington-4e7bb3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dioceseofcovington-4e7bb3.svg", "osmTags": { "and": [ "amenity=school", @@ -225003,7 +225207,7 @@ }, { "question": "Diocese of San José", - "icon": "./assets/data/nsi/logos/dioceseofsanjose-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dioceseofsanjose-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -225094,7 +225298,7 @@ }, { "question": "Dirección General de Cultura y Educación", - "icon": "./assets/data/nsi/logos/direcciongeneraldeculturayeducacion-484c15.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/direcciongeneraldeculturayeducacion-484c15.jpg", "osmTags": { "and": [ "amenity=school", @@ -226161,7 +226365,7 @@ }, { "question": "District of Columbia Public Schools", - "icon": "./assets/data/nsi/logos/districtofcolumbiapublicschools-26727d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/districtofcolumbiapublicschools-26727d.jpg", "osmTags": { "and": [ "amenity=school", @@ -226178,7 +226382,7 @@ }, { "question": "District School Board of Niagara", - "icon": "./assets/data/nsi/logos/districtschoolboardofniagara-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/districtschoolboardofniagara-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -226195,7 +226399,7 @@ }, { "question": "District School Board Ontario North East", - "icon": "./assets/data/nsi/logos/districtschoolboardontarionortheast-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/districtschoolboardontarionortheast-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -226287,7 +226491,7 @@ }, { "question": "Diverse Academies Trust", - "icon": "./assets/data/nsi/logos/diverseacademiestrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/diverseacademiestrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -226303,7 +226507,7 @@ }, { "question": "Dixons Academies Trust", - "icon": "./assets/data/nsi/logos/dixonsacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dixonsacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -226454,7 +226658,7 @@ }, { "question": "Donna Independent School District", - "icon": "./assets/data/nsi/logos/donnaindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/donnaindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -226501,7 +226705,7 @@ }, { "question": "Dorset Council", - "icon": "./assets/data/nsi/logos/dorsetcouncil-e77b90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dorsetcouncil-e77b90.jpg", "osmTags": { "and": [ "amenity=school", @@ -226517,7 +226721,7 @@ }, { "question": "Dothan City Schools", - "icon": "./assets/data/nsi/logos/dothancityschools-cc53cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dothancityschools-cc53cf.jpg", "osmTags": { "and": [ "amenity=school", @@ -226534,7 +226738,7 @@ }, { "question": "Douglas County School District (Colorado)", - "icon": "./assets/data/nsi/logos/douglascountyschooldistrict-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/douglascountyschooldistrict-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -226551,7 +226755,7 @@ }, { "question": "Douglas County School District (Georgia)", - "icon": "./assets/data/nsi/logos/douglascountyschooldistrict-159679.png", + "icon": "https://data.mapcomplete.org/nsi//logos/douglascountyschooldistrict-159679.png", "osmTags": { "and": [ "amenity=school", @@ -226568,7 +226772,7 @@ }, { "question": "Downers Grove Grade School District 58", - "icon": "./assets/data/nsi/logos/downersgrovegradeschooldistrict58-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/downersgrovegradeschooldistrict58-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -226584,7 +226788,7 @@ }, { "question": "Downey Unified School District", - "icon": "./assets/data/nsi/logos/downeyunifiedschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/downeyunifiedschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -226615,7 +226819,7 @@ }, { "question": "Drammen kommune", - "icon": "./assets/data/nsi/logos/drammenkommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drammenkommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -226661,7 +226865,7 @@ }, { "question": "Dublin City Schools", - "icon": "./assets/data/nsi/logos/dublincityschools-a7daad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dublincityschools-a7daad.jpg", "osmTags": { "and": [ "amenity=school", @@ -226964,7 +227168,7 @@ }, { "question": "Duncanville Independent School District", - "icon": "./assets/data/nsi/logos/duncanvilleindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/duncanvilleindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -226981,7 +227185,7 @@ }, { "question": "Dundee City Council", - "icon": "./assets/data/nsi/logos/dundeecitycouncil-da5bfe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dundeecitycouncil-da5bfe.jpg", "osmTags": { "and": [ "amenity=school", @@ -227042,7 +227246,7 @@ }, { "question": "Durham Catholic District School Board", - "icon": "./assets/data/nsi/logos/durhamcatholicdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/durhamcatholicdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -227059,7 +227263,7 @@ }, { "question": "Durham County Council", - "icon": "./assets/data/nsi/logos/durhamcountycouncil-9b6b70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/durhamcountycouncil-9b6b70.jpg", "osmTags": { "and": [ "amenity=school", @@ -227075,7 +227279,7 @@ }, { "question": "Durham District School Board", - "icon": "./assets/data/nsi/logos/durhamdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/durhamdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -227092,7 +227296,7 @@ }, { "question": "Durham Public Schools", - "icon": "./assets/data/nsi/logos/durhampublicschools-15bd72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/durhampublicschools-15bd72.png", "osmTags": { "and": [ "amenity=school", @@ -227109,7 +227313,7 @@ }, { "question": "Duval County Public Schools", - "icon": "./assets/data/nsi/logos/duvalcountypublicschools-e8bc2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/duvalcountypublicschools-e8bc2a.png", "osmTags": { "and": [ "amenity=school", @@ -227141,7 +227345,7 @@ }, { "question": "Eagle Mountain-Saginaw Independent School District", - "icon": "./assets/data/nsi/logos/eaglemountainsaginawindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eaglemountainsaginawindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -227158,7 +227362,7 @@ }, { "question": "East Aurora Public School District 131", - "icon": "./assets/data/nsi/logos/eastaurorapublicschooldistrict131-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastaurorapublicschooldistrict131-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -227445,7 +227649,7 @@ }, { "question": "East Hartford Public Schools", - "icon": "./assets/data/nsi/logos/easthartfordpublicschools-547ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easthartfordpublicschools-547ddd.jpg", "osmTags": { "and": [ "amenity=school", @@ -227537,7 +227741,7 @@ }, { "question": "East Lothian Council", - "icon": "./assets/data/nsi/logos/eastlothiancouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastlothiancouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -227628,7 +227832,7 @@ }, { "question": "East Riding of Yorkshire Council", - "icon": "./assets/data/nsi/logos/eastridingofyorkshirecouncil-ef57c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastridingofyorkshirecouncil-ef57c6.png", "osmTags": { "and": [ "amenity=school", @@ -227659,7 +227863,7 @@ }, { "question": "East Whittier City School District", - "icon": "./assets/data/nsi/logos/eastwhittiercityschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastwhittiercityschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -227676,7 +227880,7 @@ }, { "question": "Eastern Cape Department of Education", - "icon": "./assets/data/nsi/logos/easterncapedepartmentofeducation-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easterncapedepartmentofeducation-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -227722,7 +227926,7 @@ }, { "question": "Eau Claire Area School District", - "icon": "./assets/data/nsi/logos/eauclaireareaschooldistrict-ac5479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eauclaireareaschooldistrict-ac5479.jpg", "osmTags": { "and": [ "amenity=school", @@ -227785,7 +227989,7 @@ }, { "question": "Edmonton Catholic Schools", - "icon": "./assets/data/nsi/logos/edmontoncatholicschools-59fa08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edmontoncatholicschools-59fa08.png", "osmTags": { "and": [ "amenity=school", @@ -227802,7 +228006,7 @@ }, { "question": "Edmonton Public Schools", - "icon": "./assets/data/nsi/logos/edmontonpublicschools-59fa08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edmontonpublicschools-59fa08.jpg", "osmTags": { "and": [ "amenity=school", @@ -227837,7 +228041,7 @@ }, { "question": "Educate Together", - "icon": "./assets/data/nsi/logos/educatetogether-1a051e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/educatetogether-1a051e.jpg", "osmTags": { "and": [ "amenity=school", @@ -227853,7 +228057,7 @@ }, { "question": "Education South West", - "icon": "./assets/data/nsi/logos/educationsouthwest-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/educationsouthwest-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -227897,7 +228101,7 @@ }, { "question": "El Monte City School District", - "icon": "./assets/data/nsi/logos/elmontecityschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elmontecityschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -227944,7 +228148,7 @@ }, { "question": "El Paso ISD", - "icon": "./assets/data/nsi/logos/elpasoindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elpasoindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -227961,7 +228165,7 @@ }, { "question": "El Rancho Unified School District", - "icon": "./assets/data/nsi/logos/elranchounifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elranchounifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -227978,7 +228182,7 @@ }, { "question": "Elevate Multi Academy Trust", - "icon": "./assets/data/nsi/logos/elevatemultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elevatemultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -228008,7 +228212,7 @@ }, { "question": "Elgin Area School District U46", - "icon": "./assets/data/nsi/logos/elginareaschooldistrictu46-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elginareaschooldistrictu46-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -228069,7 +228273,7 @@ }, { "question": "Elmwood Park Community Unit School District 401", - "icon": "./assets/data/nsi/logos/elmwoodparkcommunityunitschooldistrict401-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elmwoodparkcommunityunitschooldistrict401-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -228207,7 +228411,7 @@ }, { "question": "Erie's Public Schools", - "icon": "./assets/data/nsi/logos/eriespublicschools-664aaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eriespublicschools-664aaf.jpg", "osmTags": { "and": [ "amenity=school", @@ -228224,7 +228428,7 @@ }, { "question": "Erzbistum Berlin", - "icon": "./assets/data/nsi/logos/erzbistumberlin-5d11e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erzbistumberlin-5d11e1.jpg", "osmTags": { "and": [ "amenity=school", @@ -228240,7 +228444,7 @@ }, { "question": "Erzbistum Köln", - "icon": "./assets/data/nsi/logos/erzbistumkoln-1fea76.png", + "icon": "https://data.mapcomplete.org/nsi//logos/erzbistumkoln-1fea76.png", "osmTags": { "and": [ "amenity=school", @@ -228300,7 +228504,7 @@ }, { "question": "Escondido Union School District", - "icon": "./assets/data/nsi/logos/escondidounionschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/escondidounionschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -228377,7 +228581,7 @@ }, { "question": "Essex County Council", - "icon": "./assets/data/nsi/logos/essexcountycouncil-00e0d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essexcountycouncil-00e0d0.jpg", "osmTags": { "and": [ "amenity=school", @@ -228393,7 +228597,7 @@ }, { "question": "Estado do Rio Grande do Sul", - "icon": "./assets/data/nsi/logos/estadodoriograndedosul-ee71aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/estadodoriograndedosul-ee71aa.svg", "osmTags": { "and": [ "amenity=school", @@ -228499,7 +228703,7 @@ }, { "question": "Evangelical Lutheran Church of Papua New Guinea", - "icon": "./assets/data/nsi/logos/evangelicallutheranchurchofpapuanewguinea-6ced19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evangelicallutheranchurchofpapuanewguinea-6ced19.jpg", "osmTags": { "and": [ "amenity=school", @@ -228516,7 +228720,7 @@ }, { "question": "Evangelische Schulstiftung in der EKBO", - "icon": "./assets/data/nsi/logos/evangelischeschulstiftunginderekbo-3bf1ec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evangelischeschulstiftunginderekbo-3bf1ec.png", "osmTags": { "and": [ "amenity=school", @@ -228532,7 +228736,7 @@ }, { "question": "Evanston/Skokie School District 65", - "icon": "./assets/data/nsi/logos/evanstonskokieschooldistrict65-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evanstonskokieschooldistrict65-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -228549,7 +228753,7 @@ }, { "question": "Everett Public Schools (Massachusetts)", - "icon": "./assets/data/nsi/logos/everettpublicschools-be2584.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/everettpublicschools-be2584.jpg", "osmTags": { "and": [ "amenity=school", @@ -228565,7 +228769,7 @@ }, { "question": "Everett Public Schools (Washington)", - "icon": "./assets/data/nsi/logos/everettpublicschools-48f47a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/everettpublicschools-48f47a.png", "osmTags": { "and": [ "amenity=school", @@ -228596,7 +228800,7 @@ }, { "question": "Evergreen Public Schools", - "icon": "./assets/data/nsi/logos/evergreenpublicschools-48f47a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evergreenpublicschools-48f47a.png", "osmTags": { "and": [ "amenity=school", @@ -228658,7 +228862,7 @@ }, { "question": "Færder kommune", - "icon": "./assets/data/nsi/logos/faerderkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/faerderkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -228674,7 +228878,7 @@ }, { "question": "Fairfax County Public Schools", - "icon": "./assets/data/nsi/logos/fairfaxcountypublicschools-3cf7e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fairfaxcountypublicschools-3cf7e1.png", "osmTags": { "and": [ "amenity=school", @@ -228691,7 +228895,7 @@ }, { "question": "Falcon School District 49", - "icon": "./assets/data/nsi/logos/falconschooldistrict49-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/falconschooldistrict49-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -228723,7 +228927,7 @@ }, { "question": "Falköpings kommun", - "icon": "./assets/data/nsi/logos/falkopingskommun-0f2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/falkopingskommun-0f2dfb.jpg", "osmTags": { "and": [ "amenity=school", @@ -228754,7 +228958,7 @@ }, { "question": "Fargo Public Schools", - "icon": "./assets/data/nsi/logos/fargopublicschools-d1732d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fargopublicschools-d1732d.jpg", "osmTags": { "and": [ "amenity=school", @@ -228771,7 +228975,7 @@ }, { "question": "Fayetteville Public Schools", - "icon": "./assets/data/nsi/logos/fayettevillepublicschools-c3d23c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicschools-c3d23c.png", "osmTags": { "and": [ "amenity=school", @@ -228831,7 +229035,7 @@ }, { "question": "Federal Way Public Schools", - "icon": "./assets/data/nsi/logos/federalwaypublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/federalwaypublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -228848,7 +229052,7 @@ }, { "question": "Fife Council", - "icon": "./assets/data/nsi/logos/fifecouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fifecouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -228938,7 +229142,7 @@ }, { "question": "Flying High Trust", - "icon": "./assets/data/nsi/logos/flyinghightrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flyinghightrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -228969,7 +229173,7 @@ }, { "question": "Fontana Unified School District", - "icon": "./assets/data/nsi/logos/fontanaunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fontanaunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -228986,7 +229190,7 @@ }, { "question": "Forest Grove School District", - "icon": "./assets/data/nsi/logos/forestgroveschooldistrict-330cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/forestgroveschooldistrict-330cad.png", "osmTags": { "and": [ "amenity=school", @@ -229003,7 +229207,7 @@ }, { "question": "Forney ISD", - "icon": "./assets/data/nsi/logos/forneyindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/forneyindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -229020,7 +229224,7 @@ }, { "question": "Fort Bend Independent School District", - "icon": "./assets/data/nsi/logos/fortbendindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortbendindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -229037,7 +229241,7 @@ }, { "question": "Fort Wayne Community Schools", - "icon": "./assets/data/nsi/logos/fortwaynecommunityschools-87f3ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortwaynecommunityschools-87f3ac.jpg", "osmTags": { "and": [ "amenity=school", @@ -229054,7 +229258,7 @@ }, { "question": "Fort Worth Independent School District", - "icon": "./assets/data/nsi/logos/fortworthindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortworthindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -229086,7 +229290,7 @@ }, { "question": "Fountain Valley School District", - "icon": "./assets/data/nsi/logos/fountainvalleyschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fountainvalleyschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -229103,7 +229307,7 @@ }, { "question": "Fredrikstad kommune", - "icon": "./assets/data/nsi/logos/fredrikstadkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fredrikstadkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -229119,7 +229323,7 @@ }, { "question": "Free State Department of Education", - "icon": "./assets/data/nsi/logos/freestatedepartmentofeducation-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freestatedepartmentofeducation-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -229135,7 +229339,7 @@ }, { "question": "Freistaat Bayern", - "icon": "./assets/data/nsi/logos/freistaatbayern-46895d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freistaatbayern-46895d.jpg", "osmTags": { "and": [ "amenity=school", @@ -229182,7 +229386,7 @@ }, { "question": "Fullerton School District", - "icon": "./assets/data/nsi/logos/fullertonschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fullertonschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -229199,7 +229403,7 @@ }, { "question": "Fundação Bradesco", - "icon": "./assets/data/nsi/logos/fundacaobradesco-52f4f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fundacaobradesco-52f4f1.jpg", "osmTags": { "and": [ "amenity=school", @@ -229215,7 +229419,7 @@ }, { "question": "Futura Learning Partnership", - "icon": "./assets/data/nsi/logos/futuralearningpartnership-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/futuralearningpartnership-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -229457,7 +229661,7 @@ }, { "question": "Garland Independent School District", - "icon": "./assets/data/nsi/logos/garlandindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/garlandindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -229474,7 +229678,7 @@ }, { "question": "Garvey School District", - "icon": "./assets/data/nsi/logos/garveyschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/garveyschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -229491,7 +229695,7 @@ }, { "question": "Gary Community School Corporation", - "icon": "./assets/data/nsi/logos/garycommunityschoolcorporation-87f3ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/garycommunityschoolcorporation-87f3ac.jpg", "osmTags": { "and": [ "amenity=school", @@ -229523,7 +229727,7 @@ }, { "question": "Gateshead Metropolitan Borough Council", - "icon": "./assets/data/nsi/logos/gatesheadmetropolitanboroughcouncil-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gatesheadmetropolitanboroughcouncil-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -229584,7 +229788,7 @@ }, { "question": "Gauteng Department of Education", - "icon": "./assets/data/nsi/logos/gautengdepartmentofeducation-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gautengdepartmentofeducation-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -229600,7 +229804,7 @@ }, { "question": "Gemeinde Gossau", - "icon": "./assets/data/nsi/logos/gemeindegossau-25b252.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindegossau-25b252.svg", "osmTags": { "and": [ "amenity=school", @@ -229751,7 +229955,7 @@ }, { "question": "Generalitat Valenciana", - "icon": "./assets/data/nsi/logos/generalitatvalenciana-c1ff56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-c1ff56.jpg", "osmTags": { "and": [ "amenity=school", @@ -229812,7 +230016,7 @@ }, { "question": "Ghana Education Service", - "icon": "./assets/data/nsi/logos/ghanaeducationservice-05a503.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ghanaeducationservice-05a503.png", "osmTags": { "and": [ "amenity=school", @@ -229874,7 +230078,7 @@ }, { "question": "Gjøvik kommune", - "icon": "./assets/data/nsi/logos/gjovikkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gjovikkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -229890,7 +230094,7 @@ }, { "question": "Glasgow City Council", - "icon": "./assets/data/nsi/logos/glasgowcitycouncil-7782f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/glasgowcitycouncil-7782f9.png", "osmTags": { "and": [ "amenity=school", @@ -229906,7 +230110,7 @@ }, { "question": "Glendale Unified School District", - "icon": "./assets/data/nsi/logos/glendaleunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glendaleunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -229923,7 +230127,7 @@ }, { "question": "Glenview School District 34", - "icon": "./assets/data/nsi/logos/glenviewschooldistrict34-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glenviewschooldistrict34-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -229940,7 +230144,7 @@ }, { "question": "GLF Schools", - "icon": "./assets/data/nsi/logos/glfschools-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glfschools-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -229986,7 +230190,7 @@ }, { "question": "Gmina Lublin", - "icon": "./assets/data/nsi/logos/gminalublin-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gminalublin-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -230002,7 +230206,7 @@ }, { "question": "Gmina Miasto Rzeszów", - "icon": "./assets/data/nsi/logos/gminamiastorzeszow-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gminamiastorzeszow-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -230018,7 +230222,7 @@ }, { "question": "Gmina Miasto Szczecin", - "icon": "./assets/data/nsi/logos/gminamiastoszczecin-83282a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gminamiastoszczecin-83282a.jpg", "osmTags": { "and": [ "amenity=school", @@ -230034,7 +230238,7 @@ }, { "question": "Gmina Miejska Kraków", - "icon": "./assets/data/nsi/logos/gminamiejskakrakow-83282a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gminamiejskakrakow-83282a.png", "osmTags": { "and": [ "amenity=school", @@ -230065,7 +230269,7 @@ }, { "question": "Gmina Ryki", - "icon": "./assets/data/nsi/logos/gminaryki-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gminaryki-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -230081,7 +230285,7 @@ }, { "question": "Gmina Wrocław", - "icon": "./assets/data/nsi/logos/gminawroclaw-83282a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gminawroclaw-83282a.png", "osmTags": { "and": [ "amenity=school", @@ -230140,7 +230344,7 @@ }, { "question": "Gobierno de Canarias", - "icon": "./assets/data/nsi/logos/gobiernodecanarias-282164.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gobiernodecanarias-282164.svg", "osmTags": { "and": [ "amenity=school", @@ -230156,7 +230360,7 @@ }, { "question": "Gobierno de Cantabria", - "icon": "./assets/data/nsi/logos/gobiernodecantabria-c1ff56.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gobiernodecantabria-c1ff56.svg", "osmTags": { "and": [ "amenity=school", @@ -230246,7 +230450,7 @@ }, { "question": "Goshen Community Schools", - "icon": "./assets/data/nsi/logos/goshencommunityschools-87f3ac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goshencommunityschools-87f3ac.png", "osmTags": { "and": [ "amenity=school", @@ -230262,7 +230466,7 @@ }, { "question": "Göteborgs stad", - "icon": "./assets/data/nsi/logos/goteborgsstad-0f2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goteborgsstad-0f2dfb.png", "osmTags": { "and": [ "amenity=school", @@ -230310,7 +230514,7 @@ }, { "question": "Government of Lesotho", - "icon": "./assets/data/nsi/logos/governmentoflesotho-889426.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentoflesotho-889426.svg", "osmTags": { "and": [ "amenity=school", @@ -230326,7 +230530,7 @@ }, { "question": "Government of Liberia", - "icon": "./assets/data/nsi/logos/governmentofliberia-784fef.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentofliberia-784fef.svg", "osmTags": { "and": [ "amenity=school", @@ -230342,7 +230546,7 @@ }, { "question": "Governo do Estado da Bahia", - "icon": "./assets/data/nsi/logos/governodoestadodabahia-9d6ced.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/governodoestadodabahia-9d6ced.jpg", "osmTags": { "and": [ "amenity=school", @@ -230358,7 +230562,7 @@ }, { "question": "Governo do Estado da Paraíba", - "icon": "./assets/data/nsi/logos/governodoestadodaparaiba-a5afcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/governodoestadodaparaiba-a5afcb.jpg", "osmTags": { "and": [ "amenity=school", @@ -230449,7 +230653,7 @@ }, { "question": "Governo do Estado do Rio de Janeiro", - "icon": "./assets/data/nsi/logos/governodoestadodoriodejaneiro-df8785.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/governodoestadodoriodejaneiro-df8785.jpg", "osmTags": { "and": [ "amenity=school", @@ -230465,7 +230669,7 @@ }, { "question": "Governo do Estado do Rio Grande do Norte", - "icon": "./assets/data/nsi/logos/governodoestadodoriograndedonorte-1a267e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/governodoestadodoriograndedonorte-1a267e.svg", "osmTags": { "and": [ "amenity=school", @@ -230511,7 +230715,7 @@ }, { "question": "Grand Erie District School Board", - "icon": "./assets/data/nsi/logos/granderiedistrictschoolboard-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/granderiedistrictschoolboard-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -230528,7 +230732,7 @@ }, { "question": "Grand Prairie Independent School District", - "icon": "./assets/data/nsi/logos/grandprairieindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/grandprairieindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -230545,7 +230749,7 @@ }, { "question": "Granite School District", - "icon": "./assets/data/nsi/logos/graniteschooldistrict-614f2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/graniteschooldistrict-614f2b.jpg", "osmTags": { "and": [ "amenity=school", @@ -230577,7 +230781,7 @@ }, { "question": "Grapevine-Colleyville Independent School District", - "icon": "./assets/data/nsi/logos/grapevinecolleyvilleindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grapevinecolleyvilleindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -230624,7 +230828,7 @@ }, { "question": "Greater Albany Public Schools", - "icon": "./assets/data/nsi/logos/greateralbanypublicschools-330cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greateralbanypublicschools-330cad.png", "osmTags": { "and": [ "amenity=school", @@ -230641,7 +230845,7 @@ }, { "question": "Greater Essex County District School Board", - "icon": "./assets/data/nsi/logos/greateressexcountydistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greateressexcountydistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -230658,7 +230862,7 @@ }, { "question": "Greater Saskatoon Catholic Schools", - "icon": "./assets/data/nsi/logos/greatersaskatooncatholicschools-c9fb3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greatersaskatooncatholicschools-c9fb3c.png", "osmTags": { "and": [ "amenity=school", @@ -230705,7 +230909,7 @@ }, { "question": "Greenshaw Learning Trust", - "icon": "./assets/data/nsi/logos/greenshawlearningtrust-26e9df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greenshawlearningtrust-26e9df.png", "osmTags": { "and": [ "amenity=school", @@ -230736,7 +230940,7 @@ }, { "question": "Gresham-Barlow School District", - "icon": "./assets/data/nsi/logos/greshambarlowschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greshambarlowschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -230753,7 +230957,7 @@ }, { "question": "Greve Kommune", - "icon": "./assets/data/nsi/logos/grevekommune-dc218e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/grevekommune-dc218e.svg", "osmTags": { "and": [ "amenity=school", @@ -230875,7 +231079,7 @@ }, { "question": "Guilford County Schools", - "icon": "./assets/data/nsi/logos/guilfordcountyschools-15bd72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guilfordcountyschools-15bd72.jpg", "osmTags": { "and": [ "amenity=school", @@ -231146,7 +231350,7 @@ }, { "question": "Hacienda La Puente Unified School District", - "icon": "./assets/data/nsi/logos/haciendalapuenteunifiedschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haciendalapuenteunifiedschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -231208,7 +231412,7 @@ }, { "question": "Halden kommune", - "icon": "./assets/data/nsi/logos/haldenkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haldenkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -231224,7 +231428,7 @@ }, { "question": "Halifax Regional Centre for Education", - "icon": "./assets/data/nsi/logos/halifaxregionalcentreforeducation-3fa956.png", + "icon": "https://data.mapcomplete.org/nsi//logos/halifaxregionalcentreforeducation-3fa956.png", "osmTags": { "and": [ "amenity=school", @@ -231241,7 +231445,7 @@ }, { "question": "Halmstads kommun", - "icon": "./assets/data/nsi/logos/halmstadskommun-0f2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/halmstadskommun-0f2dfb.png", "osmTags": { "and": [ "amenity=school", @@ -231272,7 +231476,7 @@ }, { "question": "Halton Catholic District School Board", - "icon": "./assets/data/nsi/logos/haltoncatholicdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haltoncatholicdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -231289,7 +231493,7 @@ }, { "question": "Halton District School Board", - "icon": "./assets/data/nsi/logos/haltondistrictschoolboard-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haltondistrictschoolboard-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -231306,7 +231510,7 @@ }, { "question": "Hamar kommune", - "icon": "./assets/data/nsi/logos/hamarkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamarkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -231322,7 +231526,7 @@ }, { "question": "Hämeenlinnan kaupunki", - "icon": "./assets/data/nsi/logos/hameenlinnankaupunki-4ccccf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hameenlinnankaupunki-4ccccf.jpg", "osmTags": { "and": [ "amenity=school", @@ -231338,7 +231542,7 @@ }, { "question": "Hamilton-Wentworth Catholic District School Board", - "icon": "./assets/data/nsi/logos/hamiltonwentworthcatholicdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamiltonwentworthcatholicdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -231371,7 +231575,7 @@ }, { "question": "Hammerfest kommune", - "icon": "./assets/data/nsi/logos/hammerfestkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hammerfestkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -231387,7 +231591,7 @@ }, { "question": "Hampshire County Council", - "icon": "./assets/data/nsi/logos/hampshirecountycouncil-474eb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hampshirecountycouncil-474eb6.jpg", "osmTags": { "and": [ "amenity=school", @@ -231403,7 +231607,7 @@ }, { "question": "Hampton City Schools", - "icon": "./assets/data/nsi/logos/hamptoncityschools-3cf7e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamptoncityschools-3cf7e1.jpg", "osmTags": { "and": [ "amenity=school", @@ -231464,7 +231668,7 @@ }, { "question": "Hansestadt Lübeck", - "icon": "./assets/data/nsi/logos/hansestadtlubeck-effab9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hansestadtlubeck-effab9.png", "osmTags": { "and": [ "amenity=school", @@ -231480,7 +231684,7 @@ }, { "question": "Hansestadt Lüneburg", - "icon": "./assets/data/nsi/logos/hansestadtluneburg-fe40f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hansestadtluneburg-fe40f3.svg", "osmTags": { "and": [ "amenity=school", @@ -231496,7 +231700,7 @@ }, { "question": "Harlandale Independent School District", - "icon": "./assets/data/nsi/logos/harlandaleindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/harlandaleindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -231513,7 +231717,7 @@ }, { "question": "Harlingen Consolidated Independent School District", - "icon": "./assets/data/nsi/logos/harlingenconsolidatedindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harlingenconsolidatedindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -231530,7 +231734,7 @@ }, { "question": "Harris Federation", - "icon": "./assets/data/nsi/logos/harrisfederation-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harrisfederation-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -231546,7 +231750,7 @@ }, { "question": "Harrison School District 2", - "icon": "./assets/data/nsi/logos/harrisonschooldistrict2-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harrisonschooldistrict2-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -231563,7 +231767,7 @@ }, { "question": "Harstad kommune / Hársttáid suohkan", - "icon": "./assets/data/nsi/logos/harstadkommuneharsttaidsuohkan-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/harstadkommuneharsttaidsuohkan-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -231579,7 +231783,7 @@ }, { "question": "Hartford Public Schools (Connecticut)", - "icon": "./assets/data/nsi/logos/hartfordpublicschools-547ddd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hartfordpublicschools-547ddd.png", "osmTags": { "and": [ "amenity=school", @@ -231596,7 +231800,7 @@ }, { "question": "Hartford Public Schools (Michigan)", - "icon": "./assets/data/nsi/logos/hartfordpublicschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hartfordpublicschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -231628,7 +231832,7 @@ }, { "question": "Hastings and Prince Edward District School Board", - "icon": "./assets/data/nsi/logos/hastingsandprinceedwarddistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hastingsandprinceedwarddistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -231645,7 +231849,7 @@ }, { "question": "Haugesund kommune", - "icon": "./assets/data/nsi/logos/haugesundkommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haugesundkommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -231661,7 +231865,7 @@ }, { "question": "Hawthorne School District", - "icon": "./assets/data/nsi/logos/hawthorneschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hawthorneschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -231678,7 +231882,7 @@ }, { "question": "Helena Public Schools", - "icon": "./assets/data/nsi/logos/helenapublicschools-15c3b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/helenapublicschools-15c3b4.jpg", "osmTags": { "and": [ "amenity=school", @@ -231724,7 +231928,7 @@ }, { "question": "Hermanos Maristas", - "icon": "./assets/data/nsi/logos/hermanosmaristas-155571.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hermanosmaristas-155571.jpg", "osmTags": { "and": [ "amenity=school", @@ -231740,7 +231944,7 @@ }, { "question": "Hermosa Beach City School District", - "icon": "./assets/data/nsi/logos/hermosabeachcityschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hermosabeachcityschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -231787,7 +231991,7 @@ }, { "question": "Hertfordshire County Council", - "icon": "./assets/data/nsi/logos/hertfordshirecountycouncil-00e0d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hertfordshirecountycouncil-00e0d0.jpg", "osmTags": { "and": [ "amenity=school", @@ -231803,7 +232007,7 @@ }, { "question": "Highline Public Schools", - "icon": "./assets/data/nsi/logos/highlinepublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/highlinepublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -231820,7 +232024,7 @@ }, { "question": "Hillsboro School District", - "icon": "./assets/data/nsi/logos/hillsboroschooldistrict-330cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hillsboroschooldistrict-330cad.png", "osmTags": { "and": [ "amenity=school", @@ -231837,7 +232041,7 @@ }, { "question": "Hillsborough County Public Schools", - "icon": "./assets/data/nsi/logos/hillsboroughcountypublicschools-e8bc2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hillsboroughcountypublicschools-e8bc2a.jpg", "osmTags": { "and": [ "amenity=school", @@ -232078,7 +232282,7 @@ }, { "question": "Holmestrand kommune", - "icon": "./assets/data/nsi/logos/holmestrandkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holmestrandkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -232110,7 +232314,7 @@ }, { "question": "Horten kommune", - "icon": "./assets/data/nsi/logos/hortenkommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hortenkommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -232126,7 +232330,7 @@ }, { "question": "Houston County Board of Education (Alabama)", - "icon": "./assets/data/nsi/logos/houstoncountyboardofeducation-cc53cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houstoncountyboardofeducation-cc53cf.jpg", "osmTags": { "and": [ "amenity=school", @@ -232142,7 +232346,7 @@ }, { "question": "Houston County Board of Education (Georgia)", - "icon": "./assets/data/nsi/logos/houstoncountyboardofeducation-159679.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houstoncountyboardofeducation-159679.jpg", "osmTags": { "and": [ "amenity=school", @@ -232158,7 +232362,7 @@ }, { "question": "Houston Independent School District", - "icon": "./assets/data/nsi/logos/houstonindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houstonindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -232221,7 +232425,7 @@ }, { "question": "Humble Independent School District", - "icon": "./assets/data/nsi/logos/humbleindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/humbleindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -232253,7 +232457,7 @@ }, { "question": "Huntsville City Schools", - "icon": "./assets/data/nsi/logos/huntsvillecityschools-cc53cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/huntsvillecityschools-cc53cf.png", "osmTags": { "and": [ "amenity=school", @@ -232270,7 +232474,7 @@ }, { "question": "Huron-Perth Catholic District School Board", - "icon": "./assets/data/nsi/logos/huronperthcatholicdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huronperthcatholicdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -232287,7 +232491,7 @@ }, { "question": "Huron-Superior Catholic District School Board", - "icon": "./assets/data/nsi/logos/huronsuperiorcatholicdistrictschoolboard-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/huronsuperiorcatholicdistrictschoolboard-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -232304,7 +232508,7 @@ }, { "question": "Hurst-Euless-Bedford Independent School District", - "icon": "./assets/data/nsi/logos/hursteulessbedfordindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hursteulessbedfordindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -232396,7 +232600,7 @@ }, { "question": "Idaho Falls School District 91", - "icon": "./assets/data/nsi/logos/idahofallsschooldistrict-d7611a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahofallsschooldistrict-d7611a.jpg", "osmTags": { "and": [ "amenity=school", @@ -232413,7 +232617,7 @@ }, { "question": "IDEA Public Schools", - "icon": "./assets/data/nsi/logos/ideapublicschools-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ideapublicschools-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -232684,7 +232888,7 @@ }, { "question": "Indian Prairie School District 204", - "icon": "./assets/data/nsi/logos/indianprairieschooldistrict204-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianprairieschooldistrict204-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -232700,7 +232904,7 @@ }, { "question": "Indre Østfold kommune", - "icon": "./assets/data/nsi/logos/indreostfoldkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/indreostfoldkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -232746,7 +232950,7 @@ }, { "question": "Inglewood Unified School District", - "icon": "./assets/data/nsi/logos/inglewoodunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inglewoodunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -232793,7 +232997,7 @@ }, { "question": "InMAT", - "icon": "./assets/data/nsi/logos/inmat-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inmat-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -232854,7 +233058,7 @@ }, { "question": "Inspiring Futures Through Learning", - "icon": "./assets/data/nsi/logos/inspiringfuturesthroughlearning-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/inspiringfuturesthroughlearning-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -232870,7 +233074,7 @@ }, { "question": "Instituto Politécnico Nacional", - "icon": "./assets/data/nsi/logos/institutopolitecniconacional-422367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutopolitecniconacional-422367.jpg", "osmTags": { "and": [ "amenity=school", @@ -232990,7 +233194,7 @@ }, { "question": "Irvine Unified School District", - "icon": "./assets/data/nsi/logos/irvineunifiedschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irvineunifiedschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -233007,7 +233211,7 @@ }, { "question": "Irving Independent School District", - "icon": "./assets/data/nsi/logos/irvingindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irvingindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -233084,7 +233288,7 @@ }, { "question": "Isle of Wight Council", - "icon": "./assets/data/nsi/logos/isleofwightcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isleofwightcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -233100,7 +233304,7 @@ }, { "question": "Issaquah School District 411", - "icon": "./assets/data/nsi/logos/issaquahschooldistrict411-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/issaquahschooldistrict411-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -233293,7 +233497,7 @@ }, { "question": "Jackson Public Schools (Michigan)", - "icon": "./assets/data/nsi/logos/jacksonpublicschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonpublicschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -233310,7 +233514,7 @@ }, { "question": "Jackson Public Schools (Mississippi)", - "icon": "./assets/data/nsi/logos/jacksonpublicschools-36719b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonpublicschools-36719b.png", "osmTags": { "and": [ "amenity=school", @@ -233493,7 +233697,7 @@ }, { "question": "Jeffco Public Schools", - "icon": "./assets/data/nsi/logos/jeffcopublicschools-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeffcopublicschools-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -233510,7 +233714,7 @@ }, { "question": "Jefferson County Public Schools (Kentucky)", - "icon": "./assets/data/nsi/logos/jeffersoncountypublicschools-4e7bb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeffersoncountypublicschools-4e7bb3.jpg", "osmTags": { "and": [ "amenity=school", @@ -233543,7 +233747,7 @@ }, { "question": "Jefferson County Public Schools (West Virginia)", - "icon": "./assets/data/nsi/logos/jeffersoncountypublicschools-da05eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/jeffersoncountypublicschools-da05eb.png", "osmTags": { "and": [ "amenity=school", @@ -233560,7 +233764,7 @@ }, { "question": "Jefferson School District 251", - "icon": "./assets/data/nsi/logos/jeffersonjointschooldistrict251-d7611a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeffersonjointschooldistrict251-d7611a.jpg", "osmTags": { "and": [ "amenity=school", @@ -233679,7 +233883,7 @@ }, { "question": "Johnston County Schools", - "icon": "./assets/data/nsi/logos/johnstoncountyschools-15bd72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johnstoncountyschools-15bd72.png", "osmTags": { "and": [ "amenity=school", @@ -233696,7 +233900,7 @@ }, { "question": "Joliet Public Schools District 86", - "icon": "./assets/data/nsi/logos/jolietpublicschoolsdistrict86-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jolietpublicschoolsdistrict86-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -233713,7 +233917,7 @@ }, { "question": "Joliet Township High School District 204", - "icon": "./assets/data/nsi/logos/joliettownshiphighschooldistrict204-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joliettownshiphighschooldistrict204-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -233879,7 +234083,7 @@ }, { "question": "Judson Independent School District", - "icon": "./assets/data/nsi/logos/judsonindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/judsonindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -233911,7 +234115,7 @@ }, { "question": "Junta de Andalucía", - "icon": "./assets/data/nsi/logos/juntadeandalucia-c1ff56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-c1ff56.jpg", "osmTags": { "and": [ "amenity=school", @@ -233927,7 +234131,7 @@ }, { "question": "Junta de Castilla y León", - "icon": "./assets/data/nsi/logos/juntadecastillayleon-c1ff56.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadecastillayleon-c1ff56.svg", "osmTags": { "and": [ "amenity=school", @@ -233943,7 +234147,7 @@ }, { "question": "Junta de Extremadura", - "icon": "./assets/data/nsi/logos/juntadeextremadura-c1ff56.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadeextremadura-c1ff56.svg", "osmTags": { "and": [ "amenity=school", @@ -234169,7 +234373,7 @@ }, { "question": "Kalamazoo Public Schools", - "icon": "./assets/data/nsi/logos/kalamazoopublicschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kalamazoopublicschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -234261,7 +234465,7 @@ }, { "question": "Kaneland Community Unit School District 302", - "icon": "./assets/data/nsi/logos/kanelandcommunityunitschooldistrict302-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kanelandcommunityunitschooldistrict302-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -234382,7 +234586,7 @@ }, { "question": "Karmøy kommune", - "icon": "./assets/data/nsi/logos/karmoykommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/karmoykommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -234443,7 +234647,7 @@ }, { "question": "Katy Independent School District", - "icon": "./assets/data/nsi/logos/katyindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/katyindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -234475,7 +234679,7 @@ }, { "question": "Kawartha Pine Ridge District School Board", - "icon": "./assets/data/nsi/logos/kawarthapineridgedistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kawarthapineridgedistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -234553,7 +234757,7 @@ }, { "question": "Keller Independent School District", - "icon": "./assets/data/nsi/logos/kellerindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kellerindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -234599,7 +234803,7 @@ }, { "question": "Kementerian Pendidikan Malaysia", - "icon": "./assets/data/nsi/logos/kementerianpendidikanmalaysia-015093.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kementerianpendidikanmalaysia-015093.jpg", "osmTags": { "and": [ "amenity=school", @@ -234637,7 +234841,7 @@ }, { "question": "Kennewick School District", - "icon": "./assets/data/nsi/logos/kennewickschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kennewickschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -234654,7 +234858,7 @@ }, { "question": "Kenosha Unified School District", - "icon": "./assets/data/nsi/logos/kenoshaunifiedschooldistrict-ac5479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kenoshaunifiedschooldistrict-ac5479.jpg", "osmTags": { "and": [ "amenity=school", @@ -234686,7 +234890,7 @@ }, { "question": "Kent County Council", - "icon": "./assets/data/nsi/logos/kentcountycouncil-ccd4d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentcountycouncil-ccd4d4.png", "osmTags": { "and": [ "amenity=school", @@ -234702,7 +234906,7 @@ }, { "question": "Kent School District", - "icon": "./assets/data/nsi/logos/kentschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -234766,7 +234970,7 @@ }, { "question": "Kernow Learning Multi Academy Trust", - "icon": "./assets/data/nsi/logos/kernowlearningmultiacademytrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kernowlearningmultiacademytrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -234872,7 +235076,7 @@ }, { "question": "King Edward VI Academy Trust Birmingham", - "icon": "./assets/data/nsi/logos/kingedwardviacademytrustbirmingham-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingedwardviacademytrustbirmingham-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -234888,7 +235092,7 @@ }, { "question": "Kinn kommune", - "icon": "./assets/data/nsi/logos/kinnkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kinnkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -234979,7 +235183,7 @@ }, { "question": "Klamath County School District", - "icon": "./assets/data/nsi/logos/klamathcountyschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klamathcountyschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -235011,7 +235215,7 @@ }, { "question": "Klein Independent School District", - "icon": "./assets/data/nsi/logos/kleinindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kleinindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -235028,7 +235232,7 @@ }, { "question": "Klepp kommune", - "icon": "./assets/data/nsi/logos/kleppkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kleppkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -235044,7 +235248,7 @@ }, { "question": "Knowsley Metropolitan Borough Council", - "icon": "./assets/data/nsi/logos/knowsleymetropolitanboroughcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knowsleymetropolitanboroughcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -235060,7 +235264,7 @@ }, { "question": "Knox County Schools", - "icon": "./assets/data/nsi/logos/knoxcountyschools-3799fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knoxcountyschools-3799fa.jpg", "osmTags": { "and": [ "amenity=school", @@ -235091,7 +235295,7 @@ }, { "question": "Kongsberg kommune", - "icon": "./assets/data/nsi/logos/kongsbergkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kongsbergkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -235151,7 +235355,7 @@ }, { "question": "Košický samosprávny kraj", - "icon": "./assets/data/nsi/logos/kosickysamospravnykraj-08fea1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kosickysamospravnykraj-08fea1.png", "osmTags": { "and": [ "amenity=school", @@ -235183,7 +235387,7 @@ }, { "question": "Kreis Groß-Gerau", - "icon": "./assets/data/nsi/logos/kreisgrossgerau-127a2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kreisgrossgerau-127a2c.jpg", "osmTags": { "and": [ "amenity=school", @@ -235199,7 +235403,7 @@ }, { "question": "Kristiansand kommune", - "icon": "./assets/data/nsi/logos/kristiansandkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kristiansandkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -235215,7 +235419,7 @@ }, { "question": "Kristiansund kommune", - "icon": "./assets/data/nsi/logos/kristiansundkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kristiansundkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -235276,7 +235480,7 @@ }, { "question": "Kuopion kaupunki", - "icon": "./assets/data/nsi/logos/kuopionkaupunki-4ccccf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kuopionkaupunki-4ccccf.png", "osmTags": { "and": [ "amenity=school", @@ -235292,7 +235496,7 @@ }, { "question": "Kvinnherad kommune", - "icon": "./assets/data/nsi/logos/kvinnheradkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kvinnheradkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -235308,7 +235512,7 @@ }, { "question": "KwaZulu-Natal Department of Education", - "icon": "./assets/data/nsi/logos/kwazulunataldepartmentofeducation-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kwazulunataldepartmentofeducation-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -235324,7 +235528,7 @@ }, { "question": "Kyffhäuserkreis", - "icon": "./assets/data/nsi/logos/kyffhauserkreis-3f6a1d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kyffhauserkreis-3f6a1d.svg", "osmTags": { "and": [ "amenity=school", @@ -235356,7 +235560,7 @@ }, { "question": "L'Anse Creuse Public Schools", - "icon": "./assets/data/nsi/logos/lansecreusepublicschools-aa6f23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lansecreusepublicschools-aa6f23.png", "osmTags": { "and": [ "amenity=school", @@ -235403,7 +235607,7 @@ }, { "question": "La Joya Independent School District", - "icon": "./assets/data/nsi/logos/lajoyaindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lajoyaindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -235540,7 +235744,7 @@ }, { "question": "La Salle", - "icon": "./assets/data/nsi/logos/lasalle-155571.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lasalle-155571.jpg", "osmTags": { "and": [ "amenity=school", @@ -235781,7 +235985,7 @@ }, { "question": "Lake Oswego School District", - "icon": "./assets/data/nsi/logos/lakeoswegoschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lakeoswegoschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -235828,7 +236032,7 @@ }, { "question": "Lake Stevens School District", - "icon": "./assets/data/nsi/logos/lakestevensschooldistrict-48f47a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lakestevensschooldistrict-48f47a.png", "osmTags": { "and": [ "amenity=school", @@ -235845,7 +236049,7 @@ }, { "question": "Lake Washington School District", - "icon": "./assets/data/nsi/logos/lakewashingtonschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lakewashingtonschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -235938,7 +236142,7 @@ }, { "question": "Lamar County School District (Georgia)", - "icon": "./assets/data/nsi/logos/lamarcountyschooldistrict-159679.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lamarcountyschooldistrict-159679.png", "osmTags": { "and": [ "amenity=school", @@ -235955,7 +236159,7 @@ }, { "question": "Lamar County School District (Mississippi)", - "icon": "./assets/data/nsi/logos/lamarcountyschooldistrict-36719b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lamarcountyschooldistrict-36719b.jpg", "osmTags": { "and": [ "amenity=school", @@ -235987,7 +236191,7 @@ }, { "question": "Lambton Kent District School Board", - "icon": "./assets/data/nsi/logos/lambtonkentdistrictschoolboard-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lambtonkentdistrictschoolboard-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -236049,7 +236253,7 @@ }, { "question": "Lancashire County Council", - "icon": "./assets/data/nsi/logos/lancashirecountycouncil-1109dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lancashirecountycouncil-1109dc.png", "osmTags": { "and": [ "amenity=school", @@ -236081,7 +236285,7 @@ }, { "question": "Lancaster School District", - "icon": "./assets/data/nsi/logos/lancasterschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancasterschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -236098,7 +236302,7 @@ }, { "question": "Land Baden-Württemberg", - "icon": "./assets/data/nsi/logos/landbadenwurttemberg-0a18e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landbadenwurttemberg-0a18e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -236114,7 +236318,7 @@ }, { "question": "Land Berlin", - "icon": "./assets/data/nsi/logos/landberlin-d52d16.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landberlin-d52d16.svg", "osmTags": { "and": [ "amenity=school", @@ -236144,7 +236348,7 @@ }, { "question": "Landeshauptstadt Düsseldorf", - "icon": "./assets/data/nsi/logos/landeshauptstadtdusseldorf-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtdusseldorf-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -236174,7 +236378,7 @@ }, { "question": "Landeshauptstadt Potsdam", - "icon": "./assets/data/nsi/logos/landeshauptstadtpotsdam-60dfe6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtpotsdam-60dfe6.jpg", "osmTags": { "and": [ "amenity=school", @@ -236190,7 +236394,7 @@ }, { "question": "Landeshauptstadt Saarbrücken", - "icon": "./assets/data/nsi/logos/landeshauptstadtsaarbrucken-97fbd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtsaarbrucken-97fbd9.jpg", "osmTags": { "and": [ "amenity=school", @@ -236206,7 +236410,7 @@ }, { "question": "Landkreis Fulda", - "icon": "./assets/data/nsi/logos/landkreisfulda-127a2c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisfulda-127a2c.svg", "osmTags": { "and": [ "amenity=school", @@ -236222,7 +236426,7 @@ }, { "question": "Landkreis Harburg", - "icon": "./assets/data/nsi/logos/landkreisharburg-fe40f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisharburg-fe40f3.svg", "osmTags": { "and": [ "amenity=school", @@ -236238,7 +236442,7 @@ }, { "question": "Landkreis Jerichower Land", - "icon": "./assets/data/nsi/logos/landkreisjerichowerland-08f4e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisjerichowerland-08f4e1.png", "osmTags": { "and": [ "amenity=school", @@ -236254,7 +236458,7 @@ }, { "question": "Landkreis Südliche Weinstraße", - "icon": "./assets/data/nsi/logos/landkreissudlicheweinstrasse-23163a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreissudlicheweinstrasse-23163a.svg", "osmTags": { "and": [ "amenity=school", @@ -236462,7 +236666,7 @@ }, { "question": "Laramie County School District 1", - "icon": "./assets/data/nsi/logos/laramiecountyschooldistrict1-a56222.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laramiecountyschooldistrict1-a56222.jpg", "osmTags": { "and": [ "amenity=school", @@ -236479,7 +236683,7 @@ }, { "question": "Larvik kommune", - "icon": "./assets/data/nsi/logos/larvikkommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/larvikkommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -236555,7 +236759,7 @@ }, { "question": "Las Virgenes Unified School District", - "icon": "./assets/data/nsi/logos/lasvirgenesunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lasvirgenesunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -236691,7 +236895,7 @@ }, { "question": "Lawrence Public Schools (Kansas)", - "icon": "./assets/data/nsi/logos/lawrencepublicschools-43eeb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lawrencepublicschools-43eeb8.jpg", "osmTags": { "and": [ "amenity=school", @@ -236784,7 +236988,7 @@ }, { "question": "Learning Academies Trust", - "icon": "./assets/data/nsi/logos/learningacademiestrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/learningacademiestrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -236831,7 +237035,7 @@ }, { "question": "Learning Partners Academy Trust", - "icon": "./assets/data/nsi/logos/learningpartnersacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/learningpartnersacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -236877,7 +237081,7 @@ }, { "question": "Leeds City Council", - "icon": "./assets/data/nsi/logos/leedscitycouncil-ef57c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leedscitycouncil-ef57c6.jpg", "osmTags": { "and": [ "amenity=school", @@ -236982,7 +237186,7 @@ }, { "question": "Leigh Academies Trust", - "icon": "./assets/data/nsi/logos/leighacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leighacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -237028,7 +237232,7 @@ }, { "question": "Leon County Schools", - "icon": "./assets/data/nsi/logos/leoncountyschools-e8bc2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leoncountyschools-e8bc2a.jpg", "osmTags": { "and": [ "amenity=school", @@ -237103,7 +237307,7 @@ }, { "question": "Lewisville Independent School District", - "icon": "./assets/data/nsi/logos/lewisvilleindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lewisvilleindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -237359,7 +237563,7 @@ }, { "question": "Lier kommune", - "icon": "./assets/data/nsi/logos/lierkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lierkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -237450,7 +237654,7 @@ }, { "question": "Lighthouse Schools Partnership", - "icon": "./assets/data/nsi/logos/lighthouseschoolspartnership-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lighthouseschoolspartnership-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -237495,7 +237699,7 @@ }, { "question": "Lillestrøm kommune", - "icon": "./assets/data/nsi/logos/lillestromkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lillestromkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -237586,7 +237790,7 @@ }, { "question": "Limestone District School Board", - "icon": "./assets/data/nsi/logos/limestonedistrictschoolboard-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/limestonedistrictschoolboard-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -237603,7 +237807,7 @@ }, { "question": "Limpopo Department of Education", - "icon": "./assets/data/nsi/logos/limpopodepartmentofeducation-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/limpopodepartmentofeducation-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -237649,7 +237853,7 @@ }, { "question": "Lincoln County School District", - "icon": "./assets/data/nsi/logos/lincolncountyschooldistrict-330cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolncountyschooldistrict-330cad.png", "osmTags": { "and": [ "amenity=school", @@ -237666,7 +237870,7 @@ }, { "question": "Lincoln Public Schools", - "icon": "./assets/data/nsi/logos/lincolnpublicschools-5b4c13.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnpublicschools-5b4c13.png", "osmTags": { "and": [ "amenity=school", @@ -237683,7 +237887,7 @@ }, { "question": "Lincolnshire County Council", - "icon": "./assets/data/nsi/logos/lincolnshirecountycouncil-2bbb7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnshirecountycouncil-2bbb7b.jpg", "osmTags": { "and": [ "amenity=school", @@ -237699,7 +237903,7 @@ }, { "question": "Lindesnes kommune", - "icon": "./assets/data/nsi/logos/lindesneskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lindesneskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -237745,7 +237949,7 @@ }, { "question": "Lingfield Education Trust", - "icon": "./assets/data/nsi/logos/lingfieldeducationtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lingfieldeducationtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -237791,7 +237995,7 @@ }, { "question": "Link Academy Trust", - "icon": "./assets/data/nsi/logos/linkacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linkacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -237807,7 +238011,7 @@ }, { "question": "Linköpings kommun", - "icon": "./assets/data/nsi/logos/linkopingskommun-0f2dfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linkopingskommun-0f2dfb.jpg", "osmTags": { "and": [ "amenity=school", @@ -237823,7 +238027,7 @@ }, { "question": "Lion Academy Trust", - "icon": "./assets/data/nsi/logos/lionacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lionacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -237839,7 +238043,7 @@ }, { "question": "Lionheart Educational Trust", - "icon": "./assets/data/nsi/logos/lionhearteducationaltrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lionhearteducationaltrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -237855,7 +238059,7 @@ }, { "question": "Lisle Community Unit School District 202", - "icon": "./assets/data/nsi/logos/lislecommunityunitschooldistrict202-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lislecommunityunitschooldistrict202-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -237871,7 +238075,7 @@ }, { "question": "Little Rock School District", - "icon": "./assets/data/nsi/logos/littlerockschooldistrict-c3d23c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/littlerockschooldistrict-c3d23c.jpg", "osmTags": { "and": [ "amenity=school", @@ -238008,7 +238212,7 @@ }, { "question": "Lohjan kaupunki", - "icon": "./assets/data/nsi/logos/lohjankaupunki-4ccccf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lohjankaupunki-4ccccf.jpg", "osmTags": { "and": [ "amenity=school", @@ -238024,7 +238228,7 @@ }, { "question": "London Borough of Barking and Dagenham", - "icon": "./assets/data/nsi/logos/londonboroughofbarkinganddagenham-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofbarkinganddagenham-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238040,7 +238244,7 @@ }, { "question": "London Borough of Barnet", - "icon": "./assets/data/nsi/logos/londonboroughofbarnet-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofbarnet-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238056,7 +238260,7 @@ }, { "question": "London Borough of Bexley", - "icon": "./assets/data/nsi/logos/londonboroughofbexley-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofbexley-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238072,7 +238276,7 @@ }, { "question": "London Borough of Brent", - "icon": "./assets/data/nsi/logos/londonboroughofbrent-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofbrent-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238088,7 +238292,7 @@ }, { "question": "London Borough of Bromley", - "icon": "./assets/data/nsi/logos/londonboroughofbromley-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofbromley-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238104,7 +238308,7 @@ }, { "question": "London Borough of Camden", - "icon": "./assets/data/nsi/logos/londonboroughofcamden-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofcamden-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238120,7 +238324,7 @@ }, { "question": "London Borough of Croydon", - "icon": "./assets/data/nsi/logos/londonboroughofcroydon-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofcroydon-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238136,7 +238340,7 @@ }, { "question": "London Borough of Ealing", - "icon": "./assets/data/nsi/logos/londonboroughofealing-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofealing-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238152,7 +238356,7 @@ }, { "question": "London Borough of Enfield", - "icon": "./assets/data/nsi/logos/londonboroughofenfield-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofenfield-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238168,7 +238372,7 @@ }, { "question": "London Borough of Hackney", - "icon": "./assets/data/nsi/logos/londonboroughofhackney-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofhackney-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238184,7 +238388,7 @@ }, { "question": "London Borough of Hammersmith and Fulham", - "icon": "./assets/data/nsi/logos/londonboroughofhammersmithandfulham-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofhammersmithandfulham-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238200,7 +238404,7 @@ }, { "question": "London Borough of Haringey", - "icon": "./assets/data/nsi/logos/londonboroughofharingey-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofharingey-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238216,7 +238420,7 @@ }, { "question": "London Borough of Harrow", - "icon": "./assets/data/nsi/logos/londonboroughofharrow-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofharrow-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238232,7 +238436,7 @@ }, { "question": "London Borough of Havering", - "icon": "./assets/data/nsi/logos/londonboroughofhavering-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofhavering-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238248,7 +238452,7 @@ }, { "question": "London Borough of Hillingdon", - "icon": "./assets/data/nsi/logos/londonboroughofhillingdon-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofhillingdon-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238264,7 +238468,7 @@ }, { "question": "London Borough of Hounslow", - "icon": "./assets/data/nsi/logos/londonboroughofhounslow-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofhounslow-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238280,7 +238484,7 @@ }, { "question": "London Borough of Islington", - "icon": "./assets/data/nsi/logos/londonboroughofislington-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofislington-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238296,7 +238500,7 @@ }, { "question": "London Borough of Lambeth", - "icon": "./assets/data/nsi/logos/londonboroughoflambeth-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughoflambeth-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238312,7 +238516,7 @@ }, { "question": "London Borough of Lewisham", - "icon": "./assets/data/nsi/logos/londonboroughoflewisham-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughoflewisham-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238328,7 +238532,7 @@ }, { "question": "London Borough of Merton", - "icon": "./assets/data/nsi/logos/londonboroughofmerton-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofmerton-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238344,7 +238548,7 @@ }, { "question": "London Borough of Newham", - "icon": "./assets/data/nsi/logos/londonboroughofnewham-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofnewham-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238375,7 +238579,7 @@ }, { "question": "London Borough of Richmond Upon Thames", - "icon": "./assets/data/nsi/logos/londonboroughofrichmonduponthames-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofrichmonduponthames-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238392,7 +238596,7 @@ }, { "question": "London Borough of Southwark", - "icon": "./assets/data/nsi/logos/londonboroughofsouthwark-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofsouthwark-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238408,7 +238612,7 @@ }, { "question": "London Borough of Sutton", - "icon": "./assets/data/nsi/logos/londonboroughofsutton-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofsutton-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238424,7 +238628,7 @@ }, { "question": "London Borough of Tower Hamlets", - "icon": "./assets/data/nsi/logos/londonboroughoftowerhamlets-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughoftowerhamlets-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238440,7 +238644,7 @@ }, { "question": "London Borough of Waltham Forest", - "icon": "./assets/data/nsi/logos/londonboroughofwalthamforest-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofwalthamforest-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238456,7 +238660,7 @@ }, { "question": "London Borough of Wandsworth", - "icon": "./assets/data/nsi/logos/londonboroughofwandsworth-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofwandsworth-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -238472,7 +238676,7 @@ }, { "question": "London District Catholic School Board", - "icon": "./assets/data/nsi/logos/londondistrictcatholicschoolboard-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/londondistrictcatholicschoolboard-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -238489,7 +238693,7 @@ }, { "question": "Long Beach Unified School District", - "icon": "./assets/data/nsi/logos/longbeachunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longbeachunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -238506,7 +238710,7 @@ }, { "question": "Longview Public Schools", - "icon": "./assets/data/nsi/logos/longviewpublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longviewpublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -238628,7 +238832,7 @@ }, { "question": "Lørenskog kommune", - "icon": "./assets/data/nsi/logos/lorenskogkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lorenskogkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -238689,7 +238893,7 @@ }, { "question": "Los Angeles Unified School District", - "icon": "./assets/data/nsi/logos/losangelesunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -238721,7 +238925,7 @@ }, { "question": "Loudoun County Public Schools", - "icon": "./assets/data/nsi/logos/loudouncountypublicschools-3cf7e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/loudouncountypublicschools-3cf7e1.jpg", "osmTags": { "and": [ "amenity=school", @@ -238738,7 +238942,7 @@ }, { "question": "Louis Riel School Division", - "icon": "./assets/data/nsi/logos/louisrielschooldivision-650beb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisrielschooldivision-650beb.svg", "osmTags": { "and": [ "amenity=school", @@ -238904,7 +239108,7 @@ }, { "question": "Lucia Mar Unified School District", - "icon": "./assets/data/nsi/logos/luciamarunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luciamarunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -239056,7 +239260,7 @@ }, { "question": "Lutheran Education Australia", - "icon": "./assets/data/nsi/logos/lutheraneducationaustralia-2c0dd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lutheraneducationaustralia-2c0dd7.jpg", "osmTags": { "and": [ "amenity=school", @@ -239074,7 +239278,7 @@ }, { "question": "Luton Borough Council", - "icon": "./assets/data/nsi/logos/lutonboroughcouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lutonboroughcouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -239119,7 +239323,7 @@ }, { "question": "Lynwood Unified School District", - "icon": "./assets/data/nsi/logos/lynwoodunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lynwoodunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -239511,7 +239715,7 @@ }, { "question": "Madison Metropolitan School District", - "icon": "./assets/data/nsi/logos/madisonmetropolitanschooldistrict-ac5479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madisonmetropolitanschooldistrict-ac5479.jpg", "osmTags": { "and": [ "amenity=school", @@ -239528,7 +239732,7 @@ }, { "question": "Madison School District 321", - "icon": "./assets/data/nsi/logos/madisonschooldistrict321-d7611a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madisonschooldistrict321-d7611a.jpg", "osmTags": { "and": [ "amenity=school", @@ -239860,7 +240064,7 @@ }, { "question": "Maine Township High School District 207", - "icon": "./assets/data/nsi/logos/mainetownshiphighschooldistrict207-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mainetownshiphighschooldistrict207-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -240387,7 +240591,7 @@ }, { "question": "Manatee County School District", - "icon": "./assets/data/nsi/logos/manateecountyschooldistrict-e8bc2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/manateecountyschooldistrict-e8bc2a.png", "osmTags": { "and": [ "amenity=school", @@ -240419,7 +240623,7 @@ }, { "question": "Manchester City Council", - "icon": "./assets/data/nsi/logos/manchestercitycouncil-7a837c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manchestercitycouncil-7a837c.svg", "osmTags": { "and": [ "amenity=school", @@ -240661,7 +240865,7 @@ }, { "question": "Manteca Unified School District", - "icon": "./assets/data/nsi/logos/mantecaunifiedschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mantecaunifiedschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -240843,7 +241047,7 @@ }, { "question": "Marches Academy Trust", - "icon": "./assets/data/nsi/logos/marchesacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marchesacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -240994,7 +241198,7 @@ }, { "question": "Maritime Academy Trust", - "icon": "./assets/data/nsi/logos/maritimeacademytrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maritimeacademytrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -241025,7 +241229,7 @@ }, { "question": "Marquardt School District 15", - "icon": "./assets/data/nsi/logos/marquardtschooldistrict15-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marquardtschooldistrict15-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -241041,7 +241245,7 @@ }, { "question": "Marshall Public Schools", - "icon": "./assets/data/nsi/logos/marshallpublicschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshallpublicschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -241058,7 +241262,7 @@ }, { "question": "Marysville School District 25", - "icon": "./assets/data/nsi/logos/marysvilleschooldistrict25-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marysvilleschooldistrict25-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -241270,7 +241474,7 @@ }, { "question": "Mater Christi Multi-Academy Trust", - "icon": "./assets/data/nsi/logos/materchristimultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/materchristimultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -241451,7 +241655,7 @@ }, { "question": "McAllen Independent School District", - "icon": "./assets/data/nsi/logos/mcallenindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcallenindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -241483,7 +241687,7 @@ }, { "question": "Medford School District (Oregon)", - "icon": "./assets/data/nsi/logos/medfordschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/medfordschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -241530,7 +241734,7 @@ }, { "question": "Melbourne Archdiocese Catholic Schools", - "icon": "./assets/data/nsi/logos/melbournearchdiocesecatholicschools-1fc2f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/melbournearchdiocesecatholicschools-1fc2f5.jpg", "osmTags": { "and": [ "amenity=school", @@ -241547,7 +241751,7 @@ }, { "question": "Melhus kommune", - "icon": "./assets/data/nsi/logos/melhuskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/melhuskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -241563,7 +241767,7 @@ }, { "question": "MENAPLN", - "icon": "./assets/data/nsi/logos/ministeredeleducationnationaledelalphabetisationetdelapromotiondeslanguesnationales-3dba23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeredeleducationnationaledelalphabetisationetdelapromotiondeslanguesnationales-3dba23.jpg", "osmTags": { "and": [ "amenity=school", @@ -241640,7 +241844,7 @@ }, { "question": "Meridian Trust", - "icon": "./assets/data/nsi/logos/meridiantrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meridiantrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -241702,7 +241906,7 @@ }, { "question": "Mesquite ISD", - "icon": "./assets/data/nsi/logos/mesquiteindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mesquiteindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -241719,7 +241923,7 @@ }, { "question": "Mesto Košice", - "icon": "./assets/data/nsi/logos/mestokosice-08fea1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestokosice-08fea1.jpg", "osmTags": { "and": [ "amenity=school", @@ -241824,7 +242028,7 @@ }, { "question": "Miami-Dade County Public Schools", - "icon": "./assets/data/nsi/logos/miamidadecountypublicschools-e8bc2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miamidadecountypublicschools-e8bc2a.png", "osmTags": { "and": [ "amenity=school", @@ -241841,7 +242045,7 @@ }, { "question": "Miasto Gdańsk", - "icon": "./assets/data/nsi/logos/miastogdansk-83282a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miastogdansk-83282a.jpg", "osmTags": { "and": [ "amenity=school", @@ -241857,7 +242061,7 @@ }, { "question": "Miasto Katowice", - "icon": "./assets/data/nsi/logos/miastokatowice-83282a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miastokatowice-83282a.png", "osmTags": { "and": [ "amenity=school", @@ -241873,7 +242077,7 @@ }, { "question": "Miasto Stołeczne Warszawa", - "icon": "./assets/data/nsi/logos/miastostolecznewarszawa-83282a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miastostolecznewarszawa-83282a.jpg", "osmTags": { "and": [ "amenity=school", @@ -241906,7 +242110,7 @@ }, { "question": "Middlesbrough Borough Council", - "icon": "./assets/data/nsi/logos/middlesbroughboroughcouncil-7a837c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/middlesbroughboroughcouncil-7a837c.svg", "osmTags": { "and": [ "amenity=school", @@ -241922,7 +242126,7 @@ }, { "question": "Midlothian Council", - "icon": "./assets/data/nsi/logos/midlothiancouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midlothiancouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -241998,7 +242202,7 @@ }, { "question": "Midsomer Norton Schools Partnership", - "icon": "./assets/data/nsi/logos/midsomernortonschoolspartnership-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midsomernortonschoolspartnership-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -242059,7 +242263,7 @@ }, { "question": "Milli Eğitim Bakanlığı", - "icon": "./assets/data/nsi/logos/milliegitimbakanligi-44c4b9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/milliegitimbakanligi-44c4b9.svg", "osmTags": { "and": [ "amenity=school", @@ -242076,7 +242280,7 @@ }, { "question": "Milpitas Unified School District", - "icon": "./assets/data/nsi/logos/milpitasunifiedschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/milpitasunifiedschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -242108,7 +242312,7 @@ }, { "question": "Milwaukee Public Schools", - "icon": "./assets/data/nsi/logos/milwaukeepublicschools-ac5479.png", + "icon": "https://data.mapcomplete.org/nsi//logos/milwaukeepublicschools-ac5479.png", "osmTags": { "and": [ "amenity=school", @@ -242247,7 +242451,7 @@ }, { "question": "Ministère de l'Éducation Nationale (Algeria)", - "icon": "./assets/data/nsi/logos/ministeredeleducationnationale-e43c15.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeredeleducationnationale-e43c15.svg", "osmTags": { "and": [ "amenity=school", @@ -242278,7 +242482,7 @@ }, { "question": "Ministère de l'Education Nationale et de la Jeunesse", - "icon": "./assets/data/nsi/logos/ministeredeleducationnationaleetdelajeunesse-9d3cb1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeredeleducationnationaleetdelajeunesse-9d3cb1.svg", "osmTags": { "and": [ "amenity=school", @@ -242309,7 +242513,7 @@ }, { "question": "Ministério da Educação (Brasil)", - "icon": "./assets/data/nsi/logos/ministeriodaeducacao-52f4f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodaeducacao-52f4f1.jpg", "osmTags": { "and": [ "amenity=school", @@ -242398,7 +242602,7 @@ }, { "question": "Ministerio de Educación (Chile)", - "icon": "./assets/data/nsi/logos/ministeriodeeducacion-5e33f0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacion-5e33f0.svg", "osmTags": { "and": [ "amenity=school", @@ -242415,7 +242619,7 @@ }, { "question": "Ministerio de Educación (Cuba)", - "icon": "./assets/data/nsi/logos/ministeriodeeducacion-72f85c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacion-72f85c.png", "osmTags": { "and": [ "amenity=school", @@ -242480,7 +242684,7 @@ }, { "question": "Ministerio de Educación (Panama)", - "icon": "./assets/data/nsi/logos/ministeriodeeducacion-d21d34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacion-d21d34.jpg", "osmTags": { "and": [ "amenity=school", @@ -242497,7 +242701,7 @@ }, { "question": "Ministerio de Educación (Peru)", - "icon": "./assets/data/nsi/logos/ministeriodeeducacion-de9622.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacion-de9622.png", "osmTags": { "and": [ "amenity=school", @@ -242544,7 +242748,7 @@ }, { "question": "Ministerio de Educación Nacional (Colombia)", - "icon": "./assets/data/nsi/logos/ministeriodeeducacionnacional-9772be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodeeducacionnacional-9772be.jpg", "osmTags": { "and": [ "amenity=school", @@ -242606,7 +242810,7 @@ }, { "question": "Ministerio del Poder Popular para la Educación de Venezuela", - "icon": "./assets/data/nsi/logos/ministeriodelpoderpopularparalaeducaciondevenezuela-337fa3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodelpoderpopularparalaeducaciondevenezuela-337fa3.jpg", "osmTags": { "and": [ "amenity=school", @@ -242622,7 +242826,7 @@ }, { "question": "Ministero dell'Istruzione", - "icon": "./assets/data/nsi/logos/ministerodellistruzione-5be443.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerodellistruzione-5be443.jpg", "osmTags": { "and": [ "amenity=school", @@ -242638,7 +242842,7 @@ }, { "question": "Ministero dell'Istruzione, dell'Università e della Ricerca", - "icon": "./assets/data/nsi/logos/ministerodellistruzionedelluniversitaedellaricerca-5be443.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerodellistruzionedelluniversitaedellaricerca-5be443.jpg", "osmTags": { "and": [ "amenity=school", @@ -242671,7 +242875,7 @@ }, { "question": "Ministerstwo Edukacji Narodowej", - "icon": "./assets/data/nsi/logos/ministerstwoedukacjinarodowej-83282a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstwoedukacjinarodowej-83282a.jpg", "osmTags": { "and": [ "amenity=school", @@ -242688,7 +242892,7 @@ }, { "question": "Ministerstwo Kultury i Dziedzictwa Narodowego", - "icon": "./assets/data/nsi/logos/ministerstwokulturyidziedzictwanarodowego-83282a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstwokulturyidziedzictwanarodowego-83282a.jpg", "osmTags": { "and": [ "amenity=school", @@ -242719,7 +242923,7 @@ }, { "question": "Ministry of Education (Kenya)", - "icon": "./assets/data/nsi/logos/ministryofeducation-d02396.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofeducation-d02396.jpg", "osmTags": { "and": [ "amenity=school", @@ -242735,7 +242939,7 @@ }, { "question": "Minneapolis Public Schools", - "icon": "./assets/data/nsi/logos/minneapolispublicschools-177d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minneapolispublicschools-177d23.jpg", "osmTags": { "and": [ "amenity=school", @@ -242752,7 +242956,7 @@ }, { "question": "Mission Consolidated Independent School District", - "icon": "./assets/data/nsi/logos/missionconsolidatedindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missionconsolidatedindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -242888,7 +243092,7 @@ }, { "question": "Molde kommune", - "icon": "./assets/data/nsi/logos/moldekommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moldekommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -242979,7 +243183,7 @@ }, { "question": "Monmouthshire County Council", - "icon": "./assets/data/nsi/logos/monmouthshirecountycouncil-3a6545.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/monmouthshirecountycouncil-3a6545.svg", "osmTags": { "and": [ "amenity=school", @@ -243010,7 +243214,7 @@ }, { "question": "Monroe Public Schools", - "icon": "./assets/data/nsi/logos/monroepublicschools-547ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monroepublicschools-547ddd.jpg", "osmTags": { "and": [ "amenity=school", @@ -243027,7 +243231,7 @@ }, { "question": "Montebello Unified School District", - "icon": "./assets/data/nsi/logos/montebellounifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montebellounifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -243059,7 +243263,7 @@ }, { "question": "Montgomery County Public Schools (Maryland)", - "icon": "./assets/data/nsi/logos/montgomerycountypublicschools-41ceb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montgomerycountypublicschools-41ceb1.jpg", "osmTags": { "and": [ "amenity=school", @@ -243076,7 +243280,7 @@ }, { "question": "Montgomery County Public Schools (Virginia)", - "icon": "./assets/data/nsi/logos/montgomerycountypublicschools-3cf7e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/montgomerycountypublicschools-3cf7e1.png", "osmTags": { "and": [ "amenity=school", @@ -243093,7 +243297,7 @@ }, { "question": "Montgomery Public Schools", - "icon": "./assets/data/nsi/logos/montgomerypublicschools-cc53cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/montgomerypublicschools-cc53cf.png", "osmTags": { "and": [ "amenity=school", @@ -243140,7 +243344,7 @@ }, { "question": "Morgan Hill Unified School District", - "icon": "./assets/data/nsi/logos/morganhillunifiedschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/morganhillunifiedschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -243187,7 +243391,7 @@ }, { "question": "Moss kommune", - "icon": "./assets/data/nsi/logos/mosskommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mosskommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -243218,7 +243422,7 @@ }, { "question": "Mpumalanga Department of Education", - "icon": "./assets/data/nsi/logos/mpumalangadepartmentofeducation-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mpumalangadepartmentofeducation-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -243234,7 +243438,7 @@ }, { "question": "Muhammadiyah", - "icon": "./assets/data/nsi/logos/muhammadiyah-1c354f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/muhammadiyah-1c354f.svg", "osmTags": { "and": [ "amenity=school", @@ -243265,7 +243469,7 @@ }, { "question": "Multnomah Education Service District", - "icon": "./assets/data/nsi/logos/multnomaheducationservicedistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/multnomaheducationservicedistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -243281,7 +243485,7 @@ }, { "question": "Município de Marechal Cândido Rondon", - "icon": "./assets/data/nsi/logos/municipiodemarechalcandidorondon-91354a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipiodemarechalcandidorondon-91354a.jpg", "osmTags": { "and": [ "amenity=school", @@ -243297,7 +243501,7 @@ }, { "question": "Município de Mucuri", - "icon": "./assets/data/nsi/logos/municipiodemucuri-9d6ced.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipiodemucuri-9d6ced.jpg", "osmTags": { "and": [ "amenity=school", @@ -243313,7 +243517,7 @@ }, { "question": "Município de Teixeira de Freitas", - "icon": "./assets/data/nsi/logos/municipiodeteixeiradefreitas-9d6ced.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipiodeteixeiradefreitas-9d6ced.svg", "osmTags": { "and": [ "amenity=school", @@ -243643,7 +243847,7 @@ }, { "question": "Namsos kommune", - "icon": "./assets/data/nsi/logos/namsoskommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/namsoskommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -243659,7 +243863,7 @@ }, { "question": "Naperville Community Unit School District 203", - "icon": "./assets/data/nsi/logos/napervillecommunityunitschooldistrict203-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/napervillecommunityunitschooldistrict203-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -243931,7 +244135,7 @@ }, { "question": "Nebo School District", - "icon": "./assets/data/nsi/logos/neboschooldistrict-614f2b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/neboschooldistrict-614f2b.png", "osmTags": { "and": [ "amenity=school", @@ -244038,7 +244242,7 @@ }, { "question": "New York City Department of Education", - "icon": "./assets/data/nsi/logos/newyorkcitydepartmentofeducation-0f6971.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkcitydepartmentofeducation-0f6971.jpg", "osmTags": { "and": [ "amenity=school", @@ -244055,7 +244259,7 @@ }, { "question": "Newcastle City Council", - "icon": "./assets/data/nsi/logos/newcastlecitycouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newcastlecitycouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -244071,7 +244275,7 @@ }, { "question": "Newhall School District", - "icon": "./assets/data/nsi/logos/newhallschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newhallschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -244088,7 +244292,7 @@ }, { "question": "Newport City Council", - "icon": "./assets/data/nsi/logos/newportcitycouncil-3a6545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-3a6545.jpg", "osmTags": { "and": [ "amenity=school", @@ -244104,7 +244308,7 @@ }, { "question": "Newport-Mesa Unified School District", - "icon": "./assets/data/nsi/logos/newportmesaunifiedschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newportmesaunifiedschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -244137,7 +244341,7 @@ }, { "question": "Nexus Multi Academy Trust", - "icon": "./assets/data/nsi/logos/nexusmultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nexusmultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -244169,7 +244373,7 @@ }, { "question": "Nicholas Postgate Catholic Academy Trust", - "icon": "./assets/data/nsi/logos/nicholaspostgatecatholicacademytrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nicholaspostgatecatholicacademytrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -244185,7 +244389,7 @@ }, { "question": "Niles Township High School District 219", - "icon": "./assets/data/nsi/logos/nilestownshiphighschooldistrict219-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nilestownshiphighschooldistrict219-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -244248,7 +244452,7 @@ }, { "question": "Nordre Follo kommune", - "icon": "./assets/data/nsi/logos/nordrefollokommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordrefollokommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -244264,7 +244468,7 @@ }, { "question": "Norfolk County Council", - "icon": "./assets/data/nsi/logos/norfolkcountycouncil-00e0d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolkcountycouncil-00e0d0.jpg", "osmTags": { "and": [ "amenity=school", @@ -244280,7 +244484,7 @@ }, { "question": "Norrköpings kommun", - "icon": "./assets/data/nsi/logos/norrkopingskommun-0f2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norrkopingskommun-0f2dfb.png", "osmTags": { "and": [ "amenity=school", @@ -244326,7 +244530,7 @@ }, { "question": "North Clackamas Schools", - "icon": "./assets/data/nsi/logos/northclackamasschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northclackamasschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -244568,7 +244772,7 @@ }, { "question": "North East Independent School District", - "icon": "./assets/data/nsi/logos/northeastindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northeastindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -244585,7 +244789,7 @@ }, { "question": "North East Learning Trust", - "icon": "./assets/data/nsi/logos/northeastlearningtrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northeastlearningtrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -244646,7 +244850,7 @@ }, { "question": "North Lanarkshire Council", - "icon": "./assets/data/nsi/logos/northlanarkshirecouncil-7782f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northlanarkshirecouncil-7782f9.png", "osmTags": { "and": [ "amenity=school", @@ -244662,7 +244866,7 @@ }, { "question": "North Lincolnshire Council", - "icon": "./assets/data/nsi/logos/northlincolnshirecouncil-ef57c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northlincolnshirecouncil-ef57c6.jpg", "osmTags": { "and": [ "amenity=school", @@ -244708,7 +244912,7 @@ }, { "question": "North Shore School District 112", - "icon": "./assets/data/nsi/logos/northshoreschooldistrict112-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northshoreschooldistrict112-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -244725,7 +244929,7 @@ }, { "question": "North Somerset Council", - "icon": "./assets/data/nsi/logos/northsomersetcouncil-1c670d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northsomersetcouncil-1c670d.jpg", "osmTags": { "and": [ "amenity=school", @@ -244741,7 +244945,7 @@ }, { "question": "North Tyneside Council", - "icon": "./assets/data/nsi/logos/northtynesidecouncil-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northtynesidecouncil-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -244757,7 +244961,7 @@ }, { "question": "North West Academies Trust Limited", - "icon": "./assets/data/nsi/logos/northwestacademiestrustlimited-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestacademiestrustlimited-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -244774,7 +244978,7 @@ }, { "question": "North West Department of Education", - "icon": "./assets/data/nsi/logos/northwestdepartmentofeducation-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestdepartmentofeducation-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -244790,7 +244994,7 @@ }, { "question": "North Yorkshire Council", - "icon": "./assets/data/nsi/logos/northyorkshirecouncil-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northyorkshirecouncil-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -244898,7 +245102,7 @@ }, { "question": "Northern Cape Department of Education", - "icon": "./assets/data/nsi/logos/northerncapedepartmentofeducation-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northerncapedepartmentofeducation-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -244929,7 +245133,7 @@ }, { "question": "Northern Education Trust", - "icon": "./assets/data/nsi/logos/northerneducationtrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northerneducationtrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -244975,7 +245179,7 @@ }, { "question": "Northport-East Northport Union Free School District", - "icon": "./assets/data/nsi/logos/northporteastnorthportunionfreeschooldistrict-7d0023.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northporteastnorthportunionfreeschooldistrict-7d0023.jpg", "osmTags": { "and": [ "amenity=school", @@ -244991,7 +245195,7 @@ }, { "question": "Northridge Local Schools", - "icon": "./assets/data/nsi/logos/northridgelocalschools-a7daad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northridgelocalschools-a7daad.jpg", "osmTags": { "and": [ "amenity=school", @@ -245007,7 +245211,7 @@ }, { "question": "Northshore School District", - "icon": "./assets/data/nsi/logos/northshoreschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northshoreschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -245024,7 +245228,7 @@ }, { "question": "Northside Independent School District (San Antonio)", - "icon": "./assets/data/nsi/logos/northsideindependentschooldistrict-901da6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northsideindependentschooldistrict-901da6.jpg", "osmTags": { "and": [ "amenity=school", @@ -245041,7 +245245,7 @@ }, { "question": "Northumberland County Council", - "icon": "./assets/data/nsi/logos/northumberlandcountycouncil-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northumberlandcountycouncil-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -245103,7 +245307,7 @@ }, { "question": "Norwalk–La Mirada Unified School District", - "icon": "./assets/data/nsi/logos/norwalklamiradaunifiedschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norwalklamiradaunifiedschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -245120,7 +245324,7 @@ }, { "question": "Norwich Public Schools", - "icon": "./assets/data/nsi/logos/norwichpublicschools-547ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norwichpublicschools-547ddd.jpg", "osmTags": { "and": [ "amenity=school", @@ -245151,7 +245355,7 @@ }, { "question": "Nottingham City Council", - "icon": "./assets/data/nsi/logos/nottinghamcitycouncil-2bbb7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nottinghamcitycouncil-2bbb7b.jpg", "osmTags": { "and": [ "amenity=school", @@ -245167,7 +245371,7 @@ }, { "question": "Nottinghamshire County Council", - "icon": "./assets/data/nsi/logos/nottinghamshirecountycouncil-2bbb7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nottinghamshirecountycouncil-2bbb7b.jpg", "osmTags": { "and": [ "amenity=school", @@ -245198,7 +245402,7 @@ }, { "question": "Novi Community School District", - "icon": "./assets/data/nsi/logos/novicommunityschooldistrict-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novicommunityschooldistrict-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -245275,7 +245479,7 @@ }, { "question": "Oak Park Elementary School District 97", - "icon": "./assets/data/nsi/logos/oakparkelementaryschooldistrict97-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oakparkelementaryschooldistrict97-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -245322,7 +245526,7 @@ }, { "question": "Oasis Community Learning", - "icon": "./assets/data/nsi/logos/oasiscommunitylearning-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oasiscommunitylearning-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -245368,7 +245572,7 @@ }, { "question": "Ocean View School District", - "icon": "./assets/data/nsi/logos/oceanviewschooldistrict-4ed216.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oceanviewschooldistrict-4ed216.png", "osmTags": { "and": [ "amenity=school", @@ -245443,7 +245647,7 @@ }, { "question": "Olathe Public Schools", - "icon": "./assets/data/nsi/logos/olathepublicschools-43eeb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/olathepublicschools-43eeb8.jpg", "osmTags": { "and": [ "amenity=school", @@ -245489,7 +245693,7 @@ }, { "question": "Olympia School District", - "icon": "./assets/data/nsi/logos/olympiaschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/olympiaschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -245608,7 +245812,7 @@ }, { "question": "Orange County Public Schools", - "icon": "./assets/data/nsi/logos/orangecountypublicschools-e8bc2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orangecountypublicschools-e8bc2a.jpg", "osmTags": { "and": [ "amenity=school", @@ -245625,7 +245829,7 @@ }, { "question": "Orange Unified School District", - "icon": "./assets/data/nsi/logos/orangeunifiedschooldistrict-4ed216.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orangeunifiedschooldistrict-4ed216.png", "osmTags": { "and": [ "amenity=school", @@ -245717,7 +245921,7 @@ }, { "question": "Oregon City School District (Ohio)", - "icon": "./assets/data/nsi/logos/oregoncityschooldistrict-a7daad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oregoncityschooldistrict-a7daad.jpg", "osmTags": { "and": [ "amenity=school", @@ -245734,7 +245938,7 @@ }, { "question": "Oregon City School District (Oregon)", - "icon": "./assets/data/nsi/logos/oregoncityschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oregoncityschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -245780,7 +245984,7 @@ }, { "question": "Orkland kommune", - "icon": "./assets/data/nsi/logos/orklandkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/orklandkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -245811,7 +246015,7 @@ }, { "question": "Ormiston Academies Trust", - "icon": "./assets/data/nsi/logos/ormistonacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ormistonacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -245888,7 +246092,7 @@ }, { "question": "Osborne Co-operative Academy Trust", - "icon": "./assets/data/nsi/logos/osbornecooperativeacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osbornecooperativeacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -245904,7 +246108,7 @@ }, { "question": "Oslo kommune", - "icon": "./assets/data/nsi/logos/oslokommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oslokommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -246047,7 +246251,7 @@ }, { "question": "Osseo Area Schools", - "icon": "./assets/data/nsi/logos/osseoareaschools-177d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osseoareaschools-177d23.jpg", "osmTags": { "and": [ "amenity=school", @@ -246064,7 +246268,7 @@ }, { "question": "Østfold fylkeskommune", - "icon": "./assets/data/nsi/logos/ostfoldfylkeskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ostfoldfylkeskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -246080,7 +246284,7 @@ }, { "question": "Oswego Community Unit School District 308", - "icon": "./assets/data/nsi/logos/oswegocommunityunitschooldistrict308-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oswegocommunityunitschooldistrict308-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -246127,7 +246331,7 @@ }, { "question": "Ottawa-Carleton District School Board", - "icon": "./assets/data/nsi/logos/ottawacarletondistrictschoolboard-57bf82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ottawacarletondistrictschoolboard-57bf82.png", "osmTags": { "and": [ "amenity=school", @@ -246144,7 +246348,7 @@ }, { "question": "Our Community Multi Academy Trust", - "icon": "./assets/data/nsi/logos/ourcommunitymultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ourcommunitymultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -246176,7 +246380,7 @@ }, { "question": "Our Lady Immaculate Catholic Academies Trust Ltd", - "icon": "./assets/data/nsi/logos/ourladyimmaculatecatholicacademiestrustltd-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ourladyimmaculatecatholicacademiestrustltd-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -246208,7 +246412,7 @@ }, { "question": "Our Lady of The Magnificat Multi-Academy Company", - "icon": "./assets/data/nsi/logos/ourladyofthemagnificatmultiacademycompany-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ourladyofthemagnificatmultiacademycompany-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -246301,7 +246505,7 @@ }, { "question": "Øygarden kommune", - "icon": "./assets/data/nsi/logos/oygardenkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/oygardenkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -246555,7 +246759,7 @@ }, { "question": "Palmdale School District", - "icon": "./assets/data/nsi/logos/palmdaleschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmdaleschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -246632,7 +246836,7 @@ }, { "question": "Palos Verdes Peninsula Unified School District", - "icon": "./assets/data/nsi/logos/palosverdespeninsulaunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palosverdespeninsulaunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -247099,7 +247303,7 @@ }, { "question": "Paramount Unified School District", - "icon": "./assets/data/nsi/logos/paramountunifiedschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/paramountunifiedschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -247131,7 +247335,7 @@ }, { "question": "Parkway Schools", - "icon": "./assets/data/nsi/logos/parkwayschools-9c7c62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkwayschools-9c7c62.jpg", "osmTags": { "and": [ "amenity=school", @@ -247192,7 +247396,7 @@ }, { "question": "Pasadena Unified School District", - "icon": "./assets/data/nsi/logos/pasadenaunifiedschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pasadenaunifiedschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -247209,7 +247413,7 @@ }, { "question": "Pasco School District #1", - "icon": "./assets/data/nsi/logos/pascoschooldistrict1-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pascoschooldistrict1-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -247241,7 +247445,7 @@ }, { "question": "Paso Robles Joint Unified School District", - "icon": "./assets/data/nsi/logos/pasoroblesjointunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pasoroblesjointunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -247466,7 +247670,7 @@ }, { "question": "Peel District School Board", - "icon": "./assets/data/nsi/logos/peeldistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peeldistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -247528,7 +247732,7 @@ }, { "question": "Peoria Unified School District", - "icon": "./assets/data/nsi/logos/peoriaunifiedschooldistrict-59e2c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peoriaunifiedschooldistrict-59e2c9.jpg", "osmTags": { "and": [ "amenity=school", @@ -247621,7 +247825,7 @@ }, { "question": "Pflugerville ISD", - "icon": "./assets/data/nsi/logos/pflugervilleindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pflugervilleindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -247638,7 +247842,7 @@ }, { "question": "Pharr-San Juan-Alamo Independent School District", - "icon": "./assets/data/nsi/logos/pharrsanjuanalamoindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pharrsanjuanalamoindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -247670,7 +247874,7 @@ }, { "question": "Pickens County School District", - "icon": "./assets/data/nsi/logos/pickenscountyschooldistrict-cc53cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pickenscountyschooldistrict-cc53cf.jpg", "osmTags": { "and": [ "amenity=school", @@ -248092,7 +248296,7 @@ }, { "question": "Pinellas County Schools", - "icon": "./assets/data/nsi/logos/pinellascountyschools-e8bc2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pinellascountyschools-e8bc2a.png", "osmTags": { "and": [ "amenity=school", @@ -248213,7 +248417,7 @@ }, { "question": "Placentia-Yorba Linda Unified School District", - "icon": "./assets/data/nsi/logos/placentiayorbalindaunifiedschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/placentiayorbalindaunifiedschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -248290,7 +248494,7 @@ }, { "question": "Plainfield Community Consolidated School District 202", - "icon": "./assets/data/nsi/logos/plainfieldcommunityconsolidatedschooldistrict202-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/plainfieldcommunityconsolidatedschooldistrict202-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -248365,7 +248569,7 @@ }, { "question": "Plymouth City Council", - "icon": "./assets/data/nsi/logos/plymouthcitycouncil-56cb82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plymouthcitycouncil-56cb82.jpg", "osmTags": { "and": [ "amenity=school", @@ -248381,7 +248585,7 @@ }, { "question": "Plymouth-Canton Community Schools", - "icon": "./assets/data/nsi/logos/plymouthcantoncommunityschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plymouthcantoncommunityschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -248429,7 +248633,7 @@ }, { "question": "Pocono Mountain School District", - "icon": "./assets/data/nsi/logos/poconomountainschooldistrict-664aaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poconomountainschooldistrict-664aaf.jpg", "osmTags": { "and": [ "amenity=school", @@ -248566,7 +248770,7 @@ }, { "question": "Pomona Unified School District", - "icon": "./assets/data/nsi/logos/pomonaunifiedschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pomonaunifiedschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -248688,7 +248892,7 @@ }, { "question": "Porsgrunn kommune", - "icon": "./assets/data/nsi/logos/porsgrunnkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porsgrunnkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -248704,7 +248908,7 @@ }, { "question": "Port Huron Area School District", - "icon": "./assets/data/nsi/logos/porthuronareaschooldistrict-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porthuronareaschooldistrict-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -248721,7 +248925,7 @@ }, { "question": "Portage Public Schools", - "icon": "./assets/data/nsi/logos/portagepublicschools-aa6f23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portagepublicschools-aa6f23.png", "osmTags": { "and": [ "amenity=school", @@ -248738,7 +248942,7 @@ }, { "question": "Porterville Unified School District", - "icon": "./assets/data/nsi/logos/portervilleunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portervilleunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -248755,7 +248959,7 @@ }, { "question": "Portland Public Schools (Maine)", - "icon": "./assets/data/nsi/logos/portlandpublicschools-c6f386.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandpublicschools-c6f386.png", "osmTags": { "and": [ "amenity=school", @@ -248772,7 +248976,7 @@ }, { "question": "Portland Public Schools (Oregon)", - "icon": "./assets/data/nsi/logos/portlandpublicschools-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandpublicschools-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -248834,7 +249038,7 @@ }, { "question": "Poudre School District", - "icon": "./assets/data/nsi/logos/poudreschooldistrict-64c3e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poudreschooldistrict-64c3e7.jpg", "osmTags": { "and": [ "amenity=school", @@ -248850,7 +249054,7 @@ }, { "question": "Powiat Bieszczadzki", - "icon": "./assets/data/nsi/logos/powiatbieszczadzki-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiatbieszczadzki-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -248866,7 +249070,7 @@ }, { "question": "Powiat Biłgorajski", - "icon": "./assets/data/nsi/logos/powiatbilgorajski-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiatbilgorajski-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -248882,7 +249086,7 @@ }, { "question": "Powiat Hrubieszowski", - "icon": "./assets/data/nsi/logos/powiathrubieszowski-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiathrubieszowski-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -248898,7 +249102,7 @@ }, { "question": "Powiat Łęczyński", - "icon": "./assets/data/nsi/logos/powiatleczynski-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiatleczynski-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -248914,7 +249118,7 @@ }, { "question": "Powiat Lubartowski", - "icon": "./assets/data/nsi/logos/powiatlubartowski-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiatlubartowski-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -248930,7 +249134,7 @@ }, { "question": "Powiat Lubelski", - "icon": "./assets/data/nsi/logos/powiatlubelski-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiatlubelski-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -248946,7 +249150,7 @@ }, { "question": "Powiat Radzyński", - "icon": "./assets/data/nsi/logos/powiatradzynski-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiatradzynski-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -248962,7 +249166,7 @@ }, { "question": "Powiat Rycki", - "icon": "./assets/data/nsi/logos/powiatrycki-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiatrycki-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -248978,7 +249182,7 @@ }, { "question": "Powiat Tomaszowski", - "icon": "./assets/data/nsi/logos/powiattomaszowski-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/powiattomaszowski-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -249039,7 +249243,7 @@ }, { "question": "Praga-Północ", - "icon": "./assets/data/nsi/logos/pragapolnoc-83282a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pragapolnoc-83282a.png", "osmTags": { "and": [ "amenity=school", @@ -249084,7 +249288,7 @@ }, { "question": "Prefeitura de Itapetinga", - "icon": "./assets/data/nsi/logos/prefeituradeitapetinga-9d6ced.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituradeitapetinga-9d6ced.png", "osmTags": { "and": [ "amenity=school", @@ -249115,7 +249319,7 @@ }, { "question": "Prefeitura de Maracanaú", - "icon": "./assets/data/nsi/logos/prefeiturademaracanau-04d5fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeiturademaracanau-04d5fb.jpg", "osmTags": { "and": [ "amenity=school", @@ -249146,7 +249350,7 @@ }, { "question": "Prefeitura do Natal", - "icon": "./assets/data/nsi/logos/prefeituradonatal-1a267e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituradonatal-1a267e.svg", "osmTags": { "and": [ "amenity=school", @@ -249162,7 +249366,7 @@ }, { "question": "Prefeitura Municipal de Alegrete", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldealegrete-ee71aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldealegrete-ee71aa.svg", "osmTags": { "and": [ "amenity=school", @@ -249178,7 +249382,7 @@ }, { "question": "Prefeitura Municipal de Armação dos Búzios", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldearmacaodosbuzios-df8785.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldearmacaodosbuzios-df8785.png", "osmTags": { "and": [ "amenity=school", @@ -249209,7 +249413,7 @@ }, { "question": "Prefeitura Municipal de Chapecó", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldechapeco-6a2dca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldechapeco-6a2dca.jpg", "osmTags": { "and": [ "amenity=school", @@ -249225,7 +249429,7 @@ }, { "question": "Prefeitura Municipal de Florianópolis", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldeflorianopolis-6a2dca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeflorianopolis-6a2dca.png", "osmTags": { "and": [ "amenity=school", @@ -249241,7 +249445,7 @@ }, { "question": "Prefeitura Municipal de Fortaleza", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldefortaleza-04d5fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldefortaleza-04d5fb.jpg", "osmTags": { "and": [ "amenity=school", @@ -249257,7 +249461,7 @@ }, { "question": "Prefeitura Municipal de Hidrolândia", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldehidrolandia-04d5fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldehidrolandia-04d5fb.jpg", "osmTags": { "and": [ "amenity=school", @@ -249273,7 +249477,7 @@ }, { "question": "Prefeitura Municipal de Joinville", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldejoinville-6a2dca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldejoinville-6a2dca.png", "osmTags": { "and": [ "amenity=school", @@ -249289,7 +249493,7 @@ }, { "question": "Prefeitura Municipal de Maricá", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldemarica-df8785.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldemarica-df8785.jpg", "osmTags": { "and": [ "amenity=school", @@ -249305,7 +249509,7 @@ }, { "question": "Prefeitura Municipal de Passo Fundo", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldepassofundo-ee71aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldepassofundo-ee71aa.png", "osmTags": { "and": [ "amenity=school", @@ -249336,7 +249540,7 @@ }, { "question": "Prefeitura Municipal de São Paulo", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldesaopaulo-5e2aa2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldesaopaulo-5e2aa2.svg", "osmTags": { "and": [ "amenity=school", @@ -249353,7 +249557,7 @@ }, { "question": "Prefeitura Municipal de Seropédica", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldeseropedica-df8785.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldeseropedica-df8785.jpg", "osmTags": { "and": [ "amenity=school", @@ -249369,7 +249573,7 @@ }, { "question": "Prefeitura Municipal de Sobral", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldesobral-04d5fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldesobral-04d5fb.jpg", "osmTags": { "and": [ "amenity=school", @@ -249759,7 +249963,7 @@ }, { "question": "Puyallup School District", - "icon": "./assets/data/nsi/logos/puyallupschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puyallupschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -249821,7 +250025,7 @@ }, { "question": "Queen Bee School District 16", - "icon": "./assets/data/nsi/logos/queenbeeschooldistrict16-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/queenbeeschooldistrict16-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -250003,7 +250207,7 @@ }, { "question": "Racine Unified School District", - "icon": "./assets/data/nsi/logos/racineunifiedschooldistrict-ac5479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/racineunifiedschooldistrict-ac5479.jpg", "osmTags": { "and": [ "amenity=school", @@ -250035,7 +250239,7 @@ }, { "question": "Rainbow District School Board", - "icon": "./assets/data/nsi/logos/rainbowdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rainbowdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -250098,7 +250302,7 @@ }, { "question": "Rapid City Area Schools", - "icon": "./assets/data/nsi/logos/rapidcityareaschools-e06b31.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rapidcityareaschools-e06b31.jpg", "osmTags": { "and": [ "amenity=school", @@ -250174,7 +250378,7 @@ }, { "question": "REAch2 Academy Trust", - "icon": "./assets/data/nsi/logos/reach2academytrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reach2academytrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -250205,7 +250409,7 @@ }, { "question": "Reading School District", - "icon": "./assets/data/nsi/logos/readingschooldistrict-664aaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/readingschooldistrict-664aaf.jpg", "osmTags": { "and": [ "amenity=school", @@ -250237,7 +250441,7 @@ }, { "question": "Red Kite Learning Trust", - "icon": "./assets/data/nsi/logos/redkitelearningtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redkitelearningtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -250254,7 +250458,7 @@ }, { "question": "Redcar and Cleveland Borough Council", - "icon": "./assets/data/nsi/logos/redcarandclevelandboroughcouncil-7a837c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/redcarandclevelandboroughcouncil-7a837c.svg", "osmTags": { "and": [ "amenity=school", @@ -250301,7 +250505,7 @@ }, { "question": "Redondo Beach Unified School District", - "icon": "./assets/data/nsi/logos/redondobeachunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redondobeachunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -250348,7 +250552,7 @@ }, { "question": "Regionalverband Saarbrücken", - "icon": "./assets/data/nsi/logos/regionalverbandsaarbrucken-97fbd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regionalverbandsaarbrucken-97fbd9.jpg", "osmTags": { "and": [ "amenity=school", @@ -250426,7 +250630,7 @@ }, { "question": "Renton School District", - "icon": "./assets/data/nsi/logos/rentonschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rentonschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -250490,7 +250694,7 @@ }, { "question": "Rialto Unified School District", - "icon": "./assets/data/nsi/logos/rialtounifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rialtounifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -250507,7 +250711,7 @@ }, { "question": "Richland County School District Two", - "icon": "./assets/data/nsi/logos/richlandcountyschooldistricttwo-b0049f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/richlandcountyschooldistricttwo-b0049f.jpg", "osmTags": { "and": [ "amenity=school", @@ -250523,7 +250727,7 @@ }, { "question": "Richland School District (Washington)", - "icon": "./assets/data/nsi/logos/richlandschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/richlandschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -250570,7 +250774,7 @@ }, { "question": "Ringerike kommune", - "icon": "./assets/data/nsi/logos/ringerikekommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ringerikekommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -250586,7 +250790,7 @@ }, { "question": "Ringsaker kommune", - "icon": "./assets/data/nsi/logos/ringsakerkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ringsakerkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -250752,7 +250956,7 @@ }, { "question": "Robbinsdale Area Schools", - "icon": "./assets/data/nsi/logos/robbinsdaleareaschools-177d23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robbinsdaleareaschools-177d23.jpg", "osmTags": { "and": [ "amenity=school", @@ -250783,7 +250987,7 @@ }, { "question": "Rochester City School District", - "icon": "./assets/data/nsi/logos/rochestercityschooldistrict-7d0023.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rochestercityschooldistrict-7d0023.png", "osmTags": { "and": [ "amenity=school", @@ -250800,7 +251004,7 @@ }, { "question": "Rock Island - Milan School District #41", - "icon": "./assets/data/nsi/logos/rockislandmilanschooldistrict41-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockislandmilanschooldistrict41-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -250892,7 +251096,7 @@ }, { "question": "Roman Catholic Archdiocese of Hartford", - "icon": "./assets/data/nsi/logos/romancatholicarchdioceseofhartford-547ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romancatholicarchdioceseofhartford-547ddd.jpg", "osmTags": { "and": [ "amenity=school", @@ -251088,7 +251292,7 @@ }, { "question": "Round Rock Independent School District", - "icon": "./assets/data/nsi/logos/roundrockindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/roundrockindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -251105,7 +251309,7 @@ }, { "question": "Rowland Unified School District", - "icon": "./assets/data/nsi/logos/rowlandunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rowlandunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -251227,7 +251431,7 @@ }, { "question": "Royal Borough of Greenwich", - "icon": "./assets/data/nsi/logos/royalboroughofgreenwich-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalboroughofgreenwich-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -251243,7 +251447,7 @@ }, { "question": "Royal Borough of Kensington and Chelsea", - "icon": "./assets/data/nsi/logos/royalboroughofkensingtonandchelsea-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalboroughofkensingtonandchelsea-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -251259,7 +251463,7 @@ }, { "question": "Royal Borough of Kingston upon Thames", - "icon": "./assets/data/nsi/logos/royalboroughofkingstonuponthames-657027.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalboroughofkingstonuponthames-657027.svg", "osmTags": { "and": [ "amenity=school", @@ -251289,7 +251493,7 @@ }, { "question": "Rutland County Council", - "icon": "./assets/data/nsi/logos/rutlandcountycouncil-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rutlandcountycouncil-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -251380,7 +251584,7 @@ }, { "question": "Saddleback Valley Unified School District", - "icon": "./assets/data/nsi/logos/saddlebackvalleyunifiedschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saddlebackvalleyunifiedschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -251442,7 +251646,7 @@ }, { "question": "Saint Louis Public Schools", - "icon": "./assets/data/nsi/logos/saintlouispublicschools-9c7c62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintlouispublicschools-9c7c62.jpg", "osmTags": { "and": [ "amenity=school", @@ -251459,7 +251663,7 @@ }, { "question": "Saint Paul Public Schools", - "icon": "./assets/data/nsi/logos/saintpaulpublicschools-177d23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saintpaulpublicschools-177d23.png", "osmTags": { "and": [ "amenity=school", @@ -251536,7 +251740,7 @@ }, { "question": "Salem-Keizer Public Schools", - "icon": "./assets/data/nsi/logos/salemkeizerpublicschools-330cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/salemkeizerpublicschools-330cad.png", "osmTags": { "and": [ "amenity=school", @@ -251553,7 +251757,7 @@ }, { "question": "Salford City Council", - "icon": "./assets/data/nsi/logos/salfordcitycouncil-1beca5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salfordcitycouncil-1beca5.jpg", "osmTags": { "and": [ "amenity=school", @@ -251897,7 +252101,7 @@ }, { "question": "San Antonio Independent School District", - "icon": "./assets/data/nsi/logos/sanantonioindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanantonioindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -251914,7 +252118,7 @@ }, { "question": "San Benito Consolidated Independent School District", - "icon": "./assets/data/nsi/logos/sanbenitoconsolidatedindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanbenitoconsolidatedindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -251960,7 +252164,7 @@ }, { "question": "San Diego Unified School District", - "icon": "./assets/data/nsi/logos/sandiegounifiedschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegounifiedschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -252036,7 +252240,7 @@ }, { "question": "San Felipe Del Rio Consolidated Independent School District", - "icon": "./assets/data/nsi/logos/sanfelipedelrioconsolidatedindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanfelipedelrioconsolidatedindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -252308,7 +252512,7 @@ }, { "question": "San Francisco Unified School District", - "icon": "./assets/data/nsi/logos/sanfranciscounifiedschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanfranciscounifiedschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -252745,7 +252949,7 @@ }, { "question": "San José Unified School District", - "icon": "./assets/data/nsi/logos/sanjoseunifiedschooldistrict-14170b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanjoseunifiedschooldistrict-14170b.jpg", "osmTags": { "and": [ "amenity=school", @@ -252882,7 +253086,7 @@ }, { "question": "San Juan Unified School District", - "icon": "./assets/data/nsi/logos/sanjuanunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanjuanunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -252959,7 +253163,7 @@ }, { "question": "San Luis Coastal Unified School District", - "icon": "./assets/data/nsi/logos/sanluiscoastalunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanluiscoastalunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -253546,7 +253750,7 @@ }, { "question": "San Ramon Valley Unified School District", - "icon": "./assets/data/nsi/logos/sanramonvalleyunifiedschooldistrict-ff98ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sanramonvalleyunifiedschooldistrict-ff98ff.png", "osmTags": { "and": [ "amenity=school", @@ -253713,7 +253917,7 @@ }, { "question": "Sandefjord kommune", - "icon": "./assets/data/nsi/logos/sandefjordkommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sandefjordkommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -253729,7 +253933,7 @@ }, { "question": "Sandnes kommune", - "icon": "./assets/data/nsi/logos/sandneskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandneskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -253790,7 +253994,7 @@ }, { "question": "Santa Ana Unified School District", - "icon": "./assets/data/nsi/logos/santaanaunifiedschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santaanaunifiedschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -254318,7 +254522,7 @@ }, { "question": "Santa Monica-Malibu Unified School District", - "icon": "./assets/data/nsi/logos/santamonicamalibuunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santamonicamalibuunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -254769,7 +254973,7 @@ }, { "question": "Sarpsborg kommune", - "icon": "./assets/data/nsi/logos/sarpsborgkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sarpsborgkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -254816,7 +255020,7 @@ }, { "question": "Saugus Union School District", - "icon": "./assets/data/nsi/logos/saugusunionschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saugusunionschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -254833,7 +255037,7 @@ }, { "question": "Schertz-Cibolo-Universal City Independent School District", - "icon": "./assets/data/nsi/logos/schertzcibolouniversalcityindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schertzcibolouniversalcityindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -254909,7 +255113,7 @@ }, { "question": "School City of Hammond", - "icon": "./assets/data/nsi/logos/schoolcityofhammond-87f3ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schoolcityofhammond-87f3ac.jpg", "osmTags": { "and": [ "amenity=school", @@ -254955,7 +255159,7 @@ }, { "question": "Schools Division Office of Dasmariñas City", - "icon": "./assets/data/nsi/logos/schoolsdivisionofficeofdasmarinascity-966867.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schoolsdivisionofficeofdasmarinascity-966867.jpg", "osmTags": { "and": [ "amenity=school", @@ -254971,7 +255175,7 @@ }, { "question": "Schools Division Office of Tagbilaran City", - "icon": "./assets/data/nsi/logos/schoolsdivisionofficeoftagbilarancity-115e0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schoolsdivisionofficeoftagbilarancity-115e0d.png", "osmTags": { "and": [ "amenity=school", @@ -255031,7 +255235,7 @@ }, { "question": "Seattle Public Schools", - "icon": "./assets/data/nsi/logos/seattlepublicschools-48f47a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicschools-48f47a.png", "osmTags": { "and": [ "amenity=school", @@ -255077,7 +255281,7 @@ }, { "question": "Secretaria da Educação do Estado de São Paulo", - "icon": "./assets/data/nsi/logos/secretariadaeducacaodoestadodesaopaulo-5e2aa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariadaeducacaodoestadodesaopaulo-5e2aa2.jpg", "osmTags": { "and": [ "amenity=school", @@ -255123,7 +255327,7 @@ }, { "question": "Secretaria da Educação do Rio Grande do Sul", - "icon": "./assets/data/nsi/logos/secretariadaeducacaodoriograndedosul-ee71aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariadaeducacaodoriograndedosul-ee71aa.png", "osmTags": { "and": [ "amenity=school", @@ -255326,7 +255530,7 @@ }, { "question": "Secretaria Municipal da Educação de Curitiba", - "icon": "./assets/data/nsi/logos/secretariamunicipaldaeducacaodecuritiba-91354a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldaeducacaodecuritiba-91354a.svg", "osmTags": { "and": [ "amenity=school", @@ -255342,7 +255546,7 @@ }, { "question": "Secretaria Municipal da Educação de Fortaleza", - "icon": "./assets/data/nsi/logos/secretariamunicipaldaeducacaodefortaleza-04d5fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldaeducacaodefortaleza-04d5fb.jpg", "osmTags": { "and": [ "amenity=school", @@ -255358,7 +255562,7 @@ }, { "question": "Secretaria Municipal de Educação da Lapa", - "icon": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodalapa-91354a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodalapa-91354a.png", "osmTags": { "and": [ "amenity=school", @@ -255374,7 +255578,7 @@ }, { "question": "Secretaria Municipal de Educação de Caetité", - "icon": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodecaetite-9d6ced.png", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodecaetite-9d6ced.png", "osmTags": { "and": [ "amenity=school", @@ -255405,7 +255609,7 @@ }, { "question": "Secretaria Municipal de Educação de Cuité", - "icon": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodecuite-a5afcb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodecuite-a5afcb.png", "osmTags": { "and": [ "amenity=school", @@ -255421,7 +255625,7 @@ }, { "question": "Secretaria Municipal de Educação de Fazenda Rio Grande", - "icon": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodefazendariogrande-91354a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodefazendariogrande-91354a.jpg", "osmTags": { "and": [ "amenity=school", @@ -255437,7 +255641,7 @@ }, { "question": "Secretaria Municipal de Educação de Itaperuna", - "icon": "./assets/data/nsi/logos/secretariamunicipaldeeducacaodeitaperuna-df8785.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/secretariamunicipaldeeducacaodeitaperuna-df8785.jpg", "osmTags": { "and": [ "amenity=school", @@ -255571,7 +255775,7 @@ }, { "question": "Senja kommune", - "icon": "./assets/data/nsi/logos/senjakommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/senjakommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -255661,7 +255865,7 @@ }, { "question": "Sharyland Independent School District", - "icon": "./assets/data/nsi/logos/sharylandindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sharylandindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -255739,7 +255943,7 @@ }, { "question": "Shoreline Public Schools", - "icon": "./assets/data/nsi/logos/shorelinepublicschools-48f47a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shorelinepublicschools-48f47a.png", "osmTags": { "and": [ "amenity=school", @@ -255756,7 +255960,7 @@ }, { "question": "Shropshire Council", - "icon": "./assets/data/nsi/logos/shropshirecouncil-7a837c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/shropshirecouncil-7a837c.svg", "osmTags": { "and": [ "amenity=school", @@ -256086,7 +256290,7 @@ }, { "question": "Simcoe County District School Board", - "icon": "./assets/data/nsi/logos/simcoecountydistrictschoolboard-57bf82.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/simcoecountydistrictschoolboard-57bf82.svg", "osmTags": { "and": [ "amenity=school", @@ -256344,7 +256548,7 @@ }, { "question": "Skien kommune", - "icon": "./assets/data/nsi/logos/skienkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/skienkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -256463,7 +256667,7 @@ }, { "question": "Society of Saint Pius X", - "icon": "./assets/data/nsi/logos/societyofsaintpiusx-155571.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societyofsaintpiusx-155571.png", "osmTags": { "and": [ "amenity=school", @@ -256555,7 +256759,7 @@ }, { "question": "Sola kommune", - "icon": "./assets/data/nsi/logos/solakommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/solakommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -256661,7 +256865,7 @@ }, { "question": "Somerset Council", - "icon": "./assets/data/nsi/logos/somersetcouncil-302459.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-302459.jpg", "osmTags": { "and": [ "amenity=school", @@ -257037,7 +257241,7 @@ }, { "question": "South Kitsap School District", - "icon": "./assets/data/nsi/logos/southkitsapschooldistrict-48f47a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southkitsapschooldistrict-48f47a.png", "osmTags": { "and": [ "amenity=school", @@ -257054,7 +257258,7 @@ }, { "question": "South Lanarkshire Council", - "icon": "./assets/data/nsi/logos/southlanarkshirecouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southlanarkshirecouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -257263,7 +257467,7 @@ }, { "question": "Spokane Public Schools", - "icon": "./assets/data/nsi/logos/spokanepublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spokanepublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -257294,7 +257498,7 @@ }, { "question": "Spring Branch Independent School District", - "icon": "./assets/data/nsi/logos/springbranchindependentschooldistrict-d19570.png", + "icon": "https://data.mapcomplete.org/nsi//logos/springbranchindependentschooldistrict-d19570.png", "osmTags": { "and": [ "amenity=school", @@ -257311,7 +257515,7 @@ }, { "question": "Spring Independent School District", - "icon": "./assets/data/nsi/logos/springindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -257344,7 +257548,7 @@ }, { "question": "Springfield City School District", - "icon": "./assets/data/nsi/logos/springfieldcityschooldistrict-a7daad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldcityschooldistrict-a7daad.jpg", "osmTags": { "and": [ "amenity=school", @@ -257361,7 +257565,7 @@ }, { "question": "Springfield Public Schools (Illinois)", - "icon": "./assets/data/nsi/logos/springfieldpublicschools-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldpublicschools-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -257378,7 +257582,7 @@ }, { "question": "Springfield Public Schools (Missouri)", - "icon": "./assets/data/nsi/logos/springfieldpublicschools-9c7c62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldpublicschools-9c7c62.jpg", "osmTags": { "and": [ "amenity=school", @@ -257395,7 +257599,7 @@ }, { "question": "Springfield Public Schools (New Jersey)", - "icon": "./assets/data/nsi/logos/springfieldpublicschools-181f3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldpublicschools-181f3b.jpg", "osmTags": { "and": [ "amenity=school", @@ -257412,7 +257616,7 @@ }, { "question": "Springfield Public Schools (Oregon)", - "icon": "./assets/data/nsi/logos/springfieldpublicschools-330cad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldpublicschools-330cad.png", "osmTags": { "and": [ "amenity=school", @@ -257429,7 +257633,7 @@ }, { "question": "Springfield School District", - "icon": "./assets/data/nsi/logos/springfieldschooldistrict-664aaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldschooldistrict-664aaf.jpg", "osmTags": { "and": [ "amenity=school", @@ -257627,7 +257831,7 @@ }, { "question": "St Thomas Aquinas Catholic Multi Academy Trust", - "icon": "./assets/data/nsi/logos/stthomasaquinascatholicmultiacademytrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stthomasaquinascatholicmultiacademytrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -257643,7 +257847,7 @@ }, { "question": "St Thomas Catholic Academies Trust", - "icon": "./assets/data/nsi/logos/stthomascatholicacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stthomascatholicacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -257674,7 +257878,7 @@ }, { "question": "St. Charles Community Unit School District 303", - "icon": "./assets/data/nsi/logos/stcharlescommunityunitschooldistrict303-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stcharlescommunityunitschooldistrict303-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -257706,7 +257910,7 @@ }, { "question": "Stad Gent", - "icon": "./assets/data/nsi/logos/stadgent-4b4187.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadgent-4b4187.jpg", "osmTags": { "and": [ "amenity=school", @@ -257722,7 +257926,7 @@ }, { "question": "Stadt Aachen", - "icon": "./assets/data/nsi/logos/stadtaachen-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtaachen-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -257738,7 +257942,7 @@ }, { "question": "Stadt Alsdorf", - "icon": "./assets/data/nsi/logos/stadtalsdorf-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtalsdorf-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -257754,7 +257958,7 @@ }, { "question": "Stadt Augsburg", - "icon": "./assets/data/nsi/logos/stadtaugsburg-46895d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtaugsburg-46895d.jpg", "osmTags": { "and": [ "amenity=school", @@ -257770,7 +257974,7 @@ }, { "question": "Stadt Bern", - "icon": "./assets/data/nsi/logos/stadtbern-30df7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbern-30df7c.jpg", "osmTags": { "and": [ "amenity=school", @@ -257786,7 +257990,7 @@ }, { "question": "Stadt Bielefeld", - "icon": "./assets/data/nsi/logos/stadtbielefeld-1fea76.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbielefeld-1fea76.png", "osmTags": { "and": [ "amenity=school", @@ -257802,7 +258006,7 @@ }, { "question": "Stadt Bonn", - "icon": "./assets/data/nsi/logos/stadtbonn-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbonn-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -257818,7 +258022,7 @@ }, { "question": "Stadt Chemnitz", - "icon": "./assets/data/nsi/logos/stadtchemnitz-9699d0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtchemnitz-9699d0.svg", "osmTags": { "and": [ "amenity=school", @@ -257834,7 +258038,7 @@ }, { "question": "Stadt Duisburg", - "icon": "./assets/data/nsi/logos/stadtduisburg-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtduisburg-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -257850,7 +258054,7 @@ }, { "question": "Stadt Düren", - "icon": "./assets/data/nsi/logos/stadtduren-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtduren-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -257866,7 +258070,7 @@ }, { "question": "Stadt Düsseldorf", - "icon": "./assets/data/nsi/logos/stadtdusseldorf-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtdusseldorf-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -257882,7 +258086,7 @@ }, { "question": "Stadt Erfurt", - "icon": "./assets/data/nsi/logos/stadterfurt-3f6a1d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadterfurt-3f6a1d.svg", "osmTags": { "and": [ "amenity=school", @@ -257898,7 +258102,7 @@ }, { "question": "Stadt Eschweiler", - "icon": "./assets/data/nsi/logos/stadteschweiler-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadteschweiler-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -257914,7 +258118,7 @@ }, { "question": "Stadt Essen", - "icon": "./assets/data/nsi/logos/stadtessen-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtessen-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -257930,7 +258134,7 @@ }, { "question": "Stadt Gießen", - "icon": "./assets/data/nsi/logos/stadtgiessen-127a2c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgiessen-127a2c.svg", "osmTags": { "and": [ "amenity=school", @@ -257946,7 +258150,7 @@ }, { "question": "Stadt Halle (Saale)", - "icon": "./assets/data/nsi/logos/stadthallesaale-08f4e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadthallesaale-08f4e1.jpg", "osmTags": { "and": [ "amenity=school", @@ -257962,7 +258166,7 @@ }, { "question": "Stadt Herford", - "icon": "./assets/data/nsi/logos/stadtherford-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtherford-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -257978,7 +258182,7 @@ }, { "question": "Stadt Herzogenrath", - "icon": "./assets/data/nsi/logos/stadtherzogenrath-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtherzogenrath-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -257994,7 +258198,7 @@ }, { "question": "Stadt Karlsruhe", - "icon": "./assets/data/nsi/logos/stadtkarlsruhe-0a18e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-0a18e7.png", "osmTags": { "and": [ "amenity=school", @@ -258010,7 +258214,7 @@ }, { "question": "Stadt Köln", - "icon": "./assets/data/nsi/logos/stadtkoln-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkoln-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -258026,7 +258230,7 @@ }, { "question": "Stadt Leipzig", - "icon": "./assets/data/nsi/logos/stadtleipzig-9699d0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtleipzig-9699d0.svg", "osmTags": { "and": [ "amenity=school", @@ -258056,7 +258260,7 @@ }, { "question": "Stadt Mainz", - "icon": "./assets/data/nsi/logos/stadtmainz-23163a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmainz-23163a.png", "osmTags": { "and": [ "amenity=school", @@ -258072,7 +258276,7 @@ }, { "question": "Stadt Moers", - "icon": "./assets/data/nsi/logos/stadtmoers-1fea76.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmoers-1fea76.png", "osmTags": { "and": [ "amenity=school", @@ -258088,7 +258292,7 @@ }, { "question": "Stadt Münster", - "icon": "./assets/data/nsi/logos/stadtmunster-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmunster-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -258104,7 +258308,7 @@ }, { "question": "Stadt Neuss", - "icon": "./assets/data/nsi/logos/stadtneuss-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtneuss-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -258120,7 +258324,7 @@ }, { "question": "Stadt Nürnberg", - "icon": "./assets/data/nsi/logos/stadtnurnberg-46895d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtnurnberg-46895d.svg", "osmTags": { "and": [ "amenity=school", @@ -258136,7 +258340,7 @@ }, { "question": "Stadt Plauen", - "icon": "./assets/data/nsi/logos/stadtplauen-9699d0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtplauen-9699d0.svg", "osmTags": { "and": [ "amenity=school", @@ -258152,7 +258356,7 @@ }, { "question": "Stadt Sankt Augustin", - "icon": "./assets/data/nsi/logos/stadtsanktaugustin-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtsanktaugustin-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -258168,7 +258372,7 @@ }, { "question": "Stadt Stolberg", - "icon": "./assets/data/nsi/logos/stadtstolberg-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtstolberg-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -258184,7 +258388,7 @@ }, { "question": "Stadt Velbert", - "icon": "./assets/data/nsi/logos/stadtvelbert-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtvelbert-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -258215,7 +258419,7 @@ }, { "question": "Stadt Wiesbaden", - "icon": "./assets/data/nsi/logos/stadtwiesbaden-127a2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwiesbaden-127a2c.jpg", "osmTags": { "and": [ "amenity=school", @@ -258231,7 +258435,7 @@ }, { "question": "Stadt Winterthur", - "icon": "./assets/data/nsi/logos/stadtwinterthur-25b252.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwinterthur-25b252.png", "osmTags": { "and": [ "amenity=school", @@ -258247,7 +258451,7 @@ }, { "question": "Stadt Witten", - "icon": "./assets/data/nsi/logos/stadtwitten-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwitten-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -258263,7 +258467,7 @@ }, { "question": "Stadt Wuppertal", - "icon": "./assets/data/nsi/logos/stadtwuppertal-1fea76.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwuppertal-1fea76.svg", "osmTags": { "and": [ "amenity=school", @@ -258377,7 +258581,7 @@ }, { "question": "Städteregion Aachen", - "icon": "./assets/data/nsi/logos/stadteregionaachen-1fea76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadteregionaachen-1fea76.jpg", "osmTags": { "and": [ "amenity=school", @@ -258408,7 +258612,7 @@ }, { "question": "Staffordshire University Academies Trust", - "icon": "./assets/data/nsi/logos/staffordshireuniversityacademiestrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/staffordshireuniversityacademiestrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -258424,7 +258628,7 @@ }, { "question": "Stange kommune", - "icon": "./assets/data/nsi/logos/stangekommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stangekommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -258500,7 +258704,7 @@ }, { "question": "Stavanger kommune", - "icon": "./assets/data/nsi/logos/stavangerkommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stavangerkommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -258532,7 +258736,7 @@ }, { "question": "Steinkjer kommune", - "icon": "./assets/data/nsi/logos/steinkjerkommune-ee5f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/steinkjerkommune-ee5f1f.png", "osmTags": { "and": [ "amenity=school", @@ -258763,7 +258967,7 @@ }, { "question": "Stjørdal kommune", - "icon": "./assets/data/nsi/logos/stjordalkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjordalkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -258824,7 +259028,7 @@ }, { "question": "Stord kommune", - "icon": "./assets/data/nsi/logos/stordkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stordkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -258855,7 +259059,7 @@ }, { "question": "Středočeský kraj", - "icon": "./assets/data/nsi/logos/stredoceskykraj-972665.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stredoceskykraj-972665.png", "osmTags": { "and": [ "amenity=school", @@ -259096,7 +259300,7 @@ }, { "question": "Sunderland City Council", - "icon": "./assets/data/nsi/logos/sunderlandcitycouncil-7a837c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunderlandcitycouncil-7a837c.svg", "osmTags": { "and": [ "amenity=school", @@ -259112,7 +259316,7 @@ }, { "question": "Sundsvalls kommun", - "icon": "./assets/data/nsi/logos/sundsvallskommun-0f2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sundsvallskommun-0f2dfb.png", "osmTags": { "and": [ "amenity=school", @@ -259128,7 +259332,7 @@ }, { "question": "Sunnfjord kommune", - "icon": "./assets/data/nsi/logos/sunnfjordkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunnfjordkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -259205,7 +259409,7 @@ }, { "question": "Surrey County Council", - "icon": "./assets/data/nsi/logos/surreycountycouncil-067b74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surreycountycouncil-067b74.jpg", "osmTags": { "and": [ "amenity=school", @@ -259236,7 +259440,7 @@ }, { "question": "Swale Academies Trust", - "icon": "./assets/data/nsi/logos/swaleacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swaleacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -259520,7 +259724,7 @@ }, { "question": "Tacoma Public Schools", - "icon": "./assets/data/nsi/logos/tacomapublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacomapublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -260331,7 +260535,7 @@ }, { "question": "Targówek", - "icon": "./assets/data/nsi/logos/targowek-83282a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/targowek-83282a.jpg", "osmTags": { "and": [ "amenity=school", @@ -260482,7 +260686,7 @@ }, { "question": "Taylor School District", - "icon": "./assets/data/nsi/logos/taylorschooldistrict-aa6f23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/taylorschooldistrict-aa6f23.png", "osmTags": { "and": [ "amenity=school", @@ -260574,7 +260778,7 @@ }, { "question": "Telemark fylkeskommune", - "icon": "./assets/data/nsi/logos/telemarkfylkeskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telemarkfylkeskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -260605,7 +260809,7 @@ }, { "question": "Thames Valley District School Board", - "icon": "./assets/data/nsi/logos/thamesvalleydistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thamesvalleydistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -260652,7 +260856,7 @@ }, { "question": "The Aspire Educational Trust", - "icon": "./assets/data/nsi/logos/theaspireeducationaltrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theaspireeducationaltrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -260713,7 +260917,7 @@ }, { "question": "The Blue Kite Academy Trust", - "icon": "./assets/data/nsi/logos/thebluekiteacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thebluekiteacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -260729,7 +260933,7 @@ }, { "question": "The Brooke Weston Trust", - "icon": "./assets/data/nsi/logos/thebrookewestontrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thebrookewestontrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -260745,7 +260949,7 @@ }, { "question": "The Cam Academy Trust", - "icon": "./assets/data/nsi/logos/thecamacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecamacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -260761,7 +260965,7 @@ }, { "question": "The Challenge Academy Trust", - "icon": "./assets/data/nsi/logos/thechallengeacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thechallengeacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -260778,7 +260982,7 @@ }, { "question": "The Church of Jesus Christ of Latter-day Saints", - "icon": "./assets/data/nsi/logos/thechurchofjesuschristoflatterdaysaints-155571.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thechurchofjesuschristoflatterdaysaints-155571.jpg", "osmTags": { "and": [ "amenity=school", @@ -260796,7 +261000,7 @@ }, { "question": "The Co-operative Academies Trust", - "icon": "./assets/data/nsi/logos/thecooperativeacademiestrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thecooperativeacademiestrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -260842,7 +261046,7 @@ }, { "question": "The David Ross Education Trust", - "icon": "./assets/data/nsi/logos/thedavidrosseducationtrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thedavidrosseducationtrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -260888,7 +261092,7 @@ }, { "question": "The Diocese of Canterbury Academies Trust", - "icon": "./assets/data/nsi/logos/thedioceseofcanterburyacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thedioceseofcanterburyacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -260919,7 +261123,7 @@ }, { "question": "The Diocese of Coventry Multi-Academy Trust", - "icon": "./assets/data/nsi/logos/thedioceseofcoventrymultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thedioceseofcoventrymultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261045,7 +261249,7 @@ }, { "question": "The Elliot Foundation Academies Trust", - "icon": "./assets/data/nsi/logos/theelliotfoundationacademiestrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theelliotfoundationacademiestrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -261061,7 +261265,7 @@ }, { "question": "The Enquire Learning Trust", - "icon": "./assets/data/nsi/logos/theenquirelearningtrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theenquirelearningtrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -261122,7 +261326,7 @@ }, { "question": "The Good Shepherd Trust", - "icon": "./assets/data/nsi/logos/thegoodshepherdtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thegoodshepherdtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261184,7 +261388,7 @@ }, { "question": "The Highland Council", - "icon": "./assets/data/nsi/logos/thehighlandcouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehighlandcouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -261200,7 +261404,7 @@ }, { "question": "The Howard Partnership Trust", - "icon": "./assets/data/nsi/logos/thehowardpartnershiptrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehowardpartnershiptrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261247,7 +261451,7 @@ }, { "question": "The Kite Academy Trust", - "icon": "./assets/data/nsi/logos/thekiteacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thekiteacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261263,7 +261467,7 @@ }, { "question": "The Mead Educational Trust", - "icon": "./assets/data/nsi/logos/themeadeducationaltrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/themeadeducationaltrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261280,7 +261484,7 @@ }, { "question": "The North Tyneside Learning Trust", - "icon": "./assets/data/nsi/logos/thenorthtynesidelearningtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thenorthtynesidelearningtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261296,7 +261500,7 @@ }, { "question": "The Painsley Catholic Academy", - "icon": "./assets/data/nsi/logos/thepainsleycatholicacademy-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thepainsleycatholicacademy-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261327,7 +261531,7 @@ }, { "question": "The Pioneer Academy", - "icon": "./assets/data/nsi/logos/thepioneeracademy-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thepioneeracademy-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -261359,7 +261563,7 @@ }, { "question": "The Primary First Trust", - "icon": "./assets/data/nsi/logos/theprimaryfirsttrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theprimaryfirsttrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261436,7 +261640,7 @@ }, { "question": "The Rutland Learning Trust", - "icon": "./assets/data/nsi/logos/therutlandlearningtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/therutlandlearningtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261452,7 +261656,7 @@ }, { "question": "The Shaw Education Trust", - "icon": "./assets/data/nsi/logos/theshaweducationtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theshaweducationtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261483,7 +261687,7 @@ }, { "question": "The Spencer Academies Trust", - "icon": "./assets/data/nsi/logos/thespenceracademiestrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thespenceracademiestrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -261514,7 +261718,7 @@ }, { "question": "The Ted Wragg Multi Academy Trust", - "icon": "./assets/data/nsi/logos/thetedwraggmultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thetedwraggmultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261545,7 +261749,7 @@ }, { "question": "The Wensum Trust", - "icon": "./assets/data/nsi/logos/thewensumtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thewensumtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -261576,7 +261780,7 @@ }, { "question": "Thornton Fractional Township High School District 215", - "icon": "./assets/data/nsi/logos/thorntonfractionaltownshiphighschooldistrict215-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thorntonfractionaltownshiphighschooldistrict215-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -261593,7 +261797,7 @@ }, { "question": "Thornton Township High School District 205", - "icon": "./assets/data/nsi/logos/thorntontownshiphighschooldistrict205-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thorntontownshiphighschooldistrict205-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -261610,7 +261814,7 @@ }, { "question": "Three Rivers School District", - "icon": "./assets/data/nsi/logos/threeriversschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/threeriversschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -261688,7 +261892,7 @@ }, { "question": "Tierps kommun", - "icon": "./assets/data/nsi/logos/tierpskommun-0f2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tierpskommun-0f2dfb.png", "osmTags": { "and": [ "amenity=school", @@ -261719,7 +261923,7 @@ }, { "question": "Tigard-Tualatin School District", - "icon": "./assets/data/nsi/logos/tigardtualatinschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigardtualatinschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -261766,7 +261970,7 @@ }, { "question": "Time kommune", - "icon": "./assets/data/nsi/logos/timekommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/timekommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -261782,7 +261986,7 @@ }, { "question": "Timrå kommun", - "icon": "./assets/data/nsi/logos/timrakommun-0f2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/timrakommun-0f2dfb.png", "osmTags": { "and": [ "amenity=school", @@ -262053,7 +262257,7 @@ }, { "question": "Tønsberg kommune", - "icon": "./assets/data/nsi/logos/tonsbergkommune-ee5f1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tonsbergkommune-ee5f1f.jpg", "osmTags": { "and": [ "amenity=school", @@ -262069,7 +262273,7 @@ }, { "question": "Torbay Council", - "icon": "./assets/data/nsi/logos/torbaycouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torbaycouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -262100,7 +262304,7 @@ }, { "question": "Toronto Catholic District School Board", - "icon": "./assets/data/nsi/logos/torontocatholicdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torontocatholicdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -262117,7 +262321,7 @@ }, { "question": "Toronto District School Board", - "icon": "./assets/data/nsi/logos/torontodistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torontodistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -262134,7 +262338,7 @@ }, { "question": "Torrance Unified School District", - "icon": "./assets/data/nsi/logos/torranceunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torranceunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -262166,7 +262370,7 @@ }, { "question": "Tove Learning Trust", - "icon": "./assets/data/nsi/logos/tovelearningtrust-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tovelearningtrust-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -262182,7 +262386,7 @@ }, { "question": "Township High School District 211", - "icon": "./assets/data/nsi/logos/townshiphighschooldistrict211-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townshiphighschooldistrict211-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -262199,7 +262403,7 @@ }, { "question": "Township High School District 214", - "icon": "./assets/data/nsi/logos/townshiphighschooldistrict214-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townshiphighschooldistrict214-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -262246,7 +262450,7 @@ }, { "question": "Traverse City Area Public Schools", - "icon": "./assets/data/nsi/logos/traversecityareapublicschools-aa6f23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/traversecityareapublicschools-aa6f23.png", "osmTags": { "and": [ "amenity=school", @@ -262339,7 +262543,7 @@ }, { "question": "Trinity Multi Academy Trust", - "icon": "./assets/data/nsi/logos/trinitymultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trinitymultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -262355,7 +262559,7 @@ }, { "question": "Troms fylkeskommune", - "icon": "./assets/data/nsi/logos/tromsfylkeskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tromsfylkeskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -262386,7 +262590,7 @@ }, { "question": "Tromsø kommune", - "icon": "./assets/data/nsi/logos/tromsokommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tromsokommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -262417,7 +262621,7 @@ }, { "question": "Trondheim kommune", - "icon": "./assets/data/nsi/logos/trondheimkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trondheimkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -262433,7 +262637,7 @@ }, { "question": "Troy School District (Michigan)", - "icon": "./assets/data/nsi/logos/troyschooldistrict-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/troyschooldistrict-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -262450,7 +262654,7 @@ }, { "question": "Truro & Penwith Academy Trust", - "icon": "./assets/data/nsi/logos/truroandpenwithacademytrust-26e9df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/truroandpenwithacademytrust-26e9df.png", "osmTags": { "and": [ "amenity=school", @@ -262781,7 +262985,7 @@ }, { "question": "Tulsa Public Schools", - "icon": "./assets/data/nsi/logos/tulsapublicschools-68061d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tulsapublicschools-68061d.jpg", "osmTags": { "and": [ "amenity=school", @@ -262842,7 +263046,7 @@ }, { "question": "Tumwater School District", - "icon": "./assets/data/nsi/logos/tumwaterschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tumwaterschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -262919,7 +263123,7 @@ }, { "question": "Tustin Unified School District", - "icon": "./assets/data/nsi/logos/tustinunifiedschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tustinunifiedschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -262996,7 +263200,7 @@ }, { "question": "Ullensaker kommune", - "icon": "./assets/data/nsi/logos/ullensakerkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ullensakerkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -263042,7 +263246,7 @@ }, { "question": "UNICEF", - "icon": "./assets/data/nsi/logos/unicef-155571.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unicef-155571.jpg", "osmTags": { "and": [ "amenity=school", @@ -263072,7 +263276,7 @@ }, { "question": "Union Community School District", - "icon": "./assets/data/nsi/logos/unioncommunityschooldistrict-6e0541.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unioncommunityschooldistrict-6e0541.jpg", "osmTags": { "and": [ "amenity=school", @@ -263088,7 +263292,7 @@ }, { "question": "Union County Public Schools (Kentucky)", - "icon": "./assets/data/nsi/logos/unioncountypublicschools-4e7bb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unioncountypublicschools-4e7bb3.jpg", "osmTags": { "and": [ "amenity=school", @@ -263105,7 +263309,7 @@ }, { "question": "Union County Public Schools (North Carolina)", - "icon": "./assets/data/nsi/logos/unioncountypublicschools-15bd72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unioncountypublicschools-15bd72.png", "osmTags": { "and": [ "amenity=school", @@ -263122,7 +263326,7 @@ }, { "question": "Union County Public Schools (Tennessee)", - "icon": "./assets/data/nsi/logos/unioncountypublicschools-3799fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unioncountypublicschools-3799fa.jpg", "osmTags": { "and": [ "amenity=school", @@ -263154,7 +263358,7 @@ }, { "question": "Union County School District (Mississippi)", - "icon": "./assets/data/nsi/logos/unioncountyschooldistrict-36719b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unioncountyschooldistrict-36719b.jpg", "osmTags": { "and": [ "amenity=school", @@ -263170,7 +263374,7 @@ }, { "question": "Union County Schools (Georgia)", - "icon": "./assets/data/nsi/logos/unioncountyschools-159679.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unioncountyschools-159679.png", "osmTags": { "and": [ "amenity=school", @@ -263186,7 +263390,7 @@ }, { "question": "Union County Schools (South Carolina)", - "icon": "./assets/data/nsi/logos/unioncountyschools-b0049f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unioncountyschools-b0049f.jpg", "osmTags": { "and": [ "amenity=school", @@ -263246,7 +263450,7 @@ }, { "question": "United Learning Trust", - "icon": "./assets/data/nsi/logos/unitedlearningtrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedlearningtrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -263278,7 +263482,7 @@ }, { "question": "Unity Schools Partnership", - "icon": "./assets/data/nsi/logos/unityschoolspartnership-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unityschoolspartnership-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -263294,7 +263498,7 @@ }, { "question": "Universidad Nacional Autónoma de México", - "icon": "./assets/data/nsi/logos/universidadnacionalautonomademexico-422367.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universidadnacionalautonomademexico-422367.jpg", "osmTags": { "and": [ "amenity=school", @@ -263324,7 +263528,7 @@ }, { "question": "University of Brighton Academies Trust", - "icon": "./assets/data/nsi/logos/universityofbrightonacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofbrightonacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -263356,7 +263560,7 @@ }, { "question": "UNRWA", - "icon": "./assets/data/nsi/logos/unrwa-155571.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unrwa-155571.jpg", "osmTags": { "and": [ "amenity=school", @@ -263404,7 +263608,7 @@ }, { "question": "Uppsala kommun", - "icon": "./assets/data/nsi/logos/uppsalakommun-0f2dfb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uppsalakommun-0f2dfb.png", "osmTags": { "and": [ "amenity=school", @@ -263522,7 +263726,7 @@ }, { "question": "Utica Community Schools", - "icon": "./assets/data/nsi/logos/uticacommunityschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uticacommunityschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -263582,7 +263786,7 @@ }, { "question": "Vale of Glamorgan Council", - "icon": "./assets/data/nsi/logos/valeofglamorgancouncil-3a6545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valeofglamorgancouncil-3a6545.jpg", "osmTags": { "and": [ "amenity=school", @@ -263703,7 +263907,7 @@ }, { "question": "Valley View Community Unit School District 365U", - "icon": "./assets/data/nsi/logos/valleyviewcommunityunitschooldistrict365u-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valleyviewcommunityunitschooldistrict365u-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -263719,7 +263923,7 @@ }, { "question": "Vallivue School District #139", - "icon": "./assets/data/nsi/logos/vallivueschooldistrict-d7611a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vallivueschooldistrict-d7611a.jpg", "osmTags": { "and": [ "amenity=school", @@ -263736,7 +263940,7 @@ }, { "question": "Vancouver Public Schools", - "icon": "./assets/data/nsi/logos/vancouverpublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vancouverpublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -263767,7 +263971,7 @@ }, { "question": "Vantaan kaupunki", - "icon": "./assets/data/nsi/logos/vantaankaupunki-4ccccf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vantaankaupunki-4ccccf.png", "osmTags": { "and": [ "amenity=school", @@ -263783,7 +263987,7 @@ }, { "question": "Vantage CE Academies Trust", - "icon": "./assets/data/nsi/logos/vantageceacademiestrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vantageceacademiestrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -263843,7 +264047,7 @@ }, { "question": "Verdal kommune", - "icon": "./assets/data/nsi/logos/verdalkommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verdalkommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -263889,7 +264093,7 @@ }, { "question": "Vestfold fylkeskommune", - "icon": "./assets/data/nsi/logos/vestfoldfylkeskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vestfoldfylkeskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -263920,7 +264124,7 @@ }, { "question": "Vestland fylkeskommune", - "icon": "./assets/data/nsi/logos/vestlandfylkeskommune-ee5f1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vestlandfylkeskommune-ee5f1f.svg", "osmTags": { "and": [ "amenity=school", @@ -264355,7 +264559,7 @@ }, { "question": "Virginia Beach City Public Schools", - "icon": "./assets/data/nsi/logos/virginiabeachcitypublicschools-3cf7e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiabeachcitypublicschools-3cf7e1.png", "osmTags": { "and": [ "amenity=school", @@ -264372,7 +264576,7 @@ }, { "question": "Visalia Unified School District", - "icon": "./assets/data/nsi/logos/visaliaunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visaliaunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -264389,7 +264593,7 @@ }, { "question": "Vista Unified School District", - "icon": "./assets/data/nsi/logos/vistaunifiedschooldistrict-ff98ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vistaunifiedschooldistrict-ff98ff.jpg", "osmTags": { "and": [ "amenity=school", @@ -264435,7 +264639,7 @@ }, { "question": "Wake County Public School System", - "icon": "./assets/data/nsi/logos/wakecountypublicschoolsystem-15bd72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wakecountypublicschoolsystem-15bd72.png", "osmTags": { "and": [ "amenity=school", @@ -264466,7 +264670,7 @@ }, { "question": "Walnut Valley Unified School District", - "icon": "./assets/data/nsi/logos/walnutvalleyunifiedschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/walnutvalleyunifiedschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -264498,7 +264702,7 @@ }, { "question": "Warren Consolidated Schools", - "icon": "./assets/data/nsi/logos/warrenconsolidatedschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warrenconsolidatedschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -264530,7 +264734,7 @@ }, { "question": "Warwickshire County Council", - "icon": "./assets/data/nsi/logos/warwickshirecountycouncil-7a837c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/warwickshirecountycouncil-7a837c.png", "osmTags": { "and": [ "amenity=school", @@ -264562,7 +264766,7 @@ }, { "question": "Washington County School District", - "icon": "./assets/data/nsi/logos/washingtoncountyschooldistrict-614f2b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtoncountyschooldistrict-614f2b.png", "osmTags": { "and": [ "amenity=school", @@ -264579,7 +264783,7 @@ }, { "question": "Waterbury Public Schools", - "icon": "./assets/data/nsi/logos/waterburypublicschools-547ddd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/waterburypublicschools-547ddd.png", "osmTags": { "and": [ "amenity=school", @@ -264596,7 +264800,7 @@ }, { "question": "Waterloo Catholic District School Board", - "icon": "./assets/data/nsi/logos/waterloocatholicdistrictschoolboard-57bf82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waterloocatholicdistrictschoolboard-57bf82.jpg", "osmTags": { "and": [ "amenity=school", @@ -264644,7 +264848,7 @@ }, { "question": "Waukegan Community Unit School District 60", - "icon": "./assets/data/nsi/logos/waukegancommunityunitschooldistrict60-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waukegancommunityunitschooldistrict60-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -264661,7 +264865,7 @@ }, { "question": "Wausau School District", - "icon": "./assets/data/nsi/logos/wausauschooldistrict-ac5479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wausauschooldistrict-ac5479.jpg", "osmTags": { "and": [ "amenity=school", @@ -264678,7 +264882,7 @@ }, { "question": "Wave Multi Academy Trust", - "icon": "./assets/data/nsi/logos/wavemultiacademytrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wavemultiacademytrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -264725,7 +264929,7 @@ }, { "question": "Wenatchee Public Schools", - "icon": "./assets/data/nsi/logos/wenatcheepublicschools-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wenatcheepublicschools-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -264742,7 +264946,7 @@ }, { "question": "Weslaco Independent School District", - "icon": "./assets/data/nsi/logos/weslacoindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/weslacoindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -264759,7 +264963,7 @@ }, { "question": "Wessex Learning Trust", - "icon": "./assets/data/nsi/logos/wessexlearningtrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wessexlearningtrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -264790,7 +264994,7 @@ }, { "question": "West Ada School District", - "icon": "./assets/data/nsi/logos/westadaschooldistrict-d7611a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westadaschooldistrict-d7611a.png", "osmTags": { "and": [ "amenity=school", @@ -264821,7 +265025,7 @@ }, { "question": "West Aurora Public School District 129", - "icon": "./assets/data/nsi/logos/westaurorapublicschooldistrict129-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westaurorapublicschooldistrict129-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -264852,7 +265056,7 @@ }, { "question": "West Covina Unified School District", - "icon": "./assets/data/nsi/logos/westcovinaunifiedschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westcovinaunifiedschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -265124,7 +265328,7 @@ }, { "question": "West Linn-Wilsonville School District", - "icon": "./assets/data/nsi/logos/westlinnwilsonvilleschooldistrict-330cad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westlinnwilsonvilleschooldistrict-330cad.jpg", "osmTags": { "and": [ "amenity=school", @@ -265141,7 +265345,7 @@ }, { "question": "West Lothian Council", - "icon": "./assets/data/nsi/logos/westlothiancouncil-7782f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westlothiancouncil-7782f9.jpg", "osmTags": { "and": [ "amenity=school", @@ -265261,7 +265465,7 @@ }, { "question": "Westcountry Schools Trust", - "icon": "./assets/data/nsi/logos/westcountryschoolstrust-26e9df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westcountryschoolstrust-26e9df.jpg", "osmTags": { "and": [ "amenity=school", @@ -265277,7 +265481,7 @@ }, { "question": "Western Cape Education Department", - "icon": "./assets/data/nsi/logos/westerncapeeducationdepartment-3306c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westerncapeeducationdepartment-3306c5.jpg", "osmTags": { "and": [ "amenity=school", @@ -265323,7 +265527,7 @@ }, { "question": "Westminster School District", - "icon": "./assets/data/nsi/logos/westminsterschooldistrict-4ed216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westminsterschooldistrict-4ed216.jpg", "osmTags": { "and": [ "amenity=school", @@ -265340,7 +265544,7 @@ }, { "question": "Westmont Community Unit School District 201", - "icon": "./assets/data/nsi/logos/westmontcommunityunitschooldistrict201-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westmontcommunityunitschooldistrict201-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -265356,7 +265560,7 @@ }, { "question": "Westmorland and Furness Council", - "icon": "./assets/data/nsi/logos/westmorlandandfurnesscouncil-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westmorlandandfurnesscouncil-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -265372,7 +265576,7 @@ }, { "question": "Westport Public Schools", - "icon": "./assets/data/nsi/logos/westportpublicschools-547ddd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westportpublicschools-547ddd.png", "osmTags": { "and": [ "amenity=school", @@ -265388,7 +265592,7 @@ }, { "question": "Westside Union School District", - "icon": "./assets/data/nsi/logos/westsideunionschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westsideunionschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -265419,7 +265623,7 @@ }, { "question": "Wheeling Community Consolidated School District 21", - "icon": "./assets/data/nsi/logos/wheelingcommunityconsolidatedschooldistrict21-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wheelingcommunityconsolidatedschooldistrict21-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -265452,7 +265656,7 @@ }, { "question": "Whittier City School District", - "icon": "./assets/data/nsi/logos/whittiercityschooldistrict-f343c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/whittiercityschooldistrict-f343c1.png", "osmTags": { "and": [ "amenity=school", @@ -265469,7 +265673,7 @@ }, { "question": "Wichita Falls ISD", - "icon": "./assets/data/nsi/logos/wichitafallsindependentschooldistrict-d19570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wichitafallsindependentschooldistrict-d19570.jpg", "osmTags": { "and": [ "amenity=school", @@ -265486,7 +265690,7 @@ }, { "question": "Wichita Public Schools", - "icon": "./assets/data/nsi/logos/wichitapublicschools-43eeb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wichitapublicschools-43eeb8.jpg", "osmTags": { "and": [ "amenity=school", @@ -265503,7 +265707,7 @@ }, { "question": "Wickersley Partnership Trust", - "icon": "./assets/data/nsi/logos/wickersleypartnershiptrust-7a837c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wickersleypartnershiptrust-7a837c.jpg", "osmTags": { "and": [ "amenity=school", @@ -265535,7 +265739,7 @@ }, { "question": "William S. Hart Union High School District", - "icon": "./assets/data/nsi/logos/williamshartunionhighschooldistrict-f343c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/williamshartunionhighschooldistrict-f343c1.jpg", "osmTags": { "and": [ "amenity=school", @@ -265552,7 +265756,7 @@ }, { "question": "Wilmette Public Schools District 39", - "icon": "./assets/data/nsi/logos/wilmettepublicschoolsdistrict39-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilmettepublicschoolsdistrict39-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -265688,7 +265892,7 @@ }, { "question": "Województwo Dolnośląskie", - "icon": "./assets/data/nsi/logos/wojewodztwodolnoslaskie-83282a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wojewodztwodolnoslaskie-83282a.jpg", "osmTags": { "and": [ "amenity=school", @@ -265719,7 +265923,7 @@ }, { "question": "Woodridge School District 68", - "icon": "./assets/data/nsi/logos/woodridgeschooldistrict68-6d6198.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woodridgeschooldistrict68-6d6198.jpg", "osmTags": { "and": [ "amenity=school", @@ -265854,7 +266058,7 @@ }, { "question": "Xunta de Galicia", - "icon": "./assets/data/nsi/logos/xuntadegalicia-c1ff56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xuntadegalicia-c1ff56.jpg", "osmTags": { "and": [ "amenity=school", @@ -265884,7 +266088,7 @@ }, { "question": "Yakima School District", - "icon": "./assets/data/nsi/logos/yakimaschooldistrict-48f47a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yakimaschooldistrict-48f47a.jpg", "osmTags": { "and": [ "amenity=school", @@ -265933,7 +266137,7 @@ }, { "question": "Yorkville Community Unit School District 115", - "icon": "./assets/data/nsi/logos/yorkvillecommunityunitschooldistrict115-6d6198.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yorkvillecommunityunitschooldistrict115-6d6198.png", "osmTags": { "and": [ "amenity=school", @@ -265949,7 +266153,7 @@ }, { "question": "Ypsilanti Community Schools", - "icon": "./assets/data/nsi/logos/ypsilanticommunityschools-aa6f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ypsilanticommunityschools-aa6f23.jpg", "osmTags": { "and": [ "amenity=school", @@ -266024,7 +266228,7 @@ }, { "question": "Żoliborz", - "icon": "./assets/data/nsi/logos/zoliborz-83282a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zoliborz-83282a.svg", "osmTags": { "and": [ "amenity=school", @@ -266181,7 +266385,7 @@ }, { "question": "Столична община", - "icon": "./assets/data/nsi/logos/4c66bf-1af210.png", + "icon": "https://data.mapcomplete.org/nsi//logos/4c66bf-1af210.png", "osmTags": { "and": [ "amenity=school", @@ -266442,7 +266646,7 @@ }, { "question": "中華民國教育部", - "icon": "./assets/data/nsi/logos/ad5af7-ca324a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ad5af7-ca324a.jpg", "osmTags": { "and": [ "amenity=school", @@ -266528,7 +266732,7 @@ }, { "question": "保良局 Po Leung Kuk", - "icon": "./assets/data/nsi/logos/poleungkuk-084410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/poleungkuk-084410.jpg", "osmTags": { "and": [ "amenity=school", @@ -267139,7 +267343,7 @@ }, { "question": "東華三院 Tung Wah Group of Hospitals", - "icon": "./assets/data/nsi/logos/tungwahgroupofhospitals-084410.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tungwahgroupofhospitals-084410.svg", "osmTags": { "and": [ "amenity=school", @@ -267554,7 +267758,7 @@ }, { "question": "香港明愛 Caritas Hong Kong", - "icon": "./assets/data/nsi/logos/caritashongkong-084410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritashongkong-084410.jpg", "osmTags": { "and": [ "amenity=school", @@ -267687,7 +267891,7 @@ }, { "question": "Abbeyfield", - "icon": "./assets/data/nsi/logos/abbeyfield-bdda3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abbeyfield-bdda3a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -267732,7 +267936,7 @@ }, { "question": "ADMR", - "icon": "./assets/data/nsi/logos/admr-704240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/admr-704240.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -267763,7 +267967,7 @@ }, { "question": "advita Pflegedienst GmbH", - "icon": "./assets/data/nsi/logos/advitapflegedienstgmbh-9a82eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/advitapflegedienstgmbh-9a82eb.png", "osmTags": { "and": [ "amenity=social_facility", @@ -267809,7 +268013,7 @@ }, { "question": "Ajuntament de Barcelona", - "icon": "./assets/data/nsi/logos/ajuntamentdebarcelona-4392ed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-4392ed.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -267825,7 +268029,7 @@ }, { "question": "Alliade", - "icon": "./assets/data/nsi/logos/alliade-627b49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alliade-627b49.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -267841,7 +268045,7 @@ }, { "question": "Alloheim Senioren-Residenzen", - "icon": "./assets/data/nsi/logos/alloheimseniorenresidenzen-9a82eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alloheimseniorenresidenzen-9a82eb.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -267871,7 +268075,7 @@ }, { "question": "Anchor", - "icon": "./assets/data/nsi/logos/anchor-c79a8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anchor-c79a8f.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -267888,7 +268092,7 @@ }, { "question": "Anglicare", - "icon": "./assets/data/nsi/logos/anglicare-9d36ac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anglicare-9d36ac.png", "osmTags": { "and": [ "amenity=social_facility", @@ -267933,7 +268137,7 @@ }, { "question": "Arvida", - "icon": "./assets/data/nsi/logos/arvida-97ad99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arvida-97ad99.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -267981,7 +268185,7 @@ }, { "question": "Attendo", - "icon": "./assets/data/nsi/logos/attendo-affb39.png", + "icon": "https://data.mapcomplete.org/nsi//logos/attendo-affb39.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268025,7 +268229,7 @@ }, { "question": "AZURIT Rohr GmbH", - "icon": "./assets/data/nsi/logos/azuritrohrgmbh-9a82eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/azuritrohrgmbh-9a82eb.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268041,7 +268245,7 @@ }, { "question": "Barchester Healthcare", - "icon": "./assets/data/nsi/logos/barchesterhealthcare-bdda3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/barchesterhealthcare-bdda3a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268057,7 +268261,7 @@ }, { "question": "BC Housing", - "icon": "./assets/data/nsi/logos/bchousing-8d05c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bchousing-8d05c1.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268073,7 +268277,7 @@ }, { "question": "Bergen kommune", - "icon": "./assets/data/nsi/logos/bergenkommune-2efea4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bergenkommune-2efea4.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -268089,7 +268293,7 @@ }, { "question": "Bremer Heimstiftung", - "icon": "./assets/data/nsi/logos/bremerheimstiftung-739aab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bremerheimstiftung-739aab.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268105,7 +268309,7 @@ }, { "question": "Brookdale Senior Living", - "icon": "./assets/data/nsi/logos/brookdaleseniorliving-04bb0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brookdaleseniorliving-04bb0a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268121,7 +268325,7 @@ }, { "question": "BSZ Stiftung", - "icon": "./assets/data/nsi/logos/bszstiftung-52b44a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bszstiftung-52b44a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268137,7 +268341,7 @@ }, { "question": "Bupa", - "icon": "./assets/data/nsi/logos/bupa-bdda3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bupa-bdda3a.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268153,7 +268357,7 @@ }, { "question": "Care UK", - "icon": "./assets/data/nsi/logos/careuk-bdda3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/careuk-bdda3a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268197,7 +268401,7 @@ }, { "question": "Chartwell", - "icon": "./assets/data/nsi/logos/chartwell-4dbadb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chartwell-4dbadb.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268213,7 +268417,7 @@ }, { "question": "Coallia", - "icon": "./assets/data/nsi/logos/coallia-704240.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coallia-704240.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268229,7 +268433,7 @@ }, { "question": "Comune di Genova", - "icon": "./assets/data/nsi/logos/comunedigenova-9cadb3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedigenova-9cadb3.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -268245,7 +268449,7 @@ }, { "question": "Comunidad de Madrid", - "icon": "./assets/data/nsi/logos/comunidaddemadrid-324b90.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunidaddemadrid-324b90.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -268276,7 +268480,7 @@ }, { "question": "CROUS de Paris", - "icon": "./assets/data/nsi/logos/crousdeparis-704240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crousdeparis-704240.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268292,7 +268496,7 @@ }, { "question": "Daheim e.V.", - "icon": "./assets/data/nsi/logos/daheimev-f38aef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daheimev-f38aef.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268323,7 +268527,7 @@ }, { "question": "Department of Health (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofhealth-1b29d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofhealth-1b29d4.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -268340,7 +268544,7 @@ }, { "question": "Department of Social Welfare and Development (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofsocialwelfareanddevelopment-1b29d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofsocialwelfareanddevelopment-1b29d4.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268357,7 +268561,7 @@ }, { "question": "Department of the Interior and Local Government (Philippines)", - "icon": "./assets/data/nsi/logos/departmentoftheinteriorandlocalgovernment-1b29d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentoftheinteriorandlocalgovernment-1b29d4.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268374,7 +268578,7 @@ }, { "question": "Diakoniewerk Essen", - "icon": "./assets/data/nsi/logos/diakoniewerkessen-f38aef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diakoniewerkessen-f38aef.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268390,7 +268594,7 @@ }, { "question": "Diakonisches Werk Innere Mission Leipzig e.V.", - "icon": "./assets/data/nsi/logos/diakonischeswerkinneremissionleipzigev-9a82eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/diakonischeswerkinneremissionleipzigev-9a82eb.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268420,7 +268624,7 @@ }, { "question": "Domitys", - "icon": "./assets/data/nsi/logos/domitys-704240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/domitys-704240.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268451,7 +268655,7 @@ }, { "question": "Drammen kommune", - "icon": "./assets/data/nsi/logos/drammenkommune-2efea4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drammenkommune-2efea4.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268467,7 +268671,7 @@ }, { "question": "Edenis", - "icon": "./assets/data/nsi/logos/edenis-704240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edenis-704240.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268483,7 +268687,7 @@ }, { "question": "ELIM Diakonie GmbH", - "icon": "./assets/data/nsi/logos/elimdiakoniegmbh-9a82eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elimdiakoniegmbh-9a82eb.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268499,7 +268703,7 @@ }, { "question": "Esperi Care", - "icon": "./assets/data/nsi/logos/espericare-d65e34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/espericare-d65e34.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268515,7 +268719,7 @@ }, { "question": "Evangelische Heimstiftung", - "icon": "./assets/data/nsi/logos/evangelischeheimstiftung-86cc42.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evangelischeheimstiftung-86cc42.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268532,7 +268736,7 @@ }, { "question": "Evangelische Stiftung Neinstedt", - "icon": "./assets/data/nsi/logos/evangelischestiftungneinstedt-b42b1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evangelischestiftungneinstedt-b42b1a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268549,7 +268753,7 @@ }, { "question": "Evangelische Stiftung Neuerkerode", - "icon": "./assets/data/nsi/logos/evangelischestiftungneuerkerode-3c1636.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evangelischestiftungneuerkerode-3c1636.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268566,7 +268770,7 @@ }, { "question": "Evangelischer Verein für Innere Mission in Nassau", - "icon": "./assets/data/nsi/logos/evangelischervereinfurinneremissioninnassau-516e6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evangelischervereinfurinneremissioninnassau-516e6a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268612,7 +268816,7 @@ }, { "question": "Fedasil", - "icon": "./assets/data/nsi/logos/fedasil-5c0b3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fedasil-5c0b3d.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268658,7 +268862,7 @@ }, { "question": "foodsharing.de", - "icon": "./assets/data/nsi/logos/foodsharingde-caa2a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/foodsharingde-caa2a5.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268674,7 +268878,7 @@ }, { "question": "Four Seasons Health Care", - "icon": "./assets/data/nsi/logos/fourseasonshealthcare-bdda3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fourseasonshealthcare-bdda3a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268690,7 +268894,7 @@ }, { "question": "Fredrikstad kommune", - "icon": "./assets/data/nsi/logos/fredrikstadkommune-2efea4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fredrikstadkommune-2efea4.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -268720,7 +268924,7 @@ }, { "question": "Generalitat de Catalunya", - "icon": "./assets/data/nsi/logos/generalitatdecatalunya-a8af6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitatdecatalunya-a8af6f.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268736,7 +268940,7 @@ }, { "question": "Genesis HealthCare", - "icon": "./assets/data/nsi/logos/genesishealthcare-04bb0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genesishealthcare-04bb0a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268752,7 +268956,7 @@ }, { "question": "Göteborgs stad", - "icon": "./assets/data/nsi/logos/goteborgsstad-0c56f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goteborgsstad-0c56f6.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268783,7 +268987,7 @@ }, { "question": "Haderslev Kommune", - "icon": "./assets/data/nsi/logos/haderslevkommune-d61588.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haderslevkommune-d61588.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268814,7 +269018,7 @@ }, { "question": "HC One", - "icon": "./assets/data/nsi/logos/hcone-bdda3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hcone-bdda3a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268830,7 +269034,7 @@ }, { "question": "Health Service Executive", - "icon": "./assets/data/nsi/logos/healthserviceexecutive-b5f0b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/healthserviceexecutive-b5f0b6.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268847,7 +269051,7 @@ }, { "question": "Heiliggeistspitalstiftung Freiburg", - "icon": "./assets/data/nsi/logos/heiliggeistspitalstiftungfreiburg-86cc42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heiliggeistspitalstiftungfreiburg-86cc42.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268863,7 +269067,7 @@ }, { "question": "Heilsarmee", - "icon": "./assets/data/nsi/logos/heilsarmee-9a82eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/heilsarmee-9a82eb.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268894,7 +269098,7 @@ }, { "question": "Het Gastenhuis", - "icon": "./assets/data/nsi/logos/hetgastenhuis-627b49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hetgastenhuis-627b49.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -268954,7 +269158,7 @@ }, { "question": "Ipse de Bruggen", - "icon": "./assets/data/nsi/logos/ipsedebruggen-627b49.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipsedebruggen-627b49.png", "osmTags": { "and": [ "amenity=social_facility", @@ -268985,7 +269189,7 @@ }, { "question": "Johanniter Seniorenhäuser GmbH", - "icon": "./assets/data/nsi/logos/johanniterseniorenhausergmbh-9a82eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johanniterseniorenhausergmbh-9a82eb.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269001,7 +269205,7 @@ }, { "question": "Junta de Andalucía", - "icon": "./assets/data/nsi/logos/juntadeandalucia-a8af6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-a8af6f.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269017,7 +269221,7 @@ }, { "question": "Junta de Castilla y León", - "icon": "./assets/data/nsi/logos/juntadecastillayleon-a8af6f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadecastillayleon-a8af6f.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -269033,7 +269237,7 @@ }, { "question": "Karlstads kommun", - "icon": "./assets/data/nsi/logos/karlstadskommun-0c56f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlstadskommun-0c56f6.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269049,7 +269253,7 @@ }, { "question": "Kirkens Korshær", - "icon": "./assets/data/nsi/logos/kirkenskorshaer-18f4fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kirkenskorshaer-18f4fe.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269065,7 +269269,7 @@ }, { "question": "Kleeblatt Pflegeheime gGmbH", - "icon": "./assets/data/nsi/logos/kleeblattpflegeheimeggmbh-86cc42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kleeblattpflegeheimeggmbh-86cc42.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269081,7 +269285,7 @@ }, { "question": "Korian", - "icon": "./assets/data/nsi/logos/korian-08d104.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/korian-08d104.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269097,7 +269301,7 @@ }, { "question": "Kristiansand kommune", - "icon": "./assets/data/nsi/logos/kristiansandkommune-2efea4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kristiansandkommune-2efea4.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -269113,7 +269317,7 @@ }, { "question": "Kursana", - "icon": "./assets/data/nsi/logos/kursana-9a82eb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kursana-9a82eb.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -269129,7 +269333,7 @@ }, { "question": "Leger des Heils", - "icon": "./assets/data/nsi/logos/legerdesheils-627b49.png", + "icon": "https://data.mapcomplete.org/nsi//logos/legerdesheils-627b49.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269145,7 +269349,7 @@ }, { "question": "Magyar Máltai Szeretetszolgálat", - "icon": "./assets/data/nsi/logos/magyarmaltaiszeretetszolgalat-bb8da1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magyarmaltaiszeretetszolgalat-bb8da1.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269161,7 +269365,7 @@ }, { "question": "Mairie de Paris", - "icon": "./assets/data/nsi/logos/mairiedeparis-0553d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-0553d6.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269191,7 +269395,7 @@ }, { "question": "McCarthy & Stone", - "icon": "./assets/data/nsi/logos/mccarthyandstone-bdda3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mccarthyandstone-bdda3a.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269249,7 +269453,7 @@ }, { "question": "Miasto Stołeczne Warszawa", - "icon": "./assets/data/nsi/logos/miastostolecznewarszawa-01d55f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/miastostolecznewarszawa-01d55f.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269265,7 +269469,7 @@ }, { "question": "Ministerio de Salud Pública (Cuba)", - "icon": "./assets/data/nsi/logos/ministeriodesaludpublica-7d5963.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesaludpublica-7d5963.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269282,7 +269486,7 @@ }, { "question": "Molde kommune", - "icon": "./assets/data/nsi/logos/moldekommune-2efea4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moldekommune-2efea4.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269298,7 +269502,7 @@ }, { "question": "Münchenstift", - "icon": "./assets/data/nsi/logos/munchenstift-b322b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/munchenstift-b322b0.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269314,7 +269518,7 @@ }, { "question": "NHS", - "icon": "./assets/data/nsi/logos/nhs-bdda3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nhs-bdda3a.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269330,7 +269534,7 @@ }, { "question": "Norrköpings kommun", - "icon": "./assets/data/nsi/logos/norrkopingskommun-0c56f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norrkopingskommun-0c56f6.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269346,7 +269550,7 @@ }, { "question": "NRC", - "icon": "./assets/data/nsi/logos/norwegianrefugeecouncil-01cce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norwegianrefugeecouncil-01cce6.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269363,7 +269567,7 @@ }, { "question": "Oceania Healthcare", - "icon": "./assets/data/nsi/logos/oceaniahealthcare-97ad99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oceaniahealthcare-97ad99.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269381,7 +269585,7 @@ }, { "question": "OCMW", - "icon": "./assets/data/nsi/logos/ocmw-5c0b3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ocmw-5c0b3d.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269397,7 +269601,7 @@ }, { "question": "Orpéa", - "icon": "./assets/data/nsi/logos/orpea-704240.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/orpea-704240.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -269413,7 +269617,7 @@ }, { "question": "Oslo kommune", - "icon": "./assets/data/nsi/logos/oslokommune-2efea4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oslokommune-2efea4.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269429,7 +269633,7 @@ }, { "question": "Palang Merah Indonesia", - "icon": "./assets/data/nsi/logos/palangmerahindonesia-90bc4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palangmerahindonesia-90bc4f.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269446,7 +269650,7 @@ }, { "question": "Plunket", - "icon": "./assets/data/nsi/logos/plunket-97ad99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plunket-97ad99.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269523,7 +269727,7 @@ }, { "question": "Rummelsberger Diakonie", - "icon": "./assets/data/nsi/logos/rummelsbergerdiakonie-b322b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rummelsbergerdiakonie-b322b0.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269570,7 +269774,7 @@ }, { "question": "Sandnes kommune", - "icon": "./assets/data/nsi/logos/sandneskommune-2efea4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandneskommune-2efea4.svg", "osmTags": { "and": [ "amenity=social_facility", @@ -269615,7 +269819,7 @@ }, { "question": "Save the Children International", - "icon": "./assets/data/nsi/logos/savethechildreninternational-01cce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/savethechildreninternational-01cce6.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269645,7 +269849,7 @@ }, { "question": "Sozialwerk der Freien Christengemeinde Bremen e.V.", - "icon": "./assets/data/nsi/logos/sozialwerkderfreienchristengemeindebremenev-739aab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sozialwerkderfreienchristengemeindebremenev-739aab.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269661,7 +269865,7 @@ }, { "question": "Stadt Köln", - "icon": "./assets/data/nsi/logos/stadtkoln-f38aef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkoln-f38aef.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269691,7 +269895,7 @@ }, { "question": "Städtische Altenpflegeheime Leipzig gGmbH", - "icon": "./assets/data/nsi/logos/stadtischealtenpflegeheimeleipzigggmbh-000f65.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtischealtenpflegeheimeleipzigggmbh-000f65.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269707,7 +269911,7 @@ }, { "question": "Stavanger kommune", - "icon": "./assets/data/nsi/logos/stavangerkommune-2efea4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stavangerkommune-2efea4.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269754,7 +269958,7 @@ }, { "question": "Stiftung Eben-Ezer", - "icon": "./assets/data/nsi/logos/stiftungebenezer-f38aef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stiftungebenezer-f38aef.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269770,7 +269974,7 @@ }, { "question": "Stiftung für Schwerbehinderte Luzern", - "icon": "./assets/data/nsi/logos/stiftungfurschwerbehinderteluzern-cf20ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stiftungfurschwerbehinderteluzern-cf20ba.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269817,7 +270021,7 @@ }, { "question": "Summerset", - "icon": "./assets/data/nsi/logos/summerset-97ad99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/summerset-97ad99.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269835,7 +270039,7 @@ }, { "question": "Sunrise Senior Living", - "icon": "./assets/data/nsi/logos/sunriseseniorliving-04bb0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunriseseniorliving-04bb0a.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269851,7 +270055,7 @@ }, { "question": "Suomen Punainen Risti", - "icon": "./assets/data/nsi/logos/suomenpunainenristi-d65e34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suomenpunainenristi-d65e34.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269868,7 +270072,7 @@ }, { "question": "SVRZ", - "icon": "./assets/data/nsi/logos/svrz-627b49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/svrz-627b49.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269898,7 +270102,7 @@ }, { "question": "The Mission to Seafarers", - "icon": "./assets/data/nsi/logos/themissiontoseafarers-01cce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/themissiontoseafarers-01cce6.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269915,7 +270119,7 @@ }, { "question": "The Salvation Army", - "icon": "./assets/data/nsi/logos/thesalvationarmy-01cce6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-01cce6.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269931,7 +270135,7 @@ }, { "question": "The Trussell Trust", - "icon": "./assets/data/nsi/logos/thetrusselltrust-bdda3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thetrusselltrust-bdda3a.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269962,7 +270166,7 @@ }, { "question": "Umeå kommun", - "icon": "./assets/data/nsi/logos/umeakommun-0c56f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umeakommun-0c56f6.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -269978,7 +270182,7 @@ }, { "question": "UNHCR", - "icon": "./assets/data/nsi/logos/unhcr-01cce6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unhcr-01cce6.png", "osmTags": { "and": [ "amenity=social_facility", @@ -269994,7 +270198,7 @@ }, { "question": "Vardaga", - "icon": "./assets/data/nsi/logos/vardaga-0c56f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vardaga-0c56f6.png", "osmTags": { "and": [ "amenity=social_facility", @@ -270010,7 +270214,7 @@ }, { "question": "Vitanas", - "icon": "./assets/data/nsi/logos/vitanas-9a82eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitanas-9a82eb.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -270040,7 +270244,7 @@ }, { "question": "World Food Programme", - "icon": "./assets/data/nsi/logos/worldfoodprogramme-01cce6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/worldfoodprogramme-01cce6.png", "osmTags": { "and": [ "amenity=social_facility", @@ -270057,7 +270261,7 @@ }, { "question": "World Vision", - "icon": "./assets/data/nsi/logos/worldvision-01cce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldvision-01cce6.jpg", "osmTags": { "and": [ "amenity=social_facility", @@ -270133,7 +270337,7 @@ }, { "question": "A1", - "icon": "./assets/data/nsi/logos/a1-1e9ebd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a1-1e9ebd.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270148,7 +270352,7 @@ }, { "question": "Altice Portugal", - "icon": "./assets/data/nsi/logos/alticeportugal-b47ccc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alticeportugal-b47ccc.png", "osmTags": { "and": [ "amenity=telephone", @@ -270163,7 +270367,7 @@ }, { "question": "Antel", - "icon": "./assets/data/nsi/logos/antel-106ca3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/antel-106ca3.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270187,7 +270391,7 @@ }, { "question": "Arqiva", - "icon": "./assets/data/nsi/logos/arqiva-190dbf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arqiva-190dbf.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270202,7 +270406,7 @@ }, { "question": "Bell Aliant", - "icon": "./assets/data/nsi/logos/bellaliant-25374a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellaliant-25374a.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270217,7 +270421,7 @@ }, { "question": "Bell Canada", - "icon": "./assets/data/nsi/logos/bellcanada-25374a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellcanada-25374a.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270232,7 +270436,7 @@ }, { "question": "Bell MTS", - "icon": "./assets/data/nsi/logos/bellmts-c4f09e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellmts-c4f09e.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270261,7 +270465,7 @@ }, { "question": "BSNL", - "icon": "./assets/data/nsi/logos/bsnl-b0ab99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bsnl-b0ab99.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270276,7 +270480,7 @@ }, { "question": "BT (British Telecom)", - "icon": "./assets/data/nsi/logos/bt-2be02b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bt-2be02b.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270291,7 +270495,7 @@ }, { "question": "CANTV", - "icon": "./assets/data/nsi/logos/cantv-da1b5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cantv-da1b5a.png", "osmTags": { "and": [ "amenity=telephone", @@ -270306,7 +270510,7 @@ }, { "question": "Claro", - "icon": "./assets/data/nsi/logos/claro-6490cd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/claro-6490cd.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270330,7 +270534,7 @@ }, { "question": "Cyta", - "icon": "./assets/data/nsi/logos/cyta-414160.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyta-414160.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270345,7 +270549,7 @@ }, { "question": "Deutsche Telekom", - "icon": "./assets/data/nsi/logos/deutschetelekomag-fe847d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschetelekomag-fe847d.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270374,7 +270578,7 @@ }, { "question": "ETECSA", - "icon": "./assets/data/nsi/logos/etecsa-e894e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etecsa-e894e6.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270389,7 +270593,7 @@ }, { "question": "ethio telecom", - "icon": "./assets/data/nsi/logos/ethiotelecom-636f14.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ethiotelecom-636f14.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270441,7 +270645,7 @@ }, { "question": "JCDecaux", - "icon": "./assets/data/nsi/logos/jcdecaux-2be02b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcdecaux-2be02b.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270456,7 +270660,7 @@ }, { "question": "KCom", - "icon": "./assets/data/nsi/logos/kcom-190dbf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kcom-190dbf.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270503,7 +270707,7 @@ }, { "question": "Magyar Telekom", - "icon": "./assets/data/nsi/logos/magyartelekom-a3dfca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magyartelekom-a3dfca.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270518,7 +270722,7 @@ }, { "question": "Movistar", - "icon": "./assets/data/nsi/logos/movistar-2be02b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/movistar-2be02b.png", "osmTags": { "and": [ "amenity=telephone", @@ -270551,7 +270755,7 @@ }, { "question": "NTT東日本", - "icon": "./assets/data/nsi/logos/nippontelegraphandtelephoneeast-a6a893.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nippontelegraphandtelephoneeast-a6a893.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270571,7 +270775,7 @@ }, { "question": "NTT西日本", - "icon": "./assets/data/nsi/logos/nippontelegraphandtelephonewest-ff8e1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nippontelegraphandtelephonewest-ff8e1b.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270591,7 +270795,7 @@ }, { "question": "Oi", - "icon": "./assets/data/nsi/logos/oi-2d3d8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oi-2d3d8d.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270606,7 +270810,7 @@ }, { "question": "Ooredoo", - "icon": "./assets/data/nsi/logos/ooredoo-19d03a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ooredoo-19d03a.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270621,7 +270825,7 @@ }, { "question": "OPT (Nouvelle-Calédonie)", - "icon": "./assets/data/nsi/logos/officedespostesettelecommunicationsdenouvellecaledonie-32dfcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/officedespostesettelecommunicationsdenouvellecaledonie-32dfcb.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270637,7 +270841,7 @@ }, { "question": "OPT (Polynésie française)", - "icon": "./assets/data/nsi/logos/officedespostesettelecommunicationsdepolynesiefrancaise-6c2af3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/officedespostesettelecommunicationsdepolynesiefrancaise-6c2af3.png", "osmTags": { "and": [ "amenity=telephone", @@ -270653,7 +270857,7 @@ }, { "question": "Orange", - "icon": "./assets/data/nsi/logos/orange-2be02b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orange-2be02b.png", "osmTags": { "and": [ "amenity=telephone", @@ -270668,7 +270872,7 @@ }, { "question": "PLDT", - "icon": "./assets/data/nsi/logos/pldt-795ee8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pldt-795ee8.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270692,7 +270896,7 @@ }, { "question": "POST Luxembourg", - "icon": "./assets/data/nsi/logos/postluxembourg-0ddef4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/postluxembourg-0ddef4.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270721,7 +270925,7 @@ }, { "question": "R", - "icon": "./assets/data/nsi/logos/r-57fa2c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/r-57fa2c.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270759,7 +270963,7 @@ }, { "question": "Spark New Zealand", - "icon": "./assets/data/nsi/logos/sparknewzealand-2e73ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparknewzealand-2e73ba.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270783,7 +270987,7 @@ }, { "question": "Swisscom", - "icon": "./assets/data/nsi/logos/swisscom-2e827a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisscom-2e827a.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270798,7 +271002,7 @@ }, { "question": "Telecom Malaysia", - "icon": "./assets/data/nsi/logos/telecommalaysia-f8aa27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telecommalaysia-f8aa27.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270814,7 +271018,7 @@ }, { "question": "Telefónica", - "icon": "./assets/data/nsi/logos/telefonica-de3c7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telefonica-de3c7f.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270829,7 +271033,7 @@ }, { "question": "Telefônica Brasil", - "icon": "./assets/data/nsi/logos/telefonicabrasil-2d3d8d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telefonicabrasil-2d3d8d.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270844,7 +271048,7 @@ }, { "question": "Telefónica de Argentina S.A.", - "icon": "./assets/data/nsi/logos/telefonicadeargentinasa-b0400a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telefonicadeargentinasa-b0400a.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270859,7 +271063,7 @@ }, { "question": "Telenor", - "icon": "./assets/data/nsi/logos/telenor-2be02b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenor-2be02b.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270874,7 +271078,7 @@ }, { "question": "Telkom", - "icon": "./assets/data/nsi/logos/telkom-37d783.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telkom-37d783.svg", "osmTags": { "and": [ "amenity=telephone", @@ -270889,7 +271093,7 @@ }, { "question": "Telmex", - "icon": "./assets/data/nsi/logos/telmex-eff826.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telmex-eff826.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270904,7 +271108,7 @@ }, { "question": "Telstra", - "icon": "./assets/data/nsi/logos/telstra-c9cd58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telstra-c9cd58.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270919,7 +271123,7 @@ }, { "question": "Telus", - "icon": "./assets/data/nsi/logos/telus-25374a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telus-25374a.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270934,7 +271138,7 @@ }, { "question": "Tigo", - "icon": "./assets/data/nsi/logos/tigo-9cae6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tigo-9cae6a.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270949,7 +271153,7 @@ }, { "question": "TIM (Italia)", - "icon": "./assets/data/nsi/logos/tim-dc727e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tim-dc727e.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270964,7 +271168,7 @@ }, { "question": "TOT", - "icon": "./assets/data/nsi/logos/tot-c8699e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tot-c8699e.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -270979,7 +271183,7 @@ }, { "question": "Türk Telekom", - "icon": "./assets/data/nsi/logos/turktelekom-665e92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turktelekom-665e92.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -271003,7 +271207,7 @@ }, { "question": "Vivo", - "icon": "./assets/data/nsi/logos/vivo-2d3d8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vivo-2d3d8d.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -271018,7 +271222,7 @@ }, { "question": "ΟΤΕ", - "icon": "./assets/data/nsi/logos/387537-9da549.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/387537-9da549.svg", "osmTags": { "and": [ "amenity=telephone", @@ -271070,7 +271274,7 @@ }, { "question": "Ростелеком", - "icon": "./assets/data/nsi/logos/b6fed5-6db49f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/b6fed5-6db49f.svg", "osmTags": { "and": [ "amenity=telephone", @@ -271085,7 +271289,7 @@ }, { "question": "בזק", - "icon": "./assets/data/nsi/logos/bezeq-f642b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bezeq-f642b6.jpg", "osmTags": { "and": [ "amenity=telephone", @@ -271102,7 +271306,7 @@ }, { "question": "中華電信", - "icon": "./assets/data/nsi/logos/chunghwatelecom-ac3b33.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chunghwatelecom-ac3b33.svg", "osmTags": { "and": [ "amenity=telephone", @@ -271119,7 +271323,7 @@ }, { "question": "AT HOP Validator", - "icon": "./assets/data/nsi/logos/at-0b3968.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/at-0b3968.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271134,7 +271338,7 @@ }, { "question": "Caltrain", - "icon": "./assets/data/nsi/logos/caltrain-883676.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caltrain-883676.png", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271158,7 +271362,7 @@ }, { "question": "CTS (Strasbourg)", - "icon": "./assets/data/nsi/logos/compagniedestransportsstrasbourgeois-b6a498.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compagniedestransportsstrasbourgeois-b6a498.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271174,7 +271378,7 @@ }, { "question": "DB Vertrieb GmbH", - "icon": "./assets/data/nsi/logos/dbvertriebgmbh-f980d0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbvertriebgmbh-f980d0.svg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271189,7 +271393,7 @@ }, { "question": "Deutsche Bahn", - "icon": "./assets/data/nsi/logos/deutschebahn-f980d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebahn-f980d0.png", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271218,7 +271422,7 @@ }, { "question": "Metlink", - "icon": "./assets/data/nsi/logos/metlink-3eb661.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metlink-3eb661.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271233,7 +271437,7 @@ }, { "question": "Nederlandse Spoorwegen", - "icon": "./assets/data/nsi/logos/nederlandsespoorwegen-23194f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-23194f.png", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271257,7 +271461,7 @@ }, { "question": "Regional Transportation District", - "icon": "./assets/data/nsi/logos/regionaltransportationdistrict-4cc7a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regionaltransportationdistrict-4cc7a7.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271273,7 +271477,7 @@ }, { "question": "S-Bahn Berlin GmbH", - "icon": "./assets/data/nsi/logos/sbahnberlingmbh-666711.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbahnberlingmbh-666711.svg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271288,7 +271492,7 @@ }, { "question": "SBB - CFF - FFS", - "icon": "./assets/data/nsi/logos/sbbcffffs-ac77cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbbcffffs-ac77cd.png", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271324,7 +271528,7 @@ }, { "question": "TER Hauts-de-France", - "icon": "./assets/data/nsi/logos/terhautsdefrance-258336.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/terhautsdefrance-258336.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271353,7 +271557,7 @@ }, { "question": "Translink", - "icon": "./assets/data/nsi/logos/translink-2260c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/translink-2260c1.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271368,7 +271572,7 @@ }, { "question": "Transport for London", - "icon": "./assets/data/nsi/logos/transportforlondon-73d484.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transportforlondon-73d484.png", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271384,7 +271588,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-832030.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-832030.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271399,7 +271603,7 @@ }, { "question": "Transport for West Midlands", - "icon": "./assets/data/nsi/logos/transportforwestmidlands-1d1aee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportforwestmidlands-1d1aee.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271423,7 +271627,7 @@ }, { "question": "Trenitalia", - "icon": "./assets/data/nsi/logos/trenitalia-73a324.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trenitalia-73a324.png", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271448,7 +271652,7 @@ }, { "question": "WSW", - "icon": "./assets/data/nsi/logos/wsw-08753d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wsw-08753d.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271463,7 +271667,7 @@ }, { "question": "WSW mobil GmbH", - "icon": "./assets/data/nsi/logos/wswmobilgmbh-f980d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wswmobilgmbh-f980d0.jpg", "osmTags": { "and": [ "amenity=ticket_validator", @@ -271493,7 +271697,7 @@ }, { "question": "2theloo", - "icon": "./assets/data/nsi/logos/2theloo-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/2theloo-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -271508,7 +271712,7 @@ }, { "question": "Action contre la Faim", - "icon": "./assets/data/nsi/logos/actioncontrelafaim-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/actioncontrelafaim-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -271526,7 +271730,7 @@ }, { "question": "AFCD", - "icon": "./assets/data/nsi/logos/agriculturefisheriesandconservationdepartment-70c95d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agriculturefisheriesandconservationdepartment-70c95d.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271557,7 +271761,7 @@ }, { "question": "Asda", - "icon": "./assets/data/nsi/logos/asda-4f5d70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/asda-4f5d70.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271572,7 +271776,7 @@ }, { "question": "ASFINAG", - "icon": "./assets/data/nsi/logos/asfinag-dd4146.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/asfinag-dd4146.svg", "osmTags": { "and": [ "amenity=toilets", @@ -271596,7 +271800,7 @@ }, { "question": "Ayuntamiento de Madrid", - "icon": "./assets/data/nsi/logos/ayuntamientodemadrid-6c3752.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-6c3752.png", "osmTags": { "and": [ "amenity=toilets", @@ -271611,7 +271815,7 @@ }, { "question": "Ayuntamiento de Pamplona", - "icon": "./assets/data/nsi/logos/ayuntamientodepamplona-4984c1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodepamplona-4984c1.svg", "osmTags": { "and": [ "amenity=toilets", @@ -271626,7 +271830,7 @@ }, { "question": "BC Parks", - "icon": "./assets/data/nsi/logos/bcparks-af8860.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcparks-af8860.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271641,7 +271845,7 @@ }, { "question": "Belfast City Council", - "icon": "./assets/data/nsi/logos/belfastcitycouncil-93a25a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belfastcitycouncil-93a25a.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271657,7 +271861,7 @@ }, { "question": "Bowling Green State University", - "icon": "./assets/data/nsi/logos/bowlinggreenstateuniversity-ee33ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-ee33ef.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271673,7 +271877,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271688,7 +271892,7 @@ }, { "question": "Brisbane City Council", - "icon": "./assets/data/nsi/logos/brisbanecitycouncil-1f33cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brisbanecitycouncil-1f33cd.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271703,7 +271907,7 @@ }, { "question": "British Red Cross", - "icon": "./assets/data/nsi/logos/britishredcross-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/britishredcross-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -271718,7 +271922,7 @@ }, { "question": "Bruhat Bengaluru Mahanagara Palike", - "icon": "./assets/data/nsi/logos/bruhatbengalurumahanagarapalike-5a8295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bruhatbengalurumahanagarapalike-5a8295.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271734,7 +271938,7 @@ }, { "question": "Bureau of Land Management", - "icon": "./assets/data/nsi/logos/bureauoflandmanagement-a5d9f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-a5d9f0.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271750,7 +271954,7 @@ }, { "question": "Burger King toilets", - "icon": "./assets/data/nsi/logos/burgerking-b9c42e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-b9c42e.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271765,7 +271969,7 @@ }, { "question": "Câmara Municipal de Lisboa", - "icon": "./assets/data/nsi/logos/camaramunicipaldelisboa-1f5e60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camaramunicipaldelisboa-1f5e60.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271789,7 +271993,7 @@ }, { "question": "Canal & River Trust", - "icon": "./assets/data/nsi/logos/canalandrivertrust-4f5d70.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canalandrivertrust-4f5d70.png", "osmTags": { "and": [ "amenity=toilets", @@ -271804,7 +272008,7 @@ }, { "question": "Carrefour", - "icon": "./assets/data/nsi/logos/carrefour-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -271819,7 +272023,7 @@ }, { "question": "Catholic Relief Services", - "icon": "./assets/data/nsi/logos/catholicreliefservices-481bb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/catholicreliefservices-481bb7.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271863,7 +272067,7 @@ }, { "question": "Circle K", - "icon": "./assets/data/nsi/logos/circlek-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -271878,7 +272082,7 @@ }, { "question": "City of Calgary", - "icon": "./assets/data/nsi/logos/cityofcalgary-fa5474.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcalgary-fa5474.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271894,7 +272098,7 @@ }, { "question": "City of Cape Town", - "icon": "./assets/data/nsi/logos/cityofcapetown-48ee64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-48ee64.png", "osmTags": { "and": [ "amenity=toilets", @@ -271913,7 +272117,7 @@ }, { "question": "City of Ottawa", - "icon": "./assets/data/nsi/logos/cityofottawa-7c1906.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofottawa-7c1906.svg", "osmTags": { "and": [ "amenity=toilets", @@ -271929,7 +272133,7 @@ }, { "question": "City of Windhoek", - "icon": "./assets/data/nsi/logos/cityofwindhoek-1c76ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwindhoek-1c76ba.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271944,7 +272148,7 @@ }, { "question": "Croix-rouge Britanique", - "icon": "./assets/data/nsi/logos/croixrougebritanique-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/croixrougebritanique-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -271959,7 +272163,7 @@ }, { "question": "Croix-Rouge française", - "icon": "./assets/data/nsi/logos/croixrougefrancaise-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/croixrougefrancaise-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -271989,7 +272193,7 @@ }, { "question": "Curtin University", - "icon": "./assets/data/nsi/logos/curtinuniversity-ea8b29.png", + "icon": "https://data.mapcomplete.org/nsi//logos/curtinuniversity-ea8b29.png", "osmTags": { "and": [ "amenity=toilets", @@ -272004,7 +272208,7 @@ }, { "question": "Danish Refugee Council", - "icon": "./assets/data/nsi/logos/danishrefugeecouncil-4a7536.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/danishrefugeecouncil-4a7536.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272020,7 +272224,7 @@ }, { "question": "Department of Conservation (New Zealand)", - "icon": "./assets/data/nsi/logos/departmentofconservation-7e943b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-7e943b.png", "osmTags": { "and": [ "amenity=toilets", @@ -272035,7 +272239,7 @@ }, { "question": "Department of Conservation and Recreation (Massachusetts)", - "icon": "./assets/data/nsi/logos/departmentofconservationandrecreation-536e2b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofconservationandrecreation-536e2b.svg", "osmTags": { "and": [ "amenity=toilets", @@ -272051,7 +272255,7 @@ }, { "question": "Durham Technical Community College", - "icon": "./assets/data/nsi/logos/durhamtechnicalcommunitycollege-a5c9d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/durhamtechnicalcommunitycollege-a5c9d1.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272066,7 +272270,7 @@ }, { "question": "Eastbourne Borough Council", - "icon": "./assets/data/nsi/logos/eastbourneboroughcouncil-94d3cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastbourneboroughcouncil-94d3cf.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272096,7 +272300,7 @@ }, { "question": "Edeka", - "icon": "./assets/data/nsi/logos/edeka-a4f70c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edeka-a4f70c.png", "osmTags": { "and": [ "amenity=toilets", @@ -272111,7 +272315,7 @@ }, { "question": "Einwohnergemeinde Baar", - "icon": "./assets/data/nsi/logos/einwohnergemeindebaar-5e4f87.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/einwohnergemeindebaar-5e4f87.svg", "osmTags": { "and": [ "amenity=toilets", @@ -272168,7 +272372,7 @@ }, { "question": "Flughafen Zürich AG", - "icon": "./assets/data/nsi/logos/flughafenzurichag-960a4a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/flughafenzurichag-960a4a.svg", "osmTags": { "and": [ "amenity=toilets", @@ -272183,7 +272387,7 @@ }, { "question": "Fort Cobb State Park", - "icon": "./assets/data/nsi/logos/fortcobbstatepark-c3f3e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortcobbstatepark-c3f3e2.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272236,7 +272440,7 @@ }, { "question": "Government of Jersey", - "icon": "./assets/data/nsi/logos/governmentofjersey-057698.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentofjersey-057698.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272251,7 +272455,7 @@ }, { "question": "Haderslev Kommune", - "icon": "./assets/data/nsi/logos/haderslevkommune-2d1379.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/haderslevkommune-2d1379.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272266,7 +272470,7 @@ }, { "question": "Halifax Regional Municipality", - "icon": "./assets/data/nsi/logos/halifaxregionalmunicipality-59976c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halifaxregionalmunicipality-59976c.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272304,7 +272508,7 @@ }, { "question": "IOM", - "icon": "./assets/data/nsi/logos/iom-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iom-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272319,7 +272523,7 @@ }, { "question": "JCDecaux", - "icon": "./assets/data/nsi/logos/jcdecaux-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jcdecaux-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272334,7 +272538,7 @@ }, { "question": "Kaufland", - "icon": "./assets/data/nsi/logos/kaufland-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kaufland-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -272363,7 +272567,7 @@ }, { "question": "Kent State University", - "icon": "./assets/data/nsi/logos/kentstateuniversity-ee33ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-ee33ef.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272378,7 +272582,7 @@ }, { "question": "KFC", - "icon": "./assets/data/nsi/logos/kfc-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kfc-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272402,7 +272606,7 @@ }, { "question": "Leisure and Cultural Services Department", - "icon": "./assets/data/nsi/logos/leisureandculturalservicesdepartment-70c95d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leisureandculturalservicesdepartment-70c95d.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272418,7 +272622,7 @@ }, { "question": "Lutheran World Federation", - "icon": "./assets/data/nsi/logos/lutheranworldfederation-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lutheranworldfederation-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -272462,7 +272666,7 @@ }, { "question": "MÁV", - "icon": "./assets/data/nsi/logos/mav-c8692e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mav-c8692e.svg", "osmTags": { "and": [ "amenity=toilets", @@ -272477,7 +272681,7 @@ }, { "question": "McDonald's", - "icon": "./assets/data/nsi/logos/mcdonalds-70db25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-70db25.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272492,7 +272696,7 @@ }, { "question": "Melbourne City Council", - "icon": "./assets/data/nsi/logos/melbournecitycouncil-1f48c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/melbournecitycouncil-1f48c5.png", "osmTags": { "and": [ "amenity=toilets", @@ -272507,7 +272711,7 @@ }, { "question": "Metro Warszawskie Sp. z o.o.", - "icon": "./assets/data/nsi/logos/metrowarszawskiespzoo-dbab0a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metrowarszawskiespzoo-dbab0a.svg", "osmTags": { "and": [ "amenity=toilets", @@ -272522,7 +272726,7 @@ }, { "question": "Métropole de Lyon", - "icon": "./assets/data/nsi/logos/metropoledelyon-28a80b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropoledelyon-28a80b.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272537,7 +272741,7 @@ }, { "question": "Metsähallitus", - "icon": "./assets/data/nsi/logos/metsahallitus-086043.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metsahallitus-086043.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272552,7 +272756,7 @@ }, { "question": "Miami Dade College", - "icon": "./assets/data/nsi/logos/miamidadecollege-67f563.png", + "icon": "https://data.mapcomplete.org/nsi//logos/miamidadecollege-67f563.png", "osmTags": { "and": [ "amenity=toilets", @@ -272567,7 +272771,7 @@ }, { "question": "Michigan Department of Natural Resources", - "icon": "./assets/data/nsi/logos/michigandepartmentofnaturalresources-4d3dc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofnaturalresources-4d3dc8.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272583,7 +272787,7 @@ }, { "question": "Morrisons", - "icon": "./assets/data/nsi/logos/morrisons-4f5d70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morrisons-4f5d70.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272598,7 +272802,7 @@ }, { "question": "Mosman Council", - "icon": "./assets/data/nsi/logos/mosmancouncil-3fb4b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mosmancouncil-3fb4b7.png", "osmTags": { "and": [ "amenity=toilets", @@ -272613,7 +272817,7 @@ }, { "question": "National Capital Commission", - "icon": "./assets/data/nsi/logos/nationalcapitalcommission-7c1906.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalcapitalcommission-7c1906.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272629,7 +272833,7 @@ }, { "question": "National Park Service", - "icon": "./assets/data/nsi/logos/nationalparkservice-a5d9f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-a5d9f0.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272645,7 +272849,7 @@ }, { "question": "National Trust", - "icon": "./assets/data/nsi/logos/nationaltrust-c8175c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrust-c8175c.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272661,7 +272865,7 @@ }, { "question": "National Trust for Scotland", - "icon": "./assets/data/nsi/logos/nationaltrustforscotland-cd0adc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-cd0adc.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272678,7 +272882,7 @@ }, { "question": "Neste", - "icon": "./assets/data/nsi/logos/neste-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/neste-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -272707,7 +272911,7 @@ }, { "question": "Nordseeheilbad Cuxhaven GmbH", - "icon": "./assets/data/nsi/logos/nordseeheilbadcuxhavengmbh-b913f2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nordseeheilbadcuxhavengmbh-b913f2.png", "osmTags": { "and": [ "amenity=toilets", @@ -272722,6 +272926,7 @@ }, { "question": "North Sydney Council", + "icon": "https://data.mapcomplete.org/nsi//logos/northsydneycouncil-3fb4b7.png", "osmTags": { "and": [ "amenity=toilets", @@ -272736,6 +272941,7 @@ }, { "question": "Northern Beaches Council", + "icon": "https://data.mapcomplete.org/nsi//logos/northernbeachescouncil-3fb4b7.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272750,7 +272956,7 @@ }, { "question": "NRC", - "icon": "./assets/data/nsi/logos/norwegianrefugeecouncil-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norwegianrefugeecouncil-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272766,7 +272972,7 @@ }, { "question": "NSW National Parks and Wildlife Service", - "icon": "./assets/data/nsi/logos/nswnationalparksandwildlifeservice-3fb4b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswnationalparksandwildlifeservice-3fb4b7.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272796,7 +273002,7 @@ }, { "question": "ÖBB", - "icon": "./assets/data/nsi/logos/obb-dd4146.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obb-dd4146.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272820,7 +273026,7 @@ }, { "question": "Oxfam", - "icon": "./assets/data/nsi/logos/oxfam-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oxfam-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272835,7 +273041,7 @@ }, { "question": "Parks Canada", - "icon": "./assets/data/nsi/logos/parkscanada-ab7656.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkscanada-ab7656.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272850,7 +273056,7 @@ }, { "question": "Parks Victoria", - "icon": "./assets/data/nsi/logos/parksvictoria-1f48c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parksvictoria-1f48c5.png", "osmTags": { "and": [ "amenity=toilets", @@ -272865,7 +273071,7 @@ }, { "question": "Petron", - "icon": "./assets/data/nsi/logos/petron-d85df6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petron-d85df6.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272880,7 +273086,7 @@ }, { "question": "Philmont Scout Ranch", - "icon": "./assets/data/nsi/logos/philmontscoutranch-6e5f60.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/philmontscoutranch-6e5f60.svg", "osmTags": { "and": [ "amenity=toilets", @@ -272895,7 +273101,7 @@ }, { "question": "Rewe", - "icon": "./assets/data/nsi/logos/rewe-a4f70c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rewe-a4f70c.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272924,7 +273130,7 @@ }, { "question": "Rother District Council", - "icon": "./assets/data/nsi/logos/rotherdistrictcouncil-a7de47.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rotherdistrictcouncil-a7de47.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272939,7 +273145,7 @@ }, { "question": "Sainsbury's", - "icon": "./assets/data/nsi/logos/sainsburys-4f5d70.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sainsburys-4f5d70.png", "osmTags": { "and": [ "amenity=toilets", @@ -272954,7 +273160,7 @@ }, { "question": "SANIFAIR", - "icon": "./assets/data/nsi/logos/sanifairgmbh-99935b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanifairgmbh-99935b.svg", "osmTags": { "and": [ "amenity=toilets", @@ -272972,7 +273178,7 @@ }, { "question": "Save the Children", - "icon": "./assets/data/nsi/logos/savethechildren-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/savethechildren-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -272987,7 +273193,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-cb9186.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-cb9186.png", "osmTags": { "and": [ "amenity=toilets", @@ -273002,7 +273208,7 @@ }, { "question": "SBM Toilets", - "icon": "./assets/data/nsi/logos/swachhbharatmission-5a8295.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/swachhbharatmission-5a8295.svg", "osmTags": { "and": [ "amenity=toilets", @@ -273018,7 +273224,7 @@ }, { "question": "Serways", - "icon": "./assets/data/nsi/logos/serways-a4f70c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/serways-a4f70c.svg", "osmTags": { "and": [ "amenity=toilets", @@ -273033,7 +273239,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273062,7 +273268,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-73fc0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-73fc0c.png", "osmTags": { "and": [ "amenity=toilets", @@ -273077,7 +273283,7 @@ }, { "question": "Somerset Council", - "icon": "./assets/data/nsi/logos/somersetcouncil-8471a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-8471a3.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273093,7 +273299,7 @@ }, { "question": "South African National Parks", - "icon": "./assets/data/nsi/logos/southafricannationalparks-48ee64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southafricannationalparks-48ee64.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273122,7 +273328,7 @@ }, { "question": "Stad Gent", - "icon": "./assets/data/nsi/logos/stadgent-d606a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadgent-d606a5.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273137,7 +273343,7 @@ }, { "question": "Stadt Graz", - "icon": "./assets/data/nsi/logos/stadtgraz-4f5743.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgraz-4f5743.svg", "osmTags": { "and": [ "amenity=toilets", @@ -273152,7 +273358,7 @@ }, { "question": "Stadt Karlsruhe", - "icon": "./assets/data/nsi/logos/stadtkarlsruhe-ee7438.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-ee7438.png", "osmTags": { "and": [ "amenity=toilets", @@ -273190,7 +273396,7 @@ }, { "question": "Stadtreinigung Hamburg", - "icon": "./assets/data/nsi/logos/stadtreinigunghamburg-263841.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtreinigunghamburg-263841.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273205,7 +273411,7 @@ }, { "question": "Sulabh International", - "icon": "./assets/data/nsi/logos/sulabhinternational-5a8295.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sulabhinternational-5a8295.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273220,7 +273426,7 @@ }, { "question": "Sydney Trains", - "icon": "./assets/data/nsi/logos/sydneytrains-3fb4b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sydneytrains-3fb4b7.png", "osmTags": { "and": [ "amenity=toilets", @@ -273235,7 +273441,7 @@ }, { "question": "Tank ONO s.r.o.", - "icon": "./assets/data/nsi/logos/tankonosro-1edb53.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/tankonosro-1edb53.gif", "osmTags": { "and": [ "amenity=toilets", @@ -273250,7 +273456,7 @@ }, { "question": "Tasmania Parks and Wildlife Service", - "icon": "./assets/data/nsi/logos/tasmaniaparksandwildlifeservice-55b315.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tasmaniaparksandwildlifeservice-55b315.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273265,7 +273471,7 @@ }, { "question": "Teboil", - "icon": "./assets/data/nsi/logos/teboil-cadadd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teboil-cadadd.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273280,7 +273486,7 @@ }, { "question": "Technische Universität Dresden", - "icon": "./assets/data/nsi/logos/technischeuniversitatdresden-6ee337.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technischeuniversitatdresden-6ee337.png", "osmTags": { "and": [ "amenity=toilets", @@ -273295,7 +273501,7 @@ }, { "question": "Technische Universität Ilmenau", - "icon": "./assets/data/nsi/logos/technischeuniversitatilmenau-d67e15.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/technischeuniversitatilmenau-d67e15.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273310,7 +273516,7 @@ }, { "question": "Technisches Hilfswerk", - "icon": "./assets/data/nsi/logos/technischeshilfswerk-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/technischeshilfswerk-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273326,7 +273532,7 @@ }, { "question": "The Highland Council", - "icon": "./assets/data/nsi/logos/thehighlandcouncil-cd0adc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehighlandcouncil-cd0adc.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273341,7 +273547,7 @@ }, { "question": "The Portland Loo", - "icon": "./assets/data/nsi/logos/cityofportland-346746.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofportland-346746.svg", "osmTags": { "and": [ "amenity=toilets", @@ -273361,7 +273567,7 @@ }, { "question": "The Salvation Army", - "icon": "./assets/data/nsi/logos/thesalvationarmy-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thesalvationarmy-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -273376,6 +273582,7 @@ }, { "question": "Toi Toi", + "icon": "https://data.mapcomplete.org/nsi//logos/toitoi-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273390,7 +273597,7 @@ }, { "question": "Trafikverket", - "icon": "./assets/data/nsi/logos/trafikverket-05ca0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trafikverket-05ca0b.png", "osmTags": { "and": [ "amenity=toilets", @@ -273405,7 +273612,7 @@ }, { "question": "Trenes Argentinos", - "icon": "./assets/data/nsi/logos/trenesargentinos-3cb239.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-3cb239.svg", "osmTags": { "and": [ "amenity=toilets", @@ -273420,7 +273627,7 @@ }, { "question": "UNHCR", - "icon": "./assets/data/nsi/logos/unhcr-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unhcr-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -273435,7 +273642,7 @@ }, { "question": "UNICEF", - "icon": "./assets/data/nsi/logos/unicef-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unicef-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273464,7 +273671,7 @@ }, { "question": "United States Forest Service", - "icon": "./assets/data/nsi/logos/unitedstatesforestservice-a5d9f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesforestservice-a5d9f0.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273480,7 +273687,7 @@ }, { "question": "Universidad Tecnológica de Pereira", - "icon": "./assets/data/nsi/logos/universidadtecnologicadepereira-452bf3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universidadtecnologicadepereira-452bf3.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273505,7 +273712,7 @@ }, { "question": "Vanuatu Red Cross Society", - "icon": "./assets/data/nsi/logos/vanuaturedcrosssociety-ad746b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vanuaturedcrosssociety-ad746b.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273548,7 +273755,7 @@ }, { "question": "Ville de Bruxelles - Stad Brussel", - "icon": "./assets/data/nsi/logos/villedebruxellesstadbrussel-d606a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedebruxellesstadbrussel-d606a5.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273621,7 +273828,7 @@ }, { "question": "Ville de Vevey", - "icon": "./assets/data/nsi/logos/villedevevey-4c0236.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedevevey-4c0236.svg", "osmTags": { "and": [ "amenity=toilets", @@ -273636,7 +273843,7 @@ }, { "question": "Wall", - "icon": "./assets/data/nsi/logos/wall-a4f70c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wall-a4f70c.svg", "osmTags": { "and": [ "amenity=toilets", @@ -273651,7 +273858,7 @@ }, { "question": "Washington Department of Fish and Wildlife", - "icon": "./assets/data/nsi/logos/washingtondepartmentoffishandwildlife-6e9e2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtondepartmentoffishandwildlife-6e9e2e.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -273699,7 +273906,7 @@ }, { "question": "World Food Programme", - "icon": "./assets/data/nsi/logos/worldfoodprogramme-48c608.png", + "icon": "https://data.mapcomplete.org/nsi//logos/worldfoodprogramme-48c608.png", "osmTags": { "and": [ "amenity=toilets", @@ -273715,7 +273922,7 @@ }, { "question": "World Vision", - "icon": "./assets/data/nsi/logos/worldvision-48c608.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/worldvision-48c608.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -274123,7 +274330,7 @@ }, { "question": "食物環境衞生署 Food and Environmental Hygiene Department", - "icon": "./assets/data/nsi/logos/foodandenvironmentalhygienedepartment-70c95d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/foodandenvironmentalhygienedepartment-70c95d.jpg", "osmTags": { "and": [ "amenity=toilets", @@ -274161,7 +274368,7 @@ }, { "question": "City of Ekurhuleni", - "icon": "./assets/data/nsi/logos/cityofekurhuleni-7b4eec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofekurhuleni-7b4eec.jpg", "osmTags": { "and": [ "amenity=townhall", @@ -274176,7 +274383,7 @@ }, { "question": "Gemeente Rotterdam", - "icon": "./assets/data/nsi/logos/gemeenterotterdam-7a23ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-7a23ae.jpg", "osmTags": { "and": [ "amenity=townhall", @@ -274255,7 +274462,7 @@ }, { "question": "Stadt Ludwigshafen am Rhein", - "icon": "./assets/data/nsi/logos/stadtludwigshafenamrhein-0751eb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtludwigshafenamrhein-0751eb.svg", "osmTags": { "and": [ "amenity=townhall", @@ -274270,7 +274477,7 @@ }, { "question": "Stadt Schwäbisch Gmünd", - "icon": "./assets/data/nsi/logos/stadtschwabischgmund-40dca9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtschwabischgmund-40dca9.svg", "osmTags": { "and": [ "amenity=townhall", @@ -274294,7 +274501,7 @@ }, { "question": "Община Варна", - "icon": "./assets/data/nsi/logos/ef66ae-a72f79.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ef66ae-a72f79.svg", "osmTags": { "and": [ "amenity=townhall", @@ -274309,7 +274516,7 @@ }, { "question": "Община Пловдив", - "icon": "./assets/data/nsi/logos/4d455f-a72f79.png", + "icon": "https://data.mapcomplete.org/nsi//logos/4d455f-a72f79.png", "osmTags": { "and": [ "amenity=townhall", @@ -274324,7 +274531,7 @@ }, { "question": "Столична община", - "icon": "./assets/data/nsi/logos/4c66bf-a72f79.png", + "icon": "https://data.mapcomplete.org/nsi//logos/4c66bf-a72f79.png", "osmTags": { "and": [ "amenity=townhall", @@ -274366,7 +274573,7 @@ }, { "question": "Instituto Politécnico Nacional", - "icon": "./assets/data/nsi/logos/institutopolitecniconacional-c5122f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutopolitecniconacional-c5122f.jpg", "osmTags": { "and": [ "amenity=university", @@ -274382,7 +274589,7 @@ }, { "question": "Keiser University", - "icon": "./assets/data/nsi/logos/keiseruniversity-bc9681.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keiseruniversity-bc9681.jpg", "osmTags": { "and": [ "amenity=university", @@ -274399,7 +274606,7 @@ }, { "question": "ALIAE péage", - "icon": "./assets/data/nsi/logos/aliae-187795.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aliae-187795.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -274445,7 +274652,7 @@ }, { "question": "AT HOP Top-Up Machine", - "icon": "./assets/data/nsi/logos/at-7f6a8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/at-7f6a8f.jpg", "osmTags": { "and": [ "vending=public_transport_tickets", @@ -274461,7 +274668,7 @@ }, { "question": "Mennica Polska (ZTM Warszawa)", - "icon": "./assets/data/nsi/logos/mennicapolska-a736eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mennicapolska-a736eb.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -274511,7 +274718,7 @@ }, { "question": "Mesto Košice", - "icon": "./assets/data/nsi/logos/mestokosice-3d34f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestokosice-3d34f5.jpg", "osmTags": { "and": [ "vending=parking_tickets", @@ -274528,7 +274735,7 @@ }, { "question": "Pharmaself24", - "icon": "./assets/data/nsi/logos/pharmaself24-44db7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pharmaself24-44db7a.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -274544,7 +274751,7 @@ }, { "question": "RetuRO", - "icon": "./assets/data/nsi/logos/returo-33f2a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/returo-33f2a6.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -274577,7 +274784,7 @@ }, { "question": "RingGo", - "icon": "./assets/data/nsi/logos/ringgo-6fe21e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ringgo-6fe21e.jpg", "osmTags": { "and": [ "vending=parking_tickets", @@ -274593,7 +274800,7 @@ }, { "question": "SANEF péage", - "icon": "./assets/data/nsi/logos/sanef-dc912e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanef-dc912e.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -274612,7 +274819,7 @@ }, { "question": "Somerset Council", - "icon": "./assets/data/nsi/logos/somersetcouncil-ef1a8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-ef1a8e.jpg", "osmTags": { "and": [ "vending=parking_tickets", @@ -274629,7 +274836,7 @@ }, { "question": "Translink", - "icon": "./assets/data/nsi/logos/translink-b39439.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/translink-b39439.jpg", "osmTags": { "and": [ "amenity=vending_machine", @@ -274668,7 +274875,7 @@ }, { "question": "Метрополитен", - "icon": "./assets/data/nsi/logos/184e0b-c8e53b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/184e0b-c8e53b.svg", "osmTags": { "and": [ "amenity=vending_machine", @@ -274710,7 +274917,7 @@ }, { "question": "Thrive Pet Healthcare", - "icon": "./assets/data/nsi/logos/thrivepethealthcare-af633f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thrivepethealthcare-af633f.png", "osmTags": { "and": [ "amenity=veterinary", @@ -274743,7 +274950,7 @@ }, { "question": "N3 Toll Concession Ltd", - "icon": "./assets/data/nsi/logos/n3tollconcessionltd-073dc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/n3tollconcessionltd-073dc4.jpg", "osmTags": { "and": [ "barrier=toll_booth", @@ -274759,7 +274966,7 @@ }, { "question": "South African National Roads Agency", - "icon": "./assets/data/nsi/logos/southafricannationalroadsagency-073dc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southafricannationalroadsagency-073dc4.jpg", "osmTags": { "and": [ "barrier=toll_booth", @@ -274775,7 +274982,7 @@ }, { "question": "Bureau of Indian Affairs", - "icon": "./assets/data/nsi/logos/bureauofindianaffairs-9a1c88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauofindianaffairs-9a1c88.jpg", "osmTags": { "and": [ "boundary=aboriginal_lands", @@ -274792,7 +274999,7 @@ }, { "question": "ACT Parks and Conservation Service", - "icon": "./assets/data/nsi/logos/actparksandconservationservice-1512f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/actparksandconservationservice-1512f7.png", "osmTags": { "and": [ "boundary=national_park", @@ -274807,7 +275014,7 @@ }, { "question": "Bahamas National Trust", - "icon": "./assets/data/nsi/logos/bahamasnationaltrust-243c3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bahamasnationaltrust-243c3a.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274822,7 +275029,7 @@ }, { "question": "BC Parks", - "icon": "./assets/data/nsi/logos/bcparks-9f409c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcparks-9f409c.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274837,7 +275044,7 @@ }, { "question": "Bureau of Land Management", - "icon": "./assets/data/nsi/logos/bureauoflandmanagement-918b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-918b1c.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274854,7 +275061,7 @@ }, { "question": "California Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/californiadepartmentofparksandrecreation-789082.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofparksandrecreation-789082.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274870,7 +275077,7 @@ }, { "question": "Comisión Nacional de Áreas Naturales Protegidas", - "icon": "./assets/data/nsi/logos/comisionnacionaldeareasnaturalesprotegidas-5f811a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionnacionaldeareasnaturalesprotegidas-5f811a.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274886,7 +275093,7 @@ }, { "question": "Instituto Nacional de Parques", - "icon": "./assets/data/nsi/logos/institutonacionaldeparques-08aba9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutonacionaldeparques-08aba9.svg", "osmTags": { "and": [ "boundary=national_park", @@ -274917,7 +275124,7 @@ }, { "question": "Metsähallitus", - "icon": "./assets/data/nsi/logos/metsahallitus-c049cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metsahallitus-c049cd.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274932,7 +275139,7 @@ }, { "question": "National Park Service", - "icon": "./assets/data/nsi/logos/nationalparkservice-918b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-918b1c.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274951,7 +275158,7 @@ }, { "question": "National Parks and Wildlife Service South Australia", - "icon": "./assets/data/nsi/logos/nationalparksandwildlifeservicesouthaustralia-cf0481.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparksandwildlifeservicesouthaustralia-cf0481.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274966,7 +275173,7 @@ }, { "question": "Nebraska Game and Parks Commission", - "icon": "./assets/data/nsi/logos/nebraskagameandparkscommission-2f5d74.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nebraskagameandparkscommission-2f5d74.png", "osmTags": { "and": [ "boundary=national_park", @@ -274983,7 +275190,7 @@ }, { "question": "NSW National Parks and Wildlife Service", - "icon": "./assets/data/nsi/logos/nswnationalparksandwildlifeservice-1c4cc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswnationalparksandwildlifeservice-1c4cc3.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -274999,7 +275206,7 @@ }, { "question": "Ohio Department of Natural Resources", - "icon": "./assets/data/nsi/logos/ohiodepartmentofnaturalresources-376ab0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofnaturalresources-376ab0.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -275016,7 +275223,7 @@ }, { "question": "Ontario Parks", - "icon": "./assets/data/nsi/logos/ontarioparks-71e570.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ontarioparks-71e570.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -275032,7 +275239,7 @@ }, { "question": "Parks and Wildlife Service (Western Australia)", - "icon": "./assets/data/nsi/logos/parksandwildlifeservice-e147be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parksandwildlifeservice-e147be.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -275047,7 +275254,7 @@ }, { "question": "Parks Australia", - "icon": "./assets/data/nsi/logos/parksaustralia-44065a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parksaustralia-44065a.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -275062,7 +275269,7 @@ }, { "question": "Parks Victoria", - "icon": "./assets/data/nsi/logos/parksvictoria-cdaa72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parksvictoria-cdaa72.png", "osmTags": { "and": [ "boundary=national_park", @@ -275077,7 +275284,7 @@ }, { "question": "Queensland Parks and Wildlife Service", - "icon": "./assets/data/nsi/logos/queenslandparksandwildlifeservice-223e1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/queenslandparksandwildlifeservice-223e1e.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -275107,7 +275314,7 @@ }, { "question": "Tasmania Parks and Wildlife Service", - "icon": "./assets/data/nsi/logos/tasmaniaparksandwildlifeservice-eb48a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tasmaniaparksandwildlifeservice-eb48a1.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -275122,7 +275329,7 @@ }, { "question": "United States Forest Service", - "icon": "./assets/data/nsi/logos/unitedstatesforestservice-918b1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesforestservice-918b1c.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -275138,7 +275345,7 @@ }, { "question": "漁農自然護理署 Agriculture, Fisheries and Conservation Department", - "icon": "./assets/data/nsi/logos/agriculturefisheriesandconservationdepartment-52b423.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agriculturefisheriesandconservationdepartment-52b423.jpg", "osmTags": { "and": [ "boundary=national_park", @@ -275165,7 +275372,7 @@ }, { "question": "Administración de Parques Nacionales", - "icon": "./assets/data/nsi/logos/administraciondeparquesnacionales-8282c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/administraciondeparquesnacionales-8282c4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275180,7 +275387,7 @@ }, { "question": "Agentschap Natuur & Bos", - "icon": "./assets/data/nsi/logos/agentschapnatuurandbos-733240.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agentschapnatuurandbos-733240.png", "osmTags": { "and": [ "boundary=protected_area", @@ -275195,7 +275402,7 @@ }, { "question": "Alaska Division of Parks & Outdoor Recreation", - "icon": "./assets/data/nsi/logos/alaskadivisionofparksandoutdoorrecreation-fee862.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alaskadivisionofparksandoutdoorrecreation-fee862.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275271,7 +275478,7 @@ }, { "question": "Auckland Council", - "icon": "./assets/data/nsi/logos/aucklandcouncil-a9b2b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-a9b2b6.png", "osmTags": { "and": [ "boundary=protected_area", @@ -275287,7 +275494,7 @@ }, { "question": "Australian Antarctic Division", - "icon": "./assets/data/nsi/logos/australianantarcticdivision-2b5d76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/australianantarcticdivision-2b5d76.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275303,7 +275510,7 @@ }, { "question": "Australian Wildlife Conservancy", - "icon": "./assets/data/nsi/logos/australianwildlifeconservancy-b5b751.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/australianwildlifeconservancy-b5b751.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275363,7 +275570,7 @@ }, { "question": "Baltimore County (Maryland)", - "icon": "./assets/data/nsi/logos/baltimorecounty-f0b713.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecounty-f0b713.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -275379,7 +275586,7 @@ }, { "question": "Baltimore County Department of Recreation and Parks", - "icon": "./assets/data/nsi/logos/baltimorecountydepartmentofrecreationandparks-f0b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecountydepartmentofrecreationandparks-f0b713.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275395,7 +275602,7 @@ }, { "question": "Berkshire Natural Resources Council", - "icon": "./assets/data/nsi/logos/berkshirenaturalresourcescouncil-dd28c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berkshirenaturalresourcescouncil-dd28c3.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275411,7 +275618,7 @@ }, { "question": "Brabants Landschap", - "icon": "./assets/data/nsi/logos/brabantslandschap-889726.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brabantslandschap-889726.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275426,7 +275633,7 @@ }, { "question": "Bureau of Land Management", - "icon": "./assets/data/nsi/logos/bureauoflandmanagement-167f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-167f6a.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275445,7 +275652,7 @@ }, { "question": "Bureau of Reclamation", - "icon": "./assets/data/nsi/logos/bureauofreclamation-167f6a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauofreclamation-167f6a.png", "osmTags": { "and": [ "boundary=protected_area", @@ -275464,7 +275671,7 @@ }, { "question": "Bush Heritage Australia", - "icon": "./assets/data/nsi/logos/bushheritageaustralia-b5b751.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bushheritageaustralia-b5b751.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275479,7 +275686,7 @@ }, { "question": "California Department of Fish and Wildlife", - "icon": "./assets/data/nsi/logos/californiadepartmentoffishandwildlife-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentoffishandwildlife-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275495,7 +275702,7 @@ }, { "question": "California Department of Forestry and Fire Protection", - "icon": "./assets/data/nsi/logos/californiadepartmentofforestryandfireprotection-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofforestryandfireprotection-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275512,7 +275719,7 @@ }, { "question": "California Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/californiadepartmentofparksandrecreation-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofparksandrecreation-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275551,7 +275758,7 @@ }, { "question": "City and County of Denver", - "icon": "./assets/data/nsi/logos/cityandcountyofdenver-13d7c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityandcountyofdenver-13d7c3.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275567,7 +275774,7 @@ }, { "question": "City of Colorado Springs", - "icon": "./assets/data/nsi/logos/cityofcoloradosprings-13d7c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcoloradosprings-13d7c3.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275583,7 +275790,7 @@ }, { "question": "City of Los Angeles", - "icon": "./assets/data/nsi/logos/cityoflosangeles-396679.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflosangeles-396679.png", "osmTags": { "and": [ "boundary=protected_area", @@ -275599,7 +275806,7 @@ }, { "question": "Colorado Parks and Wildlife", - "icon": "./assets/data/nsi/logos/coloradoparksandwildlife-13d7c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradoparksandwildlife-13d7c3.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275625,7 +275832,7 @@ }, { "question": "Commonwealth DCCEEW", - "icon": "./assets/data/nsi/logos/commonwealthdepartmentofclimatechangeenergytheenvironmentandwater-b5b751.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthdepartmentofclimatechangeenergytheenvironmentandwater-b5b751.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275641,7 +275848,7 @@ }, { "question": "Comunidad Autónoma de la Región de Murcia", - "icon": "./assets/data/nsi/logos/comunidadautonomadelaregiondemurcia-41b358.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunidadautonomadelaregiondemurcia-41b358.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -275656,7 +275863,7 @@ }, { "question": "Conejo Open Space Conservation Agency", - "icon": "./assets/data/nsi/logos/conejoopenspaceconservationagency-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conejoopenspaceconservationagency-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275671,7 +275878,7 @@ }, { "question": "Corporación Nacional Forestal", - "icon": "./assets/data/nsi/logos/corporacionnacionalforestal-f965a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/corporacionnacionalforestal-f965a9.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275710,7 +275917,7 @@ }, { "question": "DEECA (Victoria)", - "icon": "./assets/data/nsi/logos/departmentofenergyenvironmentandclimateaction-261f43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofenergyenvironmentandclimateaction-261f43.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275726,7 +275933,7 @@ }, { "question": "Delaware Division of Fish and Wildlife", - "icon": "./assets/data/nsi/logos/delawaredivisionoffishandwildlife-429456.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delawaredivisionoffishandwildlife-429456.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275751,7 +275958,7 @@ }, { "question": "Department of Conservation (New Zealand)", - "icon": "./assets/data/nsi/logos/departmentofconservation-997671.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-997671.png", "osmTags": { "and": [ "boundary=protected_area", @@ -275767,7 +275974,7 @@ }, { "question": "Department of Fisheries and Marine Research (Cyprus)", - "icon": "./assets/data/nsi/logos/departmentoffisheriesandmarineresearch-98c4db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentoffisheriesandmarineresearch-98c4db.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275868,7 +276075,7 @@ }, { "question": "East Bay Regional Park District", - "icon": "./assets/data/nsi/logos/eastbayregionalparkdistrict-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastbayregionalparkdistrict-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275884,7 +276091,7 @@ }, { "question": "eMission-X gGmbH", - "icon": "./assets/data/nsi/logos/emissionxggmbh-e037dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emissionxggmbh-e037dc.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275982,7 +276189,7 @@ }, { "question": "Forest Preserve District of Cook County", - "icon": "./assets/data/nsi/logos/forestpreservedistrictofcookcounty-8c9c28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofcookcounty-8c9c28.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -275998,7 +276205,7 @@ }, { "question": "Forest Preserve District of DuPage County", - "icon": "./assets/data/nsi/logos/forestpreservedistrictofdupagecounty-8c9c28.png", + "icon": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofdupagecounty-8c9c28.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276023,7 +276230,7 @@ }, { "question": "Forestry Corporation of NSW", - "icon": "./assets/data/nsi/logos/forestrycorporationofnsw-292b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forestrycorporationofnsw-292b9d.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276071,7 +276278,7 @@ }, { "question": "Geldersch Landschap & Kasteelen", - "icon": "./assets/data/nsi/logos/gelderschlandschapandkasteelen-889726.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gelderschlandschapandkasteelen-889726.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276086,7 +276293,7 @@ }, { "question": "Gemeinde Petershausen", - "icon": "./assets/data/nsi/logos/gemeindepetershausen-a1651b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindepetershausen-a1651b.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -276101,7 +276308,7 @@ }, { "question": "Generalitat Valenciana", - "icon": "./assets/data/nsi/logos/generalitatvalenciana-41b358.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitatvalenciana-41b358.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276125,7 +276332,7 @@ }, { "question": "Great Parks of Hamilton County", - "icon": "./assets/data/nsi/logos/greatparksofhamiltoncounty-73cd94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatparksofhamiltoncounty-73cd94.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276140,7 +276347,7 @@ }, { "question": "Grong kommune", - "icon": "./assets/data/nsi/logos/grongkommune-65ea71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/grongkommune-65ea71.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -276183,7 +276390,7 @@ }, { "question": "Illinois DNR", - "icon": "./assets/data/nsi/logos/illinoisdepartmentofnaturalresources-8c9c28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentofnaturalresources-8c9c28.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276240,7 +276447,7 @@ }, { "question": "Instituto Chico Mendes de Conservação da Biodiversidade", - "icon": "./assets/data/nsi/logos/institutochicomendesdeconservacaodabiodiversidade-20a11c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutochicomendesdeconservacaodabiodiversidade-20a11c.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276280,7 +276487,7 @@ }, { "question": "Instituto Estadual do Ambiente", - "icon": "./assets/data/nsi/logos/institutoestadualdoambiente-20a11c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutoestadualdoambiente-20a11c.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276296,7 +276503,7 @@ }, { "question": "Iowa DNR", - "icon": "./assets/data/nsi/logos/iowadepartmentofnaturalresources-bde927.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iowadepartmentofnaturalresources-bde927.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276322,7 +276529,7 @@ }, { "question": "Jefferson County Open Space", - "icon": "./assets/data/nsi/logos/jeffersoncountyopenspace-13d7c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeffersoncountyopenspace-13d7c3.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276339,7 +276546,7 @@ }, { "question": "Kansas Department of Wildlife & Parks", - "icon": "./assets/data/nsi/logos/kansasdepartmentofwildlifeandparks-34586e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kansasdepartmentofwildlifeandparks-34586e.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276356,7 +276563,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-6f7339.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-6f7339.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276405,7 +276612,7 @@ }, { "question": "Landkreis Harburg", - "icon": "./assets/data/nsi/logos/landkreisharburg-d97dc4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisharburg-d97dc4.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -276420,7 +276627,7 @@ }, { "question": "Landkreis Heidekreis", - "icon": "./assets/data/nsi/logos/landkreisheidekreis-d97dc4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisheidekreis-d97dc4.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -276435,7 +276642,7 @@ }, { "question": "Landkreis Rotenburg", - "icon": "./assets/data/nsi/logos/landkreisrotenburg-d97dc4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisrotenburg-d97dc4.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -276450,7 +276657,7 @@ }, { "question": "Länsstyrelsen i Blekinge län", - "icon": "./assets/data/nsi/logos/lansstyrelseniblekingelan-c450a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelseniblekingelan-c450a4.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276465,7 +276672,7 @@ }, { "question": "Länsstyrelsen i Dalarnas län", - "icon": "./assets/data/nsi/logos/lansstyrelsenidalarnaslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenidalarnaslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276480,7 +276687,7 @@ }, { "question": "Länsstyrelsen i Gävleborgs län", - "icon": "./assets/data/nsi/logos/lansstyrelsenigavleborgslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenigavleborgslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276495,7 +276702,7 @@ }, { "question": "Länsstyrelsen i Gotlands län", - "icon": "./assets/data/nsi/logos/lansstyrelsenigotlandslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenigotlandslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276510,7 +276717,7 @@ }, { "question": "Länsstyrelsen i Hallands län", - "icon": "./assets/data/nsi/logos/lansstyrelsenihallandslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenihallandslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276525,7 +276732,7 @@ }, { "question": "Länsstyrelsen i Jämtlands län", - "icon": "./assets/data/nsi/logos/lansstyrelsenijamtlandslan-c450a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenijamtlandslan-c450a4.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276540,7 +276747,7 @@ }, { "question": "Länsstyrelsen i Jönköpings län", - "icon": "./assets/data/nsi/logos/lansstyrelsenijonkopingslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenijonkopingslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276555,7 +276762,7 @@ }, { "question": "Länsstyrelsen i Kalmar län", - "icon": "./assets/data/nsi/logos/lansstyrelsenikalmarlan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenikalmarlan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276570,7 +276777,7 @@ }, { "question": "Länsstyrelsen i Kronobergs län", - "icon": "./assets/data/nsi/logos/lansstyrelsenikronobergslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenikronobergslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276585,7 +276792,7 @@ }, { "question": "Länsstyrelsen i Norrbottens län", - "icon": "./assets/data/nsi/logos/lansstyrelseninorrbottenslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelseninorrbottenslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276600,7 +276807,7 @@ }, { "question": "Länsstyrelsen i Örebro län", - "icon": "./assets/data/nsi/logos/lansstyrelseniorebrolan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelseniorebrolan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276615,7 +276822,7 @@ }, { "question": "Länsstyrelsen i Östergötlands län", - "icon": "./assets/data/nsi/logos/lansstyrelseniostergotlandslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelseniostergotlandslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276630,7 +276837,7 @@ }, { "question": "Länsstyrelsen i Skåne län", - "icon": "./assets/data/nsi/logos/lansstyrelseniskanelan-c450a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelseniskanelan-c450a4.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276645,7 +276852,7 @@ }, { "question": "Länsstyrelsen i Södermanlands län", - "icon": "./assets/data/nsi/logos/lansstyrelsenisodermanlandslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenisodermanlandslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276660,7 +276867,7 @@ }, { "question": "Länsstyrelsen i Stockholms län", - "icon": "./assets/data/nsi/logos/lansstyrelsenistockholmslan-c450a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenistockholmslan-c450a4.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276675,7 +276882,7 @@ }, { "question": "Länsstyrelsen i Värmlands län", - "icon": "./assets/data/nsi/logos/lansstyrelsenivarmlandslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivarmlandslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276690,7 +276897,7 @@ }, { "question": "Länsstyrelsen i Västerbottens län", - "icon": "./assets/data/nsi/logos/lansstyrelsenivasterbottenslan-c450a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivasterbottenslan-c450a4.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276705,7 +276912,7 @@ }, { "question": "Länsstyrelsen i Västernorrlands län", - "icon": "./assets/data/nsi/logos/lansstyrelsenivasternorrlandslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivasternorrlandslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276720,7 +276927,7 @@ }, { "question": "Länsstyrelsen i Västmanlands län", - "icon": "./assets/data/nsi/logos/lansstyrelsenivastmanlandslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivastmanlandslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276735,7 +276942,7 @@ }, { "question": "Länsstyrelsen i Västra Götalands län", - "icon": "./assets/data/nsi/logos/lansstyrelsenivastragotalandslan-c450a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lansstyrelsenivastragotalandslan-c450a4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276750,7 +276957,7 @@ }, { "question": "Limburgs Landschap", - "icon": "./assets/data/nsi/logos/limburgslandschap-12c161.png", + "icon": "https://data.mapcomplete.org/nsi//logos/limburgslandschap-12c161.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276779,7 +276986,7 @@ }, { "question": "Los Angeles County", - "icon": "./assets/data/nsi/logos/losangelescounty-396679.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelescounty-396679.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276810,7 +277017,7 @@ }, { "question": "Marin County Parks", - "icon": "./assets/data/nsi/logos/marincountyparks-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marincountyparks-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276853,7 +277060,7 @@ }, { "question": "Maryland Park Service", - "icon": "./assets/data/nsi/logos/marylandparkservice-f0b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marylandparkservice-f0b713.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276869,7 +277076,7 @@ }, { "question": "Maryland-National Capital Park and Planning Commission", - "icon": "./assets/data/nsi/logos/marylandnationalcapitalparkandplanningcommission-167f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marylandnationalcapitalparkandplanningcommission-167f6a.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276885,7 +277092,7 @@ }, { "question": "Mass Audubon", - "icon": "./assets/data/nsi/logos/massaudubon-dd28c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/massaudubon-dd28c3.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276924,7 +277131,7 @@ }, { "question": "Metro Vancouver Regional Parks", - "icon": "./assets/data/nsi/logos/metrovancouverregionalparks-dc06ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metrovancouverregionalparks-dc06ea.png", "osmTags": { "and": [ "boundary=protected_area", @@ -276940,7 +277147,7 @@ }, { "question": "Metsähallitus", - "icon": "./assets/data/nsi/logos/metsahallitus-34f9cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metsahallitus-34f9cb.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -276955,7 +277162,7 @@ }, { "question": "Michigan Department of Natural Resources", - "icon": "./assets/data/nsi/logos/michigandepartmentofnaturalresources-0e46de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofnaturalresources-0e46de.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277000,7 +277207,7 @@ }, { "question": "Minnesota DNR", - "icon": "./assets/data/nsi/logos/minnesotadepartmentofnaturalresources-24a567.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotadepartmentofnaturalresources-24a567.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277017,7 +277224,7 @@ }, { "question": "Missouri Department of Conservation", - "icon": "./assets/data/nsi/logos/missouridepartmentofconservation-ff9f49.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missouridepartmentofconservation-ff9f49.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277042,7 +277249,7 @@ }, { "question": "Montana Department of Fish, Wildlife and Parks", - "icon": "./assets/data/nsi/logos/montanadepartmentoffishwildlifeandparks-d69c95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montanadepartmentoffishwildlifeandparks-d69c95.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277067,7 +277274,7 @@ }, { "question": "Montgomery Parks", - "icon": "./assets/data/nsi/logos/montgomeryparks-f0b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montgomeryparks-f0b713.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277083,7 +277290,7 @@ }, { "question": "Moss kommune", - "icon": "./assets/data/nsi/logos/mosskommune-65ea71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mosskommune-65ea71.png", "osmTags": { "and": [ "boundary=protected_area", @@ -277099,7 +277306,7 @@ }, { "question": "Mountains Recreation and Conservation Authority", - "icon": "./assets/data/nsi/logos/mountainsrecreationandconservationauthority-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mountainsrecreationandconservationauthority-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277132,7 +277339,7 @@ }, { "question": "National Oceanic and Atmospheric Administration", - "icon": "./assets/data/nsi/logos/nationaloceanicandatmosphericadministration-167f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaloceanicandatmosphericadministration-167f6a.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277151,7 +277358,7 @@ }, { "question": "National Park Service", - "icon": "./assets/data/nsi/logos/nationalparkservice-167f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-167f6a.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277170,7 +277377,7 @@ }, { "question": "National Trust", - "icon": "./assets/data/nsi/logos/nationaltrust-b10dfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrust-b10dfd.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277186,7 +277393,7 @@ }, { "question": "National Trust for Scotland", - "icon": "./assets/data/nsi/logos/nationaltrustforscotland-3da0d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-3da0d4.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277203,7 +277410,7 @@ }, { "question": "Natural England", - "icon": "./assets/data/nsi/logos/naturalengland-e218b1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/naturalengland-e218b1.png", "osmTags": { "and": [ "boundary=protected_area", @@ -277218,7 +277425,7 @@ }, { "question": "Natural Resources Conservation Service", - "icon": "./assets/data/nsi/logos/naturalresourcesconservationservice-167f6a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturalresourcesconservationservice-167f6a.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -277234,7 +277441,7 @@ }, { "question": "Nature Conservancy of Canada", - "icon": "./assets/data/nsi/logos/natureconservancyofcanada-eb4300.png", + "icon": "https://data.mapcomplete.org/nsi//logos/natureconservancyofcanada-eb4300.png", "osmTags": { "and": [ "boundary=protected_area", @@ -277251,7 +277458,7 @@ }, { "question": "Natuurmonumenten", - "icon": "./assets/data/nsi/logos/natuurmonumenten-889726.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/natuurmonumenten-889726.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277266,7 +277473,7 @@ }, { "question": "Natuurpunt", - "icon": "./assets/data/nsi/logos/natuurpunt-733240.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/natuurpunt-733240.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277281,7 +277488,7 @@ }, { "question": "Nebraska Game and Parks Commission", - "icon": "./assets/data/nsi/logos/nebraskagameandparkscommission-22c000.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nebraskagameandparkscommission-22c000.png", "osmTags": { "and": [ "boundary=protected_area", @@ -277298,7 +277505,7 @@ }, { "question": "New Jersey Division of Fish and Wildlife", - "icon": "./assets/data/nsi/logos/newjerseydivisionoffishandwildlife-bfc7af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newjerseydivisionoffishandwildlife-bfc7af.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277314,7 +277521,7 @@ }, { "question": "New Mexico Department of Game and Fish", - "icon": "./assets/data/nsi/logos/newmexicodepartmentofgameandfish-515a72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newmexicodepartmentofgameandfish-515a72.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277339,7 +277546,7 @@ }, { "question": "New York State DEC", - "icon": "./assets/data/nsi/logos/newyorkstatedepartmentofenvironmentalconservation-b02294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofenvironmentalconservation-b02294.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277356,7 +277563,7 @@ }, { "question": "New York State OPRHP", - "icon": "./assets/data/nsi/logos/newyorkstateofficeofparksrecreationandhistoricpreservation-b02294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstateofficeofparksrecreationandhistoricpreservation-b02294.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277372,7 +277579,7 @@ }, { "question": "North Carolina Division of Parks and Recreation", - "icon": "./assets/data/nsi/logos/northcarolinadivisionofparksandrecreation-6d4e0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northcarolinadivisionofparksandrecreation-6d4e0c.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277389,7 +277596,7 @@ }, { "question": "North Carolina Wildlife Resources Commission", - "icon": "./assets/data/nsi/logos/northcarolinawildliferesourcescommission-6d4e0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northcarolinawildliferesourcescommission-6d4e0c.png", "osmTags": { "and": [ "boundary=protected_area", @@ -277404,7 +277611,7 @@ }, { "question": "North Dakota Game and Fish Department", - "icon": "./assets/data/nsi/logos/northdakotagameandfishdepartment-86859c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northdakotagameandfishdepartment-86859c.png", "osmTags": { "and": [ "boundary=protected_area", @@ -277462,7 +277669,7 @@ }, { "question": "NSW National Parks and Wildlife Service", - "icon": "./assets/data/nsi/logos/nswnationalparksandwildlifeservice-292b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswnationalparksandwildlifeservice-292b9d.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277478,7 +277685,7 @@ }, { "question": "Ohio Department of Natural Resources", - "icon": "./assets/data/nsi/logos/ohiodepartmentofnaturalresources-73cd94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofnaturalresources-73cd94.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277495,7 +277702,7 @@ }, { "question": "Oklahoma Department of Wildlife Conservation", - "icon": "./assets/data/nsi/logos/oklahomadepartmentofwildlifeconservation-5cc372.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomadepartmentofwildlifeconservation-5cc372.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277512,7 +277719,7 @@ }, { "question": "Ontario Parks", - "icon": "./assets/data/nsi/logos/ontarioparks-acb620.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ontarioparks-acb620.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277528,7 +277735,7 @@ }, { "question": "Orange County (California)", - "icon": "./assets/data/nsi/logos/orangecounty-637e4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orangecounty-637e4d.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277544,7 +277751,7 @@ }, { "question": "Orange County (New York)", - "icon": "./assets/data/nsi/logos/orangecounty-b02294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orangecounty-b02294.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277560,7 +277767,7 @@ }, { "question": "Oregon Department of Forestry", - "icon": "./assets/data/nsi/logos/oregondepartmentofforestry-8f69f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oregondepartmentofforestry-8f69f0.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277579,7 +277786,7 @@ }, { "question": "Oregon Fish & Wildlife", - "icon": "./assets/data/nsi/logos/oregondepartmentoffishandwildlife-8f69f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oregondepartmentoffishandwildlife-8f69f0.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277598,7 +277805,7 @@ }, { "question": "Oregon Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/oregonparksandrecreationdepartment-8f69f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oregonparksandrecreationdepartment-8f69f0.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277614,7 +277821,7 @@ }, { "question": "Parks and Wildlife Service (Western Australia)", - "icon": "./assets/data/nsi/logos/parksandwildlifeservice-245152.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parksandwildlifeservice-245152.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277629,7 +277836,7 @@ }, { "question": "Parks Australia", - "icon": "./assets/data/nsi/logos/parksaustralia-b5b751.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parksaustralia-b5b751.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277644,7 +277851,7 @@ }, { "question": "Parks Victoria", - "icon": "./assets/data/nsi/logos/parksvictoria-261f43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parksvictoria-261f43.png", "osmTags": { "and": [ "boundary=protected_area", @@ -277724,7 +277931,7 @@ }, { "question": "Prince George's County Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/princegeorgescountydepartmentofparksandrecreation-f0b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/princegeorgescountydepartmentofparksandrecreation-f0b713.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277740,7 +277947,7 @@ }, { "question": "Provincia de Buenos Aires", - "icon": "./assets/data/nsi/logos/provinciadebuenosaires-37bb86.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadebuenosaires-37bb86.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277755,7 +277962,7 @@ }, { "question": "Provincia de Chubut", - "icon": "./assets/data/nsi/logos/provinciadechubut-1b7dd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadechubut-1b7dd7.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277770,7 +277977,7 @@ }, { "question": "Provincia de Córdoba", - "icon": "./assets/data/nsi/logos/provinciadecordoba-c8f652.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadecordoba-c8f652.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277785,7 +277992,7 @@ }, { "question": "Provincia de Formosa", - "icon": "./assets/data/nsi/logos/provinciadeformosa-2c3b94.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadeformosa-2c3b94.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -277800,7 +278007,7 @@ }, { "question": "Provincia de Mendoza", - "icon": "./assets/data/nsi/logos/provinciademendoza-8ccc57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciademendoza-8ccc57.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277815,7 +278022,7 @@ }, { "question": "Provincia de Misiones", - "icon": "./assets/data/nsi/logos/provinciademisiones-2fd7fa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciademisiones-2fd7fa.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -277830,7 +278037,7 @@ }, { "question": "Provincia de Neuquén", - "icon": "./assets/data/nsi/logos/provinciadeneuquen-357075.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadeneuquen-357075.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -277845,7 +278052,7 @@ }, { "question": "Provincia de Salta", - "icon": "./assets/data/nsi/logos/provinciadesalta-341dc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadesalta-341dc9.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277860,7 +278067,7 @@ }, { "question": "Provincia de Santa Cruz", - "icon": "./assets/data/nsi/logos/provinciadesantacruz-68cd17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadesantacruz-68cd17.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277875,7 +278082,7 @@ }, { "question": "Provincia de Santa Fe", - "icon": "./assets/data/nsi/logos/provinciadesantafe-0b6ccc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadesantafe-0b6ccc.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -277890,7 +278097,7 @@ }, { "question": "Provincia di Bologna", - "icon": "./assets/data/nsi/logos/provinciadibologna-85a6ed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadibologna-85a6ed.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -277906,7 +278113,7 @@ }, { "question": "Provincia di Modena", - "icon": "./assets/data/nsi/logos/provinciadimodena-85a6ed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadimodena-85a6ed.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -277922,7 +278129,7 @@ }, { "question": "Provincia di Reggio Emilia", - "icon": "./assets/data/nsi/logos/provinciadireggioemilia-85a6ed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadireggioemilia-85a6ed.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -277984,7 +278191,7 @@ }, { "question": "Regione Umbria", - "icon": "./assets/data/nsi/logos/regioneumbria-72c2fa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/regioneumbria-72c2fa.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -278024,7 +278231,7 @@ }, { "question": "Royal Society for the Protection of Birds", - "icon": "./assets/data/nsi/logos/royalsocietyfortheprotectionofbirds-e218b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalsocietyfortheprotectionofbirds-e218b1.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278271,7 +278478,7 @@ }, { "question": "Santa Clara Valley Open Space Authority", - "icon": "./assets/data/nsi/logos/santaclaravalleyopenspaceauthority-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/santaclaravalleyopenspaceauthority-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278328,7 +278535,7 @@ }, { "question": "Sempervirens Fund", - "icon": "./assets/data/nsi/logos/sempervirensfund-6f7339.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sempervirensfund-6f7339.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278397,7 +278604,7 @@ }, { "question": "South Florida Water Management District", - "icon": "./assets/data/nsi/logos/southfloridawatermanagementdistrict-a46e88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southfloridawatermanagementdistrict-a46e88.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278412,7 +278619,7 @@ }, { "question": "St. Johns River Water Management District", - "icon": "./assets/data/nsi/logos/stjohnsriverwatermanagementdistrict-a46e88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnsriverwatermanagementdistrict-a46e88.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278427,7 +278634,7 @@ }, { "question": "Staatsbosbeheer", - "icon": "./assets/data/nsi/logos/staatsbosbeheer-889726.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/staatsbosbeheer-889726.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278442,7 +278649,7 @@ }, { "question": "State of Hawaii", - "icon": "./assets/data/nsi/logos/stateofhawaii-433b65.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stateofhawaii-433b65.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278780,7 +278987,7 @@ }, { "question": "Sudbury Valley Trustees", - "icon": "./assets/data/nsi/logos/sudburyvalleytrustees-dd28c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sudburyvalleytrustees-dd28c3.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278796,7 +279003,7 @@ }, { "question": "Suldal kommune", - "icon": "./assets/data/nsi/logos/suldalkommune-65ea71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/suldalkommune-65ea71.svg", "osmTags": { "and": [ "boundary=protected_area", @@ -278812,7 +279019,7 @@ }, { "question": "Suwannee River Water Management District", - "icon": "./assets/data/nsi/logos/suwanneeriverwatermanagementdistrict-a46e88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwanneeriverwatermanagementdistrict-a46e88.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278836,7 +279043,7 @@ }, { "question": "Tasmania Parks and Wildlife Service", - "icon": "./assets/data/nsi/logos/tasmaniaparksandwildlifeservice-3bca28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tasmaniaparksandwildlifeservice-3bca28.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278875,7 +279082,7 @@ }, { "question": "Tennessee Wildlife Resources Agency", - "icon": "./assets/data/nsi/logos/tennesseewildliferesourcesagency-091300.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseewildliferesourcesagency-091300.png", "osmTags": { "and": [ "boundary=protected_area", @@ -278890,7 +279097,7 @@ }, { "question": "Texas Parks and Wildlife Department", - "icon": "./assets/data/nsi/logos/texasparksandwildlifedepartment-c4044d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasparksandwildlifedepartment-c4044d.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278907,7 +279114,7 @@ }, { "question": "The Nature Conservancy", - "icon": "./assets/data/nsi/logos/thenatureconservancy-7f8cf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thenatureconservancy-7f8cf5.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -278978,7 +279185,7 @@ }, { "question": "Town of Rye", - "icon": "./assets/data/nsi/logos/townofrye-38c1a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofrye-38c1a8.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279003,7 +279210,7 @@ }, { "question": "Town of Sudbury", - "icon": "./assets/data/nsi/logos/townofsudbury-dd28c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofsudbury-dd28c3.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279046,7 +279253,7 @@ }, { "question": "Trustees of Reservations", - "icon": "./assets/data/nsi/logos/trusteesofreservations-dd28c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trusteesofreservations-dd28c3.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279061,7 +279268,7 @@ }, { "question": "United States Army Corps of Engineers", - "icon": "./assets/data/nsi/logos/unitedstatesarmycorpsofengineers-167f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesarmycorpsofengineers-167f6a.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279078,7 +279285,7 @@ }, { "question": "United States Department of Defense", - "icon": "./assets/data/nsi/logos/usdepartmentofdefense-167f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usdepartmentofdefense-167f6a.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279095,7 +279302,7 @@ }, { "question": "United States Fish and Wildlife Service", - "icon": "./assets/data/nsi/logos/unitedstatesfishandwildlifeservice-167f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesfishandwildlifeservice-167f6a.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279114,7 +279321,7 @@ }, { "question": "United States Forest Service", - "icon": "./assets/data/nsi/logos/unitedstatesforestservice-167f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesforestservice-167f6a.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279133,7 +279340,7 @@ }, { "question": "United States of America", - "icon": "./assets/data/nsi/logos/unitedstatesofamerica-167f6a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesofamerica-167f6a.png", "osmTags": { "and": [ "boundary=protected_area", @@ -279181,7 +279388,7 @@ }, { "question": "Vermont Department of Forests, Parks & Recreation", - "icon": "./assets/data/nsi/logos/vermontdepartmentofforestsparksandrecreation-6f8ce2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontdepartmentofforestsparksandrecreation-6f8ce2.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279197,7 +279404,7 @@ }, { "question": "Vermont Fish & Wildlife Department", - "icon": "./assets/data/nsi/logos/vermontfishandwildlifedepartment-6f8ce2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontfishandwildlifedepartment-6f8ce2.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279231,7 +279438,7 @@ }, { "question": "Virginia Department of Game and Inland Fisheries", - "icon": "./assets/data/nsi/logos/virginiadepartmentofgameandinlandfisheries-eb41a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentofgameandinlandfisheries-eb41a5.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279247,7 +279454,7 @@ }, { "question": "Vlaams Gewest - Agentschap Natuur en Bos", - "icon": "./assets/data/nsi/logos/vlaamsgewestagentschapnatuurenbos-733240.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vlaamsgewestagentschapnatuurenbos-733240.png", "osmTags": { "and": [ "boundary=protected_area", @@ -279262,7 +279469,7 @@ }, { "question": "Washington Department of Fish and Wildlife", - "icon": "./assets/data/nsi/logos/washingtondepartmentoffishandwildlife-4d9054.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtondepartmentoffishandwildlife-4d9054.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279279,7 +279486,7 @@ }, { "question": "Washington State Department of Natural Resources", - "icon": "./assets/data/nsi/logos/washingtonstatedepartmentofnaturalresources-4d9054.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonstatedepartmentofnaturalresources-4d9054.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279295,7 +279502,7 @@ }, { "question": "Washington State Parks and Recreation Commission", - "icon": "./assets/data/nsi/logos/washingtonstateparksandrecreationcommission-4d9054.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonstateparksandrecreationcommission-4d9054.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279329,7 +279536,7 @@ }, { "question": "Wisconsin DNR", - "icon": "./assets/data/nsi/logos/wisconsindepartmentofnaturalresources-c2df53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentofnaturalresources-c2df53.png", "osmTags": { "and": [ "boundary=protected_area", @@ -279346,7 +279553,7 @@ }, { "question": "Wolf River Conservancy", - "icon": "./assets/data/nsi/logos/wolfriverconservancy-091300.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wolfriverconservancy-091300.png", "osmTags": { "and": [ "boundary=protected_area", @@ -279361,7 +279568,7 @@ }, { "question": "Xunta de Galicia", - "icon": "./assets/data/nsi/logos/xuntadegalicia-41b358.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xuntadegalicia-41b358.jpg", "osmTags": { "and": [ "boundary=protected_area", @@ -279511,7 +279718,7 @@ }, { "question": "ADAC Luftrettung gGmbH", - "icon": "./assets/data/nsi/logos/adacluftrettungggmbh-d077c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/adacluftrettungggmbh-d077c2.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279526,7 +279733,7 @@ }, { "question": "Ambulance IJsselland", - "icon": "./assets/data/nsi/logos/ambulanceijsselland-851507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambulanceijsselland-851507.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279541,7 +279748,7 @@ }, { "question": "Ambulance Oost", - "icon": "./assets/data/nsi/logos/ambulanceoost-851507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambulanceoost-851507.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279556,7 +279763,7 @@ }, { "question": "Ambulance Victoria", - "icon": "./assets/data/nsi/logos/ambulancevictoria-6651b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ambulancevictoria-6651b8.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279571,7 +279778,7 @@ }, { "question": "Ayuntamiento de Madrid", - "icon": "./assets/data/nsi/logos/ayuntamientodemadrid-b3e350.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-b3e350.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279586,7 +279793,7 @@ }, { "question": "BC Ambulance Service", - "icon": "./assets/data/nsi/logos/bcambulanceservice-ffbb04.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bcambulanceservice-ffbb04.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279601,7 +279808,7 @@ }, { "question": "Berliner Feuerwehr", - "icon": "./assets/data/nsi/logos/berlinerfeuerwehr-4125a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerfeuerwehr-4125a2.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279625,7 +279832,7 @@ }, { "question": "DRK-Rettungsdienst Mittelhessen", - "icon": "./assets/data/nsi/logos/drkrettungsdienstmittelhessen-843991.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drkrettungsdienstmittelhessen-843991.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279640,7 +279847,7 @@ }, { "question": "East Midlands Ambulance Service", - "icon": "./assets/data/nsi/logos/eastmidlandsambulanceservice-4d00c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastmidlandsambulanceservice-4d00c7.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279655,7 +279862,7 @@ }, { "question": "East of England Ambulance Service", - "icon": "./assets/data/nsi/logos/eastofenglandambulanceservice-ccb804.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastofenglandambulanceservice-ccb804.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279679,7 +279886,7 @@ }, { "question": "Feuerwehr Hamburg", - "icon": "./assets/data/nsi/logos/feuerwehrhamburg-cc534f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/feuerwehrhamburg-cc534f.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279718,7 +279925,7 @@ }, { "question": "HSE National Ambulance Service", - "icon": "./assets/data/nsi/logos/hsenationalambulanceservice-55b9ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hsenationalambulanceservice-55b9ac.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279733,7 +279940,7 @@ }, { "question": "Isle of Wight NHS Trust", - "icon": "./assets/data/nsi/logos/isleofwightnhstrust-071b94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/isleofwightnhstrust-071b94.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279757,7 +279964,7 @@ }, { "question": "Landesrettungsverein Weißes Kreuz", - "icon": "./assets/data/nsi/logos/landesrettungsvereinweisseskreuz-d63413.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landesrettungsvereinweisseskreuz-d63413.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279772,7 +279979,7 @@ }, { "question": "London Ambulance Service", - "icon": "./assets/data/nsi/logos/londonambulanceservice-aece76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonambulanceservice-aece76.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279787,7 +279994,7 @@ }, { "question": "North East Ambulance Service", - "icon": "./assets/data/nsi/logos/northeastambulanceservice-5ff189.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northeastambulanceservice-5ff189.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279802,7 +280009,7 @@ }, { "question": "North West Ambulance Service", - "icon": "./assets/data/nsi/logos/northwestambulanceservice-ab716a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestambulanceservice-ab716a.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279817,7 +280024,7 @@ }, { "question": "Northern Ireland Ambulance Service", - "icon": "./assets/data/nsi/logos/northernirelandambulanceservice-578b54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernirelandambulanceservice-578b54.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279832,7 +280039,7 @@ }, { "question": "NSW Ambulance", - "icon": "./assets/data/nsi/logos/nswambulance-2fb321.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswambulance-2fb321.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279847,7 +280054,7 @@ }, { "question": "Országos Mentőszolgálat", - "icon": "./assets/data/nsi/logos/orszagosmentoszolgalat-9ab0cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orszagosmentoszolgalat-9ab0cd.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279862,7 +280069,7 @@ }, { "question": "Österreichisches Rotes Kreuz, Landesverband Burgenland", - "icon": "./assets/data/nsi/logos/osterreichischesroteskreuzlandesverbandburgenland-a0ed90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuzlandesverbandburgenland-a0ed90.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279877,7 +280084,7 @@ }, { "question": "Österreichisches Rotes Kreuz, Landesverband Kärnten", - "icon": "./assets/data/nsi/logos/osterreichischesroteskreuzlandesverbandkarnten-4d3418.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuzlandesverbandkarnten-4d3418.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279892,7 +280099,7 @@ }, { "question": "Österreichisches Rotes Kreuz, Landesverband Niederösterreich", - "icon": "./assets/data/nsi/logos/osterreichischesroteskreuzlandesverbandniederosterreich-d0862d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuzlandesverbandniederosterreich-d0862d.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279907,7 +280114,7 @@ }, { "question": "Österreichisches Rotes Kreuz, Landesverband Salzburg", - "icon": "./assets/data/nsi/logos/osterreichischesroteskreuzlandesverbandsalzburg-ae68c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterreichischesroteskreuzlandesverbandsalzburg-ae68c2.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279922,7 +280129,7 @@ }, { "question": "Queensland Ambulance Service", - "icon": "./assets/data/nsi/logos/queenslandambulanceservice-958c13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/queenslandambulanceservice-958c13.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279937,7 +280144,7 @@ }, { "question": "RAV Brabant Midden-West-Noord", - "icon": "./assets/data/nsi/logos/ravbrabantmiddenwestnoord-851507.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ravbrabantmiddenwestnoord-851507.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279952,7 +280159,7 @@ }, { "question": "RAV Hollands Midden", - "icon": "./assets/data/nsi/logos/ravhollandsmidden-851507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ravhollandsmidden-851507.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279981,7 +280188,7 @@ }, { "question": "Rettungsdienst-Kooperation in Schleswig-Holstein gGmbH", - "icon": "./assets/data/nsi/logos/rettungsdienstkooperationinschleswigholsteinggmbh-86bca7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rettungsdienstkooperationinschleswigholsteinggmbh-86bca7.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -279996,7 +280203,7 @@ }, { "question": "SA Ambulance Service", - "icon": "./assets/data/nsi/logos/saambulanceservice-78af57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saambulanceservice-78af57.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280011,7 +280218,7 @@ }, { "question": "SAMU 192", - "icon": "./assets/data/nsi/logos/samu192-01b57c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/samu192-01b57c.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280026,7 +280233,7 @@ }, { "question": "Scottish Ambulance Service", - "icon": "./assets/data/nsi/logos/scottishambulanceservice-402965.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishambulanceservice-402965.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280041,7 +280248,7 @@ }, { "question": "South Central Ambulance Service", - "icon": "./assets/data/nsi/logos/southcentralambulanceservice-5ae902.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southcentralambulanceservice-5ae902.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280056,7 +280263,7 @@ }, { "question": "South East Coast Ambulance Service", - "icon": "./assets/data/nsi/logos/southeastcoastambulanceservice-ebeb10.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southeastcoastambulanceservice-ebeb10.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280071,7 +280278,7 @@ }, { "question": "South Western Ambulance Service", - "icon": "./assets/data/nsi/logos/southwesternambulanceservice-bba5ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwesternambulanceservice-bba5ce.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280086,7 +280293,7 @@ }, { "question": "St John Ambulance (England)", - "icon": "./assets/data/nsi/logos/stjohnambulance-88fc80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-88fc80.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280101,7 +280308,7 @@ }, { "question": "St John Ambulance (Ireland)", - "icon": "./assets/data/nsi/logos/stjohnambulance-55b9ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-55b9ac.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280116,7 +280323,7 @@ }, { "question": "St John Ambulance (New Zealand)", - "icon": "./assets/data/nsi/logos/stjohnambulance-ec65c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-ec65c5.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280131,7 +280338,7 @@ }, { "question": "St John Ambulance (Northern Ireland)", - "icon": "./assets/data/nsi/logos/stjohnambulance-578b54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-578b54.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280146,7 +280353,7 @@ }, { "question": "St John Ambulance (Wales)", - "icon": "./assets/data/nsi/logos/stjohnambulance-aa98c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnambulance-aa98c4.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280161,7 +280368,7 @@ }, { "question": "St John Ambulance NT", - "icon": "./assets/data/nsi/logos/stjohnambulancent-94c74e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnambulancent-94c74e.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280176,7 +280383,7 @@ }, { "question": "St John Ambulance WA", - "icon": "./assets/data/nsi/logos/stjohnambulancewa-1d2a42.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stjohnambulancewa-1d2a42.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280191,7 +280398,7 @@ }, { "question": "Welsh Ambulance Service", - "icon": "./assets/data/nsi/logos/welshambulanceservice-aa98c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welshambulanceservice-aa98c4.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280208,7 +280415,7 @@ }, { "question": "West Midlands Ambulance Service", - "icon": "./assets/data/nsi/logos/westmidlandsambulanceservice-514458.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westmidlandsambulanceservice-514458.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280223,7 +280430,7 @@ }, { "question": "Wiener Berufsrettung", - "icon": "./assets/data/nsi/logos/wienerberufsrettung-804f9e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienerberufsrettung-804f9e.png", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280247,7 +280454,7 @@ }, { "question": "Yorkshire Ambulance Service", - "icon": "./assets/data/nsi/logos/yorkshireambulanceservice-396bc7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yorkshireambulanceservice-396bc7.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280262,7 +280469,7 @@ }, { "question": "Zdravotnická záchranná služba Plzeňského kraje", - "icon": "./assets/data/nsi/logos/zdravotnickazachrannasluzbaplzenskehokraje-baba62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zdravotnickazachrannasluzbaplzenskehokraje-baba62.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280295,7 +280502,7 @@ }, { "question": "香港消防處 Hong Kong Fire Services Department", - "icon": "./assets/data/nsi/logos/hongkongfireservicesdepartment-921c7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongfireservicesdepartment-921c7f.jpg", "osmTags": { "and": [ "emergency=ambulance_station", @@ -280315,7 +280522,7 @@ }, { "question": "ACT State Emergency Service", - "icon": "./assets/data/nsi/logos/actstateemergencyservice-5fddb6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/actstateemergencyservice-5fddb6.jpg", "osmTags": { "and": [ "emergency=disaster_response", @@ -280344,7 +280551,7 @@ }, { "question": "NSW State Emergency Service", - "icon": "./assets/data/nsi/logos/nswstateemergencyservice-5c3990.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswstateemergencyservice-5c3990.jpg", "osmTags": { "and": [ "emergency=disaster_response", @@ -280401,7 +280608,7 @@ }, { "question": "South Australian State Emergency Service", - "icon": "./assets/data/nsi/logos/southaustralianstateemergencyservice-ee4c67.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/southaustralianstateemergencyservice-ee4c67.svg", "osmTags": { "and": [ "emergency=disaster_response", @@ -280416,7 +280623,7 @@ }, { "question": "Technisches Hilfswerk", - "icon": "./assets/data/nsi/logos/bundesanstalttechnischeshilfswerk-2e84d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundesanstalttechnischeshilfswerk-2e84d6.jpg", "osmTags": { "and": [ "emergency=disaster_response", @@ -280432,7 +280639,7 @@ }, { "question": "Victoria State Emergency Service", - "icon": "./assets/data/nsi/logos/victoriastateemergencyservice-c5f233.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/victoriastateemergencyservice-c5f233.jpg", "osmTags": { "and": [ "emergency=disaster_response", @@ -280447,7 +280654,7 @@ }, { "question": "Ajuntament de Barcelona", - "icon": "./assets/data/nsi/logos/ajuntamentdebarcelona-470772.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-470772.svg", "osmTags": { "and": [ "emergency=lifeguard", @@ -280462,7 +280669,7 @@ }, { "question": "Bayerisches Rotes Kreuz", - "icon": "./assets/data/nsi/logos/bayerischesroteskreuz-29d641.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayerischesroteskreuz-29d641.jpg", "osmTags": { "and": [ "emergency=lifeguard", @@ -280478,7 +280685,7 @@ }, { "question": "Brigada Militar do Rio Grande do Sul", - "icon": "./assets/data/nsi/logos/brigadamilitardoriograndedosul-17456e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brigadamilitardoriograndedosul-17456e.jpg", "osmTags": { "and": [ "emergency=lifeguard", @@ -280496,7 +280703,7 @@ }, { "question": "Corpo de Bombeiros Militar de Santa Catarina", - "icon": "./assets/data/nsi/logos/corpodebombeirosmilitardesantacatarina-30a857.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpodebombeirosmilitardesantacatarina-30a857.png", "osmTags": { "and": [ "emergency=lifeguard", @@ -280512,7 +280719,7 @@ }, { "question": "Corpo de Bombeiros Militar do Rio Grande do Sul", - "icon": "./assets/data/nsi/logos/corpodebombeirosmilitardoriograndedosul-17456e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpodebombeirosmilitardoriograndedosul-17456e.png", "osmTags": { "and": [ "emergency=lifeguard", @@ -280527,7 +280734,7 @@ }, { "question": "Deutsche Lebens-Rettungs-Gesellschaft", - "icon": "./assets/data/nsi/logos/deutschelebensrettungsgesellschaft-1a514f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschelebensrettungsgesellschaft-1a514f.png", "osmTags": { "and": [ "emergency=lifeguard", @@ -280543,7 +280750,7 @@ }, { "question": "Gold Coast City Council", - "icon": "./assets/data/nsi/logos/goldcoastcitycouncil-4be82f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldcoastcitycouncil-4be82f.jpg", "osmTags": { "and": [ "emergency=lifeguard", @@ -280582,7 +280789,7 @@ }, { "question": "Royal National Lifeboat Institution", - "icon": "./assets/data/nsi/logos/royalnationallifeboatinstitution-d799df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/royalnationallifeboatinstitution-d799df.png", "osmTags": { "and": [ "emergency=lifeguard", @@ -280612,7 +280819,7 @@ }, { "question": "Société nationale de sauvetage en mer", - "icon": "./assets/data/nsi/logos/societenationaledesauvetageenmer-adf184.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/societenationaledesauvetageenmer-adf184.jpg", "osmTags": { "and": [ "emergency=lifeguard", @@ -280628,7 +280835,7 @@ }, { "question": "Surf Life Saving New Zealand", - "icon": "./assets/data/nsi/logos/surflifesavingnewzealand-d0e9cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surflifesavingnewzealand-d0e9cd.jpg", "osmTags": { "and": [ "emergency=lifeguard", @@ -280675,7 +280882,7 @@ }, { "question": "Asfinag", - "icon": "./assets/data/nsi/logos/asfinag-ed5273.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/asfinag-ed5273.svg", "osmTags": { "and": [ "emergency=phone", @@ -280690,7 +280897,7 @@ }, { "question": "AT (Auckland Transport)", - "icon": "./assets/data/nsi/logos/at-25eda4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/at-25eda4.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280705,7 +280912,7 @@ }, { "question": "Auburn University", - "icon": "./assets/data/nsi/logos/auburnuniversity-b53a22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/auburnuniversity-b53a22.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280720,7 +280927,7 @@ }, { "question": "AUSA", - "icon": "./assets/data/nsi/logos/autopistasurbanassa-66a4a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autopistasurbanassa-66a4a0.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280763,7 +280970,7 @@ }, { "question": "Autostrada Wielkopolska", - "icon": "./assets/data/nsi/logos/autostradawielkopolska-cf0612.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autostradawielkopolska-cf0612.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280778,7 +280985,7 @@ }, { "question": "Björn Steiger Stiftung", - "icon": "./assets/data/nsi/logos/bjornsteigerstiftung-3876cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bjornsteigerstiftung-3876cc.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280793,7 +281000,7 @@ }, { "question": "Bombers de la Generalitat de Catalunya", - "icon": "./assets/data/nsi/logos/bombersdelageneralitatdecatalunya-a463d2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bombersdelageneralitatdecatalunya-a463d2.svg", "osmTags": { "and": [ "emergency=phone", @@ -280808,7 +281015,7 @@ }, { "question": "Bowling Green State University", - "icon": "./assets/data/nsi/logos/bowlinggreenstateuniversity-25a309.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-25a309.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280824,7 +281031,7 @@ }, { "question": "Brown University", - "icon": "./assets/data/nsi/logos/brownuniversity-0bc0f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brownuniversity-0bc0f6.png", "osmTags": { "and": [ "emergency=phone", @@ -280885,7 +281092,7 @@ }, { "question": "Clemson University", - "icon": "./assets/data/nsi/logos/clemsonuniversity-ce3621.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clemsonuniversity-ce3621.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280915,7 +281122,7 @@ }, { "question": "CSU, Chico Police Department", - "icon": "./assets/data/nsi/logos/csuchicopolicedepartment-a22ec8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csuchicopolicedepartment-a22ec8.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280930,7 +281137,7 @@ }, { "question": "Deutsche Bahn", - "icon": "./assets/data/nsi/logos/deutschebahn-3876cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebahn-3876cc.png", "osmTags": { "and": [ "emergency=phone", @@ -280945,7 +281152,7 @@ }, { "question": "Deutsche Telekom AG", - "icon": "./assets/data/nsi/logos/deutschetelekomag-3876cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschetelekomag-3876cc.jpg", "osmTags": { "and": [ "emergency=phone", @@ -280960,7 +281167,7 @@ }, { "question": "Die Autobahn GmbH des Bundes", - "icon": "./assets/data/nsi/logos/dieautobahngmbhdesbundes-3876cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dieautobahngmbhdesbundes-3876cc.png", "osmTags": { "and": [ "emergency=phone", @@ -281071,7 +281278,7 @@ }, { "question": "Generalna Dyrekcja Dróg Krajowych i Autostrad", - "icon": "./assets/data/nsi/logos/generalnadyrekcjadrogkrajowychiautostrad-cf0612.png", + "icon": "https://data.mapcomplete.org/nsi//logos/generalnadyrekcjadrogkrajowychiautostrad-cf0612.png", "osmTags": { "and": [ "emergency=phone", @@ -281087,7 +281294,7 @@ }, { "question": "Hope College", - "icon": "./assets/data/nsi/logos/hopecollege-4b3b14.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hopecollege-4b3b14.png", "osmTags": { "and": [ "emergency=phone", @@ -281102,7 +281309,7 @@ }, { "question": "Johns Hopkins University", - "icon": "./assets/data/nsi/logos/johnshopkinsuniversity-b21369.png", + "icon": "https://data.mapcomplete.org/nsi//logos/johnshopkinsuniversity-b21369.png", "osmTags": { "and": [ "emergency=phone", @@ -281118,7 +281325,7 @@ }, { "question": "Kent State University", - "icon": "./assets/data/nsi/logos/kentstateuniversity-25a309.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-25a309.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281133,7 +281340,7 @@ }, { "question": "Lafayette College", - "icon": "./assets/data/nsi/logos/lafayettecollege-db5f36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayettecollege-db5f36.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281148,7 +281355,7 @@ }, { "question": "Landesbetrieb Straßenbau NRW", - "icon": "./assets/data/nsi/logos/landesbetriebstrassenbaunrw-3876cc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landesbetriebstrassenbaunrw-3876cc.svg", "osmTags": { "and": [ "emergency=phone", @@ -281172,7 +281379,7 @@ }, { "question": "McGill University", - "icon": "./assets/data/nsi/logos/mcgilluniversity-3673d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcgilluniversity-3673d4.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281201,7 +281408,7 @@ }, { "question": "MIT", - "icon": "./assets/data/nsi/logos/mit-4facae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mit-4facae.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281216,7 +281423,7 @@ }, { "question": "Münchner Verkehrsgesellschaft", - "icon": "./assets/data/nsi/logos/munchnerverkehrsgesellschaft-e1233b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/munchnerverkehrsgesellschaft-e1233b.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281232,7 +281439,7 @@ }, { "question": "National Highways", - "icon": "./assets/data/nsi/logos/nationalhighways-851822.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalhighways-851822.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281248,7 +281455,7 @@ }, { "question": "Nederlandse Spoorwegen", - "icon": "./assets/data/nsi/logos/nederlandsespoorwegen-5f7cd9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-5f7cd9.png", "osmTags": { "and": [ "emergency=phone", @@ -281264,7 +281471,7 @@ }, { "question": "Network Rail", - "icon": "./assets/data/nsi/logos/networkrail-89d420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkrail-89d420.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281279,7 +281486,7 @@ }, { "question": "NLEX Corporation", - "icon": "./assets/data/nsi/logos/nlexcorporation-507034.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nlexcorporation-507034.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281294,7 +281501,7 @@ }, { "question": "North Carolina State University", - "icon": "./assets/data/nsi/logos/northcarolinastateuniversity-ca5227.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northcarolinastateuniversity-ca5227.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281336,7 +281543,7 @@ }, { "question": "Queen's University", - "icon": "./assets/data/nsi/logos/queensuniversity-de0db7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/queensuniversity-de0db7.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281351,7 +281558,7 @@ }, { "question": "Rochester Institute of Technology", - "icon": "./assets/data/nsi/logos/rochesterinstituteoftechnology-c2fcbd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rochesterinstituteoftechnology-c2fcbd.png", "osmTags": { "and": [ "emergency=phone", @@ -281395,7 +281602,7 @@ }, { "question": "ŘSD", - "icon": "./assets/data/nsi/logos/rsd-5526e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rsd-5526e0.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281424,7 +281631,7 @@ }, { "question": "SANEF", - "icon": "./assets/data/nsi/logos/sanef-6aca25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanef-6aca25.svg", "osmTags": { "and": [ "emergency=phone", @@ -281439,7 +281646,7 @@ }, { "question": "Santa Clara County", - "icon": "./assets/data/nsi/logos/santaclaracounty-87c79e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/santaclaracounty-87c79e.svg", "osmTags": { "and": [ "emergency=phone", @@ -281482,7 +281689,7 @@ }, { "question": "Seattle University", - "icon": "./assets/data/nsi/logos/seattleuniversity-82c3f1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattleuniversity-82c3f1.png", "osmTags": { "and": [ "emergency=phone", @@ -281506,7 +281713,7 @@ }, { "question": "Slippery Rock University", - "icon": "./assets/data/nsi/logos/slipperyrockuniversity-db5f36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slipperyrockuniversity-db5f36.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281521,7 +281728,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-6aca25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-6aca25.png", "osmTags": { "and": [ "emergency=phone", @@ -281537,7 +281744,7 @@ }, { "question": "Stadt Karlsruhe", - "icon": "./assets/data/nsi/logos/stadtkarlsruhe-a87c27.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-a87c27.png", "osmTags": { "and": [ "emergency=phone", @@ -281552,7 +281759,7 @@ }, { "question": "Stadtwerke Augsburg", - "icon": "./assets/data/nsi/logos/stadtwerkeaugsburg-223542.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-223542.png", "osmTags": { "and": [ "emergency=phone", @@ -281567,7 +281774,7 @@ }, { "question": "Stanford University", - "icon": "./assets/data/nsi/logos/stanforduniversity-a22ec8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stanforduniversity-a22ec8.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281582,7 +281789,7 @@ }, { "question": "Svenska Turistföreningen", - "icon": "./assets/data/nsi/logos/svenskaturistforeningen-76fb80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/svenskaturistforeningen-76fb80.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281598,7 +281805,7 @@ }, { "question": "Texas Woman's University", - "icon": "./assets/data/nsi/logos/texaswomansuniversity-d7c31f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texaswomansuniversity-d7c31f.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281628,7 +281835,7 @@ }, { "question": "Towson University", - "icon": "./assets/data/nsi/logos/towsonuniversity-b21369.png", + "icon": "https://data.mapcomplete.org/nsi//logos/towsonuniversity-b21369.png", "osmTags": { "and": [ "emergency=phone", @@ -281643,7 +281850,7 @@ }, { "question": "Transfort", - "icon": "./assets/data/nsi/logos/transfort-2829ac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transfort-2829ac.svg", "osmTags": { "and": [ "emergency=phone", @@ -281658,7 +281865,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-86d884.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-86d884.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281673,7 +281880,7 @@ }, { "question": "Trenes Argentinos", - "icon": "./assets/data/nsi/logos/trenesargentinos-91d45d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-91d45d.svg", "osmTags": { "and": [ "emergency=phone", @@ -281706,7 +281913,7 @@ }, { "question": "UMass Lowell", - "icon": "./assets/data/nsi/logos/umasslowell-4facae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umasslowell-4facae.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281730,7 +281937,7 @@ }, { "question": "United States Customs and Border Protection", - "icon": "./assets/data/nsi/logos/unitedstatescustomsandborderprotection-dc8817.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatescustomsandborderprotection-dc8817.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281746,7 +281953,7 @@ }, { "question": "University at Buffalo", - "icon": "./assets/data/nsi/logos/universityatbuffalo-c2fcbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityatbuffalo-c2fcbd.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281770,7 +281977,7 @@ }, { "question": "University of Canterbury", - "icon": "./assets/data/nsi/logos/universityofcanterbury-dce6cd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofcanterbury-dce6cd.png", "osmTags": { "and": [ "emergency=phone", @@ -281785,7 +281992,7 @@ }, { "question": "University of Melbourne", - "icon": "./assets/data/nsi/logos/universityofmelbourne-9d2726.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofmelbourne-9d2726.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281800,7 +282007,7 @@ }, { "question": "University of Sussex", - "icon": "./assets/data/nsi/logos/universityofsussex-851822.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofsussex-851822.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281815,7 +282022,7 @@ }, { "question": "University of Toronto", - "icon": "./assets/data/nsi/logos/universityoftoronto-de0db7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityoftoronto-de0db7.png", "osmTags": { "and": [ "emergency=phone", @@ -281839,7 +282046,7 @@ }, { "question": "ÜSTRA Hannoversche Verkehrsbetriebe AG", - "icon": "./assets/data/nsi/logos/ustrahannoverscheverkehrsbetriebeag-3876cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ustrahannoverscheverkehrsbetriebeag-3876cc.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281854,7 +282061,7 @@ }, { "question": "Verkehrsbetriebe Karlsruhe GmbH", - "icon": "./assets/data/nsi/logos/verkehrsbetriebekarlsruhegmbh-3876cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verkehrsbetriebekarlsruhegmbh-3876cc.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281897,7 +282104,7 @@ }, { "question": "Virginia Tech", - "icon": "./assets/data/nsi/logos/virginiatech-1efc6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiatech-1efc6c.png", "osmTags": { "and": [ "emergency=phone", @@ -281912,7 +282119,7 @@ }, { "question": "Waka Kotahi", - "icon": "./assets/data/nsi/logos/wakakotahi-ed25d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wakakotahi-ed25d5.png", "osmTags": { "and": [ "emergency=phone", @@ -281945,7 +282152,7 @@ }, { "question": "WSW mobil GmbH", - "icon": "./assets/data/nsi/logos/wswmobilgmbh-2f9882.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wswmobilgmbh-2f9882.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281960,7 +282167,7 @@ }, { "question": "Yale University", - "icon": "./assets/data/nsi/logos/yaleuniversity-2ea36d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yaleuniversity-2ea36d.jpg", "osmTags": { "and": [ "emergency=phone", @@ -281975,7 +282182,7 @@ }, { "question": "York University", - "icon": "./assets/data/nsi/logos/yorkuniversity-de0db7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/yorkuniversity-de0db7.png", "osmTags": { "and": [ "emergency=phone", @@ -282077,7 +282284,7 @@ }, { "question": "Bundesstadt Bonn", - "icon": "./assets/data/nsi/logos/bundesstadtbonn-f8b912.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundesstadtbonn-f8b912.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282134,7 +282341,7 @@ }, { "question": "City of Brooklyn Park", - "icon": "./assets/data/nsi/logos/cityofbrooklynpark-639ea2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbrooklynpark-639ea2.svg", "osmTags": { "and": [ "emergency=siren", @@ -282149,7 +282356,7 @@ }, { "question": "City of Davao", - "icon": "./assets/data/nsi/logos/cityofdavao-26df2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdavao-26df2d.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282206,7 +282413,7 @@ }, { "question": "City of Minneapolis", - "icon": "./assets/data/nsi/logos/cityofminneapolis-639ea2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofminneapolis-639ea2.svg", "osmTags": { "and": [ "emergency=siren", @@ -282249,7 +282456,7 @@ }, { "question": "City of Sand Springs", - "icon": "./assets/data/nsi/logos/cityofsandsprings-058349.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsandsprings-058349.png", "osmTags": { "and": [ "emergency=siren", @@ -282292,7 +282499,7 @@ }, { "question": "City of Tulsa", - "icon": "./assets/data/nsi/logos/cityoftulsa-058349.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftulsa-058349.svg", "osmTags": { "and": [ "emergency=siren", @@ -282318,7 +282525,7 @@ }, { "question": "Douglas County Emergency Management Agency", - "icon": "./assets/data/nsi/logos/douglascountyemergencymanagementagency-c6bab2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/douglascountyemergencymanagementagency-c6bab2.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282356,7 +282563,7 @@ }, { "question": "Hamilton County Emergency Management and Homeland Security Agency", - "icon": "./assets/data/nsi/logos/hamiltoncountyemergencymanagementandhomelandsecurityagency-52d0dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hamiltoncountyemergencymanagementandhomelandsecurityagency-52d0dc.png", "osmTags": { "and": [ "emergency=siren", @@ -282398,7 +282605,7 @@ }, { "question": "Landeshauptstadt Düsseldorf", - "icon": "./assets/data/nsi/logos/landeshauptstadtdusseldorf-f8b912.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtdusseldorf-f8b912.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282413,7 +282620,7 @@ }, { "question": "Landkreis Northeim", - "icon": "./assets/data/nsi/logos/landkreisnortheim-796fc0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landkreisnortheim-796fc0.svg", "osmTags": { "and": [ "emergency=siren", @@ -282428,7 +282635,7 @@ }, { "question": "Los Angeles County Sheriff's Department", - "icon": "./assets/data/nsi/logos/losangelescountysheriffsdepartment-7b4625.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelescountysheriffsdepartment-7b4625.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282484,7 +282691,7 @@ }, { "question": "Prefeitura Municipal de Maricá", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldemarica-768e06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldemarica-768e06.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282531,7 +282738,7 @@ }, { "question": "Severnside Sirens Trust", - "icon": "./assets/data/nsi/logos/severnsidesirenstrust-9767ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/severnsidesirenstrust-9767ed.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282546,7 +282753,7 @@ }, { "question": "Southern California Edison", - "icon": "./assets/data/nsi/logos/southerncaliforniaedison-6e3e97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-6e3e97.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282576,7 +282783,7 @@ }, { "question": "Stadt Baden-Baden", - "icon": "./assets/data/nsi/logos/stadtbadenbaden-a3f227.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbadenbaden-a3f227.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282591,7 +282798,7 @@ }, { "question": "Stadt Brühl", - "icon": "./assets/data/nsi/logos/stadtbruhl-f8b912.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbruhl-f8b912.svg", "osmTags": { "and": [ "emergency=siren", @@ -282606,7 +282813,7 @@ }, { "question": "Stadt Dorsten", - "icon": "./assets/data/nsi/logos/stadtdorsten-f8b912.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtdorsten-f8b912.svg", "osmTags": { "and": [ "emergency=siren", @@ -282621,7 +282828,7 @@ }, { "question": "Stadt Gelsenkirchen", - "icon": "./assets/data/nsi/logos/stadtgelsenkirchen-f8b912.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgelsenkirchen-f8b912.svg", "osmTags": { "and": [ "emergency=siren", @@ -282636,7 +282843,7 @@ }, { "question": "Stadt Gladbeck", - "icon": "./assets/data/nsi/logos/stadtgladbeck-f8b912.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgladbeck-f8b912.svg", "osmTags": { "and": [ "emergency=siren", @@ -282651,7 +282858,7 @@ }, { "question": "Stadt Heidelberg", - "icon": "./assets/data/nsi/logos/stadtheidelberg-a3f227.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtheidelberg-a3f227.png", "osmTags": { "and": [ "emergency=siren", @@ -282666,7 +282873,7 @@ }, { "question": "Stadt Köln", - "icon": "./assets/data/nsi/logos/stadtkoln-f8b912.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkoln-f8b912.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282681,7 +282888,7 @@ }, { "question": "Stadt Norderstedt", - "icon": "./assets/data/nsi/logos/stadtnorderstedt-ed9346.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtnorderstedt-ed9346.svg", "osmTags": { "and": [ "emergency=siren", @@ -282696,7 +282903,7 @@ }, { "question": "Stadt Passau", - "icon": "./assets/data/nsi/logos/stadtpassau-831afc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtpassau-831afc.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282711,7 +282918,7 @@ }, { "question": "Stadt Witten", - "icon": "./assets/data/nsi/logos/stadtwitten-f8b912.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwitten-f8b912.jpg", "osmTags": { "and": [ "emergency=siren", @@ -282735,7 +282942,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-99055c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-99055c.svg", "osmTags": { "and": [ "emergency=siren", @@ -282759,7 +282966,7 @@ }, { "question": "University of Minnesota", - "icon": "./assets/data/nsi/logos/universityofminnesota-639ea2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofminnesota-639ea2.png", "osmTags": { "and": [ "emergency=siren", @@ -282788,7 +282995,7 @@ }, { "question": "Verbandsgemeinde Prüm", - "icon": "./assets/data/nsi/logos/verbandsgemeindeprum-d10492.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindeprum-d10492.svg", "osmTags": { "and": [ "emergency=siren", @@ -282803,7 +283010,7 @@ }, { "question": "Verbandsgemeinde Südeifel", - "icon": "./assets/data/nsi/logos/verbandsgemeindesudeifel-d10492.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbandsgemeindesudeifel-d10492.svg", "osmTags": { "and": [ "emergency=siren", @@ -282845,7 +283052,7 @@ }, { "question": "Deutsche Gesellschaft zur Rettung Schiffbrüchiger", - "icon": "./assets/data/nsi/logos/deutschegesellschaftzurrettungschiffbruchiger-2bd3ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschegesellschaftzurrettungschiffbruchiger-2bd3ed.png", "osmTags": { "and": [ "emergency=water_rescue", @@ -282863,7 +283070,7 @@ }, { "question": "Koninklijke Nederlandse Redding Maatschappij", - "icon": "./assets/data/nsi/logos/koninklijkenederlandsereddingmaatschappij-67af85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koninklijkenederlandsereddingmaatschappij-67af85.jpg", "osmTags": { "and": [ "emergency=water_rescue", @@ -282880,7 +283087,7 @@ }, { "question": "National Sea Rescue Institute", - "icon": "./assets/data/nsi/logos/nationalsearescueinstitute-a2f807.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalsearescueinstitute-a2f807.jpg", "osmTags": { "and": [ "emergency=water_rescue", @@ -282897,7 +283104,7 @@ }, { "question": "Redningsselskapet", - "icon": "./assets/data/nsi/logos/redningsselskapet-47607c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redningsselskapet-47607c.jpg", "osmTags": { "and": [ "emergency=water_rescue", @@ -282914,7 +283121,7 @@ }, { "question": "Royal Canadian Marine Search and Rescue", - "icon": "./assets/data/nsi/logos/royalcanadianmarinesearchandrescue-5b3a4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalcanadianmarinesearchandrescue-5b3a4b.jpg", "osmTags": { "and": [ "emergency=water_rescue", @@ -282929,7 +283136,7 @@ }, { "question": "Royal National Lifeboat Institution", - "icon": "./assets/data/nsi/logos/royalnationallifeboatinstitution-fd74ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/royalnationallifeboatinstitution-fd74ef.png", "osmTags": { "and": [ "emergency=water_rescue", @@ -282945,7 +283152,7 @@ }, { "question": "Royal New Zealand Coastguard", - "icon": "./assets/data/nsi/logos/royalnewzealandcoastguard-9ad5bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royalnewzealandcoastguard-9ad5bc.jpg", "osmTags": { "and": [ "emergency=water_rescue", @@ -282960,7 +283167,7 @@ }, { "question": "Sjöräddningssällskapet", - "icon": "./assets/data/nsi/logos/sjoraddningssallskapet-c00171.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sjoraddningssallskapet-c00171.png", "osmTags": { "and": [ "emergency=water_rescue", @@ -282977,7 +283184,7 @@ }, { "question": "Société nationale de sauvetage en mer", - "icon": "./assets/data/nsi/logos/societenationaledesauvetageenmer-04cc00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/societenationaledesauvetageenmer-04cc00.jpg", "osmTags": { "and": [ "emergency=water_rescue", @@ -283002,7 +283209,7 @@ }, { "question": "Moto", - "icon": "./assets/data/nsi/logos/moto-5b1071.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/moto-5b1071.jpg", "osmTags": { "and": [ "highway=services", @@ -283017,7 +283224,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-fb22f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-fb22f2.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283032,7 +283239,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-c6232d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-c6232d.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283047,7 +283254,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-794e30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-794e30.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283062,7 +283269,7 @@ }, { "question": "City of Rochester (New York)", - "icon": "./assets/data/nsi/logos/cityofrochester-36d8ba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-36d8ba.svg", "osmTags": { "and": [ "highway=street_lamp", @@ -283077,7 +283284,7 @@ }, { "question": "ENMAX", - "icon": "./assets/data/nsi/logos/enmax-1a9281.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmax-1a9281.png", "osmTags": { "and": [ "highway=street_lamp", @@ -283092,7 +283299,7 @@ }, { "question": "ESB Networks", - "icon": "./assets/data/nsi/logos/esbnetworks-aacf49.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esbnetworks-aacf49.png", "osmTags": { "and": [ "highway=street_lamp", @@ -283121,7 +283328,7 @@ }, { "question": "Kansas City BPU", - "icon": "./assets/data/nsi/logos/kansascityboardofpublicutilities-26592d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-26592d.png", "osmTags": { "and": [ "highway=street_lamp", @@ -283137,7 +283344,7 @@ }, { "question": "LCEC", - "icon": "./assets/data/nsi/logos/leecountyelectriccooperative-c4768d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-c4768d.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283153,7 +283360,7 @@ }, { "question": "Monroe County DOT (New York)", - "icon": "./assets/data/nsi/logos/monroecountydepartmentoftransportation-36d8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monroecountydepartmentoftransportation-36d8ba.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283169,7 +283376,7 @@ }, { "question": "Puget Sound Energy", - "icon": "./assets/data/nsi/logos/pugetsoundenergy-2e474f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-2e474f.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283185,7 +283392,7 @@ }, { "question": "Rochester Gas & Electric", - "icon": "./assets/data/nsi/logos/rochestergasandelectric-36d8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-36d8ba.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283200,7 +283407,7 @@ }, { "question": "Salford City Council", - "icon": "./assets/data/nsi/logos/salfordcitycouncil-82a173.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salfordcitycouncil-82a173.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283215,7 +283422,7 @@ }, { "question": "Seattle City Light", - "icon": "./assets/data/nsi/logos/seattlecitylight-2e474f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-2e474f.png", "osmTags": { "and": [ "highway=street_lamp", @@ -283231,7 +283438,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-794e30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-794e30.jpg", "osmTags": { "and": [ "highway=street_lamp", @@ -283246,7 +283453,7 @@ }, { "question": "Central Texas Regional Mobility Authority", - "icon": "./assets/data/nsi/logos/centraltexasregionalmobilityauthority-2ee94d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centraltexasregionalmobilityauthority-2ee94d.jpg", "osmTags": { "and": [ "highway=toll_gantry", @@ -283281,7 +283488,7 @@ }, { "question": "Harris County Toll Road Authority", - "icon": "./assets/data/nsi/logos/harriscountytollroadauthority-2ee94d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harriscountytollroadauthority-2ee94d.jpg", "osmTags": { "and": [ "highway=toll_gantry", @@ -283298,7 +283505,7 @@ }, { "question": "Illinois Tollway", - "icon": "./assets/data/nsi/logos/illinoistollway-6b4377.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoistollway-6b4377.jpg", "osmTags": { "and": [ "highway=toll_gantry", @@ -283313,7 +283520,7 @@ }, { "question": "Maryland Transportation Authority", - "icon": "./assets/data/nsi/logos/marylandtransportationauthority-7b785c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marylandtransportationauthority-7b785c.jpg", "osmTags": { "and": [ "highway=toll_gantry", @@ -283346,7 +283553,7 @@ }, { "question": "New York State Thruway Authority", - "icon": "./assets/data/nsi/logos/newyorkstatethruwayauthority-b7c415.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatethruwayauthority-b7c415.jpg", "osmTags": { "and": [ "highway=toll_gantry", @@ -283362,7 +283569,7 @@ }, { "question": "North East Texas Regional Mobility Authority", - "icon": "./assets/data/nsi/logos/northeasttexasregionalmobilityauthority-2ee94d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northeasttexasregionalmobilityauthority-2ee94d.jpg", "osmTags": { "and": [ "highway=toll_gantry", @@ -283380,7 +283587,7 @@ }, { "question": "North Texas Tollway Authority", - "icon": "./assets/data/nsi/logos/northtexastollwayauthority-2ee94d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northtexastollwayauthority-2ee94d.png", "osmTags": { "and": [ "highway=toll_gantry", @@ -283475,7 +283682,7 @@ }, { "question": "LinkNYC", - "icon": "./assets/data/nsi/logos/linknyc-18f10f.gif", + "icon": "https://data.mapcomplete.org/nsi//logos/linknyc-18f10f.gif", "osmTags": { "and": [ "information=terminal", @@ -283510,7 +283717,7 @@ }, { "question": "CEMEX", - "icon": "./assets/data/nsi/logos/cemex-4804e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cemex-4804e2.jpg", "osmTags": { "and": [ "industrial=concrete_plant", @@ -283527,7 +283734,7 @@ }, { "question": "Dopravný podnik mesta Košice", - "icon": "./assets/data/nsi/logos/dopravnypodnikmestakosice-538cb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dopravnypodnikmestakosice-538cb3.jpg", "osmTags": { "and": [ "industrial=depot", @@ -283544,7 +283751,7 @@ }, { "question": "Skanska Transbeton", - "icon": "./assets/data/nsi/logos/skanskatransbetonsro-63d3fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skanskatransbetonsro-63d3fe.png", "osmTags": { "and": [ "industrial=concrete_plant", @@ -283577,7 +283784,7 @@ }, { "question": "Метрополитен", - "icon": "./assets/data/nsi/logos/184e0b-4a2e40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/184e0b-4a2e40.png", "osmTags": { "and": [ "industrial=depot", @@ -283608,7 +283815,7 @@ }, { "question": "Столичен електротранспорт", - "icon": "./assets/data/nsi/logos/28c7ea-4a2e40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/28c7ea-4a2e40.jpg", "osmTags": { "and": [ "industrial=depot", @@ -283624,7 +283831,7 @@ }, { "question": "CEMEX", - "icon": "./assets/data/nsi/logos/cemex-19e3b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cemex-19e3b1.jpg", "osmTags": { "and": [ "landuse=quarry", @@ -283640,7 +283847,7 @@ }, { "question": "Eurovia CS", - "icon": "./assets/data/nsi/logos/euroviacs-60440c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/euroviacs-60440c.jpg", "osmTags": { "and": [ "landuse=quarry", @@ -283655,7 +283862,7 @@ }, { "question": "Eurovia SK", - "icon": "./assets/data/nsi/logos/euroviask-7ab4fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/euroviask-7ab4fb.jpg", "osmTags": { "and": [ "landuse=quarry", @@ -283670,7 +283877,7 @@ }, { "question": "Fulton Hogan", - "icon": "./assets/data/nsi/logos/fultonhogan-30f0f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fultonhogan-30f0f6.jpg", "osmTags": { "and": [ "landuse=quarry", @@ -283685,7 +283892,7 @@ }, { "question": "Greystar", - "icon": "./assets/data/nsi/logos/greystar-c22904.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greystar-c22904.jpg", "osmTags": { "and": [ "landuse=residential", @@ -283717,7 +283924,7 @@ }, { "question": "香港房屋委員會 Hong Kong Housing Authority", - "icon": "./assets/data/nsi/logos/hongkonghousingauthority-c7b8ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkonghousingauthority-c7b8ae.jpg", "osmTags": { "and": [ "landuse=residential", @@ -283735,7 +283942,7 @@ }, { "question": "Kimco Realty", - "icon": "./assets/data/nsi/logos/kimcorealty-b79e4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kimcorealty-b79e4b.jpg", "osmTags": { "and": [ "landuse=retail", @@ -283750,7 +283957,7 @@ }, { "question": "Regency Centers", - "icon": "./assets/data/nsi/logos/regencycenters-b79e4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/regencycenters-b79e4b.png", "osmTags": { "and": [ "landuse=retail", @@ -283765,7 +283972,7 @@ }, { "question": "SITE Centers", - "icon": "./assets/data/nsi/logos/sitecenters-b79e4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sitecenters-b79e4b.jpg", "osmTags": { "and": [ "landuse=retail", @@ -283780,7 +283987,7 @@ }, { "question": "Audubon", - "icon": "./assets/data/nsi/logos/audubon-b9cbaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/audubon-b9cbaf.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283796,7 +284003,7 @@ }, { "question": "Ducks Unlimited", - "icon": "./assets/data/nsi/logos/ducksunlimited-c37c3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ducksunlimited-c37c3f.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283812,7 +284019,7 @@ }, { "question": "Forest Preserve District of DuPage County", - "icon": "./assets/data/nsi/logos/forestpreservedistrictofdupagecounty-6b40ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofdupagecounty-6b40ef.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283828,7 +284035,7 @@ }, { "question": "Forest Preserve District of Kane County", - "icon": "./assets/data/nsi/logos/forestpreservedistrictofkanecounty-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofkanecounty-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283861,7 +284068,7 @@ }, { "question": "Lake County Forest Preserves", - "icon": "./assets/data/nsi/logos/lakecountyforestpreserves-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lakecountyforestpreserves-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283877,7 +284084,7 @@ }, { "question": "Little Traverse Conservancy", - "icon": "./assets/data/nsi/logos/littletraverseconservancy-101c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/littletraverseconservancy-101c18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283893,7 +284100,7 @@ }, { "question": "London Wildlife Trust", - "icon": "./assets/data/nsi/logos/londonwildlifetrust-de0fdb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonwildlifetrust-de0fdb.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283909,7 +284116,7 @@ }, { "question": "Michigan Nature Association", - "icon": "./assets/data/nsi/logos/michigannatureassociation-101c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michigannatureassociation-101c18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283926,7 +284133,7 @@ }, { "question": "Nature Conservancy of Canada", - "icon": "./assets/data/nsi/logos/natureconservancyofcanada-355d3b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/natureconservancyofcanada-355d3b.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283943,7 +284150,7 @@ }, { "question": "Open Space Institute", - "icon": "./assets/data/nsi/logos/openspaceinstitute-b9cbaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/openspaceinstitute-b9cbaf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283959,7 +284166,7 @@ }, { "question": "The Nature Conservancy", - "icon": "./assets/data/nsi/logos/thenatureconservancy-0d1563.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thenatureconservancy-0d1563.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283976,7 +284183,7 @@ }, { "question": "United States Fish and Wildlife Service", - "icon": "./assets/data/nsi/logos/unitedstatesfishandwildlifeservice-b9cbaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesfishandwildlifeservice-b9cbaf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -283993,7 +284200,7 @@ }, { "question": "Abbotsford Parks, Recreation & Culture", - "icon": "./assets/data/nsi/logos/abbotsfordparksrecreationandculture-56b35c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abbotsfordparksrecreationandculture-56b35c.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284009,7 +284216,7 @@ }, { "question": "Ajuntament de l'Hospitalet de Llobregat", - "icon": "./assets/data/nsi/logos/ajuntamentdelhospitaletdellobregat-c4d908.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdelhospitaletdellobregat-c4d908.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284025,7 +284232,7 @@ }, { "question": "Alabama State Parks", - "icon": "./assets/data/nsi/logos/alabamastateparks-e4aae0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamastateparks-e4aae0.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284041,7 +284248,7 @@ }, { "question": "Alaska Division of Parks & Outdoor Recreation", - "icon": "./assets/data/nsi/logos/alaskadivisionofparksandoutdoorrecreation-e9a2c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alaskadivisionofparksandoutdoorrecreation-e9a2c6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284071,7 +284278,7 @@ }, { "question": "Allegany County", - "icon": "./assets/data/nsi/logos/alleganycountycommissioners-6ec8b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alleganycountycommissioners-6ec8b9.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284101,7 +284308,7 @@ }, { "question": "Anderson Island Parks and Recreation District", - "icon": "./assets/data/nsi/logos/andersonislandparksandrecreationdistrict-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andersonislandparksandrecreationdistrict-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284132,7 +284339,7 @@ }, { "question": "Arizona State Parks", - "icon": "./assets/data/nsi/logos/arizonastateparks-d11711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonastateparks-d11711.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284148,7 +284355,7 @@ }, { "question": "Arkansas State Parks", - "icon": "./assets/data/nsi/logos/arkansasstateparks-0cc157.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasstateparks-0cc157.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284178,7 +284385,7 @@ }, { "question": "Arlington Heights Park District", - "icon": "./assets/data/nsi/logos/arlingtonheightsparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arlingtonheightsparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284195,7 +284402,7 @@ }, { "question": "Auckland Council", - "icon": "./assets/data/nsi/logos/aucklandcouncil-fa9be8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-fa9be8.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284211,7 +284418,7 @@ }, { "question": "Austin Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/austinparksandrecreationdepartment-a3b6e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinparksandrecreationdepartment-a3b6e6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284257,7 +284464,7 @@ }, { "question": "Ayuntamiento de Málaga", - "icon": "./assets/data/nsi/logos/ayuntamientodemalaga-c4d908.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemalaga-c4d908.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284288,7 +284495,7 @@ }, { "question": "Bainbridge Island Metro Park & Recreation District", - "icon": "./assets/data/nsi/logos/bainbridgeislandmetroparkandrecreationdistrict-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bainbridgeislandmetroparkandrecreationdistrict-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284304,7 +284511,7 @@ }, { "question": "Baltimore County Department of Recreation and Parks", - "icon": "./assets/data/nsi/logos/baltimorecountydepartmentofrecreationandparks-6ec8b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecountydepartmentofrecreationandparks-6ec8b9.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284320,7 +284527,7 @@ }, { "question": "Barnet Council", - "icon": "./assets/data/nsi/logos/barnetcouncil-de0fdb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barnetcouncil-de0fdb.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284336,7 +284543,7 @@ }, { "question": "Batavia Park District", - "icon": "./assets/data/nsi/logos/bataviaparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bataviaparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284352,7 +284559,7 @@ }, { "question": "Bayerische Verwaltung der staatlichen Schlösser, Gärten und Seen", - "icon": "./assets/data/nsi/logos/bayerischeverwaltungderstaatlichenschlossergartenundseen-25ab8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayerischeverwaltungderstaatlichenschlossergartenundseen-25ab8c.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284368,7 +284575,7 @@ }, { "question": "BBMP", - "icon": "./assets/data/nsi/logos/bruhatbengalurumahanagarapalike-38394d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bruhatbengalurumahanagarapalike-38394d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284387,7 +284594,7 @@ }, { "question": "BCRP", - "icon": "./assets/data/nsi/logos/baltimorecitydepartmentofrecreationandparks-6f7ba5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecitydepartmentofrecreationandparks-6f7ba5.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284404,7 +284611,7 @@ }, { "question": "Belfast City Council", - "icon": "./assets/data/nsi/logos/belfastcitycouncil-afc2c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belfastcitycouncil-afc2c1.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284420,7 +284627,7 @@ }, { "question": "Bend Park & Recreation District", - "icon": "./assets/data/nsi/logos/bendparkandrecreationdistrict-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bendparkandrecreationdistrict-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284436,7 +284643,7 @@ }, { "question": "Birmingham Park and Recreation", - "icon": "./assets/data/nsi/logos/birminghamparkandrecreationboard-e4aae0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamparkandrecreationboard-e4aae0.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284452,7 +284659,7 @@ }, { "question": "Blacksburg Parks and Recreation", - "icon": "./assets/data/nsi/logos/blacksburgparksandrecreation-d70331.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blacksburgparksandrecreation-d70331.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284482,7 +284689,7 @@ }, { "question": "BMC (Bhubaneswar)", - "icon": "./assets/data/nsi/logos/bhubaneswarmunicipalcorporation-73d14c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bhubaneswarmunicipalcorporation-73d14c.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284518,7 +284725,7 @@ }, { "question": "Bolingbrook Park District", - "icon": "./assets/data/nsi/logos/bolingbrookparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bolingbrookparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284534,7 +284741,7 @@ }, { "question": "BREC", - "icon": "./assets/data/nsi/logos/brec-615c8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brec-615c8d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284550,7 +284757,7 @@ }, { "question": "Brisbane City Council", - "icon": "./assets/data/nsi/logos/brisbanecitycouncil-aa8094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brisbanecitycouncil-aa8094.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284566,7 +284773,7 @@ }, { "question": "Bristol City Council", - "icon": "./assets/data/nsi/logos/bristolcitycouncil-cd8f03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristolcitycouncil-cd8f03.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284582,7 +284789,7 @@ }, { "question": "Buffalo Grove Park District", - "icon": "./assets/data/nsi/logos/buffalogroveparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buffalogroveparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284599,7 +284806,7 @@ }, { "question": "Bureau of Land Management", - "icon": "./assets/data/nsi/logos/bureauoflandmanagement-b9cbaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-b9cbaf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284616,7 +284823,7 @@ }, { "question": "California Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/californiadepartmentofparksandrecreation-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofparksandrecreation-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284632,7 +284839,7 @@ }, { "question": "Calumet Memorial Park District", - "icon": "./assets/data/nsi/logos/calumetmemorialparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calumetmemorialparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284649,7 +284856,7 @@ }, { "question": "Câmara Municipal de Lisboa", - "icon": "./assets/data/nsi/logos/camaramunicipaldelisboa-d55e30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camaramunicipaldelisboa-d55e30.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284680,7 +284887,7 @@ }, { "question": "Campbelltown City Council", - "icon": "./assets/data/nsi/logos/campbelltowncitycouncil-044fbe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/campbelltowncitycouncil-044fbe.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284696,7 +284903,7 @@ }, { "question": "Canyon Lake Property Owners Association", - "icon": "./assets/data/nsi/logos/canyonlakepropertyownersassociation-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canyonlakepropertyownersassociation-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284712,7 +284919,7 @@ }, { "question": "Capital Development Authority (Islamabad)", - "icon": "./assets/data/nsi/logos/capitaldevelopmentauthority-b726dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitaldevelopmentauthority-b726dd.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284744,7 +284951,7 @@ }, { "question": "Carson City", - "icon": "./assets/data/nsi/logos/carsoncityparksrecreationandopenspacedepartment-320125.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carsoncityparksrecreationandopenspacedepartment-320125.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284760,7 +284967,7 @@ }, { "question": "Cartersville Parks and Recreation", - "icon": "./assets/data/nsi/logos/cartersvilleparksandrecreation-62554d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cartersvilleparksandrecreation-62554d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284793,7 +285000,7 @@ }, { "question": "Central Regional District", - "icon": "./assets/data/nsi/logos/centralregionaldistrict-56b35c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralregionaldistrict-56b35c.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284810,7 +285017,7 @@ }, { "question": "Chehalem Park and Recreation District", - "icon": "./assets/data/nsi/logos/chehalemparkandrecreationdistrict-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chehalemparkandrecreationdistrict-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284840,7 +285047,7 @@ }, { "question": "Chicago Heights Park District", - "icon": "./assets/data/nsi/logos/chicagoheightsparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagoheightsparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284856,7 +285063,7 @@ }, { "question": "Chicago Park District", - "icon": "./assets/data/nsi/logos/chicagoparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagoparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284872,7 +285079,7 @@ }, { "question": "Christchurch City Council", - "icon": "./assets/data/nsi/logos/christchurchcitycouncil-ff83c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/christchurchcitycouncil-ff83c4.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284917,7 +285124,7 @@ }, { "question": "City of Ames", - "icon": "./assets/data/nsi/logos/cityofames-083489.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofames-083489.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284933,7 +285140,7 @@ }, { "question": "City of Andover", - "icon": "./assets/data/nsi/logos/cityofandover-19fc0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofandover-19fc0b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284949,7 +285156,7 @@ }, { "question": "City of Ann Arbor", - "icon": "./assets/data/nsi/logos/cityofannarbor-101c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofannarbor-101c18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284965,7 +285172,7 @@ }, { "question": "City of Ashland (Oregon)", - "icon": "./assets/data/nsi/logos/cityofashland-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofashland-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284981,7 +285188,7 @@ }, { "question": "City of Ashland (Wisconsin)", - "icon": "./assets/data/nsi/logos/cityofashland-d8ec11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofashland-d8ec11.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -284997,7 +285204,7 @@ }, { "question": "City of Ashtabula", - "icon": "./assets/data/nsi/logos/cityofashtabula-e4a950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofashtabula-e4a950.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285013,7 +285220,7 @@ }, { "question": "City of Auburn (Washington)", - "icon": "./assets/data/nsi/logos/cityofauburn-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofauburn-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285029,7 +285236,7 @@ }, { "question": "City of Aurora", - "icon": "./assets/data/nsi/logos/cityofaurora-241158.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofaurora-241158.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285045,7 +285252,7 @@ }, { "question": "City of Battle Creek", - "icon": "./assets/data/nsi/logos/cityofbattlecreek-101c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbattlecreek-101c18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285061,7 +285268,7 @@ }, { "question": "City of Battle Ground", - "icon": "./assets/data/nsi/logos/cityofbattleground-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbattleground-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285077,7 +285284,7 @@ }, { "question": "City of Beaverton", - "icon": "./assets/data/nsi/logos/cityofbeaverton-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbeaverton-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285093,7 +285300,7 @@ }, { "question": "City of Belleair", - "icon": "./assets/data/nsi/logos/cityofbelleair-611b25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbelleair-611b25.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285109,7 +285316,7 @@ }, { "question": "City of Bellevue (Iowa)", - "icon": "./assets/data/nsi/logos/cityofbellevue-083489.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbellevue-083489.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285125,7 +285332,7 @@ }, { "question": "City of Bellevue (Washington)", - "icon": "./assets/data/nsi/logos/cityofbellevue-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbellevue-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285141,7 +285348,7 @@ }, { "question": "City of Bellingham", - "icon": "./assets/data/nsi/logos/cityofbellingham-9f19b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbellingham-9f19b6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285172,7 +285379,7 @@ }, { "question": "City of Blaine (Minnesota)", - "icon": "./assets/data/nsi/logos/cityofblaine-19fc0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofblaine-19fc0b.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285188,7 +285395,7 @@ }, { "question": "City of Blaine (Washington)", - "icon": "./assets/data/nsi/logos/cityofblaine-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofblaine-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285204,7 +285411,7 @@ }, { "question": "City of Boise", - "icon": "./assets/data/nsi/logos/cityofboise-53eecf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofboise-53eecf.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285220,7 +285427,7 @@ }, { "question": "City of Boulder", - "icon": "./assets/data/nsi/logos/cityofboulder-241158.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofboulder-241158.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285236,7 +285443,7 @@ }, { "question": "City of Boynton Beach", - "icon": "./assets/data/nsi/logos/cityofboyntonbeach-611b25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofboyntonbeach-611b25.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285252,7 +285459,7 @@ }, { "question": "City of Bremerton", - "icon": "./assets/data/nsi/logos/cityofbremerton-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbremerton-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285268,7 +285475,7 @@ }, { "question": "City of Brentwood (California)", - "icon": "./assets/data/nsi/logos/cityofbrentwood-46dc27.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbrentwood-46dc27.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285284,7 +285491,7 @@ }, { "question": "City of Brentwood (Missouri)", - "icon": "./assets/data/nsi/logos/cityofbrentwood-44b06a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbrentwood-44b06a.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285300,7 +285507,7 @@ }, { "question": "City of Buffalo", - "icon": "./assets/data/nsi/logos/cityofbuffalo-5fa58e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbuffalo-5fa58e.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285316,7 +285523,7 @@ }, { "question": "City of Caldwell (Idaho)", - "icon": "./assets/data/nsi/logos/cityofcaldwell-53eecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcaldwell-53eecf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285332,7 +285539,7 @@ }, { "question": "City of Calgary", - "icon": "./assets/data/nsi/logos/cityofcalgary-469704.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcalgary-469704.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285348,7 +285555,7 @@ }, { "question": "City of Camas", - "icon": "./assets/data/nsi/logos/cityofcamas-9f19b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcamas-9f19b6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285364,7 +285571,7 @@ }, { "question": "City of Cambridge (Massachusetts)", - "icon": "./assets/data/nsi/logos/cityofcambridge-defa05.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcambridge-defa05.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285380,7 +285587,7 @@ }, { "question": "City of Cambridge (Ontario)", - "icon": "./assets/data/nsi/logos/cityofcambridge-45bb01.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcambridge-45bb01.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285411,7 +285618,7 @@ }, { "question": "City of Cape Town", - "icon": "./assets/data/nsi/logos/cityofcapetown-e7313b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-e7313b.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285445,7 +285652,7 @@ }, { "question": "City of Chandler", - "icon": "./assets/data/nsi/logos/cityofchandler-d11711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofchandler-d11711.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285461,7 +285668,7 @@ }, { "question": "City of Charleston (South Carolina)", - "icon": "./assets/data/nsi/logos/cityofcharleston-0d235d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcharleston-0d235d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285477,7 +285684,7 @@ }, { "question": "City of Clearwater", - "icon": "./assets/data/nsi/logos/cityofclearwater-611b25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofclearwater-611b25.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285493,7 +285700,7 @@ }, { "question": "City of Cleveland (Ohio)", - "icon": "./assets/data/nsi/logos/cityofcleveland-e4a950.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcleveland-e4a950.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285509,7 +285716,7 @@ }, { "question": "City of Coeur d'Alene", - "icon": "./assets/data/nsi/logos/cityofcoeurdalene-53eecf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcoeurdalene-53eecf.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285555,7 +285762,7 @@ }, { "question": "City of Corinth", - "icon": "./assets/data/nsi/logos/cityofcorinth-a3b6e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcorinth-a3b6e6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285571,7 +285778,7 @@ }, { "question": "City of Cornelius", - "icon": "./assets/data/nsi/logos/cityofcornelius-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcornelius-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285602,7 +285809,7 @@ }, { "question": "City of Denton", - "icon": "./assets/data/nsi/logos/cityofdenton-a3b6e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdenton-a3b6e6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285618,7 +285825,7 @@ }, { "question": "City of Des Moines (Iowa)", - "icon": "./assets/data/nsi/logos/cityofdesmoines-083489.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdesmoines-083489.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285634,7 +285841,7 @@ }, { "question": "City of Des Moines (Washington)", - "icon": "./assets/data/nsi/logos/cityofdesmoines-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdesmoines-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285650,7 +285857,7 @@ }, { "question": "City of Detroit", - "icon": "./assets/data/nsi/logos/cityofdetroit-101c18.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdetroit-101c18.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285666,7 +285873,7 @@ }, { "question": "City of Dover (Delaware)", - "icon": "./assets/data/nsi/logos/cityofdover-7b86a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdover-7b86a2.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285727,7 +285934,7 @@ }, { "question": "City of Edmonton", - "icon": "./assets/data/nsi/logos/cityofedmonton-469704.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofedmonton-469704.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285743,7 +285950,7 @@ }, { "question": "City of Emeryville", - "icon": "./assets/data/nsi/logos/cityofemeryville-273080.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofemeryville-273080.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285759,7 +285966,7 @@ }, { "question": "City of Erie", - "icon": "./assets/data/nsi/logos/cityoferie-bec98d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoferie-bec98d.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285775,7 +285982,7 @@ }, { "question": "City of Fairview", - "icon": "./assets/data/nsi/logos/cityoffairview-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoffairview-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285791,7 +285998,7 @@ }, { "question": "City of Farmington", - "icon": "./assets/data/nsi/logos/cityoffarmington-9edcaa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoffarmington-9edcaa.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285807,7 +286014,7 @@ }, { "question": "City of Fayetteville (Arkansas)", - "icon": "./assets/data/nsi/logos/cityoffayetteville-0cc157.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoffayetteville-0cc157.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285838,7 +286045,7 @@ }, { "question": "City of Fontana", - "icon": "./assets/data/nsi/logos/cityoffontana-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoffontana-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285854,7 +286061,7 @@ }, { "question": "City of Forest Grove", - "icon": "./assets/data/nsi/logos/cityofforestgrove-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofforestgrove-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285870,7 +286077,7 @@ }, { "question": "City of Gary", - "icon": "./assets/data/nsi/logos/cityofgary-be422a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgary-be422a.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285886,7 +286093,7 @@ }, { "question": "City of Geneva (New York)", - "icon": "./assets/data/nsi/logos/cityofgeneva-5fa58e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgeneva-5fa58e.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285917,7 +286124,7 @@ }, { "question": "City of Gladstone (Oregon)", - "icon": "./assets/data/nsi/logos/cityofgladstone-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgladstone-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285933,7 +286140,7 @@ }, { "question": "City of Glendale", - "icon": "./assets/data/nsi/logos/cityofglendale-d11711.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofglendale-d11711.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285979,7 +286186,7 @@ }, { "question": "City of Grand Ledge", - "icon": "./assets/data/nsi/logos/cityofgrandledge-101c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgrandledge-101c18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -285995,7 +286202,7 @@ }, { "question": "City of Greater Sudbury", - "icon": "./assets/data/nsi/logos/cityofgreatersudbury-45bb01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgreatersudbury-45bb01.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286011,7 +286218,7 @@ }, { "question": "City of Greeley", - "icon": "./assets/data/nsi/logos/cityofgreeley-241158.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgreeley-241158.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286057,7 +286264,7 @@ }, { "question": "City of Gresham", - "icon": "./assets/data/nsi/logos/cityofgresham-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgresham-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286073,7 +286280,7 @@ }, { "question": "City of Hammond", - "icon": "./assets/data/nsi/logos/cityofhammond-be422a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhammond-be422a.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286104,7 +286311,7 @@ }, { "question": "City of Hartford (Connecticut)", - "icon": "./assets/data/nsi/logos/cityofhartford-67b670.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhartford-67b670.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286120,7 +286327,7 @@ }, { "question": "City of Hartford (Wisconsin)", - "icon": "./assets/data/nsi/logos/cityofhartford-d8ec11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhartford-d8ec11.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286166,7 +286373,7 @@ }, { "question": "City of Highland Village", - "icon": "./assets/data/nsi/logos/cityofhighlandvillage-a3b6e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhighlandvillage-a3b6e6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286182,7 +286389,7 @@ }, { "question": "City of Houston", - "icon": "./assets/data/nsi/logos/houstonparksandrecreationdepartment-a3b6e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houstonparksandrecreationdepartment-a3b6e6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286201,7 +286408,7 @@ }, { "question": "City of Idaho Falls", - "icon": "./assets/data/nsi/logos/cityofidahofalls-53eecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofidahofalls-53eecf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286217,7 +286424,7 @@ }, { "question": "City of Jacksonville", - "icon": "./assets/data/nsi/logos/cityofjacksonville-611b25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofjacksonville-611b25.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286233,7 +286440,7 @@ }, { "question": "City of Kamloops", - "icon": "./assets/data/nsi/logos/cityofkamloops-56b35c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofkamloops-56b35c.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286249,7 +286456,7 @@ }, { "question": "City of Keizer", - "icon": "./assets/data/nsi/logos/cityofkeizer-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofkeizer-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286265,7 +286472,7 @@ }, { "question": "City of Kitchener", - "icon": "./assets/data/nsi/logos/cityofkitchener-45bb01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofkitchener-45bb01.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286281,7 +286488,7 @@ }, { "question": "City of Knoxville (Tennessee)", - "icon": "./assets/data/nsi/logos/cityofknoxville-6118d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofknoxville-6118d7.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286297,7 +286504,7 @@ }, { "question": "City of Lake Oswego", - "icon": "./assets/data/nsi/logos/cityoflakeoswego-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakeoswego-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286313,7 +286520,7 @@ }, { "question": "City of Lakewood (California)", - "icon": "./assets/data/nsi/logos/cityoflakewood-1fa081.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-1fa081.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286329,7 +286536,7 @@ }, { "question": "City of Lakewood (Colorado)", - "icon": "./assets/data/nsi/logos/cityoflakewood-241158.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-241158.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286345,7 +286552,7 @@ }, { "question": "City of Lakewood (Ohio)", - "icon": "./assets/data/nsi/logos/cityoflakewood-e4a950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-e4a950.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286361,7 +286568,7 @@ }, { "question": "City of Lakewood Parks and Recreation", - "icon": "./assets/data/nsi/logos/cityoflakewoodparksandrecreation-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakewoodparksandrecreation-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286377,7 +286584,7 @@ }, { "question": "City of Lancaster (California)", - "icon": "./assets/data/nsi/logos/cityoflancaster-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflancaster-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286393,7 +286600,7 @@ }, { "question": "City of Lancaster (Pennsylvania)", - "icon": "./assets/data/nsi/logos/cityoflancaster-bec98d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflancaster-bec98d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286409,7 +286616,7 @@ }, { "question": "City of Lansing", - "icon": "./assets/data/nsi/logos/cityoflansing-101c18.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflansing-101c18.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286440,7 +286647,7 @@ }, { "question": "City of Lewiston", - "icon": "./assets/data/nsi/logos/cityoflewiston-53eecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflewiston-53eecf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286456,7 +286663,7 @@ }, { "question": "City of Lincoln (Nebraska)", - "icon": "./assets/data/nsi/logos/cityoflincoln-d7c809.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflincoln-d7c809.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286502,7 +286709,7 @@ }, { "question": "City of Los Angeles", - "icon": "./assets/data/nsi/logos/cityoflosangeles-1fa081.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflosangeles-1fa081.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286533,7 +286740,7 @@ }, { "question": "City of Mahtomedi", - "icon": "./assets/data/nsi/logos/cityofmahtomedi-19fc0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmahtomedi-19fc0b.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286564,7 +286771,7 @@ }, { "question": "City of Martinez", - "icon": "./assets/data/nsi/logos/cityofmartinez-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmartinez-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286580,7 +286787,7 @@ }, { "question": "City of Medford (Oregon)", - "icon": "./assets/data/nsi/logos/cityofmedford-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmedford-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286596,7 +286803,7 @@ }, { "question": "City of Meridian", - "icon": "./assets/data/nsi/logos/cityofmeridian-53eecf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmeridian-53eecf.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286612,7 +286819,7 @@ }, { "question": "City of Mesa", - "icon": "./assets/data/nsi/logos/cityofmesa-d11711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmesa-d11711.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286628,7 +286835,7 @@ }, { "question": "City of Miami", - "icon": "./assets/data/nsi/logos/cityofmiami-611b25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmiami-611b25.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286644,7 +286851,7 @@ }, { "question": "City of Middletown (Connecticut)", - "icon": "./assets/data/nsi/logos/cityofmiddletown-67b670.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmiddletown-67b670.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286660,7 +286867,7 @@ }, { "question": "City of Middletown (New York)", - "icon": "./assets/data/nsi/logos/cityofmiddletown-5fa58e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmiddletown-5fa58e.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286676,7 +286883,7 @@ }, { "question": "City of Moreton Bay", - "icon": "./assets/data/nsi/logos/cityofmoretonbay-aa8094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmoretonbay-aa8094.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286692,7 +286899,7 @@ }, { "question": "City of Mountlake Terrace", - "icon": "./assets/data/nsi/logos/cityofmountlaketerrace-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmountlaketerrace-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286708,7 +286915,7 @@ }, { "question": "City of Nampa", - "icon": "./assets/data/nsi/logos/cityofnampa-53eecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnampa-53eecf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286739,7 +286946,7 @@ }, { "question": "City of Norfolk (Virginia)", - "icon": "./assets/data/nsi/logos/cityofnorfolk-d70331.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnorfolk-d70331.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286755,7 +286962,7 @@ }, { "question": "City of Norman", - "icon": "./assets/data/nsi/logos/cityofnorman-726c77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnorman-726c77.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286771,7 +286978,7 @@ }, { "question": "City of Norwich", - "icon": "./assets/data/nsi/logos/cityofnorwich-67b670.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnorwich-67b670.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286787,7 +286994,7 @@ }, { "question": "City of Oklahoma City", - "icon": "./assets/data/nsi/logos/cityofoklahomacity-726c77.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofoklahomacity-726c77.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286803,7 +287010,7 @@ }, { "question": "City of Orlando", - "icon": "./assets/data/nsi/logos/cityoforlando-611b25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoforlando-611b25.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286819,7 +287026,7 @@ }, { "question": "City of Orting", - "icon": "./assets/data/nsi/logos/cityoforting-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoforting-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286835,7 +287042,7 @@ }, { "question": "City of Oshawa", - "icon": "./assets/data/nsi/logos/cityofoshawa-45bb01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofoshawa-45bb01.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286851,7 +287058,7 @@ }, { "question": "City of Ottawa", - "icon": "./assets/data/nsi/logos/cityofottawa-45bb01.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofottawa-45bb01.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286882,7 +287089,7 @@ }, { "question": "City of Phoenix Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/cityofphoenixparksandrecreationdepartment-d11711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofphoenixparksandrecreationdepartment-d11711.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286898,7 +287105,7 @@ }, { "question": "City of Pocatello", - "icon": "./assets/data/nsi/logos/cityofpocatello-53eecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofpocatello-53eecf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286929,7 +287136,7 @@ }, { "question": "City of Portland (Maine)", - "icon": "./assets/data/nsi/logos/cityofportland-46e924.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofportland-46e924.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286945,7 +287152,7 @@ }, { "question": "City of Rancho Cucamonga", - "icon": "./assets/data/nsi/logos/cityofranchocucamonga-46dc27.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofranchocucamonga-46dc27.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286961,7 +287168,7 @@ }, { "question": "City of Redlands", - "icon": "./assets/data/nsi/logos/cityofredlands-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofredlands-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286977,7 +287184,7 @@ }, { "question": "City of Redmond (Washington)", - "icon": "./assets/data/nsi/logos/cityofredmond-9f19b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofredmond-9f19b6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -286993,7 +287200,7 @@ }, { "question": "City of Regina", - "icon": "./assets/data/nsi/logos/cityofregina-2649a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofregina-2649a0.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287009,7 +287216,7 @@ }, { "question": "City of Richmond (British Columbia)", - "icon": "./assets/data/nsi/logos/cityofrichmond-56b35c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-56b35c.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287025,7 +287232,7 @@ }, { "question": "City of Richmond (Indiana)", - "icon": "./assets/data/nsi/logos/cityofrichmond-be422a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-be422a.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287041,7 +287248,7 @@ }, { "question": "City of Richmond (Virginia)", - "icon": "./assets/data/nsi/logos/cityofrichmond-d70331.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-d70331.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287057,7 +287264,7 @@ }, { "question": "City of Rochester (Michigan)", - "icon": "./assets/data/nsi/logos/cityofrochester-101c18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-101c18.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287073,7 +287280,7 @@ }, { "question": "City of Rochester (Minnesota)", - "icon": "./assets/data/nsi/logos/cityofrochester-19fc0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-19fc0b.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287089,7 +287296,7 @@ }, { "question": "City of Rochester (New Hampshire)", - "icon": "./assets/data/nsi/logos/cityofrochester-fcd3ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-fcd3ad.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287105,7 +287312,7 @@ }, { "question": "City of Rochester (New York)", - "icon": "./assets/data/nsi/logos/cityofrochester-5fa58e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-5fa58e.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287121,7 +287328,7 @@ }, { "question": "City of Rocklin", - "icon": "./assets/data/nsi/logos/cityofrocklin-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrocklin-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287152,7 +287359,7 @@ }, { "question": "City of Rolla", - "icon": "./assets/data/nsi/logos/cityofrolla-44b06a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrolla-44b06a.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287168,7 +287375,7 @@ }, { "question": "City of Roseburg", - "icon": "./assets/data/nsi/logos/cityofroseburg-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofroseburg-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287184,7 +287391,7 @@ }, { "question": "City of Roseville (California)", - "icon": "./assets/data/nsi/logos/cityofroseville-46dc27.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofroseville-46dc27.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287200,7 +287407,7 @@ }, { "question": "City of Salem (Oregon)", - "icon": "./assets/data/nsi/logos/cityofsalem-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsalem-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287216,7 +287423,7 @@ }, { "question": "City of San Antonio", - "icon": "./assets/data/nsi/logos/cityofsanantonio-a3b6e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsanantonio-a3b6e6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287247,7 +287454,7 @@ }, { "question": "City of Santa Fe", - "icon": "./assets/data/nsi/logos/cityofsantafe-9edcaa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsantafe-9edcaa.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287263,7 +287470,7 @@ }, { "question": "City of Sault Ste. Marie", - "icon": "./assets/data/nsi/logos/cityofsaultstemarie-101c18.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsaultstemarie-101c18.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287279,7 +287486,7 @@ }, { "question": "City of Schertz", - "icon": "./assets/data/nsi/logos/cityofschertz-a3b6e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofschertz-a3b6e6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287295,7 +287502,7 @@ }, { "question": "City of Scottsdale", - "icon": "./assets/data/nsi/logos/cityofscottsdale-d11711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofscottsdale-d11711.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287311,7 +287518,7 @@ }, { "question": "City of Sherwood (Oregon)", - "icon": "./assets/data/nsi/logos/cityofsherwood-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsherwood-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287342,7 +287549,7 @@ }, { "question": "City of St. John's", - "icon": "./assets/data/nsi/logos/cityofstjohns-9c430f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstjohns-9c430f.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287358,7 +287565,7 @@ }, { "question": "City of St. Louis", - "icon": "./assets/data/nsi/logos/cityofstlouis-44b06a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstlouis-44b06a.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287374,7 +287581,7 @@ }, { "question": "City of Staunton", - "icon": "./assets/data/nsi/logos/cityofstaunton-d70331.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstaunton-d70331.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287390,7 +287597,7 @@ }, { "question": "City of Stuart", - "icon": "./assets/data/nsi/logos/cityofstuart-611b25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstuart-611b25.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287421,7 +287628,7 @@ }, { "question": "City of Sydney", - "icon": "./assets/data/nsi/logos/cityofsydney-044fbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsydney-044fbe.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287437,7 +287644,7 @@ }, { "question": "City of Tallahassee", - "icon": "./assets/data/nsi/logos/cityoftallahassee-611b25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-611b25.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287453,7 +287660,7 @@ }, { "question": "City of Tigard", - "icon": "./assets/data/nsi/logos/cityoftigard-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftigard-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287469,7 +287676,7 @@ }, { "question": "City of Toronto", - "icon": "./assets/data/nsi/logos/cityoftoronto-45bb01.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftoronto-45bb01.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287485,7 +287692,7 @@ }, { "question": "City of Tracy (California)", - "icon": "./assets/data/nsi/logos/cityoftracy-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftracy-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287531,7 +287738,7 @@ }, { "question": "City of Troutdale", - "icon": "./assets/data/nsi/logos/cityoftroutdale-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftroutdale-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287547,7 +287754,7 @@ }, { "question": "City of Tualatin", - "icon": "./assets/data/nsi/logos/cityoftualatin-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftualatin-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287563,7 +287770,7 @@ }, { "question": "City of Turku", - "icon": "./assets/data/nsi/logos/cityofturku-175718.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofturku-175718.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287579,7 +287786,7 @@ }, { "question": "City of Twin Falls", - "icon": "./assets/data/nsi/logos/cityoftwinfalls-53eecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftwinfalls-53eecf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287610,7 +287817,7 @@ }, { "question": "City of Vancouver (Washington)", - "icon": "./assets/data/nsi/logos/cityofvancouver-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofvancouver-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287671,7 +287878,7 @@ }, { "question": "City of Warren (Michigan)", - "icon": "./assets/data/nsi/logos/cityofwarren-101c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwarren-101c18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287687,7 +287894,7 @@ }, { "question": "City of Warren (Minnesota)", - "icon": "./assets/data/nsi/logos/cityofwarren-19fc0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwarren-19fc0b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287703,7 +287910,7 @@ }, { "question": "City of Warren (Pennsylvania)", - "icon": "./assets/data/nsi/logos/cityofwarren-bec98d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwarren-bec98d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287719,7 +287926,7 @@ }, { "question": "City of Washougal", - "icon": "./assets/data/nsi/logos/cityofwashougal-9f19b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwashougal-9f19b6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287750,7 +287957,7 @@ }, { "question": "City of Watsonville", - "icon": "./assets/data/nsi/logos/cityofwatsonville-46dc27.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwatsonville-46dc27.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287766,7 +287973,7 @@ }, { "question": "City of West Linn", - "icon": "./assets/data/nsi/logos/cityofwestlinn-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwestlinn-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287782,7 +287989,7 @@ }, { "question": "City of Wichita", - "icon": "./assets/data/nsi/logos/cityofwichita-e424b1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwichita-e424b1.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287798,7 +288005,7 @@ }, { "question": "City of Wilmington (Delaware)", - "icon": "./assets/data/nsi/logos/cityofwilmington-7b86a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwilmington-7b86a2.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287814,7 +288021,7 @@ }, { "question": "City of Wilsonville", - "icon": "./assets/data/nsi/logos/cityofwilsonville-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwilsonville-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287830,7 +288037,7 @@ }, { "question": "City of Winnipeg", - "icon": "./assets/data/nsi/logos/cityofwinnipeg-012dd4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwinnipeg-012dd4.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287846,7 +288053,7 @@ }, { "question": "City of Winter Park", - "icon": "./assets/data/nsi/logos/cityofwinterpark-611b25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwinterpark-611b25.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287862,7 +288069,7 @@ }, { "question": "City of Woodbury (Minnesota)", - "icon": "./assets/data/nsi/logos/cityofwoodbury-19fc0b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwoodbury-19fc0b.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287878,7 +288085,7 @@ }, { "question": "Clackamas County", - "icon": "./assets/data/nsi/logos/clackamascounty-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clackamascounty-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287894,7 +288101,7 @@ }, { "question": "Clark County (Washington)", - "icon": "./assets/data/nsi/logos/clarkcounty-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkcounty-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287910,7 +288117,7 @@ }, { "question": "Cleveland Metroparks", - "icon": "./assets/data/nsi/logos/clevelandmetroparks-e4a950.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandmetroparks-e4a950.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287926,7 +288133,7 @@ }, { "question": "Clutha District Council", - "icon": "./assets/data/nsi/logos/cluthadistrictcouncil-6e0a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cluthadistrictcouncil-6e0a50.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287942,7 +288149,7 @@ }, { "question": "Clyde Park District", - "icon": "./assets/data/nsi/logos/clydeparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clydeparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287958,7 +288165,7 @@ }, { "question": "Colorado Parks and Wildlife", - "icon": "./assets/data/nsi/logos/coloradoparksandwildlife-241158.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradoparksandwildlife-241158.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287975,7 +288182,7 @@ }, { "question": "Comune di Brescia", - "icon": "./assets/data/nsi/logos/comunedibrescia-97b1e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedibrescia-97b1e4.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -287991,7 +288198,7 @@ }, { "question": "Comune di Carrara", - "icon": "./assets/data/nsi/logos/comunedicarrara-900b86.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedicarrara-900b86.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288022,7 +288229,7 @@ }, { "question": "Cork City Council", - "icon": "./assets/data/nsi/logos/corkcitycouncil-93dea7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/corkcitycouncil-93dea7.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288038,7 +288245,7 @@ }, { "question": "Corvallis Parks & Recreation", - "icon": "./assets/data/nsi/logos/corvallisparksandrecreation-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/corvallisparksandrecreation-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288070,7 +288277,7 @@ }, { "question": "Crystal Lake Park District", - "icon": "./assets/data/nsi/logos/crystallakeparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crystallakeparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288144,7 +288351,7 @@ }, { "question": "Department of Conservation (New Zealand)", - "icon": "./assets/data/nsi/logos/departmentofconservation-c80d8f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-c80d8f.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288174,7 +288381,7 @@ }, { "question": "Dinas Kota Surabaya", - "icon": "./assets/data/nsi/logos/dinaskotasurabaya-4e42ef.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dinaskotasurabaya-4e42ef.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288219,7 +288426,7 @@ }, { "question": "Drammen kommune", - "icon": "./assets/data/nsi/logos/drammenkommune-0c6879.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drammenkommune-0c6879.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288235,7 +288442,7 @@ }, { "question": "Dublin City Council", - "icon": "./assets/data/nsi/logos/dublincitycouncil-73c4f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dublincitycouncil-73c4f0.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288251,7 +288458,7 @@ }, { "question": "Durham Parks & Recreation", - "icon": "./assets/data/nsi/logos/durhamparksandrecreation-b9a958.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/durhamparksandrecreation-b9a958.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288268,7 +288475,7 @@ }, { "question": "East Bay Regional Park District", - "icon": "./assets/data/nsi/logos/eastbayregionalparkdistrict-46dc27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastbayregionalparkdistrict-46dc27.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288298,7 +288505,7 @@ }, { "question": "Emaverde", - "icon": "./assets/data/nsi/logos/emaverde-a93914.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emaverde-a93914.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288314,7 +288521,7 @@ }, { "question": "Empresa Municipal de Áreas Verdes y Recreación Alternativa", - "icon": "./assets/data/nsi/logos/empresamunicipaldeareasverdesyrecreacionalternativa-a93914.png", + "icon": "https://data.mapcomplete.org/nsi//logos/empresamunicipaldeareasverdesyrecreacionalternativa-a93914.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288331,7 +288538,7 @@ }, { "question": "Erewash Borough Council", - "icon": "./assets/data/nsi/logos/erewashboroughcouncil-d42e3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erewashboroughcouncil-d42e3f.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288347,7 +288554,7 @@ }, { "question": "Espoon kaupunki", - "icon": "./assets/data/nsi/logos/espoonkaupunki-175718.png", + "icon": "https://data.mapcomplete.org/nsi//logos/espoonkaupunki-175718.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288363,7 +288570,7 @@ }, { "question": "Eugene Parks & Open Space", - "icon": "./assets/data/nsi/logos/eugeneparksandopenspace-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eugeneparksandopenspace-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288379,7 +288586,7 @@ }, { "question": "Evanston Parks & Recreation", - "icon": "./assets/data/nsi/logos/evanstonparksandrecreation-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evanstonparksandrecreation-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288395,7 +288602,7 @@ }, { "question": "Fairfax County Park Authority", - "icon": "./assets/data/nsi/logos/fairfaxcountyparkauthority-d70331.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fairfaxcountyparkauthority-d70331.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288411,7 +288618,7 @@ }, { "question": "Fargo Park District", - "icon": "./assets/data/nsi/logos/fargoparkdistrict-f7d259.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fargoparkdistrict-f7d259.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288427,7 +288634,7 @@ }, { "question": "Five Rivers MetroParks", - "icon": "./assets/data/nsi/logos/fiveriversmetroparks-e4a950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiveriversmetroparks-e4a950.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288443,7 +288650,7 @@ }, { "question": "Florida State Parks", - "icon": "./assets/data/nsi/logos/floridastateparks-611b25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/floridastateparks-611b25.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288460,7 +288667,7 @@ }, { "question": "Forest Preserve District of Cook County", - "icon": "./assets/data/nsi/logos/forestpreservedistrictofcookcounty-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofcookcounty-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288476,7 +288683,7 @@ }, { "question": "Forestry England", - "icon": "./assets/data/nsi/logos/forestryengland-cd8f03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forestryengland-cd8f03.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288522,7 +288729,7 @@ }, { "question": "Galway City Council", - "icon": "./assets/data/nsi/logos/galwaycitycouncil-006c63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/galwaycitycouncil-006c63.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288553,7 +288760,7 @@ }, { "question": "GAMS", - "icon": "./assets/data/nsi/logos/gams-a93914.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gams-a93914.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288583,7 +288790,7 @@ }, { "question": "Gedling Borough Council", - "icon": "./assets/data/nsi/logos/gedlingboroughcouncil-d42e3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gedlingboroughcouncil-d42e3f.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288599,7 +288806,7 @@ }, { "question": "Geneva Park District", - "icon": "./assets/data/nsi/logos/genevaparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genevaparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288615,7 +288822,7 @@ }, { "question": "Georgia State Parks & Historic Sites", - "icon": "./assets/data/nsi/logos/georgiastateparksandhistoricsites-62554d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/georgiastateparksandhistoricsites-62554d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288645,7 +288852,7 @@ }, { "question": "Glen Ellyn Park District", - "icon": "./assets/data/nsi/logos/glenellynparkdistrict-6b40ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/glenellynparkdistrict-6b40ef.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288661,7 +288868,7 @@ }, { "question": "Glencoe Park District", - "icon": "./assets/data/nsi/logos/glencoeparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glencoeparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288677,7 +288884,7 @@ }, { "question": "Glenview Park District", - "icon": "./assets/data/nsi/logos/glenviewparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glenviewparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288707,7 +288914,7 @@ }, { "question": "Gold Coast City Council", - "icon": "./assets/data/nsi/logos/goldcoastcitycouncil-aa8094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldcoastcitycouncil-aa8094.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288738,7 +288945,7 @@ }, { "question": "Great Parks of Hamilton County", - "icon": "./assets/data/nsi/logos/greatparksofhamiltoncounty-e4a950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatparksofhamiltoncounty-e4a950.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288754,7 +288961,7 @@ }, { "question": "Grün Stadt Zürich", - "icon": "./assets/data/nsi/logos/grunstadtzurich-d2a83e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grunstadtzurich-d2a83e.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288770,7 +288977,7 @@ }, { "question": "Hackney Council", - "icon": "./assets/data/nsi/logos/hackneycouncil-de0fdb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-de0fdb.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288786,7 +288993,7 @@ }, { "question": "Halifax Regional Municipality", - "icon": "./assets/data/nsi/logos/halifaxregionalmunicipality-b8580d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halifaxregionalmunicipality-b8580d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288802,7 +289009,7 @@ }, { "question": "Hämeenlinnan kaupunki", - "icon": "./assets/data/nsi/logos/hameenlinnankaupunki-175718.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hameenlinnankaupunki-175718.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288818,7 +289025,7 @@ }, { "question": "Hammond Parks & Recreation", - "icon": "./assets/data/nsi/logos/hammondparksandrecreation-be422a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hammondparksandrecreation-be422a.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288848,7 +289055,7 @@ }, { "question": "Hardin County Conservation", - "icon": "./assets/data/nsi/logos/hardincountyconservation-083489.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hardincountyconservation-083489.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288864,7 +289071,7 @@ }, { "question": "Harris County Precinct 3", - "icon": "./assets/data/nsi/logos/harriscountyprecinct3-a3b6e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/harriscountyprecinct3-a3b6e6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288880,7 +289087,7 @@ }, { "question": "Hawaii Division of State Parks", - "icon": "./assets/data/nsi/logos/hawaiidivisionofstateparks-589011.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiidivisionofstateparks-589011.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288911,7 +289118,7 @@ }, { "question": "Hillsboro Parks & Recreation", - "icon": "./assets/data/nsi/logos/hillsboroparksandrecreation-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hillsboroparksandrecreation-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288927,7 +289134,7 @@ }, { "question": "Hillsborough County (Florida)", - "icon": "./assets/data/nsi/logos/hillsboroughcounty-611b25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hillsboroughcounty-611b25.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -288957,7 +289164,7 @@ }, { "question": "Hurunui District Council", - "icon": "./assets/data/nsi/logos/hurunuidistrictcouncil-ff83c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hurunuidistrictcouncil-ff83c4.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289001,7 +289208,7 @@ }, { "question": "Idaho Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/idahodepartmentofparksandrecreation-53eecf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahodepartmentofparksandrecreation-53eecf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289018,7 +289225,7 @@ }, { "question": "Illinois DNR", - "icon": "./assets/data/nsi/logos/illinoisdepartmentofnaturalresources-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentofnaturalresources-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289035,7 +289242,7 @@ }, { "question": "Incorporated Village of Flower Hill", - "icon": "./assets/data/nsi/logos/incorporatedvillageofflowerhill-5fa58e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/incorporatedvillageofflowerhill-5fa58e.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289067,7 +289274,7 @@ }, { "question": "Indy Parks", - "icon": "./assets/data/nsi/logos/indyparks-be422a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indyparks-be422a.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289083,7 +289290,7 @@ }, { "question": "Instituto Distrital de Recreación y Deporte", - "icon": "./assets/data/nsi/logos/institutodistritalderecreacionydeporte-7274bc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutodistritalderecreacionydeporte-7274bc.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289100,7 +289307,7 @@ }, { "question": "Invercargill City Council", - "icon": "./assets/data/nsi/logos/invercargillcitycouncil-bec51a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invercargillcitycouncil-bec51a.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289116,7 +289323,7 @@ }, { "question": "Iowa DNR", - "icon": "./assets/data/nsi/logos/iowadepartmentofnaturalresources-083489.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/iowadepartmentofnaturalresources-083489.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289133,7 +289340,7 @@ }, { "question": "Islington Council", - "icon": "./assets/data/nsi/logos/islingtoncouncil-de0fdb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/islingtoncouncil-de0fdb.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289149,7 +289356,7 @@ }, { "question": "İstanbul Büyükşehir Belediyesi", - "icon": "./assets/data/nsi/logos/istanbulbuyuksehirbelediyesi-f5e45e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istanbulbuyuksehirbelediyesi-f5e45e.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289166,7 +289373,7 @@ }, { "question": "ISTU", - "icon": "./assets/data/nsi/logos/institutosalvadorenodeturismo-b33958.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutosalvadorenodeturismo-b33958.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289183,7 +289390,7 @@ }, { "question": "Jackson County (Michigan)", - "icon": "./assets/data/nsi/logos/jacksoncounty-101c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksoncounty-101c18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289199,7 +289406,7 @@ }, { "question": "Jackson County (Minnesota)", - "icon": "./assets/data/nsi/logos/jacksoncounty-19fc0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksoncounty-19fc0b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289245,7 +289452,7 @@ }, { "question": "Jackson County Conservation", - "icon": "./assets/data/nsi/logos/jacksoncountyconservation-083489.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksoncountyconservation-083489.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289276,7 +289483,7 @@ }, { "question": "Jefferson County (Wisconsin)", - "icon": "./assets/data/nsi/logos/jeffersoncounty-d8ec11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeffersoncounty-d8ec11.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289292,7 +289499,7 @@ }, { "question": "Johnson County Park and Recreation District", - "icon": "./assets/data/nsi/logos/johnsoncountyparkandrecreationdistrict-e424b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnsoncountyparkandrecreationdistrict-e424b1.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289309,7 +289516,7 @@ }, { "question": "Kankakee Valley Park District", - "icon": "./assets/data/nsi/logos/kankakeevalleyparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kankakeevalleyparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289326,7 +289533,7 @@ }, { "question": "Kansas Department of Wildlife & Parks", - "icon": "./assets/data/nsi/logos/kansasdepartmentofwildlifeandparks-e424b1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kansasdepartmentofwildlifeandparks-e424b1.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289343,7 +289550,7 @@ }, { "question": "Kāpiti Coast District Council", - "icon": "./assets/data/nsi/logos/kapiticoastdistrictcouncil-3e515f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kapiticoastdistrictcouncil-3e515f.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289359,7 +289566,7 @@ }, { "question": "Kauhajoen kaupunki", - "icon": "./assets/data/nsi/logos/kauhajoenkaupunki-175718.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kauhajoenkaupunki-175718.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289375,7 +289582,7 @@ }, { "question": "Kentucky Department of Parks", - "icon": "./assets/data/nsi/logos/kentuckydepartmentofparks-933e5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckydepartmentofparks-933e5b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289391,7 +289598,7 @@ }, { "question": "King County Parks", - "icon": "./assets/data/nsi/logos/kingcountyparks-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingcountyparks-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289407,7 +289614,7 @@ }, { "question": "Kitsap County Parks", - "icon": "./assets/data/nsi/logos/kitsapcountyparks-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitsapcountyparks-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289423,7 +289630,7 @@ }, { "question": "KMC", - "icon": "./assets/data/nsi/logos/kolkatamunicipalcorporation-38394d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kolkatamunicipalcorporation-38394d.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289442,7 +289649,7 @@ }, { "question": "Knowsley Council", - "icon": "./assets/data/nsi/logos/knowsleycouncil-6a216f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knowsleycouncil-6a216f.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289458,7 +289665,7 @@ }, { "question": "Kuopion kaupunki", - "icon": "./assets/data/nsi/logos/kuopionkaupunki-175718.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuopionkaupunki-175718.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289474,7 +289681,7 @@ }, { "question": "Lake Metroparks", - "icon": "./assets/data/nsi/logos/lakemetroparks-e4a950.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lakemetroparks-e4a950.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289533,7 +289740,7 @@ }, { "question": "Lane County (Oregon)", - "icon": "./assets/data/nsi/logos/lanecounty-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lanecounty-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289549,7 +289756,7 @@ }, { "question": "Lane Cove Council", - "icon": "./assets/data/nsi/logos/lanecovecouncil-044fbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lanecovecouncil-044fbe.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289565,7 +289772,7 @@ }, { "question": "Lincolnwood Parks and Recreation", - "icon": "./assets/data/nsi/logos/lincolnwoodparksandrecreation-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnwoodparksandrecreation-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289581,7 +289788,7 @@ }, { "question": "Lisle Park District", - "icon": "./assets/data/nsi/logos/lisleparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lisleparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289626,7 +289833,7 @@ }, { "question": "Logan City Council", - "icon": "./assets/data/nsi/logos/logancitycouncil-aa8094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/logancitycouncil-aa8094.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289642,7 +289849,7 @@ }, { "question": "Louisiana Office of State Parks", - "icon": "./assets/data/nsi/logos/louisianaofficeofstateparks-615c8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisianaofficeofstateparks-615c8d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289658,7 +289865,7 @@ }, { "question": "Louisville Parks and Recreation", - "icon": "./assets/data/nsi/logos/louisvilleparksandrecreation-933e5b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisvilleparksandrecreation-933e5b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289674,7 +289881,7 @@ }, { "question": "Lower Merion Township", - "icon": "./assets/data/nsi/logos/lowermeriontownship-bec98d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lowermeriontownship-bec98d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289809,7 +290016,7 @@ }, { "question": "Manchester City Council", - "icon": "./assets/data/nsi/logos/manchestercitycouncil-cd8f03.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manchestercitycouncil-cd8f03.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289840,7 +290047,7 @@ }, { "question": "Maple Grove Parks and Recreation", - "icon": "./assets/data/nsi/logos/maplegroveparksandrecreation-19fc0b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maplegroveparksandrecreation-19fc0b.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289856,7 +290063,7 @@ }, { "question": "Marietta Parks & Recreation", - "icon": "./assets/data/nsi/logos/mariettaparksandrecreation-62554d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mariettaparksandrecreation-62554d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289887,7 +290094,7 @@ }, { "question": "Martin County (Florida)", - "icon": "./assets/data/nsi/logos/martincounty-611b25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/martincounty-611b25.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289903,7 +290110,7 @@ }, { "question": "Maryland Park Service", - "icon": "./assets/data/nsi/logos/marylandparkservice-6ec8b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marylandparkservice-6ec8b9.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289934,7 +290141,7 @@ }, { "question": "Maui County", - "icon": "./assets/data/nsi/logos/mauicounty-589011.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mauicounty-589011.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -289964,7 +290171,7 @@ }, { "question": "MDWFP", - "icon": "./assets/data/nsi/logos/mississippidepartmentofwildlifefisheriesandparks-ae3bd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippidepartmentofwildlifefisheriesandparks-ae3bd1.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290010,7 +290217,7 @@ }, { "question": "Metro (Oregon)", - "icon": "./assets/data/nsi/logos/metro-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290026,7 +290233,7 @@ }, { "question": "Metro Parks Tacoma", - "icon": "./assets/data/nsi/logos/metroparkstacoma-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metroparkstacoma-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290043,7 +290250,7 @@ }, { "question": "Metro Vancouver Regional Parks", - "icon": "./assets/data/nsi/logos/metrovancouverregionalparks-56b35c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metrovancouverregionalparks-56b35c.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290059,7 +290266,7 @@ }, { "question": "Michigan Department of Natural Resources", - "icon": "./assets/data/nsi/logos/michigandepartmentofnaturalresources-101c18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofnaturalresources-101c18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290076,7 +290283,7 @@ }, { "question": "Michigan Department of Transportation", - "icon": "./assets/data/nsi/logos/michigandepartmentoftransportation-101c18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/michigandepartmentoftransportation-101c18.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290093,7 +290300,7 @@ }, { "question": "Millcreek Township (Pennsylvania)", - "icon": "./assets/data/nsi/logos/millcreektownship-bec98d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/millcreektownship-bec98d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290109,7 +290316,7 @@ }, { "question": "Milwaukee County Parks", - "icon": "./assets/data/nsi/logos/milwaukeecountyparks-d8ec11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milwaukeecountyparks-d8ec11.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290125,7 +290332,7 @@ }, { "question": "Minneapolis Park and Recreation Board", - "icon": "./assets/data/nsi/logos/minneapolisparkandrecreationboard-19fc0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minneapolisparkandrecreationboard-19fc0b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290141,7 +290348,7 @@ }, { "question": "Minnesota DNR", - "icon": "./assets/data/nsi/logos/minnesotadepartmentofnaturalresources-19fc0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotadepartmentofnaturalresources-19fc0b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290158,7 +290365,7 @@ }, { "question": "Missouri State Parks", - "icon": "./assets/data/nsi/logos/missouristateparks-44b06a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missouristateparks-44b06a.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290174,7 +290381,7 @@ }, { "question": "MMCB", - "icon": "./assets/data/nsi/logos/magistratmestaceskebudejovice-ab8e90.png", + "icon": "https://data.mapcomplete.org/nsi//logos/magistratmestaceskebudejovice-ab8e90.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290191,7 +290398,7 @@ }, { "question": "Montana Department of Fish, Wildlife and Parks", - "icon": "./assets/data/nsi/logos/montanadepartmentoffishwildlifeandparks-863db2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montanadepartmentoffishwildlifeandparks-863db2.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290208,7 +290415,7 @@ }, { "question": "Montgomery Parks", - "icon": "./assets/data/nsi/logos/montgomeryparks-6ec8b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montgomeryparks-6ec8b9.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290224,7 +290431,7 @@ }, { "question": "Morton Grove Park District", - "icon": "./assets/data/nsi/logos/mortongroveparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mortongroveparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290314,7 +290521,7 @@ }, { "question": "Municipalidad de Neuquén", - "icon": "./assets/data/nsi/logos/municipalidaddeneuquen-b8dcab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-b8dcab.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290375,7 +290582,7 @@ }, { "question": "Municipalidad de Zapala", - "icon": "./assets/data/nsi/logos/municipalidaddezapala-b8dcab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddezapala-b8dcab.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290406,6 +290613,7 @@ }, { "question": "Município de Maputo", + "icon": "https://data.mapcomplete.org/nsi//logos/municipiodemaputo-8f4719.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290421,7 +290629,7 @@ }, { "question": "Naperville Park District", - "icon": "./assets/data/nsi/logos/napervilleparkdistrict-6b40ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/napervilleparkdistrict-6b40ef.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290437,7 +290645,7 @@ }, { "question": "National Capital Commission", - "icon": "./assets/data/nsi/logos/nationalcapitalcommission-45bb01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalcapitalcommission-45bb01.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290454,7 +290662,7 @@ }, { "question": "National Park Service", - "icon": "./assets/data/nsi/logos/nationalparkservice-b9cbaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-b9cbaf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290471,7 +290679,7 @@ }, { "question": "National Parks Board", - "icon": "./assets/data/nsi/logos/nationalparksboard-96e2ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparksboard-96e2ce.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290488,7 +290696,7 @@ }, { "question": "National Trust", - "icon": "./assets/data/nsi/logos/nationaltrust-e7710d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrust-e7710d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290504,7 +290712,7 @@ }, { "question": "National Trust for Scotland", - "icon": "./assets/data/nsi/logos/nationaltrustforscotland-bce0df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-bce0df.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290536,7 +290744,7 @@ }, { "question": "NCPRD", - "icon": "./assets/data/nsi/logos/northclackamasparksandrecreationdistrict-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northclackamasparksandrecreationdistrict-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290553,7 +290761,7 @@ }, { "question": "Nebraska Game and Parks Commission", - "icon": "./assets/data/nsi/logos/nebraskagameandparkscommission-d7c809.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nebraskagameandparkscommission-d7c809.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290570,7 +290778,7 @@ }, { "question": "Nelson City Council", - "icon": "./assets/data/nsi/logos/nelsoncitycouncil-ec3f18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nelsoncitycouncil-ec3f18.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290586,7 +290794,7 @@ }, { "question": "Nevada State Parks", - "icon": "./assets/data/nsi/logos/nevadastateparks-320125.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nevadastateparks-320125.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290602,7 +290810,7 @@ }, { "question": "New Mexico EMNRD", - "icon": "./assets/data/nsi/logos/newmexicodepartmentofenergymineralsandnaturalresources-d11711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newmexicodepartmentofenergymineralsandnaturalresources-d11711.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290619,7 +290827,7 @@ }, { "question": "New York State DEC", - "icon": "./assets/data/nsi/logos/newyorkstatedepartmentofenvironmentalconservation-5fa58e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofenvironmentalconservation-5fa58e.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290636,7 +290844,7 @@ }, { "question": "New York State OPRHP", - "icon": "./assets/data/nsi/logos/newyorkstateofficeofparksrecreationandhistoricpreservation-5fa58e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstateofficeofparksrecreationandhistoricpreservation-5fa58e.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290652,7 +290860,7 @@ }, { "question": "Newport City Council", - "icon": "./assets/data/nsi/logos/newportcitycouncil-65fcd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-65fcd1.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290668,7 +290876,7 @@ }, { "question": "Newport News Green Foundation", - "icon": "./assets/data/nsi/logos/newportnewsgreenfoundation-d70331.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newportnewsgreenfoundation-d70331.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290699,7 +290907,7 @@ }, { "question": "Niles Park District", - "icon": "./assets/data/nsi/logos/nilesparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nilesparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290715,7 +290923,7 @@ }, { "question": "North Carolina Division of Parks and Recreation", - "icon": "./assets/data/nsi/logos/northcarolinadivisionofparksandrecreation-b9a958.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northcarolinadivisionofparksandrecreation-b9a958.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290732,7 +290940,7 @@ }, { "question": "North Dakota Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/northdakotaparksandrecreationdepartment-f7d259.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northdakotaparksandrecreationdepartment-f7d259.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290762,6 +290970,7 @@ }, { "question": "Northern Beaches Council", + "icon": "https://data.mapcomplete.org/nsi//logos/northernbeachescouncil-044fbe.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290777,7 +290986,7 @@ }, { "question": "Nottingham City Council", - "icon": "./assets/data/nsi/logos/nottinghamcitycouncil-d42e3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nottinghamcitycouncil-d42e3f.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290793,7 +291002,7 @@ }, { "question": "Nova Scotia Provincial Parks", - "icon": "./assets/data/nsi/logos/novascotiaprovincialparks-b8580d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiaprovincialparks-b8580d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290809,7 +291018,7 @@ }, { "question": "NYC Parks", - "icon": "./assets/data/nsi/logos/newyorkcitydepartmentofparksandrecreation-d291b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkcitydepartmentofparksandrecreation-d291b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290840,7 +291049,7 @@ }, { "question": "Ohio Department of Natural Resources", - "icon": "./assets/data/nsi/logos/ohiodepartmentofnaturalresources-e4a950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofnaturalresources-e4a950.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290857,7 +291066,7 @@ }, { "question": "Ohio State Parks & Watercraft", - "icon": "./assets/data/nsi/logos/ohiostateparksandwatercraft-e4a950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiostateparksandwatercraft-e4a950.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290888,7 +291097,7 @@ }, { "question": "Oklahoma Department of Wildlife Conservation", - "icon": "./assets/data/nsi/logos/oklahomadepartmentofwildlifeconservation-726c77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomadepartmentofwildlifeconservation-726c77.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290905,7 +291114,7 @@ }, { "question": "Ontario Parks", - "icon": "./assets/data/nsi/logos/ontarioparks-45bb01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ontarioparks-45bb01.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290936,7 +291145,7 @@ }, { "question": "Oregon City Parks & Recreation", - "icon": "./assets/data/nsi/logos/oregoncityparksandrecreation-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oregoncityparksandrecreation-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290952,7 +291161,7 @@ }, { "question": "Oregon Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/oregonparksandrecreationdepartment-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oregonparksandrecreationdepartment-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290968,7 +291177,7 @@ }, { "question": "Oswegoland Park District", - "icon": "./assets/data/nsi/logos/oswegolandparkdistrict-6b40ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oswegolandparkdistrict-6b40ef.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -290984,7 +291193,7 @@ }, { "question": "Palatine Park District", - "icon": "./assets/data/nsi/logos/palatineparkdistrict-6b40ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/palatineparkdistrict-6b40ef.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291000,7 +291209,7 @@ }, { "question": "Palmerston North City Council", - "icon": "./assets/data/nsi/logos/palmerstonnorthcitycouncil-e93827.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmerstonnorthcitycouncil-e93827.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291045,7 +291254,7 @@ }, { "question": "Park District of Oak Park", - "icon": "./assets/data/nsi/logos/parkdistrictofoakpark-6b40ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parkdistrictofoakpark-6b40ef.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291077,7 +291286,7 @@ }, { "question": "Parks Canada", - "icon": "./assets/data/nsi/logos/parkscanada-355d3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkscanada-355d3b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291093,7 +291302,7 @@ }, { "question": "Parks Victoria", - "icon": "./assets/data/nsi/logos/parksvictoria-612bf2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parksvictoria-612bf2.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291139,7 +291348,7 @@ }, { "question": "Peoria Park District", - "icon": "./assets/data/nsi/logos/peoriaparkdistrict-6b40ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/peoriaparkdistrict-6b40ef.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291156,7 +291365,7 @@ }, { "question": "PGL LP", - "icon": "./assets/data/nsi/logos/pgllp-34905d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgllp-34905d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291172,7 +291381,7 @@ }, { "question": "Phoenixville Borough", - "icon": "./assets/data/nsi/logos/phoenixvilleborough-bec98d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phoenixvilleborough-bec98d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291188,7 +291397,7 @@ }, { "question": "Plaine Commune", - "icon": "./assets/data/nsi/logos/plainecommune-23b918.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plainecommune-23b918.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291204,7 +291413,7 @@ }, { "question": "Plainfield Park District", - "icon": "./assets/data/nsi/logos/plainfieldparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plainfieldparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291220,7 +291429,7 @@ }, { "question": "Portland Parks & Recreation", - "icon": "./assets/data/nsi/logos/portlandparksandrecreation-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandparksandrecreation-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291265,7 +291474,7 @@ }, { "question": "Prefeitura de Catalão", - "icon": "./assets/data/nsi/logos/prefeituradecatalao-b4fd50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituradecatalao-b4fd50.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291296,7 +291505,7 @@ }, { "question": "Prefeitura de Ribeirão Pires", - "icon": "./assets/data/nsi/logos/prefeituraderibeiraopires-dd876e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituraderibeiraopires-dd876e.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291312,7 +291521,7 @@ }, { "question": "Prefeitura de Rio Verde", - "icon": "./assets/data/nsi/logos/prefeituraderioverde-b4fd50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituraderioverde-b4fd50.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291328,7 +291537,7 @@ }, { "question": "Prefeitura Municipal de Curitiba", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldecuritiba-125318.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldecuritiba-125318.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291344,7 +291553,7 @@ }, { "question": "Prefeitura Municipal de Fortaleza", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldefortaleza-2cb1ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldefortaleza-2cb1ce.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291405,7 +291614,7 @@ }, { "question": "Prince George's County Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/princegeorgescountydepartmentofparksandrecreation-6ec8b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/princegeorgescountydepartmentofparksandrecreation-6ec8b9.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291464,7 +291673,7 @@ }, { "question": "Roselle Park District", - "icon": "./assets/data/nsi/logos/roselleparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roselleparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291480,7 +291689,7 @@ }, { "question": "Rother District Council", - "icon": "./assets/data/nsi/logos/rotherdistrictcouncil-18aa96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rotherdistrictcouncil-18aa96.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291510,7 +291719,7 @@ }, { "question": "Saint Paul Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/saintpauldepartmentofparksandrecreation-19fc0b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintpauldepartmentofparksandrecreation-19fc0b.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291526,7 +291735,7 @@ }, { "question": "San Bernardino County", - "icon": "./assets/data/nsi/logos/sanbernardinocounty-46dc27.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanbernardinocounty-46dc27.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291542,7 +291751,7 @@ }, { "question": "San Francisco Recreation & Park Department", - "icon": "./assets/data/nsi/logos/sanfranciscorecreationandparkdepartment-36fb4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanfranciscorecreationandparkdepartment-36fb4a.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291558,7 +291767,7 @@ }, { "question": "San José Parks, Recreation and Neighborhood Services", - "icon": "./assets/data/nsi/logos/sanjoseparksrecreationandneighborhoodservices-5ed6d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanjoseparksrecreationandneighborhoodservices-5ed6d7.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291604,7 +291813,7 @@ }, { "question": "Servicio de Parques de Lima", - "icon": "./assets/data/nsi/logos/serviciodeparquesdelima-5e3ba0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/serviciodeparquesdelima-5e3ba0.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291634,7 +291843,7 @@ }, { "question": "Skokie Park District", - "icon": "./assets/data/nsi/logos/skokieparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skokieparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291664,7 +291873,7 @@ }, { "question": "Somerset Council", - "icon": "./assets/data/nsi/logos/somersetcouncil-44bb55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-44bb55.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291680,7 +291889,7 @@ }, { "question": "South Carolina State Parks", - "icon": "./assets/data/nsi/logos/southcarolinastateparks-0d235d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southcarolinastateparks-0d235d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291696,7 +291905,7 @@ }, { "question": "South Dakota GFP", - "icon": "./assets/data/nsi/logos/southdakotadepartmentofgamefishandparks-4e700d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southdakotadepartmentofgamefishandparks-4e700d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291728,7 +291937,7 @@ }, { "question": "Southland District Council", - "icon": "./assets/data/nsi/logos/southlanddistrictcouncil-bec51a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southlanddistrictcouncil-bec51a.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291744,7 +291953,7 @@ }, { "question": "Southwest Michigan Land Conservancy", - "icon": "./assets/data/nsi/logos/southwestmichiganlandconservancy-101c18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestmichiganlandconservancy-101c18.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291760,7 +291969,7 @@ }, { "question": "Správa mestskej zelene v Košiciach", - "icon": "./assets/data/nsi/logos/spravamestskejzelenevkosiciach-e7985b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spravamestskejzelenevkosiciach-e7985b.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291777,7 +291986,7 @@ }, { "question": "Springfield Park District", - "icon": "./assets/data/nsi/logos/springfieldparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291793,7 +292002,7 @@ }, { "question": "Stadt Innsbruck", - "icon": "./assets/data/nsi/logos/stadtinnsbruck-45d910.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtinnsbruck-45d910.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291809,7 +292018,7 @@ }, { "question": "Stadt Norden", - "icon": "./assets/data/nsi/logos/stadtnorden-949413.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtnorden-949413.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291825,7 +292034,7 @@ }, { "question": "Stadt Weimar", - "icon": "./assets/data/nsi/logos/stadtweimar-84908a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtweimar-84908a.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291841,7 +292050,7 @@ }, { "question": "Stadt Witten", - "icon": "./assets/data/nsi/logos/stadtwitten-9a715f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwitten-9a715f.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291857,7 +292066,7 @@ }, { "question": "State of Connecticut", - "icon": "./assets/data/nsi/logos/stateofconnecticut-67b670.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stateofconnecticut-67b670.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291887,7 +292096,7 @@ }, { "question": "Sugar Grove Park District", - "icon": "./assets/data/nsi/logos/sugargroveparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sugargroveparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291903,7 +292112,7 @@ }, { "question": "Summit Metro Parks", - "icon": "./assets/data/nsi/logos/summitmetroparks-e4a950.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/summitmetroparks-e4a950.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291919,7 +292128,7 @@ }, { "question": "Sunshine Coast Council", - "icon": "./assets/data/nsi/logos/sunshinecoastcouncil-aa8094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunshinecoastcouncil-aa8094.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291935,7 +292144,7 @@ }, { "question": "Tasman District Council", - "icon": "./assets/data/nsi/logos/tasmandistrictcouncil-ce5753.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tasmandistrictcouncil-ce5753.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291951,7 +292160,7 @@ }, { "question": "Tennessee State Parks", - "icon": "./assets/data/nsi/logos/tennesseestateparks-6118d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseestateparks-6118d7.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291967,7 +292176,7 @@ }, { "question": "Texas Historical Commission", - "icon": "./assets/data/nsi/logos/texashistoricalcommission-a3b6e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texashistoricalcommission-a3b6e6.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -291983,7 +292192,7 @@ }, { "question": "Texas Parks and Wildlife Department", - "icon": "./assets/data/nsi/logos/texasparksandwildlifedepartment-a3b6e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasparksandwildlifedepartment-a3b6e6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292000,7 +292209,7 @@ }, { "question": "The Parks Trust", - "icon": "./assets/data/nsi/logos/theparkstrust-99dd62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theparkstrust-99dd62.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292016,7 +292225,7 @@ }, { "question": "The Royal Parks", - "icon": "./assets/data/nsi/logos/theroyalparks-de0fdb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/theroyalparks-de0fdb.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292032,7 +292241,7 @@ }, { "question": "THPRD", - "icon": "./assets/data/nsi/logos/tualatinhillsparkandrecreationdistrict-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tualatinhillsparkandrecreationdistrict-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292049,7 +292258,7 @@ }, { "question": "Timaru District Council", - "icon": "./assets/data/nsi/logos/timarudistrictcouncil-ff83c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timarudistrictcouncil-ff83c4.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292080,7 +292289,7 @@ }, { "question": "Town of Abingdon", - "icon": "./assets/data/nsi/logos/townofabingdon-d70331.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofabingdon-d70331.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292096,7 +292305,7 @@ }, { "question": "Town of Alva", - "icon": "./assets/data/nsi/logos/townofalva-726c77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofalva-726c77.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292112,7 +292321,7 @@ }, { "question": "Town of Amherst (Massachusetts)", - "icon": "./assets/data/nsi/logos/townofamherst-defa05.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofamherst-defa05.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292128,7 +292337,7 @@ }, { "question": "Town of Amherst (New Hampshire)", - "icon": "./assets/data/nsi/logos/townofamherst-fcd3ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townofamherst-fcd3ad.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292174,7 +292383,7 @@ }, { "question": "Town of East Hartford", - "icon": "./assets/data/nsi/logos/townofeasthartford-67b670.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townofeasthartford-67b670.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292220,7 +292429,7 @@ }, { "question": "Town of Hempstead", - "icon": "./assets/data/nsi/logos/townofhempstead-5fa58e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townofhempstead-5fa58e.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292251,7 +292460,7 @@ }, { "question": "Town of Manchester", - "icon": "./assets/data/nsi/logos/townofmanchester-67b670.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townofmanchester-67b670.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292282,7 +292491,7 @@ }, { "question": "Town of North Hempstead", - "icon": "./assets/data/nsi/logos/townofnorthhempstead-5fa58e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofnorthhempstead-5fa58e.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292313,7 +292522,7 @@ }, { "question": "Town of Saint John", - "icon": "./assets/data/nsi/logos/townofsaintjohn-be422a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofsaintjohn-be422a.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292344,7 +292553,7 @@ }, { "question": "Town of Vienna", - "icon": "./assets/data/nsi/logos/townofvienna-d70331.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofvienna-d70331.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292390,7 +292599,7 @@ }, { "question": "Tredyffrin Township", - "icon": "./assets/data/nsi/logos/tredyffrintownship-bec98d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredyffrintownship-bec98d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292421,7 +292630,7 @@ }, { "question": "United States Army Corps of Engineers", - "icon": "./assets/data/nsi/logos/unitedstatesarmycorpsofengineers-b9cbaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesarmycorpsofengineers-b9cbaf.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292438,7 +292647,7 @@ }, { "question": "University of Melbourne", - "icon": "./assets/data/nsi/logos/universityofmelbourne-612bf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofmelbourne-612bf2.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292468,7 +292677,7 @@ }, { "question": "Utah State Parks", - "icon": "./assets/data/nsi/logos/utahstateparks-7625dc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/utahstateparks-7625dc.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292484,7 +292693,7 @@ }, { "question": "Vantaan kaupunki", - "icon": "./assets/data/nsi/logos/vantaankaupunki-175718.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vantaankaupunki-175718.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292500,7 +292709,7 @@ }, { "question": "Village of Bourbonnais", - "icon": "./assets/data/nsi/logos/villageofbourbonnais-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villageofbourbonnais-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292516,7 +292725,7 @@ }, { "question": "Village of Fayetteville", - "icon": "./assets/data/nsi/logos/villageoffayetteville-5fa58e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villageoffayetteville-5fa58e.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292547,7 +292756,7 @@ }, { "question": "Village of Waunakee", - "icon": "./assets/data/nsi/logos/villageofwaunakee-d8ec11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villageofwaunakee-d8ec11.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292638,7 +292847,7 @@ }, { "question": "Ville de Montréal", - "icon": "./assets/data/nsi/logos/villedemontreal-9bd80d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedemontreal-9bd80d.svg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292669,7 +292878,7 @@ }, { "question": "Ville de Nicolet", - "icon": "./assets/data/nsi/logos/villedenicolet-9bd80d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedenicolet-9bd80d.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292715,7 +292924,7 @@ }, { "question": "Virginia Department of Transportation", - "icon": "./assets/data/nsi/logos/virginiadepartmentoftransportation-d70331.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentoftransportation-d70331.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292732,7 +292941,7 @@ }, { "question": "Waimakariri District Council", - "icon": "./assets/data/nsi/logos/waimakariridistrictcouncil-ff83c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/waimakariridistrictcouncil-ff83c4.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292748,7 +292957,7 @@ }, { "question": "Waitaki District Council", - "icon": "./assets/data/nsi/logos/waitakidistrictcouncil-6e0a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waitakidistrictcouncil-6e0a50.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292779,7 +292988,7 @@ }, { "question": "Warrenville Park District", - "icon": "./assets/data/nsi/logos/warrenvilleparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warrenvilleparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292795,7 +293004,7 @@ }, { "question": "Washington County (Oregon)", - "icon": "./assets/data/nsi/logos/washingtoncounty-4dc167.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtoncounty-4dc167.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292811,7 +293020,7 @@ }, { "question": "Washington Department of Fish and Wildlife", - "icon": "./assets/data/nsi/logos/washingtondepartmentoffishandwildlife-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtondepartmentoffishandwildlife-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292828,7 +293037,7 @@ }, { "question": "Washington State Parks and Recreation Commission", - "icon": "./assets/data/nsi/logos/washingtonstateparksandrecreationcommission-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonstateparksandrecreationcommission-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292844,7 +293053,7 @@ }, { "question": "Waukegan Park District", - "icon": "./assets/data/nsi/logos/waukeganparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waukeganparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292875,7 +293084,7 @@ }, { "question": "Wellington City Council", - "icon": "./assets/data/nsi/logos/wellingtoncitycouncil-3e515f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellingtoncitycouncil-3e515f.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292891,7 +293100,7 @@ }, { "question": "West Chicago Park District", - "icon": "./assets/data/nsi/logos/westchicagoparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westchicagoparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292907,7 +293116,7 @@ }, { "question": "West Fargo Park District", - "icon": "./assets/data/nsi/logos/westfargoparkdistrict-f7d259.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westfargoparkdistrict-f7d259.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292924,7 +293133,7 @@ }, { "question": "West Virginia DNR", - "icon": "./assets/data/nsi/logos/westvirginiadivisionofnaturalresources-89af7f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westvirginiadivisionofnaturalresources-89af7f.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292941,7 +293150,7 @@ }, { "question": "Western Springs Park District", - "icon": "./assets/data/nsi/logos/westernspringsparkdistrict-6b40ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westernspringsparkdistrict-6b40ef.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292957,7 +293166,7 @@ }, { "question": "Wheaton Park District", - "icon": "./assets/data/nsi/logos/wheatonparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wheatonparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292973,7 +293182,7 @@ }, { "question": "Willamalane", - "icon": "./assets/data/nsi/logos/willamalaneparkandrecreationdistrict-4dc167.png", + "icon": "https://data.mapcomplete.org/nsi//logos/willamalaneparkandrecreationdistrict-4dc167.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -292989,7 +293198,7 @@ }, { "question": "Willoughby City Council", - "icon": "./assets/data/nsi/logos/willoughbycitycouncil-044fbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/willoughbycitycouncil-044fbe.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293005,7 +293214,7 @@ }, { "question": "Wilmette Park District", - "icon": "./assets/data/nsi/logos/wilmetteparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilmetteparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293035,7 +293244,7 @@ }, { "question": "Winfield Park District", - "icon": "./assets/data/nsi/logos/winfieldparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winfieldparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293051,7 +293260,7 @@ }, { "question": "Winnetka Park District", - "icon": "./assets/data/nsi/logos/winnetkaparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winnetkaparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293067,7 +293276,7 @@ }, { "question": "Wisconsin DNR", - "icon": "./assets/data/nsi/logos/wisconsindepartmentofnaturalresources-d8ec11.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentofnaturalresources-d8ec11.png", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293084,7 +293293,7 @@ }, { "question": "Woodridge Park District", - "icon": "./assets/data/nsi/logos/woodridgeparkdistrict-6b40ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woodridgeparkdistrict-6b40ef.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293115,7 +293324,7 @@ }, { "question": "WYO Parks", - "icon": "./assets/data/nsi/logos/wyomingdivisionofstateparksandhistoricsites-6870e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wyomingdivisionofstateparksandhistoricsites-6870e0.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293132,7 +293341,7 @@ }, { "question": "Yakima Parks & Recreation", - "icon": "./assets/data/nsi/logos/yakimaparksandrecreation-9f19b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yakimaparksandrecreation-9f19b6.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293589,7 +293798,7 @@ }, { "question": "康樂及文化事務署 Leisure and Cultural Services Department", - "icon": "./assets/data/nsi/logos/leisureandculturalservicesdepartment-3ea41a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leisureandculturalservicesdepartment-3ea41a.jpg", "osmTags": { "and": [ "leisure=nature_reserve", @@ -293950,7 +294159,7 @@ }, { "question": "Abbotsford Parks, Recreation & Culture", - "icon": "./assets/data/nsi/logos/abbotsfordparksrecreationandculture-b3cf59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/abbotsfordparksrecreationandculture-b3cf59.jpg", "osmTags": { "and": [ "leisure=park", @@ -293966,7 +294175,7 @@ }, { "question": "Ajuntament de l'Hospitalet de Llobregat", - "icon": "./assets/data/nsi/logos/ajuntamentdelhospitaletdellobregat-e4902f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdelhospitaletdellobregat-e4902f.svg", "osmTags": { "and": [ "leisure=park", @@ -293982,7 +294191,7 @@ }, { "question": "Alabama State Parks", - "icon": "./assets/data/nsi/logos/alabamastateparks-aefb27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamastateparks-aefb27.jpg", "osmTags": { "and": [ "leisure=park", @@ -293998,7 +294207,7 @@ }, { "question": "Alaska Division of Parks & Outdoor Recreation", - "icon": "./assets/data/nsi/logos/alaskadivisionofparksandoutdoorrecreation-50e0e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alaskadivisionofparksandoutdoorrecreation-50e0e1.jpg", "osmTags": { "and": [ "leisure=park", @@ -294028,7 +294237,7 @@ }, { "question": "Allegany County", - "icon": "./assets/data/nsi/logos/alleganycountycommissioners-fb928d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alleganycountycommissioners-fb928d.png", "osmTags": { "and": [ "leisure=park", @@ -294058,7 +294267,7 @@ }, { "question": "Anderson Island Parks and Recreation District", - "icon": "./assets/data/nsi/logos/andersonislandparksandrecreationdistrict-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/andersonislandparksandrecreationdistrict-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -294089,7 +294298,7 @@ }, { "question": "Arizona State Parks", - "icon": "./assets/data/nsi/logos/arizonastateparks-1fe561.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonastateparks-1fe561.jpg", "osmTags": { "and": [ "leisure=park", @@ -294105,7 +294314,7 @@ }, { "question": "Arkansas State Parks", - "icon": "./assets/data/nsi/logos/arkansasstateparks-2e75ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasstateparks-2e75ab.jpg", "osmTags": { "and": [ "leisure=park", @@ -294135,7 +294344,7 @@ }, { "question": "Arlington Heights Park District", - "icon": "./assets/data/nsi/logos/arlingtonheightsparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arlingtonheightsparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -294152,7 +294361,7 @@ }, { "question": "Auckland Council", - "icon": "./assets/data/nsi/logos/aucklandcouncil-9b811e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-9b811e.png", "osmTags": { "and": [ "leisure=park", @@ -294168,7 +294377,7 @@ }, { "question": "Austin Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/austinparksandrecreationdepartment-8bfd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinparksandrecreationdepartment-8bfd34.jpg", "osmTags": { "and": [ "leisure=park", @@ -294214,7 +294423,7 @@ }, { "question": "Ayuntamiento de Málaga", - "icon": "./assets/data/nsi/logos/ayuntamientodemalaga-e4902f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemalaga-e4902f.svg", "osmTags": { "and": [ "leisure=park", @@ -294245,7 +294454,7 @@ }, { "question": "Bainbridge Island Metro Park & Recreation District", - "icon": "./assets/data/nsi/logos/bainbridgeislandmetroparkandrecreationdistrict-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bainbridgeislandmetroparkandrecreationdistrict-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -294261,7 +294470,7 @@ }, { "question": "Baltimore County Department of Recreation and Parks", - "icon": "./assets/data/nsi/logos/baltimorecountydepartmentofrecreationandparks-fb928d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecountydepartmentofrecreationandparks-fb928d.jpg", "osmTags": { "and": [ "leisure=park", @@ -294277,7 +294486,7 @@ }, { "question": "Barnet Council", - "icon": "./assets/data/nsi/logos/barnetcouncil-777334.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barnetcouncil-777334.png", "osmTags": { "and": [ "leisure=park", @@ -294293,7 +294502,7 @@ }, { "question": "Batavia Park District", - "icon": "./assets/data/nsi/logos/bataviaparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bataviaparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -294309,7 +294518,7 @@ }, { "question": "Bayerische Verwaltung der staatlichen Schlösser, Gärten und Seen", - "icon": "./assets/data/nsi/logos/bayerischeverwaltungderstaatlichenschlossergartenundseen-105075.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayerischeverwaltungderstaatlichenschlossergartenundseen-105075.jpg", "osmTags": { "and": [ "leisure=park", @@ -294325,7 +294534,7 @@ }, { "question": "BBMP", - "icon": "./assets/data/nsi/logos/bruhatbengalurumahanagarapalike-d31221.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bruhatbengalurumahanagarapalike-d31221.jpg", "osmTags": { "and": [ "leisure=park", @@ -294344,7 +294553,7 @@ }, { "question": "BCRP", - "icon": "./assets/data/nsi/logos/baltimorecitydepartmentofrecreationandparks-1dd8f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecitydepartmentofrecreationandparks-1dd8f5.png", "osmTags": { "and": [ "leisure=park", @@ -294361,7 +294570,7 @@ }, { "question": "Belfast City Council", - "icon": "./assets/data/nsi/logos/belfastcitycouncil-fe9c0f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belfastcitycouncil-fe9c0f.jpg", "osmTags": { "and": [ "leisure=park", @@ -294377,7 +294586,7 @@ }, { "question": "Bend Park & Recreation District", - "icon": "./assets/data/nsi/logos/bendparkandrecreationdistrict-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bendparkandrecreationdistrict-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -294393,7 +294602,7 @@ }, { "question": "Birmingham Park and Recreation", - "icon": "./assets/data/nsi/logos/birminghamparkandrecreationboard-aefb27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamparkandrecreationboard-aefb27.jpg", "osmTags": { "and": [ "leisure=park", @@ -294409,7 +294618,7 @@ }, { "question": "Blacksburg Parks and Recreation", - "icon": "./assets/data/nsi/logos/blacksburgparksandrecreation-414f19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blacksburgparksandrecreation-414f19.jpg", "osmTags": { "and": [ "leisure=park", @@ -294439,7 +294648,7 @@ }, { "question": "BMC (Bhubaneswar)", - "icon": "./assets/data/nsi/logos/bhubaneswarmunicipalcorporation-f088cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bhubaneswarmunicipalcorporation-f088cd.jpg", "osmTags": { "and": [ "leisure=park", @@ -294475,7 +294684,7 @@ }, { "question": "Bolingbrook Park District", - "icon": "./assets/data/nsi/logos/bolingbrookparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bolingbrookparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -294491,7 +294700,7 @@ }, { "question": "BREC", - "icon": "./assets/data/nsi/logos/brec-4221d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brec-4221d5.jpg", "osmTags": { "and": [ "leisure=park", @@ -294507,7 +294716,7 @@ }, { "question": "Brisbane City Council", - "icon": "./assets/data/nsi/logos/brisbanecitycouncil-f88a26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brisbanecitycouncil-f88a26.jpg", "osmTags": { "and": [ "leisure=park", @@ -294523,7 +294732,7 @@ }, { "question": "Bristol City Council", - "icon": "./assets/data/nsi/logos/bristolcitycouncil-0421ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristolcitycouncil-0421ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -294539,7 +294748,7 @@ }, { "question": "Buffalo Grove Park District", - "icon": "./assets/data/nsi/logos/buffalogroveparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/buffalogroveparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -294556,7 +294765,7 @@ }, { "question": "Bureau of Land Management", - "icon": "./assets/data/nsi/logos/bureauoflandmanagement-059b34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauoflandmanagement-059b34.jpg", "osmTags": { "and": [ "leisure=park", @@ -294573,7 +294782,7 @@ }, { "question": "California Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/californiadepartmentofparksandrecreation-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofparksandrecreation-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -294589,7 +294798,7 @@ }, { "question": "Calumet Memorial Park District", - "icon": "./assets/data/nsi/logos/calumetmemorialparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calumetmemorialparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -294606,7 +294815,7 @@ }, { "question": "Câmara Municipal de Lisboa", - "icon": "./assets/data/nsi/logos/camaramunicipaldelisboa-2f623b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/camaramunicipaldelisboa-2f623b.jpg", "osmTags": { "and": [ "leisure=park", @@ -294637,7 +294846,7 @@ }, { "question": "Campbelltown City Council", - "icon": "./assets/data/nsi/logos/campbelltowncitycouncil-11d7e5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/campbelltowncitycouncil-11d7e5.png", "osmTags": { "and": [ "leisure=park", @@ -294653,7 +294862,7 @@ }, { "question": "Canyon Lake Property Owners Association", - "icon": "./assets/data/nsi/logos/canyonlakepropertyownersassociation-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canyonlakepropertyownersassociation-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -294669,7 +294878,7 @@ }, { "question": "Capital Development Authority (Islamabad)", - "icon": "./assets/data/nsi/logos/capitaldevelopmentauthority-0d1b38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitaldevelopmentauthority-0d1b38.jpg", "osmTags": { "and": [ "leisure=park", @@ -294701,7 +294910,7 @@ }, { "question": "Carson City", - "icon": "./assets/data/nsi/logos/carsoncityparksrecreationandopenspacedepartment-130a83.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carsoncityparksrecreationandopenspacedepartment-130a83.png", "osmTags": { "and": [ "leisure=park", @@ -294717,7 +294926,7 @@ }, { "question": "Cartersville Parks and Recreation", - "icon": "./assets/data/nsi/logos/cartersvilleparksandrecreation-c2abce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cartersvilleparksandrecreation-c2abce.jpg", "osmTags": { "and": [ "leisure=park", @@ -294750,7 +294959,7 @@ }, { "question": "Central Regional District", - "icon": "./assets/data/nsi/logos/centralregionaldistrict-b3cf59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralregionaldistrict-b3cf59.png", "osmTags": { "and": [ "leisure=park", @@ -294767,7 +294976,7 @@ }, { "question": "Chehalem Park and Recreation District", - "icon": "./assets/data/nsi/logos/chehalemparkandrecreationdistrict-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chehalemparkandrecreationdistrict-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -294797,7 +295006,7 @@ }, { "question": "Chicago Heights Park District", - "icon": "./assets/data/nsi/logos/chicagoheightsparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagoheightsparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -294813,7 +295022,7 @@ }, { "question": "Chicago Park District", - "icon": "./assets/data/nsi/logos/chicagoparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagoparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -294829,7 +295038,7 @@ }, { "question": "Christchurch City Council", - "icon": "./assets/data/nsi/logos/christchurchcitycouncil-b93ce4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/christchurchcitycouncil-b93ce4.jpg", "osmTags": { "and": [ "leisure=park", @@ -294874,7 +295083,7 @@ }, { "question": "City of Ames", - "icon": "./assets/data/nsi/logos/cityofames-5303d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofames-5303d3.jpg", "osmTags": { "and": [ "leisure=park", @@ -294890,7 +295099,7 @@ }, { "question": "City of Andover", - "icon": "./assets/data/nsi/logos/cityofandover-853554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofandover-853554.jpg", "osmTags": { "and": [ "leisure=park", @@ -294906,7 +295115,7 @@ }, { "question": "City of Ann Arbor", - "icon": "./assets/data/nsi/logos/cityofannarbor-b9c410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofannarbor-b9c410.jpg", "osmTags": { "and": [ "leisure=park", @@ -294922,7 +295131,7 @@ }, { "question": "City of Ashland (Oregon)", - "icon": "./assets/data/nsi/logos/cityofashland-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofashland-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -294938,7 +295147,7 @@ }, { "question": "City of Ashland (Wisconsin)", - "icon": "./assets/data/nsi/logos/cityofashland-ef1d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofashland-ef1d28.jpg", "osmTags": { "and": [ "leisure=park", @@ -294954,7 +295163,7 @@ }, { "question": "City of Ashtabula", - "icon": "./assets/data/nsi/logos/cityofashtabula-c0c15b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofashtabula-c0c15b.jpg", "osmTags": { "and": [ "leisure=park", @@ -294970,7 +295179,7 @@ }, { "question": "City of Auburn (Washington)", - "icon": "./assets/data/nsi/logos/cityofauburn-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofauburn-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -294986,7 +295195,7 @@ }, { "question": "City of Aurora", - "icon": "./assets/data/nsi/logos/cityofaurora-0900ba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofaurora-0900ba.svg", "osmTags": { "and": [ "leisure=park", @@ -295002,7 +295211,7 @@ }, { "question": "City of Battle Creek", - "icon": "./assets/data/nsi/logos/cityofbattlecreek-b9c410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbattlecreek-b9c410.jpg", "osmTags": { "and": [ "leisure=park", @@ -295018,7 +295227,7 @@ }, { "question": "City of Battle Ground", - "icon": "./assets/data/nsi/logos/cityofbattleground-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbattleground-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -295034,7 +295243,7 @@ }, { "question": "City of Beaverton", - "icon": "./assets/data/nsi/logos/cityofbeaverton-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbeaverton-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -295050,7 +295259,7 @@ }, { "question": "City of Belleair", - "icon": "./assets/data/nsi/logos/cityofbelleair-38b713.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbelleair-38b713.png", "osmTags": { "and": [ "leisure=park", @@ -295066,7 +295275,7 @@ }, { "question": "City of Bellevue (Iowa)", - "icon": "./assets/data/nsi/logos/cityofbellevue-5303d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbellevue-5303d3.jpg", "osmTags": { "and": [ "leisure=park", @@ -295082,7 +295291,7 @@ }, { "question": "City of Bellevue (Washington)", - "icon": "./assets/data/nsi/logos/cityofbellevue-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbellevue-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -295098,7 +295307,7 @@ }, { "question": "City of Bellingham", - "icon": "./assets/data/nsi/logos/cityofbellingham-6c188f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbellingham-6c188f.png", "osmTags": { "and": [ "leisure=park", @@ -295129,7 +295338,7 @@ }, { "question": "City of Blaine (Minnesota)", - "icon": "./assets/data/nsi/logos/cityofblaine-853554.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofblaine-853554.png", "osmTags": { "and": [ "leisure=park", @@ -295145,7 +295354,7 @@ }, { "question": "City of Blaine (Washington)", - "icon": "./assets/data/nsi/logos/cityofblaine-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofblaine-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -295161,7 +295370,7 @@ }, { "question": "City of Boise", - "icon": "./assets/data/nsi/logos/cityofboise-e3f3ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofboise-e3f3ca.png", "osmTags": { "and": [ "leisure=park", @@ -295177,7 +295386,7 @@ }, { "question": "City of Boulder", - "icon": "./assets/data/nsi/logos/cityofboulder-0900ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofboulder-0900ba.jpg", "osmTags": { "and": [ "leisure=park", @@ -295193,7 +295402,7 @@ }, { "question": "City of Boynton Beach", - "icon": "./assets/data/nsi/logos/cityofboyntonbeach-38b713.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofboyntonbeach-38b713.svg", "osmTags": { "and": [ "leisure=park", @@ -295209,7 +295418,7 @@ }, { "question": "City of Bremerton", - "icon": "./assets/data/nsi/logos/cityofbremerton-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbremerton-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -295225,7 +295434,7 @@ }, { "question": "City of Brentwood (California)", - "icon": "./assets/data/nsi/logos/cityofbrentwood-dc1787.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbrentwood-dc1787.svg", "osmTags": { "and": [ "leisure=park", @@ -295241,7 +295450,7 @@ }, { "question": "City of Brentwood (Missouri)", - "icon": "./assets/data/nsi/logos/cityofbrentwood-5e2224.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbrentwood-5e2224.jpg", "osmTags": { "and": [ "leisure=park", @@ -295257,7 +295466,7 @@ }, { "question": "City of Buffalo", - "icon": "./assets/data/nsi/logos/cityofbuffalo-932a36.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbuffalo-932a36.svg", "osmTags": { "and": [ "leisure=park", @@ -295273,7 +295482,7 @@ }, { "question": "City of Caldwell (Idaho)", - "icon": "./assets/data/nsi/logos/cityofcaldwell-e3f3ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcaldwell-e3f3ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -295289,7 +295498,7 @@ }, { "question": "City of Calgary", - "icon": "./assets/data/nsi/logos/cityofcalgary-85dee0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcalgary-85dee0.jpg", "osmTags": { "and": [ "leisure=park", @@ -295305,7 +295514,7 @@ }, { "question": "City of Camas", - "icon": "./assets/data/nsi/logos/cityofcamas-6c188f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcamas-6c188f.png", "osmTags": { "and": [ "leisure=park", @@ -295321,7 +295530,7 @@ }, { "question": "City of Cambridge (Massachusetts)", - "icon": "./assets/data/nsi/logos/cityofcambridge-58b3db.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcambridge-58b3db.svg", "osmTags": { "and": [ "leisure=park", @@ -295337,7 +295546,7 @@ }, { "question": "City of Cambridge (Ontario)", - "icon": "./assets/data/nsi/logos/cityofcambridge-62b82e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcambridge-62b82e.svg", "osmTags": { "and": [ "leisure=park", @@ -295368,7 +295577,7 @@ }, { "question": "City of Cape Town", - "icon": "./assets/data/nsi/logos/cityofcapetown-1d1c6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-1d1c6d.png", "osmTags": { "and": [ "leisure=park", @@ -295402,7 +295611,7 @@ }, { "question": "City of Chandler", - "icon": "./assets/data/nsi/logos/cityofchandler-1fe561.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofchandler-1fe561.jpg", "osmTags": { "and": [ "leisure=park", @@ -295418,7 +295627,7 @@ }, { "question": "City of Charleston (South Carolina)", - "icon": "./assets/data/nsi/logos/cityofcharleston-35a23d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcharleston-35a23d.jpg", "osmTags": { "and": [ "leisure=park", @@ -295434,7 +295643,7 @@ }, { "question": "City of Clearwater", - "icon": "./assets/data/nsi/logos/cityofclearwater-38b713.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofclearwater-38b713.png", "osmTags": { "and": [ "leisure=park", @@ -295450,7 +295659,7 @@ }, { "question": "City of Cleveland (Ohio)", - "icon": "./assets/data/nsi/logos/cityofcleveland-c0c15b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcleveland-c0c15b.svg", "osmTags": { "and": [ "leisure=park", @@ -295466,7 +295675,7 @@ }, { "question": "City of Coeur d'Alene", - "icon": "./assets/data/nsi/logos/cityofcoeurdalene-e3f3ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcoeurdalene-e3f3ca.png", "osmTags": { "and": [ "leisure=park", @@ -295512,7 +295721,7 @@ }, { "question": "City of Corinth", - "icon": "./assets/data/nsi/logos/cityofcorinth-8bfd34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcorinth-8bfd34.png", "osmTags": { "and": [ "leisure=park", @@ -295528,7 +295737,7 @@ }, { "question": "City of Cornelius", - "icon": "./assets/data/nsi/logos/cityofcornelius-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcornelius-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -295559,7 +295768,7 @@ }, { "question": "City of Denton", - "icon": "./assets/data/nsi/logos/cityofdenton-8bfd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdenton-8bfd34.jpg", "osmTags": { "and": [ "leisure=park", @@ -295575,7 +295784,7 @@ }, { "question": "City of Des Moines (Iowa)", - "icon": "./assets/data/nsi/logos/cityofdesmoines-5303d3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdesmoines-5303d3.png", "osmTags": { "and": [ "leisure=park", @@ -295591,7 +295800,7 @@ }, { "question": "City of Des Moines (Washington)", - "icon": "./assets/data/nsi/logos/cityofdesmoines-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdesmoines-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -295607,7 +295816,7 @@ }, { "question": "City of Detroit", - "icon": "./assets/data/nsi/logos/cityofdetroit-b9c410.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdetroit-b9c410.svg", "osmTags": { "and": [ "leisure=park", @@ -295623,7 +295832,7 @@ }, { "question": "City of Dover (Delaware)", - "icon": "./assets/data/nsi/logos/cityofdover-bce3f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdover-bce3f1.jpg", "osmTags": { "and": [ "leisure=park", @@ -295684,7 +295893,7 @@ }, { "question": "City of Edmonton", - "icon": "./assets/data/nsi/logos/cityofedmonton-85dee0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofedmonton-85dee0.svg", "osmTags": { "and": [ "leisure=park", @@ -295700,7 +295909,7 @@ }, { "question": "City of Emeryville", - "icon": "./assets/data/nsi/logos/cityofemeryville-bd5a8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofemeryville-bd5a8e.jpg", "osmTags": { "and": [ "leisure=park", @@ -295716,7 +295925,7 @@ }, { "question": "City of Erie", - "icon": "./assets/data/nsi/logos/cityoferie-dc67ca.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoferie-dc67ca.svg", "osmTags": { "and": [ "leisure=park", @@ -295732,7 +295941,7 @@ }, { "question": "City of Fairview", - "icon": "./assets/data/nsi/logos/cityoffairview-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoffairview-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -295748,7 +295957,7 @@ }, { "question": "City of Farmington", - "icon": "./assets/data/nsi/logos/cityoffarmington-c18344.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoffarmington-c18344.png", "osmTags": { "and": [ "leisure=park", @@ -295764,7 +295973,7 @@ }, { "question": "City of Fayetteville (Arkansas)", - "icon": "./assets/data/nsi/logos/cityoffayetteville-2e75ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoffayetteville-2e75ab.jpg", "osmTags": { "and": [ "leisure=park", @@ -295795,7 +296004,7 @@ }, { "question": "City of Fontana", - "icon": "./assets/data/nsi/logos/cityoffontana-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoffontana-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -295811,7 +296020,7 @@ }, { "question": "City of Forest Grove", - "icon": "./assets/data/nsi/logos/cityofforestgrove-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofforestgrove-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -295827,7 +296036,7 @@ }, { "question": "City of Gary", - "icon": "./assets/data/nsi/logos/cityofgary-86dc7f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgary-86dc7f.svg", "osmTags": { "and": [ "leisure=park", @@ -295843,7 +296052,7 @@ }, { "question": "City of Geneva (New York)", - "icon": "./assets/data/nsi/logos/cityofgeneva-932a36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgeneva-932a36.png", "osmTags": { "and": [ "leisure=park", @@ -295874,7 +296083,7 @@ }, { "question": "City of Gladstone (Oregon)", - "icon": "./assets/data/nsi/logos/cityofgladstone-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgladstone-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -295890,7 +296099,7 @@ }, { "question": "City of Glendale", - "icon": "./assets/data/nsi/logos/cityofglendale-1fe561.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofglendale-1fe561.svg", "osmTags": { "and": [ "leisure=park", @@ -295936,7 +296145,7 @@ }, { "question": "City of Grand Ledge", - "icon": "./assets/data/nsi/logos/cityofgrandledge-b9c410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgrandledge-b9c410.jpg", "osmTags": { "and": [ "leisure=park", @@ -295952,7 +296161,7 @@ }, { "question": "City of Greater Sudbury", - "icon": "./assets/data/nsi/logos/cityofgreatersudbury-62b82e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgreatersudbury-62b82e.jpg", "osmTags": { "and": [ "leisure=park", @@ -295968,7 +296177,7 @@ }, { "question": "City of Greeley", - "icon": "./assets/data/nsi/logos/cityofgreeley-0900ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgreeley-0900ba.jpg", "osmTags": { "and": [ "leisure=park", @@ -296014,7 +296223,7 @@ }, { "question": "City of Gresham", - "icon": "./assets/data/nsi/logos/cityofgresham-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgresham-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -296030,7 +296239,7 @@ }, { "question": "City of Hammond", - "icon": "./assets/data/nsi/logos/cityofhammond-86dc7f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhammond-86dc7f.png", "osmTags": { "and": [ "leisure=park", @@ -296061,7 +296270,7 @@ }, { "question": "City of Hartford (Connecticut)", - "icon": "./assets/data/nsi/logos/cityofhartford-e713eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhartford-e713eb.jpg", "osmTags": { "and": [ "leisure=park", @@ -296077,7 +296286,7 @@ }, { "question": "City of Hartford (Wisconsin)", - "icon": "./assets/data/nsi/logos/cityofhartford-ef1d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhartford-ef1d28.jpg", "osmTags": { "and": [ "leisure=park", @@ -296123,7 +296332,7 @@ }, { "question": "City of Highland Village", - "icon": "./assets/data/nsi/logos/cityofhighlandvillage-8bfd34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhighlandvillage-8bfd34.png", "osmTags": { "and": [ "leisure=park", @@ -296139,7 +296348,7 @@ }, { "question": "City of Houston", - "icon": "./assets/data/nsi/logos/houstonparksandrecreationdepartment-8bfd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/houstonparksandrecreationdepartment-8bfd34.jpg", "osmTags": { "and": [ "leisure=park", @@ -296158,7 +296367,7 @@ }, { "question": "City of Idaho Falls", - "icon": "./assets/data/nsi/logos/cityofidahofalls-e3f3ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofidahofalls-e3f3ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -296174,7 +296383,7 @@ }, { "question": "City of Jacksonville", - "icon": "./assets/data/nsi/logos/cityofjacksonville-38b713.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofjacksonville-38b713.png", "osmTags": { "and": [ "leisure=park", @@ -296190,7 +296399,7 @@ }, { "question": "City of Kamloops", - "icon": "./assets/data/nsi/logos/cityofkamloops-b3cf59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofkamloops-b3cf59.png", "osmTags": { "and": [ "leisure=park", @@ -296206,7 +296415,7 @@ }, { "question": "City of Keizer", - "icon": "./assets/data/nsi/logos/cityofkeizer-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofkeizer-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -296222,7 +296431,7 @@ }, { "question": "City of Kitchener", - "icon": "./assets/data/nsi/logos/cityofkitchener-62b82e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofkitchener-62b82e.jpg", "osmTags": { "and": [ "leisure=park", @@ -296238,7 +296447,7 @@ }, { "question": "City of Knoxville (Tennessee)", - "icon": "./assets/data/nsi/logos/cityofknoxville-742928.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofknoxville-742928.png", "osmTags": { "and": [ "leisure=park", @@ -296254,7 +296463,7 @@ }, { "question": "City of Lake Oswego", - "icon": "./assets/data/nsi/logos/cityoflakeoswego-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakeoswego-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -296270,7 +296479,7 @@ }, { "question": "City of Lakewood (California)", - "icon": "./assets/data/nsi/logos/cityoflakewood-c970c6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-c970c6.svg", "osmTags": { "and": [ "leisure=park", @@ -296286,7 +296495,7 @@ }, { "question": "City of Lakewood (Colorado)", - "icon": "./assets/data/nsi/logos/cityoflakewood-0900ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-0900ba.jpg", "osmTags": { "and": [ "leisure=park", @@ -296302,7 +296511,7 @@ }, { "question": "City of Lakewood (Ohio)", - "icon": "./assets/data/nsi/logos/cityoflakewood-c0c15b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakewood-c0c15b.jpg", "osmTags": { "and": [ "leisure=park", @@ -296318,7 +296527,7 @@ }, { "question": "City of Lakewood Parks and Recreation", - "icon": "./assets/data/nsi/logos/cityoflakewoodparksandrecreation-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakewoodparksandrecreation-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -296334,7 +296543,7 @@ }, { "question": "City of Lancaster (California)", - "icon": "./assets/data/nsi/logos/cityoflancaster-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflancaster-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -296350,7 +296559,7 @@ }, { "question": "City of Lancaster (Pennsylvania)", - "icon": "./assets/data/nsi/logos/cityoflancaster-dc67ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflancaster-dc67ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -296366,7 +296575,7 @@ }, { "question": "City of Lansing", - "icon": "./assets/data/nsi/logos/cityoflansing-b9c410.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflansing-b9c410.svg", "osmTags": { "and": [ "leisure=park", @@ -296397,7 +296606,7 @@ }, { "question": "City of Lewiston", - "icon": "./assets/data/nsi/logos/cityoflewiston-e3f3ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflewiston-e3f3ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -296413,7 +296622,7 @@ }, { "question": "City of Lincoln (Nebraska)", - "icon": "./assets/data/nsi/logos/cityoflincoln-01fc82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflincoln-01fc82.jpg", "osmTags": { "and": [ "leisure=park", @@ -296459,7 +296668,7 @@ }, { "question": "City of Los Angeles", - "icon": "./assets/data/nsi/logos/cityoflosangeles-c970c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflosangeles-c970c6.png", "osmTags": { "and": [ "leisure=park", @@ -296490,7 +296699,7 @@ }, { "question": "City of Mahtomedi", - "icon": "./assets/data/nsi/logos/cityofmahtomedi-853554.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmahtomedi-853554.png", "osmTags": { "and": [ "leisure=park", @@ -296521,7 +296730,7 @@ }, { "question": "City of Martinez", - "icon": "./assets/data/nsi/logos/cityofmartinez-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmartinez-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -296537,7 +296746,7 @@ }, { "question": "City of Medford (Oregon)", - "icon": "./assets/data/nsi/logos/cityofmedford-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmedford-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -296553,7 +296762,7 @@ }, { "question": "City of Meridian", - "icon": "./assets/data/nsi/logos/cityofmeridian-e3f3ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmeridian-e3f3ca.png", "osmTags": { "and": [ "leisure=park", @@ -296569,7 +296778,7 @@ }, { "question": "City of Mesa", - "icon": "./assets/data/nsi/logos/cityofmesa-1fe561.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmesa-1fe561.jpg", "osmTags": { "and": [ "leisure=park", @@ -296585,7 +296794,7 @@ }, { "question": "City of Miami", - "icon": "./assets/data/nsi/logos/cityofmiami-38b713.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmiami-38b713.svg", "osmTags": { "and": [ "leisure=park", @@ -296601,7 +296810,7 @@ }, { "question": "City of Middletown (Connecticut)", - "icon": "./assets/data/nsi/logos/cityofmiddletown-e713eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmiddletown-e713eb.jpg", "osmTags": { "and": [ "leisure=park", @@ -296617,7 +296826,7 @@ }, { "question": "City of Middletown (New York)", - "icon": "./assets/data/nsi/logos/cityofmiddletown-932a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmiddletown-932a36.jpg", "osmTags": { "and": [ "leisure=park", @@ -296633,7 +296842,7 @@ }, { "question": "City of Moreton Bay", - "icon": "./assets/data/nsi/logos/cityofmoretonbay-f88a26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmoretonbay-f88a26.jpg", "osmTags": { "and": [ "leisure=park", @@ -296649,7 +296858,7 @@ }, { "question": "City of Mountlake Terrace", - "icon": "./assets/data/nsi/logos/cityofmountlaketerrace-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofmountlaketerrace-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -296665,7 +296874,7 @@ }, { "question": "City of Nampa", - "icon": "./assets/data/nsi/logos/cityofnampa-e3f3ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnampa-e3f3ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -296696,7 +296905,7 @@ }, { "question": "City of Norfolk (Virginia)", - "icon": "./assets/data/nsi/logos/cityofnorfolk-414f19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnorfolk-414f19.png", "osmTags": { "and": [ "leisure=park", @@ -296712,7 +296921,7 @@ }, { "question": "City of Norman", - "icon": "./assets/data/nsi/logos/cityofnorman-930c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnorman-930c38.jpg", "osmTags": { "and": [ "leisure=park", @@ -296728,7 +296937,7 @@ }, { "question": "City of Norwich", - "icon": "./assets/data/nsi/logos/cityofnorwich-e713eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnorwich-e713eb.png", "osmTags": { "and": [ "leisure=park", @@ -296744,7 +296953,7 @@ }, { "question": "City of Oklahoma City", - "icon": "./assets/data/nsi/logos/cityofoklahomacity-930c38.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofoklahomacity-930c38.png", "osmTags": { "and": [ "leisure=park", @@ -296760,7 +296969,7 @@ }, { "question": "City of Orlando", - "icon": "./assets/data/nsi/logos/cityoforlando-38b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoforlando-38b713.jpg", "osmTags": { "and": [ "leisure=park", @@ -296776,7 +296985,7 @@ }, { "question": "City of Orting", - "icon": "./assets/data/nsi/logos/cityoforting-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoforting-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -296792,7 +297001,7 @@ }, { "question": "City of Oshawa", - "icon": "./assets/data/nsi/logos/cityofoshawa-62b82e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofoshawa-62b82e.jpg", "osmTags": { "and": [ "leisure=park", @@ -296808,7 +297017,7 @@ }, { "question": "City of Ottawa", - "icon": "./assets/data/nsi/logos/cityofottawa-62b82e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofottawa-62b82e.svg", "osmTags": { "and": [ "leisure=park", @@ -296839,7 +297048,7 @@ }, { "question": "City of Phoenix Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/cityofphoenixparksandrecreationdepartment-1fe561.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofphoenixparksandrecreationdepartment-1fe561.jpg", "osmTags": { "and": [ "leisure=park", @@ -296855,7 +297064,7 @@ }, { "question": "City of Pocatello", - "icon": "./assets/data/nsi/logos/cityofpocatello-e3f3ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofpocatello-e3f3ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -296886,7 +297095,7 @@ }, { "question": "City of Portland (Maine)", - "icon": "./assets/data/nsi/logos/cityofportland-82e140.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofportland-82e140.jpg", "osmTags": { "and": [ "leisure=park", @@ -296902,7 +297111,7 @@ }, { "question": "City of Rancho Cucamonga", - "icon": "./assets/data/nsi/logos/cityofranchocucamonga-dc1787.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofranchocucamonga-dc1787.svg", "osmTags": { "and": [ "leisure=park", @@ -296918,7 +297127,7 @@ }, { "question": "City of Redlands", - "icon": "./assets/data/nsi/logos/cityofredlands-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofredlands-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -296934,7 +297143,7 @@ }, { "question": "City of Redmond (Washington)", - "icon": "./assets/data/nsi/logos/cityofredmond-6c188f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofredmond-6c188f.png", "osmTags": { "and": [ "leisure=park", @@ -296950,7 +297159,7 @@ }, { "question": "City of Regina", - "icon": "./assets/data/nsi/logos/cityofregina-ff43b4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofregina-ff43b4.svg", "osmTags": { "and": [ "leisure=park", @@ -296966,7 +297175,7 @@ }, { "question": "City of Richmond (British Columbia)", - "icon": "./assets/data/nsi/logos/cityofrichmond-b3cf59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-b3cf59.jpg", "osmTags": { "and": [ "leisure=park", @@ -296982,7 +297191,7 @@ }, { "question": "City of Richmond (Indiana)", - "icon": "./assets/data/nsi/logos/cityofrichmond-86dc7f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-86dc7f.png", "osmTags": { "and": [ "leisure=park", @@ -296998,7 +297207,7 @@ }, { "question": "City of Richmond (Virginia)", - "icon": "./assets/data/nsi/logos/cityofrichmond-414f19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrichmond-414f19.png", "osmTags": { "and": [ "leisure=park", @@ -297014,7 +297223,7 @@ }, { "question": "City of Rochester (Michigan)", - "icon": "./assets/data/nsi/logos/cityofrochester-b9c410.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-b9c410.png", "osmTags": { "and": [ "leisure=park", @@ -297030,7 +297239,7 @@ }, { "question": "City of Rochester (Minnesota)", - "icon": "./assets/data/nsi/logos/cityofrochester-853554.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-853554.png", "osmTags": { "and": [ "leisure=park", @@ -297046,7 +297255,7 @@ }, { "question": "City of Rochester (New Hampshire)", - "icon": "./assets/data/nsi/logos/cityofrochester-97a560.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-97a560.jpg", "osmTags": { "and": [ "leisure=park", @@ -297062,7 +297271,7 @@ }, { "question": "City of Rochester (New York)", - "icon": "./assets/data/nsi/logos/cityofrochester-932a36.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrochester-932a36.svg", "osmTags": { "and": [ "leisure=park", @@ -297078,7 +297287,7 @@ }, { "question": "City of Rocklin", - "icon": "./assets/data/nsi/logos/cityofrocklin-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrocklin-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -297109,7 +297318,7 @@ }, { "question": "City of Rolla", - "icon": "./assets/data/nsi/logos/cityofrolla-5e2224.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofrolla-5e2224.jpg", "osmTags": { "and": [ "leisure=park", @@ -297125,7 +297334,7 @@ }, { "question": "City of Roseburg", - "icon": "./assets/data/nsi/logos/cityofroseburg-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofroseburg-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -297141,7 +297350,7 @@ }, { "question": "City of Roseville (California)", - "icon": "./assets/data/nsi/logos/cityofroseville-dc1787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofroseville-dc1787.png", "osmTags": { "and": [ "leisure=park", @@ -297157,7 +297366,7 @@ }, { "question": "City of Salem (Oregon)", - "icon": "./assets/data/nsi/logos/cityofsalem-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsalem-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -297173,7 +297382,7 @@ }, { "question": "City of San Antonio", - "icon": "./assets/data/nsi/logos/cityofsanantonio-8bfd34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsanantonio-8bfd34.png", "osmTags": { "and": [ "leisure=park", @@ -297204,7 +297413,7 @@ }, { "question": "City of Santa Fe", - "icon": "./assets/data/nsi/logos/cityofsantafe-c18344.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsantafe-c18344.svg", "osmTags": { "and": [ "leisure=park", @@ -297220,7 +297429,7 @@ }, { "question": "City of Sault Ste. Marie", - "icon": "./assets/data/nsi/logos/cityofsaultstemarie-b9c410.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsaultstemarie-b9c410.svg", "osmTags": { "and": [ "leisure=park", @@ -297236,7 +297445,7 @@ }, { "question": "City of Schertz", - "icon": "./assets/data/nsi/logos/cityofschertz-8bfd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofschertz-8bfd34.jpg", "osmTags": { "and": [ "leisure=park", @@ -297252,7 +297461,7 @@ }, { "question": "City of Scottsdale", - "icon": "./assets/data/nsi/logos/cityofscottsdale-1fe561.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofscottsdale-1fe561.jpg", "osmTags": { "and": [ "leisure=park", @@ -297268,7 +297477,7 @@ }, { "question": "City of Sherwood (Oregon)", - "icon": "./assets/data/nsi/logos/cityofsherwood-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsherwood-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -297299,7 +297508,7 @@ }, { "question": "City of St. John's", - "icon": "./assets/data/nsi/logos/cityofstjohns-c56363.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstjohns-c56363.svg", "osmTags": { "and": [ "leisure=park", @@ -297315,7 +297524,7 @@ }, { "question": "City of St. Louis", - "icon": "./assets/data/nsi/logos/cityofstlouis-5e2224.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstlouis-5e2224.svg", "osmTags": { "and": [ "leisure=park", @@ -297331,7 +297540,7 @@ }, { "question": "City of Staunton", - "icon": "./assets/data/nsi/logos/cityofstaunton-414f19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstaunton-414f19.jpg", "osmTags": { "and": [ "leisure=park", @@ -297347,7 +297556,7 @@ }, { "question": "City of Stuart", - "icon": "./assets/data/nsi/logos/cityofstuart-38b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstuart-38b713.jpg", "osmTags": { "and": [ "leisure=park", @@ -297378,7 +297587,7 @@ }, { "question": "City of Sydney", - "icon": "./assets/data/nsi/logos/cityofsydney-11d7e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsydney-11d7e5.jpg", "osmTags": { "and": [ "leisure=park", @@ -297394,7 +297603,7 @@ }, { "question": "City of Tallahassee", - "icon": "./assets/data/nsi/logos/cityoftallahassee-38b713.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-38b713.png", "osmTags": { "and": [ "leisure=park", @@ -297410,7 +297619,7 @@ }, { "question": "City of Tigard", - "icon": "./assets/data/nsi/logos/cityoftigard-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftigard-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -297426,7 +297635,7 @@ }, { "question": "City of Toronto", - "icon": "./assets/data/nsi/logos/cityoftoronto-62b82e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftoronto-62b82e.svg", "osmTags": { "and": [ "leisure=park", @@ -297442,7 +297651,7 @@ }, { "question": "City of Tracy (California)", - "icon": "./assets/data/nsi/logos/cityoftracy-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftracy-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -297488,7 +297697,7 @@ }, { "question": "City of Troutdale", - "icon": "./assets/data/nsi/logos/cityoftroutdale-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftroutdale-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -297504,7 +297713,7 @@ }, { "question": "City of Tualatin", - "icon": "./assets/data/nsi/logos/cityoftualatin-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftualatin-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -297520,7 +297729,7 @@ }, { "question": "City of Turku", - "icon": "./assets/data/nsi/logos/cityofturku-b3609d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofturku-b3609d.jpg", "osmTags": { "and": [ "leisure=park", @@ -297536,7 +297745,7 @@ }, { "question": "City of Twin Falls", - "icon": "./assets/data/nsi/logos/cityoftwinfalls-e3f3ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftwinfalls-e3f3ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -297567,7 +297776,7 @@ }, { "question": "City of Vancouver (Washington)", - "icon": "./assets/data/nsi/logos/cityofvancouver-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofvancouver-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -297628,7 +297837,7 @@ }, { "question": "City of Warren (Michigan)", - "icon": "./assets/data/nsi/logos/cityofwarren-b9c410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwarren-b9c410.jpg", "osmTags": { "and": [ "leisure=park", @@ -297644,7 +297853,7 @@ }, { "question": "City of Warren (Minnesota)", - "icon": "./assets/data/nsi/logos/cityofwarren-853554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwarren-853554.jpg", "osmTags": { "and": [ "leisure=park", @@ -297660,7 +297869,7 @@ }, { "question": "City of Warren (Pennsylvania)", - "icon": "./assets/data/nsi/logos/cityofwarren-dc67ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwarren-dc67ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -297676,7 +297885,7 @@ }, { "question": "City of Washougal", - "icon": "./assets/data/nsi/logos/cityofwashougal-6c188f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwashougal-6c188f.png", "osmTags": { "and": [ "leisure=park", @@ -297707,7 +297916,7 @@ }, { "question": "City of Watsonville", - "icon": "./assets/data/nsi/logos/cityofwatsonville-dc1787.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwatsonville-dc1787.png", "osmTags": { "and": [ "leisure=park", @@ -297723,7 +297932,7 @@ }, { "question": "City of West Linn", - "icon": "./assets/data/nsi/logos/cityofwestlinn-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwestlinn-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -297739,7 +297948,7 @@ }, { "question": "City of Wichita", - "icon": "./assets/data/nsi/logos/cityofwichita-3287b4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwichita-3287b4.svg", "osmTags": { "and": [ "leisure=park", @@ -297755,7 +297964,7 @@ }, { "question": "City of Wilmington (Delaware)", - "icon": "./assets/data/nsi/logos/cityofwilmington-bce3f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwilmington-bce3f1.jpg", "osmTags": { "and": [ "leisure=park", @@ -297771,7 +297980,7 @@ }, { "question": "City of Wilsonville", - "icon": "./assets/data/nsi/logos/cityofwilsonville-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwilsonville-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -297787,7 +297996,7 @@ }, { "question": "City of Winnipeg", - "icon": "./assets/data/nsi/logos/cityofwinnipeg-3d8c8b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwinnipeg-3d8c8b.svg", "osmTags": { "and": [ "leisure=park", @@ -297803,7 +298012,7 @@ }, { "question": "City of Winter Park", - "icon": "./assets/data/nsi/logos/cityofwinterpark-38b713.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwinterpark-38b713.png", "osmTags": { "and": [ "leisure=park", @@ -297819,7 +298028,7 @@ }, { "question": "City of Woodbury (Minnesota)", - "icon": "./assets/data/nsi/logos/cityofwoodbury-853554.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwoodbury-853554.svg", "osmTags": { "and": [ "leisure=park", @@ -297835,7 +298044,7 @@ }, { "question": "Clackamas County", - "icon": "./assets/data/nsi/logos/clackamascounty-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clackamascounty-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -297851,7 +298060,7 @@ }, { "question": "Clark County (Washington)", - "icon": "./assets/data/nsi/logos/clarkcounty-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkcounty-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -297867,7 +298076,7 @@ }, { "question": "Cleveland Metroparks", - "icon": "./assets/data/nsi/logos/clevelandmetroparks-c0c15b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandmetroparks-c0c15b.svg", "osmTags": { "and": [ "leisure=park", @@ -297883,7 +298092,7 @@ }, { "question": "Clutha District Council", - "icon": "./assets/data/nsi/logos/cluthadistrictcouncil-a83a4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cluthadistrictcouncil-a83a4e.jpg", "osmTags": { "and": [ "leisure=park", @@ -297899,7 +298108,7 @@ }, { "question": "Clyde Park District", - "icon": "./assets/data/nsi/logos/clydeparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clydeparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -297915,7 +298124,7 @@ }, { "question": "Colorado Parks and Wildlife", - "icon": "./assets/data/nsi/logos/coloradoparksandwildlife-0900ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradoparksandwildlife-0900ba.jpg", "osmTags": { "and": [ "leisure=park", @@ -297932,7 +298141,7 @@ }, { "question": "Comune di Brescia", - "icon": "./assets/data/nsi/logos/comunedibrescia-e51756.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedibrescia-e51756.svg", "osmTags": { "and": [ "leisure=park", @@ -297948,7 +298157,7 @@ }, { "question": "Comune di Carrara", - "icon": "./assets/data/nsi/logos/comunedicarrara-e1f757.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedicarrara-e1f757.svg", "osmTags": { "and": [ "leisure=park", @@ -297979,7 +298188,7 @@ }, { "question": "Cork City Council", - "icon": "./assets/data/nsi/logos/corkcitycouncil-62b8c3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/corkcitycouncil-62b8c3.svg", "osmTags": { "and": [ "leisure=park", @@ -297995,7 +298204,7 @@ }, { "question": "Corvallis Parks & Recreation", - "icon": "./assets/data/nsi/logos/corvallisparksandrecreation-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/corvallisparksandrecreation-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -298027,7 +298236,7 @@ }, { "question": "Crystal Lake Park District", - "icon": "./assets/data/nsi/logos/crystallakeparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/crystallakeparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -298101,7 +298310,7 @@ }, { "question": "Department of Conservation (New Zealand)", - "icon": "./assets/data/nsi/logos/departmentofconservation-0a56ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-0a56ce.png", "osmTags": { "and": [ "leisure=park", @@ -298131,7 +298340,7 @@ }, { "question": "Dinas Kota Surabaya", - "icon": "./assets/data/nsi/logos/dinaskotasurabaya-eab1bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dinaskotasurabaya-eab1bf.svg", "osmTags": { "and": [ "leisure=park", @@ -298176,7 +298385,7 @@ }, { "question": "Drammen kommune", - "icon": "./assets/data/nsi/logos/drammenkommune-5cc6e8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/drammenkommune-5cc6e8.png", "osmTags": { "and": [ "leisure=park", @@ -298192,7 +298401,7 @@ }, { "question": "Dublin City Council", - "icon": "./assets/data/nsi/logos/dublincitycouncil-fb990e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dublincitycouncil-fb990e.jpg", "osmTags": { "and": [ "leisure=park", @@ -298208,7 +298417,7 @@ }, { "question": "Durham Parks & Recreation", - "icon": "./assets/data/nsi/logos/durhamparksandrecreation-dc7d2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/durhamparksandrecreation-dc7d2a.jpg", "osmTags": { "and": [ "leisure=park", @@ -298225,7 +298434,7 @@ }, { "question": "East Bay Regional Park District", - "icon": "./assets/data/nsi/logos/eastbayregionalparkdistrict-dc1787.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastbayregionalparkdistrict-dc1787.jpg", "osmTags": { "and": [ "leisure=park", @@ -298255,7 +298464,7 @@ }, { "question": "Emaverde", - "icon": "./assets/data/nsi/logos/emaverde-14104f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emaverde-14104f.jpg", "osmTags": { "and": [ "leisure=park", @@ -298271,7 +298480,7 @@ }, { "question": "Empresa Municipal de Áreas Verdes y Recreación Alternativa", - "icon": "./assets/data/nsi/logos/empresamunicipaldeareasverdesyrecreacionalternativa-14104f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/empresamunicipaldeareasverdesyrecreacionalternativa-14104f.png", "osmTags": { "and": [ "leisure=park", @@ -298288,7 +298497,7 @@ }, { "question": "Erewash Borough Council", - "icon": "./assets/data/nsi/logos/erewashboroughcouncil-165719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erewashboroughcouncil-165719.jpg", "osmTags": { "and": [ "leisure=park", @@ -298304,7 +298513,7 @@ }, { "question": "Espoon kaupunki", - "icon": "./assets/data/nsi/logos/espoonkaupunki-b3609d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/espoonkaupunki-b3609d.png", "osmTags": { "and": [ "leisure=park", @@ -298320,7 +298529,7 @@ }, { "question": "Eugene Parks & Open Space", - "icon": "./assets/data/nsi/logos/eugeneparksandopenspace-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eugeneparksandopenspace-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -298336,7 +298545,7 @@ }, { "question": "Evanston Parks & Recreation", - "icon": "./assets/data/nsi/logos/evanstonparksandrecreation-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evanstonparksandrecreation-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -298352,7 +298561,7 @@ }, { "question": "Fairfax County Park Authority", - "icon": "./assets/data/nsi/logos/fairfaxcountyparkauthority-414f19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fairfaxcountyparkauthority-414f19.jpg", "osmTags": { "and": [ "leisure=park", @@ -298368,7 +298577,7 @@ }, { "question": "Fargo Park District", - "icon": "./assets/data/nsi/logos/fargoparkdistrict-20a56e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fargoparkdistrict-20a56e.jpg", "osmTags": { "and": [ "leisure=park", @@ -298384,7 +298593,7 @@ }, { "question": "Five Rivers MetroParks", - "icon": "./assets/data/nsi/logos/fiveriversmetroparks-c0c15b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fiveriversmetroparks-c0c15b.jpg", "osmTags": { "and": [ "leisure=park", @@ -298400,7 +298609,7 @@ }, { "question": "Florida State Parks", - "icon": "./assets/data/nsi/logos/floridastateparks-38b713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/floridastateparks-38b713.jpg", "osmTags": { "and": [ "leisure=park", @@ -298417,7 +298626,7 @@ }, { "question": "Forest Preserve District of Cook County", - "icon": "./assets/data/nsi/logos/forestpreservedistrictofcookcounty-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forestpreservedistrictofcookcounty-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -298433,7 +298642,7 @@ }, { "question": "Forestry England", - "icon": "./assets/data/nsi/logos/forestryengland-0421ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/forestryengland-0421ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -298479,7 +298688,7 @@ }, { "question": "Galway City Council", - "icon": "./assets/data/nsi/logos/galwaycitycouncil-8ff4eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/galwaycitycouncil-8ff4eb.jpg", "osmTags": { "and": [ "leisure=park", @@ -298510,7 +298719,7 @@ }, { "question": "GAMS", - "icon": "./assets/data/nsi/logos/gams-14104f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gams-14104f.jpg", "osmTags": { "and": [ "leisure=park", @@ -298540,7 +298749,7 @@ }, { "question": "Gedling Borough Council", - "icon": "./assets/data/nsi/logos/gedlingboroughcouncil-165719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gedlingboroughcouncil-165719.jpg", "osmTags": { "and": [ "leisure=park", @@ -298556,7 +298765,7 @@ }, { "question": "Geneva Park District", - "icon": "./assets/data/nsi/logos/genevaparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/genevaparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -298572,7 +298781,7 @@ }, { "question": "Georgia State Parks & Historic Sites", - "icon": "./assets/data/nsi/logos/georgiastateparksandhistoricsites-c2abce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/georgiastateparksandhistoricsites-c2abce.jpg", "osmTags": { "and": [ "leisure=park", @@ -298602,7 +298811,7 @@ }, { "question": "Glen Ellyn Park District", - "icon": "./assets/data/nsi/logos/glenellynparkdistrict-17eabc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/glenellynparkdistrict-17eabc.png", "osmTags": { "and": [ "leisure=park", @@ -298618,7 +298827,7 @@ }, { "question": "Glencoe Park District", - "icon": "./assets/data/nsi/logos/glencoeparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glencoeparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -298634,7 +298843,7 @@ }, { "question": "Glenview Park District", - "icon": "./assets/data/nsi/logos/glenviewparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glenviewparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -298664,7 +298873,7 @@ }, { "question": "Gold Coast City Council", - "icon": "./assets/data/nsi/logos/goldcoastcitycouncil-f88a26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldcoastcitycouncil-f88a26.jpg", "osmTags": { "and": [ "leisure=park", @@ -298695,7 +298904,7 @@ }, { "question": "Great Parks of Hamilton County", - "icon": "./assets/data/nsi/logos/greatparksofhamiltoncounty-c0c15b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greatparksofhamiltoncounty-c0c15b.jpg", "osmTags": { "and": [ "leisure=park", @@ -298711,7 +298920,7 @@ }, { "question": "Grün Stadt Zürich", - "icon": "./assets/data/nsi/logos/grunstadtzurich-265307.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grunstadtzurich-265307.jpg", "osmTags": { "and": [ "leisure=park", @@ -298727,7 +298936,7 @@ }, { "question": "Hackney Council", - "icon": "./assets/data/nsi/logos/hackneycouncil-777334.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-777334.jpg", "osmTags": { "and": [ "leisure=park", @@ -298743,7 +298952,7 @@ }, { "question": "Halifax Regional Municipality", - "icon": "./assets/data/nsi/logos/halifaxregionalmunicipality-f40be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/halifaxregionalmunicipality-f40be7.jpg", "osmTags": { "and": [ "leisure=park", @@ -298759,7 +298968,7 @@ }, { "question": "Hämeenlinnan kaupunki", - "icon": "./assets/data/nsi/logos/hameenlinnankaupunki-b3609d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hameenlinnankaupunki-b3609d.svg", "osmTags": { "and": [ "leisure=park", @@ -298775,7 +298984,7 @@ }, { "question": "Hammond Parks & Recreation", - "icon": "./assets/data/nsi/logos/hammondparksandrecreation-86dc7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hammondparksandrecreation-86dc7f.jpg", "osmTags": { "and": [ "leisure=park", @@ -298805,7 +299014,7 @@ }, { "question": "Hardin County Conservation", - "icon": "./assets/data/nsi/logos/hardincountyconservation-5303d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hardincountyconservation-5303d3.jpg", "osmTags": { "and": [ "leisure=park", @@ -298821,7 +299030,7 @@ }, { "question": "Harris County Precinct 3", - "icon": "./assets/data/nsi/logos/harriscountyprecinct3-8bfd34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/harriscountyprecinct3-8bfd34.png", "osmTags": { "and": [ "leisure=park", @@ -298837,7 +299046,7 @@ }, { "question": "Hawaii Division of State Parks", - "icon": "./assets/data/nsi/logos/hawaiidivisionofstateparks-ea65bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiidivisionofstateparks-ea65bf.jpg", "osmTags": { "and": [ "leisure=park", @@ -298868,7 +299077,7 @@ }, { "question": "Hillsboro Parks & Recreation", - "icon": "./assets/data/nsi/logos/hillsboroparksandrecreation-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hillsboroparksandrecreation-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -298884,7 +299093,7 @@ }, { "question": "Hillsborough County (Florida)", - "icon": "./assets/data/nsi/logos/hillsboroughcounty-38b713.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hillsboroughcounty-38b713.png", "osmTags": { "and": [ "leisure=park", @@ -298914,7 +299123,7 @@ }, { "question": "Hurunui District Council", - "icon": "./assets/data/nsi/logos/hurunuidistrictcouncil-b93ce4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hurunuidistrictcouncil-b93ce4.jpg", "osmTags": { "and": [ "leisure=park", @@ -298958,7 +299167,7 @@ }, { "question": "Idaho Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/idahodepartmentofparksandrecreation-e3f3ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahodepartmentofparksandrecreation-e3f3ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -298975,7 +299184,7 @@ }, { "question": "Illinois DNR", - "icon": "./assets/data/nsi/logos/illinoisdepartmentofnaturalresources-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentofnaturalresources-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -298992,7 +299201,7 @@ }, { "question": "Incorporated Village of Flower Hill", - "icon": "./assets/data/nsi/logos/incorporatedvillageofflowerhill-932a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/incorporatedvillageofflowerhill-932a36.jpg", "osmTags": { "and": [ "leisure=park", @@ -299024,7 +299233,7 @@ }, { "question": "Indy Parks", - "icon": "./assets/data/nsi/logos/indyparks-86dc7f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indyparks-86dc7f.png", "osmTags": { "and": [ "leisure=park", @@ -299040,7 +299249,7 @@ }, { "question": "Instituto Distrital de Recreación y Deporte", - "icon": "./assets/data/nsi/logos/institutodistritalderecreacionydeporte-e0463d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutodistritalderecreacionydeporte-e0463d.svg", "osmTags": { "and": [ "leisure=park", @@ -299057,7 +299266,7 @@ }, { "question": "Invercargill City Council", - "icon": "./assets/data/nsi/logos/invercargillcitycouncil-7ce967.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invercargillcitycouncil-7ce967.jpg", "osmTags": { "and": [ "leisure=park", @@ -299073,7 +299282,7 @@ }, { "question": "Iowa DNR", - "icon": "./assets/data/nsi/logos/iowadepartmentofnaturalresources-5303d3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/iowadepartmentofnaturalresources-5303d3.svg", "osmTags": { "and": [ "leisure=park", @@ -299090,7 +299299,7 @@ }, { "question": "Islington Council", - "icon": "./assets/data/nsi/logos/islingtoncouncil-777334.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/islingtoncouncil-777334.jpg", "osmTags": { "and": [ "leisure=park", @@ -299106,7 +299315,7 @@ }, { "question": "İstanbul Büyükşehir Belediyesi", - "icon": "./assets/data/nsi/logos/istanbulbuyuksehirbelediyesi-2ed982.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istanbulbuyuksehirbelediyesi-2ed982.jpg", "osmTags": { "and": [ "leisure=park", @@ -299123,7 +299332,7 @@ }, { "question": "ISTU", - "icon": "./assets/data/nsi/logos/institutosalvadorenodeturismo-489562.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutosalvadorenodeturismo-489562.jpg", "osmTags": { "and": [ "leisure=park", @@ -299140,7 +299349,7 @@ }, { "question": "Jackson County (Michigan)", - "icon": "./assets/data/nsi/logos/jacksoncounty-b9c410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksoncounty-b9c410.jpg", "osmTags": { "and": [ "leisure=park", @@ -299156,7 +299365,7 @@ }, { "question": "Jackson County (Minnesota)", - "icon": "./assets/data/nsi/logos/jacksoncounty-853554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksoncounty-853554.jpg", "osmTags": { "and": [ "leisure=park", @@ -299202,7 +299411,7 @@ }, { "question": "Jackson County Conservation", - "icon": "./assets/data/nsi/logos/jacksoncountyconservation-5303d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksoncountyconservation-5303d3.jpg", "osmTags": { "and": [ "leisure=park", @@ -299233,7 +299442,7 @@ }, { "question": "Jefferson County (Wisconsin)", - "icon": "./assets/data/nsi/logos/jeffersoncounty-ef1d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jeffersoncounty-ef1d28.jpg", "osmTags": { "and": [ "leisure=park", @@ -299266,7 +299475,7 @@ }, { "question": "Johnson County Park and Recreation District", - "icon": "./assets/data/nsi/logos/johnsoncountyparkandrecreationdistrict-3287b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnsoncountyparkandrecreationdistrict-3287b4.jpg", "osmTags": { "and": [ "leisure=park", @@ -299283,7 +299492,7 @@ }, { "question": "Kankakee Valley Park District", - "icon": "./assets/data/nsi/logos/kankakeevalleyparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kankakeevalleyparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -299300,7 +299509,7 @@ }, { "question": "Kansas Department of Wildlife & Parks", - "icon": "./assets/data/nsi/logos/kansasdepartmentofwildlifeandparks-3287b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kansasdepartmentofwildlifeandparks-3287b4.jpg", "osmTags": { "and": [ "leisure=park", @@ -299317,7 +299526,7 @@ }, { "question": "Kāpiti Coast District Council", - "icon": "./assets/data/nsi/logos/kapiticoastdistrictcouncil-465cf6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kapiticoastdistrictcouncil-465cf6.png", "osmTags": { "and": [ "leisure=park", @@ -299333,7 +299542,7 @@ }, { "question": "Kauhajoen kaupunki", - "icon": "./assets/data/nsi/logos/kauhajoenkaupunki-b3609d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kauhajoenkaupunki-b3609d.jpg", "osmTags": { "and": [ "leisure=park", @@ -299349,7 +299558,7 @@ }, { "question": "Kentucky Department of Parks", - "icon": "./assets/data/nsi/logos/kentuckydepartmentofparks-9af01b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckydepartmentofparks-9af01b.jpg", "osmTags": { "and": [ "leisure=park", @@ -299365,7 +299574,7 @@ }, { "question": "King County Parks", - "icon": "./assets/data/nsi/logos/kingcountyparks-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kingcountyparks-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -299381,7 +299590,7 @@ }, { "question": "Kitsap County Parks", - "icon": "./assets/data/nsi/logos/kitsapcountyparks-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kitsapcountyparks-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -299397,7 +299606,7 @@ }, { "question": "KMC", - "icon": "./assets/data/nsi/logos/kolkatamunicipalcorporation-d31221.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kolkatamunicipalcorporation-d31221.png", "osmTags": { "and": [ "leisure=park", @@ -299416,7 +299625,7 @@ }, { "question": "Knowsley Council", - "icon": "./assets/data/nsi/logos/knowsleycouncil-331094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knowsleycouncil-331094.jpg", "osmTags": { "and": [ "leisure=park", @@ -299432,7 +299641,7 @@ }, { "question": "Kuopion kaupunki", - "icon": "./assets/data/nsi/logos/kuopionkaupunki-b3609d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/kuopionkaupunki-b3609d.svg", "osmTags": { "and": [ "leisure=park", @@ -299448,7 +299657,7 @@ }, { "question": "Lake Metroparks", - "icon": "./assets/data/nsi/logos/lakemetroparks-c0c15b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lakemetroparks-c0c15b.png", "osmTags": { "and": [ "leisure=park", @@ -299507,7 +299716,7 @@ }, { "question": "Lane County (Oregon)", - "icon": "./assets/data/nsi/logos/lanecounty-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lanecounty-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -299523,7 +299732,7 @@ }, { "question": "Lane Cove Council", - "icon": "./assets/data/nsi/logos/lanecovecouncil-11d7e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lanecovecouncil-11d7e5.jpg", "osmTags": { "and": [ "leisure=park", @@ -299539,7 +299748,7 @@ }, { "question": "Lincolnwood Parks and Recreation", - "icon": "./assets/data/nsi/logos/lincolnwoodparksandrecreation-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnwoodparksandrecreation-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -299555,7 +299764,7 @@ }, { "question": "Lisle Park District", - "icon": "./assets/data/nsi/logos/lisleparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lisleparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -299600,7 +299809,7 @@ }, { "question": "Logan City Council", - "icon": "./assets/data/nsi/logos/logancitycouncil-f88a26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/logancitycouncil-f88a26.jpg", "osmTags": { "and": [ "leisure=park", @@ -299616,7 +299825,7 @@ }, { "question": "Louisiana Office of State Parks", - "icon": "./assets/data/nsi/logos/louisianaofficeofstateparks-4221d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisianaofficeofstateparks-4221d5.jpg", "osmTags": { "and": [ "leisure=park", @@ -299632,7 +299841,7 @@ }, { "question": "Louisville Parks and Recreation", - "icon": "./assets/data/nsi/logos/louisvilleparksandrecreation-9af01b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisvilleparksandrecreation-9af01b.jpg", "osmTags": { "and": [ "leisure=park", @@ -299648,7 +299857,7 @@ }, { "question": "Lower Merion Township", - "icon": "./assets/data/nsi/logos/lowermeriontownship-dc67ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lowermeriontownship-dc67ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -299783,7 +299992,7 @@ }, { "question": "Manchester City Council", - "icon": "./assets/data/nsi/logos/manchestercitycouncil-0421ca.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manchestercitycouncil-0421ca.svg", "osmTags": { "and": [ "leisure=park", @@ -299814,7 +300023,7 @@ }, { "question": "Maple Grove Parks and Recreation", - "icon": "./assets/data/nsi/logos/maplegroveparksandrecreation-853554.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maplegroveparksandrecreation-853554.png", "osmTags": { "and": [ "leisure=park", @@ -299830,7 +300039,7 @@ }, { "question": "Marietta Parks & Recreation", - "icon": "./assets/data/nsi/logos/mariettaparksandrecreation-c2abce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mariettaparksandrecreation-c2abce.jpg", "osmTags": { "and": [ "leisure=park", @@ -299861,7 +300070,7 @@ }, { "question": "Martin County (Florida)", - "icon": "./assets/data/nsi/logos/martincounty-38b713.png", + "icon": "https://data.mapcomplete.org/nsi//logos/martincounty-38b713.png", "osmTags": { "and": [ "leisure=park", @@ -299877,7 +300086,7 @@ }, { "question": "Maryland Park Service", - "icon": "./assets/data/nsi/logos/marylandparkservice-fb928d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marylandparkservice-fb928d.jpg", "osmTags": { "and": [ "leisure=park", @@ -299908,7 +300117,7 @@ }, { "question": "Maui County", - "icon": "./assets/data/nsi/logos/mauicounty-ea65bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mauicounty-ea65bf.jpg", "osmTags": { "and": [ "leisure=park", @@ -299938,7 +300147,7 @@ }, { "question": "MDWFP", - "icon": "./assets/data/nsi/logos/mississippidepartmentofwildlifefisheriesandparks-97a1c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippidepartmentofwildlifefisheriesandparks-97a1c6.png", "osmTags": { "and": [ "leisure=park", @@ -299984,7 +300193,7 @@ }, { "question": "Metro (Oregon)", - "icon": "./assets/data/nsi/logos/metro-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metro-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -300000,7 +300209,7 @@ }, { "question": "Metro Parks Tacoma", - "icon": "./assets/data/nsi/logos/metroparkstacoma-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metroparkstacoma-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -300017,7 +300226,7 @@ }, { "question": "Metro Vancouver Regional Parks", - "icon": "./assets/data/nsi/logos/metrovancouverregionalparks-b3cf59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metrovancouverregionalparks-b3cf59.png", "osmTags": { "and": [ "leisure=park", @@ -300033,7 +300242,7 @@ }, { "question": "Michigan Department of Natural Resources", - "icon": "./assets/data/nsi/logos/michigandepartmentofnaturalresources-b9c410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michigandepartmentofnaturalresources-b9c410.jpg", "osmTags": { "and": [ "leisure=park", @@ -300050,7 +300259,7 @@ }, { "question": "Michigan Department of Transportation", - "icon": "./assets/data/nsi/logos/michigandepartmentoftransportation-b9c410.png", + "icon": "https://data.mapcomplete.org/nsi//logos/michigandepartmentoftransportation-b9c410.png", "osmTags": { "and": [ "leisure=park", @@ -300067,7 +300276,7 @@ }, { "question": "Millcreek Township (Pennsylvania)", - "icon": "./assets/data/nsi/logos/millcreektownship-dc67ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/millcreektownship-dc67ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -300083,7 +300292,7 @@ }, { "question": "Milwaukee County Parks", - "icon": "./assets/data/nsi/logos/milwaukeecountyparks-ef1d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/milwaukeecountyparks-ef1d28.jpg", "osmTags": { "and": [ "leisure=park", @@ -300099,7 +300308,7 @@ }, { "question": "Minneapolis Park and Recreation Board", - "icon": "./assets/data/nsi/logos/minneapolisparkandrecreationboard-853554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minneapolisparkandrecreationboard-853554.jpg", "osmTags": { "and": [ "leisure=park", @@ -300115,7 +300324,7 @@ }, { "question": "Minnesota DNR", - "icon": "./assets/data/nsi/logos/minnesotadepartmentofnaturalresources-853554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotadepartmentofnaturalresources-853554.jpg", "osmTags": { "and": [ "leisure=park", @@ -300132,7 +300341,7 @@ }, { "question": "Missouri State Parks", - "icon": "./assets/data/nsi/logos/missouristateparks-5e2224.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missouristateparks-5e2224.jpg", "osmTags": { "and": [ "leisure=park", @@ -300148,7 +300357,7 @@ }, { "question": "MMCB", - "icon": "./assets/data/nsi/logos/magistratmestaceskebudejovice-63f1de.png", + "icon": "https://data.mapcomplete.org/nsi//logos/magistratmestaceskebudejovice-63f1de.png", "osmTags": { "and": [ "leisure=park", @@ -300165,7 +300374,7 @@ }, { "question": "Montana Department of Fish, Wildlife and Parks", - "icon": "./assets/data/nsi/logos/montanadepartmentoffishwildlifeandparks-7d0f2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montanadepartmentoffishwildlifeandparks-7d0f2d.jpg", "osmTags": { "and": [ "leisure=park", @@ -300182,7 +300391,7 @@ }, { "question": "Montgomery Parks", - "icon": "./assets/data/nsi/logos/montgomeryparks-fb928d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/montgomeryparks-fb928d.jpg", "osmTags": { "and": [ "leisure=park", @@ -300198,7 +300407,7 @@ }, { "question": "Morton Grove Park District", - "icon": "./assets/data/nsi/logos/mortongroveparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mortongroveparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -300288,7 +300497,7 @@ }, { "question": "Municipalidad de Neuquén", - "icon": "./assets/data/nsi/logos/municipalidaddeneuquen-c3e953.png", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-c3e953.png", "osmTags": { "and": [ "leisure=park", @@ -300349,7 +300558,7 @@ }, { "question": "Municipalidad de Zapala", - "icon": "./assets/data/nsi/logos/municipalidaddezapala-c3e953.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddezapala-c3e953.jpg", "osmTags": { "and": [ "leisure=park", @@ -300380,6 +300589,7 @@ }, { "question": "Município de Maputo", + "icon": "https://data.mapcomplete.org/nsi//logos/municipiodemaputo-840c65.jpg", "osmTags": { "and": [ "leisure=park", @@ -300395,7 +300605,7 @@ }, { "question": "Naperville Park District", - "icon": "./assets/data/nsi/logos/napervilleparkdistrict-17eabc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/napervilleparkdistrict-17eabc.png", "osmTags": { "and": [ "leisure=park", @@ -300411,7 +300621,7 @@ }, { "question": "National Capital Commission", - "icon": "./assets/data/nsi/logos/nationalcapitalcommission-62b82e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalcapitalcommission-62b82e.jpg", "osmTags": { "and": [ "leisure=park", @@ -300428,7 +300638,7 @@ }, { "question": "National Park Service", - "icon": "./assets/data/nsi/logos/nationalparkservice-059b34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-059b34.jpg", "osmTags": { "and": [ "leisure=park", @@ -300445,7 +300655,7 @@ }, { "question": "National Parks Board", - "icon": "./assets/data/nsi/logos/nationalparksboard-671a98.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparksboard-671a98.png", "osmTags": { "and": [ "leisure=park", @@ -300462,7 +300672,7 @@ }, { "question": "National Trust", - "icon": "./assets/data/nsi/logos/nationaltrust-8367e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrust-8367e0.jpg", "osmTags": { "and": [ "leisure=park", @@ -300478,7 +300688,7 @@ }, { "question": "National Trust for Scotland", - "icon": "./assets/data/nsi/logos/nationaltrustforscotland-5433bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltrustforscotland-5433bf.jpg", "osmTags": { "and": [ "leisure=park", @@ -300510,7 +300720,7 @@ }, { "question": "NCPRD", - "icon": "./assets/data/nsi/logos/northclackamasparksandrecreationdistrict-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northclackamasparksandrecreationdistrict-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -300527,7 +300737,7 @@ }, { "question": "Nebraska Game and Parks Commission", - "icon": "./assets/data/nsi/logos/nebraskagameandparkscommission-01fc82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nebraskagameandparkscommission-01fc82.png", "osmTags": { "and": [ "leisure=park", @@ -300544,7 +300754,7 @@ }, { "question": "Nelson City Council", - "icon": "./assets/data/nsi/logos/nelsoncitycouncil-c11cf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nelsoncitycouncil-c11cf0.jpg", "osmTags": { "and": [ "leisure=park", @@ -300560,7 +300770,7 @@ }, { "question": "Nevada State Parks", - "icon": "./assets/data/nsi/logos/nevadastateparks-130a83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nevadastateparks-130a83.jpg", "osmTags": { "and": [ "leisure=park", @@ -300576,7 +300786,7 @@ }, { "question": "New Mexico EMNRD", - "icon": "./assets/data/nsi/logos/newmexicodepartmentofenergymineralsandnaturalresources-1fe561.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newmexicodepartmentofenergymineralsandnaturalresources-1fe561.jpg", "osmTags": { "and": [ "leisure=park", @@ -300593,7 +300803,7 @@ }, { "question": "New York State DEC", - "icon": "./assets/data/nsi/logos/newyorkstatedepartmentofenvironmentalconservation-932a36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofenvironmentalconservation-932a36.png", "osmTags": { "and": [ "leisure=park", @@ -300610,7 +300820,7 @@ }, { "question": "New York State OPRHP", - "icon": "./assets/data/nsi/logos/newyorkstateofficeofparksrecreationandhistoricpreservation-932a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstateofficeofparksrecreationandhistoricpreservation-932a36.jpg", "osmTags": { "and": [ "leisure=park", @@ -300626,7 +300836,7 @@ }, { "question": "Newport City Council", - "icon": "./assets/data/nsi/logos/newportcitycouncil-cb6ad2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-cb6ad2.jpg", "osmTags": { "and": [ "leisure=park", @@ -300642,7 +300852,7 @@ }, { "question": "Newport News Green Foundation", - "icon": "./assets/data/nsi/logos/newportnewsgreenfoundation-414f19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newportnewsgreenfoundation-414f19.png", "osmTags": { "and": [ "leisure=park", @@ -300673,7 +300883,7 @@ }, { "question": "Niles Park District", - "icon": "./assets/data/nsi/logos/nilesparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nilesparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -300689,7 +300899,7 @@ }, { "question": "North Carolina Division of Parks and Recreation", - "icon": "./assets/data/nsi/logos/northcarolinadivisionofparksandrecreation-dc7d2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northcarolinadivisionofparksandrecreation-dc7d2a.jpg", "osmTags": { "and": [ "leisure=park", @@ -300706,7 +300916,7 @@ }, { "question": "North Dakota Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/northdakotaparksandrecreationdepartment-20a56e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northdakotaparksandrecreationdepartment-20a56e.jpg", "osmTags": { "and": [ "leisure=park", @@ -300736,6 +300946,7 @@ }, { "question": "Northern Beaches Council", + "icon": "https://data.mapcomplete.org/nsi//logos/northernbeachescouncil-11d7e5.jpg", "osmTags": { "and": [ "leisure=park", @@ -300751,7 +300962,7 @@ }, { "question": "Nottingham City Council", - "icon": "./assets/data/nsi/logos/nottinghamcitycouncil-165719.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nottinghamcitycouncil-165719.jpg", "osmTags": { "and": [ "leisure=park", @@ -300767,7 +300978,7 @@ }, { "question": "Nova Scotia Provincial Parks", - "icon": "./assets/data/nsi/logos/novascotiaprovincialparks-f40be7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiaprovincialparks-f40be7.jpg", "osmTags": { "and": [ "leisure=park", @@ -300783,7 +300994,7 @@ }, { "question": "NYC Parks", - "icon": "./assets/data/nsi/logos/newyorkcitydepartmentofparksandrecreation-155697.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkcitydepartmentofparksandrecreation-155697.jpg", "osmTags": { "and": [ "leisure=park", @@ -300814,7 +301025,7 @@ }, { "question": "Ohio Department of Natural Resources", - "icon": "./assets/data/nsi/logos/ohiodepartmentofnaturalresources-c0c15b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentofnaturalresources-c0c15b.jpg", "osmTags": { "and": [ "leisure=park", @@ -300831,7 +301042,7 @@ }, { "question": "Ohio State Parks & Watercraft", - "icon": "./assets/data/nsi/logos/ohiostateparksandwatercraft-c0c15b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiostateparksandwatercraft-c0c15b.jpg", "osmTags": { "and": [ "leisure=park", @@ -300862,7 +301073,7 @@ }, { "question": "Oklahoma Department of Wildlife Conservation", - "icon": "./assets/data/nsi/logos/oklahomadepartmentofwildlifeconservation-930c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomadepartmentofwildlifeconservation-930c38.jpg", "osmTags": { "and": [ "leisure=park", @@ -300879,7 +301090,7 @@ }, { "question": "Ontario Parks", - "icon": "./assets/data/nsi/logos/ontarioparks-62b82e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ontarioparks-62b82e.jpg", "osmTags": { "and": [ "leisure=park", @@ -300910,7 +301121,7 @@ }, { "question": "Oregon City Parks & Recreation", - "icon": "./assets/data/nsi/logos/oregoncityparksandrecreation-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oregoncityparksandrecreation-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -300926,7 +301137,7 @@ }, { "question": "Oregon Parks and Recreation Department", - "icon": "./assets/data/nsi/logos/oregonparksandrecreationdepartment-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oregonparksandrecreationdepartment-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -300942,7 +301153,7 @@ }, { "question": "Oswegoland Park District", - "icon": "./assets/data/nsi/logos/oswegolandparkdistrict-17eabc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oswegolandparkdistrict-17eabc.png", "osmTags": { "and": [ "leisure=park", @@ -300958,7 +301169,7 @@ }, { "question": "Palatine Park District", - "icon": "./assets/data/nsi/logos/palatineparkdistrict-17eabc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/palatineparkdistrict-17eabc.png", "osmTags": { "and": [ "leisure=park", @@ -300974,7 +301185,7 @@ }, { "question": "Palmerston North City Council", - "icon": "./assets/data/nsi/logos/palmerstonnorthcitycouncil-174b70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmerstonnorthcitycouncil-174b70.jpg", "osmTags": { "and": [ "leisure=park", @@ -301019,7 +301230,7 @@ }, { "question": "Park District of Oak Park", - "icon": "./assets/data/nsi/logos/parkdistrictofoakpark-17eabc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parkdistrictofoakpark-17eabc.png", "osmTags": { "and": [ "leisure=park", @@ -301051,7 +301262,7 @@ }, { "question": "Parks Canada", - "icon": "./assets/data/nsi/logos/parkscanada-fc15e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/parkscanada-fc15e4.jpg", "osmTags": { "and": [ "leisure=park", @@ -301067,7 +301278,7 @@ }, { "question": "Parks Victoria", - "icon": "./assets/data/nsi/logos/parksvictoria-3b6b12.png", + "icon": "https://data.mapcomplete.org/nsi//logos/parksvictoria-3b6b12.png", "osmTags": { "and": [ "leisure=park", @@ -301113,7 +301324,7 @@ }, { "question": "Peoria Park District", - "icon": "./assets/data/nsi/logos/peoriaparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peoriaparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -301130,7 +301341,7 @@ }, { "question": "PGL LP", - "icon": "./assets/data/nsi/logos/pgllp-d6816a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgllp-d6816a.jpg", "osmTags": { "and": [ "leisure=park", @@ -301146,7 +301357,7 @@ }, { "question": "Phoenixville Borough", - "icon": "./assets/data/nsi/logos/phoenixvilleborough-dc67ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phoenixvilleborough-dc67ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -301162,7 +301373,7 @@ }, { "question": "Plaine Commune", - "icon": "./assets/data/nsi/logos/plainecommune-28de19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plainecommune-28de19.jpg", "osmTags": { "and": [ "leisure=park", @@ -301178,7 +301389,7 @@ }, { "question": "Plainfield Park District", - "icon": "./assets/data/nsi/logos/plainfieldparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plainfieldparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -301194,7 +301405,7 @@ }, { "question": "Portland Parks & Recreation", - "icon": "./assets/data/nsi/logos/portlandparksandrecreation-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandparksandrecreation-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -301239,7 +301450,7 @@ }, { "question": "Prefeitura de Catalão", - "icon": "./assets/data/nsi/logos/prefeituradecatalao-2ff008.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituradecatalao-2ff008.jpg", "osmTags": { "and": [ "leisure=park", @@ -301270,7 +301481,7 @@ }, { "question": "Prefeitura de Ribeirão Pires", - "icon": "./assets/data/nsi/logos/prefeituraderibeiraopires-7edb87.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituraderibeiraopires-7edb87.png", "osmTags": { "and": [ "leisure=park", @@ -301286,7 +301497,7 @@ }, { "question": "Prefeitura de Rio Verde", - "icon": "./assets/data/nsi/logos/prefeituraderioverde-2ff008.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituraderioverde-2ff008.jpg", "osmTags": { "and": [ "leisure=park", @@ -301302,7 +301513,7 @@ }, { "question": "Prefeitura Municipal de Curitiba", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldecuritiba-9e5f1d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldecuritiba-9e5f1d.svg", "osmTags": { "and": [ "leisure=park", @@ -301318,7 +301529,7 @@ }, { "question": "Prefeitura Municipal de Fortaleza", - "icon": "./assets/data/nsi/logos/prefeituramunicipaldefortaleza-09addb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefeituramunicipaldefortaleza-09addb.jpg", "osmTags": { "and": [ "leisure=park", @@ -301379,7 +301590,7 @@ }, { "question": "Prince George's County Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/princegeorgescountydepartmentofparksandrecreation-fb928d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/princegeorgescountydepartmentofparksandrecreation-fb928d.jpg", "osmTags": { "and": [ "leisure=park", @@ -301438,7 +301649,7 @@ }, { "question": "Roselle Park District", - "icon": "./assets/data/nsi/logos/roselleparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roselleparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -301454,7 +301665,7 @@ }, { "question": "Rother District Council", - "icon": "./assets/data/nsi/logos/rotherdistrictcouncil-4c36e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rotherdistrictcouncil-4c36e5.jpg", "osmTags": { "and": [ "leisure=park", @@ -301484,7 +301695,7 @@ }, { "question": "Saint Paul Department of Parks and Recreation", - "icon": "./assets/data/nsi/logos/saintpauldepartmentofparksandrecreation-853554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saintpauldepartmentofparksandrecreation-853554.jpg", "osmTags": { "and": [ "leisure=park", @@ -301500,7 +301711,7 @@ }, { "question": "San Bernardino County", - "icon": "./assets/data/nsi/logos/sanbernardinocounty-dc1787.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanbernardinocounty-dc1787.svg", "osmTags": { "and": [ "leisure=park", @@ -301516,7 +301727,7 @@ }, { "question": "San Francisco Recreation & Park Department", - "icon": "./assets/data/nsi/logos/sanfranciscorecreationandparkdepartment-7d4eb5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanfranciscorecreationandparkdepartment-7d4eb5.jpg", "osmTags": { "and": [ "leisure=park", @@ -301532,7 +301743,7 @@ }, { "question": "San José Parks, Recreation and Neighborhood Services", - "icon": "./assets/data/nsi/logos/sanjoseparksrecreationandneighborhoodservices-551cbb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanjoseparksrecreationandneighborhoodservices-551cbb.jpg", "osmTags": { "and": [ "leisure=park", @@ -301578,7 +301789,7 @@ }, { "question": "Servicio de Parques de Lima", - "icon": "./assets/data/nsi/logos/serviciodeparquesdelima-2a5779.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/serviciodeparquesdelima-2a5779.jpg", "osmTags": { "and": [ "leisure=park", @@ -301608,7 +301819,7 @@ }, { "question": "Skokie Park District", - "icon": "./assets/data/nsi/logos/skokieparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/skokieparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -301638,7 +301849,7 @@ }, { "question": "Somerset Council", - "icon": "./assets/data/nsi/logos/somersetcouncil-09986d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-09986d.jpg", "osmTags": { "and": [ "leisure=park", @@ -301654,7 +301865,7 @@ }, { "question": "South Carolina State Parks", - "icon": "./assets/data/nsi/logos/southcarolinastateparks-35a23d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southcarolinastateparks-35a23d.jpg", "osmTags": { "and": [ "leisure=park", @@ -301670,7 +301881,7 @@ }, { "question": "South Dakota GFP", - "icon": "./assets/data/nsi/logos/southdakotadepartmentofgamefishandparks-2c4d84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southdakotadepartmentofgamefishandparks-2c4d84.jpg", "osmTags": { "and": [ "leisure=park", @@ -301702,7 +301913,7 @@ }, { "question": "Southland District Council", - "icon": "./assets/data/nsi/logos/southlanddistrictcouncil-7ce967.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southlanddistrictcouncil-7ce967.png", "osmTags": { "and": [ "leisure=park", @@ -301718,7 +301929,7 @@ }, { "question": "Southwest Michigan Land Conservancy", - "icon": "./assets/data/nsi/logos/southwestmichiganlandconservancy-b9c410.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestmichiganlandconservancy-b9c410.png", "osmTags": { "and": [ "leisure=park", @@ -301734,7 +301945,7 @@ }, { "question": "Správa mestskej zelene v Košiciach", - "icon": "./assets/data/nsi/logos/spravamestskejzelenevkosiciach-f67935.png", + "icon": "https://data.mapcomplete.org/nsi//logos/spravamestskejzelenevkosiciach-f67935.png", "osmTags": { "and": [ "leisure=park", @@ -301751,7 +301962,7 @@ }, { "question": "Springfield Park District", - "icon": "./assets/data/nsi/logos/springfieldparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -301767,7 +301978,7 @@ }, { "question": "Stadt Innsbruck", - "icon": "./assets/data/nsi/logos/stadtinnsbruck-c774fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtinnsbruck-c774fa.png", "osmTags": { "and": [ "leisure=park", @@ -301783,7 +301994,7 @@ }, { "question": "Stadt Norden", - "icon": "./assets/data/nsi/logos/stadtnorden-a7fb0c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtnorden-a7fb0c.svg", "osmTags": { "and": [ "leisure=park", @@ -301799,7 +302010,7 @@ }, { "question": "Stadt Weimar", - "icon": "./assets/data/nsi/logos/stadtweimar-5e34cd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtweimar-5e34cd.svg", "osmTags": { "and": [ "leisure=park", @@ -301815,7 +302026,7 @@ }, { "question": "Stadt Witten", - "icon": "./assets/data/nsi/logos/stadtwitten-afee1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwitten-afee1b.jpg", "osmTags": { "and": [ "leisure=park", @@ -301831,7 +302042,7 @@ }, { "question": "State of Connecticut", - "icon": "./assets/data/nsi/logos/stateofconnecticut-e713eb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stateofconnecticut-e713eb.svg", "osmTags": { "and": [ "leisure=park", @@ -301861,7 +302072,7 @@ }, { "question": "Sugar Grove Park District", - "icon": "./assets/data/nsi/logos/sugargroveparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sugargroveparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -301877,7 +302088,7 @@ }, { "question": "Summit Metro Parks", - "icon": "./assets/data/nsi/logos/summitmetroparks-c0c15b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/summitmetroparks-c0c15b.jpg", "osmTags": { "and": [ "leisure=park", @@ -301893,7 +302104,7 @@ }, { "question": "Sunshine Coast Council", - "icon": "./assets/data/nsi/logos/sunshinecoastcouncil-f88a26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunshinecoastcouncil-f88a26.jpg", "osmTags": { "and": [ "leisure=park", @@ -301909,7 +302120,7 @@ }, { "question": "Tasman District Council", - "icon": "./assets/data/nsi/logos/tasmandistrictcouncil-1585a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tasmandistrictcouncil-1585a5.png", "osmTags": { "and": [ "leisure=park", @@ -301925,7 +302136,7 @@ }, { "question": "Tennessee State Parks", - "icon": "./assets/data/nsi/logos/tennesseestateparks-742928.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseestateparks-742928.png", "osmTags": { "and": [ "leisure=park", @@ -301941,7 +302152,7 @@ }, { "question": "Texas Historical Commission", - "icon": "./assets/data/nsi/logos/texashistoricalcommission-8bfd34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texashistoricalcommission-8bfd34.png", "osmTags": { "and": [ "leisure=park", @@ -301957,7 +302168,7 @@ }, { "question": "Texas Parks and Wildlife Department", - "icon": "./assets/data/nsi/logos/texasparksandwildlifedepartment-8bfd34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasparksandwildlifedepartment-8bfd34.jpg", "osmTags": { "and": [ "leisure=park", @@ -301974,7 +302185,7 @@ }, { "question": "The Parks Trust", - "icon": "./assets/data/nsi/logos/theparkstrust-122ca7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theparkstrust-122ca7.jpg", "osmTags": { "and": [ "leisure=park", @@ -301990,7 +302201,7 @@ }, { "question": "The Royal Parks", - "icon": "./assets/data/nsi/logos/theroyalparks-777334.png", + "icon": "https://data.mapcomplete.org/nsi//logos/theroyalparks-777334.png", "osmTags": { "and": [ "leisure=park", @@ -302006,7 +302217,7 @@ }, { "question": "THPRD", - "icon": "./assets/data/nsi/logos/tualatinhillsparkandrecreationdistrict-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tualatinhillsparkandrecreationdistrict-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -302023,7 +302234,7 @@ }, { "question": "Timaru District Council", - "icon": "./assets/data/nsi/logos/timarudistrictcouncil-b93ce4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/timarudistrictcouncil-b93ce4.jpg", "osmTags": { "and": [ "leisure=park", @@ -302054,7 +302265,7 @@ }, { "question": "Town of Abingdon", - "icon": "./assets/data/nsi/logos/townofabingdon-414f19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofabingdon-414f19.jpg", "osmTags": { "and": [ "leisure=park", @@ -302070,7 +302281,7 @@ }, { "question": "Town of Alva", - "icon": "./assets/data/nsi/logos/townofalva-930c38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofalva-930c38.jpg", "osmTags": { "and": [ "leisure=park", @@ -302086,7 +302297,7 @@ }, { "question": "Town of Amherst (Massachusetts)", - "icon": "./assets/data/nsi/logos/townofamherst-58b3db.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofamherst-58b3db.svg", "osmTags": { "and": [ "leisure=park", @@ -302102,7 +302313,7 @@ }, { "question": "Town of Amherst (New Hampshire)", - "icon": "./assets/data/nsi/logos/townofamherst-97a560.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townofamherst-97a560.png", "osmTags": { "and": [ "leisure=park", @@ -302148,7 +302359,7 @@ }, { "question": "Town of East Hartford", - "icon": "./assets/data/nsi/logos/townofeasthartford-e713eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townofeasthartford-e713eb.png", "osmTags": { "and": [ "leisure=park", @@ -302194,7 +302405,7 @@ }, { "question": "Town of Hempstead", - "icon": "./assets/data/nsi/logos/townofhempstead-932a36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townofhempstead-932a36.png", "osmTags": { "and": [ "leisure=park", @@ -302225,7 +302436,7 @@ }, { "question": "Town of Manchester", - "icon": "./assets/data/nsi/logos/townofmanchester-e713eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/townofmanchester-e713eb.png", "osmTags": { "and": [ "leisure=park", @@ -302256,7 +302467,7 @@ }, { "question": "Town of North Hempstead", - "icon": "./assets/data/nsi/logos/townofnorthhempstead-932a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofnorthhempstead-932a36.jpg", "osmTags": { "and": [ "leisure=park", @@ -302287,7 +302498,7 @@ }, { "question": "Town of Saint John", - "icon": "./assets/data/nsi/logos/townofsaintjohn-86dc7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofsaintjohn-86dc7f.jpg", "osmTags": { "and": [ "leisure=park", @@ -302318,7 +302529,7 @@ }, { "question": "Town of Vienna", - "icon": "./assets/data/nsi/logos/townofvienna-414f19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/townofvienna-414f19.jpg", "osmTags": { "and": [ "leisure=park", @@ -302364,7 +302575,7 @@ }, { "question": "Tredyffrin Township", - "icon": "./assets/data/nsi/logos/tredyffrintownship-dc67ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredyffrintownship-dc67ca.jpg", "osmTags": { "and": [ "leisure=park", @@ -302395,7 +302606,7 @@ }, { "question": "United States Army Corps of Engineers", - "icon": "./assets/data/nsi/logos/unitedstatesarmycorpsofengineers-059b34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesarmycorpsofengineers-059b34.jpg", "osmTags": { "and": [ "leisure=park", @@ -302412,7 +302623,7 @@ }, { "question": "University of Melbourne", - "icon": "./assets/data/nsi/logos/universityofmelbourne-3b6b12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofmelbourne-3b6b12.jpg", "osmTags": { "and": [ "leisure=park", @@ -302442,7 +302653,7 @@ }, { "question": "Utah State Parks", - "icon": "./assets/data/nsi/logos/utahstateparks-535432.png", + "icon": "https://data.mapcomplete.org/nsi//logos/utahstateparks-535432.png", "osmTags": { "and": [ "leisure=park", @@ -302458,7 +302669,7 @@ }, { "question": "Vantaan kaupunki", - "icon": "./assets/data/nsi/logos/vantaankaupunki-b3609d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vantaankaupunki-b3609d.jpg", "osmTags": { "and": [ "leisure=park", @@ -302474,7 +302685,7 @@ }, { "question": "Village of Bourbonnais", - "icon": "./assets/data/nsi/logos/villageofbourbonnais-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villageofbourbonnais-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -302490,7 +302701,7 @@ }, { "question": "Village of Fayetteville", - "icon": "./assets/data/nsi/logos/villageoffayetteville-932a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villageoffayetteville-932a36.jpg", "osmTags": { "and": [ "leisure=park", @@ -302521,7 +302732,7 @@ }, { "question": "Village of Waunakee", - "icon": "./assets/data/nsi/logos/villageofwaunakee-ef1d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villageofwaunakee-ef1d28.jpg", "osmTags": { "and": [ "leisure=park", @@ -302612,7 +302823,7 @@ }, { "question": "Ville de Montréal", - "icon": "./assets/data/nsi/logos/villedemontreal-8d83b2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedemontreal-8d83b2.svg", "osmTags": { "and": [ "leisure=park", @@ -302643,7 +302854,7 @@ }, { "question": "Ville de Nicolet", - "icon": "./assets/data/nsi/logos/villedenicolet-8d83b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedenicolet-8d83b2.jpg", "osmTags": { "and": [ "leisure=park", @@ -302689,7 +302900,7 @@ }, { "question": "Virginia Department of Transportation", - "icon": "./assets/data/nsi/logos/virginiadepartmentoftransportation-414f19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentoftransportation-414f19.jpg", "osmTags": { "and": [ "leisure=park", @@ -302706,7 +302917,7 @@ }, { "question": "Waimakariri District Council", - "icon": "./assets/data/nsi/logos/waimakariridistrictcouncil-b93ce4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/waimakariridistrictcouncil-b93ce4.png", "osmTags": { "and": [ "leisure=park", @@ -302722,7 +302933,7 @@ }, { "question": "Waitaki District Council", - "icon": "./assets/data/nsi/logos/waitakidistrictcouncil-a83a4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waitakidistrictcouncil-a83a4e.jpg", "osmTags": { "and": [ "leisure=park", @@ -302753,7 +302964,7 @@ }, { "question": "Warrenville Park District", - "icon": "./assets/data/nsi/logos/warrenvilleparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/warrenvilleparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -302769,7 +302980,7 @@ }, { "question": "Washington County (Oregon)", - "icon": "./assets/data/nsi/logos/washingtoncounty-9db284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtoncounty-9db284.jpg", "osmTags": { "and": [ "leisure=park", @@ -302785,7 +302996,7 @@ }, { "question": "Washington Department of Fish and Wildlife", - "icon": "./assets/data/nsi/logos/washingtondepartmentoffishandwildlife-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtondepartmentoffishandwildlife-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -302802,7 +303013,7 @@ }, { "question": "Washington State Parks and Recreation Commission", - "icon": "./assets/data/nsi/logos/washingtonstateparksandrecreationcommission-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonstateparksandrecreationcommission-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -302818,7 +303029,7 @@ }, { "question": "Waukegan Park District", - "icon": "./assets/data/nsi/logos/waukeganparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waukeganparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -302849,7 +303060,7 @@ }, { "question": "Wellington City Council", - "icon": "./assets/data/nsi/logos/wellingtoncitycouncil-465cf6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wellingtoncitycouncil-465cf6.jpg", "osmTags": { "and": [ "leisure=park", @@ -302865,7 +303076,7 @@ }, { "question": "West Chicago Park District", - "icon": "./assets/data/nsi/logos/westchicagoparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westchicagoparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -302881,7 +303092,7 @@ }, { "question": "West Fargo Park District", - "icon": "./assets/data/nsi/logos/westfargoparkdistrict-20a56e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westfargoparkdistrict-20a56e.png", "osmTags": { "and": [ "leisure=park", @@ -302898,7 +303109,7 @@ }, { "question": "West Virginia DNR", - "icon": "./assets/data/nsi/logos/westvirginiadivisionofnaturalresources-0e9e9f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westvirginiadivisionofnaturalresources-0e9e9f.png", "osmTags": { "and": [ "leisure=park", @@ -302915,7 +303126,7 @@ }, { "question": "Western Springs Park District", - "icon": "./assets/data/nsi/logos/westernspringsparkdistrict-17eabc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westernspringsparkdistrict-17eabc.png", "osmTags": { "and": [ "leisure=park", @@ -302931,7 +303142,7 @@ }, { "question": "Wheaton Park District", - "icon": "./assets/data/nsi/logos/wheatonparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wheatonparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -302947,7 +303158,7 @@ }, { "question": "Willamalane", - "icon": "./assets/data/nsi/logos/willamalaneparkandrecreationdistrict-9db284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/willamalaneparkandrecreationdistrict-9db284.png", "osmTags": { "and": [ "leisure=park", @@ -302963,7 +303174,7 @@ }, { "question": "Willoughby City Council", - "icon": "./assets/data/nsi/logos/willoughbycitycouncil-11d7e5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/willoughbycitycouncil-11d7e5.jpg", "osmTags": { "and": [ "leisure=park", @@ -302979,7 +303190,7 @@ }, { "question": "Wilmette Park District", - "icon": "./assets/data/nsi/logos/wilmetteparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wilmetteparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -303009,7 +303220,7 @@ }, { "question": "Winfield Park District", - "icon": "./assets/data/nsi/logos/winfieldparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winfieldparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -303025,7 +303236,7 @@ }, { "question": "Winnetka Park District", - "icon": "./assets/data/nsi/logos/winnetkaparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/winnetkaparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -303041,7 +303252,7 @@ }, { "question": "Wisconsin DNR", - "icon": "./assets/data/nsi/logos/wisconsindepartmentofnaturalresources-ef1d28.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentofnaturalresources-ef1d28.png", "osmTags": { "and": [ "leisure=park", @@ -303058,7 +303269,7 @@ }, { "question": "Woodridge Park District", - "icon": "./assets/data/nsi/logos/woodridgeparkdistrict-17eabc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/woodridgeparkdistrict-17eabc.jpg", "osmTags": { "and": [ "leisure=park", @@ -303089,7 +303300,7 @@ }, { "question": "WYO Parks", - "icon": "./assets/data/nsi/logos/wyomingdivisionofstateparksandhistoricsites-cea54e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wyomingdivisionofstateparksandhistoricsites-cea54e.jpg", "osmTags": { "and": [ "leisure=park", @@ -303106,7 +303317,7 @@ }, { "question": "Yakima Parks & Recreation", - "icon": "./assets/data/nsi/logos/yakimaparksandrecreation-6c188f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yakimaparksandrecreation-6c188f.jpg", "osmTags": { "and": [ "leisure=park", @@ -303563,7 +303774,7 @@ }, { "question": "康樂及文化事務署 Leisure and Cultural Services Department", - "icon": "./assets/data/nsi/logos/leisureandculturalservicesdepartment-30eaed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leisureandculturalservicesdepartment-30eaed.jpg", "osmTags": { "and": [ "leisure=park", @@ -303978,7 +304189,7 @@ }, { "question": "Bowling Green State University", - "icon": "./assets/data/nsi/logos/bowlinggreenstateuniversity-573bf6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-573bf6.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -303994,7 +304205,7 @@ }, { "question": "Broxtowe Borough Council", - "icon": "./assets/data/nsi/logos/broxtoweboroughcouncil-45fac9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/broxtoweboroughcouncil-45fac9.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304050,7 +304261,7 @@ }, { "question": "City of Calgary", - "icon": "./assets/data/nsi/logos/cityofcalgary-8d2a1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcalgary-8d2a1d.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304065,7 +304276,7 @@ }, { "question": "City of Dubuque", - "icon": "./assets/data/nsi/logos/cityofdubuque-3b2d57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofdubuque-3b2d57.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304080,7 +304291,7 @@ }, { "question": "City of Ottawa", - "icon": "./assets/data/nsi/logos/cityofottawa-272e42.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofottawa-272e42.png", "osmTags": { "and": [ "leisure=pitch", @@ -304145,7 +304356,7 @@ }, { "question": "Decathlon", - "icon": "./assets/data/nsi/logos/decathlon-31fbc1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decathlon-31fbc1.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304242,7 +304453,7 @@ }, { "question": "Gemeinde Unterhaching", - "icon": "./assets/data/nsi/logos/gemeindeunterhaching-d293c1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindeunterhaching-d293c1.svg", "osmTags": { "and": [ "leisure=pitch", @@ -304257,7 +304468,7 @@ }, { "question": "Hackney Tennis", - "icon": "./assets/data/nsi/logos/hackneytennis-bac174.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hackneytennis-bac174.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304324,7 +304535,7 @@ }, { "question": "Kouvolan kaupunki", - "icon": "./assets/data/nsi/logos/kouvolankaupunki-8c67a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kouvolankaupunki-8c67a7.png", "osmTags": { "and": [ "leisure=pitch", @@ -304339,7 +304550,7 @@ }, { "question": "Kuopion kaupunki", - "icon": "./assets/data/nsi/logos/kuopionkaupunki-8c67a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kuopionkaupunki-8c67a7.png", "osmTags": { "and": [ "leisure=pitch", @@ -304454,7 +304665,7 @@ }, { "question": "MMCB", - "icon": "./assets/data/nsi/logos/magistratmestaceskebudejovice-378c31.png", + "icon": "https://data.mapcomplete.org/nsi//logos/magistratmestaceskebudejovice-378c31.png", "osmTags": { "and": [ "leisure=pitch", @@ -304479,6 +304690,7 @@ }, { "question": "Município de Maputo", + "icon": "https://data.mapcomplete.org/nsi//logos/municipiodemaputo-fe1461.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304493,7 +304705,7 @@ }, { "question": "Newport City Council", - "icon": "./assets/data/nsi/logos/newportcitycouncil-1a17df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newportcitycouncil-1a17df.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304681,7 +304893,7 @@ }, { "question": "Slippery Rock University", - "icon": "./assets/data/nsi/logos/slipperyrockuniversity-b14250.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slipperyrockuniversity-b14250.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304696,7 +304908,7 @@ }, { "question": "Sportski park Mladost", - "icon": "./assets/data/nsi/logos/sportskiparkmladost-dca74c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sportskiparkmladost-dca74c.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304729,7 +304941,7 @@ }, { "question": "Stadt Bonn", - "icon": "./assets/data/nsi/logos/stadtbonn-d74e32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbonn-d74e32.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304744,7 +304956,7 @@ }, { "question": "Stadt Freising", - "icon": "./assets/data/nsi/logos/stadtfreising-d293c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtfreising-d293c1.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304759,7 +304971,7 @@ }, { "question": "Stadt Gießen", - "icon": "./assets/data/nsi/logos/stadtgiessen-10ccb2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgiessen-10ccb2.svg", "osmTags": { "and": [ "leisure=pitch", @@ -304774,7 +304986,7 @@ }, { "question": "Stadt Neuss", - "icon": "./assets/data/nsi/logos/stadtneuss-d74e32.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtneuss-d74e32.svg", "osmTags": { "and": [ "leisure=pitch", @@ -304789,7 +305001,7 @@ }, { "question": "Stadt Witten", - "icon": "./assets/data/nsi/logos/stadtwitten-d74e32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwitten-d74e32.jpg", "osmTags": { "and": [ "leisure=pitch", @@ -304903,7 +305115,7 @@ }, { "question": "Tower Hamlets Tennis", - "icon": "./assets/data/nsi/logos/towerhamletstennis-bac174.png", + "icon": "https://data.mapcomplete.org/nsi//logos/towerhamletstennis-bac174.png", "osmTags": { "and": [ "leisure=pitch", @@ -304929,7 +305141,7 @@ }, { "question": "University of Minnesota", - "icon": "./assets/data/nsi/logos/universityofminnesota-8586be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universityofminnesota-8586be.png", "osmTags": { "and": [ "leisure=pitch", @@ -304999,7 +305211,7 @@ }, { "question": "123energie", - "icon": "./assets/data/nsi/logos/123energie-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/123energie-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305014,7 +305226,7 @@ }, { "question": "7-Eleven", - "icon": "./assets/data/nsi/logos/7eleven-416623.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7eleven-416623.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305031,7 +305243,7 @@ }, { "question": "a2a", - "icon": "./assets/data/nsi/logos/a2a-60858d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a2a-60858d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305046,7 +305258,7 @@ }, { "question": "ABB", - "icon": "./assets/data/nsi/logos/abb-5601d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/abb-5601d5.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305075,7 +305287,7 @@ }, { "question": "Acciona Energía", - "icon": "./assets/data/nsi/logos/accionaenergia-9bc2ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accionaenergia-9bc2ed.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305104,7 +305316,7 @@ }, { "question": "ADAC", - "icon": "./assets/data/nsi/logos/adac-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adac-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305119,7 +305331,7 @@ }, { "question": "Agrisnellaad", - "icon": "./assets/data/nsi/logos/agrisnellaad-a00d8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agrisnellaad-a00d8a.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305134,7 +305346,7 @@ }, { "question": "Agrola", - "icon": "./assets/data/nsi/logos/agrola-d761b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agrola-d761b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305177,7 +305389,7 @@ }, { "question": "Airbus", - "icon": "./assets/data/nsi/logos/airbus-aaa4a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airbus-aaa4a2.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305192,7 +305404,7 @@ }, { "question": "Akademiska Hus", - "icon": "./assets/data/nsi/logos/akademiskahus-fe9964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/akademiskahus-fe9964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305207,7 +305419,7 @@ }, { "question": "Aldi (Aldi Nord group)", - "icon": "./assets/data/nsi/logos/aldi-550ee8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-550ee8.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -305222,7 +305434,7 @@ }, { "question": "Aldi (Aldi Süd group)", - "icon": "./assets/data/nsi/logos/aldi-302bb9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-302bb9.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305237,7 +305449,7 @@ }, { "question": "ALDI Nord (Deutschland)", - "icon": "./assets/data/nsi/logos/aldi-c08d09.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-c08d09.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -305252,7 +305464,7 @@ }, { "question": "ALDI Süd (Deutschland)", - "icon": "./assets/data/nsi/logos/aldi-f5486a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-f5486a.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305267,7 +305479,7 @@ }, { "question": "Alfen", - "icon": "./assets/data/nsi/logos/alfen-073d71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alfen-073d71.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305291,7 +305503,7 @@ }, { "question": "Allego", - "icon": "./assets/data/nsi/logos/allego-073d71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/allego-073d71.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305306,7 +305518,7 @@ }, { "question": "Allgäuer Überlandwerk", - "icon": "./assets/data/nsi/logos/allgaueruberlandwerk-bea674.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-bea674.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305322,7 +305534,7 @@ }, { "question": "Alperia", - "icon": "./assets/data/nsi/logos/alperia-60858d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alperia-60858d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305337,7 +305549,7 @@ }, { "question": "ALTIS", - "icon": "./assets/data/nsi/logos/altis-9327de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altis-9327de.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305366,7 +305578,7 @@ }, { "question": "Applegreen Electric", - "icon": "./assets/data/nsi/logos/applegreenelectric-ae7de3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/applegreenelectric-ae7de3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305381,7 +305593,7 @@ }, { "question": "Aral pulse", - "icon": "./assets/data/nsi/logos/aral-026fb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aral-026fb8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305411,7 +305623,7 @@ }, { "question": "Arinea", - "icon": "./assets/data/nsi/logos/arinea-3c58b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arinea-3c58b6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305426,7 +305638,7 @@ }, { "question": "ASP", - "icon": "./assets/data/nsi/logos/asp-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/asp-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305459,7 +305671,7 @@ }, { "question": "Auchan", - "icon": "./assets/data/nsi/logos/auchan-c9b0aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchan-c9b0aa.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305474,7 +305686,7 @@ }, { "question": "Audi AG", - "icon": "./assets/data/nsi/logos/audiag-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/audiag-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305489,7 +305701,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-e8d2ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-e8d2ef.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305504,7 +305716,7 @@ }, { "question": "AutoEnterprise", - "icon": "./assets/data/nsi/logos/autoenterprise-bfc601.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autoenterprise-bfc601.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305519,7 +305731,7 @@ }, { "question": "Autolib'", - "icon": "./assets/data/nsi/logos/autolib-e794c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/autolib-e794c8.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -305534,7 +305746,7 @@ }, { "question": "Avacon", - "icon": "./assets/data/nsi/logos/avacon-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avacon-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305549,7 +305761,7 @@ }, { "question": "AVU", - "icon": "./assets/data/nsi/logos/avu-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avu-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305564,7 +305776,7 @@ }, { "question": "Aziende Industriali di Lugano", - "icon": "./assets/data/nsi/logos/aziendeindustrialidilugano-d3d79f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aziendeindustrialidilugano-d3d79f.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305580,7 +305792,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-c1a2f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-c1a2f3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305604,7 +305816,7 @@ }, { "question": "Bauhaus", - "icon": "./assets/data/nsi/logos/bauhaus-e9ea4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bauhaus-e9ea4c.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305619,7 +305831,7 @@ }, { "question": "Bayernwerk", - "icon": "./assets/data/nsi/logos/bayernwerk-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayernwerk-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -305634,7 +305846,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-ff5a4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-ff5a4e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305649,7 +305861,7 @@ }, { "question": "Be Charge", - "icon": "./assets/data/nsi/logos/becharge-60858d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/becharge-60858d.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -305711,7 +305923,7 @@ }, { "question": "Berliner Stadtwerke", - "icon": "./assets/data/nsi/logos/berlinerstadtwerke-d5d657.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerstadtwerke-d5d657.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305740,7 +305952,7 @@ }, { "question": "Bigge Energie", - "icon": "./assets/data/nsi/logos/biggeenergie-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/biggeenergie-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305755,7 +305967,7 @@ }, { "question": "bike-energy", - "icon": "./assets/data/nsi/logos/bikeenergy-d742f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bikeenergy-d742f8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305772,7 +305984,7 @@ }, { "question": "Birmingham City Council", - "icon": "./assets/data/nsi/logos/birminghamcitycouncil-1ba162.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-1ba162.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305787,7 +305999,7 @@ }, { "question": "Blink", - "icon": "./assets/data/nsi/logos/blink-4b4f7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blink-4b4f7a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305818,7 +306030,7 @@ }, { "question": "Bluecharge", - "icon": "./assets/data/nsi/logos/bluecharge-009624.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluecharge-009624.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305833,7 +306045,7 @@ }, { "question": "BMW", - "icon": "./assets/data/nsi/logos/bmw-5601d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bmw-5601d5.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305848,7 +306060,7 @@ }, { "question": "Bocholter Energie- und Wasserversorgung", - "icon": "./assets/data/nsi/logos/bocholterenergieundwasserversorgung-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bocholterenergieundwasserversorgung-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305864,7 +306076,7 @@ }, { "question": "Booths", - "icon": "./assets/data/nsi/logos/booths-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/booths-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305879,7 +306091,7 @@ }, { "question": "Bosch eBike Systems", - "icon": "./assets/data/nsi/logos/boschebikesystems-5601d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/boschebikesystems-5601d5.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305918,7 +306130,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305951,7 +306163,7 @@ }, { "question": "Brighton and Hove City Council", - "icon": "./assets/data/nsi/logos/brightonandhovecitycouncil-477ad0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brightonandhovecitycouncil-477ad0.png", "osmTags": { "and": [ "man_made=charge_point", @@ -305966,7 +306178,7 @@ }, { "question": "BS Energy", - "icon": "./assets/data/nsi/logos/bsenergy-7a74c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bsenergy-7a74c6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -305990,7 +306202,7 @@ }, { "question": "Burgenland Energie", - "icon": "./assets/data/nsi/logos/burgenlandenergieag-c4e7a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-c4e7a0.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306005,7 +306217,7 @@ }, { "question": "Caritas", - "icon": "./assets/data/nsi/logos/caritas-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caritas-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306020,7 +306232,7 @@ }, { "question": "Carrefour", - "icon": "./assets/data/nsi/logos/carrefour-7872f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-7872f6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306035,7 +306247,7 @@ }, { "question": "Caruso Carsharing", - "icon": "./assets/data/nsi/logos/carusocarsharing-7a4e5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/carusocarsharing-7a4e5c.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306050,7 +306262,7 @@ }, { "question": "Centralschweizerische Kraftwerke", - "icon": "./assets/data/nsi/logos/centralschweizerischekraftwerke-91dfc8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralschweizerischekraftwerke-91dfc8.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -306065,7 +306277,7 @@ }, { "question": "Cepsa", - "icon": "./assets/data/nsi/logos/cepsa-b3093e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cepsa-b3093e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306080,7 +306292,7 @@ }, { "question": "ČEZ", - "icon": "./assets/data/nsi/logos/cez-788d35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cez-788d35.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306095,7 +306307,7 @@ }, { "question": "Charge Your Car", - "icon": "./assets/data/nsi/logos/chargeyourcar-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chargeyourcar-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306135,7 +306347,7 @@ }, { "question": "Chargefox", - "icon": "./assets/data/nsi/logos/chargefox-d7f9de.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chargefox-d7f9de.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306150,7 +306362,7 @@ }, { "question": "ChargeNet NZ", - "icon": "./assets/data/nsi/logos/chargenetnz-3fbaa3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chargenetnz-3fbaa3.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306165,7 +306377,7 @@ }, { "question": "ChargePlace Scotland", - "icon": "./assets/data/nsi/logos/chargeplacescotland-353a00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chargeplacescotland-353a00.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306180,7 +306392,7 @@ }, { "question": "ChargePoint", - "icon": "./assets/data/nsi/logos/chargepoint-5601d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chargepoint-5601d5.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306231,7 +306443,7 @@ }, { "question": "Circle K", - "icon": "./assets/data/nsi/logos/circlek-7872f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/circlek-7872f6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306248,7 +306460,7 @@ }, { "question": "Circuit électrique", - "icon": "./assets/data/nsi/logos/circuitelectrique-40271b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/circuitelectrique-40271b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306285,7 +306497,7 @@ }, { "question": "City of Gold Coast", - "icon": "./assets/data/nsi/logos/cityofgoldcoast-cf5c60.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofgoldcoast-cf5c60.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306300,7 +306512,7 @@ }, { "question": "City of Hobart", - "icon": "./assets/data/nsi/logos/cityofhobart-7f392c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhobart-7f392c.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306315,7 +306527,7 @@ }, { "question": "City of Launceston", - "icon": "./assets/data/nsi/logos/cityoflaunceston-3ca73a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflaunceston-3ca73a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306330,7 +306542,7 @@ }, { "question": "Citywatt", - "icon": "./assets/data/nsi/logos/citywatt-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citywatt-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306354,7 +306566,7 @@ }, { "question": "Clever", - "icon": "./assets/data/nsi/logos/clever-819017.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clever-819017.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306383,7 +306595,7 @@ }, { "question": "Compleo Charging Technologies GmbH", - "icon": "./assets/data/nsi/logos/compleochargingtechnologiesgmbh-c6e3e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compleochargingtechnologiesgmbh-c6e3e9.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306398,7 +306610,7 @@ }, { "question": "Connected Kerb", - "icon": "./assets/data/nsi/logos/connectedkerb-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/connectedkerb-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306413,7 +306625,7 @@ }, { "question": "Coop (Italia)", - "icon": "./assets/data/nsi/logos/coop-60858d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-60858d.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306428,7 +306640,7 @@ }, { "question": "Coop (Schweiz)", - "icon": "./assets/data/nsi/logos/coop-d761b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-d761b8.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306443,7 +306655,7 @@ }, { "question": "Coop (Sverige)", - "icon": "./assets/data/nsi/logos/coop-fe9964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-fe9964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306458,7 +306670,7 @@ }, { "question": "Coop Norge", - "icon": "./assets/data/nsi/logos/coop-0916f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coop-0916f2.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306473,7 +306685,7 @@ }, { "question": "Copec", - "icon": "./assets/data/nsi/logos/copec-579fc5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/copec-579fc5.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -306488,7 +306700,7 @@ }, { "question": "Counties Energy", - "icon": "./assets/data/nsi/logos/countiesenergy-3fbaa3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countiesenergy-3fbaa3.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306505,7 +306717,7 @@ }, { "question": "CSDD", - "icon": "./assets/data/nsi/logos/csdd-935738.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csdd-935738.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306520,7 +306732,7 @@ }, { "question": "da emobil", - "icon": "./assets/data/nsi/logos/daemobil-5d4d83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/daemobil-5d4d83.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306544,7 +306756,7 @@ }, { "question": "DATS 24", - "icon": "./assets/data/nsi/logos/dats24-9feda4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dats24-9feda4.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306568,7 +306780,7 @@ }, { "question": "deer GmbH", - "icon": "./assets/data/nsi/logos/deergmbh-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deergmbh-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306592,7 +306804,7 @@ }, { "question": "Deutsche Telekom", - "icon": "./assets/data/nsi/logos/deutschetelekom-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschetelekom-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306607,7 +306819,7 @@ }, { "question": "Deviwa", - "icon": "./assets/data/nsi/logos/deviwa-9327de.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/deviwa-9327de.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -306622,7 +306834,7 @@ }, { "question": "DEW21", - "icon": "./assets/data/nsi/logos/dew21-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dew21-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306637,7 +306849,7 @@ }, { "question": "DREWAG", - "icon": "./assets/data/nsi/logos/drewag-7df435.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drewag-7df435.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306676,7 +306888,7 @@ }, { "question": "Duferco", - "icon": "./assets/data/nsi/logos/duferco-60858d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/duferco-60858d.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -306691,7 +306903,7 @@ }, { "question": "Duferco Energia", - "icon": "./assets/data/nsi/logos/dufercoenergia-60858d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dufercoenergia-60858d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306706,7 +306918,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-416623.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-416623.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306748,7 +306960,7 @@ }, { "question": "e-regio", - "icon": "./assets/data/nsi/logos/eregio-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eregio-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306793,7 +307005,7 @@ }, { "question": "E-Werk Mittelbaden", - "icon": "./assets/data/nsi/logos/ewerkmittelbaden-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewerkmittelbaden-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306808,7 +307020,7 @@ }, { "question": "e.dis", - "icon": "./assets/data/nsi/logos/edis-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edis-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306823,7 +307035,7 @@ }, { "question": "E.Leclerc", - "icon": "./assets/data/nsi/logos/eleclerc-c9b0aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclerc-c9b0aa.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306838,7 +307050,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-22bfb3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-22bfb3.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306862,7 +307074,7 @@ }, { "question": "EAM", - "icon": "./assets/data/nsi/logos/eam-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eam-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306886,7 +307098,7 @@ }, { "question": "EasyGo", - "icon": "./assets/data/nsi/logos/easygo-3b851d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/easygo-3b851d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306965,7 +307177,7 @@ }, { "question": "Ecotap", - "icon": "./assets/data/nsi/logos/ecotap-b91a42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecotap-b91a42.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -306980,7 +307192,7 @@ }, { "question": "EDEKA", - "icon": "./assets/data/nsi/logos/edeka-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edeka-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -306995,7 +307207,7 @@ }, { "question": "EDP", - "icon": "./assets/data/nsi/logos/edp-367d30.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edp-367d30.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -307024,7 +307236,7 @@ }, { "question": "Eesti Energia AS", - "icon": "./assets/data/nsi/logos/eestienergiaas-eec16b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eestienergiaas-eec16b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307053,7 +307265,7 @@ }, { "question": "EGG Energieversorgung Gera", - "icon": "./assets/data/nsi/logos/eggenergieversorgunggera-6e1091.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eggenergieversorgunggera-6e1091.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307068,7 +307280,7 @@ }, { "question": "eins energie in sachsen", - "icon": "./assets/data/nsi/logos/einsenergieinsachsen-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/einsenergieinsachsen-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307083,7 +307295,7 @@ }, { "question": "ejoin", - "icon": "./assets/data/nsi/logos/ejoin-d74d01.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ejoin-d74d01.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307098,7 +307310,7 @@ }, { "question": "EKZ", - "icon": "./assets/data/nsi/logos/ekz-d761b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ekz-d761b8.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307113,7 +307325,7 @@ }, { "question": "Eldrive", - "icon": "./assets/data/nsi/logos/eldrive-d04590.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eldrive-d04590.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307128,6 +307340,7 @@ }, { "question": "Electra", + "icon": "https://data.mapcomplete.org/nsi//logos/electra-fa309c.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307151,7 +307364,7 @@ }, { "question": "Electric Highway Tasmania", - "icon": "./assets/data/nsi/logos/electrichighwaytasmania-db19b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electrichighwaytasmania-db19b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307166,7 +307379,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-7872f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-7872f6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307197,7 +307410,7 @@ }, { "question": "Electrify America", - "icon": "./assets/data/nsi/logos/electrifyamerica-416623.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electrifyamerica-416623.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307221,7 +307434,7 @@ }, { "question": "Elektrizitätswerk Davos", - "icon": "./assets/data/nsi/logos/elektrizitatswerkdavos-3ef8c4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkdavos-3ef8c4.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -307236,7 +307449,7 @@ }, { "question": "Elektrizitätswerk Obwalden", - "icon": "./assets/data/nsi/logos/elektrizitatswerkobwalden-ac53a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkobwalden-ac53a7.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307293,7 +307506,7 @@ }, { "question": "Eleport", - "icon": "./assets/data/nsi/logos/eleport-bb1b8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleport-bb1b8e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307317,7 +307530,7 @@ }, { "question": "Ella", - "icon": "./assets/data/nsi/logos/ella-c4e7a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ella-c4e7a0.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307332,7 +307545,7 @@ }, { "question": "Elli", - "icon": "./assets/data/nsi/logos/elli-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elli-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307347,7 +307560,7 @@ }, { "question": "ELMŰ", - "icon": "./assets/data/nsi/logos/elmu-7c6771.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elmu-7c6771.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307385,7 +307598,7 @@ }, { "question": "EMEL", - "icon": "./assets/data/nsi/logos/emel-c59d8c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/emel-c59d8c.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -307400,7 +307613,7 @@ }, { "question": "emotì", - "icon": "./assets/data/nsi/logos/emoti-d3d79f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emoti-d3d79f.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307415,7 +307628,7 @@ }, { "question": "Emscher Lippe Energie", - "icon": "./assets/data/nsi/logos/emscherlippeenergie-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/emscherlippeenergie-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307431,7 +307644,7 @@ }, { "question": "EnBW Energie Baden-Württemberg AG", - "icon": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307455,7 +307668,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-9bc2ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-9bc2ed.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307484,7 +307697,7 @@ }, { "question": "Eneco", - "icon": "./assets/data/nsi/logos/eneco-c910a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneco-c910a1.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307508,7 +307721,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-60858d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-60858d.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307525,7 +307738,7 @@ }, { "question": "Enel X", - "icon": "./assets/data/nsi/logos/enelx-f8853a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enelx-f8853a.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307542,7 +307755,7 @@ }, { "question": "Enel X Way", - "icon": "./assets/data/nsi/logos/enelxway-60858d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enelxway-60858d.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307557,7 +307770,7 @@ }, { "question": "enercity", - "icon": "./assets/data/nsi/logos/enercity-7a74c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enercity-7a74c6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307572,7 +307785,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-3c58b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-3c58b6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307587,7 +307800,7 @@ }, { "question": "Energie 360°", - "icon": "./assets/data/nsi/logos/7977b1-d761b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/7977b1-d761b8.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307602,7 +307815,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-c4e7a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-c4e7a0.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307617,7 +307830,7 @@ }, { "question": "Energie Calw", - "icon": "./assets/data/nsi/logos/energiecalw-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiecalw-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307632,7 +307845,7 @@ }, { "question": "ENERGIE Eure-et-Loir", - "icon": "./assets/data/nsi/logos/energieeureetloir-50b7ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieeureetloir-50b7ae.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307647,7 +307860,7 @@ }, { "question": "Energie SaarLorLux", - "icon": "./assets/data/nsi/logos/energiesaarlorlux-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesaarlorlux-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -307662,7 +307875,7 @@ }, { "question": "Energie Steiermark", - "icon": "./assets/data/nsi/logos/energiesteiermark-be6553.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-be6553.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307677,7 +307890,7 @@ }, { "question": "Energie Südbayern", - "icon": "./assets/data/nsi/logos/energiesudbayern-e3d1c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesudbayern-e3d1c8.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -307719,7 +307932,7 @@ }, { "question": "Energiedienst", - "icon": "./assets/data/nsi/logos/energiedienst-0a01b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedienst-0a01b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307757,7 +307970,7 @@ }, { "question": "energis", - "icon": "./assets/data/nsi/logos/energis-cb812f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energis-cb812f.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307790,7 +308003,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-ce6b96.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-ce6b96.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307805,7 +308018,7 @@ }, { "question": "Eni", - "icon": "./assets/data/nsi/logos/eni-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eni-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307820,7 +308033,7 @@ }, { "question": "Eniwa", - "icon": "./assets/data/nsi/logos/eniwa-0685b9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eniwa-0685b9.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -307835,7 +308048,7 @@ }, { "question": "ENSO Energie Sachsen Ost AG", - "icon": "./assets/data/nsi/logos/ensoenergiesachsenostag-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ensoenergiesachsenostag-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -307850,7 +308063,7 @@ }, { "question": "Entega", - "icon": "./assets/data/nsi/logos/entega-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/entega-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307865,7 +308078,7 @@ }, { "question": "enviaM", - "icon": "./assets/data/nsi/logos/enviam-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enviam-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307880,7 +308093,7 @@ }, { "question": "EO", - "icon": "./assets/data/nsi/logos/eo-ae7de3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eo-ae7de3.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307936,7 +308149,7 @@ }, { "question": "ESB (Schweiz)", - "icon": "./assets/data/nsi/logos/energieservicebielbienne-33781b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieservicebielbienne-33781b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -307952,7 +308165,7 @@ }, { "question": "ESB ecars", - "icon": "./assets/data/nsi/logos/esbgroup-bd441e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbgroup-bd441e.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -307968,7 +308181,7 @@ }, { "question": "ESB Energy", - "icon": "./assets/data/nsi/logos/esbenergy-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbenergy-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307983,7 +308196,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -307998,7 +308211,7 @@ }, { "question": "ESWE", - "icon": "./assets/data/nsi/logos/eswe-c6e3e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eswe-c6e3e9.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308036,7 +308249,7 @@ }, { "question": "EV Connect", - "icon": "./assets/data/nsi/logos/evconnect-416623.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evconnect-416623.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308069,7 +308282,7 @@ }, { "question": "EVBox", - "icon": "./assets/data/nsi/logos/evbox-22bfb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evbox-22bfb3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308098,7 +308311,7 @@ }, { "question": "EVCS", - "icon": "./assets/data/nsi/logos/evcs-416623.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evcs-416623.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308113,7 +308326,7 @@ }, { "question": "evd energieversorgung dormagen", - "icon": "./assets/data/nsi/logos/evdenergieversorgungdormagen-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evdenergieversorgungdormagen-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308144,7 +308357,7 @@ }, { "question": "Evie Networks", - "icon": "./assets/data/nsi/logos/evienetworks-6d1cb9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evienetworks-6d1cb9.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308191,7 +308404,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-c4e7a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-c4e7a0.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308238,7 +308451,7 @@ }, { "question": "evpass", - "icon": "./assets/data/nsi/logos/evpass-d761b8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evpass-d761b8.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -308253,7 +308466,7 @@ }, { "question": "Evway", - "icon": "./assets/data/nsi/logos/evway-60858d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evway-60858d.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308291,7 +308504,7 @@ }, { "question": "EW Höfe", - "icon": "./assets/data/nsi/logos/ewhofe-2bf16b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewhofe-2bf16b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -308306,7 +308519,7 @@ }, { "question": "Eways", - "icon": "./assets/data/nsi/logos/eways-fe9964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eways-fe9964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308321,7 +308534,7 @@ }, { "question": "EWE Go", - "icon": "./assets/data/nsi/logos/ewego-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ewego-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308336,7 +308549,7 @@ }, { "question": "EWII", - "icon": "./assets/data/nsi/logos/ewii-b5d24c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ewii-b5d24c.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308351,7 +308564,7 @@ }, { "question": "Ewiva", - "icon": "./assets/data/nsi/logos/ewiva-60858d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewiva-60858d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308366,7 +308579,7 @@ }, { "question": "EWR", - "icon": "./assets/data/nsi/logos/ewr-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewr-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308381,7 +308594,7 @@ }, { "question": "EWV", - "icon": "./assets/data/nsi/logos/ewv-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewv-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308438,7 +308651,7 @@ }, { "question": "Fastned", - "icon": "./assets/data/nsi/logos/fastned-073d71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fastned-073d71.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308453,7 +308666,7 @@ }, { "question": "Feníe Energía", - "icon": "./assets/data/nsi/logos/fenieenergia-9bc2ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fenieenergia-9bc2ed.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308482,7 +308695,7 @@ }, { "question": "FINES Charging", - "icon": "./assets/data/nsi/logos/c9c8bd-f58e30.png", + "icon": "https://data.mapcomplete.org/nsi//logos/c9c8bd-f58e30.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308497,7 +308710,7 @@ }, { "question": "FLO", - "icon": "./assets/data/nsi/logos/flo-5b5c3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flo-5b5c3d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308523,7 +308736,7 @@ }, { "question": "Freshmile", - "icon": "./assets/data/nsi/logos/freshmile-c9b0aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freshmile-c9b0aa.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308538,7 +308751,7 @@ }, { "question": "Fyrfasen Energi AB", - "icon": "./assets/data/nsi/logos/fyrfasenenergiab-fe9964.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fyrfasenenergiab-fe9964.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308580,7 +308793,7 @@ }, { "question": "Gemeente Den Haag", - "icon": "./assets/data/nsi/logos/gemeentedenhaag-a00d8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentedenhaag-a00d8a.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308595,7 +308808,7 @@ }, { "question": "Gemeente Rotterdam", - "icon": "./assets/data/nsi/logos/gemeenterotterdam-a00d8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-a00d8a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308610,7 +308823,7 @@ }, { "question": "Gemeente Utrecht", - "icon": "./assets/data/nsi/logos/gemeenteutrecht-a00d8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenteutrecht-a00d8a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308625,7 +308838,7 @@ }, { "question": "Gemeinde Unterhaching", - "icon": "./assets/data/nsi/logos/gemeindeunterhaching-e3d1c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindeunterhaching-e3d1c8.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -308677,7 +308890,7 @@ }, { "question": "GeniePoint", - "icon": "./assets/data/nsi/logos/geniepoint-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geniepoint-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308729,7 +308942,7 @@ }, { "question": "GGEW", - "icon": "./assets/data/nsi/logos/ggew-c6e3e9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ggew-c6e3e9.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -308753,7 +308966,7 @@ }, { "question": "GigaCharger", - "icon": "./assets/data/nsi/logos/750c54-f58e30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/750c54-f58e30.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308777,7 +308990,7 @@ }, { "question": "GOcharge", - "icon": "./assets/data/nsi/logos/gocharge-3b851d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gocharge-3b851d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308792,7 +309005,7 @@ }, { "question": "GOFAST", - "icon": "./assets/data/nsi/logos/gofast-d761b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gofast-d761b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308807,7 +309020,7 @@ }, { "question": "Gogoro 電池交換站", - "icon": "./assets/data/nsi/logos/62c656-5601d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/62c656-5601d5.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308838,7 +309051,7 @@ }, { "question": "GP JOULE Connect", - "icon": "./assets/data/nsi/logos/gpjouleconnect-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gpjouleconnect-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308853,7 +309066,7 @@ }, { "question": "Green Motion", - "icon": "./assets/data/nsi/logos/greenmotion-d761b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greenmotion-d761b8.png", "osmTags": { "and": [ "man_made=charge_point", @@ -308886,7 +309099,7 @@ }, { "question": "GreenFlux", - "icon": "./assets/data/nsi/logos/greenflux-a00d8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenflux-a00d8a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308910,7 +309123,7 @@ }, { "question": "GreenWay", - "icon": "./assets/data/nsi/logos/greenway-41f761.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenway-41f761.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308925,7 +309138,7 @@ }, { "question": "Gridserve", - "icon": "./assets/data/nsi/logos/gridserve-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gridserve-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308940,7 +309153,7 @@ }, { "question": "Groupe E", - "icon": "./assets/data/nsi/logos/groupee-d761b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupee-d761b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -308955,7 +309168,7 @@ }, { "question": "Helen", - "icon": "./assets/data/nsi/logos/helen-c07792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/helen-c07792.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309029,7 +309242,7 @@ }, { "question": "Hikotron", - "icon": "./assets/data/nsi/logos/hikotron-3fbaa3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hikotron-3fbaa3.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309053,7 +309266,7 @@ }, { "question": "Holmgrens bil AB", - "icon": "./assets/data/nsi/logos/holmgrensbilab-fe9964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holmgrensbilab-fe9964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309068,7 +309281,7 @@ }, { "question": "Hyundai", - "icon": "./assets/data/nsi/logos/hyundai-5601d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hyundai-5601d5.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309083,7 +309296,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-9bc2ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-9bc2ed.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309107,7 +309320,7 @@ }, { "question": "ICE", - "icon": "./assets/data/nsi/logos/ice-ac12d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ice-ac12d3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309131,7 +309344,7 @@ }, { "question": "Ignitis", - "icon": "./assets/data/nsi/logos/ignitis-7d5905.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ignitis-7d5905.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309146,7 +309359,7 @@ }, { "question": "IKEA", - "icon": "./assets/data/nsi/logos/ikea-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309161,7 +309374,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-c4e7a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-c4e7a0.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309194,7 +309407,7 @@ }, { "question": "Innogy", - "icon": "./assets/data/nsi/logos/innogy-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogy-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -309211,7 +309424,7 @@ }, { "question": "Inselwerke", - "icon": "./assets/data/nsi/logos/inselwerke-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/inselwerke-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309226,7 +309439,7 @@ }, { "question": "InstaVolt", - "icon": "./assets/data/nsi/logos/instavolt-2a0385.png", + "icon": "https://data.mapcomplete.org/nsi//logos/instavolt-2a0385.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309241,7 +309454,7 @@ }, { "question": "Intel Corporation", - "icon": "./assets/data/nsi/logos/intelcorporation-416623.png", + "icon": "https://data.mapcomplete.org/nsi//logos/intelcorporation-416623.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309256,7 +309469,7 @@ }, { "question": "Intermarché", - "icon": "./assets/data/nsi/logos/intermarche-6ec72c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarche-6ec72c.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309271,7 +309484,7 @@ }, { "question": "Ísorka", - "icon": "./assets/data/nsi/logos/isorka-e805b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/isorka-e805b7.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309295,7 +309508,7 @@ }, { "question": "IWB", - "icon": "./assets/data/nsi/logos/iwb-d761b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iwb-d761b8.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309324,7 +309537,7 @@ }, { "question": "Jämtkraft", - "icon": "./assets/data/nsi/logos/jamtkraft-fe9964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jamtkraft-fe9964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309339,7 +309552,7 @@ }, { "question": "Jolt", - "icon": "./assets/data/nsi/logos/jolt-a34f13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jolt-a34f13.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309363,7 +309576,7 @@ }, { "question": "Jönköping Energi", - "icon": "./assets/data/nsi/logos/jonkopingenergi-fe9964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonkopingenergi-fe9964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309378,7 +309591,7 @@ }, { "question": "K-Lataus", - "icon": "./assets/data/nsi/logos/klataus-c07792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/klataus-c07792.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309393,7 +309606,7 @@ }, { "question": "Kaufland", - "icon": "./assets/data/nsi/logos/kaufland-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kaufland-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309408,7 +309621,7 @@ }, { "question": "KEBA", - "icon": "./assets/data/nsi/logos/keba-e9ea4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/keba-e9ea4c.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309423,7 +309636,7 @@ }, { "question": "Kelag", - "icon": "./assets/data/nsi/logos/kelag-534534.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-534534.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309470,7 +309683,7 @@ }, { "question": "Kreiswerke Main-Kinzig", - "icon": "./assets/data/nsi/logos/kreiswerkemainkinzig-c6e3e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kreiswerkemainkinzig-c6e3e9.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309485,7 +309698,7 @@ }, { "question": "Kungsbacka Kommun", - "icon": "./assets/data/nsi/logos/kungsbackakommun-fe9964.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kungsbackakommun-fe9964.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309527,7 +309740,7 @@ }, { "question": "Lancaster City Council", - "icon": "./assets/data/nsi/logos/lancastercitycouncil-1da7fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancastercitycouncil-1da7fc.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309542,7 +309755,7 @@ }, { "question": "Lancaster University", - "icon": "./assets/data/nsi/logos/lancasteruniversity-1da7fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lancasteruniversity-1da7fc.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309557,7 +309770,7 @@ }, { "question": "Last Mile Solutions", - "icon": "./assets/data/nsi/logos/lastmilesolutions-22bfb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lastmilesolutions-22bfb3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309581,7 +309794,7 @@ }, { "question": "LEAP24", - "icon": "./assets/data/nsi/logos/leap24-e8ea48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leap24-e8ea48.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309596,7 +309809,7 @@ }, { "question": "Leasys", - "icon": "./assets/data/nsi/logos/leasys-9c7e3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leasys-9c7e3a.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309620,7 +309833,7 @@ }, { "question": "Lechwerke AG", - "icon": "./assets/data/nsi/logos/lechwerkeag-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechwerkeag-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309635,7 +309848,7 @@ }, { "question": "Lidl", - "icon": "./assets/data/nsi/logos/lidl-c74eaa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidl-c74eaa.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309650,7 +309863,7 @@ }, { "question": "Lidl Sverige KB", - "icon": "./assets/data/nsi/logos/lidlsverigekb-fe9964.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidlsverigekb-fe9964.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309665,7 +309878,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-081dfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-081dfd.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309680,7 +309893,7 @@ }, { "question": "LokalWerke", - "icon": "./assets/data/nsi/logos/lokalwerke-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lokalwerke-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309718,7 +309931,7 @@ }, { "question": "LSW Energie", - "icon": "./assets/data/nsi/logos/lswenergie-7a74c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswenergie-7a74c6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309742,7 +309955,7 @@ }, { "question": "Luminus", - "icon": "./assets/data/nsi/logos/luminus-31a4ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luminus-31a4ce.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309766,7 +309979,7 @@ }, { "question": "Maingau Energie", - "icon": "./assets/data/nsi/logos/maingauenergie-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/maingauenergie-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -309781,7 +309994,7 @@ }, { "question": "Mainova", - "icon": "./assets/data/nsi/logos/mainova-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mainova-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309796,7 +310009,7 @@ }, { "question": "Mainzer Stadtwerke", - "icon": "./assets/data/nsi/logos/mainzerstadtwerke-c7ca4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mainzerstadtwerke-c7ca4b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309811,7 +310024,7 @@ }, { "question": "Mairie de Paris", - "icon": "./assets/data/nsi/logos/mairiedeparis-e794c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-e794c8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309835,7 +310048,7 @@ }, { "question": "Mälarenergi", - "icon": "./assets/data/nsi/logos/malarenergi-fe9964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/malarenergi-fe9964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309850,7 +310063,7 @@ }, { "question": "Mark-E", - "icon": "./assets/data/nsi/logos/marke-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marke-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309865,7 +310078,7 @@ }, { "question": "MaxSolar", - "icon": "./assets/data/nsi/logos/maxsolar-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/maxsolar-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -309880,7 +310093,7 @@ }, { "question": "McDonald's", - "icon": "./assets/data/nsi/logos/mcdonalds-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309895,7 +310108,7 @@ }, { "question": "Mennekes", - "icon": "./assets/data/nsi/logos/mennekes-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mennekes-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -309910,7 +310123,7 @@ }, { "question": "Mercadona", - "icon": "./assets/data/nsi/logos/mercadona-b3093e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercadona-b3093e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309925,7 +310138,7 @@ }, { "question": "Mercedes-Benz", - "icon": "./assets/data/nsi/logos/mercedesbenz-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercedesbenz-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309940,7 +310153,7 @@ }, { "question": "Michigan State University", - "icon": "./assets/data/nsi/logos/michiganstateuniversity-035fe0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michiganstateuniversity-035fe0.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309955,7 +310168,7 @@ }, { "question": "Migrol", - "icon": "./assets/data/nsi/logos/migrol-d761b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/migrol-d761b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -309970,7 +310183,7 @@ }, { "question": "Mobi.E", - "icon": "./assets/data/nsi/logos/mobie-009624.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobie-009624.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310009,7 +310222,7 @@ }, { "question": "MobilityPlus", - "icon": "./assets/data/nsi/logos/mobilityplus-31a4ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mobilityplus-31a4ce.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310079,7 +310292,7 @@ }, { "question": "Morbihan énergies", - "icon": "./assets/data/nsi/logos/morbihanenergies-fa309c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/morbihanenergies-fa309c.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310121,7 +310334,7 @@ }, { "question": "MOVE", - "icon": "./assets/data/nsi/logos/move-d761b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/move-d761b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310136,7 +310349,7 @@ }, { "question": "MVV Energie", - "icon": "./assets/data/nsi/logos/mvvenergie-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mvvenergie-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310151,7 +310364,7 @@ }, { "question": "N-ERGIE", - "icon": "./assets/data/nsi/logos/nergie-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nergie-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310166,7 +310379,7 @@ }, { "question": "N1", - "icon": "./assets/data/nsi/logos/n1-e805b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/n1-e805b7.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310181,7 +310394,7 @@ }, { "question": "NabiBajk", - "icon": "./assets/data/nsi/logos/nabibajk-d74d01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nabibajk-d74d01.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310196,7 +310409,7 @@ }, { "question": "NaturEnergie", - "icon": "./assets/data/nsi/logos/naturenergie-0a01b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturenergie-0a01b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310211,7 +310424,7 @@ }, { "question": "Neogy", - "icon": "./assets/data/nsi/logos/neogy-60858d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/neogy-60858d.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310235,7 +310448,7 @@ }, { "question": "NEW", - "icon": "./assets/data/nsi/logos/new-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/new-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -310250,7 +310463,7 @@ }, { "question": "Nissan", - "icon": "./assets/data/nsi/logos/nissan-5601d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nissan-5601d5.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310274,7 +310487,7 @@ }, { "question": "Norlys", - "icon": "./assets/data/nsi/logos/norlys-b5d24c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/norlys-b5d24c.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310289,7 +310502,7 @@ }, { "question": "NOXO.", - "icon": "./assets/data/nsi/logos/noxo-3c58b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/noxo-3c58b6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310304,7 +310517,7 @@ }, { "question": "NRG Energy", - "icon": "./assets/data/nsi/logos/nrgenergy-416623.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nrgenergy-416623.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310319,7 +310532,7 @@ }, { "question": "NRMA", - "icon": "./assets/data/nsi/logos/nrma-6d1cb9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nrma-6d1cb9.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310334,7 +310547,7 @@ }, { "question": "NUON", - "icon": "./assets/data/nsi/logos/nuon-a00d8a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nuon-a00d8a.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -310349,7 +310562,7 @@ }, { "question": "ÖAMTC", - "icon": "./assets/data/nsi/logos/oamtc-c4e7a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oamtc-c4e7a0.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310387,7 +310600,7 @@ }, { "question": "OMV eMotion", - "icon": "./assets/data/nsi/logos/omv-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omv-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310411,7 +310624,7 @@ }, { "question": "Opcharge", - "icon": "./assets/data/nsi/logos/opcharge-a00d8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/opcharge-a00d8a.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310426,7 +310639,7 @@ }, { "question": "Orion", - "icon": "./assets/data/nsi/logos/orion-3fbaa3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orion-3fbaa3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310441,7 +310654,7 @@ }, { "question": "Orka náttúrunnar", - "icon": "./assets/data/nsi/logos/orkanatturunnar-e805b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orkanatturunnar-e805b7.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310456,7 +310669,7 @@ }, { "question": "Orlen", - "icon": "./assets/data/nsi/logos/orlen-3c58b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlen-3c58b6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310480,7 +310693,7 @@ }, { "question": "Osprey", - "icon": "./assets/data/nsi/logos/osprey-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osprey-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310504,7 +310717,7 @@ }, { "question": "OVAG", - "icon": "./assets/data/nsi/logos/ovag-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ovag-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310542,7 +310755,7 @@ }, { "question": "Perusahaan Listrik Negara", - "icon": "./assets/data/nsi/logos/perusahaanlistriknegara-fb9abf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-fb9abf.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310557,7 +310770,7 @@ }, { "question": "Petrol", - "icon": "./assets/data/nsi/logos/petrol-9d352c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petrol-9d352c.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310572,7 +310785,7 @@ }, { "question": "Pfalzwerke", - "icon": "./assets/data/nsi/logos/pfalzwerke-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pfalzwerke-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310610,7 +310823,7 @@ }, { "question": "Plenitude", - "icon": "./assets/data/nsi/logos/plenitude-60858d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plenitude-60858d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310625,7 +310838,7 @@ }, { "question": "Plug'n Roll", - "icon": "./assets/data/nsi/logos/plugnroll-d761b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/plugnroll-d761b8.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310658,7 +310871,7 @@ }, { "question": "Pod Point", - "icon": "./assets/data/nsi/logos/podpoint-2a0385.png", + "icon": "https://data.mapcomplete.org/nsi//logos/podpoint-2a0385.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310673,7 +310886,7 @@ }, { "question": "Porsche", - "icon": "./assets/data/nsi/logos/porsche-5601d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/porsche-5601d5.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310715,7 +310928,7 @@ }, { "question": "PRE", - "icon": "./assets/data/nsi/logos/pre-788d35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pre-788d35.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310739,7 +310952,7 @@ }, { "question": "Protergia", - "icon": "./assets/data/nsi/logos/protergia-ab9b63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/protergia-ab9b63.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310754,7 +310967,7 @@ }, { "question": "Q-Park", - "icon": "./assets/data/nsi/logos/qpark-22bfb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/qpark-22bfb3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310778,7 +310991,7 @@ }, { "question": "Qbuzz", - "icon": "./assets/data/nsi/logos/qbuzz-a00d8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qbuzz-a00d8a.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310816,7 +311029,7 @@ }, { "question": "Qwello", - "icon": "./assets/data/nsi/logos/qwello-bb1996.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qwello-bb1996.png", "osmTags": { "and": [ "man_made=charge_point", @@ -310874,7 +311087,7 @@ }, { "question": "Renault", - "icon": "./assets/data/nsi/logos/renault-5601d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renault-5601d5.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310889,7 +311102,7 @@ }, { "question": "Renovatio e-charge", - "icon": "./assets/data/nsi/logos/renovatioecharge-2ef00a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renovatioecharge-2ef00a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310904,7 +311117,7 @@ }, { "question": "Repower", - "icon": "./assets/data/nsi/logos/repower-d157bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/repower-d157bf.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -310919,7 +311132,7 @@ }, { "question": "Repsol", - "icon": "./assets/data/nsi/logos/repsol-b3093e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/repsol-b3093e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310934,7 +311147,7 @@ }, { "question": "Révéo", - "icon": "./assets/data/nsi/logos/reveo-fa309c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reveo-fa309c.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310958,7 +311171,7 @@ }, { "question": "Rewag", - "icon": "./assets/data/nsi/logos/rewag-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rewag-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310973,7 +311186,7 @@ }, { "question": "REWE", - "icon": "./assets/data/nsi/logos/rewe-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rewe-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -310988,7 +311201,7 @@ }, { "question": "RheinEnergie", - "icon": "./assets/data/nsi/logos/rheinenergie-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinenergie-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311003,7 +311216,7 @@ }, { "question": "RhönEnergie Fulda", - "icon": "./assets/data/nsi/logos/rhonenergiefulda-c6e3e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rhonenergiefulda-c6e3e9.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311018,7 +311231,7 @@ }, { "question": "Ringeriks-kraft AS", - "icon": "./assets/data/nsi/logos/ringerikskraftas-0916f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ringerikskraftas-0916f2.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311033,7 +311246,7 @@ }, { "question": "Robert Bosch GmbH", - "icon": "./assets/data/nsi/logos/robertboschgmbh-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/robertboschgmbh-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311048,7 +311261,7 @@ }, { "question": "Roche", - "icon": "./assets/data/nsi/logos/roche-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/roche-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311090,7 +311303,7 @@ }, { "question": "S.T.P.T.", - "icon": "./assets/data/nsi/logos/stpt-2ef00a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stpt-2ef00a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311105,7 +311318,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-7df435.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-7df435.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311120,7 +311333,7 @@ }, { "question": "SAK", - "icon": "./assets/data/nsi/logos/sak-d761b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sak-d761b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311135,7 +311348,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-28a506.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-28a506.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311177,7 +311390,7 @@ }, { "question": "Schneider Electric", - "icon": "./assets/data/nsi/logos/schneiderelectric-5601d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/schneiderelectric-5601d5.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311282,7 +311495,7 @@ }, { "question": "SemaConnect", - "icon": "./assets/data/nsi/logos/semaconnect-416623.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/semaconnect-416623.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311351,7 +311564,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-5601d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-5601d5.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311366,7 +311579,7 @@ }, { "question": "Shell Recharge Solutions", - "icon": "./assets/data/nsi/logos/shellrechargesolutions-7872f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shellrechargesolutions-7872f6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311469,7 +311682,7 @@ }, { "question": "SMATRICS", - "icon": "./assets/data/nsi/logos/smatrics-c4e7a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smatrics-c4e7a0.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311534,7 +311747,7 @@ }, { "question": "Source London", - "icon": "./assets/data/nsi/logos/sourcelondon-d8cc94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sourcelondon-d8cc94.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311551,7 +311764,7 @@ }, { "question": "South Lakeland District Council", - "icon": "./assets/data/nsi/logos/southlakelanddistrictcouncil-081ccb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southlakelanddistrictcouncil-081ccb.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311566,7 +311779,7 @@ }, { "question": "Spar", - "icon": "./assets/data/nsi/logos/spar-7872f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spar-7872f6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311631,7 +311844,7 @@ }, { "question": "Stadt Lorch", - "icon": "./assets/data/nsi/logos/stadtlorch-f38d07.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtlorch-f38d07.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -311646,7 +311859,7 @@ }, { "question": "Städtische Werke Magdeburg", - "icon": "./assets/data/nsi/logos/stadtischewerkemagdeburg-ef5441.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtischewerkemagdeburg-ef5441.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -311662,7 +311875,7 @@ }, { "question": "Stadtwerk am See", - "icon": "./assets/data/nsi/logos/stadtwerkamsee-f38d07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkamsee-f38d07.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311678,7 +311891,7 @@ }, { "question": "Stadtwerke Augsburg", - "icon": "./assets/data/nsi/logos/stadtwerkeaugsburg-e3d1c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-e3d1c8.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311721,7 +311934,7 @@ }, { "question": "Stadtwerke Baden-Baden", - "icon": "./assets/data/nsi/logos/stadtwerkebadenbaden-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadenbaden-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311736,7 +311949,7 @@ }, { "question": "Stadtwerke Bielefeld", - "icon": "./assets/data/nsi/logos/stadtwerkebielefeld-0f84be.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebielefeld-0f84be.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -311751,7 +311964,7 @@ }, { "question": "Stadtwerke Bochum", - "icon": "./assets/data/nsi/logos/stadtwerkebochum-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebochum-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311780,7 +311993,7 @@ }, { "question": "Stadtwerke Dachau", - "icon": "./assets/data/nsi/logos/stadtwerkedachau-e3d1c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedachau-e3d1c8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311795,7 +312008,7 @@ }, { "question": "Stadtwerke Dessau", - "icon": "./assets/data/nsi/logos/stadtwerkedessau-ea9737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedessau-ea9737.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311810,7 +312023,7 @@ }, { "question": "Stadtwerke Düsseldorf", - "icon": "./assets/data/nsi/logos/stadtwerkedusseldorf-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311839,7 +312052,7 @@ }, { "question": "Stadtwerke Energie Jena-Pößneck GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkeenergiejenapossneckgmbh-6e1091.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeenergiejenapossneckgmbh-6e1091.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311854,7 +312067,7 @@ }, { "question": "Stadtwerke Erfurt", - "icon": "./assets/data/nsi/logos/stadtwerkeerfurt-6e1091.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeerfurt-6e1091.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311870,7 +312083,7 @@ }, { "question": "Stadtwerke EVB Huntetal GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkeevbhuntetalgmbh-7a74c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeevbhuntetalgmbh-7a74c6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311885,7 +312098,7 @@ }, { "question": "Stadtwerke Fürstenfeldbruck", - "icon": "./assets/data/nsi/logos/stadtwerkefurstenfeldbruck-e3d1c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkefurstenfeldbruck-e3d1c8.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311900,7 +312113,7 @@ }, { "question": "Stadtwerke Gießen", - "icon": "./assets/data/nsi/logos/stadtwerkegiessen-c6e3e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegiessen-c6e3e9.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311915,7 +312128,7 @@ }, { "question": "Stadtwerke Goch GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkegochgmbh-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegochgmbh-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -311930,7 +312143,7 @@ }, { "question": "Stadtwerke Göttingen", - "icon": "./assets/data/nsi/logos/stadtwerkegottingen-7a74c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegottingen-7a74c6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311945,7 +312158,7 @@ }, { "question": "Stadtwerke Hamm", - "icon": "./assets/data/nsi/logos/stadtwerkehamm-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkehamm-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311974,7 +312187,7 @@ }, { "question": "Stadtwerke Heidelberg", - "icon": "./assets/data/nsi/logos/stadtwerkeheidelberg-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeheidelberg-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -311989,7 +312202,7 @@ }, { "question": "Stadtwerke Herne", - "icon": "./assets/data/nsi/logos/stadtwerkeherne-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherne-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312005,7 +312218,7 @@ }, { "question": "Stadtwerke Iserlohn", - "icon": "./assets/data/nsi/logos/stadtwerkeiserlohn-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeiserlohn-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312020,7 +312233,7 @@ }, { "question": "Stadtwerke Kiel", - "icon": "./assets/data/nsi/logos/stadtwerkekiel-2af49a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekiel-2af49a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312036,7 +312249,7 @@ }, { "question": "Stadtwerke Klagenfurt", - "icon": "./assets/data/nsi/logos/stadtwerkeklagenfurt-7f89d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeklagenfurt-7f89d4.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -312051,7 +312264,7 @@ }, { "question": "Stadtwerke Konstanz", - "icon": "./assets/data/nsi/logos/stadtwerkekonstanz-f38d07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekonstanz-f38d07.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312066,7 +312279,7 @@ }, { "question": "Stadtwerke Landshut", - "icon": "./assets/data/nsi/logos/stadtwerkelandshut-e3d1c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelandshut-e3d1c8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312081,7 +312294,7 @@ }, { "question": "Stadtwerke Langen", - "icon": "./assets/data/nsi/logos/stadtwerkelangen-c6e3e9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelangen-c6e3e9.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312110,7 +312323,7 @@ }, { "question": "Stadtwerke Leipzig", - "icon": "./assets/data/nsi/logos/stadtwerkeleipzig-7df435.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-7df435.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312125,7 +312338,7 @@ }, { "question": "Stadtwerke Marburg", - "icon": "./assets/data/nsi/logos/stadtwerkemarburg-c6e3e9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemarburg-c6e3e9.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -312140,7 +312353,7 @@ }, { "question": "Stadtwerke Meerbusch GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkemeerbuschgmbh-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemeerbuschgmbh-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312155,7 +312368,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-17fa3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-17fa3d.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312171,7 +312384,7 @@ }, { "question": "Stadtwerke Münster", - "icon": "./assets/data/nsi/logos/stadtwerkemunster-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunster-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312186,7 +312399,7 @@ }, { "question": "Stadtwerke Neuss", - "icon": "./assets/data/nsi/logos/stadtwerkeneuss-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuss-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312202,7 +312415,7 @@ }, { "question": "Stadtwerke Neustadt an der Weinstraße", - "icon": "./assets/data/nsi/logos/stadtwerkeneustadtanderweinstrasse-c7ca4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneustadtanderweinstrasse-c7ca4b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312217,7 +312430,7 @@ }, { "question": "Stadtwerke Norderstedt", - "icon": "./assets/data/nsi/logos/stadtwerkenorderstedt-2af49a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkenorderstedt-2af49a.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312232,7 +312445,7 @@ }, { "question": "Stadtwerke Oberkirch", - "icon": "./assets/data/nsi/logos/stadtwerkeoberkirch-f38d07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeoberkirch-f38d07.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312247,7 +312460,7 @@ }, { "question": "Stadtwerke Osnabrück", - "icon": "./assets/data/nsi/logos/stadtwerkeosnabruck-7a74c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeosnabruck-7a74c6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312262,7 +312475,7 @@ }, { "question": "Stadtwerke Pforzheim", - "icon": "./assets/data/nsi/logos/stadtwerkepforzheim-f38d07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkepforzheim-f38d07.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312278,7 +312491,7 @@ }, { "question": "Stadtwerke Rhede", - "icon": "./assets/data/nsi/logos/stadtwerkerhede-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkerhede-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312307,7 +312520,7 @@ }, { "question": "Stadtwerke Rüsselsheim", - "icon": "./assets/data/nsi/logos/stadtwerkerusselsheim-c6e3e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkerusselsheim-c6e3e9.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312322,7 +312535,7 @@ }, { "question": "Stadtwerke Schwäbisch Hall", - "icon": "./assets/data/nsi/logos/stadtwerkeschwabischhall-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeschwabischhall-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312365,7 +312578,7 @@ }, { "question": "Stadtwerke Sindelfingen", - "icon": "./assets/data/nsi/logos/stadtwerkesindelfingen-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkesindelfingen-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312380,7 +312593,7 @@ }, { "question": "Stadtwerke Solingen", - "icon": "./assets/data/nsi/logos/stadtwerkesolingen-0f84be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkesolingen-0f84be.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312395,7 +312608,7 @@ }, { "question": "Stadtwerke Speyer", - "icon": "./assets/data/nsi/logos/stadtwerkespeyer-c7ca4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-c7ca4b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312411,7 +312624,7 @@ }, { "question": "Stadtwerke Stuttgart", - "icon": "./assets/data/nsi/logos/stadtwerkestuttgart-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkestuttgart-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312426,7 +312639,7 @@ }, { "question": "Stadtwerke Tübingen", - "icon": "./assets/data/nsi/logos/stadtwerketubingen-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerketubingen-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312442,7 +312655,7 @@ }, { "question": "Stadtwerke Union Nordhessen", - "icon": "./assets/data/nsi/logos/stadtwerkeunionnordhessen-c6e3e9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeunionnordhessen-c6e3e9.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -312457,7 +312670,7 @@ }, { "question": "Stadtwerke Velbert", - "icon": "./assets/data/nsi/logos/stadtwerkevelbert-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkevelbert-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312472,7 +312685,7 @@ }, { "question": "Stadtwerke Weimar", - "icon": "./assets/data/nsi/logos/stadtwerkeweimar-6e1091.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeweimar-6e1091.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -312501,7 +312714,7 @@ }, { "question": "Stadtwerke Witten", - "icon": "./assets/data/nsi/logos/stadtwerkewitten-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312534,7 +312747,7 @@ }, { "question": "STAWAG", - "icon": "./assets/data/nsi/logos/stawag-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stawag-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312549,7 +312762,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-d99909.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-d99909.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312564,7 +312777,7 @@ }, { "question": "SureCharge", - "icon": "./assets/data/nsi/logos/fmconway-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fmconway-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312581,7 +312794,7 @@ }, { "question": "Süwag", - "icon": "./assets/data/nsi/logos/suwag-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwag-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312610,7 +312823,7 @@ }, { "question": "swb (Bremen)", - "icon": "./assets/data/nsi/logos/swb-fd47ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swb-fd47ae.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312625,7 +312838,7 @@ }, { "question": "SWB Energie und Wasser", - "icon": "./assets/data/nsi/logos/swbenergieundwasser-0f84be.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/swbenergieundwasser-0f84be.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -312641,7 +312854,7 @@ }, { "question": "Swisscharge", - "icon": "./assets/data/nsi/logos/swisscharge-d761b8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisscharge-d761b8.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312656,7 +312869,7 @@ }, { "question": "SWU Stadtwerke Ulm/Neu-Ulm GmbH", - "icon": "./assets/data/nsi/logos/swustadtwerkeulmneuulmgmbh-a90ddb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swustadtwerkeulmneuulmgmbh-a90ddb.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312708,7 +312921,7 @@ }, { "question": "Tank & Rast", - "icon": "./assets/data/nsi/logos/tankandrast-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tankandrast-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312737,7 +312950,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-3c58b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-3c58b6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312766,7 +312979,7 @@ }, { "question": "Technische Werke Osning", - "icon": "./assets/data/nsi/logos/technischewerkeosning-0f84be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technischewerkeosning-0f84be.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312782,7 +312995,7 @@ }, { "question": "Technische Werke Schussental", - "icon": "./assets/data/nsi/logos/technischewerkeschussental-f38d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/technischewerkeschussental-f38d07.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312797,7 +313010,7 @@ }, { "question": "teilAuto", - "icon": "./assets/data/nsi/logos/teilauto-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teilauto-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312812,7 +313025,7 @@ }, { "question": "Teplárny Brno", - "icon": "./assets/data/nsi/logos/teplarnybrno-788d35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teplarnybrno-788d35.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312836,7 +313049,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-c4e7a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-c4e7a0.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -312851,7 +313064,7 @@ }, { "question": "Toka", - "icon": "./assets/data/nsi/logos/toka-bfc601.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/toka-bfc601.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312868,7 +313081,7 @@ }, { "question": "Total", - "icon": "./assets/data/nsi/logos/total-5601d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/total-5601d5.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312897,7 +313110,7 @@ }, { "question": "TotalEnergies", - "icon": "./assets/data/nsi/logos/totalenergies-7872f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalenergies-7872f6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -312921,7 +313134,7 @@ }, { "question": "UAB Ignitis", - "icon": "./assets/data/nsi/logos/uabignitis-7d5905.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uabignitis-7d5905.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -312936,7 +313149,7 @@ }, { "question": "Ubeeqo", - "icon": "./assets/data/nsi/logos/ubeeqo-7872f6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ubeeqo-7872f6.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -312992,7 +313205,7 @@ }, { "question": "Umeå Energi", - "icon": "./assets/data/nsi/logos/umeaenergi-fe9964.png", + "icon": "https://data.mapcomplete.org/nsi//logos/umeaenergi-fe9964.png", "osmTags": { "and": [ "man_made=charge_point", @@ -313007,7 +313220,7 @@ }, { "question": "Universidade da Coruña", - "icon": "./assets/data/nsi/logos/universidadedacoruna-9bc2ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universidadedacoruna-9bc2ed.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313024,7 +313237,7 @@ }, { "question": "Uno-X", - "icon": "./assets/data/nsi/logos/unox-7aa565.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unox-7aa565.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313048,7 +313261,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-de5d53.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-de5d53.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -313063,7 +313276,7 @@ }, { "question": "V-MARKT", - "icon": "./assets/data/nsi/logos/vmarkt-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vmarkt-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -313078,7 +313291,7 @@ }, { "question": "Vattenfall InCharge", - "icon": "./assets/data/nsi/logos/vattenfallincharge-54e104.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfallincharge-54e104.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313095,7 +313308,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-3fbaa3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-3fbaa3.png", "osmTags": { "and": [ "man_made=charge_point", @@ -313128,7 +313341,7 @@ }, { "question": "Viesgo", - "icon": "./assets/data/nsi/logos/viesgo-9bc2ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viesgo-9bc2ed.png", "osmTags": { "and": [ "man_made=charge_point", @@ -313166,7 +313379,7 @@ }, { "question": "VIRTA", - "icon": "./assets/data/nsi/logos/virta-c07792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virta-c07792.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313197,7 +313410,7 @@ }, { "question": "Volkswagen", - "icon": "./assets/data/nsi/logos/volkswagen-9a316b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkswagen-9a316b.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313253,7 +313466,7 @@ }, { "question": "Waybler", - "icon": "./assets/data/nsi/logos/waybler-fe9964.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waybler-fe9964.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313284,7 +313497,7 @@ }, { "question": "WEL Networks", - "icon": "./assets/data/nsi/logos/welnetworks-3fbaa3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welnetworks-3fbaa3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313310,7 +313523,7 @@ }, { "question": "WEMAG", - "icon": "./assets/data/nsi/logos/wemag-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wemag-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -313325,7 +313538,7 @@ }, { "question": "Wenea", - "icon": "./assets/data/nsi/logos/wenea-09fce6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wenea-09fce6.png", "osmTags": { "and": [ "man_made=charge_point", @@ -313340,7 +313553,7 @@ }, { "question": "westenergie", - "icon": "./assets/data/nsi/logos/westenergie-9a316b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westenergie-9a316b.png", "osmTags": { "and": [ "man_made=charge_point", @@ -313364,7 +313577,7 @@ }, { "question": "Westfalen Weser Ladeservice", - "icon": "./assets/data/nsi/logos/westfalenweserladeservice-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfalenweserladeservice-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -313379,7 +313592,7 @@ }, { "question": "Whole Foods", - "icon": "./assets/data/nsi/logos/wholefoods-416623.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wholefoods-416623.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313394,7 +313607,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-c4e7a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-c4e7a0.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313425,7 +313638,7 @@ }, { "question": "Wirelane", - "icon": "./assets/data/nsi/logos/wirelane-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wirelane-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -313449,7 +313662,7 @@ }, { "question": "WVV", - "icon": "./assets/data/nsi/logos/wvv-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wvv-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -313464,7 +313677,7 @@ }, { "question": "Z Energy", - "icon": "./assets/data/nsi/logos/zenergy-3fbaa3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zenergy-3fbaa3.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313490,7 +313703,7 @@ }, { "question": "ZES", - "icon": "./assets/data/nsi/logos/zes-680e24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zes-680e24.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313505,7 +313718,7 @@ }, { "question": "Zest", - "icon": "./assets/data/nsi/logos/zest-2a0385.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zest-2a0385.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313538,7 +313751,7 @@ }, { "question": "ZTM Lublin", - "icon": "./assets/data/nsi/logos/ztmlublin-3c58b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ztmlublin-3c58b6.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313553,7 +313766,7 @@ }, { "question": "Zunder", - "icon": "./assets/data/nsi/logos/zunder-b3093e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zunder-b3093e.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313568,7 +313781,7 @@ }, { "question": "Zwickau", - "icon": "./assets/data/nsi/logos/zwickau-9a316b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zwickau-9a316b.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -313583,7 +313796,7 @@ }, { "question": "ΔΕΗ", - "icon": "./assets/data/nsi/logos/788cf3-ab9b63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/788cf3-ab9b63.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313625,7 +313838,7 @@ }, { "question": "Мосэнерго", - "icon": "./assets/data/nsi/logos/1e6fb1-e1f318.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/1e6fb1-e1f318.svg", "osmTags": { "and": [ "man_made=charge_point", @@ -313640,7 +313853,7 @@ }, { "question": "Одеська міська рада", - "icon": "./assets/data/nsi/logos/09a705-bfc601.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/09a705-bfc601.jpg", "osmTags": { "and": [ "man_made=charge_point", @@ -313700,7 +313913,7 @@ }, { "question": "РусГидро", - "icon": "./assets/data/nsi/logos/70aabc-e1f318.png", + "icon": "https://data.mapcomplete.org/nsi//logos/70aabc-e1f318.png", "osmTags": { "and": [ "man_made=charge_point", @@ -313817,7 +314030,7 @@ }, { "question": "Arqiva", - "icon": "./assets/data/nsi/logos/arqiva-556014.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arqiva-556014.svg", "osmTags": { "and": [ "tower:type=communication", @@ -313833,7 +314046,7 @@ }, { "question": "BPD Light Tower", - "icon": "./assets/data/nsi/logos/baltimorepolicedepartment-6caef4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorepolicedepartment-6caef4.jpg", "osmTags": { "and": [ "man_made=mast", @@ -313868,7 +314081,7 @@ }, { "question": "EE", - "icon": "./assets/data/nsi/logos/ee-556014.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ee-556014.svg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -313885,7 +314098,7 @@ }, { "question": "iHeartMedia", - "icon": "./assets/data/nsi/logos/iheartmedia-005557.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iheartmedia-005557.png", "osmTags": { "and": [ "tower:type=communication", @@ -313918,7 +314131,7 @@ }, { "question": "MTN", - "icon": "./assets/data/nsi/logos/mtn-a5a5e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtn-a5a5e8.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -313934,7 +314147,7 @@ }, { "question": "National Air Traffic Services", - "icon": "./assets/data/nsi/logos/nationalairtrafficservices-556014.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalairtrafficservices-556014.jpg", "osmTags": { "and": [ "man_made=mast", @@ -313949,7 +314162,7 @@ }, { "question": "Network Rail", - "icon": "./assets/data/nsi/logos/networkrail-556014.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkrail-556014.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -313965,7 +314178,7 @@ }, { "question": "O2", - "icon": "./assets/data/nsi/logos/o2-556014.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/o2-556014.svg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -313982,7 +314195,7 @@ }, { "question": "Orange", - "icon": "./assets/data/nsi/logos/orange-6ada36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orange-6ada36.png", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -313999,7 +314212,7 @@ }, { "question": "Sentech", - "icon": "./assets/data/nsi/logos/sentech-602a68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sentech-602a68.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -314015,7 +314228,7 @@ }, { "question": "Telekom", - "icon": "./assets/data/nsi/logos/telekom-488966.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telekom-488966.jpg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -314032,7 +314245,7 @@ }, { "question": "Telkom", - "icon": "./assets/data/nsi/logos/telkom-602a68.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telkom-602a68.svg", "osmTags": { "and": [ "tower:type=communication", @@ -314048,7 +314261,7 @@ }, { "question": "Three", - "icon": "./assets/data/nsi/logos/three-556014.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/three-556014.jpg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -314065,7 +314278,7 @@ }, { "question": "Vodacom (D. R. Congo)", - "icon": "./assets/data/nsi/logos/vodacomcongo-5540e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacomcongo-5540e6.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -314081,7 +314294,7 @@ }, { "question": "Vodacom (Lesotho)", - "icon": "./assets/data/nsi/logos/vodacomlesotho-2fd42f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacomlesotho-2fd42f.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -314097,7 +314310,7 @@ }, { "question": "Vodacom (Moçambique)", - "icon": "./assets/data/nsi/logos/vodacommocambique-031a1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacommocambique-031a1f.png", "osmTags": { "and": [ "tower:type=communication", @@ -314113,7 +314326,7 @@ }, { "question": "Vodacom (South Africa)", - "icon": "./assets/data/nsi/logos/vodacom-602a68.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacom-602a68.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -314129,7 +314342,7 @@ }, { "question": "Vodacom (Tanzania)", - "icon": "./assets/data/nsi/logos/vodacomtanzania-0f2159.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacomtanzania-0f2159.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -314145,7 +314358,7 @@ }, { "question": "Vodafone (Egypt)", - "icon": "./assets/data/nsi/logos/vodafoneegypt-1329c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodafoneegypt-1329c8.jpg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -314162,7 +314375,7 @@ }, { "question": "Vodafone (UK)", - "icon": "./assets/data/nsi/logos/vodafone-556014.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodafone-556014.jpg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -314203,7 +314416,7 @@ }, { "question": "Afet ve Acil Durum Yönetimi Başkanlığı", - "icon": "./assets/data/nsi/logos/afetveacildurumyonetimibaskanligi-5f056e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/afetveacildurumyonetimibaskanligi-5f056e.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314220,7 +314433,7 @@ }, { "question": "Agencia Estatal de Meteorología", - "icon": "./assets/data/nsi/logos/agenciaestataldemeteorologia-4de89d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agenciaestataldemeteorologia-4de89d.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314237,7 +314450,7 @@ }, { "question": "Agencia Nacional de Tierras", - "icon": "./assets/data/nsi/logos/agencianacionaldetierras-eaf2bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/agencianacionaldetierras-eaf2bf.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314270,7 +314483,7 @@ }, { "question": "Arlington County", - "icon": "./assets/data/nsi/logos/arlingtoncounty-004478.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arlingtoncounty-004478.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314345,7 +314558,7 @@ }, { "question": "Asfinag", - "icon": "./assets/data/nsi/logos/asfinag-5d5a13.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/asfinag-5d5a13.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314383,7 +314596,7 @@ }, { "question": "Auckland Council", - "icon": "./assets/data/nsi/logos/aucklandcouncil-4c3d8e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aucklandcouncil-4c3d8e.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314399,7 +314612,7 @@ }, { "question": "Auckland Transport", - "icon": "./assets/data/nsi/logos/aucklandtransport-c4e69c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aucklandtransport-c4e69c.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314444,7 +314657,7 @@ }, { "question": "Birmingham City Council", - "icon": "./assets/data/nsi/logos/birminghamcitycouncil-ee3921.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/birminghamcitycouncil-ee3921.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314482,7 +314695,7 @@ }, { "question": "Brussels Mobility", - "icon": "./assets/data/nsi/logos/brusselsmobility-3026fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brusselsmobility-3026fb.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314498,7 +314711,7 @@ }, { "question": "Bundesamt für Strahlenschutz", - "icon": "./assets/data/nsi/logos/bundesamtfurstrahlenschutz-07a9c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundesamtfurstrahlenschutz-07a9c8.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314515,7 +314728,7 @@ }, { "question": "Bureau of Meteorology", - "icon": "./assets/data/nsi/logos/bureauofmeteorology-c56e64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauofmeteorology-c56e64.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314554,7 +314767,7 @@ }, { "question": "Central Hidroeléctrica de Caldas", - "icon": "./assets/data/nsi/logos/centralhidroelectricadecaldas-eaf2bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/centralhidroelectricadecaldas-eaf2bf.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314592,7 +314805,7 @@ }, { "question": "Český hydrometeorologický ústav", - "icon": "./assets/data/nsi/logos/ceskyhydrometeorologickyustav-c67c8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskyhydrometeorologickyustav-c67c8a.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314617,7 +314830,7 @@ }, { "question": "Comune di Genova", - "icon": "./assets/data/nsi/logos/comunedigenova-1fc046.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedigenova-1fc046.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314669,7 +314882,7 @@ }, { "question": "Corporación Autónoma Regional de la Frontera Nororiental", - "icon": "./assets/data/nsi/logos/corporacionautonomaregionaldelafronteranororiental-eaf2bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/corporacionautonomaregionaldelafronteranororiental-eaf2bf.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314732,7 +314945,7 @@ }, { "question": "CTBTO", - "icon": "./assets/data/nsi/logos/ctbto-756944.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ctbto-756944.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314763,7 +314976,7 @@ }, { "question": "DCMR Milieudienst Rijnmond", - "icon": "./assets/data/nsi/logos/dcmrmilieudienstrijnmond-2cb44b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dcmrmilieudienstrijnmond-2cb44b.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314794,7 +315007,7 @@ }, { "question": "Department of Science and Technology", - "icon": "./assets/data/nsi/logos/departmentofscienceandtechnology-afd051.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofscienceandtechnology-afd051.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314810,7 +315023,7 @@ }, { "question": "Deutsche Forschungsgemeinschaft", - "icon": "./assets/data/nsi/logos/deutscheforschungsgemeinschaft-07a9c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutscheforschungsgemeinschaft-07a9c8.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314826,7 +315039,7 @@ }, { "question": "Deutscher Wetterdienst", - "icon": "./assets/data/nsi/logos/deutscherwetterdienst-07a9c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutscherwetterdienst-07a9c8.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314842,7 +315055,7 @@ }, { "question": "Deutsches Zentrum für Luft und Raumfahrt", - "icon": "./assets/data/nsi/logos/deutscheszentrumfurluftundraumfahrt-91e43b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutscheszentrumfurluftundraumfahrt-91e43b.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314867,7 +315080,7 @@ }, { "question": "Eco-Compteur", - "icon": "./assets/data/nsi/logos/ecocompteur-69109e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ecocompteur-69109e.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314891,7 +315104,7 @@ }, { "question": "Empresa de Acueducto y Alcantarillado de Bogotá", - "icon": "./assets/data/nsi/logos/empresadeacueductoyalcantarilladodebogota-eaf2bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/empresadeacueductoyalcantarilladodebogota-eaf2bf.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314915,7 +315128,7 @@ }, { "question": "Empresas Públicas de Medellín", - "icon": "./assets/data/nsi/logos/empresaspublicasdemedellin-eaf2bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/empresaspublicasdemedellin-eaf2bf.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314931,7 +315144,7 @@ }, { "question": "Environment Agency", - "icon": "./assets/data/nsi/logos/environmentagency-505a45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/environmentagency-505a45.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314946,7 +315159,7 @@ }, { "question": "Environment Canada", - "icon": "./assets/data/nsi/logos/environmentcanada-a34f5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/environmentcanada-a34f5a.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -314984,7 +315197,7 @@ }, { "question": "Fédération Française de Vol Libre", - "icon": "./assets/data/nsi/logos/federationfrancaisedevollibre-94cf3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/federationfrancaisedevollibre-94cf3c.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315028,7 +315241,7 @@ }, { "question": "Freistaat Sachsen", - "icon": "./assets/data/nsi/logos/freistaatsachsen-56cd1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freistaatsachsen-56cd1d.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315044,7 +315257,7 @@ }, { "question": "Generalna Dyrekcja Dróg Krajowych i Autostrad", - "icon": "./assets/data/nsi/logos/generalnadyrekcjadrogkrajowychiautostrad-3409e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/generalnadyrekcjadrogkrajowychiautostrad-3409e6.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315083,7 +315296,7 @@ }, { "question": "GeoSphere Austria", - "icon": "./assets/data/nsi/logos/geosphereaustria-5d5a13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geosphereaustria-5d5a13.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315098,7 +315311,7 @@ }, { "question": "GGD Amsterdam", - "icon": "./assets/data/nsi/logos/ggdamsterdam-2cb44b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ggdamsterdam-2cb44b.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315113,7 +315326,7 @@ }, { "question": "Glencore", - "icon": "./assets/data/nsi/logos/glencore-ec2cd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/glencore-ec2cd1.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315151,7 +315364,7 @@ }, { "question": "Hansestadt Rostock", - "icon": "./assets/data/nsi/logos/hansestadtrostock-bfcca6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hansestadtrostock-bfcca6.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315234,7 +315447,7 @@ }, { "question": "Illinois Department of Transportation", - "icon": "./assets/data/nsi/logos/illinoisdepartmentoftransportation-4018ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentoftransportation-4018ee.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315296,7 +315509,7 @@ }, { "question": "Instituto de Hidrología, Meteorología y Estudios Ambientales", - "icon": "./assets/data/nsi/logos/institutodehidrologiameteorologiayestudiosambientales-eaf2bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/institutodehidrologiameteorologiayestudiosambientales-eaf2bf.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315374,7 +315587,7 @@ }, { "question": "Isagen", - "icon": "./assets/data/nsi/logos/isagen-eaf2bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/isagen-eaf2bf.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315398,7 +315611,7 @@ }, { "question": "Koninklijk Nederlands Meteorologisch Instituut", - "icon": "./assets/data/nsi/logos/koninklijknederlandsmeteorologischinstituut-2cb44b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/koninklijknederlandsmeteorologischinstituut-2cb44b.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315423,7 +315636,7 @@ }, { "question": "Kystverket", - "icon": "./assets/data/nsi/logos/kystverket-8246c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kystverket-8246c4.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315438,7 +315651,7 @@ }, { "question": "Land Tirol", - "icon": "./assets/data/nsi/logos/landtirol-10d800.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landtirol-10d800.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315485,7 +315698,7 @@ }, { "question": "Leica Geosystems B.V.", - "icon": "./assets/data/nsi/logos/leicageosystemsbv-9f02ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leicageosystemsbv-9f02ae.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315500,7 +315713,7 @@ }, { "question": "Lig'Air", - "icon": "./assets/data/nsi/logos/ligair-c66cc0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ligair-c66cc0.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315515,7 +315728,7 @@ }, { "question": "LMBV", - "icon": "./assets/data/nsi/logos/lmbv-07a9c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lmbv-07a9c8.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315539,7 +315752,7 @@ }, { "question": "LWD Tirol", - "icon": "./assets/data/nsi/logos/lwdtirol-5d5a13.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lwdtirol-5d5a13.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315600,7 +315813,7 @@ }, { "question": "Met Office", - "icon": "./assets/data/nsi/logos/metoffice-505a45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metoffice-505a45.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315638,7 +315851,7 @@ }, { "question": "Meteomedia", - "icon": "./assets/data/nsi/logos/meteomedia-07a9c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/meteomedia-07a9c8.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315682,7 +315895,7 @@ }, { "question": "Metropoolregio Rotterdam Den Haag", - "icon": "./assets/data/nsi/logos/metropoolregiorotterdamdenhaag-2cb44b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropoolregiorotterdamdenhaag-2cb44b.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315712,7 +315925,7 @@ }, { "question": "Ministerio de Agricultura y Desarrollo Rural", - "icon": "./assets/data/nsi/logos/ministeriodeagriculturaydesarrollorural-eaf2bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodeagriculturaydesarrollorural-eaf2bf.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315736,7 +315949,7 @@ }, { "question": "Ministerio de Transporte de Colombia", - "icon": "./assets/data/nsi/logos/ministeriodetransportedecolombia-eaf2bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodetransportedecolombia-eaf2bf.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315751,7 +315964,7 @@ }, { "question": "National Oceanic and Atmospheric Administration (USA)", - "icon": "./assets/data/nsi/logos/nationaloceanicandatmosphericadministration-35adb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaloceanicandatmosphericadministration-35adb7.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315840,7 +316053,7 @@ }, { "question": "OGS", - "icon": "./assets/data/nsi/logos/ogs-73d6fa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ogs-73d6fa.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315901,7 +316114,7 @@ }, { "question": "Provincia di Genova", - "icon": "./assets/data/nsi/logos/provinciadigenova-1fc046.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciadigenova-1fc046.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315916,7 +316129,7 @@ }, { "question": "Provincie Limburg", - "icon": "./assets/data/nsi/logos/provincielimburg-dc8a1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provincielimburg-dc8a1d.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315931,7 +316144,7 @@ }, { "question": "Provincie Zuid-Holland", - "icon": "./assets/data/nsi/logos/provinciezuidholland-2cb44b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciezuidholland-2cb44b.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315946,7 +316159,7 @@ }, { "question": "Regierungspräsidium Karlsruhe", - "icon": "./assets/data/nsi/logos/regierungsprasidiumkarlsruhe-f441e8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/regierungsprasidiumkarlsruhe-f441e8.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315963,7 +316176,7 @@ }, { "question": "Regierungspräsidium Kassel", - "icon": "./assets/data/nsi/logos/regierungsprasidiumkassel-d9d644.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/regierungsprasidiumkassel-d9d644.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315980,7 +316193,7 @@ }, { "question": "Regierungspräsidium Stuttgart", - "icon": "./assets/data/nsi/logos/regierungsprasidiumstuttgart-f441e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regierungsprasidiumstuttgart-f441e8.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -315997,7 +316210,7 @@ }, { "question": "Regierungspräsidium Tübingen", - "icon": "./assets/data/nsi/logos/regierungsprasidiumtubingen-f441e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regierungsprasidiumtubingen-f441e8.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316028,7 +316241,7 @@ }, { "question": "Rijksinstituut voor Volksgezondheid en Milieu", - "icon": "./assets/data/nsi/logos/rijksinstituutvoorvolksgezondheidenmilieu-2cb44b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rijksinstituutvoorvolksgezondheidenmilieu-2cb44b.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316044,7 +316257,7 @@ }, { "question": "Rijkswaterstaat", - "icon": "./assets/data/nsi/logos/rijkswaterstaat-2cb44b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rijkswaterstaat-2cb44b.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316060,7 +316273,7 @@ }, { "question": "San Diego County Water Authority", - "icon": "./assets/data/nsi/logos/sandiegocountywaterauthority-6171e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegocountywaterauthority-6171e7.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316075,7 +316288,7 @@ }, { "question": "Scottish Government", - "icon": "./assets/data/nsi/logos/scottishgovernment-505a45.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishgovernment-505a45.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316091,7 +316304,7 @@ }, { "question": "Senatsverwaltung für Stadtentwicklung Berlin", - "icon": "./assets/data/nsi/logos/senatsverwaltungfurstadtentwicklungberlin-d6fc7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senatsverwaltungfurstadtentwicklungberlin-d6fc7a.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316107,7 +316320,7 @@ }, { "question": "Servei Meteorològic de Catalunya", - "icon": "./assets/data/nsi/logos/serveimeteorologicdecatalunya-4de89d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/serveimeteorologicdecatalunya-4de89d.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316137,7 +316350,7 @@ }, { "question": "Shell Deutschland", - "icon": "./assets/data/nsi/logos/shelldeutschland-07a9c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shelldeutschland-07a9c8.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316152,7 +316365,7 @@ }, { "question": "Slovenský hydrometeorologický ústav", - "icon": "./assets/data/nsi/logos/slovenskyhydrometeorologickyustav-a6407c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskyhydrometeorologickyustav-a6407c.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316183,7 +316396,7 @@ }, { "question": "Stadt Bonn", - "icon": "./assets/data/nsi/logos/stadtbonn-574564.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbonn-574564.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316198,7 +316411,7 @@ }, { "question": "Stadt Freiburg", - "icon": "./assets/data/nsi/logos/stadtfreiburg-f441e8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtfreiburg-f441e8.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316222,7 +316435,7 @@ }, { "question": "Stadt Heidelberg", - "icon": "./assets/data/nsi/logos/stadtheidelberg-f441e8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtheidelberg-f441e8.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316237,7 +316450,7 @@ }, { "question": "Stars4all", - "icon": "./assets/data/nsi/logos/stars4all-b2961a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stars4all-b2961a.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316252,7 +316465,7 @@ }, { "question": "Statens vegvesen", - "icon": "./assets/data/nsi/logos/statensvegvesen-8246c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statensvegvesen-8246c4.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316315,7 +316528,7 @@ }, { "question": "USGS Monitoring Station", - "icon": "./assets/data/nsi/logos/unitedstatesgeologicalsurvey-35adb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesgeologicalsurvey-35adb7.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316332,7 +316545,7 @@ }, { "question": "Vegagerðin", - "icon": "./assets/data/nsi/logos/vegagerdhin-27e2b0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vegagerdhin-27e2b0.svg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316348,7 +316561,7 @@ }, { "question": "Vlaamse Milieumaatschappij", - "icon": "./assets/data/nsi/logos/vlaamsemilieumaatschappij-3026fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vlaamsemilieumaatschappij-3026fb.jpg", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316418,7 +316631,7 @@ }, { "question": "Wegener Center für Klima und Globalen Wandel", - "icon": "./assets/data/nsi/logos/wegenercenterfurklimaundglobalenwandel-b7373e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wegenercenterfurklimaundglobalenwandel-b7373e.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316488,7 +316701,7 @@ }, { "question": "交通部中央氣象局", - "icon": "./assets/data/nsi/logos/23d9d7-9afd0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/23d9d7-9afd0a.png", "osmTags": { "and": [ "man_made=monitoring_station", @@ -316535,7 +316748,7 @@ }, { "question": "ACEA", - "icon": "./assets/data/nsi/logos/acea-e17829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acea-e17829.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -316613,7 +316826,7 @@ }, { "question": "Air Liquide", - "icon": "./assets/data/nsi/logos/airliquide-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airliquide-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -316642,7 +316855,7 @@ }, { "question": "Air Products", - "icon": "./assets/data/nsi/logos/airproducts-143312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/airproducts-143312.png", "osmTags": { "and": [ "man_made=pipeline", @@ -316698,7 +316911,7 @@ }, { "question": "Alyeska Pipeline Service Company", - "icon": "./assets/data/nsi/logos/alyeskapipelineservicecompany-16072e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alyeskapipelineservicecompany-16072e.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -316759,7 +316972,7 @@ }, { "question": "Anglo American", - "icon": "./assets/data/nsi/logos/angloamerican-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/angloamerican-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -316774,7 +316987,7 @@ }, { "question": "Ankara Su ve Kanalizasyon İdaresi", - "icon": "./assets/data/nsi/logos/ankarasuvekanalizasyonidaresi-8a4901.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ankarasuvekanalizasyonidaresi-8a4901.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -316830,7 +317043,7 @@ }, { "question": "Ascend Performance Materials", - "icon": "./assets/data/nsi/logos/ascendperformancematerials-184490.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ascendperformancematerials-184490.png", "osmTags": { "and": [ "man_made=pipeline", @@ -316868,7 +317081,7 @@ }, { "question": "Atlanta Gas Light", - "icon": "./assets/data/nsi/logos/atlantagaslight-9a3d1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atlantagaslight-9a3d1a.png", "osmTags": { "and": [ "man_made=pipeline", @@ -316939,7 +317152,7 @@ }, { "question": "Avacon", - "icon": "./assets/data/nsi/logos/avacon-da7c89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avacon-da7c89.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -316954,7 +317167,7 @@ }, { "question": "Ayuntamiento de Zaragoza", - "icon": "./assets/data/nsi/logos/ayuntamientodezaragoza-58be62.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodezaragoza-58be62.png", "osmTags": { "and": [ "man_made=pipeline", @@ -316969,7 +317182,7 @@ }, { "question": "badenova", - "icon": "./assets/data/nsi/logos/badenova-da7c89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/badenova-da7c89.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -316998,7 +317211,7 @@ }, { "question": "Baltimore City Department of Public Works", - "icon": "./assets/data/nsi/logos/baltimorecitydepartmentofpublicworks-0dc4c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecitydepartmentofpublicworks-0dc4c6.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317028,7 +317241,7 @@ }, { "question": "BASF", - "icon": "./assets/data/nsi/logos/basf-de820e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/basf-de820e.png", "osmTags": { "and": [ "man_made=pipeline", @@ -317116,7 +317329,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-f62730.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-f62730.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317174,7 +317387,7 @@ }, { "question": "Berliner Wasserbetriebe", - "icon": "./assets/data/nsi/logos/berlinerwasserbetriebe-55a794.png", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerwasserbetriebe-55a794.png", "osmTags": { "and": [ "man_made=pipeline", @@ -317277,7 +317490,7 @@ }, { "question": "BOTAŞ", - "icon": "./assets/data/nsi/logos/botas-8a4901.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/botas-8a4901.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317292,7 +317505,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317361,7 +317574,7 @@ }, { "question": "Bristol Water", - "icon": "./assets/data/nsi/logos/bristolwater-7ca529.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristolwater-7ca529.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317431,7 +317644,7 @@ }, { "question": "Cadent", - "icon": "./assets/data/nsi/logos/cadent-0affc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cadent-0affc0.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317488,7 +317701,7 @@ }, { "question": "Caltex", - "icon": "./assets/data/nsi/logos/caltex-b8bcc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caltex-b8bcc2.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317644,7 +317857,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-0a386a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-0a386a.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317677,7 +317890,7 @@ }, { "question": "ČEZ", - "icon": "./assets/data/nsi/logos/cez-446620.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cez-446620.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317825,7 +318038,7 @@ }, { "question": "City of Staunton", - "icon": "./assets/data/nsi/logos/cityofstaunton-23e3a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstaunton-23e3a3.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317840,7 +318053,7 @@ }, { "question": "City of Vancouver", - "icon": "./assets/data/nsi/logos/cityofvancouver-f62730.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofvancouver-f62730.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -317887,7 +318100,7 @@ }, { "question": "CNR", - "icon": "./assets/data/nsi/logos/cnr-02b185.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cnr-02b185.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -317911,7 +318124,7 @@ }, { "question": "Colonial Pipeline", - "icon": "./assets/data/nsi/logos/colonialpipeline-0a386a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/colonialpipeline-0a386a.png", "osmTags": { "and": [ "man_made=pipeline", @@ -317981,7 +318194,7 @@ }, { "question": "CONAGUA", - "icon": "./assets/data/nsi/logos/conagua-c74959.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conagua-c74959.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318059,7 +318272,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-46297b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-46297b.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318074,7 +318287,7 @@ }, { "question": "Creos Deutschland", - "icon": "./assets/data/nsi/logos/creosdeutschland-da7c89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creosdeutschland-da7c89.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318116,7 +318329,7 @@ }, { "question": "Dalkia", - "icon": "./assets/data/nsi/logos/dalkia-55fc32.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dalkia-55fc32.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -318313,7 +318526,7 @@ }, { "question": "Dhaka Wasa", - "icon": "./assets/data/nsi/logos/dhakawasa-7a1e05.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhakawasa-7a1e05.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -318337,7 +318550,7 @@ }, { "question": "District of Columbia Water and Sewer Authority", - "icon": "./assets/data/nsi/logos/districtofcolumbiawaterandsewerauthority-c0acc8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/districtofcolumbiawaterandsewerauthority-c0acc8.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318425,7 +318638,7 @@ }, { "question": "Dow Chemical Company", - "icon": "./assets/data/nsi/logos/dowchemicalcompany-0a386a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-0a386a.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318449,7 +318662,7 @@ }, { "question": "DSM", - "icon": "./assets/data/nsi/logos/dsm-f82a4b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dsm-f82a4b.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -318491,7 +318704,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-c9fb9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-c9fb9d.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318506,7 +318719,7 @@ }, { "question": "e-netz Südhessen", - "icon": "./assets/data/nsi/logos/enetzsudhessen-da7c89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enetzsudhessen-da7c89.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -318521,7 +318734,7 @@ }, { "question": "e-regio", - "icon": "./assets/data/nsi/logos/eregio-e37083.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eregio-e37083.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318649,7 +318862,7 @@ }, { "question": "Edison", - "icon": "./assets/data/nsi/logos/edison-e17829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edison-e17829.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318692,7 +318905,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-143312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-143312.png", "osmTags": { "and": [ "man_made=pipeline", @@ -318708,7 +318921,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-4947e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-4947e8.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318783,7 +318996,7 @@ }, { "question": "Enagas", - "icon": "./assets/data/nsi/logos/enagas-143312.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enagas-143312.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -318798,7 +319011,7 @@ }, { "question": "Enbridge", - "icon": "./assets/data/nsi/logos/enbridge-e04216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enbridge-e04216.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318831,7 +319044,7 @@ }, { "question": "EnBW Energie Baden-Württemberg AG", - "icon": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-da7c89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-da7c89.png", "osmTags": { "and": [ "man_made=pipeline", @@ -318846,7 +319059,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-86ac77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-86ac77.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -318861,7 +319074,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-143312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-143312.png", "osmTags": { "and": [ "man_made=pipeline", @@ -318876,7 +319089,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-143312.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-143312.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -318891,7 +319104,7 @@ }, { "question": "Enel Produzione", - "icon": "./assets/data/nsi/logos/enelproduzione-e17829.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelproduzione-e17829.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -318915,7 +319128,7 @@ }, { "question": "Energie SaarLorLux", - "icon": "./assets/data/nsi/logos/energiesaarlorlux-da7c89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesaarlorlux-da7c89.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -318944,7 +319157,7 @@ }, { "question": "Energieversorgung Filstal", - "icon": "./assets/data/nsi/logos/energieversorgungfilstal-0b5f1c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieversorgungfilstal-0b5f1c.png", "osmTags": { "and": [ "man_made=pipeline", @@ -318974,7 +319187,7 @@ }, { "question": "Énergir", - "icon": "./assets/data/nsi/logos/energir-ec6451.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energir-ec6451.png", "osmTags": { "and": [ "man_made=pipeline", @@ -319031,7 +319244,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319055,7 +319268,7 @@ }, { "question": "Eni", - "icon": "./assets/data/nsi/logos/eni-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eni-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319129,7 +319342,7 @@ }, { "question": "EOG Resources", - "icon": "./assets/data/nsi/logos/eogresources-0a386a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eogresources-0a386a.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319207,7 +319420,7 @@ }, { "question": "Equinor", - "icon": "./assets/data/nsi/logos/equinor-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equinor-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319231,7 +319444,7 @@ }, { "question": "Erdgas Ostschweiz AG", - "icon": "./assets/data/nsi/logos/erdgasostschweizag-e0d926.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/erdgasostschweizag-e0d926.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319246,7 +319459,7 @@ }, { "question": "Erdgas Zentralschweiz", - "icon": "./assets/data/nsi/logos/erdgaszentralschweiz-c2536a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/erdgaszentralschweiz-c2536a.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319270,7 +319483,7 @@ }, { "question": "ESB Generation and Wholesale Markets", - "icon": "./assets/data/nsi/logos/esbgenerationandwholesalemarkets-fbcea5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbgenerationandwholesalemarkets-fbcea5.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319285,7 +319498,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319324,7 +319537,7 @@ }, { "question": "Evides Waterbedrijf", - "icon": "./assets/data/nsi/logos/evideswaterbedrijf-f82a4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evideswaterbedrijf-f82a4b.png", "osmTags": { "and": [ "man_made=pipeline", @@ -319339,7 +319552,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-9c8423.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-9c8423.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319368,7 +319581,7 @@ }, { "question": "Evolve", - "icon": "./assets/data/nsi/logos/evolve-caca88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evolve-caca88.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319384,7 +319597,7 @@ }, { "question": "EWZ", - "icon": "./assets/data/nsi/logos/ewz-e0d926.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewz-e0d926.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319399,7 +319612,7 @@ }, { "question": "Exolum", - "icon": "./assets/data/nsi/logos/exolum-0a3816.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/exolum-0a3816.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319423,7 +319636,7 @@ }, { "question": "ExxonMobil Pipeline Company", - "icon": "./assets/data/nsi/logos/exxonmobilpipelinecompany-9b1cf7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exxonmobilpipelinecompany-9b1cf7.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319554,7 +319767,7 @@ }, { "question": "First Gas", - "icon": "./assets/data/nsi/logos/firstgas-22b69e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstgas-22b69e.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319606,7 +319819,7 @@ }, { "question": "Fluxys", - "icon": "./assets/data/nsi/logos/fluxys-5c754e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fluxys-5c754e.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319635,7 +319848,7 @@ }, { "question": "FortisBC", - "icon": "./assets/data/nsi/logos/fortisbc-f62730.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortisbc-f62730.png", "osmTags": { "and": [ "man_made=pipeline", @@ -319709,7 +319922,7 @@ }, { "question": "GAIL", - "icon": "./assets/data/nsi/logos/gail-fbc79a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gail-fbc79a.png", "osmTags": { "and": [ "man_made=pipeline", @@ -319766,7 +319979,7 @@ }, { "question": "Gas Networks Ireland", - "icon": "./assets/data/nsi/logos/gasnetworksireland-d9b47c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gasnetworksireland-d9b47c.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -319790,7 +320003,7 @@ }, { "question": "GASCADE", - "icon": "./assets/data/nsi/logos/gascade-da7c89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gascade-da7c89.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319814,7 +320027,7 @@ }, { "question": "Gassco", - "icon": "./assets/data/nsi/logos/gassco-143312.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gassco-143312.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319829,7 +320042,7 @@ }, { "question": "Gasum", - "icon": "./assets/data/nsi/logos/gasum-143312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gasum-143312.png", "osmTags": { "and": [ "man_made=pipeline", @@ -319844,7 +320057,7 @@ }, { "question": "Gasunie (Nederland)", - "icon": "./assets/data/nsi/logos/gasunie-f82a4b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gasunie-f82a4b.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319873,7 +320086,7 @@ }, { "question": "Gasverbund Mittelland AG", - "icon": "./assets/data/nsi/logos/gasverbundmittellandag-e0d926.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gasverbundmittellandag-e0d926.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319898,7 +320111,7 @@ }, { "question": "Gaznat SA", - "icon": "./assets/data/nsi/logos/gaznatsa-f9727e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gaznatsa-f9727e.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319913,7 +320126,7 @@ }, { "question": "Gazprom", - "icon": "./assets/data/nsi/logos/gazprom-143312.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gazprom-143312.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319937,7 +320150,7 @@ }, { "question": "Gemeinde Großheirath", - "icon": "./assets/data/nsi/logos/gemeindegrossheirath-d75ea7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindegrossheirath-d75ea7.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319952,7 +320165,7 @@ }, { "question": "Gemeinde Schönbrunn", - "icon": "./assets/data/nsi/logos/gemeindeschonbrunn-0b5f1c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindeschonbrunn-0b5f1c.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -319967,7 +320180,7 @@ }, { "question": "Gemeinde Trabitz", - "icon": "./assets/data/nsi/logos/gemeindetrabitz-d75ea7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindetrabitz-d75ea7.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -320018,7 +320231,7 @@ }, { "question": "Gippsland Water", - "icon": "./assets/data/nsi/logos/gippslandwater-76a468.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gippslandwater-76a468.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320147,7 +320360,7 @@ }, { "question": "Grosskraftwerk Mannheim", - "icon": "./assets/data/nsi/logos/grosskraftwerkmannheim-0b5f1c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/grosskraftwerkmannheim-0b5f1c.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -320258,7 +320471,7 @@ }, { "question": "Harz Energie", - "icon": "./assets/data/nsi/logos/harzenergie-38071f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harzenergie-38071f.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320323,7 +320536,7 @@ }, { "question": "Hess Corporation", - "icon": "./assets/data/nsi/logos/hesscorporation-9b1cf7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hesscorporation-9b1cf7.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320442,7 +320655,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-ec6451.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-ec6451.png", "osmTags": { "and": [ "man_made=pipeline", @@ -320471,7 +320684,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-9c8423.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-9c8423.png", "osmTags": { "and": [ "man_made=pipeline", @@ -320486,7 +320699,7 @@ }, { "question": "Imperial Oil", - "icon": "./assets/data/nsi/logos/imperialoil-4442fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialoil-4442fb.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320501,7 +320714,7 @@ }, { "question": "INA", - "icon": "./assets/data/nsi/logos/ina-d574ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ina-d574ff.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320516,7 +320729,7 @@ }, { "question": "Ineos USA", - "icon": "./assets/data/nsi/logos/ineosusa-0a386a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ineosusa-0a386a.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320545,7 +320758,7 @@ }, { "question": "International Paper", - "icon": "./assets/data/nsi/logos/internationalpaper-0a386a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/internationalpaper-0a386a.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320560,7 +320773,7 @@ }, { "question": "IOCL", - "icon": "./assets/data/nsi/logos/iocl-fbc79a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iocl-fbc79a.png", "osmTags": { "and": [ "man_made=pipeline", @@ -320576,7 +320789,7 @@ }, { "question": "Irish Water", - "icon": "./assets/data/nsi/logos/irishwater-d9b47c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishwater-d9b47c.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320611,7 +320824,7 @@ }, { "question": "Irving Oil", - "icon": "./assets/data/nsi/logos/irvingoil-e04216.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irvingoil-e04216.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320626,7 +320839,7 @@ }, { "question": "İstanbul Su ve Kanalizasyon İdaresi", - "icon": "./assets/data/nsi/logos/istanbulsuvekanalizasyonidaresi-8a4901.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istanbulsuvekanalizasyonidaresi-8a4901.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320696,7 +320909,7 @@ }, { "question": "Karlsruher Institut für Technologie", - "icon": "./assets/data/nsi/logos/karlsruherinstitutfurtechnologie-0b5f1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlsruherinstitutfurtechnologie-0b5f1c.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320745,7 +320958,7 @@ }, { "question": "KELAG", - "icon": "./assets/data/nsi/logos/kelag-739664.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-739664.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -320769,7 +320982,7 @@ }, { "question": "Kinder Morgan", - "icon": "./assets/data/nsi/logos/kindermorgan-e04216.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kindermorgan-e04216.png", "osmTags": { "and": [ "man_made=pipeline", @@ -320914,7 +321127,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-6bbcf6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-6bbcf6.png", "osmTags": { "and": [ "man_made=pipeline", @@ -321040,7 +321253,7 @@ }, { "question": "Linde", - "icon": "./assets/data/nsi/logos/linde-0a386a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/linde-0a386a.png", "osmTags": { "and": [ "man_made=pipeline", @@ -321155,7 +321368,7 @@ }, { "question": "Mancomunidad de los Canales del Taibilla", - "icon": "./assets/data/nsi/logos/mancomunidaddeloscanalesdeltaibilla-86ac77.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mancomunidaddeloscanalesdeltaibilla-86ac77.png", "osmTags": { "and": [ "man_made=pipeline", @@ -321188,7 +321401,7 @@ }, { "question": "Marathon Oil", - "icon": "./assets/data/nsi/logos/marathonoil-46297b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonoil-46297b.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -321203,7 +321416,7 @@ }, { "question": "Marathon Pipe Line", - "icon": "./assets/data/nsi/logos/marathonpipeline-0a386a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonpipeline-0a386a.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -321287,7 +321500,7 @@ }, { "question": "Maynilad Water Services", - "icon": "./assets/data/nsi/logos/mayniladwaterservices-98d0ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-98d0ce.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -321311,7 +321524,7 @@ }, { "question": "Memorial University", - "icon": "./assets/data/nsi/logos/memorialuniversity-4286b2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/memorialuniversity-4286b2.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -321326,7 +321539,7 @@ }, { "question": "Memphis Light, Gas and Water", - "icon": "./assets/data/nsi/logos/memphislightgasandwater-f2876e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-f2876e.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -321397,7 +321610,7 @@ }, { "question": "Metropolitan Water District of Southern California", - "icon": "./assets/data/nsi/logos/metropolitanwaterdistrictofsoutherncalifornia-3e913e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolitanwaterdistrictofsoutherncalifornia-3e913e.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -321503,7 +321716,7 @@ }, { "question": "MOL", - "icon": "./assets/data/nsi/logos/mol-26624f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mol-26624f.png", "osmTags": { "and": [ "man_made=pipeline", @@ -321554,7 +321767,7 @@ }, { "question": "Motiva Enterprises", - "icon": "./assets/data/nsi/logos/motivaenterprises-0a386a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/motivaenterprises-0a386a.png", "osmTags": { "and": [ "man_made=pipeline", @@ -321700,7 +321913,7 @@ }, { "question": "Naturgy", - "icon": "./assets/data/nsi/logos/naturgy-86ac77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturgy-86ac77.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -321762,7 +321975,7 @@ }, { "question": "Netz NÖ", - "icon": "./assets/data/nsi/logos/netzno-9c8423.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzno-9c8423.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -321777,7 +321990,7 @@ }, { "question": "Netze Südwest", - "icon": "./assets/data/nsi/logos/netzesudwest-0b5f1c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/netzesudwest-0b5f1c.png", "osmTags": { "and": [ "man_made=pipeline", @@ -321845,7 +322058,7 @@ }, { "question": "Nicor Gas", - "icon": "./assets/data/nsi/logos/nicorgas-0a386a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nicorgas-0a386a.png", "osmTags": { "and": [ "man_made=pipeline", @@ -321874,7 +322087,7 @@ }, { "question": "Nord-West Oelleitung GmbH", - "icon": "./assets/data/nsi/logos/nordwestoelleitunggmbh-db8d21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordwestoelleitunggmbh-db8d21.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -321914,7 +322127,7 @@ }, { "question": "Northern Ireland Water", - "icon": "./assets/data/nsi/logos/northernirelandwater-caca88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernirelandwater-caca88.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -321947,7 +322160,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-5e35cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-5e35cd.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -321962,7 +322175,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-14d875.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-14d875.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322000,7 +322213,7 @@ }, { "question": "Nukissiorfiit", - "icon": "./assets/data/nsi/logos/nukissiorfiit-f00fb9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-f00fb9.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322033,7 +322246,7 @@ }, { "question": "NW Natural", - "icon": "./assets/data/nsi/logos/nwnatural-937f46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nwnatural-937f46.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322049,7 +322262,7 @@ }, { "question": "ÖBB", - "icon": "./assets/data/nsi/logos/obb-9c8423.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obb-9c8423.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322087,7 +322300,7 @@ }, { "question": "Oiltanking Deutschland GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/oiltankingdeutschlandgmbhandcokg-da7c89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/oiltankingdeutschlandgmbhandcokg-da7c89.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -322111,7 +322324,7 @@ }, { "question": "OMV", - "icon": "./assets/data/nsi/logos/omv-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omv-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322140,7 +322353,7 @@ }, { "question": "Oneok", - "icon": "./assets/data/nsi/logos/oneok-0a386a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oneok-0a386a.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322173,7 +322386,7 @@ }, { "question": "ONTRAS", - "icon": "./assets/data/nsi/logos/ontras-da7c89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ontras-da7c89.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -322197,7 +322410,7 @@ }, { "question": "Open Grid Europe GmbH", - "icon": "./assets/data/nsi/logos/opengrideuropegmbh-143312.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/opengrideuropegmbh-143312.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -322222,7 +322435,7 @@ }, { "question": "Orka náttúrunnar", - "icon": "./assets/data/nsi/logos/orkanatturunnar-9f3dd9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orkanatturunnar-9f3dd9.png", "osmTags": { "and": [ "man_made=pipeline", @@ -322287,7 +322500,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-3e913e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-3e913e.png", "osmTags": { "and": [ "man_made=pipeline", @@ -322385,7 +322598,7 @@ }, { "question": "PEMEX", - "icon": "./assets/data/nsi/logos/pemex-c74959.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pemex-c74959.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322400,7 +322613,7 @@ }, { "question": "Pennsylvania State University", - "icon": "./assets/data/nsi/logos/pennsylvaniastateuniversity-586f4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pennsylvaniastateuniversity-586f4c.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322442,7 +322655,7 @@ }, { "question": "Petrobras", - "icon": "./assets/data/nsi/logos/petrobras-b2714a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrobras-b2714a.png", "osmTags": { "and": [ "man_made=pipeline", @@ -322480,7 +322693,7 @@ }, { "question": "Petroecuador", - "icon": "./assets/data/nsi/logos/petroecuador-a80893.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroecuador-a80893.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322536,7 +322749,7 @@ }, { "question": "Phillips 66", - "icon": "./assets/data/nsi/logos/phillips66-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phillips66-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322560,7 +322773,7 @@ }, { "question": "Piedmont Natural Gas Company", - "icon": "./assets/data/nsi/logos/piedmontnaturalgascompany-9444cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piedmontnaturalgascompany-9444cc.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322625,7 +322838,7 @@ }, { "question": "Plzeňská teplárenská, a.s.", - "icon": "./assets/data/nsi/logos/plzenskateplarenskaas-446620.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plzenskateplarenskaas-446620.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322649,7 +322862,7 @@ }, { "question": "Powerco", - "icon": "./assets/data/nsi/logos/powerco-22b69e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerco-22b69e.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322665,7 +322878,7 @@ }, { "question": "Preem", - "icon": "./assets/data/nsi/logos/preem-febfa2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/preem-febfa2.png", "osmTags": { "and": [ "man_made=pipeline", @@ -322739,7 +322952,7 @@ }, { "question": "QGC", - "icon": "./assets/data/nsi/logos/qgc-3592c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qgc-3592c9.png", "osmTags": { "and": [ "man_made=pipeline", @@ -322772,7 +322985,7 @@ }, { "question": "RAG Austria", - "icon": "./assets/data/nsi/logos/ragaustria-9c8423.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ragaustria-9c8423.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322860,7 +323073,7 @@ }, { "question": "REN", - "icon": "./assets/data/nsi/logos/ren-9fc26f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ren-9fc26f.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -322902,7 +323115,7 @@ }, { "question": "Rhein-Main-Rohrleitungstransportgesellschaft", - "icon": "./assets/data/nsi/logos/rheinmainrohrleitungstransportgesellschaft-da7c89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinmainrohrleitungstransportgesellschaft-da7c89.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -322932,7 +323145,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-aa0e70.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-aa0e70.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -322997,7 +323210,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-55fc32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-55fc32.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323012,7 +323225,7 @@ }, { "question": "SA Water", - "icon": "./assets/data/nsi/logos/sawater-c35d57.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sawater-c35d57.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323036,7 +323249,7 @@ }, { "question": "Sabesp", - "icon": "./assets/data/nsi/logos/sabesp-ca5551.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sabesp-ca5551.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323051,7 +323264,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-2bc2b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-2bc2b4.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323139,7 +323352,7 @@ }, { "question": "SBB - CFF", - "icon": "./assets/data/nsi/logos/sbbcff-e0d926.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbbcff-e0d926.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323165,7 +323378,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-9683bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-9683bf.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -323203,7 +323416,7 @@ }, { "question": "Scottish Water", - "icon": "./assets/data/nsi/logos/scottishwater-73cbec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishwater-73cbec.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323245,7 +323458,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-6da778.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-6da778.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323271,7 +323484,7 @@ }, { "question": "Seqwater", - "icon": "./assets/data/nsi/logos/seqwater-3592c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seqwater-3592c9.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323313,7 +323526,7 @@ }, { "question": "Severn Trent", - "icon": "./assets/data/nsi/logos/severntrent-0affc0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/severntrent-0affc0.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -323352,7 +323565,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-143312.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-143312.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323367,7 +323580,7 @@ }, { "question": "Shell Deutschland", - "icon": "./assets/data/nsi/logos/shelldeutschland-da7c89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shelldeutschland-da7c89.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323400,7 +323613,7 @@ }, { "question": "SHEM", - "icon": "./assets/data/nsi/logos/shem-02b185.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shem-02b185.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323479,7 +323692,7 @@ }, { "question": "Snowy Hydro", - "icon": "./assets/data/nsi/logos/snowyhydro-588004.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snowyhydro-588004.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323532,7 +323745,7 @@ }, { "question": "Sonelgaz", - "icon": "./assets/data/nsi/logos/sonelgaz-6d32cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-6d32cf.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323633,7 +323846,7 @@ }, { "question": "Southern California Gas Company", - "icon": "./assets/data/nsi/logos/southerncaliforniagascompany-3e913e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniagascompany-3e913e.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323695,7 +323908,7 @@ }, { "question": "Southwest Gas", - "icon": "./assets/data/nsi/logos/southwestgas-19dc0e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestgas-19dc0e.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323711,7 +323924,7 @@ }, { "question": "SpaceX", - "icon": "./assets/data/nsi/logos/spacex-0a386a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/spacex-0a386a.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -323789,7 +324002,7 @@ }, { "question": "SSE", - "icon": "./assets/data/nsi/logos/sse-143312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sse-143312.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323836,7 +324049,7 @@ }, { "question": "Stadtentwässerung Stuttgart", - "icon": "./assets/data/nsi/logos/stadtentwasserungstuttgart-0b5f1c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtentwasserungstuttgart-0b5f1c.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -323853,7 +324066,7 @@ }, { "question": "Stadtwerke Goch", - "icon": "./assets/data/nsi/logos/stadtwerkegoch-e37083.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegoch-e37083.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323868,7 +324081,7 @@ }, { "question": "Stadtwerke Jena", - "icon": "./assets/data/nsi/logos/stadtwerkejena-b8415f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkejena-b8415f.png", "osmTags": { "and": [ "man_made=pipeline", @@ -323897,7 +324110,7 @@ }, { "question": "Stadtwerke Lübeck", - "icon": "./assets/data/nsi/logos/stadtwerkelubeck-9683bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-9683bf.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323912,7 +324125,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-d75ea7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-d75ea7.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323928,7 +324141,7 @@ }, { "question": "Stadtwerke Schwetzingen", - "icon": "./assets/data/nsi/logos/stadtwerkeschwetzingen-0b5f1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeschwetzingen-0b5f1c.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -323943,7 +324156,7 @@ }, { "question": "Stadtwerke Treuchtlingen", - "icon": "./assets/data/nsi/logos/stadtwerketreuchtlingen-d75ea7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerketreuchtlingen-d75ea7.png", "osmTags": { "and": [ "man_made=pipeline", @@ -324049,7 +324262,7 @@ }, { "question": "Swissgas", - "icon": "./assets/data/nsi/logos/swissgas-e0d926.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/swissgas-e0d926.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -324092,7 +324305,7 @@ }, { "question": "Sydney Water", - "icon": "./assets/data/nsi/logos/sydneywater-7a96c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sydneywater-7a96c6.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -324202,7 +324415,7 @@ }, { "question": "TC Energy Corporation", - "icon": "./assets/data/nsi/logos/tcenergycorporation-45a322.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tcenergycorporation-45a322.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -324259,7 +324472,7 @@ }, { "question": "terranets bw GmbH", - "icon": "./assets/data/nsi/logos/terranetsbwgmbh-0b5f1c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/terranetsbwgmbh-0b5f1c.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -324352,7 +324565,7 @@ }, { "question": "TGS S.A.", - "icon": "./assets/data/nsi/logos/tgssa-02fa2c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tgssa-02fa2c.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -324367,7 +324580,7 @@ }, { "question": "Thames Water", - "icon": "./assets/data/nsi/logos/thameswater-0affc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thameswater-0affc0.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -324391,7 +324604,7 @@ }, { "question": "Thyssengas", - "icon": "./assets/data/nsi/logos/thyssengas-e37083.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thyssengas-e37083.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -324407,7 +324620,7 @@ }, { "question": "ThyssenKrupp Steel", - "icon": "./assets/data/nsi/logos/thyssenkruppsteel-e37083.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thyssenkruppsteel-e37083.png", "osmTags": { "and": [ "man_made=pipeline", @@ -324445,7 +324658,7 @@ }, { "question": "TotalEnergies", - "icon": "./assets/data/nsi/logos/totalenergies-143312.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalenergies-143312.png", "osmTags": { "and": [ "man_made=pipeline", @@ -324488,7 +324701,7 @@ }, { "question": "TPC Group", - "icon": "./assets/data/nsi/logos/tpcgroup-46297b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tpcgroup-46297b.png", "osmTags": { "and": [ "man_made=pipeline", @@ -324599,7 +324812,7 @@ }, { "question": "Transpetrol", - "icon": "./assets/data/nsi/logos/transpetrol-7fc625.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transpetrol-7fc625.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -324818,7 +325031,7 @@ }, { "question": "Uniper", - "icon": "./assets/data/nsi/logos/uniper-55fc32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniper-55fc32.png", "osmTags": { "and": [ "man_made=pipeline", @@ -324851,7 +325064,7 @@ }, { "question": "United Utilities", - "icon": "./assets/data/nsi/logos/unitedutilities-f2d4b6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedutilities-f2d4b6.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -324866,7 +325079,7 @@ }, { "question": "Unitil", - "icon": "./assets/data/nsi/logos/unitil-dda696.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitil-dda696.png", "osmTags": { "and": [ "man_made=pipeline", @@ -324881,7 +325094,7 @@ }, { "question": "Unocal Corporation", - "icon": "./assets/data/nsi/logos/unocalcorporation-e92df5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unocalcorporation-e92df5.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -324941,7 +325154,7 @@ }, { "question": "Valero", - "icon": "./assets/data/nsi/logos/valero-761061.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valero-761061.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325001,7 +325214,7 @@ }, { "question": "Vattenfall (Danmark)", - "icon": "./assets/data/nsi/logos/vattenfall-ea8ab3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-ea8ab3.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325016,7 +325229,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-da7c89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-da7c89.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325031,7 +325244,7 @@ }, { "question": "Vattenfall (Finland)", - "icon": "./assets/data/nsi/logos/vattenfall-e3c464.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-e3c464.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325046,7 +325259,7 @@ }, { "question": "Vattenfall (Nederland)", - "icon": "./assets/data/nsi/logos/vattenfallnederland-f82a4b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfallnederland-f82a4b.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325061,7 +325274,7 @@ }, { "question": "Vattenfall (Sverige)", - "icon": "./assets/data/nsi/logos/vattenfall-febfa2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-febfa2.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325076,7 +325289,7 @@ }, { "question": "Vattenfall (UK)", - "icon": "./assets/data/nsi/logos/vattenfallunitedkingdom-f2d4b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfallunitedkingdom-f2d4b6.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325091,7 +325304,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-22b69e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-22b69e.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325107,7 +325320,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-9c8423.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-9c8423.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325122,7 +325335,7 @@ }, { "question": "Verbundnetz Gas", - "icon": "./assets/data/nsi/logos/verbundnetzgas-da7c89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundnetzgas-da7c89.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -325241,7 +325454,7 @@ }, { "question": "Wasserversorgung Bayerischer Wald", - "icon": "./assets/data/nsi/logos/wasserversorgungbayerischerwald-d75ea7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wasserversorgungbayerischerwald-d75ea7.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325257,7 +325470,7 @@ }, { "question": "Watercare", - "icon": "./assets/data/nsi/logos/watercare-4e7678.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watercare-4e7678.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325281,7 +325494,7 @@ }, { "question": "Welsh Water", - "icon": "./assets/data/nsi/logos/welshwater-5498c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welshwater-5498c5.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325296,7 +325509,7 @@ }, { "question": "Wessex Water", - "icon": "./assets/data/nsi/logos/wessexwater-7ca529.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wessexwater-7ca529.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325311,7 +325524,7 @@ }, { "question": "West Texas Gas Utility", - "icon": "./assets/data/nsi/logos/westtexasgasutility-46297b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westtexasgasutility-46297b.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325362,7 +325575,7 @@ }, { "question": "Wiener Netze", - "icon": "./assets/data/nsi/logos/wienernetze-9c8423.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienernetze-9c8423.png", "osmTags": { "and": [ "man_made=pipeline", @@ -325377,7 +325590,7 @@ }, { "question": "Williams", - "icon": "./assets/data/nsi/logos/williams-0a386a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/williams-0a386a.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325419,7 +325632,7 @@ }, { "question": "WINGAS GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/wingasgmbhandcokg-da7c89.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wingasgmbhandcokg-da7c89.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -325443,7 +325656,7 @@ }, { "question": "Wisconsin Public Service Corporation", - "icon": "./assets/data/nsi/logos/wisconsinpublicservicecorporation-7aea5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsinpublicservicecorporation-7aea5f.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325504,7 +325717,7 @@ }, { "question": "Wuppertaler Stadtwerke", - "icon": "./assets/data/nsi/logos/wuppertalerstadtwerke-e37083.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wuppertalerstadtwerke-e37083.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325520,7 +325733,7 @@ }, { "question": "XTO Energy", - "icon": "./assets/data/nsi/logos/xtoenergy-46297b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/xtoenergy-46297b.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -325535,7 +325748,7 @@ }, { "question": "Yacimientos de Litio Bolivianos", - "icon": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-6c161b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-6c161b.svg", "osmTags": { "and": [ "man_made=pipeline", @@ -325550,7 +325763,7 @@ }, { "question": "YPF S.A.", - "icon": "./assets/data/nsi/logos/ypfsa-02fa2c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ypfsa-02fa2c.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325601,7 +325814,7 @@ }, { "question": "Zweckverband Bodensee-Wasserversorgung", - "icon": "./assets/data/nsi/logos/zweckverbandbodenseewasserversorgung-0b5f1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zweckverbandbodenseewasserversorgung-0b5f1c.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325644,7 +325857,7 @@ }, { "question": "Булгартрансгаз ЕАД", - "icon": "./assets/data/nsi/logos/bb4e91-324985.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bb4e91-324985.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -325966,7 +326179,7 @@ }, { "question": "Топлофикация Перник", - "icon": "./assets/data/nsi/logos/71a366-324985.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/71a366-324985.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -326023,7 +326236,7 @@ }, { "question": "Топлофикация София", - "icon": "./assets/data/nsi/logos/d08e33-324985.png", + "icon": "https://data.mapcomplete.org/nsi//logos/d08e33-324985.png", "osmTags": { "and": [ "man_made=pipeline", @@ -326171,7 +326384,7 @@ }, { "question": "水務署 Water Supplies Department", - "icon": "./assets/data/nsi/logos/watersuppliesdepartment-dde9b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-dde9b2.jpg", "osmTags": { "and": [ "man_made=pipeline", @@ -326238,7 +326451,7 @@ }, { "question": "De Watergroep", - "icon": "./assets/data/nsi/logos/dewatergroep-37f4a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dewatergroep-37f4a5.png", "osmTags": { "and": [ "man_made=pumping_station", @@ -326268,7 +326481,7 @@ }, { "question": "Maynilad Water Services", - "icon": "./assets/data/nsi/logos/mayniladwaterservices-2062c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-2062c7.jpg", "osmTags": { "and": [ "man_made=pumping_station", @@ -326283,7 +326496,7 @@ }, { "question": "Pidpa", - "icon": "./assets/data/nsi/logos/pidpa-37f4a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pidpa-37f4a5.png", "osmTags": { "and": [ "man_made=pumping_station", @@ -326298,7 +326511,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-d7758e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-d7758e.png", "osmTags": { "and": [ "man_made=pumping_station", @@ -326315,7 +326528,7 @@ }, { "question": "Watercare", - "icon": "./assets/data/nsi/logos/watercare-876848.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watercare-876848.jpg", "osmTags": { "and": [ "man_made=pumping_station", @@ -326330,7 +326543,7 @@ }, { "question": "ΕΥΑΘ", - "icon": "./assets/data/nsi/logos/41a232-479c7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/41a232-479c7b.jpg", "osmTags": { "and": [ "man_made=pumping_station", @@ -326345,7 +326558,7 @@ }, { "question": "ΕΥΔΑΠ", - "icon": "./assets/data/nsi/logos/41df5e-479c7b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/41df5e-479c7b.png", "osmTags": { "and": [ "man_made=pumping_station", @@ -326640,7 +326853,7 @@ }, { "question": "ВиК София област", - "icon": "./assets/data/nsi/logos/423877-c9307d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/423877-c9307d.png", "osmTags": { "and": [ "man_made=pumping_station", @@ -326739,7 +326952,7 @@ }, { "question": "Софийска вода", - "icon": "./assets/data/nsi/logos/938062-c9307d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/938062-c9307d.png", "osmTags": { "and": [ "man_made=pumping_station", @@ -326754,7 +326967,7 @@ }, { "question": "水務署 Water Supplies Department", - "icon": "./assets/data/nsi/logos/watersuppliesdepartment-c4c4f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-c4c4f5.jpg", "osmTags": { "and": [ "man_made=pumping_station", @@ -326786,7 +326999,7 @@ }, { "question": "Energie Thun AG", - "icon": "./assets/data/nsi/logos/energiethunag-500353.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiethunag-500353.png", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326802,7 +327015,7 @@ }, { "question": "NBN Co", - "icon": "./assets/data/nsi/logos/nbnco-bf0b59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbnco-bf0b59.jpg", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326818,7 +327031,7 @@ }, { "question": "Openreach", - "icon": "./assets/data/nsi/logos/openreach-9ac957.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/openreach-9ac957.jpg", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326834,7 +327047,7 @@ }, { "question": "PLDT", - "icon": "./assets/data/nsi/logos/pldt-27846b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pldt-27846b.jpg", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326849,7 +327062,7 @@ }, { "question": "Proximus", - "icon": "./assets/data/nsi/logos/proximus-d4d0f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/proximus-d4d0f4.png", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326865,7 +327078,7 @@ }, { "question": "Telenet", - "icon": "./assets/data/nsi/logos/telenet-d4d0f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telenet-d4d0f4.jpg", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326880,7 +327093,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-8d0f7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-8d0f7b.jpg", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326895,7 +327108,7 @@ }, { "question": "Virgin Media", - "icon": "./assets/data/nsi/logos/virginmedia-9ac957.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virginmedia-9ac957.png", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326911,7 +327124,7 @@ }, { "question": "WightFibre", - "icon": "./assets/data/nsi/logos/wightfibre-9ac957.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wightfibre-9ac957.jpg", "osmTags": { "and": [ "man_made=street_cabinet", @@ -326950,7 +327163,7 @@ }, { "question": "Ajuntament de Barcelona", - "icon": "./assets/data/nsi/logos/ajuntamentdebarcelona-eb94ba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-eb94ba.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -326981,7 +327194,7 @@ }, { "question": "Alabama Department of Transportation", - "icon": "./assets/data/nsi/logos/alabamadepartmentoftransportation-48e1a1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamadepartmentoftransportation-48e1a1.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -326998,7 +327211,7 @@ }, { "question": "Alaska Department of Transportation & Public Facilities", - "icon": "./assets/data/nsi/logos/alaskadepartmentoftransportationandpublicfacilities-a67cda.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alaskadepartmentoftransportationandpublicfacilities-a67cda.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327015,7 +327228,7 @@ }, { "question": "Albert", - "icon": "./assets/data/nsi/logos/albert-5f01ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albert-5f01ff.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327030,7 +327243,7 @@ }, { "question": "ALDI (ALDI Nord group)", - "icon": "./assets/data/nsi/logos/aldi-c81adf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-c81adf.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327045,7 +327258,7 @@ }, { "question": "ALDI (ALDI Süd group)", - "icon": "./assets/data/nsi/logos/aldi-39cd69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-39cd69.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327060,7 +327273,7 @@ }, { "question": "ALDI Nord (Deutschland)", - "icon": "./assets/data/nsi/logos/aldinord-8d575f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldinord-8d575f.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327075,7 +327288,7 @@ }, { "question": "ALDI Süd (Deutschland)", - "icon": "./assets/data/nsi/logos/aldisud-c27ec5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldisud-c27ec5.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327090,7 +327303,7 @@ }, { "question": "Amazon", - "icon": "./assets/data/nsi/logos/amazon-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/amazon-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327105,7 +327318,7 @@ }, { "question": "APCOA", - "icon": "./assets/data/nsi/logos/apcoa-9c1a6c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/apcoa-9c1a6c.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327120,7 +327333,7 @@ }, { "question": "APRR", - "icon": "./assets/data/nsi/logos/aprr-3bfa97.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aprr-3bfa97.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327135,7 +327348,7 @@ }, { "question": "Aral", - "icon": "./assets/data/nsi/logos/aral-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aral-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327150,7 +327363,7 @@ }, { "question": "Arizona Department of Transportation", - "icon": "./assets/data/nsi/logos/arizonadepartmentoftransportation-e44391.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonadepartmentoftransportation-e44391.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327167,7 +327380,7 @@ }, { "question": "ASFINAG", - "icon": "./assets/data/nsi/logos/asfinag-b9389d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/asfinag-b9389d.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327182,7 +327395,7 @@ }, { "question": "Asko a.s.", - "icon": "./assets/data/nsi/logos/askoas-5f01ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/askoas-5f01ff.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327197,7 +327410,7 @@ }, { "question": "Auchan", - "icon": "./assets/data/nsi/logos/auchan-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/auchan-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327212,7 +327425,7 @@ }, { "question": "Australian National University", - "icon": "./assets/data/nsi/logos/australiannationaluniversity-5b876a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/australiannationaluniversity-5b876a.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327259,7 +327472,7 @@ }, { "question": "Autoroutes du Sud de la France", - "icon": "./assets/data/nsi/logos/autoroutesdusuddelafrance-d6d8df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autoroutesdusuddelafrance-d6d8df.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327288,7 +327501,7 @@ }, { "question": "Ayuntamiento de Madrid", - "icon": "./assets/data/nsi/logos/ayuntamientodemadrid-ad7c50.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodemadrid-ad7c50.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327317,7 +327530,7 @@ }, { "question": "Bancolombia", - "icon": "./assets/data/nsi/logos/bancolombia-3fecaf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bancolombia-3fecaf.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327332,7 +327545,7 @@ }, { "question": "Banque de France", - "icon": "./assets/data/nsi/logos/banquedefrance-e10d05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banquedefrance-e10d05.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327361,7 +327574,7 @@ }, { "question": "Biedronka", - "icon": "./assets/data/nsi/logos/biedronka-e50517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/biedronka-e50517.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327376,7 +327589,7 @@ }, { "question": "Billa (Česko)", - "icon": "./assets/data/nsi/logos/billa-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/billa-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327405,7 +327618,7 @@ }, { "question": "BNP Paribas", - "icon": "./assets/data/nsi/logos/bnpparibas-9c1a6c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnpparibas-9c1a6c.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327429,7 +327642,7 @@ }, { "question": "BOGESTRA", - "icon": "./assets/data/nsi/logos/bogestra-2b1420.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bogestra-2b1420.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327444,7 +327657,7 @@ }, { "question": "Bowling Green State University", - "icon": "./assets/data/nsi/logos/bowlinggreenstateuniversity-545962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-545962.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327460,7 +327673,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327498,7 +327711,7 @@ }, { "question": "BRFK", - "icon": "./assets/data/nsi/logos/brfk-300a9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brfk-300a9e.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327513,7 +327726,7 @@ }, { "question": "Bristol City Council", - "icon": "./assets/data/nsi/logos/bristolcitycouncil-36d2be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristolcitycouncil-36d2be.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327537,7 +327750,7 @@ }, { "question": "Brown University", - "icon": "./assets/data/nsi/logos/brownuniversity-373ed2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brownuniversity-373ed2.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327561,7 +327774,7 @@ }, { "question": "Bundesheer", - "icon": "./assets/data/nsi/logos/bundesheer-b9389d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundesheer-b9389d.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327576,7 +327789,7 @@ }, { "question": "Burger King surveillance", - "icon": "./assets/data/nsi/logos/burgerking-33dc65.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgerking-33dc65.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327620,7 +327833,7 @@ }, { "question": "Caisse d'Épargne", - "icon": "./assets/data/nsi/logos/caissedepargne-e10d05.png", + "icon": "https://data.mapcomplete.org/nsi//logos/caissedepargne-e10d05.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327635,7 +327848,7 @@ }, { "question": "California Department of Transportation", - "icon": "./assets/data/nsi/logos/californiadepartmentoftransportation-4bdb29.png", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentoftransportation-4bdb29.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327652,7 +327865,7 @@ }, { "question": "Cambridge City Council", - "icon": "./assets/data/nsi/logos/cambridgecitycouncil-0f75ee.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cambridgecitycouncil-0f75ee.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327690,7 +327903,7 @@ }, { "question": "Canobie Lake Park", - "icon": "./assets/data/nsi/logos/canobielakepark-69a4af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canobielakepark-69a4af.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327705,7 +327918,7 @@ }, { "question": "Carrefour", - "icon": "./assets/data/nsi/logos/carrefour-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/carrefour-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327729,7 +327942,7 @@ }, { "question": "CEAMSE", - "icon": "./assets/data/nsi/logos/ceamse-3deb7a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceamse-3deb7a.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327767,7 +327980,7 @@ }, { "question": "Česká národní banka", - "icon": "./assets/data/nsi/logos/ceskanarodnibanka-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskanarodnibanka-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327782,7 +327995,7 @@ }, { "question": "Česká pošta", - "icon": "./assets/data/nsi/logos/ceskapostasp-5f01ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskapostasp-5f01ff.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327797,7 +328010,7 @@ }, { "question": "Česká spořitelna", - "icon": "./assets/data/nsi/logos/ceskasporitelna-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskasporitelna-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327821,7 +328034,7 @@ }, { "question": "Chicago Police Department", - "icon": "./assets/data/nsi/logos/chicagopolicedepartment-8cb4a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagopolicedepartment-8cb4a4.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327836,7 +328049,7 @@ }, { "question": "CIC", - "icon": "./assets/data/nsi/logos/cic-3bfa97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cic-3bfa97.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327908,7 +328121,7 @@ }, { "question": "City of Edinburgh Council", - "icon": "./assets/data/nsi/logos/cityofedinburghcouncil-cadc88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofedinburghcouncil-cadc88.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -327937,7 +328150,7 @@ }, { "question": "City of Ottawa", - "icon": "./assets/data/nsi/logos/cityofottawa-35e98c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofottawa-35e98c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -327952,7 +328165,7 @@ }, { "question": "City of Somerville", - "icon": "./assets/data/nsi/logos/cityofsomerville-13fd93.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofsomerville-13fd93.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327967,7 +328180,7 @@ }, { "question": "City of Windsor", - "icon": "./assets/data/nsi/logos/cityofwindsor-35e98c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofwindsor-35e98c.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -327982,7 +328195,7 @@ }, { "question": "Clermont Auvergne Métropole", - "icon": "./assets/data/nsi/logos/clermontauvergnemetropole-276786.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/clermontauvergnemetropole-276786.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328011,7 +328224,7 @@ }, { "question": "Colorado Department of Transportation", - "icon": "./assets/data/nsi/logos/coloradodepartmentoftransportation-79888a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradodepartmentoftransportation-79888a.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328028,7 +328241,7 @@ }, { "question": "Columbia University", - "icon": "./assets/data/nsi/logos/columbiauniversity-0a7690.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/columbiauniversity-0a7690.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328043,7 +328256,7 @@ }, { "question": "Commune d'Etterbeek - Gemeente Etterbeek", - "icon": "./assets/data/nsi/logos/communedetterbeekgemeenteetterbeek-fe27ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/communedetterbeekgemeenteetterbeek-fe27ed.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328058,7 +328271,7 @@ }, { "question": "Commune d'Uccle - Gemeente Ukkel", - "icon": "./assets/data/nsi/logos/communeducclegemeenteukkel-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communeducclegemeenteukkel-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328073,7 +328286,7 @@ }, { "question": "Commune de Berchem Sainte Agathe - Gemeente Sint-Agatha-Berchem", - "icon": "./assets/data/nsi/logos/communedeberchemsainteagathegemeentesintagathaberchem-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communedeberchemsainteagathegemeentesintagathaberchem-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328088,7 +328301,7 @@ }, { "question": "Commune de Koekelberg – Gemeente Koekelberg", - "icon": "./assets/data/nsi/logos/communedekoekelberggemeentekoekelberg-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communedekoekelberggemeentekoekelberg-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328103,7 +328316,7 @@ }, { "question": "Commune de Woluwe-Saint-Lambert – Gemeente Sint-Lambrechts-Woluwe", - "icon": "./assets/data/nsi/logos/communedewoluwesaintlambertgemeentesintlambrechtswoluwe-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communedewoluwesaintlambertgemeentesintlambrechtswoluwe-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328118,7 +328331,7 @@ }, { "question": "Comune di Bolzano - Stadtgemeinde Bozen", - "icon": "./assets/data/nsi/logos/comunedibolzanostadtgemeindebozen-db3b0a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedibolzanostadtgemeindebozen-db3b0a.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328133,7 +328346,7 @@ }, { "question": "Comune di Cagliari", - "icon": "./assets/data/nsi/logos/comunedicagliari-f8f6de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedicagliari-f8f6de.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328148,7 +328361,7 @@ }, { "question": "Comune di Laives", - "icon": "./assets/data/nsi/logos/comunedilaives-db3b0a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedilaives-db3b0a.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328163,7 +328376,7 @@ }, { "question": "Comune di Magenta", - "icon": "./assets/data/nsi/logos/comunedimagenta-5db564.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedimagenta-5db564.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328192,7 +328405,7 @@ }, { "question": "Comune di Montepulciano", - "icon": "./assets/data/nsi/logos/comunedimontepulciano-63c64f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedimontepulciano-63c64f.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328221,7 +328434,7 @@ }, { "question": "Comune di San Donato Milanese", - "icon": "./assets/data/nsi/logos/comunedisandonatomilanese-5db564.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedisandonatomilanese-5db564.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328236,7 +328449,7 @@ }, { "question": "Comune di San Giuliano Milanese", - "icon": "./assets/data/nsi/logos/comunedisangiulianomilanese-5db564.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedisangiulianomilanese-5db564.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328265,7 +328478,7 @@ }, { "question": "Comune di Terni", - "icon": "./assets/data/nsi/logos/comunediterni-6f9bad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunediterni-6f9bad.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328280,7 +328493,7 @@ }, { "question": "Comune di Trezzo sull'Adda", - "icon": "./assets/data/nsi/logos/comuneditrezzosulladda-5db564.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comuneditrezzosulladda-5db564.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328309,7 +328522,7 @@ }, { "question": "Comune di Vignate", - "icon": "./assets/data/nsi/logos/comunedivignate-5db564.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/comunedivignate-5db564.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328324,7 +328537,7 @@ }, { "question": "Connecticut Department of Transportation", - "icon": "./assets/data/nsi/logos/connecticutdepartmentoftransportation-5f4799.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/connecticutdepartmentoftransportation-5f4799.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328355,7 +328568,7 @@ }, { "question": "Crédit Agricole", - "icon": "./assets/data/nsi/logos/creditagricole-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditagricole-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328370,7 +328583,7 @@ }, { "question": "Crédit Mutuel", - "icon": "./assets/data/nsi/logos/creditmutuel-e10d05.png", + "icon": "https://data.mapcomplete.org/nsi//logos/creditmutuel-e10d05.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328394,7 +328607,7 @@ }, { "question": "ČSOB", - "icon": "./assets/data/nsi/logos/csob-9137b5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/csob-9137b5.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328418,7 +328631,7 @@ }, { "question": "DB InfraGO", - "icon": "./assets/data/nsi/logos/dbinfrago-2b1420.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbinfrago-2b1420.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328449,7 +328662,7 @@ }, { "question": "Denns BioMarkt", - "icon": "./assets/data/nsi/logos/dennsbiomarkt-38ba6f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dennsbiomarkt-38ba6f.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328478,7 +328691,7 @@ }, { "question": "Deutsche Bahn", - "icon": "./assets/data/nsi/logos/deutschebahn-2b1420.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebahn-2b1420.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328493,7 +328706,7 @@ }, { "question": "Deutsche Telekom AG", - "icon": "./assets/data/nsi/logos/deutschetelekomag-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschetelekomag-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328508,7 +328721,7 @@ }, { "question": "DHL", - "icon": "./assets/data/nsi/logos/dhl-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhl-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328523,7 +328736,7 @@ }, { "question": "Die Autobahn GmbH des Bundes", - "icon": "./assets/data/nsi/logos/dieautobahngmbhdesbundes-2b1420.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dieautobahngmbhdesbundes-2b1420.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328552,7 +328765,7 @@ }, { "question": "Divia", - "icon": "./assets/data/nsi/logos/divia-6e3818.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/divia-6e3818.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328567,7 +328780,7 @@ }, { "question": "DLR", - "icon": "./assets/data/nsi/logos/dlr-2b1420.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dlr-2b1420.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328582,7 +328795,7 @@ }, { "question": "dm (Česko)", - "icon": "./assets/data/nsi/logos/dm-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dm-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328597,7 +328810,7 @@ }, { "question": "dm (Deutschland)", - "icon": "./assets/data/nsi/logos/dm-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dm-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328612,7 +328825,7 @@ }, { "question": "dm (Österreich)", - "icon": "./assets/data/nsi/logos/dm-b9389d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dm-b9389d.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328627,7 +328840,7 @@ }, { "question": "DSAT", - "icon": "./assets/data/nsi/logos/dsat-3810f7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dsat-3810f7.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328642,7 +328855,7 @@ }, { "question": "Durham County Council", - "icon": "./assets/data/nsi/logos/durhamcountycouncil-5f1c77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/durhamcountycouncil-5f1c77.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328657,7 +328870,7 @@ }, { "question": "DVG", - "icon": "./assets/data/nsi/logos/dvg-2b1420.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dvg-2b1420.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328672,7 +328885,7 @@ }, { "question": "e-TOLL", - "icon": "./assets/data/nsi/logos/etoll-e50517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/etoll-e50517.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328687,7 +328900,7 @@ }, { "question": "E.Leclerc", - "icon": "./assets/data/nsi/logos/eleclerc-e10d05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eleclerc-e10d05.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328702,7 +328915,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328726,7 +328939,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -328765,7 +328978,7 @@ }, { "question": "EMS-CHEMIE", - "icon": "./assets/data/nsi/logos/emschemie-db5bb4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/emschemie-db5bb4.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328794,7 +329007,7 @@ }, { "question": "enercity", - "icon": "./assets/data/nsi/logos/enercity-7368ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enercity-7368ba.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328809,7 +329022,7 @@ }, { "question": "Eni", - "icon": "./assets/data/nsi/logos/eni-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eni-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328824,7 +329037,7 @@ }, { "question": "Erste Bank", - "icon": "./assets/data/nsi/logos/erstebank-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erstebank-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328839,7 +329052,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328854,7 +329067,7 @@ }, { "question": "EVN", - "icon": "./assets/data/nsi/logos/evn-b9389d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-b9389d.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328869,7 +329082,7 @@ }, { "question": "Federal Office for the Protection of the Constitution and Counterterrorism", - "icon": "./assets/data/nsi/logos/federalofficefortheprotectionoftheconstitutionandcounterterrorism-b9389d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/federalofficefortheprotectionoftheconstitutionandcounterterrorism-b9389d.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328884,7 +329097,7 @@ }, { "question": "Federale Politie", - "icon": "./assets/data/nsi/logos/federalepolitie-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/federalepolitie-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328899,7 +329112,7 @@ }, { "question": "Flock Safety", - "icon": "./assets/data/nsi/logos/flocksafety-cf76d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flocksafety-cf76d3.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328914,7 +329127,7 @@ }, { "question": "Florida Department of Transportation", - "icon": "./assets/data/nsi/logos/floridadepartmentoftransportation-9eb20b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/floridadepartmentoftransportation-9eb20b.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328931,7 +329144,7 @@ }, { "question": "Flughafen Wien AG", - "icon": "./assets/data/nsi/logos/flughafenwienag-6f6c15.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/flughafenwienag-6f6c15.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -328983,7 +329196,7 @@ }, { "question": "Gemeente Groningen", - "icon": "./assets/data/nsi/logos/gemeentegroningen-4a64b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentegroningen-4a64b4.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -328998,7 +329211,7 @@ }, { "question": "Gemeente Nijmegen", - "icon": "./assets/data/nsi/logos/gemeentenijmegen-4a64b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeentenijmegen-4a64b4.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329013,7 +329226,7 @@ }, { "question": "Gemeente Rotterdam", - "icon": "./assets/data/nsi/logos/gemeenterotterdam-4a64b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeenterotterdam-4a64b4.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329030,7 +329243,7 @@ }, { "question": "Generalna Dyrekcja Dróg Krajowych i Autostrad", - "icon": "./assets/data/nsi/logos/generalnadyrekcjadrogkrajowychiautostrad-e50517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/generalnadyrekcjadrogkrajowychiautostrad-e50517.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329046,7 +329259,7 @@ }, { "question": "Georgia Department of Transportation", - "icon": "./assets/data/nsi/logos/georgiadepartmentoftransportation-17a2f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/georgiadepartmentoftransportation-17a2f1.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329077,7 +329290,7 @@ }, { "question": "H&M", - "icon": "./assets/data/nsi/logos/handm-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/handm-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329092,7 +329305,7 @@ }, { "question": "Hackney Council", - "icon": "./assets/data/nsi/logos/hackneycouncil-e6c6e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hackneycouncil-e6c6e4.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329107,7 +329320,7 @@ }, { "question": "Hamburger Hochbahn AG", - "icon": "./assets/data/nsi/logos/hamburgerhochbahnag-2b1420.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamburgerhochbahnag-2b1420.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -329122,7 +329335,7 @@ }, { "question": "Hawaii Department of Transportation", - "icon": "./assets/data/nsi/logos/hawaiidepartmentoftransportation-4ea7da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiidepartmentoftransportation-4ea7da.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329139,7 +329352,7 @@ }, { "question": "Hebe", - "icon": "./assets/data/nsi/logos/hebe-e50517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hebe-e50517.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329154,7 +329367,7 @@ }, { "question": "HEM", - "icon": "./assets/data/nsi/logos/hem-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hem-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329192,7 +329405,7 @@ }, { "question": "Hogeschool van Amsterdam", - "icon": "./assets/data/nsi/logos/hogeschoolvanamsterdam-4a64b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hogeschoolvanamsterdam-4a64b4.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329207,7 +329420,7 @@ }, { "question": "Hornbach", - "icon": "./assets/data/nsi/logos/hornbach-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hornbach-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329222,7 +329435,7 @@ }, { "question": "HVV", - "icon": "./assets/data/nsi/logos/hamburgerverkehrsverbund-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hamburgerverkehrsverbund-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329263,7 +329476,7 @@ }, { "question": "Illinois Department of Transportation", - "icon": "./assets/data/nsi/logos/illinoisdepartmentoftransportation-8cb4a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoisdepartmentoftransportation-8cb4a4.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329280,7 +329493,7 @@ }, { "question": "Illinois State Police", - "icon": "./assets/data/nsi/logos/illinoisstatepolice-8cb4a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoisstatepolice-8cb4a4.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329296,7 +329509,7 @@ }, { "question": "Indiana Department of Transportation", - "icon": "./assets/data/nsi/logos/indianadepartmentoftransportation-0b40aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianadepartmentoftransportation-0b40aa.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329331,7 +329544,7 @@ }, { "question": "Intermarché", - "icon": "./assets/data/nsi/logos/intermarche-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/intermarche-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329360,7 +329573,7 @@ }, { "question": "Iowa Department of Transportation", - "icon": "./assets/data/nsi/logos/iowadepartmentoftransportation-fff1d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iowadepartmentoftransportation-fff1d2.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329377,7 +329590,7 @@ }, { "question": "JET", - "icon": "./assets/data/nsi/logos/jet-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jet-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329392,7 +329605,7 @@ }, { "question": "Johnson & Wales University", - "icon": "./assets/data/nsi/logos/johnsonandwalesuniversity-373ed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/johnsonandwalesuniversity-373ed2.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329416,7 +329629,7 @@ }, { "question": "Kansas Department of Transportation", - "icon": "./assets/data/nsi/logos/kansasdepartmentoftransportation-ab554c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kansasdepartmentoftransportation-ab554c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329433,7 +329646,7 @@ }, { "question": "Kaufland", - "icon": "./assets/data/nsi/logos/kaufland-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kaufland-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329476,7 +329689,7 @@ }, { "question": "KiK", - "icon": "./assets/data/nsi/logos/kik-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kik-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329523,7 +329736,7 @@ }, { "question": "La Banque Postale", - "icon": "./assets/data/nsi/logos/labanquepostale-e10d05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/labanquepostale-e10d05.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329538,7 +329751,7 @@ }, { "question": "La Poste", - "icon": "./assets/data/nsi/logos/laposte-e10d05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/laposte-e10d05.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329553,7 +329766,7 @@ }, { "question": "Land Oberösterreich", - "icon": "./assets/data/nsi/logos/landoberosterreich-b6b08f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/landoberosterreich-b6b08f.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329568,7 +329781,7 @@ }, { "question": "Land Tirol", - "icon": "./assets/data/nsi/logos/landtirol-668f50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landtirol-668f50.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329612,7 +329825,7 @@ }, { "question": "Leroy Merlin", - "icon": "./assets/data/nsi/logos/leroymerlin-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leroymerlin-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329627,7 +329840,7 @@ }, { "question": "Lidl", - "icon": "./assets/data/nsi/logos/lidl-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lidl-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329642,7 +329855,7 @@ }, { "question": "Lightsource BP", - "icon": "./assets/data/nsi/logos/lightsourcebp-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lightsourcebp-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329666,7 +329879,7 @@ }, { "question": "London Borough of Newham", - "icon": "./assets/data/nsi/logos/londonboroughofnewham-2402d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/londonboroughofnewham-2402d9.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329695,7 +329908,7 @@ }, { "question": "Louisiana Department of Transportation & Development", - "icon": "./assets/data/nsi/logos/louisianadepartmentoftransportationanddevelopment-5fc25c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/louisianadepartmentoftransportationanddevelopment-5fc25c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329712,7 +329925,7 @@ }, { "question": "Lyceum of the Philippines University", - "icon": "./assets/data/nsi/logos/lyceumofthephilippinesuniversity-0dafa0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lyceumofthephilippinesuniversity-0dafa0.png", "osmTags": { "and": [ "man_made=surveillance", @@ -329736,7 +329949,7 @@ }, { "question": "Maine Department of Transportation", - "icon": "./assets/data/nsi/logos/mainedepartmentoftransportation-a83068.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mainedepartmentoftransportation-a83068.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -329935,7 +330148,7 @@ }, { "question": "Mairie de Paris", - "icon": "./assets/data/nsi/logos/mairiedeparis-ddc08a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mairiedeparis-ddc08a.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330066,7 +330279,7 @@ }, { "question": "Maryland Department of Transportation", - "icon": "./assets/data/nsi/logos/marylanddepartmentoftransportation-a4529d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marylanddepartmentoftransportation-a4529d.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330083,7 +330296,7 @@ }, { "question": "Massachusetts Bay Transportation Authority", - "icon": "./assets/data/nsi/logos/massachusettsbaytransportationauthority-13fd93.png", + "icon": "https://data.mapcomplete.org/nsi//logos/massachusettsbaytransportationauthority-13fd93.png", "osmTags": { "and": [ "man_made=surveillance", @@ -330099,7 +330312,7 @@ }, { "question": "Massachusetts Department of Transportation", - "icon": "./assets/data/nsi/logos/massachusettsdepartmentoftransportation-13fd93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/massachusettsdepartmentoftransportation-13fd93.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330125,7 +330338,7 @@ }, { "question": "Max Rubner-Institut", - "icon": "./assets/data/nsi/logos/maxrubnerinstitut-2b1420.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/maxrubnerinstitut-2b1420.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -330140,7 +330353,7 @@ }, { "question": "McDonald's", - "icon": "./assets/data/nsi/logos/mcdonalds-50eddc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mcdonalds-50eddc.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330155,7 +330368,7 @@ }, { "question": "MDČR", - "icon": "./assets/data/nsi/logos/ministerstvodopravyceskerepubliky-5f01ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstvodopravyceskerepubliky-5f01ff.png", "osmTags": { "and": [ "man_made=surveillance", @@ -330171,7 +330384,7 @@ }, { "question": "Město Olomouc", - "icon": "./assets/data/nsi/logos/mestoolomouc-5f01ff.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestoolomouc-5f01ff.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -330186,7 +330399,7 @@ }, { "question": "Město Plzeň", - "icon": "./assets/data/nsi/logos/mestoplzen-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestoplzen-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330201,7 +330414,7 @@ }, { "question": "Mesto Ružomberok", - "icon": "./assets/data/nsi/logos/mestoruzomberok-77e4ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mestoruzomberok-77e4ef.png", "osmTags": { "and": [ "man_made=surveillance", @@ -330314,7 +330527,7 @@ }, { "question": "Městská policie Brno", - "icon": "./assets/data/nsi/logos/mestskapoliciebrno-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestskapoliciebrno-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330413,7 +330626,7 @@ }, { "question": "Městská policie Frýdlant nad Ostravicí", - "icon": "./assets/data/nsi/logos/mestskapoliciefrydlantnadostravici-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestskapoliciefrydlantnadostravici-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330778,7 +330991,7 @@ }, { "question": "Městská policie Opava", - "icon": "./assets/data/nsi/logos/mestskapolicieopava-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestskapolicieopava-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330807,7 +331020,7 @@ }, { "question": "Městská policie Ostrava", - "icon": "./assets/data/nsi/logos/mestskapolicieostrava-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestskapolicieostrava-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330836,7 +331049,7 @@ }, { "question": "Městská policie Přerov", - "icon": "./assets/data/nsi/logos/mestskapolicieprerov-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestskapolicieprerov-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -330907,7 +331120,7 @@ }, { "question": "Městská policie Roudnice nad Labem", - "icon": "./assets/data/nsi/logos/mestskapolicieroudnicenadlabem-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mestskapolicieroudnicenadlabem-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331216,7 +331429,7 @@ }, { "question": "Métropole de Lyon", - "icon": "./assets/data/nsi/logos/metropoledelyon-276786.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropoledelyon-276786.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331231,7 +331444,7 @@ }, { "question": "Metropolitan Manila Development Authority", - "icon": "./assets/data/nsi/logos/metropolitanmaniladevelopmentauthority-298953.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolitanmaniladevelopmentauthority-298953.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331246,7 +331459,7 @@ }, { "question": "Michigan Department of Transportation", - "icon": "./assets/data/nsi/logos/michigandepartmentoftransportation-585cc8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/michigandepartmentoftransportation-585cc8.png", "osmTags": { "and": [ "man_made=surveillance", @@ -331263,7 +331476,7 @@ }, { "question": "Micro Center", - "icon": "./assets/data/nsi/logos/microcenter-cf76d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/microcenter-cf76d3.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331278,7 +331491,7 @@ }, { "question": "Ministry of Defence", - "icon": "./assets/data/nsi/logos/ministryofdefence-74812b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofdefence-74812b.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331293,7 +331506,7 @@ }, { "question": "Ministry of Transportation of Ontario", - "icon": "./assets/data/nsi/logos/ministryoftransportationofontario-35e98c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryoftransportationofontario-35e98c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -331308,7 +331521,7 @@ }, { "question": "Minnesota Department of Transportation", - "icon": "./assets/data/nsi/logos/minnesotadepartmentoftransportation-b6cd3f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotadepartmentoftransportation-b6cd3f.png", "osmTags": { "and": [ "man_made=surveillance", @@ -331325,7 +331538,7 @@ }, { "question": "Missouri Department of Transportation", - "icon": "./assets/data/nsi/logos/missouridepartmentoftransportation-23dcdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/missouridepartmentoftransportation-23dcdc.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331342,7 +331555,7 @@ }, { "question": "MIT", - "icon": "./assets/data/nsi/logos/mit-13fd93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mit-13fd93.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331418,7 +331631,7 @@ }, { "question": "Municipalidad de Funes", - "icon": "./assets/data/nsi/logos/municipalidaddefunes-069ba6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddefunes-069ba6.png", "osmTags": { "and": [ "man_made=surveillance", @@ -331447,7 +331660,7 @@ }, { "question": "Municipalidad de Rosario", - "icon": "./assets/data/nsi/logos/municipalidadderosario-069ba6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidadderosario-069ba6.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -331518,7 +331731,7 @@ }, { "question": "Nanyang Polytechnic", - "icon": "./assets/data/nsi/logos/nanyangpolytechnic-1886fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nanyangpolytechnic-1886fd.png", "osmTags": { "and": [ "man_made=surveillance", @@ -331533,7 +331746,7 @@ }, { "question": "National Highways", - "icon": "./assets/data/nsi/logos/nationalhighways-36d2be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalhighways-36d2be.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331549,7 +331762,7 @@ }, { "question": "National Park Service", - "icon": "./assets/data/nsi/logos/nationalparkservice-cf76d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalparkservice-cf76d3.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331565,7 +331778,7 @@ }, { "question": "National Security Agency", - "icon": "./assets/data/nsi/logos/nationalsecurityagency-cf76d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalsecurityagency-cf76d3.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331589,7 +331802,7 @@ }, { "question": "Nebraska Department of Transportation", - "icon": "./assets/data/nsi/logos/nebraskadepartmentoftransportation-e249dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nebraskadepartmentoftransportation-e249dc.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331620,7 +331833,7 @@ }, { "question": "Nevada Department of Transportation", - "icon": "./assets/data/nsi/logos/nevadadepartmentoftransportation-4a48c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nevadadepartmentoftransportation-4a48c1.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331651,7 +331864,7 @@ }, { "question": "New Hampshire Department of Transportation", - "icon": "./assets/data/nsi/logos/newhampshiredepartmentoftransportation-69a4af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newhampshiredepartmentoftransportation-69a4af.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331668,7 +331881,7 @@ }, { "question": "New Jersey Department of Transportation", - "icon": "./assets/data/nsi/logos/newjerseydepartmentoftransportation-e4819c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newjerseydepartmentoftransportation-e4819c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331685,7 +331898,7 @@ }, { "question": "New Mexico Department of Transportation", - "icon": "./assets/data/nsi/logos/newmexicodepartmentoftransportation-52b3ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newmexicodepartmentoftransportation-52b3ac.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331702,7 +331915,7 @@ }, { "question": "New York State Department of Transportation", - "icon": "./assets/data/nsi/logos/newyorkstatedepartmentoftransportation-e862e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentoftransportation-e862e8.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331719,7 +331932,7 @@ }, { "question": "New York State Thruway Authority", - "icon": "./assets/data/nsi/logos/newyorkstatethruwayauthority-e862e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatethruwayauthority-e862e8.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331736,7 +331949,7 @@ }, { "question": "NMBS/SNCB", - "icon": "./assets/data/nsi/logos/nmbssncb-fe27ed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nmbssncb-fe27ed.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -331753,7 +331966,7 @@ }, { "question": "North Carolina Department of Transportation", - "icon": "./assets/data/nsi/logos/northcarolinadepartmentoftransportation-1db201.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northcarolinadepartmentoftransportation-1db201.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331770,7 +331983,7 @@ }, { "question": "North Dakota Department of Transportation", - "icon": "./assets/data/nsi/logos/northdakotadepartmentoftransportation-58741c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northdakotadepartmentoftransportation-58741c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -331796,7 +332009,7 @@ }, { "question": "Novomatic AG", - "icon": "./assets/data/nsi/logos/novomaticag-063466.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novomaticag-063466.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331811,7 +332024,7 @@ }, { "question": "ÖBB", - "icon": "./assets/data/nsi/logos/obb-b9389d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obb-b9389d.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331863,7 +332076,7 @@ }, { "question": "Oesterreichische Nationalbank", - "icon": "./assets/data/nsi/logos/oesterreichischenationalbank-b9389d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/oesterreichischenationalbank-b9389d.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -331878,7 +332091,7 @@ }, { "question": "Ohio Department of Transportation", - "icon": "./assets/data/nsi/logos/ohiodepartmentoftransportation-545962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiodepartmentoftransportation-545962.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331895,7 +332108,7 @@ }, { "question": "Oklahoma Department of Transportation", - "icon": "./assets/data/nsi/logos/oklahomadepartmentoftransportation-440757.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomadepartmentoftransportation-440757.png", "osmTags": { "and": [ "man_made=surveillance", @@ -331921,7 +332134,7 @@ }, { "question": "OMV", - "icon": "./assets/data/nsi/logos/omv-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omv-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -331936,7 +332149,7 @@ }, { "question": "Orange", - "icon": "./assets/data/nsi/logos/orange-3bfa97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orange-3bfa97.png", "osmTags": { "and": [ "man_made=surveillance", @@ -331967,7 +332180,7 @@ }, { "question": "Orlen", - "icon": "./assets/data/nsi/logos/orlen-e50517.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlen-e50517.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332033,7 +332246,7 @@ }, { "question": "Pennsylvania Department of Transportation", - "icon": "./assets/data/nsi/logos/pennsylvaniadepartmentoftransportation-00360b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pennsylvaniadepartmentoftransportation-00360b.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332050,7 +332263,7 @@ }, { "question": "Penny", - "icon": "./assets/data/nsi/logos/penny-9c1a6c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/penny-9c1a6c.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -332083,7 +332296,7 @@ }, { "question": "Pôle universitaire \"Léonard de Vinci\"", - "icon": "./assets/data/nsi/logos/poleuniversitaireleonarddevinci-ddc08a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/poleuniversitaireleonarddevinci-ddc08a.png", "osmTags": { "and": [ "man_made=surveillance", @@ -332107,7 +332320,7 @@ }, { "question": "Police nationale (France)", - "icon": "./assets/data/nsi/logos/policenationale-e10d05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policenationale-e10d05.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332131,7 +332344,7 @@ }, { "question": "Polícia Militar do Estado de Santa Catarina", - "icon": "./assets/data/nsi/logos/policiamilitardoestadodesantacatarina-db2979.png", + "icon": "https://data.mapcomplete.org/nsi//logos/policiamilitardoestadodesantacatarina-db2979.png", "osmTags": { "and": [ "man_made=surveillance", @@ -332147,7 +332360,7 @@ }, { "question": "Polícia SR", - "icon": "./assets/data/nsi/logos/policiasr-77e4ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policiasr-77e4ef.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332162,7 +332375,7 @@ }, { "question": "Policie České Republiky", - "icon": "./assets/data/nsi/logos/policieceskerepubliky-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/policieceskerepubliky-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332177,7 +332390,7 @@ }, { "question": "Politiezone Blankenberge", - "icon": "./assets/data/nsi/logos/politiezoneblankenberge-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/politiezoneblankenberge-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332192,7 +332405,7 @@ }, { "question": "Politiezone Leuven", - "icon": "./assets/data/nsi/logos/politiezoneleuven-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/politiezoneleuven-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332207,7 +332420,7 @@ }, { "question": "Politiezone Zennevallei", - "icon": "./assets/data/nsi/logos/politiezonezennevallei-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/politiezonezennevallei-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332314,7 +332527,7 @@ }, { "question": "Polomarket", - "icon": "./assets/data/nsi/logos/polomarket-e50517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polomarket-e50517.png", "osmTags": { "and": [ "man_made=surveillance", @@ -332343,7 +332556,7 @@ }, { "question": "Port Lotniczy Łódź", - "icon": "./assets/data/nsi/logos/portlotniczylodz-e50517.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/portlotniczylodz-e50517.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -332358,7 +332571,7 @@ }, { "question": "Préfecture de police de Paris", - "icon": "./assets/data/nsi/logos/prefecturedepolicedeparis-ddc08a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prefecturedepolicedeparis-ddc08a.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332401,7 +332614,7 @@ }, { "question": "Provincie Groningen", - "icon": "./assets/data/nsi/logos/provinciegroningen-4a64b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/provinciegroningen-4a64b4.png", "osmTags": { "and": [ "man_made=surveillance", @@ -332430,7 +332643,7 @@ }, { "question": "RATP", - "icon": "./assets/data/nsi/logos/ratp-3bfa97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ratp-3bfa97.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332468,7 +332681,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-00fbd3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-00fbd3.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -332483,7 +332696,7 @@ }, { "question": "Rhein-Neckar-Verkehr", - "icon": "./assets/data/nsi/logos/rheinneckarverkehr-2b1420.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinneckarverkehr-2b1420.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -332498,7 +332711,7 @@ }, { "question": "Rhode Island Department of Transportation", - "icon": "./assets/data/nsi/logos/rhodeislanddepartmentoftransportation-373ed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodeislanddepartmentoftransportation-373ed2.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332515,7 +332728,7 @@ }, { "question": "Rhode Island School of Design", - "icon": "./assets/data/nsi/logos/rhodeislandschoolofdesign-373ed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodeislandschoolofdesign-373ed2.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332544,7 +332757,7 @@ }, { "question": "Rijkswaterstaat", - "icon": "./assets/data/nsi/logos/rijkswaterstaat-4a64b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rijkswaterstaat-4a64b4.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332587,7 +332800,7 @@ }, { "question": "safe.brussels", - "icon": "./assets/data/nsi/logos/safebrussels-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/safebrussels-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332602,7 +332815,7 @@ }, { "question": "SANEF", - "icon": "./assets/data/nsi/logos/sanef-3bfa97.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sanef-3bfa97.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -332635,7 +332848,7 @@ }, { "question": "Schwarzwaldmilch", - "icon": "./assets/data/nsi/logos/schwarzwaldmilch-c3b0f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/schwarzwaldmilch-c3b0f7.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332688,7 +332901,7 @@ }, { "question": "Sedgemoor District Council", - "icon": "./assets/data/nsi/logos/sedgemoordistrictcouncil-2d7413.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sedgemoordistrictcouncil-2d7413.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332704,7 +332917,7 @@ }, { "question": "SETRAM", - "icon": "./assets/data/nsi/logos/setram-9ba658.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/setram-9ba658.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332719,7 +332932,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-9c1a6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-9c1a6c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332734,7 +332947,7 @@ }, { "question": "Siemens AG", - "icon": "./assets/data/nsi/logos/siemensag-38ba6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/siemensag-38ba6f.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332749,7 +332962,7 @@ }, { "question": "Slippery Rock University", - "icon": "./assets/data/nsi/logos/slipperyrockuniversity-00360b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slipperyrockuniversity-00360b.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332764,7 +332977,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-3bfa97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-3bfa97.png", "osmTags": { "and": [ "man_made=surveillance", @@ -332779,7 +332992,7 @@ }, { "question": "Société Générale", - "icon": "./assets/data/nsi/logos/societegenerale-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/societegenerale-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -332803,7 +333016,7 @@ }, { "question": "Somerset Council", - "icon": "./assets/data/nsi/logos/somersetcouncil-2d7413.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/somersetcouncil-2d7413.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332828,7 +333041,7 @@ }, { "question": "South Carolina Department of Transportation", - "icon": "./assets/data/nsi/logos/southcarolinadepartmentoftransportation-db0f7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southcarolinadepartmentoftransportation-db0f7d.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332845,7 +333058,7 @@ }, { "question": "South Dakota Department of Transportation", - "icon": "./assets/data/nsi/logos/southdakotadepartmentoftransportation-927751.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southdakotadepartmentoftransportation-927751.png", "osmTags": { "and": [ "man_made=surveillance", @@ -332862,7 +333075,7 @@ }, { "question": "Sparkasse (Deutschland)", - "icon": "./assets/data/nsi/logos/sparkasse-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkasse-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332877,7 +333090,7 @@ }, { "question": "Sparkasse Spree-Neiße", - "icon": "./assets/data/nsi/logos/sparkassespreeneisse-d67f12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sparkassespreeneisse-d67f12.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332919,7 +333132,7 @@ }, { "question": "Springfield Police Department", - "icon": "./assets/data/nsi/logos/springfieldpolicedepartment-8cb4a4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldpolicedepartment-8cb4a4.png", "osmTags": { "and": [ "man_made=surveillance", @@ -332934,7 +333147,7 @@ }, { "question": "Stad Antwerpen", - "icon": "./assets/data/nsi/logos/stadantwerpen-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadantwerpen-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332949,7 +333162,7 @@ }, { "question": "Stad Brugge", - "icon": "./assets/data/nsi/logos/stadbrugge-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadbrugge-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332964,7 +333177,7 @@ }, { "question": "Stad Leuven", - "icon": "./assets/data/nsi/logos/stadleuven-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadleuven-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -332979,7 +333192,7 @@ }, { "question": "Stadt Ahlen", - "icon": "./assets/data/nsi/logos/stadtahlen-bddc17.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtahlen-bddc17.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -332994,7 +333207,7 @@ }, { "question": "Stadt Bonn", - "icon": "./assets/data/nsi/logos/stadtbonn-bddc17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbonn-bddc17.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333009,7 +333222,7 @@ }, { "question": "Stadt Hamm", - "icon": "./assets/data/nsi/logos/stadthamm-bddc17.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadthamm-bddc17.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -333024,7 +333237,7 @@ }, { "question": "Stadt Karlsruhe", - "icon": "./assets/data/nsi/logos/stadtkarlsruhe-c3b0f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-c3b0f7.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333039,7 +333252,7 @@ }, { "question": "Stadt Mannheim", - "icon": "./assets/data/nsi/logos/stadtmannheim-c3b0f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtmannheim-c3b0f7.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333054,7 +333267,7 @@ }, { "question": "Stadt Stuttgart", - "icon": "./assets/data/nsi/logos/stadtstuttgart-c3b0f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtstuttgart-c3b0f7.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333069,7 +333282,7 @@ }, { "question": "Stadt und Land", - "icon": "./assets/data/nsi/logos/stadtundland-afce8c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtundland-afce8c.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -333098,7 +333311,7 @@ }, { "question": "Stadt Witten", - "icon": "./assets/data/nsi/logos/stadtwitten-bddc17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwitten-bddc17.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333113,7 +333326,7 @@ }, { "question": "StadtGalerie Witten", - "icon": "./assets/data/nsi/logos/stadtgaleriewitten-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtgaleriewitten-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333128,7 +333341,7 @@ }, { "question": "Stadtwerke Heilbronn GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkeheilbronngmbh-c3b0f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeheilbronngmbh-c3b0f7.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333143,7 +333356,7 @@ }, { "question": "Stadtwerke Witten", - "icon": "./assets/data/nsi/logos/stadtwerkewitten-bddc17.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-bddc17.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333158,7 +333371,7 @@ }, { "question": "Star", - "icon": "./assets/data/nsi/logos/star-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/star-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333173,7 +333386,7 @@ }, { "question": "Statens vegvesen", - "icon": "./assets/data/nsi/logos/statensvegvesen-be4042.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statensvegvesen-be4042.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333188,7 +333401,7 @@ }, { "question": "Steiermärkische Sparkasse", - "icon": "./assets/data/nsi/logos/steiermarkischesparkasse-b9389d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/steiermarkischesparkasse-b9389d.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333203,7 +333416,7 @@ }, { "question": "Stellantis", - "icon": "./assets/data/nsi/logos/stellantis-74812b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stellantis-74812b.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333245,7 +333458,7 @@ }, { "question": "Sudtiroler Sparkasse", - "icon": "./assets/data/nsi/logos/sudtirolersparkasse-00fbd3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sudtirolersparkasse-00fbd3.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333274,7 +333487,7 @@ }, { "question": "Super U", - "icon": "./assets/data/nsi/logos/superu-e10d05.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/superu-e10d05.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333289,7 +333502,7 @@ }, { "question": "Sûreté Ferroviaire SNCF", - "icon": "./assets/data/nsi/logos/sureteferroviairesncf-3bfa97.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sureteferroviairesncf-3bfa97.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -333304,7 +333517,7 @@ }, { "question": "SWG", - "icon": "./assets/data/nsi/logos/swg-011884.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swg-011884.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333328,7 +333541,7 @@ }, { "question": "SŽDC", - "icon": "./assets/data/nsi/logos/szdc-5f01ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/szdc-5f01ff.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333357,7 +333570,7 @@ }, { "question": "Target", - "icon": "./assets/data/nsi/logos/target-cf76d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/target-cf76d3.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333372,7 +333585,7 @@ }, { "question": "Teta", - "icon": "./assets/data/nsi/logos/teta-9137b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/teta-9137b5.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333387,7 +333600,7 @@ }, { "question": "Texas Department of Transportation", - "icon": "./assets/data/nsi/logos/texasdepartmentoftransportation-46f947.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasdepartmentoftransportation-46f947.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333404,7 +333617,7 @@ }, { "question": "The University of Edinburgh", - "icon": "./assets/data/nsi/logos/theuniversityofedinburgh-cadc88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/theuniversityofedinburgh-cadc88.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333419,7 +333632,7 @@ }, { "question": "Tisséo", - "icon": "./assets/data/nsi/logos/tisseo-54417e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tisseo-54417e.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333434,7 +333647,7 @@ }, { "question": "TNT", - "icon": "./assets/data/nsi/logos/tnt-9c1a6c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tnt-9c1a6c.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -333449,7 +333662,7 @@ }, { "question": "Toll Collect", - "icon": "./assets/data/nsi/logos/tollcollect-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tollcollect-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333464,7 +333677,7 @@ }, { "question": "TotalEnergies", - "icon": "./assets/data/nsi/logos/totalenergies-9c1a6c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalenergies-9c1a6c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333479,7 +333692,7 @@ }, { "question": "Traffic Scotland", - "icon": "./assets/data/nsi/logos/trafficscotland-cadc88.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trafficscotland-cadc88.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333495,7 +333708,7 @@ }, { "question": "Trafikverket", - "icon": "./assets/data/nsi/logos/trafikverket-926ff3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trafikverket-926ff3.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333533,7 +333746,7 @@ }, { "question": "Transport for London", - "icon": "./assets/data/nsi/logos/transportforlondon-36d2be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transportforlondon-36d2be.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333549,7 +333762,7 @@ }, { "question": "Trenes Argentinos", - "icon": "./assets/data/nsi/logos/trenesargentinos-ae8db7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-ae8db7.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -333592,7 +333805,7 @@ }, { "question": "TU Wien", - "icon": "./assets/data/nsi/logos/tuwien-9815c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tuwien-9815c8.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333607,7 +333820,7 @@ }, { "question": "Tufts University", - "icon": "./assets/data/nsi/logos/tuftsuniversity-13fd93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tuftsuniversity-13fd93.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333622,7 +333835,7 @@ }, { "question": "Turmöl", - "icon": "./assets/data/nsi/logos/turmol-b9389d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/turmol-b9389d.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333637,7 +333850,7 @@ }, { "question": "UMass Lowell", - "icon": "./assets/data/nsi/logos/umasslowell-13fd93.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/umasslowell-13fd93.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333652,7 +333865,7 @@ }, { "question": "Universitätsklinikum Schleswig-Holstein", - "icon": "./assets/data/nsi/logos/universitatsklinikumschleswigholstein-2b1420.png", + "icon": "https://data.mapcomplete.org/nsi//logos/universitatsklinikumschleswigholstein-2b1420.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333667,7 +333880,7 @@ }, { "question": "Université catholique de Louvain", - "icon": "./assets/data/nsi/logos/universitecatholiquedelouvain-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitecatholiquedelouvain-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333696,7 +333909,7 @@ }, { "question": "Université Paul Sabatier", - "icon": "./assets/data/nsi/logos/universitepaulsabatier-54417e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/universitepaulsabatier-54417e.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333734,7 +333947,7 @@ }, { "question": "Urząd Miasta Helu", - "icon": "./assets/data/nsi/logos/urzadmiastahelu-e50517.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/urzadmiastahelu-e50517.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -333763,7 +333976,7 @@ }, { "question": "Utah Department of Transportation", - "icon": "./assets/data/nsi/logos/utahdepartmentoftransportation-0839c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/utahdepartmentoftransportation-0839c4.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333780,7 +333993,7 @@ }, { "question": "Vejdirektoratet", - "icon": "./assets/data/nsi/logos/vejdirektoratet-e9585f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vejdirektoratet-e9585f.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333795,7 +334008,7 @@ }, { "question": "VerbundVolksbank OWL", - "icon": "./assets/data/nsi/logos/verbundvolksbankowl-2b1420.png", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundvolksbankowl-2b1420.png", "osmTags": { "and": [ "man_made=surveillance", @@ -333810,7 +334023,7 @@ }, { "question": "Verkehrsbetriebe Karlsruhe GmbH", - "icon": "./assets/data/nsi/logos/verkehrsbetriebekarlsruhegmbh-2b1420.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verkehrsbetriebekarlsruhegmbh-2b1420.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -333825,7 +334038,7 @@ }, { "question": "Vermont Agency of Transportation", - "icon": "./assets/data/nsi/logos/vermontagencyoftransportation-21d333.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontagencyoftransportation-21d333.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334080,7 +334293,7 @@ }, { "question": "Ville de Montréal", - "icon": "./assets/data/nsi/logos/villedemontreal-89d7b3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedemontreal-89d7b3.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -334109,6 +334322,7 @@ }, { "question": "Ville de Papeete", + "icon": "https://data.mapcomplete.org/nsi//logos/villedepapeete-9cba75.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334123,7 +334337,7 @@ }, { "question": "Ville de Pirae", - "icon": "./assets/data/nsi/logos/villedepirae-9cba75.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/villedepirae-9cba75.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -334301,7 +334515,7 @@ }, { "question": "Virginia Department of Transportation", - "icon": "./assets/data/nsi/logos/virginiadepartmentoftransportation-25e72c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentoftransportation-25e72c.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334318,7 +334532,7 @@ }, { "question": "Virginia Tech", - "icon": "./assets/data/nsi/logos/virginiatech-25e72c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiatech-25e72c.png", "osmTags": { "and": [ "man_made=surveillance", @@ -334342,7 +334556,7 @@ }, { "question": "Voies navigables de France", - "icon": "./assets/data/nsi/logos/voiesnavigablesdefrance-3bfa97.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/voiesnavigablesdefrance-3bfa97.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -334357,7 +334571,7 @@ }, { "question": "Volksbank (Österreich)", - "icon": "./assets/data/nsi/logos/volksbank-b9389d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/volksbank-b9389d.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -334413,7 +334627,7 @@ }, { "question": "Washington State Department of Transportation", - "icon": "./assets/data/nsi/logos/washingtonstatedepartmentoftransportation-a51efb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonstatedepartmentoftransportation-a51efb.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334471,7 +334685,7 @@ }, { "question": "West Virginia Department of Transportation", - "icon": "./assets/data/nsi/logos/westvirginiadepartmentoftransportation-87d022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westvirginiadepartmentoftransportation-87d022.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334488,7 +334702,7 @@ }, { "question": "Western Sydney University", - "icon": "./assets/data/nsi/logos/westernsydneyuniversity-55d639.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westernsydneyuniversity-55d639.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334503,7 +334717,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-b9389d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-b9389d.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334518,7 +334732,7 @@ }, { "question": "Wiener Linien", - "icon": "./assets/data/nsi/logos/wienerlinien-063466.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienerlinien-063466.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334533,7 +334747,7 @@ }, { "question": "Wiener Stadthalle", - "icon": "./assets/data/nsi/logos/wienerstadthalle-9815c8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienerstadthalle-9815c8.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -334548,7 +334762,7 @@ }, { "question": "Wisconsin Department of Transportation", - "icon": "./assets/data/nsi/logos/wisconsindepartmentoftransportation-13167a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsindepartmentoftransportation-13167a.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334583,7 +334797,7 @@ }, { "question": "WU Wien", - "icon": "./assets/data/nsi/logos/wuwien-9815c8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wuwien-9815c8.png", "osmTags": { "and": [ "man_made=surveillance", @@ -334607,7 +334821,7 @@ }, { "question": "Wyoming Department of Transportation", - "icon": "./assets/data/nsi/logos/wyomingdepartmentoftransportation-89ba23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wyomingdepartmentoftransportation-89ba23.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334624,7 +334838,7 @@ }, { "question": "Yale University", - "icon": "./assets/data/nsi/logos/yaleuniversity-5f4799.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yaleuniversity-5f4799.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334639,7 +334853,7 @@ }, { "question": "Zagrebački holding", - "icon": "./assets/data/nsi/logos/zagrebackiholding-234fa0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/zagrebackiholding-234fa0.svg", "osmTags": { "and": [ "man_made=surveillance", @@ -334686,7 +334900,7 @@ }, { "question": "Zone de Police Bruxelles CAPITALE Ixelles – Politiezone Brussel HOOFDSTAD Elsene", - "icon": "./assets/data/nsi/logos/zonedepolicebruxellescapitaleixellespolitiezonebrusselhoofdstadelsene-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zonedepolicebruxellescapitaleixellespolitiezonebrusselhoofdstadelsene-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334703,7 +334917,7 @@ }, { "question": "Zone de Police Bruxelles-Ouest – Politiezone Brussel-West", - "icon": "./assets/data/nsi/logos/zonedepolicebruxellesouestpolitiezonebrusselwest-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zonedepolicebruxellesouestpolitiezonebrusselwest-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334720,7 +334934,7 @@ }, { "question": "Zone de Police Midi – Politiezone Zuid", - "icon": "./assets/data/nsi/logos/zonedepolicemidipolitiezonezuid-fe27ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zonedepolicemidipolitiezonezuid-fe27ed.jpg", "osmTags": { "and": [ "man_made=surveillance", @@ -334753,7 +334967,7 @@ }, { "question": "Zone de Police PolBruno – Politiezone PolBruno", - "icon": "./assets/data/nsi/logos/zonedepolicepolbrunopolitiezonepolbruno-fe27ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zonedepolicepolbrunopolitiezonepolbruno-fe27ed.png", "osmTags": { "and": [ "man_made=surveillance", @@ -334921,7 +335135,7 @@ }, { "question": "Natural Resources Canada", - "icon": "./assets/data/nsi/logos/naturalresourcescanada-dbb4a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/naturalresourcescanada-dbb4a6.png", "osmTags": { "and": [ "man_made=survey_point", @@ -334936,7 +335150,7 @@ }, { "question": "Ordnance Survey", - "icon": "./assets/data/nsi/logos/ordnancesurvey-a1ffb2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ordnancesurvey-a1ffb2.png", "osmTags": { "and": [ "man_made=survey_point", @@ -334951,7 +335165,7 @@ }, { "question": "Ressources naturelles Canada", - "icon": "./assets/data/nsi/logos/ressourcesnaturellescanada-9cab83.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ressourcesnaturellescanada-9cab83.png", "osmTags": { "and": [ "man_made=survey_point", @@ -334981,7 +335195,7 @@ }, { "question": "Arqiva", - "icon": "./assets/data/nsi/logos/arqiva-b64a30.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/arqiva-b64a30.svg", "osmTags": { "and": [ "tower:type=communication", @@ -334997,7 +335211,7 @@ }, { "question": "BPD Light Tower", - "icon": "./assets/data/nsi/logos/baltimorepolicedepartment-62d396.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorepolicedepartment-62d396.jpg", "osmTags": { "and": [ "man_made=tower", @@ -335032,7 +335246,7 @@ }, { "question": "EE", - "icon": "./assets/data/nsi/logos/ee-b64a30.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ee-b64a30.svg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -335049,7 +335263,7 @@ }, { "question": "iHeartMedia", - "icon": "./assets/data/nsi/logos/iheartmedia-cdc266.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iheartmedia-cdc266.png", "osmTags": { "and": [ "tower:type=communication", @@ -335082,7 +335296,7 @@ }, { "question": "MTN", - "icon": "./assets/data/nsi/logos/mtn-a1bc20.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtn-a1bc20.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -335098,7 +335312,7 @@ }, { "question": "National Air Traffic Services", - "icon": "./assets/data/nsi/logos/nationalairtrafficservices-b64a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalairtrafficservices-b64a30.jpg", "osmTags": { "and": [ "man_made=tower", @@ -335113,7 +335327,7 @@ }, { "question": "Network Rail", - "icon": "./assets/data/nsi/logos/networkrail-b64a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkrail-b64a30.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -335129,7 +335343,7 @@ }, { "question": "O2", - "icon": "./assets/data/nsi/logos/o2-b64a30.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/o2-b64a30.svg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -335146,7 +335360,7 @@ }, { "question": "Orange", - "icon": "./assets/data/nsi/logos/orange-5566a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orange-5566a2.png", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -335163,7 +335377,7 @@ }, { "question": "Sentech", - "icon": "./assets/data/nsi/logos/sentech-134622.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sentech-134622.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -335179,7 +335393,7 @@ }, { "question": "Telekom", - "icon": "./assets/data/nsi/logos/telekom-a8749b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telekom-a8749b.jpg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -335196,7 +335410,7 @@ }, { "question": "Telkom", - "icon": "./assets/data/nsi/logos/telkom-134622.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/telkom-134622.svg", "osmTags": { "and": [ "tower:type=communication", @@ -335212,7 +335426,7 @@ }, { "question": "Three", - "icon": "./assets/data/nsi/logos/three-b64a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/three-b64a30.jpg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -335229,7 +335443,7 @@ }, { "question": "Vodacom (D. R. Congo)", - "icon": "./assets/data/nsi/logos/vodacomcongo-e13b02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacomcongo-e13b02.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -335245,7 +335459,7 @@ }, { "question": "Vodacom (Lesotho)", - "icon": "./assets/data/nsi/logos/vodacomlesotho-f10e6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacomlesotho-f10e6d.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -335261,7 +335475,7 @@ }, { "question": "Vodacom (Moçambique)", - "icon": "./assets/data/nsi/logos/vodacommocambique-25a58e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacommocambique-25a58e.png", "osmTags": { "and": [ "tower:type=communication", @@ -335277,7 +335491,7 @@ }, { "question": "Vodacom (South Africa)", - "icon": "./assets/data/nsi/logos/vodacom-134622.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacom-134622.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -335293,7 +335507,7 @@ }, { "question": "Vodacom (Tanzania)", - "icon": "./assets/data/nsi/logos/vodacomtanzania-02351e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodacomtanzania-02351e.jpg", "osmTags": { "and": [ "tower:type=communication", @@ -335309,7 +335523,7 @@ }, { "question": "Vodafone (Egypt)", - "icon": "./assets/data/nsi/logos/vodafoneegypt-48c88e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodafoneegypt-48c88e.jpg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -335326,7 +335540,7 @@ }, { "question": "Vodafone (UK)", - "icon": "./assets/data/nsi/logos/vodafone-b64a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vodafone-b64a30.jpg", "osmTags": { "and": [ "communication:mobile_phone=yes", @@ -335393,7 +335607,7 @@ }, { "question": "Aquafin", - "icon": "./assets/data/nsi/logos/aquafin-2214b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aquafin-2214b4.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335426,7 +335640,7 @@ }, { "question": "Autoridad de Acueductos y Alcantarillados", - "icon": "./assets/data/nsi/logos/autoridaddeacueductosyalcantarillados-e33c0e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autoridaddeacueductosyalcantarillados-e33c0e.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335456,7 +335670,7 @@ }, { "question": "Barwon Water", - "icon": "./assets/data/nsi/logos/barwonwater-9409a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barwonwater-9409a2.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335486,7 +335700,7 @@ }, { "question": "Berliner Wasserbetriebe", - "icon": "./assets/data/nsi/logos/berlinerwasserbetriebe-96557d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerwasserbetriebe-96557d.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335517,7 +335731,7 @@ }, { "question": "Central Highlands Water", - "icon": "./assets/data/nsi/logos/centralhighlandswater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralhighlandswater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335532,7 +335746,7 @@ }, { "question": "Clean Harbors", - "icon": "./assets/data/nsi/logos/cleanharbors-0761ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleanharbors-0761ed.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335547,7 +335761,7 @@ }, { "question": "Clean Water Services", - "icon": "./assets/data/nsi/logos/cleanwaterservices-3ab24f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleanwaterservices-3ab24f.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335563,7 +335777,7 @@ }, { "question": "Coliban Water", - "icon": "./assets/data/nsi/logos/colibanwater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colibanwater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335606,7 +335820,7 @@ }, { "question": "Communauté de communes Les Avant-Monts", - "icon": "./assets/data/nsi/logos/communautedecommuneslesavantmonts-798128.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/communautedecommuneslesavantmonts-798128.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335635,7 +335849,7 @@ }, { "question": "Companhia de Água e Esgoto do Ceará", - "icon": "./assets/data/nsi/logos/companhiadeaguaeesgotodoceara-11a6e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/companhiadeaguaeesgotodoceara-11a6e3.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335665,7 +335879,7 @@ }, { "question": "Copasa", - "icon": "./assets/data/nsi/logos/copasa-11a6e3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/copasa-11a6e3.svg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335695,7 +335909,7 @@ }, { "question": "Dŵr Cymru - Welsh Water", - "icon": "./assets/data/nsi/logos/dwrcymruwelshwater-6a6be4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dwrcymruwelshwater-6a6be4.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335712,7 +335926,7 @@ }, { "question": "East Gippsland Water", - "icon": "./assets/data/nsi/logos/eastgippslandwater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastgippslandwater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335742,7 +335956,7 @@ }, { "question": "Erftverband", - "icon": "./assets/data/nsi/logos/erftverband-ea0c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erftverband-ea0c8b.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335757,7 +335971,7 @@ }, { "question": "Gippsland Water", - "icon": "./assets/data/nsi/logos/gippslandwater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gippslandwater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335772,7 +335986,7 @@ }, { "question": "Goulburn Valley Water", - "icon": "./assets/data/nsi/logos/goulburnvalleywater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goulburnvalleywater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335787,7 +336001,7 @@ }, { "question": "Grampians Wimmera Mallee Water", - "icon": "./assets/data/nsi/logos/grampianswimmeramalleewater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grampianswimmeramalleewater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335802,7 +336016,7 @@ }, { "question": "Greater Western Water", - "icon": "./assets/data/nsi/logos/greaterwesternwater-9409a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greaterwesternwater-9409a2.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335817,7 +336031,7 @@ }, { "question": "Hafren Dyfrdwy Cyfyngedig", - "icon": "./assets/data/nsi/logos/hafrendyfrdwycyfyngedig-9a5141.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hafrendyfrdwycyfyngedig-9a5141.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335832,7 +336046,7 @@ }, { "question": "Hunter Water", - "icon": "./assets/data/nsi/logos/hunterwater-3a15ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hunterwater-3a15ac.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335847,7 +336061,7 @@ }, { "question": "Icon Water", - "icon": "./assets/data/nsi/logos/iconwater-98f006.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iconwater-98f006.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335871,7 +336085,7 @@ }, { "question": "Indah Water", - "icon": "./assets/data/nsi/logos/indahwater-36d0a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indahwater-36d0a3.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335896,7 +336110,7 @@ }, { "question": "Irish Water", - "icon": "./assets/data/nsi/logos/irishwater-cd7865.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishwater-cd7865.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335913,7 +336127,7 @@ }, { "question": "İZSU", - "icon": "./assets/data/nsi/logos/izsu-ec1879.png", + "icon": "https://data.mapcomplete.org/nsi//logos/izsu-ec1879.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335928,7 +336142,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-750319.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-750319.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335944,7 +336158,7 @@ }, { "question": "KOSIT, a.s.", - "icon": "./assets/data/nsi/logos/kositas-6f062f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kositas-6f062f.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335959,7 +336173,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-f08e14.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-f08e14.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335975,7 +336189,7 @@ }, { "question": "Lower Murray Water", - "icon": "./assets/data/nsi/logos/lowermurraywater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lowermurraywater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -335990,7 +336204,7 @@ }, { "question": "Maynilad Water Services", - "icon": "./assets/data/nsi/logos/mayniladwaterservices-9ef527.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-9ef527.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336005,7 +336219,7 @@ }, { "question": "Melbourne Water", - "icon": "./assets/data/nsi/logos/melbournewater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/melbournewater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336020,7 +336234,7 @@ }, { "question": "MWRD", - "icon": "./assets/data/nsi/logos/metropolitanwaterreclamationdistrictofgreaterchicago-eb5ed3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolitanwaterreclamationdistrictofgreaterchicago-eb5ed3.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336036,7 +336250,7 @@ }, { "question": "Niersverband", - "icon": "./assets/data/nsi/logos/niersverband-ea0c8b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/niersverband-ea0c8b.svg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336051,7 +336265,7 @@ }, { "question": "North East Water", - "icon": "./assets/data/nsi/logos/northeastwater-9409a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northeastwater-9409a2.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336066,7 +336280,7 @@ }, { "question": "Northern Ireland Water", - "icon": "./assets/data/nsi/logos/northernirelandwater-4ab999.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernirelandwater-4ab999.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336081,7 +336295,7 @@ }, { "question": "Northumbrian Water", - "icon": "./assets/data/nsi/logos/northumbrianwater-9a5141.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northumbrianwater-9a5141.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336124,7 +336338,7 @@ }, { "question": "Power and Water", - "icon": "./assets/data/nsi/logos/powerandwater-e69d8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerandwater-e69d8a.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336139,7 +336353,7 @@ }, { "question": "Rodez Agglomération", - "icon": "./assets/data/nsi/logos/rodezagglomeration-798128.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rodezagglomeration-798128.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336154,7 +336368,7 @@ }, { "question": "Ruhrverband", - "icon": "./assets/data/nsi/logos/ruhrverband-ea0c8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ruhrverband-ea0c8b.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336170,7 +336384,7 @@ }, { "question": "SA Water", - "icon": "./assets/data/nsi/logos/sawater-12f4ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sawater-12f4ae.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336185,7 +336399,7 @@ }, { "question": "Sabesp", - "icon": "./assets/data/nsi/logos/sabesp-220197.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sabesp-220197.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336214,7 +336428,7 @@ }, { "question": "Scottish Water", - "icon": "./assets/data/nsi/logos/scottishwater-4f92d3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishwater-4f92d3.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336229,7 +336443,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-0ed09f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-0ed09f.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336246,7 +336460,7 @@ }, { "question": "Seqwater", - "icon": "./assets/data/nsi/logos/seqwater-b109db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seqwater-b109db.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336261,7 +336475,7 @@ }, { "question": "Severn Trent", - "icon": "./assets/data/nsi/logos/severntrent-3c939b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/severntrent-3c939b.svg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336285,7 +336499,7 @@ }, { "question": "South East Water", - "icon": "./assets/data/nsi/logos/southeastwater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southeastwater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336314,7 +336528,7 @@ }, { "question": "South West Water", - "icon": "./assets/data/nsi/logos/southwestwater-2a6f9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestwater-2a6f9d.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336343,7 +336557,7 @@ }, { "question": "Suez Eau France", - "icon": "./assets/data/nsi/logos/suezeaufrance-ea08bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suezeaufrance-ea08bf.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336358,7 +336572,7 @@ }, { "question": "Sydney Water", - "icon": "./assets/data/nsi/logos/sydneywater-3a15ac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sydneywater-3a15ac.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336373,7 +336587,7 @@ }, { "question": "TasWater", - "icon": "./assets/data/nsi/logos/taswater-24f6df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taswater-24f6df.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336388,7 +336602,7 @@ }, { "question": "Thames Water", - "icon": "./assets/data/nsi/logos/thameswater-3c939b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thameswater-3c939b.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336403,7 +336617,7 @@ }, { "question": "United Utilities", - "icon": "./assets/data/nsi/logos/unitedutilities-9a5141.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedutilities-9a5141.svg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336418,7 +336632,7 @@ }, { "question": "Véolia", - "icon": "./assets/data/nsi/logos/veolia-ea08bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veolia-ea08bf.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336447,7 +336661,7 @@ }, { "question": "Wannon Water", - "icon": "./assets/data/nsi/logos/wannonwater-9409a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wannonwater-9409a2.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336477,7 +336691,7 @@ }, { "question": "Water Corporation", - "icon": "./assets/data/nsi/logos/watercorporation-c76c40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watercorporation-c76c40.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336492,7 +336706,7 @@ }, { "question": "Waterschap Hollandse Delta", - "icon": "./assets/data/nsi/logos/waterschaphollandsedelta-addada.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waterschaphollandsedelta-addada.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336507,7 +336721,7 @@ }, { "question": "Waterschap Rivierenland", - "icon": "./assets/data/nsi/logos/waterschaprivierenland-addada.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/waterschaprivierenland-addada.svg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336522,7 +336736,7 @@ }, { "question": "Waterschap Scheldestromen", - "icon": "./assets/data/nsi/logos/waterschapscheldestromen-addada.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/waterschapscheldestromen-addada.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336537,7 +336751,7 @@ }, { "question": "Wessex Water", - "icon": "./assets/data/nsi/logos/wessexwater-2a6f9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wessexwater-2a6f9d.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336566,7 +336780,7 @@ }, { "question": "Wetterskip Fryslân", - "icon": "./assets/data/nsi/logos/wetterskipfryslan-addada.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wetterskipfryslan-addada.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336581,7 +336795,7 @@ }, { "question": "Yarra Valley Water", - "icon": "./assets/data/nsi/logos/yarravalleywater-9409a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yarravalleywater-9409a2.jpg", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336890,7 +337104,7 @@ }, { "question": "ВиК София област", - "icon": "./assets/data/nsi/logos/423877-bcdd97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/423877-bcdd97.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -336989,7 +337203,7 @@ }, { "question": "Софийска вода", - "icon": "./assets/data/nsi/logos/938062-bcdd97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/938062-bcdd97.png", "osmTags": { "and": [ "man_made=wastewater_plant", @@ -337037,7 +337251,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-c592bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-c592bb.jpg", "osmTags": { "and": [ "man_made=water_tower", @@ -337068,7 +337282,7 @@ }, { "question": "De Watergroep", - "icon": "./assets/data/nsi/logos/dewatergroep-08646f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dewatergroep-08646f.png", "osmTags": { "and": [ "man_made=water_tower", @@ -337098,7 +337312,7 @@ }, { "question": "Maynilad Water Services", - "icon": "./assets/data/nsi/logos/mayniladwaterservices-9f6c7e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-9f6c7e.jpg", "osmTags": { "and": [ "man_made=water_tower", @@ -337113,7 +337327,7 @@ }, { "question": "Pidpa", - "icon": "./assets/data/nsi/logos/pidpa-08646f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pidpa-08646f.png", "osmTags": { "and": [ "man_made=water_tower", @@ -337128,7 +337342,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-e7ea7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-e7ea7d.png", "osmTags": { "and": [ "man_made=water_tower", @@ -337145,7 +337359,7 @@ }, { "question": "Watercare", - "icon": "./assets/data/nsi/logos/watercare-988247.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watercare-988247.jpg", "osmTags": { "and": [ "man_made=water_tower", @@ -337160,7 +337374,7 @@ }, { "question": "ΕΥΑΘ", - "icon": "./assets/data/nsi/logos/41a232-23dae7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/41a232-23dae7.jpg", "osmTags": { "and": [ "man_made=water_tower", @@ -337175,7 +337389,7 @@ }, { "question": "ΕΥΔΑΠ", - "icon": "./assets/data/nsi/logos/41df5e-23dae7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/41df5e-23dae7.png", "osmTags": { "and": [ "man_made=water_tower", @@ -337470,7 +337684,7 @@ }, { "question": "ВиК София област", - "icon": "./assets/data/nsi/logos/423877-067baf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/423877-067baf.png", "osmTags": { "and": [ "man_made=water_tower", @@ -337569,7 +337783,7 @@ }, { "question": "Софийска вода", - "icon": "./assets/data/nsi/logos/938062-067baf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/938062-067baf.png", "osmTags": { "and": [ "man_made=water_tower", @@ -337584,7 +337798,7 @@ }, { "question": "水務署 Water Supplies Department", - "icon": "./assets/data/nsi/logos/watersuppliesdepartment-ad7a9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-ad7a9b.jpg", "osmTags": { "and": [ "man_made=water_tower", @@ -337601,7 +337815,7 @@ }, { "question": "Barwon Water", - "icon": "./assets/data/nsi/logos/barwonwater-086b9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/barwonwater-086b9d.png", "osmTags": { "and": [ "man_made=water_works", @@ -337616,7 +337830,7 @@ }, { "question": "Central Highlands Water", - "icon": "./assets/data/nsi/logos/centralhighlandswater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralhighlandswater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337631,7 +337845,7 @@ }, { "question": "Coliban Water", - "icon": "./assets/data/nsi/logos/colibanwater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colibanwater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337646,7 +337860,7 @@ }, { "question": "East Gippsland Water", - "icon": "./assets/data/nsi/logos/eastgippslandwater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastgippslandwater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337661,7 +337875,7 @@ }, { "question": "Gippsland Water", - "icon": "./assets/data/nsi/logos/gippslandwater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gippslandwater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337676,7 +337890,7 @@ }, { "question": "Goulburn Valley Water", - "icon": "./assets/data/nsi/logos/goulburnvalleywater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goulburnvalleywater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337691,7 +337905,7 @@ }, { "question": "Grampians Wimmera Mallee Water", - "icon": "./assets/data/nsi/logos/grampianswimmeramalleewater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grampianswimmeramalleewater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337706,7 +337920,7 @@ }, { "question": "Greater Western Water", - "icon": "./assets/data/nsi/logos/greaterwesternwater-086b9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greaterwesternwater-086b9d.png", "osmTags": { "and": [ "man_made=water_works", @@ -337721,7 +337935,7 @@ }, { "question": "Hunter Water", - "icon": "./assets/data/nsi/logos/hunterwater-ba95cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hunterwater-ba95cc.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337736,7 +337950,7 @@ }, { "question": "Icon Water", - "icon": "./assets/data/nsi/logos/iconwater-42b9af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iconwater-42b9af.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337751,7 +337965,7 @@ }, { "question": "Irish Water", - "icon": "./assets/data/nsi/logos/irishwater-7da298.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishwater-7da298.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337768,7 +337982,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-5fdce4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-5fdce4.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337784,7 +337998,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-19993d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-19993d.png", "osmTags": { "and": [ "man_made=water_works", @@ -337800,7 +338014,7 @@ }, { "question": "Lower Murray Water", - "icon": "./assets/data/nsi/logos/lowermurraywater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lowermurraywater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337815,7 +338029,7 @@ }, { "question": "Melbourne Water", - "icon": "./assets/data/nsi/logos/melbournewater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/melbournewater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337830,7 +338044,7 @@ }, { "question": "North East Water", - "icon": "./assets/data/nsi/logos/northeastwater-086b9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northeastwater-086b9d.png", "osmTags": { "and": [ "man_made=water_works", @@ -337845,7 +338059,7 @@ }, { "question": "Power and Water", - "icon": "./assets/data/nsi/logos/powerandwater-e23dc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerandwater-e23dc4.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337860,7 +338074,7 @@ }, { "question": "SA Water", - "icon": "./assets/data/nsi/logos/sawater-24df78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sawater-24df78.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337875,7 +338089,7 @@ }, { "question": "Seqwater", - "icon": "./assets/data/nsi/logos/seqwater-10fc82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seqwater-10fc82.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337890,7 +338104,7 @@ }, { "question": "South East Water", - "icon": "./assets/data/nsi/logos/southeastwater-086b9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southeastwater-086b9d.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337919,7 +338133,7 @@ }, { "question": "Sydney Water", - "icon": "./assets/data/nsi/logos/sydneywater-ba95cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sydneywater-ba95cc.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337934,7 +338148,7 @@ }, { "question": "TasWater", - "icon": "./assets/data/nsi/logos/taswater-eded62.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taswater-eded62.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -337949,7 +338163,7 @@ }, { "question": "Východoslovenská vodárenská spoločnosť", - "icon": "./assets/data/nsi/logos/vychodoslovenskavodarenskaspolocnost-8c4b19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskavodarenskaspolocnost-8c4b19.png", "osmTags": { "and": [ "man_made=water_works", @@ -337965,7 +338179,7 @@ }, { "question": "Wannon Water", - "icon": "./assets/data/nsi/logos/wannonwater-086b9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wannonwater-086b9d.png", "osmTags": { "and": [ "man_made=water_works", @@ -337980,7 +338194,7 @@ }, { "question": "Water Corporation", - "icon": "./assets/data/nsi/logos/watercorporation-bf7ce7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watercorporation-bf7ce7.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -338024,7 +338238,7 @@ }, { "question": "De Watergroep", - "icon": "./assets/data/nsi/logos/dewatergroep-71ff59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dewatergroep-71ff59.png", "osmTags": { "and": [ "man_made=water_works", @@ -338054,7 +338268,7 @@ }, { "question": "Maynilad Water Services", - "icon": "./assets/data/nsi/logos/mayniladwaterservices-e7ef26.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-e7ef26.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -338069,7 +338283,7 @@ }, { "question": "Pidpa", - "icon": "./assets/data/nsi/logos/pidpa-71ff59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pidpa-71ff59.png", "osmTags": { "and": [ "man_made=water_works", @@ -338084,7 +338298,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-17b995.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-17b995.png", "osmTags": { "and": [ "man_made=water_works", @@ -338101,7 +338315,7 @@ }, { "question": "Watercare", - "icon": "./assets/data/nsi/logos/watercare-1be0b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watercare-1be0b4.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -338116,7 +338330,7 @@ }, { "question": "ΕΥΑΘ", - "icon": "./assets/data/nsi/logos/41a232-1c8757.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/41a232-1c8757.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -338131,7 +338345,7 @@ }, { "question": "ΕΥΔΑΠ", - "icon": "./assets/data/nsi/logos/41df5e-1c8757.png", + "icon": "https://data.mapcomplete.org/nsi//logos/41df5e-1c8757.png", "osmTags": { "and": [ "man_made=water_works", @@ -338426,7 +338640,7 @@ }, { "question": "ВиК София област", - "icon": "./assets/data/nsi/logos/423877-a924a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/423877-a924a3.png", "osmTags": { "and": [ "man_made=water_works", @@ -338525,7 +338739,7 @@ }, { "question": "Софийска вода", - "icon": "./assets/data/nsi/logos/938062-a924a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/938062-a924a3.png", "osmTags": { "and": [ "man_made=water_works", @@ -338540,7 +338754,7 @@ }, { "question": "水務署 Water Supplies Department", - "icon": "./assets/data/nsi/logos/watersuppliesdepartment-e2749b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-e2749b.jpg", "osmTags": { "and": [ "man_made=water_works", @@ -338557,7 +338771,7 @@ }, { "question": "Firth Concrete", - "icon": "./assets/data/nsi/logos/firthconcrete-3369b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firthconcrete-3369b6.jpg", "osmTags": { "and": [ "man_made=works", @@ -338574,7 +338788,7 @@ }, { "question": "Bristol Water", - "icon": "./assets/data/nsi/logos/bristolwater-237d50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristolwater-237d50.jpg", "osmTags": { "and": [ "natural=water", @@ -338590,7 +338804,7 @@ }, { "question": "Irish Water", - "icon": "./assets/data/nsi/logos/irishwater-48be47.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishwater-48be47.jpg", "osmTags": { "and": [ "natural=water", @@ -338608,7 +338822,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-57bade.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-57bade.jpg", "osmTags": { "and": [ "natural=water", @@ -338625,7 +338839,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-7ff67e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-7ff67e.png", "osmTags": { "and": [ "natural=water", @@ -338642,7 +338856,7 @@ }, { "question": "Northern Ireland Water", - "icon": "./assets/data/nsi/logos/northernirelandwater-7dc8bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernirelandwater-7dc8bd.jpg", "osmTags": { "and": [ "natural=water", @@ -338658,7 +338872,7 @@ }, { "question": "Scottish Water", - "icon": "./assets/data/nsi/logos/scottishwater-e8c2ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishwater-e8c2ca.png", "osmTags": { "and": [ "natural=water", @@ -338674,7 +338888,7 @@ }, { "question": "South West Water", - "icon": "./assets/data/nsi/logos/southwestwater-237d50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestwater-237d50.jpg", "osmTags": { "and": [ "natural=water", @@ -338690,7 +338904,7 @@ }, { "question": "Welsh Water", - "icon": "./assets/data/nsi/logos/welshwater-8746b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welshwater-8746b0.jpg", "osmTags": { "and": [ "natural=water", @@ -338708,7 +338922,7 @@ }, { "question": "Wessex Water", - "icon": "./assets/data/nsi/logos/wessexwater-237d50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wessexwater-237d50.jpg", "osmTags": { "and": [ "natural=water", @@ -338724,7 +338938,7 @@ }, { "question": "Club Alpino Italiano", - "icon": "./assets/data/nsi/logos/clubalpinoitaliano-3400e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clubalpinoitaliano-3400e1.png", "osmTags": { "and": [ "office=association", @@ -338741,7 +338955,7 @@ }, { "question": "E-REDES", - "icon": "./assets/data/nsi/logos/eredes-3edaec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eredes-3edaec.png", "osmTags": { "and": [ "office=energy_supplier", @@ -338757,7 +338971,7 @@ }, { "question": "Elpedison", - "icon": "./assets/data/nsi/logos/elpedison-d62fd2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elpedison-d62fd2.png", "osmTags": { "and": [ "office=energy_supplier", @@ -338773,7 +338987,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-6c94a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-6c94a9.png", "osmTags": { "and": [ "office=energy_supplier", @@ -338789,7 +339003,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-39d306.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-39d306.png", "osmTags": { "and": [ "office=energy_supplier", @@ -338805,7 +339019,7 @@ }, { "question": "EVN България", - "icon": "./assets/data/nsi/logos/02fa7d-8661b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/02fa7d-8661b0.png", "osmTags": { "and": [ "office=energy_supplier", @@ -338821,7 +339035,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-39d306.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-39d306.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -338837,7 +339051,7 @@ }, { "question": "Innogy", - "icon": "./assets/data/nsi/logos/innogy-157631.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogy-157631.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -338853,7 +339067,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-5c8e71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-5c8e71.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -338870,7 +339084,7 @@ }, { "question": "Kerala State Electricity Board", - "icon": "./assets/data/nsi/logos/keralastateelectricityboard-cedd8d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-cedd8d.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -338887,7 +339101,7 @@ }, { "question": "Naturgy", - "icon": "./assets/data/nsi/logos/naturgy-e15d8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturgy-e15d8a.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -338903,7 +339117,7 @@ }, { "question": "Public Power Corporation SA", - "icon": "./assets/data/nsi/logos/publicpowercorporationsa-d62fd2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicpowercorporationsa-d62fd2.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -338919,7 +339133,7 @@ }, { "question": "Spazio Enel", - "icon": "./assets/data/nsi/logos/enel-7c1c4a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-7c1c4a.png", "osmTags": { "and": [ "office=energy_supplier", @@ -338935,7 +339149,7 @@ }, { "question": "Unión Eléctrica de Cuba", - "icon": "./assets/data/nsi/logos/unionelectricadecuba-602d88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unionelectricadecuba-602d88.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -338975,15 +339189,15 @@ }, { "question": "Електрохолд", - "icon": "./assets/data/nsi/logos/0d7f82-8661b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/0d7f82-8661b0.jpg", "osmTags": { "and": [ "office=energy_supplier", - "official_name=Електрохолд Продажби", { "or": [ "alt_name=ЕРМ Запад", "name=Електрохолд", + "official_name=Електрохолд Продажби", "operator=Електрохолд", "operator:wikidata=Q61140077" ] @@ -338993,7 +339207,7 @@ }, { "question": "Енерго-Про", - "icon": "./assets/data/nsi/logos/2dfabb-8661b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/2dfabb-8661b0.png", "osmTags": { "and": [ "office=energy_supplier", @@ -339033,7 +339247,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/taipower-cce231.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taipower-cce231.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -339055,7 +339269,7 @@ }, { "question": "東京電力", - "icon": "./assets/data/nsi/logos/tepco-374039.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tepco-374039.png", "osmTags": { "and": [ "office=energy_supplier", @@ -339075,7 +339289,7 @@ }, { "question": "関西電力", - "icon": "./assets/data/nsi/logos/kepco-374039.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kepco-374039.jpg", "osmTags": { "and": [ "office=energy_supplier", @@ -339095,7 +339309,7 @@ }, { "question": "AFIP", - "icon": "./assets/data/nsi/logos/administracionfederaldeingresospublicos-cc6da1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/administracionfederaldeingresospublicos-cc6da1.png", "osmTags": { "and": [ "office=government", @@ -339112,7 +339326,7 @@ }, { "question": "Agence des services frontaliers du Canada", - "icon": "./assets/data/nsi/logos/agencedesservicesfrontaliersducanada-00acfa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/agencedesservicesfrontaliersducanada-00acfa.png", "osmTags": { "and": [ "government=customs", @@ -339132,7 +339346,7 @@ }, { "question": "Ajuntament de Barcelona", - "icon": "./assets/data/nsi/logos/ajuntamentdebarcelona-c7b087.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ajuntamentdebarcelona-c7b087.svg", "osmTags": { "and": [ "office=government", @@ -339147,7 +339361,7 @@ }, { "question": "ANSES", - "icon": "./assets/data/nsi/logos/anses-cc6da1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/anses-cc6da1.jpg", "osmTags": { "and": [ "office=government", @@ -339163,7 +339377,7 @@ }, { "question": "Autobahn GmbH", - "icon": "./assets/data/nsi/logos/autobahngmbh-c58ea0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/autobahngmbh-c58ea0.png", "osmTags": { "and": [ "government=transportation", @@ -339179,7 +339393,7 @@ }, { "question": "Automobile Club d'Italia", - "icon": "./assets/data/nsi/logos/automobileclubditalia-52677d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/automobileclubditalia-52677d.jpg", "osmTags": { "and": [ "government=transportation", @@ -339196,7 +339410,7 @@ }, { "question": "Autoridad Nacional del Agua", - "icon": "./assets/data/nsi/logos/autoridadnacionaldelagua-b5f2e9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/autoridadnacionaldelagua-b5f2e9.jpg", "osmTags": { "and": [ "office=government", @@ -339239,7 +339453,7 @@ }, { "question": "Belastingdienst", - "icon": "./assets/data/nsi/logos/belastingdienst-9dbfcd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/belastingdienst-9dbfcd.svg", "osmTags": { "and": [ "government=customs", @@ -339255,7 +339469,7 @@ }, { "question": "Belgische federale regering - Gouvernement fédéral belge - Belgische föderale Regierung", - "icon": "./assets/data/nsi/logos/belgischefederaleregeringgouvernementfederalbelgebelgischefoderaleregierung-81c06d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/belgischefederaleregeringgouvernementfederalbelgebelgischefoderaleregierung-81c06d.svg", "osmTags": { "and": [ "office=government", @@ -339270,7 +339484,7 @@ }, { "question": "Bundesanstalt Technisches Hilfswerk", - "icon": "./assets/data/nsi/logos/bundesanstalttechnischeshilfswerk-c58ea0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundesanstalttechnischeshilfswerk-c58ea0.jpg", "osmTags": { "and": [ "office=government", @@ -339286,7 +339500,7 @@ }, { "question": "Bureau of Customs", - "icon": "./assets/data/nsi/logos/bureauofcustoms-7987d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauofcustoms-7987d4.png", "osmTags": { "and": [ "government=customs", @@ -339305,7 +339519,7 @@ }, { "question": "Bureau of Fisheries and Aquatic Resources", - "icon": "./assets/data/nsi/logos/bureauoffisheriesandaquaticresources-7987d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauoffisheriesandaquaticresources-7987d4.svg", "osmTags": { "and": [ "government=agency", @@ -339324,7 +339538,7 @@ }, { "question": "Bureau of Immigration (Philippines)", - "icon": "./assets/data/nsi/logos/bureauofimmigration-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauofimmigration-7987d4.jpg", "osmTags": { "and": [ "government=immigration", @@ -339343,7 +339557,7 @@ }, { "question": "Bureau of Internal Revenue", - "icon": "./assets/data/nsi/logos/bureauofinternalrevenue-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauofinternalrevenue-7987d4.jpg", "osmTags": { "and": [ "government=tax", @@ -339362,7 +339576,7 @@ }, { "question": "Bureau of Jail Management and Penology", - "icon": "./assets/data/nsi/logos/bureauofjailmanagementandpenology-7987d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bureauofjailmanagementandpenology-7987d4.png", "osmTags": { "and": [ "government=agency", @@ -339411,7 +339625,7 @@ }, { "question": "California Department of Forestry and Fire Protection", - "icon": "./assets/data/nsi/logos/californiadepartmentofforestryandfireprotection-2a14ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofforestryandfireprotection-2a14ff.jpg", "osmTags": { "and": [ "office=government", @@ -339427,7 +339641,7 @@ }, { "question": "California DMV", - "icon": "./assets/data/nsi/logos/californiadepartmentofmotorvehicles-2a14ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiadepartmentofmotorvehicles-2a14ff.jpg", "osmTags": { "and": [ "government=transportation", @@ -339444,7 +339658,7 @@ }, { "question": "Canada Border Services Agency", - "icon": "./assets/data/nsi/logos/canadaborderservicesagency-84c35e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canadaborderservicesagency-84c35e.png", "osmTags": { "and": [ "government=customs", @@ -339478,7 +339692,7 @@ }, { "question": "Civil Service Commission (Philippines)", - "icon": "./assets/data/nsi/logos/civilservicecommission-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/civilservicecommission-7987d4.jpg", "osmTags": { "and": [ "government=public_service", @@ -339497,7 +339711,7 @@ }, { "question": "CNE", - "icon": "./assets/data/nsi/logos/consejonacionalelectoral-b90a8d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/consejonacionalelectoral-b90a8d.svg", "osmTags": { "and": [ "government=election_commission", @@ -339514,7 +339728,7 @@ }, { "question": "Commission on Elections (Philippines)", - "icon": "./assets/data/nsi/logos/commissiononelections-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commissiononelections-7987d4.jpg", "osmTags": { "and": [ "government=election_commission", @@ -339533,7 +339747,7 @@ }, { "question": "Commission on Higher Education", - "icon": "./assets/data/nsi/logos/commissiononhighereducation-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commissiononhighereducation-7987d4.jpg", "osmTags": { "and": [ "government=education", @@ -339552,7 +339766,7 @@ }, { "question": "Commission on Human Rights (Philippines)", - "icon": "./assets/data/nsi/logos/commissiononhumanrights-7987d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/commissiononhumanrights-7987d4.png", "osmTags": { "and": [ "government=office", @@ -339571,7 +339785,7 @@ }, { "question": "Companhia de Água e Esgoto do Ceará", - "icon": "./assets/data/nsi/logos/companhiadeaguaeesgotodoceara-efa52e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/companhiadeaguaeesgotodoceara-efa52e.jpg", "osmTags": { "and": [ "office=government", @@ -339587,7 +339801,7 @@ }, { "question": "Connecticut DMV", - "icon": "./assets/data/nsi/logos/connecticutdepartmentofmotorvehicles-5b0fd8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/connecticutdepartmentofmotorvehicles-5b0fd8.png", "osmTags": { "and": [ "government=transportation", @@ -339614,7 +339828,7 @@ }, { "question": "Corpo de Bombeiros Militar de Santa Catarina", - "icon": "./assets/data/nsi/logos/corpodebombeirosmilitardesantacatarina-a702cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpodebombeirosmilitardesantacatarina-a702cf.png", "osmTags": { "and": [ "office=government", @@ -339630,7 +339844,7 @@ }, { "question": "Department of Agriculture (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofagriculture-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofagriculture-7987d4.jpg", "osmTags": { "and": [ "government=agriculture", @@ -339649,7 +339863,7 @@ }, { "question": "Department of Education (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofeducation-7987d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofeducation-7987d4.svg", "osmTags": { "and": [ "government=education", @@ -339668,7 +339882,7 @@ }, { "question": "Department of Environment and Natural Resources (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofenvironmentandnaturalresources-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofenvironmentandnaturalresources-7987d4.jpg", "osmTags": { "and": [ "government=environment", @@ -339687,7 +339901,7 @@ }, { "question": "Department of Foreign Affairs (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofforeignaffairs-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofforeignaffairs-7987d4.jpg", "osmTags": { "and": [ "office=government", @@ -339705,7 +339919,7 @@ }, { "question": "Department of Health (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofhealth-7987d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofhealth-7987d4.svg", "osmTags": { "and": [ "government=health", @@ -339724,7 +339938,7 @@ }, { "question": "Department of Home Affairs", - "icon": "./assets/data/nsi/logos/departmentofhomeaffairs-efe93a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofhomeaffairs-efe93a.png", "osmTags": { "and": [ "office=government", @@ -339740,7 +339954,7 @@ }, { "question": "Department of Homeland Security", - "icon": "./assets/data/nsi/logos/departmentofhomelandsecurity-eaa288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofhomelandsecurity-eaa288.jpg", "osmTags": { "and": [ "government=public_safety", @@ -339757,7 +339971,7 @@ }, { "question": "Department of Labor and Employment", - "icon": "./assets/data/nsi/logos/departmentoflaborandemployment-7987d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentoflaborandemployment-7987d4.svg", "osmTags": { "and": [ "office=government", @@ -339775,7 +339989,7 @@ }, { "question": "Department of Public Works and Highways (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofpublicworksandhighways-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofpublicworksandhighways-7987d4.jpg", "osmTags": { "and": [ "government=public_works", @@ -339794,7 +340008,7 @@ }, { "question": "Department of Science and Technology (Philippines)", - "icon": "./assets/data/nsi/logos/departmentofscienceandtechnology-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofscienceandtechnology-7987d4.jpg", "osmTags": { "and": [ "office=government", @@ -339812,7 +340026,7 @@ }, { "question": "Department of Social Welfare and Development", - "icon": "./assets/data/nsi/logos/departmentofsocialwelfareanddevelopment-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofsocialwelfareanddevelopment-7987d4.jpg", "osmTags": { "and": [ "government=social_welfare", @@ -339831,7 +340045,7 @@ }, { "question": "Department of the Interior and Local Government", - "icon": "./assets/data/nsi/logos/departmentoftheinteriorandlocalgovernment-7987d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentoftheinteriorandlocalgovernment-7987d4.png", "osmTags": { "and": [ "government=local_government", @@ -339850,7 +340064,7 @@ }, { "question": "Department of Trade and Industry", - "icon": "./assets/data/nsi/logos/departmentoftradeandindustry-7987d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentoftradeandindustry-7987d4.png", "osmTags": { "and": [ "government=trade", @@ -339869,7 +340083,7 @@ }, { "question": "Department of Transport and Main Roads", - "icon": "./assets/data/nsi/logos/departmentoftransportandmainroads-1b54b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentoftransportandmainroads-1b54b2.jpg", "osmTags": { "and": [ "office=government", @@ -339884,7 +340098,7 @@ }, { "question": "Deutscher Bundestag", - "icon": "./assets/data/nsi/logos/deutscherbundestag-c58ea0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutscherbundestag-c58ea0.svg", "osmTags": { "and": [ "office=government", @@ -339934,7 +340148,7 @@ }, { "question": "Driver and Vehicle Standards Agency", - "icon": "./assets/data/nsi/logos/driverandvehiclestandardsagency-3cd046.png", + "icon": "https://data.mapcomplete.org/nsi//logos/driverandvehiclestandardsagency-3cd046.png", "osmTags": { "and": [ "office=government", @@ -339966,7 +340180,7 @@ }, { "question": "Federal Bureau of Investigation", - "icon": "./assets/data/nsi/logos/federalbureauofinvestigation-eaa288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/federalbureauofinvestigation-eaa288.jpg", "osmTags": { "and": [ "government=investigation", @@ -339983,7 +340197,7 @@ }, { "question": "Finančná správa Slovenskej republiky", - "icon": "./assets/data/nsi/logos/financnaspravaslovenskejrepubliky-18bdcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/financnaspravaslovenskejrepubliky-18bdcf.jpg", "osmTags": { "and": [ "office=government", @@ -339998,7 +340212,7 @@ }, { "question": "FLHSMV", - "icon": "./assets/data/nsi/logos/floridadepartmentofhighwaysafetyandmotorvehicles-75d2a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridadepartmentofhighwaysafetyandmotorvehicles-75d2a7.png", "osmTags": { "and": [ "government=transportation", @@ -340030,7 +340244,7 @@ }, { "question": "Freistaat Bayern", - "icon": "./assets/data/nsi/logos/freistaatbayern-bab14c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/freistaatbayern-bab14c.jpg", "osmTags": { "and": [ "office=government", @@ -340045,7 +340259,7 @@ }, { "question": "Gendarmería", - "icon": "./assets/data/nsi/logos/gendarmeria-974d55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gendarmeria-974d55.png", "osmTags": { "and": [ "office=government", @@ -340060,7 +340274,7 @@ }, { "question": "Generalitat de Catalunya", - "icon": "./assets/data/nsi/logos/generalitatdecatalunya-f19bf1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalitatdecatalunya-f19bf1.jpg", "osmTags": { "and": [ "office=government", @@ -340089,7 +340303,7 @@ }, { "question": "Gobierno de España", - "icon": "./assets/data/nsi/logos/gobiernodeespana-f19bf1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gobiernodeespana-f19bf1.svg", "osmTags": { "and": [ "office=government", @@ -340132,7 +340346,7 @@ }, { "question": "Government Service Insurance System", - "icon": "./assets/data/nsi/logos/governmentserviceinsurancesystem-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/governmentserviceinsurancesystem-7987d4.jpg", "osmTags": { "and": [ "government=social_security", @@ -340165,7 +340379,7 @@ }, { "question": "H. Ayuntamiento de Ciudad Valles", - "icon": "./assets/data/nsi/logos/hayuntamientodeciudadvalles-877419.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hayuntamientodeciudadvalles-877419.png", "osmTags": { "and": [ "office=government", @@ -340180,7 +340394,7 @@ }, { "question": "Hansestadt Lübeck", - "icon": "./assets/data/nsi/logos/hansestadtlubeck-d9ea25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hansestadtlubeck-d9ea25.svg", "osmTags": { "and": [ "office=government", @@ -340195,7 +340409,7 @@ }, { "question": "Health Service Executive", - "icon": "./assets/data/nsi/logos/healthserviceexecutive-7f4a2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/healthserviceexecutive-7f4a2e.jpg", "osmTags": { "and": [ "office=government", @@ -340211,7 +340425,7 @@ }, { "question": "Illinois Secretary of State", - "icon": "./assets/data/nsi/logos/illinoissecretaryofstate-4714be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/illinoissecretaryofstate-4714be.jpg", "osmTags": { "and": [ "office=government", @@ -340241,7 +340455,7 @@ }, { "question": "INSS", - "icon": "./assets/data/nsi/logos/institutonacionaldosegurosocial-efa52e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutonacionaldosegurosocial-efa52e.svg", "osmTags": { "and": [ "government=social_security", @@ -340258,7 +340472,7 @@ }, { "question": "Insurance Corporation of British Columbia", - "icon": "./assets/data/nsi/logos/insurancecorporationofbritishcolumbia-e8231b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/insurancecorporationofbritishcolumbia-e8231b.jpg", "osmTags": { "and": [ "government=transportation", @@ -340275,7 +340489,7 @@ }, { "question": "Internal Revenue Service", - "icon": "./assets/data/nsi/logos/internalrevenueservice-eaa288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/internalrevenueservice-eaa288.jpg", "osmTags": { "and": [ "government=tax", @@ -340292,7 +340506,7 @@ }, { "question": "Iowa Department of Transportation", - "icon": "./assets/data/nsi/logos/iowadepartmentoftransportation-1af1d0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/iowadepartmentoftransportation-1af1d0.svg", "osmTags": { "and": [ "government=transportation", @@ -340309,7 +340523,7 @@ }, { "question": "Jabatan Imigresen Malaysia", - "icon": "./assets/data/nsi/logos/jabatanimigresenmalaysia-e4510b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jabatanimigresenmalaysia-e4510b.svg", "osmTags": { "and": [ "government=immigration", @@ -340342,7 +340556,7 @@ }, { "question": "Jabatan Pengangkutan Jalan", - "icon": "./assets/data/nsi/logos/jabatanpengangkutanjalan-e4510b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jabatanpengangkutanjalan-e4510b.jpg", "osmTags": { "and": [ "government=transportation", @@ -340359,7 +340573,7 @@ }, { "question": "Junta de Andalucía", - "icon": "./assets/data/nsi/logos/juntadeandalucia-f19bf1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadeandalucia-f19bf1.jpg", "osmTags": { "and": [ "office=government", @@ -340374,7 +340588,7 @@ }, { "question": "Junta de Castilla y León", - "icon": "./assets/data/nsi/logos/juntadecastillayleon-f19bf1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/juntadecastillayleon-f19bf1.svg", "osmTags": { "and": [ "office=government", @@ -340389,7 +340603,7 @@ }, { "question": "Kanton Basel-Landschaft", - "icon": "./assets/data/nsi/logos/kantonbasellandschaft-e127b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kantonbasellandschaft-e127b9.png", "osmTags": { "and": [ "office=government", @@ -340404,7 +340618,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-2a14ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-2a14ff.png", "osmTags": { "and": [ "government=public_utility", @@ -340421,7 +340635,7 @@ }, { "question": "Land Transportation Franchising and Regulatory Board", - "icon": "./assets/data/nsi/logos/landtransportationfranchisingandregulatoryboard-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landtransportationfranchisingandregulatoryboard-7987d4.jpg", "osmTags": { "and": [ "government=transportation", @@ -340440,7 +340654,7 @@ }, { "question": "Land Transportation Office", - "icon": "./assets/data/nsi/logos/landtransportationoffice-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landtransportationoffice-7987d4.jpg", "osmTags": { "and": [ "government=transportation", @@ -340459,7 +340673,7 @@ }, { "question": "Landeshauptstadt Saarbrücken", - "icon": "./assets/data/nsi/logos/landeshauptstadtsaarbrucken-ce5de2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landeshauptstadtsaarbrucken-ce5de2.svg", "osmTags": { "and": [ "office=government", @@ -340483,7 +340697,7 @@ }, { "question": "LGLN", - "icon": "./assets/data/nsi/logos/landesamtfurgeoinformationundlandesvermessungniedersachsen-d4346f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/landesamtfurgeoinformationundlandesvermessungniedersachsen-d4346f.svg", "osmTags": { "and": [ "government=cadaster", @@ -340516,7 +340730,7 @@ }, { "question": "Maryland MVA", - "icon": "./assets/data/nsi/logos/marylandmotorvehicleadministration-ac5917.png", + "icon": "https://data.mapcomplete.org/nsi//logos/marylandmotorvehicleadministration-ac5917.png", "osmTags": { "and": [ "government=transportation", @@ -340533,7 +340747,7 @@ }, { "question": "Maryland State Police", - "icon": "./assets/data/nsi/logos/marylandstatepolice-ac5917.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marylandstatepolice-ac5917.jpg", "osmTags": { "and": [ "office=government", @@ -340549,7 +340763,7 @@ }, { "question": "Michigan Secretary of State", - "icon": "./assets/data/nsi/logos/michigansecretaryofstate-3e8496.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/michigansecretaryofstate-3e8496.jpg", "osmTags": { "and": [ "office=government", @@ -340564,7 +340778,7 @@ }, { "question": "Ministerio de Ciencia, Tecnología y Medio Ambiente", - "icon": "./assets/data/nsi/logos/ministeriodecienciatecnologiaymedioambiente-a67644.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodecienciatecnologiaymedioambiente-a67644.svg", "osmTags": { "and": [ "office=government", @@ -340606,7 +340820,7 @@ }, { "question": "Ministerio de Interior y Justicia", - "icon": "./assets/data/nsi/logos/ministeriodeinterioryjusticia-b90a8d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodeinterioryjusticia-b90a8d.png", "osmTags": { "and": [ "office=government", @@ -340621,7 +340835,7 @@ }, { "question": "Ministerio de Salud (Costa Rica)", - "icon": "./assets/data/nsi/logos/ministeriodesalud-7b455f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministeriodesalud-7b455f.jpg", "osmTags": { "and": [ "office=government", @@ -340650,7 +340864,7 @@ }, { "question": "Ministerstvo investícií, regionálneho rozvoja a informatizácie Slovenskej republiky", - "icon": "./assets/data/nsi/logos/ministerstvoinvesticiiregionalnehorozvojaainformatizacieslovenskejrepubliky-18bdcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstvoinvesticiiregionalnehorozvojaainformatizacieslovenskejrepubliky-18bdcf.jpg", "osmTags": { "and": [ "government=public_works", @@ -340667,7 +340881,7 @@ }, { "question": "Ministerstvo práce, sociálnych vecí a rodiny Slovenskej republiky", - "icon": "./assets/data/nsi/logos/ministerstvopracesocialnychveciarodinyslovenskejrepubliky-18bdcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstvopracesocialnychveciarodinyslovenskejrepubliky-18bdcf.jpg", "osmTags": { "and": [ "government=social_services", @@ -340684,7 +340898,7 @@ }, { "question": "Ministerstvo vnútra Slovenskej republiky", - "icon": "./assets/data/nsi/logos/ministerstvovnutraslovenskejrepubliky-18bdcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstvovnutraslovenskejrepubliky-18bdcf.jpg", "osmTags": { "and": [ "office=government", @@ -340700,7 +340914,7 @@ }, { "question": "Ministerstvo životného prostredia Slovenskej republiky", - "icon": "./assets/data/nsi/logos/ministerstvozivotnehoprostrediaslovenskejrepubliky-18bdcf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ministerstvozivotnehoprostrediaslovenskejrepubliky-18bdcf.png", "osmTags": { "and": [ "government=environment", @@ -340717,7 +340931,7 @@ }, { "question": "Missouri Department of Revenue", - "icon": "./assets/data/nsi/logos/missouridepartmentofrevenue-3e8496.png", + "icon": "https://data.mapcomplete.org/nsi//logos/missouridepartmentofrevenue-3e8496.png", "osmTags": { "and": [ "office=government", @@ -340732,7 +340946,7 @@ }, { "question": "Municipalidad de Córdoba", - "icon": "./assets/data/nsi/logos/municipalidaddecordoba-8e912f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddecordoba-8e912f.jpg", "osmTags": { "and": [ "office=government", @@ -340761,7 +340975,7 @@ }, { "question": "Municipalidad de Neuquén", - "icon": "./assets/data/nsi/logos/municipalidaddeneuquen-7c2695.png", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddeneuquen-7c2695.png", "osmTags": { "and": [ "office=government", @@ -340790,7 +341004,7 @@ }, { "question": "Municipalidad de San Martín", - "icon": "./assets/data/nsi/logos/municipalidaddesanmartin-a0c9ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/municipalidaddesanmartin-a0c9ea.png", "osmTags": { "and": [ "office=government", @@ -340805,7 +341019,7 @@ }, { "question": "MVD New Mexico", - "icon": "./assets/data/nsi/logos/newmexicomotorvehicledivision-5098d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newmexicomotorvehicledivision-5098d2.jpg", "osmTags": { "and": [ "government=transportation", @@ -340822,7 +341036,7 @@ }, { "question": "Najvyšší kontrolný úrad Slovenskej republiky", - "icon": "./assets/data/nsi/logos/najvyssikontrolnyuradslovenskejrepubliky-18bdcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/najvyssikontrolnyuradslovenskejrepubliky-18bdcf.jpg", "osmTags": { "and": [ "government=audit", @@ -340839,7 +341053,7 @@ }, { "question": "Národný inšpektorát práce", - "icon": "./assets/data/nsi/logos/narodnyinspektoratprace-18bdcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/narodnyinspektoratprace-18bdcf.jpg", "osmTags": { "and": [ "government=administrative", @@ -340856,7 +341070,7 @@ }, { "question": "National Bureau of Investigation", - "icon": "./assets/data/nsi/logos/nationalbureauofinvestigation-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalbureauofinvestigation-7987d4.jpg", "osmTags": { "and": [ "government=investigation", @@ -340875,7 +341089,7 @@ }, { "question": "National Commission on Indigenous Peoples", - "icon": "./assets/data/nsi/logos/nationalcommissiononindigenouspeoples-7987d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalcommissiononindigenouspeoples-7987d4.png", "osmTags": { "and": [ "government=emergency", @@ -340894,7 +341108,7 @@ }, { "question": "National Disaster Risk Reduction and Management Council", - "icon": "./assets/data/nsi/logos/nationaldisasterriskreductionandmanagementcouncil-7987d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaldisasterriskreductionandmanagementcouncil-7987d4.svg", "osmTags": { "and": [ "government=emergency", @@ -340913,7 +341127,7 @@ }, { "question": "National Economic and Development Authority", - "icon": "./assets/data/nsi/logos/nationaleconomicanddevelopmentauthority-7987d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaleconomicanddevelopmentauthority-7987d4.svg", "osmTags": { "and": [ "government=agency", @@ -340932,7 +341146,7 @@ }, { "question": "National Police Commission", - "icon": "./assets/data/nsi/logos/nationalpolicecommission-7987d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalpolicecommission-7987d4.png", "osmTags": { "and": [ "government=police", @@ -340951,7 +341165,7 @@ }, { "question": "National Telecommunications Commission", - "icon": "./assets/data/nsi/logos/nationaltelecommunicationscommission-7987d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationaltelecommunicationscommission-7987d4.svg", "osmTags": { "and": [ "government=communications", @@ -340970,7 +341184,7 @@ }, { "question": "National Weather Service", - "icon": "./assets/data/nsi/logos/nationalweatherservice-eaa288.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalweatherservice-eaa288.png", "osmTags": { "and": [ "government=meteorology", @@ -340987,7 +341201,7 @@ }, { "question": "Nevada DMV", - "icon": "./assets/data/nsi/logos/nevadadepartmentofmotorvehicles-331b92.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nevadadepartmentofmotorvehicles-331b92.png", "osmTags": { "and": [ "government=transportation", @@ -341004,7 +341218,7 @@ }, { "question": "New York State DMV", - "icon": "./assets/data/nsi/logos/newyorkstatedepartmentofmotorvehicles-b00967.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkstatedepartmentofmotorvehicles-b00967.png", "osmTags": { "and": [ "government=transportation", @@ -341021,7 +341235,7 @@ }, { "question": "NJMVC", - "icon": "./assets/data/nsi/logos/newjerseymotorvehiclecommission-7de197.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newjerseymotorvehiclecommission-7de197.png", "osmTags": { "and": [ "government=transportation", @@ -341054,7 +341268,7 @@ }, { "question": "NSW Rural Fire Service", - "icon": "./assets/data/nsi/logos/nswruralfireservice-6e393a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nswruralfireservice-6e393a.jpg", "osmTags": { "and": [ "office=government", @@ -341069,7 +341283,7 @@ }, { "question": "Ohio BMV", - "icon": "./assets/data/nsi/logos/ohiobureauofmotorvehicles-e18323.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiobureauofmotorvehicles-e18323.jpg", "osmTags": { "and": [ "government=transportation", @@ -341101,7 +341315,7 @@ }, { "question": "Oregon Department of Human Services", - "icon": "./assets/data/nsi/logos/oregondepartmentofhumanservices-244100.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oregondepartmentofhumanservices-244100.png", "osmTags": { "and": [ "government=social_services", @@ -341133,7 +341347,7 @@ }, { "question": "Państwowa Straż Pożarna", - "icon": "./assets/data/nsi/logos/panstwowastrazpozarna-995fc9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/panstwowastrazpozarna-995fc9.png", "osmTags": { "and": [ "government=public_safety", @@ -341149,7 +341363,7 @@ }, { "question": "Philippine Ports Authority", - "icon": "./assets/data/nsi/logos/philippineportsauthority-7987d4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/philippineportsauthority-7987d4.svg", "osmTags": { "and": [ "government=agency", @@ -341168,7 +341382,7 @@ }, { "question": "Professional Regulation Commission", - "icon": "./assets/data/nsi/logos/professionalregulationcommission-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/professionalregulationcommission-7987d4.jpg", "osmTags": { "and": [ "government=agency", @@ -341187,7 +341401,7 @@ }, { "question": "Receita Federal do Brasil", - "icon": "./assets/data/nsi/logos/receitafederaldobrasil-efa52e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/receitafederaldobrasil-efa52e.jpg", "osmTags": { "and": [ "office=government", @@ -341202,7 +341416,7 @@ }, { "question": "SAREN", - "icon": "./assets/data/nsi/logos/sarenministeriodeinterioryjusticia-b90a8d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sarenministeriodeinterioryjusticia-b90a8d.png", "osmTags": { "and": [ "government=register_office", @@ -341242,7 +341456,7 @@ }, { "question": "Service Canada", - "icon": "./assets/data/nsi/logos/servicecanada-c369f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/servicecanada-c369f1.jpg", "osmTags": { "and": [ "office=government", @@ -341299,7 +341513,7 @@ }, { "question": "Social Security Administration", - "icon": "./assets/data/nsi/logos/socialsecurityadministration-eaa288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/socialsecurityadministration-eaa288.jpg", "osmTags": { "and": [ "government=social_security", @@ -341317,7 +341531,7 @@ }, { "question": "Social Security System", - "icon": "./assets/data/nsi/logos/socialsecuritysystem-7987d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/socialsecuritysystem-7987d4.jpg", "osmTags": { "and": [ "government=social_security", @@ -341336,7 +341550,7 @@ }, { "question": "South African Revenue Service", - "icon": "./assets/data/nsi/logos/southafricanrevenueservice-efe93a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southafricanrevenueservice-efe93a.jpg", "osmTags": { "and": [ "office=government", @@ -341354,7 +341568,7 @@ }, { "question": "South Dakota DPS", - "icon": "./assets/data/nsi/logos/southdakotadepartmentofpublicsafety-b4f9cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southdakotadepartmentofpublicsafety-b4f9cc.png", "osmTags": { "and": [ "office=government", @@ -341370,7 +341584,7 @@ }, { "question": "Stadt Augsburg", - "icon": "./assets/data/nsi/logos/stadtaugsburg-bab14c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtaugsburg-bab14c.svg", "osmTags": { "and": [ "office=government", @@ -341385,7 +341599,7 @@ }, { "question": "Stadt Bielefeld", - "icon": "./assets/data/nsi/logos/stadtbielefeld-7646da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtbielefeld-7646da.png", "osmTags": { "and": [ "office=government", @@ -341400,7 +341614,7 @@ }, { "question": "Sûreté du Québec", - "icon": "./assets/data/nsi/logos/sureteduquebec-00acfa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sureteduquebec-00acfa.png", "osmTags": { "and": [ "office=government", @@ -341416,7 +341630,7 @@ }, { "question": "Texas DMV", - "icon": "./assets/data/nsi/logos/texasdepartmentofmotorvehicles-c28928.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/texasdepartmentofmotorvehicles-c28928.jpg", "osmTags": { "and": [ "government=transportation", @@ -341448,7 +341662,7 @@ }, { "question": "United States Customs and Border Protection", - "icon": "./assets/data/nsi/logos/unitedstatescustomsandborderprotection-eaa288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatescustomsandborderprotection-eaa288.jpg", "osmTags": { "and": [ "government=customs", @@ -341466,7 +341680,7 @@ }, { "question": "United States Geological Survey", - "icon": "./assets/data/nsi/logos/unitedstatesgeologicalsurvey-eaa288.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesgeologicalsurvey-eaa288.jpg", "osmTags": { "and": [ "office=government", @@ -341491,7 +341705,7 @@ }, { "question": "Vermont DMV", - "icon": "./assets/data/nsi/logos/vermontdepartmentofmotorvehicles-e8b2d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontdepartmentofmotorvehicles-e8b2d3.jpg", "osmTags": { "and": [ "government=transportation", @@ -341522,7 +341736,7 @@ }, { "question": "Virginia DMV", - "icon": "./assets/data/nsi/logos/virginiadepartmentofmotorvehicles-74923a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/virginiadepartmentofmotorvehicles-74923a.jpg", "osmTags": { "and": [ "government=transportation", @@ -341548,7 +341762,7 @@ }, { "question": "Xunta de Galicia", - "icon": "./assets/data/nsi/logos/xuntadegalicia-f19bf1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xuntadegalicia-f19bf1.jpg", "osmTags": { "and": [ "office=government", @@ -341622,7 +341836,7 @@ }, { "question": "Агенция по заетостта", - "icon": "./assets/data/nsi/logos/ff615c-8d3c9a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ff615c-8d3c9a.png", "osmTags": { "and": [ "government=employment_agency", @@ -341661,7 +341875,7 @@ }, { "question": "Министертво на здравеопазването", - "icon": "./assets/data/nsi/logos/c2eee5-8d3c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c2eee5-8d3c9a.jpg", "osmTags": { "and": [ "office=government", @@ -341676,7 +341890,7 @@ }, { "question": "Министертво на образованието и науката", - "icon": "./assets/data/nsi/logos/144fef-8d3c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/144fef-8d3c9a.jpg", "osmTags": { "and": [ "office=government", @@ -341705,7 +341919,7 @@ }, { "question": "Национална агенция за приходите", - "icon": "./assets/data/nsi/logos/24960f-8d3c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/24960f-8d3c9a.jpg", "osmTags": { "and": [ "government=tax", @@ -341721,7 +341935,7 @@ }, { "question": "Национална здравноосигурителна каса", - "icon": "./assets/data/nsi/logos/57670d-8d3c9a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/57670d-8d3c9a.png", "osmTags": { "and": [ "office=government", @@ -341736,7 +341950,7 @@ }, { "question": "Прокуратура на Република България", - "icon": "./assets/data/nsi/logos/5494fb-8d3c9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/5494fb-8d3c9a.jpg", "osmTags": { "and": [ "government=prosecutor", @@ -341770,7 +341984,7 @@ }, { "question": "იუსტიციის სახლი", - "icon": "./assets/data/nsi/logos/leplpublicservicehall-9d46cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/leplpublicservicehall-9d46cb.png", "osmTags": { "and": [ "government=public_service", @@ -341833,7 +342047,7 @@ }, { "question": "VFS Global", - "icon": "./assets/data/nsi/logos/vfsglobal-3aff24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vfsglobal-3aff24.jpg", "osmTags": { "and": [ "office=visa", @@ -341864,7 +342078,7 @@ }, { "question": "De Watergroep", - "icon": "./assets/data/nsi/logos/dewatergroep-a32d06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dewatergroep-a32d06.png", "osmTags": { "and": [ "office=water_utility", @@ -341895,7 +342109,7 @@ }, { "question": "Maynilad Water Services", - "icon": "./assets/data/nsi/logos/mayniladwaterservices-306e90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-306e90.jpg", "osmTags": { "and": [ "office=water_utility", @@ -341911,7 +342125,7 @@ }, { "question": "Pidpa", - "icon": "./assets/data/nsi/logos/pidpa-a32d06.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pidpa-a32d06.png", "osmTags": { "and": [ "office=water_utility", @@ -341927,7 +342141,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-ed9ebd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-ed9ebd.png", "osmTags": { "and": [ "office=water_utility", @@ -341945,7 +342159,7 @@ }, { "question": "Watercare", - "icon": "./assets/data/nsi/logos/watercare-7cc3eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watercare-7cc3eb.jpg", "osmTags": { "and": [ "office=water_utility", @@ -341961,7 +342175,7 @@ }, { "question": "ΕΥΑΘ", - "icon": "./assets/data/nsi/logos/41a232-0a36a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/41a232-0a36a3.jpg", "osmTags": { "and": [ "office=water_utility", @@ -341977,7 +342191,7 @@ }, { "question": "ΕΥΔΑΠ", - "icon": "./assets/data/nsi/logos/41df5e-0a36a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/41df5e-0a36a3.png", "osmTags": { "and": [ "office=water_utility", @@ -342293,7 +342507,7 @@ }, { "question": "ВиК София област", - "icon": "./assets/data/nsi/logos/423877-2a765c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/423877-2a765c.png", "osmTags": { "and": [ "office=water_utility", @@ -342399,7 +342613,7 @@ }, { "question": "Софийска вода", - "icon": "./assets/data/nsi/logos/938062-2a765c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/938062-2a765c.png", "osmTags": { "and": [ "office=water_utility", @@ -342415,7 +342629,7 @@ }, { "question": "水務署 Water Supplies Department", - "icon": "./assets/data/nsi/logos/watersuppliesdepartment-b29262.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-b29262.jpg", "osmTags": { "and": [ "office=water_utility", @@ -342464,7 +342678,7 @@ }, { "question": "ACEA", - "icon": "./assets/data/nsi/logos/acea-bb421b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/acea-bb421b.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -342542,7 +342756,7 @@ }, { "question": "Air Liquide", - "icon": "./assets/data/nsi/logos/airliquide-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/airliquide-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -342571,7 +342785,7 @@ }, { "question": "Air Products", - "icon": "./assets/data/nsi/logos/airproducts-03e08c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/airproducts-03e08c.png", "osmTags": { "and": [ "pipeline=substation", @@ -342627,7 +342841,7 @@ }, { "question": "Alyeska Pipeline Service Company", - "icon": "./assets/data/nsi/logos/alyeskapipelineservicecompany-4e089c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alyeskapipelineservicecompany-4e089c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -342688,7 +342902,7 @@ }, { "question": "Anglo American", - "icon": "./assets/data/nsi/logos/angloamerican-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/angloamerican-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -342703,7 +342917,7 @@ }, { "question": "Ankara Su ve Kanalizasyon İdaresi", - "icon": "./assets/data/nsi/logos/ankarasuvekanalizasyonidaresi-d39c59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ankarasuvekanalizasyonidaresi-d39c59.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -342759,7 +342973,7 @@ }, { "question": "Ascend Performance Materials", - "icon": "./assets/data/nsi/logos/ascendperformancematerials-79a9ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ascendperformancematerials-79a9ce.png", "osmTags": { "and": [ "pipeline=substation", @@ -342797,7 +343011,7 @@ }, { "question": "Atlanta Gas Light", - "icon": "./assets/data/nsi/logos/atlantagaslight-8e8830.png", + "icon": "https://data.mapcomplete.org/nsi//logos/atlantagaslight-8e8830.png", "osmTags": { "and": [ "pipeline=substation", @@ -342868,7 +343082,7 @@ }, { "question": "Avacon", - "icon": "./assets/data/nsi/logos/avacon-47dd0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avacon-47dd0d.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -342883,7 +343097,7 @@ }, { "question": "Ayuntamiento de Zaragoza", - "icon": "./assets/data/nsi/logos/ayuntamientodezaragoza-c0b79c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ayuntamientodezaragoza-c0b79c.png", "osmTags": { "and": [ "pipeline=substation", @@ -342898,7 +343112,7 @@ }, { "question": "badenova", - "icon": "./assets/data/nsi/logos/badenova-47dd0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/badenova-47dd0d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -342927,7 +343141,7 @@ }, { "question": "Baltimore City Department of Public Works", - "icon": "./assets/data/nsi/logos/baltimorecitydepartmentofpublicworks-b96711.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimorecitydepartmentofpublicworks-b96711.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -342957,7 +343171,7 @@ }, { "question": "BASF", - "icon": "./assets/data/nsi/logos/basf-961a21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/basf-961a21.png", "osmTags": { "and": [ "pipeline=substation", @@ -343045,7 +343259,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-21cbc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-21cbc0.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343103,7 +343317,7 @@ }, { "question": "Berliner Wasserbetriebe", - "icon": "./assets/data/nsi/logos/berlinerwasserbetriebe-599929.png", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerwasserbetriebe-599929.png", "osmTags": { "and": [ "pipeline=substation", @@ -343206,7 +343420,7 @@ }, { "question": "BOTAŞ", - "icon": "./assets/data/nsi/logos/botas-d39c59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/botas-d39c59.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343221,7 +343435,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343290,7 +343504,7 @@ }, { "question": "Bristol Water", - "icon": "./assets/data/nsi/logos/bristolwater-7b0aaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bristolwater-7b0aaf.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343360,7 +343574,7 @@ }, { "question": "Cadent", - "icon": "./assets/data/nsi/logos/cadent-5737c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cadent-5737c5.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343417,7 +343631,7 @@ }, { "question": "Caltex", - "icon": "./assets/data/nsi/logos/caltex-fe28ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/caltex-fe28ca.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343573,7 +343787,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-cbbbb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-cbbbb7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343606,7 +343820,7 @@ }, { "question": "ČEZ", - "icon": "./assets/data/nsi/logos/cez-ccffd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cez-ccffd7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343754,7 +343968,7 @@ }, { "question": "City of Staunton", - "icon": "./assets/data/nsi/logos/cityofstaunton-9e1f3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofstaunton-9e1f3f.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343769,7 +343983,7 @@ }, { "question": "City of Vancouver", - "icon": "./assets/data/nsi/logos/cityofvancouver-21cbc0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofvancouver-21cbc0.svg", "osmTags": { "and": [ "pipeline=substation", @@ -343816,7 +344030,7 @@ }, { "question": "CNR", - "icon": "./assets/data/nsi/logos/cnr-4a5c8f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cnr-4a5c8f.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343840,7 +344054,7 @@ }, { "question": "Colonial Pipeline", - "icon": "./assets/data/nsi/logos/colonialpipeline-cbbbb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/colonialpipeline-cbbbb7.png", "osmTags": { "and": [ "pipeline=substation", @@ -343910,7 +344124,7 @@ }, { "question": "CONAGUA", - "icon": "./assets/data/nsi/logos/conagua-02fb83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/conagua-02fb83.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -343988,7 +344202,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-15c306.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-15c306.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344003,7 +344217,7 @@ }, { "question": "Creos Deutschland", - "icon": "./assets/data/nsi/logos/creosdeutschland-47dd0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creosdeutschland-47dd0d.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344045,7 +344259,7 @@ }, { "question": "Dalkia", - "icon": "./assets/data/nsi/logos/dalkia-706135.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dalkia-706135.svg", "osmTags": { "and": [ "pipeline=substation", @@ -344242,7 +344456,7 @@ }, { "question": "Dhaka Wasa", - "icon": "./assets/data/nsi/logos/dhakawasa-5e5bff.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dhakawasa-5e5bff.svg", "osmTags": { "and": [ "pipeline=substation", @@ -344266,7 +344480,7 @@ }, { "question": "District of Columbia Water and Sewer Authority", - "icon": "./assets/data/nsi/logos/districtofcolumbiawaterandsewerauthority-7540e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/districtofcolumbiawaterandsewerauthority-7540e0.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344354,7 +344568,7 @@ }, { "question": "Dow Chemical Company", - "icon": "./assets/data/nsi/logos/dowchemicalcompany-cbbbb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-cbbbb7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344378,7 +344592,7 @@ }, { "question": "DSM", - "icon": "./assets/data/nsi/logos/dsm-983549.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dsm-983549.svg", "osmTags": { "and": [ "pipeline=substation", @@ -344420,7 +344634,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-9c139d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-9c139d.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344435,7 +344649,7 @@ }, { "question": "e-netz Südhessen", - "icon": "./assets/data/nsi/logos/enetzsudhessen-47dd0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enetzsudhessen-47dd0d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -344450,7 +344664,7 @@ }, { "question": "e-regio", - "icon": "./assets/data/nsi/logos/eregio-dfd0ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eregio-dfd0ce.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344578,7 +344792,7 @@ }, { "question": "Edison", - "icon": "./assets/data/nsi/logos/edison-bb421b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edison-bb421b.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344621,7 +344835,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-03e08c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-03e08c.png", "osmTags": { "and": [ "pipeline=substation", @@ -344637,7 +344851,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-0c79f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-0c79f8.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344712,7 +344926,7 @@ }, { "question": "Enagas", - "icon": "./assets/data/nsi/logos/enagas-03e08c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enagas-03e08c.svg", "osmTags": { "and": [ "pipeline=substation", @@ -344727,7 +344941,7 @@ }, { "question": "Enbridge", - "icon": "./assets/data/nsi/logos/enbridge-2e27a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enbridge-2e27a1.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344760,7 +344974,7 @@ }, { "question": "EnBW Energie Baden-Württemberg AG", - "icon": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-47dd0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-47dd0d.png", "osmTags": { "and": [ "pipeline=substation", @@ -344775,7 +344989,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-0e4881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-0e4881.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344790,7 +345004,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-03e08c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-03e08c.png", "osmTags": { "and": [ "pipeline=substation", @@ -344805,7 +345019,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-03e08c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-03e08c.svg", "osmTags": { "and": [ "pipeline=substation", @@ -344820,7 +345034,7 @@ }, { "question": "Enel Produzione", - "icon": "./assets/data/nsi/logos/enelproduzione-bb421b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelproduzione-bb421b.svg", "osmTags": { "and": [ "pipeline=substation", @@ -344844,7 +345058,7 @@ }, { "question": "Energie SaarLorLux", - "icon": "./assets/data/nsi/logos/energiesaarlorlux-47dd0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesaarlorlux-47dd0d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -344873,7 +345087,7 @@ }, { "question": "Energieversorgung Filstal", - "icon": "./assets/data/nsi/logos/energieversorgungfilstal-3970e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieversorgungfilstal-3970e4.png", "osmTags": { "and": [ "pipeline=substation", @@ -344903,7 +345117,7 @@ }, { "question": "Énergir", - "icon": "./assets/data/nsi/logos/energir-16a4d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energir-16a4d7.png", "osmTags": { "and": [ "pipeline=substation", @@ -344960,7 +345174,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -344984,7 +345198,7 @@ }, { "question": "Eni", - "icon": "./assets/data/nsi/logos/eni-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eni-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345058,7 +345272,7 @@ }, { "question": "EOG Resources", - "icon": "./assets/data/nsi/logos/eogresources-cbbbb7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eogresources-cbbbb7.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345136,7 +345350,7 @@ }, { "question": "Equinor", - "icon": "./assets/data/nsi/logos/equinor-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equinor-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345160,7 +345374,7 @@ }, { "question": "Erdgas Ostschweiz AG", - "icon": "./assets/data/nsi/logos/erdgasostschweizag-03e5ba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/erdgasostschweizag-03e5ba.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345175,7 +345389,7 @@ }, { "question": "Erdgas Zentralschweiz", - "icon": "./assets/data/nsi/logos/erdgaszentralschweiz-c0f0d1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/erdgaszentralschweiz-c0f0d1.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345199,7 +345413,7 @@ }, { "question": "ESB Generation and Wholesale Markets", - "icon": "./assets/data/nsi/logos/esbgenerationandwholesalemarkets-964520.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbgenerationandwholesalemarkets-964520.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345214,7 +345428,7 @@ }, { "question": "Esso", - "icon": "./assets/data/nsi/logos/esso-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/esso-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345253,7 +345467,7 @@ }, { "question": "Evides Waterbedrijf", - "icon": "./assets/data/nsi/logos/evideswaterbedrijf-983549.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evideswaterbedrijf-983549.png", "osmTags": { "and": [ "pipeline=substation", @@ -345268,7 +345482,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-a158a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-a158a5.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345297,7 +345511,7 @@ }, { "question": "Evolve", - "icon": "./assets/data/nsi/logos/evolve-c929bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evolve-c929bc.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345313,7 +345527,7 @@ }, { "question": "EWZ", - "icon": "./assets/data/nsi/logos/ewz-03e5ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewz-03e5ba.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345328,7 +345542,7 @@ }, { "question": "Exolum", - "icon": "./assets/data/nsi/logos/exolum-7ee736.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/exolum-7ee736.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345352,7 +345566,7 @@ }, { "question": "ExxonMobil Pipeline Company", - "icon": "./assets/data/nsi/logos/exxonmobilpipelinecompany-075232.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exxonmobilpipelinecompany-075232.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345483,7 +345697,7 @@ }, { "question": "First Gas", - "icon": "./assets/data/nsi/logos/firstgas-dddc03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstgas-dddc03.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345535,7 +345749,7 @@ }, { "question": "Fluxys", - "icon": "./assets/data/nsi/logos/fluxys-0d984d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fluxys-0d984d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345564,7 +345778,7 @@ }, { "question": "FortisBC", - "icon": "./assets/data/nsi/logos/fortisbc-21cbc0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortisbc-21cbc0.png", "osmTags": { "and": [ "pipeline=substation", @@ -345638,7 +345852,7 @@ }, { "question": "GAIL", - "icon": "./assets/data/nsi/logos/gail-4351eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gail-4351eb.png", "osmTags": { "and": [ "pipeline=substation", @@ -345695,7 +345909,7 @@ }, { "question": "Gas Networks Ireland", - "icon": "./assets/data/nsi/logos/gasnetworksireland-00086a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gasnetworksireland-00086a.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -345719,7 +345933,7 @@ }, { "question": "GASCADE", - "icon": "./assets/data/nsi/logos/gascade-47dd0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gascade-47dd0d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345743,7 +345957,7 @@ }, { "question": "Gassco", - "icon": "./assets/data/nsi/logos/gassco-03e08c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gassco-03e08c.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345758,7 +345972,7 @@ }, { "question": "Gasum", - "icon": "./assets/data/nsi/logos/gasum-03e08c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gasum-03e08c.png", "osmTags": { "and": [ "pipeline=substation", @@ -345773,7 +345987,7 @@ }, { "question": "Gasunie (Nederland)", - "icon": "./assets/data/nsi/logos/gasunie-983549.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gasunie-983549.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345802,7 +346016,7 @@ }, { "question": "Gasverbund Mittelland AG", - "icon": "./assets/data/nsi/logos/gasverbundmittellandag-03e5ba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gasverbundmittellandag-03e5ba.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345827,7 +346041,7 @@ }, { "question": "Gaznat SA", - "icon": "./assets/data/nsi/logos/gaznatsa-17e5f5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gaznatsa-17e5f5.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345842,7 +346056,7 @@ }, { "question": "Gazprom", - "icon": "./assets/data/nsi/logos/gazprom-03e08c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gazprom-03e08c.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345866,7 +346080,7 @@ }, { "question": "Gemeinde Großheirath", - "icon": "./assets/data/nsi/logos/gemeindegrossheirath-32d0c9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindegrossheirath-32d0c9.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345881,7 +346095,7 @@ }, { "question": "Gemeinde Schönbrunn", - "icon": "./assets/data/nsi/logos/gemeindeschonbrunn-3970e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindeschonbrunn-3970e4.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345896,7 +346110,7 @@ }, { "question": "Gemeinde Trabitz", - "icon": "./assets/data/nsi/logos/gemeindetrabitz-32d0c9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindetrabitz-32d0c9.svg", "osmTags": { "and": [ "pipeline=substation", @@ -345947,7 +346161,7 @@ }, { "question": "Gippsland Water", - "icon": "./assets/data/nsi/logos/gippslandwater-cba2a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gippslandwater-cba2a8.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346076,7 +346290,7 @@ }, { "question": "Grosskraftwerk Mannheim", - "icon": "./assets/data/nsi/logos/grosskraftwerkmannheim-3970e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/grosskraftwerkmannheim-3970e4.svg", "osmTags": { "and": [ "pipeline=substation", @@ -346187,7 +346401,7 @@ }, { "question": "Harz Energie", - "icon": "./assets/data/nsi/logos/harzenergie-433a4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harzenergie-433a4c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346252,7 +346466,7 @@ }, { "question": "Hess Corporation", - "icon": "./assets/data/nsi/logos/hesscorporation-075232.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hesscorporation-075232.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346371,7 +346585,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-16a4d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-16a4d7.png", "osmTags": { "and": [ "pipeline=substation", @@ -346400,7 +346614,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-a158a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-a158a5.png", "osmTags": { "and": [ "pipeline=substation", @@ -346415,7 +346629,7 @@ }, { "question": "Imperial Oil", - "icon": "./assets/data/nsi/logos/imperialoil-baa3c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialoil-baa3c0.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346430,7 +346644,7 @@ }, { "question": "INA", - "icon": "./assets/data/nsi/logos/ina-38d7d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ina-38d7d1.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346445,7 +346659,7 @@ }, { "question": "Ineos USA", - "icon": "./assets/data/nsi/logos/ineosusa-cbbbb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ineosusa-cbbbb7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346474,7 +346688,7 @@ }, { "question": "International Paper", - "icon": "./assets/data/nsi/logos/internationalpaper-cbbbb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/internationalpaper-cbbbb7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346489,7 +346703,7 @@ }, { "question": "IOCL", - "icon": "./assets/data/nsi/logos/iocl-4351eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/iocl-4351eb.png", "osmTags": { "and": [ "pipeline=substation", @@ -346505,7 +346719,7 @@ }, { "question": "Irish Water", - "icon": "./assets/data/nsi/logos/irishwater-00086a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishwater-00086a.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346540,7 +346754,7 @@ }, { "question": "Irving Oil", - "icon": "./assets/data/nsi/logos/irvingoil-2e27a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irvingoil-2e27a1.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346555,7 +346769,7 @@ }, { "question": "İstanbul Su ve Kanalizasyon İdaresi", - "icon": "./assets/data/nsi/logos/istanbulsuvekanalizasyonidaresi-d39c59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/istanbulsuvekanalizasyonidaresi-d39c59.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346625,7 +346839,7 @@ }, { "question": "Karlsruher Institut für Technologie", - "icon": "./assets/data/nsi/logos/karlsruherinstitutfurtechnologie-3970e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlsruherinstitutfurtechnologie-3970e4.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346674,7 +346888,7 @@ }, { "question": "KELAG", - "icon": "./assets/data/nsi/logos/kelag-4d2223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-4d2223.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -346698,7 +346912,7 @@ }, { "question": "Kinder Morgan", - "icon": "./assets/data/nsi/logos/kindermorgan-2e27a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kindermorgan-2e27a1.png", "osmTags": { "and": [ "pipeline=substation", @@ -346843,7 +347057,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-2a0bd0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-2a0bd0.png", "osmTags": { "and": [ "pipeline=substation", @@ -346969,7 +347183,7 @@ }, { "question": "Linde", - "icon": "./assets/data/nsi/logos/linde-cbbbb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/linde-cbbbb7.png", "osmTags": { "and": [ "pipeline=substation", @@ -347084,7 +347298,7 @@ }, { "question": "Mancomunidad de los Canales del Taibilla", - "icon": "./assets/data/nsi/logos/mancomunidaddeloscanalesdeltaibilla-0e4881.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mancomunidaddeloscanalesdeltaibilla-0e4881.png", "osmTags": { "and": [ "pipeline=substation", @@ -347117,7 +347331,7 @@ }, { "question": "Marathon Oil", - "icon": "./assets/data/nsi/logos/marathonoil-15c306.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonoil-15c306.svg", "osmTags": { "and": [ "pipeline=substation", @@ -347132,7 +347346,7 @@ }, { "question": "Marathon Pipe Line", - "icon": "./assets/data/nsi/logos/marathonpipeline-cbbbb7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonpipeline-cbbbb7.svg", "osmTags": { "and": [ "pipeline=substation", @@ -347216,7 +347430,7 @@ }, { "question": "Maynilad Water Services", - "icon": "./assets/data/nsi/logos/mayniladwaterservices-4097bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mayniladwaterservices-4097bd.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347240,7 +347454,7 @@ }, { "question": "Memorial University", - "icon": "./assets/data/nsi/logos/memorialuniversity-ae59ea.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/memorialuniversity-ae59ea.svg", "osmTags": { "and": [ "pipeline=substation", @@ -347255,7 +347469,7 @@ }, { "question": "Memphis Light, Gas and Water", - "icon": "./assets/data/nsi/logos/memphislightgasandwater-67a7c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-67a7c7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347326,7 +347540,7 @@ }, { "question": "Metropolitan Water District of Southern California", - "icon": "./assets/data/nsi/logos/metropolitanwaterdistrictofsoutherncalifornia-2125b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolitanwaterdistrictofsoutherncalifornia-2125b6.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347432,7 +347646,7 @@ }, { "question": "MOL", - "icon": "./assets/data/nsi/logos/mol-1cc3f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mol-1cc3f6.png", "osmTags": { "and": [ "pipeline=substation", @@ -347483,7 +347697,7 @@ }, { "question": "Motiva Enterprises", - "icon": "./assets/data/nsi/logos/motivaenterprises-cbbbb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/motivaenterprises-cbbbb7.png", "osmTags": { "and": [ "pipeline=substation", @@ -347629,7 +347843,7 @@ }, { "question": "Naturgy", - "icon": "./assets/data/nsi/logos/naturgy-0e4881.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturgy-0e4881.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347691,7 +347905,7 @@ }, { "question": "Netz NÖ", - "icon": "./assets/data/nsi/logos/netzno-a158a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzno-a158a5.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347706,7 +347920,7 @@ }, { "question": "Netze Südwest", - "icon": "./assets/data/nsi/logos/netzesudwest-3970e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/netzesudwest-3970e4.png", "osmTags": { "and": [ "pipeline=substation", @@ -347774,7 +347988,7 @@ }, { "question": "Nicor Gas", - "icon": "./assets/data/nsi/logos/nicorgas-cbbbb7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nicorgas-cbbbb7.png", "osmTags": { "and": [ "pipeline=substation", @@ -347803,7 +348017,7 @@ }, { "question": "Nord-West Oelleitung GmbH", - "icon": "./assets/data/nsi/logos/nordwestoelleitunggmbh-26df3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordwestoelleitunggmbh-26df3e.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347843,7 +348057,7 @@ }, { "question": "Northern Ireland Water", - "icon": "./assets/data/nsi/logos/northernirelandwater-c929bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernirelandwater-c929bc.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347876,7 +348090,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-5f8fb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-5f8fb7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347891,7 +348105,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-fc7ec3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-fc7ec3.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347929,7 +348143,7 @@ }, { "question": "Nukissiorfiit", - "icon": "./assets/data/nsi/logos/nukissiorfiit-5901b9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-5901b9.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347962,7 +348176,7 @@ }, { "question": "NW Natural", - "icon": "./assets/data/nsi/logos/nwnatural-9fbe40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nwnatural-9fbe40.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -347978,7 +348192,7 @@ }, { "question": "ÖBB", - "icon": "./assets/data/nsi/logos/obb-a158a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obb-a158a5.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348016,7 +348230,7 @@ }, { "question": "Oiltanking Deutschland GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/oiltankingdeutschlandgmbhandcokg-47dd0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/oiltankingdeutschlandgmbhandcokg-47dd0d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -348040,7 +348254,7 @@ }, { "question": "OMV", - "icon": "./assets/data/nsi/logos/omv-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/omv-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348069,7 +348283,7 @@ }, { "question": "Oneok", - "icon": "./assets/data/nsi/logos/oneok-cbbbb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oneok-cbbbb7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348102,7 +348316,7 @@ }, { "question": "ONTRAS", - "icon": "./assets/data/nsi/logos/ontras-47dd0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ontras-47dd0d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -348126,7 +348340,7 @@ }, { "question": "Open Grid Europe GmbH", - "icon": "./assets/data/nsi/logos/opengrideuropegmbh-03e08c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/opengrideuropegmbh-03e08c.svg", "osmTags": { "and": [ "pipeline=substation", @@ -348151,7 +348365,7 @@ }, { "question": "Orka náttúrunnar", - "icon": "./assets/data/nsi/logos/orkanatturunnar-b95f4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orkanatturunnar-b95f4c.png", "osmTags": { "and": [ "pipeline=substation", @@ -348216,7 +348430,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-2125b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-2125b6.png", "osmTags": { "and": [ "pipeline=substation", @@ -348314,7 +348528,7 @@ }, { "question": "PEMEX", - "icon": "./assets/data/nsi/logos/pemex-02fb83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pemex-02fb83.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348329,7 +348543,7 @@ }, { "question": "Pennsylvania State University", - "icon": "./assets/data/nsi/logos/pennsylvaniastateuniversity-3a2dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pennsylvaniastateuniversity-3a2dd1.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348371,7 +348585,7 @@ }, { "question": "Petrobras", - "icon": "./assets/data/nsi/logos/petrobras-0efc1c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrobras-0efc1c.png", "osmTags": { "and": [ "pipeline=substation", @@ -348409,7 +348623,7 @@ }, { "question": "Petroecuador", - "icon": "./assets/data/nsi/logos/petroecuador-81ae8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroecuador-81ae8e.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348465,7 +348679,7 @@ }, { "question": "Phillips 66", - "icon": "./assets/data/nsi/logos/phillips66-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/phillips66-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348489,7 +348703,7 @@ }, { "question": "Piedmont Natural Gas Company", - "icon": "./assets/data/nsi/logos/piedmontnaturalgascompany-e18127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/piedmontnaturalgascompany-e18127.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348554,7 +348768,7 @@ }, { "question": "Plzeňská teplárenská, a.s.", - "icon": "./assets/data/nsi/logos/plzenskateplarenskaas-ccffd7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/plzenskateplarenskaas-ccffd7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348578,7 +348792,7 @@ }, { "question": "Powerco", - "icon": "./assets/data/nsi/logos/powerco-dddc03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerco-dddc03.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348594,7 +348808,7 @@ }, { "question": "Preem", - "icon": "./assets/data/nsi/logos/preem-6502da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/preem-6502da.png", "osmTags": { "and": [ "pipeline=substation", @@ -348668,7 +348882,7 @@ }, { "question": "QGC", - "icon": "./assets/data/nsi/logos/qgc-0331bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qgc-0331bf.png", "osmTags": { "and": [ "pipeline=substation", @@ -348701,7 +348915,7 @@ }, { "question": "RAG Austria", - "icon": "./assets/data/nsi/logos/ragaustria-a158a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ragaustria-a158a5.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348789,7 +349003,7 @@ }, { "question": "REN", - "icon": "./assets/data/nsi/logos/ren-fe4ad6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ren-fe4ad6.svg", "osmTags": { "and": [ "pipeline=substation", @@ -348831,7 +349045,7 @@ }, { "question": "Rhein-Main-Rohrleitungstransportgesellschaft", - "icon": "./assets/data/nsi/logos/rheinmainrohrleitungstransportgesellschaft-47dd0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinmainrohrleitungstransportgesellschaft-47dd0d.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348861,7 +349075,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-7d59ca.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-7d59ca.svg", "osmTags": { "and": [ "pipeline=substation", @@ -348926,7 +349140,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-706135.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-706135.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348941,7 +349155,7 @@ }, { "question": "SA Water", - "icon": "./assets/data/nsi/logos/sawater-137d4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sawater-137d4e.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348965,7 +349179,7 @@ }, { "question": "Sabesp", - "icon": "./assets/data/nsi/logos/sabesp-1902d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sabesp-1902d2.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -348980,7 +349194,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-e6f7d6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-e6f7d6.png", "osmTags": { "and": [ "pipeline=substation", @@ -349068,7 +349282,7 @@ }, { "question": "SBB - CFF", - "icon": "./assets/data/nsi/logos/sbbcff-03e5ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbbcff-03e5ba.png", "osmTags": { "and": [ "pipeline=substation", @@ -349094,7 +349308,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-63650c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-63650c.svg", "osmTags": { "and": [ "pipeline=substation", @@ -349132,7 +349346,7 @@ }, { "question": "Scottish Water", - "icon": "./assets/data/nsi/logos/scottishwater-5f4966.png", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishwater-5f4966.png", "osmTags": { "and": [ "pipeline=substation", @@ -349174,7 +349388,7 @@ }, { "question": "Seattle Public Utilities", - "icon": "./assets/data/nsi/logos/seattlepublicutilities-5fe888.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlepublicutilities-5fe888.png", "osmTags": { "and": [ "pipeline=substation", @@ -349200,7 +349414,7 @@ }, { "question": "Seqwater", - "icon": "./assets/data/nsi/logos/seqwater-0331bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seqwater-0331bf.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -349242,7 +349456,7 @@ }, { "question": "Severn Trent", - "icon": "./assets/data/nsi/logos/severntrent-5737c5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/severntrent-5737c5.svg", "osmTags": { "and": [ "pipeline=substation", @@ -349281,7 +349495,7 @@ }, { "question": "Shell", - "icon": "./assets/data/nsi/logos/shell-03e08c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shell-03e08c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -349296,7 +349510,7 @@ }, { "question": "Shell Deutschland", - "icon": "./assets/data/nsi/logos/shelldeutschland-47dd0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shelldeutschland-47dd0d.png", "osmTags": { "and": [ "pipeline=substation", @@ -349329,7 +349543,7 @@ }, { "question": "SHEM", - "icon": "./assets/data/nsi/logos/shem-4a5c8f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shem-4a5c8f.png", "osmTags": { "and": [ "pipeline=substation", @@ -349408,7 +349622,7 @@ }, { "question": "Snowy Hydro", - "icon": "./assets/data/nsi/logos/snowyhydro-2fb7da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snowyhydro-2fb7da.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -349461,7 +349675,7 @@ }, { "question": "Sonelgaz", - "icon": "./assets/data/nsi/logos/sonelgaz-1d7473.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-1d7473.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -349562,7 +349776,7 @@ }, { "question": "Southern California Gas Company", - "icon": "./assets/data/nsi/logos/southerncaliforniagascompany-2125b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniagascompany-2125b6.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -349624,7 +349838,7 @@ }, { "question": "Southwest Gas", - "icon": "./assets/data/nsi/logos/southwestgas-5b19b8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestgas-5b19b8.png", "osmTags": { "and": [ "pipeline=substation", @@ -349640,7 +349854,7 @@ }, { "question": "SpaceX", - "icon": "./assets/data/nsi/logos/spacex-cbbbb7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/spacex-cbbbb7.svg", "osmTags": { "and": [ "pipeline=substation", @@ -349718,7 +349932,7 @@ }, { "question": "SSE", - "icon": "./assets/data/nsi/logos/sse-03e08c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sse-03e08c.png", "osmTags": { "and": [ "pipeline=substation", @@ -349765,7 +349979,7 @@ }, { "question": "Stadtentwässerung Stuttgart", - "icon": "./assets/data/nsi/logos/stadtentwasserungstuttgart-3970e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtentwasserungstuttgart-3970e4.svg", "osmTags": { "and": [ "pipeline=substation", @@ -349782,7 +349996,7 @@ }, { "question": "Stadtwerke Goch", - "icon": "./assets/data/nsi/logos/stadtwerkegoch-dfd0ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegoch-dfd0ce.png", "osmTags": { "and": [ "pipeline=substation", @@ -349797,7 +350011,7 @@ }, { "question": "Stadtwerke Jena", - "icon": "./assets/data/nsi/logos/stadtwerkejena-dc7419.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkejena-dc7419.png", "osmTags": { "and": [ "pipeline=substation", @@ -349826,7 +350040,7 @@ }, { "question": "Stadtwerke Lübeck", - "icon": "./assets/data/nsi/logos/stadtwerkelubeck-63650c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-63650c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -349841,7 +350055,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-32d0c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-32d0c9.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -349857,7 +350071,7 @@ }, { "question": "Stadtwerke Schwetzingen", - "icon": "./assets/data/nsi/logos/stadtwerkeschwetzingen-3970e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeschwetzingen-3970e4.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -349872,7 +350086,7 @@ }, { "question": "Stadtwerke Treuchtlingen", - "icon": "./assets/data/nsi/logos/stadtwerketreuchtlingen-32d0c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerketreuchtlingen-32d0c9.png", "osmTags": { "and": [ "pipeline=substation", @@ -349978,7 +350192,7 @@ }, { "question": "Swissgas", - "icon": "./assets/data/nsi/logos/swissgas-03e5ba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/swissgas-03e5ba.svg", "osmTags": { "and": [ "pipeline=substation", @@ -350021,7 +350235,7 @@ }, { "question": "Sydney Water", - "icon": "./assets/data/nsi/logos/sydneywater-db32ff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sydneywater-db32ff.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -350131,7 +350345,7 @@ }, { "question": "TC Energy Corporation", - "icon": "./assets/data/nsi/logos/tcenergycorporation-06fef8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tcenergycorporation-06fef8.svg", "osmTags": { "and": [ "pipeline=substation", @@ -350188,7 +350402,7 @@ }, { "question": "terranets bw GmbH", - "icon": "./assets/data/nsi/logos/terranetsbwgmbh-3970e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/terranetsbwgmbh-3970e4.svg", "osmTags": { "and": [ "pipeline=substation", @@ -350281,7 +350495,7 @@ }, { "question": "TGS S.A.", - "icon": "./assets/data/nsi/logos/tgssa-f2a8db.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tgssa-f2a8db.svg", "osmTags": { "and": [ "pipeline=substation", @@ -350296,7 +350510,7 @@ }, { "question": "Thames Water", - "icon": "./assets/data/nsi/logos/thameswater-5737c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thameswater-5737c5.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -350320,7 +350534,7 @@ }, { "question": "Thyssengas", - "icon": "./assets/data/nsi/logos/thyssengas-dfd0ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thyssengas-dfd0ce.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -350336,7 +350550,7 @@ }, { "question": "ThyssenKrupp Steel", - "icon": "./assets/data/nsi/logos/thyssenkruppsteel-dfd0ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thyssenkruppsteel-dfd0ce.png", "osmTags": { "and": [ "pipeline=substation", @@ -350374,7 +350588,7 @@ }, { "question": "TotalEnergies", - "icon": "./assets/data/nsi/logos/totalenergies-03e08c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/totalenergies-03e08c.png", "osmTags": { "and": [ "pipeline=substation", @@ -350417,7 +350631,7 @@ }, { "question": "TPC Group", - "icon": "./assets/data/nsi/logos/tpcgroup-15c306.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tpcgroup-15c306.png", "osmTags": { "and": [ "pipeline=substation", @@ -350528,7 +350742,7 @@ }, { "question": "Transpetrol", - "icon": "./assets/data/nsi/logos/transpetrol-0d789f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transpetrol-0d789f.svg", "osmTags": { "and": [ "pipeline=substation", @@ -350747,7 +350961,7 @@ }, { "question": "Uniper", - "icon": "./assets/data/nsi/logos/uniper-706135.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniper-706135.png", "osmTags": { "and": [ "pipeline=substation", @@ -350780,7 +350994,7 @@ }, { "question": "United Utilities", - "icon": "./assets/data/nsi/logos/unitedutilities-d20081.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedutilities-d20081.svg", "osmTags": { "and": [ "pipeline=substation", @@ -350795,7 +351009,7 @@ }, { "question": "Unitil", - "icon": "./assets/data/nsi/logos/unitil-cdce47.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitil-cdce47.png", "osmTags": { "and": [ "pipeline=substation", @@ -350810,7 +351024,7 @@ }, { "question": "Unocal Corporation", - "icon": "./assets/data/nsi/logos/unocalcorporation-fbf18f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unocalcorporation-fbf18f.svg", "osmTags": { "and": [ "pipeline=substation", @@ -350870,7 +351084,7 @@ }, { "question": "Valero", - "icon": "./assets/data/nsi/logos/valero-011eb6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valero-011eb6.png", "osmTags": { "and": [ "pipeline=substation", @@ -350930,7 +351144,7 @@ }, { "question": "Vattenfall (Danmark)", - "icon": "./assets/data/nsi/logos/vattenfall-46989b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-46989b.png", "osmTags": { "and": [ "pipeline=substation", @@ -350945,7 +351159,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-47dd0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-47dd0d.png", "osmTags": { "and": [ "pipeline=substation", @@ -350960,7 +351174,7 @@ }, { "question": "Vattenfall (Finland)", - "icon": "./assets/data/nsi/logos/vattenfall-30982d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-30982d.png", "osmTags": { "and": [ "pipeline=substation", @@ -350975,7 +351189,7 @@ }, { "question": "Vattenfall (Nederland)", - "icon": "./assets/data/nsi/logos/vattenfallnederland-983549.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfallnederland-983549.png", "osmTags": { "and": [ "pipeline=substation", @@ -350990,7 +351204,7 @@ }, { "question": "Vattenfall (Sverige)", - "icon": "./assets/data/nsi/logos/vattenfall-6502da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-6502da.png", "osmTags": { "and": [ "pipeline=substation", @@ -351005,7 +351219,7 @@ }, { "question": "Vattenfall (UK)", - "icon": "./assets/data/nsi/logos/vattenfallunitedkingdom-d20081.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfallunitedkingdom-d20081.png", "osmTags": { "and": [ "pipeline=substation", @@ -351020,7 +351234,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-dddc03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-dddc03.png", "osmTags": { "and": [ "pipeline=substation", @@ -351036,7 +351250,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-a158a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-a158a5.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351051,7 +351265,7 @@ }, { "question": "Verbundnetz Gas", - "icon": "./assets/data/nsi/logos/verbundnetzgas-47dd0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundnetzgas-47dd0d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -351170,7 +351384,7 @@ }, { "question": "Wasserversorgung Bayerischer Wald", - "icon": "./assets/data/nsi/logos/wasserversorgungbayerischerwald-32d0c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wasserversorgungbayerischerwald-32d0c9.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351186,7 +351400,7 @@ }, { "question": "Watercare", - "icon": "./assets/data/nsi/logos/watercare-a4487c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watercare-a4487c.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351210,7 +351424,7 @@ }, { "question": "Welsh Water", - "icon": "./assets/data/nsi/logos/welshwater-f02b92.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welshwater-f02b92.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351225,7 +351439,7 @@ }, { "question": "Wessex Water", - "icon": "./assets/data/nsi/logos/wessexwater-7b0aaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wessexwater-7b0aaf.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351240,7 +351454,7 @@ }, { "question": "West Texas Gas Utility", - "icon": "./assets/data/nsi/logos/westtexasgasutility-15c306.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westtexasgasutility-15c306.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351291,7 +351505,7 @@ }, { "question": "Wiener Netze", - "icon": "./assets/data/nsi/logos/wienernetze-a158a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienernetze-a158a5.png", "osmTags": { "and": [ "pipeline=substation", @@ -351306,7 +351520,7 @@ }, { "question": "Williams", - "icon": "./assets/data/nsi/logos/williams-cbbbb7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/williams-cbbbb7.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351348,7 +351562,7 @@ }, { "question": "WINGAS GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/wingasgmbhandcokg-47dd0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wingasgmbhandcokg-47dd0d.svg", "osmTags": { "and": [ "pipeline=substation", @@ -351372,7 +351586,7 @@ }, { "question": "Wisconsin Public Service Corporation", - "icon": "./assets/data/nsi/logos/wisconsinpublicservicecorporation-ea69f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsinpublicservicecorporation-ea69f5.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351433,7 +351647,7 @@ }, { "question": "Wuppertaler Stadtwerke", - "icon": "./assets/data/nsi/logos/wuppertalerstadtwerke-dfd0ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wuppertalerstadtwerke-dfd0ce.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351449,7 +351663,7 @@ }, { "question": "XTO Energy", - "icon": "./assets/data/nsi/logos/xtoenergy-15c306.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/xtoenergy-15c306.svg", "osmTags": { "and": [ "pipeline=substation", @@ -351464,7 +351678,7 @@ }, { "question": "Yacimientos de Litio Bolivianos", - "icon": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-45421b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-45421b.svg", "osmTags": { "and": [ "pipeline=substation", @@ -351479,7 +351693,7 @@ }, { "question": "YPF S.A.", - "icon": "./assets/data/nsi/logos/ypfsa-f2a8db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ypfsa-f2a8db.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351530,7 +351744,7 @@ }, { "question": "Zweckverband Bodensee-Wasserversorgung", - "icon": "./assets/data/nsi/logos/zweckverbandbodenseewasserversorgung-3970e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zweckverbandbodenseewasserversorgung-3970e4.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351573,7 +351787,7 @@ }, { "question": "Булгартрансгаз ЕАД", - "icon": "./assets/data/nsi/logos/bb4e91-b34ac9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bb4e91-b34ac9.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351895,7 +352109,7 @@ }, { "question": "Топлофикация Перник", - "icon": "./assets/data/nsi/logos/71a366-b34ac9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/71a366-b34ac9.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -351952,7 +352166,7 @@ }, { "question": "Топлофикация София", - "icon": "./assets/data/nsi/logos/d08e33-b34ac9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/d08e33-b34ac9.png", "osmTags": { "and": [ "pipeline=substation", @@ -352100,7 +352314,7 @@ }, { "question": "水務署 Water Supplies Department", - "icon": "./assets/data/nsi/logos/watersuppliesdepartment-dfcc55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/watersuppliesdepartment-dfcc55.jpg", "osmTags": { "and": [ "pipeline=substation", @@ -352133,7 +352347,7 @@ }, { "question": "Adif", - "icon": "./assets/data/nsi/logos/adif-3adfd3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adif-3adfd3.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352148,7 +352362,7 @@ }, { "question": "Amtrak", - "icon": "./assets/data/nsi/logos/amtrak-8f25d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtrak-8f25d0.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352163,7 +352377,7 @@ }, { "question": "Banedanmark", - "icon": "./assets/data/nsi/logos/banedanmark-4800c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banedanmark-4800c7.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352178,7 +352392,7 @@ }, { "question": "BLS", - "icon": "./assets/data/nsi/logos/bls-bbfe12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bls-bbfe12.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352193,7 +352407,7 @@ }, { "question": "BNSF Railway", - "icon": "./assets/data/nsi/logos/bnsfrailway-5ff56d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnsfrailway-5ff56d.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352208,7 +352422,7 @@ }, { "question": "California High Speed Rail Authority", - "icon": "./assets/data/nsi/logos/californiahighspeedrailauthority-b614de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiahighspeedrailauthority-b614de.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352224,7 +352438,7 @@ }, { "question": "Canadian National Railway", - "icon": "./assets/data/nsi/logos/canadiannationalrailway-0c2e78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadiannationalrailway-0c2e78.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352239,7 +352453,7 @@ }, { "question": "Canadian Pacific Kansas City", - "icon": "./assets/data/nsi/logos/canadianpacifickansascity-76b8be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadianpacifickansascity-76b8be.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352254,7 +352468,7 @@ }, { "question": "České dráhy", - "icon": "./assets/data/nsi/logos/ceskedrahy-e7d44b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskedrahy-e7d44b.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352270,7 +352484,7 @@ }, { "question": "CFR Călători", - "icon": "./assets/data/nsi/logos/cfrcalatori-7a5ea5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cfrcalatori-7a5ea5.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352285,7 +352499,7 @@ }, { "question": "Comboios de Portugal", - "icon": "./assets/data/nsi/logos/comboiosdeportugal-58c517.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comboiosdeportugal-58c517.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352314,7 +352528,7 @@ }, { "question": "CSX", - "icon": "./assets/data/nsi/logos/csx-5ff56d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/csx-5ff56d.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -352329,7 +352543,7 @@ }, { "question": "ETS/RFV", - "icon": "./assets/data/nsi/logos/euskaltrenbidesarearedferroviariavasca-d62c9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/euskaltrenbidesarearedferroviariavasca-d62c9c.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352349,7 +352563,7 @@ }, { "question": "Ferrocarrils de la Generalitat de Catalunya", - "icon": "./assets/data/nsi/logos/ferrocarrilsdelageneralitatdecatalunya-3adfd3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ferrocarrilsdelageneralitatdecatalunya-3adfd3.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -352374,7 +352588,7 @@ }, { "question": "GO Transit", - "icon": "./assets/data/nsi/logos/alstom-5c4676.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alstom-5c4676.png", "osmTags": { "and": [ "network=GO Transit", @@ -352391,7 +352605,7 @@ }, { "question": "GYSEV", - "icon": "./assets/data/nsi/logos/gysev-9b4488.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gysev-9b4488.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352420,7 +352634,7 @@ }, { "question": "Indian Railway", - "icon": "./assets/data/nsi/logos/indianrailway-a8eb91.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianrailway-a8eb91.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -352435,7 +352649,7 @@ }, { "question": "Infrabel", - "icon": "./assets/data/nsi/logos/infrabel-801411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/infrabel-801411.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352450,7 +352664,7 @@ }, { "question": "Infraestruturas de Portugal", - "icon": "./assets/data/nsi/logos/infraestruturasdeportugal-58c517.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/infraestruturasdeportugal-58c517.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352465,7 +352679,7 @@ }, { "question": "Irish Rail", - "icon": "./assets/data/nsi/logos/irishrail-493e5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishrail-493e5d.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352480,7 +352694,7 @@ }, { "question": "JR九州", - "icon": "./assets/data/nsi/logos/kyushurailwaycompany-9408c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushurailwaycompany-9408c5.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352500,7 +352714,7 @@ }, { "question": "JR東日本", - "icon": "./assets/data/nsi/logos/eastjapanrailwaycompany-9408c5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-9408c5.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352520,7 +352734,7 @@ }, { "question": "JR西日本", - "icon": "./assets/data/nsi/logos/westjapanrailwaycompany-9408c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westjapanrailwaycompany-9408c5.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352540,7 +352754,7 @@ }, { "question": "Kenya Railways", - "icon": "./assets/data/nsi/logos/kenyarailways-8838c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kenyarailways-8838c1.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352556,7 +352770,7 @@ }, { "question": "Los Angeles County Metropolitan Transportation Authority", - "icon": "./assets/data/nsi/logos/losangelescountymetropolitantransportationauthority-b614de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelescountymetropolitantransportationauthority-b614de.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352571,7 +352785,7 @@ }, { "question": "MÁV", - "icon": "./assets/data/nsi/logos/mav-9b4488.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mav-9b4488.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -352586,7 +352800,7 @@ }, { "question": "Nederlandse Spoorwegen", - "icon": "./assets/data/nsi/logos/nederlandsespoorwegen-f24dc3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-f24dc3.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352601,7 +352815,7 @@ }, { "question": "Network Rail", - "icon": "./assets/data/nsi/logos/networkrail-52d65d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkrail-52d65d.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352616,7 +352830,7 @@ }, { "question": "New York City Transit Authority", - "icon": "./assets/data/nsi/logos/newyorkcitytransitauthority-bde191.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkcitytransitauthority-bde191.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -352631,7 +352845,7 @@ }, { "question": "Norfolk Southern", - "icon": "./assets/data/nsi/logos/norfolksouthern-5ff56d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolksouthern-5ff56d.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352646,7 +352860,7 @@ }, { "question": "ÖBB", - "icon": "./assets/data/nsi/logos/obb-744936.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obb-744936.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352675,7 +352889,7 @@ }, { "question": "Philippine National Railways", - "icon": "./assets/data/nsi/logos/philippinenationalrailways-6b70e7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/philippinenationalrailways-6b70e7.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -352690,7 +352904,7 @@ }, { "question": "PKP Polskie Linie Kolejowe S.A.", - "icon": "./assets/data/nsi/logos/pkppolskieliniekolejowesa-f7e94c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pkppolskieliniekolejowesa-f7e94c.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352705,7 +352919,7 @@ }, { "question": "Regio Călători", - "icon": "./assets/data/nsi/logos/regiocalatori-7a5ea5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regiocalatori-7a5ea5.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352720,7 +352934,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-4b4a6a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-4b4a6a.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -352735,7 +352949,7 @@ }, { "question": "Rumo S/A", - "icon": "./assets/data/nsi/logos/rumosa-1ff1a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rumosa-1ff1a5.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352764,7 +352978,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-33be22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-33be22.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352793,7 +353007,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-604b3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-604b3c.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352808,7 +353022,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-604b3c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-604b3c.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352823,7 +353037,7 @@ }, { "question": "Správa železnic, s. o.", - "icon": "./assets/data/nsi/logos/spravazeleznicso-e7d44b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spravazeleznicso-e7d44b.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352853,7 +353067,7 @@ }, { "question": "TCDD", - "icon": "./assets/data/nsi/logos/tcdd-f9e75c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tcdd-f9e75c.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352868,7 +353082,7 @@ }, { "question": "Trafikverket", - "icon": "./assets/data/nsi/logos/trafikverket-0ff71a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trafikverket-0ff71a.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352898,7 +353112,7 @@ }, { "question": "Union Pacific Railroad", - "icon": "./assets/data/nsi/logos/unionpacificrailroad-5ff56d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unionpacificrailroad-5ff56d.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352913,7 +353127,7 @@ }, { "question": "ŽSR", - "icon": "./assets/data/nsi/logos/zsr-5fda63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zsr-5fda63.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352928,7 +353142,7 @@ }, { "question": "ZSSK", - "icon": "./assets/data/nsi/logos/zssk-5fda63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zssk-5fda63.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352943,7 +353157,7 @@ }, { "question": "Железнице Србије", - "icon": "./assets/data/nsi/logos/b5cfb7-20c40a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/b5cfb7-20c40a.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -352958,7 +353172,7 @@ }, { "question": "НКЖИ", - "icon": "./assets/data/nsi/logos/afbfca-a81f47.png", + "icon": "https://data.mapcomplete.org/nsi//logos/afbfca-a81f47.png", "osmTags": { "and": [ "power=catenary_mast", @@ -352973,7 +353187,7 @@ }, { "question": "Одеська залізниця", - "icon": "./assets/data/nsi/logos/odesarailways-1f8b79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/odesarailways-1f8b79.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -352990,7 +353204,7 @@ }, { "question": "РЖД", - "icon": "./assets/data/nsi/logos/russianrailways-61bcef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/russianrailways-61bcef.png", "osmTags": { "and": [ "power=catenary_mast", @@ -353007,7 +353221,7 @@ }, { "question": "국가철도공단", - "icon": "./assets/data/nsi/logos/korearailnetworkauthority-4699f2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/korearailnetworkauthority-4699f2.png", "osmTags": { "and": [ "power=catenary_mast", @@ -353026,7 +353240,7 @@ }, { "question": "中国铁路", - "icon": "./assets/data/nsi/logos/chinarailway-452f47.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinarailway-452f47.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -353059,7 +353273,7 @@ }, { "question": "名古屋鉄道", - "icon": "./assets/data/nsi/logos/nagoyarailroad-9408c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nagoyarailroad-9408c5.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -353116,7 +353330,7 @@ }, { "question": "近畿日本鉄道", - "icon": "./assets/data/nsi/logos/kintetsurailwaycompany-9408c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kintetsurailwaycompany-9408c5.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -353136,7 +353350,7 @@ }, { "question": "Albtal-Verkehrs-Gesellschaft mbH", - "icon": "./assets/data/nsi/logos/albtalverkehrsgesellschaftmbh-319ba8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albtalverkehrsgesellschaftmbh-319ba8.png", "osmTags": { "and": [ "power=catenary_mast", @@ -353161,7 +353375,7 @@ }, { "question": "Ente Autonomo Volturno", - "icon": "./assets/data/nsi/logos/enteautonomovolturno-4b4a6a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteautonomovolturno-4b4a6a.png", "osmTags": { "and": [ "power=catenary_mast", @@ -353177,7 +353391,7 @@ }, { "question": "HGK", - "icon": "./assets/data/nsi/logos/hgk-7e6c6f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hgk-7e6c6f.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -353207,7 +353421,7 @@ }, { "question": "Sporveien", - "icon": "./assets/data/nsi/logos/sporveien-5ea77b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sporveien-5ea77b.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -353222,7 +353436,7 @@ }, { "question": "Správa železnic", - "icon": "./assets/data/nsi/logos/czspravazeleznic-e7d44b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/czspravazeleznic-e7d44b.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -353237,7 +353451,7 @@ }, { "question": "Surrey County Council", - "icon": "./assets/data/nsi/logos/surreycountycouncil-07a364.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surreycountycouncil-07a364.jpg", "osmTags": { "and": [ "power=catenary_mast", @@ -353252,7 +353466,7 @@ }, { "question": "SŽ Infrastruktura", - "icon": "./assets/data/nsi/logos/szinfrastruktura-f19c50.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/szinfrastruktura-f19c50.svg", "osmTags": { "and": [ "power=catenary_mast", @@ -353276,7 +353490,7 @@ }, { "question": "ABO Wind", - "icon": "./assets/data/nsi/logos/abowind-74685d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/abowind-74685d.svg", "osmTags": { "and": [ "power=generator", @@ -353318,7 +353532,7 @@ }, { "question": "Acciona Energía", - "icon": "./assets/data/nsi/logos/accionaenergia-ae5946.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accionaenergia-ae5946.jpg", "osmTags": { "and": [ "power=generator", @@ -353369,7 +353583,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-0e0bfd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-0e0bfd.png", "osmTags": { "and": [ "power=generator", @@ -353384,7 +353598,7 @@ }, { "question": "AES Corporation", - "icon": "./assets/data/nsi/logos/aescorporation-f7f223.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aescorporation-f7f223.png", "osmTags": { "and": [ "power=generator", @@ -353417,7 +353631,7 @@ }, { "question": "AGL Energy", - "icon": "./assets/data/nsi/logos/aglenergy-08761e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aglenergy-08761e.jpg", "osmTags": { "and": [ "power=generator", @@ -353486,7 +353700,7 @@ }, { "question": "Akuo", - "icon": "./assets/data/nsi/logos/akuo-74685d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/akuo-74685d.png", "osmTags": { "and": [ "power=generator", @@ -353501,7 +353715,7 @@ }, { "question": "Alabama Power", - "icon": "./assets/data/nsi/logos/alabamapower-f81226.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamapower-f81226.jpg", "osmTags": { "and": [ "power=generator", @@ -353516,7 +353730,7 @@ }, { "question": "ALDI (ALDI Nord group)", - "icon": "./assets/data/nsi/logos/aldi-fd3a93.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-fd3a93.svg", "osmTags": { "and": [ "power=generator", @@ -353531,7 +353745,7 @@ }, { "question": "ALDI (ALDI Süd group)", - "icon": "./assets/data/nsi/logos/aldi-2fe7a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldi-2fe7a2.png", "osmTags": { "and": [ "power=generator", @@ -353546,7 +353760,7 @@ }, { "question": "ALDI Nord (Deutschland)", - "icon": "./assets/data/nsi/logos/aldinord-8532fd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aldinord-8532fd.svg", "osmTags": { "and": [ "power=generator", @@ -353561,7 +353775,7 @@ }, { "question": "ALDI Süd (Deutschland)", - "icon": "./assets/data/nsi/logos/aldisud-63ded7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aldisud-63ded7.png", "osmTags": { "and": [ "power=generator", @@ -353640,7 +353854,7 @@ }, { "question": "Alliant Energy", - "icon": "./assets/data/nsi/logos/alliantenergy-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alliantenergy-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -353673,7 +353887,7 @@ }, { "question": "Amazon Web Services", - "icon": "./assets/data/nsi/logos/amazonwebservices-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amazonwebservices-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -353703,7 +353917,7 @@ }, { "question": "Ameren", - "icon": "./assets/data/nsi/logos/ameren-ebd878.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameren-ebd878.png", "osmTags": { "and": [ "power=generator", @@ -353732,7 +353946,7 @@ }, { "question": "American Electric Power", - "icon": "./assets/data/nsi/logos/americanelectricpower-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -353834,7 +354048,7 @@ }, { "question": "Apex Clean Energy", - "icon": "./assets/data/nsi/logos/apexcleanenergy-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/apexcleanenergy-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -353849,7 +354063,7 @@ }, { "question": "Apex Energies", - "icon": "./assets/data/nsi/logos/apexenergies-ebc5ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apexenergies-ebc5ae.jpg", "osmTags": { "and": [ "power=generator", @@ -353873,7 +354087,7 @@ }, { "question": "Aquila Capital", - "icon": "./assets/data/nsi/logos/aquilacapital-a62919.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aquilacapital-a62919.svg", "osmTags": { "and": [ "power=generator", @@ -353996,7 +354210,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-546c7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-546c7b.jpg", "osmTags": { "and": [ "power=generator", @@ -354011,7 +354225,7 @@ }, { "question": "Avangrid Renewables", - "icon": "./assets/data/nsi/logos/avangridrenewables-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avangridrenewables-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -354026,7 +354240,7 @@ }, { "question": "Axpo", - "icon": "./assets/data/nsi/logos/axpo-5b591a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axpo-5b591a.jpg", "osmTags": { "and": [ "power=generator", @@ -354077,7 +354291,7 @@ }, { "question": "Banks Renewables", - "icon": "./assets/data/nsi/logos/banksrenewables-9ac094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/banksrenewables-9ac094.jpg", "osmTags": { "and": [ "power=generator", @@ -354101,7 +354315,7 @@ }, { "question": "BayWa", - "icon": "./assets/data/nsi/logos/baywa-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baywa-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -354134,7 +354348,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-4add1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-4add1e.jpg", "osmTags": { "and": [ "power=generator", @@ -354172,7 +354386,7 @@ }, { "question": "Berliner Stadtwerke", - "icon": "./assets/data/nsi/logos/berlinerstadtwerke-aa0276.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerstadtwerke-aa0276.jpg", "osmTags": { "and": [ "power=generator", @@ -354187,7 +354401,7 @@ }, { "question": "Bernmobil", - "icon": "./assets/data/nsi/logos/bernmobil-80ad05.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bernmobil-80ad05.svg", "osmTags": { "and": [ "power=generator", @@ -354211,7 +354425,7 @@ }, { "question": "Black Hills Corporation", - "icon": "./assets/data/nsi/logos/blackhillscorporation-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blackhillscorporation-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -354235,7 +354449,7 @@ }, { "question": "BluEarth Renewables", - "icon": "./assets/data/nsi/logos/bluearthrenewables-2d6bbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluearthrenewables-2d6bbd.jpg", "osmTags": { "and": [ "power=generator", @@ -354291,7 +354505,7 @@ }, { "question": "Boralex", - "icon": "./assets/data/nsi/logos/boralex-9f0ca5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boralex-9f0ca5.png", "osmTags": { "and": [ "power=generator", @@ -354306,7 +354520,7 @@ }, { "question": "Bord Gáis Energy", - "icon": "./assets/data/nsi/logos/bordgaisenergy-1f8ba0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bordgaisenergy-1f8ba0.jpg", "osmTags": { "and": [ "power=generator", @@ -354321,7 +354535,7 @@ }, { "question": "Bord na Móna", - "icon": "./assets/data/nsi/logos/bordnamona-1f8ba0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bordnamona-1f8ba0.png", "osmTags": { "and": [ "power=generator", @@ -354395,7 +354609,7 @@ }, { "question": "Bowling Green State University", - "icon": "./assets/data/nsi/logos/bowlinggreenstateuniversity-3c4f74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bowlinggreenstateuniversity-3c4f74.jpg", "osmTags": { "and": [ "power=generator", @@ -354411,7 +354625,7 @@ }, { "question": "BP", - "icon": "./assets/data/nsi/logos/bp-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bp-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -354481,7 +354695,7 @@ }, { "question": "British Solar Renewables", - "icon": "./assets/data/nsi/logos/britishsolarrenewables-9ac094.png", + "icon": "https://data.mapcomplete.org/nsi//logos/britishsolarrenewables-9ac094.png", "osmTags": { "and": [ "power=generator", @@ -354515,7 +354729,7 @@ }, { "question": "Bund für Umwelt und Naturschutz Deutschland", - "icon": "./assets/data/nsi/logos/bundfurumweltundnaturschutzdeutschland-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bundfurumweltundnaturschutzdeutschland-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -354594,7 +354808,7 @@ }, { "question": "Calpine", - "icon": "./assets/data/nsi/logos/calpine-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calpine-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -354645,7 +354859,7 @@ }, { "question": "Capital Power", - "icon": "./assets/data/nsi/logos/capitalpower-4cccf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalpower-4cccf0.jpg", "osmTags": { "and": [ "power=generator", @@ -354753,7 +354967,7 @@ }, { "question": "Ceylon Electricity Board", - "icon": "./assets/data/nsi/logos/ceylonelectricityboard-3c99fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-3c99fb.png", "osmTags": { "and": [ "power=generator", @@ -354769,7 +354983,7 @@ }, { "question": "ČEZ", - "icon": "./assets/data/nsi/logos/cez-e7507c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cez-e7507c.jpg", "osmTags": { "and": [ "power=generator", @@ -354802,7 +355016,7 @@ }, { "question": "Chevron", - "icon": "./assets/data/nsi/logos/chevron-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chevron-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -354826,7 +355040,7 @@ }, { "question": "City of Beaverton", - "icon": "./assets/data/nsi/logos/cityofbeaverton-a46631.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofbeaverton-a46631.jpg", "osmTags": { "and": [ "power=generator", @@ -354855,7 +355069,7 @@ }, { "question": "City of Shafter", - "icon": "./assets/data/nsi/logos/cityofshafter-a94a78.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofshafter-a94a78.jpg", "osmTags": { "and": [ "power=generator", @@ -354870,7 +355084,7 @@ }, { "question": "City of Truth or Consequences", - "icon": "./assets/data/nsi/logos/cityoftruthorconsequences-bcd865.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftruthorconsequences-bcd865.jpg", "osmTags": { "and": [ "power=generator", @@ -354926,7 +355140,7 @@ }, { "question": "CNR", - "icon": "./assets/data/nsi/logos/cnr-33d749.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cnr-33d749.jpg", "osmTags": { "and": [ "power=generator", @@ -354950,7 +355164,7 @@ }, { "question": "Coillte", - "icon": "./assets/data/nsi/logos/coillte-1f8ba0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coillte-1f8ba0.png", "osmTags": { "and": [ "power=generator", @@ -354965,7 +355179,7 @@ }, { "question": "Colbún", - "icon": "./assets/data/nsi/logos/colbun-daaa5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colbun-daaa5a.jpg", "osmTags": { "and": [ "power=generator", @@ -354989,7 +355203,7 @@ }, { "question": "Colorado State University", - "icon": "./assets/data/nsi/logos/coloradostateuniversity-a34a72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradostateuniversity-a34a72.jpg", "osmTags": { "and": [ "power=generator", @@ -355014,7 +355228,7 @@ }, { "question": "Comisión Federal de Electricidad", - "icon": "./assets/data/nsi/logos/comisionfederaldeelectricidad-5ce1cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-5ce1cf.png", "osmTags": { "and": [ "power=generator", @@ -355039,7 +355253,7 @@ }, { "question": "Compagnia Valdostana Acque", - "icon": "./assets/data/nsi/logos/compagniavaldostanaacque-052129.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compagniavaldostanaacque-052129.jpg", "osmTags": { "and": [ "power=generator", @@ -355093,7 +355307,7 @@ }, { "question": "Constellation", - "icon": "./assets/data/nsi/logos/constellation-c841a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/constellation-c841a9.jpg", "osmTags": { "and": [ "power=generator", @@ -355149,7 +355363,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-546c7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-546c7b.jpg", "osmTags": { "and": [ "power=generator", @@ -355182,7 +355396,7 @@ }, { "question": "DB Energie", - "icon": "./assets/data/nsi/logos/dbenergie-b8ae25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbenergie-b8ae25.svg", "osmTags": { "and": [ "power=generator", @@ -355197,7 +355411,7 @@ }, { "question": "Decathlon", - "icon": "./assets/data/nsi/logos/decathlon-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/decathlon-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -355221,7 +355435,7 @@ }, { "question": "Denker & Wulf", - "icon": "./assets/data/nsi/logos/denkerandwulf-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/denkerandwulf-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -355281,7 +355495,7 @@ }, { "question": "Deutsche Bahn", - "icon": "./assets/data/nsi/logos/deutschebahn-b8ae25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebahn-b8ae25.png", "osmTags": { "and": [ "power=generator", @@ -355305,7 +355519,7 @@ }, { "question": "DeWind", - "icon": "./assets/data/nsi/logos/dewind-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dewind-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -355338,7 +355552,7 @@ }, { "question": "Digital Realty", - "icon": "./assets/data/nsi/logos/digitalrealty-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/digitalrealty-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -355362,7 +355576,7 @@ }, { "question": "dm-drogerie markt GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/dmdrogeriemarktgmbhandcokg-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dmdrogeriemarktgmbhandcokg-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -355386,7 +355600,7 @@ }, { "question": "Dominion Energy", - "icon": "./assets/data/nsi/logos/dominionenergy-c58391.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dominionenergy-c58391.png", "osmTags": { "and": [ "power=generator", @@ -355442,7 +355656,7 @@ }, { "question": "DTE Energy", - "icon": "./assets/data/nsi/logos/dteenergy-b3e144.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteenergy-b3e144.png", "osmTags": { "and": [ "power=generator", @@ -355472,7 +355686,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-b7bbc1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-b7bbc1.jpg", "osmTags": { "and": [ "power=generator", @@ -355487,7 +355701,7 @@ }, { "question": "Duke Energy Progress", - "icon": "./assets/data/nsi/logos/dukeenergyprogress-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -355511,7 +355725,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-74685d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-74685d.png", "osmTags": { "and": [ "power=generator", @@ -355549,7 +355763,7 @@ }, { "question": "E.ON Wasserkraft", - "icon": "./assets/data/nsi/logos/eonwasserkraft-b8ae25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonwasserkraft-b8ae25.svg", "osmTags": { "and": [ "power=generator", @@ -355636,7 +355850,7 @@ }, { "question": "Ecotricity", - "icon": "./assets/data/nsi/logos/ecotricity-9ac094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ecotricity-9ac094.jpg", "osmTags": { "and": [ "power=generator", @@ -355651,7 +355865,7 @@ }, { "question": "EDF Renewables", - "icon": "./assets/data/nsi/logos/edfrenewables-f15854.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edfrenewables-f15854.svg", "osmTags": { "and": [ "power=generator", @@ -355694,7 +355908,7 @@ }, { "question": "EdgeConneX", - "icon": "./assets/data/nsi/logos/edgeconnex-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edgeconnex-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -355718,7 +355932,7 @@ }, { "question": "Edison", - "icon": "./assets/data/nsi/logos/edison-052129.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edison-052129.jpg", "osmTags": { "and": [ "power=generator", @@ -355733,7 +355947,7 @@ }, { "question": "EDP", - "icon": "./assets/data/nsi/logos/edp-74685d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edp-74685d.svg", "osmTags": { "and": [ "power=generator", @@ -355763,7 +355977,7 @@ }, { "question": "EDP Renovables España", - "icon": "./assets/data/nsi/logos/edprenovablesespana-ae5946.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovablesespana-ae5946.svg", "osmTags": { "and": [ "power=generator", @@ -355779,7 +355993,7 @@ }, { "question": "EDP Renováveis", - "icon": "./assets/data/nsi/logos/edprenovaveis-ecaffb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-ecaffb.svg", "osmTags": { "and": [ "power=generator", @@ -355796,7 +356010,7 @@ }, { "question": "Eesti Energia", - "icon": "./assets/data/nsi/logos/eestienergia-7050ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eestienergia-7050ae.jpg", "osmTags": { "and": [ "power=generator", @@ -355820,7 +356034,7 @@ }, { "question": "EGAT", - "icon": "./assets/data/nsi/logos/egat-4362ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/egat-4362ae.jpg", "osmTags": { "and": [ "power=generator", @@ -355904,7 +356118,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-74685d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-74685d.png", "osmTags": { "and": [ "power=generator", @@ -355986,7 +356200,7 @@ }, { "question": "Enbridge", - "icon": "./assets/data/nsi/logos/enbridge-4cccf0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enbridge-4cccf0.jpg", "osmTags": { "and": [ "power=generator", @@ -356019,7 +356233,7 @@ }, { "question": "EnBW Energie Baden-Württemberg AG", - "icon": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-b8ae25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-b8ae25.png", "osmTags": { "and": [ "power=generator", @@ -356079,7 +356293,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-ae5946.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-ae5946.jpg", "osmTags": { "and": [ "power=generator", @@ -356103,7 +356317,7 @@ }, { "question": "Eneco", - "icon": "./assets/data/nsi/logos/eneco-59360d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneco-59360d.png", "osmTags": { "and": [ "power=generator", @@ -356118,7 +356332,7 @@ }, { "question": "Eneco Wind", - "icon": "./assets/data/nsi/logos/enecowind-59360d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enecowind-59360d.png", "osmTags": { "and": [ "power=generator", @@ -356133,7 +356347,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-74685d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-74685d.png", "osmTags": { "and": [ "power=generator", @@ -356148,7 +356362,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-885195.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-885195.svg", "osmTags": { "and": [ "power=generator", @@ -356181,7 +356395,7 @@ }, { "question": "Enercon", - "icon": "./assets/data/nsi/logos/enercon-b8ae25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enercon-b8ae25.svg", "osmTags": { "and": [ "power=generator", @@ -356205,7 +356419,7 @@ }, { "question": "Energia", - "icon": "./assets/data/nsi/logos/energia-8a255d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energia-8a255d.jpg", "osmTags": { "and": [ "power=generator", @@ -356229,7 +356443,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-7d0c03.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-7d0c03.png", "osmTags": { "and": [ "power=generator", @@ -356262,7 +356476,7 @@ }, { "question": "Energie Steiermark", - "icon": "./assets/data/nsi/logos/energiesteiermark-a6368a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-a6368a.png", "osmTags": { "and": [ "power=generator", @@ -356300,7 +356514,7 @@ }, { "question": "Energiequelle", - "icon": "./assets/data/nsi/logos/energiequelle-43a77a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiequelle-43a77a.jpg", "osmTags": { "and": [ "power=generator", @@ -356315,7 +356529,7 @@ }, { "question": "Energy Fiji Limited", - "icon": "./assets/data/nsi/logos/energyfijilimited-32a62a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-32a62a.png", "osmTags": { "and": [ "power=generator", @@ -356349,7 +356563,7 @@ }, { "question": "Enertrag", - "icon": "./assets/data/nsi/logos/enertrag-a301bb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enertrag-a301bb.jpg", "osmTags": { "and": [ "power=generator", @@ -356387,7 +356601,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -356471,7 +356685,7 @@ }, { "question": "ENMAX", - "icon": "./assets/data/nsi/logos/enmax-60f7b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmax-60f7b4.png", "osmTags": { "and": [ "power=generator", @@ -356486,7 +356700,7 @@ }, { "question": "ENMAX Energy", - "icon": "./assets/data/nsi/logos/enmaxenergy-60f7b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmaxenergy-60f7b4.png", "osmTags": { "and": [ "power=generator", @@ -356515,7 +356729,7 @@ }, { "question": "Enovos (Luxembourg)", - "icon": "./assets/data/nsi/logos/enovos-779fe4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enovos-779fe4.png", "osmTags": { "and": [ "power=generator", @@ -356530,7 +356744,7 @@ }, { "question": "entega", - "icon": "./assets/data/nsi/logos/entega-57cee2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/entega-57cee2.png", "osmTags": { "and": [ "power=generator", @@ -356545,7 +356759,7 @@ }, { "question": "Entergy Louisiana", - "icon": "./assets/data/nsi/logos/entergylouisiana-35de23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-35de23.jpg", "osmTags": { "and": [ "power=generator", @@ -356754,7 +356968,7 @@ }, { "question": "Equinor", - "icon": "./assets/data/nsi/logos/equinor-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equinor-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -356778,7 +356992,7 @@ }, { "question": "Erdgas Südwest GmbH", - "icon": "./assets/data/nsi/logos/erdgassudwestgmbh-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erdgassudwestgmbh-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -356802,7 +357016,7 @@ }, { "question": "ESB Generation and Wholesale Markets", - "icon": "./assets/data/nsi/logos/esbgenerationandwholesalemarkets-8a255d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbgenerationandwholesalemarkets-8a255d.svg", "osmTags": { "and": [ "power=generator", @@ -356817,7 +357031,7 @@ }, { "question": "Ethiopian Electric Power", - "icon": "./assets/data/nsi/logos/ethiopianelectricpower-f81514.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-f81514.png", "osmTags": { "and": [ "power=generator", @@ -356856,7 +357070,7 @@ }, { "question": "Eurus Energy", - "icon": "./assets/data/nsi/logos/eurusenergy-74685d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eurusenergy-74685d.svg", "osmTags": { "and": [ "power=generator", @@ -356871,7 +357085,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-e9dfd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-e9dfd9.jpg", "osmTags": { "and": [ "power=generator", @@ -356900,7 +357114,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-7d0c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-7d0c03.jpg", "osmTags": { "and": [ "power=generator", @@ -356915,7 +357129,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-640b1a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-640b1a.svg", "osmTags": { "and": [ "power=generator", @@ -356931,7 +357145,7 @@ }, { "question": "EVN (България)", - "icon": "./assets/data/nsi/logos/evn-87ac22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-87ac22.png", "osmTags": { "and": [ "power=generator", @@ -357146,7 +357360,7 @@ }, { "question": "First Solar", - "icon": "./assets/data/nsi/logos/firstsolar-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstsolar-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -357161,7 +357375,7 @@ }, { "question": "First Wind O&M", - "icon": "./assets/data/nsi/logos/firstwindoandm-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/firstwindoandm-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -357176,7 +357390,7 @@ }, { "question": "FirstEnergy", - "icon": "./assets/data/nsi/logos/firstenergy-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstenergy-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -357200,7 +357414,7 @@ }, { "question": "Florida Power & Light", - "icon": "./assets/data/nsi/logos/floridapowerandlight-2af0cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-2af0cf.png", "osmTags": { "and": [ "power=generator", @@ -357265,7 +357479,7 @@ }, { "question": "Fortum", - "icon": "./assets/data/nsi/logos/fortum-cf9247.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortum-cf9247.jpg", "osmTags": { "and": [ "power=generator", @@ -357520,7 +357734,7 @@ }, { "question": "Gemeinde Ubstadt-Weiher", - "icon": "./assets/data/nsi/logos/gemeindeubstadtweiher-235ee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gemeindeubstadtweiher-235ee2.jpg", "osmTags": { "and": [ "power=generator", @@ -357544,7 +357758,7 @@ }, { "question": "General Electric", - "icon": "./assets/data/nsi/logos/generalelectric-74685d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/generalelectric-74685d.svg", "osmTags": { "and": [ "power=generator", @@ -357559,7 +357773,7 @@ }, { "question": "Genesis Energy", - "icon": "./assets/data/nsi/logos/genesisenergy-7b0614.png", + "icon": "https://data.mapcomplete.org/nsi//logos/genesisenergy-7b0614.png", "osmTags": { "and": [ "power=generator", @@ -357692,7 +357906,7 @@ }, { "question": "Golden Spread Electric Cooperative", - "icon": "./assets/data/nsi/logos/goldenspreadelectriccooperative-546c7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-546c7b.jpg", "osmTags": { "and": [ "power=generator", @@ -357707,7 +357921,7 @@ }, { "question": "Goldwind", - "icon": "./assets/data/nsi/logos/goldwind-19ecba.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldwind-19ecba.svg", "osmTags": { "and": [ "power=generator", @@ -357745,7 +357959,7 @@ }, { "question": "Green City AG", - "icon": "./assets/data/nsi/logos/greencityag-b8ae25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greencityag-b8ae25.png", "osmTags": { "and": [ "power=generator", @@ -357865,7 +358079,7 @@ }, { "question": "GroenLeven", - "icon": "./assets/data/nsi/logos/groenleven-7c4044.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groenleven-7c4044.jpg", "osmTags": { "and": [ "power=generator", @@ -358070,7 +358284,7 @@ }, { "question": "Hydro Tasmania", - "icon": "./assets/data/nsi/logos/hydrotasmania-569db4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydrotasmania-569db4.jpg", "osmTags": { "and": [ "power=generator", @@ -358085,7 +358299,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-e9c9aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-e9c9aa.png", "osmTags": { "and": [ "power=generator", @@ -358114,7 +358328,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -358174,7 +358388,7 @@ }, { "question": "IEASA", - "icon": "./assets/data/nsi/logos/ieasa-76b721.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ieasa-76b721.svg", "osmTags": { "and": [ "power=generator", @@ -358189,7 +358403,7 @@ }, { "question": "Ignitis grupė", - "icon": "./assets/data/nsi/logos/ignitisgrupe-f48411.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ignitisgrupe-f48411.jpg", "osmTags": { "and": [ "power=generator", @@ -358204,7 +358418,7 @@ }, { "question": "IKB AG", - "icon": "./assets/data/nsi/logos/ikbag-b3c54e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikbag-b3c54e.jpg", "osmTags": { "and": [ "power=generator", @@ -358219,7 +358433,7 @@ }, { "question": "IKEA", - "icon": "./assets/data/nsi/logos/ikea-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ikea-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -358348,7 +358562,7 @@ }, { "question": "Innergex", - "icon": "./assets/data/nsi/logos/innergex-4ffecb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/innergex-4ffecb.jpg", "osmTags": { "and": [ "power=generator", @@ -358363,7 +358577,7 @@ }, { "question": "Innogy", - "icon": "./assets/data/nsi/logos/innogy-16c9d0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogy-16c9d0.svg", "osmTags": { "and": [ "power=generator", @@ -358414,7 +358628,7 @@ }, { "question": "Invenergy", - "icon": "./assets/data/nsi/logos/invenergy-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invenergy-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -358470,7 +358684,7 @@ }, { "question": "ITAIPU Binacional", - "icon": "./assets/data/nsi/logos/itaipubinacional-635f5b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-635f5b.svg", "osmTags": { "and": [ "power=generator", @@ -358494,7 +358708,7 @@ }, { "question": "James Madison University", - "icon": "./assets/data/nsi/logos/jamesmadisonuniversity-4ed0ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jamesmadisonuniversity-4ed0ab.jpg", "osmTags": { "and": [ "power=generator", @@ -358509,7 +358723,7 @@ }, { "question": "Jämtkraft AB", - "icon": "./assets/data/nsi/logos/jamtkraftab-ec34a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jamtkraftab-ec34a3.jpg", "osmTags": { "and": [ "power=generator", @@ -358542,7 +358756,7 @@ }, { "question": "Juwi", - "icon": "./assets/data/nsi/logos/juwi-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juwi-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -358575,7 +358789,7 @@ }, { "question": "juwi Operations & Maintenance GmbH", - "icon": "./assets/data/nsi/logos/juwioperationsandmaintenancegmbh-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juwioperationsandmaintenancegmbh-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -358626,7 +358840,7 @@ }, { "question": "Karlsruher Institut für Technologie", - "icon": "./assets/data/nsi/logos/karlsruherinstitutfurtechnologie-235ee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/karlsruherinstitutfurtechnologie-235ee2.jpg", "osmTags": { "and": [ "power=generator", @@ -358660,7 +358874,7 @@ }, { "question": "KELAG", - "icon": "./assets/data/nsi/logos/kelag-666aab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-666aab.jpg", "osmTags": { "and": [ "power=generator", @@ -358675,7 +358889,7 @@ }, { "question": "Kendall County", - "icon": "./assets/data/nsi/logos/kendallcounty-10551b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kendallcounty-10551b.jpg", "osmTags": { "and": [ "power=generator", @@ -358690,7 +358904,7 @@ }, { "question": "Kent State University", - "icon": "./assets/data/nsi/logos/kentstateuniversity-3c4f74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kentstateuniversity-3c4f74.jpg", "osmTags": { "and": [ "power=generator", @@ -358741,7 +358955,7 @@ }, { "question": "Kochi Metro", - "icon": "./assets/data/nsi/logos/kochimetro-d7cade.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kochimetro-d7cade.jpg", "osmTags": { "and": [ "power=generator", @@ -358765,7 +358979,7 @@ }, { "question": "Končar", - "icon": "./assets/data/nsi/logos/koncar-0189d2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/koncar-0189d2.svg", "osmTags": { "and": [ "power=generator", @@ -358906,7 +359120,7 @@ }, { "question": "Lightsource BP", - "icon": "./assets/data/nsi/logos/lightsourcebp-74685d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lightsourcebp-74685d.png", "osmTags": { "and": [ "power=generator", @@ -358939,7 +359153,7 @@ }, { "question": "Lister- und Lennekraftwerke GmbH", - "icon": "./assets/data/nsi/logos/listerundlennekraftwerkegmbh-b8ae25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/listerundlennekraftwerkegmbh-b8ae25.svg", "osmTags": { "and": [ "power=generator", @@ -358963,7 +359177,7 @@ }, { "question": "Lockhart Power Company", - "icon": "./assets/data/nsi/logos/lockhartpowercompany-3f646f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-3f646f.png", "osmTags": { "and": [ "power=generator", @@ -358987,7 +359201,7 @@ }, { "question": "London Fire Brigade", - "icon": "./assets/data/nsi/logos/londonfirebrigade-b31211.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonfirebrigade-b31211.jpg", "osmTags": { "and": [ "power=generator", @@ -359002,7 +359216,7 @@ }, { "question": "Longyuan SA", - "icon": "./assets/data/nsi/logos/longyuansa-6ca71c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/longyuansa-6ca71c.jpg", "osmTags": { "and": [ "power=generator", @@ -359035,7 +359249,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-546c7b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-546c7b.png", "osmTags": { "and": [ "power=generator", @@ -359051,7 +359265,7 @@ }, { "question": "Lubbock Power & Light", - "icon": "./assets/data/nsi/logos/lubbockpowerandlight-546c7b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-546c7b.png", "osmTags": { "and": [ "power=generator", @@ -359076,7 +359290,7 @@ }, { "question": "Luminant", - "icon": "./assets/data/nsi/logos/luminant-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luminant-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -359091,7 +359305,7 @@ }, { "question": "Luminus", - "icon": "./assets/data/nsi/logos/luminus-a327c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luminus-a327c1.jpg", "osmTags": { "and": [ "power=generator", @@ -359124,7 +359338,7 @@ }, { "question": "Madison Gas and Electric", - "icon": "./assets/data/nsi/logos/madisongasandelectric-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/madisongasandelectric-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -359149,7 +359363,7 @@ }, { "question": "Mainova", - "icon": "./assets/data/nsi/logos/mainova-b8ae25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mainova-b8ae25.png", "osmTags": { "and": [ "power=generator", @@ -359228,7 +359442,7 @@ }, { "question": "MDU", - "icon": "./assets/data/nsi/logos/mdu-c40494.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mdu-c40494.jpg", "osmTags": { "and": [ "power=generator", @@ -359243,7 +359457,7 @@ }, { "question": "Mercedes-Benz AG", - "icon": "./assets/data/nsi/logos/mercedesbenzag-b8ae25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mercedesbenzag-b8ae25.svg", "osmTags": { "and": [ "power=generator", @@ -359258,7 +359472,7 @@ }, { "question": "Mercury Energy", - "icon": "./assets/data/nsi/logos/mercuryenergy-7b0614.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mercuryenergy-7b0614.png", "osmTags": { "and": [ "power=generator", @@ -359305,7 +359519,7 @@ }, { "question": "Metropolitan Police Service", - "icon": "./assets/data/nsi/logos/metropolitanpoliceservice-a0f939.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/metropolitanpoliceservice-a0f939.svg", "osmTags": { "and": [ "power=generator", @@ -359329,7 +359543,7 @@ }, { "question": "MidAmerican Energy", - "icon": "./assets/data/nsi/logos/midamericanenergy-fa13cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-fa13cd.jpg", "osmTags": { "and": [ "power=generator", @@ -359344,7 +359558,7 @@ }, { "question": "Middlebury College", - "icon": "./assets/data/nsi/logos/middleburycollege-281c4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/middleburycollege-281c4a.jpg", "osmTags": { "and": [ "power=generator", @@ -359368,7 +359582,7 @@ }, { "question": "Ministry of Health and Sanitation", - "icon": "./assets/data/nsi/logos/ministryofhealthandsanitation-899c80.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ministryofhealthandsanitation-899c80.jpg", "osmTags": { "and": [ "power=generator", @@ -359474,7 +359688,7 @@ }, { "question": "MVM", - "icon": "./assets/data/nsi/logos/mvm-dc1ee9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mvm-dc1ee9.jpg", "osmTags": { "and": [ "power=generator", @@ -359489,7 +359703,7 @@ }, { "question": "MVV Energie AG", - "icon": "./assets/data/nsi/logos/mvvenergieag-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mvvenergieag-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -359531,7 +359745,7 @@ }, { "question": "Naturgy", - "icon": "./assets/data/nsi/logos/naturgy-ae5946.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturgy-ae5946.jpg", "osmTags": { "and": [ "power=generator", @@ -359546,7 +359760,7 @@ }, { "question": "Naturstrom AG", - "icon": "./assets/data/nsi/logos/naturstromag-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturstromag-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -359570,7 +359784,7 @@ }, { "question": "Neoen", - "icon": "./assets/data/nsi/logos/neoen-74685d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoen-74685d.svg", "osmTags": { "and": [ "power=generator", @@ -359585,7 +359799,7 @@ }, { "question": "Neoenergia", - "icon": "./assets/data/nsi/logos/neoenergia-104cf6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoenergia-104cf6.svg", "osmTags": { "and": [ "power=generator", @@ -359637,7 +359851,7 @@ }, { "question": "Nextbike", - "icon": "./assets/data/nsi/logos/nextbike-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nextbike-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -359661,7 +359875,7 @@ }, { "question": "NextEra Energy", - "icon": "./assets/data/nsi/logos/nexteraenergy-4cccf0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-4cccf0.png", "osmTags": { "and": [ "power=generator", @@ -359703,7 +359917,7 @@ }, { "question": "Nordex", - "icon": "./assets/data/nsi/logos/nordex-74685d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordex-74685d.svg", "osmTags": { "and": [ "power=generator", @@ -359778,7 +359992,7 @@ }, { "question": "Northwest Energy", - "icon": "./assets/data/nsi/logos/northwestenergy-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestenergy-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -359802,7 +360016,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-eabe09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-eabe09.jpg", "osmTags": { "and": [ "power=generator", @@ -359826,7 +360040,7 @@ }, { "question": "Npower Limited", - "icon": "./assets/data/nsi/logos/npowerlimited-9ac094.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/npowerlimited-9ac094.svg", "osmTags": { "and": [ "power=generator", @@ -359841,7 +360055,7 @@ }, { "question": "NRG Energy", - "icon": "./assets/data/nsi/logos/nrgenergy-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nrgenergy-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -359856,7 +360070,7 @@ }, { "question": "NTPC", - "icon": "./assets/data/nsi/logos/ntpc-d7cade.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntpc-d7cade.jpg", "osmTags": { "and": [ "power=generator", @@ -359871,7 +360085,7 @@ }, { "question": "NTR", - "icon": "./assets/data/nsi/logos/ntr-1f8ba0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntr-1f8ba0.svg", "osmTags": { "and": [ "power=generator", @@ -359886,7 +360100,7 @@ }, { "question": "Nukissiorfiit", - "icon": "./assets/data/nsi/logos/nukissiorfiit-f72d87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-f72d87.jpg", "osmTags": { "and": [ "power=generator", @@ -359919,7 +360133,7 @@ }, { "question": "ÖBB", - "icon": "./assets/data/nsi/logos/obb-7d0c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obb-7d0c03.jpg", "osmTags": { "and": [ "power=generator", @@ -359934,7 +360148,7 @@ }, { "question": "Octopus Investments", - "icon": "./assets/data/nsi/logos/octopusinvestments-9ac094.png", + "icon": "https://data.mapcomplete.org/nsi//logos/octopusinvestments-9ac094.png", "osmTags": { "and": [ "power=generator", @@ -359958,7 +360172,7 @@ }, { "question": "Oklahoma Gas & Electric", - "icon": "./assets/data/nsi/logos/oklahomagasandelectric-7551be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-7551be.jpg", "osmTags": { "and": [ "power=generator", @@ -360019,7 +360233,7 @@ }, { "question": "Orlen", - "icon": "./assets/data/nsi/logos/orlen-c79aa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlen-c79aa4.jpg", "osmTags": { "and": [ "power=generator", @@ -360034,7 +360248,7 @@ }, { "question": "Ørsted", - "icon": "./assets/data/nsi/logos/orsted-6f1448.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orsted-6f1448.png", "osmTags": { "and": [ "power=generator", @@ -360067,7 +360281,7 @@ }, { "question": "OVAG", - "icon": "./assets/data/nsi/logos/ovag-b8ae25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ovag-b8ae25.png", "osmTags": { "and": [ "power=generator", @@ -360123,7 +360337,7 @@ }, { "question": "Pacific Blue", - "icon": "./assets/data/nsi/logos/pacificblue-7a5436.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificblue-7a5436.jpg", "osmTags": { "and": [ "power=generator", @@ -360138,7 +360352,7 @@ }, { "question": "Pacific Hydro", - "icon": "./assets/data/nsi/logos/pacifichydro-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacifichydro-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -360252,7 +360466,7 @@ }, { "question": "Pattern Energy", - "icon": "./assets/data/nsi/logos/patternenergy-dede2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/patternenergy-dede2e.jpg", "osmTags": { "and": [ "power=generator", @@ -360267,7 +360481,7 @@ }, { "question": "Pattern Energy Canada", - "icon": "./assets/data/nsi/logos/patternenergycanada-2d6bbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/patternenergycanada-2d6bbd.jpg", "osmTags": { "and": [ "power=generator", @@ -360327,7 +360541,7 @@ }, { "question": "PGE", - "icon": "./assets/data/nsi/logos/pge-c79aa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pge-c79aa4.jpg", "osmTags": { "and": [ "power=generator", @@ -360371,7 +360585,7 @@ }, { "question": "Pioneer Energy", - "icon": "./assets/data/nsi/logos/pioneerenergy-7b0614.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pioneerenergy-7b0614.jpg", "osmTags": { "and": [ "power=generator", @@ -360395,7 +360609,7 @@ }, { "question": "PLN", - "icon": "./assets/data/nsi/logos/pln-e605d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pln-e605d3.jpg", "osmTags": { "and": [ "power=generator", @@ -360410,7 +360624,7 @@ }, { "question": "PNE", - "icon": "./assets/data/nsi/logos/pne-b8ae25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pne-b8ae25.svg", "osmTags": { "and": [ "power=generator", @@ -360425,7 +360639,7 @@ }, { "question": "PNM", - "icon": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-d67b9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-d67b9a.jpg", "osmTags": { "and": [ "power=generator", @@ -360468,7 +360682,7 @@ }, { "question": "Poweo", - "icon": "./assets/data/nsi/logos/poweo-ef21ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/poweo-ef21ea.png", "osmTags": { "and": [ "power=generator", @@ -360501,7 +360715,7 @@ }, { "question": "Prokon", - "icon": "./assets/data/nsi/logos/prokon-8248fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prokon-8248fb.jpg", "osmTags": { "and": [ "power=generator", @@ -360652,7 +360866,7 @@ }, { "question": "Red Cap", - "icon": "./assets/data/nsi/logos/redcap-6ca71c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redcap-6ca71c.jpg", "osmTags": { "and": [ "power=generator", @@ -360703,7 +360917,7 @@ }, { "question": "Renewable Energy Systems", - "icon": "./assets/data/nsi/logos/renewableenergysystems-9a894e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renewableenergysystems-9a894e.jpg", "osmTags": { "and": [ "power=generator", @@ -360719,7 +360933,7 @@ }, { "question": "Repower AG", - "icon": "./assets/data/nsi/logos/repowerag-e3662a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/repowerag-e3662a.svg", "osmTags": { "and": [ "power=generator", @@ -360743,7 +360957,7 @@ }, { "question": "RES Australia", - "icon": "./assets/data/nsi/logos/resaustralia-7a5436.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/resaustralia-7a5436.jpg", "osmTags": { "and": [ "power=generator", @@ -360758,7 +360972,7 @@ }, { "question": "RES Canada", - "icon": "./assets/data/nsi/logos/rescanada-60f7b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rescanada-60f7b4.jpg", "osmTags": { "and": [ "power=generator", @@ -360782,7 +360996,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-2e2ed1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-2e2ed1.svg", "osmTags": { "and": [ "power=generator", @@ -360851,7 +361065,7 @@ }, { "question": "Royal Dutch Shell", - "icon": "./assets/data/nsi/logos/royaldutchshell-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/royaldutchshell-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -360866,7 +361080,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-16c9d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-16c9d0.jpg", "osmTags": { "and": [ "power=generator", @@ -360881,7 +361095,7 @@ }, { "question": "RWE Generation SE", - "icon": "./assets/data/nsi/logos/rwegenerationse-b8ae25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwegenerationse-b8ae25.svg", "osmTags": { "and": [ "power=generator", @@ -360896,7 +361110,7 @@ }, { "question": "RWE Renewables", - "icon": "./assets/data/nsi/logos/rwerenewables-80815a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwerenewables-80815a.jpg", "osmTags": { "and": [ "power=generator", @@ -360911,7 +361125,7 @@ }, { "question": "RWE Renewables Polska", - "icon": "./assets/data/nsi/logos/rwerenewablespolska-c79aa4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwerenewablespolska-c79aa4.jpg", "osmTags": { "and": [ "power=generator", @@ -360926,7 +361140,7 @@ }, { "question": "RWE Renewables Sweden AB", - "icon": "./assets/data/nsi/logos/rwerenewablesswedenab-ec34a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwerenewablesswedenab-ec34a3.jpg", "osmTags": { "and": [ "power=generator", @@ -360965,7 +361179,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-1f61f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-1f61f0.png", "osmTags": { "and": [ "power=generator", @@ -360989,7 +361203,7 @@ }, { "question": "Salt River Project", - "icon": "./assets/data/nsi/logos/saltriverproject-7494e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saltriverproject-7494e7.png", "osmTags": { "and": [ "power=generator", @@ -361005,7 +361219,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-295d00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-295d00.jpg", "osmTags": { "and": [ "power=generator", @@ -361097,7 +361311,7 @@ }, { "question": "SaskPower", - "icon": "./assets/data/nsi/logos/saskpower-167375.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saskpower-167375.svg", "osmTags": { "and": [ "power=generator", @@ -361157,7 +361371,7 @@ }, { "question": "Seminole Electric Cooperative", - "icon": "./assets/data/nsi/logos/seminoleelectriccooperative-2af0cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-2af0cf.jpg", "osmTags": { "and": [ "power=generator", @@ -361199,7 +361413,7 @@ }, { "question": "SHEM", - "icon": "./assets/data/nsi/logos/shem-33d749.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shem-33d749.png", "osmTags": { "and": [ "power=generator", @@ -361377,7 +361591,7 @@ }, { "question": "SL NaturEnergie", - "icon": "./assets/data/nsi/logos/slnaturenergie-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slnaturenergie-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -361424,7 +361638,7 @@ }, { "question": "Smithfield Fresh Meats Corporation", - "icon": "./assets/data/nsi/logos/smithfieldfreshmeatscorporation-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/smithfieldfreshmeatscorporation-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -361439,7 +361653,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-33d749.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-33d749.png", "osmTags": { "and": [ "power=generator", @@ -361454,7 +361668,7 @@ }, { "question": "Snowy Hydro", - "icon": "./assets/data/nsi/logos/snowyhydro-08761e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snowyhydro-08761e.jpg", "osmTags": { "and": [ "power=generator", @@ -361496,7 +361710,7 @@ }, { "question": "SOLARWATT", - "icon": "./assets/data/nsi/logos/solarwatt-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/solarwatt-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -361543,7 +361757,7 @@ }, { "question": "South Texas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southtexaselectriccooperative-546c7b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southtexaselectriccooperative-546c7b.jpg", "osmTags": { "and": [ "power=generator", @@ -361558,7 +361772,7 @@ }, { "question": "Southern Company", - "icon": "./assets/data/nsi/logos/southerncompany-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncompany-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -361596,7 +361810,7 @@ }, { "question": "Squadron Energy", - "icon": "./assets/data/nsi/logos/squadronenergy-4d20e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/squadronenergy-4d20e6.jpg", "osmTags": { "and": [ "power=generator", @@ -361620,7 +361834,7 @@ }, { "question": "SSE (Slovensko)", - "icon": "./assets/data/nsi/logos/sse-300ba3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sse-300ba3.png", "osmTags": { "and": [ "power=generator", @@ -361635,7 +361849,7 @@ }, { "question": "SSE Renewables", - "icon": "./assets/data/nsi/logos/sserenewables-8d3bcf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sserenewables-8d3bcf.svg", "osmTags": { "and": [ "power=generator", @@ -361664,7 +361878,7 @@ }, { "question": "Stadt Karlsruhe", - "icon": "./assets/data/nsi/logos/stadtkarlsruhe-235ee2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtkarlsruhe-235ee2.png", "osmTags": { "and": [ "power=generator", @@ -361679,7 +361893,7 @@ }, { "question": "Stadtwerke Karlsruhe GmbH", - "icon": "./assets/data/nsi/logos/stadtwerkekarlsruhegmbh-235ee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekarlsruhegmbh-235ee2.jpg", "osmTags": { "and": [ "power=generator", @@ -361708,7 +361922,7 @@ }, { "question": "Stadtwerke Lübeck", - "icon": "./assets/data/nsi/logos/stadtwerkelubeck-6d7be1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-6d7be1.jpg", "osmTags": { "and": [ "power=generator", @@ -361723,7 +361937,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-64ea79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-64ea79.jpg", "osmTags": { "and": [ "power=generator", @@ -361753,7 +361967,7 @@ }, { "question": "Stadtwerke Speyer", - "icon": "./assets/data/nsi/logos/stadtwerkespeyer-865cfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-865cfd.jpg", "osmTags": { "and": [ "power=generator", @@ -361769,7 +361983,7 @@ }, { "question": "Stadtwerke Walldorf", - "icon": "./assets/data/nsi/logos/stadtwerkewalldorf-235ee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewalldorf-235ee2.jpg", "osmTags": { "and": [ "power=generator", @@ -361784,7 +361998,7 @@ }, { "question": "Starwood Energy Group", - "icon": "./assets/data/nsi/logos/starwoodenergygroup-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/starwoodenergygroup-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -361799,7 +362013,7 @@ }, { "question": "Statkraft", - "icon": "./assets/data/nsi/logos/statkraft-16c9d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statkraft-16c9d0.png", "osmTags": { "and": [ "power=generator", @@ -361913,7 +362127,7 @@ }, { "question": "Storm", - "icon": "./assets/data/nsi/logos/storm-a327c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/storm-a327c1.jpg", "osmTags": { "and": [ "power=generator", @@ -361946,7 +362160,7 @@ }, { "question": "Suncor Energy", - "icon": "./assets/data/nsi/logos/suncorenergy-2d6bbd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suncorenergy-2d6bbd.jpg", "osmTags": { "and": [ "power=generator", @@ -361961,7 +362175,7 @@ }, { "question": "SunEdison", - "icon": "./assets/data/nsi/logos/sunedison-9a0961.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunedison-9a0961.jpg", "osmTags": { "and": [ "power=generator", @@ -362012,7 +362226,7 @@ }, { "question": "Süwag", - "icon": "./assets/data/nsi/logos/suwag-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwag-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -362054,7 +362268,7 @@ }, { "question": "Swisscom", - "icon": "./assets/data/nsi/logos/swisscom-b18b84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisscom-b18b84.jpg", "osmTags": { "and": [ "power=generator", @@ -362123,7 +362337,7 @@ }, { "question": "Target Corporation", - "icon": "./assets/data/nsi/logos/targetcorporation-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/targetcorporation-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -362170,7 +362384,7 @@ }, { "question": "Tenaska", - "icon": "./assets/data/nsi/logos/tenaska-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tenaska-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -362185,7 +362399,7 @@ }, { "question": "Tennessee Valley Authority", - "icon": "./assets/data/nsi/logos/tennesseevalleyauthority-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -362201,7 +362415,7 @@ }, { "question": "Terna Energy", - "icon": "./assets/data/nsi/logos/ternaenergy-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ternaenergy-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -362257,7 +362471,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-7d0c03.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-7d0c03.svg", "osmTags": { "and": [ "power=generator", @@ -362331,7 +362545,7 @@ }, { "question": "TransAlta", - "icon": "./assets/data/nsi/logos/transalta-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transalta-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -362373,7 +362587,7 @@ }, { "question": "Trianel", - "icon": "./assets/data/nsi/logos/trianel-0e2731.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trianel-0e2731.svg", "osmTags": { "and": [ "power=generator", @@ -362388,7 +362602,7 @@ }, { "question": "Trianel Windkraftwerk Borkum GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/trianelwindkraftwerkborkumgmbhandcokg-1a7ca0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trianelwindkraftwerkborkumgmbhandcokg-1a7ca0.svg", "osmTags": { "and": [ "power=generator", @@ -362412,7 +362626,7 @@ }, { "question": "Trustpower", - "icon": "./assets/data/nsi/logos/trustpower-239f09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trustpower-239f09.jpg", "osmTags": { "and": [ "power=generator", @@ -362513,7 +362727,7 @@ }, { "question": "Uniper", - "icon": "./assets/data/nsi/logos/uniper-16c9d0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniper-16c9d0.svg", "osmTags": { "and": [ "power=generator", @@ -362528,7 +362742,7 @@ }, { "question": "Uniper Kraftwerke", - "icon": "./assets/data/nsi/logos/uniperkraftwerke-b8ae25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-b8ae25.png", "osmTags": { "and": [ "power=generator", @@ -362543,7 +362757,7 @@ }, { "question": "United States Bureau of Reclamation", - "icon": "./assets/data/nsi/logos/unitedstatesbureauofreclamation-19ecba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesbureauofreclamation-19ecba.png", "osmTags": { "and": [ "power=generator", @@ -362568,7 +362782,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-626380.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-626380.svg", "osmTags": { "and": [ "power=generator", @@ -362597,7 +362811,7 @@ }, { "question": "Valero", - "icon": "./assets/data/nsi/logos/valero-f2eccb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valero-f2eccb.png", "osmTags": { "and": [ "power=generator", @@ -362612,7 +362826,7 @@ }, { "question": "Valorem", - "icon": "./assets/data/nsi/logos/valorem-ebc5ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valorem-ebc5ae.png", "osmTags": { "and": [ "power=generator", @@ -362654,7 +362868,7 @@ }, { "question": "Vattenfall", - "icon": "./assets/data/nsi/logos/vattenfall-c18b00.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-c18b00.png", "osmTags": { "and": [ "power=generator", @@ -362669,7 +362883,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-b8ae25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-b8ae25.png", "osmTags": { "and": [ "power=generator", @@ -362684,7 +362898,7 @@ }, { "question": "Vattenfall (Nederland)", - "icon": "./assets/data/nsi/logos/vattenfallnederland-7c4044.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfallnederland-7c4044.svg", "osmTags": { "and": [ "power=generator", @@ -362699,7 +362913,7 @@ }, { "question": "Vattenfall (UK)", - "icon": "./assets/data/nsi/logos/vattenfallunitedkingdom-9ac094.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfallunitedkingdom-9ac094.png", "osmTags": { "and": [ "power=generator", @@ -362827,7 +363041,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-7d0c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-7d0c03.jpg", "osmTags": { "and": [ "power=generator", @@ -362851,7 +363065,7 @@ }, { "question": "Vestas", - "icon": "./assets/data/nsi/logos/vestas-74685d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vestas-74685d.jpg", "osmTags": { "and": [ "power=generator", @@ -362943,7 +363157,7 @@ }, { "question": "Volkswagen", - "icon": "./assets/data/nsi/logos/volkswagen-74685d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/volkswagen-74685d.svg", "osmTags": { "and": [ "power=generator", @@ -362995,7 +363209,7 @@ }, { "question": "Voltalia", - "icon": "./assets/data/nsi/logos/voltalia-cc560c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/voltalia-cc560c.jpg", "osmTags": { "and": [ "power=generator", @@ -363055,7 +363269,7 @@ }, { "question": "WEB Windenergie AG", - "icon": "./assets/data/nsi/logos/webwindenergieag-47fbc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/webwindenergieag-47fbc0.jpg", "osmTags": { "and": [ "power=generator", @@ -363111,7 +363325,7 @@ }, { "question": "WestWind Energy", - "icon": "./assets/data/nsi/logos/westwindenergy-f033f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westwindenergy-f033f7.jpg", "osmTags": { "and": [ "power=generator", @@ -363144,7 +363358,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-7d0c03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-7d0c03.jpg", "osmTags": { "and": [ "power=generator", @@ -363222,7 +363436,7 @@ }, { "question": "Windkraft Simonsfeld", - "icon": "./assets/data/nsi/logos/windkraftsimonsfeld-4f665e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/windkraftsimonsfeld-4f665e.jpg", "osmTags": { "and": [ "power=generator", @@ -363431,7 +363645,7 @@ }, { "question": "Wisconsin Public Service Corporation", - "icon": "./assets/data/nsi/logos/wisconsinpublicservicecorporation-27c60c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsinpublicservicecorporation-27c60c.jpg", "osmTags": { "and": [ "power=generator", @@ -363465,7 +363679,7 @@ }, { "question": "WPD", - "icon": "./assets/data/nsi/logos/wpd-74685d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wpd-74685d.svg", "osmTags": { "and": [ "power=generator", @@ -363498,7 +363712,7 @@ }, { "question": "wpd onshore GmbH & Co. KG", - "icon": "./assets/data/nsi/logos/wpdonshoregmbhandcokg-b8ae25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/wpdonshoregmbhandcokg-b8ae25.svg", "osmTags": { "and": [ "power=generator", @@ -363513,7 +363727,7 @@ }, { "question": "WPO", - "icon": "./assets/data/nsi/logos/wpo-16c9d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wpo-16c9d0.png", "osmTags": { "and": [ "power=generator", @@ -363528,7 +363742,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-19ecba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-19ecba.jpg", "osmTags": { "and": [ "power=generator", @@ -363543,7 +363757,7 @@ }, { "question": "Yale University", - "icon": "./assets/data/nsi/logos/yaleuniversity-866ce7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/yaleuniversity-866ce7.jpg", "osmTags": { "and": [ "power=generator", @@ -363567,7 +363781,7 @@ }, { "question": "YPF Luz", - "icon": "./assets/data/nsi/logos/ypfluz-76b721.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ypfluz-76b721.jpg", "osmTags": { "and": [ "power=generator", @@ -363582,7 +363796,7 @@ }, { "question": "ZEAG Erneuerbare Energien GmbH", - "icon": "./assets/data/nsi/logos/zeagerneuerbareenergiengmbh-b8ae25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeagerneuerbareenergiengmbh-b8ae25.jpg", "osmTags": { "and": [ "power=generator", @@ -364179,7 +364393,7 @@ }, { "question": "中国電力", - "icon": "./assets/data/nsi/logos/chugokuelectricpowercompany-11cc64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chugokuelectricpowercompany-11cc64.jpg", "osmTags": { "and": [ "power=generator", @@ -364196,7 +364410,7 @@ }, { "question": "中部電力", - "icon": "./assets/data/nsi/logos/chubuelectricpowercompany-11cc64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowercompany-11cc64.png", "osmTags": { "and": [ "power=generator", @@ -364214,7 +364428,7 @@ }, { "question": "九州電力", - "icon": "./assets/data/nsi/logos/kyushuelectricpowercompany-11cc64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowercompany-11cc64.png", "osmTags": { "and": [ "power=generator", @@ -364232,7 +364446,7 @@ }, { "question": "北海道電力", - "icon": "./assets/data/nsi/logos/hokkaidoelectricpowercompany-11cc64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowercompany-11cc64.jpg", "osmTags": { "and": [ "power=generator", @@ -364250,7 +364464,7 @@ }, { "question": "北陸電力", - "icon": "./assets/data/nsi/logos/hokurikuelectricpowercompany-11cc64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hokurikuelectricpowercompany-11cc64.png", "osmTags": { "and": [ "power=generator", @@ -364302,7 +364516,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/taiwanpowercompany-b27929.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanpowercompany-b27929.jpg", "osmTags": { "and": [ "power=generator", @@ -364328,7 +364542,7 @@ }, { "question": "四国電力", - "icon": "./assets/data/nsi/logos/shikokuelectricpowercompany-11cc64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/shikokuelectricpowercompany-11cc64.jpg", "osmTags": { "and": [ "power=generator", @@ -364433,7 +364647,7 @@ }, { "question": "東京電力", - "icon": "./assets/data/nsi/logos/tokyoelectricpowercompany-11cc64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tokyoelectricpowercompany-11cc64.png", "osmTags": { "and": [ "power=generator", @@ -364451,7 +364665,7 @@ }, { "question": "東北電力", - "icon": "./assets/data/nsi/logos/tohokuelectricpowercompany-11cc64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tohokuelectricpowercompany-11cc64.jpg", "osmTags": { "and": [ "power=generator", @@ -364469,7 +364683,7 @@ }, { "question": "沖縄電力", - "icon": "./assets/data/nsi/logos/okinawaelectricpowercompany-11cc64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-11cc64.jpg", "osmTags": { "and": [ "power=generator", @@ -364557,7 +364771,7 @@ }, { "question": "関西電力", - "icon": "./assets/data/nsi/logos/kansaielectricpowercompany-11cc64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kansaielectricpowercompany-11cc64.jpg", "osmTags": { "and": [ "power=generator", @@ -364584,7 +364798,7 @@ }, { "question": "電源開発", - "icon": "./assets/data/nsi/logos/electricpowerdevelopmentcompany-11cc64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricpowerdevelopmentcompany-11cc64.jpg", "osmTags": { "and": [ "power=generator", @@ -364601,7 +364815,7 @@ }, { "question": "4-County Electric Power Association", - "icon": "./assets/data/nsi/logos/4countyelectricpowerassociation-7d3f64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/4countyelectricpowerassociation-7d3f64.jpg", "osmTags": { "and": [ "power=line", @@ -364616,7 +364830,7 @@ }, { "question": "50Hertz Transmission", - "icon": "./assets/data/nsi/logos/50hertztransmission-d5e323.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-d5e323.svg", "osmTags": { "and": [ "power=line", @@ -364631,7 +364845,7 @@ }, { "question": "Å Energi Vannkraft", - "icon": "./assets/data/nsi/logos/aenergivannkraft-e0b869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-e0b869.jpg", "osmTags": { "and": [ "power=line", @@ -364646,7 +364860,7 @@ }, { "question": "Adif", - "icon": "./assets/data/nsi/logos/adif-769454.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adif-769454.jpg", "osmTags": { "and": [ "power=line", @@ -364661,7 +364875,7 @@ }, { "question": "AEK", - "icon": "./assets/data/nsi/logos/aek-72f7bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aek-72f7bc.jpg", "osmTags": { "and": [ "power=line", @@ -364676,7 +364890,7 @@ }, { "question": "AEP Ohio", - "icon": "./assets/data/nsi/logos/aepohio-b6ef1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aepohio-b6ef1d.png", "osmTags": { "and": [ "power=line", @@ -364691,7 +364905,7 @@ }, { "question": "AEP Texas", - "icon": "./assets/data/nsi/logos/aeptexas-2d9f43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aeptexas-2d9f43.png", "osmTags": { "and": [ "power=line", @@ -364706,7 +364920,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-551283.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-551283.png", "osmTags": { "and": [ "power=line", @@ -364721,7 +364935,7 @@ }, { "question": "AEW", - "icon": "./assets/data/nsi/logos/aew-3c10bb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aew-3c10bb.png", "osmTags": { "and": [ "power=line", @@ -364745,7 +364959,7 @@ }, { "question": "Agder Energi", - "icon": "./assets/data/nsi/logos/agderenergi-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agderenergi-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -364769,7 +364983,7 @@ }, { "question": "Aktiengesellschaft für Versorgungsunternehmen", - "icon": "./assets/data/nsi/logos/aktiengesellschaftfurversorgungsunternehmen-fe2846.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aktiengesellschaftfurversorgungsunternehmen-fe2846.svg", "osmTags": { "and": [ "power=line", @@ -364785,7 +364999,7 @@ }, { "question": "Alabama Power", - "icon": "./assets/data/nsi/logos/alabamapower-ed245e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamapower-ed245e.jpg", "osmTags": { "and": [ "power=line", @@ -364814,7 +365028,7 @@ }, { "question": "Allgäuer Überlandwerk", - "icon": "./assets/data/nsi/logos/allgaueruberlandwerk-a9bd01.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-a9bd01.png", "osmTags": { "and": [ "power=line", @@ -364830,7 +365044,7 @@ }, { "question": "Alliant Energy", - "icon": "./assets/data/nsi/logos/alliantenergy-b654b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alliantenergy-b654b4.png", "osmTags": { "and": [ "frequency=60", @@ -364855,7 +365069,7 @@ }, { "question": "AltaLink", - "icon": "./assets/data/nsi/logos/altalink-a4e32f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altalink-a4e32f.jpg", "osmTags": { "and": [ "power=line", @@ -364916,7 +365130,7 @@ }, { "question": "Ameren", - "icon": "./assets/data/nsi/logos/ameren-858afb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameren-858afb.png", "osmTags": { "and": [ "frequency=60", @@ -364946,7 +365160,7 @@ }, { "question": "American Electric Power", - "icon": "./assets/data/nsi/logos/americanelectricpower-b654b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-b654b4.png", "osmTags": { "and": [ "power=line", @@ -364990,7 +365204,7 @@ }, { "question": "Amprion", - "icon": "./assets/data/nsi/logos/amprion-d5e323.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/amprion-d5e323.svg", "osmTags": { "and": [ "power=line", @@ -365005,7 +365219,7 @@ }, { "question": "Amtrak", - "icon": "./assets/data/nsi/logos/amtrak-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtrak-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -365020,7 +365234,7 @@ }, { "question": "Anaheim Public Utilities", - "icon": "./assets/data/nsi/logos/anaheimpublicutilities-eefbc4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-eefbc4.png", "osmTags": { "and": [ "power=line", @@ -365035,7 +365249,7 @@ }, { "question": "ANDE", - "icon": "./assets/data/nsi/logos/ande-101239.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ande-101239.jpg", "osmTags": { "and": [ "power=line", @@ -365064,7 +365278,7 @@ }, { "question": "Appalachian Power", - "icon": "./assets/data/nsi/logos/appalachianpowercompany-33137a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-33137a.png", "osmTags": { "and": [ "power=line", @@ -365102,7 +365316,7 @@ }, { "question": "Arizona Public Service", - "icon": "./assets/data/nsi/logos/arizonapublicservice-33eed2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-33eed2.png", "osmTags": { "and": [ "power=line", @@ -365131,7 +365345,7 @@ }, { "question": "Arkansas Valley Electric Cooperative", - "icon": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-527b39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-527b39.jpg", "osmTags": { "and": [ "power=line", @@ -365160,7 +365374,7 @@ }, { "question": "ATCO Electric", - "icon": "./assets/data/nsi/logos/atcoelectric-95aa3c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atcoelectric-95aa3c.svg", "osmTags": { "and": [ "power=line", @@ -365175,7 +365389,7 @@ }, { "question": "ATEL", - "icon": "./assets/data/nsi/logos/atel-151882.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atel-151882.svg", "osmTags": { "and": [ "power=line", @@ -365190,7 +365404,7 @@ }, { "question": "Atlantic City Electric", - "icon": "./assets/data/nsi/logos/atlanticcityelectric-91e428.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-91e428.jpg", "osmTags": { "and": [ "power=line", @@ -365205,7 +365419,7 @@ }, { "question": "Augstsprieguma tīkls", - "icon": "./assets/data/nsi/logos/augstspriegumatikls-e41140.png", + "icon": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-e41140.png", "osmTags": { "and": [ "power=line", @@ -365220,7 +365434,7 @@ }, { "question": "Ausgrid", - "icon": "./assets/data/nsi/logos/ausgrid-67a43a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausgrid-67a43a.jpg", "osmTags": { "and": [ "power=line", @@ -365235,7 +365449,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-2d9f43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-2d9f43.jpg", "osmTags": { "and": [ "power=line", @@ -365264,7 +365478,7 @@ }, { "question": "Avacon Netz", - "icon": "./assets/data/nsi/logos/avaconnetz-439c77.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avaconnetz-439c77.svg", "osmTags": { "and": [ "power=line", @@ -365279,7 +365493,7 @@ }, { "question": "Avista", - "icon": "./assets/data/nsi/logos/avista-5cd90b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avista-5cd90b.jpg", "osmTags": { "and": [ "power=line", @@ -365294,7 +365508,7 @@ }, { "question": "Axpo", - "icon": "./assets/data/nsi/logos/axpo-ac4ca5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axpo-ac4ca5.jpg", "osmTags": { "and": [ "power=line", @@ -365318,7 +365532,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-ab2cf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-ab2cf5.jpg", "osmTags": { "and": [ "frequency=60", @@ -365357,7 +365571,7 @@ }, { "question": "Bayernwerk", - "icon": "./assets/data/nsi/logos/bayernwerk-fe1279.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayernwerk-fe1279.svg", "osmTags": { "and": [ "power=line", @@ -365372,7 +365586,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-5611ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-5611ce.jpg", "osmTags": { "and": [ "power=line", @@ -365410,7 +365624,7 @@ }, { "question": "Belize Electricity Limited", - "icon": "./assets/data/nsi/logos/belizeelectricitylimited-f57c83.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-f57c83.jpg", "osmTags": { "and": [ "power=line", @@ -365453,7 +365667,7 @@ }, { "question": "BKK", - "icon": "./assets/data/nsi/logos/bkk-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bkk-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -365468,7 +365682,7 @@ }, { "question": "BKW", - "icon": "./assets/data/nsi/logos/bkw-34ad9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bkw-34ad9c.png", "osmTags": { "and": [ "power=line", @@ -365498,7 +365712,7 @@ }, { "question": "Blue Ridge Energy", - "icon": "./assets/data/nsi/logos/blueridgeenergy-86b821.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-86b821.jpg", "osmTags": { "and": [ "power=line", @@ -365513,7 +365727,7 @@ }, { "question": "Bonneville Power Administration", - "icon": "./assets/data/nsi/logos/bonnevillepoweradministration-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -365529,7 +365743,7 @@ }, { "question": "Bornholms Energi & Forsyning", - "icon": "./assets/data/nsi/logos/bornholmsenergiandforsyning-5fe2bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-5fe2bf.jpg", "osmTags": { "and": [ "power=line", @@ -365587,7 +365801,7 @@ }, { "question": "BrightRidge", - "icon": "./assets/data/nsi/logos/brightridge-be4a58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightridge-be4a58.jpg", "osmTags": { "and": [ "power=line", @@ -365611,7 +365825,7 @@ }, { "question": "Bryan Texas Utilities", - "icon": "./assets/data/nsi/logos/bryantexasutilities-2d9f43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-2d9f43.jpg", "osmTags": { "and": [ "power=line", @@ -365626,7 +365840,7 @@ }, { "question": "Burgenland Energie", - "icon": "./assets/data/nsi/logos/burgenlandenergieag-43114e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-43114e.jpg", "osmTags": { "and": [ "power=line", @@ -365650,7 +365864,7 @@ }, { "question": "Capital Power", - "icon": "./assets/data/nsi/logos/capitalpower-464507.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalpower-464507.jpg", "osmTags": { "and": [ "power=line", @@ -365679,7 +365893,7 @@ }, { "question": "Caruna", - "icon": "./assets/data/nsi/logos/caruna-17e9a7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caruna-17e9a7.svg", "osmTags": { "and": [ "power=line", @@ -365694,7 +365908,7 @@ }, { "question": "CDEEE", - "icon": "./assets/data/nsi/logos/cdeee-5cfbc0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cdeee-5cfbc0.jpg", "osmTags": { "and": [ "power=line", @@ -365709,7 +365923,7 @@ }, { "question": "CEEE", - "icon": "./assets/data/nsi/logos/ceee-ddc6a3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceee-ddc6a3.svg", "osmTags": { "and": [ "power=line", @@ -365738,7 +365952,7 @@ }, { "question": "Celesc", - "icon": "./assets/data/nsi/logos/celesc-ddc6a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celesc-ddc6a3.jpg", "osmTags": { "and": [ "power=line", @@ -365762,7 +365976,7 @@ }, { "question": "Cemig", - "icon": "./assets/data/nsi/logos/cemig-ddc6a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cemig-ddc6a3.jpg", "osmTags": { "and": [ "power=line", @@ -365777,7 +365991,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -365806,7 +366020,7 @@ }, { "question": "Central Maine Power Company", - "icon": "./assets/data/nsi/logos/centralmainepowercompany-834cd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-834cd5.jpg", "osmTags": { "and": [ "power=line", @@ -365830,7 +366044,7 @@ }, { "question": "ČEPS", - "icon": "./assets/data/nsi/logos/ceps-f6b6f1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceps-f6b6f1.jpg", "osmTags": { "and": [ "power=line", @@ -365845,7 +366059,7 @@ }, { "question": "CERN", - "icon": "./assets/data/nsi/logos/cern-68daa6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cern-68daa6.jpg", "osmTags": { "and": [ "power=line", @@ -365869,7 +366083,7 @@ }, { "question": "Ceylon Electricity Board", - "icon": "./assets/data/nsi/logos/ceylonelectricityboard-5c8a2f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-5c8a2f.png", "osmTags": { "and": [ "power=line", @@ -365908,7 +366122,7 @@ }, { "question": "CGE", - "icon": "./assets/data/nsi/logos/cge-ea1a07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cge-ea1a07.jpg", "osmTags": { "and": [ "power=line", @@ -365959,7 +366173,7 @@ }, { "question": "CIPCO", - "icon": "./assets/data/nsi/logos/cipco-11f0ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cipco-11f0ed.jpg", "osmTags": { "and": [ "frequency=60", @@ -365975,7 +366189,7 @@ }, { "question": "City of Ames", - "icon": "./assets/data/nsi/logos/cityofames-11f0ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofames-11f0ed.jpg", "osmTags": { "and": [ "power=line", @@ -365990,7 +366204,7 @@ }, { "question": "City of Concord", - "icon": "./assets/data/nsi/logos/cityofconcord-86b821.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofconcord-86b821.png", "osmTags": { "and": [ "power=line", @@ -366005,7 +366219,7 @@ }, { "question": "City of Elizabeth", - "icon": "./assets/data/nsi/logos/cityofelizabeth-86b821.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofelizabeth-86b821.jpg", "osmTags": { "and": [ "power=line", @@ -366043,7 +366257,7 @@ }, { "question": "City of High Point", - "icon": "./assets/data/nsi/logos/cityofhighpoint-86b821.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhighpoint-86b821.jpg", "osmTags": { "and": [ "power=line", @@ -366058,7 +366272,7 @@ }, { "question": "City of Lakeland", - "icon": "./assets/data/nsi/logos/cityoflakeland-05df97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-05df97.png", "osmTags": { "and": [ "power=line", @@ -366073,7 +366287,7 @@ }, { "question": "City of Lexington", - "icon": "./assets/data/nsi/logos/cityoflexington-86b821.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflexington-86b821.jpg", "osmTags": { "and": [ "power=line", @@ -366088,7 +366302,7 @@ }, { "question": "City of Natchitoches", - "icon": "./assets/data/nsi/logos/cityofnatchitoches-f4d799.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnatchitoches-f4d799.jpg", "osmTags": { "and": [ "power=line", @@ -366145,7 +366359,7 @@ }, { "question": "City of Tallahassee", - "icon": "./assets/data/nsi/logos/cityoftallahassee-05df97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-05df97.jpg", "osmTags": { "and": [ "power=line", @@ -366197,7 +366411,7 @@ }, { "question": "Clark Public Utilities", - "icon": "./assets/data/nsi/logos/clarkpublicutilities-fa4900.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-fa4900.jpg", "osmTags": { "and": [ "power=line", @@ -366221,7 +366435,7 @@ }, { "question": "Clay Electric Cooperative", - "icon": "./assets/data/nsi/logos/clayelectriccooperative-05df97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-05df97.jpg", "osmTags": { "and": [ "power=line", @@ -366236,7 +366450,7 @@ }, { "question": "CLECO", - "icon": "./assets/data/nsi/logos/cleco-f4d799.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleco-f4d799.svg", "osmTags": { "and": [ "power=line", @@ -366251,7 +366465,7 @@ }, { "question": "Cleveland Public Power", - "icon": "./assets/data/nsi/logos/clevelandpublicpower-b6ef1d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandpublicpower-b6ef1d.jpg", "osmTags": { "and": [ "power=line", @@ -366320,7 +366534,7 @@ }, { "question": "CNR", - "icon": "./assets/data/nsi/logos/cnr-e3be4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cnr-e3be4c.jpg", "osmTags": { "and": [ "power=line", @@ -366335,7 +366549,7 @@ }, { "question": "Codelco Chile", - "icon": "./assets/data/nsi/logos/codelcochile-ea1a07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/codelcochile-ea1a07.jpg", "osmTags": { "and": [ "power=line", @@ -366350,7 +366564,7 @@ }, { "question": "Coelba", - "icon": "./assets/data/nsi/logos/coelba-ddc6a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coelba-ddc6a3.png", "osmTags": { "and": [ "power=line", @@ -366365,7 +366579,7 @@ }, { "question": "Colbún", - "icon": "./assets/data/nsi/logos/colbun-ea1a07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colbun-ea1a07.jpg", "osmTags": { "and": [ "power=line", @@ -366380,7 +366594,7 @@ }, { "question": "Colorado Springs Utilities", - "icon": "./assets/data/nsi/logos/coloradospringsutilities-482ae7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-482ae7.jpg", "osmTags": { "and": [ "power=line", @@ -366404,7 +366618,7 @@ }, { "question": "Comisión Federal de Electricidad", - "icon": "./assets/data/nsi/logos/comisionfederaldeelectricidad-f3e3fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-f3e3fb.png", "osmTags": { "and": [ "power=line", @@ -366420,7 +366634,7 @@ }, { "question": "Commonwealth Edison", - "icon": "./assets/data/nsi/logos/commonwealthedison-a6ad72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-a6ad72.jpg", "osmTags": { "and": [ "power=line", @@ -366512,7 +366726,7 @@ }, { "question": "Consolidated Edison", - "icon": "./assets/data/nsi/logos/consolidatededison-255ed7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consolidatededison-255ed7.jpg", "osmTags": { "and": [ "power=line", @@ -366541,7 +366755,7 @@ }, { "question": "Consumers Energy", - "icon": "./assets/data/nsi/logos/consumersenergy-a1df2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumersenergy-a1df2e.png", "osmTags": { "and": [ "power=line", @@ -366570,7 +366784,7 @@ }, { "question": "Copel", - "icon": "./assets/data/nsi/logos/copel-ddc6a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copel-ddc6a3.jpg", "osmTags": { "and": [ "power=line", @@ -366585,7 +366799,7 @@ }, { "question": "Corn Belt Power Cooperative", - "icon": "./assets/data/nsi/logos/cornbeltpowercooperative-11f0ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-11f0ed.jpg", "osmTags": { "and": [ "frequency=60", @@ -366601,7 +366815,7 @@ }, { "question": "Corpoelec", - "icon": "./assets/data/nsi/logos/corpoelec-220436.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpoelec-220436.png", "osmTags": { "and": [ "power=line", @@ -366616,7 +366830,7 @@ }, { "question": "Cosern", - "icon": "./assets/data/nsi/logos/cosern-ddc6a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cosern-ddc6a3.png", "osmTags": { "and": [ "power=line", @@ -366631,7 +366845,7 @@ }, { "question": "Counties Energy", - "icon": "./assets/data/nsi/logos/countiesenergy-737a3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countiesenergy-737a3a.png", "osmTags": { "and": [ "power=line", @@ -366655,7 +366869,7 @@ }, { "question": "CPFL Energia", - "icon": "./assets/data/nsi/logos/cpflenergia-ddc6a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cpflenergia-ddc6a3.png", "osmTags": { "and": [ "power=line", @@ -366679,7 +366893,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-2d9f43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-2d9f43.jpg", "osmTags": { "and": [ "power=line", @@ -366731,7 +366945,7 @@ }, { "question": "Cullman Electric Cooperative", - "icon": "./assets/data/nsi/logos/cullmanelectriccooperative-ed245e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-ed245e.png", "osmTags": { "and": [ "power=line", @@ -366746,7 +366960,7 @@ }, { "question": "Dairyland Power Cooperative", - "icon": "./assets/data/nsi/logos/dairylandpowercooperative-f1b5e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-f1b5e8.jpg", "osmTags": { "and": [ "power=line", @@ -366788,7 +367002,7 @@ }, { "question": "Dayton Power & Light", - "icon": "./assets/data/nsi/logos/daytonpowerandlight-b6ef1d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daytonpowerandlight-b6ef1d.png", "osmTags": { "and": [ "power=line", @@ -366804,7 +367018,7 @@ }, { "question": "DB Energie", - "icon": "./assets/data/nsi/logos/dbenergie-d5e323.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbenergie-d5e323.svg", "osmTags": { "and": [ "power=line", @@ -366819,7 +367033,7 @@ }, { "question": "Decatur Utilities", - "icon": "./assets/data/nsi/logos/decaturutilities-ed245e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/decaturutilities-ed245e.png", "osmTags": { "and": [ "power=line", @@ -366834,7 +367048,7 @@ }, { "question": "Delmarva Power", - "icon": "./assets/data/nsi/logos/delmarvapower-dd2844.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delmarvapower-dd2844.jpg", "osmTags": { "and": [ "power=line", @@ -366849,7 +367063,7 @@ }, { "question": "DEMCO", - "icon": "./assets/data/nsi/logos/demco-f4d799.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/demco-f4d799.jpg", "osmTags": { "and": [ "power=line", @@ -366891,7 +367105,7 @@ }, { "question": "Dominion Energy", - "icon": "./assets/data/nsi/logos/dominionenergy-48be4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dominionenergy-48be4c.png", "osmTags": { "and": [ "power=line", @@ -366920,7 +367134,7 @@ }, { "question": "Dow Chemical Company", - "icon": "./assets/data/nsi/logos/dowchemicalcompany-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -366935,7 +367149,7 @@ }, { "question": "DTE Electric Company", - "icon": "./assets/data/nsi/logos/dteelectriccompany-a1df2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-a1df2e.png", "osmTags": { "and": [ "power=line", @@ -366950,7 +367164,7 @@ }, { "question": "DTE Energy", - "icon": "./assets/data/nsi/logos/dteenergy-a1df2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteenergy-a1df2e.png", "osmTags": { "and": [ "power=line", @@ -366980,7 +367194,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-6adeb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-6adeb8.jpg", "osmTags": { "and": [ "power=line", @@ -366995,7 +367209,7 @@ }, { "question": "Duke Energy Progress", - "icon": "./assets/data/nsi/logos/dukeenergyprogress-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -367010,7 +367224,7 @@ }, { "question": "Duquesne Light", - "icon": "./assets/data/nsi/logos/duquesnelight-32252f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duquesnelight-32252f.jpg", "osmTags": { "and": [ "power=line", @@ -367025,7 +367239,7 @@ }, { "question": "E-REDES", - "icon": "./assets/data/nsi/logos/eredes-4d28c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eredes-4d28c7.png", "osmTags": { "and": [ "power=line", @@ -367040,7 +367254,7 @@ }, { "question": "E.DIS Netz GmbH", - "icon": "./assets/data/nsi/logos/edisnetzgmbh-3723c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-3723c9.jpg", "osmTags": { "and": [ "power=line", @@ -367082,7 +367296,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-116894.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-116894.png", "osmTags": { "and": [ "power=line", @@ -367097,7 +367311,7 @@ }, { "question": "E.ON Mitte", - "icon": "./assets/data/nsi/logos/eonmitte-d5e323.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonmitte-d5e323.svg", "osmTags": { "and": [ "power=line", @@ -367112,7 +367326,7 @@ }, { "question": "E.ON Netz", - "icon": "./assets/data/nsi/logos/eonnetz-d5e323.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonnetz-d5e323.svg", "osmTags": { "and": [ "power=line", @@ -367127,7 +367341,7 @@ }, { "question": "E.ON Westfalen Weser", - "icon": "./assets/data/nsi/logos/eonwestfalenweser-d5e323.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonwestfalenweser-d5e323.svg", "osmTags": { "and": [ "power=line", @@ -367142,7 +367356,7 @@ }, { "question": "East Kentucky Power Cooperative", - "icon": "./assets/data/nsi/logos/eastkentuckypowercooperative-037ea9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-037ea9.jpg", "osmTags": { "and": [ "power=line", @@ -367157,7 +367371,7 @@ }, { "question": "East River Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/eastriverelectricpowercooperative-389441.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-389441.jpg", "osmTags": { "and": [ "power=line", @@ -367204,7 +367418,7 @@ }, { "question": "Edenor", - "icon": "./assets/data/nsi/logos/edenor-ba4280.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edenor-ba4280.jpg", "osmTags": { "and": [ "power=line", @@ -367237,7 +367451,7 @@ }, { "question": "EDP Espírito Santo", - "icon": "./assets/data/nsi/logos/edpespiritosanto-f914f4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-f914f4.svg", "osmTags": { "and": [ "power=line", @@ -367267,7 +367481,7 @@ }, { "question": "EDP Renováveis", - "icon": "./assets/data/nsi/logos/edprenovaveis-a40c2f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-a40c2f.svg", "osmTags": { "and": [ "power=line", @@ -367284,7 +367498,7 @@ }, { "question": "EDP São Paulo", - "icon": "./assets/data/nsi/logos/edpsaopaulo-ddc6a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-ddc6a3.jpg", "osmTags": { "and": [ "power=line", @@ -367317,7 +367531,7 @@ }, { "question": "EG.D", - "icon": "./assets/data/nsi/logos/egd-04ae3b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/egd-04ae3b.svg", "osmTags": { "and": [ "power=line", @@ -367355,7 +367569,7 @@ }, { "question": "EirGrid", - "icon": "./assets/data/nsi/logos/eirgrid-1057b0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eirgrid-1057b0.jpg", "osmTags": { "and": [ "power=line", @@ -367370,7 +367584,7 @@ }, { "question": "EKT", - "icon": "./assets/data/nsi/logos/ekt-2c2136.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekt-2c2136.jpg", "osmTags": { "and": [ "power=line", @@ -367414,7 +367628,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-116894.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-116894.png", "osmTags": { "and": [ "power=line", @@ -367460,7 +367674,7 @@ }, { "question": "Electricity North West", - "icon": "./assets/data/nsi/logos/electricitynorthwest-11f3a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-11f3a5.jpg", "osmTags": { "and": [ "power=line", @@ -367484,7 +367698,7 @@ }, { "question": "Elektrilevi", - "icon": "./assets/data/nsi/logos/elektrilevi-d57d1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrilevi-d57d1a.png", "osmTags": { "and": [ "power=line", @@ -367543,7 +367757,7 @@ }, { "question": "Elenia", - "icon": "./assets/data/nsi/logos/elenia-17e9a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elenia-17e9a7.jpg", "osmTags": { "and": [ "power=line", @@ -367558,7 +367772,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-d57d1a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-d57d1a.jpg", "osmTags": { "and": [ "power=line", @@ -367634,7 +367848,7 @@ }, { "question": "Eletropaulo", - "icon": "./assets/data/nsi/logos/eletropaulo-ddc6a3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eletropaulo-ddc6a3.svg", "osmTags": { "and": [ "power=line", @@ -367663,7 +367877,7 @@ }, { "question": "Elia", - "icon": "./assets/data/nsi/logos/elia-d02b4f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elia-d02b4f.png", "osmTags": { "and": [ "power=line", @@ -367692,7 +367906,7 @@ }, { "question": "Ellevio", - "icon": "./assets/data/nsi/logos/ellevio-dc38bb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ellevio-dc38bb.png", "osmTags": { "and": [ "power=line", @@ -367721,7 +367935,7 @@ }, { "question": "ELMŰ", - "icon": "./assets/data/nsi/logos/elmu-74d56c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elmu-74d56c.png", "osmTags": { "and": [ "power=line", @@ -367736,7 +367950,7 @@ }, { "question": "Elvia", - "icon": "./assets/data/nsi/logos/elvia-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elvia-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -367779,7 +367993,7 @@ }, { "question": "Emerald People's Utility District", - "icon": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-c9a7db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-c9a7db.png", "osmTags": { "and": [ "power=line", @@ -367813,7 +368027,7 @@ }, { "question": "Endeavour Energy", - "icon": "./assets/data/nsi/logos/endeavourenergy-67a43a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-67a43a.jpg", "osmTags": { "and": [ "power=line", @@ -367828,7 +368042,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-769454.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-769454.png", "osmTags": { "and": [ "power=line", @@ -367843,7 +368057,7 @@ }, { "question": "Enea", - "icon": "./assets/data/nsi/logos/enea-dffc4e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enea-dffc4e.png", "osmTags": { "and": [ "power=line", @@ -367858,7 +368072,7 @@ }, { "question": "Enedis", - "icon": "./assets/data/nsi/logos/enedis-34bf95.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enedis-34bf95.png", "osmTags": { "and": [ "power=line", @@ -367882,7 +368096,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-116894.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-116894.png", "osmTags": { "and": [ "power=line", @@ -367897,7 +368111,7 @@ }, { "question": "Enel Distribuição Ceará", - "icon": "./assets/data/nsi/logos/eneldistribuicaoceara-ddc6a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-ddc6a3.png", "osmTags": { "and": [ "power=line", @@ -367926,7 +368140,7 @@ }, { "question": "Enel Distribuição São Paulo", - "icon": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-ddc6a3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-ddc6a3.svg", "osmTags": { "and": [ "power=line", @@ -367941,7 +368155,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-116894.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-116894.svg", "osmTags": { "and": [ "power=line", @@ -367979,7 +368193,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-dffc4e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-dffc4e.png", "osmTags": { "and": [ "power=line", @@ -368003,7 +368217,7 @@ }, { "question": "Energex", - "icon": "./assets/data/nsi/logos/energex-189d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energex-189d90.jpg", "osmTags": { "and": [ "power=line", @@ -368018,7 +368232,7 @@ }, { "question": "Energias de Portugal", - "icon": "./assets/data/nsi/logos/energiasdeportugal-4d28c7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-4d28c7.svg", "osmTags": { "and": [ "power=line", @@ -368034,7 +368248,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-7a29cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-7a29cb.jpg", "osmTags": { "and": [ "power=line", @@ -368049,7 +368263,7 @@ }, { "question": "Énergie du Mali", - "icon": "./assets/data/nsi/logos/energiedumali-c36b76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedumali-c36b76.jpg", "osmTags": { "and": [ "power=line", @@ -368082,7 +368296,7 @@ }, { "question": "Energieversorgung Mittelrhein", - "icon": "./assets/data/nsi/logos/energieversorgungmittelrhein-dc465b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-dc465b.jpg", "osmTags": { "and": [ "power=line", @@ -368107,7 +368321,7 @@ }, { "question": "Energinet", - "icon": "./assets/data/nsi/logos/energinet-b29599.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energinet-b29599.png", "osmTags": { "and": [ "power=line", @@ -368187,7 +368401,7 @@ }, { "question": "Energy Fiji Limited", - "icon": "./assets/data/nsi/logos/energyfijilimited-64ce40.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-64ce40.png", "osmTags": { "and": [ "power=line", @@ -368226,7 +368440,7 @@ }, { "question": "Enertrag", - "icon": "./assets/data/nsi/logos/enertrag-33ce8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enertrag-33ce8b.jpg", "osmTags": { "and": [ "power=line", @@ -368255,7 +368469,7 @@ }, { "question": "Enexis", - "icon": "./assets/data/nsi/logos/enexis-754f07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enexis-754f07.png", "osmTags": { "and": [ "power=line", @@ -368270,7 +368484,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-116894.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-116894.jpg", "osmTags": { "and": [ "power=line", @@ -368299,7 +368513,7 @@ }, { "question": "ENMAX", - "icon": "./assets/data/nsi/logos/enmax-a4e32f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmax-a4e32f.png", "osmTags": { "and": [ "power=line", @@ -368314,7 +368528,7 @@ }, { "question": "Ente Provincial de Energía del Neuquén", - "icon": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-d126c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-d126c4.png", "osmTags": { "and": [ "power=line", @@ -368329,7 +368543,7 @@ }, { "question": "Entergy", - "icon": "./assets/data/nsi/logos/entergy-d6e068.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergy-d6e068.jpg", "osmTags": { "and": [ "power=line", @@ -368344,7 +368558,7 @@ }, { "question": "Entergy Arkansas", - "icon": "./assets/data/nsi/logos/entergyarkansas-527b39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-527b39.jpg", "osmTags": { "and": [ "power=line", @@ -368359,7 +368573,7 @@ }, { "question": "Entergy Louisiana", - "icon": "./assets/data/nsi/logos/entergylouisiana-c5977e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-c5977e.jpg", "osmTags": { "and": [ "power=line", @@ -368402,7 +368616,7 @@ }, { "question": "enviaM", - "icon": "./assets/data/nsi/logos/enviam-dce62c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enviam-dce62c.png", "osmTags": { "and": [ "power=line", @@ -368417,7 +368631,7 @@ }, { "question": "EPB", - "icon": "./assets/data/nsi/logos/epb-5d1a79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epb-5d1a79.jpg", "osmTags": { "and": [ "power=line", @@ -368432,7 +368646,7 @@ }, { "question": "EPCOR", - "icon": "./assets/data/nsi/logos/epcor-ec456d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epcor-ec456d.jpg", "osmTags": { "and": [ "power=line", @@ -368447,7 +368661,7 @@ }, { "question": "EPEC", - "icon": "./assets/data/nsi/logos/epec-7b93c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epec-7b93c1.jpg", "osmTags": { "and": [ "power=line", @@ -368555,7 +368769,7 @@ }, { "question": "Equatorial Energia Piauí", - "icon": "./assets/data/nsi/logos/equatorialenergiapiaui-ee8d9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-ee8d9c.jpg", "osmTags": { "and": [ "power=line", @@ -368570,7 +368784,7 @@ }, { "question": "Ergon Energy", - "icon": "./assets/data/nsi/logos/ergonenergy-189d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ergonenergy-189d90.jpg", "osmTags": { "and": [ "power=line", @@ -368585,7 +368799,7 @@ }, { "question": "ESB Networks", - "icon": "./assets/data/nsi/logos/esbnetworks-1057b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esbnetworks-1057b0.png", "osmTags": { "and": [ "power=line", @@ -368609,7 +368823,7 @@ }, { "question": "Eskom", - "icon": "./assets/data/nsi/logos/eskom-88ff58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eskom-88ff58.jpg", "osmTags": { "and": [ "power=line", @@ -368624,7 +368838,7 @@ }, { "question": "Essential Energy", - "icon": "./assets/data/nsi/logos/essentialenergy-d64094.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentialenergy-d64094.jpg", "osmTags": { "and": [ "power=line", @@ -368639,7 +368853,7 @@ }, { "question": "Eswatini Electricity Company", - "icon": "./assets/data/nsi/logos/eswatinielectricitycompany-60a7a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eswatinielectricitycompany-60a7a1.png", "osmTags": { "and": [ "power=line", @@ -368664,7 +368878,7 @@ }, { "question": "Ethiopian Electric Power", - "icon": "./assets/data/nsi/logos/ethiopianelectricpower-079142.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-079142.png", "osmTags": { "and": [ "power=line", @@ -368689,7 +368903,7 @@ }, { "question": "Eugene Water & Electric Board", - "icon": "./assets/data/nsi/logos/eugenewaterandelectricboard-c9a7db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-c9a7db.jpg", "osmTags": { "and": [ "power=line", @@ -368705,7 +368919,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-b4cc40.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-b4cc40.jpg", "osmTags": { "and": [ "frequency=60", @@ -368721,7 +368935,7 @@ }, { "question": "Eversource", - "icon": "./assets/data/nsi/logos/eversource-b15319.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eversource-b15319.png", "osmTags": { "and": [ "power=line", @@ -368750,7 +368964,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-7a29cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-7a29cb.jpg", "osmTags": { "and": [ "power=line", @@ -368765,7 +368979,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-e72a33.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-e72a33.svg", "osmTags": { "and": [ "power=line", @@ -368790,7 +369004,7 @@ }, { "question": "EVS", - "icon": "./assets/data/nsi/logos/evs-fe2846.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evs-fe2846.png", "osmTags": { "and": [ "power=line", @@ -368805,7 +369019,7 @@ }, { "question": "EWZ", - "icon": "./assets/data/nsi/logos/ewz-34ad9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewz-34ad9c.jpg", "osmTags": { "and": [ "power=line", @@ -368820,7 +369034,7 @@ }, { "question": "Fagne", - "icon": "./assets/data/nsi/logos/fagne-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fagne-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -368835,7 +369049,7 @@ }, { "question": "Fayetteville Public Works Commission", - "icon": "./assets/data/nsi/logos/fayettevillepublicworkscommission-86b821.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-86b821.jpg", "osmTags": { "and": [ "power=line", @@ -368865,7 +369079,7 @@ }, { "question": "Fingrid", - "icon": "./assets/data/nsi/logos/fingrid-17e9a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fingrid-17e9a7.jpg", "osmTags": { "and": [ "power=line", @@ -368880,7 +369094,7 @@ }, { "question": "FirstEnergy", - "icon": "./assets/data/nsi/logos/firstenergy-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstenergy-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -368895,7 +369109,7 @@ }, { "question": "Fjellnett", - "icon": "./assets/data/nsi/logos/fjellnett-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fjellnett-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -368952,7 +369166,7 @@ }, { "question": "Florida Power & Light", - "icon": "./assets/data/nsi/logos/floridapowerandlight-05df97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-05df97.png", "osmTags": { "and": [ "power=line", @@ -369004,7 +369218,7 @@ }, { "question": "FortisBC", - "icon": "./assets/data/nsi/logos/fortisbc-5611ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortisbc-5611ce.png", "osmTags": { "and": [ "power=line", @@ -369019,7 +369233,7 @@ }, { "question": "Fortum", - "icon": "./assets/data/nsi/logos/fortum-73a902.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortum-73a902.jpg", "osmTags": { "and": [ "power=line", @@ -369048,7 +369262,7 @@ }, { "question": "FS", - "icon": "./assets/data/nsi/logos/fs-b6e02f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fs-b6e02f.jpg", "osmTags": { "and": [ "power=line", @@ -369063,7 +369277,7 @@ }, { "question": "Furnas Centrais Elétricas", - "icon": "./assets/data/nsi/logos/furnascentraiseletricas-ddc6a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-ddc6a3.jpg", "osmTags": { "and": [ "power=line", @@ -369078,7 +369292,7 @@ }, { "question": "Gainesville Regional Utilities", - "icon": "./assets/data/nsi/logos/gainesvilleregionalutilities-05df97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-05df97.png", "osmTags": { "and": [ "power=line", @@ -369187,7 +369401,7 @@ }, { "question": "Glades Electric Co-Op", - "icon": "./assets/data/nsi/logos/gladeselectriccoop-05df97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-05df97.jpg", "osmTags": { "and": [ "power=line", @@ -369202,7 +369416,7 @@ }, { "question": "Glitre Nett", - "icon": "./assets/data/nsi/logos/glitrenett-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/glitrenett-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -369217,7 +369431,7 @@ }, { "question": "Golden Spread Electric Cooperative", - "icon": "./assets/data/nsi/logos/goldenspreadelectriccooperative-2d9f43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-2d9f43.jpg", "osmTags": { "and": [ "power=line", @@ -369241,7 +369455,7 @@ }, { "question": "Grand River Dam Authority", - "icon": "./assets/data/nsi/logos/grandriverdamauthority-67f39c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-67f39c.jpg", "osmTags": { "and": [ "power=line", @@ -369272,7 +369486,7 @@ }, { "question": "Greeneville Energy Authority", - "icon": "./assets/data/nsi/logos/greenevilleenergyauthority-be4a58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-be4a58.jpg", "osmTags": { "and": [ "power=line", @@ -369287,7 +369501,7 @@ }, { "question": "Greenville Utilities Commission", - "icon": "./assets/data/nsi/logos/greenvilleutilitiescommission-86b821.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-86b821.jpg", "osmTags": { "and": [ "power=line", @@ -369302,7 +369516,7 @@ }, { "question": "Groupe E", - "icon": "./assets/data/nsi/logos/groupee-34ad9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupee-34ad9c.jpg", "osmTags": { "and": [ "power=line", @@ -369376,7 +369590,7 @@ }, { "question": "Harz Energie", - "icon": "./assets/data/nsi/logos/harzenergie-d5e323.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harzenergie-d5e323.jpg", "osmTags": { "and": [ "power=line", @@ -369391,7 +369605,7 @@ }, { "question": "Haugaland Kraft Nett", - "icon": "./assets/data/nsi/logos/haugalandkraftnett-e0b869.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-e0b869.png", "osmTags": { "and": [ "power=line", @@ -369406,7 +369620,7 @@ }, { "question": "Hawaiian Electric Company", - "icon": "./assets/data/nsi/logos/hawaiianelectriccompany-a27456.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-a27456.jpg", "osmTags": { "and": [ "power=line", @@ -369494,7 +369708,7 @@ }, { "question": "Huntsville Utilities", - "icon": "./assets/data/nsi/logos/huntsvilleutilities-ed245e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-ed245e.jpg", "osmTags": { "and": [ "power=line", @@ -369509,7 +369723,7 @@ }, { "question": "Hydro Energi", - "icon": "./assets/data/nsi/logos/hydroenergi-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroenergi-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -369538,7 +369752,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-f669fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-f669fe.png", "osmTags": { "and": [ "power=line", @@ -369571,7 +369785,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-116894.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-116894.jpg", "osmTags": { "and": [ "power=line", @@ -369586,7 +369800,7 @@ }, { "question": "Idaho Power", - "icon": "./assets/data/nsi/logos/idahopower-3cf0c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahopower-3cf0c1.jpg", "osmTags": { "and": [ "power=line", @@ -369601,7 +369815,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-7a29cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-7a29cb.png", "osmTags": { "and": [ "power=line", @@ -369616,7 +369830,7 @@ }, { "question": "Imperial Irrigation District", - "icon": "./assets/data/nsi/logos/imperialirrigationdistrict-eefbc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-eefbc4.jpg", "osmTags": { "and": [ "power=line", @@ -369632,7 +369846,7 @@ }, { "question": "Independence Power & Light", - "icon": "./assets/data/nsi/logos/independencepowerandlight-f274f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-f274f2.jpg", "osmTags": { "and": [ "power=line", @@ -369647,7 +369861,7 @@ }, { "question": "Indiana Michigan Power", - "icon": "./assets/data/nsi/logos/indianamichiganpower-e5a7c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-e5a7c1.png", "osmTags": { "and": [ "power=line", @@ -369663,7 +369877,7 @@ }, { "question": "Indianapolis Power & Light", - "icon": "./assets/data/nsi/logos/indianapolispowerandlight-6d7c22.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-6d7c22.png", "osmTags": { "and": [ "power=line", @@ -369693,7 +369907,7 @@ }, { "question": "Instituto Costarricense de Electricidad", - "icon": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-afbd38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-afbd38.jpg", "osmTags": { "and": [ "power=line", @@ -369747,7 +369961,7 @@ }, { "question": "Invenergy", - "icon": "./assets/data/nsi/logos/invenergy-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invenergy-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -369762,7 +369976,7 @@ }, { "question": "IPTO", - "icon": "./assets/data/nsi/logos/ipto-8d1dd6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipto-8d1dd6.png", "osmTags": { "and": [ "power=line", @@ -369786,7 +370000,7 @@ }, { "question": "ITAIPU Binacional", - "icon": "./assets/data/nsi/logos/itaipubinacional-e91c3a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-e91c3a.svg", "osmTags": { "and": [ "power=line", @@ -369801,7 +370015,7 @@ }, { "question": "ITC", - "icon": "./assets/data/nsi/logos/itc-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itc-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -369816,7 +370030,7 @@ }, { "question": "Jackson Energy Authority", - "icon": "./assets/data/nsi/logos/jacksonenergyauthority-be4a58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-be4a58.jpg", "osmTags": { "and": [ "power=line", @@ -369831,7 +370045,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-ece18d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-ece18d.jpg", "osmTags": { "and": [ "power=line", @@ -369847,7 +370061,7 @@ }, { "question": "Jersey Central Power and Light", - "icon": "./assets/data/nsi/logos/jerseycentralpowerandlight-4409eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-4409eb.jpg", "osmTags": { "and": [ "power=line", @@ -369863,7 +370077,7 @@ }, { "question": "Joe Wheeler EMC", - "icon": "./assets/data/nsi/logos/joewheeleremc-ed245e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-ed245e.jpg", "osmTags": { "and": [ "power=line", @@ -369892,7 +370106,7 @@ }, { "question": "Jonesboro City Water and Light", - "icon": "./assets/data/nsi/logos/jonesborocitywaterandlight-527b39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-527b39.jpg", "osmTags": { "and": [ "power=line", @@ -369907,7 +370121,7 @@ }, { "question": "JR東日本", - "icon": "./assets/data/nsi/logos/eastjapanrailwaycompany-e95322.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-e95322.png", "osmTags": { "and": [ "power=line", @@ -369927,7 +370141,7 @@ }, { "question": "JR東海", - "icon": "./assets/data/nsi/logos/centraljapanrailwaycompany-e95322.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/centraljapanrailwaycompany-e95322.svg", "osmTags": { "and": [ "power=line", @@ -369970,7 +370184,7 @@ }, { "question": "Kansas City BPU", - "icon": "./assets/data/nsi/logos/kansascityboardofpublicutilities-beff6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-beff6d.png", "osmTags": { "and": [ "power=line", @@ -370010,7 +370224,7 @@ }, { "question": "KELAG", - "icon": "./assets/data/nsi/logos/kelag-7a9953.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-7a9953.jpg", "osmTags": { "and": [ "power=line", @@ -370025,7 +370239,7 @@ }, { "question": "Kentucky Power", - "icon": "./assets/data/nsi/logos/kentuckypower-ab6528.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckypower-ab6528.png", "osmTags": { "and": [ "power=line", @@ -370054,7 +370268,7 @@ }, { "question": "Kerala State Electricity Board", - "icon": "./assets/data/nsi/logos/keralastateelectricityboard-5c9c82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-5c9c82.jpg", "osmTags": { "and": [ "power=line", @@ -370098,7 +370312,7 @@ }, { "question": "Kissimmee Utility Authority", - "icon": "./assets/data/nsi/logos/kissimmeeutilityauthority-05df97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-05df97.png", "osmTags": { "and": [ "power=line", @@ -370113,7 +370327,7 @@ }, { "question": "Knoxville Utilities Board", - "icon": "./assets/data/nsi/logos/knoxvilleutilitiesboard-be4a58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-be4a58.jpg", "osmTags": { "and": [ "power=line", @@ -370157,7 +370371,7 @@ }, { "question": "Kystnett", - "icon": "./assets/data/nsi/logos/kystnett-e0b869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kystnett-e0b869.jpg", "osmTags": { "and": [ "power=line", @@ -370172,7 +370386,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-eefbc4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-eefbc4.png", "osmTags": { "and": [ "power=line", @@ -370188,7 +370402,7 @@ }, { "question": "Lafayette Utilities System", - "icon": "./assets/data/nsi/logos/lafayetteutilitiessystem-f4d799.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-f4d799.jpg", "osmTags": { "and": [ "power=line", @@ -370241,7 +370455,7 @@ }, { "question": "LCEC", - "icon": "./assets/data/nsi/logos/leecountyelectriccooperative-05df97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-05df97.jpg", "osmTags": { "and": [ "power=line", @@ -370257,7 +370471,7 @@ }, { "question": "LEAG", - "icon": "./assets/data/nsi/logos/leag-d5e323.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/leag-d5e323.svg", "osmTags": { "and": [ "power=line", @@ -370272,7 +370486,7 @@ }, { "question": "Lechwerke", - "icon": "./assets/data/nsi/logos/lechwerke-fe1279.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechwerke-fe1279.jpg", "osmTags": { "and": [ "power=line", @@ -370311,7 +370525,7 @@ }, { "question": "Liander", - "icon": "./assets/data/nsi/logos/liander-754f07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liander-754f07.png", "osmTags": { "and": [ "power=line", @@ -370373,7 +370587,7 @@ }, { "question": "Lincoln Electric System", - "icon": "./assets/data/nsi/logos/lincolnelectricsystem-fcf6da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-fcf6da.png", "osmTags": { "and": [ "power=line", @@ -370397,7 +370611,7 @@ }, { "question": "Linja", - "icon": "./assets/data/nsi/logos/linja-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/linja-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -370412,7 +370626,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-c1b8b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-c1b8b3.jpg", "osmTags": { "and": [ "power=line", @@ -370441,7 +370655,7 @@ }, { "question": "Lockhart Power Company", - "icon": "./assets/data/nsi/logos/lockhartpowercompany-ae69b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-ae69b6.png", "osmTags": { "and": [ "power=line", @@ -370493,7 +370707,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-2d9f43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-2d9f43.png", "osmTags": { "and": [ "power=line", @@ -370523,7 +370737,7 @@ }, { "question": "LSW Netz", - "icon": "./assets/data/nsi/logos/lswnetz-9e30b0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswnetz-9e30b0.png", "osmTags": { "and": [ "power=line", @@ -370538,7 +370752,7 @@ }, { "question": "Lubbock Power & Light", - "icon": "./assets/data/nsi/logos/lubbockpowerandlight-2d9f43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-2d9f43.png", "osmTags": { "and": [ "power=line", @@ -370577,7 +370791,7 @@ }, { "question": "Lyse", - "icon": "./assets/data/nsi/logos/lyse-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lyse-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -370592,7 +370806,7 @@ }, { "question": "Manitoba Hydro", - "icon": "./assets/data/nsi/logos/manitobahydro-d668c3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manitobahydro-d668c3.svg", "osmTags": { "and": [ "power=line", @@ -370644,7 +370858,7 @@ }, { "question": "Mark-E", - "icon": "./assets/data/nsi/logos/marke-fe2846.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marke-fe2846.jpg", "osmTags": { "and": [ "power=line", @@ -370659,7 +370873,7 @@ }, { "question": "Marshall Municipal Utilities", - "icon": "./assets/data/nsi/logos/marshallmunicipalutilities-16a6a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-16a6a1.jpg", "osmTags": { "and": [ "power=line", @@ -370674,7 +370888,7 @@ }, { "question": "Marshall-DeKalb Electric Cooperative", - "icon": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-ed245e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-ed245e.jpg", "osmTags": { "and": [ "power=line", @@ -370717,7 +370931,7 @@ }, { "question": "MDU", - "icon": "./assets/data/nsi/logos/mdu-955eef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mdu-955eef.jpg", "osmTags": { "and": [ "power=line", @@ -370746,7 +370960,7 @@ }, { "question": "Memphis Light, Gas and Water", - "icon": "./assets/data/nsi/logos/memphislightgasandwater-be4a58.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-be4a58.jpg", "osmTags": { "and": [ "power=line", @@ -370762,7 +370976,7 @@ }, { "question": "Meralco", - "icon": "./assets/data/nsi/logos/meralco-53cceb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meralco-53cceb.jpg", "osmTags": { "and": [ "power=line", @@ -370777,7 +370991,7 @@ }, { "question": "Met-Ed", - "icon": "./assets/data/nsi/logos/meted-32252f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meted-32252f.jpg", "osmTags": { "and": [ "power=line", @@ -370801,7 +371015,7 @@ }, { "question": "MidAmerican Energy", - "icon": "./assets/data/nsi/logos/midamericanenergy-43ace8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-43ace8.jpg", "osmTags": { "and": [ "frequency=60", @@ -370831,7 +371045,7 @@ }, { "question": "Midwest Energy", - "icon": "./assets/data/nsi/logos/midwestenergy-beff6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midwestenergy-beff6d.jpg", "osmTags": { "and": [ "power=line", @@ -370878,7 +371092,7 @@ }, { "question": "Minnesota Valley Cooperative Light & Power Association", - "icon": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-16a6a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-16a6a1.jpg", "osmTags": { "and": [ "power=line", @@ -370893,7 +371107,7 @@ }, { "question": "Minnkota Power Cooperative", - "icon": "./assets/data/nsi/logos/minnkotapowercooperative-982f8f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-982f8f.png", "osmTags": { "and": [ "power=line", @@ -370922,7 +371136,7 @@ }, { "question": "Mississippi Power", - "icon": "./assets/data/nsi/logos/mississippipower-7d3f64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippipower-7d3f64.png", "osmTags": { "and": [ "power=line", @@ -370974,7 +371188,7 @@ }, { "question": "Mon Power", - "icon": "./assets/data/nsi/logos/monpower-349cef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monpower-349cef.jpg", "osmTags": { "and": [ "power=line", @@ -371064,7 +371278,7 @@ }, { "question": "NamPower", - "icon": "./assets/data/nsi/logos/nampower-42c28a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nampower-42c28a.svg", "osmTags": { "and": [ "power=line", @@ -371079,7 +371293,7 @@ }, { "question": "Nashville Electric Service", - "icon": "./assets/data/nsi/logos/nashvilleelectricservice-be4a58.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-be4a58.png", "osmTags": { "and": [ "power=line", @@ -371095,7 +371309,7 @@ }, { "question": "National Grid", - "icon": "./assets/data/nsi/logos/nationalgrid-e4870f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgrid-e4870f.png", "osmTags": { "and": [ "power=line", @@ -371110,7 +371324,7 @@ }, { "question": "National Grid Corporation of the Philippines", - "icon": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-53cceb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-53cceb.jpg", "osmTags": { "and": [ "power=line", @@ -371126,7 +371340,7 @@ }, { "question": "National Grid Electricity Distribution", - "icon": "./assets/data/nsi/logos/nationalgridelectricitydistribution-11f3a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-11f3a5.jpg", "osmTags": { "and": [ "power=line", @@ -371141,7 +371355,7 @@ }, { "question": "National Grid Electricity Transmission", - "icon": "./assets/data/nsi/logos/nationalgridelectricitytransmission-11f3a5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-11f3a5.svg", "osmTags": { "and": [ "power=line", @@ -371156,7 +371370,7 @@ }, { "question": "NB Power", - "icon": "./assets/data/nsi/logos/nbpower-d59b81.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbpower-d59b81.svg", "osmTags": { "and": [ "power=line", @@ -371201,7 +371415,7 @@ }, { "question": "Neoenergia", - "icon": "./assets/data/nsi/logos/neoenergia-ddc6a3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoenergia-ddc6a3.svg", "osmTags": { "and": [ "power=line", @@ -371244,7 +371458,7 @@ }, { "question": "Netz NÖ", - "icon": "./assets/data/nsi/logos/netzno-7a29cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzno-7a29cb.jpg", "osmTags": { "and": [ "power=line", @@ -371273,7 +371487,7 @@ }, { "question": "Netze BW GmbH", - "icon": "./assets/data/nsi/logos/netzebwgmbh-2bcac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-2bcac7.svg", "osmTags": { "and": [ "power=line", @@ -371316,7 +371530,7 @@ }, { "question": "New York Power Authority", - "icon": "./assets/data/nsi/logos/newyorkpowerauthority-255ed7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-255ed7.jpg", "osmTags": { "and": [ "power=line", @@ -371332,7 +371546,7 @@ }, { "question": "Newfoundland and Labrador Hydro", - "icon": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-657911.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-657911.jpg", "osmTags": { "and": [ "power=line", @@ -371347,7 +371561,7 @@ }, { "question": "Newfoundland Power", - "icon": "./assets/data/nsi/logos/newfoundlandpower-657911.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-657911.png", "osmTags": { "and": [ "power=line", @@ -371362,7 +371576,7 @@ }, { "question": "NextEra Energy", - "icon": "./assets/data/nsi/logos/nexteraenergy-464507.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-464507.png", "osmTags": { "and": [ "power=line", @@ -371391,7 +371605,7 @@ }, { "question": "NIE Networks", - "icon": "./assets/data/nsi/logos/nienetworks-a6966c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nienetworks-a6966c.jpg", "osmTags": { "and": [ "power=line", @@ -371500,7 +371714,7 @@ }, { "question": "Northern Powergrid", - "icon": "./assets/data/nsi/logos/northernpowergrid-11f3a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-11f3a5.jpg", "osmTags": { "and": [ "power=line", @@ -371529,7 +371743,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-3aac48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-3aac48.jpg", "osmTags": { "and": [ "power=line", @@ -371544,7 +371758,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-5f1772.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-5f1772.jpg", "osmTags": { "and": [ "power=line", @@ -371573,7 +371787,7 @@ }, { "question": "NTE Nett", - "icon": "./assets/data/nsi/logos/ntenett-e0b869.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ntenett-e0b869.png", "osmTags": { "and": [ "power=line", @@ -371588,7 +371802,7 @@ }, { "question": "NV Energy", - "icon": "./assets/data/nsi/logos/nvenergy-0b9217.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nvenergy-0b9217.png", "osmTags": { "and": [ "power=line", @@ -371603,7 +371817,7 @@ }, { "question": "NW Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/nwelectricpowercooperative-f274f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-f274f2.jpg", "osmTags": { "and": [ "power=line", @@ -371618,7 +371832,7 @@ }, { "question": "NYSEG", - "icon": "./assets/data/nsi/logos/nyseg-255ed7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nyseg-255ed7.jpg", "osmTags": { "and": [ "power=line", @@ -371671,7 +371885,7 @@ }, { "question": "Oklahoma Gas & Electric", - "icon": "./assets/data/nsi/logos/oklahomagasandelectric-67f39c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-67f39c.jpg", "osmTags": { "and": [ "power=line", @@ -371687,7 +371901,7 @@ }, { "question": "Omaha Public Power District", - "icon": "./assets/data/nsi/logos/omahapublicpowerdistrict-fcf6da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-fcf6da.png", "osmTags": { "and": [ "power=line", @@ -371702,7 +371916,7 @@ }, { "question": "Oncor", - "icon": "./assets/data/nsi/logos/oncor-2d9f43.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oncor-2d9f43.jpg", "osmTags": { "and": [ "power=line", @@ -371740,7 +371954,7 @@ }, { "question": "Orion New Zealand", - "icon": "./assets/data/nsi/logos/orionnewzealand-737a3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-737a3a.jpg", "osmTags": { "and": [ "power=line", @@ -371755,7 +371969,7 @@ }, { "question": "Orlando Utilities Commission", - "icon": "./assets/data/nsi/logos/orlandoutilitiescommission-05df97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-05df97.jpg", "osmTags": { "and": [ "power=line", @@ -371789,7 +372003,7 @@ }, { "question": "Otter Tail Power Company", - "icon": "./assets/data/nsi/logos/ottertailpowercompany-59ff21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-59ff21.jpg", "osmTags": { "and": [ "power=line", @@ -371818,7 +372032,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-eefbc4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-eefbc4.png", "osmTags": { "and": [ "power=line", @@ -371834,7 +372048,7 @@ }, { "question": "Pacific Power", - "icon": "./assets/data/nsi/logos/pacificpower-4146e4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificpower-4146e4.svg", "osmTags": { "and": [ "power=line", @@ -371849,7 +372063,7 @@ }, { "question": "PacifiCorp", - "icon": "./assets/data/nsi/logos/pacificorp-b654b4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificorp-b654b4.svg", "osmTags": { "and": [ "power=line", @@ -371900,7 +372114,7 @@ }, { "question": "PEA", - "icon": "./assets/data/nsi/logos/pea-af4985.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pea-af4985.jpg", "osmTags": { "and": [ "power=line", @@ -371915,7 +372129,7 @@ }, { "question": "PECO", - "icon": "./assets/data/nsi/logos/peco-e7c462.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peco-e7c462.jpg", "osmTags": { "and": [ "power=line", @@ -371930,7 +372144,7 @@ }, { "question": "Peiner Träger GmbH", - "icon": "./assets/data/nsi/logos/peinertragergmbh-9e30b0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/peinertragergmbh-9e30b0.svg", "osmTags": { "and": [ "power=line", @@ -371945,7 +372159,7 @@ }, { "question": "Penelec", - "icon": "./assets/data/nsi/logos/penelec-32252f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penelec-32252f.jpg", "osmTags": { "and": [ "power=line", @@ -371975,7 +372189,7 @@ }, { "question": "Perusahaan Listrik Negara", - "icon": "./assets/data/nsi/logos/perusahaanlistriknegara-f1e749.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-f1e749.jpg", "osmTags": { "and": [ "power=line", @@ -371991,7 +372205,7 @@ }, { "question": "Petrobras", - "icon": "./assets/data/nsi/logos/petrobras-ddc6a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrobras-ddc6a3.png", "osmTags": { "and": [ "power=line", @@ -372006,7 +372220,7 @@ }, { "question": "Pfalzwerke AG", - "icon": "./assets/data/nsi/logos/pfalzwerkeag-dc465b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-dc465b.png", "osmTags": { "and": [ "power=line", @@ -372021,7 +372235,7 @@ }, { "question": "PGE Dystrybucja", - "icon": "./assets/data/nsi/logos/pgedystrybucja-dffc4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-dffc4e.jpg", "osmTags": { "and": [ "power=line", @@ -372036,7 +372250,7 @@ }, { "question": "PGE Energetyka Kolejowa", - "icon": "./assets/data/nsi/logos/pgeenergetykakolejowa-dffc4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-dffc4e.jpg", "osmTags": { "and": [ "power=line", @@ -372051,7 +372265,7 @@ }, { "question": "PJM", - "icon": "./assets/data/nsi/logos/pjm-4409eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pjm-4409eb.jpg", "osmTags": { "and": [ "power=line", @@ -372089,7 +372303,7 @@ }, { "question": "PNM", - "icon": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-07c80d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-07c80d.jpg", "osmTags": { "and": [ "power=line", @@ -372105,7 +372319,7 @@ }, { "question": "Polskie Sieci Elektroenergetyczne", - "icon": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-6ebdc3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-6ebdc3.png", "osmTags": { "and": [ "power=line", @@ -372121,7 +372335,7 @@ }, { "question": "Portland General Electric", - "icon": "./assets/data/nsi/logos/portlandgeneralelectric-c9a7db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-c9a7db.png", "osmTags": { "and": [ "power=line", @@ -372146,7 +372360,7 @@ }, { "question": "Potomac Edison", - "icon": "./assets/data/nsi/logos/potomacedison-d1354a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacedison-d1354a.jpg", "osmTags": { "and": [ "power=line", @@ -372161,7 +372375,7 @@ }, { "question": "Potomac Electric Power Company", - "icon": "./assets/data/nsi/logos/potomacelectricpowercompany-f7bab7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-f7bab7.jpg", "osmTags": { "and": [ "power=line", @@ -372177,7 +372391,7 @@ }, { "question": "Power Grid Corporation of India Ltd", - "icon": "./assets/data/nsi/logos/powergridcorporationofindialtd-5c9c82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-5c9c82.jpg", "osmTags": { "and": [ "power=line", @@ -372192,7 +372406,7 @@ }, { "question": "Powerco", - "icon": "./assets/data/nsi/logos/powerco-737a3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerco-737a3a.jpg", "osmTags": { "and": [ "power=line", @@ -372207,7 +372421,7 @@ }, { "question": "Powercor", - "icon": "./assets/data/nsi/logos/powercor-8d5e75.png", + "icon": "https://data.mapcomplete.org/nsi//logos/powercor-8d5e75.png", "osmTags": { "and": [ "power=line", @@ -372222,7 +372436,7 @@ }, { "question": "Powerlink", - "icon": "./assets/data/nsi/logos/powerlink-189d90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerlink-189d90.jpg", "osmTags": { "and": [ "power=line", @@ -372252,7 +372466,7 @@ }, { "question": "PPL", - "icon": "./assets/data/nsi/logos/ppl-91e428.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ppl-91e428.jpg", "osmTags": { "and": [ "power=line", @@ -372267,7 +372481,7 @@ }, { "question": "PRE", - "icon": "./assets/data/nsi/logos/pre-04ae3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pre-04ae3b.jpg", "osmTags": { "and": [ "power=line", @@ -372282,7 +372496,7 @@ }, { "question": "Premier Energy (Moldova)", - "icon": "./assets/data/nsi/logos/premierenergy-4f2e12.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/premierenergy-4f2e12.jpg", "osmTags": { "and": [ "power=line", @@ -372325,7 +372539,7 @@ }, { "question": "PSO", - "icon": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-bcec93.png", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-bcec93.png", "osmTags": { "and": [ "power=line", @@ -372355,7 +372569,7 @@ }, { "question": "Public Service Enterprise Group", - "icon": "./assets/data/nsi/logos/publicserviceenterprisegroup-022a9f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-022a9f.jpg", "osmTags": { "and": [ "power=line", @@ -372370,7 +372584,7 @@ }, { "question": "Puerto Rico Electric Power Authority", - "icon": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-58ac50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-58ac50.jpg", "osmTags": { "and": [ "power=line", @@ -372386,7 +372600,7 @@ }, { "question": "Puget Sound Energy", - "icon": "./assets/data/nsi/logos/pugetsoundenergy-fa4900.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-fa4900.jpg", "osmTags": { "and": [ "power=line", @@ -372402,7 +372616,7 @@ }, { "question": "Radius Elnet", - "icon": "./assets/data/nsi/logos/radiuselnet-be8c7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radiuselnet-be8c7f.jpg", "osmTags": { "and": [ "power=line", @@ -372417,7 +372631,7 @@ }, { "question": "Rappahannock Electric Cooperative", - "icon": "./assets/data/nsi/logos/rappahannockelectriccooperative-0c4694.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-0c4694.jpg", "osmTags": { "and": [ "power=line", @@ -372432,7 +372646,7 @@ }, { "question": "Red Eléctrica de España", - "icon": "./assets/data/nsi/logos/redelectricadeespana-769454.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-769454.jpg", "osmTags": { "and": [ "power=line", @@ -372457,7 +372671,7 @@ }, { "question": "Reedy Creek Improvement District", - "icon": "./assets/data/nsi/logos/reedycreekimprovementdistrict-05df97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reedycreekimprovementdistrict-05df97.jpg", "osmTags": { "and": [ "power=line", @@ -372472,7 +372686,7 @@ }, { "question": "REN", - "icon": "./assets/data/nsi/logos/ren-4d28c7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ren-4d28c7.svg", "osmTags": { "and": [ "power=line", @@ -372501,7 +372715,7 @@ }, { "question": "Resolute Forest Products", - "icon": "./assets/data/nsi/logos/resoluteforestproducts-f669fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/resoluteforestproducts-f669fe.jpg", "osmTags": { "and": [ "power=line", @@ -372516,7 +372730,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-b6e02f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-b6e02f.svg", "osmTags": { "and": [ "power=line", @@ -372531,7 +372745,7 @@ }, { "question": "Rhode Island Energy", - "icon": "./assets/data/nsi/logos/rhodeislandenergy-690b32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-690b32.jpg", "osmTags": { "and": [ "power=line", @@ -372546,7 +372760,7 @@ }, { "question": "Rio Grande Energia", - "icon": "./assets/data/nsi/logos/riograndeenergia-ddc6a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-ddc6a3.png", "osmTags": { "and": [ "power=line", @@ -372561,7 +372775,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-c4d364.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-c4d364.svg", "osmTags": { "and": [ "power=line", @@ -372585,7 +372799,7 @@ }, { "question": "Rochester Gas & Electric", - "icon": "./assets/data/nsi/logos/rochestergasandelectric-255ed7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-255ed7.jpg", "osmTags": { "and": [ "power=line", @@ -372600,7 +372814,7 @@ }, { "question": "Rocky Mountain Power", - "icon": "./assets/data/nsi/logos/rockymountainpower-5acb27.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-5acb27.svg", "osmTags": { "and": [ "power=line", @@ -372615,7 +372829,7 @@ }, { "question": "Romande Energie", - "icon": "./assets/data/nsi/logos/romandeenergie-74cefd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romandeenergie-74cefd.jpg", "osmTags": { "and": [ "power=line", @@ -372630,7 +372844,7 @@ }, { "question": "Roseville Electric", - "icon": "./assets/data/nsi/logos/rosevilleelectric-eefbc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-eefbc4.jpg", "osmTags": { "and": [ "power=line", @@ -372645,7 +372859,7 @@ }, { "question": "RTE", - "icon": "./assets/data/nsi/logos/rte-e3be4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rte-e3be4c.png", "osmTags": { "and": [ "power=line", @@ -372675,7 +372889,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-87b138.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-87b138.jpg", "osmTags": { "and": [ "power=line", @@ -372705,7 +372919,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-14962e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-14962e.png", "osmTags": { "and": [ "power=line", @@ -372720,7 +372934,7 @@ }, { "question": "Sacramento Municipal Utility District", - "icon": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-eefbc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-eefbc4.jpg", "osmTags": { "and": [ "power=line", @@ -372736,7 +372950,7 @@ }, { "question": "Sadales tīkls", - "icon": "./assets/data/nsi/logos/sadalestikls-e41140.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sadalestikls-e41140.jpg", "osmTags": { "and": [ "power=line", @@ -372751,7 +372965,7 @@ }, { "question": "Salt River Project", - "icon": "./assets/data/nsi/logos/saltriverproject-33eed2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saltriverproject-33eed2.png", "osmTags": { "and": [ "power=line", @@ -372767,7 +372981,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-38d9ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-38d9ce.jpg", "osmTags": { "and": [ "power=line", @@ -372791,7 +373005,7 @@ }, { "question": "San Diego Gas & Electric", - "icon": "./assets/data/nsi/logos/sandiegogasandelectric-3e105f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-3e105f.jpg", "osmTags": { "and": [ "power=line", @@ -372807,7 +373021,7 @@ }, { "question": "SaskPower", - "icon": "./assets/data/nsi/logos/saskpower-e7518f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saskpower-e7518f.svg", "osmTags": { "and": [ "power=line", @@ -372822,7 +373036,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-34ad9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-34ad9c.png", "osmTags": { "and": [ "power=line", @@ -372837,7 +373051,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-2d11c2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-2d11c2.svg", "osmTags": { "and": [ "power=line", @@ -372866,7 +373080,7 @@ }, { "question": "Scottish and Southern Electricity Networks (SSEN)", - "icon": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-2a61eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-2a61eb.jpg", "osmTags": { "and": [ "power=line", @@ -372891,7 +373105,7 @@ }, { "question": "Seattle City Light", - "icon": "./assets/data/nsi/logos/seattlecitylight-fa4900.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-fa4900.png", "osmTags": { "and": [ "power=line", @@ -372907,7 +373121,7 @@ }, { "question": "Seminole Electric Cooperative", - "icon": "./assets/data/nsi/logos/seminoleelectriccooperative-05df97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-05df97.jpg", "osmTags": { "and": [ "power=line", @@ -372922,7 +373136,7 @@ }, { "question": "Senelec", - "icon": "./assets/data/nsi/logos/senelec-2f9919.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senelec-2f9919.jpg", "osmTags": { "and": [ "power=line", @@ -372983,7 +373197,7 @@ }, { "question": "SIG", - "icon": "./assets/data/nsi/logos/sig-27ed5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sig-27ed5d.jpg", "osmTags": { "and": [ "power=line", @@ -373012,7 +373226,7 @@ }, { "question": "SLEMCO", - "icon": "./assets/data/nsi/logos/slemco-f4d799.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slemco-f4d799.jpg", "osmTags": { "and": [ "power=line", @@ -373027,7 +373241,7 @@ }, { "question": "Slovenská elektrizačná prenosová sústava", - "icon": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-1baa28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-1baa28.jpg", "osmTags": { "and": [ "power=line", @@ -373043,7 +373257,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-e3be4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-e3be4c.png", "osmTags": { "and": [ "power=line", @@ -373058,7 +373272,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-e3be4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-e3be4c.png", "osmTags": { "and": [ "power=line", @@ -373082,7 +373296,7 @@ }, { "question": "Societe Beninoise d'Energie Electrique", - "icon": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-b8385e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-b8385e.jpg", "osmTags": { "and": [ "power=line", @@ -373098,7 +373312,7 @@ }, { "question": "Sogn og Fjordane Energi", - "icon": "./assets/data/nsi/logos/sognogfjordaneenergi-e0b869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-e0b869.jpg", "osmTags": { "and": [ "power=line", @@ -373137,7 +373351,7 @@ }, { "question": "Southern California Edison", - "icon": "./assets/data/nsi/logos/southerncaliforniaedison-eefbc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-eefbc4.jpg", "osmTags": { "and": [ "power=line", @@ -373168,7 +373382,7 @@ }, { "question": "Southwest Arkansas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-527b39.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-527b39.jpg", "osmTags": { "and": [ "power=line", @@ -373220,7 +373434,7 @@ }, { "question": "SP Energy Networks", - "icon": "./assets/data/nsi/logos/spenergynetworks-2a61eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-2a61eb.jpg", "osmTags": { "and": [ "power=line", @@ -373249,7 +373463,7 @@ }, { "question": "Springfield Utility Board", - "icon": "./assets/data/nsi/logos/springfieldutilityboard-c9a7db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-c9a7db.jpg", "osmTags": { "and": [ "power=line", @@ -373293,7 +373507,7 @@ }, { "question": "SSEN Transmission", - "icon": "./assets/data/nsi/logos/ssentransmission-cd3045.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ssentransmission-cd3045.jpg", "osmTags": { "and": [ "power=line", @@ -373308,7 +373522,7 @@ }, { "question": "Stadtwerke Düsseldorf", - "icon": "./assets/data/nsi/logos/stadtwerkedusseldorf-fe2846.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-fe2846.jpg", "osmTags": { "and": [ "power=line", @@ -373323,7 +373537,7 @@ }, { "question": "Stadtwerke Leipzig", - "icon": "./assets/data/nsi/logos/stadtwerkeleipzig-14962e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-14962e.jpg", "osmTags": { "and": [ "power=line", @@ -373338,7 +373552,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-fe1279.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-fe1279.jpg", "osmTags": { "and": [ "power=line", @@ -373368,7 +373582,7 @@ }, { "question": "Statkraft", - "icon": "./assets/data/nsi/logos/statkraft-87b138.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statkraft-87b138.png", "osmTags": { "and": [ "power=line", @@ -373383,7 +373597,7 @@ }, { "question": "Statnett", - "icon": "./assets/data/nsi/logos/statnett-e0b869.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statnett-e0b869.png", "osmTags": { "and": [ "power=line", @@ -373398,7 +373612,7 @@ }, { "question": "Stedin", - "icon": "./assets/data/nsi/logos/stedin-754f07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stedin-754f07.png", "osmTags": { "and": [ "power=line", @@ -373480,7 +373694,7 @@ }, { "question": "Stromnetz Berlin", - "icon": "./assets/data/nsi/logos/stromnetzberlin-e98750.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-e98750.svg", "osmTags": { "and": [ "power=line", @@ -373495,7 +373709,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-840ea0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-840ea0.jpg", "osmTags": { "and": [ "power=line", @@ -373537,7 +373751,7 @@ }, { "question": "Sunflower Electric Power Corporation", - "icon": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-beff6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-beff6d.jpg", "osmTags": { "and": [ "power=line", @@ -373552,7 +373766,7 @@ }, { "question": "Süwag Energie", - "icon": "./assets/data/nsi/logos/suwagenergie-65a0b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwagenergie-65a0b6.jpg", "osmTags": { "and": [ "power=line", @@ -373567,7 +373781,7 @@ }, { "question": "Svenska Kraftnät", - "icon": "./assets/data/nsi/logos/svenskakraftnat-dc38bb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-dc38bb.png", "osmTags": { "and": [ "power=line", @@ -373582,7 +373796,7 @@ }, { "question": "SWEPCO", - "icon": "./assets/data/nsi/logos/southwesternelectricpowercompany-43998f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-43998f.jpg", "osmTags": { "and": [ "power=line", @@ -373598,7 +373812,7 @@ }, { "question": "Swissgrid", - "icon": "./assets/data/nsi/logos/swissgrid-34ad9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swissgrid-34ad9c.png", "osmTags": { "and": [ "power=line", @@ -373613,7 +373827,7 @@ }, { "question": "Sygnir", - "icon": "./assets/data/nsi/logos/sygnir-e0b869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sygnir-e0b869.jpg", "osmTags": { "and": [ "power=line", @@ -373670,7 +373884,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-dffc4e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-dffc4e.png", "osmTags": { "and": [ "power=line", @@ -373699,7 +373913,7 @@ }, { "question": "TEİAŞ", - "icon": "./assets/data/nsi/logos/teias-54dc4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teias-54dc4b.jpg", "osmTags": { "and": [ "power=line", @@ -373714,7 +373928,7 @@ }, { "question": "Tenaga Nasional", - "icon": "./assets/data/nsi/logos/tenaganasional-97fc17.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tenaganasional-97fc17.png", "osmTags": { "and": [ "power=line", @@ -373729,7 +373943,7 @@ }, { "question": "Tennessee Valley Authority", - "icon": "./assets/data/nsi/logos/tennesseevalleyauthority-b654b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-b654b4.png", "osmTags": { "and": [ "power=line", @@ -373745,7 +373959,7 @@ }, { "question": "TenneT", - "icon": "./assets/data/nsi/logos/tennet-754f07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennet-754f07.jpg", "osmTags": { "and": [ "power=line", @@ -373760,7 +373974,7 @@ }, { "question": "TenneT TSO", - "icon": "./assets/data/nsi/logos/tennettso-adf225.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennettso-adf225.jpg", "osmTags": { "and": [ "power=line", @@ -373775,7 +373989,7 @@ }, { "question": "Tensio", - "icon": "./assets/data/nsi/logos/tensio-e0b869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tensio-e0b869.jpg", "osmTags": { "and": [ "power=line", @@ -373818,7 +374032,7 @@ }, { "question": "Terna", - "icon": "./assets/data/nsi/logos/terna-7de2b1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/terna-7de2b1.png", "osmTags": { "and": [ "power=line", @@ -373842,7 +374056,7 @@ }, { "question": "Texas-New Mexico Power", - "icon": "./assets/data/nsi/logos/texasnewmexicopower-2d9f43.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-2d9f43.png", "osmTags": { "and": [ "power=line", @@ -373873,7 +374087,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-7a29cb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-7a29cb.svg", "osmTags": { "and": [ "power=line", @@ -373920,7 +374134,7 @@ }, { "question": "Transcomahue S.A.", - "icon": "./assets/data/nsi/logos/transcomahuesa-97607d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transcomahuesa-97607d.png", "osmTags": { "and": [ "power=line", @@ -373958,7 +374172,7 @@ }, { "question": "Transener", - "icon": "./assets/data/nsi/logos/transener-c85572.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transener-c85572.png", "osmTags": { "and": [ "power=line", @@ -373973,7 +374187,7 @@ }, { "question": "TransGrid", - "icon": "./assets/data/nsi/logos/transgrid-67a43a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transgrid-67a43a.png", "osmTags": { "and": [ "power=line", @@ -374002,7 +374216,7 @@ }, { "question": "Transmission Company of Nigeria", - "icon": "./assets/data/nsi/logos/transmissioncompanyofnigeria-d7a735.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-d7a735.jpg", "osmTags": { "and": [ "power=line", @@ -374054,7 +374268,7 @@ }, { "question": "TransnetBW GmbH", - "icon": "./assets/data/nsi/logos/transnetbwgmbh-2bcac7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-2bcac7.svg", "osmTags": { "and": [ "power=line", @@ -374092,7 +374306,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-67a43a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-67a43a.jpg", "osmTags": { "and": [ "power=line", @@ -374107,7 +374321,7 @@ }, { "question": "Transpower New Zealand", - "icon": "./assets/data/nsi/logos/transpowernewzealand-737a3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-737a3a.jpg", "osmTags": { "and": [ "power=line", @@ -374122,7 +374336,7 @@ }, { "question": "TREDAŞ", - "icon": "./assets/data/nsi/logos/tredas-54dc4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredas-54dc4b.jpg", "osmTags": { "and": [ "power=line", @@ -374155,7 +374369,7 @@ }, { "question": "Tucson Electric Power", - "icon": "./assets/data/nsi/logos/tucsonelectricpower-33eed2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-33eed2.jpg", "osmTags": { "and": [ "power=line", @@ -374180,7 +374394,7 @@ }, { "question": "UGI", - "icon": "./assets/data/nsi/logos/ugi-32252f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ugi-32252f.png", "osmTags": { "and": [ "power=line", @@ -374195,7 +374409,7 @@ }, { "question": "UK Power Networks", - "icon": "./assets/data/nsi/logos/ukpowernetworks-11f3a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-11f3a5.jpg", "osmTags": { "and": [ "power=line", @@ -374234,7 +374448,7 @@ }, { "question": "Uniper Kraftwerke", - "icon": "./assets/data/nsi/logos/uniperkraftwerke-d5e323.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-d5e323.png", "osmTags": { "and": [ "power=line", @@ -374249,7 +374463,7 @@ }, { "question": "United Illuminating Company", - "icon": "./assets/data/nsi/logos/unitedilluminatingcompany-f193f8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-f193f8.jpg", "osmTags": { "and": [ "power=line", @@ -374264,7 +374478,7 @@ }, { "question": "United States Steel", - "icon": "./assets/data/nsi/logos/unitedstatessteel-ed245e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-ed245e.svg", "osmTags": { "and": [ "power=line", @@ -374279,7 +374493,7 @@ }, { "question": "Unitil", - "icon": "./assets/data/nsi/logos/unitil-6459f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitil-6459f7.png", "osmTags": { "and": [ "power=line", @@ -374309,7 +374523,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-a0eb04.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-a0eb04.svg", "osmTags": { "and": [ "power=line", @@ -374324,7 +374538,7 @@ }, { "question": "Vale S.A.", - "icon": "./assets/data/nsi/logos/valesa-ddc6a3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valesa-ddc6a3.jpg", "osmTags": { "and": [ "power=line", @@ -374348,7 +374562,7 @@ }, { "question": "Vattenfall", - "icon": "./assets/data/nsi/logos/vattenfall-ccd735.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-ccd735.png", "osmTags": { "and": [ "power=line", @@ -374363,7 +374577,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-d5e323.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-d5e323.png", "osmTags": { "and": [ "power=line", @@ -374378,7 +374592,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-737a3a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-737a3a.png", "osmTags": { "and": [ "power=line", @@ -374393,7 +374607,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-7a29cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-7a29cb.jpg", "osmTags": { "and": [ "power=line", @@ -374408,7 +374622,7 @@ }, { "question": "Vermont Electric Power Company", - "icon": "./assets/data/nsi/logos/vermontelectricpowercompany-f51223.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-f51223.jpg", "osmTags": { "and": [ "power=line", @@ -374437,7 +374651,7 @@ }, { "question": "Versant Power", - "icon": "./assets/data/nsi/logos/versantpower-834cd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/versantpower-834cd5.jpg", "osmTags": { "and": [ "power=line", @@ -374466,7 +374680,7 @@ }, { "question": "Vestall", - "icon": "./assets/data/nsi/logos/vestall-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vestall-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -374481,7 +374695,7 @@ }, { "question": "Vevig", - "icon": "./assets/data/nsi/logos/vevig-e0b869.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vevig-e0b869.png", "osmTags": { "and": [ "power=line", @@ -374496,7 +374710,7 @@ }, { "question": "Viesgo Distribución Eléctrica", - "icon": "./assets/data/nsi/logos/viesgodistribucionelectrica-769454.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-769454.png", "osmTags": { "and": [ "power=line", @@ -374525,7 +374739,7 @@ }, { "question": "Visayan Electric", - "icon": "./assets/data/nsi/logos/visayanelectric-53cceb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visayanelectric-53cceb.jpg", "osmTags": { "and": [ "power=line", @@ -374540,7 +374754,7 @@ }, { "question": "Vissi", - "icon": "./assets/data/nsi/logos/vissi-e0b869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vissi-e0b869.svg", "osmTags": { "and": [ "power=line", @@ -374597,7 +374811,7 @@ }, { "question": "Východoslovenská distribučná", - "icon": "./assets/data/nsi/logos/vychodoslovenskadistribucna-1baa28.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-1baa28.png", "osmTags": { "and": [ "power=line", @@ -374613,7 +374827,7 @@ }, { "question": "Washington-St. Tammany Electric Cooperative", - "icon": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-f4d799.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-f4d799.jpg", "osmTags": { "and": [ "power=line", @@ -374637,7 +374851,7 @@ }, { "question": "WEMAG Netz GmbH", - "icon": "./assets/data/nsi/logos/wemagnetzgmbh-3723c9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wemagnetzgmbh-3723c9.png", "osmTags": { "and": [ "power=line", @@ -374675,7 +374889,7 @@ }, { "question": "West Penn Power", - "icon": "./assets/data/nsi/logos/westpennpower-67e3b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westpennpower-67e3b3.jpg", "osmTags": { "and": [ "power=line", @@ -374690,7 +374904,7 @@ }, { "question": "Western Area Power Administration", - "icon": "./assets/data/nsi/logos/westernareapoweradministration-b654b4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-b654b4.png", "osmTags": { "and": [ "power=line", @@ -374706,7 +374920,7 @@ }, { "question": "Westfalen Weser Netz", - "icon": "./assets/data/nsi/logos/westfalenwesernetz-1c69d7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfalenwesernetz-1c69d7.svg", "osmTags": { "and": [ "power=line", @@ -374722,7 +374936,7 @@ }, { "question": "Westnetz", - "icon": "./assets/data/nsi/logos/westnetz-d5e323.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westnetz-d5e323.png", "osmTags": { "and": [ "power=line", @@ -374737,7 +374951,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-7a29cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-7a29cb.jpg", "osmTags": { "and": [ "power=line", @@ -374752,7 +374966,7 @@ }, { "question": "Wiener Netze", - "icon": "./assets/data/nsi/logos/wienernetze-7a29cb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienernetze-7a29cb.png", "osmTags": { "and": [ "power=line", @@ -374804,7 +375018,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-b654b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-b654b4.jpg", "osmTags": { "and": [ "power=line", @@ -374819,7 +375033,7 @@ }, { "question": "Yacimientos de Litio Bolivianos", - "icon": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-57554f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-57554f.svg", "osmTags": { "and": [ "power=line", @@ -374834,7 +375048,7 @@ }, { "question": "ΔΕΗ", - "icon": "./assets/data/nsi/logos/788cf3-8d1dd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/788cf3-8d1dd6.jpg", "osmTags": { "and": [ "power=line", @@ -374894,7 +375108,7 @@ }, { "question": "АТ Прикарпаттяобленерго", - "icon": "./assets/data/nsi/logos/7c17ff-af3ca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7c17ff-af3ca1.jpg", "osmTags": { "and": [ "power=line", @@ -374909,7 +375123,7 @@ }, { "question": "АТ Хмельницькобленерго", - "icon": "./assets/data/nsi/logos/f36860-af3ca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/f36860-af3ca1.jpg", "osmTags": { "and": [ "power=line", @@ -374924,7 +375138,7 @@ }, { "question": "Вінницяобленерго", - "icon": "./assets/data/nsi/logos/084a1e-af3ca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/084a1e-af3ca1.jpg", "osmTags": { "and": [ "power=line", @@ -374939,7 +375153,7 @@ }, { "question": "Волиньобленерго", - "icon": "./assets/data/nsi/logos/cc48e9-af3ca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cc48e9-af3ca1.jpg", "osmTags": { "and": [ "power=line", @@ -375005,7 +375219,7 @@ }, { "question": "Запоріжжяобленерго", - "icon": "./assets/data/nsi/logos/dd2584-af3ca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dd2584-af3ca1.jpg", "osmTags": { "and": [ "power=line", @@ -375029,7 +375243,7 @@ }, { "question": "Київобленерго", - "icon": "./assets/data/nsi/logos/9e843b-af3ca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9e843b-af3ca1.jpg", "osmTags": { "and": [ "power=line", @@ -375220,7 +375434,7 @@ }, { "question": "Россети", - "icon": "./assets/data/nsi/logos/8fc412-99800a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/8fc412-99800a.png", "osmTags": { "and": [ "power=line", @@ -375235,7 +375449,7 @@ }, { "question": "Сахалинэнерго", - "icon": "./assets/data/nsi/logos/1fc076-99800a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1fc076-99800a.jpg", "osmTags": { "and": [ "power=line", @@ -375273,7 +375487,7 @@ }, { "question": "Черкасиобленерго", - "icon": "./assets/data/nsi/logos/472734-af3ca1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/472734-af3ca1.jpg", "osmTags": { "and": [ "power=line", @@ -375288,7 +375502,7 @@ }, { "question": "الشركة التونسية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/tunisiancompanyofelectricityandgas-7743c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tunisiancompanyofelectricityandgas-7743c5.jpg", "osmTags": { "and": [ "power=line", @@ -375314,7 +375528,7 @@ }, { "question": "الشركة الوطنية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/sonelgaz-1c2f9f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-1c2f9f.jpg", "osmTags": { "and": [ "power=line", @@ -375331,7 +375545,7 @@ }, { "question": "การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย", - "icon": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-af4985.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-af4985.jpg", "osmTags": { "and": [ "power=line", @@ -375390,7 +375604,7 @@ }, { "question": "中華電力有限公司 CLP Power Hong Kong Limited", - "icon": "./assets/data/nsi/logos/clppowerhongkonglimited-64f82c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-64f82c.png", "osmTags": { "and": [ "power=line", @@ -375414,7 +375628,7 @@ }, { "question": "中部電力パワーグリッド", - "icon": "./assets/data/nsi/logos/chubuelectricpowergridcompany-e95322.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-e95322.svg", "osmTags": { "and": [ "power=line", @@ -375431,7 +375645,7 @@ }, { "question": "九州電力送配電", - "icon": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-e95322.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-e95322.png", "osmTags": { "and": [ "power=line", @@ -375448,7 +375662,7 @@ }, { "question": "北海道電力ネットワーク", - "icon": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-e95322.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-e95322.png", "osmTags": { "and": [ "power=line", @@ -375482,7 +375696,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/34ba0b-4e9660.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/34ba0b-4e9660.jpg", "osmTags": { "and": [ "power=line", @@ -375547,7 +375761,7 @@ }, { "question": "東京電力パワーグリッド", - "icon": "./assets/data/nsi/logos/tepcopowergrid-e95322.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-e95322.svg", "osmTags": { "and": [ "power=line", @@ -375580,7 +375794,7 @@ }, { "question": "沖縄電力", - "icon": "./assets/data/nsi/logos/okinawaelectricpowercompany-e95322.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-e95322.jpg", "osmTags": { "and": [ "power=line", @@ -375623,7 +375837,7 @@ }, { "question": "電源開発送変電ネットワーク", - "icon": "./assets/data/nsi/logos/jpowertransmissionnetwork-e95322.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jpowertransmissionnetwork-e95322.svg", "osmTags": { "and": [ "power=line", @@ -375640,7 +375854,7 @@ }, { "question": "香港電燈有限公司 The Hongkong Electric Company, Limited", - "icon": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-64f82c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-64f82c.jpg", "osmTags": { "and": [ "power=line", @@ -375664,7 +375878,7 @@ }, { "question": "Hydro Ottawa", - "icon": "./assets/data/nsi/logos/hydroottawa-e22604.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroottawa-e22604.svg", "osmTags": { "and": [ "power=minor_line", @@ -375679,7 +375893,7 @@ }, { "question": "Toronto Hydro", - "icon": "./assets/data/nsi/logos/torontohydro-e22604.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torontohydro-e22604.jpg", "osmTags": { "and": [ "power=minor_line", @@ -375694,7 +375908,7 @@ }, { "question": "4-County Electric Power Association", - "icon": "./assets/data/nsi/logos/4countyelectricpowerassociation-311089.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/4countyelectricpowerassociation-311089.jpg", "osmTags": { "and": [ "power=minor_line", @@ -375709,7 +375923,7 @@ }, { "question": "50Hertz Transmission", - "icon": "./assets/data/nsi/logos/50hertztransmission-be6516.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-be6516.svg", "osmTags": { "and": [ "power=minor_line", @@ -375724,7 +375938,7 @@ }, { "question": "Å Energi Vannkraft", - "icon": "./assets/data/nsi/logos/aenergivannkraft-5b4abc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-5b4abc.jpg", "osmTags": { "and": [ "power=minor_line", @@ -375739,7 +375953,7 @@ }, { "question": "Adif", - "icon": "./assets/data/nsi/logos/adif-0a3cea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adif-0a3cea.jpg", "osmTags": { "and": [ "power=minor_line", @@ -375754,7 +375968,7 @@ }, { "question": "AEK", - "icon": "./assets/data/nsi/logos/aek-dc3d2f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aek-dc3d2f.jpg", "osmTags": { "and": [ "power=minor_line", @@ -375769,7 +375983,7 @@ }, { "question": "AEP Ohio", - "icon": "./assets/data/nsi/logos/aepohio-d69390.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aepohio-d69390.png", "osmTags": { "and": [ "power=minor_line", @@ -375784,7 +375998,7 @@ }, { "question": "AEP Texas", - "icon": "./assets/data/nsi/logos/aeptexas-1f3576.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aeptexas-1f3576.png", "osmTags": { "and": [ "power=minor_line", @@ -375799,7 +376013,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-b598fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-b598fb.png", "osmTags": { "and": [ "power=minor_line", @@ -375814,7 +376028,7 @@ }, { "question": "AEW", - "icon": "./assets/data/nsi/logos/aew-f9871c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aew-f9871c.png", "osmTags": { "and": [ "power=minor_line", @@ -375838,7 +376052,7 @@ }, { "question": "Agder Energi", - "icon": "./assets/data/nsi/logos/agderenergi-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agderenergi-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -375862,7 +376076,7 @@ }, { "question": "Aktiengesellschaft für Versorgungsunternehmen", - "icon": "./assets/data/nsi/logos/aktiengesellschaftfurversorgungsunternehmen-727666.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aktiengesellschaftfurversorgungsunternehmen-727666.svg", "osmTags": { "and": [ "power=minor_line", @@ -375878,7 +376092,7 @@ }, { "question": "Alabama Power", - "icon": "./assets/data/nsi/logos/alabamapower-07573a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamapower-07573a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -375907,7 +376121,7 @@ }, { "question": "Allgäuer Überlandwerk", - "icon": "./assets/data/nsi/logos/allgaueruberlandwerk-3f3e0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-3f3e0f.png", "osmTags": { "and": [ "power=minor_line", @@ -375923,7 +376137,7 @@ }, { "question": "Alliant Energy", - "icon": "./assets/data/nsi/logos/alliantenergy-8222ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alliantenergy-8222ce.png", "osmTags": { "and": [ "frequency=60", @@ -375948,7 +376162,7 @@ }, { "question": "AltaLink", - "icon": "./assets/data/nsi/logos/altalink-f0e797.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altalink-f0e797.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376009,7 +376223,7 @@ }, { "question": "Ameren", - "icon": "./assets/data/nsi/logos/ameren-8445a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameren-8445a0.png", "osmTags": { "and": [ "frequency=60", @@ -376039,7 +376253,7 @@ }, { "question": "American Electric Power", - "icon": "./assets/data/nsi/logos/americanelectricpower-8222ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-8222ce.png", "osmTags": { "and": [ "power=minor_line", @@ -376083,7 +376297,7 @@ }, { "question": "Amprion", - "icon": "./assets/data/nsi/logos/amprion-be6516.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/amprion-be6516.svg", "osmTags": { "and": [ "power=minor_line", @@ -376098,7 +376312,7 @@ }, { "question": "Amtrak", - "icon": "./assets/data/nsi/logos/amtrak-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtrak-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376113,7 +376327,7 @@ }, { "question": "Anaheim Public Utilities", - "icon": "./assets/data/nsi/logos/anaheimpublicutilities-16d513.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-16d513.png", "osmTags": { "and": [ "power=minor_line", @@ -376128,7 +376342,7 @@ }, { "question": "ANDE", - "icon": "./assets/data/nsi/logos/ande-221939.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ande-221939.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376157,7 +376371,7 @@ }, { "question": "Appalachian Power", - "icon": "./assets/data/nsi/logos/appalachianpowercompany-a249c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-a249c6.png", "osmTags": { "and": [ "power=minor_line", @@ -376195,7 +376409,7 @@ }, { "question": "Arizona Public Service", - "icon": "./assets/data/nsi/logos/arizonapublicservice-568d52.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-568d52.png", "osmTags": { "and": [ "power=minor_line", @@ -376224,7 +376438,7 @@ }, { "question": "Arkansas Valley Electric Cooperative", - "icon": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-20ede4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-20ede4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376253,7 +376467,7 @@ }, { "question": "ATCO Electric", - "icon": "./assets/data/nsi/logos/atcoelectric-7d6f54.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atcoelectric-7d6f54.svg", "osmTags": { "and": [ "power=minor_line", @@ -376268,7 +376482,7 @@ }, { "question": "ATEL", - "icon": "./assets/data/nsi/logos/atel-abd8f7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atel-abd8f7.svg", "osmTags": { "and": [ "power=minor_line", @@ -376283,7 +376497,7 @@ }, { "question": "Atlantic City Electric", - "icon": "./assets/data/nsi/logos/atlanticcityelectric-ef89a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-ef89a2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376298,7 +376512,7 @@ }, { "question": "Augstsprieguma tīkls", - "icon": "./assets/data/nsi/logos/augstspriegumatikls-a6ab81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-a6ab81.png", "osmTags": { "and": [ "power=minor_line", @@ -376313,7 +376527,7 @@ }, { "question": "Ausgrid", - "icon": "./assets/data/nsi/logos/ausgrid-efee82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausgrid-efee82.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376328,7 +376542,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-1f3576.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-1f3576.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376357,7 +376571,7 @@ }, { "question": "Avacon Netz", - "icon": "./assets/data/nsi/logos/avaconnetz-ae138d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avaconnetz-ae138d.svg", "osmTags": { "and": [ "power=minor_line", @@ -376372,7 +376586,7 @@ }, { "question": "Avista", - "icon": "./assets/data/nsi/logos/avista-30afc2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avista-30afc2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376387,7 +376601,7 @@ }, { "question": "Axpo", - "icon": "./assets/data/nsi/logos/axpo-3c6d24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axpo-3c6d24.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376411,7 +376625,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-d4ea6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-d4ea6d.jpg", "osmTags": { "and": [ "frequency=60", @@ -376450,7 +376664,7 @@ }, { "question": "Bayernwerk", - "icon": "./assets/data/nsi/logos/bayernwerk-fe9235.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayernwerk-fe9235.svg", "osmTags": { "and": [ "power=minor_line", @@ -376465,7 +376679,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-b42389.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-b42389.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376503,7 +376717,7 @@ }, { "question": "Belize Electricity Limited", - "icon": "./assets/data/nsi/logos/belizeelectricitylimited-8eb1ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-8eb1ad.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376546,7 +376760,7 @@ }, { "question": "BKK", - "icon": "./assets/data/nsi/logos/bkk-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bkk-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -376561,7 +376775,7 @@ }, { "question": "BKW", - "icon": "./assets/data/nsi/logos/bkw-ee442c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bkw-ee442c.png", "osmTags": { "and": [ "power=minor_line", @@ -376591,7 +376805,7 @@ }, { "question": "Blue Ridge Energy", - "icon": "./assets/data/nsi/logos/blueridgeenergy-183b18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-183b18.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376606,7 +376820,7 @@ }, { "question": "Bonneville Power Administration", - "icon": "./assets/data/nsi/logos/bonnevillepoweradministration-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376622,7 +376836,7 @@ }, { "question": "Bornholms Energi & Forsyning", - "icon": "./assets/data/nsi/logos/bornholmsenergiandforsyning-dd69df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-dd69df.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376680,7 +376894,7 @@ }, { "question": "BrightRidge", - "icon": "./assets/data/nsi/logos/brightridge-a20e2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightridge-a20e2a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376704,7 +376918,7 @@ }, { "question": "Bryan Texas Utilities", - "icon": "./assets/data/nsi/logos/bryantexasutilities-1f3576.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-1f3576.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376719,7 +376933,7 @@ }, { "question": "Burgenland Energie", - "icon": "./assets/data/nsi/logos/burgenlandenergieag-ac2579.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-ac2579.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376743,7 +376957,7 @@ }, { "question": "Capital Power", - "icon": "./assets/data/nsi/logos/capitalpower-3c7f2b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalpower-3c7f2b.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376772,7 +376986,7 @@ }, { "question": "Caruna", - "icon": "./assets/data/nsi/logos/caruna-4923eb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caruna-4923eb.svg", "osmTags": { "and": [ "power=minor_line", @@ -376787,7 +377001,7 @@ }, { "question": "CDEEE", - "icon": "./assets/data/nsi/logos/cdeee-6f048b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cdeee-6f048b.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376802,7 +377016,7 @@ }, { "question": "CEEE", - "icon": "./assets/data/nsi/logos/ceee-241a4c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceee-241a4c.svg", "osmTags": { "and": [ "power=minor_line", @@ -376831,7 +377045,7 @@ }, { "question": "Celesc", - "icon": "./assets/data/nsi/logos/celesc-241a4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celesc-241a4c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376855,7 +377069,7 @@ }, { "question": "Cemig", - "icon": "./assets/data/nsi/logos/cemig-241a4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cemig-241a4c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376870,7 +377084,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376899,7 +377113,7 @@ }, { "question": "Central Maine Power Company", - "icon": "./assets/data/nsi/logos/centralmainepowercompany-13240d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-13240d.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376923,7 +377137,7 @@ }, { "question": "ČEPS", - "icon": "./assets/data/nsi/logos/ceps-43d40b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceps-43d40b.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376938,7 +377152,7 @@ }, { "question": "CERN", - "icon": "./assets/data/nsi/logos/cern-db1f4d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cern-db1f4d.jpg", "osmTags": { "and": [ "power=minor_line", @@ -376962,7 +377176,7 @@ }, { "question": "Ceylon Electricity Board", - "icon": "./assets/data/nsi/logos/ceylonelectricityboard-827b69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-827b69.png", "osmTags": { "and": [ "power=minor_line", @@ -377001,7 +377215,7 @@ }, { "question": "CGE", - "icon": "./assets/data/nsi/logos/cge-68c0ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cge-68c0ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377052,7 +377266,7 @@ }, { "question": "CIPCO", - "icon": "./assets/data/nsi/logos/cipco-5ca3fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cipco-5ca3fb.jpg", "osmTags": { "and": [ "frequency=60", @@ -377068,7 +377282,7 @@ }, { "question": "City of Ames", - "icon": "./assets/data/nsi/logos/cityofames-5ca3fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofames-5ca3fb.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377083,7 +377297,7 @@ }, { "question": "City of Concord", - "icon": "./assets/data/nsi/logos/cityofconcord-183b18.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofconcord-183b18.png", "osmTags": { "and": [ "power=minor_line", @@ -377098,7 +377312,7 @@ }, { "question": "City of Elizabeth", - "icon": "./assets/data/nsi/logos/cityofelizabeth-183b18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofelizabeth-183b18.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377136,7 +377350,7 @@ }, { "question": "City of High Point", - "icon": "./assets/data/nsi/logos/cityofhighpoint-183b18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhighpoint-183b18.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377151,7 +377365,7 @@ }, { "question": "City of Lakeland", - "icon": "./assets/data/nsi/logos/cityoflakeland-1d9dd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-1d9dd1.png", "osmTags": { "and": [ "power=minor_line", @@ -377166,7 +377380,7 @@ }, { "question": "City of Lexington", - "icon": "./assets/data/nsi/logos/cityoflexington-183b18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflexington-183b18.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377181,7 +377395,7 @@ }, { "question": "City of Natchitoches", - "icon": "./assets/data/nsi/logos/cityofnatchitoches-d6d8c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnatchitoches-d6d8c4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377238,7 +377452,7 @@ }, { "question": "City of Tallahassee", - "icon": "./assets/data/nsi/logos/cityoftallahassee-1d9dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-1d9dd1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377290,7 +377504,7 @@ }, { "question": "Clark Public Utilities", - "icon": "./assets/data/nsi/logos/clarkpublicutilities-4d2784.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-4d2784.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377314,7 +377528,7 @@ }, { "question": "Clay Electric Cooperative", - "icon": "./assets/data/nsi/logos/clayelectriccooperative-1d9dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-1d9dd1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377329,7 +377543,7 @@ }, { "question": "CLECO", - "icon": "./assets/data/nsi/logos/cleco-d6d8c4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleco-d6d8c4.svg", "osmTags": { "and": [ "power=minor_line", @@ -377344,7 +377558,7 @@ }, { "question": "Cleveland Public Power", - "icon": "./assets/data/nsi/logos/clevelandpublicpower-d69390.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandpublicpower-d69390.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377413,7 +377627,7 @@ }, { "question": "CNR", - "icon": "./assets/data/nsi/logos/cnr-718125.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cnr-718125.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377428,7 +377642,7 @@ }, { "question": "Codelco Chile", - "icon": "./assets/data/nsi/logos/codelcochile-68c0ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/codelcochile-68c0ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377443,7 +377657,7 @@ }, { "question": "Coelba", - "icon": "./assets/data/nsi/logos/coelba-241a4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coelba-241a4c.png", "osmTags": { "and": [ "power=minor_line", @@ -377458,7 +377672,7 @@ }, { "question": "Colbún", - "icon": "./assets/data/nsi/logos/colbun-68c0ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colbun-68c0ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377473,7 +377687,7 @@ }, { "question": "Colorado Springs Utilities", - "icon": "./assets/data/nsi/logos/coloradospringsutilities-ff44fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-ff44fb.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377497,7 +377711,7 @@ }, { "question": "Comisión Federal de Electricidad", - "icon": "./assets/data/nsi/logos/comisionfederaldeelectricidad-a17773.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-a17773.png", "osmTags": { "and": [ "power=minor_line", @@ -377513,7 +377727,7 @@ }, { "question": "Commonwealth Edison", - "icon": "./assets/data/nsi/logos/commonwealthedison-dbfde7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-dbfde7.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377605,7 +377819,7 @@ }, { "question": "Consolidated Edison", - "icon": "./assets/data/nsi/logos/consolidatededison-451afe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consolidatededison-451afe.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377634,7 +377848,7 @@ }, { "question": "Consumers Energy", - "icon": "./assets/data/nsi/logos/consumersenergy-b0ef94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumersenergy-b0ef94.png", "osmTags": { "and": [ "power=minor_line", @@ -377663,7 +377877,7 @@ }, { "question": "Copel", - "icon": "./assets/data/nsi/logos/copel-241a4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copel-241a4c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377678,7 +377892,7 @@ }, { "question": "Corn Belt Power Cooperative", - "icon": "./assets/data/nsi/logos/cornbeltpowercooperative-5ca3fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-5ca3fb.jpg", "osmTags": { "and": [ "frequency=60", @@ -377694,7 +377908,7 @@ }, { "question": "Corpoelec", - "icon": "./assets/data/nsi/logos/corpoelec-4f3615.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpoelec-4f3615.png", "osmTags": { "and": [ "power=minor_line", @@ -377709,7 +377923,7 @@ }, { "question": "Cosern", - "icon": "./assets/data/nsi/logos/cosern-241a4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cosern-241a4c.png", "osmTags": { "and": [ "power=minor_line", @@ -377724,7 +377938,7 @@ }, { "question": "Counties Energy", - "icon": "./assets/data/nsi/logos/countiesenergy-43abd4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countiesenergy-43abd4.png", "osmTags": { "and": [ "power=minor_line", @@ -377748,7 +377962,7 @@ }, { "question": "CPFL Energia", - "icon": "./assets/data/nsi/logos/cpflenergia-241a4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cpflenergia-241a4c.png", "osmTags": { "and": [ "power=minor_line", @@ -377772,7 +377986,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-1f3576.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-1f3576.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377824,7 +378038,7 @@ }, { "question": "Cullman Electric Cooperative", - "icon": "./assets/data/nsi/logos/cullmanelectriccooperative-07573a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-07573a.png", "osmTags": { "and": [ "power=minor_line", @@ -377839,7 +378053,7 @@ }, { "question": "Dairyland Power Cooperative", - "icon": "./assets/data/nsi/logos/dairylandpowercooperative-401a30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-401a30.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377881,7 +378095,7 @@ }, { "question": "Dayton Power & Light", - "icon": "./assets/data/nsi/logos/daytonpowerandlight-d69390.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daytonpowerandlight-d69390.png", "osmTags": { "and": [ "power=minor_line", @@ -377897,7 +378111,7 @@ }, { "question": "DB Energie", - "icon": "./assets/data/nsi/logos/dbenergie-be6516.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbenergie-be6516.svg", "osmTags": { "and": [ "power=minor_line", @@ -377912,7 +378126,7 @@ }, { "question": "Decatur Utilities", - "icon": "./assets/data/nsi/logos/decaturutilities-07573a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/decaturutilities-07573a.png", "osmTags": { "and": [ "power=minor_line", @@ -377927,7 +378141,7 @@ }, { "question": "Delmarva Power", - "icon": "./assets/data/nsi/logos/delmarvapower-4fc575.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delmarvapower-4fc575.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377942,7 +378156,7 @@ }, { "question": "DEMCO", - "icon": "./assets/data/nsi/logos/demco-d6d8c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/demco-d6d8c4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -377984,7 +378198,7 @@ }, { "question": "Dominion Energy", - "icon": "./assets/data/nsi/logos/dominionenergy-fe3dff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dominionenergy-fe3dff.png", "osmTags": { "and": [ "power=minor_line", @@ -378013,7 +378227,7 @@ }, { "question": "Dow Chemical Company", - "icon": "./assets/data/nsi/logos/dowchemicalcompany-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378028,7 +378242,7 @@ }, { "question": "DTE Electric Company", - "icon": "./assets/data/nsi/logos/dteelectriccompany-b0ef94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-b0ef94.png", "osmTags": { "and": [ "power=minor_line", @@ -378043,7 +378257,7 @@ }, { "question": "DTE Energy", - "icon": "./assets/data/nsi/logos/dteenergy-b0ef94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteenergy-b0ef94.png", "osmTags": { "and": [ "power=minor_line", @@ -378073,7 +378287,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-a55424.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-a55424.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378088,7 +378302,7 @@ }, { "question": "Duke Energy Progress", - "icon": "./assets/data/nsi/logos/dukeenergyprogress-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378103,7 +378317,7 @@ }, { "question": "Duquesne Light", - "icon": "./assets/data/nsi/logos/duquesnelight-cdf661.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duquesnelight-cdf661.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378118,7 +378332,7 @@ }, { "question": "E-REDES", - "icon": "./assets/data/nsi/logos/eredes-a8586b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eredes-a8586b.png", "osmTags": { "and": [ "power=minor_line", @@ -378133,7 +378347,7 @@ }, { "question": "E.DIS Netz GmbH", - "icon": "./assets/data/nsi/logos/edisnetzgmbh-7fac1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-7fac1b.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378175,7 +378389,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-060465.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-060465.png", "osmTags": { "and": [ "power=minor_line", @@ -378190,7 +378404,7 @@ }, { "question": "E.ON Mitte", - "icon": "./assets/data/nsi/logos/eonmitte-be6516.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonmitte-be6516.svg", "osmTags": { "and": [ "power=minor_line", @@ -378205,7 +378419,7 @@ }, { "question": "E.ON Netz", - "icon": "./assets/data/nsi/logos/eonnetz-be6516.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonnetz-be6516.svg", "osmTags": { "and": [ "power=minor_line", @@ -378220,7 +378434,7 @@ }, { "question": "E.ON Westfalen Weser", - "icon": "./assets/data/nsi/logos/eonwestfalenweser-be6516.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonwestfalenweser-be6516.svg", "osmTags": { "and": [ "power=minor_line", @@ -378235,7 +378449,7 @@ }, { "question": "East Kentucky Power Cooperative", - "icon": "./assets/data/nsi/logos/eastkentuckypowercooperative-ca375a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-ca375a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378250,7 +378464,7 @@ }, { "question": "East River Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/eastriverelectricpowercooperative-0861a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-0861a1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378297,7 +378511,7 @@ }, { "question": "Edenor", - "icon": "./assets/data/nsi/logos/edenor-85438f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edenor-85438f.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378330,7 +378544,7 @@ }, { "question": "EDP Espírito Santo", - "icon": "./assets/data/nsi/logos/edpespiritosanto-06c212.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-06c212.svg", "osmTags": { "and": [ "power=minor_line", @@ -378360,7 +378574,7 @@ }, { "question": "EDP Renováveis", - "icon": "./assets/data/nsi/logos/edprenovaveis-8b66af.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-8b66af.svg", "osmTags": { "and": [ "power=minor_line", @@ -378377,7 +378591,7 @@ }, { "question": "EDP São Paulo", - "icon": "./assets/data/nsi/logos/edpsaopaulo-241a4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-241a4c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378410,7 +378624,7 @@ }, { "question": "EG.D", - "icon": "./assets/data/nsi/logos/egd-9e3254.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/egd-9e3254.svg", "osmTags": { "and": [ "power=minor_line", @@ -378448,7 +378662,7 @@ }, { "question": "EirGrid", - "icon": "./assets/data/nsi/logos/eirgrid-9084ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eirgrid-9084ae.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378463,7 +378677,7 @@ }, { "question": "EKT", - "icon": "./assets/data/nsi/logos/ekt-46d8da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekt-46d8da.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378507,7 +378721,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-060465.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-060465.png", "osmTags": { "and": [ "power=minor_line", @@ -378553,7 +378767,7 @@ }, { "question": "Electricity North West", - "icon": "./assets/data/nsi/logos/electricitynorthwest-73f066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-73f066.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378577,7 +378791,7 @@ }, { "question": "Elektrilevi", - "icon": "./assets/data/nsi/logos/elektrilevi-9b4ddf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrilevi-9b4ddf.png", "osmTags": { "and": [ "power=minor_line", @@ -378636,7 +378850,7 @@ }, { "question": "Elenia", - "icon": "./assets/data/nsi/logos/elenia-4923eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elenia-4923eb.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378651,7 +378865,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-9b4ddf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-9b4ddf.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378727,7 +378941,7 @@ }, { "question": "Eletropaulo", - "icon": "./assets/data/nsi/logos/eletropaulo-241a4c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eletropaulo-241a4c.svg", "osmTags": { "and": [ "power=minor_line", @@ -378756,7 +378970,7 @@ }, { "question": "Elia", - "icon": "./assets/data/nsi/logos/elia-683ab7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elia-683ab7.png", "osmTags": { "and": [ "power=minor_line", @@ -378785,7 +378999,7 @@ }, { "question": "Ellevio", - "icon": "./assets/data/nsi/logos/ellevio-da7f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ellevio-da7f1f.png", "osmTags": { "and": [ "power=minor_line", @@ -378814,7 +379028,7 @@ }, { "question": "ELMŰ", - "icon": "./assets/data/nsi/logos/elmu-b8e692.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elmu-b8e692.png", "osmTags": { "and": [ "power=minor_line", @@ -378829,7 +379043,7 @@ }, { "question": "Elvia", - "icon": "./assets/data/nsi/logos/elvia-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elvia-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -378872,7 +379086,7 @@ }, { "question": "Emerald People's Utility District", - "icon": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-6a73f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-6a73f0.png", "osmTags": { "and": [ "power=minor_line", @@ -378906,7 +379120,7 @@ }, { "question": "Endeavour Energy", - "icon": "./assets/data/nsi/logos/endeavourenergy-efee82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-efee82.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378921,7 +379135,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-0a3cea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-0a3cea.jpg", "osmTags": { "and": [ "power=minor_line", @@ -378936,7 +379150,7 @@ }, { "question": "Enea", - "icon": "./assets/data/nsi/logos/enea-8d0004.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enea-8d0004.png", "osmTags": { "and": [ "power=minor_line", @@ -378951,7 +379165,7 @@ }, { "question": "Enedis", - "icon": "./assets/data/nsi/logos/enedis-46f9bb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enedis-46f9bb.png", "osmTags": { "and": [ "power=minor_line", @@ -378975,7 +379189,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-060465.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-060465.png", "osmTags": { "and": [ "power=minor_line", @@ -378990,7 +379204,7 @@ }, { "question": "Enel Distribuição Ceará", - "icon": "./assets/data/nsi/logos/eneldistribuicaoceara-241a4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-241a4c.png", "osmTags": { "and": [ "power=minor_line", @@ -379019,7 +379233,7 @@ }, { "question": "Enel Distribuição São Paulo", - "icon": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-241a4c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-241a4c.svg", "osmTags": { "and": [ "power=minor_line", @@ -379034,7 +379248,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-060465.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-060465.svg", "osmTags": { "and": [ "power=minor_line", @@ -379072,7 +379286,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-8d0004.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-8d0004.png", "osmTags": { "and": [ "power=minor_line", @@ -379096,7 +379310,7 @@ }, { "question": "Energex", - "icon": "./assets/data/nsi/logos/energex-069ec2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energex-069ec2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379111,7 +379325,7 @@ }, { "question": "Energias de Portugal", - "icon": "./assets/data/nsi/logos/energiasdeportugal-a8586b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-a8586b.svg", "osmTags": { "and": [ "power=minor_line", @@ -379127,7 +379341,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-877aa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-877aa7.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379142,7 +379356,7 @@ }, { "question": "Énergie du Mali", - "icon": "./assets/data/nsi/logos/energiedumali-ff520c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedumali-ff520c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379175,7 +379389,7 @@ }, { "question": "Energieversorgung Mittelrhein", - "icon": "./assets/data/nsi/logos/energieversorgungmittelrhein-b8409d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-b8409d.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379200,7 +379414,7 @@ }, { "question": "Energinet", - "icon": "./assets/data/nsi/logos/energinet-dd0e35.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energinet-dd0e35.png", "osmTags": { "and": [ "power=minor_line", @@ -379280,7 +379494,7 @@ }, { "question": "Energy Fiji Limited", - "icon": "./assets/data/nsi/logos/energyfijilimited-bff915.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-bff915.png", "osmTags": { "and": [ "power=minor_line", @@ -379319,7 +379533,7 @@ }, { "question": "Enertrag", - "icon": "./assets/data/nsi/logos/enertrag-b3beb3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enertrag-b3beb3.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379348,7 +379562,7 @@ }, { "question": "Enexis", - "icon": "./assets/data/nsi/logos/enexis-bd8f8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enexis-bd8f8a.png", "osmTags": { "and": [ "power=minor_line", @@ -379363,7 +379577,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-060465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-060465.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379392,7 +379606,7 @@ }, { "question": "ENMAX", - "icon": "./assets/data/nsi/logos/enmax-f0e797.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmax-f0e797.png", "osmTags": { "and": [ "power=minor_line", @@ -379407,7 +379621,7 @@ }, { "question": "Ente Provincial de Energía del Neuquén", - "icon": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-1a9781.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-1a9781.png", "osmTags": { "and": [ "power=minor_line", @@ -379422,7 +379636,7 @@ }, { "question": "Entergy", - "icon": "./assets/data/nsi/logos/entergy-af2ebc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergy-af2ebc.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379437,7 +379651,7 @@ }, { "question": "Entergy Arkansas", - "icon": "./assets/data/nsi/logos/entergyarkansas-20ede4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-20ede4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379452,7 +379666,7 @@ }, { "question": "Entergy Louisiana", - "icon": "./assets/data/nsi/logos/entergylouisiana-03a962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-03a962.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379495,7 +379709,7 @@ }, { "question": "enviaM", - "icon": "./assets/data/nsi/logos/enviam-5c072b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enviam-5c072b.png", "osmTags": { "and": [ "power=minor_line", @@ -379510,7 +379724,7 @@ }, { "question": "EPB", - "icon": "./assets/data/nsi/logos/epb-ae956a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epb-ae956a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379525,7 +379739,7 @@ }, { "question": "EPCOR", - "icon": "./assets/data/nsi/logos/epcor-dda2f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epcor-dda2f7.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379540,7 +379754,7 @@ }, { "question": "EPEC", - "icon": "./assets/data/nsi/logos/epec-d14905.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epec-d14905.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379648,7 +379862,7 @@ }, { "question": "Equatorial Energia Piauí", - "icon": "./assets/data/nsi/logos/equatorialenergiapiaui-daa104.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-daa104.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379663,7 +379877,7 @@ }, { "question": "Ergon Energy", - "icon": "./assets/data/nsi/logos/ergonenergy-069ec2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ergonenergy-069ec2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379678,7 +379892,7 @@ }, { "question": "ESB Networks", - "icon": "./assets/data/nsi/logos/esbnetworks-9084ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esbnetworks-9084ae.png", "osmTags": { "and": [ "power=minor_line", @@ -379702,7 +379916,7 @@ }, { "question": "Eskom", - "icon": "./assets/data/nsi/logos/eskom-238b2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eskom-238b2e.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379717,7 +379931,7 @@ }, { "question": "Essential Energy", - "icon": "./assets/data/nsi/logos/essentialenergy-ac7d4f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentialenergy-ac7d4f.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379732,7 +379946,7 @@ }, { "question": "Eswatini Electricity Company", - "icon": "./assets/data/nsi/logos/eswatinielectricitycompany-45a461.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eswatinielectricitycompany-45a461.png", "osmTags": { "and": [ "power=minor_line", @@ -379757,7 +379971,7 @@ }, { "question": "Ethiopian Electric Power", - "icon": "./assets/data/nsi/logos/ethiopianelectricpower-02869f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-02869f.png", "osmTags": { "and": [ "power=minor_line", @@ -379782,7 +379996,7 @@ }, { "question": "Eugene Water & Electric Board", - "icon": "./assets/data/nsi/logos/eugenewaterandelectricboard-6a73f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-6a73f0.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379798,7 +380012,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-a8490b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-a8490b.jpg", "osmTags": { "and": [ "frequency=60", @@ -379814,7 +380028,7 @@ }, { "question": "Eversource", - "icon": "./assets/data/nsi/logos/eversource-fa80fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eversource-fa80fd.png", "osmTags": { "and": [ "power=minor_line", @@ -379843,7 +380057,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-877aa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-877aa7.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379858,7 +380072,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-45575f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-45575f.svg", "osmTags": { "and": [ "power=minor_line", @@ -379883,7 +380097,7 @@ }, { "question": "EVS", - "icon": "./assets/data/nsi/logos/evs-727666.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evs-727666.png", "osmTags": { "and": [ "power=minor_line", @@ -379898,7 +380112,7 @@ }, { "question": "EWZ", - "icon": "./assets/data/nsi/logos/ewz-ee442c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewz-ee442c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379913,7 +380127,7 @@ }, { "question": "Fagne", - "icon": "./assets/data/nsi/logos/fagne-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fagne-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -379928,7 +380142,7 @@ }, { "question": "Fayetteville Public Works Commission", - "icon": "./assets/data/nsi/logos/fayettevillepublicworkscommission-183b18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-183b18.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379958,7 +380172,7 @@ }, { "question": "Fingrid", - "icon": "./assets/data/nsi/logos/fingrid-4923eb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fingrid-4923eb.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379973,7 +380187,7 @@ }, { "question": "FirstEnergy", - "icon": "./assets/data/nsi/logos/firstenergy-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstenergy-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -379988,7 +380202,7 @@ }, { "question": "Fjellnett", - "icon": "./assets/data/nsi/logos/fjellnett-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fjellnett-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -380045,7 +380259,7 @@ }, { "question": "Florida Power & Light", - "icon": "./assets/data/nsi/logos/floridapowerandlight-1d9dd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-1d9dd1.png", "osmTags": { "and": [ "power=minor_line", @@ -380097,7 +380311,7 @@ }, { "question": "FortisBC", - "icon": "./assets/data/nsi/logos/fortisbc-b42389.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortisbc-b42389.png", "osmTags": { "and": [ "power=minor_line", @@ -380112,7 +380326,7 @@ }, { "question": "Fortum", - "icon": "./assets/data/nsi/logos/fortum-21296c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortum-21296c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380141,7 +380355,7 @@ }, { "question": "FS", - "icon": "./assets/data/nsi/logos/fs-c74937.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fs-c74937.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380156,7 +380370,7 @@ }, { "question": "Furnas Centrais Elétricas", - "icon": "./assets/data/nsi/logos/furnascentraiseletricas-241a4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-241a4c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380171,7 +380385,7 @@ }, { "question": "Gainesville Regional Utilities", - "icon": "./assets/data/nsi/logos/gainesvilleregionalutilities-1d9dd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-1d9dd1.png", "osmTags": { "and": [ "power=minor_line", @@ -380280,7 +380494,7 @@ }, { "question": "Glades Electric Co-Op", - "icon": "./assets/data/nsi/logos/gladeselectriccoop-1d9dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-1d9dd1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380295,7 +380509,7 @@ }, { "question": "Glitre Nett", - "icon": "./assets/data/nsi/logos/glitrenett-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/glitrenett-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -380310,7 +380524,7 @@ }, { "question": "Golden Spread Electric Cooperative", - "icon": "./assets/data/nsi/logos/goldenspreadelectriccooperative-1f3576.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-1f3576.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380334,7 +380548,7 @@ }, { "question": "Grand River Dam Authority", - "icon": "./assets/data/nsi/logos/grandriverdamauthority-cdec2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-cdec2d.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380365,7 +380579,7 @@ }, { "question": "Greeneville Energy Authority", - "icon": "./assets/data/nsi/logos/greenevilleenergyauthority-a20e2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-a20e2a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380380,7 +380594,7 @@ }, { "question": "Greenville Utilities Commission", - "icon": "./assets/data/nsi/logos/greenvilleutilitiescommission-183b18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-183b18.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380395,7 +380609,7 @@ }, { "question": "Groupe E", - "icon": "./assets/data/nsi/logos/groupee-ee442c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupee-ee442c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380469,7 +380683,7 @@ }, { "question": "Harz Energie", - "icon": "./assets/data/nsi/logos/harzenergie-be6516.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harzenergie-be6516.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380484,7 +380698,7 @@ }, { "question": "Haugaland Kraft Nett", - "icon": "./assets/data/nsi/logos/haugalandkraftnett-5b4abc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-5b4abc.png", "osmTags": { "and": [ "power=minor_line", @@ -380499,7 +380713,7 @@ }, { "question": "Hawaiian Electric Company", - "icon": "./assets/data/nsi/logos/hawaiianelectriccompany-6e2dd9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-6e2dd9.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380587,7 +380801,7 @@ }, { "question": "Huntsville Utilities", - "icon": "./assets/data/nsi/logos/huntsvilleutilities-07573a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-07573a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380602,7 +380816,7 @@ }, { "question": "Hydro Energi", - "icon": "./assets/data/nsi/logos/hydroenergi-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroenergi-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -380631,7 +380845,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-8a4c04.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-8a4c04.png", "osmTags": { "and": [ "power=minor_line", @@ -380664,7 +380878,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-060465.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-060465.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380679,7 +380893,7 @@ }, { "question": "Idaho Power", - "icon": "./assets/data/nsi/logos/idahopower-2b3157.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahopower-2b3157.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380694,7 +380908,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-877aa7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-877aa7.png", "osmTags": { "and": [ "power=minor_line", @@ -380709,7 +380923,7 @@ }, { "question": "Imperial Irrigation District", - "icon": "./assets/data/nsi/logos/imperialirrigationdistrict-16d513.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-16d513.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380725,7 +380939,7 @@ }, { "question": "Independence Power & Light", - "icon": "./assets/data/nsi/logos/independencepowerandlight-50b8fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-50b8fb.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380740,7 +380954,7 @@ }, { "question": "Indiana Michigan Power", - "icon": "./assets/data/nsi/logos/indianamichiganpower-0bc4c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-0bc4c7.png", "osmTags": { "and": [ "power=minor_line", @@ -380756,7 +380970,7 @@ }, { "question": "Indianapolis Power & Light", - "icon": "./assets/data/nsi/logos/indianapolispowerandlight-4b415d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-4b415d.png", "osmTags": { "and": [ "power=minor_line", @@ -380786,7 +381000,7 @@ }, { "question": "Instituto Costarricense de Electricidad", - "icon": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-c6799e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-c6799e.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380840,7 +381054,7 @@ }, { "question": "Invenergy", - "icon": "./assets/data/nsi/logos/invenergy-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invenergy-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380855,7 +381069,7 @@ }, { "question": "IPTO", - "icon": "./assets/data/nsi/logos/ipto-693934.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipto-693934.png", "osmTags": { "and": [ "power=minor_line", @@ -380879,7 +381093,7 @@ }, { "question": "ITAIPU Binacional", - "icon": "./assets/data/nsi/logos/itaipubinacional-a71f9d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-a71f9d.svg", "osmTags": { "and": [ "power=minor_line", @@ -380894,7 +381108,7 @@ }, { "question": "ITC", - "icon": "./assets/data/nsi/logos/itc-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itc-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380909,7 +381123,7 @@ }, { "question": "Jackson Energy Authority", - "icon": "./assets/data/nsi/logos/jacksonenergyauthority-a20e2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-a20e2a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380924,7 +381138,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-f01c27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-f01c27.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380940,7 +381154,7 @@ }, { "question": "Jersey Central Power and Light", - "icon": "./assets/data/nsi/logos/jerseycentralpowerandlight-10d01e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-10d01e.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380956,7 +381170,7 @@ }, { "question": "Joe Wheeler EMC", - "icon": "./assets/data/nsi/logos/joewheeleremc-07573a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-07573a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -380985,7 +381199,7 @@ }, { "question": "Jonesboro City Water and Light", - "icon": "./assets/data/nsi/logos/jonesborocitywaterandlight-20ede4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-20ede4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381000,7 +381214,7 @@ }, { "question": "JR東日本", - "icon": "./assets/data/nsi/logos/eastjapanrailwaycompany-89f10b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-89f10b.png", "osmTags": { "and": [ "power=minor_line", @@ -381020,7 +381234,7 @@ }, { "question": "JR東海", - "icon": "./assets/data/nsi/logos/centraljapanrailwaycompany-89f10b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/centraljapanrailwaycompany-89f10b.svg", "osmTags": { "and": [ "power=minor_line", @@ -381063,7 +381277,7 @@ }, { "question": "Kansas City BPU", - "icon": "./assets/data/nsi/logos/kansascityboardofpublicutilities-4c7c55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-4c7c55.png", "osmTags": { "and": [ "power=minor_line", @@ -381103,7 +381317,7 @@ }, { "question": "KELAG", - "icon": "./assets/data/nsi/logos/kelag-f6794e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-f6794e.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381118,7 +381332,7 @@ }, { "question": "Kentucky Power", - "icon": "./assets/data/nsi/logos/kentuckypower-cc20a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckypower-cc20a8.png", "osmTags": { "and": [ "power=minor_line", @@ -381147,7 +381361,7 @@ }, { "question": "Kerala State Electricity Board", - "icon": "./assets/data/nsi/logos/keralastateelectricityboard-0db0d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-0db0d2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381191,7 +381405,7 @@ }, { "question": "Kissimmee Utility Authority", - "icon": "./assets/data/nsi/logos/kissimmeeutilityauthority-1d9dd1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-1d9dd1.png", "osmTags": { "and": [ "power=minor_line", @@ -381206,7 +381420,7 @@ }, { "question": "Knoxville Utilities Board", - "icon": "./assets/data/nsi/logos/knoxvilleutilitiesboard-a20e2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-a20e2a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381250,7 +381464,7 @@ }, { "question": "Kystnett", - "icon": "./assets/data/nsi/logos/kystnett-5b4abc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kystnett-5b4abc.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381265,7 +381479,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-16d513.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-16d513.png", "osmTags": { "and": [ "power=minor_line", @@ -381281,7 +381495,7 @@ }, { "question": "Lafayette Utilities System", - "icon": "./assets/data/nsi/logos/lafayetteutilitiessystem-d6d8c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-d6d8c4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381334,7 +381548,7 @@ }, { "question": "LCEC", - "icon": "./assets/data/nsi/logos/leecountyelectriccooperative-1d9dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-1d9dd1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381350,7 +381564,7 @@ }, { "question": "LEAG", - "icon": "./assets/data/nsi/logos/leag-be6516.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/leag-be6516.svg", "osmTags": { "and": [ "power=minor_line", @@ -381365,7 +381579,7 @@ }, { "question": "Lechwerke", - "icon": "./assets/data/nsi/logos/lechwerke-fe9235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechwerke-fe9235.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381404,7 +381618,7 @@ }, { "question": "Liander", - "icon": "./assets/data/nsi/logos/liander-bd8f8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liander-bd8f8a.png", "osmTags": { "and": [ "power=minor_line", @@ -381466,7 +381680,7 @@ }, { "question": "Lincoln Electric System", - "icon": "./assets/data/nsi/logos/lincolnelectricsystem-84a479.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-84a479.png", "osmTags": { "and": [ "power=minor_line", @@ -381490,7 +381704,7 @@ }, { "question": "Linja", - "icon": "./assets/data/nsi/logos/linja-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/linja-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -381505,7 +381719,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-c2c254.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-c2c254.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381534,7 +381748,7 @@ }, { "question": "Lockhart Power Company", - "icon": "./assets/data/nsi/logos/lockhartpowercompany-cbaa6f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-cbaa6f.png", "osmTags": { "and": [ "power=minor_line", @@ -381586,7 +381800,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-1f3576.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-1f3576.png", "osmTags": { "and": [ "power=minor_line", @@ -381616,7 +381830,7 @@ }, { "question": "LSW Netz", - "icon": "./assets/data/nsi/logos/lswnetz-fcdf17.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswnetz-fcdf17.png", "osmTags": { "and": [ "power=minor_line", @@ -381631,7 +381845,7 @@ }, { "question": "Lubbock Power & Light", - "icon": "./assets/data/nsi/logos/lubbockpowerandlight-1f3576.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-1f3576.png", "osmTags": { "and": [ "power=minor_line", @@ -381670,7 +381884,7 @@ }, { "question": "Lyse", - "icon": "./assets/data/nsi/logos/lyse-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lyse-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -381685,7 +381899,7 @@ }, { "question": "Manitoba Hydro", - "icon": "./assets/data/nsi/logos/manitobahydro-1ab7f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manitobahydro-1ab7f3.svg", "osmTags": { "and": [ "power=minor_line", @@ -381737,7 +381951,7 @@ }, { "question": "Mark-E", - "icon": "./assets/data/nsi/logos/marke-727666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marke-727666.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381752,7 +381966,7 @@ }, { "question": "Marshall Municipal Utilities", - "icon": "./assets/data/nsi/logos/marshallmunicipalutilities-7acf5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-7acf5a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381767,7 +381981,7 @@ }, { "question": "Marshall-DeKalb Electric Cooperative", - "icon": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-07573a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-07573a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381810,7 +382024,7 @@ }, { "question": "MDU", - "icon": "./assets/data/nsi/logos/mdu-487d89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mdu-487d89.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381839,7 +382053,7 @@ }, { "question": "Memphis Light, Gas and Water", - "icon": "./assets/data/nsi/logos/memphislightgasandwater-a20e2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-a20e2a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381855,7 +382069,7 @@ }, { "question": "Meralco", - "icon": "./assets/data/nsi/logos/meralco-da5cb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meralco-da5cb0.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381870,7 +382084,7 @@ }, { "question": "Met-Ed", - "icon": "./assets/data/nsi/logos/meted-cdf661.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meted-cdf661.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381894,7 +382108,7 @@ }, { "question": "MidAmerican Energy", - "icon": "./assets/data/nsi/logos/midamericanenergy-2f7812.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-2f7812.jpg", "osmTags": { "and": [ "frequency=60", @@ -381924,7 +382138,7 @@ }, { "question": "Midwest Energy", - "icon": "./assets/data/nsi/logos/midwestenergy-4c7c55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midwestenergy-4c7c55.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381971,7 +382185,7 @@ }, { "question": "Minnesota Valley Cooperative Light & Power Association", - "icon": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-7acf5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-7acf5a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -381986,7 +382200,7 @@ }, { "question": "Minnkota Power Cooperative", - "icon": "./assets/data/nsi/logos/minnkotapowercooperative-93f57a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-93f57a.png", "osmTags": { "and": [ "power=minor_line", @@ -382015,7 +382229,7 @@ }, { "question": "Mississippi Power", - "icon": "./assets/data/nsi/logos/mississippipower-311089.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippipower-311089.png", "osmTags": { "and": [ "power=minor_line", @@ -382067,7 +382281,7 @@ }, { "question": "Mon Power", - "icon": "./assets/data/nsi/logos/monpower-703893.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monpower-703893.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382157,7 +382371,7 @@ }, { "question": "NamPower", - "icon": "./assets/data/nsi/logos/nampower-eb37fc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nampower-eb37fc.svg", "osmTags": { "and": [ "power=minor_line", @@ -382172,7 +382386,7 @@ }, { "question": "Nashville Electric Service", - "icon": "./assets/data/nsi/logos/nashvilleelectricservice-a20e2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-a20e2a.png", "osmTags": { "and": [ "power=minor_line", @@ -382188,7 +382402,7 @@ }, { "question": "National Grid", - "icon": "./assets/data/nsi/logos/nationalgrid-a4d329.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgrid-a4d329.png", "osmTags": { "and": [ "power=minor_line", @@ -382203,7 +382417,7 @@ }, { "question": "National Grid Corporation of the Philippines", - "icon": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-da5cb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-da5cb0.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382219,7 +382433,7 @@ }, { "question": "National Grid Electricity Distribution", - "icon": "./assets/data/nsi/logos/nationalgridelectricitydistribution-73f066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-73f066.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382234,7 +382448,7 @@ }, { "question": "National Grid Electricity Transmission", - "icon": "./assets/data/nsi/logos/nationalgridelectricitytransmission-73f066.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-73f066.svg", "osmTags": { "and": [ "power=minor_line", @@ -382249,7 +382463,7 @@ }, { "question": "NB Power", - "icon": "./assets/data/nsi/logos/nbpower-45aa37.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbpower-45aa37.svg", "osmTags": { "and": [ "power=minor_line", @@ -382294,7 +382508,7 @@ }, { "question": "Neoenergia", - "icon": "./assets/data/nsi/logos/neoenergia-241a4c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoenergia-241a4c.svg", "osmTags": { "and": [ "power=minor_line", @@ -382337,7 +382551,7 @@ }, { "question": "Netz NÖ", - "icon": "./assets/data/nsi/logos/netzno-877aa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzno-877aa7.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382366,7 +382580,7 @@ }, { "question": "Netze BW GmbH", - "icon": "./assets/data/nsi/logos/netzebwgmbh-c11af1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-c11af1.svg", "osmTags": { "and": [ "power=minor_line", @@ -382409,7 +382623,7 @@ }, { "question": "New York Power Authority", - "icon": "./assets/data/nsi/logos/newyorkpowerauthority-451afe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-451afe.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382425,7 +382639,7 @@ }, { "question": "Newfoundland and Labrador Hydro", - "icon": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-f24725.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-f24725.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382440,7 +382654,7 @@ }, { "question": "Newfoundland Power", - "icon": "./assets/data/nsi/logos/newfoundlandpower-f24725.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-f24725.png", "osmTags": { "and": [ "power=minor_line", @@ -382455,7 +382669,7 @@ }, { "question": "NextEra Energy", - "icon": "./assets/data/nsi/logos/nexteraenergy-3c7f2b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-3c7f2b.png", "osmTags": { "and": [ "power=minor_line", @@ -382484,7 +382698,7 @@ }, { "question": "NIE Networks", - "icon": "./assets/data/nsi/logos/nienetworks-538231.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nienetworks-538231.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382593,7 +382807,7 @@ }, { "question": "Northern Powergrid", - "icon": "./assets/data/nsi/logos/northernpowergrid-73f066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-73f066.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382622,7 +382836,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-86ce5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-86ce5c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382637,7 +382851,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-9248e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-9248e3.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382666,7 +382880,7 @@ }, { "question": "NTE Nett", - "icon": "./assets/data/nsi/logos/ntenett-5b4abc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ntenett-5b4abc.png", "osmTags": { "and": [ "power=minor_line", @@ -382681,7 +382895,7 @@ }, { "question": "NV Energy", - "icon": "./assets/data/nsi/logos/nvenergy-34eada.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nvenergy-34eada.png", "osmTags": { "and": [ "power=minor_line", @@ -382696,7 +382910,7 @@ }, { "question": "NW Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/nwelectricpowercooperative-50b8fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-50b8fb.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382711,7 +382925,7 @@ }, { "question": "NYSEG", - "icon": "./assets/data/nsi/logos/nyseg-451afe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nyseg-451afe.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382764,7 +382978,7 @@ }, { "question": "Oklahoma Gas & Electric", - "icon": "./assets/data/nsi/logos/oklahomagasandelectric-cdec2d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-cdec2d.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382780,7 +382994,7 @@ }, { "question": "Omaha Public Power District", - "icon": "./assets/data/nsi/logos/omahapublicpowerdistrict-84a479.png", + "icon": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-84a479.png", "osmTags": { "and": [ "power=minor_line", @@ -382795,7 +383009,7 @@ }, { "question": "Oncor", - "icon": "./assets/data/nsi/logos/oncor-1f3576.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oncor-1f3576.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382833,7 +383047,7 @@ }, { "question": "Orion New Zealand", - "icon": "./assets/data/nsi/logos/orionnewzealand-43abd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-43abd4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382848,7 +383062,7 @@ }, { "question": "Orlando Utilities Commission", - "icon": "./assets/data/nsi/logos/orlandoutilitiescommission-1d9dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-1d9dd1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382882,7 +383096,7 @@ }, { "question": "Otter Tail Power Company", - "icon": "./assets/data/nsi/logos/ottertailpowercompany-a52be3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-a52be3.jpg", "osmTags": { "and": [ "power=minor_line", @@ -382911,7 +383125,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-16d513.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-16d513.png", "osmTags": { "and": [ "power=minor_line", @@ -382927,7 +383141,7 @@ }, { "question": "Pacific Power", - "icon": "./assets/data/nsi/logos/pacificpower-151384.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificpower-151384.svg", "osmTags": { "and": [ "power=minor_line", @@ -382942,7 +383156,7 @@ }, { "question": "PacifiCorp", - "icon": "./assets/data/nsi/logos/pacificorp-8222ce.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificorp-8222ce.svg", "osmTags": { "and": [ "power=minor_line", @@ -382993,7 +383207,7 @@ }, { "question": "PEA", - "icon": "./assets/data/nsi/logos/pea-4edad1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pea-4edad1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383008,7 +383222,7 @@ }, { "question": "PECO", - "icon": "./assets/data/nsi/logos/peco-d5a9d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peco-d5a9d9.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383023,7 +383237,7 @@ }, { "question": "Peiner Träger GmbH", - "icon": "./assets/data/nsi/logos/peinertragergmbh-fcdf17.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/peinertragergmbh-fcdf17.svg", "osmTags": { "and": [ "power=minor_line", @@ -383038,7 +383252,7 @@ }, { "question": "Penelec", - "icon": "./assets/data/nsi/logos/penelec-cdf661.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penelec-cdf661.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383068,7 +383282,7 @@ }, { "question": "Perusahaan Listrik Negara", - "icon": "./assets/data/nsi/logos/perusahaanlistriknegara-756643.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-756643.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383084,7 +383298,7 @@ }, { "question": "Petrobras", - "icon": "./assets/data/nsi/logos/petrobras-241a4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrobras-241a4c.png", "osmTags": { "and": [ "power=minor_line", @@ -383099,7 +383313,7 @@ }, { "question": "Pfalzwerke AG", - "icon": "./assets/data/nsi/logos/pfalzwerkeag-b8409d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-b8409d.png", "osmTags": { "and": [ "power=minor_line", @@ -383114,7 +383328,7 @@ }, { "question": "PGE Dystrybucja", - "icon": "./assets/data/nsi/logos/pgedystrybucja-8d0004.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-8d0004.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383129,7 +383343,7 @@ }, { "question": "PGE Energetyka Kolejowa", - "icon": "./assets/data/nsi/logos/pgeenergetykakolejowa-8d0004.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-8d0004.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383144,7 +383358,7 @@ }, { "question": "PJM", - "icon": "./assets/data/nsi/logos/pjm-10d01e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pjm-10d01e.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383182,7 +383396,7 @@ }, { "question": "PNM", - "icon": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-0194af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-0194af.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383198,7 +383412,7 @@ }, { "question": "Polskie Sieci Elektroenergetyczne", - "icon": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-677727.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-677727.png", "osmTags": { "and": [ "power=minor_line", @@ -383214,7 +383428,7 @@ }, { "question": "Portland General Electric", - "icon": "./assets/data/nsi/logos/portlandgeneralelectric-6a73f0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-6a73f0.png", "osmTags": { "and": [ "power=minor_line", @@ -383239,7 +383453,7 @@ }, { "question": "Potomac Edison", - "icon": "./assets/data/nsi/logos/potomacedison-64127a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacedison-64127a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383254,7 +383468,7 @@ }, { "question": "Potomac Electric Power Company", - "icon": "./assets/data/nsi/logos/potomacelectricpowercompany-7e9bf2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-7e9bf2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383270,7 +383484,7 @@ }, { "question": "Power Grid Corporation of India Ltd", - "icon": "./assets/data/nsi/logos/powergridcorporationofindialtd-0db0d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-0db0d2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383285,7 +383499,7 @@ }, { "question": "Powerco", - "icon": "./assets/data/nsi/logos/powerco-43abd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerco-43abd4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383300,7 +383514,7 @@ }, { "question": "Powercor", - "icon": "./assets/data/nsi/logos/powercor-b4baaa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/powercor-b4baaa.png", "osmTags": { "and": [ "power=minor_line", @@ -383315,7 +383529,7 @@ }, { "question": "Powerlink", - "icon": "./assets/data/nsi/logos/powerlink-069ec2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerlink-069ec2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383345,7 +383559,7 @@ }, { "question": "PPL", - "icon": "./assets/data/nsi/logos/ppl-ef89a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ppl-ef89a2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383360,7 +383574,7 @@ }, { "question": "PRE", - "icon": "./assets/data/nsi/logos/pre-9e3254.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pre-9e3254.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383375,7 +383589,7 @@ }, { "question": "Premier Energy (Moldova)", - "icon": "./assets/data/nsi/logos/premierenergy-414eae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/premierenergy-414eae.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383418,7 +383632,7 @@ }, { "question": "PSO", - "icon": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-fab6f4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-fab6f4.png", "osmTags": { "and": [ "power=minor_line", @@ -383448,7 +383662,7 @@ }, { "question": "Public Service Enterprise Group", - "icon": "./assets/data/nsi/logos/publicserviceenterprisegroup-4116e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-4116e1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383463,7 +383677,7 @@ }, { "question": "Puerto Rico Electric Power Authority", - "icon": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-d5140c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-d5140c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383479,7 +383693,7 @@ }, { "question": "Puget Sound Energy", - "icon": "./assets/data/nsi/logos/pugetsoundenergy-4d2784.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-4d2784.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383495,7 +383709,7 @@ }, { "question": "Radius Elnet", - "icon": "./assets/data/nsi/logos/radiuselnet-6a131d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radiuselnet-6a131d.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383510,7 +383724,7 @@ }, { "question": "Rappahannock Electric Cooperative", - "icon": "./assets/data/nsi/logos/rappahannockelectriccooperative-d0b6bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-d0b6bc.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383525,7 +383739,7 @@ }, { "question": "Red Eléctrica de España", - "icon": "./assets/data/nsi/logos/redelectricadeespana-0a3cea.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-0a3cea.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383550,7 +383764,7 @@ }, { "question": "Reedy Creek Improvement District", - "icon": "./assets/data/nsi/logos/reedycreekimprovementdistrict-1d9dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reedycreekimprovementdistrict-1d9dd1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383565,7 +383779,7 @@ }, { "question": "REN", - "icon": "./assets/data/nsi/logos/ren-a8586b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ren-a8586b.svg", "osmTags": { "and": [ "power=minor_line", @@ -383594,7 +383808,7 @@ }, { "question": "Resolute Forest Products", - "icon": "./assets/data/nsi/logos/resoluteforestproducts-8a4c04.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/resoluteforestproducts-8a4c04.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383609,7 +383823,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-c74937.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-c74937.svg", "osmTags": { "and": [ "power=minor_line", @@ -383624,7 +383838,7 @@ }, { "question": "Rhode Island Energy", - "icon": "./assets/data/nsi/logos/rhodeislandenergy-3faf16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-3faf16.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383639,7 +383853,7 @@ }, { "question": "Rio Grande Energia", - "icon": "./assets/data/nsi/logos/riograndeenergia-241a4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-241a4c.png", "osmTags": { "and": [ "power=minor_line", @@ -383654,7 +383868,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-0427a6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-0427a6.svg", "osmTags": { "and": [ "power=minor_line", @@ -383678,7 +383892,7 @@ }, { "question": "Rochester Gas & Electric", - "icon": "./assets/data/nsi/logos/rochestergasandelectric-451afe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-451afe.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383693,7 +383907,7 @@ }, { "question": "Rocky Mountain Power", - "icon": "./assets/data/nsi/logos/rockymountainpower-900587.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-900587.svg", "osmTags": { "and": [ "power=minor_line", @@ -383708,7 +383922,7 @@ }, { "question": "Romande Energie", - "icon": "./assets/data/nsi/logos/romandeenergie-d521ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romandeenergie-d521ae.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383723,7 +383937,7 @@ }, { "question": "Roseville Electric", - "icon": "./assets/data/nsi/logos/rosevilleelectric-16d513.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-16d513.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383738,7 +383952,7 @@ }, { "question": "RTE", - "icon": "./assets/data/nsi/logos/rte-718125.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rte-718125.png", "osmTags": { "and": [ "power=minor_line", @@ -383768,7 +383982,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-7feb9d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-7feb9d.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383798,7 +384012,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-d2ed5a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-d2ed5a.png", "osmTags": { "and": [ "power=minor_line", @@ -383813,7 +384027,7 @@ }, { "question": "Sacramento Municipal Utility District", - "icon": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-16d513.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-16d513.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383829,7 +384043,7 @@ }, { "question": "Sadales tīkls", - "icon": "./assets/data/nsi/logos/sadalestikls-a6ab81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sadalestikls-a6ab81.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383844,7 +384058,7 @@ }, { "question": "Salt River Project", - "icon": "./assets/data/nsi/logos/saltriverproject-568d52.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saltriverproject-568d52.png", "osmTags": { "and": [ "power=minor_line", @@ -383860,7 +384074,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-bd38fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-bd38fa.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383884,7 +384098,7 @@ }, { "question": "San Diego Gas & Electric", - "icon": "./assets/data/nsi/logos/sandiegogasandelectric-655d98.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-655d98.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383900,7 +384114,7 @@ }, { "question": "SaskPower", - "icon": "./assets/data/nsi/logos/saskpower-541d20.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saskpower-541d20.svg", "osmTags": { "and": [ "power=minor_line", @@ -383915,7 +384129,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-ee442c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-ee442c.png", "osmTags": { "and": [ "power=minor_line", @@ -383930,7 +384144,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-99a780.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-99a780.svg", "osmTags": { "and": [ "power=minor_line", @@ -383959,7 +384173,7 @@ }, { "question": "Scottish and Southern Electricity Networks (SSEN)", - "icon": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-18a6c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-18a6c2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -383984,7 +384198,7 @@ }, { "question": "Seattle City Light", - "icon": "./assets/data/nsi/logos/seattlecitylight-4d2784.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-4d2784.png", "osmTags": { "and": [ "power=minor_line", @@ -384000,7 +384214,7 @@ }, { "question": "Seminole Electric Cooperative", - "icon": "./assets/data/nsi/logos/seminoleelectriccooperative-1d9dd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-1d9dd1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384015,7 +384229,7 @@ }, { "question": "Senelec", - "icon": "./assets/data/nsi/logos/senelec-0f3a97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senelec-0f3a97.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384076,7 +384290,7 @@ }, { "question": "SIG", - "icon": "./assets/data/nsi/logos/sig-28e447.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sig-28e447.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384105,7 +384319,7 @@ }, { "question": "SLEMCO", - "icon": "./assets/data/nsi/logos/slemco-d6d8c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slemco-d6d8c4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384120,7 +384334,7 @@ }, { "question": "Slovenská elektrizačná prenosová sústava", - "icon": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-475230.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-475230.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384136,7 +384350,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-718125.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-718125.png", "osmTags": { "and": [ "power=minor_line", @@ -384151,7 +384365,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-718125.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-718125.png", "osmTags": { "and": [ "power=minor_line", @@ -384175,7 +384389,7 @@ }, { "question": "Societe Beninoise d'Energie Electrique", - "icon": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-f1dc56.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-f1dc56.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384191,7 +384405,7 @@ }, { "question": "Sogn og Fjordane Energi", - "icon": "./assets/data/nsi/logos/sognogfjordaneenergi-5b4abc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-5b4abc.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384230,7 +384444,7 @@ }, { "question": "Southern California Edison", - "icon": "./assets/data/nsi/logos/southerncaliforniaedison-16d513.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-16d513.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384261,7 +384475,7 @@ }, { "question": "Southwest Arkansas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-20ede4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-20ede4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384313,7 +384527,7 @@ }, { "question": "SP Energy Networks", - "icon": "./assets/data/nsi/logos/spenergynetworks-18a6c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-18a6c2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384342,7 +384556,7 @@ }, { "question": "Springfield Utility Board", - "icon": "./assets/data/nsi/logos/springfieldutilityboard-6a73f0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-6a73f0.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384386,7 +384600,7 @@ }, { "question": "SSEN Transmission", - "icon": "./assets/data/nsi/logos/ssentransmission-65daaf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ssentransmission-65daaf.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384401,7 +384615,7 @@ }, { "question": "Stadtwerke Düsseldorf", - "icon": "./assets/data/nsi/logos/stadtwerkedusseldorf-727666.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-727666.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384416,7 +384630,7 @@ }, { "question": "Stadtwerke Leipzig", - "icon": "./assets/data/nsi/logos/stadtwerkeleipzig-d2ed5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-d2ed5a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384431,7 +384645,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-fe9235.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-fe9235.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384461,7 +384675,7 @@ }, { "question": "Statkraft", - "icon": "./assets/data/nsi/logos/statkraft-7feb9d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statkraft-7feb9d.png", "osmTags": { "and": [ "power=minor_line", @@ -384476,7 +384690,7 @@ }, { "question": "Statnett", - "icon": "./assets/data/nsi/logos/statnett-5b4abc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/statnett-5b4abc.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384491,7 +384705,7 @@ }, { "question": "Stedin", - "icon": "./assets/data/nsi/logos/stedin-bd8f8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stedin-bd8f8a.png", "osmTags": { "and": [ "power=minor_line", @@ -384573,7 +384787,7 @@ }, { "question": "Stromnetz Berlin", - "icon": "./assets/data/nsi/logos/stromnetzberlin-cc6d07.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-cc6d07.svg", "osmTags": { "and": [ "power=minor_line", @@ -384588,7 +384802,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-6e3902.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-6e3902.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384630,7 +384844,7 @@ }, { "question": "Sunflower Electric Power Corporation", - "icon": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-4c7c55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-4c7c55.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384645,7 +384859,7 @@ }, { "question": "Süwag Energie", - "icon": "./assets/data/nsi/logos/suwagenergie-c24667.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwagenergie-c24667.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384660,7 +384874,7 @@ }, { "question": "Svenska Kraftnät", - "icon": "./assets/data/nsi/logos/svenskakraftnat-da7f1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-da7f1f.png", "osmTags": { "and": [ "power=minor_line", @@ -384675,7 +384889,7 @@ }, { "question": "SWEPCO", - "icon": "./assets/data/nsi/logos/southwesternelectricpowercompany-4550ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-4550ee.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384691,7 +384905,7 @@ }, { "question": "Swissgrid", - "icon": "./assets/data/nsi/logos/swissgrid-ee442c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swissgrid-ee442c.png", "osmTags": { "and": [ "power=minor_line", @@ -384706,7 +384920,7 @@ }, { "question": "Sygnir", - "icon": "./assets/data/nsi/logos/sygnir-5b4abc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sygnir-5b4abc.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384763,7 +384977,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-8d0004.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-8d0004.png", "osmTags": { "and": [ "power=minor_line", @@ -384792,7 +385006,7 @@ }, { "question": "TEİAŞ", - "icon": "./assets/data/nsi/logos/teias-34b30e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teias-34b30e.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384807,7 +385021,7 @@ }, { "question": "Tenaga Nasional", - "icon": "./assets/data/nsi/logos/tenaganasional-7478eb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tenaganasional-7478eb.png", "osmTags": { "and": [ "power=minor_line", @@ -384822,7 +385036,7 @@ }, { "question": "Tennessee Valley Authority", - "icon": "./assets/data/nsi/logos/tennesseevalleyauthority-8222ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-8222ce.png", "osmTags": { "and": [ "power=minor_line", @@ -384838,7 +385052,7 @@ }, { "question": "TenneT", - "icon": "./assets/data/nsi/logos/tennet-bd8f8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennet-bd8f8a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384853,7 +385067,7 @@ }, { "question": "TenneT TSO", - "icon": "./assets/data/nsi/logos/tennettso-d61b6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennettso-d61b6c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384868,7 +385082,7 @@ }, { "question": "Tensio", - "icon": "./assets/data/nsi/logos/tensio-5b4abc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tensio-5b4abc.jpg", "osmTags": { "and": [ "power=minor_line", @@ -384911,7 +385125,7 @@ }, { "question": "Terna", - "icon": "./assets/data/nsi/logos/terna-062e0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/terna-062e0c.png", "osmTags": { "and": [ "power=minor_line", @@ -384935,7 +385149,7 @@ }, { "question": "Texas-New Mexico Power", - "icon": "./assets/data/nsi/logos/texasnewmexicopower-1f3576.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-1f3576.png", "osmTags": { "and": [ "power=minor_line", @@ -384966,7 +385180,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-877aa7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-877aa7.svg", "osmTags": { "and": [ "power=minor_line", @@ -385013,7 +385227,7 @@ }, { "question": "Transcomahue S.A.", - "icon": "./assets/data/nsi/logos/transcomahuesa-67e175.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transcomahuesa-67e175.png", "osmTags": { "and": [ "power=minor_line", @@ -385051,7 +385265,7 @@ }, { "question": "Transener", - "icon": "./assets/data/nsi/logos/transener-0aca96.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transener-0aca96.png", "osmTags": { "and": [ "power=minor_line", @@ -385066,7 +385280,7 @@ }, { "question": "TransGrid", - "icon": "./assets/data/nsi/logos/transgrid-efee82.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transgrid-efee82.png", "osmTags": { "and": [ "power=minor_line", @@ -385095,7 +385309,7 @@ }, { "question": "Transmission Company of Nigeria", - "icon": "./assets/data/nsi/logos/transmissioncompanyofnigeria-51c9f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-51c9f4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385147,7 +385361,7 @@ }, { "question": "TransnetBW GmbH", - "icon": "./assets/data/nsi/logos/transnetbwgmbh-c11af1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-c11af1.svg", "osmTags": { "and": [ "power=minor_line", @@ -385185,7 +385399,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-efee82.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-efee82.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385200,7 +385414,7 @@ }, { "question": "Transpower New Zealand", - "icon": "./assets/data/nsi/logos/transpowernewzealand-43abd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-43abd4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385215,7 +385429,7 @@ }, { "question": "TREDAŞ", - "icon": "./assets/data/nsi/logos/tredas-34b30e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredas-34b30e.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385248,7 +385462,7 @@ }, { "question": "Tucson Electric Power", - "icon": "./assets/data/nsi/logos/tucsonelectricpower-568d52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-568d52.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385273,7 +385487,7 @@ }, { "question": "UGI", - "icon": "./assets/data/nsi/logos/ugi-cdf661.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ugi-cdf661.png", "osmTags": { "and": [ "power=minor_line", @@ -385288,7 +385502,7 @@ }, { "question": "UK Power Networks", - "icon": "./assets/data/nsi/logos/ukpowernetworks-73f066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-73f066.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385327,7 +385541,7 @@ }, { "question": "Uniper Kraftwerke", - "icon": "./assets/data/nsi/logos/uniperkraftwerke-be6516.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-be6516.png", "osmTags": { "and": [ "power=minor_line", @@ -385342,7 +385556,7 @@ }, { "question": "United Illuminating Company", - "icon": "./assets/data/nsi/logos/unitedilluminatingcompany-e46126.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-e46126.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385357,7 +385571,7 @@ }, { "question": "United States Steel", - "icon": "./assets/data/nsi/logos/unitedstatessteel-07573a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-07573a.svg", "osmTags": { "and": [ "power=minor_line", @@ -385372,7 +385586,7 @@ }, { "question": "Unitil", - "icon": "./assets/data/nsi/logos/unitil-175481.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitil-175481.png", "osmTags": { "and": [ "power=minor_line", @@ -385402,7 +385616,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-247b3b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-247b3b.svg", "osmTags": { "and": [ "power=minor_line", @@ -385417,7 +385631,7 @@ }, { "question": "Vale S.A.", - "icon": "./assets/data/nsi/logos/valesa-241a4c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valesa-241a4c.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385441,7 +385655,7 @@ }, { "question": "Vattenfall", - "icon": "./assets/data/nsi/logos/vattenfall-5b0667.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-5b0667.png", "osmTags": { "and": [ "power=minor_line", @@ -385456,7 +385670,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-be6516.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-be6516.png", "osmTags": { "and": [ "power=minor_line", @@ -385471,7 +385685,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-43abd4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-43abd4.png", "osmTags": { "and": [ "power=minor_line", @@ -385486,7 +385700,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-877aa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-877aa7.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385501,7 +385715,7 @@ }, { "question": "Vermont Electric Power Company", - "icon": "./assets/data/nsi/logos/vermontelectricpowercompany-950eb5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-950eb5.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385530,7 +385744,7 @@ }, { "question": "Versant Power", - "icon": "./assets/data/nsi/logos/versantpower-13240d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/versantpower-13240d.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385559,7 +385773,7 @@ }, { "question": "Vestall", - "icon": "./assets/data/nsi/logos/vestall-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vestall-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -385574,7 +385788,7 @@ }, { "question": "Vevig", - "icon": "./assets/data/nsi/logos/vevig-5b4abc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vevig-5b4abc.png", "osmTags": { "and": [ "power=minor_line", @@ -385589,7 +385803,7 @@ }, { "question": "Viesgo Distribución Eléctrica", - "icon": "./assets/data/nsi/logos/viesgodistribucionelectrica-0a3cea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-0a3cea.png", "osmTags": { "and": [ "power=minor_line", @@ -385618,7 +385832,7 @@ }, { "question": "Visayan Electric", - "icon": "./assets/data/nsi/logos/visayanelectric-da5cb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visayanelectric-da5cb0.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385633,7 +385847,7 @@ }, { "question": "Vissi", - "icon": "./assets/data/nsi/logos/vissi-5b4abc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vissi-5b4abc.svg", "osmTags": { "and": [ "power=minor_line", @@ -385690,7 +385904,7 @@ }, { "question": "Východoslovenská distribučná", - "icon": "./assets/data/nsi/logos/vychodoslovenskadistribucna-475230.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-475230.png", "osmTags": { "and": [ "power=minor_line", @@ -385706,7 +385920,7 @@ }, { "question": "Washington-St. Tammany Electric Cooperative", - "icon": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-d6d8c4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-d6d8c4.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385730,7 +385944,7 @@ }, { "question": "WEMAG Netz GmbH", - "icon": "./assets/data/nsi/logos/wemagnetzgmbh-7fac1b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wemagnetzgmbh-7fac1b.png", "osmTags": { "and": [ "power=minor_line", @@ -385768,7 +385982,7 @@ }, { "question": "West Penn Power", - "icon": "./assets/data/nsi/logos/westpennpower-69a3c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westpennpower-69a3c2.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385783,7 +385997,7 @@ }, { "question": "Western Area Power Administration", - "icon": "./assets/data/nsi/logos/westernareapoweradministration-8222ce.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-8222ce.png", "osmTags": { "and": [ "power=minor_line", @@ -385799,7 +386013,7 @@ }, { "question": "Westfalen Weser Netz", - "icon": "./assets/data/nsi/logos/westfalenwesernetz-8a1dc6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfalenwesernetz-8a1dc6.svg", "osmTags": { "and": [ "power=minor_line", @@ -385815,7 +386029,7 @@ }, { "question": "Westnetz", - "icon": "./assets/data/nsi/logos/westnetz-be6516.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westnetz-be6516.png", "osmTags": { "and": [ "power=minor_line", @@ -385830,7 +386044,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-877aa7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-877aa7.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385845,7 +386059,7 @@ }, { "question": "Wiener Netze", - "icon": "./assets/data/nsi/logos/wienernetze-877aa7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienernetze-877aa7.png", "osmTags": { "and": [ "power=minor_line", @@ -385897,7 +386111,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-8222ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-8222ce.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385912,7 +386126,7 @@ }, { "question": "Yacimientos de Litio Bolivianos", - "icon": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-564db9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-564db9.svg", "osmTags": { "and": [ "power=minor_line", @@ -385927,7 +386141,7 @@ }, { "question": "ΔΕΗ", - "icon": "./assets/data/nsi/logos/788cf3-693934.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/788cf3-693934.jpg", "osmTags": { "and": [ "power=minor_line", @@ -385987,7 +386201,7 @@ }, { "question": "АТ Прикарпаттяобленерго", - "icon": "./assets/data/nsi/logos/7c17ff-c7c530.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7c17ff-c7c530.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386002,7 +386216,7 @@ }, { "question": "АТ Хмельницькобленерго", - "icon": "./assets/data/nsi/logos/f36860-c7c530.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/f36860-c7c530.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386017,7 +386231,7 @@ }, { "question": "Вінницяобленерго", - "icon": "./assets/data/nsi/logos/084a1e-c7c530.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/084a1e-c7c530.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386032,7 +386246,7 @@ }, { "question": "Волиньобленерго", - "icon": "./assets/data/nsi/logos/cc48e9-c7c530.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cc48e9-c7c530.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386098,7 +386312,7 @@ }, { "question": "Запоріжжяобленерго", - "icon": "./assets/data/nsi/logos/dd2584-c7c530.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dd2584-c7c530.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386122,7 +386336,7 @@ }, { "question": "Київобленерго", - "icon": "./assets/data/nsi/logos/9e843b-c7c530.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9e843b-c7c530.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386313,7 +386527,7 @@ }, { "question": "Россети", - "icon": "./assets/data/nsi/logos/8fc412-ba1053.png", + "icon": "https://data.mapcomplete.org/nsi//logos/8fc412-ba1053.png", "osmTags": { "and": [ "power=minor_line", @@ -386328,7 +386542,7 @@ }, { "question": "Сахалинэнерго", - "icon": "./assets/data/nsi/logos/1fc076-ba1053.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1fc076-ba1053.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386366,7 +386580,7 @@ }, { "question": "Черкасиобленерго", - "icon": "./assets/data/nsi/logos/472734-c7c530.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/472734-c7c530.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386381,7 +386595,7 @@ }, { "question": "الشركة التونسية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/tunisiancompanyofelectricityandgas-d3d77a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tunisiancompanyofelectricityandgas-d3d77a.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386407,7 +386621,7 @@ }, { "question": "الشركة الوطنية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/sonelgaz-9d8084.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-9d8084.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386424,7 +386638,7 @@ }, { "question": "การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย", - "icon": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-4edad1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-4edad1.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386483,7 +386697,7 @@ }, { "question": "中華電力有限公司 CLP Power Hong Kong Limited", - "icon": "./assets/data/nsi/logos/clppowerhongkonglimited-bb3ff5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-bb3ff5.png", "osmTags": { "and": [ "power=minor_line", @@ -386507,7 +386721,7 @@ }, { "question": "中部電力パワーグリッド", - "icon": "./assets/data/nsi/logos/chubuelectricpowergridcompany-89f10b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-89f10b.svg", "osmTags": { "and": [ "power=minor_line", @@ -386524,7 +386738,7 @@ }, { "question": "九州電力送配電", - "icon": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-89f10b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-89f10b.png", "osmTags": { "and": [ "power=minor_line", @@ -386541,7 +386755,7 @@ }, { "question": "北海道電力ネットワーク", - "icon": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-89f10b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-89f10b.png", "osmTags": { "and": [ "power=minor_line", @@ -386575,7 +386789,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/34ba0b-b8f128.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/34ba0b-b8f128.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386640,7 +386854,7 @@ }, { "question": "東京電力パワーグリッド", - "icon": "./assets/data/nsi/logos/tepcopowergrid-89f10b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-89f10b.svg", "osmTags": { "and": [ "power=minor_line", @@ -386673,7 +386887,7 @@ }, { "question": "沖縄電力", - "icon": "./assets/data/nsi/logos/okinawaelectricpowercompany-89f10b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-89f10b.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386716,7 +386930,7 @@ }, { "question": "電源開発送変電ネットワーク", - "icon": "./assets/data/nsi/logos/jpowertransmissionnetwork-89f10b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jpowertransmissionnetwork-89f10b.svg", "osmTags": { "and": [ "power=minor_line", @@ -386733,7 +386947,7 @@ }, { "question": "香港電燈有限公司 The Hongkong Electric Company, Limited", - "icon": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-bb3ff5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-bb3ff5.jpg", "osmTags": { "and": [ "power=minor_line", @@ -386766,7 +386980,7 @@ }, { "question": "Å Energi Vannkraft", - "icon": "./assets/data/nsi/logos/aenergivannkraft-44cc7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-44cc7f.jpg", "osmTags": { "and": [ "power=plant", @@ -386781,7 +386995,7 @@ }, { "question": "A2A", - "icon": "./assets/data/nsi/logos/a2a-ed757e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a2a-ed757e.jpg", "osmTags": { "and": [ "power=plant", @@ -386796,7 +387010,7 @@ }, { "question": "ABO Wind", - "icon": "./assets/data/nsi/logos/abowind-e6c8aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/abowind-e6c8aa.svg", "osmTags": { "and": [ "power=plant", @@ -386811,7 +387025,7 @@ }, { "question": "Acciona Energía", - "icon": "./assets/data/nsi/logos/accionaenergia-d14bb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/accionaenergia-d14bb1.jpg", "osmTags": { "and": [ "power=plant", @@ -386853,7 +387067,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-bc90e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-bc90e6.png", "osmTags": { "and": [ "power=plant", @@ -386868,7 +387082,7 @@ }, { "question": "AES Corporation", - "icon": "./assets/data/nsi/logos/aescorporation-12344d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aescorporation-12344d.png", "osmTags": { "and": [ "power=plant", @@ -386892,7 +387106,7 @@ }, { "question": "Agder Energi", - "icon": "./assets/data/nsi/logos/agderenergi-44cc7f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agderenergi-44cc7f.svg", "osmTags": { "and": [ "power=plant", @@ -386907,7 +387121,7 @@ }, { "question": "AGL Energy", - "icon": "./assets/data/nsi/logos/aglenergy-225a52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aglenergy-225a52.jpg", "osmTags": { "and": [ "power=plant", @@ -386931,7 +387145,7 @@ }, { "question": "Alabama Power", - "icon": "./assets/data/nsi/logos/alabamapower-035181.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamapower-035181.jpg", "osmTags": { "and": [ "power=plant", @@ -386955,7 +387169,7 @@ }, { "question": "Alliant Energy", - "icon": "./assets/data/nsi/logos/alliantenergy-2ac081.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alliantenergy-2ac081.png", "osmTags": { "and": [ "power=plant", @@ -386979,7 +387193,7 @@ }, { "question": "Ameren", - "icon": "./assets/data/nsi/logos/ameren-b27b77.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameren-b27b77.png", "osmTags": { "and": [ "power=plant", @@ -387008,7 +387222,7 @@ }, { "question": "American Municipal Power", - "icon": "./assets/data/nsi/logos/americanmunicipalpower-fbd018.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanmunicipalpower-fbd018.png", "osmTags": { "and": [ "power=plant", @@ -387037,7 +387251,7 @@ }, { "question": "Apex Energies", - "icon": "./assets/data/nsi/logos/apexenergies-e1f5e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/apexenergies-e1f5e6.jpg", "osmTags": { "and": [ "power=plant", @@ -387052,7 +387266,7 @@ }, { "question": "Aquila Capital", - "icon": "./assets/data/nsi/logos/aquilacapital-63ab97.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aquilacapital-63ab97.svg", "osmTags": { "and": [ "power=plant", @@ -387067,7 +387281,7 @@ }, { "question": "Arizona Public Service", - "icon": "./assets/data/nsi/logos/arizonapublicservice-78c78a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-78c78a.png", "osmTags": { "and": [ "power=plant", @@ -387082,7 +387296,7 @@ }, { "question": "Avangrid Renewables", - "icon": "./assets/data/nsi/logos/avangridrenewables-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avangridrenewables-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -387097,7 +387311,7 @@ }, { "question": "AzərEnerji", - "icon": "./assets/data/nsi/logos/54215d-a01010.png", + "icon": "https://data.mapcomplete.org/nsi//logos/54215d-a01010.png", "osmTags": { "and": [ "power=plant", @@ -387112,7 +387326,7 @@ }, { "question": "Bangladesh Power Development Board", - "icon": "./assets/data/nsi/logos/bangladeshpowerdevelopmentboard-495def.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bangladeshpowerdevelopmentboard-495def.jpg", "osmTags": { "and": [ "power=plant", @@ -387142,7 +387356,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-4dbdc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-4dbdc9.jpg", "osmTags": { "and": [ "power=plant", @@ -387171,7 +387385,7 @@ }, { "question": "Boralex", - "icon": "./assets/data/nsi/logos/boralex-e0e75c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/boralex-e0e75c.png", "osmTags": { "and": [ "power=plant", @@ -387195,7 +387409,7 @@ }, { "question": "British Solar Renewables", - "icon": "./assets/data/nsi/logos/britishsolarrenewables-961ad5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/britishsolarrenewables-961ad5.png", "osmTags": { "and": [ "power=plant", @@ -387220,7 +387434,7 @@ }, { "question": "Calpine", - "icon": "./assets/data/nsi/logos/calpine-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/calpine-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -387235,7 +387449,7 @@ }, { "question": "Canadian Solar", - "icon": "./assets/data/nsi/logos/canadiansolar-e6c8aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/canadiansolar-e6c8aa.png", "osmTags": { "and": [ "power=plant", @@ -387277,7 +387491,7 @@ }, { "question": "Ceylon Electricity Board", - "icon": "./assets/data/nsi/logos/ceylonelectricityboard-07a83a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-07a83a.png", "osmTags": { "and": [ "power=plant", @@ -387293,7 +387507,7 @@ }, { "question": "ČEZ", - "icon": "./assets/data/nsi/logos/cez-14fcf8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cez-14fcf8.jpg", "osmTags": { "and": [ "power=plant", @@ -387335,7 +387549,7 @@ }, { "question": "CNR", - "icon": "./assets/data/nsi/logos/cnr-a6c8fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cnr-a6c8fe.jpg", "osmTags": { "and": [ "power=plant", @@ -387350,7 +387564,7 @@ }, { "question": "Colbún", - "icon": "./assets/data/nsi/logos/colbun-da5611.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colbun-da5611.jpg", "osmTags": { "and": [ "power=plant", @@ -387365,7 +387579,7 @@ }, { "question": "Comisión Federal de Electricidad", - "icon": "./assets/data/nsi/logos/comisionfederaldeelectricidad-56e313.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-56e313.png", "osmTags": { "and": [ "power=plant", @@ -387413,7 +387627,7 @@ }, { "question": "Consumers Energy", - "icon": "./assets/data/nsi/logos/consumersenergy-b409f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumersenergy-b409f5.png", "osmTags": { "and": [ "power=plant", @@ -387442,7 +387656,7 @@ }, { "question": "Copel", - "icon": "./assets/data/nsi/logos/copel-f91242.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copel-f91242.jpg", "osmTags": { "and": [ "power=plant", @@ -387475,7 +387689,7 @@ }, { "question": "Dalkia", - "icon": "./assets/data/nsi/logos/dalkia-fadf07.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dalkia-fadf07.svg", "osmTags": { "and": [ "power=plant", @@ -387490,7 +387704,7 @@ }, { "question": "Dominion Energy", - "icon": "./assets/data/nsi/logos/dominionenergy-ff5e26.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dominionenergy-ff5e26.png", "osmTags": { "and": [ "power=plant", @@ -387528,7 +387742,7 @@ }, { "question": "Dravske elektrarne Maribor", - "icon": "./assets/data/nsi/logos/dravskeelektrarnemaribor-526b7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dravskeelektrarnemaribor-526b7d.jpg", "osmTags": { "and": [ "power=plant", @@ -387544,7 +387758,7 @@ }, { "question": "DTE Electric Company", - "icon": "./assets/data/nsi/logos/dteelectriccompany-b409f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-b409f5.png", "osmTags": { "and": [ "power=plant", @@ -387559,7 +387773,7 @@ }, { "question": "DTE Energy", - "icon": "./assets/data/nsi/logos/dteenergy-b409f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteenergy-b409f5.png", "osmTags": { "and": [ "power=plant", @@ -387574,7 +387788,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-0446df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-0446df.jpg", "osmTags": { "and": [ "power=plant", @@ -387589,7 +387803,7 @@ }, { "question": "Duke Energy Progress", - "icon": "./assets/data/nsi/logos/dukeenergyprogress-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -387613,7 +387827,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-e6c8aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-e6c8aa.png", "osmTags": { "and": [ "power=plant", @@ -387669,7 +387883,7 @@ }, { "question": "EDF Energy", - "icon": "./assets/data/nsi/logos/edfenergy-961ad5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/edfenergy-961ad5.png", "osmTags": { "and": [ "power=plant", @@ -387684,7 +387898,7 @@ }, { "question": "EDF Renewables", - "icon": "./assets/data/nsi/logos/edfrenewables-e6c8aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edfrenewables-e6c8aa.svg", "osmTags": { "and": [ "power=plant", @@ -387699,7 +387913,7 @@ }, { "question": "Edinburgh Community Solar Co-operative", - "icon": "./assets/data/nsi/logos/edinburghcommunitysolarcooperative-961ad5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edinburghcommunitysolarcooperative-961ad5.jpg", "osmTags": { "and": [ "power=plant", @@ -387714,7 +387928,7 @@ }, { "question": "Edison", - "icon": "./assets/data/nsi/logos/edison-ed757e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edison-ed757e.jpg", "osmTags": { "and": [ "power=plant", @@ -387767,7 +387981,7 @@ }, { "question": "EDP Renováveis", - "icon": "./assets/data/nsi/logos/edprenovaveis-7a0274.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-7a0274.svg", "osmTags": { "and": [ "power=plant", @@ -387784,7 +387998,7 @@ }, { "question": "EGE Haina", - "icon": "./assets/data/nsi/logos/egehaina-20d3cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/egehaina-20d3cf.png", "osmTags": { "and": [ "power=plant", @@ -387813,7 +388027,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-9c3b97.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-9c3b97.png", "osmTags": { "and": [ "power=plant", @@ -387859,7 +388073,7 @@ }, { "question": "Empresas Públicas de Medellín", - "icon": "./assets/data/nsi/logos/empresaspublicasdemedellin-eb9540.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/empresaspublicasdemedellin-eb9540.svg", "osmTags": { "and": [ "power=plant", @@ -387875,7 +388089,7 @@ }, { "question": "EnBW Energie Baden-Württemberg AG", - "icon": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-b0fa44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-b0fa44.png", "osmTags": { "and": [ "power=plant", @@ -387890,7 +388104,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-d14bb1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-d14bb1.png", "osmTags": { "and": [ "power=plant", @@ -387905,7 +388119,7 @@ }, { "question": "Eneco", - "icon": "./assets/data/nsi/logos/eneco-473e48.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneco-473e48.png", "osmTags": { "and": [ "power=plant", @@ -387920,7 +388134,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-e6c8aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-e6c8aa.png", "osmTags": { "and": [ "power=plant", @@ -387935,7 +388149,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-d43b49.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-d43b49.svg", "osmTags": { "and": [ "power=plant", @@ -387950,7 +388164,7 @@ }, { "question": "Enel Green Power España", - "icon": "./assets/data/nsi/logos/enelgreenpowerespana-d14bb1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpowerespana-d14bb1.svg", "osmTags": { "and": [ "power=plant", @@ -387974,7 +388188,7 @@ }, { "question": "Energia", - "icon": "./assets/data/nsi/logos/energia-d7adcb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energia-d7adcb.jpg", "osmTags": { "and": [ "power=plant", @@ -387989,7 +388203,7 @@ }, { "question": "Energias de Portugal", - "icon": "./assets/data/nsi/logos/energiasdeportugal-6bc5f8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-6bc5f8.svg", "osmTags": { "and": [ "power=plant", @@ -388005,7 +388219,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-e28236.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-e28236.png", "osmTags": { "and": [ "power=plant", @@ -388020,7 +388234,7 @@ }, { "question": "Énergie du Mali", - "icon": "./assets/data/nsi/logos/energiedumali-f15c91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedumali-f15c91.jpg", "osmTags": { "and": [ "power=plant", @@ -388035,7 +388249,7 @@ }, { "question": "Energo-Pro", - "icon": "./assets/data/nsi/logos/energopro-8a4876.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energopro-8a4876.png", "osmTags": { "and": [ "power=plant", @@ -388068,7 +388282,7 @@ }, { "question": "Enertrag", - "icon": "./assets/data/nsi/logos/enertrag-068479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enertrag-068479.jpg", "osmTags": { "and": [ "power=plant", @@ -388083,7 +388297,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-1c8782.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-1c8782.jpg", "osmTags": { "and": [ "power=plant", @@ -388135,7 +388349,7 @@ }, { "question": "Entergy", - "icon": "./assets/data/nsi/logos/entergy-9ec78b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergy-9ec78b.jpg", "osmTags": { "and": [ "power=plant", @@ -388150,7 +388364,7 @@ }, { "question": "Entergy Louisiana", - "icon": "./assets/data/nsi/logos/entergylouisiana-87cc41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-87cc41.jpg", "osmTags": { "and": [ "power=plant", @@ -388188,7 +388402,7 @@ }, { "question": "EPEC", - "icon": "./assets/data/nsi/logos/epec-aa40ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epec-aa40ba.jpg", "osmTags": { "and": [ "power=plant", @@ -388226,7 +388440,7 @@ }, { "question": "ESB Generation and Wholesale Markets", - "icon": "./assets/data/nsi/logos/esbgenerationandwholesalemarkets-d7adcb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/esbgenerationandwholesalemarkets-d7adcb.svg", "osmTags": { "and": [ "power=plant", @@ -388241,7 +388455,7 @@ }, { "question": "Eskom", - "icon": "./assets/data/nsi/logos/eskom-e03987.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eskom-e03987.jpg", "osmTags": { "and": [ "power=plant", @@ -388256,7 +388470,7 @@ }, { "question": "EÜAŞ", - "icon": "./assets/data/nsi/logos/euas-bd89f3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/euas-bd89f3.svg", "osmTags": { "and": [ "power=plant", @@ -388280,7 +388494,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-7ad0e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-7ad0e6.jpg", "osmTags": { "and": [ "power=plant", @@ -388309,7 +388523,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-e28236.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-e28236.jpg", "osmTags": { "and": [ "power=plant", @@ -388324,7 +388538,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-2004ec.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-2004ec.svg", "osmTags": { "and": [ "power=plant", @@ -388382,7 +388596,7 @@ }, { "question": "Exelon", - "icon": "./assets/data/nsi/logos/exelon-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/exelon-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -388439,7 +388653,7 @@ }, { "question": "Florida Power & Light", - "icon": "./assets/data/nsi/logos/floridapowerandlight-a087b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-a087b9.png", "osmTags": { "and": [ "power=plant", @@ -388463,7 +388677,7 @@ }, { "question": "Fortum", - "icon": "./assets/data/nsi/logos/fortum-b16c32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortum-b16c32.jpg", "osmTags": { "and": [ "power=plant", @@ -388603,7 +388817,7 @@ }, { "question": "GroenLeven", - "icon": "./assets/data/nsi/logos/groenleven-789671.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groenleven-789671.jpg", "osmTags": { "and": [ "power=plant", @@ -388673,7 +388887,7 @@ }, { "question": "Hoosier Energy", - "icon": "./assets/data/nsi/logos/hoosierenergy-2f6852.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoosierenergy-2f6852.jpg", "osmTags": { "and": [ "power=plant", @@ -388697,7 +388911,7 @@ }, { "question": "Hydro Energi", - "icon": "./assets/data/nsi/logos/hydroenergi-44cc7f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroenergi-44cc7f.svg", "osmTags": { "and": [ "power=plant", @@ -388712,7 +388926,7 @@ }, { "question": "Hydro Tasmania", - "icon": "./assets/data/nsi/logos/hydrotasmania-072ee3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydrotasmania-072ee3.jpg", "osmTags": { "and": [ "power=plant", @@ -388727,7 +388941,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-ca99a3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-ca99a3.png", "osmTags": { "and": [ "power=plant", @@ -388742,7 +388956,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-e6c8aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-e6c8aa.jpg", "osmTags": { "and": [ "power=plant", @@ -388766,7 +388980,7 @@ }, { "question": "Icon Water", - "icon": "./assets/data/nsi/logos/iconwater-1df8cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iconwater-1df8cd.jpg", "osmTags": { "and": [ "power=plant", @@ -388781,7 +388995,7 @@ }, { "question": "Idaho Power", - "icon": "./assets/data/nsi/logos/idahopower-02d2e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahopower-02d2e7.jpg", "osmTags": { "and": [ "power=plant", @@ -388805,7 +389019,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-e28236.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-e28236.png", "osmTags": { "and": [ "power=plant", @@ -388820,7 +389034,7 @@ }, { "question": "Imperial Irrigation District", - "icon": "./assets/data/nsi/logos/imperialirrigationdistrict-190d94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-190d94.jpg", "osmTags": { "and": [ "power=plant", @@ -388868,7 +389082,7 @@ }, { "question": "Innergex", - "icon": "./assets/data/nsi/logos/innergex-dafc6c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/innergex-dafc6c.jpg", "osmTags": { "and": [ "power=plant", @@ -388892,7 +389106,7 @@ }, { "question": "Instituto Costarricense de Electricidad", - "icon": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-3b052a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-3b052a.jpg", "osmTags": { "and": [ "power=plant", @@ -388908,7 +389122,7 @@ }, { "question": "Invenergy", - "icon": "./assets/data/nsi/logos/invenergy-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invenergy-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -388946,7 +389160,7 @@ }, { "question": "juwi", - "icon": "./assets/data/nsi/logos/juwi-b0fa44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/juwi-b0fa44.jpg", "osmTags": { "and": [ "power=plant", @@ -388975,7 +389189,7 @@ }, { "question": "KELAG", - "icon": "./assets/data/nsi/logos/kelag-5af64d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-5af64d.jpg", "osmTags": { "and": [ "power=plant", @@ -389004,7 +389218,7 @@ }, { "question": "KenGen", - "icon": "./assets/data/nsi/logos/kengen-9cf682.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kengen-9cf682.png", "osmTags": { "and": [ "power=plant", @@ -389019,7 +389233,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-190d94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-190d94.png", "osmTags": { "and": [ "power=plant", @@ -389035,7 +389249,7 @@ }, { "question": "Landsvirkjun", - "icon": "./assets/data/nsi/logos/landsvirkjun-4ac1fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landsvirkjun-4ac1fe.jpg", "osmTags": { "and": [ "power=plant", @@ -389068,7 +389282,7 @@ }, { "question": "Lightsource BP", - "icon": "./assets/data/nsi/logos/lightsourcebp-e6c8aa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lightsourcebp-e6c8aa.png", "osmTags": { "and": [ "power=plant", @@ -389083,7 +389297,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-e34e34.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-e34e34.png", "osmTags": { "and": [ "power=plant", @@ -389099,7 +389313,7 @@ }, { "question": "Luminus", - "icon": "./assets/data/nsi/logos/luminus-0e3d28.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luminus-0e3d28.jpg", "osmTags": { "and": [ "power=plant", @@ -389151,7 +389365,7 @@ }, { "question": "Manitoba Hydro", - "icon": "./assets/data/nsi/logos/manitobahydro-d2ada9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manitobahydro-d2ada9.svg", "osmTags": { "and": [ "power=plant", @@ -389166,7 +389380,7 @@ }, { "question": "Masen", - "icon": "./assets/data/nsi/logos/masen-ff30b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/masen-ff30b3.jpg", "osmTags": { "and": [ "power=plant", @@ -389195,7 +389409,7 @@ }, { "question": "Mercury Energy", - "icon": "./assets/data/nsi/logos/mercuryenergy-2bbe4e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mercuryenergy-2bbe4e.png", "osmTags": { "and": [ "power=plant", @@ -389224,7 +389438,7 @@ }, { "question": "MidAmerican Energy", - "icon": "./assets/data/nsi/logos/midamericanenergy-c2f488.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-c2f488.jpg", "osmTags": { "and": [ "power=plant", @@ -389262,7 +389476,7 @@ }, { "question": "MVM", - "icon": "./assets/data/nsi/logos/mvm-0e87a9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mvm-0e87a9.jpg", "osmTags": { "and": [ "power=plant", @@ -389286,7 +389500,7 @@ }, { "question": "Naturgy", - "icon": "./assets/data/nsi/logos/naturgy-d14bb1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/naturgy-d14bb1.jpg", "osmTags": { "and": [ "power=plant", @@ -389310,7 +389524,7 @@ }, { "question": "NB Power", - "icon": "./assets/data/nsi/logos/nbpower-ae65d1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbpower-ae65d1.svg", "osmTags": { "and": [ "power=plant", @@ -389327,7 +389541,7 @@ }, { "question": "Neoen", - "icon": "./assets/data/nsi/logos/neoen-e6c8aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoen-e6c8aa.svg", "osmTags": { "and": [ "power=plant", @@ -389342,7 +389556,7 @@ }, { "question": "New York Power Authority", - "icon": "./assets/data/nsi/logos/newyorkpowerauthority-f48e75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-f48e75.jpg", "osmTags": { "and": [ "power=plant", @@ -389358,7 +389572,7 @@ }, { "question": "Newfoundland and Labrador Hydro", - "icon": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-4775fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-4775fe.jpg", "osmTags": { "and": [ "power=plant", @@ -389373,7 +389587,7 @@ }, { "question": "Newfoundland Power", - "icon": "./assets/data/nsi/logos/newfoundlandpower-4775fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-4775fe.png", "osmTags": { "and": [ "power=plant", @@ -389388,7 +389602,7 @@ }, { "question": "NextEra Energy", - "icon": "./assets/data/nsi/logos/nexteraenergy-708d89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-708d89.png", "osmTags": { "and": [ "power=plant", @@ -389482,7 +389696,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-4700fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-4700fb.jpg", "osmTags": { "and": [ "power=plant", @@ -389497,7 +389711,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-09803b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-09803b.jpg", "osmTags": { "and": [ "power=plant", @@ -389512,7 +389726,7 @@ }, { "question": "NRG Energy", - "icon": "./assets/data/nsi/logos/nrgenergy-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nrgenergy-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -389536,7 +389750,7 @@ }, { "question": "NTE Energi", - "icon": "./assets/data/nsi/logos/nteenergi-44cc7f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nteenergi-44cc7f.png", "osmTags": { "and": [ "power=plant", @@ -389551,7 +389765,7 @@ }, { "question": "NTPC", - "icon": "./assets/data/nsi/logos/ntpc-bf89c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntpc-bf89c5.jpg", "osmTags": { "and": [ "power=plant", @@ -389575,7 +389789,7 @@ }, { "question": "Oklahoma Gas & Electric", - "icon": "./assets/data/nsi/logos/oklahomagasandelectric-66347c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-66347c.jpg", "osmTags": { "and": [ "power=plant", @@ -389591,7 +389805,7 @@ }, { "question": "Ontario Power Generation", - "icon": "./assets/data/nsi/logos/ontariopowergeneration-fa3428.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ontariopowergeneration-fa3428.svg", "osmTags": { "and": [ "power=plant", @@ -389647,7 +389861,7 @@ }, { "question": "Ørsted", - "icon": "./assets/data/nsi/logos/orsted-67f0f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orsted-67f0f6.png", "osmTags": { "and": [ "power=plant", @@ -389662,7 +389876,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-190d94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-190d94.png", "osmTags": { "and": [ "power=plant", @@ -389678,7 +389892,7 @@ }, { "question": "PacifiCorp", - "icon": "./assets/data/nsi/logos/pacificorp-2ac081.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificorp-2ac081.svg", "osmTags": { "and": [ "power=plant", @@ -389693,7 +389907,7 @@ }, { "question": "Pampa Energía", - "icon": "./assets/data/nsi/logos/pampaenergia-fe32f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pampaenergia-fe32f3.jpg", "osmTags": { "and": [ "power=plant", @@ -389732,7 +389946,7 @@ }, { "question": "PGE Polska Grupa Energetyczna S.A.", - "icon": "./assets/data/nsi/logos/pgepolskagrupaenergetycznasa-73b00d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgepolskagrupaenergetycznasa-73b00d.jpg", "osmTags": { "and": [ "power=plant", @@ -389762,7 +389976,7 @@ }, { "question": "Pioneer Energy", - "icon": "./assets/data/nsi/logos/pioneerenergy-2bbe4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pioneerenergy-2bbe4e.jpg", "osmTags": { "and": [ "power=plant", @@ -389777,7 +389991,7 @@ }, { "question": "PLN", - "icon": "./assets/data/nsi/logos/pln-db9f5e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pln-db9f5e.jpg", "osmTags": { "and": [ "power=plant", @@ -389792,7 +390006,7 @@ }, { "question": "PNM", - "icon": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-fc8452.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-fc8452.jpg", "osmTags": { "and": [ "power=plant", @@ -389808,7 +390022,7 @@ }, { "question": "Power and Water", - "icon": "./assets/data/nsi/logos/powerandwater-f6a6c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerandwater-f6a6c0.jpg", "osmTags": { "and": [ "power=plant", @@ -389861,7 +390075,7 @@ }, { "question": "Public Service Enterprise Group", - "icon": "./assets/data/nsi/logos/publicserviceenterprisegroup-06f695.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-06f695.jpg", "osmTags": { "and": [ "power=plant", @@ -389876,7 +390090,7 @@ }, { "question": "Punjab State Power Corporation", - "icon": "./assets/data/nsi/logos/punjabstatepowercorporation-bf89c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/punjabstatepowercorporation-bf89c5.jpg", "osmTags": { "and": [ "power=plant", @@ -389933,7 +390147,7 @@ }, { "question": "Renewable Energy Systems", - "icon": "./assets/data/nsi/logos/renewableenergysystems-e6c8aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/renewableenergysystems-e6c8aa.jpg", "osmTags": { "and": [ "power=plant", @@ -389949,7 +390163,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-aaca30.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-aaca30.svg", "osmTags": { "and": [ "power=plant", @@ -389964,7 +390178,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-fadf07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-fadf07.jpg", "osmTags": { "and": [ "power=plant", @@ -389988,7 +390202,7 @@ }, { "question": "Sacramento Municipal Utility District", - "icon": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-190d94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-190d94.jpg", "osmTags": { "and": [ "power=plant", @@ -390018,7 +390232,7 @@ }, { "question": "Salt River Project", - "icon": "./assets/data/nsi/logos/saltriverproject-78c78a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saltriverproject-78c78a.png", "osmTags": { "and": [ "power=plant", @@ -390048,7 +390262,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-da17ce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-da17ce.jpg", "osmTags": { "and": [ "power=plant", @@ -390063,7 +390277,7 @@ }, { "question": "Sarawak Energy", - "icon": "./assets/data/nsi/logos/sarawakenergy-6d7a7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sarawakenergy-6d7a7d.jpg", "osmTags": { "and": [ "power=plant", @@ -390078,7 +390292,7 @@ }, { "question": "SaskPower", - "icon": "./assets/data/nsi/logos/saskpower-02624c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saskpower-02624c.svg", "osmTags": { "and": [ "power=plant", @@ -390093,7 +390307,7 @@ }, { "question": "Saudi Electricity Company", - "icon": "./assets/data/nsi/logos/saudielectricitycompany-435ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/saudielectricitycompany-435ddd.jpg", "osmTags": { "and": [ "power=plant", @@ -390126,7 +390340,7 @@ }, { "question": "SHEM", - "icon": "./assets/data/nsi/logos/shem-a6c8fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/shem-a6c8fe.png", "osmTags": { "and": [ "power=plant", @@ -390141,7 +390355,7 @@ }, { "question": "Skagerak Kraft", - "icon": "./assets/data/nsi/logos/skagerakkraft-44cc7f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/skagerakkraft-44cc7f.png", "osmTags": { "and": [ "power=plant", @@ -390174,7 +390388,7 @@ }, { "question": "Slovenské elektrárne", - "icon": "./assets/data/nsi/logos/slovenskeelektrarne-074aec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskeelektrarne-074aec.png", "osmTags": { "and": [ "power=plant", @@ -390204,7 +390418,7 @@ }, { "question": "Snowy Hydro", - "icon": "./assets/data/nsi/logos/snowyhydro-225a52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/snowyhydro-225a52.jpg", "osmTags": { "and": [ "power=plant", @@ -390228,7 +390442,7 @@ }, { "question": "Sogn og Fjordane Energi", - "icon": "./assets/data/nsi/logos/sognogfjordaneenergi-44cc7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-44cc7f.jpg", "osmTags": { "and": [ "power=plant", @@ -390267,7 +390481,7 @@ }, { "question": "Sonelgaz", - "icon": "./assets/data/nsi/logos/sonelgaz-029c1e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-029c1e.jpg", "osmTags": { "and": [ "power=plant", @@ -390300,7 +390514,7 @@ }, { "question": "Southern California Edison", - "icon": "./assets/data/nsi/logos/southerncaliforniaedison-190d94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-190d94.jpg", "osmTags": { "and": [ "power=plant", @@ -390339,7 +390553,7 @@ }, { "question": "SSE (Slovensko)", - "icon": "./assets/data/nsi/logos/sse-074aec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sse-074aec.png", "osmTags": { "and": [ "power=plant", @@ -390354,7 +390568,7 @@ }, { "question": "SSE Renewables", - "icon": "./assets/data/nsi/logos/sserenewables-6adf37.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sserenewables-6adf37.svg", "osmTags": { "and": [ "power=plant", @@ -390392,7 +390606,7 @@ }, { "question": "Statkraft", - "icon": "./assets/data/nsi/logos/statkraft-fadf07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statkraft-fadf07.png", "osmTags": { "and": [ "power=plant", @@ -390416,7 +390630,7 @@ }, { "question": "SunEdison", - "icon": "./assets/data/nsi/logos/sunedison-1b79f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunedison-1b79f6.jpg", "osmTags": { "and": [ "power=plant", @@ -390520,7 +390734,7 @@ }, { "question": "Tenaga Nasional", - "icon": "./assets/data/nsi/logos/tenaganasional-6d7a7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tenaganasional-6d7a7d.png", "osmTags": { "and": [ "power=plant", @@ -390535,7 +390749,7 @@ }, { "question": "Tennessee Valley Authority", - "icon": "./assets/data/nsi/logos/tennesseevalleyauthority-2ac081.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-2ac081.png", "osmTags": { "and": [ "power=plant", @@ -390560,7 +390774,7 @@ }, { "question": "Tesla, Inc.", - "icon": "./assets/data/nsi/logos/teslainc-e6c8aa.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/teslainc-e6c8aa.svg", "osmTags": { "and": [ "power=plant", @@ -390575,7 +390789,7 @@ }, { "question": "TransAlta", - "icon": "./assets/data/nsi/logos/transalta-e6c8aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transalta-e6c8aa.jpg", "osmTags": { "and": [ "power=plant", @@ -390613,7 +390827,7 @@ }, { "question": "Trustpower", - "icon": "./assets/data/nsi/logos/trustpower-3485ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/trustpower-3485ae.jpg", "osmTags": { "and": [ "power=plant", @@ -390651,7 +390865,7 @@ }, { "question": "Uniper", - "icon": "./assets/data/nsi/logos/uniper-fadf07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniper-fadf07.png", "osmTags": { "and": [ "power=plant", @@ -390666,7 +390880,7 @@ }, { "question": "Uniper Kraftwerke", - "icon": "./assets/data/nsi/logos/uniperkraftwerke-b0fa44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-b0fa44.jpg", "osmTags": { "and": [ "power=plant", @@ -390681,7 +390895,7 @@ }, { "question": "United States Army Corps of Engineers", - "icon": "./assets/data/nsi/logos/unitedstatesarmycorpsofengineers-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesarmycorpsofengineers-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -390697,7 +390911,7 @@ }, { "question": "United States Bureau of Reclamation", - "icon": "./assets/data/nsi/logos/unitedstatesbureauofreclamation-2ac081.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatesbureauofreclamation-2ac081.png", "osmTags": { "and": [ "power=plant", @@ -390722,7 +390936,7 @@ }, { "question": "USACE Northwestern Division", - "icon": "./assets/data/nsi/logos/usacenorthwesterndivision-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/usacenorthwesterndivision-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -390737,7 +390951,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-39af9f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-39af9f.svg", "osmTags": { "and": [ "power=plant", @@ -390766,7 +390980,7 @@ }, { "question": "Valorem", - "icon": "./assets/data/nsi/logos/valorem-e1f5e6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/valorem-e1f5e6.png", "osmTags": { "and": [ "power=plant", @@ -390781,7 +390995,7 @@ }, { "question": "Vattenfall", - "icon": "./assets/data/nsi/logos/vattenfall-0e7ff4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-0e7ff4.png", "osmTags": { "and": [ "power=plant", @@ -390796,7 +391010,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-b0fa44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-b0fa44.png", "osmTags": { "and": [ "power=plant", @@ -390839,7 +391053,7 @@ }, { "question": "Veolia", - "icon": "./assets/data/nsi/logos/veolia-e6c8aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/veolia-e6c8aa.jpg", "osmTags": { "and": [ "power=plant", @@ -390854,7 +391068,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-e28236.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-e28236.jpg", "osmTags": { "and": [ "power=plant", @@ -390892,7 +391106,7 @@ }, { "question": "Viridor", - "icon": "./assets/data/nsi/logos/viridor-961ad5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viridor-961ad5.png", "osmTags": { "and": [ "power=plant", @@ -390907,7 +391121,7 @@ }, { "question": "Voltalia", - "icon": "./assets/data/nsi/logos/voltalia-12b85e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/voltalia-12b85e.jpg", "osmTags": { "and": [ "power=plant", @@ -390955,7 +391169,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-e28236.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-e28236.jpg", "osmTags": { "and": [ "power=plant", @@ -390970,7 +391184,7 @@ }, { "question": "Windkraft Simonsfeld", - "icon": "./assets/data/nsi/logos/windkraftsimonsfeld-b0af4a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/windkraftsimonsfeld-b0af4a.jpg", "osmTags": { "and": [ "power=plant", @@ -391003,7 +391217,7 @@ }, { "question": "Wisconsin Public Service Corporation", - "icon": "./assets/data/nsi/logos/wisconsinpublicservicecorporation-12c448.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wisconsinpublicservicecorporation-12c448.jpg", "osmTags": { "and": [ "power=plant", @@ -391028,7 +391242,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-2ac081.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-2ac081.jpg", "osmTags": { "and": [ "power=plant", @@ -391043,7 +391257,7 @@ }, { "question": "ZESCO", - "icon": "./assets/data/nsi/logos/zesco-07b96c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zesco-07b96c.jpg", "osmTags": { "and": [ "power=plant", @@ -391058,7 +391272,7 @@ }, { "question": "ΔΕΗ", - "icon": "./assets/data/nsi/logos/788cf3-245a70.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/788cf3-245a70.jpg", "osmTags": { "and": [ "power=plant", @@ -391096,7 +391310,7 @@ }, { "question": "Дальневосточная генерирующая компания", - "icon": "./assets/data/nsi/logos/70be46-d6d29e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/70be46-d6d29e.jpg", "osmTags": { "and": [ "power=plant", @@ -391111,7 +391325,7 @@ }, { "question": "Електропривреда Србије", - "icon": "./assets/data/nsi/logos/3ea478-b5970c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/3ea478-b5970c.svg", "osmTags": { "and": [ "power=plant", @@ -391160,7 +391374,7 @@ }, { "question": "НЕК ЕАД", - "icon": "./assets/data/nsi/logos/3b87db-becb55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/3b87db-becb55.jpg", "osmTags": { "and": [ "power=plant", @@ -391184,7 +391398,7 @@ }, { "question": "РусГидро", - "icon": "./assets/data/nsi/logos/70aabc-d6d29e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/70aabc-d6d29e.png", "osmTags": { "and": [ "power=plant", @@ -391241,7 +391455,7 @@ }, { "question": "Топлофикация Перник", - "icon": "./assets/data/nsi/logos/71a366-becb55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/71a366-becb55.jpg", "osmTags": { "and": [ "power=plant", @@ -391298,7 +391512,7 @@ }, { "question": "Топлофикация София", - "icon": "./assets/data/nsi/logos/d08e33-becb55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/d08e33-becb55.png", "osmTags": { "and": [ "power=plant", @@ -391322,7 +391536,7 @@ }, { "question": "الشركة التونسية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/763bc8-13807d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/763bc8-13807d.jpg", "osmTags": { "and": [ "power=plant", @@ -391337,7 +391551,7 @@ }, { "question": "การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย", - "icon": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-06427d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-06427d.jpg", "osmTags": { "and": [ "power=plant", @@ -391369,7 +391583,7 @@ }, { "question": "한국수력원자력", - "icon": "./assets/data/nsi/logos/7af654-02dd35.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/7af654-02dd35.svg", "osmTags": { "and": [ "power=plant", @@ -391512,7 +391726,7 @@ }, { "question": "中部電力", - "icon": "./assets/data/nsi/logos/chubuelectricpowercompany-083ddd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowercompany-083ddd.png", "osmTags": { "and": [ "power=plant", @@ -391530,7 +391744,7 @@ }, { "question": "九州電力", - "icon": "./assets/data/nsi/logos/kyushuelectricpowercompany-083ddd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowercompany-083ddd.png", "osmTags": { "and": [ "power=plant", @@ -391607,7 +391821,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/taiwanpowercompany-84e908.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanpowercompany-84e908.jpg", "osmTags": { "and": [ "power=plant", @@ -391700,7 +391914,7 @@ }, { "question": "東京電力", - "icon": "./assets/data/nsi/logos/tokyoelectricpowercompany-083ddd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tokyoelectricpowercompany-083ddd.png", "osmTags": { "and": [ "power=plant", @@ -391734,7 +391948,7 @@ }, { "question": "東北電力", - "icon": "./assets/data/nsi/logos/tohokuelectricpowercompany-083ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tohokuelectricpowercompany-083ddd.jpg", "osmTags": { "and": [ "power=plant", @@ -391812,7 +392026,7 @@ }, { "question": "関西電力", - "icon": "./assets/data/nsi/logos/kansaielectricpowercompany-083ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kansaielectricpowercompany-083ddd.jpg", "osmTags": { "and": [ "power=plant", @@ -391830,7 +392044,7 @@ }, { "question": "電源開発", - "icon": "./assets/data/nsi/logos/electricpowerdevelopmentcompany-083ddd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricpowerdevelopmentcompany-083ddd.jpg", "osmTags": { "and": [ "power=plant", @@ -391864,7 +392078,7 @@ }, { "question": "Hydro Ottawa", - "icon": "./assets/data/nsi/logos/hydroottawa-4c765c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroottawa-4c765c.svg", "osmTags": { "and": [ "power=pole", @@ -391879,7 +392093,7 @@ }, { "question": "Toronto Hydro", - "icon": "./assets/data/nsi/logos/torontohydro-4c765c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torontohydro-4c765c.jpg", "osmTags": { "and": [ "power=pole", @@ -391894,7 +392108,7 @@ }, { "question": "4-County Electric Power Association", - "icon": "./assets/data/nsi/logos/4countyelectricpowerassociation-ac8329.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/4countyelectricpowerassociation-ac8329.jpg", "osmTags": { "and": [ "power=pole", @@ -391909,7 +392123,7 @@ }, { "question": "50Hertz Transmission", - "icon": "./assets/data/nsi/logos/50hertztransmission-c94250.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-c94250.svg", "osmTags": { "and": [ "power=pole", @@ -391924,7 +392138,7 @@ }, { "question": "Å Energi Vannkraft", - "icon": "./assets/data/nsi/logos/aenergivannkraft-05f310.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-05f310.jpg", "osmTags": { "and": [ "power=pole", @@ -391939,7 +392153,7 @@ }, { "question": "Adif", - "icon": "./assets/data/nsi/logos/adif-139d53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adif-139d53.jpg", "osmTags": { "and": [ "power=pole", @@ -391954,7 +392168,7 @@ }, { "question": "AEK", - "icon": "./assets/data/nsi/logos/aek-d1325e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aek-d1325e.jpg", "osmTags": { "and": [ "power=pole", @@ -391969,7 +392183,7 @@ }, { "question": "AEP Ohio", - "icon": "./assets/data/nsi/logos/aepohio-55b3e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aepohio-55b3e4.png", "osmTags": { "and": [ "power=pole", @@ -391984,7 +392198,7 @@ }, { "question": "AEP Texas", - "icon": "./assets/data/nsi/logos/aeptexas-b4c145.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aeptexas-b4c145.png", "osmTags": { "and": [ "power=pole", @@ -391999,7 +392213,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-d84880.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-d84880.png", "osmTags": { "and": [ "power=pole", @@ -392014,7 +392228,7 @@ }, { "question": "AEW", - "icon": "./assets/data/nsi/logos/aew-6b178d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aew-6b178d.png", "osmTags": { "and": [ "power=pole", @@ -392038,7 +392252,7 @@ }, { "question": "Agder Energi", - "icon": "./assets/data/nsi/logos/agderenergi-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agderenergi-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -392062,7 +392276,7 @@ }, { "question": "Aktiengesellschaft für Versorgungsunternehmen", - "icon": "./assets/data/nsi/logos/aktiengesellschaftfurversorgungsunternehmen-bf3b54.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aktiengesellschaftfurversorgungsunternehmen-bf3b54.svg", "osmTags": { "and": [ "power=pole", @@ -392078,7 +392292,7 @@ }, { "question": "Alabama Power", - "icon": "./assets/data/nsi/logos/alabamapower-58f3ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamapower-58f3ef.jpg", "osmTags": { "and": [ "power=pole", @@ -392107,7 +392321,7 @@ }, { "question": "Allgäuer Überlandwerk", - "icon": "./assets/data/nsi/logos/allgaueruberlandwerk-f24b12.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-f24b12.png", "osmTags": { "and": [ "power=pole", @@ -392123,7 +392337,7 @@ }, { "question": "Alliant Energy", - "icon": "./assets/data/nsi/logos/alliantenergy-777c2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alliantenergy-777c2a.png", "osmTags": { "and": [ "frequency=60", @@ -392148,7 +392362,7 @@ }, { "question": "AltaLink", - "icon": "./assets/data/nsi/logos/altalink-70d480.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altalink-70d480.jpg", "osmTags": { "and": [ "power=pole", @@ -392209,7 +392423,7 @@ }, { "question": "Ameren", - "icon": "./assets/data/nsi/logos/ameren-395973.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameren-395973.png", "osmTags": { "and": [ "frequency=60", @@ -392239,7 +392453,7 @@ }, { "question": "American Electric Power", - "icon": "./assets/data/nsi/logos/americanelectricpower-777c2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-777c2a.png", "osmTags": { "and": [ "power=pole", @@ -392283,7 +392497,7 @@ }, { "question": "Amprion", - "icon": "./assets/data/nsi/logos/amprion-c94250.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/amprion-c94250.svg", "osmTags": { "and": [ "power=pole", @@ -392298,7 +392512,7 @@ }, { "question": "Amtrak", - "icon": "./assets/data/nsi/logos/amtrak-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtrak-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -392313,7 +392527,7 @@ }, { "question": "Anaheim Public Utilities", - "icon": "./assets/data/nsi/logos/anaheimpublicutilities-4d73bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-4d73bd.png", "osmTags": { "and": [ "power=pole", @@ -392328,7 +392542,7 @@ }, { "question": "ANDE", - "icon": "./assets/data/nsi/logos/ande-839b81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ande-839b81.jpg", "osmTags": { "and": [ "power=pole", @@ -392357,7 +392571,7 @@ }, { "question": "Appalachian Power", - "icon": "./assets/data/nsi/logos/appalachianpowercompany-a9fd36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-a9fd36.png", "osmTags": { "and": [ "power=pole", @@ -392395,7 +392609,7 @@ }, { "question": "Arizona Public Service", - "icon": "./assets/data/nsi/logos/arizonapublicservice-4d7f6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-4d7f6d.png", "osmTags": { "and": [ "power=pole", @@ -392424,7 +392638,7 @@ }, { "question": "Arkansas Valley Electric Cooperative", - "icon": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-ab0eee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-ab0eee.jpg", "osmTags": { "and": [ "power=pole", @@ -392453,7 +392667,7 @@ }, { "question": "ATCO Electric", - "icon": "./assets/data/nsi/logos/atcoelectric-d8b98b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atcoelectric-d8b98b.svg", "osmTags": { "and": [ "power=pole", @@ -392468,7 +392682,7 @@ }, { "question": "ATEL", - "icon": "./assets/data/nsi/logos/atel-4b9791.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atel-4b9791.svg", "osmTags": { "and": [ "power=pole", @@ -392483,7 +392697,7 @@ }, { "question": "Atlantic City Electric", - "icon": "./assets/data/nsi/logos/atlanticcityelectric-af79fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-af79fb.jpg", "osmTags": { "and": [ "power=pole", @@ -392498,7 +392712,7 @@ }, { "question": "Augstsprieguma tīkls", - "icon": "./assets/data/nsi/logos/augstspriegumatikls-b1384e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-b1384e.png", "osmTags": { "and": [ "power=pole", @@ -392513,7 +392727,7 @@ }, { "question": "Ausgrid", - "icon": "./assets/data/nsi/logos/ausgrid-e2ed89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausgrid-e2ed89.jpg", "osmTags": { "and": [ "power=pole", @@ -392528,7 +392742,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-b4c145.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-b4c145.jpg", "osmTags": { "and": [ "power=pole", @@ -392557,7 +392771,7 @@ }, { "question": "Avacon Netz", - "icon": "./assets/data/nsi/logos/avaconnetz-b411b9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avaconnetz-b411b9.svg", "osmTags": { "and": [ "power=pole", @@ -392572,7 +392786,7 @@ }, { "question": "Avista", - "icon": "./assets/data/nsi/logos/avista-cafee1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avista-cafee1.jpg", "osmTags": { "and": [ "power=pole", @@ -392587,7 +392801,7 @@ }, { "question": "Axpo", - "icon": "./assets/data/nsi/logos/axpo-fbb9cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axpo-fbb9cb.jpg", "osmTags": { "and": [ "power=pole", @@ -392611,7 +392825,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-39a21c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-39a21c.jpg", "osmTags": { "and": [ "frequency=60", @@ -392650,7 +392864,7 @@ }, { "question": "Bayernwerk", - "icon": "./assets/data/nsi/logos/bayernwerk-6fe3c7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayernwerk-6fe3c7.svg", "osmTags": { "and": [ "power=pole", @@ -392665,7 +392879,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-f4e8ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-f4e8ab.jpg", "osmTags": { "and": [ "power=pole", @@ -392703,7 +392917,7 @@ }, { "question": "Belize Electricity Limited", - "icon": "./assets/data/nsi/logos/belizeelectricitylimited-2d1f01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-2d1f01.jpg", "osmTags": { "and": [ "power=pole", @@ -392746,7 +392960,7 @@ }, { "question": "BKK", - "icon": "./assets/data/nsi/logos/bkk-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bkk-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -392761,7 +392975,7 @@ }, { "question": "BKW", - "icon": "./assets/data/nsi/logos/bkw-84ac21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bkw-84ac21.png", "osmTags": { "and": [ "power=pole", @@ -392791,7 +393005,7 @@ }, { "question": "Blue Ridge Energy", - "icon": "./assets/data/nsi/logos/blueridgeenergy-97b3a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-97b3a1.jpg", "osmTags": { "and": [ "power=pole", @@ -392806,7 +393020,7 @@ }, { "question": "Bonneville Power Administration", - "icon": "./assets/data/nsi/logos/bonnevillepoweradministration-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -392822,7 +393036,7 @@ }, { "question": "Bornholms Energi & Forsyning", - "icon": "./assets/data/nsi/logos/bornholmsenergiandforsyning-fcd4fa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-fcd4fa.jpg", "osmTags": { "and": [ "power=pole", @@ -392880,7 +393094,7 @@ }, { "question": "BrightRidge", - "icon": "./assets/data/nsi/logos/brightridge-ef3bf9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightridge-ef3bf9.jpg", "osmTags": { "and": [ "power=pole", @@ -392904,7 +393118,7 @@ }, { "question": "Bryan Texas Utilities", - "icon": "./assets/data/nsi/logos/bryantexasutilities-b4c145.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-b4c145.jpg", "osmTags": { "and": [ "power=pole", @@ -392919,7 +393133,7 @@ }, { "question": "Burgenland Energie", - "icon": "./assets/data/nsi/logos/burgenlandenergieag-1b1e2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-1b1e2a.jpg", "osmTags": { "and": [ "power=pole", @@ -392943,7 +393157,7 @@ }, { "question": "Capital Power", - "icon": "./assets/data/nsi/logos/capitalpower-84ef3e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalpower-84ef3e.jpg", "osmTags": { "and": [ "power=pole", @@ -392972,7 +393186,7 @@ }, { "question": "Caruna", - "icon": "./assets/data/nsi/logos/caruna-48367d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caruna-48367d.svg", "osmTags": { "and": [ "power=pole", @@ -392987,7 +393201,7 @@ }, { "question": "CDEEE", - "icon": "./assets/data/nsi/logos/cdeee-1128d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cdeee-1128d3.jpg", "osmTags": { "and": [ "power=pole", @@ -393002,7 +393216,7 @@ }, { "question": "CEEE", - "icon": "./assets/data/nsi/logos/ceee-0aa22a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceee-0aa22a.svg", "osmTags": { "and": [ "power=pole", @@ -393031,7 +393245,7 @@ }, { "question": "Celesc", - "icon": "./assets/data/nsi/logos/celesc-0aa22a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celesc-0aa22a.jpg", "osmTags": { "and": [ "power=pole", @@ -393055,7 +393269,7 @@ }, { "question": "Cemig", - "icon": "./assets/data/nsi/logos/cemig-0aa22a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cemig-0aa22a.jpg", "osmTags": { "and": [ "power=pole", @@ -393070,7 +393284,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -393099,7 +393313,7 @@ }, { "question": "Central Maine Power Company", - "icon": "./assets/data/nsi/logos/centralmainepowercompany-360ef7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-360ef7.jpg", "osmTags": { "and": [ "power=pole", @@ -393123,7 +393337,7 @@ }, { "question": "ČEPS", - "icon": "./assets/data/nsi/logos/ceps-cbe952.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceps-cbe952.jpg", "osmTags": { "and": [ "power=pole", @@ -393138,7 +393352,7 @@ }, { "question": "CERN", - "icon": "./assets/data/nsi/logos/cern-b7887d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cern-b7887d.jpg", "osmTags": { "and": [ "power=pole", @@ -393162,7 +393376,7 @@ }, { "question": "Ceylon Electricity Board", - "icon": "./assets/data/nsi/logos/ceylonelectricityboard-e5850e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-e5850e.png", "osmTags": { "and": [ "power=pole", @@ -393201,7 +393415,7 @@ }, { "question": "CGE", - "icon": "./assets/data/nsi/logos/cge-565432.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cge-565432.jpg", "osmTags": { "and": [ "power=pole", @@ -393252,7 +393466,7 @@ }, { "question": "CIPCO", - "icon": "./assets/data/nsi/logos/cipco-205a74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cipco-205a74.jpg", "osmTags": { "and": [ "frequency=60", @@ -393268,7 +393482,7 @@ }, { "question": "City of Ames", - "icon": "./assets/data/nsi/logos/cityofames-205a74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofames-205a74.jpg", "osmTags": { "and": [ "power=pole", @@ -393283,7 +393497,7 @@ }, { "question": "City of Concord", - "icon": "./assets/data/nsi/logos/cityofconcord-97b3a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofconcord-97b3a1.png", "osmTags": { "and": [ "power=pole", @@ -393298,7 +393512,7 @@ }, { "question": "City of Elizabeth", - "icon": "./assets/data/nsi/logos/cityofelizabeth-97b3a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofelizabeth-97b3a1.jpg", "osmTags": { "and": [ "power=pole", @@ -393336,7 +393550,7 @@ }, { "question": "City of High Point", - "icon": "./assets/data/nsi/logos/cityofhighpoint-97b3a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhighpoint-97b3a1.jpg", "osmTags": { "and": [ "power=pole", @@ -393351,7 +393565,7 @@ }, { "question": "City of Lakeland", - "icon": "./assets/data/nsi/logos/cityoflakeland-7b79c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-7b79c3.png", "osmTags": { "and": [ "power=pole", @@ -393366,7 +393580,7 @@ }, { "question": "City of Lexington", - "icon": "./assets/data/nsi/logos/cityoflexington-97b3a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflexington-97b3a1.jpg", "osmTags": { "and": [ "power=pole", @@ -393381,7 +393595,7 @@ }, { "question": "City of Natchitoches", - "icon": "./assets/data/nsi/logos/cityofnatchitoches-16cc25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnatchitoches-16cc25.jpg", "osmTags": { "and": [ "power=pole", @@ -393438,7 +393652,7 @@ }, { "question": "City of Tallahassee", - "icon": "./assets/data/nsi/logos/cityoftallahassee-7b79c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-7b79c3.jpg", "osmTags": { "and": [ "power=pole", @@ -393490,7 +393704,7 @@ }, { "question": "Clark Public Utilities", - "icon": "./assets/data/nsi/logos/clarkpublicutilities-30bece.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-30bece.jpg", "osmTags": { "and": [ "power=pole", @@ -393514,7 +393728,7 @@ }, { "question": "Clay Electric Cooperative", - "icon": "./assets/data/nsi/logos/clayelectriccooperative-7b79c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-7b79c3.jpg", "osmTags": { "and": [ "power=pole", @@ -393529,7 +393743,7 @@ }, { "question": "CLECO", - "icon": "./assets/data/nsi/logos/cleco-16cc25.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleco-16cc25.svg", "osmTags": { "and": [ "power=pole", @@ -393544,7 +393758,7 @@ }, { "question": "Cleveland Public Power", - "icon": "./assets/data/nsi/logos/clevelandpublicpower-55b3e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandpublicpower-55b3e4.jpg", "osmTags": { "and": [ "power=pole", @@ -393613,7 +393827,7 @@ }, { "question": "CNR", - "icon": "./assets/data/nsi/logos/cnr-1716c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cnr-1716c3.jpg", "osmTags": { "and": [ "power=pole", @@ -393628,7 +393842,7 @@ }, { "question": "Codelco Chile", - "icon": "./assets/data/nsi/logos/codelcochile-565432.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/codelcochile-565432.jpg", "osmTags": { "and": [ "power=pole", @@ -393643,7 +393857,7 @@ }, { "question": "Coelba", - "icon": "./assets/data/nsi/logos/coelba-0aa22a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coelba-0aa22a.png", "osmTags": { "and": [ "power=pole", @@ -393658,7 +393872,7 @@ }, { "question": "Colbún", - "icon": "./assets/data/nsi/logos/colbun-565432.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colbun-565432.jpg", "osmTags": { "and": [ "power=pole", @@ -393673,7 +393887,7 @@ }, { "question": "Colorado Springs Utilities", - "icon": "./assets/data/nsi/logos/coloradospringsutilities-1103f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-1103f4.jpg", "osmTags": { "and": [ "power=pole", @@ -393697,7 +393911,7 @@ }, { "question": "Comisión Federal de Electricidad", - "icon": "./assets/data/nsi/logos/comisionfederaldeelectricidad-c496a2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-c496a2.png", "osmTags": { "and": [ "power=pole", @@ -393713,7 +393927,7 @@ }, { "question": "Commonwealth Edison", - "icon": "./assets/data/nsi/logos/commonwealthedison-82293c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-82293c.jpg", "osmTags": { "and": [ "power=pole", @@ -393805,7 +394019,7 @@ }, { "question": "Consolidated Edison", - "icon": "./assets/data/nsi/logos/consolidatededison-08de41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consolidatededison-08de41.jpg", "osmTags": { "and": [ "power=pole", @@ -393834,7 +394048,7 @@ }, { "question": "Consumers Energy", - "icon": "./assets/data/nsi/logos/consumersenergy-b11ee8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumersenergy-b11ee8.png", "osmTags": { "and": [ "power=pole", @@ -393863,7 +394077,7 @@ }, { "question": "Copel", - "icon": "./assets/data/nsi/logos/copel-0aa22a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copel-0aa22a.jpg", "osmTags": { "and": [ "power=pole", @@ -393878,7 +394092,7 @@ }, { "question": "Corn Belt Power Cooperative", - "icon": "./assets/data/nsi/logos/cornbeltpowercooperative-205a74.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-205a74.jpg", "osmTags": { "and": [ "frequency=60", @@ -393894,7 +394108,7 @@ }, { "question": "Corpoelec", - "icon": "./assets/data/nsi/logos/corpoelec-1a0ccd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/corpoelec-1a0ccd.jpg", "osmTags": { "and": [ "power=pole", @@ -393909,7 +394123,7 @@ }, { "question": "Cosern", - "icon": "./assets/data/nsi/logos/cosern-0aa22a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cosern-0aa22a.png", "osmTags": { "and": [ "power=pole", @@ -393924,7 +394138,7 @@ }, { "question": "Counties Energy", - "icon": "./assets/data/nsi/logos/countiesenergy-54adcf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countiesenergy-54adcf.png", "osmTags": { "and": [ "power=pole", @@ -393948,7 +394162,7 @@ }, { "question": "CPFL Energia", - "icon": "./assets/data/nsi/logos/cpflenergia-0aa22a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cpflenergia-0aa22a.png", "osmTags": { "and": [ "power=pole", @@ -393972,7 +394186,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-b4c145.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-b4c145.jpg", "osmTags": { "and": [ "power=pole", @@ -394024,7 +394238,7 @@ }, { "question": "Cullman Electric Cooperative", - "icon": "./assets/data/nsi/logos/cullmanelectriccooperative-58f3ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-58f3ef.png", "osmTags": { "and": [ "power=pole", @@ -394039,7 +394253,7 @@ }, { "question": "Dairyland Power Cooperative", - "icon": "./assets/data/nsi/logos/dairylandpowercooperative-207d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-207d2e.jpg", "osmTags": { "and": [ "power=pole", @@ -394081,7 +394295,7 @@ }, { "question": "Dayton Power & Light", - "icon": "./assets/data/nsi/logos/daytonpowerandlight-55b3e4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daytonpowerandlight-55b3e4.png", "osmTags": { "and": [ "power=pole", @@ -394097,7 +394311,7 @@ }, { "question": "DB Energie", - "icon": "./assets/data/nsi/logos/dbenergie-c94250.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbenergie-c94250.svg", "osmTags": { "and": [ "power=pole", @@ -394112,7 +394326,7 @@ }, { "question": "Decatur Utilities", - "icon": "./assets/data/nsi/logos/decaturutilities-58f3ef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/decaturutilities-58f3ef.png", "osmTags": { "and": [ "power=pole", @@ -394127,7 +394341,7 @@ }, { "question": "Delmarva Power", - "icon": "./assets/data/nsi/logos/delmarvapower-92a207.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delmarvapower-92a207.jpg", "osmTags": { "and": [ "power=pole", @@ -394142,7 +394356,7 @@ }, { "question": "DEMCO", - "icon": "./assets/data/nsi/logos/demco-16cc25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/demco-16cc25.jpg", "osmTags": { "and": [ "power=pole", @@ -394184,7 +394398,7 @@ }, { "question": "Dominion Energy", - "icon": "./assets/data/nsi/logos/dominionenergy-72e7ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dominionenergy-72e7ed.png", "osmTags": { "and": [ "power=pole", @@ -394213,7 +394427,7 @@ }, { "question": "Dow Chemical Company", - "icon": "./assets/data/nsi/logos/dowchemicalcompany-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -394228,7 +394442,7 @@ }, { "question": "DTE Electric Company", - "icon": "./assets/data/nsi/logos/dteelectriccompany-b11ee8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-b11ee8.png", "osmTags": { "and": [ "power=pole", @@ -394243,7 +394457,7 @@ }, { "question": "DTE Energy", - "icon": "./assets/data/nsi/logos/dteenergy-b11ee8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteenergy-b11ee8.png", "osmTags": { "and": [ "power=pole", @@ -394273,7 +394487,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-a13928.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-a13928.jpg", "osmTags": { "and": [ "power=pole", @@ -394288,7 +394502,7 @@ }, { "question": "Duke Energy Progress", - "icon": "./assets/data/nsi/logos/dukeenergyprogress-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -394303,7 +394517,7 @@ }, { "question": "Duquesne Light", - "icon": "./assets/data/nsi/logos/duquesnelight-c65a21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duquesnelight-c65a21.jpg", "osmTags": { "and": [ "power=pole", @@ -394318,7 +394532,7 @@ }, { "question": "E-REDES", - "icon": "./assets/data/nsi/logos/eredes-0223fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eredes-0223fd.png", "osmTags": { "and": [ "power=pole", @@ -394333,7 +394547,7 @@ }, { "question": "E.DIS Netz GmbH", - "icon": "./assets/data/nsi/logos/edisnetzgmbh-ee88bc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-ee88bc.jpg", "osmTags": { "and": [ "power=pole", @@ -394375,7 +394589,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-90f5bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-90f5bd.png", "osmTags": { "and": [ "power=pole", @@ -394390,7 +394604,7 @@ }, { "question": "E.ON Mitte", - "icon": "./assets/data/nsi/logos/eonmitte-c94250.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonmitte-c94250.svg", "osmTags": { "and": [ "power=pole", @@ -394405,7 +394619,7 @@ }, { "question": "E.ON Netz", - "icon": "./assets/data/nsi/logos/eonnetz-c94250.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonnetz-c94250.svg", "osmTags": { "and": [ "power=pole", @@ -394420,7 +394634,7 @@ }, { "question": "E.ON Westfalen Weser", - "icon": "./assets/data/nsi/logos/eonwestfalenweser-c94250.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonwestfalenweser-c94250.svg", "osmTags": { "and": [ "power=pole", @@ -394435,7 +394649,7 @@ }, { "question": "East Kentucky Power Cooperative", - "icon": "./assets/data/nsi/logos/eastkentuckypowercooperative-3de8e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-3de8e2.jpg", "osmTags": { "and": [ "power=pole", @@ -394450,7 +394664,7 @@ }, { "question": "East River Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/eastriverelectricpowercooperative-62cd2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-62cd2a.jpg", "osmTags": { "and": [ "power=pole", @@ -394497,7 +394711,7 @@ }, { "question": "Edenor", - "icon": "./assets/data/nsi/logos/edenor-29b430.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edenor-29b430.jpg", "osmTags": { "and": [ "power=pole", @@ -394530,7 +394744,7 @@ }, { "question": "EDP Espírito Santo", - "icon": "./assets/data/nsi/logos/edpespiritosanto-8ceb0b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-8ceb0b.svg", "osmTags": { "and": [ "power=pole", @@ -394560,7 +394774,7 @@ }, { "question": "EDP Renováveis", - "icon": "./assets/data/nsi/logos/edprenovaveis-c7ec1c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-c7ec1c.svg", "osmTags": { "and": [ "power=pole", @@ -394577,7 +394791,7 @@ }, { "question": "EDP São Paulo", - "icon": "./assets/data/nsi/logos/edpsaopaulo-0aa22a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-0aa22a.jpg", "osmTags": { "and": [ "power=pole", @@ -394610,7 +394824,7 @@ }, { "question": "EG.D", - "icon": "./assets/data/nsi/logos/egd-51167e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/egd-51167e.svg", "osmTags": { "and": [ "power=pole", @@ -394648,7 +394862,7 @@ }, { "question": "EirGrid", - "icon": "./assets/data/nsi/logos/eirgrid-90059a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eirgrid-90059a.jpg", "osmTags": { "and": [ "power=pole", @@ -394663,7 +394877,7 @@ }, { "question": "EKT", - "icon": "./assets/data/nsi/logos/ekt-55fe6e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekt-55fe6e.jpg", "osmTags": { "and": [ "power=pole", @@ -394707,7 +394921,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-90f5bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-90f5bd.png", "osmTags": { "and": [ "power=pole", @@ -394753,7 +394967,7 @@ }, { "question": "Electricity North West", - "icon": "./assets/data/nsi/logos/electricitynorthwest-054628.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-054628.jpg", "osmTags": { "and": [ "power=pole", @@ -394777,7 +394991,7 @@ }, { "question": "Elektrilevi", - "icon": "./assets/data/nsi/logos/elektrilevi-c438ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrilevi-c438ae.png", "osmTags": { "and": [ "power=pole", @@ -394836,7 +395050,7 @@ }, { "question": "Elenia", - "icon": "./assets/data/nsi/logos/elenia-48367d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elenia-48367d.jpg", "osmTags": { "and": [ "power=pole", @@ -394851,7 +395065,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-c438ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-c438ae.jpg", "osmTags": { "and": [ "power=pole", @@ -394927,7 +395141,7 @@ }, { "question": "Eletropaulo", - "icon": "./assets/data/nsi/logos/eletropaulo-0aa22a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eletropaulo-0aa22a.svg", "osmTags": { "and": [ "power=pole", @@ -394956,7 +395170,7 @@ }, { "question": "Elia", - "icon": "./assets/data/nsi/logos/elia-c39316.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elia-c39316.png", "osmTags": { "and": [ "power=pole", @@ -394985,7 +395199,7 @@ }, { "question": "Ellevio", - "icon": "./assets/data/nsi/logos/ellevio-cbf906.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ellevio-cbf906.png", "osmTags": { "and": [ "power=pole", @@ -395014,7 +395228,7 @@ }, { "question": "ELMŰ", - "icon": "./assets/data/nsi/logos/elmu-294d85.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elmu-294d85.png", "osmTags": { "and": [ "power=pole", @@ -395029,7 +395243,7 @@ }, { "question": "Elvia", - "icon": "./assets/data/nsi/logos/elvia-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elvia-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -395072,7 +395286,7 @@ }, { "question": "Emerald People's Utility District", - "icon": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-8c99ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-8c99ae.png", "osmTags": { "and": [ "power=pole", @@ -395106,7 +395320,7 @@ }, { "question": "Endeavour Energy", - "icon": "./assets/data/nsi/logos/endeavourenergy-e2ed89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-e2ed89.jpg", "osmTags": { "and": [ "power=pole", @@ -395121,7 +395335,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-139d53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-139d53.png", "osmTags": { "and": [ "power=pole", @@ -395136,7 +395350,7 @@ }, { "question": "Enea", - "icon": "./assets/data/nsi/logos/enea-7d29f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enea-7d29f7.png", "osmTags": { "and": [ "power=pole", @@ -395151,7 +395365,7 @@ }, { "question": "Enedis", - "icon": "./assets/data/nsi/logos/enedis-76dcb2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enedis-76dcb2.png", "osmTags": { "and": [ "power=pole", @@ -395175,7 +395389,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-90f5bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-90f5bd.png", "osmTags": { "and": [ "power=pole", @@ -395190,7 +395404,7 @@ }, { "question": "Enel Distribuição Ceará", - "icon": "./assets/data/nsi/logos/eneldistribuicaoceara-0aa22a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-0aa22a.png", "osmTags": { "and": [ "power=pole", @@ -395219,7 +395433,7 @@ }, { "question": "Enel Distribuição São Paulo", - "icon": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-0aa22a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-0aa22a.svg", "osmTags": { "and": [ "power=pole", @@ -395234,7 +395448,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-90f5bd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-90f5bd.svg", "osmTags": { "and": [ "power=pole", @@ -395272,7 +395486,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-7d29f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-7d29f7.png", "osmTags": { "and": [ "power=pole", @@ -395296,7 +395510,7 @@ }, { "question": "Energex", - "icon": "./assets/data/nsi/logos/energex-79d5c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energex-79d5c9.jpg", "osmTags": { "and": [ "power=pole", @@ -395311,7 +395525,7 @@ }, { "question": "Energias de Portugal", - "icon": "./assets/data/nsi/logos/energiasdeportugal-0223fd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-0223fd.svg", "osmTags": { "and": [ "power=pole", @@ -395327,7 +395541,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-3edee5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-3edee5.jpg", "osmTags": { "and": [ "power=pole", @@ -395342,7 +395556,7 @@ }, { "question": "Énergie du Mali", - "icon": "./assets/data/nsi/logos/energiedumali-4c0493.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedumali-4c0493.jpg", "osmTags": { "and": [ "power=pole", @@ -395375,7 +395589,7 @@ }, { "question": "Energieversorgung Mittelrhein", - "icon": "./assets/data/nsi/logos/energieversorgungmittelrhein-b1071a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-b1071a.jpg", "osmTags": { "and": [ "power=pole", @@ -395400,7 +395614,7 @@ }, { "question": "Energinet", - "icon": "./assets/data/nsi/logos/energinet-677094.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energinet-677094.png", "osmTags": { "and": [ "power=pole", @@ -395480,7 +395694,7 @@ }, { "question": "Energy Fiji Limited", - "icon": "./assets/data/nsi/logos/energyfijilimited-fbc365.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-fbc365.png", "osmTags": { "and": [ "power=pole", @@ -395519,7 +395733,7 @@ }, { "question": "Enertrag", - "icon": "./assets/data/nsi/logos/enertrag-cab1db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enertrag-cab1db.jpg", "osmTags": { "and": [ "power=pole", @@ -395548,7 +395762,7 @@ }, { "question": "Enexis", - "icon": "./assets/data/nsi/logos/enexis-42ab8c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enexis-42ab8c.png", "osmTags": { "and": [ "power=pole", @@ -395563,7 +395777,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-90f5bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-90f5bd.jpg", "osmTags": { "and": [ "power=pole", @@ -395592,7 +395806,7 @@ }, { "question": "ENMAX", - "icon": "./assets/data/nsi/logos/enmax-70d480.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmax-70d480.png", "osmTags": { "and": [ "power=pole", @@ -395607,7 +395821,7 @@ }, { "question": "Ente Provincial de Energía del Neuquén", - "icon": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-ff0414.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-ff0414.png", "osmTags": { "and": [ "power=pole", @@ -395622,7 +395836,7 @@ }, { "question": "Entergy", - "icon": "./assets/data/nsi/logos/entergy-f574d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergy-f574d5.jpg", "osmTags": { "and": [ "power=pole", @@ -395637,7 +395851,7 @@ }, { "question": "Entergy Arkansas", - "icon": "./assets/data/nsi/logos/entergyarkansas-ab0eee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-ab0eee.jpg", "osmTags": { "and": [ "power=pole", @@ -395652,7 +395866,7 @@ }, { "question": "Entergy Louisiana", - "icon": "./assets/data/nsi/logos/entergylouisiana-acd049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-acd049.jpg", "osmTags": { "and": [ "power=pole", @@ -395695,7 +395909,7 @@ }, { "question": "enviaM", - "icon": "./assets/data/nsi/logos/enviam-211376.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enviam-211376.png", "osmTags": { "and": [ "power=pole", @@ -395710,7 +395924,7 @@ }, { "question": "EPB", - "icon": "./assets/data/nsi/logos/epb-727709.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epb-727709.jpg", "osmTags": { "and": [ "power=pole", @@ -395725,7 +395939,7 @@ }, { "question": "EPCOR", - "icon": "./assets/data/nsi/logos/epcor-e09e4b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epcor-e09e4b.jpg", "osmTags": { "and": [ "power=pole", @@ -395740,7 +395954,7 @@ }, { "question": "EPEC", - "icon": "./assets/data/nsi/logos/epec-62812c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epec-62812c.jpg", "osmTags": { "and": [ "power=pole", @@ -395848,7 +396062,7 @@ }, { "question": "Equatorial Energia Piauí", - "icon": "./assets/data/nsi/logos/equatorialenergiapiaui-c83cbe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-c83cbe.jpg", "osmTags": { "and": [ "power=pole", @@ -395863,7 +396077,7 @@ }, { "question": "Ergon Energy", - "icon": "./assets/data/nsi/logos/ergonenergy-79d5c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ergonenergy-79d5c9.jpg", "osmTags": { "and": [ "power=pole", @@ -395878,7 +396092,7 @@ }, { "question": "ESB Networks", - "icon": "./assets/data/nsi/logos/esbnetworks-90059a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esbnetworks-90059a.png", "osmTags": { "and": [ "power=pole", @@ -395902,7 +396116,7 @@ }, { "question": "Eskom", - "icon": "./assets/data/nsi/logos/eskom-f94165.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eskom-f94165.jpg", "osmTags": { "and": [ "power=pole", @@ -395917,7 +396131,7 @@ }, { "question": "Essential Energy", - "icon": "./assets/data/nsi/logos/essentialenergy-4411dc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentialenergy-4411dc.jpg", "osmTags": { "and": [ "power=pole", @@ -395932,7 +396146,7 @@ }, { "question": "Eswatini Electricity Company", - "icon": "./assets/data/nsi/logos/eswatinielectricitycompany-6e9fe5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eswatinielectricitycompany-6e9fe5.png", "osmTags": { "and": [ "power=pole", @@ -395957,7 +396171,7 @@ }, { "question": "Ethiopian Electric Power", - "icon": "./assets/data/nsi/logos/ethiopianelectricpower-d64a98.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-d64a98.png", "osmTags": { "and": [ "power=pole", @@ -395982,7 +396196,7 @@ }, { "question": "Eugene Water & Electric Board", - "icon": "./assets/data/nsi/logos/eugenewaterandelectricboard-8c99ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-8c99ae.jpg", "osmTags": { "and": [ "power=pole", @@ -395998,7 +396212,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-fbf835.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-fbf835.jpg", "osmTags": { "and": [ "frequency=60", @@ -396014,7 +396228,7 @@ }, { "question": "Eversource", - "icon": "./assets/data/nsi/logos/eversource-d83c76.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eversource-d83c76.png", "osmTags": { "and": [ "power=pole", @@ -396043,7 +396257,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-3edee5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-3edee5.jpg", "osmTags": { "and": [ "power=pole", @@ -396058,7 +396272,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-5e319c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-5e319c.svg", "osmTags": { "and": [ "power=pole", @@ -396083,7 +396297,7 @@ }, { "question": "EVS", - "icon": "./assets/data/nsi/logos/evs-bf3b54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evs-bf3b54.png", "osmTags": { "and": [ "power=pole", @@ -396098,7 +396312,7 @@ }, { "question": "EWZ", - "icon": "./assets/data/nsi/logos/ewz-84ac21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewz-84ac21.jpg", "osmTags": { "and": [ "power=pole", @@ -396113,7 +396327,7 @@ }, { "question": "Fagne", - "icon": "./assets/data/nsi/logos/fagne-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fagne-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -396128,7 +396342,7 @@ }, { "question": "Fayetteville Public Works Commission", - "icon": "./assets/data/nsi/logos/fayettevillepublicworkscommission-97b3a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-97b3a1.jpg", "osmTags": { "and": [ "power=pole", @@ -396158,7 +396372,7 @@ }, { "question": "Fingrid", - "icon": "./assets/data/nsi/logos/fingrid-48367d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fingrid-48367d.jpg", "osmTags": { "and": [ "power=pole", @@ -396173,7 +396387,7 @@ }, { "question": "FirstEnergy", - "icon": "./assets/data/nsi/logos/firstenergy-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstenergy-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -396188,7 +396402,7 @@ }, { "question": "Fjellnett", - "icon": "./assets/data/nsi/logos/fjellnett-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fjellnett-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -396245,7 +396459,7 @@ }, { "question": "Florida Power & Light", - "icon": "./assets/data/nsi/logos/floridapowerandlight-7b79c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-7b79c3.png", "osmTags": { "and": [ "power=pole", @@ -396297,7 +396511,7 @@ }, { "question": "FortisBC", - "icon": "./assets/data/nsi/logos/fortisbc-f4e8ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortisbc-f4e8ab.png", "osmTags": { "and": [ "power=pole", @@ -396312,7 +396526,7 @@ }, { "question": "Fortum", - "icon": "./assets/data/nsi/logos/fortum-1188a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortum-1188a0.jpg", "osmTags": { "and": [ "power=pole", @@ -396341,7 +396555,7 @@ }, { "question": "FS", - "icon": "./assets/data/nsi/logos/fs-db4d8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fs-db4d8e.jpg", "osmTags": { "and": [ "power=pole", @@ -396356,7 +396570,7 @@ }, { "question": "Furnas Centrais Elétricas", - "icon": "./assets/data/nsi/logos/furnascentraiseletricas-0aa22a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-0aa22a.jpg", "osmTags": { "and": [ "power=pole", @@ -396371,7 +396585,7 @@ }, { "question": "Gainesville Regional Utilities", - "icon": "./assets/data/nsi/logos/gainesvilleregionalutilities-7b79c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-7b79c3.png", "osmTags": { "and": [ "power=pole", @@ -396480,7 +396694,7 @@ }, { "question": "Glades Electric Co-Op", - "icon": "./assets/data/nsi/logos/gladeselectriccoop-7b79c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-7b79c3.jpg", "osmTags": { "and": [ "power=pole", @@ -396495,7 +396709,7 @@ }, { "question": "Glitre Nett", - "icon": "./assets/data/nsi/logos/glitrenett-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/glitrenett-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -396510,7 +396724,7 @@ }, { "question": "Golden Spread Electric Cooperative", - "icon": "./assets/data/nsi/logos/goldenspreadelectriccooperative-b4c145.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-b4c145.jpg", "osmTags": { "and": [ "power=pole", @@ -396534,7 +396748,7 @@ }, { "question": "Grand River Dam Authority", - "icon": "./assets/data/nsi/logos/grandriverdamauthority-0874bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-0874bd.jpg", "osmTags": { "and": [ "power=pole", @@ -396565,7 +396779,7 @@ }, { "question": "Greeneville Energy Authority", - "icon": "./assets/data/nsi/logos/greenevilleenergyauthority-ef3bf9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-ef3bf9.jpg", "osmTags": { "and": [ "power=pole", @@ -396580,7 +396794,7 @@ }, { "question": "Greenville Utilities Commission", - "icon": "./assets/data/nsi/logos/greenvilleutilitiescommission-97b3a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-97b3a1.jpg", "osmTags": { "and": [ "power=pole", @@ -396595,7 +396809,7 @@ }, { "question": "Groupe E", - "icon": "./assets/data/nsi/logos/groupee-84ac21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupee-84ac21.jpg", "osmTags": { "and": [ "power=pole", @@ -396669,7 +396883,7 @@ }, { "question": "Harz Energie", - "icon": "./assets/data/nsi/logos/harzenergie-c94250.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harzenergie-c94250.jpg", "osmTags": { "and": [ "power=pole", @@ -396684,7 +396898,7 @@ }, { "question": "Haugaland Kraft Nett", - "icon": "./assets/data/nsi/logos/haugalandkraftnett-05f310.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-05f310.png", "osmTags": { "and": [ "power=pole", @@ -396699,7 +396913,7 @@ }, { "question": "Hawaiian Electric Company", - "icon": "./assets/data/nsi/logos/hawaiianelectriccompany-ef03b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-ef03b3.jpg", "osmTags": { "and": [ "power=pole", @@ -396787,7 +397001,7 @@ }, { "question": "Huntsville Utilities", - "icon": "./assets/data/nsi/logos/huntsvilleutilities-58f3ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-58f3ef.jpg", "osmTags": { "and": [ "power=pole", @@ -396802,7 +397016,7 @@ }, { "question": "Hydro Energi", - "icon": "./assets/data/nsi/logos/hydroenergi-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroenergi-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -396831,7 +397045,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-8e54ec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-8e54ec.png", "osmTags": { "and": [ "power=pole", @@ -396864,7 +397078,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-90f5bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-90f5bd.jpg", "osmTags": { "and": [ "power=pole", @@ -396879,7 +397093,7 @@ }, { "question": "Idaho Power", - "icon": "./assets/data/nsi/logos/idahopower-01bcc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahopower-01bcc3.jpg", "osmTags": { "and": [ "power=pole", @@ -396894,7 +397108,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-3edee5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-3edee5.png", "osmTags": { "and": [ "power=pole", @@ -396909,7 +397123,7 @@ }, { "question": "Imperial Irrigation District", - "icon": "./assets/data/nsi/logos/imperialirrigationdistrict-4d73bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-4d73bd.jpg", "osmTags": { "and": [ "power=pole", @@ -396925,7 +397139,7 @@ }, { "question": "Independence Power & Light", - "icon": "./assets/data/nsi/logos/independencepowerandlight-c17ebf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-c17ebf.jpg", "osmTags": { "and": [ "power=pole", @@ -396940,7 +397154,7 @@ }, { "question": "Indiana Michigan Power", - "icon": "./assets/data/nsi/logos/indianamichiganpower-caf4b5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-caf4b5.png", "osmTags": { "and": [ "power=pole", @@ -396956,7 +397170,7 @@ }, { "question": "Indianapolis Power & Light", - "icon": "./assets/data/nsi/logos/indianapolispowerandlight-bb97f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-bb97f5.png", "osmTags": { "and": [ "power=pole", @@ -396986,7 +397200,7 @@ }, { "question": "Instituto Costarricense de Electricidad", - "icon": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-45d569.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-45d569.jpg", "osmTags": { "and": [ "power=pole", @@ -397040,7 +397254,7 @@ }, { "question": "Invenergy", - "icon": "./assets/data/nsi/logos/invenergy-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invenergy-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -397055,7 +397269,7 @@ }, { "question": "IPTO", - "icon": "./assets/data/nsi/logos/ipto-dfaa84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipto-dfaa84.png", "osmTags": { "and": [ "power=pole", @@ -397079,7 +397293,7 @@ }, { "question": "ITAIPU Binacional", - "icon": "./assets/data/nsi/logos/itaipubinacional-881e0f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-881e0f.svg", "osmTags": { "and": [ "power=pole", @@ -397094,7 +397308,7 @@ }, { "question": "ITC", - "icon": "./assets/data/nsi/logos/itc-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itc-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -397109,7 +397323,7 @@ }, { "question": "Jackson Energy Authority", - "icon": "./assets/data/nsi/logos/jacksonenergyauthority-ef3bf9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-ef3bf9.jpg", "osmTags": { "and": [ "power=pole", @@ -397124,7 +397338,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-b03b37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-b03b37.jpg", "osmTags": { "and": [ "power=pole", @@ -397140,7 +397354,7 @@ }, { "question": "Jersey Central Power and Light", - "icon": "./assets/data/nsi/logos/jerseycentralpowerandlight-a27c88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-a27c88.jpg", "osmTags": { "and": [ "power=pole", @@ -397156,7 +397370,7 @@ }, { "question": "Joe Wheeler EMC", - "icon": "./assets/data/nsi/logos/joewheeleremc-58f3ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-58f3ef.jpg", "osmTags": { "and": [ "power=pole", @@ -397185,7 +397399,7 @@ }, { "question": "Jonesboro City Water and Light", - "icon": "./assets/data/nsi/logos/jonesborocitywaterandlight-ab0eee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-ab0eee.jpg", "osmTags": { "and": [ "power=pole", @@ -397200,7 +397414,7 @@ }, { "question": "JR東日本", - "icon": "./assets/data/nsi/logos/eastjapanrailwaycompany-f42ba4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-f42ba4.png", "osmTags": { "and": [ "power=pole", @@ -397220,7 +397434,7 @@ }, { "question": "JR東海", - "icon": "./assets/data/nsi/logos/centraljapanrailwaycompany-f42ba4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/centraljapanrailwaycompany-f42ba4.svg", "osmTags": { "and": [ "power=pole", @@ -397263,7 +397477,7 @@ }, { "question": "Kansas City BPU", - "icon": "./assets/data/nsi/logos/kansascityboardofpublicutilities-25219f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-25219f.png", "osmTags": { "and": [ "power=pole", @@ -397303,7 +397517,7 @@ }, { "question": "KELAG", - "icon": "./assets/data/nsi/logos/kelag-2102e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-2102e1.jpg", "osmTags": { "and": [ "power=pole", @@ -397318,7 +397532,7 @@ }, { "question": "Kentucky Power", - "icon": "./assets/data/nsi/logos/kentuckypower-09c49f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckypower-09c49f.png", "osmTags": { "and": [ "power=pole", @@ -397347,7 +397561,7 @@ }, { "question": "Kerala State Electricity Board", - "icon": "./assets/data/nsi/logos/keralastateelectricityboard-178f76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-178f76.jpg", "osmTags": { "and": [ "power=pole", @@ -397391,7 +397605,7 @@ }, { "question": "Kissimmee Utility Authority", - "icon": "./assets/data/nsi/logos/kissimmeeutilityauthority-7b79c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-7b79c3.png", "osmTags": { "and": [ "power=pole", @@ -397406,7 +397620,7 @@ }, { "question": "Knoxville Utilities Board", - "icon": "./assets/data/nsi/logos/knoxvilleutilitiesboard-ef3bf9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-ef3bf9.jpg", "osmTags": { "and": [ "power=pole", @@ -397450,7 +397664,7 @@ }, { "question": "Kystnett", - "icon": "./assets/data/nsi/logos/kystnett-05f310.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kystnett-05f310.jpg", "osmTags": { "and": [ "power=pole", @@ -397465,7 +397679,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-4d73bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-4d73bd.png", "osmTags": { "and": [ "power=pole", @@ -397481,7 +397695,7 @@ }, { "question": "Lafayette Utilities System", - "icon": "./assets/data/nsi/logos/lafayetteutilitiessystem-16cc25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-16cc25.jpg", "osmTags": { "and": [ "power=pole", @@ -397534,7 +397748,7 @@ }, { "question": "LCEC", - "icon": "./assets/data/nsi/logos/leecountyelectriccooperative-7b79c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-7b79c3.jpg", "osmTags": { "and": [ "power=pole", @@ -397550,7 +397764,7 @@ }, { "question": "LEAG", - "icon": "./assets/data/nsi/logos/leag-c94250.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/leag-c94250.svg", "osmTags": { "and": [ "power=pole", @@ -397565,7 +397779,7 @@ }, { "question": "Lechwerke", - "icon": "./assets/data/nsi/logos/lechwerke-6fe3c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechwerke-6fe3c7.jpg", "osmTags": { "and": [ "power=pole", @@ -397604,7 +397818,7 @@ }, { "question": "Liander", - "icon": "./assets/data/nsi/logos/liander-42ab8c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liander-42ab8c.png", "osmTags": { "and": [ "power=pole", @@ -397666,7 +397880,7 @@ }, { "question": "Lincoln Electric System", - "icon": "./assets/data/nsi/logos/lincolnelectricsystem-5e8583.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-5e8583.png", "osmTags": { "and": [ "power=pole", @@ -397690,7 +397904,7 @@ }, { "question": "Linja", - "icon": "./assets/data/nsi/logos/linja-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/linja-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -397705,7 +397919,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-72f362.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-72f362.jpg", "osmTags": { "and": [ "power=pole", @@ -397734,7 +397948,7 @@ }, { "question": "Lockhart Power Company", - "icon": "./assets/data/nsi/logos/lockhartpowercompany-cf81af.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-cf81af.png", "osmTags": { "and": [ "power=pole", @@ -397786,7 +398000,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-b4c145.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-b4c145.png", "osmTags": { "and": [ "power=pole", @@ -397816,7 +398030,7 @@ }, { "question": "LSW Netz", - "icon": "./assets/data/nsi/logos/lswnetz-91d594.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswnetz-91d594.png", "osmTags": { "and": [ "power=pole", @@ -397831,7 +398045,7 @@ }, { "question": "Lubbock Power & Light", - "icon": "./assets/data/nsi/logos/lubbockpowerandlight-b4c145.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-b4c145.png", "osmTags": { "and": [ "power=pole", @@ -397870,7 +398084,7 @@ }, { "question": "Lyse", - "icon": "./assets/data/nsi/logos/lyse-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lyse-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -397885,7 +398099,7 @@ }, { "question": "Manitoba Hydro", - "icon": "./assets/data/nsi/logos/manitobahydro-446769.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manitobahydro-446769.svg", "osmTags": { "and": [ "power=pole", @@ -397937,7 +398151,7 @@ }, { "question": "Mark-E", - "icon": "./assets/data/nsi/logos/marke-bf3b54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marke-bf3b54.jpg", "osmTags": { "and": [ "power=pole", @@ -397952,7 +398166,7 @@ }, { "question": "Marshall Municipal Utilities", - "icon": "./assets/data/nsi/logos/marshallmunicipalutilities-a6a90b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-a6a90b.jpg", "osmTags": { "and": [ "power=pole", @@ -397967,7 +398181,7 @@ }, { "question": "Marshall-DeKalb Electric Cooperative", - "icon": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-58f3ef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-58f3ef.jpg", "osmTags": { "and": [ "power=pole", @@ -398010,7 +398224,7 @@ }, { "question": "MDU", - "icon": "./assets/data/nsi/logos/mdu-e54906.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mdu-e54906.jpg", "osmTags": { "and": [ "power=pole", @@ -398039,7 +398253,7 @@ }, { "question": "Memphis Light, Gas and Water", - "icon": "./assets/data/nsi/logos/memphislightgasandwater-ef3bf9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-ef3bf9.jpg", "osmTags": { "and": [ "power=pole", @@ -398055,7 +398269,7 @@ }, { "question": "Meralco", - "icon": "./assets/data/nsi/logos/meralco-4b9a17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meralco-4b9a17.jpg", "osmTags": { "and": [ "power=pole", @@ -398070,7 +398284,7 @@ }, { "question": "Met-Ed", - "icon": "./assets/data/nsi/logos/meted-c65a21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meted-c65a21.jpg", "osmTags": { "and": [ "power=pole", @@ -398094,7 +398308,7 @@ }, { "question": "MidAmerican Energy", - "icon": "./assets/data/nsi/logos/midamericanenergy-dabe73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-dabe73.jpg", "osmTags": { "and": [ "frequency=60", @@ -398124,7 +398338,7 @@ }, { "question": "Midwest Energy", - "icon": "./assets/data/nsi/logos/midwestenergy-25219f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midwestenergy-25219f.jpg", "osmTags": { "and": [ "power=pole", @@ -398171,7 +398385,7 @@ }, { "question": "Minnesota Valley Cooperative Light & Power Association", - "icon": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-a6a90b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-a6a90b.jpg", "osmTags": { "and": [ "power=pole", @@ -398186,7 +398400,7 @@ }, { "question": "Minnkota Power Cooperative", - "icon": "./assets/data/nsi/logos/minnkotapowercooperative-add366.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-add366.png", "osmTags": { "and": [ "power=pole", @@ -398215,7 +398429,7 @@ }, { "question": "Mississippi Power", - "icon": "./assets/data/nsi/logos/mississippipower-ac8329.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippipower-ac8329.png", "osmTags": { "and": [ "power=pole", @@ -398267,7 +398481,7 @@ }, { "question": "Mon Power", - "icon": "./assets/data/nsi/logos/monpower-646cd0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monpower-646cd0.jpg", "osmTags": { "and": [ "power=pole", @@ -398357,7 +398571,7 @@ }, { "question": "NamPower", - "icon": "./assets/data/nsi/logos/nampower-ec5d68.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nampower-ec5d68.svg", "osmTags": { "and": [ "power=pole", @@ -398372,7 +398586,7 @@ }, { "question": "Nashville Electric Service", - "icon": "./assets/data/nsi/logos/nashvilleelectricservice-ef3bf9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-ef3bf9.png", "osmTags": { "and": [ "power=pole", @@ -398388,7 +398602,7 @@ }, { "question": "National Grid", - "icon": "./assets/data/nsi/logos/nationalgrid-931e9c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgrid-931e9c.png", "osmTags": { "and": [ "power=pole", @@ -398403,7 +398617,7 @@ }, { "question": "National Grid Corporation of the Philippines", - "icon": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-4b9a17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-4b9a17.jpg", "osmTags": { "and": [ "power=pole", @@ -398419,7 +398633,7 @@ }, { "question": "National Grid Electricity Distribution", - "icon": "./assets/data/nsi/logos/nationalgridelectricitydistribution-054628.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-054628.jpg", "osmTags": { "and": [ "power=pole", @@ -398434,7 +398648,7 @@ }, { "question": "National Grid Electricity Transmission", - "icon": "./assets/data/nsi/logos/nationalgridelectricitytransmission-054628.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-054628.svg", "osmTags": { "and": [ "power=pole", @@ -398449,7 +398663,7 @@ }, { "question": "NB Power", - "icon": "./assets/data/nsi/logos/nbpower-19cd2f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbpower-19cd2f.svg", "osmTags": { "and": [ "power=pole", @@ -398494,7 +398708,7 @@ }, { "question": "Neoenergia", - "icon": "./assets/data/nsi/logos/neoenergia-0aa22a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoenergia-0aa22a.svg", "osmTags": { "and": [ "power=pole", @@ -398537,7 +398751,7 @@ }, { "question": "Netz NÖ", - "icon": "./assets/data/nsi/logos/netzno-3edee5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzno-3edee5.jpg", "osmTags": { "and": [ "power=pole", @@ -398566,7 +398780,7 @@ }, { "question": "Netze BW GmbH", - "icon": "./assets/data/nsi/logos/netzebwgmbh-9f3684.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-9f3684.svg", "osmTags": { "and": [ "power=pole", @@ -398609,7 +398823,7 @@ }, { "question": "New York Power Authority", - "icon": "./assets/data/nsi/logos/newyorkpowerauthority-08de41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-08de41.jpg", "osmTags": { "and": [ "power=pole", @@ -398625,7 +398839,7 @@ }, { "question": "Newfoundland and Labrador Hydro", - "icon": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-2f814b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-2f814b.jpg", "osmTags": { "and": [ "power=pole", @@ -398640,7 +398854,7 @@ }, { "question": "Newfoundland Power", - "icon": "./assets/data/nsi/logos/newfoundlandpower-2f814b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-2f814b.png", "osmTags": { "and": [ "power=pole", @@ -398655,7 +398869,7 @@ }, { "question": "NextEra Energy", - "icon": "./assets/data/nsi/logos/nexteraenergy-84ef3e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-84ef3e.png", "osmTags": { "and": [ "power=pole", @@ -398684,7 +398898,7 @@ }, { "question": "NIE Networks", - "icon": "./assets/data/nsi/logos/nienetworks-af96ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nienetworks-af96ca.jpg", "osmTags": { "and": [ "power=pole", @@ -398793,7 +399007,7 @@ }, { "question": "Northern Powergrid", - "icon": "./assets/data/nsi/logos/northernpowergrid-054628.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-054628.jpg", "osmTags": { "and": [ "power=pole", @@ -398822,7 +399036,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-c1d6b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-c1d6b7.jpg", "osmTags": { "and": [ "power=pole", @@ -398837,7 +399051,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-4e702c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-4e702c.jpg", "osmTags": { "and": [ "power=pole", @@ -398866,7 +399080,7 @@ }, { "question": "NTE Nett", - "icon": "./assets/data/nsi/logos/ntenett-05f310.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ntenett-05f310.png", "osmTags": { "and": [ "power=pole", @@ -398881,7 +399095,7 @@ }, { "question": "NV Energy", - "icon": "./assets/data/nsi/logos/nvenergy-21116b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nvenergy-21116b.png", "osmTags": { "and": [ "power=pole", @@ -398896,7 +399110,7 @@ }, { "question": "NW Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/nwelectricpowercooperative-c17ebf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-c17ebf.jpg", "osmTags": { "and": [ "power=pole", @@ -398911,7 +399125,7 @@ }, { "question": "NYSEG", - "icon": "./assets/data/nsi/logos/nyseg-08de41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nyseg-08de41.jpg", "osmTags": { "and": [ "power=pole", @@ -398964,7 +399178,7 @@ }, { "question": "Oklahoma Gas & Electric", - "icon": "./assets/data/nsi/logos/oklahomagasandelectric-0874bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-0874bd.jpg", "osmTags": { "and": [ "power=pole", @@ -398980,7 +399194,7 @@ }, { "question": "Omaha Public Power District", - "icon": "./assets/data/nsi/logos/omahapublicpowerdistrict-5e8583.png", + "icon": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-5e8583.png", "osmTags": { "and": [ "power=pole", @@ -398995,7 +399209,7 @@ }, { "question": "Oncor", - "icon": "./assets/data/nsi/logos/oncor-b4c145.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oncor-b4c145.jpg", "osmTags": { "and": [ "power=pole", @@ -399033,7 +399247,7 @@ }, { "question": "Orion New Zealand", - "icon": "./assets/data/nsi/logos/orionnewzealand-54adcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-54adcf.jpg", "osmTags": { "and": [ "power=pole", @@ -399048,7 +399262,7 @@ }, { "question": "Orlando Utilities Commission", - "icon": "./assets/data/nsi/logos/orlandoutilitiescommission-7b79c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-7b79c3.jpg", "osmTags": { "and": [ "power=pole", @@ -399082,7 +399296,7 @@ }, { "question": "Otter Tail Power Company", - "icon": "./assets/data/nsi/logos/ottertailpowercompany-940dba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-940dba.jpg", "osmTags": { "and": [ "power=pole", @@ -399111,7 +399325,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-4d73bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-4d73bd.png", "osmTags": { "and": [ "power=pole", @@ -399127,7 +399341,7 @@ }, { "question": "Pacific Power", - "icon": "./assets/data/nsi/logos/pacificpower-c4cc72.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificpower-c4cc72.svg", "osmTags": { "and": [ "power=pole", @@ -399142,7 +399356,7 @@ }, { "question": "PacifiCorp", - "icon": "./assets/data/nsi/logos/pacificorp-777c2a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificorp-777c2a.svg", "osmTags": { "and": [ "power=pole", @@ -399193,7 +399407,7 @@ }, { "question": "PEA", - "icon": "./assets/data/nsi/logos/pea-c89122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pea-c89122.jpg", "osmTags": { "and": [ "power=pole", @@ -399208,7 +399422,7 @@ }, { "question": "PECO", - "icon": "./assets/data/nsi/logos/peco-8902b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peco-8902b7.jpg", "osmTags": { "and": [ "power=pole", @@ -399223,7 +399437,7 @@ }, { "question": "Peiner Träger GmbH", - "icon": "./assets/data/nsi/logos/peinertragergmbh-91d594.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/peinertragergmbh-91d594.svg", "osmTags": { "and": [ "power=pole", @@ -399238,7 +399452,7 @@ }, { "question": "Penelec", - "icon": "./assets/data/nsi/logos/penelec-c65a21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penelec-c65a21.jpg", "osmTags": { "and": [ "power=pole", @@ -399268,7 +399482,7 @@ }, { "question": "Perusahaan Listrik Negara", - "icon": "./assets/data/nsi/logos/perusahaanlistriknegara-605f64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-605f64.jpg", "osmTags": { "and": [ "power=pole", @@ -399284,7 +399498,7 @@ }, { "question": "Petrobras", - "icon": "./assets/data/nsi/logos/petrobras-0aa22a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrobras-0aa22a.png", "osmTags": { "and": [ "power=pole", @@ -399299,7 +399513,7 @@ }, { "question": "Pfalzwerke AG", - "icon": "./assets/data/nsi/logos/pfalzwerkeag-b1071a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-b1071a.png", "osmTags": { "and": [ "power=pole", @@ -399314,7 +399528,7 @@ }, { "question": "PGE Dystrybucja", - "icon": "./assets/data/nsi/logos/pgedystrybucja-7d29f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-7d29f7.jpg", "osmTags": { "and": [ "power=pole", @@ -399329,7 +399543,7 @@ }, { "question": "PGE Energetyka Kolejowa", - "icon": "./assets/data/nsi/logos/pgeenergetykakolejowa-7d29f7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-7d29f7.jpg", "osmTags": { "and": [ "power=pole", @@ -399344,7 +399558,7 @@ }, { "question": "PJM", - "icon": "./assets/data/nsi/logos/pjm-a27c88.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pjm-a27c88.jpg", "osmTags": { "and": [ "power=pole", @@ -399382,7 +399596,7 @@ }, { "question": "PNM", - "icon": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-abbcc9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-abbcc9.jpg", "osmTags": { "and": [ "power=pole", @@ -399398,7 +399612,7 @@ }, { "question": "Polskie Sieci Elektroenergetyczne", - "icon": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-858c1e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-858c1e.png", "osmTags": { "and": [ "power=pole", @@ -399414,7 +399628,7 @@ }, { "question": "Portland General Electric", - "icon": "./assets/data/nsi/logos/portlandgeneralelectric-8c99ae.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-8c99ae.png", "osmTags": { "and": [ "power=pole", @@ -399439,7 +399653,7 @@ }, { "question": "Potomac Edison", - "icon": "./assets/data/nsi/logos/potomacedison-6c07c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacedison-6c07c9.jpg", "osmTags": { "and": [ "power=pole", @@ -399454,7 +399668,7 @@ }, { "question": "Potomac Electric Power Company", - "icon": "./assets/data/nsi/logos/potomacelectricpowercompany-bd6bd5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-bd6bd5.jpg", "osmTags": { "and": [ "power=pole", @@ -399470,7 +399684,7 @@ }, { "question": "Power Grid Corporation of India Ltd", - "icon": "./assets/data/nsi/logos/powergridcorporationofindialtd-178f76.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-178f76.jpg", "osmTags": { "and": [ "power=pole", @@ -399485,7 +399699,7 @@ }, { "question": "Powerco", - "icon": "./assets/data/nsi/logos/powerco-54adcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerco-54adcf.jpg", "osmTags": { "and": [ "power=pole", @@ -399500,7 +399714,7 @@ }, { "question": "Powercor", - "icon": "./assets/data/nsi/logos/powercor-6c22c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/powercor-6c22c4.png", "osmTags": { "and": [ "power=pole", @@ -399515,7 +399729,7 @@ }, { "question": "Powerlink", - "icon": "./assets/data/nsi/logos/powerlink-79d5c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerlink-79d5c9.jpg", "osmTags": { "and": [ "power=pole", @@ -399545,7 +399759,7 @@ }, { "question": "PPL", - "icon": "./assets/data/nsi/logos/ppl-af79fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ppl-af79fb.jpg", "osmTags": { "and": [ "power=pole", @@ -399560,7 +399774,7 @@ }, { "question": "PRE", - "icon": "./assets/data/nsi/logos/pre-51167e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pre-51167e.jpg", "osmTags": { "and": [ "power=pole", @@ -399575,7 +399789,7 @@ }, { "question": "Premier Energy (Moldova)", - "icon": "./assets/data/nsi/logos/premierenergy-9ddea3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/premierenergy-9ddea3.jpg", "osmTags": { "and": [ "power=pole", @@ -399618,7 +399832,7 @@ }, { "question": "PSO", - "icon": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-7b2677.png", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-7b2677.png", "osmTags": { "and": [ "power=pole", @@ -399648,7 +399862,7 @@ }, { "question": "Public Service Enterprise Group", - "icon": "./assets/data/nsi/logos/publicserviceenterprisegroup-db78e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-db78e4.jpg", "osmTags": { "and": [ "power=pole", @@ -399663,7 +399877,7 @@ }, { "question": "Puerto Rico Electric Power Authority", - "icon": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-637829.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-637829.jpg", "osmTags": { "and": [ "power=pole", @@ -399679,7 +399893,7 @@ }, { "question": "Puget Sound Energy", - "icon": "./assets/data/nsi/logos/pugetsoundenergy-30bece.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-30bece.jpg", "osmTags": { "and": [ "power=pole", @@ -399695,7 +399909,7 @@ }, { "question": "Radius Elnet", - "icon": "./assets/data/nsi/logos/radiuselnet-1f5c3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radiuselnet-1f5c3b.jpg", "osmTags": { "and": [ "power=pole", @@ -399710,7 +399924,7 @@ }, { "question": "Rappahannock Electric Cooperative", - "icon": "./assets/data/nsi/logos/rappahannockelectriccooperative-f601d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-f601d1.jpg", "osmTags": { "and": [ "power=pole", @@ -399725,7 +399939,7 @@ }, { "question": "Red Eléctrica de España", - "icon": "./assets/data/nsi/logos/redelectricadeespana-139d53.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-139d53.jpg", "osmTags": { "and": [ "power=pole", @@ -399750,7 +399964,7 @@ }, { "question": "Reedy Creek Improvement District", - "icon": "./assets/data/nsi/logos/reedycreekimprovementdistrict-7b79c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reedycreekimprovementdistrict-7b79c3.jpg", "osmTags": { "and": [ "power=pole", @@ -399765,7 +399979,7 @@ }, { "question": "REN", - "icon": "./assets/data/nsi/logos/ren-0223fd.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ren-0223fd.svg", "osmTags": { "and": [ "power=pole", @@ -399794,7 +400008,7 @@ }, { "question": "Resolute Forest Products", - "icon": "./assets/data/nsi/logos/resoluteforestproducts-8e54ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/resoluteforestproducts-8e54ec.jpg", "osmTags": { "and": [ "power=pole", @@ -399809,7 +400023,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-db4d8e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-db4d8e.svg", "osmTags": { "and": [ "power=pole", @@ -399824,7 +400038,7 @@ }, { "question": "Rhode Island Energy", - "icon": "./assets/data/nsi/logos/rhodeislandenergy-fd32de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-fd32de.jpg", "osmTags": { "and": [ "power=pole", @@ -399839,7 +400053,7 @@ }, { "question": "Rio Grande Energia", - "icon": "./assets/data/nsi/logos/riograndeenergia-0aa22a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-0aa22a.png", "osmTags": { "and": [ "power=pole", @@ -399854,7 +400068,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-4dd5c6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-4dd5c6.svg", "osmTags": { "and": [ "power=pole", @@ -399878,7 +400092,7 @@ }, { "question": "Rochester Gas & Electric", - "icon": "./assets/data/nsi/logos/rochestergasandelectric-08de41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-08de41.jpg", "osmTags": { "and": [ "power=pole", @@ -399893,7 +400107,7 @@ }, { "question": "Rocky Mountain Power", - "icon": "./assets/data/nsi/logos/rockymountainpower-3a4568.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-3a4568.svg", "osmTags": { "and": [ "power=pole", @@ -399908,7 +400122,7 @@ }, { "question": "Romande Energie", - "icon": "./assets/data/nsi/logos/romandeenergie-4a0640.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romandeenergie-4a0640.jpg", "osmTags": { "and": [ "power=pole", @@ -399923,7 +400137,7 @@ }, { "question": "Roseville Electric", - "icon": "./assets/data/nsi/logos/rosevilleelectric-4d73bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-4d73bd.jpg", "osmTags": { "and": [ "power=pole", @@ -399938,7 +400152,7 @@ }, { "question": "RTE", - "icon": "./assets/data/nsi/logos/rte-1716c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rte-1716c3.png", "osmTags": { "and": [ "power=pole", @@ -399968,7 +400182,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-46b867.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-46b867.jpg", "osmTags": { "and": [ "power=pole", @@ -399998,7 +400212,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-59db59.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-59db59.png", "osmTags": { "and": [ "power=pole", @@ -400013,7 +400227,7 @@ }, { "question": "Sacramento Municipal Utility District", - "icon": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-4d73bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-4d73bd.jpg", "osmTags": { "and": [ "power=pole", @@ -400029,7 +400243,7 @@ }, { "question": "Sadales tīkls", - "icon": "./assets/data/nsi/logos/sadalestikls-b1384e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sadalestikls-b1384e.jpg", "osmTags": { "and": [ "power=pole", @@ -400044,7 +400258,7 @@ }, { "question": "Salt River Project", - "icon": "./assets/data/nsi/logos/saltriverproject-4d7f6d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saltriverproject-4d7f6d.png", "osmTags": { "and": [ "power=pole", @@ -400060,7 +400274,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-3061ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-3061ab.jpg", "osmTags": { "and": [ "power=pole", @@ -400084,7 +400298,7 @@ }, { "question": "San Diego Gas & Electric", - "icon": "./assets/data/nsi/logos/sandiegogasandelectric-416b27.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-416b27.jpg", "osmTags": { "and": [ "power=pole", @@ -400100,7 +400314,7 @@ }, { "question": "SaskPower", - "icon": "./assets/data/nsi/logos/saskpower-19de1f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saskpower-19de1f.svg", "osmTags": { "and": [ "power=pole", @@ -400115,7 +400329,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-84ac21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-84ac21.png", "osmTags": { "and": [ "power=pole", @@ -400130,7 +400344,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-0d4d66.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-0d4d66.svg", "osmTags": { "and": [ "power=pole", @@ -400159,7 +400373,7 @@ }, { "question": "Scottish and Southern Electricity Networks (SSEN)", - "icon": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-4cd76b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-4cd76b.jpg", "osmTags": { "and": [ "power=pole", @@ -400184,7 +400398,7 @@ }, { "question": "Seattle City Light", - "icon": "./assets/data/nsi/logos/seattlecitylight-30bece.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-30bece.png", "osmTags": { "and": [ "power=pole", @@ -400200,7 +400414,7 @@ }, { "question": "Seminole Electric Cooperative", - "icon": "./assets/data/nsi/logos/seminoleelectriccooperative-7b79c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-7b79c3.jpg", "osmTags": { "and": [ "power=pole", @@ -400215,7 +400429,7 @@ }, { "question": "Senelec", - "icon": "./assets/data/nsi/logos/senelec-1601b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senelec-1601b6.jpg", "osmTags": { "and": [ "power=pole", @@ -400276,7 +400490,7 @@ }, { "question": "SIG", - "icon": "./assets/data/nsi/logos/sig-3c01da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sig-3c01da.jpg", "osmTags": { "and": [ "power=pole", @@ -400305,7 +400519,7 @@ }, { "question": "SLEMCO", - "icon": "./assets/data/nsi/logos/slemco-16cc25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slemco-16cc25.jpg", "osmTags": { "and": [ "power=pole", @@ -400320,7 +400534,7 @@ }, { "question": "Slovenská elektrizačná prenosová sústava", - "icon": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-4eb8d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-4eb8d2.jpg", "osmTags": { "and": [ "power=pole", @@ -400336,7 +400550,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-1716c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-1716c3.png", "osmTags": { "and": [ "power=pole", @@ -400351,7 +400565,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-1716c3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-1716c3.png", "osmTags": { "and": [ "power=pole", @@ -400375,7 +400589,7 @@ }, { "question": "Societe Beninoise d'Energie Electrique", - "icon": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-401909.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-401909.jpg", "osmTags": { "and": [ "power=pole", @@ -400391,7 +400605,7 @@ }, { "question": "Sogn og Fjordane Energi", - "icon": "./assets/data/nsi/logos/sognogfjordaneenergi-05f310.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-05f310.jpg", "osmTags": { "and": [ "power=pole", @@ -400430,7 +400644,7 @@ }, { "question": "Southern California Edison", - "icon": "./assets/data/nsi/logos/southerncaliforniaedison-4d73bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-4d73bd.jpg", "osmTags": { "and": [ "power=pole", @@ -400461,7 +400675,7 @@ }, { "question": "Southwest Arkansas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-ab0eee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-ab0eee.jpg", "osmTags": { "and": [ "power=pole", @@ -400513,7 +400727,7 @@ }, { "question": "SP Energy Networks", - "icon": "./assets/data/nsi/logos/spenergynetworks-4cd76b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-4cd76b.jpg", "osmTags": { "and": [ "power=pole", @@ -400542,7 +400756,7 @@ }, { "question": "Springfield Utility Board", - "icon": "./assets/data/nsi/logos/springfieldutilityboard-8c99ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-8c99ae.jpg", "osmTags": { "and": [ "power=pole", @@ -400586,7 +400800,7 @@ }, { "question": "SSEN Transmission", - "icon": "./assets/data/nsi/logos/ssentransmission-a65ddf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ssentransmission-a65ddf.jpg", "osmTags": { "and": [ "power=pole", @@ -400601,7 +400815,7 @@ }, { "question": "Stadtwerke Düsseldorf", - "icon": "./assets/data/nsi/logos/stadtwerkedusseldorf-bf3b54.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-bf3b54.jpg", "osmTags": { "and": [ "power=pole", @@ -400616,7 +400830,7 @@ }, { "question": "Stadtwerke Leipzig", - "icon": "./assets/data/nsi/logos/stadtwerkeleipzig-59db59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-59db59.jpg", "osmTags": { "and": [ "power=pole", @@ -400631,7 +400845,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-6fe3c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-6fe3c7.jpg", "osmTags": { "and": [ "power=pole", @@ -400661,7 +400875,7 @@ }, { "question": "Statkraft", - "icon": "./assets/data/nsi/logos/statkraft-46b867.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statkraft-46b867.png", "osmTags": { "and": [ "power=pole", @@ -400676,7 +400890,7 @@ }, { "question": "Statnett", - "icon": "./assets/data/nsi/logos/statnett-05f310.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statnett-05f310.png", "osmTags": { "and": [ "power=pole", @@ -400691,7 +400905,7 @@ }, { "question": "Stedin", - "icon": "./assets/data/nsi/logos/stedin-42ab8c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stedin-42ab8c.png", "osmTags": { "and": [ "power=pole", @@ -400773,7 +400987,7 @@ }, { "question": "Stromnetz Berlin", - "icon": "./assets/data/nsi/logos/stromnetzberlin-ff5d95.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-ff5d95.svg", "osmTags": { "and": [ "power=pole", @@ -400788,7 +401002,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-e3db22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-e3db22.jpg", "osmTags": { "and": [ "power=pole", @@ -400830,7 +401044,7 @@ }, { "question": "Sunflower Electric Power Corporation", - "icon": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-25219f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-25219f.jpg", "osmTags": { "and": [ "power=pole", @@ -400845,7 +401059,7 @@ }, { "question": "Süwag Energie", - "icon": "./assets/data/nsi/logos/suwagenergie-7ec739.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwagenergie-7ec739.jpg", "osmTags": { "and": [ "power=pole", @@ -400860,7 +401074,7 @@ }, { "question": "Svenska Kraftnät", - "icon": "./assets/data/nsi/logos/svenskakraftnat-cbf906.png", + "icon": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-cbf906.png", "osmTags": { "and": [ "power=pole", @@ -400875,7 +401089,7 @@ }, { "question": "SWEPCO", - "icon": "./assets/data/nsi/logos/southwesternelectricpowercompany-79abae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-79abae.jpg", "osmTags": { "and": [ "power=pole", @@ -400891,7 +401105,7 @@ }, { "question": "Swissgrid", - "icon": "./assets/data/nsi/logos/swissgrid-84ac21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swissgrid-84ac21.png", "osmTags": { "and": [ "power=pole", @@ -400906,7 +401120,7 @@ }, { "question": "Sygnir", - "icon": "./assets/data/nsi/logos/sygnir-05f310.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sygnir-05f310.jpg", "osmTags": { "and": [ "power=pole", @@ -400963,7 +401177,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-7d29f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-7d29f7.png", "osmTags": { "and": [ "power=pole", @@ -400992,7 +401206,7 @@ }, { "question": "TEİAŞ", - "icon": "./assets/data/nsi/logos/teias-822e3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teias-822e3b.jpg", "osmTags": { "and": [ "power=pole", @@ -401007,7 +401221,7 @@ }, { "question": "Tenaga Nasional", - "icon": "./assets/data/nsi/logos/tenaganasional-c8ef55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tenaganasional-c8ef55.png", "osmTags": { "and": [ "power=pole", @@ -401022,7 +401236,7 @@ }, { "question": "Tennessee Valley Authority", - "icon": "./assets/data/nsi/logos/tennesseevalleyauthority-777c2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-777c2a.png", "osmTags": { "and": [ "power=pole", @@ -401038,7 +401252,7 @@ }, { "question": "TenneT", - "icon": "./assets/data/nsi/logos/tennet-42ab8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennet-42ab8c.jpg", "osmTags": { "and": [ "power=pole", @@ -401053,7 +401267,7 @@ }, { "question": "TenneT TSO", - "icon": "./assets/data/nsi/logos/tennettso-9c1c2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennettso-9c1c2e.jpg", "osmTags": { "and": [ "power=pole", @@ -401068,7 +401282,7 @@ }, { "question": "Tensio", - "icon": "./assets/data/nsi/logos/tensio-05f310.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tensio-05f310.jpg", "osmTags": { "and": [ "power=pole", @@ -401111,7 +401325,7 @@ }, { "question": "Terna", - "icon": "./assets/data/nsi/logos/terna-c79ba9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/terna-c79ba9.png", "osmTags": { "and": [ "power=pole", @@ -401135,7 +401349,7 @@ }, { "question": "Texas-New Mexico Power", - "icon": "./assets/data/nsi/logos/texasnewmexicopower-b4c145.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-b4c145.png", "osmTags": { "and": [ "power=pole", @@ -401166,7 +401380,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-3edee5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-3edee5.svg", "osmTags": { "and": [ "power=pole", @@ -401213,7 +401427,7 @@ }, { "question": "Transcomahue S.A.", - "icon": "./assets/data/nsi/logos/transcomahuesa-681180.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transcomahuesa-681180.png", "osmTags": { "and": [ "power=pole", @@ -401251,7 +401465,7 @@ }, { "question": "Transener", - "icon": "./assets/data/nsi/logos/transener-3f53e7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transener-3f53e7.png", "osmTags": { "and": [ "power=pole", @@ -401266,7 +401480,7 @@ }, { "question": "TransGrid", - "icon": "./assets/data/nsi/logos/transgrid-e2ed89.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transgrid-e2ed89.png", "osmTags": { "and": [ "power=pole", @@ -401295,7 +401509,7 @@ }, { "question": "Transmission Company of Nigeria", - "icon": "./assets/data/nsi/logos/transmissioncompanyofnigeria-784ea8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-784ea8.jpg", "osmTags": { "and": [ "power=pole", @@ -401347,7 +401561,7 @@ }, { "question": "TransnetBW GmbH", - "icon": "./assets/data/nsi/logos/transnetbwgmbh-9f3684.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-9f3684.svg", "osmTags": { "and": [ "power=pole", @@ -401385,7 +401599,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-e2ed89.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-e2ed89.jpg", "osmTags": { "and": [ "power=pole", @@ -401400,7 +401614,7 @@ }, { "question": "Transpower New Zealand", - "icon": "./assets/data/nsi/logos/transpowernewzealand-54adcf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-54adcf.jpg", "osmTags": { "and": [ "power=pole", @@ -401415,7 +401629,7 @@ }, { "question": "TREDAŞ", - "icon": "./assets/data/nsi/logos/tredas-822e3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredas-822e3b.jpg", "osmTags": { "and": [ "power=pole", @@ -401448,7 +401662,7 @@ }, { "question": "Tucson Electric Power", - "icon": "./assets/data/nsi/logos/tucsonelectricpower-4d7f6d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-4d7f6d.jpg", "osmTags": { "and": [ "power=pole", @@ -401473,7 +401687,7 @@ }, { "question": "UGI", - "icon": "./assets/data/nsi/logos/ugi-c65a21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ugi-c65a21.png", "osmTags": { "and": [ "power=pole", @@ -401488,7 +401702,7 @@ }, { "question": "UK Power Networks", - "icon": "./assets/data/nsi/logos/ukpowernetworks-054628.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-054628.jpg", "osmTags": { "and": [ "power=pole", @@ -401527,7 +401741,7 @@ }, { "question": "Uniper Kraftwerke", - "icon": "./assets/data/nsi/logos/uniperkraftwerke-c94250.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-c94250.png", "osmTags": { "and": [ "power=pole", @@ -401542,7 +401756,7 @@ }, { "question": "United Illuminating Company", - "icon": "./assets/data/nsi/logos/unitedilluminatingcompany-e3394a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-e3394a.jpg", "osmTags": { "and": [ "power=pole", @@ -401557,7 +401771,7 @@ }, { "question": "United States Steel", - "icon": "./assets/data/nsi/logos/unitedstatessteel-58f3ef.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-58f3ef.svg", "osmTags": { "and": [ "power=pole", @@ -401572,7 +401786,7 @@ }, { "question": "Unitil", - "icon": "./assets/data/nsi/logos/unitil-8cab10.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitil-8cab10.png", "osmTags": { "and": [ "power=pole", @@ -401602,7 +401816,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-ad3803.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-ad3803.svg", "osmTags": { "and": [ "power=pole", @@ -401617,7 +401831,7 @@ }, { "question": "Vale S.A.", - "icon": "./assets/data/nsi/logos/valesa-0aa22a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valesa-0aa22a.jpg", "osmTags": { "and": [ "power=pole", @@ -401641,7 +401855,7 @@ }, { "question": "Vattenfall", - "icon": "./assets/data/nsi/logos/vattenfall-6444bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-6444bc.png", "osmTags": { "and": [ "power=pole", @@ -401656,7 +401870,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-c94250.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-c94250.png", "osmTags": { "and": [ "power=pole", @@ -401671,7 +401885,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-54adcf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-54adcf.png", "osmTags": { "and": [ "power=pole", @@ -401686,7 +401900,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-3edee5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-3edee5.jpg", "osmTags": { "and": [ "power=pole", @@ -401701,7 +401915,7 @@ }, { "question": "Vermont Electric Power Company", - "icon": "./assets/data/nsi/logos/vermontelectricpowercompany-332bd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-332bd4.jpg", "osmTags": { "and": [ "power=pole", @@ -401730,7 +401944,7 @@ }, { "question": "Versant Power", - "icon": "./assets/data/nsi/logos/versantpower-360ef7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/versantpower-360ef7.jpg", "osmTags": { "and": [ "power=pole", @@ -401759,7 +401973,7 @@ }, { "question": "Vestall", - "icon": "./assets/data/nsi/logos/vestall-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vestall-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -401774,7 +401988,7 @@ }, { "question": "Vevig", - "icon": "./assets/data/nsi/logos/vevig-05f310.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vevig-05f310.png", "osmTags": { "and": [ "power=pole", @@ -401789,7 +402003,7 @@ }, { "question": "Viesgo Distribución Eléctrica", - "icon": "./assets/data/nsi/logos/viesgodistribucionelectrica-139d53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-139d53.png", "osmTags": { "and": [ "power=pole", @@ -401818,7 +402032,7 @@ }, { "question": "Visayan Electric", - "icon": "./assets/data/nsi/logos/visayanelectric-4b9a17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visayanelectric-4b9a17.jpg", "osmTags": { "and": [ "power=pole", @@ -401833,7 +402047,7 @@ }, { "question": "Vissi", - "icon": "./assets/data/nsi/logos/vissi-05f310.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vissi-05f310.svg", "osmTags": { "and": [ "power=pole", @@ -401890,7 +402104,7 @@ }, { "question": "Východoslovenská distribučná", - "icon": "./assets/data/nsi/logos/vychodoslovenskadistribucna-4eb8d2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-4eb8d2.png", "osmTags": { "and": [ "power=pole", @@ -401906,7 +402120,7 @@ }, { "question": "Washington-St. Tammany Electric Cooperative", - "icon": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-16cc25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-16cc25.jpg", "osmTags": { "and": [ "power=pole", @@ -401930,7 +402144,7 @@ }, { "question": "WEMAG Netz GmbH", - "icon": "./assets/data/nsi/logos/wemagnetzgmbh-ee88bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wemagnetzgmbh-ee88bc.png", "osmTags": { "and": [ "power=pole", @@ -401968,7 +402182,7 @@ }, { "question": "West Penn Power", - "icon": "./assets/data/nsi/logos/westpennpower-a5719a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westpennpower-a5719a.jpg", "osmTags": { "and": [ "power=pole", @@ -401983,7 +402197,7 @@ }, { "question": "Western Area Power Administration", - "icon": "./assets/data/nsi/logos/westernareapoweradministration-777c2a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-777c2a.png", "osmTags": { "and": [ "power=pole", @@ -401999,7 +402213,7 @@ }, { "question": "Westfalen Weser Netz", - "icon": "./assets/data/nsi/logos/westfalenwesernetz-902312.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfalenwesernetz-902312.svg", "osmTags": { "and": [ "power=pole", @@ -402015,7 +402229,7 @@ }, { "question": "Westnetz", - "icon": "./assets/data/nsi/logos/westnetz-c94250.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westnetz-c94250.png", "osmTags": { "and": [ "power=pole", @@ -402030,7 +402244,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-3edee5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-3edee5.jpg", "osmTags": { "and": [ "power=pole", @@ -402045,7 +402259,7 @@ }, { "question": "Wiener Netze", - "icon": "./assets/data/nsi/logos/wienernetze-3edee5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienernetze-3edee5.png", "osmTags": { "and": [ "power=pole", @@ -402097,7 +402311,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-777c2a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-777c2a.jpg", "osmTags": { "and": [ "power=pole", @@ -402112,7 +402326,7 @@ }, { "question": "Yacimientos de Litio Bolivianos", - "icon": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-441803.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-441803.svg", "osmTags": { "and": [ "power=pole", @@ -402127,7 +402341,7 @@ }, { "question": "ΔΕΗ", - "icon": "./assets/data/nsi/logos/788cf3-dfaa84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/788cf3-dfaa84.jpg", "osmTags": { "and": [ "power=pole", @@ -402187,7 +402401,7 @@ }, { "question": "АТ Прикарпаттяобленерго", - "icon": "./assets/data/nsi/logos/7c17ff-b77294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7c17ff-b77294.jpg", "osmTags": { "and": [ "power=pole", @@ -402202,7 +402416,7 @@ }, { "question": "АТ Хмельницькобленерго", - "icon": "./assets/data/nsi/logos/f36860-b77294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/f36860-b77294.jpg", "osmTags": { "and": [ "power=pole", @@ -402217,7 +402431,7 @@ }, { "question": "Вінницяобленерго", - "icon": "./assets/data/nsi/logos/084a1e-b77294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/084a1e-b77294.jpg", "osmTags": { "and": [ "power=pole", @@ -402232,7 +402446,7 @@ }, { "question": "Волиньобленерго", - "icon": "./assets/data/nsi/logos/cc48e9-b77294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cc48e9-b77294.jpg", "osmTags": { "and": [ "power=pole", @@ -402298,7 +402512,7 @@ }, { "question": "Запоріжжяобленерго", - "icon": "./assets/data/nsi/logos/dd2584-b77294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dd2584-b77294.jpg", "osmTags": { "and": [ "power=pole", @@ -402322,7 +402536,7 @@ }, { "question": "Київобленерго", - "icon": "./assets/data/nsi/logos/9e843b-b77294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9e843b-b77294.jpg", "osmTags": { "and": [ "power=pole", @@ -402513,7 +402727,7 @@ }, { "question": "Россети", - "icon": "./assets/data/nsi/logos/8fc412-407be8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/8fc412-407be8.png", "osmTags": { "and": [ "power=pole", @@ -402528,7 +402742,7 @@ }, { "question": "Сахалинэнерго", - "icon": "./assets/data/nsi/logos/1fc076-407be8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1fc076-407be8.jpg", "osmTags": { "and": [ "power=pole", @@ -402566,7 +402780,7 @@ }, { "question": "Черкасиобленерго", - "icon": "./assets/data/nsi/logos/472734-b77294.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/472734-b77294.jpg", "osmTags": { "and": [ "power=pole", @@ -402581,7 +402795,7 @@ }, { "question": "الشركة التونسية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/tunisiancompanyofelectricityandgas-ddece0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tunisiancompanyofelectricityandgas-ddece0.jpg", "osmTags": { "and": [ "power=pole", @@ -402607,7 +402821,7 @@ }, { "question": "الشركة الوطنية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/sonelgaz-9dcc3d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-9dcc3d.jpg", "osmTags": { "and": [ "power=pole", @@ -402624,7 +402838,7 @@ }, { "question": "การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย", - "icon": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-c89122.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-c89122.jpg", "osmTags": { "and": [ "power=pole", @@ -402683,7 +402897,7 @@ }, { "question": "中華電力有限公司 CLP Power Hong Kong Limited", - "icon": "./assets/data/nsi/logos/clppowerhongkonglimited-64f448.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-64f448.png", "osmTags": { "and": [ "power=pole", @@ -402707,7 +402921,7 @@ }, { "question": "中部電力パワーグリッド", - "icon": "./assets/data/nsi/logos/chubuelectricpowergridcompany-f42ba4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-f42ba4.svg", "osmTags": { "and": [ "power=pole", @@ -402724,7 +402938,7 @@ }, { "question": "九州電力送配電", - "icon": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-f42ba4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-f42ba4.png", "osmTags": { "and": [ "power=pole", @@ -402741,7 +402955,7 @@ }, { "question": "北海道電力ネットワーク", - "icon": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-f42ba4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-f42ba4.png", "osmTags": { "and": [ "power=pole", @@ -402775,7 +402989,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/34ba0b-c529db.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/34ba0b-c529db.jpg", "osmTags": { "and": [ "power=pole", @@ -402840,7 +403054,7 @@ }, { "question": "東京電力パワーグリッド", - "icon": "./assets/data/nsi/logos/tepcopowergrid-f42ba4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-f42ba4.svg", "osmTags": { "and": [ "power=pole", @@ -402873,7 +403087,7 @@ }, { "question": "沖縄電力", - "icon": "./assets/data/nsi/logos/okinawaelectricpowercompany-f42ba4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-f42ba4.jpg", "osmTags": { "and": [ "power=pole", @@ -402916,7 +403130,7 @@ }, { "question": "電源開発送変電ネットワーク", - "icon": "./assets/data/nsi/logos/jpowertransmissionnetwork-f42ba4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jpowertransmissionnetwork-f42ba4.svg", "osmTags": { "and": [ "power=pole", @@ -402933,7 +403147,7 @@ }, { "question": "香港電燈有限公司 The Hongkong Electric Company, Limited", - "icon": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-64f448.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-64f448.jpg", "osmTags": { "and": [ "power=pole", @@ -402966,7 +403180,7 @@ }, { "question": "50Hertz Transmission", - "icon": "./assets/data/nsi/logos/50hertztransmission-7ff171.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-7ff171.svg", "osmTags": { "and": [ "power=substation", @@ -402999,7 +403213,7 @@ }, { "question": "A2A", - "icon": "./assets/data/nsi/logos/a2a-5e9b52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a2a-5e9b52.jpg", "osmTags": { "and": [ "power=substation", @@ -403014,7 +403228,7 @@ }, { "question": "Acea Distribuzione", - "icon": "./assets/data/nsi/logos/aceadistribuzione-5e9b52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aceadistribuzione-5e9b52.jpg", "osmTags": { "and": [ "power=substation", @@ -403029,7 +403243,7 @@ }, { "question": "Adif", - "icon": "./assets/data/nsi/logos/adif-294d99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adif-294d99.jpg", "osmTags": { "and": [ "power=substation", @@ -403053,7 +403267,7 @@ }, { "question": "AEP Ohio", - "icon": "./assets/data/nsi/logos/aepohio-7dabf9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aepohio-7dabf9.png", "osmTags": { "and": [ "power=substation", @@ -403068,7 +403282,7 @@ }, { "question": "AEP Texas", - "icon": "./assets/data/nsi/logos/aeptexas-9e5147.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aeptexas-9e5147.png", "osmTags": { "and": [ "power=substation", @@ -403083,7 +403297,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-1d9244.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-1d9244.png", "osmTags": { "and": [ "power=substation", @@ -403098,7 +403312,7 @@ }, { "question": "AEW", - "icon": "./assets/data/nsi/logos/aew-f6524b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aew-f6524b.png", "osmTags": { "and": [ "power=substation", @@ -403113,7 +403327,7 @@ }, { "question": "Agder Energi", - "icon": "./assets/data/nsi/logos/agderenergi-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agderenergi-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -403128,7 +403342,7 @@ }, { "question": "Alabama Power", - "icon": "./assets/data/nsi/logos/alabamapower-569b0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamapower-569b0d.jpg", "osmTags": { "and": [ "power=substation", @@ -403143,7 +403357,7 @@ }, { "question": "Albtal-Verkehrs-Gesellschaft mbH", - "icon": "./assets/data/nsi/logos/albtalverkehrsgesellschaftmbh-dda049.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albtalverkehrsgesellschaftmbh-dda049.png", "osmTags": { "and": [ "power=substation", @@ -403159,7 +403373,7 @@ }, { "question": "Albwerk", - "icon": "./assets/data/nsi/logos/albwerk-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albwerk-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -403174,7 +403388,7 @@ }, { "question": "Allgäuer Überlandwerk", - "icon": "./assets/data/nsi/logos/allgaueruberlandwerk-79f5a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-79f5a8.png", "osmTags": { "and": [ "power=substation", @@ -403190,7 +403404,7 @@ }, { "question": "Alliant Energy", - "icon": "./assets/data/nsi/logos/alliantenergy-301545.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alliantenergy-301545.png", "osmTags": { "and": [ "power=substation", @@ -403205,7 +403419,7 @@ }, { "question": "Alpine Energy", - "icon": "./assets/data/nsi/logos/alpineenergy-e516d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alpineenergy-e516d3.jpg", "osmTags": { "and": [ "power=substation", @@ -403220,7 +403434,7 @@ }, { "question": "AltaLink", - "icon": "./assets/data/nsi/logos/altalink-ebf474.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altalink-ebf474.jpg", "osmTags": { "and": [ "power=substation", @@ -403249,7 +403463,7 @@ }, { "question": "Ameren", - "icon": "./assets/data/nsi/logos/ameren-8ed706.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameren-8ed706.png", "osmTags": { "and": [ "power=substation", @@ -403278,7 +403492,7 @@ }, { "question": "American Electric Power", - "icon": "./assets/data/nsi/logos/americanelectricpower-301545.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-301545.png", "osmTags": { "and": [ "power=substation", @@ -403308,7 +403522,7 @@ }, { "question": "Amprion", - "icon": "./assets/data/nsi/logos/amprion-7ff171.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/amprion-7ff171.svg", "osmTags": { "and": [ "power=substation", @@ -403323,7 +403537,7 @@ }, { "question": "Amtrak", - "icon": "./assets/data/nsi/logos/amtrak-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtrak-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -403338,7 +403552,7 @@ }, { "question": "Anaheim Public Utilities", - "icon": "./assets/data/nsi/logos/anaheimpublicutilities-9f24bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-9f24bd.png", "osmTags": { "and": [ "power=substation", @@ -403353,7 +403567,7 @@ }, { "question": "ANDE", - "icon": "./assets/data/nsi/logos/ande-2b7b09.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ande-2b7b09.jpg", "osmTags": { "and": [ "power=substation", @@ -403368,7 +403582,7 @@ }, { "question": "Appalachian Power", - "icon": "./assets/data/nsi/logos/appalachianpowercompany-0f82b9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-0f82b9.png", "osmTags": { "and": [ "power=substation", @@ -403397,7 +403611,7 @@ }, { "question": "Arizona Public Service", - "icon": "./assets/data/nsi/logos/arizonapublicservice-260b75.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-260b75.png", "osmTags": { "and": [ "power=substation", @@ -403426,7 +403640,7 @@ }, { "question": "Arkansas Valley Electric Cooperative", - "icon": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-5f1fb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-5f1fb8.jpg", "osmTags": { "and": [ "power=substation", @@ -403473,7 +403687,7 @@ }, { "question": "ATCO Electric", - "icon": "./assets/data/nsi/logos/atcoelectric-5212b2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atcoelectric-5212b2.svg", "osmTags": { "and": [ "power=substation", @@ -403488,7 +403702,7 @@ }, { "question": "Atlantic City Electric", - "icon": "./assets/data/nsi/logos/atlanticcityelectric-61b2a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-61b2a4.jpg", "osmTags": { "and": [ "power=substation", @@ -403503,7 +403717,7 @@ }, { "question": "Augstsprieguma tīkls", - "icon": "./assets/data/nsi/logos/augstspriegumatikls-b57901.png", + "icon": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-b57901.png", "osmTags": { "and": [ "power=substation", @@ -403532,7 +403746,7 @@ }, { "question": "Aurora Energy (New Zealand)", - "icon": "./assets/data/nsi/logos/auroraenergy-8d74a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/auroraenergy-8d74a7.jpg", "osmTags": { "and": [ "power=substation", @@ -403547,7 +403761,7 @@ }, { "question": "Ausgrid", - "icon": "./assets/data/nsi/logos/ausgrid-1266b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausgrid-1266b7.jpg", "osmTags": { "and": [ "power=substation", @@ -403562,7 +403776,7 @@ }, { "question": "AusNet", - "icon": "./assets/data/nsi/logos/ausnet-2fd8c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausnet-2fd8c0.jpg", "osmTags": { "and": [ "power=substation", @@ -403577,7 +403791,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-9e5147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-9e5147.jpg", "osmTags": { "and": [ "power=substation", @@ -403606,7 +403820,7 @@ }, { "question": "Avacon Netz", - "icon": "./assets/data/nsi/logos/avaconnetz-6177b3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avaconnetz-6177b3.svg", "osmTags": { "and": [ "power=substation", @@ -403621,7 +403835,7 @@ }, { "question": "Avista", - "icon": "./assets/data/nsi/logos/avista-2dbf5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avista-2dbf5c.jpg", "osmTags": { "and": [ "power=substation", @@ -403636,7 +403850,7 @@ }, { "question": "AVU AG", - "icon": "./assets/data/nsi/logos/avuag-26c4cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avuag-26c4cf.svg", "osmTags": { "and": [ "power=substation", @@ -403651,7 +403865,7 @@ }, { "question": "Axpo/EKZ", - "icon": "./assets/data/nsi/logos/axpoekz-42bdec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axpoekz-42bdec.jpg", "osmTags": { "and": [ "power=substation", @@ -403666,7 +403880,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-62c87b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-62c87b.jpg", "osmTags": { "and": [ "power=substation", @@ -403681,7 +403895,7 @@ }, { "question": "Bane NOR", - "icon": "./assets/data/nsi/logos/banenor-ba6ae8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banenor-ba6ae8.png", "osmTags": { "and": [ "power=substation", @@ -403696,7 +403910,7 @@ }, { "question": "Banedanmark", - "icon": "./assets/data/nsi/logos/banedanmark-3aeb55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banedanmark-3aeb55.png", "osmTags": { "and": [ "power=substation", @@ -403757,7 +403971,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-9c288b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-9c288b.jpg", "osmTags": { "and": [ "power=substation", @@ -403781,7 +403995,7 @@ }, { "question": "BEDAŞ", - "icon": "./assets/data/nsi/logos/bedas-13aefb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedas-13aefb.jpg", "osmTags": { "and": [ "power=substation", @@ -403796,7 +404010,7 @@ }, { "question": "Belize Electricity Limited", - "icon": "./assets/data/nsi/logos/belizeelectricitylimited-925406.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-925406.jpg", "osmTags": { "and": [ "power=substation", @@ -403812,7 +404026,7 @@ }, { "question": "Benton PUD", - "icon": "./assets/data/nsi/logos/bentonpublicutilitydistrict-99a087.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bentonpublicutilitydistrict-99a087.jpg", "osmTags": { "and": [ "power=substation", @@ -403842,7 +404056,7 @@ }, { "question": "Berliner Verkehrsbetriebe", - "icon": "./assets/data/nsi/logos/berlinerverkehrsbetriebe-e93127.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerverkehrsbetriebe-e93127.jpg", "osmTags": { "and": [ "power=substation", @@ -403866,7 +404080,7 @@ }, { "question": "BKK", - "icon": "./assets/data/nsi/logos/bkk-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bkk-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -403881,7 +404095,7 @@ }, { "question": "BKW", - "icon": "./assets/data/nsi/logos/bkw-dc04c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bkw-dc04c1.png", "osmTags": { "and": [ "power=substation", @@ -403911,7 +404125,7 @@ }, { "question": "Blue Ridge Energy", - "icon": "./assets/data/nsi/logos/blueridgeenergy-32600e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-32600e.jpg", "osmTags": { "and": [ "power=substation", @@ -403926,7 +404140,7 @@ }, { "question": "Bluebonnet Electric Cooperative", - "icon": "./assets/data/nsi/logos/bluebonnetelectriccooperative-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluebonnetelectriccooperative-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -403942,7 +404156,7 @@ }, { "question": "bnNETZE", - "icon": "./assets/data/nsi/logos/bnnetze-dda049.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bnnetze-dda049.png", "osmTags": { "and": [ "power=substation", @@ -403957,7 +404171,7 @@ }, { "question": "Bonneville Power Administration", - "icon": "./assets/data/nsi/logos/bonnevillepoweradministration-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -403973,7 +404187,7 @@ }, { "question": "Bornholms Energi & Forsyning", - "icon": "./assets/data/nsi/logos/bornholmsenergiandforsyning-647e81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-647e81.jpg", "osmTags": { "and": [ "power=substation", @@ -404003,7 +404217,7 @@ }, { "question": "Braunschweiger Verkehrs-GmbH", - "icon": "./assets/data/nsi/logos/braunschweigerverkehrsgmbh-1af6be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/braunschweigerverkehrsgmbh-1af6be.png", "osmTags": { "and": [ "power=substation", @@ -404042,7 +404256,7 @@ }, { "question": "Bremer Straßenbahn AG", - "icon": "./assets/data/nsi/logos/bremerstrassenbahnag-b4e66c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bremerstrassenbahnag-b4e66c.svg", "osmTags": { "and": [ "power=substation", @@ -404058,7 +404272,7 @@ }, { "question": "BrightRidge", - "icon": "./assets/data/nsi/logos/brightridge-a96cd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightridge-a96cd6.jpg", "osmTags": { "and": [ "power=substation", @@ -404106,7 +404320,7 @@ }, { "question": "Bryan Texas Utilities", - "icon": "./assets/data/nsi/logos/bryantexasutilities-9e5147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-9e5147.jpg", "osmTags": { "and": [ "power=substation", @@ -404144,7 +404358,7 @@ }, { "question": "Caruna", - "icon": "./assets/data/nsi/logos/caruna-a5d6ed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caruna-a5d6ed.svg", "osmTags": { "and": [ "power=substation", @@ -404159,7 +404373,7 @@ }, { "question": "CDEEE", - "icon": "./assets/data/nsi/logos/cdeee-e52dba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cdeee-e52dba.jpg", "osmTags": { "and": [ "power=substation", @@ -404174,7 +404388,7 @@ }, { "question": "CEEE", - "icon": "./assets/data/nsi/logos/ceee-acc4a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceee-acc4a0.svg", "osmTags": { "and": [ "power=substation", @@ -404203,7 +404417,7 @@ }, { "question": "Celesc", - "icon": "./assets/data/nsi/logos/celesc-acc4a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celesc-acc4a0.jpg", "osmTags": { "and": [ "power=substation", @@ -404218,7 +404432,7 @@ }, { "question": "Celle-Uelzen Netz", - "icon": "./assets/data/nsi/logos/celleuelzennetz-1af6be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celleuelzennetz-1af6be.jpg", "osmTags": { "and": [ "power=substation", @@ -404234,7 +404448,7 @@ }, { "question": "Cemig", - "icon": "./assets/data/nsi/logos/cemig-acc4a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cemig-acc4a0.jpg", "osmTags": { "and": [ "power=substation", @@ -404249,7 +404463,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -404278,7 +404492,7 @@ }, { "question": "Central Maine Power Company", - "icon": "./assets/data/nsi/logos/centralmainepowercompany-140c84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-140c84.jpg", "osmTags": { "and": [ "power=substation", @@ -404293,7 +404507,7 @@ }, { "question": "Central Texas Electric Cooperative", - "icon": "./assets/data/nsi/logos/centraltexaselectriccooperative-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centraltexaselectriccooperative-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -404308,7 +404522,7 @@ }, { "question": "ČEPS", - "icon": "./assets/data/nsi/logos/ceps-fdda90.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceps-fdda90.jpg", "osmTags": { "and": [ "power=substation", @@ -404350,7 +404564,7 @@ }, { "question": "Ceylon Electricity Board", - "icon": "./assets/data/nsi/logos/ceylonelectricityboard-2e3b42.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-2e3b42.png", "osmTags": { "and": [ "power=substation", @@ -404380,7 +404594,7 @@ }, { "question": "CGE", - "icon": "./assets/data/nsi/logos/cge-6cc51c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cge-6cc51c.jpg", "osmTags": { "and": [ "power=substation", @@ -404395,7 +404609,7 @@ }, { "question": "Chicago Transit Authority", - "icon": "./assets/data/nsi/logos/chicagotransitauthority-09b582.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagotransitauthority-09b582.jpg", "osmTags": { "and": [ "power=substation", @@ -404411,7 +404625,7 @@ }, { "question": "CIPCO", - "icon": "./assets/data/nsi/logos/cipco-49fcf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cipco-49fcf5.jpg", "osmTags": { "and": [ "power=substation", @@ -404435,7 +404649,7 @@ }, { "question": "City of Cape Town", - "icon": "./assets/data/nsi/logos/cityofcapetown-ae9b5d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-ae9b5d.png", "osmTags": { "and": [ "power=substation", @@ -404454,7 +404668,7 @@ }, { "question": "City of Lakeland", - "icon": "./assets/data/nsi/logos/cityoflakeland-8432e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-8432e2.png", "osmTags": { "and": [ "power=substation", @@ -404469,7 +404683,7 @@ }, { "question": "City of Tallahassee", - "icon": "./assets/data/nsi/logos/cityoftallahassee-8432e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-8432e2.jpg", "osmTags": { "and": [ "power=substation", @@ -404498,7 +404712,7 @@ }, { "question": "City Water, Light & Power", - "icon": "./assets/data/nsi/logos/citywaterlightandpower-09b582.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citywaterlightandpower-09b582.jpg", "osmTags": { "and": [ "power=substation", @@ -404514,7 +404728,7 @@ }, { "question": "Clark Public Utilities", - "icon": "./assets/data/nsi/logos/clarkpublicutilities-99a087.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-99a087.jpg", "osmTags": { "and": [ "power=substation", @@ -404529,7 +404743,7 @@ }, { "question": "Clay Electric Cooperative", - "icon": "./assets/data/nsi/logos/clayelectriccooperative-8432e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-8432e2.jpg", "osmTags": { "and": [ "power=substation", @@ -404544,7 +404758,7 @@ }, { "question": "CLECO", - "icon": "./assets/data/nsi/logos/cleco-403aa2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleco-403aa2.svg", "osmTags": { "and": [ "power=substation", @@ -404613,7 +404827,7 @@ }, { "question": "Coast Mountain Bus Company", - "icon": "./assets/data/nsi/logos/coastmountainbuscompany-9c288b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coastmountainbuscompany-9c288b.png", "osmTags": { "and": [ "power=substation", @@ -404628,7 +404842,7 @@ }, { "question": "Codelco Chile", - "icon": "./assets/data/nsi/logos/codelcochile-6cc51c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/codelcochile-6cc51c.jpg", "osmTags": { "and": [ "power=substation", @@ -404643,7 +404857,7 @@ }, { "question": "Coelba", - "icon": "./assets/data/nsi/logos/coelba-acc4a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coelba-acc4a0.png", "osmTags": { "and": [ "power=substation", @@ -404658,7 +404872,7 @@ }, { "question": "Colbún", - "icon": "./assets/data/nsi/logos/colbun-6cc51c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colbun-6cc51c.jpg", "osmTags": { "and": [ "power=substation", @@ -404673,7 +404887,7 @@ }, { "question": "Colonial Pipeline", - "icon": "./assets/data/nsi/logos/colonialpipeline-301545.png", + "icon": "https://data.mapcomplete.org/nsi//logos/colonialpipeline-301545.png", "osmTags": { "and": [ "power=substation", @@ -404688,7 +404902,7 @@ }, { "question": "Colorado Springs Utilities", - "icon": "./assets/data/nsi/logos/coloradospringsutilities-80514d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-80514d.jpg", "osmTags": { "and": [ "power=substation", @@ -404703,7 +404917,7 @@ }, { "question": "Comisión Federal de Electricidad", - "icon": "./assets/data/nsi/logos/comisionfederaldeelectricidad-e47698.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-e47698.png", "osmTags": { "and": [ "power=substation", @@ -404719,7 +404933,7 @@ }, { "question": "Commonwealth Edison", - "icon": "./assets/data/nsi/logos/commonwealthedison-e23b8e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-e23b8e.jpg", "osmTags": { "and": [ "power=substation", @@ -404750,7 +404964,7 @@ }, { "question": "Compagnia Valdostana Acque", - "icon": "./assets/data/nsi/logos/compagniavaldostanaacque-5e9b52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compagniavaldostanaacque-5e9b52.jpg", "osmTags": { "and": [ "power=substation", @@ -404819,7 +405033,7 @@ }, { "question": "Companhia Paulista de Trens Metropolitanos", - "icon": "./assets/data/nsi/logos/companhiapaulistadetrensmetropolitanos-acc4a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/companhiapaulistadetrensmetropolitanos-acc4a0.jpg", "osmTags": { "and": [ "power=substation", @@ -404835,7 +405049,7 @@ }, { "question": "Consolidated Edison", - "icon": "./assets/data/nsi/logos/consolidatededison-203caa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consolidatededison-203caa.jpg", "osmTags": { "and": [ "power=substation", @@ -404864,7 +405078,7 @@ }, { "question": "Consumers Energy", - "icon": "./assets/data/nsi/logos/consumersenergy-22dfff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumersenergy-22dfff.png", "osmTags": { "and": [ "power=substation", @@ -404902,7 +405116,7 @@ }, { "question": "Copel", - "icon": "./assets/data/nsi/logos/copel-acc4a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copel-acc4a0.jpg", "osmTags": { "and": [ "power=substation", @@ -404917,7 +405131,7 @@ }, { "question": "Corn Belt Energy Corporation", - "icon": "./assets/data/nsi/logos/cornbeltenergycorporation-09b582.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornbeltenergycorporation-09b582.jpg", "osmTags": { "and": [ "power=substation", @@ -404932,7 +405146,7 @@ }, { "question": "Corn Belt Power Cooperative", - "icon": "./assets/data/nsi/logos/cornbeltpowercooperative-49fcf5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-49fcf5.jpg", "osmTags": { "and": [ "power=substation", @@ -404947,7 +405161,7 @@ }, { "question": "Corpoelec", - "icon": "./assets/data/nsi/logos/corpoelec-ed6156.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpoelec-ed6156.png", "osmTags": { "and": [ "power=substation", @@ -404962,7 +405176,7 @@ }, { "question": "Cosern", - "icon": "./assets/data/nsi/logos/cosern-acc4a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cosern-acc4a0.png", "osmTags": { "and": [ "power=substation", @@ -404977,7 +405191,7 @@ }, { "question": "CPFL Energia", - "icon": "./assets/data/nsi/logos/cpflenergia-acc4a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cpflenergia-acc4a0.png", "osmTags": { "and": [ "power=substation", @@ -405001,7 +405215,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-9e5147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-9e5147.jpg", "osmTags": { "and": [ "power=substation", @@ -405016,7 +405230,7 @@ }, { "question": "Creos", - "icon": "./assets/data/nsi/logos/creos-6d4ec8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creos-6d4ec8.jpg", "osmTags": { "and": [ "power=substation", @@ -405068,7 +405282,7 @@ }, { "question": "Cullman Electric Cooperative", - "icon": "./assets/data/nsi/logos/cullmanelectriccooperative-569b0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-569b0d.png", "osmTags": { "and": [ "power=substation", @@ -405083,7 +405297,7 @@ }, { "question": "Dairyland Power Cooperative", - "icon": "./assets/data/nsi/logos/dairylandpowercooperative-32b37c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-32b37c.jpg", "osmTags": { "and": [ "power=substation", @@ -405121,7 +405335,7 @@ }, { "question": "Davao Light and Power Company", - "icon": "./assets/data/nsi/logos/davaolightandpowercompany-851165.png", + "icon": "https://data.mapcomplete.org/nsi//logos/davaolightandpowercompany-851165.png", "osmTags": { "and": [ "power=substation", @@ -405136,7 +405350,7 @@ }, { "question": "DB Energie", - "icon": "./assets/data/nsi/logos/dbenergie-7ff171.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbenergie-7ff171.svg", "osmTags": { "and": [ "power=substation", @@ -405151,7 +405365,7 @@ }, { "question": "DB InfraGO", - "icon": "./assets/data/nsi/logos/dbinfrago-7ff171.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbinfrago-7ff171.svg", "osmTags": { "and": [ "power=substation", @@ -405166,7 +405380,7 @@ }, { "question": "Decatur Utilities", - "icon": "./assets/data/nsi/logos/decaturutilities-569b0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/decaturutilities-569b0d.png", "osmTags": { "and": [ "power=substation", @@ -405195,7 +405409,7 @@ }, { "question": "Delmarva Power", - "icon": "./assets/data/nsi/logos/delmarvapower-2687bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delmarvapower-2687bf.jpg", "osmTags": { "and": [ "power=substation", @@ -405210,7 +405424,7 @@ }, { "question": "DEMCO", - "icon": "./assets/data/nsi/logos/demco-403aa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/demco-403aa2.jpg", "osmTags": { "and": [ "power=substation", @@ -405243,7 +405457,7 @@ }, { "question": "Deutsche Bahn", - "icon": "./assets/data/nsi/logos/deutschebahn-7ff171.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebahn-7ff171.png", "osmTags": { "and": [ "power=substation", @@ -405290,7 +405504,7 @@ }, { "question": "Dominion Energy", - "icon": "./assets/data/nsi/logos/dominionenergy-c6b596.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dominionenergy-c6b596.png", "osmTags": { "and": [ "power=substation", @@ -405319,7 +405533,7 @@ }, { "question": "Dow Chemical Company", - "icon": "./assets/data/nsi/logos/dowchemicalcompany-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -405343,7 +405557,7 @@ }, { "question": "DPP", - "icon": "./assets/data/nsi/logos/dpp-fd39e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dpp-fd39e1.png", "osmTags": { "and": [ "power=substation", @@ -405358,7 +405572,7 @@ }, { "question": "Drewag", - "icon": "./assets/data/nsi/logos/drewag-8b3810.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drewag-8b3810.jpg", "osmTags": { "and": [ "power=substation", @@ -405373,7 +405587,7 @@ }, { "question": "DTE Energy", - "icon": "./assets/data/nsi/logos/dteenergy-22dfff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteenergy-22dfff.png", "osmTags": { "and": [ "power=substation", @@ -405412,7 +405626,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-dc12e8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-dc12e8.jpg", "osmTags": { "and": [ "power=substation", @@ -405427,7 +405641,7 @@ }, { "question": "Duke Energy Progress", - "icon": "./assets/data/nsi/logos/dukeenergyprogress-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -405442,7 +405656,7 @@ }, { "question": "Duquesne Light", - "icon": "./assets/data/nsi/logos/duquesnelight-6d7b97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duquesnelight-6d7b97.jpg", "osmTags": { "and": [ "power=substation", @@ -405457,7 +405671,7 @@ }, { "question": "DVV", - "icon": "./assets/data/nsi/logos/dvv-caeb06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dvv-caeb06.jpg", "osmTags": { "and": [ "power=substation", @@ -405472,7 +405686,7 @@ }, { "question": "e-distribuzione S.p.A.", - "icon": "./assets/data/nsi/logos/edistribuzionespa-5e9b52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edistribuzionespa-5e9b52.jpg", "osmTags": { "and": [ "power=substation", @@ -405487,7 +405701,7 @@ }, { "question": "e-netz Südhessen", - "icon": "./assets/data/nsi/logos/enetzsudhessen-7ff171.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enetzsudhessen-7ff171.svg", "osmTags": { "and": [ "power=substation", @@ -405502,7 +405716,7 @@ }, { "question": "E-REDES", - "icon": "./assets/data/nsi/logos/eredes-108ef7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eredes-108ef7.png", "osmTags": { "and": [ "power=substation", @@ -405517,7 +405731,7 @@ }, { "question": "E-Werk Mittelbaden", - "icon": "./assets/data/nsi/logos/ewerkmittelbaden-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewerkmittelbaden-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -405541,7 +405755,7 @@ }, { "question": "E.DIS Netz GmbH", - "icon": "./assets/data/nsi/logos/edisnetzgmbh-b09616.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-b09616.jpg", "osmTags": { "and": [ "power=substation", @@ -405635,7 +405849,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-fc3a87.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-fc3a87.png", "osmTags": { "and": [ "power=substation", @@ -405650,7 +405864,7 @@ }, { "question": "E.ON Netz", - "icon": "./assets/data/nsi/logos/eonnetz-7ff171.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonnetz-7ff171.svg", "osmTags": { "and": [ "power=substation", @@ -405702,7 +405916,7 @@ }, { "question": "East Kentucky Power Cooperative", - "icon": "./assets/data/nsi/logos/eastkentuckypowercooperative-44fcc4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-44fcc4.jpg", "osmTags": { "and": [ "power=substation", @@ -405717,7 +405931,7 @@ }, { "question": "East River Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/eastriverelectricpowercooperative-148f21.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-148f21.jpg", "osmTags": { "and": [ "power=substation", @@ -405746,7 +405960,7 @@ }, { "question": "ED Netze", - "icon": "./assets/data/nsi/logos/ednetze-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ednetze-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -405770,7 +405984,7 @@ }, { "question": "Edenor", - "icon": "./assets/data/nsi/logos/edenor-95f729.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edenor-95f729.jpg", "osmTags": { "and": [ "power=substation", @@ -405785,7 +405999,7 @@ }, { "question": "Edison", - "icon": "./assets/data/nsi/logos/edison-5e9b52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edison-5e9b52.jpg", "osmTags": { "and": [ "power=substation", @@ -405800,7 +406014,7 @@ }, { "question": "EDP Espírito Santo", - "icon": "./assets/data/nsi/logos/edpespiritosanto-4428e8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-4428e8.svg", "osmTags": { "and": [ "power=substation", @@ -405830,7 +406044,7 @@ }, { "question": "EDP Renováveis", - "icon": "./assets/data/nsi/logos/edprenovaveis-8a3460.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-8a3460.svg", "osmTags": { "and": [ "power=substation", @@ -405847,7 +406061,7 @@ }, { "question": "EDP São Paulo", - "icon": "./assets/data/nsi/logos/edpsaopaulo-acc4a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-acc4a0.jpg", "osmTags": { "and": [ "power=substation", @@ -405880,7 +406094,7 @@ }, { "question": "EFE", - "icon": "./assets/data/nsi/logos/efe-6cc51c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/efe-6cc51c.svg", "osmTags": { "and": [ "power=substation", @@ -405895,7 +406109,7 @@ }, { "question": "EG.D", - "icon": "./assets/data/nsi/logos/egd-fd39e1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/egd-fd39e1.svg", "osmTags": { "and": [ "power=substation", @@ -405924,7 +406138,7 @@ }, { "question": "EirGrid", - "icon": "./assets/data/nsi/logos/eirgrid-705ceb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eirgrid-705ceb.jpg", "osmTags": { "and": [ "power=substation", @@ -405939,7 +406153,7 @@ }, { "question": "EKS", - "icon": "./assets/data/nsi/logos/eks-9a284f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eks-9a284f.png", "osmTags": { "and": [ "power=substation", @@ -405954,7 +406168,7 @@ }, { "question": "EKT", - "icon": "./assets/data/nsi/logos/ekt-0bd48b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekt-0bd48b.jpg", "osmTags": { "and": [ "power=substation", @@ -405969,7 +406183,7 @@ }, { "question": "EKZ", - "icon": "./assets/data/nsi/logos/ekz-dc04c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ekz-dc04c1.png", "osmTags": { "and": [ "power=substation", @@ -406012,7 +406226,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-fc3a87.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-fc3a87.png", "osmTags": { "and": [ "power=substation", @@ -406044,7 +406258,7 @@ }, { "question": "Electricity North West", - "icon": "./assets/data/nsi/logos/electricitynorthwest-a368ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-a368ae.jpg", "osmTags": { "and": [ "power=substation", @@ -406104,7 +406318,7 @@ }, { "question": "Elektrilevi", - "icon": "./assets/data/nsi/logos/elektrilevi-6bba64.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrilevi-6bba64.png", "osmTags": { "and": [ "power=substation", @@ -406142,7 +406356,7 @@ }, { "question": "Elektrizitätswerke Reutte", - "icon": "./assets/data/nsi/logos/elektrizitatswerkereutte-31e6bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkereutte-31e6bd.png", "osmTags": { "and": [ "power=substation", @@ -406239,7 +406453,7 @@ }, { "question": "Elenia", - "icon": "./assets/data/nsi/logos/elenia-a5d6ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elenia-a5d6ed.jpg", "osmTags": { "and": [ "power=substation", @@ -406254,7 +406468,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-6bba64.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-6bba64.jpg", "osmTags": { "and": [ "power=substation", @@ -406312,7 +406526,7 @@ }, { "question": "Eletropaulo", - "icon": "./assets/data/nsi/logos/eletropaulo-acc4a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eletropaulo-acc4a0.svg", "osmTags": { "and": [ "power=substation", @@ -406350,7 +406564,7 @@ }, { "question": "Elia", - "icon": "./assets/data/nsi/logos/elia-531b98.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elia-531b98.png", "osmTags": { "and": [ "power=substation", @@ -406388,7 +406602,7 @@ }, { "question": "Ellevio", - "icon": "./assets/data/nsi/logos/ellevio-44b3db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ellevio-44b3db.png", "osmTags": { "and": [ "power=substation", @@ -406417,7 +406631,7 @@ }, { "question": "ELMŰ", - "icon": "./assets/data/nsi/logos/elmu-998f8d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elmu-998f8d.png", "osmTags": { "and": [ "power=substation", @@ -406432,7 +406646,7 @@ }, { "question": "Elvia", - "icon": "./assets/data/nsi/logos/elvia-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elvia-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -406461,7 +406675,7 @@ }, { "question": "Emerald People's Utility District", - "icon": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-404227.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-404227.png", "osmTags": { "and": [ "power=substation", @@ -406477,7 +406691,7 @@ }, { "question": "Empresas Públicas de Medellín", - "icon": "./assets/data/nsi/logos/empresaspublicasdemedellin-8e2bec.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/empresaspublicasdemedellin-8e2bec.svg", "osmTags": { "and": [ "power=substation", @@ -406502,7 +406716,7 @@ }, { "question": "EnBW Energie Baden-Württemberg AG", - "icon": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-7ff171.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-7ff171.png", "osmTags": { "and": [ "power=substation", @@ -406517,7 +406731,7 @@ }, { "question": "Endeavour Energy", - "icon": "./assets/data/nsi/logos/endeavourenergy-1266b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-1266b7.jpg", "osmTags": { "and": [ "power=substation", @@ -406532,7 +406746,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-294d99.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-294d99.png", "osmTags": { "and": [ "power=substation", @@ -406547,7 +406761,7 @@ }, { "question": "Enea", - "icon": "./assets/data/nsi/logos/enea-83e94a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enea-83e94a.png", "osmTags": { "and": [ "power=substation", @@ -406562,7 +406776,7 @@ }, { "question": "Eneco", - "icon": "./assets/data/nsi/logos/eneco-d719f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneco-d719f8.png", "osmTags": { "and": [ "power=substation", @@ -406577,7 +406791,7 @@ }, { "question": "Enedis", - "icon": "./assets/data/nsi/logos/enedis-55e14a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enedis-55e14a.png", "osmTags": { "and": [ "power=substation", @@ -406592,7 +406806,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-fc3a87.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-fc3a87.png", "osmTags": { "and": [ "power=substation", @@ -406607,7 +406821,7 @@ }, { "question": "Enel Distribución Chile", - "icon": "./assets/data/nsi/logos/eneldistribucionchile-6cc51c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribucionchile-6cc51c.png", "osmTags": { "and": [ "power=substation", @@ -406636,7 +406850,7 @@ }, { "question": "Enel Distribuição Ceará", - "icon": "./assets/data/nsi/logos/eneldistribuicaoceara-acc4a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-acc4a0.png", "osmTags": { "and": [ "power=substation", @@ -406665,7 +406879,7 @@ }, { "question": "Enel Distribuição São Paulo", - "icon": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-acc4a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-acc4a0.svg", "osmTags": { "and": [ "power=substation", @@ -406680,7 +406894,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-fc3a87.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-fc3a87.svg", "osmTags": { "and": [ "power=substation", @@ -406695,7 +406909,7 @@ }, { "question": "Enel Produzione", - "icon": "./assets/data/nsi/logos/enelproduzione-5e9b52.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelproduzione-5e9b52.svg", "osmTags": { "and": [ "power=substation", @@ -406710,7 +406924,7 @@ }, { "question": "Enemalta", - "icon": "./assets/data/nsi/logos/enemalta-79e49d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enemalta-79e49d.jpg", "osmTags": { "and": [ "power=substation", @@ -406739,7 +406953,7 @@ }, { "question": "Enercon", - "icon": "./assets/data/nsi/logos/enercon-7ff171.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enercon-7ff171.svg", "osmTags": { "and": [ "power=substation", @@ -406754,7 +406968,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-83e94a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-83e94a.png", "osmTags": { "and": [ "power=substation", @@ -406783,7 +406997,7 @@ }, { "question": "Energex", - "icon": "./assets/data/nsi/logos/energex-46c365.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energex-46c365.jpg", "osmTags": { "and": [ "power=substation", @@ -406798,7 +407012,7 @@ }, { "question": "Energias de Portugal", - "icon": "./assets/data/nsi/logos/energiasdeportugal-108ef7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-108ef7.svg", "osmTags": { "and": [ "power=substation", @@ -406814,7 +407028,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-3e6be9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-3e6be9.png", "osmTags": { "and": [ "power=substation", @@ -406829,7 +407043,7 @@ }, { "question": "Énergie du Mali", - "icon": "./assets/data/nsi/logos/energiedumali-8f416b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedumali-8f416b.jpg", "osmTags": { "and": [ "power=substation", @@ -406844,7 +407058,7 @@ }, { "question": "Energie Graz", - "icon": "./assets/data/nsi/logos/energiegraz-1506ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiegraz-1506ff.png", "osmTags": { "and": [ "power=substation", @@ -406859,7 +407073,7 @@ }, { "question": "Energie Klagenfurt GmbH", - "icon": "./assets/data/nsi/logos/energieklagenfurtgmbh-a84f0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieklagenfurtgmbh-a84f0c.jpg", "osmTags": { "and": [ "power=substation", @@ -406874,7 +407088,7 @@ }, { "question": "Energie Steiermark", - "icon": "./assets/data/nsi/logos/energiesteiermark-086f41.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-086f41.png", "osmTags": { "and": [ "power=substation", @@ -406889,7 +407103,7 @@ }, { "question": "Energie Thun AG", - "icon": "./assets/data/nsi/logos/energiethunag-00339e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiethunag-00339e.png", "osmTags": { "and": [ "power=substation", @@ -406904,7 +407118,7 @@ }, { "question": "Energie Waldeck-Frankenberg", - "icon": "./assets/data/nsi/logos/energiewaldeckfrankenberg-43eb08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiewaldeckfrankenberg-43eb08.png", "osmTags": { "and": [ "power=substation", @@ -406934,7 +407148,7 @@ }, { "question": "Energieversorgung Mittelrhein", - "icon": "./assets/data/nsi/logos/energieversorgungmittelrhein-4afb0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-4afb0a.jpg", "osmTags": { "and": [ "power=substation", @@ -406997,7 +407211,7 @@ }, { "question": "Energinet", - "icon": "./assets/data/nsi/logos/energinet-3aeb55.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energinet-3aeb55.png", "osmTags": { "and": [ "power=substation", @@ -407096,7 +407310,7 @@ }, { "question": "Enexis", - "icon": "./assets/data/nsi/logos/enexis-01f022.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enexis-01f022.png", "osmTags": { "and": [ "power=substation", @@ -407111,7 +407325,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-fc3a87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-fc3a87.jpg", "osmTags": { "and": [ "power=substation", @@ -407140,7 +407354,7 @@ }, { "question": "Enipower", - "icon": "./assets/data/nsi/logos/enipower-5e9b52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enipower-5e9b52.jpg", "osmTags": { "and": [ "power=substation", @@ -407155,7 +407369,7 @@ }, { "question": "ENMAX", - "icon": "./assets/data/nsi/logos/enmax-ebf474.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmax-ebf474.png", "osmTags": { "and": [ "power=substation", @@ -407170,7 +407384,7 @@ }, { "question": "ENRW Energieversorgung Rottweil", - "icon": "./assets/data/nsi/logos/enrwenergieversorgungrottweil-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enrwenergieversorgungrottweil-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -407185,7 +407399,7 @@ }, { "question": "Ente Provincial de Energía del Neuquén", - "icon": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-499fd2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-499fd2.png", "osmTags": { "and": [ "power=substation", @@ -407200,7 +407414,7 @@ }, { "question": "entega", - "icon": "./assets/data/nsi/logos/entega-43eb08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/entega-43eb08.png", "osmTags": { "and": [ "power=substation", @@ -407215,7 +407429,7 @@ }, { "question": "Entergy", - "icon": "./assets/data/nsi/logos/entergy-442494.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergy-442494.jpg", "osmTags": { "and": [ "power=substation", @@ -407230,7 +407444,7 @@ }, { "question": "Entergy Arkansas", - "icon": "./assets/data/nsi/logos/entergyarkansas-5f1fb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-5f1fb8.jpg", "osmTags": { "and": [ "power=substation", @@ -407245,7 +407459,7 @@ }, { "question": "Entergy Louisiana", - "icon": "./assets/data/nsi/logos/entergylouisiana-3e5609.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-3e5609.jpg", "osmTags": { "and": [ "power=substation", @@ -407274,7 +407488,7 @@ }, { "question": "enviaM", - "icon": "./assets/data/nsi/logos/enviam-e6380a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enviam-e6380a.png", "osmTags": { "and": [ "power=substation", @@ -407289,7 +407503,7 @@ }, { "question": "enwor", - "icon": "./assets/data/nsi/logos/enwor-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enwor-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -407304,7 +407518,7 @@ }, { "question": "EPB", - "icon": "./assets/data/nsi/logos/epb-bcfc45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epb-bcfc45.jpg", "osmTags": { "and": [ "power=substation", @@ -407319,7 +407533,7 @@ }, { "question": "EPCOR", - "icon": "./assets/data/nsi/logos/epcor-b7915e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epcor-b7915e.jpg", "osmTags": { "and": [ "power=substation", @@ -407334,7 +407548,7 @@ }, { "question": "EPEC", - "icon": "./assets/data/nsi/logos/epec-00288a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epec-00288a.jpg", "osmTags": { "and": [ "power=substation", @@ -407349,7 +407563,7 @@ }, { "question": "EPS", - "icon": "./assets/data/nsi/logos/eps-0be006.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eps-0be006.svg", "osmTags": { "and": [ "power=substation", @@ -407448,7 +407662,7 @@ }, { "question": "Equatorial Energia Piauí", - "icon": "./assets/data/nsi/logos/equatorialenergiapiaui-5d7987.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-5d7987.jpg", "osmTags": { "and": [ "power=substation", @@ -407472,7 +407686,7 @@ }, { "question": "Ergon Energy", - "icon": "./assets/data/nsi/logos/ergonenergy-46c365.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ergonenergy-46c365.jpg", "osmTags": { "and": [ "power=substation", @@ -407487,7 +407701,7 @@ }, { "question": "Erlanger Stadtwerke", - "icon": "./assets/data/nsi/logos/erlangerstadtwerke-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erlangerstadtwerke-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -407503,7 +407717,7 @@ }, { "question": "ESB Networks", - "icon": "./assets/data/nsi/logos/esbnetworks-705ceb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esbnetworks-705ceb.png", "osmTags": { "and": [ "power=substation", @@ -407518,7 +407732,7 @@ }, { "question": "Eskom", - "icon": "./assets/data/nsi/logos/eskom-ae9b5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eskom-ae9b5d.jpg", "osmTags": { "and": [ "power=substation", @@ -407561,7 +407775,7 @@ }, { "question": "Essential Energy", - "icon": "./assets/data/nsi/logos/essentialenergy-b07c08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentialenergy-b07c08.jpg", "osmTags": { "and": [ "power=substation", @@ -407594,7 +407808,7 @@ }, { "question": "Ethiopian Electric Power", - "icon": "./assets/data/nsi/logos/ethiopianelectricpower-08b603.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-08b603.png", "osmTags": { "and": [ "power=substation", @@ -407619,7 +407833,7 @@ }, { "question": "Eugene Water & Electric Board", - "icon": "./assets/data/nsi/logos/eugenewaterandelectricboard-404227.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-404227.jpg", "osmTags": { "and": [ "power=substation", @@ -407649,7 +407863,7 @@ }, { "question": "EVA Energieversorgung Apolda", - "icon": "./assets/data/nsi/logos/evaenergieversorgungapolda-402326.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evaenergieversorgungapolda-402326.jpg", "osmTags": { "and": [ "power=substation", @@ -407665,7 +407879,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-44a6c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-44a6c7.jpg", "osmTags": { "and": [ "power=substation", @@ -407680,7 +407894,7 @@ }, { "question": "Eversource", - "icon": "./assets/data/nsi/logos/eversource-374743.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eversource-374743.png", "osmTags": { "and": [ "power=substation", @@ -407695,7 +407909,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-3e6be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-3e6be9.jpg", "osmTags": { "and": [ "power=substation", @@ -407710,7 +407924,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-64dced.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-64dced.svg", "osmTags": { "and": [ "power=substation", @@ -407726,7 +407940,7 @@ }, { "question": "EVO", - "icon": "./assets/data/nsi/logos/evo-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evo-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -407741,7 +407955,7 @@ }, { "question": "Evoenergy", - "icon": "./assets/data/nsi/logos/evoenergy-975e91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evoenergy-975e91.jpg", "osmTags": { "and": [ "power=substation", @@ -407756,7 +407970,7 @@ }, { "question": "EVS", - "icon": "./assets/data/nsi/logos/evs-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evs-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -407780,7 +407994,7 @@ }, { "question": "EWA-energieUri", - "icon": "./assets/data/nsi/logos/ewaenergieuri-1e8ee1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewaenergieuri-1e8ee1.svg", "osmTags": { "and": [ "power=substation", @@ -407795,7 +408009,7 @@ }, { "question": "EWE", - "icon": "./assets/data/nsi/logos/ewe-7ff171.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewe-7ff171.jpg", "osmTags": { "and": [ "power=substation", @@ -407824,7 +408038,7 @@ }, { "question": "EWM AG", - "icon": "./assets/data/nsi/logos/ewmag-7ff171.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ewmag-7ff171.png", "osmTags": { "and": [ "power=substation", @@ -407839,7 +408053,7 @@ }, { "question": "EWR", - "icon": "./assets/data/nsi/logos/ewr-a0065c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewr-a0065c.jpg", "osmTags": { "and": [ "power=substation", @@ -407854,7 +408068,7 @@ }, { "question": "EWW (Österreich)", - "icon": "./assets/data/nsi/logos/eww-faf755.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eww-faf755.jpg", "osmTags": { "and": [ "power=substation", @@ -407883,7 +408097,7 @@ }, { "question": "EWZ", - "icon": "./assets/data/nsi/logos/ewz-dc04c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewz-dc04c1.jpg", "osmTags": { "and": [ "power=substation", @@ -407898,7 +408112,7 @@ }, { "question": "EZV", - "icon": "./assets/data/nsi/logos/ezv-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ezv-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -407913,7 +408127,7 @@ }, { "question": "Fagne", - "icon": "./assets/data/nsi/logos/fagne-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fagne-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -407942,7 +408156,7 @@ }, { "question": "Fayetteville Public Works Commission", - "icon": "./assets/data/nsi/logos/fayettevillepublicworkscommission-32600e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-32600e.jpg", "osmTags": { "and": [ "power=substation", @@ -407986,7 +408200,7 @@ }, { "question": "Fingrid", - "icon": "./assets/data/nsi/logos/fingrid-a5d6ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fingrid-a5d6ed.jpg", "osmTags": { "and": [ "power=substation", @@ -408015,7 +408229,7 @@ }, { "question": "FirstEnergy", - "icon": "./assets/data/nsi/logos/firstenergy-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstenergy-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -408030,7 +408244,7 @@ }, { "question": "Fjellnett", - "icon": "./assets/data/nsi/logos/fjellnett-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fjellnett-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -408073,7 +408287,7 @@ }, { "question": "Florida Power & Light", - "icon": "./assets/data/nsi/logos/floridapowerandlight-8432e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-8432e2.png", "osmTags": { "and": [ "power=substation", @@ -408097,7 +408311,7 @@ }, { "question": "Flughafen Zürich AG", - "icon": "./assets/data/nsi/logos/flughafenzurichag-42bdec.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/flughafenzurichag-42bdec.svg", "osmTags": { "and": [ "power=substation", @@ -408112,7 +408326,7 @@ }, { "question": "Fluvius", - "icon": "./assets/data/nsi/logos/fluvius-531b98.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fluvius-531b98.jpg", "osmTags": { "and": [ "power=substation", @@ -408141,7 +408355,7 @@ }, { "question": "FortisBC", - "icon": "./assets/data/nsi/logos/fortisbc-9c288b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortisbc-9c288b.png", "osmTags": { "and": [ "power=substation", @@ -408156,7 +408370,7 @@ }, { "question": "Fortum", - "icon": "./assets/data/nsi/logos/fortum-8c6066.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortum-8c6066.jpg", "osmTags": { "and": [ "power=substation", @@ -408200,7 +408414,7 @@ }, { "question": "Furnas Centrais Elétricas", - "icon": "./assets/data/nsi/logos/furnascentraiseletricas-acc4a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-acc4a0.jpg", "osmTags": { "and": [ "power=substation", @@ -408215,7 +408429,7 @@ }, { "question": "Gainesville Regional Utilities", - "icon": "./assets/data/nsi/logos/gainesvilleregionalutilities-8432e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-8432e2.png", "osmTags": { "and": [ "power=substation", @@ -408246,7 +408460,7 @@ }, { "question": "Gavle Energi", - "icon": "./assets/data/nsi/logos/gavleenergi-44b3db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gavleenergi-44b3db.png", "osmTags": { "and": [ "power=substation", @@ -408270,7 +408484,7 @@ }, { "question": "GEG", - "icon": "./assets/data/nsi/logos/geg-90b6b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geg-90b6b6.jpg", "osmTags": { "and": [ "power=substation", @@ -408342,7 +408556,7 @@ }, { "question": "GEW Wilhelmshaven", - "icon": "./assets/data/nsi/logos/gewwilhelmshaven-1af6be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gewwilhelmshaven-1af6be.jpg", "osmTags": { "and": [ "power=substation", @@ -408387,7 +408601,7 @@ }, { "question": "Glades Electric Co-Op", - "icon": "./assets/data/nsi/logos/gladeselectriccoop-8432e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-8432e2.jpg", "osmTags": { "and": [ "power=substation", @@ -408416,7 +408630,7 @@ }, { "question": "Glitre Nett", - "icon": "./assets/data/nsi/logos/glitrenett-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/glitrenett-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -408431,7 +408645,7 @@ }, { "question": "Golden Spread Electric Cooperative", - "icon": "./assets/data/nsi/logos/goldenspreadelectriccooperative-9e5147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-9e5147.jpg", "osmTags": { "and": [ "power=substation", @@ -408446,7 +408660,7 @@ }, { "question": "Grand River Dam Authority", - "icon": "./assets/data/nsi/logos/grandriverdamauthority-3e7f38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-3e7f38.jpg", "osmTags": { "and": [ "power=substation", @@ -408462,7 +408676,7 @@ }, { "question": "Great River Energy", - "icon": "./assets/data/nsi/logos/greatriverenergy-301545.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greatriverenergy-301545.png", "osmTags": { "and": [ "power=substation", @@ -408501,7 +408715,7 @@ }, { "question": "Greeneville Energy Authority", - "icon": "./assets/data/nsi/logos/greenevilleenergyauthority-a96cd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-a96cd6.jpg", "osmTags": { "and": [ "power=substation", @@ -408516,7 +408730,7 @@ }, { "question": "Greenville Utilities Commission", - "icon": "./assets/data/nsi/logos/greenvilleutilitiescommission-32600e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-32600e.jpg", "osmTags": { "and": [ "power=substation", @@ -408540,7 +408754,7 @@ }, { "question": "Groupe E", - "icon": "./assets/data/nsi/logos/groupee-dc04c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupee-dc04c1.jpg", "osmTags": { "and": [ "power=substation", @@ -408564,7 +408778,7 @@ }, { "question": "Guadalupe Valley Electric Cooperative", - "icon": "./assets/data/nsi/logos/guadalupevalleyelectriccooperative-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guadalupevalleyelectriccooperative-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -408595,7 +408809,7 @@ }, { "question": "HanseWerk", - "icon": "./assets/data/nsi/logos/hansewerk-7ff171.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hansewerk-7ff171.jpg", "osmTags": { "and": [ "power=substation", @@ -408610,7 +408824,7 @@ }, { "question": "Harz Energie", - "icon": "./assets/data/nsi/logos/harzenergie-7ff171.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harzenergie-7ff171.jpg", "osmTags": { "and": [ "power=substation", @@ -408625,7 +408839,7 @@ }, { "question": "Haugaland Kraft Nett", - "icon": "./assets/data/nsi/logos/haugalandkraftnett-ba6ae8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-ba6ae8.png", "osmTags": { "and": [ "power=substation", @@ -408649,7 +408863,7 @@ }, { "question": "Hawaiian Electric Company", - "icon": "./assets/data/nsi/logos/hawaiianelectriccompany-5d1a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-5d1a50.jpg", "osmTags": { "and": [ "power=substation", @@ -408710,7 +408924,7 @@ }, { "question": "Holmes-Wayne Electric Cooperative", - "icon": "./assets/data/nsi/logos/holmeswayneelectriccooperative-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holmeswayneelectriccooperative-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -408725,7 +408939,7 @@ }, { "question": "Hoosier Energy", - "icon": "./assets/data/nsi/logos/hoosierenergy-942a6f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoosierenergy-942a6f.jpg", "osmTags": { "and": [ "power=substation", @@ -408740,7 +408954,7 @@ }, { "question": "HS1 Ltd", - "icon": "./assets/data/nsi/logos/hs1ltd-3f58d2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hs1ltd-3f58d2.svg", "osmTags": { "and": [ "power=substation", @@ -408764,7 +408978,7 @@ }, { "question": "Huntsville Utilities", - "icon": "./assets/data/nsi/logos/huntsvilleutilities-569b0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-569b0d.jpg", "osmTags": { "and": [ "power=substation", @@ -408793,7 +409007,7 @@ }, { "question": "Hydro Ottawa", - "icon": "./assets/data/nsi/logos/hydroottawa-214de1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroottawa-214de1.svg", "osmTags": { "and": [ "power=substation", @@ -408808,7 +409022,7 @@ }, { "question": "Hydro Tasmania", - "icon": "./assets/data/nsi/logos/hydrotasmania-787f6a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydrotasmania-787f6a.jpg", "osmTags": { "and": [ "power=substation", @@ -408823,7 +409037,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-72b7fb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-72b7fb.png", "osmTags": { "and": [ "power=substation", @@ -408847,7 +409061,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-fc3a87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-fc3a87.jpg", "osmTags": { "and": [ "power=substation", @@ -408862,7 +409076,7 @@ }, { "question": "Idaho Power", - "icon": "./assets/data/nsi/logos/idahopower-7bf1a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahopower-7bf1a6.jpg", "osmTags": { "and": [ "power=substation", @@ -408877,7 +409091,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-3e6be9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-3e6be9.png", "osmTags": { "and": [ "power=substation", @@ -408892,7 +409106,7 @@ }, { "question": "Imperial Irrigation District", - "icon": "./assets/data/nsi/logos/imperialirrigationdistrict-9f24bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-9f24bd.jpg", "osmTags": { "and": [ "power=substation", @@ -408908,7 +409122,7 @@ }, { "question": "Independence Power & Light", - "icon": "./assets/data/nsi/logos/independencepowerandlight-9508de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-9508de.jpg", "osmTags": { "and": [ "power=substation", @@ -408923,7 +409137,7 @@ }, { "question": "Indiana Michigan Power", - "icon": "./assets/data/nsi/logos/indianamichiganpower-e29678.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-e29678.png", "osmTags": { "and": [ "power=substation", @@ -408939,7 +409153,7 @@ }, { "question": "Indianapolis Power & Light", - "icon": "./assets/data/nsi/logos/indianapolispowerandlight-e785bc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-e785bc.png", "osmTags": { "and": [ "power=substation", @@ -408964,7 +409178,7 @@ }, { "question": "infra fürth", - "icon": "./assets/data/nsi/logos/infrafurth-218486.png", + "icon": "https://data.mapcomplete.org/nsi//logos/infrafurth-218486.png", "osmTags": { "and": [ "power=substation", @@ -408979,7 +409193,7 @@ }, { "question": "Infrabel", - "icon": "./assets/data/nsi/logos/infrabel-531b98.png", + "icon": "https://data.mapcomplete.org/nsi//logos/infrabel-531b98.png", "osmTags": { "and": [ "power=substation", @@ -408994,7 +409208,7 @@ }, { "question": "Infraestruturas de Portugal", - "icon": "./assets/data/nsi/logos/infraestruturasdeportugal-108ef7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/infraestruturasdeportugal-108ef7.jpg", "osmTags": { "and": [ "power=substation", @@ -409018,7 +409232,7 @@ }, { "question": "Innogy", - "icon": "./assets/data/nsi/logos/innogy-57e02d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogy-57e02d.svg", "osmTags": { "and": [ "power=substation", @@ -409033,7 +409247,7 @@ }, { "question": "Instituto Costarricense de Electricidad", - "icon": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-844d97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-844d97.jpg", "osmTags": { "and": [ "power=substation", @@ -409064,7 +409278,7 @@ }, { "question": "Invenergy", - "icon": "./assets/data/nsi/logos/invenergy-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invenergy-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -409079,7 +409293,7 @@ }, { "question": "IPTO", - "icon": "./assets/data/nsi/logos/ipto-cf2a0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipto-cf2a0d.png", "osmTags": { "and": [ "power=substation", @@ -409094,7 +409308,7 @@ }, { "question": "Iren Energia", - "icon": "./assets/data/nsi/logos/irenenergia-5e9b52.png", + "icon": "https://data.mapcomplete.org/nsi//logos/irenenergia-5e9b52.png", "osmTags": { "and": [ "power=substation", @@ -409109,7 +409323,7 @@ }, { "question": "Irish Rail", - "icon": "./assets/data/nsi/logos/irishrail-705ceb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishrail-705ceb.jpg", "osmTags": { "and": [ "power=substation", @@ -409144,7 +409358,7 @@ }, { "question": "ITC", - "icon": "./assets/data/nsi/logos/itc-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itc-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -409159,7 +409373,7 @@ }, { "question": "Jackson Energy Authority", - "icon": "./assets/data/nsi/logos/jacksonenergyauthority-a96cd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-a96cd6.jpg", "osmTags": { "and": [ "power=substation", @@ -409174,7 +409388,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-ec30f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-ec30f3.jpg", "osmTags": { "and": [ "power=substation", @@ -409204,7 +409418,7 @@ }, { "question": "Jersey Central Power and Light", - "icon": "./assets/data/nsi/logos/jerseycentralpowerandlight-e36655.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-e36655.jpg", "osmTags": { "and": [ "power=substation", @@ -409220,7 +409434,7 @@ }, { "question": "Jersey Electricity Company", - "icon": "./assets/data/nsi/logos/jerseyelectricitycompany-fa4114.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseyelectricitycompany-fa4114.jpg", "osmTags": { "and": [ "power=substation", @@ -409235,7 +409449,7 @@ }, { "question": "Joe Wheeler EMC", - "icon": "./assets/data/nsi/logos/joewheeleremc-569b0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-569b0d.jpg", "osmTags": { "and": [ "power=substation", @@ -409264,7 +409478,7 @@ }, { "question": "Jonesboro City Water and Light", - "icon": "./assets/data/nsi/logos/jonesborocitywaterandlight-5f1fb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-5f1fb8.jpg", "osmTags": { "and": [ "power=substation", @@ -409279,7 +409493,7 @@ }, { "question": "JR東日本", - "icon": "./assets/data/nsi/logos/eastjapanrailwaycompany-85251b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-85251b.png", "osmTags": { "and": [ "power=substation", @@ -409313,7 +409527,7 @@ }, { "question": "Kansas City BPU", - "icon": "./assets/data/nsi/logos/kansascityboardofpublicutilities-2b5e72.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-2b5e72.png", "osmTags": { "and": [ "power=substation", @@ -409344,7 +409558,7 @@ }, { "question": "Kauai Island Utility Cooperative", - "icon": "./assets/data/nsi/logos/kauaiislandutilitycooperative-5d1a50.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kauaiislandutilitycooperative-5d1a50.jpg", "osmTags": { "and": [ "power=substation", @@ -409360,7 +409574,7 @@ }, { "question": "Kentucky Power", - "icon": "./assets/data/nsi/logos/kentuckypower-6f0d53.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckypower-6f0d53.png", "osmTags": { "and": [ "power=substation", @@ -409389,7 +409603,7 @@ }, { "question": "Kerala State Electricity Board", - "icon": "./assets/data/nsi/logos/keralastateelectricityboard-487ae0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-487ae0.jpg", "osmTags": { "and": [ "power=substation", @@ -409414,7 +409628,7 @@ }, { "question": "Kissimmee Utility Authority", - "icon": "./assets/data/nsi/logos/kissimmeeutilityauthority-8432e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-8432e2.png", "osmTags": { "and": [ "power=substation", @@ -409429,7 +409643,7 @@ }, { "question": "KiwiRail", - "icon": "./assets/data/nsi/logos/kiwirail-8d74a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiwirail-8d74a7.jpg", "osmTags": { "and": [ "power=substation", @@ -409444,7 +409658,7 @@ }, { "question": "Knoxville Utilities Board", - "icon": "./assets/data/nsi/logos/knoxvilleutilitiesboard-a96cd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-a96cd6.jpg", "osmTags": { "and": [ "power=substation", @@ -409460,7 +409674,7 @@ }, { "question": "KommEnergie", - "icon": "./assets/data/nsi/logos/kommenergie-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kommenergie-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -409498,7 +409712,7 @@ }, { "question": "Kreiswerke Main-Kinzig", - "icon": "./assets/data/nsi/logos/kreiswerkemainkinzig-43eb08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kreiswerkemainkinzig-43eb08.jpg", "osmTags": { "and": [ "power=substation", @@ -409540,7 +409754,7 @@ }, { "question": "Kystnett", - "icon": "./assets/data/nsi/logos/kystnett-ba6ae8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kystnett-ba6ae8.jpg", "osmTags": { "and": [ "power=substation", @@ -409555,7 +409769,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-9f24bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-9f24bd.png", "osmTags": { "and": [ "power=substation", @@ -409571,7 +409785,7 @@ }, { "question": "Lafayette Utilities System", - "icon": "./assets/data/nsi/logos/lafayetteutilitiessystem-403aa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-403aa2.jpg", "osmTags": { "and": [ "power=substation", @@ -409615,7 +409829,7 @@ }, { "question": "LCEC", - "icon": "./assets/data/nsi/logos/leecountyelectriccooperative-8432e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-8432e2.jpg", "osmTags": { "and": [ "power=substation", @@ -409631,7 +409845,7 @@ }, { "question": "Lechwerke", - "icon": "./assets/data/nsi/logos/lechwerke-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechwerke-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -409679,7 +409893,7 @@ }, { "question": "Liander", - "icon": "./assets/data/nsi/logos/liander-01f022.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liander-01f022.png", "osmTags": { "and": [ "power=substation", @@ -409723,7 +409937,7 @@ }, { "question": "Lincoln Electric System", - "icon": "./assets/data/nsi/logos/lincolnelectricsystem-9705f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-9705f8.png", "osmTags": { "and": [ "power=substation", @@ -409747,7 +409961,7 @@ }, { "question": "Linja", - "icon": "./assets/data/nsi/logos/linja-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/linja-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -409776,7 +409990,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-91958b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-91958b.jpg", "osmTags": { "and": [ "power=substation", @@ -409828,7 +410042,7 @@ }, { "question": "London Underground", - "icon": "./assets/data/nsi/logos/londonunderground-a368ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonunderground-a368ae.jpg", "osmTags": { "and": [ "power=substation", @@ -409857,7 +410071,7 @@ }, { "question": "Lorain-Medina Rural Electric Cooperative", - "icon": "./assets/data/nsi/logos/lorainmedinaruralelectriccooperative-7dabf9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lorainmedinaruralelectriccooperative-7dabf9.jpg", "osmTags": { "and": [ "power=substation", @@ -409872,7 +410086,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-9e5147.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-9e5147.png", "osmTags": { "and": [ "power=substation", @@ -409888,7 +410102,7 @@ }, { "question": "LSW Netz", - "icon": "./assets/data/nsi/logos/lswnetz-1af6be.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswnetz-1af6be.png", "osmTags": { "and": [ "power=substation", @@ -409903,7 +410117,7 @@ }, { "question": "Luas - Transdev Dublin Light Rail Limited", - "icon": "./assets/data/nsi/logos/luastransdevdublinlightraillimited-705ceb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luastransdevdublinlightraillimited-705ceb.jpg", "osmTags": { "and": [ "power=substation", @@ -409918,7 +410132,7 @@ }, { "question": "Lubbock Power & Light", - "icon": "./assets/data/nsi/logos/lubbockpowerandlight-9e5147.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-9e5147.png", "osmTags": { "and": [ "power=substation", @@ -409980,7 +410194,7 @@ }, { "question": "Lyse", - "icon": "./assets/data/nsi/logos/lyse-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lyse-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -409995,7 +410209,7 @@ }, { "question": "Magdeburger Verkehrsbetriebe", - "icon": "./assets/data/nsi/logos/magdeburgerverkehrsbetriebe-caeb06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magdeburgerverkehrsbetriebe-caeb06.jpg", "osmTags": { "and": [ "power=substation", @@ -410020,7 +410234,7 @@ }, { "question": "Manitoba Hydro", - "icon": "./assets/data/nsi/logos/manitobahydro-20fa2d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manitobahydro-20fa2d.svg", "osmTags": { "and": [ "power=substation", @@ -410049,7 +410263,7 @@ }, { "question": "Maquoketa Valley REC", - "icon": "./assets/data/nsi/logos/maquoketavalleyrec-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maquoketavalleyrec-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -410064,7 +410278,7 @@ }, { "question": "Marathon Pipe Line", - "icon": "./assets/data/nsi/logos/marathonpipeline-301545.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonpipeline-301545.svg", "osmTags": { "and": [ "power=substation", @@ -410093,7 +410307,7 @@ }, { "question": "Mark-E", - "icon": "./assets/data/nsi/logos/marke-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marke-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -410122,7 +410336,7 @@ }, { "question": "Marshall Municipal Utilities", - "icon": "./assets/data/nsi/logos/marshallmunicipalutilities-2f1b0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-2f1b0a.jpg", "osmTags": { "and": [ "power=substation", @@ -410137,7 +410351,7 @@ }, { "question": "Marshall-DeKalb Electric Cooperative", - "icon": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-569b0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-569b0d.jpg", "osmTags": { "and": [ "power=substation", @@ -410203,7 +410417,7 @@ }, { "question": "Memphis Light, Gas and Water", - "icon": "./assets/data/nsi/logos/memphislightgasandwater-a96cd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-a96cd6.jpg", "osmTags": { "and": [ "power=substation", @@ -410219,7 +410433,7 @@ }, { "question": "Meralco", - "icon": "./assets/data/nsi/logos/meralco-851165.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meralco-851165.jpg", "osmTags": { "and": [ "power=substation", @@ -410234,7 +410448,7 @@ }, { "question": "Met-Ed", - "icon": "./assets/data/nsi/logos/meted-6d7b97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meted-6d7b97.jpg", "osmTags": { "and": [ "power=substation", @@ -410249,7 +410463,7 @@ }, { "question": "Metra", - "icon": "./assets/data/nsi/logos/metra-09b582.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metra-09b582.png", "osmTags": { "and": [ "power=substation", @@ -410273,7 +410487,7 @@ }, { "question": "MidAmerican Energy", - "icon": "./assets/data/nsi/logos/midamericanenergy-2b8f9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-2b8f9e.jpg", "osmTags": { "and": [ "power=substation", @@ -410302,7 +410516,7 @@ }, { "question": "Midwest Energy", - "icon": "./assets/data/nsi/logos/midwestenergy-2b5e72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midwestenergy-2b5e72.jpg", "osmTags": { "and": [ "power=substation", @@ -410340,7 +410554,7 @@ }, { "question": "Minnesota Valley Cooperative Light & Power Association", - "icon": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-2f1b0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-2f1b0a.jpg", "osmTags": { "and": [ "power=substation", @@ -410355,7 +410569,7 @@ }, { "question": "Minnkota Power Cooperative", - "icon": "./assets/data/nsi/logos/minnkotapowercooperative-d70eed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-d70eed.png", "osmTags": { "and": [ "power=substation", @@ -410384,7 +410598,7 @@ }, { "question": "Mississippi Power", - "icon": "./assets/data/nsi/logos/mississippipower-142bdd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippipower-142bdd.png", "osmTags": { "and": [ "power=substation", @@ -410413,7 +410627,7 @@ }, { "question": "Mon Power", - "icon": "./assets/data/nsi/logos/monpower-0ffdee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monpower-0ffdee.jpg", "osmTags": { "and": [ "power=substation", @@ -410480,7 +410694,7 @@ }, { "question": "NamPower", - "icon": "./assets/data/nsi/logos/nampower-49152b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nampower-49152b.svg", "osmTags": { "and": [ "power=substation", @@ -410495,7 +410709,7 @@ }, { "question": "Nashville Electric Service", - "icon": "./assets/data/nsi/logos/nashvilleelectricservice-a96cd6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-a96cd6.png", "osmTags": { "and": [ "power=substation", @@ -410511,7 +410725,7 @@ }, { "question": "National Grid", - "icon": "./assets/data/nsi/logos/nationalgrid-c3892d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgrid-c3892d.png", "osmTags": { "and": [ "power=substation", @@ -410526,7 +410740,7 @@ }, { "question": "National Grid Corporation of the Philippines", - "icon": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-851165.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-851165.jpg", "osmTags": { "and": [ "power=substation", @@ -410542,7 +410756,7 @@ }, { "question": "National Grid Electricity Distribution", - "icon": "./assets/data/nsi/logos/nationalgridelectricitydistribution-a368ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-a368ae.jpg", "osmTags": { "and": [ "power=substation", @@ -410571,7 +410785,7 @@ }, { "question": "National Grid Electricity Transmission", - "icon": "./assets/data/nsi/logos/nationalgridelectricitytransmission-a368ae.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-a368ae.svg", "osmTags": { "and": [ "power=substation", @@ -410586,7 +410800,7 @@ }, { "question": "NB Power", - "icon": "./assets/data/nsi/logos/nbpower-a35217.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbpower-a35217.svg", "osmTags": { "and": [ "power=substation", @@ -410660,7 +410874,7 @@ }, { "question": "Neoenergia", - "icon": "./assets/data/nsi/logos/neoenergia-acc4a0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoenergia-acc4a0.svg", "osmTags": { "and": [ "power=substation", @@ -410698,7 +410912,7 @@ }, { "question": "Network Rail", - "icon": "./assets/data/nsi/logos/networkrail-3f58d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkrail-3f58d2.jpg", "osmTags": { "and": [ "power=substation", @@ -410727,7 +410941,7 @@ }, { "question": "Network Waitaki", - "icon": "./assets/data/nsi/logos/networkwaitaki-8d74a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkwaitaki-8d74a7.jpg", "osmTags": { "and": [ "power=substation", @@ -410756,7 +410970,7 @@ }, { "question": "Netz NÖ", - "icon": "./assets/data/nsi/logos/netzno-3e6be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzno-3e6be9.jpg", "osmTags": { "and": [ "power=substation", @@ -410800,7 +411014,7 @@ }, { "question": "Netze BW GmbH", - "icon": "./assets/data/nsi/logos/netzebwgmbh-dda049.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-dda049.svg", "osmTags": { "and": [ "power=substation", @@ -410858,7 +411072,7 @@ }, { "question": "NEW", - "icon": "./assets/data/nsi/logos/new-26c4cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/new-26c4cf.svg", "osmTags": { "and": [ "power=substation", @@ -410873,7 +411087,7 @@ }, { "question": "New Braunfels Utilities", - "icon": "./assets/data/nsi/logos/newbraunfelsutilities-9e5147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newbraunfelsutilities-9e5147.jpg", "osmTags": { "and": [ "power=substation", @@ -410888,7 +411102,7 @@ }, { "question": "New York City Transit Authority", - "icon": "./assets/data/nsi/logos/newyorkcitytransitauthority-206eed.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkcitytransitauthority-206eed.svg", "osmTags": { "and": [ "power=substation", @@ -410903,7 +411117,7 @@ }, { "question": "Newfoundland and Labrador Hydro", - "icon": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-dca6c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-dca6c2.jpg", "osmTags": { "and": [ "power=substation", @@ -410918,7 +411132,7 @@ }, { "question": "Newfoundland Power", - "icon": "./assets/data/nsi/logos/newfoundlandpower-dca6c2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-dca6c2.png", "osmTags": { "and": [ "power=substation", @@ -410942,7 +411156,7 @@ }, { "question": "NextEra Energy", - "icon": "./assets/data/nsi/logos/nexteraenergy-1b6d9e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-1b6d9e.png", "osmTags": { "and": [ "power=substation", @@ -410957,7 +411171,7 @@ }, { "question": "NIE Networks", - "icon": "./assets/data/nsi/logos/nienetworks-285315.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nienetworks-285315.jpg", "osmTags": { "and": [ "power=substation", @@ -410981,7 +411195,7 @@ }, { "question": "NJ Transit", - "icon": "./assets/data/nsi/logos/njtransit-e36655.png", + "icon": "https://data.mapcomplete.org/nsi//logos/njtransit-e36655.png", "osmTags": { "and": [ "power=substation", @@ -411035,7 +411249,7 @@ }, { "question": "Nordkraft Nett", - "icon": "./assets/data/nsi/logos/nordkraftnett-ba6ae8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordkraftnett-ba6ae8.jpg", "osmTags": { "and": [ "power=substation", @@ -411078,7 +411292,7 @@ }, { "question": "Norfolk & Norwich University Hospital Trust", - "icon": "./assets/data/nsi/logos/norfolkandnorwichuniversityhospitaltrust-3f58d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolkandnorwichuniversityhospitaltrust-3f58d2.jpg", "osmTags": { "and": [ "power=substation", @@ -411121,7 +411335,7 @@ }, { "question": "Northern Powergrid", - "icon": "./assets/data/nsi/logos/northernpowergrid-a368ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-a368ae.jpg", "osmTags": { "and": [ "power=substation", @@ -411145,7 +411359,7 @@ }, { "question": "Northpower", - "icon": "./assets/data/nsi/logos/northpower-8d74a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northpower-8d74a7.png", "osmTags": { "and": [ "power=substation", @@ -411160,7 +411374,7 @@ }, { "question": "Northwest Energy", - "icon": "./assets/data/nsi/logos/northwestenergy-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestenergy-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -411175,7 +411389,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-253645.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-253645.jpg", "osmTags": { "and": [ "power=substation", @@ -411190,7 +411404,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-9b0148.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-9b0148.jpg", "osmTags": { "and": [ "power=substation", @@ -411205,7 +411419,7 @@ }, { "question": "NOVEC", - "icon": "./assets/data/nsi/logos/novec-b14c84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novec-b14c84.jpg", "osmTags": { "and": [ "power=substation", @@ -411243,7 +411457,7 @@ }, { "question": "NTE Nett", - "icon": "./assets/data/nsi/logos/ntenett-ba6ae8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ntenett-ba6ae8.png", "osmTags": { "and": [ "power=substation", @@ -411258,7 +411472,7 @@ }, { "question": "Nukissiorfiit", - "icon": "./assets/data/nsi/logos/nukissiorfiit-533b11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-533b11.jpg", "osmTags": { "and": [ "power=substation", @@ -411273,7 +411487,7 @@ }, { "question": "NV Energy", - "icon": "./assets/data/nsi/logos/nvenergy-122fad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nvenergy-122fad.png", "osmTags": { "and": [ "power=substation", @@ -411288,7 +411502,7 @@ }, { "question": "NW Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/nwelectricpowercooperative-9508de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-9508de.jpg", "osmTags": { "and": [ "power=substation", @@ -411303,7 +411517,7 @@ }, { "question": "NYSEG", - "icon": "./assets/data/nsi/logos/nyseg-203caa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nyseg-203caa.jpg", "osmTags": { "and": [ "power=substation", @@ -411356,7 +411570,7 @@ }, { "question": "Oklahoma Gas & Electric", - "icon": "./assets/data/nsi/logos/oklahomagasandelectric-3e7f38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-3e7f38.jpg", "osmTags": { "and": [ "power=substation", @@ -411372,7 +411586,7 @@ }, { "question": "Omaha Public Power District", - "icon": "./assets/data/nsi/logos/omahapublicpowerdistrict-9705f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-9705f8.png", "osmTags": { "and": [ "power=substation", @@ -411387,7 +411601,7 @@ }, { "question": "Oncor", - "icon": "./assets/data/nsi/logos/oncor-9e5147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oncor-9e5147.jpg", "osmTags": { "and": [ "power=substation", @@ -411416,7 +411630,7 @@ }, { "question": "ORES", - "icon": "./assets/data/nsi/logos/ores-531b98.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ores-531b98.jpg", "osmTags": { "and": [ "power=substation", @@ -411431,7 +411645,7 @@ }, { "question": "Orion New Zealand", - "icon": "./assets/data/nsi/logos/orionnewzealand-8d74a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-8d74a7.jpg", "osmTags": { "and": [ "power=substation", @@ -411446,7 +411660,7 @@ }, { "question": "Orlando Utilities Commission", - "icon": "./assets/data/nsi/logos/orlandoutilitiescommission-8432e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-8432e2.jpg", "osmTags": { "and": [ "power=substation", @@ -411462,7 +411676,7 @@ }, { "question": "Osterholzer Stadtwerke", - "icon": "./assets/data/nsi/logos/osterholzerstadtwerke-1af6be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterholzerstadtwerke-1af6be.jpg", "osmTags": { "and": [ "power=substation", @@ -411500,7 +411714,7 @@ }, { "question": "Otter Tail Power Company", - "icon": "./assets/data/nsi/logos/ottertailpowercompany-18f2a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-18f2a7.jpg", "osmTags": { "and": [ "power=substation", @@ -411515,7 +411729,7 @@ }, { "question": "Oulun Energia Siirto ja Jakelu", - "icon": "./assets/data/nsi/logos/oulunenergiasiirtojajakelu-a5d6ed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oulunenergiasiirtojajakelu-a5d6ed.png", "osmTags": { "and": [ "power=substation", @@ -411558,7 +411772,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-9f24bd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-9f24bd.png", "osmTags": { "and": [ "power=substation", @@ -411574,7 +411788,7 @@ }, { "question": "Pacific Power", - "icon": "./assets/data/nsi/logos/pacificpower-890f83.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificpower-890f83.svg", "osmTags": { "and": [ "power=substation", @@ -411589,7 +411803,7 @@ }, { "question": "PacifiCorp", - "icon": "./assets/data/nsi/logos/pacificorp-301545.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificorp-301545.svg", "osmTags": { "and": [ "power=substation", @@ -411622,7 +411836,7 @@ }, { "question": "PEA", - "icon": "./assets/data/nsi/logos/pea-8cb22b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pea-8cb22b.jpg", "osmTags": { "and": [ "power=substation", @@ -411646,7 +411860,7 @@ }, { "question": "PECO", - "icon": "./assets/data/nsi/logos/peco-c011fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peco-c011fe.jpg", "osmTags": { "and": [ "power=substation", @@ -411661,7 +411875,7 @@ }, { "question": "Pedernales Electric Cooperative", - "icon": "./assets/data/nsi/logos/pedernaleselectriccooperative-301545.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pedernaleselectriccooperative-301545.png", "osmTags": { "and": [ "power=substation", @@ -411676,7 +411890,7 @@ }, { "question": "Penelec", - "icon": "./assets/data/nsi/logos/penelec-6d7b97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penelec-6d7b97.jpg", "osmTags": { "and": [ "power=substation", @@ -411706,7 +411920,7 @@ }, { "question": "Penn Power", - "icon": "./assets/data/nsi/logos/pennpower-6d7b97.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pennpower-6d7b97.jpg", "osmTags": { "and": [ "power=substation", @@ -411721,7 +411935,7 @@ }, { "question": "Perusahaan Listrik Negara", - "icon": "./assets/data/nsi/logos/perusahaanlistriknegara-7eaee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-7eaee2.jpg", "osmTags": { "and": [ "power=substation", @@ -411737,7 +411951,7 @@ }, { "question": "Petroamazonas", - "icon": "./assets/data/nsi/logos/petroamazonas-b68855.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroamazonas-b68855.jpg", "osmTags": { "and": [ "power=substation", @@ -411752,7 +411966,7 @@ }, { "question": "Pfalzwerke AG", - "icon": "./assets/data/nsi/logos/pfalzwerkeag-4afb0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-4afb0a.png", "osmTags": { "and": [ "power=substation", @@ -411790,7 +412004,7 @@ }, { "question": "PGE Dystrybucja", - "icon": "./assets/data/nsi/logos/pgedystrybucja-83e94a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-83e94a.jpg", "osmTags": { "and": [ "power=substation", @@ -411805,7 +412019,7 @@ }, { "question": "PGE Energetyka Kolejowa", - "icon": "./assets/data/nsi/logos/pgeenergetykakolejowa-83e94a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-83e94a.jpg", "osmTags": { "and": [ "power=substation", @@ -411820,7 +412034,7 @@ }, { "question": "PJM", - "icon": "./assets/data/nsi/logos/pjm-e36655.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pjm-e36655.jpg", "osmTags": { "and": [ "power=substation", @@ -411835,7 +412049,7 @@ }, { "question": "PNM", - "icon": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-553e38.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-553e38.jpg", "osmTags": { "and": [ "power=substation", @@ -411851,7 +412065,7 @@ }, { "question": "Polskie Sieci Elektroenergetyczne", - "icon": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-3be91d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-3be91d.png", "osmTags": { "and": [ "power=substation", @@ -411867,7 +412081,7 @@ }, { "question": "Portland General Electric", - "icon": "./assets/data/nsi/logos/portlandgeneralelectric-404227.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-404227.png", "osmTags": { "and": [ "power=substation", @@ -411883,7 +412097,7 @@ }, { "question": "Potomac Electric Power Company", - "icon": "./assets/data/nsi/logos/potomacelectricpowercompany-c153a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-c153a8.jpg", "osmTags": { "and": [ "power=substation", @@ -411899,7 +412113,7 @@ }, { "question": "Power and Water", - "icon": "./assets/data/nsi/logos/powerandwater-b382a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerandwater-b382a8.jpg", "osmTags": { "and": [ "power=substation", @@ -411914,7 +412128,7 @@ }, { "question": "Power Grid Corporation of India Ltd", - "icon": "./assets/data/nsi/logos/powergridcorporationofindialtd-487ae0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-487ae0.jpg", "osmTags": { "and": [ "power=substation", @@ -411929,7 +412143,7 @@ }, { "question": "Powerco", - "icon": "./assets/data/nsi/logos/powerco-8d74a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerco-8d74a7.jpg", "osmTags": { "and": [ "power=substation", @@ -411944,7 +412158,7 @@ }, { "question": "Powercor", - "icon": "./assets/data/nsi/logos/powercor-e597e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/powercor-e597e3.png", "osmTags": { "and": [ "power=substation", @@ -411959,7 +412173,7 @@ }, { "question": "Powerlink", - "icon": "./assets/data/nsi/logos/powerlink-46c365.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerlink-46c365.jpg", "osmTags": { "and": [ "power=substation", @@ -411989,7 +412203,7 @@ }, { "question": "PPL", - "icon": "./assets/data/nsi/logos/ppl-61b2a4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ppl-61b2a4.jpg", "osmTags": { "and": [ "power=substation", @@ -412004,7 +412218,7 @@ }, { "question": "PRE", - "icon": "./assets/data/nsi/logos/pre-fd39e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pre-fd39e1.jpg", "osmTags": { "and": [ "power=substation", @@ -412019,7 +412233,7 @@ }, { "question": "Premier Energy (Moldova)", - "icon": "./assets/data/nsi/logos/premierenergy-ca331e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/premierenergy-ca331e.jpg", "osmTags": { "and": [ "power=substation", @@ -412062,7 +412276,7 @@ }, { "question": "ProRail", - "icon": "./assets/data/nsi/logos/prorail-01f022.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prorail-01f022.png", "osmTags": { "and": [ "power=substation", @@ -412086,7 +412300,7 @@ }, { "question": "PSO", - "icon": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-b5d3f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-b5d3f3.png", "osmTags": { "and": [ "power=substation", @@ -412116,7 +412330,7 @@ }, { "question": "Public Service Enterprise Group", - "icon": "./assets/data/nsi/logos/publicserviceenterprisegroup-9ce5fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-9ce5fc.jpg", "osmTags": { "and": [ "power=substation", @@ -412131,7 +412345,7 @@ }, { "question": "Puerto Rico Electric Power Authority", - "icon": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-a8f137.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-a8f137.jpg", "osmTags": { "and": [ "power=substation", @@ -412147,7 +412361,7 @@ }, { "question": "Puget Sound Energy", - "icon": "./assets/data/nsi/logos/pugetsoundenergy-99a087.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-99a087.jpg", "osmTags": { "and": [ "power=substation", @@ -412177,7 +412391,7 @@ }, { "question": "Radius Elnet", - "icon": "./assets/data/nsi/logos/radiuselnet-6970d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radiuselnet-6970d6.jpg", "osmTags": { "and": [ "power=substation", @@ -412192,7 +412406,7 @@ }, { "question": "Rappahannock Electric Cooperative", - "icon": "./assets/data/nsi/logos/rappahannockelectriccooperative-b14c84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-b14c84.jpg", "osmTags": { "and": [ "power=substation", @@ -412207,7 +412421,7 @@ }, { "question": "RATP", - "icon": "./assets/data/nsi/logos/ratp-90b6b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ratp-90b6b6.jpg", "osmTags": { "and": [ "power=substation", @@ -412258,7 +412472,7 @@ }, { "question": "Red Eléctrica de España", - "icon": "./assets/data/nsi/logos/redelectricadeespana-294d99.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-294d99.jpg", "osmTags": { "and": [ "power=substation", @@ -412292,7 +412506,7 @@ }, { "question": "regionalwerk Bodensee", - "icon": "./assets/data/nsi/logos/regionalwerkbodensee-7ff171.png", + "icon": "https://data.mapcomplete.org/nsi//logos/regionalwerkbodensee-7ff171.png", "osmTags": { "and": [ "power=substation", @@ -412307,7 +412521,7 @@ }, { "question": "REN", - "icon": "./assets/data/nsi/logos/ren-108ef7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ren-108ef7.svg", "osmTags": { "and": [ "power=substation", @@ -412377,7 +412591,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-5e9b52.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-5e9b52.svg", "osmTags": { "and": [ "power=substation", @@ -412392,7 +412606,7 @@ }, { "question": "RheinEnergie", - "icon": "./assets/data/nsi/logos/rheinenergie-7ff171.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinenergie-7ff171.png", "osmTags": { "and": [ "power=substation", @@ -412407,7 +412621,7 @@ }, { "question": "Rhode Island Energy", - "icon": "./assets/data/nsi/logos/rhodeislandenergy-ba677e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-ba677e.jpg", "osmTags": { "and": [ "power=substation", @@ -412431,7 +412645,7 @@ }, { "question": "Rio Grande Energia", - "icon": "./assets/data/nsi/logos/riograndeenergia-acc4a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-acc4a0.png", "osmTags": { "and": [ "power=substation", @@ -412446,7 +412660,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-5eb8ce.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-5eb8ce.svg", "osmTags": { "and": [ "power=substation", @@ -412461,7 +412675,7 @@ }, { "question": "Rochester Gas & Electric", - "icon": "./assets/data/nsi/logos/rochestergasandelectric-203caa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-203caa.jpg", "osmTags": { "and": [ "power=substation", @@ -412476,7 +412690,7 @@ }, { "question": "Rocky Mountain Power", - "icon": "./assets/data/nsi/logos/rockymountainpower-d898d7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-d898d7.svg", "osmTags": { "and": [ "power=substation", @@ -412491,7 +412705,7 @@ }, { "question": "Roseville Electric", - "icon": "./assets/data/nsi/logos/rosevilleelectric-9f24bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-9f24bd.jpg", "osmTags": { "and": [ "power=substation", @@ -412515,7 +412729,7 @@ }, { "question": "RTE", - "icon": "./assets/data/nsi/logos/rte-90b6b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rte-90b6b6.png", "osmTags": { "and": [ "power=substation", @@ -412545,7 +412759,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-57e02d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-57e02d.jpg", "osmTags": { "and": [ "power=substation", @@ -412560,7 +412774,7 @@ }, { "question": "S-Bahn Berlin GmbH", - "icon": "./assets/data/nsi/logos/sbahnberlingmbh-7ff171.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbahnberlingmbh-7ff171.svg", "osmTags": { "and": [ "power=substation", @@ -412590,7 +412804,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-8b3810.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-8b3810.png", "osmTags": { "and": [ "power=substation", @@ -412605,7 +412819,7 @@ }, { "question": "Sacramento Municipal Utility District", - "icon": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-9f24bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-9f24bd.jpg", "osmTags": { "and": [ "power=substation", @@ -412621,7 +412835,7 @@ }, { "question": "Sadales tīkls", - "icon": "./assets/data/nsi/logos/sadalestikls-b57901.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sadalestikls-b57901.jpg", "osmTags": { "and": [ "power=substation", @@ -412636,7 +412850,7 @@ }, { "question": "SAK", - "icon": "./assets/data/nsi/logos/sak-dc04c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sak-dc04c1.jpg", "osmTags": { "and": [ "power=substation", @@ -412660,7 +412874,7 @@ }, { "question": "Salt River Project", - "icon": "./assets/data/nsi/logos/saltriverproject-260b75.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saltriverproject-260b75.png", "osmTags": { "and": [ "power=substation", @@ -412676,7 +412890,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-d5d274.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-d5d274.jpg", "osmTags": { "and": [ "power=substation", @@ -412700,7 +412914,7 @@ }, { "question": "San Diego Gas & Electric", - "icon": "./assets/data/nsi/logos/sandiegogasandelectric-bc961e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-bc961e.jpg", "osmTags": { "and": [ "power=substation", @@ -412725,7 +412939,7 @@ }, { "question": "Sarawak Energy", - "icon": "./assets/data/nsi/logos/sarawakenergy-fb8dd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sarawakenergy-fb8dd8.jpg", "osmTags": { "and": [ "power=substation", @@ -412740,7 +412954,7 @@ }, { "question": "SaskPower", - "icon": "./assets/data/nsi/logos/saskpower-ba0a5f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saskpower-ba0a5f.svg", "osmTags": { "and": [ "power=substation", @@ -412755,7 +412969,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-dc04c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-dc04c1.png", "osmTags": { "and": [ "power=substation", @@ -412770,7 +412984,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-5fcfdc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-5fcfdc.svg", "osmTags": { "and": [ "power=substation", @@ -412785,7 +412999,7 @@ }, { "question": "Scottish and Southern Electricity Networks (SSEN)", - "icon": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-3f58d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-3f58d2.jpg", "osmTags": { "and": [ "power=substation", @@ -412833,7 +413047,7 @@ }, { "question": "Senelec", - "icon": "./assets/data/nsi/logos/senelec-4b249c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senelec-4b249c.jpg", "osmTags": { "and": [ "power=substation", @@ -412885,7 +413099,7 @@ }, { "question": "Sibelga", - "icon": "./assets/data/nsi/logos/sibelga-531b98.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sibelga-531b98.jpg", "osmTags": { "and": [ "power=substation", @@ -412900,7 +413114,7 @@ }, { "question": "SICAE de la Somme et du Cambraisis", - "icon": "./assets/data/nsi/logos/sicaedelasommeetducambraisis-90b6b6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sicaedelasommeetducambraisis-90b6b6.jpg", "osmTags": { "and": [ "power=substation", @@ -412938,7 +413152,7 @@ }, { "question": "SLEMCO", - "icon": "./assets/data/nsi/logos/slemco-403aa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slemco-403aa2.jpg", "osmTags": { "and": [ "power=substation", @@ -412953,7 +413167,7 @@ }, { "question": "Slovenská elektrizačná prenosová sústava", - "icon": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-052fd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-052fd4.jpg", "osmTags": { "and": [ "power=substation", @@ -412969,7 +413183,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-90b6b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-90b6b6.png", "osmTags": { "and": [ "power=substation", @@ -412984,7 +413198,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-90b6b6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-90b6b6.png", "osmTags": { "and": [ "power=substation", @@ -413008,7 +413222,7 @@ }, { "question": "Societe Beninoise d'Energie Electrique", - "icon": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-cdb120.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-cdb120.jpg", "osmTags": { "and": [ "power=substation", @@ -413025,7 +413239,7 @@ }, { "question": "Sogn og Fjordane Energi", - "icon": "./assets/data/nsi/logos/sognogfjordaneenergi-ba6ae8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-ba6ae8.jpg", "osmTags": { "and": [ "power=substation", @@ -413041,7 +413255,7 @@ }, { "question": "Sonelgaz", - "icon": "./assets/data/nsi/logos/sonelgaz-34b5c5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-34b5c5.jpg", "osmTags": { "and": [ "power=substation", @@ -413079,7 +413293,7 @@ }, { "question": "South Texas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southtexaselectriccooperative-9e5147.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southtexaselectriccooperative-9e5147.jpg", "osmTags": { "and": [ "power=substation", @@ -413094,7 +413308,7 @@ }, { "question": "Southern California Edison", - "icon": "./assets/data/nsi/logos/southerncaliforniaedison-9f24bd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-9f24bd.jpg", "osmTags": { "and": [ "power=substation", @@ -413110,7 +413324,7 @@ }, { "question": "Southwest Arkansas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-5f1fb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-5f1fb8.jpg", "osmTags": { "and": [ "power=substation", @@ -413148,7 +413362,7 @@ }, { "question": "SP Energy Networks", - "icon": "./assets/data/nsi/logos/spenergynetworks-3f58d2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-3f58d2.jpg", "osmTags": { "and": [ "power=substation", @@ -413186,7 +413400,7 @@ }, { "question": "Springfield Utility Board", - "icon": "./assets/data/nsi/logos/springfieldutilityboard-404227.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-404227.jpg", "osmTags": { "and": [ "power=substation", @@ -413234,7 +413448,7 @@ }, { "question": "SSEN Transmission", - "icon": "./assets/data/nsi/logos/ssentransmission-6ff402.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ssentransmission-6ff402.jpg", "osmTags": { "and": [ "power=substation", @@ -413249,7 +413463,7 @@ }, { "question": "Städtische Werke Angermünde", - "icon": "./assets/data/nsi/logos/stadtischewerkeangermunde-f7a8ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtischewerkeangermunde-f7a8ec.jpg", "osmTags": { "and": [ "power=substation", @@ -413265,7 +413479,7 @@ }, { "question": "Städtische Werke Kassel", - "icon": "./assets/data/nsi/logos/stadtischewerkekassel-43eb08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtischewerkekassel-43eb08.png", "osmTags": { "and": [ "power=substation", @@ -413280,7 +413494,7 @@ }, { "question": "Stadtwerke Aalen", - "icon": "./assets/data/nsi/logos/stadtwerkeaalen-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaalen-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -413295,7 +413509,7 @@ }, { "question": "Stadtwerke Achim", - "icon": "./assets/data/nsi/logos/stadtwerkeachim-1af6be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeachim-1af6be.jpg", "osmTags": { "and": [ "power=substation", @@ -413310,7 +413524,7 @@ }, { "question": "Stadtwerke Ansbach", - "icon": "./assets/data/nsi/logos/stadtwerkeansbach-218486.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeansbach-218486.svg", "osmTags": { "and": [ "power=substation", @@ -413325,7 +413539,7 @@ }, { "question": "Stadtwerke Aschaffenburg", - "icon": "./assets/data/nsi/logos/stadtwerkeaschaffenburg-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaschaffenburg-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -413340,7 +413554,7 @@ }, { "question": "Stadtwerke Augsburg", - "icon": "./assets/data/nsi/logos/stadtwerkeaugsburg-218486.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-218486.png", "osmTags": { "and": [ "power=substation", @@ -413369,7 +413583,7 @@ }, { "question": "Stadtwerke Bad Reichenhall", - "icon": "./assets/data/nsi/logos/stadtwerkebadreichenhall-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadreichenhall-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -413384,7 +413598,7 @@ }, { "question": "Stadtwerke Baden-Baden", - "icon": "./assets/data/nsi/logos/stadtwerkebadenbaden-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadenbaden-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -413399,7 +413613,7 @@ }, { "question": "Stadtwerke Bielefeld", - "icon": "./assets/data/nsi/logos/stadtwerkebielefeld-26c4cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebielefeld-26c4cf.svg", "osmTags": { "and": [ "power=substation", @@ -413414,7 +413628,7 @@ }, { "question": "Stadtwerke Bochum", - "icon": "./assets/data/nsi/logos/stadtwerkebochum-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebochum-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -413429,7 +413643,7 @@ }, { "question": "Stadtwerke Bonn", - "icon": "./assets/data/nsi/logos/stadtwerkebonn-26c4cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebonn-26c4cf.svg", "osmTags": { "and": [ "power=substation", @@ -413445,7 +413659,7 @@ }, { "question": "Stadtwerke Brühl", - "icon": "./assets/data/nsi/logos/stadtwerkebruhl-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebruhl-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -413502,7 +413716,7 @@ }, { "question": "Stadtwerke Energie Jena-Pößneck", - "icon": "./assets/data/nsi/logos/stadtwerkeenergiejenapossneck-402326.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeenergiejenapossneck-402326.png", "osmTags": { "and": [ "power=substation", @@ -413517,7 +413731,7 @@ }, { "question": "Stadtwerke Frankenthal", - "icon": "./assets/data/nsi/logos/stadtwerkefrankenthal-4afb0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkefrankenthal-4afb0a.jpg", "osmTags": { "and": [ "power=substation", @@ -413532,7 +413746,7 @@ }, { "question": "Stadtwerke Fürstenfeldbruck", - "icon": "./assets/data/nsi/logos/stadtwerkefurstenfeldbruck-218486.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkefurstenfeldbruck-218486.png", "osmTags": { "and": [ "power=substation", @@ -413547,7 +413761,7 @@ }, { "question": "Stadtwerke Gießen", - "icon": "./assets/data/nsi/logos/stadtwerkegiessen-43eb08.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegiessen-43eb08.png", "osmTags": { "and": [ "power=substation", @@ -413576,7 +413790,7 @@ }, { "question": "Stadtwerke Görlitz AG", - "icon": "./assets/data/nsi/logos/stadtwerkegorlitzag-8b3810.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegorlitzag-8b3810.png", "osmTags": { "and": [ "power=substation", @@ -413591,7 +413805,7 @@ }, { "question": "Stadtwerke Greifswald", - "icon": "./assets/data/nsi/logos/stadtwerkegreifswald-58f462.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegreifswald-58f462.png", "osmTags": { "and": [ "power=substation", @@ -413606,7 +413820,7 @@ }, { "question": "Stadtwerke Haltern", - "icon": "./assets/data/nsi/logos/stadtwerkehaltern-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkehaltern-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -413621,7 +413835,7 @@ }, { "question": "Stadtwerke Hamm", - "icon": "./assets/data/nsi/logos/stadtwerkehamm-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkehamm-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -413664,7 +413878,7 @@ }, { "question": "Stadtwerke Herborn", - "icon": "./assets/data/nsi/logos/stadtwerkeherborn-43eb08.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherborn-43eb08.jpg", "osmTags": { "and": [ "power=substation", @@ -413679,7 +413893,7 @@ }, { "question": "Stadtwerke Herne", - "icon": "./assets/data/nsi/logos/stadtwerkeherne-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherne-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -413695,7 +413909,7 @@ }, { "question": "Stadtwerke Ilmenau", - "icon": "./assets/data/nsi/logos/stadtwerkeilmenau-402326.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeilmenau-402326.jpg", "osmTags": { "and": [ "power=substation", @@ -413710,7 +413924,7 @@ }, { "question": "Stadtwerke Ingolstadt", - "icon": "./assets/data/nsi/logos/stadtwerkeingolstadt-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeingolstadt-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -413767,7 +413981,7 @@ }, { "question": "Stadtwerke Kiel", - "icon": "./assets/data/nsi/logos/stadtwerkekiel-5fcfdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekiel-5fcfdc.jpg", "osmTags": { "and": [ "power=substation", @@ -413783,7 +413997,7 @@ }, { "question": "Stadtwerke Konstanz", - "icon": "./assets/data/nsi/logos/stadtwerkekonstanz-dda049.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekonstanz-dda049.png", "osmTags": { "and": [ "power=substation", @@ -413798,7 +414012,7 @@ }, { "question": "Stadtwerke Kufstein", - "icon": "./assets/data/nsi/logos/stadtwerkekufstein-8d025f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekufstein-8d025f.jpg", "osmTags": { "and": [ "power=substation", @@ -413813,7 +414027,7 @@ }, { "question": "Stadtwerke Leipzig", - "icon": "./assets/data/nsi/logos/stadtwerkeleipzig-8b3810.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-8b3810.jpg", "osmTags": { "and": [ "power=substation", @@ -413828,7 +414042,7 @@ }, { "question": "Stadtwerke Lemgo", - "icon": "./assets/data/nsi/logos/stadtwerkelemgo-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelemgo-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -413857,7 +414071,7 @@ }, { "question": "Stadtwerke Lübeck", - "icon": "./assets/data/nsi/logos/stadtwerkelubeck-5fcfdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-5fcfdc.jpg", "osmTags": { "and": [ "power=substation", @@ -413886,7 +414100,7 @@ }, { "question": "Stadtwerke Marburg", - "icon": "./assets/data/nsi/logos/stadtwerkemarburg-43eb08.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemarburg-43eb08.svg", "osmTags": { "and": [ "power=substation", @@ -413901,7 +414115,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -413917,7 +414131,7 @@ }, { "question": "Stadtwerke Münster", - "icon": "./assets/data/nsi/logos/stadtwerkemunster-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunster-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -413932,7 +414146,7 @@ }, { "question": "Stadtwerke Neumarkt", - "icon": "./assets/data/nsi/logos/stadtwerkeneumarkt-218486.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneumarkt-218486.jpg", "osmTags": { "and": [ "power=substation", @@ -413948,7 +414162,7 @@ }, { "question": "Stadtwerke Neumünster", - "icon": "./assets/data/nsi/logos/stadtwerkeneumunster-5fcfdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneumunster-5fcfdc.jpg", "osmTags": { "and": [ "power=substation", @@ -413964,7 +414178,7 @@ }, { "question": "Stadtwerke Neuss", - "icon": "./assets/data/nsi/logos/stadtwerkeneuss-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuss-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -413980,7 +414194,7 @@ }, { "question": "Stadtwerke Neuwied", - "icon": "./assets/data/nsi/logos/stadtwerkeneuwied-4afb0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuwied-4afb0a.png", "osmTags": { "and": [ "power=substation", @@ -413996,7 +414210,7 @@ }, { "question": "Stadtwerke Norderstedt", - "icon": "./assets/data/nsi/logos/stadtwerkenorderstedt-5fcfdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkenorderstedt-5fcfdc.jpg", "osmTags": { "and": [ "power=substation", @@ -414025,7 +414239,7 @@ }, { "question": "Stadtwerke Nürtingen", - "icon": "./assets/data/nsi/logos/stadtwerkenurtingen-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkenurtingen-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -414041,7 +414255,7 @@ }, { "question": "Stadtwerke Pforzheim", - "icon": "./assets/data/nsi/logos/stadtwerkepforzheim-dda049.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkepforzheim-dda049.png", "osmTags": { "and": [ "power=substation", @@ -414057,7 +414271,7 @@ }, { "question": "Stadtwerke Pirmasens", - "icon": "./assets/data/nsi/logos/stadtwerkepirmasens-4afb0a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkepirmasens-4afb0a.svg", "osmTags": { "and": [ "power=substation", @@ -414087,7 +414301,7 @@ }, { "question": "Stadtwerke Potsdam", - "icon": "./assets/data/nsi/logos/stadtwerkepotsdam-f7a8ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkepotsdam-f7a8ec.jpg", "osmTags": { "and": [ "power=substation", @@ -414103,7 +414317,7 @@ }, { "question": "Stadtwerke Quedlinburg", - "icon": "./assets/data/nsi/logos/stadtwerkequedlinburg-caeb06.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkequedlinburg-caeb06.svg", "osmTags": { "and": [ "power=substation", @@ -414146,7 +414360,7 @@ }, { "question": "Stadtwerke Rastatt", - "icon": "./assets/data/nsi/logos/stadtwerkerastatt-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkerastatt-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -414189,7 +414403,7 @@ }, { "question": "Stadtwerke Saarbrücken", - "icon": "./assets/data/nsi/logos/stadtwerkesaarbrucken-af21d1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkesaarbrucken-af21d1.png", "osmTags": { "and": [ "power=substation", @@ -414218,7 +414432,7 @@ }, { "question": "Stadtwerke Sindelfingen", - "icon": "./assets/data/nsi/logos/stadtwerkesindelfingen-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkesindelfingen-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -414233,7 +414447,7 @@ }, { "question": "Stadtwerke Speyer", - "icon": "./assets/data/nsi/logos/stadtwerkespeyer-4afb0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-4afb0a.jpg", "osmTags": { "and": [ "power=substation", @@ -414263,7 +414477,7 @@ }, { "question": "Stadtwerke Troisdorf", - "icon": "./assets/data/nsi/logos/stadtwerketroisdorf-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerketroisdorf-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -414278,7 +414492,7 @@ }, { "question": "Stadtwerke Tübingen", - "icon": "./assets/data/nsi/logos/stadtwerketubingen-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerketubingen-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -414294,7 +414508,7 @@ }, { "question": "Stadtwerke Velbert", - "icon": "./assets/data/nsi/logos/stadtwerkevelbert-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkevelbert-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -414309,7 +414523,7 @@ }, { "question": "Stadtwerke Waiblingen", - "icon": "./assets/data/nsi/logos/stadtwerkewaiblingen-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewaiblingen-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -414324,7 +414538,7 @@ }, { "question": "Stadtwerke Weinheim", - "icon": "./assets/data/nsi/logos/stadtwerkeweinheim-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeweinheim-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -414340,7 +414554,7 @@ }, { "question": "Stadtwerke Witten", - "icon": "./assets/data/nsi/logos/stadtwerkewitten-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -414355,7 +414569,7 @@ }, { "question": "Stadtwerke Wolfenbüttel", - "icon": "./assets/data/nsi/logos/stadtwerkewolfenbuttel-1af6be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewolfenbuttel-1af6be.jpg", "osmTags": { "and": [ "power=substation", @@ -414370,7 +414584,7 @@ }, { "question": "Stadtwerke Wörgl", - "icon": "./assets/data/nsi/logos/stadtwerkeworgl-8d025f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeworgl-8d025f.jpg", "osmTags": { "and": [ "power=substation", @@ -414394,7 +414608,7 @@ }, { "question": "Statkraft", - "icon": "./assets/data/nsi/logos/statkraft-57e02d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statkraft-57e02d.png", "osmTags": { "and": [ "power=substation", @@ -414409,7 +414623,7 @@ }, { "question": "Statnett", - "icon": "./assets/data/nsi/logos/statnett-ba6ae8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statnett-ba6ae8.png", "osmTags": { "and": [ "power=substation", @@ -414424,7 +414638,7 @@ }, { "question": "Stawag", - "icon": "./assets/data/nsi/logos/stawag-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stawag-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -414439,7 +414653,7 @@ }, { "question": "Stedin", - "icon": "./assets/data/nsi/logos/stedin-01f022.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stedin-01f022.png", "osmTags": { "and": [ "power=substation", @@ -414498,7 +414712,7 @@ }, { "question": "Stromnetz Berlin", - "icon": "./assets/data/nsi/logos/stromnetzberlin-e93127.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-e93127.svg", "osmTags": { "and": [ "power=substation", @@ -414513,7 +414727,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-de1365.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-de1365.jpg", "osmTags": { "and": [ "power=substation", @@ -414575,7 +414789,7 @@ }, { "question": "Stuttgart Netze", - "icon": "./assets/data/nsi/logos/stuttgartnetze-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stuttgartnetze-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -414590,7 +414804,7 @@ }, { "question": "Sunflower Electric Power Corporation", - "icon": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-2b5e72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-2b5e72.jpg", "osmTags": { "and": [ "power=substation", @@ -414614,7 +414828,7 @@ }, { "question": "Süwag Energie", - "icon": "./assets/data/nsi/logos/suwagenergie-313ef0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwagenergie-313ef0.jpg", "osmTags": { "and": [ "power=substation", @@ -414629,7 +414843,7 @@ }, { "question": "Svenska Kraftnät", - "icon": "./assets/data/nsi/logos/svenskakraftnat-44b3db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-44b3db.png", "osmTags": { "and": [ "power=substation", @@ -414644,7 +414858,7 @@ }, { "question": "swb (Bremen)", - "icon": "./assets/data/nsi/logos/swb-b4e66c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swb-b4e66c.jpg", "osmTags": { "and": [ "power=substation", @@ -414659,7 +414873,7 @@ }, { "question": "SWB Energie und Wasser", - "icon": "./assets/data/nsi/logos/swbenergieundwasser-26c4cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/swbenergieundwasser-26c4cf.svg", "osmTags": { "and": [ "power=substation", @@ -414689,7 +414903,7 @@ }, { "question": "SWE Stadtwerke Esslingen", - "icon": "./assets/data/nsi/logos/swestadtwerkeesslingen-dda049.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swestadtwerkeesslingen-dda049.png", "osmTags": { "and": [ "power=substation", @@ -414705,7 +414919,7 @@ }, { "question": "SWEPCO", - "icon": "./assets/data/nsi/logos/southwesternelectricpowercompany-815b02.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-815b02.jpg", "osmTags": { "and": [ "power=substation", @@ -414721,7 +414935,7 @@ }, { "question": "Swissgrid", - "icon": "./assets/data/nsi/logos/swissgrid-dc04c1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swissgrid-dc04c1.png", "osmTags": { "and": [ "power=substation", @@ -414736,7 +414950,7 @@ }, { "question": "SWK (Kaiserslautern)", - "icon": "./assets/data/nsi/logos/swk-4afb0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swk-4afb0a.jpg", "osmTags": { "and": [ "power=substation", @@ -414751,7 +414965,7 @@ }, { "question": "SWK (Krefeld)", - "icon": "./assets/data/nsi/logos/swk-26c4cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swk-26c4cf.png", "osmTags": { "and": [ "power=substation", @@ -414789,7 +415003,7 @@ }, { "question": "SWU Stadtwerke Ulm/Neu-Ulm GmbH", - "icon": "./assets/data/nsi/logos/swustadtwerkeulmneuulmgmbh-d11add.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swustadtwerkeulmneuulmgmbh-d11add.jpg", "osmTags": { "and": [ "power=substation", @@ -414805,7 +415019,7 @@ }, { "question": "Sydney Trains", - "icon": "./assets/data/nsi/logos/sydneytrains-1266b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sydneytrains-1266b7.png", "osmTags": { "and": [ "power=substation", @@ -414820,7 +415034,7 @@ }, { "question": "Sygnir", - "icon": "./assets/data/nsi/logos/sygnir-ba6ae8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sygnir-ba6ae8.jpg", "osmTags": { "and": [ "power=substation", @@ -414835,7 +415049,7 @@ }, { "question": "SŽDC", - "icon": "./assets/data/nsi/logos/szdc-fd39e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/szdc-fd39e1.jpg", "osmTags": { "and": [ "power=substation", @@ -414850,7 +415064,7 @@ }, { "question": "Tacoma Power", - "icon": "./assets/data/nsi/logos/tacomapower-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacomapower-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -414902,7 +415116,7 @@ }, { "question": "TasNetworks", - "icon": "./assets/data/nsi/logos/tasnetworks-787f6a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tasnetworks-787f6a.png", "osmTags": { "and": [ "power=substation", @@ -414917,7 +415131,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-83e94a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-83e94a.png", "osmTags": { "and": [ "power=substation", @@ -414932,7 +415146,7 @@ }, { "question": "Technische Werke Ludwigshafen AG", - "icon": "./assets/data/nsi/logos/technischewerkeludwigshafenag-4afb0a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technischewerkeludwigshafenag-4afb0a.png", "osmTags": { "and": [ "power=substation", @@ -414948,7 +415162,7 @@ }, { "question": "Technische Werke Naumburg", - "icon": "./assets/data/nsi/logos/technischewerkenaumburg-caeb06.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/technischewerkenaumburg-caeb06.jpg", "osmTags": { "and": [ "power=substation", @@ -414978,7 +415192,7 @@ }, { "question": "TEDAŞ", - "icon": "./assets/data/nsi/logos/tedas-13aefb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tedas-13aefb.jpg", "osmTags": { "and": [ "power=substation", @@ -414993,7 +415207,7 @@ }, { "question": "TEİAŞ", - "icon": "./assets/data/nsi/logos/teias-13aefb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teias-13aefb.jpg", "osmTags": { "and": [ "power=substation", @@ -415008,7 +415222,7 @@ }, { "question": "Tenaga Nasional", - "icon": "./assets/data/nsi/logos/tenaganasional-fb8dd8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tenaganasional-fb8dd8.png", "osmTags": { "and": [ "power=substation", @@ -415023,7 +415237,7 @@ }, { "question": "Tennessee Valley Authority", - "icon": "./assets/data/nsi/logos/tennesseevalleyauthority-301545.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-301545.png", "osmTags": { "and": [ "power=substation", @@ -415039,7 +415253,7 @@ }, { "question": "TenneT", - "icon": "./assets/data/nsi/logos/tennet-01f022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennet-01f022.jpg", "osmTags": { "and": [ "power=substation", @@ -415054,7 +415268,7 @@ }, { "question": "TenneT TSO", - "icon": "./assets/data/nsi/logos/tennettso-56054e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennettso-56054e.jpg", "osmTags": { "and": [ "power=substation", @@ -415069,7 +415283,7 @@ }, { "question": "Tensio", - "icon": "./assets/data/nsi/logos/tensio-ba6ae8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tensio-ba6ae8.jpg", "osmTags": { "and": [ "power=substation", @@ -415121,7 +415335,7 @@ }, { "question": "Terna", - "icon": "./assets/data/nsi/logos/terna-a69408.png", + "icon": "https://data.mapcomplete.org/nsi//logos/terna-a69408.png", "osmTags": { "and": [ "power=substation", @@ -415150,7 +415364,7 @@ }, { "question": "Texas-New Mexico Power", - "icon": "./assets/data/nsi/logos/texasnewmexicopower-9e5147.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-9e5147.png", "osmTags": { "and": [ "power=substation", @@ -415189,7 +415403,7 @@ }, { "question": "Thüga Energie", - "icon": "./assets/data/nsi/logos/thugaenergie-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thugaenergie-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -415219,7 +415433,7 @@ }, { "question": "Tiroler Netze", - "icon": "./assets/data/nsi/logos/tirolernetze-8d025f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tirolernetze-8d025f.png", "osmTags": { "and": [ "power=substation", @@ -415235,7 +415449,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-3e6be9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-3e6be9.svg", "osmTags": { "and": [ "power=substation", @@ -415264,7 +415478,7 @@ }, { "question": "Top Energy", - "icon": "./assets/data/nsi/logos/topenergy-8d74a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topenergy-8d74a7.png", "osmTags": { "and": [ "power=substation", @@ -415279,7 +415493,7 @@ }, { "question": "Toronto Hydro", - "icon": "./assets/data/nsi/logos/torontohydro-214de1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torontohydro-214de1.jpg", "osmTags": { "and": [ "power=substation", @@ -415308,7 +415522,7 @@ }, { "question": "Tramwaje Warszawskie", - "icon": "./assets/data/nsi/logos/tramwajewarszawskie-83e94a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tramwajewarszawskie-83e94a.png", "osmTags": { "and": [ "power=substation", @@ -415361,7 +415575,7 @@ }, { "question": "Transelectrica", - "icon": "./assets/data/nsi/logos/transelectrica-e2eb53.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transelectrica-e2eb53.svg", "osmTags": { "and": [ "power=substation", @@ -415377,7 +415591,7 @@ }, { "question": "TransGrid", - "icon": "./assets/data/nsi/logos/transgrid-1266b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transgrid-1266b7.png", "osmTags": { "and": [ "power=substation", @@ -415406,7 +415620,7 @@ }, { "question": "Transmission Company of Nigeria", - "icon": "./assets/data/nsi/logos/transmissioncompanyofnigeria-591354.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-591354.jpg", "osmTags": { "and": [ "power=substation", @@ -415421,7 +415635,7 @@ }, { "question": "TransnetBW GmbH", - "icon": "./assets/data/nsi/logos/transnetbwgmbh-dda049.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-dda049.svg", "osmTags": { "and": [ "power=substation", @@ -415445,7 +415659,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-1266b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-1266b7.jpg", "osmTags": { "and": [ "power=substation", @@ -415460,7 +415674,7 @@ }, { "question": "Transpower New Zealand", - "icon": "./assets/data/nsi/logos/transpowernewzealand-8d74a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-8d74a7.jpg", "osmTags": { "and": [ "power=substation", @@ -415489,7 +415703,7 @@ }, { "question": "TREDAŞ", - "icon": "./assets/data/nsi/logos/tredas-13aefb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredas-13aefb.jpg", "osmTags": { "and": [ "power=substation", @@ -415504,7 +415718,7 @@ }, { "question": "Trenes Argentinos", - "icon": "./assets/data/nsi/logos/trenesargentinos-e1c05a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-e1c05a.svg", "osmTags": { "and": [ "power=substation", @@ -415519,7 +415733,7 @@ }, { "question": "TriMet", - "icon": "./assets/data/nsi/logos/trimet-404227.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trimet-404227.png", "osmTags": { "and": [ "power=substation", @@ -415553,7 +415767,7 @@ }, { "question": "Tucson Electric Power", - "icon": "./assets/data/nsi/logos/tucsonelectricpower-260b75.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-260b75.jpg", "osmTags": { "and": [ "power=substation", @@ -415569,7 +415783,7 @@ }, { "question": "Türkiye Cumhuriyeti Devlet Demiryolları", - "icon": "./assets/data/nsi/logos/turkiyecumhuriyetidevletdemiryollari-13aefb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkiyecumhuriyetidevletdemiryollari-13aefb.jpg", "osmTags": { "and": [ "power=substation", @@ -415599,7 +415813,7 @@ }, { "question": "Überlandwerk Leinetal", - "icon": "./assets/data/nsi/logos/uberlandwerkleinetal-1af6be.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uberlandwerkleinetal-1af6be.jpg", "osmTags": { "and": [ "power=substation", @@ -415629,7 +415843,7 @@ }, { "question": "UK Power Networks", - "icon": "./assets/data/nsi/logos/ukpowernetworks-a368ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-a368ae.jpg", "osmTags": { "and": [ "power=substation", @@ -415644,7 +415858,7 @@ }, { "question": "Umeå Energi", - "icon": "./assets/data/nsi/logos/umeaenergi-44b3db.png", + "icon": "https://data.mapcomplete.org/nsi//logos/umeaenergi-44b3db.png", "osmTags": { "and": [ "power=substation", @@ -415706,7 +415920,7 @@ }, { "question": "Unison", - "icon": "./assets/data/nsi/logos/unison-8d74a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unison-8d74a7.jpg", "osmTags": { "and": [ "power=substation", @@ -415735,7 +415949,7 @@ }, { "question": "United Illuminating Company", - "icon": "./assets/data/nsi/logos/unitedilluminatingcompany-83e51e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-83e51e.jpg", "osmTags": { "and": [ "power=substation", @@ -415759,7 +415973,7 @@ }, { "question": "United States Steel", - "icon": "./assets/data/nsi/logos/unitedstatessteel-569b0d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-569b0d.svg", "osmTags": { "and": [ "power=substation", @@ -415774,7 +415988,7 @@ }, { "question": "Unitil", - "icon": "./assets/data/nsi/logos/unitil-869ced.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitil-869ced.png", "osmTags": { "and": [ "power=substation", @@ -415789,7 +416003,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-69a3df.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-69a3df.svg", "osmTags": { "and": [ "power=substation", @@ -415804,7 +416018,7 @@ }, { "question": "ÜZ Mainfranken", - "icon": "./assets/data/nsi/logos/uzmainfranken-218486.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uzmainfranken-218486.png", "osmTags": { "and": [ "power=substation", @@ -415819,7 +416033,7 @@ }, { "question": "Vale S.A.", - "icon": "./assets/data/nsi/logos/valesa-acc4a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valesa-acc4a0.jpg", "osmTags": { "and": [ "power=substation", @@ -415857,7 +416071,7 @@ }, { "question": "Vattenfall", - "icon": "./assets/data/nsi/logos/vattenfall-7bf6b3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-7bf6b3.png", "osmTags": { "and": [ "power=substation", @@ -415872,7 +416086,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-7ff171.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-7ff171.png", "osmTags": { "and": [ "power=substation", @@ -415887,7 +416101,7 @@ }, { "question": "Väylävirasto", - "icon": "./assets/data/nsi/logos/vaylavirasto-a5d6ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vaylavirasto-a5d6ed.jpg", "osmTags": { "and": [ "power=substation", @@ -415902,7 +416116,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-8d74a7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-8d74a7.png", "osmTags": { "and": [ "power=substation", @@ -415935,7 +416149,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-3e6be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-3e6be9.jpg", "osmTags": { "and": [ "power=substation", @@ -415950,7 +416164,7 @@ }, { "question": "Verdo", - "icon": "./assets/data/nsi/logos/verdo-3aeb55.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verdo-3aeb55.jpg", "osmTags": { "and": [ "power=substation", @@ -415980,7 +416194,7 @@ }, { "question": "Vermont Electric Power Company", - "icon": "./assets/data/nsi/logos/vermontelectricpowercompany-b24902.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-b24902.jpg", "osmTags": { "and": [ "power=substation", @@ -416009,7 +416223,7 @@ }, { "question": "Versant Power", - "icon": "./assets/data/nsi/logos/versantpower-140c84.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/versantpower-140c84.jpg", "osmTags": { "and": [ "power=substation", @@ -416038,7 +416252,7 @@ }, { "question": "Vevig", - "icon": "./assets/data/nsi/logos/vevig-ba6ae8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vevig-ba6ae8.png", "osmTags": { "and": [ "power=substation", @@ -416067,7 +416281,7 @@ }, { "question": "Viesgo Distribución Eléctrica", - "icon": "./assets/data/nsi/logos/viesgodistribucionelectrica-294d99.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-294d99.png", "osmTags": { "and": [ "power=substation", @@ -416105,7 +416319,7 @@ }, { "question": "Visayan Electric", - "icon": "./assets/data/nsi/logos/visayanelectric-851165.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visayanelectric-851165.jpg", "osmTags": { "and": [ "power=substation", @@ -416120,7 +416334,7 @@ }, { "question": "Vissi", - "icon": "./assets/data/nsi/logos/vissi-ba6ae8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vissi-ba6ae8.svg", "osmTags": { "and": [ "power=substation", @@ -416190,7 +416404,7 @@ }, { "question": "Voss Energi", - "icon": "./assets/data/nsi/logos/vossenergi-ba6ae8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vossenergi-ba6ae8.jpg", "osmTags": { "and": [ "power=substation", @@ -416205,7 +416419,7 @@ }, { "question": "Východoslovenská distribučná", - "icon": "./assets/data/nsi/logos/vychodoslovenskadistribucna-052fd4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-052fd4.png", "osmTags": { "and": [ "power=substation", @@ -416221,7 +416435,7 @@ }, { "question": "Východoslovenská energetika", - "icon": "./assets/data/nsi/logos/vychodoslovenskaenergetika-052fd4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskaenergetika-052fd4.svg", "osmTags": { "and": [ "power=substation", @@ -416237,7 +416451,7 @@ }, { "question": "Washington Metropolitan Area Transit Authority", - "icon": "./assets/data/nsi/logos/washingtonmetropolitanareatransitauthority-0d215b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonmetropolitanareatransitauthority-0d215b.jpg", "osmTags": { "and": [ "power=substation", @@ -416253,7 +416467,7 @@ }, { "question": "Washington-St. Tammany Electric Cooperative", - "icon": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-403aa2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-403aa2.jpg", "osmTags": { "and": [ "power=substation", @@ -416268,7 +416482,7 @@ }, { "question": "Wasserwerke Zug", - "icon": "./assets/data/nsi/logos/wasserwerkezug-7ee2f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wasserwerkezug-7ee2f7.png", "osmTags": { "and": [ "power=substation", @@ -416301,7 +416515,7 @@ }, { "question": "WEL Networks", - "icon": "./assets/data/nsi/logos/welnetworks-8d74a7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welnetworks-8d74a7.jpg", "osmTags": { "and": [ "power=substation", @@ -416358,7 +416572,7 @@ }, { "question": "West Penn Power", - "icon": "./assets/data/nsi/logos/westpennpower-9031bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westpennpower-9031bf.jpg", "osmTags": { "and": [ "power=substation", @@ -416373,7 +416587,7 @@ }, { "question": "Western Area Power Administration", - "icon": "./assets/data/nsi/logos/westernareapoweradministration-301545.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-301545.png", "osmTags": { "and": [ "power=substation", @@ -416418,7 +416632,7 @@ }, { "question": "Westland Infra", - "icon": "./assets/data/nsi/logos/westlandinfra-01f022.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westlandinfra-01f022.jpg", "osmTags": { "and": [ "power=substation", @@ -416433,7 +416647,7 @@ }, { "question": "Westnetz", - "icon": "./assets/data/nsi/logos/westnetz-7ff171.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westnetz-7ff171.png", "osmTags": { "and": [ "power=substation", @@ -416462,7 +416676,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-3e6be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-3e6be9.jpg", "osmTags": { "and": [ "power=substation", @@ -416477,7 +416691,7 @@ }, { "question": "Wiener Netze", - "icon": "./assets/data/nsi/logos/wienernetze-3e6be9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienernetze-3e6be9.png", "osmTags": { "and": [ "power=substation", @@ -416529,7 +416743,7 @@ }, { "question": "Wuppertaler Stadtwerke", - "icon": "./assets/data/nsi/logos/wuppertalerstadtwerke-26c4cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wuppertalerstadtwerke-26c4cf.jpg", "osmTags": { "and": [ "power=substation", @@ -416545,7 +416759,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-301545.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-301545.jpg", "osmTags": { "and": [ "power=substation", @@ -416592,7 +416806,7 @@ }, { "question": "ZEAG Energie", - "icon": "./assets/data/nsi/logos/zeagenergie-dda049.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeagenergie-dda049.jpg", "osmTags": { "and": [ "power=substation", @@ -416607,7 +416821,7 @@ }, { "question": "ZESCO", - "icon": "./assets/data/nsi/logos/zesco-9cd713.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zesco-9cd713.jpg", "osmTags": { "and": [ "power=substation", @@ -416748,7 +416962,7 @@ }, { "question": "Витебскэнерго", - "icon": "./assets/data/nsi/logos/vitebskenergo-1d411a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitebskenergo-1d411a.jpg", "osmTags": { "and": [ "power=substation", @@ -416905,7 +417119,7 @@ }, { "question": "Електропривреда Србије", - "icon": "./assets/data/nsi/logos/elektroprivredasrbije-0be006.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elektroprivredasrbije-0be006.svg", "osmTags": { "and": [ "power=substation", @@ -417171,7 +417385,7 @@ }, { "question": "ЛОЭСК", - "icon": "./assets/data/nsi/logos/c6dafd-42843b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c6dafd-42843b.jpg", "osmTags": { "and": [ "power=substation", @@ -417196,7 +417410,7 @@ }, { "question": "Львівобленерго", - "icon": "./assets/data/nsi/logos/lvivoblenergo-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lvivoblenergo-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -417384,7 +417598,7 @@ }, { "question": "НКЖИ", - "icon": "./assets/data/nsi/logos/afbfca-250fb8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/afbfca-250fb8.png", "osmTags": { "and": [ "power=substation", @@ -417953,7 +418167,7 @@ }, { "question": "Полтаваобленерго", - "icon": "./assets/data/nsi/logos/poltavaoblenergo-b0b17c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/poltavaoblenergo-b0b17c.png", "osmTags": { "and": [ "power=substation", @@ -417970,7 +418184,7 @@ }, { "question": "Прикарпаттяобленерго", - "icon": "./assets/data/nsi/logos/prykarpattiaoblenergo-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prykarpattiaoblenergo-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418005,7 +418219,7 @@ }, { "question": "Регіональні електричні мережі", - "icon": "./assets/data/nsi/logos/388547-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/388547-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418029,7 +418243,7 @@ }, { "question": "Рівнеобленерго", - "icon": "./assets/data/nsi/logos/rivneoblenergo-b0b17c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rivneoblenergo-b0b17c.png", "osmTags": { "and": [ "power=substation", @@ -418046,7 +418260,7 @@ }, { "question": "Россети", - "icon": "./assets/data/nsi/logos/rosseti-42843b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rosseti-42843b.png", "osmTags": { "and": [ "power=substation", @@ -418090,7 +418304,7 @@ }, { "question": "Российские железные дороги", - "icon": "./assets/data/nsi/logos/russianrailways-42843b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/russianrailways-42843b.png", "osmTags": { "and": [ "power=substation", @@ -418117,7 +418331,7 @@ }, { "question": "Сахалинэнерго", - "icon": "./assets/data/nsi/logos/sakhalinenergo-42843b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sakhalinenergo-42843b.jpg", "osmTags": { "and": [ "power=substation", @@ -418188,7 +418402,7 @@ }, { "question": "Столичен електротранспорт", - "icon": "./assets/data/nsi/logos/28c7ea-250fb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/28c7ea-250fb8.jpg", "osmTags": { "and": [ "power=substation", @@ -418203,7 +418417,7 @@ }, { "question": "Тернопільобленерго", - "icon": "./assets/data/nsi/logos/ternopiloblenergo-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ternopiloblenergo-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418220,7 +418434,7 @@ }, { "question": "Укренерго", - "icon": "./assets/data/nsi/logos/ukrenergo-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrenergo-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418238,7 +418452,7 @@ }, { "question": "Укрзалізниця", - "icon": "./assets/data/nsi/logos/ukrainianrailways-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrainianrailways-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418371,7 +418585,7 @@ }, { "question": "Харківобленерго", - "icon": "./assets/data/nsi/logos/kharkivoblenergo-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kharkivoblenergo-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418388,7 +418602,7 @@ }, { "question": "Херсонобленерго", - "icon": "./assets/data/nsi/logos/khersonoblenergo-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/khersonoblenergo-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418405,7 +418619,7 @@ }, { "question": "Хмельницькобленерго", - "icon": "./assets/data/nsi/logos/khmelnytskoblenergo-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/khmelnytskoblenergo-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418431,7 +418645,7 @@ }, { "question": "Черкасиобленерго", - "icon": "./assets/data/nsi/logos/472734-b0b17c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/472734-b0b17c.jpg", "osmTags": { "and": [ "power=substation", @@ -418489,7 +418703,7 @@ }, { "question": "การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย", - "icon": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-8cb22b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-8cb22b.jpg", "osmTags": { "and": [ "power=substation", @@ -418507,7 +418721,7 @@ }, { "question": "한국전력공사", - "icon": "./assets/data/nsi/logos/koreaelectricpowercorporation-de9ad2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/koreaelectricpowercorporation-de9ad2.svg", "osmTags": { "and": [ "power=substation", @@ -418525,7 +418739,7 @@ }, { "question": "한국철도시설공단", - "icon": "./assets/data/nsi/logos/koreanationalrailway-de9ad2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/koreanationalrailway-de9ad2.png", "osmTags": { "and": [ "power=substation", @@ -418567,7 +418781,7 @@ }, { "question": "中華電力有限公司 CLP Power Hong Kong Limited", - "icon": "./assets/data/nsi/logos/clppowerhongkonglimited-5df361.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-5df361.png", "osmTags": { "and": [ "power=substation", @@ -418591,7 +418805,7 @@ }, { "question": "中部電力パワーグリッド", - "icon": "./assets/data/nsi/logos/chubuelectricpowergridcompany-85251b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-85251b.svg", "osmTags": { "and": [ "power=substation", @@ -418608,7 +418822,7 @@ }, { "question": "九州電力送配電", - "icon": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-85251b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-85251b.png", "osmTags": { "and": [ "power=substation", @@ -418625,7 +418839,7 @@ }, { "question": "北海道電力ネットワーク", - "icon": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-85251b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-85251b.png", "osmTags": { "and": [ "power=substation", @@ -418668,7 +418882,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/taiwanpowercompany-c8f19e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanpowercompany-c8f19e.jpg", "osmTags": { "and": [ "power=substation", @@ -418744,7 +418958,7 @@ }, { "question": "東京電力パワーグリッド", - "icon": "./assets/data/nsi/logos/tepcopowergrid-85251b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-85251b.svg", "osmTags": { "and": [ "power=substation", @@ -418777,7 +418991,7 @@ }, { "question": "東武鉄道", - "icon": "./assets/data/nsi/logos/toburailway-85251b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toburailway-85251b.png", "osmTags": { "and": [ "power=substation", @@ -418797,7 +419011,7 @@ }, { "question": "沖縄電力", - "icon": "./assets/data/nsi/logos/okinawaelectricpowercompany-85251b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-85251b.jpg", "osmTags": { "and": [ "power=substation", @@ -418815,7 +419029,7 @@ }, { "question": "澳門電力股份有限公司 Companhia de Electricidade de Macau", - "icon": "./assets/data/nsi/logos/e30df9-9f60fb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/e30df9-9f60fb.jpg", "osmTags": { "and": [ "power=substation", @@ -418873,7 +419087,7 @@ }, { "question": "香港電燈有限公司 The Hongkong Electric Company, Limited", - "icon": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-5df361.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-5df361.jpg", "osmTags": { "and": [ "power=substation", @@ -418897,7 +419111,7 @@ }, { "question": "4-County Electric Power Association", - "icon": "./assets/data/nsi/logos/4countyelectricpowerassociation-8f2428.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/4countyelectricpowerassociation-8f2428.jpg", "osmTags": { "and": [ "power=tower", @@ -418912,7 +419126,7 @@ }, { "question": "50Hertz Transmission", - "icon": "./assets/data/nsi/logos/50hertztransmission-586af6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-586af6.svg", "osmTags": { "and": [ "power=tower", @@ -418927,7 +419141,7 @@ }, { "question": "Å Energi Vannkraft", - "icon": "./assets/data/nsi/logos/aenergivannkraft-c20ae5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aenergivannkraft-c20ae5.jpg", "osmTags": { "and": [ "power=tower", @@ -418942,7 +419156,7 @@ }, { "question": "Adif", - "icon": "./assets/data/nsi/logos/adif-69d425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adif-69d425.jpg", "osmTags": { "and": [ "power=tower", @@ -418957,7 +419171,7 @@ }, { "question": "AEK", - "icon": "./assets/data/nsi/logos/aek-ba1eb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aek-ba1eb0.jpg", "osmTags": { "and": [ "power=tower", @@ -418972,7 +419186,7 @@ }, { "question": "AEP Ohio", - "icon": "./assets/data/nsi/logos/aepohio-2bf52c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aepohio-2bf52c.png", "osmTags": { "and": [ "power=tower", @@ -418987,7 +419201,7 @@ }, { "question": "AEP Texas", - "icon": "./assets/data/nsi/logos/aeptexas-a67ac1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aeptexas-a67ac1.png", "osmTags": { "and": [ "power=tower", @@ -419002,7 +419216,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-df3eaa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-df3eaa.png", "osmTags": { "and": [ "power=tower", @@ -419017,7 +419231,7 @@ }, { "question": "AEW", - "icon": "./assets/data/nsi/logos/aew-e2ba80.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aew-e2ba80.png", "osmTags": { "and": [ "power=tower", @@ -419041,7 +419255,7 @@ }, { "question": "Agder Energi", - "icon": "./assets/data/nsi/logos/agderenergi-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agderenergi-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -419065,7 +419279,7 @@ }, { "question": "Aktiengesellschaft für Versorgungsunternehmen", - "icon": "./assets/data/nsi/logos/aktiengesellschaftfurversorgungsunternehmen-bfea7f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/aktiengesellschaftfurversorgungsunternehmen-bfea7f.svg", "osmTags": { "and": [ "power=tower", @@ -419081,7 +419295,7 @@ }, { "question": "Alabama Power", - "icon": "./assets/data/nsi/logos/alabamapower-9f0401.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamapower-9f0401.jpg", "osmTags": { "and": [ "power=tower", @@ -419110,7 +419324,7 @@ }, { "question": "Allgäuer Überlandwerk", - "icon": "./assets/data/nsi/logos/allgaueruberlandwerk-5ce831.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-5ce831.png", "osmTags": { "and": [ "power=tower", @@ -419126,7 +419340,7 @@ }, { "question": "Alliant Energy", - "icon": "./assets/data/nsi/logos/alliantenergy-bdcff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alliantenergy-bdcff1.png", "osmTags": { "and": [ "frequency=60", @@ -419151,7 +419365,7 @@ }, { "question": "AltaLink", - "icon": "./assets/data/nsi/logos/altalink-4cd406.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altalink-4cd406.jpg", "osmTags": { "and": [ "power=tower", @@ -419212,7 +419426,7 @@ }, { "question": "Ameren", - "icon": "./assets/data/nsi/logos/ameren-8579ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameren-8579ba.png", "osmTags": { "and": [ "frequency=60", @@ -419242,7 +419456,7 @@ }, { "question": "American Electric Power", - "icon": "./assets/data/nsi/logos/americanelectricpower-bdcff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-bdcff1.png", "osmTags": { "and": [ "power=tower", @@ -419286,7 +419500,7 @@ }, { "question": "Amprion", - "icon": "./assets/data/nsi/logos/amprion-586af6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/amprion-586af6.svg", "osmTags": { "and": [ "power=tower", @@ -419301,7 +419515,7 @@ }, { "question": "Amtrak", - "icon": "./assets/data/nsi/logos/amtrak-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtrak-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -419316,7 +419530,7 @@ }, { "question": "Anaheim Public Utilities", - "icon": "./assets/data/nsi/logos/anaheimpublicutilities-bc3f25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-bc3f25.png", "osmTags": { "and": [ "power=tower", @@ -419331,7 +419545,7 @@ }, { "question": "ANDE", - "icon": "./assets/data/nsi/logos/ande-f310f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ande-f310f5.jpg", "osmTags": { "and": [ "power=tower", @@ -419360,7 +419574,7 @@ }, { "question": "Appalachian Power", - "icon": "./assets/data/nsi/logos/appalachianpowercompany-ea1744.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-ea1744.png", "osmTags": { "and": [ "power=tower", @@ -419398,7 +419612,7 @@ }, { "question": "Arizona Public Service", - "icon": "./assets/data/nsi/logos/arizonapublicservice-fa3ca4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-fa3ca4.png", "osmTags": { "and": [ "power=tower", @@ -419427,7 +419641,7 @@ }, { "question": "Arkansas Valley Electric Cooperative", - "icon": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-fbadb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-fbadb0.jpg", "osmTags": { "and": [ "power=tower", @@ -419456,7 +419670,7 @@ }, { "question": "ATCO Electric", - "icon": "./assets/data/nsi/logos/atcoelectric-e3681f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atcoelectric-e3681f.svg", "osmTags": { "and": [ "power=tower", @@ -419471,7 +419685,7 @@ }, { "question": "ATEL", - "icon": "./assets/data/nsi/logos/atel-ca3aad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atel-ca3aad.svg", "osmTags": { "and": [ "power=tower", @@ -419486,7 +419700,7 @@ }, { "question": "Atlantic City Electric", - "icon": "./assets/data/nsi/logos/atlanticcityelectric-ce395d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-ce395d.jpg", "osmTags": { "and": [ "power=tower", @@ -419501,7 +419715,7 @@ }, { "question": "Augstsprieguma tīkls", - "icon": "./assets/data/nsi/logos/augstspriegumatikls-ea2dda.png", + "icon": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-ea2dda.png", "osmTags": { "and": [ "power=tower", @@ -419516,7 +419730,7 @@ }, { "question": "Ausgrid", - "icon": "./assets/data/nsi/logos/ausgrid-1b8b00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausgrid-1b8b00.jpg", "osmTags": { "and": [ "power=tower", @@ -419531,7 +419745,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-a67ac1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-a67ac1.jpg", "osmTags": { "and": [ "power=tower", @@ -419560,7 +419774,7 @@ }, { "question": "Avacon Netz", - "icon": "./assets/data/nsi/logos/avaconnetz-599fc5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avaconnetz-599fc5.svg", "osmTags": { "and": [ "power=tower", @@ -419575,7 +419789,7 @@ }, { "question": "Avista", - "icon": "./assets/data/nsi/logos/avista-87ed44.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avista-87ed44.jpg", "osmTags": { "and": [ "power=tower", @@ -419590,7 +419804,7 @@ }, { "question": "Axpo", - "icon": "./assets/data/nsi/logos/axpo-fb5d52.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axpo-fb5d52.jpg", "osmTags": { "and": [ "power=tower", @@ -419614,7 +419828,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-407ea9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-407ea9.jpg", "osmTags": { "and": [ "frequency=60", @@ -419653,7 +419867,7 @@ }, { "question": "Bayernwerk", - "icon": "./assets/data/nsi/logos/bayernwerk-a4bad4.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bayernwerk-a4bad4.svg", "osmTags": { "and": [ "power=tower", @@ -419668,7 +419882,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-20cbd8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-20cbd8.jpg", "osmTags": { "and": [ "power=tower", @@ -419706,7 +419920,7 @@ }, { "question": "Belize Electricity Limited", - "icon": "./assets/data/nsi/logos/belizeelectricitylimited-18ef5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-18ef5d.jpg", "osmTags": { "and": [ "power=tower", @@ -419749,7 +419963,7 @@ }, { "question": "BKK", - "icon": "./assets/data/nsi/logos/bkk-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bkk-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -419764,7 +419978,7 @@ }, { "question": "BKW", - "icon": "./assets/data/nsi/logos/bkw-1670a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bkw-1670a6.png", "osmTags": { "and": [ "power=tower", @@ -419794,7 +420008,7 @@ }, { "question": "Blue Ridge Energy", - "icon": "./assets/data/nsi/logos/blueridgeenergy-4b3bfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-4b3bfa.jpg", "osmTags": { "and": [ "power=tower", @@ -419809,7 +420023,7 @@ }, { "question": "Bonneville Power Administration", - "icon": "./assets/data/nsi/logos/bonnevillepoweradministration-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -419825,7 +420039,7 @@ }, { "question": "Bornholms Energi & Forsyning", - "icon": "./assets/data/nsi/logos/bornholmsenergiandforsyning-d08188.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-d08188.jpg", "osmTags": { "and": [ "power=tower", @@ -419883,7 +420097,7 @@ }, { "question": "BrightRidge", - "icon": "./assets/data/nsi/logos/brightridge-ef63dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightridge-ef63dd.jpg", "osmTags": { "and": [ "power=tower", @@ -419907,7 +420121,7 @@ }, { "question": "Bryan Texas Utilities", - "icon": "./assets/data/nsi/logos/bryantexasutilities-a67ac1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-a67ac1.jpg", "osmTags": { "and": [ "power=tower", @@ -419922,7 +420136,7 @@ }, { "question": "Burgenland Energie", - "icon": "./assets/data/nsi/logos/burgenlandenergieag-e911fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/burgenlandenergieag-e911fe.jpg", "osmTags": { "and": [ "power=tower", @@ -419946,7 +420160,7 @@ }, { "question": "Capital Power", - "icon": "./assets/data/nsi/logos/capitalpower-e19a0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/capitalpower-e19a0c.jpg", "osmTags": { "and": [ "power=tower", @@ -419975,7 +420189,7 @@ }, { "question": "Caruna", - "icon": "./assets/data/nsi/logos/caruna-010e24.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caruna-010e24.svg", "osmTags": { "and": [ "power=tower", @@ -419990,7 +420204,7 @@ }, { "question": "CDEEE", - "icon": "./assets/data/nsi/logos/cdeee-6cbcd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cdeee-6cbcd4.jpg", "osmTags": { "and": [ "power=tower", @@ -420005,7 +420219,7 @@ }, { "question": "CEEE", - "icon": "./assets/data/nsi/logos/ceee-3ce1ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceee-3ce1ab.svg", "osmTags": { "and": [ "power=tower", @@ -420034,7 +420248,7 @@ }, { "question": "Celesc", - "icon": "./assets/data/nsi/logos/celesc-3ce1ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celesc-3ce1ab.jpg", "osmTags": { "and": [ "power=tower", @@ -420058,7 +420272,7 @@ }, { "question": "Cemig", - "icon": "./assets/data/nsi/logos/cemig-3ce1ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cemig-3ce1ab.jpg", "osmTags": { "and": [ "power=tower", @@ -420073,7 +420287,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -420102,7 +420316,7 @@ }, { "question": "Central Maine Power Company", - "icon": "./assets/data/nsi/logos/centralmainepowercompany-c6deed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-c6deed.jpg", "osmTags": { "and": [ "power=tower", @@ -420126,7 +420340,7 @@ }, { "question": "ČEPS", - "icon": "./assets/data/nsi/logos/ceps-2998d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceps-2998d9.jpg", "osmTags": { "and": [ "power=tower", @@ -420141,7 +420355,7 @@ }, { "question": "CERN", - "icon": "./assets/data/nsi/logos/cern-ed9688.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cern-ed9688.jpg", "osmTags": { "and": [ "power=tower", @@ -420165,7 +420379,7 @@ }, { "question": "Ceylon Electricity Board", - "icon": "./assets/data/nsi/logos/ceylonelectricityboard-4af160.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-4af160.png", "osmTags": { "and": [ "power=tower", @@ -420204,7 +420418,7 @@ }, { "question": "CGE", - "icon": "./assets/data/nsi/logos/cge-539b17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cge-539b17.jpg", "osmTags": { "and": [ "power=tower", @@ -420255,7 +420469,7 @@ }, { "question": "CIPCO", - "icon": "./assets/data/nsi/logos/cipco-277843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cipco-277843.jpg", "osmTags": { "and": [ "frequency=60", @@ -420271,7 +420485,7 @@ }, { "question": "City of Ames", - "icon": "./assets/data/nsi/logos/cityofames-277843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofames-277843.jpg", "osmTags": { "and": [ "power=tower", @@ -420286,7 +420500,7 @@ }, { "question": "City of Concord", - "icon": "./assets/data/nsi/logos/cityofconcord-4b3bfa.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofconcord-4b3bfa.png", "osmTags": { "and": [ "power=tower", @@ -420301,7 +420515,7 @@ }, { "question": "City of Elizabeth", - "icon": "./assets/data/nsi/logos/cityofelizabeth-4b3bfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofelizabeth-4b3bfa.jpg", "osmTags": { "and": [ "power=tower", @@ -420339,7 +420553,7 @@ }, { "question": "City of High Point", - "icon": "./assets/data/nsi/logos/cityofhighpoint-4b3bfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofhighpoint-4b3bfa.jpg", "osmTags": { "and": [ "power=tower", @@ -420354,7 +420568,7 @@ }, { "question": "City of Lakeland", - "icon": "./assets/data/nsi/logos/cityoflakeland-a2a8ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-a2a8ba.png", "osmTags": { "and": [ "power=tower", @@ -420369,7 +420583,7 @@ }, { "question": "City of Lexington", - "icon": "./assets/data/nsi/logos/cityoflexington-4b3bfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflexington-4b3bfa.jpg", "osmTags": { "and": [ "power=tower", @@ -420384,7 +420598,7 @@ }, { "question": "City of Natchitoches", - "icon": "./assets/data/nsi/logos/cityofnatchitoches-7b80e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofnatchitoches-7b80e6.jpg", "osmTags": { "and": [ "power=tower", @@ -420441,7 +420655,7 @@ }, { "question": "City of Tallahassee", - "icon": "./assets/data/nsi/logos/cityoftallahassee-a2a8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-a2a8ba.jpg", "osmTags": { "and": [ "power=tower", @@ -420493,7 +420707,7 @@ }, { "question": "Clark Public Utilities", - "icon": "./assets/data/nsi/logos/clarkpublicutilities-60887c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-60887c.jpg", "osmTags": { "and": [ "power=tower", @@ -420517,7 +420731,7 @@ }, { "question": "Clay Electric Cooperative", - "icon": "./assets/data/nsi/logos/clayelectriccooperative-a2a8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-a2a8ba.jpg", "osmTags": { "and": [ "power=tower", @@ -420532,7 +420746,7 @@ }, { "question": "CLECO", - "icon": "./assets/data/nsi/logos/cleco-7b80e6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleco-7b80e6.svg", "osmTags": { "and": [ "power=tower", @@ -420547,7 +420761,7 @@ }, { "question": "Cleveland Public Power", - "icon": "./assets/data/nsi/logos/clevelandpublicpower-2bf52c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clevelandpublicpower-2bf52c.jpg", "osmTags": { "and": [ "power=tower", @@ -420616,7 +420830,7 @@ }, { "question": "CNR", - "icon": "./assets/data/nsi/logos/cnr-06d365.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cnr-06d365.jpg", "osmTags": { "and": [ "power=tower", @@ -420631,7 +420845,7 @@ }, { "question": "Codelco Chile", - "icon": "./assets/data/nsi/logos/codelcochile-539b17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/codelcochile-539b17.jpg", "osmTags": { "and": [ "power=tower", @@ -420646,7 +420860,7 @@ }, { "question": "Coelba", - "icon": "./assets/data/nsi/logos/coelba-3ce1ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coelba-3ce1ab.png", "osmTags": { "and": [ "power=tower", @@ -420661,7 +420875,7 @@ }, { "question": "Colbún", - "icon": "./assets/data/nsi/logos/colbun-539b17.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colbun-539b17.jpg", "osmTags": { "and": [ "power=tower", @@ -420676,7 +420890,7 @@ }, { "question": "Colorado Springs Utilities", - "icon": "./assets/data/nsi/logos/coloradospringsutilities-b97cd6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-b97cd6.jpg", "osmTags": { "and": [ "power=tower", @@ -420700,7 +420914,7 @@ }, { "question": "Comisión Federal de Electricidad", - "icon": "./assets/data/nsi/logos/comisionfederaldeelectricidad-326c07.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-326c07.png", "osmTags": { "and": [ "power=tower", @@ -420716,7 +420930,7 @@ }, { "question": "Commonwealth Edison", - "icon": "./assets/data/nsi/logos/commonwealthedison-e55a59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-e55a59.jpg", "osmTags": { "and": [ "power=tower", @@ -420808,7 +421022,7 @@ }, { "question": "Consolidated Edison", - "icon": "./assets/data/nsi/logos/consolidatededison-f597d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consolidatededison-f597d1.jpg", "osmTags": { "and": [ "power=tower", @@ -420837,7 +421051,7 @@ }, { "question": "Consumers Energy", - "icon": "./assets/data/nsi/logos/consumersenergy-52f18f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumersenergy-52f18f.png", "osmTags": { "and": [ "power=tower", @@ -420866,7 +421080,7 @@ }, { "question": "Copel", - "icon": "./assets/data/nsi/logos/copel-3ce1ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copel-3ce1ab.jpg", "osmTags": { "and": [ "power=tower", @@ -420881,7 +421095,7 @@ }, { "question": "Corn Belt Power Cooperative", - "icon": "./assets/data/nsi/logos/cornbeltpowercooperative-277843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-277843.jpg", "osmTags": { "and": [ "frequency=60", @@ -420897,7 +421111,7 @@ }, { "question": "Corpoelec", - "icon": "./assets/data/nsi/logos/corpoelec-46d8fc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpoelec-46d8fc.png", "osmTags": { "and": [ "power=tower", @@ -420912,7 +421126,7 @@ }, { "question": "Cosern", - "icon": "./assets/data/nsi/logos/cosern-3ce1ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cosern-3ce1ab.png", "osmTags": { "and": [ "power=tower", @@ -420927,7 +421141,7 @@ }, { "question": "Counties Energy", - "icon": "./assets/data/nsi/logos/countiesenergy-9a0f48.png", + "icon": "https://data.mapcomplete.org/nsi//logos/countiesenergy-9a0f48.png", "osmTags": { "and": [ "power=tower", @@ -420951,7 +421165,7 @@ }, { "question": "CPFL Energia", - "icon": "./assets/data/nsi/logos/cpflenergia-3ce1ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cpflenergia-3ce1ab.png", "osmTags": { "and": [ "power=tower", @@ -420975,7 +421189,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-a67ac1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-a67ac1.jpg", "osmTags": { "and": [ "power=tower", @@ -421027,7 +421241,7 @@ }, { "question": "Cullman Electric Cooperative", - "icon": "./assets/data/nsi/logos/cullmanelectriccooperative-9f0401.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-9f0401.png", "osmTags": { "and": [ "power=tower", @@ -421042,7 +421256,7 @@ }, { "question": "Dairyland Power Cooperative", - "icon": "./assets/data/nsi/logos/dairylandpowercooperative-8b110c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-8b110c.jpg", "osmTags": { "and": [ "power=tower", @@ -421084,7 +421298,7 @@ }, { "question": "Dayton Power & Light", - "icon": "./assets/data/nsi/logos/daytonpowerandlight-2bf52c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/daytonpowerandlight-2bf52c.png", "osmTags": { "and": [ "power=tower", @@ -421100,7 +421314,7 @@ }, { "question": "DB Energie", - "icon": "./assets/data/nsi/logos/dbenergie-586af6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbenergie-586af6.svg", "osmTags": { "and": [ "power=tower", @@ -421115,7 +421329,7 @@ }, { "question": "Decatur Utilities", - "icon": "./assets/data/nsi/logos/decaturutilities-9f0401.png", + "icon": "https://data.mapcomplete.org/nsi//logos/decaturutilities-9f0401.png", "osmTags": { "and": [ "power=tower", @@ -421130,7 +421344,7 @@ }, { "question": "Delmarva Power", - "icon": "./assets/data/nsi/logos/delmarvapower-ac3708.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delmarvapower-ac3708.jpg", "osmTags": { "and": [ "power=tower", @@ -421145,7 +421359,7 @@ }, { "question": "DEMCO", - "icon": "./assets/data/nsi/logos/demco-7b80e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/demco-7b80e6.jpg", "osmTags": { "and": [ "power=tower", @@ -421187,7 +421401,7 @@ }, { "question": "Dominion Energy", - "icon": "./assets/data/nsi/logos/dominionenergy-640563.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dominionenergy-640563.png", "osmTags": { "and": [ "power=tower", @@ -421216,7 +421430,7 @@ }, { "question": "Dow Chemical Company", - "icon": "./assets/data/nsi/logos/dowchemicalcompany-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -421231,7 +421445,7 @@ }, { "question": "DTE Electric Company", - "icon": "./assets/data/nsi/logos/dteelectriccompany-52f18f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteelectriccompany-52f18f.png", "osmTags": { "and": [ "power=tower", @@ -421246,7 +421460,7 @@ }, { "question": "DTE Energy", - "icon": "./assets/data/nsi/logos/dteenergy-52f18f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteenergy-52f18f.png", "osmTags": { "and": [ "power=tower", @@ -421276,7 +421490,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-88249c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-88249c.jpg", "osmTags": { "and": [ "power=tower", @@ -421291,7 +421505,7 @@ }, { "question": "Duke Energy Progress", - "icon": "./assets/data/nsi/logos/dukeenergyprogress-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -421306,7 +421520,7 @@ }, { "question": "Duquesne Light", - "icon": "./assets/data/nsi/logos/duquesnelight-052d73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duquesnelight-052d73.jpg", "osmTags": { "and": [ "power=tower", @@ -421321,7 +421535,7 @@ }, { "question": "E-REDES", - "icon": "./assets/data/nsi/logos/eredes-331927.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eredes-331927.png", "osmTags": { "and": [ "power=tower", @@ -421336,7 +421550,7 @@ }, { "question": "E.DIS Netz GmbH", - "icon": "./assets/data/nsi/logos/edisnetzgmbh-89cf7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-89cf7c.jpg", "osmTags": { "and": [ "power=tower", @@ -421378,7 +421592,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-9156cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-9156cf.png", "osmTags": { "and": [ "power=tower", @@ -421393,7 +421607,7 @@ }, { "question": "E.ON Mitte", - "icon": "./assets/data/nsi/logos/eonmitte-586af6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonmitte-586af6.svg", "osmTags": { "and": [ "power=tower", @@ -421408,7 +421622,7 @@ }, { "question": "E.ON Netz", - "icon": "./assets/data/nsi/logos/eonnetz-586af6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonnetz-586af6.svg", "osmTags": { "and": [ "power=tower", @@ -421423,7 +421637,7 @@ }, { "question": "E.ON Westfalen Weser", - "icon": "./assets/data/nsi/logos/eonwestfalenweser-586af6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonwestfalenweser-586af6.svg", "osmTags": { "and": [ "power=tower", @@ -421438,7 +421652,7 @@ }, { "question": "East Kentucky Power Cooperative", - "icon": "./assets/data/nsi/logos/eastkentuckypowercooperative-c8adae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-c8adae.jpg", "osmTags": { "and": [ "power=tower", @@ -421453,7 +421667,7 @@ }, { "question": "East River Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/eastriverelectricpowercooperative-4ce78d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-4ce78d.jpg", "osmTags": { "and": [ "power=tower", @@ -421500,7 +421714,7 @@ }, { "question": "Edenor", - "icon": "./assets/data/nsi/logos/edenor-13cce6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edenor-13cce6.jpg", "osmTags": { "and": [ "power=tower", @@ -421533,7 +421747,7 @@ }, { "question": "EDP Espírito Santo", - "icon": "./assets/data/nsi/logos/edpespiritosanto-f44267.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-f44267.svg", "osmTags": { "and": [ "power=tower", @@ -421563,7 +421777,7 @@ }, { "question": "EDP Renováveis", - "icon": "./assets/data/nsi/logos/edprenovaveis-e07165.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-e07165.svg", "osmTags": { "and": [ "power=tower", @@ -421580,7 +421794,7 @@ }, { "question": "EDP São Paulo", - "icon": "./assets/data/nsi/logos/edpsaopaulo-3ce1ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-3ce1ab.jpg", "osmTags": { "and": [ "power=tower", @@ -421613,7 +421827,7 @@ }, { "question": "EG.D", - "icon": "./assets/data/nsi/logos/egd-814054.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/egd-814054.svg", "osmTags": { "and": [ "power=tower", @@ -421651,7 +421865,7 @@ }, { "question": "EirGrid", - "icon": "./assets/data/nsi/logos/eirgrid-ace1ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eirgrid-ace1ec.jpg", "osmTags": { "and": [ "power=tower", @@ -421666,7 +421880,7 @@ }, { "question": "EKT", - "icon": "./assets/data/nsi/logos/ekt-13334a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekt-13334a.jpg", "osmTags": { "and": [ "power=tower", @@ -421710,7 +421924,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-9156cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-9156cf.png", "osmTags": { "and": [ "power=tower", @@ -421756,7 +421970,7 @@ }, { "question": "Electricity North West", - "icon": "./assets/data/nsi/logos/electricitynorthwest-b49d3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-b49d3c.jpg", "osmTags": { "and": [ "power=tower", @@ -421780,7 +421994,7 @@ }, { "question": "Elektrilevi", - "icon": "./assets/data/nsi/logos/elektrilevi-3741d9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrilevi-3741d9.png", "osmTags": { "and": [ "power=tower", @@ -421839,7 +422053,7 @@ }, { "question": "Elenia", - "icon": "./assets/data/nsi/logos/elenia-010e24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elenia-010e24.jpg", "osmTags": { "and": [ "power=tower", @@ -421854,7 +422068,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-3741d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-3741d9.jpg", "osmTags": { "and": [ "power=tower", @@ -421930,7 +422144,7 @@ }, { "question": "Eletropaulo", - "icon": "./assets/data/nsi/logos/eletropaulo-3ce1ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eletropaulo-3ce1ab.svg", "osmTags": { "and": [ "power=tower", @@ -421959,7 +422173,7 @@ }, { "question": "Elia", - "icon": "./assets/data/nsi/logos/elia-e76493.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elia-e76493.png", "osmTags": { "and": [ "power=tower", @@ -421988,7 +422202,7 @@ }, { "question": "Ellevio", - "icon": "./assets/data/nsi/logos/ellevio-57ded1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ellevio-57ded1.png", "osmTags": { "and": [ "power=tower", @@ -422017,7 +422231,7 @@ }, { "question": "ELMŰ", - "icon": "./assets/data/nsi/logos/elmu-fb6ef4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elmu-fb6ef4.png", "osmTags": { "and": [ "power=tower", @@ -422032,7 +422246,7 @@ }, { "question": "Elvia", - "icon": "./assets/data/nsi/logos/elvia-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elvia-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -422075,7 +422289,7 @@ }, { "question": "Emerald People's Utility District", - "icon": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-53c7cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-53c7cc.png", "osmTags": { "and": [ "power=tower", @@ -422109,7 +422323,7 @@ }, { "question": "Endeavour Energy", - "icon": "./assets/data/nsi/logos/endeavourenergy-1b8b00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-1b8b00.jpg", "osmTags": { "and": [ "power=tower", @@ -422124,7 +422338,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-69d425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-69d425.png", "osmTags": { "and": [ "power=tower", @@ -422139,7 +422353,7 @@ }, { "question": "Enea", - "icon": "./assets/data/nsi/logos/enea-983018.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enea-983018.png", "osmTags": { "and": [ "power=tower", @@ -422154,7 +422368,7 @@ }, { "question": "Enedis", - "icon": "./assets/data/nsi/logos/enedis-c5898d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enedis-c5898d.png", "osmTags": { "and": [ "power=tower", @@ -422178,7 +422392,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-9156cf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-9156cf.png", "osmTags": { "and": [ "power=tower", @@ -422193,7 +422407,7 @@ }, { "question": "Enel Distribuição Ceará", - "icon": "./assets/data/nsi/logos/eneldistribuicaoceara-3ce1ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-3ce1ab.png", "osmTags": { "and": [ "power=tower", @@ -422222,7 +422436,7 @@ }, { "question": "Enel Distribuição São Paulo", - "icon": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-3ce1ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-3ce1ab.svg", "osmTags": { "and": [ "power=tower", @@ -422237,7 +422451,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-9156cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-9156cf.svg", "osmTags": { "and": [ "power=tower", @@ -422275,7 +422489,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-983018.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-983018.png", "osmTags": { "and": [ "power=tower", @@ -422299,7 +422513,7 @@ }, { "question": "Energex", - "icon": "./assets/data/nsi/logos/energex-7b2d4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energex-7b2d4e.jpg", "osmTags": { "and": [ "power=tower", @@ -422314,7 +422528,7 @@ }, { "question": "Energias de Portugal", - "icon": "./assets/data/nsi/logos/energiasdeportugal-331927.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-331927.svg", "osmTags": { "and": [ "power=tower", @@ -422330,7 +422544,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-9e91b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-9e91b2.jpg", "osmTags": { "and": [ "power=tower", @@ -422345,7 +422559,7 @@ }, { "question": "Énergie du Mali", - "icon": "./assets/data/nsi/logos/energiedumali-a3395e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedumali-a3395e.jpg", "osmTags": { "and": [ "power=tower", @@ -422378,7 +422592,7 @@ }, { "question": "Energieversorgung Mittelrhein", - "icon": "./assets/data/nsi/logos/energieversorgungmittelrhein-33a850.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-33a850.jpg", "osmTags": { "and": [ "power=tower", @@ -422403,7 +422617,7 @@ }, { "question": "Energinet", - "icon": "./assets/data/nsi/logos/energinet-8ed41d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energinet-8ed41d.png", "osmTags": { "and": [ "power=tower", @@ -422483,7 +422697,7 @@ }, { "question": "Energy Fiji Limited", - "icon": "./assets/data/nsi/logos/energyfijilimited-ba7816.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energyfijilimited-ba7816.png", "osmTags": { "and": [ "power=tower", @@ -422522,7 +422736,7 @@ }, { "question": "Enertrag", - "icon": "./assets/data/nsi/logos/enertrag-2577fc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enertrag-2577fc.jpg", "osmTags": { "and": [ "power=tower", @@ -422551,7 +422765,7 @@ }, { "question": "Enexis", - "icon": "./assets/data/nsi/logos/enexis-858998.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enexis-858998.png", "osmTags": { "and": [ "power=tower", @@ -422566,7 +422780,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-9156cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-9156cf.jpg", "osmTags": { "and": [ "power=tower", @@ -422595,7 +422809,7 @@ }, { "question": "ENMAX", - "icon": "./assets/data/nsi/logos/enmax-4cd406.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmax-4cd406.png", "osmTags": { "and": [ "power=tower", @@ -422610,7 +422824,7 @@ }, { "question": "Ente Provincial de Energía del Neuquén", - "icon": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-aa3cc2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-aa3cc2.png", "osmTags": { "and": [ "power=tower", @@ -422625,7 +422839,7 @@ }, { "question": "Entergy", - "icon": "./assets/data/nsi/logos/entergy-76a7b4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergy-76a7b4.jpg", "osmTags": { "and": [ "power=tower", @@ -422640,7 +422854,7 @@ }, { "question": "Entergy Arkansas", - "icon": "./assets/data/nsi/logos/entergyarkansas-fbadb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-fbadb0.jpg", "osmTags": { "and": [ "power=tower", @@ -422655,7 +422869,7 @@ }, { "question": "Entergy Louisiana", - "icon": "./assets/data/nsi/logos/entergylouisiana-2a5830.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-2a5830.jpg", "osmTags": { "and": [ "power=tower", @@ -422698,7 +422912,7 @@ }, { "question": "enviaM", - "icon": "./assets/data/nsi/logos/enviam-d1d8c4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enviam-d1d8c4.png", "osmTags": { "and": [ "power=tower", @@ -422713,7 +422927,7 @@ }, { "question": "EPB", - "icon": "./assets/data/nsi/logos/epb-7a59c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epb-7a59c2.jpg", "osmTags": { "and": [ "power=tower", @@ -422728,7 +422942,7 @@ }, { "question": "EPCOR", - "icon": "./assets/data/nsi/logos/epcor-f12bdc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epcor-f12bdc.jpg", "osmTags": { "and": [ "power=tower", @@ -422743,7 +422957,7 @@ }, { "question": "EPEC", - "icon": "./assets/data/nsi/logos/epec-992f03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epec-992f03.jpg", "osmTags": { "and": [ "power=tower", @@ -422851,7 +423065,7 @@ }, { "question": "Equatorial Energia Piauí", - "icon": "./assets/data/nsi/logos/equatorialenergiapiaui-32cb8c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-32cb8c.jpg", "osmTags": { "and": [ "power=tower", @@ -422866,7 +423080,7 @@ }, { "question": "Ergon Energy", - "icon": "./assets/data/nsi/logos/ergonenergy-7b2d4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ergonenergy-7b2d4e.jpg", "osmTags": { "and": [ "power=tower", @@ -422881,7 +423095,7 @@ }, { "question": "ESB Networks", - "icon": "./assets/data/nsi/logos/esbnetworks-ace1ec.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esbnetworks-ace1ec.png", "osmTags": { "and": [ "power=tower", @@ -422905,7 +423119,7 @@ }, { "question": "Eskom", - "icon": "./assets/data/nsi/logos/eskom-5fc5f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eskom-5fc5f3.jpg", "osmTags": { "and": [ "power=tower", @@ -422920,7 +423134,7 @@ }, { "question": "Essential Energy", - "icon": "./assets/data/nsi/logos/essentialenergy-af1cc5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentialenergy-af1cc5.jpg", "osmTags": { "and": [ "power=tower", @@ -422935,7 +423149,7 @@ }, { "question": "Eswatini Electricity Company", - "icon": "./assets/data/nsi/logos/eswatinielectricitycompany-cab1ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eswatinielectricitycompany-cab1ca.png", "osmTags": { "and": [ "power=tower", @@ -422960,7 +423174,7 @@ }, { "question": "Ethiopian Electric Power", - "icon": "./assets/data/nsi/logos/ethiopianelectricpower-96e206.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-96e206.png", "osmTags": { "and": [ "power=tower", @@ -422985,7 +423199,7 @@ }, { "question": "Eugene Water & Electric Board", - "icon": "./assets/data/nsi/logos/eugenewaterandelectricboard-53c7cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-53c7cc.jpg", "osmTags": { "and": [ "power=tower", @@ -423001,7 +423215,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-c44c9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-c44c9e.jpg", "osmTags": { "and": [ "frequency=60", @@ -423017,7 +423231,7 @@ }, { "question": "Eversource", - "icon": "./assets/data/nsi/logos/eversource-3b99a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eversource-3b99a1.png", "osmTags": { "and": [ "power=tower", @@ -423046,7 +423260,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-9e91b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-9e91b2.jpg", "osmTags": { "and": [ "power=tower", @@ -423061,7 +423275,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-46fdad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-46fdad.svg", "osmTags": { "and": [ "power=tower", @@ -423086,7 +423300,7 @@ }, { "question": "EVS", - "icon": "./assets/data/nsi/logos/evs-bfea7f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evs-bfea7f.png", "osmTags": { "and": [ "power=tower", @@ -423101,7 +423315,7 @@ }, { "question": "EWZ", - "icon": "./assets/data/nsi/logos/ewz-1670a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewz-1670a6.jpg", "osmTags": { "and": [ "power=tower", @@ -423116,7 +423330,7 @@ }, { "question": "Fagne", - "icon": "./assets/data/nsi/logos/fagne-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fagne-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -423131,7 +423345,7 @@ }, { "question": "Fayetteville Public Works Commission", - "icon": "./assets/data/nsi/logos/fayettevillepublicworkscommission-4b3bfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-4b3bfa.jpg", "osmTags": { "and": [ "power=tower", @@ -423161,7 +423375,7 @@ }, { "question": "Fingrid", - "icon": "./assets/data/nsi/logos/fingrid-010e24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fingrid-010e24.jpg", "osmTags": { "and": [ "power=tower", @@ -423176,7 +423390,7 @@ }, { "question": "FirstEnergy", - "icon": "./assets/data/nsi/logos/firstenergy-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstenergy-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -423191,7 +423405,7 @@ }, { "question": "Fjellnett", - "icon": "./assets/data/nsi/logos/fjellnett-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fjellnett-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -423248,7 +423462,7 @@ }, { "question": "Florida Power & Light", - "icon": "./assets/data/nsi/logos/floridapowerandlight-a2a8ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-a2a8ba.png", "osmTags": { "and": [ "power=tower", @@ -423300,7 +423514,7 @@ }, { "question": "FortisBC", - "icon": "./assets/data/nsi/logos/fortisbc-20cbd8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortisbc-20cbd8.png", "osmTags": { "and": [ "power=tower", @@ -423315,7 +423529,7 @@ }, { "question": "Fortum", - "icon": "./assets/data/nsi/logos/fortum-a16d72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortum-a16d72.jpg", "osmTags": { "and": [ "power=tower", @@ -423344,7 +423558,7 @@ }, { "question": "FS", - "icon": "./assets/data/nsi/logos/fs-4a8556.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fs-4a8556.jpg", "osmTags": { "and": [ "power=tower", @@ -423359,7 +423573,7 @@ }, { "question": "Furnas Centrais Elétricas", - "icon": "./assets/data/nsi/logos/furnascentraiseletricas-3ce1ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-3ce1ab.jpg", "osmTags": { "and": [ "power=tower", @@ -423374,7 +423588,7 @@ }, { "question": "Gainesville Regional Utilities", - "icon": "./assets/data/nsi/logos/gainesvilleregionalutilities-a2a8ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-a2a8ba.png", "osmTags": { "and": [ "power=tower", @@ -423483,7 +423697,7 @@ }, { "question": "Glades Electric Co-Op", - "icon": "./assets/data/nsi/logos/gladeselectriccoop-a2a8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-a2a8ba.jpg", "osmTags": { "and": [ "power=tower", @@ -423498,7 +423712,7 @@ }, { "question": "Glitre Nett", - "icon": "./assets/data/nsi/logos/glitrenett-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/glitrenett-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -423513,7 +423727,7 @@ }, { "question": "Golden Spread Electric Cooperative", - "icon": "./assets/data/nsi/logos/goldenspreadelectriccooperative-a67ac1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-a67ac1.jpg", "osmTags": { "and": [ "power=tower", @@ -423537,7 +423751,7 @@ }, { "question": "Grand River Dam Authority", - "icon": "./assets/data/nsi/logos/grandriverdamauthority-f05dd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-f05dd4.jpg", "osmTags": { "and": [ "power=tower", @@ -423568,7 +423782,7 @@ }, { "question": "Greeneville Energy Authority", - "icon": "./assets/data/nsi/logos/greenevilleenergyauthority-ef63dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-ef63dd.jpg", "osmTags": { "and": [ "power=tower", @@ -423583,7 +423797,7 @@ }, { "question": "Greenville Utilities Commission", - "icon": "./assets/data/nsi/logos/greenvilleutilitiescommission-4b3bfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-4b3bfa.jpg", "osmTags": { "and": [ "power=tower", @@ -423598,7 +423812,7 @@ }, { "question": "Groupe E", - "icon": "./assets/data/nsi/logos/groupee-1670a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupee-1670a6.jpg", "osmTags": { "and": [ "power=tower", @@ -423672,7 +423886,7 @@ }, { "question": "Harz Energie", - "icon": "./assets/data/nsi/logos/harzenergie-586af6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harzenergie-586af6.jpg", "osmTags": { "and": [ "power=tower", @@ -423687,7 +423901,7 @@ }, { "question": "Haugaland Kraft Nett", - "icon": "./assets/data/nsi/logos/haugalandkraftnett-c20ae5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-c20ae5.png", "osmTags": { "and": [ "power=tower", @@ -423702,7 +423916,7 @@ }, { "question": "Hawaiian Electric Company", - "icon": "./assets/data/nsi/logos/hawaiianelectriccompany-bc01c1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-bc01c1.jpg", "osmTags": { "and": [ "power=tower", @@ -423790,7 +424004,7 @@ }, { "question": "Huntsville Utilities", - "icon": "./assets/data/nsi/logos/huntsvilleutilities-9f0401.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-9f0401.jpg", "osmTags": { "and": [ "power=tower", @@ -423805,7 +424019,7 @@ }, { "question": "Hydro Energi", - "icon": "./assets/data/nsi/logos/hydroenergi-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroenergi-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -423834,7 +424048,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-e95ba8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-e95ba8.png", "osmTags": { "and": [ "power=tower", @@ -423867,7 +424081,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-9156cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-9156cf.jpg", "osmTags": { "and": [ "power=tower", @@ -423882,7 +424096,7 @@ }, { "question": "Idaho Power", - "icon": "./assets/data/nsi/logos/idahopower-597e0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahopower-597e0c.jpg", "osmTags": { "and": [ "power=tower", @@ -423897,7 +424111,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-9e91b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-9e91b2.png", "osmTags": { "and": [ "power=tower", @@ -423912,7 +424126,7 @@ }, { "question": "Imperial Irrigation District", - "icon": "./assets/data/nsi/logos/imperialirrigationdistrict-bc3f25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-bc3f25.jpg", "osmTags": { "and": [ "power=tower", @@ -423928,7 +424142,7 @@ }, { "question": "Independence Power & Light", - "icon": "./assets/data/nsi/logos/independencepowerandlight-8c097c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-8c097c.jpg", "osmTags": { "and": [ "power=tower", @@ -423943,7 +424157,7 @@ }, { "question": "Indiana Michigan Power", - "icon": "./assets/data/nsi/logos/indianamichiganpower-c664da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-c664da.png", "osmTags": { "and": [ "power=tower", @@ -423959,7 +424173,7 @@ }, { "question": "Indianapolis Power & Light", - "icon": "./assets/data/nsi/logos/indianapolispowerandlight-395972.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-395972.png", "osmTags": { "and": [ "power=tower", @@ -423989,7 +424203,7 @@ }, { "question": "Instituto Costarricense de Electricidad", - "icon": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-2f755a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-2f755a.jpg", "osmTags": { "and": [ "power=tower", @@ -424043,7 +424257,7 @@ }, { "question": "Invenergy", - "icon": "./assets/data/nsi/logos/invenergy-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invenergy-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -424058,7 +424272,7 @@ }, { "question": "IPTO", - "icon": "./assets/data/nsi/logos/ipto-05655c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipto-05655c.png", "osmTags": { "and": [ "power=tower", @@ -424082,7 +424296,7 @@ }, { "question": "ITAIPU Binacional", - "icon": "./assets/data/nsi/logos/itaipubinacional-dc71bc.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-dc71bc.svg", "osmTags": { "and": [ "power=tower", @@ -424097,7 +424311,7 @@ }, { "question": "ITC", - "icon": "./assets/data/nsi/logos/itc-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itc-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -424112,7 +424326,7 @@ }, { "question": "Jackson Energy Authority", - "icon": "./assets/data/nsi/logos/jacksonenergyauthority-ef63dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-ef63dd.jpg", "osmTags": { "and": [ "power=tower", @@ -424127,7 +424341,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-a5d5ed.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-a5d5ed.jpg", "osmTags": { "and": [ "power=tower", @@ -424143,7 +424357,7 @@ }, { "question": "Jersey Central Power and Light", - "icon": "./assets/data/nsi/logos/jerseycentralpowerandlight-6dc924.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-6dc924.jpg", "osmTags": { "and": [ "power=tower", @@ -424159,7 +424373,7 @@ }, { "question": "Joe Wheeler EMC", - "icon": "./assets/data/nsi/logos/joewheeleremc-9f0401.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-9f0401.jpg", "osmTags": { "and": [ "power=tower", @@ -424188,7 +424402,7 @@ }, { "question": "Jonesboro City Water and Light", - "icon": "./assets/data/nsi/logos/jonesborocitywaterandlight-fbadb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-fbadb0.jpg", "osmTags": { "and": [ "power=tower", @@ -424203,7 +424417,7 @@ }, { "question": "JR東日本", - "icon": "./assets/data/nsi/logos/eastjapanrailwaycompany-57f06a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-57f06a.png", "osmTags": { "and": [ "power=tower", @@ -424223,7 +424437,7 @@ }, { "question": "JR東海", - "icon": "./assets/data/nsi/logos/centraljapanrailwaycompany-57f06a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/centraljapanrailwaycompany-57f06a.svg", "osmTags": { "and": [ "power=tower", @@ -424266,7 +424480,7 @@ }, { "question": "Kansas City BPU", - "icon": "./assets/data/nsi/logos/kansascityboardofpublicutilities-f0bd87.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-f0bd87.png", "osmTags": { "and": [ "power=tower", @@ -424306,7 +424520,7 @@ }, { "question": "KELAG", - "icon": "./assets/data/nsi/logos/kelag-a632a6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kelag-a632a6.jpg", "osmTags": { "and": [ "power=tower", @@ -424321,7 +424535,7 @@ }, { "question": "Kentucky Power", - "icon": "./assets/data/nsi/logos/kentuckypower-17602a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckypower-17602a.png", "osmTags": { "and": [ "power=tower", @@ -424350,7 +424564,7 @@ }, { "question": "Kerala State Electricity Board", - "icon": "./assets/data/nsi/logos/keralastateelectricityboard-b0a0f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-b0a0f3.jpg", "osmTags": { "and": [ "power=tower", @@ -424394,7 +424608,7 @@ }, { "question": "Kissimmee Utility Authority", - "icon": "./assets/data/nsi/logos/kissimmeeutilityauthority-a2a8ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-a2a8ba.png", "osmTags": { "and": [ "power=tower", @@ -424409,7 +424623,7 @@ }, { "question": "Knoxville Utilities Board", - "icon": "./assets/data/nsi/logos/knoxvilleutilitiesboard-ef63dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-ef63dd.jpg", "osmTags": { "and": [ "power=tower", @@ -424453,7 +424667,7 @@ }, { "question": "Kystnett", - "icon": "./assets/data/nsi/logos/kystnett-c20ae5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kystnett-c20ae5.jpg", "osmTags": { "and": [ "power=tower", @@ -424468,7 +424682,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-bc3f25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-bc3f25.png", "osmTags": { "and": [ "power=tower", @@ -424484,7 +424698,7 @@ }, { "question": "Lafayette Utilities System", - "icon": "./assets/data/nsi/logos/lafayetteutilitiessystem-7b80e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-7b80e6.jpg", "osmTags": { "and": [ "power=tower", @@ -424537,7 +424751,7 @@ }, { "question": "LCEC", - "icon": "./assets/data/nsi/logos/leecountyelectriccooperative-a2a8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-a2a8ba.jpg", "osmTags": { "and": [ "power=tower", @@ -424553,7 +424767,7 @@ }, { "question": "LEAG", - "icon": "./assets/data/nsi/logos/leag-586af6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/leag-586af6.svg", "osmTags": { "and": [ "power=tower", @@ -424568,7 +424782,7 @@ }, { "question": "Lechwerke", - "icon": "./assets/data/nsi/logos/lechwerke-a4bad4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechwerke-a4bad4.jpg", "osmTags": { "and": [ "power=tower", @@ -424607,7 +424821,7 @@ }, { "question": "Liander", - "icon": "./assets/data/nsi/logos/liander-858998.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liander-858998.png", "osmTags": { "and": [ "power=tower", @@ -424669,7 +424883,7 @@ }, { "question": "Lincoln Electric System", - "icon": "./assets/data/nsi/logos/lincolnelectricsystem-5529f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-5529f3.png", "osmTags": { "and": [ "power=tower", @@ -424693,7 +424907,7 @@ }, { "question": "Linja", - "icon": "./assets/data/nsi/logos/linja-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/linja-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -424708,7 +424922,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-e85d67.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-e85d67.jpg", "osmTags": { "and": [ "power=tower", @@ -424737,7 +424951,7 @@ }, { "question": "Lockhart Power Company", - "icon": "./assets/data/nsi/logos/lockhartpowercompany-d82b92.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lockhartpowercompany-d82b92.png", "osmTags": { "and": [ "power=tower", @@ -424789,7 +425003,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-a67ac1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-a67ac1.png", "osmTags": { "and": [ "power=tower", @@ -424819,7 +425033,7 @@ }, { "question": "LSW Netz", - "icon": "./assets/data/nsi/logos/lswnetz-9a0609.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswnetz-9a0609.png", "osmTags": { "and": [ "power=tower", @@ -424834,7 +425048,7 @@ }, { "question": "Lubbock Power & Light", - "icon": "./assets/data/nsi/logos/lubbockpowerandlight-a67ac1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-a67ac1.png", "osmTags": { "and": [ "power=tower", @@ -424873,7 +425087,7 @@ }, { "question": "Lyse", - "icon": "./assets/data/nsi/logos/lyse-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lyse-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -424888,7 +425102,7 @@ }, { "question": "Manitoba Hydro", - "icon": "./assets/data/nsi/logos/manitobahydro-0866fb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manitobahydro-0866fb.svg", "osmTags": { "and": [ "power=tower", @@ -424940,7 +425154,7 @@ }, { "question": "Mark-E", - "icon": "./assets/data/nsi/logos/marke-bfea7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marke-bfea7f.jpg", "osmTags": { "and": [ "power=tower", @@ -424955,7 +425169,7 @@ }, { "question": "Marshall Municipal Utilities", - "icon": "./assets/data/nsi/logos/marshallmunicipalutilities-02d934.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-02d934.jpg", "osmTags": { "and": [ "power=tower", @@ -424970,7 +425184,7 @@ }, { "question": "Marshall-DeKalb Electric Cooperative", - "icon": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-9f0401.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-9f0401.jpg", "osmTags": { "and": [ "power=tower", @@ -425013,7 +425227,7 @@ }, { "question": "MDU", - "icon": "./assets/data/nsi/logos/mdu-e052ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mdu-e052ca.jpg", "osmTags": { "and": [ "power=tower", @@ -425042,7 +425256,7 @@ }, { "question": "Memphis Light, Gas and Water", - "icon": "./assets/data/nsi/logos/memphislightgasandwater-ef63dd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-ef63dd.jpg", "osmTags": { "and": [ "power=tower", @@ -425058,7 +425272,7 @@ }, { "question": "Meralco", - "icon": "./assets/data/nsi/logos/meralco-d1f649.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meralco-d1f649.jpg", "osmTags": { "and": [ "power=tower", @@ -425073,7 +425287,7 @@ }, { "question": "Met-Ed", - "icon": "./assets/data/nsi/logos/meted-052d73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meted-052d73.jpg", "osmTags": { "and": [ "power=tower", @@ -425097,7 +425311,7 @@ }, { "question": "MidAmerican Energy", - "icon": "./assets/data/nsi/logos/midamericanenergy-60a5ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-60a5ba.jpg", "osmTags": { "and": [ "frequency=60", @@ -425127,7 +425341,7 @@ }, { "question": "Midwest Energy", - "icon": "./assets/data/nsi/logos/midwestenergy-f0bd87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midwestenergy-f0bd87.jpg", "osmTags": { "and": [ "power=tower", @@ -425174,7 +425388,7 @@ }, { "question": "Minnesota Valley Cooperative Light & Power Association", - "icon": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-02d934.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-02d934.jpg", "osmTags": { "and": [ "power=tower", @@ -425189,7 +425403,7 @@ }, { "question": "Minnkota Power Cooperative", - "icon": "./assets/data/nsi/logos/minnkotapowercooperative-5a1a5f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-5a1a5f.png", "osmTags": { "and": [ "power=tower", @@ -425218,7 +425432,7 @@ }, { "question": "Mississippi Power", - "icon": "./assets/data/nsi/logos/mississippipower-8f2428.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippipower-8f2428.png", "osmTags": { "and": [ "power=tower", @@ -425270,7 +425484,7 @@ }, { "question": "Mon Power", - "icon": "./assets/data/nsi/logos/monpower-d1056a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monpower-d1056a.jpg", "osmTags": { "and": [ "power=tower", @@ -425360,7 +425574,7 @@ }, { "question": "NamPower", - "icon": "./assets/data/nsi/logos/nampower-fcc6fb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nampower-fcc6fb.svg", "osmTags": { "and": [ "power=tower", @@ -425375,7 +425589,7 @@ }, { "question": "Nashville Electric Service", - "icon": "./assets/data/nsi/logos/nashvilleelectricservice-ef63dd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-ef63dd.png", "osmTags": { "and": [ "power=tower", @@ -425391,7 +425605,7 @@ }, { "question": "National Grid", - "icon": "./assets/data/nsi/logos/nationalgrid-f62dfe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgrid-f62dfe.png", "osmTags": { "and": [ "power=tower", @@ -425406,7 +425620,7 @@ }, { "question": "National Grid Corporation of the Philippines", - "icon": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-d1f649.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-d1f649.jpg", "osmTags": { "and": [ "power=tower", @@ -425422,7 +425636,7 @@ }, { "question": "National Grid Electricity Distribution", - "icon": "./assets/data/nsi/logos/nationalgridelectricitydistribution-b49d3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-b49d3c.jpg", "osmTags": { "and": [ "power=tower", @@ -425437,7 +425651,7 @@ }, { "question": "National Grid Electricity Transmission", - "icon": "./assets/data/nsi/logos/nationalgridelectricitytransmission-b49d3c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-b49d3c.svg", "osmTags": { "and": [ "power=tower", @@ -425452,7 +425666,7 @@ }, { "question": "NB Power", - "icon": "./assets/data/nsi/logos/nbpower-4e35ae.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbpower-4e35ae.svg", "osmTags": { "and": [ "power=tower", @@ -425497,7 +425711,7 @@ }, { "question": "Neoenergia", - "icon": "./assets/data/nsi/logos/neoenergia-3ce1ab.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoenergia-3ce1ab.svg", "osmTags": { "and": [ "power=tower", @@ -425540,7 +425754,7 @@ }, { "question": "Netz NÖ", - "icon": "./assets/data/nsi/logos/netzno-9e91b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzno-9e91b2.jpg", "osmTags": { "and": [ "power=tower", @@ -425569,7 +425783,7 @@ }, { "question": "Netze BW GmbH", - "icon": "./assets/data/nsi/logos/netzebwgmbh-69414f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-69414f.svg", "osmTags": { "and": [ "power=tower", @@ -425612,7 +425826,7 @@ }, { "question": "New York Power Authority", - "icon": "./assets/data/nsi/logos/newyorkpowerauthority-f597d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkpowerauthority-f597d1.jpg", "osmTags": { "and": [ "power=tower", @@ -425628,7 +425842,7 @@ }, { "question": "Newfoundland and Labrador Hydro", - "icon": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-ec628a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-ec628a.jpg", "osmTags": { "and": [ "power=tower", @@ -425643,7 +425857,7 @@ }, { "question": "Newfoundland Power", - "icon": "./assets/data/nsi/logos/newfoundlandpower-ec628a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-ec628a.png", "osmTags": { "and": [ "power=tower", @@ -425658,7 +425872,7 @@ }, { "question": "NextEra Energy", - "icon": "./assets/data/nsi/logos/nexteraenergy-e19a0c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-e19a0c.png", "osmTags": { "and": [ "power=tower", @@ -425687,7 +425901,7 @@ }, { "question": "NIE Networks", - "icon": "./assets/data/nsi/logos/nienetworks-2f5bde.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nienetworks-2f5bde.jpg", "osmTags": { "and": [ "power=tower", @@ -425796,7 +426010,7 @@ }, { "question": "Northern Powergrid", - "icon": "./assets/data/nsi/logos/northernpowergrid-b49d3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-b49d3c.jpg", "osmTags": { "and": [ "power=tower", @@ -425825,7 +426039,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-6d72ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-6d72ab.jpg", "osmTags": { "and": [ "power=tower", @@ -425840,7 +426054,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-5507cb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-5507cb.jpg", "osmTags": { "and": [ "power=tower", @@ -425869,7 +426083,7 @@ }, { "question": "NTE Nett", - "icon": "./assets/data/nsi/logos/ntenett-c20ae5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ntenett-c20ae5.png", "osmTags": { "and": [ "power=tower", @@ -425884,7 +426098,7 @@ }, { "question": "NV Energy", - "icon": "./assets/data/nsi/logos/nvenergy-5524d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nvenergy-5524d0.png", "osmTags": { "and": [ "power=tower", @@ -425899,7 +426113,7 @@ }, { "question": "NW Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/nwelectricpowercooperative-8c097c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-8c097c.jpg", "osmTags": { "and": [ "power=tower", @@ -425914,7 +426128,7 @@ }, { "question": "NYSEG", - "icon": "./assets/data/nsi/logos/nyseg-f597d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nyseg-f597d1.jpg", "osmTags": { "and": [ "power=tower", @@ -425967,7 +426181,7 @@ }, { "question": "Oklahoma Gas & Electric", - "icon": "./assets/data/nsi/logos/oklahomagasandelectric-f05dd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-f05dd4.jpg", "osmTags": { "and": [ "power=tower", @@ -425983,7 +426197,7 @@ }, { "question": "Omaha Public Power District", - "icon": "./assets/data/nsi/logos/omahapublicpowerdistrict-5529f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-5529f3.png", "osmTags": { "and": [ "power=tower", @@ -425998,7 +426212,7 @@ }, { "question": "Oncor", - "icon": "./assets/data/nsi/logos/oncor-a67ac1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oncor-a67ac1.jpg", "osmTags": { "and": [ "power=tower", @@ -426036,7 +426250,7 @@ }, { "question": "Orion New Zealand", - "icon": "./assets/data/nsi/logos/orionnewzealand-9a0f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-9a0f48.jpg", "osmTags": { "and": [ "power=tower", @@ -426051,7 +426265,7 @@ }, { "question": "Orlando Utilities Commission", - "icon": "./assets/data/nsi/logos/orlandoutilitiescommission-a2a8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-a2a8ba.jpg", "osmTags": { "and": [ "power=tower", @@ -426085,7 +426299,7 @@ }, { "question": "Otter Tail Power Company", - "icon": "./assets/data/nsi/logos/ottertailpowercompany-435ecb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-435ecb.jpg", "osmTags": { "and": [ "power=tower", @@ -426114,7 +426328,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-bc3f25.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-bc3f25.png", "osmTags": { "and": [ "power=tower", @@ -426130,7 +426344,7 @@ }, { "question": "Pacific Power", - "icon": "./assets/data/nsi/logos/pacificpower-410860.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificpower-410860.svg", "osmTags": { "and": [ "power=tower", @@ -426145,7 +426359,7 @@ }, { "question": "PacifiCorp", - "icon": "./assets/data/nsi/logos/pacificorp-bdcff1.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificorp-bdcff1.svg", "osmTags": { "and": [ "power=tower", @@ -426196,7 +426410,7 @@ }, { "question": "PEA", - "icon": "./assets/data/nsi/logos/pea-27f90a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pea-27f90a.jpg", "osmTags": { "and": [ "power=tower", @@ -426211,7 +426425,7 @@ }, { "question": "PECO", - "icon": "./assets/data/nsi/logos/peco-8ebb48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peco-8ebb48.jpg", "osmTags": { "and": [ "power=tower", @@ -426226,7 +426440,7 @@ }, { "question": "Peiner Träger GmbH", - "icon": "./assets/data/nsi/logos/peinertragergmbh-9a0609.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/peinertragergmbh-9a0609.svg", "osmTags": { "and": [ "power=tower", @@ -426241,7 +426455,7 @@ }, { "question": "Penelec", - "icon": "./assets/data/nsi/logos/penelec-052d73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penelec-052d73.jpg", "osmTags": { "and": [ "power=tower", @@ -426271,7 +426485,7 @@ }, { "question": "Perusahaan Listrik Negara", - "icon": "./assets/data/nsi/logos/perusahaanlistriknegara-1697d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-1697d1.jpg", "osmTags": { "and": [ "power=tower", @@ -426287,7 +426501,7 @@ }, { "question": "Petrobras", - "icon": "./assets/data/nsi/logos/petrobras-3ce1ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/petrobras-3ce1ab.png", "osmTags": { "and": [ "power=tower", @@ -426302,7 +426516,7 @@ }, { "question": "Pfalzwerke AG", - "icon": "./assets/data/nsi/logos/pfalzwerkeag-33a850.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-33a850.png", "osmTags": { "and": [ "power=tower", @@ -426317,7 +426531,7 @@ }, { "question": "PGE Dystrybucja", - "icon": "./assets/data/nsi/logos/pgedystrybucja-983018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-983018.jpg", "osmTags": { "and": [ "power=tower", @@ -426332,7 +426546,7 @@ }, { "question": "PGE Energetyka Kolejowa", - "icon": "./assets/data/nsi/logos/pgeenergetykakolejowa-983018.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-983018.jpg", "osmTags": { "and": [ "power=tower", @@ -426347,7 +426561,7 @@ }, { "question": "PJM", - "icon": "./assets/data/nsi/logos/pjm-6dc924.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pjm-6dc924.jpg", "osmTags": { "and": [ "power=tower", @@ -426385,7 +426599,7 @@ }, { "question": "PNM", - "icon": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-b4f0f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-b4f0f3.jpg", "osmTags": { "and": [ "power=tower", @@ -426401,7 +426615,7 @@ }, { "question": "Polskie Sieci Elektroenergetyczne", - "icon": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-2ca0f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-2ca0f6.png", "osmTags": { "and": [ "power=tower", @@ -426417,7 +426631,7 @@ }, { "question": "Portland General Electric", - "icon": "./assets/data/nsi/logos/portlandgeneralelectric-53c7cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-53c7cc.png", "osmTags": { "and": [ "power=tower", @@ -426442,7 +426656,7 @@ }, { "question": "Potomac Edison", - "icon": "./assets/data/nsi/logos/potomacedison-c9580d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacedison-c9580d.jpg", "osmTags": { "and": [ "power=tower", @@ -426457,7 +426671,7 @@ }, { "question": "Potomac Electric Power Company", - "icon": "./assets/data/nsi/logos/potomacelectricpowercompany-86668f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-86668f.jpg", "osmTags": { "and": [ "power=tower", @@ -426473,7 +426687,7 @@ }, { "question": "Power Grid Corporation of India Ltd", - "icon": "./assets/data/nsi/logos/powergridcorporationofindialtd-b0a0f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-b0a0f3.jpg", "osmTags": { "and": [ "power=tower", @@ -426488,7 +426702,7 @@ }, { "question": "Powerco", - "icon": "./assets/data/nsi/logos/powerco-9a0f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerco-9a0f48.jpg", "osmTags": { "and": [ "power=tower", @@ -426503,7 +426717,7 @@ }, { "question": "Powercor", - "icon": "./assets/data/nsi/logos/powercor-1f9868.png", + "icon": "https://data.mapcomplete.org/nsi//logos/powercor-1f9868.png", "osmTags": { "and": [ "power=tower", @@ -426518,7 +426732,7 @@ }, { "question": "Powerlink", - "icon": "./assets/data/nsi/logos/powerlink-7b2d4e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerlink-7b2d4e.jpg", "osmTags": { "and": [ "power=tower", @@ -426548,7 +426762,7 @@ }, { "question": "PPL", - "icon": "./assets/data/nsi/logos/ppl-ce395d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ppl-ce395d.jpg", "osmTags": { "and": [ "power=tower", @@ -426563,7 +426777,7 @@ }, { "question": "PRE", - "icon": "./assets/data/nsi/logos/pre-814054.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pre-814054.jpg", "osmTags": { "and": [ "power=tower", @@ -426578,7 +426792,7 @@ }, { "question": "Premier Energy (Moldova)", - "icon": "./assets/data/nsi/logos/premierenergy-30be6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/premierenergy-30be6b.jpg", "osmTags": { "and": [ "power=tower", @@ -426621,7 +426835,7 @@ }, { "question": "PSO", - "icon": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-df4988.png", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-df4988.png", "osmTags": { "and": [ "power=tower", @@ -426651,7 +426865,7 @@ }, { "question": "Public Service Enterprise Group", - "icon": "./assets/data/nsi/logos/publicserviceenterprisegroup-f244e7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-f244e7.jpg", "osmTags": { "and": [ "power=tower", @@ -426666,7 +426880,7 @@ }, { "question": "Puerto Rico Electric Power Authority", - "icon": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-a167d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-a167d5.jpg", "osmTags": { "and": [ "power=tower", @@ -426682,7 +426896,7 @@ }, { "question": "Puget Sound Energy", - "icon": "./assets/data/nsi/logos/pugetsoundenergy-60887c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-60887c.jpg", "osmTags": { "and": [ "power=tower", @@ -426698,7 +426912,7 @@ }, { "question": "Radius Elnet", - "icon": "./assets/data/nsi/logos/radiuselnet-30d808.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radiuselnet-30d808.jpg", "osmTags": { "and": [ "power=tower", @@ -426713,7 +426927,7 @@ }, { "question": "Rappahannock Electric Cooperative", - "icon": "./assets/data/nsi/logos/rappahannockelectriccooperative-1ba2af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-1ba2af.jpg", "osmTags": { "and": [ "power=tower", @@ -426728,7 +426942,7 @@ }, { "question": "Red Eléctrica de España", - "icon": "./assets/data/nsi/logos/redelectricadeespana-69d425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-69d425.jpg", "osmTags": { "and": [ "power=tower", @@ -426753,7 +426967,7 @@ }, { "question": "Reedy Creek Improvement District", - "icon": "./assets/data/nsi/logos/reedycreekimprovementdistrict-a2a8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/reedycreekimprovementdistrict-a2a8ba.jpg", "osmTags": { "and": [ "power=tower", @@ -426768,7 +426982,7 @@ }, { "question": "REN", - "icon": "./assets/data/nsi/logos/ren-331927.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ren-331927.svg", "osmTags": { "and": [ "power=tower", @@ -426797,7 +427011,7 @@ }, { "question": "Resolute Forest Products", - "icon": "./assets/data/nsi/logos/resoluteforestproducts-e95ba8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/resoluteforestproducts-e95ba8.jpg", "osmTags": { "and": [ "power=tower", @@ -426812,7 +427026,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-4a8556.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-4a8556.svg", "osmTags": { "and": [ "power=tower", @@ -426827,7 +427041,7 @@ }, { "question": "Rhode Island Energy", - "icon": "./assets/data/nsi/logos/rhodeislandenergy-c4d194.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-c4d194.jpg", "osmTags": { "and": [ "power=tower", @@ -426842,7 +427056,7 @@ }, { "question": "Rio Grande Energia", - "icon": "./assets/data/nsi/logos/riograndeenergia-3ce1ab.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-3ce1ab.png", "osmTags": { "and": [ "power=tower", @@ -426857,7 +427071,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-741701.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-741701.svg", "osmTags": { "and": [ "power=tower", @@ -426881,7 +427095,7 @@ }, { "question": "Rochester Gas & Electric", - "icon": "./assets/data/nsi/logos/rochestergasandelectric-f597d1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-f597d1.jpg", "osmTags": { "and": [ "power=tower", @@ -426896,7 +427110,7 @@ }, { "question": "Rocky Mountain Power", - "icon": "./assets/data/nsi/logos/rockymountainpower-abd620.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-abd620.svg", "osmTags": { "and": [ "power=tower", @@ -426911,7 +427125,7 @@ }, { "question": "Romande Energie", - "icon": "./assets/data/nsi/logos/romandeenergie-15be37.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/romandeenergie-15be37.jpg", "osmTags": { "and": [ "power=tower", @@ -426926,7 +427140,7 @@ }, { "question": "Roseville Electric", - "icon": "./assets/data/nsi/logos/rosevilleelectric-bc3f25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-bc3f25.jpg", "osmTags": { "and": [ "power=tower", @@ -426941,7 +427155,7 @@ }, { "question": "RTE", - "icon": "./assets/data/nsi/logos/rte-06d365.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rte-06d365.png", "osmTags": { "and": [ "power=tower", @@ -426971,7 +427185,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-df4479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-df4479.jpg", "osmTags": { "and": [ "power=tower", @@ -427001,7 +427215,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-7d3d19.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-7d3d19.png", "osmTags": { "and": [ "power=tower", @@ -427016,7 +427230,7 @@ }, { "question": "Sacramento Municipal Utility District", - "icon": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-bc3f25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-bc3f25.jpg", "osmTags": { "and": [ "power=tower", @@ -427032,7 +427246,7 @@ }, { "question": "Sadales tīkls", - "icon": "./assets/data/nsi/logos/sadalestikls-ea2dda.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sadalestikls-ea2dda.jpg", "osmTags": { "and": [ "power=tower", @@ -427047,7 +427261,7 @@ }, { "question": "Salt River Project", - "icon": "./assets/data/nsi/logos/saltriverproject-fa3ca4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saltriverproject-fa3ca4.png", "osmTags": { "and": [ "power=tower", @@ -427063,7 +427277,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-f0df32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-f0df32.jpg", "osmTags": { "and": [ "power=tower", @@ -427087,7 +427301,7 @@ }, { "question": "San Diego Gas & Electric", - "icon": "./assets/data/nsi/logos/sandiegogasandelectric-5bf02a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-5bf02a.jpg", "osmTags": { "and": [ "power=tower", @@ -427103,7 +427317,7 @@ }, { "question": "SaskPower", - "icon": "./assets/data/nsi/logos/saskpower-c3753d.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saskpower-c3753d.svg", "osmTags": { "and": [ "power=tower", @@ -427118,7 +427332,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-1670a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-1670a6.png", "osmTags": { "and": [ "power=tower", @@ -427133,7 +427347,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-573184.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-573184.svg", "osmTags": { "and": [ "power=tower", @@ -427162,7 +427376,7 @@ }, { "question": "Scottish and Southern Electricity Networks (SSEN)", - "icon": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-0a478d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-0a478d.jpg", "osmTags": { "and": [ "power=tower", @@ -427187,7 +427401,7 @@ }, { "question": "Seattle City Light", - "icon": "./assets/data/nsi/logos/seattlecitylight-60887c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/seattlecitylight-60887c.png", "osmTags": { "and": [ "power=tower", @@ -427203,7 +427417,7 @@ }, { "question": "Seminole Electric Cooperative", - "icon": "./assets/data/nsi/logos/seminoleelectriccooperative-a2a8ba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/seminoleelectriccooperative-a2a8ba.jpg", "osmTags": { "and": [ "power=tower", @@ -427218,7 +427432,7 @@ }, { "question": "Senelec", - "icon": "./assets/data/nsi/logos/senelec-bd6fe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senelec-bd6fe7.jpg", "osmTags": { "and": [ "power=tower", @@ -427279,7 +427493,7 @@ }, { "question": "SIG", - "icon": "./assets/data/nsi/logos/sig-c495cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sig-c495cc.jpg", "osmTags": { "and": [ "power=tower", @@ -427308,7 +427522,7 @@ }, { "question": "SLEMCO", - "icon": "./assets/data/nsi/logos/slemco-7b80e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slemco-7b80e6.jpg", "osmTags": { "and": [ "power=tower", @@ -427323,7 +427537,7 @@ }, { "question": "Slovenská elektrizačná prenosová sústava", - "icon": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-9271f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-9271f5.jpg", "osmTags": { "and": [ "power=tower", @@ -427339,7 +427553,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-06d365.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-06d365.png", "osmTags": { "and": [ "power=tower", @@ -427354,7 +427568,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-06d365.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-06d365.png", "osmTags": { "and": [ "power=tower", @@ -427378,7 +427592,7 @@ }, { "question": "Societe Beninoise d'Energie Electrique", - "icon": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-b975a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-b975a8.jpg", "osmTags": { "and": [ "power=tower", @@ -427394,7 +427608,7 @@ }, { "question": "Sogn og Fjordane Energi", - "icon": "./assets/data/nsi/logos/sognogfjordaneenergi-c20ae5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-c20ae5.jpg", "osmTags": { "and": [ "power=tower", @@ -427433,7 +427647,7 @@ }, { "question": "Southern California Edison", - "icon": "./assets/data/nsi/logos/southerncaliforniaedison-bc3f25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-bc3f25.jpg", "osmTags": { "and": [ "power=tower", @@ -427464,7 +427678,7 @@ }, { "question": "Southwest Arkansas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-fbadb0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-fbadb0.jpg", "osmTags": { "and": [ "power=tower", @@ -427516,7 +427730,7 @@ }, { "question": "SP Energy Networks", - "icon": "./assets/data/nsi/logos/spenergynetworks-0a478d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-0a478d.jpg", "osmTags": { "and": [ "power=tower", @@ -427545,7 +427759,7 @@ }, { "question": "Springfield Utility Board", - "icon": "./assets/data/nsi/logos/springfieldutilityboard-53c7cc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-53c7cc.jpg", "osmTags": { "and": [ "power=tower", @@ -427589,7 +427803,7 @@ }, { "question": "SSEN Transmission", - "icon": "./assets/data/nsi/logos/ssentransmission-63de3a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ssentransmission-63de3a.jpg", "osmTags": { "and": [ "power=tower", @@ -427604,7 +427818,7 @@ }, { "question": "Stadtwerke Düsseldorf", - "icon": "./assets/data/nsi/logos/stadtwerkedusseldorf-bfea7f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkedusseldorf-bfea7f.jpg", "osmTags": { "and": [ "power=tower", @@ -427619,7 +427833,7 @@ }, { "question": "Stadtwerke Leipzig", - "icon": "./assets/data/nsi/logos/stadtwerkeleipzig-7d3d19.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-7d3d19.jpg", "osmTags": { "and": [ "power=tower", @@ -427634,7 +427848,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-a4bad4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-a4bad4.jpg", "osmTags": { "and": [ "power=tower", @@ -427664,7 +427878,7 @@ }, { "question": "Statkraft", - "icon": "./assets/data/nsi/logos/statkraft-df4479.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statkraft-df4479.png", "osmTags": { "and": [ "power=tower", @@ -427679,7 +427893,7 @@ }, { "question": "Statnett", - "icon": "./assets/data/nsi/logos/statnett-c20ae5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statnett-c20ae5.png", "osmTags": { "and": [ "power=tower", @@ -427694,7 +427908,7 @@ }, { "question": "Stedin", - "icon": "./assets/data/nsi/logos/stedin-858998.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stedin-858998.png", "osmTags": { "and": [ "power=tower", @@ -427776,7 +427990,7 @@ }, { "question": "Stromnetz Berlin", - "icon": "./assets/data/nsi/logos/stromnetzberlin-40bb71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-40bb71.svg", "osmTags": { "and": [ "power=tower", @@ -427791,7 +428005,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-7db4f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-7db4f5.jpg", "osmTags": { "and": [ "power=tower", @@ -427833,7 +428047,7 @@ }, { "question": "Sunflower Electric Power Corporation", - "icon": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-f0bd87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-f0bd87.jpg", "osmTags": { "and": [ "power=tower", @@ -427848,7 +428062,7 @@ }, { "question": "Süwag Energie", - "icon": "./assets/data/nsi/logos/suwagenergie-50bb25.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwagenergie-50bb25.jpg", "osmTags": { "and": [ "power=tower", @@ -427863,7 +428077,7 @@ }, { "question": "Svenska Kraftnät", - "icon": "./assets/data/nsi/logos/svenskakraftnat-57ded1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-57ded1.png", "osmTags": { "and": [ "power=tower", @@ -427878,7 +428092,7 @@ }, { "question": "SWEPCO", - "icon": "./assets/data/nsi/logos/southwesternelectricpowercompany-0d5051.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-0d5051.jpg", "osmTags": { "and": [ "power=tower", @@ -427894,7 +428108,7 @@ }, { "question": "Swissgrid", - "icon": "./assets/data/nsi/logos/swissgrid-1670a6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swissgrid-1670a6.png", "osmTags": { "and": [ "power=tower", @@ -427909,7 +428123,7 @@ }, { "question": "Sygnir", - "icon": "./assets/data/nsi/logos/sygnir-c20ae5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sygnir-c20ae5.jpg", "osmTags": { "and": [ "power=tower", @@ -427966,7 +428180,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-983018.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-983018.png", "osmTags": { "and": [ "power=tower", @@ -427995,7 +428209,7 @@ }, { "question": "TEİAŞ", - "icon": "./assets/data/nsi/logos/teias-9b1ae4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teias-9b1ae4.jpg", "osmTags": { "and": [ "power=tower", @@ -428010,7 +428224,7 @@ }, { "question": "Tenaga Nasional", - "icon": "./assets/data/nsi/logos/tenaganasional-da9bd2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tenaganasional-da9bd2.png", "osmTags": { "and": [ "power=tower", @@ -428025,7 +428239,7 @@ }, { "question": "Tennessee Valley Authority", - "icon": "./assets/data/nsi/logos/tennesseevalleyauthority-bdcff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-bdcff1.png", "osmTags": { "and": [ "power=tower", @@ -428041,7 +428255,7 @@ }, { "question": "TenneT", - "icon": "./assets/data/nsi/logos/tennet-858998.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennet-858998.jpg", "osmTags": { "and": [ "power=tower", @@ -428056,7 +428270,7 @@ }, { "question": "TenneT TSO", - "icon": "./assets/data/nsi/logos/tennettso-85a108.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennettso-85a108.jpg", "osmTags": { "and": [ "power=tower", @@ -428071,7 +428285,7 @@ }, { "question": "Tensio", - "icon": "./assets/data/nsi/logos/tensio-c20ae5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tensio-c20ae5.jpg", "osmTags": { "and": [ "power=tower", @@ -428114,7 +428328,7 @@ }, { "question": "Terna", - "icon": "./assets/data/nsi/logos/terna-0f2e54.png", + "icon": "https://data.mapcomplete.org/nsi//logos/terna-0f2e54.png", "osmTags": { "and": [ "power=tower", @@ -428138,7 +428352,7 @@ }, { "question": "Texas-New Mexico Power", - "icon": "./assets/data/nsi/logos/texasnewmexicopower-a67ac1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-a67ac1.png", "osmTags": { "and": [ "power=tower", @@ -428169,7 +428383,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-9e91b2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-9e91b2.svg", "osmTags": { "and": [ "power=tower", @@ -428216,7 +428430,7 @@ }, { "question": "Transcomahue S.A.", - "icon": "./assets/data/nsi/logos/transcomahuesa-54b22a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transcomahuesa-54b22a.png", "osmTags": { "and": [ "power=tower", @@ -428254,7 +428468,7 @@ }, { "question": "Transener", - "icon": "./assets/data/nsi/logos/transener-a8b1df.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transener-a8b1df.png", "osmTags": { "and": [ "power=tower", @@ -428269,7 +428483,7 @@ }, { "question": "TransGrid", - "icon": "./assets/data/nsi/logos/transgrid-1b8b00.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transgrid-1b8b00.png", "osmTags": { "and": [ "power=tower", @@ -428298,7 +428512,7 @@ }, { "question": "Transmission Company of Nigeria", - "icon": "./assets/data/nsi/logos/transmissioncompanyofnigeria-390765.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-390765.jpg", "osmTags": { "and": [ "power=tower", @@ -428350,7 +428564,7 @@ }, { "question": "TransnetBW GmbH", - "icon": "./assets/data/nsi/logos/transnetbwgmbh-69414f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-69414f.svg", "osmTags": { "and": [ "power=tower", @@ -428388,7 +428602,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-1b8b00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-1b8b00.jpg", "osmTags": { "and": [ "power=tower", @@ -428403,7 +428617,7 @@ }, { "question": "Transpower New Zealand", - "icon": "./assets/data/nsi/logos/transpowernewzealand-9a0f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-9a0f48.jpg", "osmTags": { "and": [ "power=tower", @@ -428418,7 +428632,7 @@ }, { "question": "TREDAŞ", - "icon": "./assets/data/nsi/logos/tredas-9b1ae4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredas-9b1ae4.jpg", "osmTags": { "and": [ "power=tower", @@ -428451,7 +428665,7 @@ }, { "question": "Tucson Electric Power", - "icon": "./assets/data/nsi/logos/tucsonelectricpower-fa3ca4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-fa3ca4.jpg", "osmTags": { "and": [ "power=tower", @@ -428476,7 +428690,7 @@ }, { "question": "UGI", - "icon": "./assets/data/nsi/logos/ugi-052d73.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ugi-052d73.png", "osmTags": { "and": [ "power=tower", @@ -428491,7 +428705,7 @@ }, { "question": "UK Power Networks", - "icon": "./assets/data/nsi/logos/ukpowernetworks-b49d3c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-b49d3c.jpg", "osmTags": { "and": [ "power=tower", @@ -428530,7 +428744,7 @@ }, { "question": "Uniper Kraftwerke", - "icon": "./assets/data/nsi/logos/uniperkraftwerke-586af6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uniperkraftwerke-586af6.png", "osmTags": { "and": [ "power=tower", @@ -428545,7 +428759,7 @@ }, { "question": "United Illuminating Company", - "icon": "./assets/data/nsi/logos/unitedilluminatingcompany-311ea4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-311ea4.jpg", "osmTags": { "and": [ "power=tower", @@ -428560,7 +428774,7 @@ }, { "question": "United States Steel", - "icon": "./assets/data/nsi/logos/unitedstatessteel-9f0401.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-9f0401.svg", "osmTags": { "and": [ "power=tower", @@ -428575,7 +428789,7 @@ }, { "question": "Unitil", - "icon": "./assets/data/nsi/logos/unitil-4ad8ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitil-4ad8ba.png", "osmTags": { "and": [ "power=tower", @@ -428605,7 +428819,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-970753.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-970753.svg", "osmTags": { "and": [ "power=tower", @@ -428620,7 +428834,7 @@ }, { "question": "Vale S.A.", - "icon": "./assets/data/nsi/logos/valesa-3ce1ab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valesa-3ce1ab.jpg", "osmTags": { "and": [ "power=tower", @@ -428644,7 +428858,7 @@ }, { "question": "Vattenfall", - "icon": "./assets/data/nsi/logos/vattenfall-892a1b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-892a1b.png", "osmTags": { "and": [ "power=tower", @@ -428659,7 +428873,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-586af6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-586af6.png", "osmTags": { "and": [ "power=tower", @@ -428674,7 +428888,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-9a0f48.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-9a0f48.png", "osmTags": { "and": [ "power=tower", @@ -428689,7 +428903,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-9e91b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-9e91b2.jpg", "osmTags": { "and": [ "power=tower", @@ -428704,7 +428918,7 @@ }, { "question": "Vermont Electric Power Company", - "icon": "./assets/data/nsi/logos/vermontelectricpowercompany-e6e703.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-e6e703.jpg", "osmTags": { "and": [ "power=tower", @@ -428733,7 +428947,7 @@ }, { "question": "Versant Power", - "icon": "./assets/data/nsi/logos/versantpower-c6deed.png", + "icon": "https://data.mapcomplete.org/nsi//logos/versantpower-c6deed.png", "osmTags": { "and": [ "power=tower", @@ -428762,7 +428976,7 @@ }, { "question": "Vestall", - "icon": "./assets/data/nsi/logos/vestall-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vestall-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -428777,7 +428991,7 @@ }, { "question": "Vevig", - "icon": "./assets/data/nsi/logos/vevig-c20ae5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vevig-c20ae5.png", "osmTags": { "and": [ "power=tower", @@ -428792,7 +429006,7 @@ }, { "question": "Viesgo Distribución Eléctrica", - "icon": "./assets/data/nsi/logos/viesgodistribucionelectrica-69d425.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-69d425.png", "osmTags": { "and": [ "power=tower", @@ -428821,7 +429035,7 @@ }, { "question": "Visayan Electric", - "icon": "./assets/data/nsi/logos/visayanelectric-d1f649.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visayanelectric-d1f649.jpg", "osmTags": { "and": [ "power=tower", @@ -428836,7 +429050,7 @@ }, { "question": "Vissi", - "icon": "./assets/data/nsi/logos/vissi-c20ae5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vissi-c20ae5.svg", "osmTags": { "and": [ "power=tower", @@ -428893,7 +429107,7 @@ }, { "question": "Východoslovenská distribučná", - "icon": "./assets/data/nsi/logos/vychodoslovenskadistribucna-9271f5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-9271f5.png", "osmTags": { "and": [ "power=tower", @@ -428909,7 +429123,7 @@ }, { "question": "Washington-St. Tammany Electric Cooperative", - "icon": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-7b80e6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-7b80e6.jpg", "osmTags": { "and": [ "power=tower", @@ -428933,7 +429147,7 @@ }, { "question": "WEMAG Netz GmbH", - "icon": "./assets/data/nsi/logos/wemagnetzgmbh-89cf7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wemagnetzgmbh-89cf7c.png", "osmTags": { "and": [ "power=tower", @@ -428971,7 +429185,7 @@ }, { "question": "West Penn Power", - "icon": "./assets/data/nsi/logos/westpennpower-ebbe72.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westpennpower-ebbe72.jpg", "osmTags": { "and": [ "power=tower", @@ -428986,7 +429200,7 @@ }, { "question": "Western Area Power Administration", - "icon": "./assets/data/nsi/logos/westernareapoweradministration-bdcff1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-bdcff1.png", "osmTags": { "and": [ "power=tower", @@ -429002,7 +429216,7 @@ }, { "question": "Westfalen Weser Netz", - "icon": "./assets/data/nsi/logos/westfalenwesernetz-d92498.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/westfalenwesernetz-d92498.svg", "osmTags": { "and": [ "power=tower", @@ -429018,7 +429232,7 @@ }, { "question": "Westnetz", - "icon": "./assets/data/nsi/logos/westnetz-586af6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westnetz-586af6.png", "osmTags": { "and": [ "power=tower", @@ -429033,7 +429247,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-9e91b2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-9e91b2.jpg", "osmTags": { "and": [ "power=tower", @@ -429048,7 +429262,7 @@ }, { "question": "Wiener Netze", - "icon": "./assets/data/nsi/logos/wienernetze-9e91b2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienernetze-9e91b2.png", "osmTags": { "and": [ "power=tower", @@ -429100,7 +429314,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-bdcff1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-bdcff1.jpg", "osmTags": { "and": [ "power=tower", @@ -429115,7 +429329,7 @@ }, { "question": "Yacimientos de Litio Bolivianos", - "icon": "./assets/data/nsi/logos/yacimientosdelitiobolivianos-c229b9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/yacimientosdelitiobolivianos-c229b9.svg", "osmTags": { "and": [ "power=tower", @@ -429130,7 +429344,7 @@ }, { "question": "ΔΕΗ", - "icon": "./assets/data/nsi/logos/788cf3-05655c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/788cf3-05655c.jpg", "osmTags": { "and": [ "power=tower", @@ -429190,7 +429404,7 @@ }, { "question": "АТ Прикарпаттяобленерго", - "icon": "./assets/data/nsi/logos/7c17ff-ff50a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/7c17ff-ff50a8.jpg", "osmTags": { "and": [ "power=tower", @@ -429205,7 +429419,7 @@ }, { "question": "АТ Хмельницькобленерго", - "icon": "./assets/data/nsi/logos/f36860-ff50a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/f36860-ff50a8.jpg", "osmTags": { "and": [ "power=tower", @@ -429220,7 +429434,7 @@ }, { "question": "Вінницяобленерго", - "icon": "./assets/data/nsi/logos/084a1e-ff50a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/084a1e-ff50a8.jpg", "osmTags": { "and": [ "power=tower", @@ -429235,7 +429449,7 @@ }, { "question": "Волиньобленерго", - "icon": "./assets/data/nsi/logos/cc48e9-ff50a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cc48e9-ff50a8.jpg", "osmTags": { "and": [ "power=tower", @@ -429301,7 +429515,7 @@ }, { "question": "Запоріжжяобленерго", - "icon": "./assets/data/nsi/logos/dd2584-ff50a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dd2584-ff50a8.jpg", "osmTags": { "and": [ "power=tower", @@ -429325,7 +429539,7 @@ }, { "question": "Київобленерго", - "icon": "./assets/data/nsi/logos/9e843b-ff50a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/9e843b-ff50a8.jpg", "osmTags": { "and": [ "power=tower", @@ -429516,7 +429730,7 @@ }, { "question": "Россети", - "icon": "./assets/data/nsi/logos/8fc412-588b2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/8fc412-588b2e.png", "osmTags": { "and": [ "power=tower", @@ -429531,7 +429745,7 @@ }, { "question": "Сахалинэнерго", - "icon": "./assets/data/nsi/logos/1fc076-588b2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/1fc076-588b2e.jpg", "osmTags": { "and": [ "power=tower", @@ -429569,7 +429783,7 @@ }, { "question": "Черкасиобленерго", - "icon": "./assets/data/nsi/logos/472734-ff50a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/472734-ff50a8.jpg", "osmTags": { "and": [ "power=tower", @@ -429584,7 +429798,7 @@ }, { "question": "الشركة التونسية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/tunisiancompanyofelectricityandgas-fa07c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tunisiancompanyofelectricityandgas-fa07c9.jpg", "osmTags": { "and": [ "power=tower", @@ -429610,7 +429824,7 @@ }, { "question": "الشركة الوطنية للكهرباء والغاز", - "icon": "./assets/data/nsi/logos/sonelgaz-ded989.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-ded989.jpg", "osmTags": { "and": [ "power=tower", @@ -429627,7 +429841,7 @@ }, { "question": "การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย", - "icon": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-27f90a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-27f90a.jpg", "osmTags": { "and": [ "power=tower", @@ -429686,7 +429900,7 @@ }, { "question": "中華電力有限公司 CLP Power Hong Kong Limited", - "icon": "./assets/data/nsi/logos/clppowerhongkonglimited-c1db1f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-c1db1f.png", "osmTags": { "and": [ "power=tower", @@ -429710,7 +429924,7 @@ }, { "question": "中部電力パワーグリッド", - "icon": "./assets/data/nsi/logos/chubuelectricpowergridcompany-57f06a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-57f06a.svg", "osmTags": { "and": [ "power=tower", @@ -429727,7 +429941,7 @@ }, { "question": "九州電力送配電", - "icon": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-57f06a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-57f06a.png", "osmTags": { "and": [ "power=tower", @@ -429744,7 +429958,7 @@ }, { "question": "北海道電力ネットワーク", - "icon": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-57f06a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-57f06a.png", "osmTags": { "and": [ "power=tower", @@ -429778,7 +429992,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/34ba0b-5c8f5d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/34ba0b-5c8f5d.jpg", "osmTags": { "and": [ "power=tower", @@ -429843,7 +430057,7 @@ }, { "question": "東京電力パワーグリッド", - "icon": "./assets/data/nsi/logos/tepcopowergrid-57f06a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-57f06a.svg", "osmTags": { "and": [ "power=tower", @@ -429876,7 +430090,7 @@ }, { "question": "沖縄電力", - "icon": "./assets/data/nsi/logos/okinawaelectricpowercompany-57f06a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-57f06a.jpg", "osmTags": { "and": [ "power=tower", @@ -429919,7 +430133,7 @@ }, { "question": "電源開発送変電ネットワーク", - "icon": "./assets/data/nsi/logos/jpowertransmissionnetwork-57f06a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/jpowertransmissionnetwork-57f06a.svg", "osmTags": { "and": [ "power=tower", @@ -429936,7 +430150,7 @@ }, { "question": "香港電燈有限公司 The Hongkong Electric Company, Limited", - "icon": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-c1db1f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-c1db1f.jpg", "osmTags": { "and": [ "power=tower", @@ -429969,7 +430183,7 @@ }, { "question": "50Hertz Transmission", - "icon": "./assets/data/nsi/logos/50hertztransmission-e097a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-e097a8.svg", "osmTags": { "and": [ "power=transformer", @@ -430002,7 +430216,7 @@ }, { "question": "A2A", - "icon": "./assets/data/nsi/logos/a2a-713962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a2a-713962.jpg", "osmTags": { "and": [ "power=transformer", @@ -430017,7 +430231,7 @@ }, { "question": "Acea Distribuzione", - "icon": "./assets/data/nsi/logos/aceadistribuzione-713962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/aceadistribuzione-713962.jpg", "osmTags": { "and": [ "power=transformer", @@ -430032,7 +430246,7 @@ }, { "question": "Adif", - "icon": "./assets/data/nsi/logos/adif-489479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adif-489479.jpg", "osmTags": { "and": [ "power=transformer", @@ -430056,7 +430270,7 @@ }, { "question": "AEP Ohio", - "icon": "./assets/data/nsi/logos/aepohio-2f96e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aepohio-2f96e1.png", "osmTags": { "and": [ "power=transformer", @@ -430071,7 +430285,7 @@ }, { "question": "AEP Texas", - "icon": "./assets/data/nsi/logos/aeptexas-70fbe7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aeptexas-70fbe7.png", "osmTags": { "and": [ "power=transformer", @@ -430086,7 +430300,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-43b659.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-43b659.png", "osmTags": { "and": [ "power=transformer", @@ -430101,7 +430315,7 @@ }, { "question": "AEW", - "icon": "./assets/data/nsi/logos/aew-5e4e63.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aew-5e4e63.png", "osmTags": { "and": [ "power=transformer", @@ -430116,7 +430330,7 @@ }, { "question": "Agder Energi", - "icon": "./assets/data/nsi/logos/agderenergi-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/agderenergi-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -430131,7 +430345,7 @@ }, { "question": "Alabama Power", - "icon": "./assets/data/nsi/logos/alabamapower-a5723a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamapower-a5723a.jpg", "osmTags": { "and": [ "power=transformer", @@ -430146,7 +430360,7 @@ }, { "question": "Albtal-Verkehrs-Gesellschaft mbH", - "icon": "./assets/data/nsi/logos/albtalverkehrsgesellschaftmbh-645c81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albtalverkehrsgesellschaftmbh-645c81.png", "osmTags": { "and": [ "power=transformer", @@ -430162,7 +430376,7 @@ }, { "question": "Albwerk", - "icon": "./assets/data/nsi/logos/albwerk-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/albwerk-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -430177,7 +430391,7 @@ }, { "question": "Allgäuer Überlandwerk", - "icon": "./assets/data/nsi/logos/allgaueruberlandwerk-99c86a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/allgaueruberlandwerk-99c86a.png", "osmTags": { "and": [ "power=transformer", @@ -430193,7 +430407,7 @@ }, { "question": "Alliant Energy", - "icon": "./assets/data/nsi/logos/alliantenergy-9a842a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alliantenergy-9a842a.png", "osmTags": { "and": [ "power=transformer", @@ -430208,7 +430422,7 @@ }, { "question": "Alpine Energy", - "icon": "./assets/data/nsi/logos/alpineenergy-a6e13b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alpineenergy-a6e13b.jpg", "osmTags": { "and": [ "power=transformer", @@ -430223,7 +430437,7 @@ }, { "question": "AltaLink", - "icon": "./assets/data/nsi/logos/altalink-8b0dc6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/altalink-8b0dc6.jpg", "osmTags": { "and": [ "power=transformer", @@ -430252,7 +430466,7 @@ }, { "question": "Ameren", - "icon": "./assets/data/nsi/logos/ameren-049175.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ameren-049175.png", "osmTags": { "and": [ "power=transformer", @@ -430281,7 +430495,7 @@ }, { "question": "American Electric Power", - "icon": "./assets/data/nsi/logos/americanelectricpower-9a842a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-9a842a.png", "osmTags": { "and": [ "power=transformer", @@ -430311,7 +430525,7 @@ }, { "question": "Amprion", - "icon": "./assets/data/nsi/logos/amprion-e097a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/amprion-e097a8.svg", "osmTags": { "and": [ "power=transformer", @@ -430326,7 +430540,7 @@ }, { "question": "Amtrak", - "icon": "./assets/data/nsi/logos/amtrak-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtrak-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -430341,7 +430555,7 @@ }, { "question": "Anaheim Public Utilities", - "icon": "./assets/data/nsi/logos/anaheimpublicutilities-a1ef23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/anaheimpublicutilities-a1ef23.png", "osmTags": { "and": [ "power=transformer", @@ -430356,7 +430570,7 @@ }, { "question": "ANDE", - "icon": "./assets/data/nsi/logos/ande-1b412c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ande-1b412c.jpg", "osmTags": { "and": [ "power=transformer", @@ -430371,7 +430585,7 @@ }, { "question": "Appalachian Power", - "icon": "./assets/data/nsi/logos/appalachianpowercompany-9aaa69.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appalachianpowercompany-9aaa69.png", "osmTags": { "and": [ "power=transformer", @@ -430400,7 +430614,7 @@ }, { "question": "Arizona Public Service", - "icon": "./assets/data/nsi/logos/arizonapublicservice-b6d642.png", + "icon": "https://data.mapcomplete.org/nsi//logos/arizonapublicservice-b6d642.png", "osmTags": { "and": [ "power=transformer", @@ -430429,7 +430643,7 @@ }, { "question": "Arkansas Valley Electric Cooperative", - "icon": "./assets/data/nsi/logos/arkansasvalleyelectriccooperative-0a90d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/arkansasvalleyelectriccooperative-0a90d3.jpg", "osmTags": { "and": [ "power=transformer", @@ -430476,7 +430690,7 @@ }, { "question": "ATCO Electric", - "icon": "./assets/data/nsi/logos/atcoelectric-907aac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atcoelectric-907aac.svg", "osmTags": { "and": [ "power=transformer", @@ -430491,7 +430705,7 @@ }, { "question": "Atlantic City Electric", - "icon": "./assets/data/nsi/logos/atlanticcityelectric-0e9d9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/atlanticcityelectric-0e9d9b.jpg", "osmTags": { "and": [ "power=transformer", @@ -430506,7 +430720,7 @@ }, { "question": "Augstsprieguma tīkls", - "icon": "./assets/data/nsi/logos/augstspriegumatikls-79b2b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-79b2b7.png", "osmTags": { "and": [ "power=transformer", @@ -430535,7 +430749,7 @@ }, { "question": "Aurora Energy (New Zealand)", - "icon": "./assets/data/nsi/logos/auroraenergy-05e84a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/auroraenergy-05e84a.jpg", "osmTags": { "and": [ "power=transformer", @@ -430550,7 +430764,7 @@ }, { "question": "Ausgrid", - "icon": "./assets/data/nsi/logos/ausgrid-17e0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausgrid-17e0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -430565,7 +430779,7 @@ }, { "question": "AusNet", - "icon": "./assets/data/nsi/logos/ausnet-d07c0c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ausnet-d07c0c.jpg", "osmTags": { "and": [ "power=transformer", @@ -430580,7 +430794,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-70fbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-70fbe7.jpg", "osmTags": { "and": [ "power=transformer", @@ -430609,7 +430823,7 @@ }, { "question": "Avacon Netz", - "icon": "./assets/data/nsi/logos/avaconnetz-f46145.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avaconnetz-f46145.svg", "osmTags": { "and": [ "power=transformer", @@ -430624,7 +430838,7 @@ }, { "question": "Avista", - "icon": "./assets/data/nsi/logos/avista-7c3ee6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/avista-7c3ee6.jpg", "osmTags": { "and": [ "power=transformer", @@ -430639,7 +430853,7 @@ }, { "question": "AVU AG", - "icon": "./assets/data/nsi/logos/avuag-ad09f9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avuag-ad09f9.svg", "osmTags": { "and": [ "power=transformer", @@ -430654,7 +430868,7 @@ }, { "question": "Axpo/EKZ", - "icon": "./assets/data/nsi/logos/axpoekz-41d358.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axpoekz-41d358.jpg", "osmTags": { "and": [ "power=transformer", @@ -430669,7 +430883,7 @@ }, { "question": "Baltimore Gas and Electric", - "icon": "./assets/data/nsi/logos/baltimoregasandelectric-2e2532.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/baltimoregasandelectric-2e2532.jpg", "osmTags": { "and": [ "power=transformer", @@ -430684,7 +430898,7 @@ }, { "question": "Bane NOR", - "icon": "./assets/data/nsi/logos/banenor-7fe9fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banenor-7fe9fe.png", "osmTags": { "and": [ "power=transformer", @@ -430699,7 +430913,7 @@ }, { "question": "Banedanmark", - "icon": "./assets/data/nsi/logos/banedanmark-694f23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banedanmark-694f23.png", "osmTags": { "and": [ "power=transformer", @@ -430760,7 +430974,7 @@ }, { "question": "BC Hydro", - "icon": "./assets/data/nsi/logos/bchydro-401b6b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bchydro-401b6b.jpg", "osmTags": { "and": [ "power=transformer", @@ -430784,7 +430998,7 @@ }, { "question": "BEDAŞ", - "icon": "./assets/data/nsi/logos/bedas-31b591.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bedas-31b591.jpg", "osmTags": { "and": [ "power=transformer", @@ -430799,7 +431013,7 @@ }, { "question": "Belize Electricity Limited", - "icon": "./assets/data/nsi/logos/belizeelectricitylimited-94b790.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/belizeelectricitylimited-94b790.jpg", "osmTags": { "and": [ "power=transformer", @@ -430815,7 +431029,7 @@ }, { "question": "Benton PUD", - "icon": "./assets/data/nsi/logos/bentonpublicutilitydistrict-401d11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bentonpublicutilitydistrict-401d11.jpg", "osmTags": { "and": [ "power=transformer", @@ -430845,7 +431059,7 @@ }, { "question": "Berliner Verkehrsbetriebe", - "icon": "./assets/data/nsi/logos/berlinerverkehrsbetriebe-26ff34.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/berlinerverkehrsbetriebe-26ff34.jpg", "osmTags": { "and": [ "power=transformer", @@ -430869,7 +431083,7 @@ }, { "question": "BKK", - "icon": "./assets/data/nsi/logos/bkk-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bkk-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -430884,7 +431098,7 @@ }, { "question": "BKW", - "icon": "./assets/data/nsi/logos/bkw-b75b2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bkw-b75b2e.png", "osmTags": { "and": [ "power=transformer", @@ -430914,7 +431128,7 @@ }, { "question": "Blue Ridge Energy", - "icon": "./assets/data/nsi/logos/blueridgeenergy-458d87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/blueridgeenergy-458d87.jpg", "osmTags": { "and": [ "power=transformer", @@ -430929,7 +431143,7 @@ }, { "question": "Bluebonnet Electric Cooperative", - "icon": "./assets/data/nsi/logos/bluebonnetelectriccooperative-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bluebonnetelectriccooperative-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -430945,7 +431159,7 @@ }, { "question": "bnNETZE", - "icon": "./assets/data/nsi/logos/bnnetze-645c81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bnnetze-645c81.png", "osmTags": { "and": [ "power=transformer", @@ -430960,7 +431174,7 @@ }, { "question": "Bonneville Power Administration", - "icon": "./assets/data/nsi/logos/bonnevillepoweradministration-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bonnevillepoweradministration-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -430976,7 +431190,7 @@ }, { "question": "Bornholms Energi & Forsyning", - "icon": "./assets/data/nsi/logos/bornholmsenergiandforsyning-cf3ef6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-cf3ef6.jpg", "osmTags": { "and": [ "power=transformer", @@ -431006,7 +431220,7 @@ }, { "question": "Braunschweiger Verkehrs-GmbH", - "icon": "./assets/data/nsi/logos/braunschweigerverkehrsgmbh-d8137c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/braunschweigerverkehrsgmbh-d8137c.png", "osmTags": { "and": [ "power=transformer", @@ -431045,7 +431259,7 @@ }, { "question": "Bremer Straßenbahn AG", - "icon": "./assets/data/nsi/logos/bremerstrassenbahnag-d1d6a2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bremerstrassenbahnag-d1d6a2.svg", "osmTags": { "and": [ "power=transformer", @@ -431061,7 +431275,7 @@ }, { "question": "BrightRidge", - "icon": "./assets/data/nsi/logos/brightridge-3fded7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/brightridge-3fded7.jpg", "osmTags": { "and": [ "power=transformer", @@ -431109,7 +431323,7 @@ }, { "question": "Bryan Texas Utilities", - "icon": "./assets/data/nsi/logos/bryantexasutilities-70fbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bryantexasutilities-70fbe7.jpg", "osmTags": { "and": [ "power=transformer", @@ -431147,7 +431361,7 @@ }, { "question": "Caruna", - "icon": "./assets/data/nsi/logos/caruna-5ad418.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/caruna-5ad418.svg", "osmTags": { "and": [ "power=transformer", @@ -431162,7 +431376,7 @@ }, { "question": "CDEEE", - "icon": "./assets/data/nsi/logos/cdeee-0e05aa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cdeee-0e05aa.jpg", "osmTags": { "and": [ "power=transformer", @@ -431177,7 +431391,7 @@ }, { "question": "CEEE", - "icon": "./assets/data/nsi/logos/ceee-dc5268.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceee-dc5268.svg", "osmTags": { "and": [ "power=transformer", @@ -431206,7 +431420,7 @@ }, { "question": "Celesc", - "icon": "./assets/data/nsi/logos/celesc-dc5268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celesc-dc5268.jpg", "osmTags": { "and": [ "power=transformer", @@ -431221,7 +431435,7 @@ }, { "question": "Celle-Uelzen Netz", - "icon": "./assets/data/nsi/logos/celleuelzennetz-d8137c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/celleuelzennetz-d8137c.jpg", "osmTags": { "and": [ "power=transformer", @@ -431237,7 +431451,7 @@ }, { "question": "Cemig", - "icon": "./assets/data/nsi/logos/cemig-dc5268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cemig-dc5268.jpg", "osmTags": { "and": [ "power=transformer", @@ -431252,7 +431466,7 @@ }, { "question": "CenterPoint Energy", - "icon": "./assets/data/nsi/logos/centerpointenergy-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centerpointenergy-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -431281,7 +431495,7 @@ }, { "question": "Central Maine Power Company", - "icon": "./assets/data/nsi/logos/centralmainepowercompany-289571.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralmainepowercompany-289571.jpg", "osmTags": { "and": [ "power=transformer", @@ -431296,7 +431510,7 @@ }, { "question": "Central Texas Electric Cooperative", - "icon": "./assets/data/nsi/logos/centraltexaselectriccooperative-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centraltexaselectriccooperative-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -431311,7 +431525,7 @@ }, { "question": "ČEPS", - "icon": "./assets/data/nsi/logos/ceps-ecf5fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceps-ecf5fe.jpg", "osmTags": { "and": [ "power=transformer", @@ -431353,7 +431567,7 @@ }, { "question": "Ceylon Electricity Board", - "icon": "./assets/data/nsi/logos/ceylonelectricityboard-c43671.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceylonelectricityboard-c43671.png", "osmTags": { "and": [ "power=transformer", @@ -431383,7 +431597,7 @@ }, { "question": "CGE", - "icon": "./assets/data/nsi/logos/cge-1cd455.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cge-1cd455.jpg", "osmTags": { "and": [ "power=transformer", @@ -431398,7 +431612,7 @@ }, { "question": "Chicago Transit Authority", - "icon": "./assets/data/nsi/logos/chicagotransitauthority-60c111.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chicagotransitauthority-60c111.jpg", "osmTags": { "and": [ "power=transformer", @@ -431414,7 +431628,7 @@ }, { "question": "CIPCO", - "icon": "./assets/data/nsi/logos/cipco-ed770b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cipco-ed770b.jpg", "osmTags": { "and": [ "power=transformer", @@ -431438,7 +431652,7 @@ }, { "question": "City of Cape Town", - "icon": "./assets/data/nsi/logos/cityofcapetown-8cd021.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityofcapetown-8cd021.png", "osmTags": { "and": [ "power=transformer", @@ -431457,7 +431671,7 @@ }, { "question": "City of Lakeland", - "icon": "./assets/data/nsi/logos/cityoflakeland-c33728.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoflakeland-c33728.png", "osmTags": { "and": [ "power=transformer", @@ -431472,7 +431686,7 @@ }, { "question": "City of Tallahassee", - "icon": "./assets/data/nsi/logos/cityoftallahassee-c33728.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cityoftallahassee-c33728.jpg", "osmTags": { "and": [ "power=transformer", @@ -431501,7 +431715,7 @@ }, { "question": "City Water, Light & Power", - "icon": "./assets/data/nsi/logos/citywaterlightandpower-60c111.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/citywaterlightandpower-60c111.jpg", "osmTags": { "and": [ "power=transformer", @@ -431517,7 +431731,7 @@ }, { "question": "Clark Public Utilities", - "icon": "./assets/data/nsi/logos/clarkpublicutilities-401d11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clarkpublicutilities-401d11.jpg", "osmTags": { "and": [ "power=transformer", @@ -431532,7 +431746,7 @@ }, { "question": "Clay Electric Cooperative", - "icon": "./assets/data/nsi/logos/clayelectriccooperative-c33728.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/clayelectriccooperative-c33728.jpg", "osmTags": { "and": [ "power=transformer", @@ -431547,7 +431761,7 @@ }, { "question": "CLECO", - "icon": "./assets/data/nsi/logos/cleco-9b6869.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/cleco-9b6869.svg", "osmTags": { "and": [ "power=transformer", @@ -431616,7 +431830,7 @@ }, { "question": "Coast Mountain Bus Company", - "icon": "./assets/data/nsi/logos/coastmountainbuscompany-401b6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coastmountainbuscompany-401b6b.png", "osmTags": { "and": [ "power=transformer", @@ -431631,7 +431845,7 @@ }, { "question": "Codelco Chile", - "icon": "./assets/data/nsi/logos/codelcochile-1cd455.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/codelcochile-1cd455.jpg", "osmTags": { "and": [ "power=transformer", @@ -431646,7 +431860,7 @@ }, { "question": "Coelba", - "icon": "./assets/data/nsi/logos/coelba-dc5268.png", + "icon": "https://data.mapcomplete.org/nsi//logos/coelba-dc5268.png", "osmTags": { "and": [ "power=transformer", @@ -431661,7 +431875,7 @@ }, { "question": "Colbún", - "icon": "./assets/data/nsi/logos/colbun-1cd455.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/colbun-1cd455.jpg", "osmTags": { "and": [ "power=transformer", @@ -431676,7 +431890,7 @@ }, { "question": "Colonial Pipeline", - "icon": "./assets/data/nsi/logos/colonialpipeline-9a842a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/colonialpipeline-9a842a.png", "osmTags": { "and": [ "power=transformer", @@ -431691,7 +431905,7 @@ }, { "question": "Colorado Springs Utilities", - "icon": "./assets/data/nsi/logos/coloradospringsutilities-dbd23d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/coloradospringsutilities-dbd23d.jpg", "osmTags": { "and": [ "power=transformer", @@ -431706,7 +431920,7 @@ }, { "question": "Comisión Federal de Electricidad", - "icon": "./assets/data/nsi/logos/comisionfederaldeelectricidad-2d15fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comisionfederaldeelectricidad-2d15fd.png", "osmTags": { "and": [ "power=transformer", @@ -431722,7 +431936,7 @@ }, { "question": "Commonwealth Edison", - "icon": "./assets/data/nsi/logos/commonwealthedison-b9c53a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/commonwealthedison-b9c53a.jpg", "osmTags": { "and": [ "power=transformer", @@ -431753,7 +431967,7 @@ }, { "question": "Compagnia Valdostana Acque", - "icon": "./assets/data/nsi/logos/compagniavaldostanaacque-713962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/compagniavaldostanaacque-713962.jpg", "osmTags": { "and": [ "power=transformer", @@ -431822,7 +432036,7 @@ }, { "question": "Companhia Paulista de Trens Metropolitanos", - "icon": "./assets/data/nsi/logos/companhiapaulistadetrensmetropolitanos-dc5268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/companhiapaulistadetrensmetropolitanos-dc5268.jpg", "osmTags": { "and": [ "power=transformer", @@ -431838,7 +432052,7 @@ }, { "question": "Consolidated Edison", - "icon": "./assets/data/nsi/logos/consolidatededison-81dd91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/consolidatededison-81dd91.jpg", "osmTags": { "and": [ "power=transformer", @@ -431867,7 +432081,7 @@ }, { "question": "Consumers Energy", - "icon": "./assets/data/nsi/logos/consumersenergy-a3e4d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/consumersenergy-a3e4d0.png", "osmTags": { "and": [ "power=transformer", @@ -431905,7 +432119,7 @@ }, { "question": "Copel", - "icon": "./assets/data/nsi/logos/copel-dc5268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copel-dc5268.jpg", "osmTags": { "and": [ "power=transformer", @@ -431920,7 +432134,7 @@ }, { "question": "Corn Belt Energy Corporation", - "icon": "./assets/data/nsi/logos/cornbeltenergycorporation-60c111.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornbeltenergycorporation-60c111.jpg", "osmTags": { "and": [ "power=transformer", @@ -431935,7 +432149,7 @@ }, { "question": "Corn Belt Power Cooperative", - "icon": "./assets/data/nsi/logos/cornbeltpowercooperative-ed770b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cornbeltpowercooperative-ed770b.jpg", "osmTags": { "and": [ "power=transformer", @@ -431950,7 +432164,7 @@ }, { "question": "Corpoelec", - "icon": "./assets/data/nsi/logos/corpoelec-eee9f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/corpoelec-eee9f7.png", "osmTags": { "and": [ "power=transformer", @@ -431965,7 +432179,7 @@ }, { "question": "Cosern", - "icon": "./assets/data/nsi/logos/cosern-dc5268.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cosern-dc5268.png", "osmTags": { "and": [ "power=transformer", @@ -431980,7 +432194,7 @@ }, { "question": "CPFL Energia", - "icon": "./assets/data/nsi/logos/cpflenergia-dc5268.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cpflenergia-dc5268.png", "osmTags": { "and": [ "power=transformer", @@ -432004,7 +432218,7 @@ }, { "question": "CPS Energy", - "icon": "./assets/data/nsi/logos/cpsenergy-70fbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cpsenergy-70fbe7.jpg", "osmTags": { "and": [ "power=transformer", @@ -432019,7 +432233,7 @@ }, { "question": "Creos", - "icon": "./assets/data/nsi/logos/creos-d85a73.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/creos-d85a73.jpg", "osmTags": { "and": [ "power=transformer", @@ -432071,7 +432285,7 @@ }, { "question": "Cullman Electric Cooperative", - "icon": "./assets/data/nsi/logos/cullmanelectriccooperative-a5723a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cullmanelectriccooperative-a5723a.png", "osmTags": { "and": [ "power=transformer", @@ -432086,7 +432300,7 @@ }, { "question": "Dairyland Power Cooperative", - "icon": "./assets/data/nsi/logos/dairylandpowercooperative-9dceab.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dairylandpowercooperative-9dceab.jpg", "osmTags": { "and": [ "power=transformer", @@ -432124,7 +432338,7 @@ }, { "question": "Davao Light and Power Company", - "icon": "./assets/data/nsi/logos/davaolightandpowercompany-d6fa7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/davaolightandpowercompany-d6fa7d.png", "osmTags": { "and": [ "power=transformer", @@ -432139,7 +432353,7 @@ }, { "question": "DB Energie", - "icon": "./assets/data/nsi/logos/dbenergie-e097a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbenergie-e097a8.svg", "osmTags": { "and": [ "power=transformer", @@ -432154,7 +432368,7 @@ }, { "question": "DB InfraGO", - "icon": "./assets/data/nsi/logos/dbinfrago-e097a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbinfrago-e097a8.svg", "osmTags": { "and": [ "power=transformer", @@ -432169,7 +432383,7 @@ }, { "question": "Decatur Utilities", - "icon": "./assets/data/nsi/logos/decaturutilities-a5723a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/decaturutilities-a5723a.png", "osmTags": { "and": [ "power=transformer", @@ -432198,7 +432412,7 @@ }, { "question": "Delmarva Power", - "icon": "./assets/data/nsi/logos/delmarvapower-81dec4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/delmarvapower-81dec4.jpg", "osmTags": { "and": [ "power=transformer", @@ -432213,7 +432427,7 @@ }, { "question": "DEMCO", - "icon": "./assets/data/nsi/logos/demco-9b6869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/demco-9b6869.jpg", "osmTags": { "and": [ "power=transformer", @@ -432246,7 +432460,7 @@ }, { "question": "Deutsche Bahn", - "icon": "./assets/data/nsi/logos/deutschebahn-e097a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschebahn-e097a8.png", "osmTags": { "and": [ "power=transformer", @@ -432293,7 +432507,7 @@ }, { "question": "Dominion Energy", - "icon": "./assets/data/nsi/logos/dominionenergy-f9fb0f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dominionenergy-f9fb0f.png", "osmTags": { "and": [ "power=transformer", @@ -432322,7 +432536,7 @@ }, { "question": "Dow Chemical Company", - "icon": "./assets/data/nsi/logos/dowchemicalcompany-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dowchemicalcompany-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -432346,7 +432560,7 @@ }, { "question": "DPP", - "icon": "./assets/data/nsi/logos/dpp-5a056f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dpp-5a056f.png", "osmTags": { "and": [ "power=transformer", @@ -432361,7 +432575,7 @@ }, { "question": "Drewag", - "icon": "./assets/data/nsi/logos/drewag-52cc32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/drewag-52cc32.jpg", "osmTags": { "and": [ "power=transformer", @@ -432376,7 +432590,7 @@ }, { "question": "DTE Energy", - "icon": "./assets/data/nsi/logos/dteenergy-a3e4d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/dteenergy-a3e4d0.png", "osmTags": { "and": [ "power=transformer", @@ -432415,7 +432629,7 @@ }, { "question": "Duke Energy", - "icon": "./assets/data/nsi/logos/dukeenergy-77b0c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergy-77b0c6.jpg", "osmTags": { "and": [ "power=transformer", @@ -432430,7 +432644,7 @@ }, { "question": "Duke Energy Progress", - "icon": "./assets/data/nsi/logos/dukeenergyprogress-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dukeenergyprogress-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -432445,7 +432659,7 @@ }, { "question": "Duquesne Light", - "icon": "./assets/data/nsi/logos/duquesnelight-c93538.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/duquesnelight-c93538.jpg", "osmTags": { "and": [ "power=transformer", @@ -432460,7 +432674,7 @@ }, { "question": "DVV", - "icon": "./assets/data/nsi/logos/dvv-80fbfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/dvv-80fbfb.jpg", "osmTags": { "and": [ "power=transformer", @@ -432475,7 +432689,7 @@ }, { "question": "e-distribuzione S.p.A.", - "icon": "./assets/data/nsi/logos/edistribuzionespa-713962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edistribuzionespa-713962.jpg", "osmTags": { "and": [ "power=transformer", @@ -432490,7 +432704,7 @@ }, { "question": "e-netz Südhessen", - "icon": "./assets/data/nsi/logos/enetzsudhessen-e097a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enetzsudhessen-e097a8.svg", "osmTags": { "and": [ "power=transformer", @@ -432505,7 +432719,7 @@ }, { "question": "E-REDES", - "icon": "./assets/data/nsi/logos/eredes-e26b9a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eredes-e26b9a.png", "osmTags": { "and": [ "power=transformer", @@ -432520,7 +432734,7 @@ }, { "question": "E-Werk Mittelbaden", - "icon": "./assets/data/nsi/logos/ewerkmittelbaden-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewerkmittelbaden-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -432544,7 +432758,7 @@ }, { "question": "E.DIS Netz GmbH", - "icon": "./assets/data/nsi/logos/edisnetzgmbh-53fc23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edisnetzgmbh-53fc23.jpg", "osmTags": { "and": [ "power=transformer", @@ -432638,7 +432852,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-636d24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-636d24.png", "osmTags": { "and": [ "power=transformer", @@ -432653,7 +432867,7 @@ }, { "question": "E.ON Netz", - "icon": "./assets/data/nsi/logos/eonnetz-e097a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonnetz-e097a8.svg", "osmTags": { "and": [ "power=transformer", @@ -432705,7 +432919,7 @@ }, { "question": "East Kentucky Power Cooperative", - "icon": "./assets/data/nsi/logos/eastkentuckypowercooperative-72d60b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastkentuckypowercooperative-72d60b.jpg", "osmTags": { "and": [ "power=transformer", @@ -432720,7 +432934,7 @@ }, { "question": "East River Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/eastriverelectricpowercooperative-06599d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eastriverelectricpowercooperative-06599d.jpg", "osmTags": { "and": [ "power=transformer", @@ -432749,7 +432963,7 @@ }, { "question": "ED Netze", - "icon": "./assets/data/nsi/logos/ednetze-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ednetze-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -432773,7 +432987,7 @@ }, { "question": "Edenor", - "icon": "./assets/data/nsi/logos/edenor-9f5ee2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edenor-9f5ee2.jpg", "osmTags": { "and": [ "power=transformer", @@ -432788,7 +433002,7 @@ }, { "question": "Edison", - "icon": "./assets/data/nsi/logos/edison-713962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edison-713962.jpg", "osmTags": { "and": [ "power=transformer", @@ -432803,7 +433017,7 @@ }, { "question": "EDP Espírito Santo", - "icon": "./assets/data/nsi/logos/edpespiritosanto-187a44.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpespiritosanto-187a44.svg", "osmTags": { "and": [ "power=transformer", @@ -432833,7 +433047,7 @@ }, { "question": "EDP Renováveis", - "icon": "./assets/data/nsi/logos/edprenovaveis-aaa4d2.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/edprenovaveis-aaa4d2.svg", "osmTags": { "and": [ "power=transformer", @@ -432850,7 +433064,7 @@ }, { "question": "EDP São Paulo", - "icon": "./assets/data/nsi/logos/edpsaopaulo-dc5268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edpsaopaulo-dc5268.jpg", "osmTags": { "and": [ "power=transformer", @@ -432883,7 +433097,7 @@ }, { "question": "EFE", - "icon": "./assets/data/nsi/logos/efe-1cd455.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/efe-1cd455.svg", "osmTags": { "and": [ "power=transformer", @@ -432898,7 +433112,7 @@ }, { "question": "EG.D", - "icon": "./assets/data/nsi/logos/egd-5a056f.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/egd-5a056f.svg", "osmTags": { "and": [ "power=transformer", @@ -432927,7 +433141,7 @@ }, { "question": "EirGrid", - "icon": "./assets/data/nsi/logos/eirgrid-fddd7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eirgrid-fddd7d.jpg", "osmTags": { "and": [ "power=transformer", @@ -432942,7 +433156,7 @@ }, { "question": "EKS", - "icon": "./assets/data/nsi/logos/eks-4ca046.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eks-4ca046.png", "osmTags": { "and": [ "power=transformer", @@ -432957,7 +433171,7 @@ }, { "question": "EKT", - "icon": "./assets/data/nsi/logos/ekt-3d470b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ekt-3d470b.jpg", "osmTags": { "and": [ "power=transformer", @@ -432972,7 +433186,7 @@ }, { "question": "EKZ", - "icon": "./assets/data/nsi/logos/ekz-b75b2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ekz-b75b2e.png", "osmTags": { "and": [ "power=transformer", @@ -433015,7 +433229,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-636d24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-636d24.png", "osmTags": { "and": [ "power=transformer", @@ -433047,7 +433261,7 @@ }, { "question": "Electricity North West", - "icon": "./assets/data/nsi/logos/electricitynorthwest-306792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitynorthwest-306792.jpg", "osmTags": { "and": [ "power=transformer", @@ -433107,7 +433321,7 @@ }, { "question": "Elektrilevi", - "icon": "./assets/data/nsi/logos/elektrilevi-8b8dca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrilevi-8b8dca.png", "osmTags": { "and": [ "power=transformer", @@ -433145,7 +433359,7 @@ }, { "question": "Elektrizitätswerke Reutte", - "icon": "./assets/data/nsi/logos/elektrizitatswerkereutte-a3f8c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrizitatswerkereutte-a3f8c7.png", "osmTags": { "and": [ "power=transformer", @@ -433242,7 +433456,7 @@ }, { "question": "Elenia", - "icon": "./assets/data/nsi/logos/elenia-5ad418.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elenia-5ad418.jpg", "osmTags": { "and": [ "power=transformer", @@ -433257,7 +433471,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-8b8dca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-8b8dca.jpg", "osmTags": { "and": [ "power=transformer", @@ -433315,7 +433529,7 @@ }, { "question": "Eletropaulo", - "icon": "./assets/data/nsi/logos/eletropaulo-dc5268.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eletropaulo-dc5268.svg", "osmTags": { "and": [ "power=transformer", @@ -433353,7 +433567,7 @@ }, { "question": "Elia", - "icon": "./assets/data/nsi/logos/elia-4648a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elia-4648a1.png", "osmTags": { "and": [ "power=transformer", @@ -433391,7 +433605,7 @@ }, { "question": "Ellevio", - "icon": "./assets/data/nsi/logos/ellevio-da9798.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ellevio-da9798.png", "osmTags": { "and": [ "power=transformer", @@ -433420,7 +433634,7 @@ }, { "question": "ELMŰ", - "icon": "./assets/data/nsi/logos/elmu-d2172f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elmu-d2172f.png", "osmTags": { "and": [ "power=transformer", @@ -433435,7 +433649,7 @@ }, { "question": "Elvia", - "icon": "./assets/data/nsi/logos/elvia-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elvia-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -433464,7 +433678,7 @@ }, { "question": "Emerald People's Utility District", - "icon": "./assets/data/nsi/logos/emeraldpeoplesutilitydistrict-8ea204.png", + "icon": "https://data.mapcomplete.org/nsi//logos/emeraldpeoplesutilitydistrict-8ea204.png", "osmTags": { "and": [ "power=transformer", @@ -433480,7 +433694,7 @@ }, { "question": "Empresas Públicas de Medellín", - "icon": "./assets/data/nsi/logos/empresaspublicasdemedellin-1e9fc0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/empresaspublicasdemedellin-1e9fc0.svg", "osmTags": { "and": [ "power=transformer", @@ -433505,7 +433719,7 @@ }, { "question": "EnBW Energie Baden-Württemberg AG", - "icon": "./assets/data/nsi/logos/enbwenergiebadenwurttembergag-e097a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enbwenergiebadenwurttembergag-e097a8.png", "osmTags": { "and": [ "power=transformer", @@ -433520,7 +433734,7 @@ }, { "question": "Endeavour Energy", - "icon": "./assets/data/nsi/logos/endeavourenergy-17e0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/endeavourenergy-17e0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -433535,7 +433749,7 @@ }, { "question": "Endesa", - "icon": "./assets/data/nsi/logos/endesa-489479.png", + "icon": "https://data.mapcomplete.org/nsi//logos/endesa-489479.png", "osmTags": { "and": [ "power=transformer", @@ -433550,7 +433764,7 @@ }, { "question": "Enea", - "icon": "./assets/data/nsi/logos/enea-b34e65.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enea-b34e65.png", "osmTags": { "and": [ "power=transformer", @@ -433565,7 +433779,7 @@ }, { "question": "Eneco", - "icon": "./assets/data/nsi/logos/eneco-611411.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneco-611411.png", "osmTags": { "and": [ "power=transformer", @@ -433580,7 +433794,7 @@ }, { "question": "Enedis", - "icon": "./assets/data/nsi/logos/enedis-723622.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enedis-723622.png", "osmTags": { "and": [ "power=transformer", @@ -433595,7 +433809,7 @@ }, { "question": "Enel", - "icon": "./assets/data/nsi/logos/enel-636d24.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enel-636d24.png", "osmTags": { "and": [ "power=transformer", @@ -433610,7 +433824,7 @@ }, { "question": "Enel Distribución Chile", - "icon": "./assets/data/nsi/logos/eneldistribucionchile-1cd455.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribucionchile-1cd455.png", "osmTags": { "and": [ "power=transformer", @@ -433639,7 +433853,7 @@ }, { "question": "Enel Distribuição Ceará", - "icon": "./assets/data/nsi/logos/eneldistribuicaoceara-dc5268.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaoceara-dc5268.png", "osmTags": { "and": [ "power=transformer", @@ -433668,7 +433882,7 @@ }, { "question": "Enel Distribuição São Paulo", - "icon": "./assets/data/nsi/logos/eneldistribuicaosaopaulo-dc5268.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eneldistribuicaosaopaulo-dc5268.svg", "osmTags": { "and": [ "power=transformer", @@ -433683,7 +433897,7 @@ }, { "question": "Enel Green Power", - "icon": "./assets/data/nsi/logos/enelgreenpower-636d24.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelgreenpower-636d24.svg", "osmTags": { "and": [ "power=transformer", @@ -433698,7 +433912,7 @@ }, { "question": "Enel Produzione", - "icon": "./assets/data/nsi/logos/enelproduzione-713962.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enelproduzione-713962.svg", "osmTags": { "and": [ "power=transformer", @@ -433713,7 +433927,7 @@ }, { "question": "Enemalta", - "icon": "./assets/data/nsi/logos/enemalta-e6482f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enemalta-e6482f.jpg", "osmTags": { "and": [ "power=transformer", @@ -433742,7 +433956,7 @@ }, { "question": "Enercon", - "icon": "./assets/data/nsi/logos/enercon-e097a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/enercon-e097a8.svg", "osmTags": { "and": [ "power=transformer", @@ -433757,7 +433971,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-b34e65.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-b34e65.png", "osmTags": { "and": [ "power=transformer", @@ -433786,7 +434000,7 @@ }, { "question": "Energex", - "icon": "./assets/data/nsi/logos/energex-c26b41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energex-c26b41.jpg", "osmTags": { "and": [ "power=transformer", @@ -433801,7 +434015,7 @@ }, { "question": "Energias de Portugal", - "icon": "./assets/data/nsi/logos/energiasdeportugal-e26b9a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiasdeportugal-e26b9a.svg", "osmTags": { "and": [ "power=transformer", @@ -433817,7 +434031,7 @@ }, { "question": "Energie AG", - "icon": "./assets/data/nsi/logos/energieag-c84cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieag-c84cac.jpg", "osmTags": { "and": [ "power=transformer", @@ -433832,7 +434046,7 @@ }, { "question": "Énergie du Mali", - "icon": "./assets/data/nsi/logos/energiedumali-8afa3f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energiedumali-8afa3f.jpg", "osmTags": { "and": [ "power=transformer", @@ -433847,7 +434061,7 @@ }, { "question": "Energie Graz", - "icon": "./assets/data/nsi/logos/energiegraz-d63e23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiegraz-d63e23.png", "osmTags": { "and": [ "power=transformer", @@ -433862,7 +434076,7 @@ }, { "question": "Energie Klagenfurt GmbH", - "icon": "./assets/data/nsi/logos/energieklagenfurtgmbh-60ead3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieklagenfurtgmbh-60ead3.jpg", "osmTags": { "and": [ "power=transformer", @@ -433877,7 +434091,7 @@ }, { "question": "Energie Steiermark", - "icon": "./assets/data/nsi/logos/energiesteiermark-bb235b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiesteiermark-bb235b.png", "osmTags": { "and": [ "power=transformer", @@ -433892,7 +434106,7 @@ }, { "question": "Energie Thun AG", - "icon": "./assets/data/nsi/logos/energiethunag-c74f84.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiethunag-c74f84.png", "osmTags": { "and": [ "power=transformer", @@ -433907,7 +434121,7 @@ }, { "question": "Energie Waldeck-Frankenberg", - "icon": "./assets/data/nsi/logos/energiewaldeckfrankenberg-b05a85.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energiewaldeckfrankenberg-b05a85.png", "osmTags": { "and": [ "power=transformer", @@ -433937,7 +434151,7 @@ }, { "question": "Energieversorgung Mittelrhein", - "icon": "./assets/data/nsi/logos/energieversorgungmittelrhein-3d40d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/energieversorgungmittelrhein-3d40d5.jpg", "osmTags": { "and": [ "power=transformer", @@ -434000,7 +434214,7 @@ }, { "question": "Energinet", - "icon": "./assets/data/nsi/logos/energinet-694f23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energinet-694f23.png", "osmTags": { "and": [ "power=transformer", @@ -434099,7 +434313,7 @@ }, { "question": "Enexis", - "icon": "./assets/data/nsi/logos/enexis-dcd896.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enexis-dcd896.png", "osmTags": { "and": [ "power=transformer", @@ -434114,7 +434328,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-636d24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-636d24.jpg", "osmTags": { "and": [ "power=transformer", @@ -434143,7 +434357,7 @@ }, { "question": "Enipower", - "icon": "./assets/data/nsi/logos/enipower-713962.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enipower-713962.jpg", "osmTags": { "and": [ "power=transformer", @@ -434158,7 +434372,7 @@ }, { "question": "ENMAX", - "icon": "./assets/data/nsi/logos/enmax-8b0dc6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enmax-8b0dc6.png", "osmTags": { "and": [ "power=transformer", @@ -434173,7 +434387,7 @@ }, { "question": "ENRW Energieversorgung Rottweil", - "icon": "./assets/data/nsi/logos/enrwenergieversorgungrottweil-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/enrwenergieversorgungrottweil-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -434188,7 +434402,7 @@ }, { "question": "Ente Provincial de Energía del Neuquén", - "icon": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-c224fd.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-c224fd.png", "osmTags": { "and": [ "power=transformer", @@ -434203,7 +434417,7 @@ }, { "question": "entega", - "icon": "./assets/data/nsi/logos/entega-b05a85.png", + "icon": "https://data.mapcomplete.org/nsi//logos/entega-b05a85.png", "osmTags": { "and": [ "power=transformer", @@ -434218,7 +434432,7 @@ }, { "question": "Entergy", - "icon": "./assets/data/nsi/logos/entergy-1cd4ae.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergy-1cd4ae.jpg", "osmTags": { "and": [ "power=transformer", @@ -434233,7 +434447,7 @@ }, { "question": "Entergy Arkansas", - "icon": "./assets/data/nsi/logos/entergyarkansas-0a90d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergyarkansas-0a90d3.jpg", "osmTags": { "and": [ "power=transformer", @@ -434248,7 +434462,7 @@ }, { "question": "Entergy Louisiana", - "icon": "./assets/data/nsi/logos/entergylouisiana-785c01.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/entergylouisiana-785c01.jpg", "osmTags": { "and": [ "power=transformer", @@ -434277,7 +434491,7 @@ }, { "question": "enviaM", - "icon": "./assets/data/nsi/logos/enviam-eee5a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enviam-eee5a0.png", "osmTags": { "and": [ "power=transformer", @@ -434292,7 +434506,7 @@ }, { "question": "enwor", - "icon": "./assets/data/nsi/logos/enwor-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enwor-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -434307,7 +434521,7 @@ }, { "question": "EPB", - "icon": "./assets/data/nsi/logos/epb-d455af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epb-d455af.jpg", "osmTags": { "and": [ "power=transformer", @@ -434322,7 +434536,7 @@ }, { "question": "EPCOR", - "icon": "./assets/data/nsi/logos/epcor-f6996f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epcor-f6996f.jpg", "osmTags": { "and": [ "power=transformer", @@ -434337,7 +434551,7 @@ }, { "question": "EPEC", - "icon": "./assets/data/nsi/logos/epec-898214.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/epec-898214.jpg", "osmTags": { "and": [ "power=transformer", @@ -434352,7 +434566,7 @@ }, { "question": "EPS", - "icon": "./assets/data/nsi/logos/eps-c7be96.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eps-c7be96.svg", "osmTags": { "and": [ "power=transformer", @@ -434451,7 +434665,7 @@ }, { "question": "Equatorial Energia Piauí", - "icon": "./assets/data/nsi/logos/equatorialenergiapiaui-17f0f4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equatorialenergiapiaui-17f0f4.jpg", "osmTags": { "and": [ "power=transformer", @@ -434475,7 +434689,7 @@ }, { "question": "Ergon Energy", - "icon": "./assets/data/nsi/logos/ergonenergy-c26b41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ergonenergy-c26b41.jpg", "osmTags": { "and": [ "power=transformer", @@ -434490,7 +434704,7 @@ }, { "question": "Erlanger Stadtwerke", - "icon": "./assets/data/nsi/logos/erlangerstadtwerke-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/erlangerstadtwerke-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -434506,7 +434720,7 @@ }, { "question": "ESB Networks", - "icon": "./assets/data/nsi/logos/esbnetworks-fddd7d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esbnetworks-fddd7d.png", "osmTags": { "and": [ "power=transformer", @@ -434521,7 +434735,7 @@ }, { "question": "Eskom", - "icon": "./assets/data/nsi/logos/eskom-8cd021.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eskom-8cd021.jpg", "osmTags": { "and": [ "power=transformer", @@ -434564,7 +434778,7 @@ }, { "question": "Essential Energy", - "icon": "./assets/data/nsi/logos/essentialenergy-028f77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/essentialenergy-028f77.jpg", "osmTags": { "and": [ "power=transformer", @@ -434597,7 +434811,7 @@ }, { "question": "Ethiopian Electric Power", - "icon": "./assets/data/nsi/logos/ethiopianelectricpower-5e1f94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ethiopianelectricpower-5e1f94.png", "osmTags": { "and": [ "power=transformer", @@ -434622,7 +434836,7 @@ }, { "question": "Eugene Water & Electric Board", - "icon": "./assets/data/nsi/logos/eugenewaterandelectricboard-8ea204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eugenewaterandelectricboard-8ea204.jpg", "osmTags": { "and": [ "power=transformer", @@ -434652,7 +434866,7 @@ }, { "question": "EVA Energieversorgung Apolda", - "icon": "./assets/data/nsi/logos/evaenergieversorgungapolda-f3bd8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evaenergieversorgungapolda-f3bd8a.jpg", "osmTags": { "and": [ "power=transformer", @@ -434668,7 +434882,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-7e4526.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-7e4526.jpg", "osmTags": { "and": [ "power=transformer", @@ -434683,7 +434897,7 @@ }, { "question": "Eversource", - "icon": "./assets/data/nsi/logos/eversource-d51e21.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eversource-d51e21.png", "osmTags": { "and": [ "power=transformer", @@ -434698,7 +434912,7 @@ }, { "question": "EVN (Österreich)", - "icon": "./assets/data/nsi/logos/evn-c84cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-c84cac.jpg", "osmTags": { "and": [ "power=transformer", @@ -434713,7 +434927,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-1127e0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-1127e0.svg", "osmTags": { "and": [ "power=transformer", @@ -434729,7 +434943,7 @@ }, { "question": "EVO", - "icon": "./assets/data/nsi/logos/evo-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evo-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -434744,7 +434958,7 @@ }, { "question": "Evoenergy", - "icon": "./assets/data/nsi/logos/evoenergy-222d1c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evoenergy-222d1c.jpg", "osmTags": { "and": [ "power=transformer", @@ -434759,7 +434973,7 @@ }, { "question": "EVS", - "icon": "./assets/data/nsi/logos/evs-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/evs-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -434783,7 +434997,7 @@ }, { "question": "EWA-energieUri", - "icon": "./assets/data/nsi/logos/ewaenergieuri-bd81bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewaenergieuri-bd81bf.svg", "osmTags": { "and": [ "power=transformer", @@ -434798,7 +435012,7 @@ }, { "question": "EWE", - "icon": "./assets/data/nsi/logos/ewe-e097a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewe-e097a8.jpg", "osmTags": { "and": [ "power=transformer", @@ -434827,7 +435041,7 @@ }, { "question": "EWM AG", - "icon": "./assets/data/nsi/logos/ewmag-e097a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ewmag-e097a8.png", "osmTags": { "and": [ "power=transformer", @@ -434842,7 +435056,7 @@ }, { "question": "EWR", - "icon": "./assets/data/nsi/logos/ewr-77b208.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewr-77b208.jpg", "osmTags": { "and": [ "power=transformer", @@ -434857,7 +435071,7 @@ }, { "question": "EWW (Österreich)", - "icon": "./assets/data/nsi/logos/eww-004bba.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eww-004bba.jpg", "osmTags": { "and": [ "power=transformer", @@ -434886,7 +435100,7 @@ }, { "question": "EWZ", - "icon": "./assets/data/nsi/logos/ewz-b75b2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ewz-b75b2e.jpg", "osmTags": { "and": [ "power=transformer", @@ -434901,7 +435115,7 @@ }, { "question": "EZV", - "icon": "./assets/data/nsi/logos/ezv-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ezv-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -434916,7 +435130,7 @@ }, { "question": "Fagne", - "icon": "./assets/data/nsi/logos/fagne-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fagne-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -434945,7 +435159,7 @@ }, { "question": "Fayetteville Public Works Commission", - "icon": "./assets/data/nsi/logos/fayettevillepublicworkscommission-458d87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fayettevillepublicworkscommission-458d87.jpg", "osmTags": { "and": [ "power=transformer", @@ -434989,7 +435203,7 @@ }, { "question": "Fingrid", - "icon": "./assets/data/nsi/logos/fingrid-5ad418.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fingrid-5ad418.jpg", "osmTags": { "and": [ "power=transformer", @@ -435018,7 +435232,7 @@ }, { "question": "FirstEnergy", - "icon": "./assets/data/nsi/logos/firstenergy-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/firstenergy-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -435033,7 +435247,7 @@ }, { "question": "Fjellnett", - "icon": "./assets/data/nsi/logos/fjellnett-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/fjellnett-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -435076,7 +435290,7 @@ }, { "question": "Florida Power & Light", - "icon": "./assets/data/nsi/logos/floridapowerandlight-c33728.png", + "icon": "https://data.mapcomplete.org/nsi//logos/floridapowerandlight-c33728.png", "osmTags": { "and": [ "power=transformer", @@ -435100,7 +435314,7 @@ }, { "question": "Flughafen Zürich AG", - "icon": "./assets/data/nsi/logos/flughafenzurichag-41d358.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/flughafenzurichag-41d358.svg", "osmTags": { "and": [ "power=transformer", @@ -435115,7 +435329,7 @@ }, { "question": "Fluvius", - "icon": "./assets/data/nsi/logos/fluvius-4648a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fluvius-4648a1.jpg", "osmTags": { "and": [ "power=transformer", @@ -435144,7 +435358,7 @@ }, { "question": "FortisBC", - "icon": "./assets/data/nsi/logos/fortisbc-401b6b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fortisbc-401b6b.png", "osmTags": { "and": [ "power=transformer", @@ -435159,7 +435373,7 @@ }, { "question": "Fortum", - "icon": "./assets/data/nsi/logos/fortum-2e1f9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/fortum-2e1f9b.jpg", "osmTags": { "and": [ "power=transformer", @@ -435203,7 +435417,7 @@ }, { "question": "Furnas Centrais Elétricas", - "icon": "./assets/data/nsi/logos/furnascentraiseletricas-dc5268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/furnascentraiseletricas-dc5268.jpg", "osmTags": { "and": [ "power=transformer", @@ -435218,7 +435432,7 @@ }, { "question": "Gainesville Regional Utilities", - "icon": "./assets/data/nsi/logos/gainesvilleregionalutilities-c33728.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gainesvilleregionalutilities-c33728.png", "osmTags": { "and": [ "power=transformer", @@ -435249,7 +435463,7 @@ }, { "question": "Gavle Energi", - "icon": "./assets/data/nsi/logos/gavleenergi-da9798.png", + "icon": "https://data.mapcomplete.org/nsi//logos/gavleenergi-da9798.png", "osmTags": { "and": [ "power=transformer", @@ -435273,7 +435487,7 @@ }, { "question": "GEG", - "icon": "./assets/data/nsi/logos/geg-bc2a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/geg-bc2a36.jpg", "osmTags": { "and": [ "power=transformer", @@ -435345,7 +435559,7 @@ }, { "question": "GEW Wilhelmshaven", - "icon": "./assets/data/nsi/logos/gewwilhelmshaven-d8137c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gewwilhelmshaven-d8137c.jpg", "osmTags": { "and": [ "power=transformer", @@ -435390,7 +435604,7 @@ }, { "question": "Glades Electric Co-Op", - "icon": "./assets/data/nsi/logos/gladeselectriccoop-c33728.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gladeselectriccoop-c33728.jpg", "osmTags": { "and": [ "power=transformer", @@ -435419,7 +435633,7 @@ }, { "question": "Glitre Nett", - "icon": "./assets/data/nsi/logos/glitrenett-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/glitrenett-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -435434,7 +435648,7 @@ }, { "question": "Golden Spread Electric Cooperative", - "icon": "./assets/data/nsi/logos/goldenspreadelectriccooperative-70fbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goldenspreadelectriccooperative-70fbe7.jpg", "osmTags": { "and": [ "power=transformer", @@ -435449,7 +435663,7 @@ }, { "question": "Grand River Dam Authority", - "icon": "./assets/data/nsi/logos/grandriverdamauthority-bab4e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/grandriverdamauthority-bab4e4.jpg", "osmTags": { "and": [ "power=transformer", @@ -435465,7 +435679,7 @@ }, { "question": "Great River Energy", - "icon": "./assets/data/nsi/logos/greatriverenergy-9a842a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/greatriverenergy-9a842a.png", "osmTags": { "and": [ "power=transformer", @@ -435504,7 +435718,7 @@ }, { "question": "Greeneville Energy Authority", - "icon": "./assets/data/nsi/logos/greenevilleenergyauthority-3fded7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenevilleenergyauthority-3fded7.jpg", "osmTags": { "and": [ "power=transformer", @@ -435519,7 +435733,7 @@ }, { "question": "Greenville Utilities Commission", - "icon": "./assets/data/nsi/logos/greenvilleutilitiescommission-458d87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/greenvilleutilitiescommission-458d87.jpg", "osmTags": { "and": [ "power=transformer", @@ -435543,7 +435757,7 @@ }, { "question": "Groupe E", - "icon": "./assets/data/nsi/logos/groupee-b75b2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/groupee-b75b2e.jpg", "osmTags": { "and": [ "power=transformer", @@ -435567,7 +435781,7 @@ }, { "question": "Guadalupe Valley Electric Cooperative", - "icon": "./assets/data/nsi/logos/guadalupevalleyelectriccooperative-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/guadalupevalleyelectriccooperative-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -435598,7 +435812,7 @@ }, { "question": "HanseWerk", - "icon": "./assets/data/nsi/logos/hansewerk-e097a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hansewerk-e097a8.jpg", "osmTags": { "and": [ "power=transformer", @@ -435613,7 +435827,7 @@ }, { "question": "Harz Energie", - "icon": "./assets/data/nsi/logos/harzenergie-e097a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/harzenergie-e097a8.jpg", "osmTags": { "and": [ "power=transformer", @@ -435628,7 +435842,7 @@ }, { "question": "Haugaland Kraft Nett", - "icon": "./assets/data/nsi/logos/haugalandkraftnett-7fe9fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/haugalandkraftnett-7fe9fe.png", "osmTags": { "and": [ "power=transformer", @@ -435652,7 +435866,7 @@ }, { "question": "Hawaiian Electric Company", - "icon": "./assets/data/nsi/logos/hawaiianelectriccompany-151da3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hawaiianelectriccompany-151da3.jpg", "osmTags": { "and": [ "power=transformer", @@ -435713,7 +435927,7 @@ }, { "question": "Holmes-Wayne Electric Cooperative", - "icon": "./assets/data/nsi/logos/holmeswayneelectriccooperative-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/holmeswayneelectriccooperative-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -435728,7 +435942,7 @@ }, { "question": "Hoosier Energy", - "icon": "./assets/data/nsi/logos/hoosierenergy-997648.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hoosierenergy-997648.jpg", "osmTags": { "and": [ "power=transformer", @@ -435743,7 +435957,7 @@ }, { "question": "HS1 Ltd", - "icon": "./assets/data/nsi/logos/hs1ltd-35338a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hs1ltd-35338a.svg", "osmTags": { "and": [ "power=transformer", @@ -435767,7 +435981,7 @@ }, { "question": "Huntsville Utilities", - "icon": "./assets/data/nsi/logos/huntsvilleutilities-a5723a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/huntsvilleutilities-a5723a.jpg", "osmTags": { "and": [ "power=transformer", @@ -435796,7 +436010,7 @@ }, { "question": "Hydro Ottawa", - "icon": "./assets/data/nsi/logos/hydroottawa-88d972.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroottawa-88d972.svg", "osmTags": { "and": [ "power=transformer", @@ -435811,7 +436025,7 @@ }, { "question": "Hydro Tasmania", - "icon": "./assets/data/nsi/logos/hydrotasmania-e46949.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/hydrotasmania-e46949.jpg", "osmTags": { "and": [ "power=transformer", @@ -435826,7 +436040,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-40df57.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-40df57.png", "osmTags": { "and": [ "power=transformer", @@ -435850,7 +436064,7 @@ }, { "question": "Iberdrola", - "icon": "./assets/data/nsi/logos/iberdrola-636d24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/iberdrola-636d24.jpg", "osmTags": { "and": [ "power=transformer", @@ -435865,7 +436079,7 @@ }, { "question": "Idaho Power", - "icon": "./assets/data/nsi/logos/idahopower-0840f5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/idahopower-0840f5.jpg", "osmTags": { "and": [ "power=transformer", @@ -435880,7 +436094,7 @@ }, { "question": "illwerke vkw", - "icon": "./assets/data/nsi/logos/illwerkevkw-c84cac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/illwerkevkw-c84cac.png", "osmTags": { "and": [ "power=transformer", @@ -435895,7 +436109,7 @@ }, { "question": "Imperial Irrigation District", - "icon": "./assets/data/nsi/logos/imperialirrigationdistrict-a1ef23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/imperialirrigationdistrict-a1ef23.jpg", "osmTags": { "and": [ "power=transformer", @@ -435911,7 +436125,7 @@ }, { "question": "Independence Power & Light", - "icon": "./assets/data/nsi/logos/independencepowerandlight-148d30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/independencepowerandlight-148d30.jpg", "osmTags": { "and": [ "power=transformer", @@ -435926,7 +436140,7 @@ }, { "question": "Indiana Michigan Power", - "icon": "./assets/data/nsi/logos/indianamichiganpower-513574.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianamichiganpower-513574.png", "osmTags": { "and": [ "power=transformer", @@ -435942,7 +436156,7 @@ }, { "question": "Indianapolis Power & Light", - "icon": "./assets/data/nsi/logos/indianapolispowerandlight-d0bea9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/indianapolispowerandlight-d0bea9.png", "osmTags": { "and": [ "power=transformer", @@ -435967,7 +436181,7 @@ }, { "question": "infra fürth", - "icon": "./assets/data/nsi/logos/infrafurth-40fb94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/infrafurth-40fb94.png", "osmTags": { "and": [ "power=transformer", @@ -435982,7 +436196,7 @@ }, { "question": "Infrabel", - "icon": "./assets/data/nsi/logos/infrabel-4648a1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/infrabel-4648a1.png", "osmTags": { "and": [ "power=transformer", @@ -435997,7 +436211,7 @@ }, { "question": "Infraestruturas de Portugal", - "icon": "./assets/data/nsi/logos/infraestruturasdeportugal-e26b9a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/infraestruturasdeportugal-e26b9a.jpg", "osmTags": { "and": [ "power=transformer", @@ -436021,7 +436235,7 @@ }, { "question": "Innogy", - "icon": "./assets/data/nsi/logos/innogy-8c57c6.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/innogy-8c57c6.svg", "osmTags": { "and": [ "power=transformer", @@ -436036,7 +436250,7 @@ }, { "question": "Instituto Costarricense de Electricidad", - "icon": "./assets/data/nsi/logos/institutocostarricensedeelectricidad-93b425.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/institutocostarricensedeelectricidad-93b425.jpg", "osmTags": { "and": [ "power=transformer", @@ -436067,7 +436281,7 @@ }, { "question": "Invenergy", - "icon": "./assets/data/nsi/logos/invenergy-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/invenergy-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -436082,7 +436296,7 @@ }, { "question": "IPTO", - "icon": "./assets/data/nsi/logos/ipto-922fc1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ipto-922fc1.png", "osmTags": { "and": [ "power=transformer", @@ -436097,7 +436311,7 @@ }, { "question": "Iren Energia", - "icon": "./assets/data/nsi/logos/irenenergia-713962.png", + "icon": "https://data.mapcomplete.org/nsi//logos/irenenergia-713962.png", "osmTags": { "and": [ "power=transformer", @@ -436112,7 +436326,7 @@ }, { "question": "Irish Rail", - "icon": "./assets/data/nsi/logos/irishrail-fddd7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishrail-fddd7d.jpg", "osmTags": { "and": [ "power=transformer", @@ -436147,7 +436361,7 @@ }, { "question": "ITC", - "icon": "./assets/data/nsi/logos/itc-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/itc-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -436162,7 +436376,7 @@ }, { "question": "Jackson Energy Authority", - "icon": "./assets/data/nsi/logos/jacksonenergyauthority-3fded7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonenergyauthority-3fded7.jpg", "osmTags": { "and": [ "power=transformer", @@ -436177,7 +436391,7 @@ }, { "question": "Jacksonville Electric Authority", - "icon": "./assets/data/nsi/logos/jacksonvilleelectricauthority-a9ebfc.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jacksonvilleelectricauthority-a9ebfc.jpg", "osmTags": { "and": [ "power=transformer", @@ -436207,7 +436421,7 @@ }, { "question": "Jersey Central Power and Light", - "icon": "./assets/data/nsi/logos/jerseycentralpowerandlight-6ae7d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseycentralpowerandlight-6ae7d0.jpg", "osmTags": { "and": [ "power=transformer", @@ -436223,7 +436437,7 @@ }, { "question": "Jersey Electricity Company", - "icon": "./assets/data/nsi/logos/jerseyelectricitycompany-c279ee.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jerseyelectricitycompany-c279ee.jpg", "osmTags": { "and": [ "power=transformer", @@ -436238,7 +436452,7 @@ }, { "question": "Joe Wheeler EMC", - "icon": "./assets/data/nsi/logos/joewheeleremc-a5723a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/joewheeleremc-a5723a.jpg", "osmTags": { "and": [ "power=transformer", @@ -436267,7 +436481,7 @@ }, { "question": "Jonesboro City Water and Light", - "icon": "./assets/data/nsi/logos/jonesborocitywaterandlight-0a90d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/jonesborocitywaterandlight-0a90d3.jpg", "osmTags": { "and": [ "power=transformer", @@ -436282,7 +436496,7 @@ }, { "question": "JR東日本", - "icon": "./assets/data/nsi/logos/eastjapanrailwaycompany-2c1653.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-2c1653.png", "osmTags": { "and": [ "power=transformer", @@ -436316,7 +436530,7 @@ }, { "question": "Kansas City BPU", - "icon": "./assets/data/nsi/logos/kansascityboardofpublicutilities-5fb284.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kansascityboardofpublicutilities-5fb284.png", "osmTags": { "and": [ "power=transformer", @@ -436347,7 +436561,7 @@ }, { "question": "Kauai Island Utility Cooperative", - "icon": "./assets/data/nsi/logos/kauaiislandutilitycooperative-151da3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kauaiislandutilitycooperative-151da3.jpg", "osmTags": { "and": [ "power=transformer", @@ -436363,7 +436577,7 @@ }, { "question": "Kentucky Power", - "icon": "./assets/data/nsi/logos/kentuckypower-505574.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kentuckypower-505574.png", "osmTags": { "and": [ "power=transformer", @@ -436392,7 +436606,7 @@ }, { "question": "Kerala State Electricity Board", - "icon": "./assets/data/nsi/logos/keralastateelectricityboard-1b8373.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/keralastateelectricityboard-1b8373.jpg", "osmTags": { "and": [ "power=transformer", @@ -436417,7 +436631,7 @@ }, { "question": "Kissimmee Utility Authority", - "icon": "./assets/data/nsi/logos/kissimmeeutilityauthority-c33728.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kissimmeeutilityauthority-c33728.png", "osmTags": { "and": [ "power=transformer", @@ -436432,7 +436646,7 @@ }, { "question": "KiwiRail", - "icon": "./assets/data/nsi/logos/kiwirail-05e84a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kiwirail-05e84a.jpg", "osmTags": { "and": [ "power=transformer", @@ -436447,7 +436661,7 @@ }, { "question": "Knoxville Utilities Board", - "icon": "./assets/data/nsi/logos/knoxvilleutilitiesboard-3fded7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/knoxvilleutilitiesboard-3fded7.jpg", "osmTags": { "and": [ "power=transformer", @@ -436463,7 +436677,7 @@ }, { "question": "KommEnergie", - "icon": "./assets/data/nsi/logos/kommenergie-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kommenergie-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -436501,7 +436715,7 @@ }, { "question": "Kreiswerke Main-Kinzig", - "icon": "./assets/data/nsi/logos/kreiswerkemainkinzig-b05a85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kreiswerkemainkinzig-b05a85.jpg", "osmTags": { "and": [ "power=transformer", @@ -436543,7 +436757,7 @@ }, { "question": "Kystnett", - "icon": "./assets/data/nsi/logos/kystnett-7fe9fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kystnett-7fe9fe.jpg", "osmTags": { "and": [ "power=transformer", @@ -436558,7 +436772,7 @@ }, { "question": "LADWP", - "icon": "./assets/data/nsi/logos/losangelesdepartmentofwaterandpower-a1ef23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelesdepartmentofwaterandpower-a1ef23.png", "osmTags": { "and": [ "power=transformer", @@ -436574,7 +436788,7 @@ }, { "question": "Lafayette Utilities System", - "icon": "./assets/data/nsi/logos/lafayetteutilitiessystem-9b6869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lafayetteutilitiessystem-9b6869.jpg", "osmTags": { "and": [ "power=transformer", @@ -436618,7 +436832,7 @@ }, { "question": "LCEC", - "icon": "./assets/data/nsi/logos/leecountyelectriccooperative-c33728.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/leecountyelectriccooperative-c33728.jpg", "osmTags": { "and": [ "power=transformer", @@ -436634,7 +436848,7 @@ }, { "question": "Lechwerke", - "icon": "./assets/data/nsi/logos/lechwerke-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lechwerke-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -436682,7 +436896,7 @@ }, { "question": "Liander", - "icon": "./assets/data/nsi/logos/liander-dcd896.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liander-dcd896.png", "osmTags": { "and": [ "power=transformer", @@ -436726,7 +436940,7 @@ }, { "question": "Lincoln Electric System", - "icon": "./assets/data/nsi/logos/lincolnelectricsystem-5b199d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lincolnelectricsystem-5b199d.png", "osmTags": { "and": [ "power=transformer", @@ -436750,7 +436964,7 @@ }, { "question": "Linja", - "icon": "./assets/data/nsi/logos/linja-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/linja-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -436779,7 +436993,7 @@ }, { "question": "Linz AG", - "icon": "./assets/data/nsi/logos/linzag-f02bb8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/linzag-f02bb8.jpg", "osmTags": { "and": [ "power=transformer", @@ -436831,7 +437045,7 @@ }, { "question": "London Underground", - "icon": "./assets/data/nsi/logos/londonunderground-306792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/londonunderground-306792.jpg", "osmTags": { "and": [ "power=transformer", @@ -436860,7 +437074,7 @@ }, { "question": "Lorain-Medina Rural Electric Cooperative", - "icon": "./assets/data/nsi/logos/lorainmedinaruralelectriccooperative-2f96e1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lorainmedinaruralelectriccooperative-2f96e1.jpg", "osmTags": { "and": [ "power=transformer", @@ -436875,7 +437089,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-70fbe7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-70fbe7.png", "osmTags": { "and": [ "power=transformer", @@ -436891,7 +437105,7 @@ }, { "question": "LSW Netz", - "icon": "./assets/data/nsi/logos/lswnetz-d8137c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswnetz-d8137c.png", "osmTags": { "and": [ "power=transformer", @@ -436906,7 +437120,7 @@ }, { "question": "Luas - Transdev Dublin Light Rail Limited", - "icon": "./assets/data/nsi/logos/luastransdevdublinlightraillimited-fddd7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/luastransdevdublinlightraillimited-fddd7d.jpg", "osmTags": { "and": [ "power=transformer", @@ -436921,7 +437135,7 @@ }, { "question": "Lubbock Power & Light", - "icon": "./assets/data/nsi/logos/lubbockpowerandlight-70fbe7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-70fbe7.png", "osmTags": { "and": [ "power=transformer", @@ -436983,7 +437197,7 @@ }, { "question": "Lyse", - "icon": "./assets/data/nsi/logos/lyse-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/lyse-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -436998,7 +437212,7 @@ }, { "question": "Magdeburger Verkehrsbetriebe", - "icon": "./assets/data/nsi/logos/magdeburgerverkehrsbetriebe-80fbfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/magdeburgerverkehrsbetriebe-80fbfb.jpg", "osmTags": { "and": [ "power=transformer", @@ -437023,7 +437237,7 @@ }, { "question": "Manitoba Hydro", - "icon": "./assets/data/nsi/logos/manitobahydro-4c81de.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manitobahydro-4c81de.svg", "osmTags": { "and": [ "power=transformer", @@ -437052,7 +437266,7 @@ }, { "question": "Maquoketa Valley REC", - "icon": "./assets/data/nsi/logos/maquoketavalleyrec-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/maquoketavalleyrec-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -437067,7 +437281,7 @@ }, { "question": "Marathon Pipe Line", - "icon": "./assets/data/nsi/logos/marathonpipeline-9a842a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/marathonpipeline-9a842a.svg", "osmTags": { "and": [ "power=transformer", @@ -437096,7 +437310,7 @@ }, { "question": "Mark-E", - "icon": "./assets/data/nsi/logos/marke-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marke-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -437125,7 +437339,7 @@ }, { "question": "Marshall Municipal Utilities", - "icon": "./assets/data/nsi/logos/marshallmunicipalutilities-c7fa5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshallmunicipalutilities-c7fa5f.jpg", "osmTags": { "and": [ "power=transformer", @@ -437140,7 +437354,7 @@ }, { "question": "Marshall-DeKalb Electric Cooperative", - "icon": "./assets/data/nsi/logos/marshalldekalbelectriccooperative-a5723a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/marshalldekalbelectriccooperative-a5723a.jpg", "osmTags": { "and": [ "power=transformer", @@ -437206,7 +437420,7 @@ }, { "question": "Memphis Light, Gas and Water", - "icon": "./assets/data/nsi/logos/memphislightgasandwater-3fded7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphislightgasandwater-3fded7.jpg", "osmTags": { "and": [ "power=transformer", @@ -437222,7 +437436,7 @@ }, { "question": "Meralco", - "icon": "./assets/data/nsi/logos/meralco-d6fa7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meralco-d6fa7d.jpg", "osmTags": { "and": [ "power=transformer", @@ -437237,7 +437451,7 @@ }, { "question": "Met-Ed", - "icon": "./assets/data/nsi/logos/meted-c93538.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meted-c93538.jpg", "osmTags": { "and": [ "power=transformer", @@ -437252,7 +437466,7 @@ }, { "question": "Metra", - "icon": "./assets/data/nsi/logos/metra-60c111.png", + "icon": "https://data.mapcomplete.org/nsi//logos/metra-60c111.png", "osmTags": { "and": [ "power=transformer", @@ -437276,7 +437490,7 @@ }, { "question": "MidAmerican Energy", - "icon": "./assets/data/nsi/logos/midamericanenergy-517f79.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midamericanenergy-517f79.jpg", "osmTags": { "and": [ "power=transformer", @@ -437305,7 +437519,7 @@ }, { "question": "Midwest Energy", - "icon": "./assets/data/nsi/logos/midwestenergy-5fb284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/midwestenergy-5fb284.jpg", "osmTags": { "and": [ "power=transformer", @@ -437343,7 +437557,7 @@ }, { "question": "Minnesota Valley Cooperative Light & Power Association", - "icon": "./assets/data/nsi/logos/minnesotavalleycooperativelightandpowerassociation-c7fa5f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/minnesotavalleycooperativelightandpowerassociation-c7fa5f.jpg", "osmTags": { "and": [ "power=transformer", @@ -437358,7 +437572,7 @@ }, { "question": "Minnkota Power Cooperative", - "icon": "./assets/data/nsi/logos/minnkotapowercooperative-47dd8c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/minnkotapowercooperative-47dd8c.png", "osmTags": { "and": [ "power=transformer", @@ -437387,7 +437601,7 @@ }, { "question": "Mississippi Power", - "icon": "./assets/data/nsi/logos/mississippipower-37fac4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/mississippipower-37fac4.png", "osmTags": { "and": [ "power=transformer", @@ -437416,7 +437630,7 @@ }, { "question": "Mon Power", - "icon": "./assets/data/nsi/logos/monpower-1cd21e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/monpower-1cd21e.jpg", "osmTags": { "and": [ "power=transformer", @@ -437483,7 +437697,7 @@ }, { "question": "NamPower", - "icon": "./assets/data/nsi/logos/nampower-71c590.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nampower-71c590.svg", "osmTags": { "and": [ "power=transformer", @@ -437498,7 +437712,7 @@ }, { "question": "Nashville Electric Service", - "icon": "./assets/data/nsi/logos/nashvilleelectricservice-3fded7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nashvilleelectricservice-3fded7.png", "osmTags": { "and": [ "power=transformer", @@ -437514,7 +437728,7 @@ }, { "question": "National Grid", - "icon": "./assets/data/nsi/logos/nationalgrid-6eb91f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgrid-6eb91f.png", "osmTags": { "and": [ "power=transformer", @@ -437529,7 +437743,7 @@ }, { "question": "National Grid Corporation of the Philippines", - "icon": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-d6fa7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-d6fa7d.jpg", "osmTags": { "and": [ "power=transformer", @@ -437545,7 +437759,7 @@ }, { "question": "National Grid Electricity Distribution", - "icon": "./assets/data/nsi/logos/nationalgridelectricitydistribution-306792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitydistribution-306792.jpg", "osmTags": { "and": [ "power=transformer", @@ -437574,7 +437788,7 @@ }, { "question": "National Grid Electricity Transmission", - "icon": "./assets/data/nsi/logos/nationalgridelectricitytransmission-306792.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridelectricitytransmission-306792.svg", "osmTags": { "and": [ "power=transformer", @@ -437589,7 +437803,7 @@ }, { "question": "NB Power", - "icon": "./assets/data/nsi/logos/nbpower-6196b9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbpower-6196b9.svg", "osmTags": { "and": [ "power=transformer", @@ -437663,7 +437877,7 @@ }, { "question": "Neoenergia", - "icon": "./assets/data/nsi/logos/neoenergia-dc5268.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/neoenergia-dc5268.svg", "osmTags": { "and": [ "power=transformer", @@ -437701,7 +437915,7 @@ }, { "question": "Network Rail", - "icon": "./assets/data/nsi/logos/networkrail-35338a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkrail-35338a.jpg", "osmTags": { "and": [ "power=transformer", @@ -437730,7 +437944,7 @@ }, { "question": "Network Waitaki", - "icon": "./assets/data/nsi/logos/networkwaitaki-05e84a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkwaitaki-05e84a.jpg", "osmTags": { "and": [ "power=transformer", @@ -437759,7 +437973,7 @@ }, { "question": "Netz NÖ", - "icon": "./assets/data/nsi/logos/netzno-c84cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzno-c84cac.jpg", "osmTags": { "and": [ "power=transformer", @@ -437803,7 +438017,7 @@ }, { "question": "Netze BW GmbH", - "icon": "./assets/data/nsi/logos/netzebwgmbh-645c81.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-645c81.svg", "osmTags": { "and": [ "power=transformer", @@ -437861,7 +438075,7 @@ }, { "question": "NEW", - "icon": "./assets/data/nsi/logos/new-ad09f9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/new-ad09f9.svg", "osmTags": { "and": [ "power=transformer", @@ -437876,7 +438090,7 @@ }, { "question": "New Braunfels Utilities", - "icon": "./assets/data/nsi/logos/newbraunfelsutilities-70fbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newbraunfelsutilities-70fbe7.jpg", "osmTags": { "and": [ "power=transformer", @@ -437891,7 +438105,7 @@ }, { "question": "New York City Transit Authority", - "icon": "./assets/data/nsi/logos/newyorkcitytransitauthority-0d43f0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkcitytransitauthority-0d43f0.svg", "osmTags": { "and": [ "power=transformer", @@ -437906,7 +438120,7 @@ }, { "question": "Newfoundland and Labrador Hydro", - "icon": "./assets/data/nsi/logos/newfoundlandandlabradorhydro-261cf4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandandlabradorhydro-261cf4.jpg", "osmTags": { "and": [ "power=transformer", @@ -437921,7 +438135,7 @@ }, { "question": "Newfoundland Power", - "icon": "./assets/data/nsi/logos/newfoundlandpower-261cf4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/newfoundlandpower-261cf4.png", "osmTags": { "and": [ "power=transformer", @@ -437945,7 +438159,7 @@ }, { "question": "NextEra Energy", - "icon": "./assets/data/nsi/logos/nexteraenergy-b66412.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nexteraenergy-b66412.png", "osmTags": { "and": [ "power=transformer", @@ -437960,7 +438174,7 @@ }, { "question": "NIE Networks", - "icon": "./assets/data/nsi/logos/nienetworks-7d8fef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nienetworks-7d8fef.jpg", "osmTags": { "and": [ "power=transformer", @@ -437984,7 +438198,7 @@ }, { "question": "NJ Transit", - "icon": "./assets/data/nsi/logos/njtransit-6ae7d0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/njtransit-6ae7d0.png", "osmTags": { "and": [ "power=transformer", @@ -438038,7 +438252,7 @@ }, { "question": "Nordkraft Nett", - "icon": "./assets/data/nsi/logos/nordkraftnett-7fe9fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nordkraftnett-7fe9fe.jpg", "osmTags": { "and": [ "power=transformer", @@ -438081,7 +438295,7 @@ }, { "question": "Norfolk & Norwich University Hospital Trust", - "icon": "./assets/data/nsi/logos/norfolkandnorwichuniversityhospitaltrust-35338a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolkandnorwichuniversityhospitaltrust-35338a.jpg", "osmTags": { "and": [ "power=transformer", @@ -438124,7 +438338,7 @@ }, { "question": "Northern Powergrid", - "icon": "./assets/data/nsi/logos/northernpowergrid-306792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northernpowergrid-306792.jpg", "osmTags": { "and": [ "power=transformer", @@ -438148,7 +438362,7 @@ }, { "question": "Northpower", - "icon": "./assets/data/nsi/logos/northpower-05e84a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/northpower-05e84a.png", "osmTags": { "and": [ "power=transformer", @@ -438163,7 +438377,7 @@ }, { "question": "Northwest Energy", - "icon": "./assets/data/nsi/logos/northwestenergy-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwestenergy-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -438178,7 +438392,7 @@ }, { "question": "NorthWestern Energy", - "icon": "./assets/data/nsi/logos/northwesternenergy-1ef91e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/northwesternenergy-1ef91e.jpg", "osmTags": { "and": [ "power=transformer", @@ -438193,7 +438407,7 @@ }, { "question": "Nova Scotia Power", - "icon": "./assets/data/nsi/logos/novascotiapower-192d87.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novascotiapower-192d87.jpg", "osmTags": { "and": [ "power=transformer", @@ -438208,7 +438422,7 @@ }, { "question": "NOVEC", - "icon": "./assets/data/nsi/logos/novec-294bac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/novec-294bac.jpg", "osmTags": { "and": [ "power=transformer", @@ -438246,7 +438460,7 @@ }, { "question": "NTE Nett", - "icon": "./assets/data/nsi/logos/ntenett-7fe9fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ntenett-7fe9fe.png", "osmTags": { "and": [ "power=transformer", @@ -438261,7 +438475,7 @@ }, { "question": "Nukissiorfiit", - "icon": "./assets/data/nsi/logos/nukissiorfiit-a74bf3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nukissiorfiit-a74bf3.jpg", "osmTags": { "and": [ "power=transformer", @@ -438276,7 +438490,7 @@ }, { "question": "NV Energy", - "icon": "./assets/data/nsi/logos/nvenergy-da11cc.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nvenergy-da11cc.png", "osmTags": { "and": [ "power=transformer", @@ -438291,7 +438505,7 @@ }, { "question": "NW Electric Power Cooperative", - "icon": "./assets/data/nsi/logos/nwelectricpowercooperative-148d30.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nwelectricpowercooperative-148d30.jpg", "osmTags": { "and": [ "power=transformer", @@ -438306,7 +438520,7 @@ }, { "question": "NYSEG", - "icon": "./assets/data/nsi/logos/nyseg-81dd91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nyseg-81dd91.jpg", "osmTags": { "and": [ "power=transformer", @@ -438359,7 +438573,7 @@ }, { "question": "Oklahoma Gas & Electric", - "icon": "./assets/data/nsi/logos/oklahomagasandelectric-bab4e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oklahomagasandelectric-bab4e4.jpg", "osmTags": { "and": [ "power=transformer", @@ -438375,7 +438589,7 @@ }, { "question": "Omaha Public Power District", - "icon": "./assets/data/nsi/logos/omahapublicpowerdistrict-5b199d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/omahapublicpowerdistrict-5b199d.png", "osmTags": { "and": [ "power=transformer", @@ -438390,7 +438604,7 @@ }, { "question": "Oncor", - "icon": "./assets/data/nsi/logos/oncor-70fbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oncor-70fbe7.jpg", "osmTags": { "and": [ "power=transformer", @@ -438419,7 +438633,7 @@ }, { "question": "ORES", - "icon": "./assets/data/nsi/logos/ores-4648a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ores-4648a1.jpg", "osmTags": { "and": [ "power=transformer", @@ -438434,7 +438648,7 @@ }, { "question": "Orion New Zealand", - "icon": "./assets/data/nsi/logos/orionnewzealand-05e84a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orionnewzealand-05e84a.jpg", "osmTags": { "and": [ "power=transformer", @@ -438449,7 +438663,7 @@ }, { "question": "Orlando Utilities Commission", - "icon": "./assets/data/nsi/logos/orlandoutilitiescommission-c33728.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/orlandoutilitiescommission-c33728.jpg", "osmTags": { "and": [ "power=transformer", @@ -438465,7 +438679,7 @@ }, { "question": "Osterholzer Stadtwerke", - "icon": "./assets/data/nsi/logos/osterholzerstadtwerke-d8137c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/osterholzerstadtwerke-d8137c.jpg", "osmTags": { "and": [ "power=transformer", @@ -438503,7 +438717,7 @@ }, { "question": "Otter Tail Power Company", - "icon": "./assets/data/nsi/logos/ottertailpowercompany-88d76c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ottertailpowercompany-88d76c.jpg", "osmTags": { "and": [ "power=transformer", @@ -438518,7 +438732,7 @@ }, { "question": "Oulun Energia Siirto ja Jakelu", - "icon": "./assets/data/nsi/logos/oulunenergiasiirtojajakelu-5ad418.png", + "icon": "https://data.mapcomplete.org/nsi//logos/oulunenergiasiirtojajakelu-5ad418.png", "osmTags": { "and": [ "power=transformer", @@ -438561,7 +438775,7 @@ }, { "question": "Pacific Gas and Electric Company", - "icon": "./assets/data/nsi/logos/pacificgasandelectriccompany-a1ef23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificgasandelectriccompany-a1ef23.png", "osmTags": { "and": [ "power=transformer", @@ -438577,7 +438791,7 @@ }, { "question": "Pacific Power", - "icon": "./assets/data/nsi/logos/pacificpower-b7667c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificpower-b7667c.svg", "osmTags": { "and": [ "power=transformer", @@ -438592,7 +438806,7 @@ }, { "question": "PacifiCorp", - "icon": "./assets/data/nsi/logos/pacificorp-9a842a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/pacificorp-9a842a.svg", "osmTags": { "and": [ "power=transformer", @@ -438625,7 +438839,7 @@ }, { "question": "PEA", - "icon": "./assets/data/nsi/logos/pea-e82cec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pea-e82cec.jpg", "osmTags": { "and": [ "power=transformer", @@ -438649,7 +438863,7 @@ }, { "question": "PECO", - "icon": "./assets/data/nsi/logos/peco-0ba8e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/peco-0ba8e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -438664,7 +438878,7 @@ }, { "question": "Pedernales Electric Cooperative", - "icon": "./assets/data/nsi/logos/pedernaleselectriccooperative-9a842a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pedernaleselectriccooperative-9a842a.png", "osmTags": { "and": [ "power=transformer", @@ -438679,7 +438893,7 @@ }, { "question": "Penelec", - "icon": "./assets/data/nsi/logos/penelec-c93538.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/penelec-c93538.jpg", "osmTags": { "and": [ "power=transformer", @@ -438709,7 +438923,7 @@ }, { "question": "Penn Power", - "icon": "./assets/data/nsi/logos/pennpower-c93538.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pennpower-c93538.jpg", "osmTags": { "and": [ "power=transformer", @@ -438724,7 +438938,7 @@ }, { "question": "Perusahaan Listrik Negara", - "icon": "./assets/data/nsi/logos/perusahaanlistriknegara-798eb2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/perusahaanlistriknegara-798eb2.jpg", "osmTags": { "and": [ "power=transformer", @@ -438740,7 +438954,7 @@ }, { "question": "Petroamazonas", - "icon": "./assets/data/nsi/logos/petroamazonas-0772ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/petroamazonas-0772ca.jpg", "osmTags": { "and": [ "power=transformer", @@ -438755,7 +438969,7 @@ }, { "question": "Pfalzwerke AG", - "icon": "./assets/data/nsi/logos/pfalzwerkeag-3d40d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/pfalzwerkeag-3d40d5.png", "osmTags": { "and": [ "power=transformer", @@ -438793,7 +439007,7 @@ }, { "question": "PGE Dystrybucja", - "icon": "./assets/data/nsi/logos/pgedystrybucja-b34e65.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-b34e65.jpg", "osmTags": { "and": [ "power=transformer", @@ -438808,7 +439022,7 @@ }, { "question": "PGE Energetyka Kolejowa", - "icon": "./assets/data/nsi/logos/pgeenergetykakolejowa-b34e65.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgeenergetykakolejowa-b34e65.jpg", "osmTags": { "and": [ "power=transformer", @@ -438823,7 +439037,7 @@ }, { "question": "PJM", - "icon": "./assets/data/nsi/logos/pjm-6ae7d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pjm-6ae7d0.jpg", "osmTags": { "and": [ "power=transformer", @@ -438838,7 +439052,7 @@ }, { "question": "PNM", - "icon": "./assets/data/nsi/logos/publicservicecompanyofnewmexico-78bc42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofnewmexico-78bc42.jpg", "osmTags": { "and": [ "power=transformer", @@ -438854,7 +439068,7 @@ }, { "question": "Polskie Sieci Elektroenergetyczne", - "icon": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-4f94e1.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-4f94e1.png", "osmTags": { "and": [ "power=transformer", @@ -438870,7 +439084,7 @@ }, { "question": "Portland General Electric", - "icon": "./assets/data/nsi/logos/portlandgeneralelectric-8ea204.png", + "icon": "https://data.mapcomplete.org/nsi//logos/portlandgeneralelectric-8ea204.png", "osmTags": { "and": [ "power=transformer", @@ -438886,7 +439100,7 @@ }, { "question": "Potomac Electric Power Company", - "icon": "./assets/data/nsi/logos/potomacelectricpowercompany-ad237e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/potomacelectricpowercompany-ad237e.jpg", "osmTags": { "and": [ "power=transformer", @@ -438902,7 +439116,7 @@ }, { "question": "Power and Water", - "icon": "./assets/data/nsi/logos/powerandwater-375533.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerandwater-375533.jpg", "osmTags": { "and": [ "power=transformer", @@ -438917,7 +439131,7 @@ }, { "question": "Power Grid Corporation of India Ltd", - "icon": "./assets/data/nsi/logos/powergridcorporationofindialtd-1b8373.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powergridcorporationofindialtd-1b8373.jpg", "osmTags": { "and": [ "power=transformer", @@ -438932,7 +439146,7 @@ }, { "question": "Powerco", - "icon": "./assets/data/nsi/logos/powerco-05e84a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerco-05e84a.jpg", "osmTags": { "and": [ "power=transformer", @@ -438947,7 +439161,7 @@ }, { "question": "Powercor", - "icon": "./assets/data/nsi/logos/powercor-ace77b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/powercor-ace77b.png", "osmTags": { "and": [ "power=transformer", @@ -438962,7 +439176,7 @@ }, { "question": "Powerlink", - "icon": "./assets/data/nsi/logos/powerlink-c26b41.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/powerlink-c26b41.jpg", "osmTags": { "and": [ "power=transformer", @@ -438992,7 +439206,7 @@ }, { "question": "PPL", - "icon": "./assets/data/nsi/logos/ppl-0e9d9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ppl-0e9d9b.jpg", "osmTags": { "and": [ "power=transformer", @@ -439007,7 +439221,7 @@ }, { "question": "PRE", - "icon": "./assets/data/nsi/logos/pre-5a056f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pre-5a056f.jpg", "osmTags": { "and": [ "power=transformer", @@ -439022,7 +439236,7 @@ }, { "question": "Premier Energy (Moldova)", - "icon": "./assets/data/nsi/logos/premierenergy-5f4b46.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/premierenergy-5f4b46.jpg", "osmTags": { "and": [ "power=transformer", @@ -439065,7 +439279,7 @@ }, { "question": "ProRail", - "icon": "./assets/data/nsi/logos/prorail-dcd896.png", + "icon": "https://data.mapcomplete.org/nsi//logos/prorail-dcd896.png", "osmTags": { "and": [ "power=transformer", @@ -439089,7 +439303,7 @@ }, { "question": "PSO", - "icon": "./assets/data/nsi/logos/publicservicecompanyofoklahoma-d15bf5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/publicservicecompanyofoklahoma-d15bf5.png", "osmTags": { "and": [ "power=transformer", @@ -439119,7 +439333,7 @@ }, { "question": "Public Service Enterprise Group", - "icon": "./assets/data/nsi/logos/publicserviceenterprisegroup-80d764.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/publicserviceenterprisegroup-80d764.jpg", "osmTags": { "and": [ "power=transformer", @@ -439134,7 +439348,7 @@ }, { "question": "Puerto Rico Electric Power Authority", - "icon": "./assets/data/nsi/logos/puertoricoelectricpowerauthority-3edc24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/puertoricoelectricpowerauthority-3edc24.jpg", "osmTags": { "and": [ "power=transformer", @@ -439150,7 +439364,7 @@ }, { "question": "Puget Sound Energy", - "icon": "./assets/data/nsi/logos/pugetsoundenergy-401d11.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pugetsoundenergy-401d11.jpg", "osmTags": { "and": [ "power=transformer", @@ -439180,7 +439394,7 @@ }, { "question": "Radius Elnet", - "icon": "./assets/data/nsi/logos/radiuselnet-b43408.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/radiuselnet-b43408.jpg", "osmTags": { "and": [ "power=transformer", @@ -439195,7 +439409,7 @@ }, { "question": "Rappahannock Electric Cooperative", - "icon": "./assets/data/nsi/logos/rappahannockelectriccooperative-294bac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rappahannockelectriccooperative-294bac.jpg", "osmTags": { "and": [ "power=transformer", @@ -439210,7 +439424,7 @@ }, { "question": "RATP", - "icon": "./assets/data/nsi/logos/ratp-bc2a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ratp-bc2a36.jpg", "osmTags": { "and": [ "power=transformer", @@ -439261,7 +439475,7 @@ }, { "question": "Red Eléctrica de España", - "icon": "./assets/data/nsi/logos/redelectricadeespana-489479.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/redelectricadeespana-489479.jpg", "osmTags": { "and": [ "power=transformer", @@ -439295,7 +439509,7 @@ }, { "question": "regionalwerk Bodensee", - "icon": "./assets/data/nsi/logos/regionalwerkbodensee-e097a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/regionalwerkbodensee-e097a8.png", "osmTags": { "and": [ "power=transformer", @@ -439310,7 +439524,7 @@ }, { "question": "REN", - "icon": "./assets/data/nsi/logos/ren-e26b9a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ren-e26b9a.svg", "osmTags": { "and": [ "power=transformer", @@ -439380,7 +439594,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-713962.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-713962.svg", "osmTags": { "and": [ "power=transformer", @@ -439395,7 +439609,7 @@ }, { "question": "RheinEnergie", - "icon": "./assets/data/nsi/logos/rheinenergie-e097a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rheinenergie-e097a8.png", "osmTags": { "and": [ "power=transformer", @@ -439410,7 +439624,7 @@ }, { "question": "Rhode Island Energy", - "icon": "./assets/data/nsi/logos/rhodeislandenergy-204a23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rhodeislandenergy-204a23.jpg", "osmTags": { "and": [ "power=transformer", @@ -439434,7 +439648,7 @@ }, { "question": "Rio Grande Energia", - "icon": "./assets/data/nsi/logos/riograndeenergia-dc5268.png", + "icon": "https://data.mapcomplete.org/nsi//logos/riograndeenergia-dc5268.png", "osmTags": { "and": [ "power=transformer", @@ -439449,7 +439663,7 @@ }, { "question": "Rio Tinto Alcan", - "icon": "./assets/data/nsi/logos/riotintoalcan-bd12ad.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/riotintoalcan-bd12ad.svg", "osmTags": { "and": [ "power=transformer", @@ -439464,7 +439678,7 @@ }, { "question": "Rochester Gas & Electric", - "icon": "./assets/data/nsi/logos/rochestergasandelectric-81dd91.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rochestergasandelectric-81dd91.jpg", "osmTags": { "and": [ "power=transformer", @@ -439479,7 +439693,7 @@ }, { "question": "Rocky Mountain Power", - "icon": "./assets/data/nsi/logos/rockymountainpower-b2dffe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rockymountainpower-b2dffe.svg", "osmTags": { "and": [ "power=transformer", @@ -439494,7 +439708,7 @@ }, { "question": "Roseville Electric", - "icon": "./assets/data/nsi/logos/rosevilleelectric-a1ef23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rosevilleelectric-a1ef23.jpg", "osmTags": { "and": [ "power=transformer", @@ -439518,7 +439732,7 @@ }, { "question": "RTE", - "icon": "./assets/data/nsi/logos/rte-bc2a36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rte-bc2a36.png", "osmTags": { "and": [ "power=transformer", @@ -439548,7 +439762,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-8c57c6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-8c57c6.jpg", "osmTags": { "and": [ "power=transformer", @@ -439563,7 +439777,7 @@ }, { "question": "S-Bahn Berlin GmbH", - "icon": "./assets/data/nsi/logos/sbahnberlingmbh-e097a8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/sbahnberlingmbh-e097a8.svg", "osmTags": { "and": [ "power=transformer", @@ -439593,7 +439807,7 @@ }, { "question": "SachsenEnergie", - "icon": "./assets/data/nsi/logos/sachsenenergie-52cc32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sachsenenergie-52cc32.png", "osmTags": { "and": [ "power=transformer", @@ -439608,7 +439822,7 @@ }, { "question": "Sacramento Municipal Utility District", - "icon": "./assets/data/nsi/logos/sacramentomunicipalutilitydistrict-a1ef23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sacramentomunicipalutilitydistrict-a1ef23.jpg", "osmTags": { "and": [ "power=transformer", @@ -439624,7 +439838,7 @@ }, { "question": "Sadales tīkls", - "icon": "./assets/data/nsi/logos/sadalestikls-79b2b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sadalestikls-79b2b7.jpg", "osmTags": { "and": [ "power=transformer", @@ -439639,7 +439853,7 @@ }, { "question": "SAK", - "icon": "./assets/data/nsi/logos/sak-b75b2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sak-b75b2e.jpg", "osmTags": { "and": [ "power=transformer", @@ -439663,7 +439877,7 @@ }, { "question": "Salt River Project", - "icon": "./assets/data/nsi/logos/saltriverproject-b6d642.png", + "icon": "https://data.mapcomplete.org/nsi//logos/saltriverproject-b6d642.png", "osmTags": { "and": [ "power=transformer", @@ -439679,7 +439893,7 @@ }, { "question": "Salzburg AG", - "icon": "./assets/data/nsi/logos/salzburgag-6beb1b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/salzburgag-6beb1b.jpg", "osmTags": { "and": [ "power=transformer", @@ -439703,7 +439917,7 @@ }, { "question": "San Diego Gas & Electric", - "icon": "./assets/data/nsi/logos/sandiegogasandelectric-71613e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sandiegogasandelectric-71613e.jpg", "osmTags": { "and": [ "power=transformer", @@ -439728,7 +439942,7 @@ }, { "question": "Sarawak Energy", - "icon": "./assets/data/nsi/logos/sarawakenergy-ff1f66.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sarawakenergy-ff1f66.jpg", "osmTags": { "and": [ "power=transformer", @@ -439743,7 +439957,7 @@ }, { "question": "SaskPower", - "icon": "./assets/data/nsi/logos/saskpower-abf763.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/saskpower-abf763.svg", "osmTags": { "and": [ "power=transformer", @@ -439758,7 +439972,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-b75b2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-b75b2e.png", "osmTags": { "and": [ "power=transformer", @@ -439773,7 +439987,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-66c909.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-66c909.svg", "osmTags": { "and": [ "power=transformer", @@ -439788,7 +440002,7 @@ }, { "question": "Scottish and Southern Electricity Networks (SSEN)", - "icon": "./assets/data/nsi/logos/scottishandsouthernelectricitynetworks-35338a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/scottishandsouthernelectricitynetworks-35338a.jpg", "osmTags": { "and": [ "power=transformer", @@ -439836,7 +440050,7 @@ }, { "question": "Senelec", - "icon": "./assets/data/nsi/logos/senelec-2c55c3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/senelec-2c55c3.jpg", "osmTags": { "and": [ "power=transformer", @@ -439888,7 +440102,7 @@ }, { "question": "Sibelga", - "icon": "./assets/data/nsi/logos/sibelga-4648a1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sibelga-4648a1.jpg", "osmTags": { "and": [ "power=transformer", @@ -439903,7 +440117,7 @@ }, { "question": "SICAE de la Somme et du Cambraisis", - "icon": "./assets/data/nsi/logos/sicaedelasommeetducambraisis-bc2a36.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sicaedelasommeetducambraisis-bc2a36.jpg", "osmTags": { "and": [ "power=transformer", @@ -439941,7 +440155,7 @@ }, { "question": "SLEMCO", - "icon": "./assets/data/nsi/logos/slemco-9b6869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slemco-9b6869.jpg", "osmTags": { "and": [ "power=transformer", @@ -439956,7 +440170,7 @@ }, { "question": "Slovenská elektrizačná prenosová sústava", - "icon": "./assets/data/nsi/logos/slovenskaelektrizacnaprenosovasustava-1cd5bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/slovenskaelektrizacnaprenosovasustava-1cd5bf.jpg", "osmTags": { "and": [ "power=transformer", @@ -439972,7 +440186,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-bc2a36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-bc2a36.png", "osmTags": { "and": [ "power=transformer", @@ -439987,7 +440201,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-bc2a36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-bc2a36.png", "osmTags": { "and": [ "power=transformer", @@ -440011,7 +440225,7 @@ }, { "question": "Societe Beninoise d'Energie Electrique", - "icon": "./assets/data/nsi/logos/societebeninoisedenergieelectrique-decc63.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/societebeninoisedenergieelectrique-decc63.jpg", "osmTags": { "and": [ "power=transformer", @@ -440028,7 +440242,7 @@ }, { "question": "Sogn og Fjordane Energi", - "icon": "./assets/data/nsi/logos/sognogfjordaneenergi-7fe9fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sognogfjordaneenergi-7fe9fe.jpg", "osmTags": { "and": [ "power=transformer", @@ -440044,7 +440258,7 @@ }, { "question": "Sonelgaz", - "icon": "./assets/data/nsi/logos/sonelgaz-e89c7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sonelgaz-e89c7a.jpg", "osmTags": { "and": [ "power=transformer", @@ -440082,7 +440296,7 @@ }, { "question": "South Texas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southtexaselectriccooperative-70fbe7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southtexaselectriccooperative-70fbe7.jpg", "osmTags": { "and": [ "power=transformer", @@ -440097,7 +440311,7 @@ }, { "question": "Southern California Edison", - "icon": "./assets/data/nsi/logos/southerncaliforniaedison-a1ef23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southerncaliforniaedison-a1ef23.jpg", "osmTags": { "and": [ "power=transformer", @@ -440113,7 +440327,7 @@ }, { "question": "Southwest Arkansas Electric Cooperative", - "icon": "./assets/data/nsi/logos/southwestarkansaselectriccooperative-0a90d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwestarkansaselectriccooperative-0a90d3.jpg", "osmTags": { "and": [ "power=transformer", @@ -440151,7 +440365,7 @@ }, { "question": "SP Energy Networks", - "icon": "./assets/data/nsi/logos/spenergynetworks-35338a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spenergynetworks-35338a.jpg", "osmTags": { "and": [ "power=transformer", @@ -440189,7 +440403,7 @@ }, { "question": "Springfield Utility Board", - "icon": "./assets/data/nsi/logos/springfieldutilityboard-8ea204.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/springfieldutilityboard-8ea204.jpg", "osmTags": { "and": [ "power=transformer", @@ -440237,7 +440451,7 @@ }, { "question": "SSEN Transmission", - "icon": "./assets/data/nsi/logos/ssentransmission-b073c8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ssentransmission-b073c8.jpg", "osmTags": { "and": [ "power=transformer", @@ -440252,7 +440466,7 @@ }, { "question": "Städtische Werke Angermünde", - "icon": "./assets/data/nsi/logos/stadtischewerkeangermunde-cec853.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtischewerkeangermunde-cec853.jpg", "osmTags": { "and": [ "power=transformer", @@ -440268,7 +440482,7 @@ }, { "question": "Städtische Werke Kassel", - "icon": "./assets/data/nsi/logos/stadtischewerkekassel-b05a85.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtischewerkekassel-b05a85.png", "osmTags": { "and": [ "power=transformer", @@ -440283,7 +440497,7 @@ }, { "question": "Stadtwerke Aalen", - "icon": "./assets/data/nsi/logos/stadtwerkeaalen-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaalen-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -440298,7 +440512,7 @@ }, { "question": "Stadtwerke Achim", - "icon": "./assets/data/nsi/logos/stadtwerkeachim-d8137c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeachim-d8137c.jpg", "osmTags": { "and": [ "power=transformer", @@ -440313,7 +440527,7 @@ }, { "question": "Stadtwerke Ansbach", - "icon": "./assets/data/nsi/logos/stadtwerkeansbach-40fb94.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeansbach-40fb94.svg", "osmTags": { "and": [ "power=transformer", @@ -440328,7 +440542,7 @@ }, { "question": "Stadtwerke Aschaffenburg", - "icon": "./assets/data/nsi/logos/stadtwerkeaschaffenburg-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaschaffenburg-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -440343,7 +440557,7 @@ }, { "question": "Stadtwerke Augsburg", - "icon": "./assets/data/nsi/logos/stadtwerkeaugsburg-40fb94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeaugsburg-40fb94.png", "osmTags": { "and": [ "power=transformer", @@ -440372,7 +440586,7 @@ }, { "question": "Stadtwerke Bad Reichenhall", - "icon": "./assets/data/nsi/logos/stadtwerkebadreichenhall-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadreichenhall-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -440387,7 +440601,7 @@ }, { "question": "Stadtwerke Baden-Baden", - "icon": "./assets/data/nsi/logos/stadtwerkebadenbaden-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebadenbaden-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -440402,7 +440616,7 @@ }, { "question": "Stadtwerke Bielefeld", - "icon": "./assets/data/nsi/logos/stadtwerkebielefeld-ad09f9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebielefeld-ad09f9.svg", "osmTags": { "and": [ "power=transformer", @@ -440417,7 +440631,7 @@ }, { "question": "Stadtwerke Bochum", - "icon": "./assets/data/nsi/logos/stadtwerkebochum-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebochum-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -440432,7 +440646,7 @@ }, { "question": "Stadtwerke Bonn", - "icon": "./assets/data/nsi/logos/stadtwerkebonn-ad09f9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebonn-ad09f9.svg", "osmTags": { "and": [ "power=transformer", @@ -440448,7 +440662,7 @@ }, { "question": "Stadtwerke Brühl", - "icon": "./assets/data/nsi/logos/stadtwerkebruhl-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkebruhl-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -440505,7 +440719,7 @@ }, { "question": "Stadtwerke Energie Jena-Pößneck", - "icon": "./assets/data/nsi/logos/stadtwerkeenergiejenapossneck-f3bd8a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeenergiejenapossneck-f3bd8a.png", "osmTags": { "and": [ "power=transformer", @@ -440520,7 +440734,7 @@ }, { "question": "Stadtwerke Frankenthal", - "icon": "./assets/data/nsi/logos/stadtwerkefrankenthal-3d40d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkefrankenthal-3d40d5.jpg", "osmTags": { "and": [ "power=transformer", @@ -440535,7 +440749,7 @@ }, { "question": "Stadtwerke Fürstenfeldbruck", - "icon": "./assets/data/nsi/logos/stadtwerkefurstenfeldbruck-40fb94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkefurstenfeldbruck-40fb94.png", "osmTags": { "and": [ "power=transformer", @@ -440550,7 +440764,7 @@ }, { "question": "Stadtwerke Gießen", - "icon": "./assets/data/nsi/logos/stadtwerkegiessen-b05a85.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegiessen-b05a85.png", "osmTags": { "and": [ "power=transformer", @@ -440579,7 +440793,7 @@ }, { "question": "Stadtwerke Görlitz AG", - "icon": "./assets/data/nsi/logos/stadtwerkegorlitzag-52cc32.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegorlitzag-52cc32.png", "osmTags": { "and": [ "power=transformer", @@ -440594,7 +440808,7 @@ }, { "question": "Stadtwerke Greifswald", - "icon": "./assets/data/nsi/logos/stadtwerkegreifswald-db0b36.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkegreifswald-db0b36.png", "osmTags": { "and": [ "power=transformer", @@ -440609,7 +440823,7 @@ }, { "question": "Stadtwerke Haltern", - "icon": "./assets/data/nsi/logos/stadtwerkehaltern-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkehaltern-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -440624,7 +440838,7 @@ }, { "question": "Stadtwerke Hamm", - "icon": "./assets/data/nsi/logos/stadtwerkehamm-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkehamm-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -440667,7 +440881,7 @@ }, { "question": "Stadtwerke Herborn", - "icon": "./assets/data/nsi/logos/stadtwerkeherborn-b05a85.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherborn-b05a85.jpg", "osmTags": { "and": [ "power=transformer", @@ -440682,7 +440896,7 @@ }, { "question": "Stadtwerke Herne", - "icon": "./assets/data/nsi/logos/stadtwerkeherne-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeherne-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -440698,7 +440912,7 @@ }, { "question": "Stadtwerke Ilmenau", - "icon": "./assets/data/nsi/logos/stadtwerkeilmenau-f3bd8a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeilmenau-f3bd8a.jpg", "osmTags": { "and": [ "power=transformer", @@ -440713,7 +440927,7 @@ }, { "question": "Stadtwerke Ingolstadt", - "icon": "./assets/data/nsi/logos/stadtwerkeingolstadt-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeingolstadt-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -440770,7 +440984,7 @@ }, { "question": "Stadtwerke Kiel", - "icon": "./assets/data/nsi/logos/stadtwerkekiel-66c909.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekiel-66c909.jpg", "osmTags": { "and": [ "power=transformer", @@ -440786,7 +441000,7 @@ }, { "question": "Stadtwerke Konstanz", - "icon": "./assets/data/nsi/logos/stadtwerkekonstanz-645c81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekonstanz-645c81.png", "osmTags": { "and": [ "power=transformer", @@ -440801,7 +441015,7 @@ }, { "question": "Stadtwerke Kufstein", - "icon": "./assets/data/nsi/logos/stadtwerkekufstein-7c3fb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkekufstein-7c3fb4.jpg", "osmTags": { "and": [ "power=transformer", @@ -440816,7 +441030,7 @@ }, { "question": "Stadtwerke Leipzig", - "icon": "./assets/data/nsi/logos/stadtwerkeleipzig-52cc32.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeleipzig-52cc32.jpg", "osmTags": { "and": [ "power=transformer", @@ -440831,7 +441045,7 @@ }, { "question": "Stadtwerke Lemgo", - "icon": "./assets/data/nsi/logos/stadtwerkelemgo-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelemgo-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -440860,7 +441074,7 @@ }, { "question": "Stadtwerke Lübeck", - "icon": "./assets/data/nsi/logos/stadtwerkelubeck-66c909.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkelubeck-66c909.jpg", "osmTags": { "and": [ "power=transformer", @@ -440889,7 +441103,7 @@ }, { "question": "Stadtwerke Marburg", - "icon": "./assets/data/nsi/logos/stadtwerkemarburg-b05a85.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemarburg-b05a85.svg", "osmTags": { "and": [ "power=transformer", @@ -440904,7 +441118,7 @@ }, { "question": "Stadtwerke München", - "icon": "./assets/data/nsi/logos/stadtwerkemunchen-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunchen-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -440920,7 +441134,7 @@ }, { "question": "Stadtwerke Münster", - "icon": "./assets/data/nsi/logos/stadtwerkemunster-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkemunster-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -440935,7 +441149,7 @@ }, { "question": "Stadtwerke Neumarkt", - "icon": "./assets/data/nsi/logos/stadtwerkeneumarkt-40fb94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneumarkt-40fb94.jpg", "osmTags": { "and": [ "power=transformer", @@ -440951,7 +441165,7 @@ }, { "question": "Stadtwerke Neumünster", - "icon": "./assets/data/nsi/logos/stadtwerkeneumunster-66c909.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneumunster-66c909.png", "osmTags": { "and": [ "power=transformer", @@ -440967,7 +441181,7 @@ }, { "question": "Stadtwerke Neuss", - "icon": "./assets/data/nsi/logos/stadtwerkeneuss-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuss-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -440983,7 +441197,7 @@ }, { "question": "Stadtwerke Neuwied", - "icon": "./assets/data/nsi/logos/stadtwerkeneuwied-3d40d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeneuwied-3d40d5.png", "osmTags": { "and": [ "power=transformer", @@ -440999,7 +441213,7 @@ }, { "question": "Stadtwerke Norderstedt", - "icon": "./assets/data/nsi/logos/stadtwerkenorderstedt-66c909.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkenorderstedt-66c909.jpg", "osmTags": { "and": [ "power=transformer", @@ -441028,7 +441242,7 @@ }, { "question": "Stadtwerke Nürtingen", - "icon": "./assets/data/nsi/logos/stadtwerkenurtingen-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkenurtingen-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -441044,7 +441258,7 @@ }, { "question": "Stadtwerke Pforzheim", - "icon": "./assets/data/nsi/logos/stadtwerkepforzheim-645c81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkepforzheim-645c81.png", "osmTags": { "and": [ "power=transformer", @@ -441060,7 +441274,7 @@ }, { "question": "Stadtwerke Pirmasens", - "icon": "./assets/data/nsi/logos/stadtwerkepirmasens-3d40d5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkepirmasens-3d40d5.svg", "osmTags": { "and": [ "power=transformer", @@ -441090,7 +441304,7 @@ }, { "question": "Stadtwerke Potsdam", - "icon": "./assets/data/nsi/logos/stadtwerkepotsdam-cec853.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkepotsdam-cec853.jpg", "osmTags": { "and": [ "power=transformer", @@ -441106,7 +441320,7 @@ }, { "question": "Stadtwerke Quedlinburg", - "icon": "./assets/data/nsi/logos/stadtwerkequedlinburg-80fbfb.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkequedlinburg-80fbfb.svg", "osmTags": { "and": [ "power=transformer", @@ -441149,7 +441363,7 @@ }, { "question": "Stadtwerke Rastatt", - "icon": "./assets/data/nsi/logos/stadtwerkerastatt-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkerastatt-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -441192,7 +441406,7 @@ }, { "question": "Stadtwerke Saarbrücken", - "icon": "./assets/data/nsi/logos/stadtwerkesaarbrucken-32e7ba.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkesaarbrucken-32e7ba.png", "osmTags": { "and": [ "power=transformer", @@ -441221,7 +441435,7 @@ }, { "question": "Stadtwerke Sindelfingen", - "icon": "./assets/data/nsi/logos/stadtwerkesindelfingen-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkesindelfingen-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -441236,7 +441450,7 @@ }, { "question": "Stadtwerke Speyer", - "icon": "./assets/data/nsi/logos/stadtwerkespeyer-3d40d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkespeyer-3d40d5.jpg", "osmTags": { "and": [ "power=transformer", @@ -441266,7 +441480,7 @@ }, { "question": "Stadtwerke Troisdorf", - "icon": "./assets/data/nsi/logos/stadtwerketroisdorf-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerketroisdorf-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -441281,7 +441495,7 @@ }, { "question": "Stadtwerke Tübingen", - "icon": "./assets/data/nsi/logos/stadtwerketubingen-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerketubingen-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -441297,7 +441511,7 @@ }, { "question": "Stadtwerke Velbert", - "icon": "./assets/data/nsi/logos/stadtwerkevelbert-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkevelbert-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -441312,7 +441526,7 @@ }, { "question": "Stadtwerke Waiblingen", - "icon": "./assets/data/nsi/logos/stadtwerkewaiblingen-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewaiblingen-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -441327,7 +441541,7 @@ }, { "question": "Stadtwerke Weinheim", - "icon": "./assets/data/nsi/logos/stadtwerkeweinheim-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeweinheim-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -441343,7 +441557,7 @@ }, { "question": "Stadtwerke Witten", - "icon": "./assets/data/nsi/logos/stadtwerkewitten-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewitten-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -441358,7 +441572,7 @@ }, { "question": "Stadtwerke Wolfenbüttel", - "icon": "./assets/data/nsi/logos/stadtwerkewolfenbuttel-d8137c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkewolfenbuttel-d8137c.jpg", "osmTags": { "and": [ "power=transformer", @@ -441373,7 +441587,7 @@ }, { "question": "Stadtwerke Wörgl", - "icon": "./assets/data/nsi/logos/stadtwerkeworgl-7c3fb4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stadtwerkeworgl-7c3fb4.jpg", "osmTags": { "and": [ "power=transformer", @@ -441397,7 +441611,7 @@ }, { "question": "Statkraft", - "icon": "./assets/data/nsi/logos/statkraft-8c57c6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statkraft-8c57c6.png", "osmTags": { "and": [ "power=transformer", @@ -441412,7 +441626,7 @@ }, { "question": "Statnett", - "icon": "./assets/data/nsi/logos/statnett-7fe9fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/statnett-7fe9fe.png", "osmTags": { "and": [ "power=transformer", @@ -441427,7 +441641,7 @@ }, { "question": "Stawag", - "icon": "./assets/data/nsi/logos/stawag-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stawag-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -441442,7 +441656,7 @@ }, { "question": "Stedin", - "icon": "./assets/data/nsi/logos/stedin-dcd896.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stedin-dcd896.png", "osmTags": { "and": [ "power=transformer", @@ -441501,7 +441715,7 @@ }, { "question": "Stromnetz Berlin", - "icon": "./assets/data/nsi/logos/stromnetzberlin-26ff34.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-26ff34.svg", "osmTags": { "and": [ "power=transformer", @@ -441516,7 +441730,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-eba937.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-eba937.jpg", "osmTags": { "and": [ "power=transformer", @@ -441578,7 +441792,7 @@ }, { "question": "Stuttgart Netze", - "icon": "./assets/data/nsi/logos/stuttgartnetze-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/stuttgartnetze-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -441593,7 +441807,7 @@ }, { "question": "Sunflower Electric Power Corporation", - "icon": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-5fb284.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-5fb284.jpg", "osmTags": { "and": [ "power=transformer", @@ -441617,7 +441831,7 @@ }, { "question": "Süwag Energie", - "icon": "./assets/data/nsi/logos/suwagenergie-feb2d6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/suwagenergie-feb2d6.jpg", "osmTags": { "and": [ "power=transformer", @@ -441632,7 +441846,7 @@ }, { "question": "Svenska Kraftnät", - "icon": "./assets/data/nsi/logos/svenskakraftnat-da9798.png", + "icon": "https://data.mapcomplete.org/nsi//logos/svenskakraftnat-da9798.png", "osmTags": { "and": [ "power=transformer", @@ -441647,7 +441861,7 @@ }, { "question": "swb (Bremen)", - "icon": "./assets/data/nsi/logos/swb-d1d6a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swb-d1d6a2.jpg", "osmTags": { "and": [ "power=transformer", @@ -441662,7 +441876,7 @@ }, { "question": "SWB Energie und Wasser", - "icon": "./assets/data/nsi/logos/swbenergieundwasser-ad09f9.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/swbenergieundwasser-ad09f9.svg", "osmTags": { "and": [ "power=transformer", @@ -441692,7 +441906,7 @@ }, { "question": "SWE Stadtwerke Esslingen", - "icon": "./assets/data/nsi/logos/swestadtwerkeesslingen-645c81.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swestadtwerkeesslingen-645c81.png", "osmTags": { "and": [ "power=transformer", @@ -441708,7 +441922,7 @@ }, { "question": "SWEPCO", - "icon": "./assets/data/nsi/logos/southwesternelectricpowercompany-24511b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-24511b.jpg", "osmTags": { "and": [ "power=transformer", @@ -441724,7 +441938,7 @@ }, { "question": "Swissgrid", - "icon": "./assets/data/nsi/logos/swissgrid-b75b2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swissgrid-b75b2e.png", "osmTags": { "and": [ "power=transformer", @@ -441739,7 +441953,7 @@ }, { "question": "SWK (Kaiserslautern)", - "icon": "./assets/data/nsi/logos/swk-3d40d5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swk-3d40d5.jpg", "osmTags": { "and": [ "power=transformer", @@ -441754,7 +441968,7 @@ }, { "question": "SWK (Krefeld)", - "icon": "./assets/data/nsi/logos/swk-ad09f9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/swk-ad09f9.png", "osmTags": { "and": [ "power=transformer", @@ -441792,7 +442006,7 @@ }, { "question": "SWU Stadtwerke Ulm/Neu-Ulm GmbH", - "icon": "./assets/data/nsi/logos/swustadtwerkeulmneuulmgmbh-92d6af.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swustadtwerkeulmneuulmgmbh-92d6af.jpg", "osmTags": { "and": [ "power=transformer", @@ -441808,7 +442022,7 @@ }, { "question": "Sydney Trains", - "icon": "./assets/data/nsi/logos/sydneytrains-17e0e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sydneytrains-17e0e3.png", "osmTags": { "and": [ "power=transformer", @@ -441823,7 +442037,7 @@ }, { "question": "Sygnir", - "icon": "./assets/data/nsi/logos/sygnir-7fe9fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sygnir-7fe9fe.jpg", "osmTags": { "and": [ "power=transformer", @@ -441838,7 +442052,7 @@ }, { "question": "SŽDC", - "icon": "./assets/data/nsi/logos/szdc-5a056f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/szdc-5a056f.jpg", "osmTags": { "and": [ "power=transformer", @@ -441853,7 +442067,7 @@ }, { "question": "Tacoma Power", - "icon": "./assets/data/nsi/logos/tacomapower-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tacomapower-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -441905,7 +442119,7 @@ }, { "question": "TasNetworks", - "icon": "./assets/data/nsi/logos/tasnetworks-e46949.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tasnetworks-e46949.png", "osmTags": { "and": [ "power=transformer", @@ -441920,7 +442134,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-b34e65.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-b34e65.png", "osmTags": { "and": [ "power=transformer", @@ -441935,7 +442149,7 @@ }, { "question": "Technische Werke Ludwigshafen AG", - "icon": "./assets/data/nsi/logos/technischewerkeludwigshafenag-3d40d5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/technischewerkeludwigshafenag-3d40d5.png", "osmTags": { "and": [ "power=transformer", @@ -441951,7 +442165,7 @@ }, { "question": "Technische Werke Naumburg", - "icon": "./assets/data/nsi/logos/technischewerkenaumburg-80fbfb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/technischewerkenaumburg-80fbfb.jpg", "osmTags": { "and": [ "power=transformer", @@ -441981,7 +442195,7 @@ }, { "question": "TEDAŞ", - "icon": "./assets/data/nsi/logos/tedas-31b591.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tedas-31b591.jpg", "osmTags": { "and": [ "power=transformer", @@ -441996,7 +442210,7 @@ }, { "question": "TEİAŞ", - "icon": "./assets/data/nsi/logos/teias-31b591.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/teias-31b591.jpg", "osmTags": { "and": [ "power=transformer", @@ -442011,7 +442225,7 @@ }, { "question": "Tenaga Nasional", - "icon": "./assets/data/nsi/logos/tenaganasional-ff1f66.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tenaganasional-ff1f66.png", "osmTags": { "and": [ "power=transformer", @@ -442026,7 +442240,7 @@ }, { "question": "Tennessee Valley Authority", - "icon": "./assets/data/nsi/logos/tennesseevalleyauthority-9a842a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tennesseevalleyauthority-9a842a.png", "osmTags": { "and": [ "power=transformer", @@ -442042,7 +442256,7 @@ }, { "question": "TenneT", - "icon": "./assets/data/nsi/logos/tennet-dcd896.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennet-dcd896.jpg", "osmTags": { "and": [ "power=transformer", @@ -442057,7 +442271,7 @@ }, { "question": "TenneT TSO", - "icon": "./assets/data/nsi/logos/tennettso-90172e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennettso-90172e.jpg", "osmTags": { "and": [ "power=transformer", @@ -442072,7 +442286,7 @@ }, { "question": "Tensio", - "icon": "./assets/data/nsi/logos/tensio-7fe9fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tensio-7fe9fe.jpg", "osmTags": { "and": [ "power=transformer", @@ -442124,7 +442338,7 @@ }, { "question": "Terna", - "icon": "./assets/data/nsi/logos/terna-8a8d4c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/terna-8a8d4c.png", "osmTags": { "and": [ "power=transformer", @@ -442153,7 +442367,7 @@ }, { "question": "Texas-New Mexico Power", - "icon": "./assets/data/nsi/logos/texasnewmexicopower-70fbe7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/texasnewmexicopower-70fbe7.png", "osmTags": { "and": [ "power=transformer", @@ -442192,7 +442406,7 @@ }, { "question": "Thüga Energie", - "icon": "./assets/data/nsi/logos/thugaenergie-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thugaenergie-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -442222,7 +442436,7 @@ }, { "question": "Tiroler Netze", - "icon": "./assets/data/nsi/logos/tirolernetze-7c3fb4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tirolernetze-7c3fb4.png", "osmTags": { "and": [ "power=transformer", @@ -442238,7 +442452,7 @@ }, { "question": "TIWAG", - "icon": "./assets/data/nsi/logos/tiwag-c84cac.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tiwag-c84cac.svg", "osmTags": { "and": [ "power=transformer", @@ -442267,7 +442481,7 @@ }, { "question": "Top Energy", - "icon": "./assets/data/nsi/logos/topenergy-05e84a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/topenergy-05e84a.png", "osmTags": { "and": [ "power=transformer", @@ -442282,7 +442496,7 @@ }, { "question": "Toronto Hydro", - "icon": "./assets/data/nsi/logos/torontohydro-88d972.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/torontohydro-88d972.jpg", "osmTags": { "and": [ "power=transformer", @@ -442311,7 +442525,7 @@ }, { "question": "Tramwaje Warszawskie", - "icon": "./assets/data/nsi/logos/tramwajewarszawskie-b34e65.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tramwajewarszawskie-b34e65.png", "osmTags": { "and": [ "power=transformer", @@ -442364,7 +442578,7 @@ }, { "question": "Transelectrica", - "icon": "./assets/data/nsi/logos/transelectrica-68cee0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transelectrica-68cee0.svg", "osmTags": { "and": [ "power=transformer", @@ -442380,7 +442594,7 @@ }, { "question": "TransGrid", - "icon": "./assets/data/nsi/logos/transgrid-17e0e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transgrid-17e0e3.png", "osmTags": { "and": [ "power=transformer", @@ -442409,7 +442623,7 @@ }, { "question": "Transmission Company of Nigeria", - "icon": "./assets/data/nsi/logos/transmissioncompanyofnigeria-db71cf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transmissioncompanyofnigeria-db71cf.jpg", "osmTags": { "and": [ "power=transformer", @@ -442424,7 +442638,7 @@ }, { "question": "TransnetBW GmbH", - "icon": "./assets/data/nsi/logos/transnetbwgmbh-645c81.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-645c81.svg", "osmTags": { "and": [ "power=transformer", @@ -442448,7 +442662,7 @@ }, { "question": "Transport for NSW", - "icon": "./assets/data/nsi/logos/transportfornsw-17e0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transportfornsw-17e0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -442463,7 +442677,7 @@ }, { "question": "Transpower New Zealand", - "icon": "./assets/data/nsi/logos/transpowernewzealand-05e84a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/transpowernewzealand-05e84a.jpg", "osmTags": { "and": [ "power=transformer", @@ -442492,7 +442706,7 @@ }, { "question": "TREDAŞ", - "icon": "./assets/data/nsi/logos/tredas-31b591.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tredas-31b591.jpg", "osmTags": { "and": [ "power=transformer", @@ -442507,7 +442721,7 @@ }, { "question": "Trenes Argentinos", - "icon": "./assets/data/nsi/logos/trenesargentinos-f8f64e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/trenesargentinos-f8f64e.svg", "osmTags": { "and": [ "power=transformer", @@ -442522,7 +442736,7 @@ }, { "question": "TriMet", - "icon": "./assets/data/nsi/logos/trimet-8ea204.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trimet-8ea204.png", "osmTags": { "and": [ "power=transformer", @@ -442556,7 +442770,7 @@ }, { "question": "Tucson Electric Power", - "icon": "./assets/data/nsi/logos/tucsonelectricpower-b6d642.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tucsonelectricpower-b6d642.jpg", "osmTags": { "and": [ "power=transformer", @@ -442572,7 +442786,7 @@ }, { "question": "Türkiye Cumhuriyeti Devlet Demiryolları", - "icon": "./assets/data/nsi/logos/turkiyecumhuriyetidevletdemiryollari-31b591.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turkiyecumhuriyetidevletdemiryollari-31b591.jpg", "osmTags": { "and": [ "power=transformer", @@ -442602,7 +442816,7 @@ }, { "question": "Überlandwerk Leinetal", - "icon": "./assets/data/nsi/logos/uberlandwerkleinetal-d8137c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/uberlandwerkleinetal-d8137c.jpg", "osmTags": { "and": [ "power=transformer", @@ -442632,7 +442846,7 @@ }, { "question": "UK Power Networks", - "icon": "./assets/data/nsi/logos/ukpowernetworks-306792.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukpowernetworks-306792.jpg", "osmTags": { "and": [ "power=transformer", @@ -442647,7 +442861,7 @@ }, { "question": "Umeå Energi", - "icon": "./assets/data/nsi/logos/umeaenergi-da9798.png", + "icon": "https://data.mapcomplete.org/nsi//logos/umeaenergi-da9798.png", "osmTags": { "and": [ "power=transformer", @@ -442709,7 +442923,7 @@ }, { "question": "Unison", - "icon": "./assets/data/nsi/logos/unison-05e84a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unison-05e84a.jpg", "osmTags": { "and": [ "power=transformer", @@ -442738,7 +442952,7 @@ }, { "question": "United Illuminating Company", - "icon": "./assets/data/nsi/logos/unitedilluminatingcompany-a8c5a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedilluminatingcompany-a8c5a0.jpg", "osmTags": { "and": [ "power=transformer", @@ -442762,7 +442976,7 @@ }, { "question": "United States Steel", - "icon": "./assets/data/nsi/logos/unitedstatessteel-a5723a.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/unitedstatessteel-a5723a.svg", "osmTags": { "and": [ "power=transformer", @@ -442777,7 +442991,7 @@ }, { "question": "Unitil", - "icon": "./assets/data/nsi/logos/unitil-a10417.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unitil-a10417.png", "osmTags": { "and": [ "power=transformer", @@ -442792,7 +443006,7 @@ }, { "question": "UTE", - "icon": "./assets/data/nsi/logos/ute-caa7d8.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ute-caa7d8.svg", "osmTags": { "and": [ "power=transformer", @@ -442807,7 +443021,7 @@ }, { "question": "ÜZ Mainfranken", - "icon": "./assets/data/nsi/logos/uzmainfranken-40fb94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/uzmainfranken-40fb94.png", "osmTags": { "and": [ "power=transformer", @@ -442822,7 +443036,7 @@ }, { "question": "Vale S.A.", - "icon": "./assets/data/nsi/logos/valesa-dc5268.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/valesa-dc5268.jpg", "osmTags": { "and": [ "power=transformer", @@ -442860,7 +443074,7 @@ }, { "question": "Vattenfall", - "icon": "./assets/data/nsi/logos/vattenfall-3c123b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-3c123b.png", "osmTags": { "and": [ "power=transformer", @@ -442875,7 +443089,7 @@ }, { "question": "Vattenfall (Deutschland)", - "icon": "./assets/data/nsi/logos/vattenfall-e097a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vattenfall-e097a8.png", "osmTags": { "and": [ "power=transformer", @@ -442890,7 +443104,7 @@ }, { "question": "Väylävirasto", - "icon": "./assets/data/nsi/logos/vaylavirasto-5ad418.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vaylavirasto-5ad418.jpg", "osmTags": { "and": [ "power=transformer", @@ -442905,7 +443119,7 @@ }, { "question": "Vector", - "icon": "./assets/data/nsi/logos/vector-05e84a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vector-05e84a.png", "osmTags": { "and": [ "power=transformer", @@ -442938,7 +443152,7 @@ }, { "question": "Verbund Hydro Power GmbH", - "icon": "./assets/data/nsi/logos/verbundhydropowergmbh-c84cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verbundhydropowergmbh-c84cac.jpg", "osmTags": { "and": [ "power=transformer", @@ -442953,7 +443167,7 @@ }, { "question": "Verdo", - "icon": "./assets/data/nsi/logos/verdo-694f23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verdo-694f23.jpg", "osmTags": { "and": [ "power=transformer", @@ -442983,7 +443197,7 @@ }, { "question": "Vermont Electric Power Company", - "icon": "./assets/data/nsi/logos/vermontelectricpowercompany-170cd1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vermontelectricpowercompany-170cd1.jpg", "osmTags": { "and": [ "power=transformer", @@ -443012,7 +443226,7 @@ }, { "question": "Versant Power", - "icon": "./assets/data/nsi/logos/versantpower-289571.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/versantpower-289571.jpg", "osmTags": { "and": [ "power=transformer", @@ -443041,7 +443255,7 @@ }, { "question": "Vevig", - "icon": "./assets/data/nsi/logos/vevig-7fe9fe.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vevig-7fe9fe.png", "osmTags": { "and": [ "power=transformer", @@ -443070,7 +443284,7 @@ }, { "question": "Viesgo Distribución Eléctrica", - "icon": "./assets/data/nsi/logos/viesgodistribucionelectrica-489479.png", + "icon": "https://data.mapcomplete.org/nsi//logos/viesgodistribucionelectrica-489479.png", "osmTags": { "and": [ "power=transformer", @@ -443108,7 +443322,7 @@ }, { "question": "Visayan Electric", - "icon": "./assets/data/nsi/logos/visayanelectric-d6fa7d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/visayanelectric-d6fa7d.jpg", "osmTags": { "and": [ "power=transformer", @@ -443123,7 +443337,7 @@ }, { "question": "Vissi", - "icon": "./assets/data/nsi/logos/vissi-7fe9fe.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vissi-7fe9fe.svg", "osmTags": { "and": [ "power=transformer", @@ -443193,7 +443407,7 @@ }, { "question": "Voss Energi", - "icon": "./assets/data/nsi/logos/vossenergi-7fe9fe.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vossenergi-7fe9fe.jpg", "osmTags": { "and": [ "power=transformer", @@ -443208,7 +443422,7 @@ }, { "question": "Východoslovenská distribučná", - "icon": "./assets/data/nsi/logos/vychodoslovenskadistribucna-1cd5bf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-1cd5bf.png", "osmTags": { "and": [ "power=transformer", @@ -443224,7 +443438,7 @@ }, { "question": "Východoslovenská energetika", - "icon": "./assets/data/nsi/logos/vychodoslovenskaenergetika-1cd5bf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskaenergetika-1cd5bf.svg", "osmTags": { "and": [ "power=transformer", @@ -443240,7 +443454,7 @@ }, { "question": "Washington Metropolitan Area Transit Authority", - "icon": "./assets/data/nsi/logos/washingtonmetropolitanareatransitauthority-4f107c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonmetropolitanareatransitauthority-4f107c.jpg", "osmTags": { "and": [ "power=transformer", @@ -443256,7 +443470,7 @@ }, { "question": "Washington-St. Tammany Electric Cooperative", - "icon": "./assets/data/nsi/logos/washingtonsttammanyelectriccooperative-9b6869.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/washingtonsttammanyelectriccooperative-9b6869.jpg", "osmTags": { "and": [ "power=transformer", @@ -443271,7 +443485,7 @@ }, { "question": "Wasserwerke Zug", - "icon": "./assets/data/nsi/logos/wasserwerkezug-e6eb02.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wasserwerkezug-e6eb02.png", "osmTags": { "and": [ "power=transformer", @@ -443304,7 +443518,7 @@ }, { "question": "WEL Networks", - "icon": "./assets/data/nsi/logos/welnetworks-05e84a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/welnetworks-05e84a.jpg", "osmTags": { "and": [ "power=transformer", @@ -443361,7 +443575,7 @@ }, { "question": "West Penn Power", - "icon": "./assets/data/nsi/logos/westpennpower-06fb35.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westpennpower-06fb35.jpg", "osmTags": { "and": [ "power=transformer", @@ -443376,7 +443590,7 @@ }, { "question": "Western Area Power Administration", - "icon": "./assets/data/nsi/logos/westernareapoweradministration-9a842a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westernareapoweradministration-9a842a.png", "osmTags": { "and": [ "power=transformer", @@ -443421,7 +443635,7 @@ }, { "question": "Westland Infra", - "icon": "./assets/data/nsi/logos/westlandinfra-dcd896.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westlandinfra-dcd896.jpg", "osmTags": { "and": [ "power=transformer", @@ -443436,7 +443650,7 @@ }, { "question": "Westnetz", - "icon": "./assets/data/nsi/logos/westnetz-e097a8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westnetz-e097a8.png", "osmTags": { "and": [ "power=transformer", @@ -443465,7 +443679,7 @@ }, { "question": "Wien Energie", - "icon": "./assets/data/nsi/logos/wienenergie-c84cac.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wienenergie-c84cac.jpg", "osmTags": { "and": [ "power=transformer", @@ -443480,7 +443694,7 @@ }, { "question": "Wiener Netze", - "icon": "./assets/data/nsi/logos/wienernetze-c84cac.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wienernetze-c84cac.png", "osmTags": { "and": [ "power=transformer", @@ -443532,7 +443746,7 @@ }, { "question": "Wuppertaler Stadtwerke", - "icon": "./assets/data/nsi/logos/wuppertalerstadtwerke-ad09f9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wuppertalerstadtwerke-ad09f9.jpg", "osmTags": { "and": [ "power=transformer", @@ -443548,7 +443762,7 @@ }, { "question": "Xcel Energy", - "icon": "./assets/data/nsi/logos/xcelenergy-9a842a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/xcelenergy-9a842a.jpg", "osmTags": { "and": [ "power=transformer", @@ -443595,7 +443809,7 @@ }, { "question": "ZEAG Energie", - "icon": "./assets/data/nsi/logos/zeagenergie-645c81.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zeagenergie-645c81.jpg", "osmTags": { "and": [ "power=transformer", @@ -443610,7 +443824,7 @@ }, { "question": "ZESCO", - "icon": "./assets/data/nsi/logos/zesco-6a2ea1.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zesco-6a2ea1.jpg", "osmTags": { "and": [ "power=transformer", @@ -443751,7 +443965,7 @@ }, { "question": "Витебскэнерго", - "icon": "./assets/data/nsi/logos/vitebskenergo-4e3767.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/vitebskenergo-4e3767.jpg", "osmTags": { "and": [ "power=transformer", @@ -443908,7 +444122,7 @@ }, { "question": "Електропривреда Србије", - "icon": "./assets/data/nsi/logos/elektroprivredasrbije-c7be96.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/elektroprivredasrbije-c7be96.svg", "osmTags": { "and": [ "power=transformer", @@ -444174,7 +444388,7 @@ }, { "question": "ЛОЭСК", - "icon": "./assets/data/nsi/logos/c6dafd-258459.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/c6dafd-258459.jpg", "osmTags": { "and": [ "power=transformer", @@ -444199,7 +444413,7 @@ }, { "question": "Львівобленерго", - "icon": "./assets/data/nsi/logos/lvivoblenergo-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lvivoblenergo-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -444387,7 +444601,7 @@ }, { "question": "НКЖИ", - "icon": "./assets/data/nsi/logos/afbfca-82b16b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/afbfca-82b16b.png", "osmTags": { "and": [ "power=transformer", @@ -444956,7 +445170,7 @@ }, { "question": "Полтаваобленерго", - "icon": "./assets/data/nsi/logos/poltavaoblenergo-01f0e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/poltavaoblenergo-01f0e3.png", "osmTags": { "and": [ "power=transformer", @@ -444973,7 +445187,7 @@ }, { "question": "Прикарпаттяобленерго", - "icon": "./assets/data/nsi/logos/prykarpattiaoblenergo-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/prykarpattiaoblenergo-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445008,7 +445222,7 @@ }, { "question": "Регіональні електричні мережі", - "icon": "./assets/data/nsi/logos/388547-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/388547-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445032,7 +445246,7 @@ }, { "question": "Рівнеобленерго", - "icon": "./assets/data/nsi/logos/rivneoblenergo-01f0e3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rivneoblenergo-01f0e3.png", "osmTags": { "and": [ "power=transformer", @@ -445049,7 +445263,7 @@ }, { "question": "Россети", - "icon": "./assets/data/nsi/logos/rosseti-258459.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rosseti-258459.png", "osmTags": { "and": [ "power=transformer", @@ -445093,7 +445307,7 @@ }, { "question": "Российские железные дороги", - "icon": "./assets/data/nsi/logos/russianrailways-258459.png", + "icon": "https://data.mapcomplete.org/nsi//logos/russianrailways-258459.png", "osmTags": { "and": [ "power=transformer", @@ -445120,7 +445334,7 @@ }, { "question": "Сахалинэнерго", - "icon": "./assets/data/nsi/logos/sakhalinenergo-258459.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sakhalinenergo-258459.jpg", "osmTags": { "and": [ "power=transformer", @@ -445191,7 +445405,7 @@ }, { "question": "Столичен електротранспорт", - "icon": "./assets/data/nsi/logos/28c7ea-82b16b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/28c7ea-82b16b.jpg", "osmTags": { "and": [ "power=transformer", @@ -445206,7 +445420,7 @@ }, { "question": "Тернопільобленерго", - "icon": "./assets/data/nsi/logos/ternopiloblenergo-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ternopiloblenergo-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445223,7 +445437,7 @@ }, { "question": "Укренерго", - "icon": "./assets/data/nsi/logos/ukrenergo-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrenergo-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445241,7 +445455,7 @@ }, { "question": "Укрзалізниця", - "icon": "./assets/data/nsi/logos/ukrainianrailways-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ukrainianrailways-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445374,7 +445588,7 @@ }, { "question": "Харківобленерго", - "icon": "./assets/data/nsi/logos/kharkivoblenergo-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kharkivoblenergo-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445391,7 +445605,7 @@ }, { "question": "Херсонобленерго", - "icon": "./assets/data/nsi/logos/khersonoblenergo-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/khersonoblenergo-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445408,7 +445622,7 @@ }, { "question": "Хмельницькобленерго", - "icon": "./assets/data/nsi/logos/khmelnytskoblenergo-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/khmelnytskoblenergo-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445434,7 +445648,7 @@ }, { "question": "Черкасиобленерго", - "icon": "./assets/data/nsi/logos/472734-01f0e3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/472734-01f0e3.jpg", "osmTags": { "and": [ "power=transformer", @@ -445492,7 +445706,7 @@ }, { "question": "การไฟฟ้าฝ่ายผลิตแห่งประเทศไทย", - "icon": "./assets/data/nsi/logos/electricitygeneratingauthorityofthailand-e82cec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitygeneratingauthorityofthailand-e82cec.jpg", "osmTags": { "and": [ "power=transformer", @@ -445510,7 +445724,7 @@ }, { "question": "한국전력공사", - "icon": "./assets/data/nsi/logos/koreaelectricpowercorporation-c8a485.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/koreaelectricpowercorporation-c8a485.svg", "osmTags": { "and": [ "power=transformer", @@ -445528,7 +445742,7 @@ }, { "question": "한국철도시설공단", - "icon": "./assets/data/nsi/logos/koreanationalrailway-c8a485.png", + "icon": "https://data.mapcomplete.org/nsi//logos/koreanationalrailway-c8a485.png", "osmTags": { "and": [ "power=transformer", @@ -445570,7 +445784,7 @@ }, { "question": "中華電力有限公司 CLP Power Hong Kong Limited", - "icon": "./assets/data/nsi/logos/clppowerhongkonglimited-25f50a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/clppowerhongkonglimited-25f50a.png", "osmTags": { "and": [ "power=transformer", @@ -445594,7 +445808,7 @@ }, { "question": "中部電力パワーグリッド", - "icon": "./assets/data/nsi/logos/chubuelectricpowergridcompany-2c1653.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chubuelectricpowergridcompany-2c1653.svg", "osmTags": { "and": [ "power=transformer", @@ -445611,7 +445825,7 @@ }, { "question": "九州電力送配電", - "icon": "./assets/data/nsi/logos/kyushuelectricpowertransmissionanddistributioncompany-2c1653.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushuelectricpowertransmissionanddistributioncompany-2c1653.png", "osmTags": { "and": [ "power=transformer", @@ -445628,7 +445842,7 @@ }, { "question": "北海道電力ネットワーク", - "icon": "./assets/data/nsi/logos/hokkaidoelectricpowernetwork-2c1653.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hokkaidoelectricpowernetwork-2c1653.png", "osmTags": { "and": [ "power=transformer", @@ -445671,7 +445885,7 @@ }, { "question": "台灣電力公司", - "icon": "./assets/data/nsi/logos/taiwanpowercompany-7d07c2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/taiwanpowercompany-7d07c2.jpg", "osmTags": { "and": [ "power=transformer", @@ -445747,7 +445961,7 @@ }, { "question": "東京電力パワーグリッド", - "icon": "./assets/data/nsi/logos/tepcopowergrid-2c1653.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-2c1653.svg", "osmTags": { "and": [ "power=transformer", @@ -445780,7 +445994,7 @@ }, { "question": "東武鉄道", - "icon": "./assets/data/nsi/logos/toburailway-2c1653.png", + "icon": "https://data.mapcomplete.org/nsi//logos/toburailway-2c1653.png", "osmTags": { "and": [ "power=transformer", @@ -445800,7 +446014,7 @@ }, { "question": "沖縄電力", - "icon": "./assets/data/nsi/logos/okinawaelectricpowercompany-2c1653.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/okinawaelectricpowercompany-2c1653.jpg", "osmTags": { "and": [ "power=transformer", @@ -445818,7 +446032,7 @@ }, { "question": "澳門電力股份有限公司 Companhia de Electricidade de Macau", - "icon": "./assets/data/nsi/logos/e30df9-6b1c5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/e30df9-6b1c5a.jpg", "osmTags": { "and": [ "power=transformer", @@ -445876,7 +446090,7 @@ }, { "question": "香港電燈有限公司 The Hongkong Electric Company, Limited", - "icon": "./assets/data/nsi/logos/thehongkongelectriccompanylimited-25f50a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehongkongelectriccompanylimited-25f50a.jpg", "osmTags": { "and": [ "power=transformer", @@ -445900,7 +446114,7 @@ }, { "question": "50Hertz Transmission", - "icon": "./assets/data/nsi/logos/50hertztransmission-6070b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/50hertztransmission-6070b7.svg", "osmTags": { "and": [ "route=power", @@ -445915,7 +446129,7 @@ }, { "question": "AES Andes", - "icon": "./assets/data/nsi/logos/aesandes-0cf561.png", + "icon": "https://data.mapcomplete.org/nsi//logos/aesandes-0cf561.png", "osmTags": { "and": [ "route=power", @@ -445930,7 +446144,7 @@ }, { "question": "American Electric Power", - "icon": "./assets/data/nsi/logos/americanelectricpower-3c8213.png", + "icon": "https://data.mapcomplete.org/nsi//logos/americanelectricpower-3c8213.png", "osmTags": { "and": [ "route=power", @@ -445946,7 +446160,7 @@ }, { "question": "Amprion", - "icon": "./assets/data/nsi/logos/amprion-6070b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/amprion-6070b7.svg", "osmTags": { "and": [ "route=power", @@ -445961,7 +446175,7 @@ }, { "question": "Augstsprieguma tīkls", - "icon": "./assets/data/nsi/logos/augstspriegumatikls-9b994c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/augstspriegumatikls-9b994c.png", "osmTags": { "and": [ "route=power", @@ -445976,7 +446190,7 @@ }, { "question": "Austin Energy", - "icon": "./assets/data/nsi/logos/austinenergy-2db3e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/austinenergy-2db3e2.jpg", "osmTags": { "and": [ "route=power", @@ -445991,7 +446205,7 @@ }, { "question": "Avacon Netz", - "icon": "./assets/data/nsi/logos/avaconnetz-9d7364.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/avaconnetz-9d7364.svg", "osmTags": { "and": [ "route=power", @@ -446020,7 +446234,7 @@ }, { "question": "Bornholms Energi & Forsyning", - "icon": "./assets/data/nsi/logos/bornholmsenergiandforsyning-fc9c5a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bornholmsenergiandforsyning-fc9c5a.jpg", "osmTags": { "and": [ "route=power", @@ -446035,7 +446249,7 @@ }, { "question": "ČEPS", - "icon": "./assets/data/nsi/logos/ceps-3c5842.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ceps-3c5842.jpg", "osmTags": { "and": [ "route=power", @@ -446064,7 +446278,7 @@ }, { "question": "Codelco Chile", - "icon": "./assets/data/nsi/logos/codelcochile-8df055.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/codelcochile-8df055.jpg", "osmTags": { "and": [ "route=power", @@ -446079,7 +446293,7 @@ }, { "question": "Copel", - "icon": "./assets/data/nsi/logos/copel-82c27b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/copel-82c27b.jpg", "osmTags": { "and": [ "route=power", @@ -446094,7 +446308,7 @@ }, { "question": "DB Energie", - "icon": "./assets/data/nsi/logos/dbenergie-6070b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/dbenergie-6070b7.svg", "osmTags": { "and": [ "route=power", @@ -446109,7 +446323,7 @@ }, { "question": "E.DIS Netz", - "icon": "./assets/data/nsi/logos/edisnetz-6070b7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edisnetz-6070b7.jpg", "osmTags": { "and": [ "route=power", @@ -446124,7 +446338,7 @@ }, { "question": "E.ON", - "icon": "./assets/data/nsi/logos/eon-6a8196.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eon-6a8196.png", "osmTags": { "and": [ "route=power", @@ -446139,7 +446353,7 @@ }, { "question": "E.ON Netz", - "icon": "./assets/data/nsi/logos/eonnetz-6070b7.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/eonnetz-6070b7.svg", "osmTags": { "and": [ "route=power", @@ -446154,7 +446368,7 @@ }, { "question": "EG.D", - "icon": "./assets/data/nsi/logos/egd-41fb94.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/egd-41fb94.svg", "osmTags": { "and": [ "route=power", @@ -446169,7 +446383,7 @@ }, { "question": "EGAT", - "icon": "./assets/data/nsi/logos/egat-08a278.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/egat-08a278.jpg", "osmTags": { "and": [ "route=power", @@ -446184,7 +446398,7 @@ }, { "question": "EirGrid", - "icon": "./assets/data/nsi/logos/eirgrid-0db0d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eirgrid-0db0d4.jpg", "osmTags": { "and": [ "route=power", @@ -446199,7 +446413,7 @@ }, { "question": "Électricité de France", - "icon": "./assets/data/nsi/logos/electricitedefrance-6a8196.png", + "icon": "https://data.mapcomplete.org/nsi//logos/electricitedefrance-6a8196.png", "osmTags": { "and": [ "route=power", @@ -446215,7 +446429,7 @@ }, { "question": "Elektrilevi", - "icon": "./assets/data/nsi/logos/elektrilevi-f7b360.png", + "icon": "https://data.mapcomplete.org/nsi//logos/elektrilevi-f7b360.png", "osmTags": { "and": [ "route=power", @@ -446230,7 +446444,7 @@ }, { "question": "Elering", - "icon": "./assets/data/nsi/logos/elering-f7b360.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/elering-f7b360.jpg", "osmTags": { "and": [ "route=power", @@ -446259,7 +446473,7 @@ }, { "question": "Enea", - "icon": "./assets/data/nsi/logos/enea-99d878.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enea-99d878.png", "osmTags": { "and": [ "route=power", @@ -446288,7 +446502,7 @@ }, { "question": "Energa", - "icon": "./assets/data/nsi/logos/energa-99d878.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energa-99d878.png", "osmTags": { "and": [ "route=power", @@ -446303,7 +446517,7 @@ }, { "question": "Energinet", - "icon": "./assets/data/nsi/logos/energinet-0da34c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/energinet-0da34c.png", "osmTags": { "and": [ "route=power", @@ -446332,7 +446546,7 @@ }, { "question": "Engie", - "icon": "./assets/data/nsi/logos/engie-6a8196.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/engie-6a8196.jpg", "osmTags": { "and": [ "route=power", @@ -446347,7 +446561,7 @@ }, { "question": "Ente Provincial de Energía del Neuquén", - "icon": "./assets/data/nsi/logos/enteprovincialdeenergiadelneuquen-2549a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteprovincialdeenergiadelneuquen-2549a9.png", "osmTags": { "and": [ "route=power", @@ -446362,7 +446576,7 @@ }, { "question": "ESB Networks", - "icon": "./assets/data/nsi/logos/esbnetworks-0db0d4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/esbnetworks-0db0d4.png", "osmTags": { "and": [ "route=power", @@ -446377,7 +446591,7 @@ }, { "question": "Eskom", - "icon": "./assets/data/nsi/logos/eskom-413da8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/eskom-413da8.jpg", "osmTags": { "and": [ "route=power", @@ -446392,7 +446606,7 @@ }, { "question": "Evergy", - "icon": "./assets/data/nsi/logos/evergy-ba6e22.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergy-ba6e22.jpg", "osmTags": { "and": [ "route=power", @@ -446407,7 +446621,7 @@ }, { "question": "EVN (Europe)", - "icon": "./assets/data/nsi/logos/evn-baa9ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-baa9ad.jpg", "osmTags": { "and": [ "route=power", @@ -446422,7 +446636,7 @@ }, { "question": "EVN (Việt Nam)", - "icon": "./assets/data/nsi/logos/evn-2a64cf.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/evn-2a64cf.svg", "osmTags": { "and": [ "route=power", @@ -446438,7 +446652,7 @@ }, { "question": "Hydro-Québec", - "icon": "./assets/data/nsi/logos/hydroquebec-f5644d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/hydroquebec-f5644d.png", "osmTags": { "and": [ "route=power", @@ -446453,7 +446667,7 @@ }, { "question": "ITAIPU Binacional", - "icon": "./assets/data/nsi/logos/itaipubinacional-89347b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/itaipubinacional-89347b.svg", "osmTags": { "and": [ "route=power", @@ -446468,7 +446682,7 @@ }, { "question": "Liander", - "icon": "./assets/data/nsi/logos/liander-010a98.png", + "icon": "https://data.mapcomplete.org/nsi//logos/liander-010a98.png", "osmTags": { "and": [ "route=power", @@ -446483,7 +446697,7 @@ }, { "question": "Lower Colorado River Authority", - "icon": "./assets/data/nsi/logos/lowercoloradoriverauthority-2db3e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lowercoloradoriverauthority-2db3e2.png", "osmTags": { "and": [ "route=power", @@ -446499,7 +446713,7 @@ }, { "question": "LSW Netz", - "icon": "./assets/data/nsi/logos/lswnetz-0b37b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lswnetz-0b37b7.png", "osmTags": { "and": [ "route=power", @@ -446514,7 +446728,7 @@ }, { "question": "Lubbock Power & Light", - "icon": "./assets/data/nsi/logos/lubbockpowerandlight-2db3e2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/lubbockpowerandlight-2db3e2.png", "osmTags": { "and": [ "route=power", @@ -446530,7 +446744,7 @@ }, { "question": "Meralco", - "icon": "./assets/data/nsi/logos/meralco-5f3699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/meralco-5f3699.jpg", "osmTags": { "and": [ "route=power", @@ -446582,7 +446796,7 @@ }, { "question": "National Grid", - "icon": "./assets/data/nsi/logos/nationalgrid-738a0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgrid-738a0d.png", "osmTags": { "and": [ "route=power", @@ -446597,7 +446811,7 @@ }, { "question": "National Grid Corporation of the Philippines", - "icon": "./assets/data/nsi/logos/nationalgridcorporationofthephilippines-5f3699.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nationalgridcorporationofthephilippines-5f3699.jpg", "osmTags": { "and": [ "route=power", @@ -446613,7 +446827,7 @@ }, { "question": "Netze BW GmbH", - "icon": "./assets/data/nsi/logos/netzebwgmbh-d2c714.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/netzebwgmbh-d2c714.svg", "osmTags": { "and": [ "route=power", @@ -446642,7 +446856,7 @@ }, { "question": "NIE Networks", - "icon": "./assets/data/nsi/logos/nienetworks-a428e4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nienetworks-a428e4.jpg", "osmTags": { "and": [ "route=power", @@ -446657,7 +446871,7 @@ }, { "question": "ÖBB", - "icon": "./assets/data/nsi/logos/obb-eee531.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obb-eee531.jpg", "osmTags": { "and": [ "route=power", @@ -446672,7 +446886,7 @@ }, { "question": "Oncor", - "icon": "./assets/data/nsi/logos/oncor-2db3e2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/oncor-2db3e2.jpg", "osmTags": { "and": [ "route=power", @@ -446687,7 +446901,7 @@ }, { "question": "PGE Dystrybucja", - "icon": "./assets/data/nsi/logos/pgedystrybucja-99d878.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pgedystrybucja-99d878.jpg", "osmTags": { "and": [ "route=power", @@ -446702,7 +446916,7 @@ }, { "question": "Polskie Sieci Elektroenergetyczne", - "icon": "./assets/data/nsi/logos/polskiesiecielektroenergetyczne-d26bf2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/polskiesiecielektroenergetyczne-d26bf2.png", "osmTags": { "and": [ "route=power", @@ -446732,7 +446946,7 @@ }, { "question": "RTE", - "icon": "./assets/data/nsi/logos/rte-0421f7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rte-0421f7.png", "osmTags": { "and": [ "route=power", @@ -446747,7 +446961,7 @@ }, { "question": "RWE", - "icon": "./assets/data/nsi/logos/rwe-baa9ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/rwe-baa9ad.jpg", "osmTags": { "and": [ "route=power", @@ -446762,7 +446976,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-98046e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-98046e.png", "osmTags": { "and": [ "route=power", @@ -446777,7 +446991,7 @@ }, { "question": "Schleswig-Holstein Netz AG", - "icon": "./assets/data/nsi/logos/schleswigholsteinnetzag-3e5ac3.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/schleswigholsteinnetzag-3e5ac3.svg", "osmTags": { "and": [ "route=power", @@ -446801,7 +447015,7 @@ }, { "question": "Stedin", - "icon": "./assets/data/nsi/logos/stedin-010a98.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stedin-010a98.png", "osmTags": { "and": [ "route=power", @@ -446816,7 +447030,7 @@ }, { "question": "Stromnetz Berlin", - "icon": "./assets/data/nsi/logos/stromnetzberlin-28c936.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzberlin-28c936.svg", "osmTags": { "and": [ "route=power", @@ -446831,7 +447045,7 @@ }, { "question": "Stromnetz Hamburg", - "icon": "./assets/data/nsi/logos/stromnetzhamburg-227083.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stromnetzhamburg-227083.png", "osmTags": { "and": [ "route=power", @@ -446846,7 +447060,7 @@ }, { "question": "Sunflower Electric Power Corporation", - "icon": "./assets/data/nsi/logos/sunflowerelectricpowercorporation-0a1228.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sunflowerelectricpowercorporation-0a1228.jpg", "osmTags": { "and": [ "route=power", @@ -446861,7 +447075,7 @@ }, { "question": "SWEPCO", - "icon": "./assets/data/nsi/logos/southwesternelectricpowercompany-a8c872.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southwesternelectricpowercompany-a8c872.jpg", "osmTags": { "and": [ "route=power", @@ -446891,7 +447105,7 @@ }, { "question": "Tauron", - "icon": "./assets/data/nsi/logos/tauron-99d878.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tauron-99d878.png", "osmTags": { "and": [ "route=power", @@ -446906,7 +447120,7 @@ }, { "question": "TenneT", - "icon": "./assets/data/nsi/logos/tennet-010a98.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennet-010a98.jpg", "osmTags": { "and": [ "route=power", @@ -446921,7 +447135,7 @@ }, { "question": "TenneT TSO", - "icon": "./assets/data/nsi/logos/tennettso-45db45.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tennettso-45db45.jpg", "osmTags": { "and": [ "route=power", @@ -446965,7 +447179,7 @@ }, { "question": "Transener", - "icon": "./assets/data/nsi/logos/transener-1169c7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/transener-1169c7.png", "osmTags": { "and": [ "route=power", @@ -446980,7 +447194,7 @@ }, { "question": "TransnetBW GmbH", - "icon": "./assets/data/nsi/logos/transnetbwgmbh-d2c714.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/transnetbwgmbh-d2c714.svg", "osmTags": { "and": [ "route=power", @@ -446995,7 +447209,7 @@ }, { "question": "Východoslovenská distribučná", - "icon": "./assets/data/nsi/logos/vychodoslovenskadistribucna-698423.png", + "icon": "https://data.mapcomplete.org/nsi//logos/vychodoslovenskadistribucna-698423.png", "osmTags": { "and": [ "route=power", @@ -447044,7 +447258,7 @@ }, { "question": "Westnetz", - "icon": "./assets/data/nsi/logos/westnetz-6070b7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/westnetz-6070b7.png", "osmTags": { "and": [ "route=power", @@ -447082,7 +447296,7 @@ }, { "question": "東京電力パワーグリッド", - "icon": "./assets/data/nsi/logos/tepcopowergrid-15f210.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tepcopowergrid-15f210.svg", "osmTags": { "and": [ "route=power", @@ -447108,7 +447322,7 @@ }, { "question": "Adif", - "icon": "./assets/data/nsi/logos/adif-762e69.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/adif-762e69.jpg", "osmTags": { "and": [ "route=railway", @@ -447123,7 +447337,7 @@ }, { "question": "Amtrak", - "icon": "./assets/data/nsi/logos/amtrak-7523d3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amtrak-7523d3.jpg", "osmTags": { "and": [ "route=railway", @@ -447138,7 +447352,7 @@ }, { "question": "Banedanmark", - "icon": "./assets/data/nsi/logos/banedanmark-8a3339.png", + "icon": "https://data.mapcomplete.org/nsi//logos/banedanmark-8a3339.png", "osmTags": { "and": [ "route=railway", @@ -447153,7 +447367,7 @@ }, { "question": "BLS", - "icon": "./assets/data/nsi/logos/bls-a9df5c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bls-a9df5c.jpg", "osmTags": { "and": [ "route=railway", @@ -447168,7 +447382,7 @@ }, { "question": "BNSF Railway", - "icon": "./assets/data/nsi/logos/bnsfrailway-2c7402.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bnsfrailway-2c7402.jpg", "osmTags": { "and": [ "route=railway", @@ -447183,7 +447397,7 @@ }, { "question": "California High Speed Rail Authority", - "icon": "./assets/data/nsi/logos/californiahighspeedrailauthority-86f3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/californiahighspeedrailauthority-86f3a2.jpg", "osmTags": { "and": [ "route=railway", @@ -447199,7 +447413,7 @@ }, { "question": "Canadian National Railway", - "icon": "./assets/data/nsi/logos/canadiannationalrailway-bfb76c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadiannationalrailway-bfb76c.jpg", "osmTags": { "and": [ "route=railway", @@ -447214,7 +447428,7 @@ }, { "question": "Canadian Pacific Kansas City", - "icon": "./assets/data/nsi/logos/canadianpacifickansascity-e8b07c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/canadianpacifickansascity-e8b07c.jpg", "osmTags": { "and": [ "route=railway", @@ -447229,7 +447443,7 @@ }, { "question": "České dráhy", - "icon": "./assets/data/nsi/logos/ceskedrahy-fb3809.png", + "icon": "https://data.mapcomplete.org/nsi//logos/ceskedrahy-fb3809.png", "osmTags": { "and": [ "route=railway", @@ -447245,7 +447459,7 @@ }, { "question": "CFR Călători", - "icon": "./assets/data/nsi/logos/cfrcalatori-e13be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cfrcalatori-e13be9.jpg", "osmTags": { "and": [ "route=railway", @@ -447260,7 +447474,7 @@ }, { "question": "Comboios de Portugal", - "icon": "./assets/data/nsi/logos/comboiosdeportugal-6391e0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/comboiosdeportugal-6391e0.png", "osmTags": { "and": [ "route=railway", @@ -447289,7 +447503,7 @@ }, { "question": "CSX", - "icon": "./assets/data/nsi/logos/csx-2c7402.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/csx-2c7402.svg", "osmTags": { "and": [ "route=railway", @@ -447304,7 +447518,7 @@ }, { "question": "ETS/RFV", - "icon": "./assets/data/nsi/logos/euskaltrenbidesarearedferroviariavasca-eeecbf.png", + "icon": "https://data.mapcomplete.org/nsi//logos/euskaltrenbidesarearedferroviariavasca-eeecbf.png", "osmTags": { "and": [ "route=railway", @@ -447324,7 +447538,7 @@ }, { "question": "Ferrocarrils de la Generalitat de Catalunya", - "icon": "./assets/data/nsi/logos/ferrocarrilsdelageneralitatdecatalunya-762e69.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/ferrocarrilsdelageneralitatdecatalunya-762e69.svg", "osmTags": { "and": [ "route=railway", @@ -447349,7 +447563,7 @@ }, { "question": "GO Transit", - "icon": "./assets/data/nsi/logos/alstom-a83027.png", + "icon": "https://data.mapcomplete.org/nsi//logos/alstom-a83027.png", "osmTags": { "and": [ "network=GO Transit", @@ -447366,7 +447580,7 @@ }, { "question": "GYSEV", - "icon": "./assets/data/nsi/logos/gysev-6c36c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gysev-6c36c0.jpg", "osmTags": { "and": [ "route=railway", @@ -447395,7 +447609,7 @@ }, { "question": "Indian Railway", - "icon": "./assets/data/nsi/logos/indianrailway-04612b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/indianrailway-04612b.svg", "osmTags": { "and": [ "route=railway", @@ -447410,7 +447624,7 @@ }, { "question": "Infrabel", - "icon": "./assets/data/nsi/logos/infrabel-1684ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/infrabel-1684ca.png", "osmTags": { "and": [ "route=railway", @@ -447425,7 +447639,7 @@ }, { "question": "Infraestruturas de Portugal", - "icon": "./assets/data/nsi/logos/infraestruturasdeportugal-6391e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/infraestruturasdeportugal-6391e0.jpg", "osmTags": { "and": [ "route=railway", @@ -447440,7 +447654,7 @@ }, { "question": "Irish Rail", - "icon": "./assets/data/nsi/logos/irishrail-8601a8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/irishrail-8601a8.jpg", "osmTags": { "and": [ "route=railway", @@ -447455,7 +447669,7 @@ }, { "question": "JR九州", - "icon": "./assets/data/nsi/logos/kyushurailwaycompany-c878da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kyushurailwaycompany-c878da.jpg", "osmTags": { "and": [ "route=railway", @@ -447475,7 +447689,7 @@ }, { "question": "JR東日本", - "icon": "./assets/data/nsi/logos/eastjapanrailwaycompany-c878da.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastjapanrailwaycompany-c878da.png", "osmTags": { "and": [ "route=railway", @@ -447495,7 +447709,7 @@ }, { "question": "JR西日本", - "icon": "./assets/data/nsi/logos/westjapanrailwaycompany-c878da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/westjapanrailwaycompany-c878da.jpg", "osmTags": { "and": [ "route=railway", @@ -447515,7 +447729,7 @@ }, { "question": "Kenya Railways", - "icon": "./assets/data/nsi/logos/kenyarailways-220ac2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kenyarailways-220ac2.png", "osmTags": { "and": [ "route=railway", @@ -447531,7 +447745,7 @@ }, { "question": "Los Angeles County Metropolitan Transportation Authority", - "icon": "./assets/data/nsi/logos/losangelescountymetropolitantransportationauthority-86f3a2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/losangelescountymetropolitantransportationauthority-86f3a2.jpg", "osmTags": { "and": [ "route=railway", @@ -447546,7 +447760,7 @@ }, { "question": "MÁV", - "icon": "./assets/data/nsi/logos/mav-6c36c0.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/mav-6c36c0.svg", "osmTags": { "and": [ "route=railway", @@ -447561,7 +447775,7 @@ }, { "question": "Nederlandse Spoorwegen", - "icon": "./assets/data/nsi/logos/nederlandsespoorwegen-2ab239.png", + "icon": "https://data.mapcomplete.org/nsi//logos/nederlandsespoorwegen-2ab239.png", "osmTags": { "and": [ "route=railway", @@ -447576,7 +447790,7 @@ }, { "question": "Network Rail", - "icon": "./assets/data/nsi/logos/networkrail-b6d660.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkrail-b6d660.jpg", "osmTags": { "and": [ "route=railway", @@ -447591,7 +447805,7 @@ }, { "question": "New York City Transit Authority", - "icon": "./assets/data/nsi/logos/newyorkcitytransitauthority-d97a9c.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/newyorkcitytransitauthority-d97a9c.svg", "osmTags": { "and": [ "route=railway", @@ -447606,7 +447820,7 @@ }, { "question": "Norfolk Southern", - "icon": "./assets/data/nsi/logos/norfolksouthern-2c7402.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/norfolksouthern-2c7402.jpg", "osmTags": { "and": [ "route=railway", @@ -447621,7 +447835,7 @@ }, { "question": "ÖBB", - "icon": "./assets/data/nsi/logos/obb-4c3eff.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/obb-4c3eff.jpg", "osmTags": { "and": [ "route=railway", @@ -447650,7 +447864,7 @@ }, { "question": "Philippine National Railways", - "icon": "./assets/data/nsi/logos/philippinenationalrailways-c5c786.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/philippinenationalrailways-c5c786.svg", "osmTags": { "and": [ "route=railway", @@ -447665,7 +447879,7 @@ }, { "question": "PKP Polskie Linie Kolejowe S.A.", - "icon": "./assets/data/nsi/logos/pkppolskieliniekolejowesa-b8385d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pkppolskieliniekolejowesa-b8385d.jpg", "osmTags": { "and": [ "route=railway", @@ -447680,7 +447894,7 @@ }, { "question": "Regio Călători", - "icon": "./assets/data/nsi/logos/regiocalatori-e13be9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/regiocalatori-e13be9.jpg", "osmTags": { "and": [ "route=railway", @@ -447695,7 +447909,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-4ed8db.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-4ed8db.svg", "osmTags": { "and": [ "route=railway", @@ -447710,7 +447924,7 @@ }, { "question": "Rumo S/A", - "icon": "./assets/data/nsi/logos/rumosa-6e3fcb.png", + "icon": "https://data.mapcomplete.org/nsi//logos/rumosa-6e3fcb.png", "osmTags": { "and": [ "route=railway", @@ -447739,7 +447953,7 @@ }, { "question": "SBB", - "icon": "./assets/data/nsi/logos/sbb-8e443b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sbb-8e443b.png", "osmTags": { "and": [ "route=railway", @@ -447768,7 +447982,7 @@ }, { "question": "SNCF", - "icon": "./assets/data/nsi/logos/sncf-ced9a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncf-ced9a9.png", "osmTags": { "and": [ "route=railway", @@ -447783,7 +447997,7 @@ }, { "question": "SNCF Réseau", - "icon": "./assets/data/nsi/logos/sncfreseau-ced9a9.png", + "icon": "https://data.mapcomplete.org/nsi//logos/sncfreseau-ced9a9.png", "osmTags": { "and": [ "route=railway", @@ -447798,7 +448012,7 @@ }, { "question": "Správa železnic, s. o.", - "icon": "./assets/data/nsi/logos/spravazeleznicso-fb3809.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/spravazeleznicso-fb3809.jpg", "osmTags": { "and": [ "route=railway", @@ -447828,7 +448042,7 @@ }, { "question": "TCDD", - "icon": "./assets/data/nsi/logos/tcdd-e43c16.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tcdd-e43c16.jpg", "osmTags": { "and": [ "route=railway", @@ -447843,7 +448057,7 @@ }, { "question": "Trafikverket", - "icon": "./assets/data/nsi/logos/trafikverket-18cfca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/trafikverket-18cfca.png", "osmTags": { "and": [ "route=railway", @@ -447873,7 +448087,7 @@ }, { "question": "Union Pacific Railroad", - "icon": "./assets/data/nsi/logos/unionpacificrailroad-2c7402.png", + "icon": "https://data.mapcomplete.org/nsi//logos/unionpacificrailroad-2c7402.png", "osmTags": { "and": [ "route=railway", @@ -447888,7 +448102,7 @@ }, { "question": "ŽSR", - "icon": "./assets/data/nsi/logos/zsr-ae10a0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zsr-ae10a0.jpg", "osmTags": { "and": [ "route=railway", @@ -447903,7 +448117,7 @@ }, { "question": "ZSSK", - "icon": "./assets/data/nsi/logos/zssk-ae10a0.png", + "icon": "https://data.mapcomplete.org/nsi//logos/zssk-ae10a0.png", "osmTags": { "and": [ "route=railway", @@ -447918,7 +448132,7 @@ }, { "question": "Железнице Србије", - "icon": "./assets/data/nsi/logos/b5cfb7-dc2a17.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/b5cfb7-dc2a17.svg", "osmTags": { "and": [ "route=railway", @@ -447933,7 +448147,7 @@ }, { "question": "НКЖИ", - "icon": "./assets/data/nsi/logos/afbfca-ce52f6.png", + "icon": "https://data.mapcomplete.org/nsi//logos/afbfca-ce52f6.png", "osmTags": { "and": [ "route=railway", @@ -447948,7 +448162,7 @@ }, { "question": "Одеська залізниця", - "icon": "./assets/data/nsi/logos/odesarailways-53b4a5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/odesarailways-53b4a5.jpg", "osmTags": { "and": [ "route=railway", @@ -447965,7 +448179,7 @@ }, { "question": "РЖД", - "icon": "./assets/data/nsi/logos/russianrailways-538f7a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/russianrailways-538f7a.png", "osmTags": { "and": [ "route=railway", @@ -447982,7 +448196,7 @@ }, { "question": "국가철도공단", - "icon": "./assets/data/nsi/logos/korearailnetworkauthority-70c7ea.png", + "icon": "https://data.mapcomplete.org/nsi//logos/korearailnetworkauthority-70c7ea.png", "osmTags": { "and": [ "route=railway", @@ -448001,7 +448215,7 @@ }, { "question": "中国铁路", - "icon": "./assets/data/nsi/logos/chinarailway-b63757.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/chinarailway-b63757.svg", "osmTags": { "and": [ "route=railway", @@ -448034,7 +448248,7 @@ }, { "question": "名古屋鉄道", - "icon": "./assets/data/nsi/logos/nagoyarailroad-c878da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nagoyarailroad-c878da.jpg", "osmTags": { "and": [ "route=railway", @@ -448091,7 +448305,7 @@ }, { "question": "近畿日本鉄道", - "icon": "./assets/data/nsi/logos/kintetsurailwaycompany-c878da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/kintetsurailwaycompany-c878da.jpg", "osmTags": { "and": [ "route=railway", @@ -448111,7 +448325,7 @@ }, { "question": "Albtal-Verkehrs-Gesellschaft mbH", - "icon": "./assets/data/nsi/logos/albtalverkehrsgesellschaftmbh-7a762a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/albtalverkehrsgesellschaftmbh-7a762a.png", "osmTags": { "and": [ "route=tracks", @@ -448136,7 +448350,7 @@ }, { "question": "Ente Autonomo Volturno", - "icon": "./assets/data/nsi/logos/enteautonomovolturno-063200.png", + "icon": "https://data.mapcomplete.org/nsi//logos/enteautonomovolturno-063200.png", "osmTags": { "and": [ "route=tracks", @@ -448152,7 +448366,7 @@ }, { "question": "HGK", - "icon": "./assets/data/nsi/logos/hgk-40c7ea.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hgk-40c7ea.svg", "osmTags": { "and": [ "route=tracks", @@ -448181,7 +448395,7 @@ }, { "question": "Network Rail", - "icon": "./assets/data/nsi/logos/networkrail-ce54b3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/networkrail-ce54b3.jpg", "osmTags": { "and": [ "route=tracks", @@ -448211,7 +448425,7 @@ }, { "question": "PKP Polskie Linie Kolejowe S.A.", - "icon": "./assets/data/nsi/logos/pkppolskieliniekolejowesa-3a0b03.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/pkppolskieliniekolejowesa-3a0b03.jpg", "osmTags": { "and": [ "route=tracks", @@ -448226,7 +448440,7 @@ }, { "question": "RFI", - "icon": "./assets/data/nsi/logos/rfi-063200.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/rfi-063200.svg", "osmTags": { "and": [ "route=tracks", @@ -448241,7 +448455,7 @@ }, { "question": "Sporveien", - "icon": "./assets/data/nsi/logos/sporveien-7041d4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sporveien-7041d4.jpg", "osmTags": { "and": [ "route=tracks", @@ -448256,7 +448470,7 @@ }, { "question": "Správa železnic", - "icon": "./assets/data/nsi/logos/czspravazeleznic-bc9d07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/czspravazeleznic-bc9d07.jpg", "osmTags": { "and": [ "route=tracks", @@ -448271,7 +448485,7 @@ }, { "question": "Surrey County Council", - "icon": "./assets/data/nsi/logos/surreycountycouncil-51438e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/surreycountycouncil-51438e.jpg", "osmTags": { "and": [ "route=tracks", @@ -448286,7 +448500,7 @@ }, { "question": "SŽ Infrastruktura", - "icon": "./assets/data/nsi/logos/szinfrastruktura-41e182.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/szinfrastruktura-41e182.svg", "osmTags": { "and": [ "route=tracks", @@ -448301,7 +448515,7 @@ }, { "question": "ŽSR", - "icon": "./assets/data/nsi/logos/zsr-5c437f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/zsr-5c437f.jpg", "osmTags": { "and": [ "route=tracks", @@ -448316,7 +448530,7 @@ }, { "question": "香港賽馬會 The Hong Kong Jockey Club", - "icon": "./assets/data/nsi/logos/thehongkongjockeyclub-24af24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/thehongkongjockeyclub-24af24.jpg", "osmTags": { "and": [ "shop=bookmaker", @@ -448337,7 +448551,7 @@ }, { "question": "Alabama Goodwill Industries", - "icon": "./assets/data/nsi/logos/alabamagoodwillindustries-a00d18.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/alabamagoodwillindustries-a00d18.jpg", "osmTags": { "and": [ "shop=charity", @@ -448372,7 +448586,7 @@ }, { "question": "Easterseals-Goodwill", - "icon": "./assets/data/nsi/logos/eastersealsgoodwillnorthernrockymountain-72b5ff.png", + "icon": "https://data.mapcomplete.org/nsi//logos/eastersealsgoodwillnorthernrockymountain-72b5ff.png", "osmTags": { "and": [ "shop=charity", @@ -448390,7 +448604,7 @@ }, { "question": "Evansville Goodwill Industries", - "icon": "./assets/data/nsi/logos/evansvillegoodwillindustries-f90552.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evansvillegoodwillindustries-f90552.jpg", "osmTags": { "and": [ "shop=charity", @@ -448408,7 +448622,7 @@ }, { "question": "Evergreen Goodwill", - "icon": "./assets/data/nsi/logos/evergreengoodwill-4ad421.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/evergreengoodwill-4ad421.jpg", "osmTags": { "and": [ "shop=charity", @@ -448426,7 +448640,7 @@ }, { "question": "Goodwill Central Coast", - "icon": "./assets/data/nsi/logos/goodwillcentralcoast-efc9f2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillcentralcoast-efc9f2.png", "osmTags": { "and": [ "shop=charity", @@ -448444,7 +448658,7 @@ }, { "question": "Goodwill Columbus", - "icon": "./assets/data/nsi/logos/goodwillcolumbus-7d1450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillcolumbus-7d1450.jpg", "osmTags": { "and": [ "shop=charity", @@ -448462,7 +448676,7 @@ }, { "question": "Goodwill Easterseals Miami Valley", - "icon": "./assets/data/nsi/logos/goodwilleastersealsmiamivalley-7d1450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsmiamivalley-7d1450.jpg", "osmTags": { "and": [ "shop=charity", @@ -448480,7 +448694,7 @@ }, { "question": "Goodwill Easterseals of the Gulf Coast", - "icon": "./assets/data/nsi/logos/goodwilleastersealsofthegulfcoast-d08f44.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsofthegulfcoast-d08f44.png", "osmTags": { "and": [ "shop=charity", @@ -448498,7 +448712,7 @@ }, { "question": "Goodwill Hawaii", - "icon": "./assets/data/nsi/logos/goodwillhawaii-7d314b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillhawaii-7d314b.jpg", "osmTags": { "and": [ "shop=charity", @@ -448516,7 +448730,7 @@ }, { "question": "Goodwill Industries", - "icon": "./assets/data/nsi/logos/goodwillindustriesontariogreatlakes-48713b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesontariogreatlakes-48713b.png", "osmTags": { "and": [ "shop=charity", @@ -448534,7 +448748,7 @@ }, { "question": "Goodwill Industries Big Bend", - "icon": "./assets/data/nsi/logos/goodwillindustriesbigbend-e021cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesbigbend-e021cd.jpg", "osmTags": { "and": [ "shop=charity", @@ -448552,7 +448766,7 @@ }, { "question": "Goodwill Industries Central Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriescentraltexas-1f3843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriescentraltexas-1f3843.jpg", "osmTags": { "and": [ "shop=charity", @@ -448570,7 +448784,7 @@ }, { "question": "Goodwill Industries of Acadiana", - "icon": "./assets/data/nsi/logos/goodwillindustriesofacadiana-239b23.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofacadiana-239b23.png", "osmTags": { "and": [ "shop=charity", @@ -448588,7 +448802,7 @@ }, { "question": "Goodwill Industries of Akron", - "icon": "./assets/data/nsi/logos/goodwillindustriesofakron-7d1450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofakron-7d1450.jpg", "osmTags": { "and": [ "shop=charity", @@ -448606,7 +448820,7 @@ }, { "question": "Goodwill Industries of Alaska", - "icon": "./assets/data/nsi/logos/goodwillindustriesofalaska-47c56e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofalaska-47c56e.jpg", "osmTags": { "and": [ "shop=charity", @@ -448624,7 +448838,7 @@ }, { "question": "Goodwill Industries of Arkansas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofarkansas-99d5c9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofarkansas-99d5c9.jpg", "osmTags": { "and": [ "shop=charity", @@ -448676,7 +448890,7 @@ }, { "question": "Goodwill Industries of Central and Northern Arizona", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentralandnorthernarizona-69add3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralandnorthernarizona-69add3.png", "osmTags": { "and": [ "shop=charity", @@ -448694,7 +448908,7 @@ }, { "question": "Goodwill Industries of Central East Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentraleasttexas-1f3843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentraleasttexas-1f3843.jpg", "osmTags": { "and": [ "shop=charity", @@ -448729,7 +448943,7 @@ }, { "question": "Goodwill Industries of Central Illinois", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentralillinois-04edf3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralillinois-04edf3.jpg", "osmTags": { "and": [ "shop=charity", @@ -448764,7 +448978,7 @@ }, { "question": "Goodwill Industries of Central North Carolina", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentralnorthcarolina-c4bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentralnorthcarolina-c4bcca.jpg", "osmTags": { "and": [ "shop=charity", @@ -448782,7 +448996,7 @@ }, { "question": "Goodwill Industries of Central Oklahoma", - "icon": "./assets/data/nsi/logos/goodwillindustriesofcentraloklahoma-81bbf3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofcentraloklahoma-81bbf3.jpg", "osmTags": { "and": [ "shop=charity", @@ -448834,7 +449048,7 @@ }, { "question": "Goodwill Industries of East Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofeasttexas-1f3843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofeasttexas-1f3843.jpg", "osmTags": { "and": [ "shop=charity", @@ -448852,7 +449066,7 @@ }, { "question": "Goodwill Industries of Eastern North Carolina", - "icon": "./assets/data/nsi/logos/goodwillindustriesofeasternnorthcarolina-c4bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofeasternnorthcarolina-c4bcca.jpg", "osmTags": { "and": [ "shop=charity", @@ -448870,7 +449084,7 @@ }, { "question": "Goodwill Industries of El Paso", - "icon": "./assets/data/nsi/logos/goodwillindustriesofelpaso-4d0aef.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofelpaso-4d0aef.png", "osmTags": { "and": [ "shop=charity", @@ -448888,7 +449102,7 @@ }, { "question": "Goodwill Industries of Erie, Huron, Ottawa, and Sandusky Counties", - "icon": "./assets/data/nsi/logos/goodwillindustriesoferiehuronottawaandsanduskycounties-7d1450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoferiehuronottawaandsanduskycounties-7d1450.jpg", "osmTags": { "and": [ "shop=charity", @@ -448906,7 +449120,7 @@ }, { "question": "Goodwill Industries of Greater Cleveland & East Central Ohio", - "icon": "./assets/data/nsi/logos/goodwillindustriesofgreaterclevelandandeastcentralohio-e44058.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaterclevelandandeastcentralohio-e44058.jpg", "osmTags": { "and": [ "shop=charity", @@ -448924,7 +449138,7 @@ }, { "question": "Goodwill Industries of Greater Detroit", - "icon": "./assets/data/nsi/logos/goodwillindustriesofgreaterdetroit-db4f48.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaterdetroit-db4f48.png", "osmTags": { "and": [ "shop=charity", @@ -448942,7 +449156,7 @@ }, { "question": "Goodwill Industries of Greater Grand Rapids", - "icon": "./assets/data/nsi/logos/goodwillindustriesofgreatergrandrapids-db4f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreatergrandrapids-db4f48.jpg", "osmTags": { "and": [ "shop=charity", @@ -448960,7 +449174,7 @@ }, { "question": "Goodwill Industries of Greater Nebraska", - "icon": "./assets/data/nsi/logos/goodwillindustriesofgreaternebraska-730912.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofgreaternebraska-730912.jpg", "osmTags": { "and": [ "shop=charity", @@ -448978,7 +449192,7 @@ }, { "question": "Goodwill Industries of Houston", - "icon": "./assets/data/nsi/logos/goodwillindustriesofhouston-1f3843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofhouston-1f3843.jpg", "osmTags": { "and": [ "shop=charity", @@ -448996,7 +449210,7 @@ }, { "question": "Goodwill Industries of Kansas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofkansas-557a0a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkansas-557a0a.jpg", "osmTags": { "and": [ "shop=charity", @@ -449014,7 +449228,7 @@ }, { "question": "Goodwill Industries of Kentucky", - "icon": "./assets/data/nsi/logos/goodwillindustriesofkentucky-ff88c0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkentucky-ff88c0.jpg", "osmTags": { "and": [ "shop=charity", @@ -449032,7 +449246,7 @@ }, { "question": "Goodwill Industries of KYOWVA Area", - "icon": "./assets/data/nsi/logos/goodwillindustriesofkyowvaarea-70702e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofkyowvaarea-70702e.jpg", "osmTags": { "and": [ "shop=charity", @@ -449050,7 +449264,7 @@ }, { "question": "Goodwill Industries of Lane and South Coast Counties", - "icon": "./assets/data/nsi/logos/goodwillindustriesoflaneandsouthcoastcounties-469915.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoflaneandsouthcoastcounties-469915.jpg", "osmTags": { "and": [ "shop=charity", @@ -449068,7 +449282,7 @@ }, { "question": "Goodwill Industries of Michiana", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmichiana-2fd554.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmichiana-2fd554.jpg", "osmTags": { "and": [ "shop=charity", @@ -449086,7 +449300,7 @@ }, { "question": "Goodwill Industries of Mid-Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmidmichigan-db4f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmidmichigan-db4f48.jpg", "osmTags": { "and": [ "shop=charity", @@ -449104,7 +449318,7 @@ }, { "question": "Goodwill Industries of Middle Georgia and the Central Savannah River Area", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmiddlegeorgiaandthecentralsavannahriverarea-788893.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmiddlegeorgiaandthecentralsavannahriverarea-788893.jpg", "osmTags": { "and": [ "shop=charity", @@ -449122,7 +449336,7 @@ }, { "question": "Goodwill Industries of Middle Tennessee", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmiddletennessee-c25d71.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmiddletennessee-c25d71.png", "osmTags": { "and": [ "shop=charity", @@ -449140,7 +449354,7 @@ }, { "question": "Goodwill Industries of Mississippi", - "icon": "./assets/data/nsi/logos/goodwillindustriesofmississippi-5da02e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofmississippi-5da02e.jpg", "osmTags": { "and": [ "shop=charity", @@ -449158,7 +449372,7 @@ }, { "question": "Goodwill Industries of New Mexico", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnewmexico-b5dc7a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnewmexico-b5dc7a.jpg", "osmTags": { "and": [ "shop=charity", @@ -449176,7 +449390,7 @@ }, { "question": "Goodwill Industries of North Central Pennsylvania", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthcentralpennsylvania-90dcfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthcentralpennsylvania-90dcfa.jpg", "osmTags": { "and": [ "shop=charity", @@ -449194,7 +449408,7 @@ }, { "question": "Goodwill Industries of North Central Wisconsin", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthcentralwisconsin-3917ca.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthcentralwisconsin-3917ca.png", "osmTags": { "and": [ "shop=charity", @@ -449212,7 +449426,7 @@ }, { "question": "Goodwill Industries of North Florida", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthflorida-4a845a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthflorida-4a845a.jpg", "osmTags": { "and": [ "shop=charity", @@ -449230,7 +449444,7 @@ }, { "question": "Goodwill Industries of North Louisiana", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthlouisiana-239b23.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthlouisiana-239b23.jpg", "osmTags": { "and": [ "shop=charity", @@ -449265,7 +449479,7 @@ }, { "question": "Goodwill Industries of Northeast Iowa", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnortheastiowa-110f24.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheastiowa-110f24.jpg", "osmTags": { "and": [ "shop=charity", @@ -449283,7 +449497,7 @@ }, { "question": "Goodwill Industries of Northeast Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnortheasttexas-f45a9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheasttexas-f45a9b.jpg", "osmTags": { "and": [ "shop=charity", @@ -449301,7 +449515,7 @@ }, { "question": "Goodwill Industries of Northeastern Pennsylvania", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnortheasternpennsylvania-90dcfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnortheasternpennsylvania-90dcfa.jpg", "osmTags": { "and": [ "shop=charity", @@ -449319,7 +449533,7 @@ }, { "question": "Goodwill Industries of Northern Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthernmichigan-db4f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthernmichigan-db4f48.jpg", "osmTags": { "and": [ "shop=charity", @@ -449337,7 +449551,7 @@ }, { "question": "Goodwill Industries of Northwest North Carolina", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthwestnorthcarolina-c4bcca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthwestnorthcarolina-c4bcca.jpg", "osmTags": { "and": [ "shop=charity", @@ -449372,7 +449586,7 @@ }, { "question": "Goodwill Industries of Northwest Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthwesttexas-1f3843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthwesttexas-1f3843.jpg", "osmTags": { "and": [ "shop=charity", @@ -449390,7 +449604,7 @@ }, { "question": "Goodwill Industries of Saint Clair County", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsaintclaircounty-db4f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsaintclaircounty-db4f48.jpg", "osmTags": { "and": [ "shop=charity", @@ -449408,7 +449622,7 @@ }, { "question": "Goodwill Industries of San Antonio", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsanantonio-1f3843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsanantonio-1f3843.jpg", "osmTags": { "and": [ "shop=charity", @@ -449426,7 +449640,7 @@ }, { "question": "Goodwill Industries of San Diego County", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsandiegocounty-efc9f2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsandiegocounty-efc9f2.png", "osmTags": { "and": [ "shop=charity", @@ -449444,7 +449658,7 @@ }, { "question": "Goodwill Industries of San Joaquin Valley", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsanjoaquinvalley-efc9f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsanjoaquinvalley-efc9f2.jpg", "osmTags": { "and": [ "shop=charity", @@ -449462,7 +449676,7 @@ }, { "question": "Goodwill Industries of South Central California", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthcentralcalifornia-efc9f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthcentralcalifornia-efc9f2.jpg", "osmTags": { "and": [ "shop=charity", @@ -449480,7 +449694,7 @@ }, { "question": "Goodwill Industries of South Florida", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthflorida-4a845a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthflorida-4a845a.jpg", "osmTags": { "and": [ "shop=charity", @@ -449498,7 +449712,7 @@ }, { "question": "Goodwill Industries of South Mississippi", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthmississippi-5da02e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthmississippi-5da02e.jpg", "osmTags": { "and": [ "shop=charity", @@ -449516,7 +449730,7 @@ }, { "question": "Goodwill Industries of South Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthtexas-1f3843.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthtexas-1f3843.png", "osmTags": { "and": [ "shop=charity", @@ -449534,7 +449748,7 @@ }, { "question": "Goodwill Industries of Southeast Texas and Southwest Louisiana", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsoutheasttexasandsouthwestlouisiana-0a5fc3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasttexasandsouthwestlouisiana-0a5fc3.jpg", "osmTags": { "and": [ "shop=charity", @@ -449569,7 +449783,7 @@ }, { "question": "Goodwill Industries of Southeastern Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsoutheasternmichigan-db4f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasternmichigan-db4f48.jpg", "osmTags": { "and": [ "shop=charity", @@ -449587,7 +449801,7 @@ }, { "question": "Goodwill Industries of Southeastern Wisconsin and Metropolitan Chicago", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsoutheasternwisconsinandmetropolitanchicago-fd97cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsoutheasternwisconsinandmetropolitanchicago-fd97cd.jpg", "osmTags": { "and": [ "shop=charity", @@ -449605,7 +449819,7 @@ }, { "question": "Goodwill Industries of Southern Arizona", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthernarizona-69add3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthernarizona-69add3.jpg", "osmTags": { "and": [ "shop=charity", @@ -449623,7 +449837,7 @@ }, { "question": "Goodwill Industries of Southern New Jersey & Philadelphia", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthernnewjerseyandphiladelphia-9a105e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthernnewjerseyandphiladelphia-9a105e.jpg", "osmTags": { "and": [ "shop=charity", @@ -449658,7 +449872,7 @@ }, { "question": "Goodwill Industries of Southwest Florida", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthwestflorida-4a845a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwestflorida-4a845a.jpg", "osmTags": { "and": [ "shop=charity", @@ -449676,7 +449890,7 @@ }, { "question": "Goodwill Industries of Southwest Oklahoma and North Texas", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthwestoklahomaandnorthtexas-f45a9b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwestoklahomaandnorthtexas-f45a9b.jpg", "osmTags": { "and": [ "shop=charity", @@ -449694,7 +449908,7 @@ }, { "question": "Goodwill Industries of Southwestern Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofsouthwesternmichigan-db4f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofsouthwesternmichigan-db4f48.jpg", "osmTags": { "and": [ "shop=charity", @@ -449712,7 +449926,7 @@ }, { "question": "Goodwill Industries of Tenneva", - "icon": "./assets/data/nsi/logos/goodwillindustriesoftenneva-e7ef9c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftenneva-e7ef9c.jpg", "osmTags": { "and": [ "shop=charity", @@ -449730,7 +449944,7 @@ }, { "question": "Goodwill Industries of the Berkshires and Southern Vermont", - "icon": "./assets/data/nsi/logos/goodwillindustriesoftheberkshiresandsouthernvermont-b60dce.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftheberkshiresandsouthernvermont-b60dce.jpg", "osmTags": { "and": [ "shop=charity", @@ -449748,7 +449962,7 @@ }, { "question": "Goodwill Industries of the Chesapeake", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthechesapeake-c7f62c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthechesapeake-c7f62c.jpg", "osmTags": { "and": [ "shop=charity", @@ -449766,7 +449980,7 @@ }, { "question": "Goodwill Industries of the Columbia", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthecolumbia-ffe688.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthecolumbia-ffe688.png", "osmTags": { "and": [ "shop=charity", @@ -449784,7 +449998,7 @@ }, { "question": "Goodwill Industries of the Columbia Willamette", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthecolumbiawillamette-ffe688.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthecolumbiawillamette-ffe688.jpg", "osmTags": { "and": [ "shop=charity", @@ -449802,7 +450016,7 @@ }, { "question": "Goodwill Industries of the Greater Chattanooga Area", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthegreaterchattanoogaarea-0a549e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthegreaterchattanoogaarea-0a549e.jpg", "osmTags": { "and": [ "shop=charity", @@ -449837,7 +450051,7 @@ }, { "question": "Goodwill Industries of the Inland Northwest", - "icon": "./assets/data/nsi/logos/goodwillindustriesoftheinlandnorthwest-b786a5.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftheinlandnorthwest-b786a5.png", "osmTags": { "and": [ "shop=charity", @@ -449855,7 +450069,7 @@ }, { "question": "Goodwill Industries of the Southern Piedmont", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthesouthernpiedmont-a6f29a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthesouthernpiedmont-a6f29a.jpg", "osmTags": { "and": [ "shop=charity", @@ -449873,7 +450087,7 @@ }, { "question": "Goodwill Industries of the Summit", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthesummit-1772e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthesummit-1772e0.jpg", "osmTags": { "and": [ "shop=charity", @@ -449891,7 +450105,7 @@ }, { "question": "Goodwill Industries of the Valleys", - "icon": "./assets/data/nsi/logos/goodwillindustriesofthevalleys-8ffb7c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofthevalleys-8ffb7c.png", "osmTags": { "and": [ "shop=charity", @@ -449909,7 +450123,7 @@ }, { "question": "Goodwill Industries of Tulsa", - "icon": "./assets/data/nsi/logos/goodwillindustriesoftulsa-59d264.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesoftulsa-59d264.jpg", "osmTags": { "and": [ "shop=charity", @@ -449927,7 +450141,7 @@ }, { "question": "Goodwill Industries of Upstate/Midlands South Carolina", - "icon": "./assets/data/nsi/logos/goodwillindustriesofupstatemidlandssouthcarolina-80da42.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofupstatemidlandssouthcarolina-80da42.png", "osmTags": { "and": [ "shop=charity", @@ -449945,7 +450159,7 @@ }, { "question": "Goodwill Industries of Wayne and Holmes Counties", - "icon": "./assets/data/nsi/logos/goodwillindustriesofwayneandholmescounties-7d1450.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwayneandholmescounties-7d1450.png", "osmTags": { "and": [ "shop=charity", @@ -449963,7 +450177,7 @@ }, { "question": "Goodwill Industries of West Michigan", - "icon": "./assets/data/nsi/logos/goodwillindustriesofwestmichigan-db4f48.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwestmichigan-db4f48.jpg", "osmTags": { "and": [ "shop=charity", @@ -449981,7 +450195,7 @@ }, { "question": "Goodwill Industries of Wyoming", - "icon": "./assets/data/nsi/logos/goodwillindustriesofwyoming-7ddffb.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofwyoming-7ddffb.jpg", "osmTags": { "and": [ "shop=charity", @@ -449999,7 +450213,7 @@ }, { "question": "Goodwill Industries of Zanesville", - "icon": "./assets/data/nsi/logos/goodwillindustriesofzanesville-e44058.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofzanesville-e44058.jpg", "osmTags": { "and": [ "shop=charity", @@ -450017,7 +450231,7 @@ }, { "question": "Goodwill Industries Serving Southeast Nebraska", - "icon": "./assets/data/nsi/logos/goodwillindustriesservingsoutheastnebraska-730912.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesservingsoutheastnebraska-730912.png", "osmTags": { "and": [ "shop=charity", @@ -450035,7 +450249,7 @@ }, { "question": "Goodwill Industries Suncoast", - "icon": "./assets/data/nsi/logos/goodwillindustriessuncoast-4a845a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriessuncoast-4a845a.jpg", "osmTags": { "and": [ "shop=charity", @@ -450053,7 +450267,7 @@ }, { "question": "Goodwill Industries-Knoxville", - "icon": "./assets/data/nsi/logos/goodwillindustriesknoxville-c25d71.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesknoxville-c25d71.jpg", "osmTags": { "and": [ "shop=charity", @@ -450071,7 +450285,7 @@ }, { "question": "Goodwill Keystone Area", - "icon": "./assets/data/nsi/logos/goodwillkeystonearea-90dcfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillkeystonearea-90dcfa.jpg", "osmTags": { "and": [ "shop=charity", @@ -450089,7 +450303,7 @@ }, { "question": "Goodwill Manasota", - "icon": "./assets/data/nsi/logos/goodwillmanasota-4a845a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillmanasota-4a845a.jpg", "osmTags": { "and": [ "shop=charity", @@ -450107,7 +450321,7 @@ }, { "question": "Goodwill North Central Texas", - "icon": "./assets/data/nsi/logos/goodwillnorthcentraltexas-1f3843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillnorthcentraltexas-1f3843.jpg", "osmTags": { "and": [ "shop=charity", @@ -450125,7 +450339,7 @@ }, { "question": "Goodwill Northern New England", - "icon": "./assets/data/nsi/logos/goodwillindustriesofnorthernnewengland-8706d7.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofnorthernnewengland-8706d7.png", "osmTags": { "and": [ "shop=charity", @@ -450143,7 +450357,7 @@ }, { "question": "Goodwill NYNJ", - "icon": "./assets/data/nsi/logos/goodwillnynj-af8277.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillnynj-af8277.jpg", "osmTags": { "and": [ "shop=charity", @@ -450161,7 +450375,7 @@ }, { "question": "Goodwill of Central & Southern Indiana", - "icon": "./assets/data/nsi/logos/goodwillofcentralandsouthernindiana-fa4f39.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofcentralandsouthernindiana-fa4f39.png", "osmTags": { "and": [ "shop=charity", @@ -450179,7 +450393,7 @@ }, { "question": "Goodwill of Central and Coastal Virginia", - "icon": "./assets/data/nsi/logos/goodwillofcentralandcoastalvirginia-8ffb7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofcentralandcoastalvirginia-8ffb7c.jpg", "osmTags": { "and": [ "shop=charity", @@ -450214,7 +450428,7 @@ }, { "question": "Goodwill of Colorado", - "icon": "./assets/data/nsi/logos/goodwillofcolorado-97b90c.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofcolorado-97b90c.png", "osmTags": { "and": [ "shop=charity", @@ -450232,7 +450446,7 @@ }, { "question": "Goodwill of Greater Washington", - "icon": "./assets/data/nsi/logos/goodwillofgreaterwashington-9f4803.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofgreaterwashington-9f4803.png", "osmTags": { "and": [ "shop=charity", @@ -450250,7 +450464,7 @@ }, { "question": "Goodwill of North Central West Virginia", - "icon": "./assets/data/nsi/logos/goodwillofnorthcentralwestvirginia-1772e0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthcentralwestvirginia-1772e0.jpg", "osmTags": { "and": [ "shop=charity", @@ -450268,7 +450482,7 @@ }, { "question": "Goodwill of North Georgia", - "icon": "./assets/data/nsi/logos/goodwillofnorthgeorgia-a151f3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthgeorgia-a151f3.png", "osmTags": { "and": [ "shop=charity", @@ -450286,7 +450500,7 @@ }, { "question": "Goodwill of Northern Illinois", - "icon": "./assets/data/nsi/logos/goodwillofnorthernillinois-fd97cd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthernillinois-fd97cd.jpg", "osmTags": { "and": [ "shop=charity", @@ -450304,7 +450518,7 @@ }, { "question": "Goodwill of Northern Wisconsin and Upper Michigan", - "icon": "./assets/data/nsi/logos/goodwillofnorthernwisconsinanduppermichigan-298eef.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofnorthernwisconsinanduppermichigan-298eef.jpg", "osmTags": { "and": [ "shop=charity", @@ -450322,7 +450536,7 @@ }, { "question": "Goodwill of Orange County", - "icon": "./assets/data/nsi/logos/goodwilloforangecounty-c30ced.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilloforangecounty-c30ced.jpg", "osmTags": { "and": [ "shop=charity", @@ -450340,7 +450554,7 @@ }, { "question": "Goodwill of Silicon Valley", - "icon": "./assets/data/nsi/logos/goodwillofsiliconvalley-efc9f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsiliconvalley-efc9f2.jpg", "osmTags": { "and": [ "shop=charity", @@ -450358,7 +450572,7 @@ }, { "question": "Goodwill of South Central Ohio", - "icon": "./assets/data/nsi/logos/goodwillofsouthcentralohio-7d1450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthcentralohio-7d1450.jpg", "osmTags": { "and": [ "shop=charity", @@ -450376,7 +450590,7 @@ }, { "question": "Goodwill of South Central Wisconsin", - "icon": "./assets/data/nsi/logos/goodwillofsouthcentralwisconsin-3917ca.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthcentralwisconsin-3917ca.jpg", "osmTags": { "and": [ "shop=charity", @@ -450394,7 +450608,7 @@ }, { "question": "Goodwill of Southern Nevada", - "icon": "./assets/data/nsi/logos/goodwillofsouthernnevada-e2f593.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthernnevada-e2f593.jpg", "osmTags": { "and": [ "shop=charity", @@ -450412,7 +450626,7 @@ }, { "question": "Goodwill of Southern New England", - "icon": "./assets/data/nsi/logos/goodwillofsouthernnewengland-73c42a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthernnewengland-73c42a.jpg", "osmTags": { "and": [ "shop=charity", @@ -450430,7 +450644,7 @@ }, { "question": "Goodwill of Southwestern Pennsylvania", - "icon": "./assets/data/nsi/logos/goodwillofsouthwesternpennsylvania-90dcfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsouthwesternpennsylvania-90dcfa.jpg", "osmTags": { "and": [ "shop=charity", @@ -450448,7 +450662,7 @@ }, { "question": "Goodwill of the Finger Lakes", - "icon": "./assets/data/nsi/logos/goodwillofthefingerlakes-94c896.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofthefingerlakes-94c896.png", "osmTags": { "and": [ "shop=charity", @@ -450466,7 +450680,7 @@ }, { "question": "Goodwill of the Great Plains", - "icon": "./assets/data/nsi/logos/goodwillofthegreatplains-830112.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofthegreatplains-830112.png", "osmTags": { "and": [ "shop=charity", @@ -450484,7 +450698,7 @@ }, { "question": "Goodwill of the Heartland", - "icon": "./assets/data/nsi/logos/goodwilloftheheartland-e890bf.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilloftheheartland-e890bf.jpg", "osmTags": { "and": [ "shop=charity", @@ -450502,7 +450716,7 @@ }, { "question": "Goodwill of the Olympics & Rainier Region", - "icon": "./assets/data/nsi/logos/goodwilloftheolympicsandrainierregion-4ad421.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilloftheolympicsandrainierregion-4ad421.png", "osmTags": { "and": [ "shop=charity", @@ -450520,7 +450734,7 @@ }, { "question": "Goodwill of the Southern Alleghenies", - "icon": "./assets/data/nsi/logos/goodwillofthesouthernalleghenies-90dcfa.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofthesouthernalleghenies-90dcfa.jpg", "osmTags": { "and": [ "shop=charity", @@ -450538,7 +450752,7 @@ }, { "question": "Goodwill of Western & Northern Connecticut", - "icon": "./assets/data/nsi/logos/goodwillofwesternandnorthernconnecticut-31280a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternandnorthernconnecticut-31280a.jpg", "osmTags": { "and": [ "shop=charity", @@ -450556,7 +450770,7 @@ }, { "question": "Goodwill of Western Missouri and Eastern Kansas", - "icon": "./assets/data/nsi/logos/goodwillofwesternmissouriandeasternkansas-9827d9.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternmissouriandeasternkansas-9827d9.jpg", "osmTags": { "and": [ "shop=charity", @@ -450574,7 +450788,7 @@ }, { "question": "Goodwill of Western New York", - "icon": "./assets/data/nsi/logos/goodwillofwesternnewyork-94c896.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofwesternnewyork-94c896.jpg", "osmTags": { "and": [ "shop=charity", @@ -450592,7 +450806,7 @@ }, { "question": "Goodwill Rappahannock", - "icon": "./assets/data/nsi/logos/goodwillrappahannock-8ffb7c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillrappahannock-8ffb7c.jpg", "osmTags": { "and": [ "shop=charity", @@ -450610,7 +450824,7 @@ }, { "question": "Goodwill Redwood Empire", - "icon": "./assets/data/nsi/logos/goodwillredwoodempire-efc9f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillredwoodempire-efc9f2.jpg", "osmTags": { "and": [ "shop=charity", @@ -450628,7 +450842,7 @@ }, { "question": "Goodwill Sacramento Valley & Northern Nevada", - "icon": "./assets/data/nsi/logos/goodwillsacramentovalleyandnorthernnevada-d1b13f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillsacramentovalleyandnorthernnevada-d1b13f.png", "osmTags": { "and": [ "shop=charity", @@ -450646,7 +450860,7 @@ }, { "question": "Goodwill Serving Eastern Nebraska and Southwest Iowa", - "icon": "./assets/data/nsi/logos/goodwillservingeasternnebraskaandsouthwestiowa-9df4d0.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillservingeasternnebraskaandsouthwestiowa-9df4d0.jpg", "osmTags": { "and": [ "shop=charity", @@ -450664,7 +450878,7 @@ }, { "question": "Goodwill Serving Lorain, Erie and Huron Counties", - "icon": "./assets/data/nsi/logos/goodwillservinglorainerieandhuroncounties-7d1450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillservinglorainerieandhuroncounties-7d1450.jpg", "osmTags": { "and": [ "shop=charity", @@ -450682,7 +450896,7 @@ }, { "question": "Goodwill SF Bay", - "icon": "./assets/data/nsi/logos/goodwillofsanfranciscobay-efc9f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillofsanfranciscobay-efc9f2.jpg", "osmTags": { "and": [ "shop=charity", @@ -450700,7 +450914,7 @@ }, { "question": "Goodwill Southeast Georgia", - "icon": "./assets/data/nsi/logos/goodwillsoutheastgeorgia-a151f3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillsoutheastgeorgia-a151f3.jpg", "osmTags": { "and": [ "shop=charity", @@ -450718,7 +450932,7 @@ }, { "question": "Goodwill Southern California", - "icon": "./assets/data/nsi/logos/goodwillsoutherncalifornia-efc9f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillsoutherncalifornia-efc9f2.jpg", "osmTags": { "and": [ "shop=charity", @@ -450736,7 +450950,7 @@ }, { "question": "Goodwill Southern Los Angeles County", - "icon": "./assets/data/nsi/logos/goodwillsouthernlosangelescounty-efc9f2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillsouthernlosangelescounty-efc9f2.png", "osmTags": { "and": [ "shop=charity", @@ -450754,7 +450968,7 @@ }, { "question": "Goodwill VSB", - "icon": "./assets/data/nsi/logos/goodwillindustriesofventuraandsantabarbaracounties-efc9f2.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillindustriesofventuraandsantabarbaracounties-efc9f2.jpg", "osmTags": { "and": [ "shop=charity", @@ -450772,7 +450986,7 @@ }, { "question": "Goodwill West Texas", - "icon": "./assets/data/nsi/logos/goodwillwesttexas-1f3843.png", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwillwesttexas-1f3843.png", "osmTags": { "and": [ "shop=charity", @@ -450790,7 +451004,7 @@ }, { "question": "Goodwill-Easter Seals Minnesota", - "icon": "./assets/data/nsi/logos/goodwilleastersealsminnesota-d58266.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/goodwilleastersealsminnesota-d58266.jpg", "osmTags": { "and": [ "shop=charity", @@ -450808,7 +451022,7 @@ }, { "question": "Gulfstream Goodwill Industries", - "icon": "./assets/data/nsi/logos/gulfstreamgoodwillindustries-4a845a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/gulfstreamgoodwillindustries-4a845a.jpg", "osmTags": { "and": [ "shop=charity", @@ -450826,7 +451040,7 @@ }, { "question": "Heart of Texas Goodwill Industries", - "icon": "./assets/data/nsi/logos/heartoftexasgoodwillindustries-1f3843.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/heartoftexasgoodwillindustries-1f3843.jpg", "osmTags": { "and": [ "shop=charity", @@ -450844,7 +451058,7 @@ }, { "question": "Horizon Goodwill Industries", - "icon": "./assets/data/nsi/logos/horizongoodwillindustries-fa25da.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/horizongoodwillindustries-fa25da.jpg", "osmTags": { "and": [ "shop=charity", @@ -450862,7 +451076,7 @@ }, { "question": "Land of Lincoln Goodwill Industries", - "icon": "./assets/data/nsi/logos/landoflincolngoodwillindustries-4e33ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/landoflincolngoodwillindustries-4e33ec.jpg", "osmTags": { "and": [ "shop=charity", @@ -450880,7 +451094,7 @@ }, { "question": "Licking/Knox Goodwill Industries", - "icon": "./assets/data/nsi/logos/lickingknoxgoodwillindustries-7d1450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lickingknoxgoodwillindustries-7d1450.jpg", "osmTags": { "and": [ "shop=charity", @@ -450898,7 +451112,7 @@ }, { "question": "Marion Goodwill Industries", - "icon": "./assets/data/nsi/logos/mariongoodwillindustries-7d1450.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mariongoodwillindustries-7d1450.jpg", "osmTags": { "and": [ "shop=charity", @@ -450916,7 +451130,7 @@ }, { "question": "Memphis Goodwill", - "icon": "./assets/data/nsi/logos/memphisgoodwill-587281.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/memphisgoodwill-587281.jpg", "osmTags": { "and": [ "shop=charity", @@ -450934,7 +451148,7 @@ }, { "question": "MERS Missouri Goodwill Industries", - "icon": "./assets/data/nsi/logos/mersmissourigoodwillindustries-bb7113.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mersmissourigoodwillindustries-bb7113.jpg", "osmTags": { "and": [ "shop=charity", @@ -450952,7 +451166,7 @@ }, { "question": "Morgan Memorial Goodwill Industries", - "icon": "./assets/data/nsi/logos/morganmemorialgoodwillindustries-798f3b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/morganmemorialgoodwillindustries-798f3b.jpg", "osmTags": { "and": [ "shop=charity", @@ -450970,7 +451184,7 @@ }, { "question": "Ohio Valley Goodwill Industries", - "icon": "./assets/data/nsi/logos/ohiovalleygoodwillindustries-9d056f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ohiovalleygoodwillindustries-9d056f.jpg", "osmTags": { "and": [ "shop=charity", @@ -450988,7 +451202,7 @@ }, { "question": "Palmetto Goodwill", - "icon": "./assets/data/nsi/logos/palmettogoodwill-80da42.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/palmettogoodwill-80da42.jpg", "osmTags": { "and": [ "shop=charity", @@ -451006,7 +451220,7 @@ }, { "question": "Southern Oregon Goodwill Industries", - "icon": "./assets/data/nsi/logos/southernoregongoodwillindustries-175839.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/southernoregongoodwillindustries-175839.jpg", "osmTags": { "and": [ "shop=charity", @@ -451024,7 +451238,7 @@ }, { "question": "True North Goodwill", - "icon": "./assets/data/nsi/logos/truenorthgoodwill-d58266.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/truenorthgoodwill-d58266.jpg", "osmTags": { "and": [ "shop=charity", @@ -451042,7 +451256,7 @@ }, { "question": "Wabash Valley Goodwill Industries", - "icon": "./assets/data/nsi/logos/wabashvalleygoodwillindustries-4e33ec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/wabashvalleygoodwillindustries-4e33ec.jpg", "osmTags": { "and": [ "shop=charity", @@ -451060,7 +451274,7 @@ }, { "question": "Youngstown Area Goodwill Industries", - "icon": "./assets/data/nsi/logos/youngstownareagoodwillindustries-cc721c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/youngstownareagoodwillindustries-cc721c.jpg", "osmTags": { "and": [ "shop=charity", @@ -451078,7 +451292,7 @@ }, { "question": "Central England Co-operative", - "icon": "./assets/data/nsi/logos/centralenglandcooperative-ac8d0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralenglandcooperative-ac8d0d.jpg", "osmTags": { "and": [ "shop=convenience", @@ -451096,7 +451310,7 @@ }, { "question": "Chelmsford Star Co-operative Society", - "icon": "./assets/data/nsi/logos/chelmsfordstarcooperativesociety-ac8d0d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chelmsfordstarcooperativesociety-ac8d0d.jpg", "osmTags": { "and": [ "shop=convenience", @@ -451131,7 +451345,7 @@ }, { "question": "The Co-operative Group (coop blue)", - "icon": "./assets/data/nsi/logos/thecooperativegroup-ac8d0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thecooperativegroup-ac8d0d.png", "osmTags": { "and": [ "shop=convenience", @@ -451149,7 +451363,7 @@ }, { "question": "The Southern Co-operative", - "icon": "./assets/data/nsi/logos/thesoutherncooperative-ac8d0d.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thesoutherncooperative-ac8d0d.png", "osmTags": { "and": [ "shop=convenience", @@ -451167,7 +451381,7 @@ }, { "question": "Ayala Malls", - "icon": "./assets/data/nsi/logos/ayalamalls-36e96f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ayalamalls-36e96f.jpg", "osmTags": { "and": [ "shop=mall", @@ -451182,7 +451396,7 @@ }, { "question": "Brookfield Properties", - "icon": "./assets/data/nsi/logos/brookfieldproperties-58b77a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/brookfieldproperties-58b77a.png", "osmTags": { "and": [ "shop=mall", @@ -451197,7 +451411,7 @@ }, { "question": "CBL Properties", - "icon": "./assets/data/nsi/logos/cblproperties-da138d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cblproperties-da138d.jpg", "osmTags": { "and": [ "shop=mall", @@ -451212,7 +451426,7 @@ }, { "question": "Central Pattana", - "icon": "./assets/data/nsi/logos/centralpattana-a61f66.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/centralpattana-a61f66.svg", "osmTags": { "and": [ "shop=mall", @@ -451229,7 +451443,7 @@ }, { "question": "Macerich", - "icon": "./assets/data/nsi/logos/macerich-da138d.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/macerich-da138d.jpg", "osmTags": { "and": [ "shop=mall", @@ -451244,7 +451458,7 @@ }, { "question": "Megaworld Lifestyle Malls", - "icon": "./assets/data/nsi/logos/megaworldlifestylemalls-36e96f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/megaworldlifestylemalls-36e96f.jpg", "osmTags": { "and": [ "shop=mall", @@ -451259,7 +451473,7 @@ }, { "question": "Robinsons Malls", - "icon": "./assets/data/nsi/logos/robinsonsmalls-36e96f.png", + "icon": "https://data.mapcomplete.org/nsi//logos/robinsonsmalls-36e96f.png", "osmTags": { "and": [ "shop=mall", @@ -451274,7 +451488,7 @@ }, { "question": "Simon Property Group", - "icon": "./assets/data/nsi/logos/simonpropertygroup-58b77a.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/simonpropertygroup-58b77a.jpg", "osmTags": { "and": [ "shop=mall", @@ -451289,7 +451503,7 @@ }, { "question": "SM Supermalls", - "icon": "./assets/data/nsi/logos/smsupermalls-36e96f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/smsupermalls-36e96f.jpg", "osmTags": { "and": [ "shop=mall", @@ -451304,7 +451518,7 @@ }, { "question": "Verizon (Cellular Sales)", - "icon": "./assets/data/nsi/logos/cellularsales-89d4ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/cellularsales-89d4ad.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -451335,7 +451549,7 @@ }, { "question": "Verizon (TCC)", - "icon": "./assets/data/nsi/logos/thecellularconnection-89d4ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/thecellularconnection-89d4ad.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -451352,7 +451566,7 @@ }, { "question": "Verizon (Victra)", - "icon": "./assets/data/nsi/logos/victra-89d4ad.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/victra-89d4ad.jpg", "osmTags": { "and": [ "shop=mobile_phone", @@ -451368,7 +451582,7 @@ }, { "question": "Verizon (Wireless Zone)", - "icon": "./assets/data/nsi/logos/wirelesszone-89d4ad.png", + "icon": "https://data.mapcomplete.org/nsi//logos/wirelesszone-89d4ad.png", "osmTags": { "and": [ "shop=mobile_phone", @@ -451384,7 +451598,7 @@ }, { "question": "Метрополитен", - "icon": "./assets/data/nsi/logos/184e0b-394562.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/184e0b-394562.svg", "osmTags": { "and": [ "shop=ticket", @@ -451423,7 +451637,7 @@ }, { "question": "Amazon Web Services", - "icon": "./assets/data/nsi/logos/amazonwebservices-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/amazonwebservices-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451440,7 +451654,7 @@ }, { "question": "Apple Inc.", - "icon": "./assets/data/nsi/logos/appleinc-918717.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appleinc-918717.png", "osmTags": { "and": [ "telecom=data_center", @@ -451455,7 +451669,7 @@ }, { "question": "Bouygues Telecom", - "icon": "./assets/data/nsi/logos/bouyguestelecom-fa4ae3.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bouyguestelecom-fa4ae3.png", "osmTags": { "and": [ "telecom=data_center", @@ -451470,7 +451684,7 @@ }, { "question": "Bunny", - "icon": "./assets/data/nsi/logos/bunny-918717.png", + "icon": "https://data.mapcomplete.org/nsi//logos/bunny-918717.png", "osmTags": { "and": [ "telecom=data_center", @@ -451500,7 +451714,7 @@ }, { "question": "Cloudflare", - "icon": "./assets/data/nsi/logos/cloudflare-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cloudflare-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451516,7 +451730,7 @@ }, { "question": "CyrusOne", - "icon": "./assets/data/nsi/logos/cyrusone-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/cyrusone-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451546,7 +451760,7 @@ }, { "question": "Digital Realty", - "icon": "./assets/data/nsi/logos/digitalrealty-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/digitalrealty-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451562,7 +451776,7 @@ }, { "question": "DigitalOcean", - "icon": "./assets/data/nsi/logos/digitalocean-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/digitalocean-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451578,7 +451792,7 @@ }, { "question": "EdgeConneX", - "icon": "./assets/data/nsi/logos/edgeconnex-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/edgeconnex-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451594,7 +451808,7 @@ }, { "question": "Equinix", - "icon": "./assets/data/nsi/logos/equinix-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/equinix-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451610,7 +451824,7 @@ }, { "question": "Fastly", - "icon": "./assets/data/nsi/logos/fastly-918717.png", + "icon": "https://data.mapcomplete.org/nsi//logos/fastly-918717.png", "osmTags": { "and": [ "telecom=data_center", @@ -451626,7 +451840,7 @@ }, { "question": "Flexential", - "icon": "./assets/data/nsi/logos/flexential-251dd4.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/flexential-251dd4.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451642,7 +451856,7 @@ }, { "question": "Google", - "icon": "./assets/data/nsi/logos/google-918717.png", + "icon": "https://data.mapcomplete.org/nsi//logos/google-918717.png", "osmTags": { "and": [ "telecom=data_center", @@ -451658,7 +451872,7 @@ }, { "question": "Interxion", - "icon": "./assets/data/nsi/logos/interxion-918717.png", + "icon": "https://data.mapcomplete.org/nsi//logos/interxion-918717.png", "osmTags": { "and": [ "telecom=data_center", @@ -451674,7 +451888,7 @@ }, { "question": "Lumen", - "icon": "./assets/data/nsi/logos/lumentechnologies-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lumentechnologies-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451690,7 +451904,7 @@ }, { "question": "Meta", - "icon": "./assets/data/nsi/logos/meta-918717.png", + "icon": "https://data.mapcomplete.org/nsi//logos/meta-918717.png", "osmTags": { "and": [ "telecom=data_center", @@ -451706,7 +451920,7 @@ }, { "question": "Microsoft", - "icon": "./assets/data/nsi/logos/microsoft-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/microsoft-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451722,7 +451936,7 @@ }, { "question": "NextDC", - "icon": "./assets/data/nsi/logos/nextdc-ea7a9e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nextdc-ea7a9e.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451738,7 +451952,7 @@ }, { "question": "NTT", - "icon": "./assets/data/nsi/logos/ntt-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ntt-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451754,7 +451968,7 @@ }, { "question": "QTS", - "icon": "./assets/data/nsi/logos/qualitytechnologyservices-149364.png", + "icon": "https://data.mapcomplete.org/nsi//logos/qualitytechnologyservices-149364.png", "osmTags": { "and": [ "telecom=data_center", @@ -451771,7 +451985,7 @@ }, { "question": "Sabey Data Centers", - "icon": "./assets/data/nsi/logos/sabeydatacenters-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sabeydatacenters-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451786,7 +452000,7 @@ }, { "question": "SFR", - "icon": "./assets/data/nsi/logos/sfr-fa4ae3.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sfr-fa4ae3.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451801,7 +452015,7 @@ }, { "question": "Stack Infrastructure", - "icon": "./assets/data/nsi/logos/stackinfrastructure-918717.png", + "icon": "https://data.mapcomplete.org/nsi//logos/stackinfrastructure-918717.png", "osmTags": { "and": [ "telecom=data_center", @@ -451817,7 +452031,7 @@ }, { "question": "T5 Data Centers", - "icon": "./assets/data/nsi/logos/t5datacenters-251dd4.png", + "icon": "https://data.mapcomplete.org/nsi//logos/t5datacenters-251dd4.png", "osmTags": { "and": [ "telecom=data_center", @@ -451833,7 +452047,7 @@ }, { "question": "Telstra", - "icon": "./assets/data/nsi/logos/telstra-918717.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telstra-918717.jpg", "osmTags": { "and": [ "telecom=data_center", @@ -451849,7 +452063,7 @@ }, { "question": "TPG Telecom", - "icon": "./assets/data/nsi/logos/tpgtelecom-61c6f8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/tpgtelecom-61c6f8.png", "osmTags": { "and": [ "telecom=data_center", @@ -451865,7 +452079,7 @@ }, { "question": "A1 Telekom Austria", - "icon": "./assets/data/nsi/logos/a1telekomaustria-72cd8b.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/a1telekomaustria-72cd8b.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -451903,7 +452117,7 @@ }, { "question": "AT&T", - "icon": "./assets/data/nsi/logos/atandt-ca5b07.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/atandt-ca5b07.svg", "osmTags": { "and": [ "telecom=exchange", @@ -451928,7 +452142,7 @@ }, { "question": "Axione", - "icon": "./assets/data/nsi/logos/axione-92129e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/axione-92129e.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -451943,7 +452157,7 @@ }, { "question": "Bell Aliant", - "icon": "./assets/data/nsi/logos/bellaliant-972095.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellaliant-972095.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -451958,7 +452172,7 @@ }, { "question": "Bell Canada", - "icon": "./assets/data/nsi/logos/bellcanada-972095.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellcanada-972095.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -451973,7 +452187,7 @@ }, { "question": "Bell MTS", - "icon": "./assets/data/nsi/logos/bellmts-e779de.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bellmts-e779de.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -451997,7 +452211,7 @@ }, { "question": "BSNL", - "icon": "./assets/data/nsi/logos/bsnl-f69aec.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/bsnl-f69aec.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452027,7 +452241,7 @@ }, { "question": "Chorus", - "icon": "./assets/data/nsi/logos/chorus-04ab95.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/chorus-04ab95.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452042,7 +452256,7 @@ }, { "question": "Comcast", - "icon": "./assets/data/nsi/logos/comcast-ca5b07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/comcast-ca5b07.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452072,7 +452286,7 @@ }, { "question": "Deutsche Glasfaser", - "icon": "./assets/data/nsi/logos/deutscheglasfaser-650d2e.png", + "icon": "https://data.mapcomplete.org/nsi//logos/deutscheglasfaser-650d2e.png", "osmTags": { "and": [ "telecom=exchange", @@ -452087,7 +452301,7 @@ }, { "question": "Deutsche Telekom AG", - "icon": "./assets/data/nsi/logos/deutschetelekomag-650d2e.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/deutschetelekomag-650d2e.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452116,7 +452330,7 @@ }, { "question": "ETECSA", - "icon": "./assets/data/nsi/logos/etecsa-99f410.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/etecsa-99f410.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452131,7 +452345,7 @@ }, { "question": "Free", - "icon": "./assets/data/nsi/logos/free-a5dd94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/free-a5dd94.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452146,7 +452360,7 @@ }, { "question": "Frontier Communications", - "icon": "./assets/data/nsi/logos/frontier-c2d6f6.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/frontier-c2d6f6.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452162,7 +452376,7 @@ }, { "question": "Glo", - "icon": "./assets/data/nsi/logos/globacom-d6ad77.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/globacom-d6ad77.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452187,7 +452401,7 @@ }, { "question": "Hong Kong Telecom", - "icon": "./assets/data/nsi/logos/hongkongtelecom-361b71.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/hongkongtelecom-361b71.svg", "osmTags": { "and": [ "telecom=exchange", @@ -452225,7 +452439,7 @@ }, { "question": "KPN", - "icon": "./assets/data/nsi/logos/kpn-2cd407.png", + "icon": "https://data.mapcomplete.org/nsi//logos/kpn-2cd407.png", "osmTags": { "and": [ "telecom=exchange", @@ -452258,7 +452472,7 @@ }, { "question": "Lumen", - "icon": "./assets/data/nsi/logos/lumen-94a439.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/lumen-94a439.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452273,7 +452487,7 @@ }, { "question": "Manx Telecom", - "icon": "./assets/data/nsi/logos/manxtelecom-672f7b.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/manxtelecom-672f7b.svg", "osmTags": { "and": [ "telecom=exchange", @@ -452288,7 +452502,7 @@ }, { "question": "MTN Group", - "icon": "./assets/data/nsi/logos/mtn-a2c6c7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/mtn-a2c6c7.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452312,7 +452526,7 @@ }, { "question": "NBN Co", - "icon": "./assets/data/nsi/logos/nbnco-03cc00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nbnco-03cc00.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452327,7 +452541,7 @@ }, { "question": "NTT東日本", - "icon": "./assets/data/nsi/logos/nippontelegraphandtelephoneeast-d78dfd.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nippontelegraphandtelephoneeast-d78dfd.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452347,7 +452561,7 @@ }, { "question": "NTT西日本", - "icon": "./assets/data/nsi/logos/nippontelegraphandtelephonewest-bad60c.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/nippontelegraphandtelephonewest-bad60c.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452367,7 +452581,7 @@ }, { "question": "Openreach", - "icon": "./assets/data/nsi/logos/openreach-ef19df.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/openreach-ef19df.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452382,7 +452596,7 @@ }, { "question": "Orange", - "icon": "./assets/data/nsi/logos/orange-a5dd94.png", + "icon": "https://data.mapcomplete.org/nsi//logos/orange-a5dd94.png", "osmTags": { "and": [ "telecom=exchange", @@ -452398,7 +452612,7 @@ }, { "question": "Proximus", - "icon": "./assets/data/nsi/logos/proximus-121b1a.png", + "icon": "https://data.mapcomplete.org/nsi//logos/proximus-121b1a.png", "osmTags": { "and": [ "telecom=exchange", @@ -452428,7 +452642,7 @@ }, { "question": "SFR", - "icon": "./assets/data/nsi/logos/sfr-a5dd94.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/sfr-a5dd94.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452457,7 +452671,7 @@ }, { "question": "Starlink Ground Station", - "icon": "./assets/data/nsi/logos/starlink-d331a5.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/starlink-d331a5.svg", "osmTags": { "and": [ "telecom=exchange", @@ -452472,7 +452686,7 @@ }, { "question": "Swisscom", - "icon": "./assets/data/nsi/logos/swisscom-3773d7.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/swisscom-3773d7.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452501,7 +452715,7 @@ }, { "question": "TDF", - "icon": "./assets/data/nsi/logos/tdf-92129e.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/tdf-92129e.svg", "osmTags": { "and": [ "telecom=exchange", @@ -452516,7 +452730,7 @@ }, { "question": "Telefónica", - "icon": "./assets/data/nsi/logos/telefonica-1b5ba5.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telefonica-1b5ba5.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452531,7 +452745,7 @@ }, { "question": "Telstra", - "icon": "./assets/data/nsi/logos/telstra-03cc00.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telstra-03cc00.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452546,7 +452760,7 @@ }, { "question": "Telus", - "icon": "./assets/data/nsi/logos/telus-972095.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/telus-972095.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452570,7 +452784,7 @@ }, { "question": "TIM", - "icon": "./assets/data/nsi/logos/tim-16a737.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/tim-16a737.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452585,7 +452799,7 @@ }, { "question": "Türk Telekom", - "icon": "./assets/data/nsi/logos/turktelekom-fd4f59.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/turktelekom-fd4f59.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452609,7 +452823,7 @@ }, { "question": "Verizon", - "icon": "./assets/data/nsi/logos/verizon-ca5b07.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/verizon-ca5b07.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452625,7 +452839,7 @@ }, { "question": "Verizon Virginia LLC", - "icon": "./assets/data/nsi/logos/verizonvirginiallc-ca5b07.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/verizonvirginiallc-ca5b07.svg", "osmTags": { "and": [ "telecom=exchange", @@ -452663,7 +452877,7 @@ }, { "question": "Ziply Fiber", - "icon": "./assets/data/nsi/logos/ziplyfiber-a4e28f.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/ziplyfiber-a4e28f.jpg", "osmTags": { "and": [ "telecom=exchange", @@ -452679,7 +452893,7 @@ }, { "question": "ПАО «Ростелеком»", - "icon": "./assets/data/nsi/logos/a9dd80-83cf97.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/a9dd80-83cf97.svg", "osmTags": { "and": [ "telecom=exchange", @@ -452694,7 +452908,7 @@ }, { "question": "Appalachian Mountain Club", - "icon": "./assets/data/nsi/logos/appalachianmountainclub-7cd18b.png", + "icon": "https://data.mapcomplete.org/nsi//logos/appalachianmountainclub-7cd18b.png", "osmTags": { "and": [ "tourism=camp_site", @@ -452711,7 +452925,7 @@ }, { "question": "Department of Conservation (New Zealand)", - "icon": "./assets/data/nsi/logos/departmentofconservation-b76ca8.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-b76ca8.png", "osmTags": { "and": [ "tourism=camp_site", @@ -452726,7 +452940,7 @@ }, { "question": "TOP 10 Holiday Parks", - "icon": "./assets/data/nsi/logos/top10holidayparks-b76ca8.jpg", + "icon": "https://data.mapcomplete.org/nsi//logos/top10holidayparks-b76ca8.jpg", "osmTags": { "and": [ "tourism=camp_site", @@ -452741,7 +452955,7 @@ }, { "question": "Bulgarian Tourist Union", - "icon": "./assets/data/nsi/logos/bulgariantouristunion-308d11.svg", + "icon": "https://data.mapcomplete.org/nsi//logos/bulgariantouristunion-308d11.svg", "osmTags": { "and": [ "tourism=wilderness_hut", @@ -452758,7 +452972,7 @@ }, { "question": "Department of Conservation (New Zealand)", - "icon": "./assets/data/nsi/logos/departmentofconservation-5df9f2.png", + "icon": "https://data.mapcomplete.org/nsi//logos/departmentofconservation-5df9f2.png", "osmTags": { "and": [ "tourism=wilderness_hut", @@ -452775,5 +452989,6 @@ } ], "allowMove": false, - "#dont-translate": "*" -} + "#dont-translate": "*", + "generation_time": "2025-06-03T20:22:18.283Z" +} \ No newline at end of file diff --git a/scripts/nsiLogos.ts b/scripts/nsiLogos.ts index 9363747d43..57a6683e8e 100644 --- a/scripts/nsiLogos.ts +++ b/scripts/nsiLogos.ts @@ -1,8 +1,5 @@ import Script from "./Script" -import NameSuggestionIndex, { - NamgeSuggestionWikidata, - NSIItem, -} from "../src/Logic/Web/NameSuggestionIndex" +import NameSuggestionIndex, { NamgeSuggestionWikidata, NSIItem } from "../src/Logic/Web/NameSuggestionIndex" import * as nsiWD from "../node_modules/name-suggestion-index/dist/wikidata.min.json" import { existsSync, mkdirSync, readFileSync, renameSync, unlinkSync, writeFileSync } from "fs" import ScriptUtils from "./ScriptUtils" @@ -218,7 +215,7 @@ class NsiLogos extends Script { const config: LayerConfigJson = { id: "nsi_" + type, description: { - en: "Exposes part of the NSI to reuse in other themes, e.g. for rendering. Automatically generated and never directly loaded in a theme", + en: "Exposes part of the NSI to reuse in other themes, e.g. for rendering. Automatically generated and never directly loaded in a theme. Generated with scripts/nsiLogos.ts" }, source: "special:library", pointRendering: null, @@ -234,6 +231,7 @@ class NsiLogos extends Script { allowMove: false, "#dont-translate": "*", } + config["generation_time"] = new Date().toISOString() const path = "./assets/layers/nsi_" + type mkdirSync(path, { recursive: true }) writeFileSync(path + "/nsi_" + type + ".json", JSON.stringify(config, null, " ")) @@ -395,7 +393,7 @@ class NsiLogos extends Script { download: { f: () => this.download(), doc: "Download all icons" }, generateRenderings: { f: () => this.generateRenderings(), - doc: "Generates the layer files 'nsi_brand' and 'nsi_operator' which allows to reuse the icons in renderings", + doc: "Generates the layer files 'nsi_brand.json' and 'nsi_operator.json' which allows to reuse the icons in renderings" }, prune: { f: () => NsiLogos.prune(), doc: "Remove no longer needed files" }, addExtensions: { diff --git a/src/Models/ThemeConfig/Conversion/Conversion.ts b/src/Models/ThemeConfig/Conversion/Conversion.ts index 36702b9206..a1aa906e02 100644 --- a/src/Models/ThemeConfig/Conversion/Conversion.ts +++ b/src/Models/ThemeConfig/Conversion/Conversion.ts @@ -52,7 +52,7 @@ export abstract class Conversion { throw new Error( [ "Detected one or more errors, stopping now:", - context.getAll("error").map((e) => e.context.path.join(".") + ": " + e.message), + context.getAll("error").map((e) => `${e.context.path.join(".")} (in operation: ${e.context.operation.join(".")}): ${e.message}`) ].join("\n\t") ) } @@ -107,7 +107,7 @@ export class Bypass extends DesugaringStep { private readonly _step: DesugaringStep constructor(applyIf: (t: T) => boolean, step: DesugaringStep) { - super("Bypass", "Applies the step on the object, if the object satisfies the predicate") + super("Bypass(" + step.name + ")", "Applies the step on the object, if the object satisfies the predicate") this._applyIf = applyIf this._step = step } diff --git a/src/Models/ThemeConfig/Conversion/FixImages.ts b/src/Models/ThemeConfig/Conversion/FixImages.ts index b8fd901005..bc478b09f2 100644 --- a/src/Models/ThemeConfig/Conversion/FixImages.ts +++ b/src/Models/ThemeConfig/Conversion/FixImages.ts @@ -232,7 +232,12 @@ export class ExtractImages extends Conversion< // Split "circle:white;./assets/layers/.../something.svg" into ["circle", "./assets/layers/.../something.svg"] const allPaths = Utils.NoNull( - Utils.NoEmpty(foundImage.path?.split(";")?.map((part) => part.split(":")[0])) + Utils.NoEmpty(foundImage.path?.split(";")?.map((part) => { + if (part.startsWith("http")) { + return part + } + return part.split(":")[0] + })) ) for (const path of allPaths) { cleanedImages.push({ path, context: foundImage.context }) diff --git a/src/Models/ThemeConfig/Conversion/ValidateTheme.ts b/src/Models/ThemeConfig/Conversion/ValidateTheme.ts index d0dad222a6..8e8b47f037 100644 --- a/src/Models/ThemeConfig/Conversion/ValidateTheme.ts +++ b/src/Models/ThemeConfig/Conversion/ValidateTheme.ts @@ -6,6 +6,7 @@ import { ConversionContext } from "./ConversionContext" import ThemeConfig from "../ThemeConfig" import { Utils } from "../../../Utils" import { DetectDuplicatePresets, DoesImageExist, ValidateLanguageCompleteness } from "./Validation" +import Constants from "../../Constants" export class ValidateTheme extends DesugaringStep { /** @@ -64,6 +65,7 @@ export class ValidateTheme extends DesugaringStep { // Check images: are they local, are the licenses there, is the theme icon square, ... const images = this._extractImages.convert(json, context.inOperation("ValidateTheme")) const remoteImages = images.filter((img) => img.path.indexOf("http") == 0) + .filter(img => !img.path.startsWith(Constants.nsiLogosEndpoint)) for (const remoteImage of remoteImages) { context.err( "Found a remote image: " + @@ -110,7 +112,7 @@ export class ValidateTheme extends DesugaringStep { if (json["mustHaveLanguage"] !== undefined) { new ValidateLanguageCompleteness(...json["mustHaveLanguage"]).convert( theme, - context + context.inOperation("ValidateLanguageCompleteness") ) } if (!json.hideFromOverview && theme.id !== "personal" && this._isBuiltin) { @@ -123,7 +125,7 @@ export class ValidateTheme extends DesugaringStep { } // Official, public themes must have a full english translation - new ValidateLanguageCompleteness("en").convert(theme, context) + new ValidateLanguageCompleteness("en").convert(theme, context.inOperation("ValidateLanguageCompleteness")) } } catch (e) { console.error(e) @@ -131,7 +133,7 @@ export class ValidateTheme extends DesugaringStep { } if (theme.id !== "personal") { - new DetectDuplicatePresets().convert(theme, context) + new DetectDuplicatePresets().convert(theme, context.inOperation("DectectDuplicatePrsets")) } if (!theme.title) { diff --git a/src/Models/ThemeConfig/Conversion/Validation.ts b/src/Models/ThemeConfig/Conversion/Validation.ts index f6451a40c0..16f4ba62ae 100644 --- a/src/Models/ThemeConfig/Conversion/Validation.ts +++ b/src/Models/ThemeConfig/Conversion/Validation.ts @@ -111,6 +111,9 @@ export class DoesImageExist extends DesugaringStep { if (!this._knownImagePaths.has(image)) { if (this.doesPathExist === undefined || image.indexOf("nsi/logos/") >= 0) { // pass + } else if (image.startsWith("https://")) { + // Pass + // This is an online image. Normally forbidden, but not the responsability of this code to check for online images } else if (!this.doesPathExist(image)) { context.err( `Image with path ${image} does not exist.\n Check for typo's and missing directories in the path. ` From dabc6500bbb3d4057ff3d745ff0e17c7dc08e9bc Mon Sep 17 00:00:00 2001 From: Pieter Vander Vennet Date: Tue, 3 Jun 2025 23:48:03 +0200 Subject: [PATCH 53/53] UI: move OH indicators in two bars more aggressively --- src/UI/OpeningHours/OpeningHours.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UI/OpeningHours/OpeningHours.ts b/src/UI/OpeningHours/OpeningHours.ts index 0b900dbb52..efe8c176d1 100644 --- a/src/UI/OpeningHours/OpeningHours.ts +++ b/src/UI/OpeningHours/OpeningHours.ts @@ -978,7 +978,7 @@ changes // => [[36000,61200], ["10:00", "17:00"]] * OH.partitionOHForDistance([0, 15, 3615], ["start", "15s", "1h15s"]) // => [{changeHours: [0, 3615], changeTexts: ["start", "1h15s"]}, {changeHours: [15], changeTexts: ["15s"]}] * */ - public static partitionOHForDistance(changeHours: number[], changeHourText: string[], maxDiff = 3600): { + public static partitionOHForDistance(changeHours: number[], changeHourText: string[], maxDiff = 5400): { changeHours: number[], changeTexts: string[] }[] {